diff options
Diffstat (limited to 'data/extensions/https-everywhere-eff@eff.org/chrome')
585 files changed, 0 insertions, 35091 deletions
diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/content/about.js b/data/extensions/https-everywhere-eff@eff.org/chrome/content/about.js deleted file mode 100644 index 7a37815..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/content/about.js +++ /dev/null @@ -1,14 +0,0 @@ -const CC = Components.classes; - -function window_opener(uri) { - // we don't use window.open, because we need to work around TorButton's state control - if(typeof gBrowser == "undefined"){ - var window = CC["@mozilla.org/appshell/window-mediator;1"].getService(Components.interfaces.nsIWindowMediator); - var browserWindow = window.getMostRecentWindow("navigator:browser").getBrowser(); - var newTab = browserWindow.addTab(uri, null, null); - browserWindow.selectedTab = newTab; - - } - else - gBrowser.selectedTab = gBrowser.addTab(uri); -} diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/content/about.xul b/data/extensions/https-everywhere-eff@eff.org/chrome/content/about.xul deleted file mode 100644 index 05ac898..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/content/about.xul +++ /dev/null @@ -1,70 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<?xml-stylesheet href="chrome://global/skin/" type="text/css"?> -<?xml-stylesheet href="chrome://https-everywhere/content/preferences.css" type="text/css"?> - -<!DOCTYPE overlay SYSTEM "chrome://https-everywhere/locale/https-everywhere.dtd"> - -<dialog id="https-everywhere-about" - xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" - xmlns:html="http://www.w3.org/1999/xhtml" - buttons="accept" - title="&https-everywhere.about.title;" - width="640" - height="480" - align="center"> - - <script type="application/x-javascript" - src="chrome://https-everywhere/content/about.js"/> - <vbox style="overflow:auto" flex="1"> - <label style="text-align:center; font-weight:bold; font-size:22px;">&https-everywhere.about.ext_name;</label> - <label style="text-align:center; font-size:18px; margin-bottom:10px;">&https-everywhere.about.ext_description;</label> - - <label style="font-weight:bold; margin-top:10px;"> - &https-everywhere.about.contribute; - <label id="donate link" - value="&https-everywhere.about.donate_tor;" - style="color: blue; cursor:hand; text-decoration:underline; font-style:bold" - onmouseover="event.target.style.cursor='pointer'" - onmouseout="event.target.style.cursor='default'" - onclick="window_opener('https://www.torproject.org/donate/donate.html.en')"/> - &https-everywhere.about.or; - <label id="donate link2" - value="&https-everywhere.about.donate_eff;" - style="color: blue; cursor:hand; text-decoration:underline; font-style:bold" - onmouseover="event.target.style.cursor='pointer'" - onmouseout="event.target.style.cursor='default'" - onclick="window_opener('https://supporters.eff.org/donate/support-https-everywhere')"/>. - </label> - - <groupbox> - <caption label="&https-everywhere.about.version;" /> - <label>5.2.21</label> - </groupbox> - - <groupbox> - <caption label="&https-everywhere.about.created_by;" /> - <label>Mike Perry, Peter Eckersley&https-everywhere.about.and; Yan Zhu</label> - </groupbox> - - <groupbox> - <caption label="&https-everywhere.about.librarians;" /> - <label>J0WI, MB, Nick Semenkovich, Sam Reed&https-everywhere.about.and; Søren Fuglede Jørgensen</label> - </groupbox> - - <groupbox> - <caption label="&https-everywhere.about.thanks;" /> - <label>&https-everywhere.about.many_contributors; Aaron Swartz, Alec Moskvin, - Aleksey Kosterin, Alex Xu, Anas Qtiesh, Andreas Jonsson, Artyom Gavrichenkov, Brian - Carpenter, Chris Palmer, Christian Inci, Christopher Liu, Claudio - Moretti, Colonel Graff, Dan Auerbach, Daniel Kahn Gillmor, dm0, The - Doctor, Felix Geyer, Fruitless Creek, George Kargiotakis, haviah, Heiko - Adams, Jeroen van der Gun, Jay Weisskopf, Jacob Taylor, Jonathan Davies, Jorge Bernal, - katmagic, Kevin Jacobs, Korte, Liam K, Leonardo Brondani Schenkel, Marti Raudsepp, Micah Lee, Mike - Cardwell, Mangix, Matthias-Christian Ott, Mikko Harhanen, Mishari Muqbil, Neheb, Ori Avtalion, Osama Khalid, - nitrox, Pablo Castellano, Paul Wise, Pavel Kazakov, Phol Paucar, Richard - Green, Roan Kattouw, Rules Moore, Seth Schoen, Stefan Tomanek, Sam Reed, Steve - Milner, Sujit Rao, TK-999, Vendo, Victor Garin, Weiland Hoffmann, Whizz - Mo and Yan Zhu. &https-everywhere.about.noscript;</label> - </groupbox> - </vbox> -</dialog> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/content/code/AndroidUI.jsm b/data/extensions/https-everywhere-eff@eff.org/chrome/content/code/AndroidUI.jsm deleted file mode 100644 index a269e04..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/content/code/AndroidUI.jsm +++ /dev/null @@ -1,260 +0,0 @@ -const CC = Components.classes; -const CI = Components.interfaces; -const CU = Components.utils; - -var HTTPSEverywhere = CC["@eff.org/https-everywhere;1"] - .getService(CI.nsISupports).wrappedJSObject; - -CU.import("resource://gre/modules/Prompt.jsm"); - -var menuToggleId; -var menuParentId; -var menuRulesId; -var menuDefaultsId; -var aWindow = getWindow(); - - -/* - * Setup/Teardown for the UI - */ - -function loadIntoWindow() { - if (!aWindow) { - return; - } - var enabled = HTTPSEverywhere.prefs.getBoolPref("globalEnabled"); - addMenuItems(enabled); - - // When navigating away from a page, we want to clear the applicable list for - // that page. There are a few different APIs to do this, but this is the one - // that work on mobile. We trigger on pagehide rather than pageshow because we - // want to capture subresources during load. - var BrowserApp = aWindow.BrowserApp; - BrowserApp.deck.addEventListener("pagehide", function(evt) { - var browser = BrowserApp.getBrowserForDocument(evt.target); - HTTPSEverywhere.resetApplicableList(browser); - }, true); -} - -function unloadFromWindow() { - if (!aWindow) { - return; - } - aWindow.NativeWindow.menu.remove(menuParentId); -} - - -/* - * Add a menu item to toggle HTTPS Everywhere - */ - -function addToggleItemToMenu(enabled) { - if (menuToggleId) { aWindow.NativeWindow.menu.remove(menuToggleId); } - var menuLabel = enabled ? "Disable" : "Enable"; - menuToggleId = aWindow.NativeWindow.menu.add({ - name: menuLabel, - callback: function() { - popupToggleMenu(aWindow, enabled); - }, - parent: menuParentId - }); -} - -function addRulesItemToMenu(enabled){ - if (menuRulesId) { aWindow.NativeWindow.menu.remove(menuRulesId); } - - if (enabled) { - menuRulesId = aWindow.NativeWindow.menu.add({ - name: "Enable/disable rules", - callback: function() { - popupInfo.fill(); - rulesPrompt.setMultiChoiceItems(popupInfo.ruleItems); - rulesPrompt.show(function(data) { - var db = data.button; - if (db === -1) { return null; } // user didn't click the accept button - - for (var i=0; i<popupInfo.rules.length; i++) { - var ruleOn = popupInfo.ruleStatus[i]; - var ruleChecked = (data.list.indexOf(i) == -1 ? false : true); - if (ruleOn !== ruleChecked) { - HTTPSEverywhere.log(4, "toggling: "+JSON.stringify(popupInfo.rules[i])); - popupInfo.rules[i].toggle(); - } - } - reloadTab(); - return null; - }); - }, - parent: menuParentId - }); - } -} - -function addDefaultsItemToMenu(enabled){ - if (menuDefaultsId) { aWindow.NativeWindow.menu.remove(menuDefaultsId); } - - if (enabled) { - menuDefaultsId = aWindow.NativeWindow.menu.add({ - name: "Reset to Defaults", - callback: function() { - popupResetDefaultsMenu(aWindow); - }, - parent: menuParentId - }); - } -} - -function addMenuItems(enabled){ - if(!menuParentId){ - menuParentId = aWindow.NativeWindow.menu.add({ - name: "HTTPS Everywhere", - }); - } - addToggleItemToMenu(enabled); - addRulesItemToMenu(enabled); - addDefaultsItemToMenu(enabled); -} - -function popupToggleMenu(aWindow, enabled) { - var buttons = [ - { - label: "Yes", - callback: function() { - toggleEnabledState(); - var msg = enabled ? "HTTPS Everywhere disabled!" : "HTTPS Everywhere enabled!"; - aWindow.NativeWindow.toast.show(msg, "short"); - return true; - }, - positive: true - }, { - label: "No", - callback: function() { return false; } - } - ]; - var newState = enabled ? "off?" : "on?"; - aWindow.NativeWindow.doorhanger.show("Would you like to turn HTTPS Everywhere "+newState, - "doorhanger-toggle", buttons); -} - - -/* - * The HTTPS Everywhere icon in the URL bar shows a popup of rules that the - * user can activate/deactivate. On long click, reset all rules to defaults. - */ - -var popupInfo = { - rules: [], - ruleItems: [], - ruleStatus: [], - alist: null, - getApplicableList: function() { - var browser = aWindow.BrowserApp.selectedBrowser; - return HTTPSEverywhere.getApplicableListForBrowser(browser); - }, - fill: function() { - this.clear(); - this.alist = this.getApplicableList(); - HTTPSEverywhere.log(4,"applicable list active: "+JSON.stringify(this.alist.active)); - HTTPSEverywhere.log(4,"applicable list inactive: "+JSON.stringify(this.alist.inactive)); - for (var rule in this.alist.all) { - if (this.alist.active.hasOwnProperty(rule)) { - // active rules are checked and toggleable - this.ruleItems.push({ label: rule, selected: true }); - this.ruleStatus.push(true); - this.rules.push(this.alist.active[rule]); - } else if (this.alist.moot.hasOwnProperty(rule)) { - // moot rules are checked and toggleable too - this.ruleItems.push({ label: rule, selected: true }); - this.ruleStatus.push(true); - this.rules.push(this.alist.moot[rule]); - } else if (this.alist.inactive.hasOwnProperty(rule)) { - // inactive rules are unchecked and toggleable - this.ruleItems.push({ label: rule }); - this.ruleStatus.push(false); - this.rules.push(this.alist.inactive[rule]); - } else if (this.alist.breaking.hasOwnProperty(rule)) { - // breaking rules are get a unicode clockwise arrow next to them - var ruleLabel = "\u21B7"+rule; - var isSelected = this.alist.breaking[rule].active; - this.ruleItems.push({ label: ruleLabel, selected: isSelected }); - this.ruleStatus.push(isSelected); - this.rules.push(this.alist.breaking[rule]); - } - } - }, - clear: function() { - this.rules = []; - this.ruleItems = []; - this.ruleStatus = []; - this.alist = {}; - } -}; - -var rulesPrompt = new Prompt({ - window: aWindow, - title: "Enable/disable rules", - buttons: ["Apply changes"] -}); - -function popupResetDefaultsMenu(aWindow) { - var buttons = [ - { - label: "Yes", - callback: function() { - resetToDefaults(); - var msg = "Default rules reset."; - aWindow.NativeWindow.toast.show(msg, "short"); - return true; - }, - positive: true - }, { - label: "No", - callback: function() { return false; } - } - ]; - aWindow.NativeWindow.doorhanger.show("Reset all HTTPS Everywhere rules to defaults?", - "doorhanger-reset", buttons); -} - - -/* - * Some useful utils - */ - -function reloadTab() { - // There seems to be no API to do this directly? - aWindow.BrowserApp.selectedTab.window.location.reload(); -} - -function toggleEnabledState(){ - HTTPSEverywhere.toggleEnabledState(); - loadIntoWindow(); - reloadTab(); -} - -function resetToDefaults() { - HTTPSEverywhere.https_rules.resetRulesetsToDefaults(); - reloadTab(); -} - -function getWindow() { - return CC['@mozilla.org/appshell/window-mediator;1'] - .getService(CI.nsIWindowMediator) - .getMostRecentWindow('navigator:browser'); -} - - -/* - * Here's the external API to this UI module - */ - -var AndroidUI = { - init: function() { - loadIntoWindow(); - }, - shutdown: function() { - unloadFromWindow(); - } -}; - -var EXPORTED_SYMBOLS = ["AndroidUI"]; diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/content/code/ApplicableList.js b/data/extensions/https-everywhere-eff@eff.org/chrome/content/code/ApplicableList.js deleted file mode 100644 index 1c5263a..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/content/code/ApplicableList.js +++ /dev/null @@ -1,279 +0,0 @@ -// An ApplicableList is a structure used to keep track of which rulesets -// were applied, and which ones weren't but might have been, to the contents -// of a given page (top level nsIDOMWindow) - -var serial_number = 0; - -function ApplicableList(logger, uri) { - this.log = logger; - this.uri = uri.clone(); - if (!this.uri) { - this.log(WARN,"NULL CLONING URI " + doc); - if (uri) { - this.log(WARN,"NULL CLONING URI " + uri.spec); - } - } - this.home = uri.spec; // what doc we're housekeeping for - this.active = {}; - this.breaking = {}; // rulesets with redirection loops - this.inactive = {}; - this.moot={}; // rulesets that might be applicable but uris are already https - this.all={}; // active + breaking + inactive + moot - serial_number += 1; - this.serial = serial_number; - this.log(DBUG,"Alist serial #" + this.serial + " for " + this.home); -} - -ApplicableList.prototype = { - - empty: function() { - // Empty everything, used when toggles occur in order to ensure that if - // the reload fails, the resulting list is not erroneous - this.active = {}; - this.breaking = {}; - this.inactive = {}; - this.moot={}; - this.all={}; - }, - - active_rule: function(ruleset) { - this.log(INFO,"active rule " + ruleset.name +" in "+ this.home +" -> " + - this.uri.spec+ " serial " + this.serial); - this.active[ruleset.name] = ruleset; - this.all[ruleset.name] = ruleset; - }, - - breaking_rule: function(ruleset) { - this.log(NOTE,"breaking rule " + ruleset.name +" in "+ this.home +" -> " + - this.uri.spec+ " serial " + this.serial); - this.breaking[ruleset.name] = ruleset; - this.all[ruleset.name] = ruleset; - }, - - inactive_rule: function(ruleset) { - - this.log(INFO,"inactive rule " + ruleset.name +" in "+ this.home +" -> " + - this.uri.spec+ " serial " + this.serial); - this.inactive[ruleset.name] = ruleset; - this.all[ruleset.name] = ruleset; - }, - - moot_rule: function(ruleset) { - this.log(INFO,"moot rule " + ruleset.name +" in "+ this.home + " serial " + this.serial); - this.moot[ruleset.name] = ruleset; - this.all[ruleset.name] = ruleset; - }, - - dom_handler: function(operation,key,data,src,dst) { - // See https://developer.mozilla.org/En/DOM/UserDataHandler - if (src && dst) - dst.setUserData(key, data, this.dom_handler); - }, - - populate_list: function() { - // The base URI of the dom tends to be loaded from some /other/ - // ApplicableList, so pretend we're loading it from here. - var uri = this.uri; - if (!(uri.schemeIs("http") || uri.schemeIs("https"))) { - return true; - } - HTTPSEverywhere.instance.https_rules.rewrittenURI(this, uri); - this.log(DBUG, "populating using alist #" + this.serial); - }, - - populate_menu: function(document, menupopup, weird) { - this.populate_list(); - this.document = document; - - var https_everywhere = CC["@eff.org/https-everywhere;1"].getService(Components.interfaces.nsISupports).wrappedJSObject; - - // get the menu popup - this.menupopup = menupopup; - - // empty it all of its menuitems - while(this.menupopup.firstChild.tagName != "menuseparator") { - this.menupopup.removeChild(this.menupopup.firstChild); - } - - // add global enable/disable toggle button - var strings = document.getElementById("HttpsEverywhereStrings"); - - var enableLabel = document.createElement('menuitem'); - var text = strings.getString("https-everywhere.menu.globalDisable"); - if(!https_everywhere.prefs.getBoolPref("globalEnabled")) - text = strings.getString("https-everywhere.menu.globalEnable"); - - enableLabel.setAttribute('label', text); - enableLabel.setAttribute('command', 'https-everywhere-menuitem-globalEnableToggle'); - this.prepend_child(enableLabel); - - // add the label at the top - var any_rules = false; - for(var x in this.all) { - any_rules = true; // how did JavaScript get this ugly? - break; - } - // This label just describes the fact that the items underneath it enable - // and disable rules. - var label = document.createElement('menuitem'); - label.setAttribute('label', strings.getString('https-everywhere.menu.enableDisable')); - label.setAttribute('disabled', 'true'); - label.setAttribute('class', 'menuitem-non-iconic'); - label.setAttribute('style', 'font-weight: bold; color: -moz-MenuBarText;'); - var label2 = false; - if (!any_rules) { - label2 = document.createElement('menuitem'); - if (!weird) text = strings.getString('https-everywhere.menu.noRules'); - else text = strings.getString('https-everywhere.menu.unknownRules'); - label2.setAttribute('label', text); - label2.setAttribute('command', 'https-everywhere-menuitem-preferences'); - label2.setAttribute('style', 'color:#909090;'); - } - - // create a commandset if it doesn't already exist - this.commandset = document.getElementById('https-everywhere-commandset'); - if(!this.commandset) { - this.commandset = document.createElement('commandset'); - this.commandset.setAttribute('id', 'https-everywhere-commandset'); - var win = document.getElementById('main-window'); - win.appendChild(this.commandset); - } else { - // empty commandset - while(this.commandset.firstChild) - this.commandset.removeChild(this.commandset.firstChild); - } - - var wm = Components.classes["@mozilla.org/appshell/window-mediator;1"] - .getService(Components.interfaces.nsIWindowMediator); - - var browser = wm.getMostRecentWindow("navigator:browser").gBrowser.selectedBrowser; - var location = browser.currentURI.asciiSpec; //full url, including about:certerror details - - if(location.substr(0, 6) == "about:"){ - //"From" portion of the rule is retrieved from the location bar via document.getElementById("urlbar").value - - var fromHost = document.getElementById("urlbar").value; - - //scheme must be trimmed out to check for applicable rulesets - if(fromHost.indexOf("://") != -1) - fromHost = fromHost.substr(fromHost.indexOf("://") + 3, fromHost.length); - - //trim off any page locations - we only want the host - e.g. domain.com - if(fromHost.indexOf("/") != -1) - fromHost = fromHost.substr(0, fromHost.indexOf("/")); - - // Search for applicable rulesets for the host listed in the location bar - var plist = HTTPSRules.potentiallyApplicableRulesets(fromHost); - for (var i = 0 ; i < plist.length ; i++){ - //For each applicable rulset, determine active/inactive, and append to proper list. - var ruleOn = false; - try { - if(https_everywhere.rule_toggle_prefs.getBoolPref(plist[i].name)) - ruleOn = true; - } catch(e) { - if(https_everywhere.https_rules.rulesetsByName[plist[i].name].active) - ruleOn = true; - } - if(ruleOn) - this.active_rule(plist[i]); - else - this.inactive_rule(plist[i]); - } - } - - // add all applicable commands - for(var x in this.breaking) - this.add_command(this.breaking[x]); - for(var x in this.active) - this.add_command(this.active[x]); - for(var x in this.moot) - this.add_command(this.moot[x]); - for(var x in this.inactive) - this.add_command(this.inactive[x]); - - if(https_everywhere.prefs.getBoolPref("globalEnabled")){ - // add all the menu items - for (var x in this.inactive) - this.add_menuitem(this.inactive[x], 'inactive'); - // rules that are active for some uris are not really moot - for (var x in this.moot) - if (!(x in this.active)) - this.add_menuitem(this.moot[x], 'moot'); - // break once break everywhere - for (var x in this.active) - if (!(x in this.breaking)) - this.add_menuitem(this.active[x], 'active'); - for (var x in this.breaking) - this.add_menuitem(this.breaking[x], 'breaking'); - - if (label2) this.prepend_child(label2); - this.prepend_child(label); - } - - }, - - prepend_child: function(node) { - this.menupopup.insertBefore(node, this.menupopup.firstChild); - }, - - add_command: function(rule) { - // basic validation for data to be added to xul - var ruleId = String(rule.id); - if (!ruleId.match(/^[a-zA-Z_0-9]+$/)) { - return; - } - - var command = this.document.getElementById("https-everywhere-menuitem-rule-toggle-template").cloneNode(); - command.setAttribute('id', ruleId+'-command'); - command.setAttribute('data-id', ruleId); - command.setAttribute('label', rule.name); - this.commandset.appendChild(command); - }, - - // add a menu item for a rule -- type is "active", "inactive", "moot", - // or "breaking" - - add_menuitem: function(rule, type) { - // create the menuitem - var item = this.document.createElement('menuitem'); - item.setAttribute('command', rule.id+'-command'); - item.setAttribute('class', type+'-item menuitem-iconic'); - item.setAttribute('type', 'checkbox'); - item.setAttribute('label', rule.name); - - // we can get confused if rulesets have their state changed after the - // ApplicableList was constructed - if (!rule.active && (type == 'active' || type == 'moot')) - type = 'inactive'; - if (rule.active && type == 'inactive') - type = 'moot'; - - // set the icon - var image_src; - if (type == 'active') image_src = 'tick.png'; - else if (type == 'inactive') image_src = 'cross.png'; - else if (type == 'moot') image_src = 'tick-moot.png'; - else if (type == 'breaking') image_src = 'loop.png'; - item.setAttribute('image', 'chrome://https-everywhere/skin/'+image_src); - - // all done - this.prepend_child(item); - }, - - show_applicable: function() { - this.log(WARN, "Applicable list number " + this.serial); - for (var x in this.active) - this.log(WARN,"Active: " + this.active[x].name); - - for (var x in this.breaking) - this.log(WARN,"Breaking: " + this.breaking[x].name); - - for (x in this.inactive) - this.log(WARN,"Inactive: " + this.inactive[x].name); - - for (x in this.moot) - this.log(WARN,"Moot: " + this.moot[x].name); - - } -}; - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/content/code/Cookie.js b/data/extensions/https-everywhere-eff@eff.org/chrome/content/code/Cookie.js deleted file mode 100644 index 80b3e50..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/content/code/Cookie.js +++ /dev/null @@ -1,150 +0,0 @@ -Components.utils.import("resource://gre/modules/XPCOMUtils.jsm"); - -function Cookie(s, host) { - this.parse(s, host); -} -Cookie.computeId = function(c) { - return c.name + ";" + c.host + "/" + c.path; -}; -Cookie.find = function(f) { - var cc = Cookie.prototype.cookieManager.enumerator; - var c; - while (cc.hasMoreElements()) { - if (f(c = cc.getNext())) return c; - } - return null; -}; - -Cookie.attributes = { host: 'domain', path: 'path', expires: 'expires', isHttpOnly: 'HttpOnly', isSecure: 'Secure' }; -Cookie.prototype = { - - name: '', - value: '', - source: '', - domain: '', - host: '', - rawHost: '', - path: '', - secure: false, - httponly: false, - session: true, - expires: 0, - - id: '', - - - toString: function() { - var c = [this['name'] + "=" + this.value]; - var v; - const aa = Cookie.attributes; - for (var k in aa) { - var p = aa[k]; - v = this[k]; - switch(typeof(v)) { - case "string": - if (v) c.push(p + "=" + v); - break; - case "boolean": - if (v) c.push(p); - break; - case "number": - if (!this.isSession) c.push(p + "=" + new Date(v * 1000).toUTCString()); - break; - } - } - return c.join("; "); - }, - parse: function(s, host) { - var p; - if (this.source) { - // cleanup for recycle - for (p in this) { - if (typeof (p) != "function") delete this[p]; - } - } - this.source = s; - this.host = host; - - var parts = s.split(/;\s*/); - var nv = parts.shift().split("="); - - this.name = nv.shift() || ''; - this.value = nv.join('=') || ''; - - var n, v; - for (p of parts) { - nv = p.split("="); - switch (n = nv[0].toLowerCase()) { - case 'expires': - v = Math.round(Date.parse((nv[1] || '').replace(/\-/g, ' ')) / 1000); - break; - case 'domain': - case 'path': - v = nv[1] || ''; - break; - case 'secure': - case 'httponly': - v = true; - break; - default: - n = 'unknown'; - } - this[n] = v; - } - if (!this.expires) { - this.session = true; - this.expires = Math.round(new Date() / 1000) + 31536000; - } - if (this.domain) { - if (!this.isDomain) this.domain = "." + this.domain; - this.host = this.domain; - } - this.rawHost = this.host.replace(/^\./, ''); - - this.id = Cookie.computeId(this); - }, - - - get cookieManager() { - delete Cookie.prototype.cookieManager; - var cman = Cc["@mozilla.org/cookiemanager;1"] - .getService(Ci.nsICookieManager2).QueryInterface(Ci.nsICookieManager); - return Cookie.prototype.cookieManager = cman; - }, - belongsTo: function(host, path) { - if (path && this.path && path.indexOf(this.path) != 0) return false; - if (host == this.rawHost) return true; - var d = this.domain; - return d && (host == d || this.isDomain && host.slice(-d.length) == d); - }, - save: function() { - this.save = ("cookieExists" in this.cookieManager) - ? function() { this.cookieManager.add(this.host, this.path, this.name, this.value, this.secure, this.httponly, this.session, this.expires); } - : function() { this.cookieManager.add(this.host, this.path, this.name, this.value, this.secure, this.session, this.expires);} - ; - return this.save(); - }, - exists: function() { - var cc = this.cookieManager.enumerator; - while(cc.hasMoreElements()) { - if (this.sameAs(cc.getNext())) return true; - } - return false; - }, - - sameAs: function(c) { - (c instanceof Ci.nsICookie) && (c instanceof Ci.nsICookie2); - return Cookie.computeId(c) == this.id; - }, - - // nsICookie2 interface extras - get isSecure() { return this.secure; }, - get expiry() { return this.expires; }, - get isSession() { return this.session; }, - get isHttpOnly() { return this.httponly; }, - get isDomain() { return this.domain && this.domain[0] == '.'; }, - policy: 0, - status: 0, - QueryInterface: XPCOMUtils.generateQI([Ci.nsICookie, Ci.nsICookie2]) - -}; diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/content/code/HTTPS.js b/data/extensions/https-everywhere-eff@eff.org/chrome/content/code/HTTPS.js deleted file mode 100644 index c7328f6..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/content/code/HTTPS.js +++ /dev/null @@ -1,330 +0,0 @@ -INCLUDE('Cookie'); - -var securityService = CC['@mozilla.org/ssservice;1'] - .getService(CI.nsISiteSecurityService); - -// Hack. We only need the part of the policystate that tracks content -// policy loading. -const PolicyState = { - attach: function(channel) { - IOUtil.attachToChannel(channel, "httpseverywhere.policyLoaded", true); - }, - - extract: function(channel) { - var res = IOUtil.extractFromChannel(channel, - "httpseverywhere.policyLoaded", true); - return res; - }, -}; - -const HTTPS = { - ready: false, - - secureCookies: true, - secureCookiesExceptions: null, - secureCookiesForced: null, - httpsForced: null, - httpsForcedExceptions: null, - httpsRewrite: null, - - /** - * Given a channel and a list of potentially applicable rules, - * redirect or abort a request if appropriate. - * - * @param {RuleSet[]} applicable_list A list of potentially applicable rules - * (i.e. those that match on a hostname basis). - * @param {nsIChannel} channel The channel to be manipulated. - * @param {boolean} httpNowhereEnabled Whether to abort non-https requests. - * @returns {boolean} True if the request was redirected; false if it was - * untouched or aborted. - */ - replaceChannel: function(applicable_list, channel, httpNowhereEnabled) { - var blob = HTTPSRules.rewrittenURI(applicable_list, channel.URI.clone()); - var uri; - if (blob === null) { - // Abort insecure non-onion, non-localhost requests if HTTP Nowhere is on - if (httpNowhereEnabled && - channel.URI.schemeIs("http") && - !/\.onion$/.test(channel.URI.host) && - !/^localhost$/.test(channel.URI.host) && - !/^127(\.[0-9]{1,3}){3}$/.test(channel.URI.host) && - !/^0\.0\.0\.0$/.test(channel.URI.host) - ) { - var newurl = channel.URI.spec.replace(/^http:/, "https:"); - uri = CC["@mozilla.org/network/standard-url;1"]. - createInstance(CI.nsIStandardURL); - uri.init(CI.nsIStandardURL.URLTYPE_STANDARD, 443, - newurl, channel.URI.originCharset, null); - uri = uri.QueryInterface(CI.nsIURI); - } else { - return false; // no rewrite - } - } else { - uri = blob.newuri; - } - if (!uri) this.log(WARN, "OH NO BAD ARGH\nARGH"); - - // Abort downgrading if HTTP Nowhere is on - if (httpNowhereEnabled && uri.schemeIs("http")) { - IOUtil.abort(channel); - } - - var c2 = channel.QueryInterface(CI.nsIHttpChannel); - this.log(DBUG, channel.URI.spec+": Redirection limit is " + c2.redirectionLimit); - // XXX This used to be (c2.redirectionLimit == 1), but that's very - // inefficient in a case (eg amazon) where this may happen A LOT. - // Rather than number like 10, we should use the starting value - // in network.http.redirection-limit minus some counter - if (c2.redirectionLimit < 10) { - this.log(WARN, "Redirection loop trying to set HTTPS on:\n " + - channel.URI.spec +"\n(falling back to HTTP)"); - if (blob) { - if (!blob.applied_ruleset) { - this.log(WARN,"Blacklisting rule for: " + channel.URI.spec); - https_everywhere_blacklist[channel.URI.spec] = true; - } - https_everywhere_blacklist[channel.URI.spec] = blob.applied_ruleset; - } - var domain = null; - try { domain = channel.URI.host; } catch (e) {} - if (domain) https_blacklist_domains[domain] = true; - if (httpNowhereEnabled && channel.URI.schemeIs("http")) { - IOUtil.abort(channel); - } - return false; - } - - // Check for the new internal redirect API. If it exists, use it. - if (!"redirectTo" in channel) { - this.log(WARN, "nsIHTTPChannel.redirectTo API is missing. This version of HTTPS Everywhere is useless!!!!\n!!!\n"); - return false; - } - - this.log(INFO, "Using nsIHttpChannel.redirectTo: " + channel.URI.spec + " -> " + uri.spec); - try { - channel.redirectTo(uri); - return true; - } catch(e) { - // This should not happen. We should only get exceptions if - // the channel was already open. - this.log(WARN, "Exception on nsIHttpChannel.redirectTo: "+e); - } - this.log(WARN,"Aborting redirection " + channel.name + ", should be HTTPS!"); - IOUtil.abort(channel); - return false; - }, - - // getApplicableListForContext was remove along with the nsIContentPolicy - // bindings and the and forceURI path that used them. - - onCrossSiteRequest: function(channel, origin, browser, rw) { - try { - this.handleCrossSiteCookies(channel, origin, browser); - } catch(e) { - this.log(WARN, e + " --- " + e.stack); - } - }, - - registered: false, - handleSecureCookies: function(req) { - - try { - req = req.QueryInterface(CI.nsIHttpChannel); - } catch(e) { - this.log(WARN, "Request is not an nsIHttpChannel: " + req); - return; - } - if (!this.secureCookies) return; - var uri = req.URI; - if (!uri) { - this.log(WARN,"No URI inside request " +req); - return; - } - //this.log(DBUG, "Cookie hunting in " + uri.spec); - var alist = HTTPSEverywhere.instance.getApplicableListForChannel(req); - if (!alist) - this.log(INFO, "No alist for cookies for "+(req.URI) ? req.URI.spec : "???"); - - if (uri.schemeIs("https")) { - var host = uri.host; - try { - var cookies = req.getResponseHeader("Set-Cookie"); - } catch(mayHappen) { - //this.log(VERB,"Exception hunting Set-Cookie in headers: " + mayHappen); - return; - } - if (!cookies) return; - var c; - for (var cs of cookies.split("\n")) { - this.log(DBUG, "Examining cookie: "); - c = new Cookie(cs, host); - if (!c.secure && HTTPSRules.shouldSecureCookie(alist, c, true)) { - this.log(INFO, "Securing cookie: " + c.domain + " " + c.name); - c.secure = true; - req.setResponseHeader("Set-Cookie", c.source + ";Secure", true); - } - } - - } - }, - - handleInsecureCookie: function(c) { - if (HTTPSRules.shouldSecureCookie(null, c, false)) { - this.log(INFO, "Securing cookie from event: " + c.host + " " + c.name); - var cookieManager = Components.classes["@mozilla.org/cookiemanager;1"] - .getService(Components.interfaces.nsICookieManager2); - //some braindead cookies apparently use umghzabilliontrabilions - var expiry = Math.min(c.expiry, Math.pow(2,31)); - cookieManager.remove(c.host, c.name, c.path, false, c.originAttributes); - cookieManager.add(c.host, c.path, c.name, c.value, true, c.isHTTPOnly, c.isSession, expiry, c.originAttributes); - } - }, - - handleCrossSiteCookies: function(req, origin, browser) { - - var unsafeCookies = this.getUnsafeCookies(browser); - if (!unsafeCookies) return; - - var uri = req.URI; - var dscheme = uri.scheme; - - var oparts = origin && origin.match(/^(https?):\/\/([^\/:]+).*?(\/.*)/); - if (!(oparts && /https?/.test(dscheme))) return; - - var oscheme = oparts[1]; - if (oscheme == dscheme) return; // we want to check only cross-scheme requests - - var dsecure = dscheme == "https"; - - if (dsecure && !ns.getPref("secureCookies.recycle", false)) return; - - var dhost = uri.host; - var dpath = uri.path; - - var ohost = oparts[2]; - var opath = oparts[3]; - - var ocookieCount = 0, totCount = 0; - var dcookies = []; - var c; - - for (var k in unsafeCookies) { - c = unsafeCookies[k]; - if (!c.exists()) { - delete unsafeCookies[k]; - } else { - totCount++; - if (c.belongsTo(dhost, dpath) && c.secure != dsecure) { // either secure on http or not secure on https - dcookies.push(c); - } - if (c.belongsTo(ohost, opath)) { - ocookieCount++; - } - } - } - - if (!totCount) { - this.setUnsafeCookies(browser, null); - return; - } - - // We want to "desecurify" cookies only if cross-navigation to unsafe - // destination originates from a site sharing some secured cookies - - if (ocookieCount == 0 && !dsecure || !dcookies.length) return; - - if (dsecure) { - this.log(WARN,"Detected cross-site navigation with secured cookies: " + origin + " -> " + uri.spec); - - } else { - this.log(WARN,"Detected unsafe navigation with NoScript-secured cookies: " + origin + " -> " + uri.spec); - this.log(WARN,uri.prePath + " cannot support secure cookies because it does not use HTTPS. Consider forcing HTTPS for " + uri.host + " in NoScript's Advanced HTTPS options panel."); - } - - var cs = CC['@mozilla.org/cookieService;1'].getService(CI.nsICookieService).getCookieString(uri, req); - - for (c of dcookies) { - c.secure = dsecure; - c.save(); - this.log(WARN,"Toggled secure flag on " + c); - } - - if (cs) { - dcookies.push.apply( - dcookies, cs.split(/\s*;\s*/).map(function(cs) { var nv = cs.split("="); return { name: nv.shift(), value: nv.join("=") }; }) - .filter(function(c) { return dcookies.every(function(x) { return x.name != c.name; }); }) - ); - } - - cs = dcookies.map(function(c) { return c.name + "=" + c.value; }).join("; "); - - this.log(WARN,"Sending Cookie for " + dhost + ": " + cs); - req.setRequestHeader("Cookie", cs, false); // "false" because merge syntax breaks Cookie header - }, - - - cookiesCleanup: function(refCookie) { - var ignored = this.secureCookiesExceptions; - var disabled = !this.secureCookies; - var bi = DOM.createBrowserIterator(); - var unsafe, k, c, total, deleted; - for (var browser; browser = bi.next();) { - unsafe = this.getUnsafeCookies(browser); - if (!unsafe) continue; - total = deleted = 0; - for (k in unsafe) { - c = unsafe[k]; - total++; - if (disabled || (refCookie ? c.belongsTo(refCookie.host) : ignored && ignored.test(c.rawHost))) { - if (c.exists()) { - this.log(WARN,"Cleaning Secure flag from " + c); - c.secure = false; - c.save(); - } - delete unsafe[k]; - deleted++; - } - } - if (total == deleted) this.setUnsafeCookies(browser, null); - if (!this.cookiesPerTab) break; - } - }, - - get cookiesPerTab() { - return ns.getPref("secureCookies.perTab", false); - }, - - _globalUnsafeCookies: {}, - getUnsafeCookies: function(browser) { - return this.cookiesPerTab - ? browser && ns.getExpando(browser, "unsafeCookies") - : this._globalUnsafeCookies; - }, - setUnsafeCookies: function(browser, value) { - return this.cookiesPerTab - ? browser && ns.setExpando(browser, "unsafeCookies", value) - : this._globalUnsafeCookies = value; - }, - - _getParent: function(req, w) { - return w && w.frameElement || DOM.findBrowserForNode(w || IOUtil.findWindow(req)); - } - -}; - -(function () { - ["secureCookies", "secureCookiesExceptions", "secureCookiesForced"].forEach(function(p) { - var v = HTTPS[p]; - delete HTTPS[p]; - HTTPS.__defineGetter__(p, function() { - return v; - }); - HTTPS.__defineSetter__(p, function(n) { - v = n; - if (HTTPS.ready) HTTPS.cookiesCleanup(); - return v; - }); - }); -})(); - -HTTPS.ready = true; diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/content/code/HTTPSRules.js b/data/extensions/https-everywhere-eff@eff.org/chrome/content/code/HTTPSRules.js deleted file mode 100644 index 1ae74d4..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/content/code/HTTPSRules.js +++ /dev/null @@ -1,780 +0,0 @@ -// Compilation of RegExps is now delayed until they are first used... - -function Rule(from, to) { - this.to = to; - this.from_c = from; // This will become a RegExp after compilation -} - -function Exclusion(pattern) { - this.pattern_c = pattern; // Will become a RegExp after compilation -} - -function CookieRule(host, cookiename) { - this.host = host; - this.name = cookiename; - - // These will be made during compilation: - - //this.host_c = new RegExp(host); - //this.name_c = new RegExp(cookiename); -} - -function RuleSet(id, name, xmlName, match_rule, default_off, platform) { - if(xmlName == "WordPress.xml" || xmlName == "Github.xml") { - this.log(NOTE, "RuleSet( name="+name+", xmlName="+xmlName+", match_rule="+match_rule+", default_off="+default_off+", platform="+platform+" )"); - } - - this.id=id; - this.on_by_default = true; - this.compiled = false; - this.name = name; - this.xmlName = xmlName; - this.notes = ""; - - if (match_rule) this.ruleset_match_c = new RegExp(match_rule); - else this.ruleset_match_c = null; - if (default_off) { - // Perhaps problematically, this currently ignores the actual content of - // the default_off XML attribute. Ideally we'd like this attribute to be - // "valueless" - this.notes = default_off; - this.on_by_default = false; - } - if (platform) - if (platform.search(HTTPSRules.localPlatformRegexp) == -1) { - this.on_by_default = false; - this.notes = "Only for " + platform; - } - - this.rules = []; - this.exclusions = []; - this.cookierules = []; - - this.rule_toggle_prefs = HTTPSEverywhere.instance.rule_toggle_prefs; - - try { - // if this pref exists, use it - this.active = this.rule_toggle_prefs.getBoolPref(name); - } catch(e) { - // if not, use the default - this.active = this.on_by_default; - } -} - -var dom_parser = Cc["@mozilla.org/xmlextras/domparser;1"].createInstance(Ci.nsIDOMParser); - -RuleSet.prototype = { - - ensureCompiled: function() { - // Postpone compilation of exclusions, rules and cookies until now, to accelerate - // browser load time. - if (this.compiled) return; - var i; - - for (i = 0; i < this.exclusions.length; ++i) { - this.exclusions[i].pattern_c = new RegExp(this.exclusions[i].pattern_c); - } - for (i = 0; i < this.rules.length; ++i) { - this.rules[i].from_c = new RegExp(this.rules[i].from_c); - } - - for (i = 0; i < this.cookierules.length; i++) { - var cr = this.cookierules[i]; - cr.host_c = new RegExp(cr.host); - cr.name_c = new RegExp(cr.name); - } - - this.compiled = true; - }, - - apply: function(urispec) { - // return null if it does not apply - // and the new url if it does apply - var i; - var returl = null; - this.ensureCompiled(); - // If a rulset has a match_rule and it fails, go no further - if (this.ruleset_match_c && !this.ruleset_match_c.test(urispec)) { - this.log(VERB, "ruleset_match_c excluded " + urispec); - return null; - } - // Even so, if we're covered by an exclusion, go home - for (i = 0; i < this.exclusions.length; ++i) { - if (this.exclusions[i].pattern_c.test(urispec)) { - this.log(DBUG,"excluded uri " + urispec); - return null; - } - } - // Okay, now find the first rule that triggers - for (i = 0; i < this.rules.length; ++i) { - // This is just for displaying inactive rules - returl = urispec.replace(this.rules[i].from_c, this.rules[i].to); - if (returl != urispec) { - // we rewrote the uri - this.log(DBUG, "Rewrote " + urispec + " -> " + returl + " using " + this.xmlName + ": " + this.rules[i].from_c + " -> " + this.rules[i].to); - return returl; - } - } - - return null; - }, - log: function(level, msg) { - https_everywhereLog(level, msg); - }, - - wouldMatch: function(hypothetical_uri, alist) { - // return true if this ruleset would match the uri, assuming it were http - // used for judging moot / inactive rulesets - // alist is optional - - // if the ruleset is already somewhere in this applicable list, we don't - // care about hypothetical wouldMatch questions - if (alist && (this.name in alist.all)) return false; - - this.log(DBUG,"Would " +this.name + " match " +hypothetical_uri.spec + - "? serial " + (alist && alist.serial)); - - var uri = hypothetical_uri.clone(); - if (uri.scheme == "https") uri.scheme = "http"; - var urispec = uri.spec; - - this.ensureCompiled(); - - if (this.ruleset_match_c && !this.ruleset_match_c.test(urispec)) - return false; - - for (var i = 0; i < this.exclusions.length; ++i) - if (this.exclusions[i].pattern_c.test(urispec)) return false; - - for (var i = 0; i < this.rules.length; ++i) - if (this.rules[i].from_c.test(urispec)) return true; - return false; - }, - - transformURI: function(uri) { - // If no rule applies, return null; if a rule would have applied but was - // inactive, return 0; otherwise, return a fresh uri instance - // for the target - var newurl = this.apply(uri.spec); - if (null == newurl) - return null; - var newuri = Components.classes["@mozilla.org/network/standard-url;1"]. - createInstance(CI.nsIStandardURL); - newuri.init(CI.nsIStandardURL.URLTYPE_STANDARD, 443, - newurl, uri.originCharset, null); - newuri = newuri.QueryInterface(CI.nsIURI); - return newuri; - }, - - enable: function() { - // Enable us. - this.rule_toggle_prefs.setBoolPref(this.name, true); - this.active = true; - }, - - disable: function() { - // Disable us. - this.rule_toggle_prefs.setBoolPref(this.name, false); - this.active = false; - }, - - toggle: function() { - this.active = !this.active; - this.rule_toggle_prefs.setBoolPref(this.name, this.active); - }, - - clear: function() { - try { - this.rule_toggle_prefs.clearUserPref(this.name); - } catch(e) { - // this ruleset has never been toggled - } - this.active = this.on_by_default; - } -}; - -const RuleWriter = { - - getCustomRuleDir: function() { - var loc = "ProfD"; // profile directory - var file = - CC["@mozilla.org/file/directory_service;1"] - .getService(CI.nsIProperties) - .get(loc, CI.nsILocalFile) - .clone(); - file.append("HTTPSEverywhereUserRules"); - // Check for existence, if not, create. - if (!file.exists()) { - file.create(CI.nsIFile.DIRECTORY_TYPE, 0700); - } - if (!file.isDirectory()) { - // XXX: Arg, death! - } - return file; - }, - - chromeToPath: function (aPath) { - if (!aPath || !(/^chrome:/.test(aPath))) - return; //not a chrome url - - var ios = - CC['@mozilla.org/network/io-service;1'] - .getService(CI.nsIIOService); - var uri = ios.newURI(aPath, "UTF-8", null); - var cr = - CC['@mozilla.org/chrome/chrome-registry;1'] - .getService(CI.nsIChromeRegistry); - var rv = cr.convertChromeURL(uri).spec; - - if (/^file:/.test(rv)) - rv = this.urlToPath(rv); - else - rv = this.urlToPath("file://"+rv); - - return rv; - }, - - urlToPath: function (aPath) { - if (!aPath || !/^file:/.test(aPath)) - return ; - - var ph = - CC["@mozilla.org/network/protocol;1?name=file"] - .createInstance(CI.nsIFileProtocolHandler); - var rv = ph.getFileFromURLSpec(aPath).path; - - return rv; - }, - - readFromUrl: function (url) { - var ios = CC['@mozilla.org/network/io-service;1'] - .getService(CI.nsIIOService); - var encoding = "UTF-8"; - var channel = ios.newChannel(url, encoding, null); - var stream = channel.open(); - var streamSize = stream.available(); - - if (!streamSize) { - return null; - } - - var convStream = CC["@mozilla.org/intl/converter-input-stream;1"] - .createInstance(CI.nsIConverterInputStream); - - convStream.init(stream, encoding, streamSize, - convStream.DEFAULT_REPLACEMENT_CHARACTER); - - var data = {}; - convStream.readString(streamSize, data); - - return data.value; - }, - - readFromFile: function(file) { - if (!file.exists()) - return null; - var data = ""; - var fstream = CC["@mozilla.org/network/file-input-stream;1"] - .createInstance(CI.nsIFileInputStream); - var sstream = CC["@mozilla.org/scriptableinputstream;1"] - .createInstance(CI.nsIScriptableInputStream); - fstream.init(file, -1, 0, 0); - sstream.init(fstream); - - var str = sstream.read(4096); - while (str.length > 0) { - data += str; - str = sstream.read(4096); - } - - sstream.close(); - fstream.close(); - return data; - }, - - write: function(file, data) { - //if (!file.exists()) - // return null; - this.log(DBUG, "Opening " + file.path + " for writing"); - var fstream = CC["@mozilla.org/network/file-output-stream;1"] - .createInstance(CI.nsIFileOutputStream); - fstream.init(file, -1, -1, 0); - - var retval = fstream.write(data, data.length); - this.log(DBUG, "Got retval " + retval); - fstream.close(); - return data; - }, - - rulesetFromFile: function(file, rule_store, ruleset_id) { - if ((rule_store.targets == null) && (rule_store.targets != {})) - this.log(WARN, "TARGETS IS NULL"); - var data = this.readFromFile(file); - if (!data) return null; - return this.readFromString(data, rule_store, ruleset_id); - }, - - readFromString: function(data, rule_store, ruleset_id) { - try { - var xmlruleset = dom_parser.parseFromString(data, "text/xml"); - } catch(e) { // file has been corrupted; XXX: handle error differently - this.log(WARN,"Error in XML data: " + e + "\n" + data); - return null; - } - this.parseOneRuleset(xmlruleset.documentElement, rule_store, ruleset_id); - }, - - parseOneRuleset: function(xmlruleset, rule_store, ruleset_id) { - // Extract an xmlruleset into the rulestore - if (!xmlruleset.getAttribute("name")) { - this.log(WARN, "This blob: '" + xmlruleset + "' is not a ruleset\n"); - return null; - } - - this.log(DBUG, "Parsing " + xmlruleset.getAttribute("name")); - - var match_rl = xmlruleset.getAttribute("match_rule"); - var dflt_off = xmlruleset.getAttribute("default_off"); - var platform = xmlruleset.getAttribute("platform"); - var rs = new RuleSet(ruleset_id, xmlruleset.getAttribute("name"), xmlruleset.getAttribute("f"), match_rl, dflt_off, platform); - - // see if this ruleset has the same name as an existing ruleset; - // if so, this ruleset is ignored; DON'T add or return it. - if (rs.name in rule_store.rulesetsByName) { - this.log(WARN, "Error: found duplicate rule name " + rs.name); - return null; - } - - // Add this ruleset id into HTTPSRules.targets if it's not already there. - // This should only happen for custom user rules. Built-in rules get - // their ids preloaded into the targets map, and have their <target> - // tags stripped when the JSON database is built. - var targets = xmlruleset.getElementsByTagName("target"); - for (var i = 0; i < targets.length; i++) { - var host = targets[i].getAttribute("host"); - if (!host) { - this.log(WARN, "<target> missing host in " + xmlruleset.getAttribute("name")); - return null; - } - if (! rule_store.targets[host]) - rule_store.targets[host] = []; - this.log(DBUG, "Adding " + host + " to targets, pointing at " + ruleset_id); - rule_store.targets[host].push(ruleset_id); - } - - var exclusions = xmlruleset.getElementsByTagName("exclusion"); - for (var i = 0; i < exclusions.length; i++) { - var exclusion = new Exclusion(exclusions[i].getAttribute("pattern")); - rs.exclusions.push(exclusion); - } - - var rules = xmlruleset.getElementsByTagName("rule"); - for (var i = 0; i < rules.length; i++) { - var rule = new Rule(rules[i].getAttribute("from"), - rules[i].getAttribute("to")); - rs.rules.push(rule); - } - - var securecookies = xmlruleset.getElementsByTagName("securecookie"); - for (var i = 0; i < securecookies.length; i++) { - var c_rule = new CookieRule(securecookies[i].getAttribute("host"), - securecookies[i].getAttribute("name")); - rs.cookierules.push(c_rule); - this.log(DBUG,"Cookie rule "+ c_rule.host+ " " +c_rule.name); - } - - rule_store.rulesets.push(rs); - rule_store.rulesetsByID[rs.id] = rs; - rule_store.rulesetsByName[rs.name] = rs; - }, - - enumerate: function(dir) { - // file is the given directory (nsIFile) - var entries = dir.directoryEntries; - var ret = []; - while(entries.hasMoreElements()) { - var entry = entries.getNext(); - entry.QueryInterface(Components.interfaces.nsIFile); - ret.push(entry); - } - return ret; - }, -}; - - - -const HTTPSRules = { - init: function() { - try { - this.rulesets = []; - this.targets = {}; // dict mapping target host pattern -> list of - // applicable ruleset ids - this.rulesetsByID = {}; - this.rulesetsByName = {}; - var t1 = new Date().getTime(); - this.checkMixedContentHandling(); - var rulefiles = RuleWriter.enumerate(RuleWriter.getCustomRuleDir()); - - this.loadTargets(); - this.scanRulefiles(rulefiles); - - } catch(e) { - this.log(DBUG,"Rules Failed: "+e); - } - var t2 = new Date().getTime(); - this.log(NOTE,"Loading targets took " + (t2 - t1) / 1000.0 + " seconds"); - - return; - }, - - /** - * Read and parse the ruleset JSON. - * Note: This only parses the outer JSON wrapper. Each ruleset is itself an - * XML string, which will be parsed on an as-needed basis. - */ - loadTargets: function() { - var loc = "chrome://https-everywhere/content/rulesets.json"; - var data = RuleWriter.readFromUrl(loc); - var rules = JSON.parse(data); - this.targets = rules.targets; - this.rulesetStrings = rules.rulesetStrings; - }, - - checkMixedContentHandling: function() { - // Firefox 23+ blocks mixed content by default, so rulesets that create - // mixed content situations should be disabled there - var appInfo = CC["@mozilla.org/xre/app-info;1"].getService(CI.nsIXULAppInfo); - var platformVer = appInfo.platformVersion; - var versionChecker = CC["@mozilla.org/xpcom/version-comparator;1"] - .getService(CI.nsIVersionComparator); - var prefs = Components.classes["@mozilla.org/preferences-service;1"] - .getService(Components.interfaces.nsIPrefService).getBranch(""); - - - // If mixed content is present and enabled, and the user hasn't opted to enable - // mixed content triggering rules, leave them out. Otherwise add them in. - if(versionChecker.compare(appInfo.version, "23.0a1") >= 0 - && prefs.getBoolPref("security.mixed_content.block_active_content") - && !prefs.getBoolPref("extensions.https_everywhere.enable_mixed_rulesets")) { - this.log(INFO, "Not activating rules that trigger mixed content errors."); - this.localPlatformRegexp = new RegExp("firefox"); - } else { - this.log(INFO, "Activating rules that would normally trigger mixed content"); - this.localPlatformRegexp = new RegExp("(firefox|mixedcontent)"); - } - }, - - scanRulefiles: function(rulefiles) { - var i = 0; - var r = null; - for(i = 0; i < rulefiles.length; ++i) { - try { - this.log(DBUG,"Loading ruleset file: "+rulefiles[i].path); - var ruleset_id = "custom_" + i; - RuleWriter.rulesetFromFile(rulefiles[i], this, ruleset_id); - } catch(e) { - this.log(WARN, "Error in ruleset file: " + e); - if (e.lineNumber) - this.log(WARN, "(line number: " + e.lineNumber + ")"); - } - } - }, - - resetRulesetsToDefaults: function() { - // Callable from within the prefs UI and also for cleaning up buggy - // configurations... - for (var i in this.rulesets) { - this.rulesets[i].clear(); - } - }, - - - rewrittenURI: function(alist, input_uri) { - // This function oversees the task of working out if a uri should be - // rewritten, what it should be rewritten to, and recordkeeping of which - // applicable rulesets are and aren't active. Previously this returned - // the new uri if there was a rewrite. Now it returns a JS object with a - // newuri attribute and an applied_ruleset attribute (or null if there's - // no rewrite). - var i = 0; - userpass_present = false; // Global so that sanitiseURI can tweak it. - // Why does JS have no tuples, again? - var blob = {}; blob.newuri = null; - if (!alist) this.log(DBUG, "No applicable list rewriting " + input_uri.spec); - this.log(DBUG, "Processing " + input_uri.spec); - - var uri = this.sanitiseURI(input_uri); - - // Get the list of rulesets that target this host - try { - var rs = this.potentiallyApplicableRulesets(uri.host); - } catch(e) { - this.log(NOTE, 'Could not check applicable rules for '+uri.spec + '\n'+e); - return null; - } - - // ponder each potentially applicable ruleset, working out if it applies - // and recording it as active/inactive/moot/breaking in the applicable list - for (i = 0; i < rs.length; ++i) { - if (!rs[i].active) { - if (alist && rs[i].wouldMatch(uri, alist)) - alist.inactive_rule(rs[i]); - continue; - } - blob.newuri = rs[i].transformURI(uri); - if (blob.newuri) { - if (alist) { - if (uri.spec in https_everywhere_blacklist) - alist.breaking_rule(rs[i]); - else - alist.active_rule(rs[i]); - } - if (userpass_present) blob.newuri.userPass = input_uri.userPass; - blob.applied_ruleset = rs[i]; - return blob; - } - if (uri.scheme == "https" && alist) { - // we didn't rewrite but the rule applies to this domain and the - // requests are going over https - if (rs[i].wouldMatch(uri, alist)) alist.moot_rule(rs[i]); - continue; - } - } - return null; - }, - - sanitiseURI: function(input_uri) { - // Rulesets shouldn't try to parse usernames and passwords. If we find - // those, apply the ruleset without them (and then add them back later). - // When .userPass is absent, sometimes it is false and sometimes trying - // to read it raises an exception (probably depending on the URI type). - var uri = input_uri; - try { - if (input_uri.userPass) { - uri = input_uri.clone(); - userpass_present = true; // tweaking a global in our caller :( - uri.userPass = null; - } - } catch(e) {} - - // example.com. is equivalent to example.com - // example.com.. is invalid, but firefox would load it anyway - try { - if (uri.host) - try { - var h = uri.host; - if (h.charAt(h.length - 1) == ".") { - while (h.charAt(h.length - 1) == ".") - h = h.slice(0,-1); - uri = uri.clone(); - uri.host = h; - } - } catch(e) { - this.log(WARN, "Failed to normalise domain: "); - try {this.log(WARN, input_uri.host);} - catch(e2) {this.log(WARN, "bang" + e + " & " + e2 + " & "+ input_uri);} - } - } catch(e3) { - this.log(INFO, "uri.host is explosive!"); - try { this.log(INFO, "(" + uri.spec + ")"); } // happens for about: uris and so forth - catch(e4) { this.log(WARN, "(and unprintable!!!!!!)"); } - } - return uri; - }, - - setInsert: function(intoList, fromList) { - // Insert any elements from fromList into intoList, if they are not - // already there. fromList may be null. - if (!fromList) return; - for (var i = 0; i < fromList.length; i++) - if (intoList.indexOf(fromList[i]) == -1) - intoList.push(fromList[i]); - }, - - // Load a ruleset by numeric id, e.g. 234 - loadRulesetById: function(ruleset_id) { - RuleWriter.readFromString(this.rulesetStrings[ruleset_id], this, ruleset_id); - }, - - // Get all rulesets matching a given target, lazy-loading from DB as necessary. - rulesetsByTarget: function(target) { - var rulesetIds = this.targets[target]; - - var output = []; - if (rulesetIds) { - this.log(INFO, "For target " + target + ", found ids " + rulesetIds.toString()); - for (var i = 0; i < rulesetIds.length; i++) { - var id = rulesetIds[i]; - if (!this.rulesetsByID[id]) { - this.loadRulesetById(id); - } - if (this.rulesetsByID[id]) { - output.push(this.rulesetsByID[id]); - } - } - } else { - this.log(DBUG, "For target " + target + ", found no ids in DB"); - } - return output; - }, - - /** - * Return a list of rulesets that declare targets matching a given hostname. - * The returned rulesets include those that are disabled for various reasons. - * This function is only defined for fully-qualified hostnames. Wildcards and - * cookie-style domain attributes with a leading dot are not permitted. - * @param host {string} - * @return {Array.<RuleSet>} - */ - potentiallyApplicableRulesets: function(host) { - var i, tmp, t; - var results = []; - - var attempt = function(target) { - this.setInsert(results, this.rulesetsByTarget(target)); - }.bind(this); - - attempt(host); - - // Ensure host is well-formed (RFC 1035) - if (host.indexOf("..") != -1 || host.length > 255) { - this.log(WARN,"Malformed host passed to potentiallyApplicableRulesets: " + host); - return null; - } - - // replace each portion of the domain with a * in turn - var segmented = host.split("."); - for (i = 0; i < segmented.length; ++i) { - tmp = segmented[i]; - segmented[i] = "*"; - t = segmented.join("."); - segmented[i] = tmp; - attempt(t); - } - // now eat away from the left, with *, so that for x.y.z.google.com we - // check *.z.google.com and *.google.com (we did *.y.z.google.com above) - for (i = 2; i <= segmented.length - 2; ++i) { - t = "*." + segmented.slice(i,segmented.length).join("."); - attempt(t); - } - this.log(DBUG,"Potentially applicable rules for " + host + ":"); - for (i = 0; i < results.length; ++i) - this.log(DBUG, " " + results[i].name); - return results; - }, - - /** - * If a cookie's domain attribute has a leading dot to indicate it should be - * sent for all subdomains (".example.com"), return the actual host part (the - * part after the dot). - * - * @param cookieDomain {string} A cookie domain to strip a leading dot from. - * @return {string} a fully qualified hostname. - */ - hostFromCookieDomain: function(cookieDomain) { - if (cookieDomain.length > 0 && cookieDomain[0] == ".") { - return cookieDomain.slice(1); - } else { - return cookieDomain; - } - }, - - /** - * Check to see if the Cookie object c meets any of our cookierule criteria - * for being marked as secure. - * - * @param applicable_list {ApplicableList} an ApplicableList for record keeping - * @param c {nsICookie2} The cookie we might secure. - * @param known_https {boolean} True if the cookie appeared in an HTTPS request and - * so we know it is okay to mark it secure (assuming a cookierule matches it. - * TODO(jsha): Double-check that the code calling this actually does that. - * @return {boolean} True if the cookie in question should have the 'secure' - * flag set to true. - */ - shouldSecureCookie: function(applicable_list, c, known_https) { - this.log(DBUG," rawhost: " + c.rawHost + " name: " + c.name + " host" + c.host); - var i,j; - // potentiallyApplicableRulesets is defined on hostnames not cookie-style - // "domain" attributes, so we strip a leading dot before calling. - var rs = this.potentiallyApplicableRulesets(this.hostFromCookieDomain(c.host)); - for (i = 0; i < rs.length; ++i) { - var ruleset = rs[i]; - if (ruleset.active) { - ruleset.ensureCompiled(); - // Never secure a cookie if this page might be HTTP - if (!(known_https || this.safeToSecureCookie(c.rawHost))) { - continue; - } - for (j = 0; j < ruleset.cookierules.length; j++) { - var cr = ruleset.cookierules[j]; - if (cr.host_c.test(c.host) && cr.name_c.test(c.name)) { - if (applicable_list) applicable_list.active_rule(ruleset); - this.log(INFO,"Active cookie rule " + ruleset.name); - return true; - } - } - if (ruleset.cookierules.length > 0 && applicable_list) { - applicable_list.moot_rule(ruleset); - } - } else if (ruleset.cookierules.length > 0) { - if (applicable_list) { - applicable_list.inactive_rule(ruleset); - } - this.log(INFO,"Inactive cookie rule " + ruleset.name); - } - } - return false; - }, - - /** - * Check if the domain might be being served over HTTP. If so, it isn't - * safe to secure a cookie! We can't always know this for sure because - * observing cookie-changed doesn't give us enough context to know the - * full origin URI. In particular, if cookies are set from Javascript (as - * opposed to HTTP/HTTPS responses), we don't know what page context that - * Javascript ran in. - - * First, if there are any redirect loops on this domain, don't secure - * cookies. XXX This is not a very satisfactory heuristic. Sometimes we - * would want to secure the cookie anyway, because the URLs that loop are - * not authenticated or not important. Also by the time the loop has been - * observed and the domain blacklisted, a cookie might already have been - * flagged as secure. - * - * @param domain {string} The cookie's 'domain' attribute. - * @return {boolean} True if it's safe to secure a cookie on that domain. - */ - safeToSecureCookie: function(domain) { - if (domain in https_blacklist_domains) { - this.log(INFO, "cookies for " + domain + "blacklisted"); - return false; - } - - // If we passed that test, make up a random URL on the domain, and see if - // we would HTTPSify that. - try { - var nonce_path = "/" + Math.random().toString(); - nonce_path = nonce_path + nonce_path; - var test_uri = "http://" + domain + nonce_path; - } catch (e) { - this.log(WARN, "explosion in safeToSecureCookie for " + domain + "\n" - + "(" + e + ")"); - return false; - } - - this.log(DBUG, "Testing securecookie applicability with " + test_uri); - // potentiallyApplicableRulesets is defined on hostnames not cookie-style - // "domain" attributes, so we strip a leading dot before calling. - var rs = this.potentiallyApplicableRulesets(this.hostFromCookieDomain(domain)); - for (var i = 0; i < rs.length; ++i) { - if (!rs[i].active) continue; - var rewrite = rs[i].apply(test_uri); - if (rewrite) { - this.log(DBUG, "Safe to secure cookie for " + test_uri + ": " + rewrite); - return true; - } - } - this.log(DBUG, "Unsafe to secure cookie for " + test_uri); - return false; - } -}; diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/content/code/IOUtil.js b/data/extensions/https-everywhere-eff@eff.org/chrome/content/code/IOUtil.js deleted file mode 100644 index 4893763..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/content/code/IOUtil.js +++ /dev/null @@ -1,267 +0,0 @@ -Components.utils.import("resource://gre/modules/XPCOMUtils.jsm"); - -const IO = { - readFile: function(file, charset) { - var res; - - const is = Cc["@mozilla.org/network/file-input-stream;1"] - .createInstance(Ci.nsIFileInputStream ); - is.init(file ,0x01, 256 /*0400*/, null); - const sis = Cc["@mozilla.org/scriptableinputstream;1"] - .createInstance(Ci.nsIScriptableInputStream); - sis.init(is); - - res = sis.read(sis.available()); - is.close(); - - if (charset !== null) { // use "null" if you want unconverted data... - const unicodeConverter = Cc["@mozilla.org/intl/scriptableunicodeconverter"] - .createInstance(Ci.nsIScriptableUnicodeConverter); - try { - unicodeConverter.charset = charset || "UTF-8"; - } catch(ex) { - unicodeConverter.charset = "UTF-8"; - } - res = unicodeConverter.ConvertToUnicode(res); - } - - return res; - }, - writeFile: function(file, content, charset) { - const unicodeConverter = Cc["@mozilla.org/intl/scriptableunicodeconverter"] - .createInstance(Ci.nsIScriptableUnicodeConverter); - try { - unicodeConverter.charset = charset || "UTF-8"; - } catch(ex) { - unicodeConverter.charset = "UTF-8"; - } - - content = unicodeConverter.ConvertFromUnicode(content); - const os = Cc["@mozilla.org/network/file-output-stream;1"] - .createInstance(Ci.nsIFileOutputStream); - os.init(file, 0x02 | 0x08 | 0x20, 448 /*0700*/, 0); - os.write(content, content.length); - os.close(); - }, - - safeWriteFile: function(file, content, charset) { - var tmp = file.clone(); - var name = file.leafName; - tmp.leafName = name + ".tmp"; - tmp.createUnique(Ci.nsIFile.NORMAL_FILE_TYPE, file.exists() ? file.permissions : 384 /*0600*/); - this.writeFile(tmp, content, charset); - tmp.moveTo(file.parent, name); - } -}; - - -function nsISupportsWrapper(wrapped) { - this.wrappedJSObject = wrapped; -} -nsISupportsWrapper.prototype = { - QueryInterface: XPCOMUtils.generateQI([]) -}; - -const IOUtil = { - asyncNetworking: true, - proxiedDNS: 0, - - attachToChannel: function(channel, key, requestInfo) { - if (channel instanceof Ci.nsIWritablePropertyBag2) - channel.setPropertyAsInterface(key, requestInfo); - }, - extractFromChannel: function(channel, key, preserve) { - if (channel instanceof Ci.nsIPropertyBag2) { - let p = channel.get(key); - if (p) { - if (!preserve && (channel instanceof Ci.nsIWritablePropertyBag)) channel.deleteProperty(key); - if (p.wrappedJSObject) return p.wrappedJSObject; - p instanceof Ci.nsIURL || p instanceof Ci.nsIURL; - return p; - } - } - return null; - }, - - extractInternalReferrer: function(channel) { - if (channel instanceof Ci.nsIPropertyBag2) { - const key = "docshell.internalReferrer"; - if (channel.hasKey(key)) - try { - return channel.getPropertyAsInterface(key, Ci.nsIURL); - } catch(e) {} - } - return null; - }, - extractInternalReferrerSpec: function(channel) { - var ref = this.extractInternalReferrer(channel); - return ref && ref.spec || null; - }, - - getProxyInfo: function(channel) { - return Ci.nsIProxiedChannel && (channel instanceof Ci.nsIProxiedChannel) - ? channel.proxyInfo - : Components.classes["@mozilla.org/network/protocol-proxy-service;1"] - .getService(Components.interfaces.nsIProtocolProxyService) - .resolve(channel.URI, 0); - }, - - - canDoDNS: function(channel) { - if (!channel || IOS.offline) return false; - - var proxyInfo = this.getProxyInfo(channel); - switch(this.proxiedDNS) { - case 1: - return !(proxyInfo && (proxyInfo.flags & Ci.nsIProxyInfo.TRANSPARENT_PROXY_RESOLVES_HOST)); - case 2: - return true; - default: - return !proxyInfo || proxyInfo.type == "direct"; - } - - }, - - abort: function(channel, noNetwork) { - channel.cancel(Components.results.NS_ERROR_ABORT); - }, - - findWindow: function(channel) { - for (var cb of [channel.notificationCallbacks, - channel.loadGroup && channel.loadGroup.notificationCallbacks]) { - if (cb instanceof Ci.nsIInterfaceRequestor) { - if (Ci.nsILoadContext) try { - // For Gecko 1.9.1 - return cb.getInterface(Ci.nsILoadContext).associatedWindow; - } catch(e) {} - - try { - // For Gecko 1.9.0 - return cb.getInterface(Ci.nsIDOMWindow); - } catch(e) {} - } - } - return null; - }, - - readFile: IO.readFile, - writeFile: IO.writeFile, - safeWriteFIle: IO.safeWriteFile, - - _protocols: {}, // caching them we gain a 33% speed boost in URI creation :) - newURI: function(url) { - try { - let scheme = url.substring(0, url.indexOf(':')); - return (this._protocols[scheme] || - (this._protocols[scheme] = - Cc["@mozilla.org/network/protocol;1?name=" + scheme] - .getService(Ci.nsIProtocolHandler))) - .newURI(url, null, null); - } catch(e) { - return IOS.newURI(url, null, null); - } - }, - - unwrapURL: function(url) { - try { - if (!(url instanceof Ci.nsIURI)) - url = this.newURI(url); - - switch (url.scheme) { - case "view-source": - return this.unwrapURL(url.path); - case "feed": - let u = url.spec.substring(5); - if (u.substring(0, 2) == '//') u = "http:" + u; - return this.unwrapURL(u); - case "wyciwyg": - return this.unwrapURL(url.path.replace(/^\/\/\d+\//, "")); - case "jar": - if (url instanceof Ci.nsIJARURI) - return this.unwrapURL(url.JARFile); - } - } - catch (e) {} - - return url; - }, - - - get _channelFlags() { - delete this._channelFlags; - const constRx = /^[A-Z_]+$/; - const ff = {}; - [Ci.nsIHttpChannel, Ci.nsICachingChannel].forEach(function(c) { - for (var p in c) { - if (constRx.test(p)) ff[p] = c[p]; - } - }); - return this._channelFlags = ff; - }, - humanFlags: function(loadFlags) { - var hf = []; - var c = this._channelFlags; - for (var p in c) { - if (loadFlags & c[p]) hf.push(p + "=" + c[p]); - } - return hf.join("\n"); - }, - - queryNotificationCallbacks: function(chan, iid) { - var cb; - try { - cb = chan.notificationCallbacks.getInterface(iid); - if (cb) return cb; - } catch(e) {} - - try { - return chan.loadGroup && chan.loadGroup.notificationCallbacks.getInterface(iid); - } catch(e) {} - - return null; - }, - - - anonymizeURI: function(uri, cookie) { - if (uri instanceof Ci.nsIURL) { - uri.query = this.anonymizeQS(uri.query, cookie); - } else return this.anonymizeURL(uri, cookie); - return uri; - }, - anonymizeURL: function(url, cookie) { - var parts = url.split("?"); - if (parts.length < 2) return url; - parts[1] = this.anonymizeQS(parts[1], cookie); - return parts.join("?"); - }, - - _splitName: function(nv) { - return nv.split("=")[0]; - }, - _qsRx: /[&=]/, - _anonRx: /(?:auth|s\w+(?:id|key)$)/, - anonymizeQS: function(qs, cookie) { - if (!qs) return qs; - if (!this._qsRx.test(qs)) return ''; - - var cookieNames, hasCookies; - if ((hasCookies = !!cookie)) cookieNames = cookie.split(/\s*;\s*/).map(this._splitName); - - let parms = qs.split("&"); - for (var j = parms.length; j-- > 0;) { - let nv = parms[j].split("="); - let name = nv[0]; - if (this._anonRx.test(name) || cookie && cookieNames.indexOf(name) > -1) - parms.splice(j, 1); - } - return parms.join("&"); - }, - - get TLDService() { - delete this.TLDService; - return this.TLDService = Cc["@mozilla.org/network/effective-tld-service;1"].getService(Ci.nsIEffectiveTLDService); - } - -}; - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/content/code/NSS.js b/data/extensions/https-everywhere-eff@eff.org/chrome/content/code/NSS.js deleted file mode 100644 index 089ae38..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/content/code/NSS.js +++ /dev/null @@ -1,489 +0,0 @@ -// Copyright (c) 2011 Moxie Marlinspike <moxie@thoughtcrime.org> -// This program is free software; you can redistribute it and/or -// modify it under the terms of the GNU General Public License as -// published by the Free Software Foundation; either version 3 of the -// License, or (at your option) any later version. - -// This program is distributed in the hope that it will be useful, but -// WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -// General Public License for more details. - -// You should have received a copy of the GNU General Public License -// along with this program; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 -// USA - - -/** - * This class manages the ctypes bridge to the NSS (crypto) libraries - * distributed with Mozilla. - * - **/ - -function NSS() { - -} - -NSS.initialize = function() { - var sharedLib; - - Components.utils.import("resource://gre/modules/Services.jsm"); - var nssFile = Services.dirsvc.get("GreD", Ci.nsILocalFile); - nssFile.append(tcypes.libraryName("nss3")); - sharedLib = tcypes.open(nssFile.path); - - NSS.types = new Object(); - - NSS.types.CERTDistNames = tcypes.StructType("CERTDistNames"); - - NSS.types.SECItem = tcypes.StructType("SECItem", - [{'type' : tcypes.int}, - {'data' : tcypes.unsigned_char.ptr}, - {'len' : tcypes.uint32_t}]); - - NSS.types.PLArenaPool = tcypes.StructType("PLArenaPool"); - - NSS.types.CERTCertificateList = tcypes.StructType("CERTCertificateList", - [{'certs' : NSS.types.SECItem.ptr}, - {'len' : tcypes.int}, - {'arena' : NSS.types.PLArenaPool.ptr}]), - - NSS.types.CERTAVA = tcypes.StructType("CERTAVA", - [{'type' : NSS.types.SECItem}, - {'value' : NSS.types.SECItem}]); - - NSS.types.CERTRDN = tcypes.StructType("CERTRDN", - [{'avas' : NSS.types.CERTAVA.ptr.ptr}]); - - NSS.types.SECAlgorithmID = tcypes.StructType("SECAlgorithmID", - [{'algorithm' : NSS.types.SECItem}, - {'parameters' : NSS.types.SECItem}]); - - NSS.types.CERTSignedData = tcypes.StructType("CERTSignedData", - [{'data' : NSS.types.SECItem}, - {'signatureAlgorithm' : NSS.types.SECAlgorithmID}, - {'signature' : NSS.types.SECItem}]); - - NSS.types.CERTOKDomainName = tcypes.StructType("CERTOKDomainName"); - - NSS.types.NSSCertificateStr = tcypes.StructType("NSSCertificateStr"); - - NSS.types.CERTAuthKeyID = tcypes.StructType("CERTAuthKeyID"); - - NSS.types.CERTName = tcypes.StructType("CERTName", - [{'arena' : tcypes.voidptr_t}, - {'rdns' : NSS.types.CERTRDN.ptr.ptr}]); - - NSS.types.CERTValidity = tcypes.StructType("CERTValidity", - [{'arena' : tcypes.voidptr_t}, - {'notBefore' : NSS.types.SECItem}, - {'notAfter' : NSS.types.SECItem}]); - - NSS.types.CERTCertExtension = tcypes.StructType("CERTCertExtension", - [{'id' : NSS.types.SECItem}, - {'critical' : NSS.types.SECItem}, - {'value' : NSS.types.SECItem}]); - - NSS.types.CERTCertDBHandle = tcypes.StructType("CERTCertDBHandle"); - - NSS.types.PK11SlotInfo = tcypes.StructType("PK11SlotInfo"); - - NSS.types.PK11SlotListElement = tcypes.StructType("PK11SlotListElement", - [{'next' : tcypes.StructType("PK11SlotListElement").ptr}, - {'prev' : tcypes.StructType("PK11SlotListElement").ptr}, - {'slot' : NSS.types.PK11SlotInfo.ptr}, - {'refCount' : tcypes.int}]), - - NSS.types.PK11SlotList = tcypes.StructType("PK11SlotList", - [{'head' : NSS.types.PK11SlotListElement.ptr}, - {'tail' : NSS.types.PK11SlotListElement.ptr}, - {'lock' : tcypes.StructType("PZLock").ptr}]), - - NSS.types.SECKEYPrivateKey = tcypes.StructType("SECKEYPrivateKey", - [{'arena' : NSS.types.PLArenaPool.ptr}, - {'keyType' : tcypes.int}, - {'pkcs11Slot' : NSS.types.PK11SlotInfo.ptr}, - {'pkcs11ID' : tcypes.unsigned_long}, - {'pkcs11IsTemp' : tcypes.int}, - {'wincx' : tcypes.voidptr_t}, - {'staticflags' : tcypes.int32_t}]); - - NSS.types.SECKEYPublicKey = tcypes.StructType("SECKEYPublicKey"); - - NSS.types.CERTSubjectPublicKeyInfo = tcypes.StructType("CERTSubjectPublicKeyInfo", - [{'arena' : NSS.types.PLArenaPool.ptr}, - {'algorithm' : NSS.types.SECAlgorithmID}, - {'subjectPublicKey' : NSS.types.SECItem}]); - - NSS.types.CERTCertificateRequest = tcypes.StructType("CERTCertificateRequest"); - - NSS.types.SEC_ASN1Template = tcypes.StructType("SEC_ASN1Template", - [{'kind' : tcypes.unsigned_long}, - {'offset' : tcypes.unsigned_long}, - {'sub' : tcypes.voidptr_t}, - {'size' : tcypes.unsigned_int}]); - - NSS.types.PK11RSAGenParams = tcypes.StructType("PK11RSAGenParams", - [{'keySizeInBits' : tcypes.int}, - {'pe' : tcypes.unsigned_long}]); - - NSS.types.CERTCertTrust = tcypes.StructType("CERTCertTrust", - [{'sslFlags' : tcypes.uint32_t}, - {'emailFlags' : tcypes.uint32_t}, - {'objectSigningFlags' : tcypes.uint32_t}]); - - NSS.types.CERTSubjectList = tcypes.StructType("CERTSubjectList"); - - NSS.types.CERTGeneralName = tcypes.StructType("CERTGeneralName"); - - NSS.types.CERTCertificate = tcypes.StructType("CERTCertificate", - [{'arena' : NSS.types.PLArenaPool.ptr}, - {'subjectName' : tcypes.char.ptr}, - {'issuerName' : tcypes.char.ptr}, - {'signatureWrap' : NSS.types.CERTSignedData}, - {'derCert' : NSS.types.SECItem}, - {'derIssuer' : NSS.types.SECItem}, - {'derSubject' : NSS.types.SECItem}, - {'derPublicKey' : NSS.types.SECItem}, - {'certKey' : NSS.types.SECItem}, - {'version' : NSS.types.SECItem}, - {'serialNumber' : NSS.types.SECItem}, - {'signature' : NSS.types.SECAlgorithmID}, - {'issuer' : NSS.types.CERTName}, - {'validity' : NSS.types.CERTValidity}, - {'subject' : NSS.types.CERTName}, - {'subjectPublicKeyInfo' : NSS.types.CERTSubjectPublicKeyInfo}, - {'issuerID' : NSS.types.SECItem}, - {'subjectID' : NSS.types.SECItem}, - {'extensions' : NSS.types.CERTCertExtension.ptr.ptr}, - {'emailAddr' : tcypes.char.ptr}, - {'dbhandle' : NSS.types.CERTCertDBHandle.ptr}, - {'subjectKeyID' : NSS.types.SECItem}, - {'keyIDGenerated' : tcypes.int}, - {'keyUsage' : tcypes.unsigned_int}, - {'rawKeyUsage' : tcypes.unsigned_int}, - {'keyUsagePresent' : tcypes.int}, - {'nsCertType' : tcypes.uint32_t}, - {'keepSession' : tcypes.int}, - {'timeOK' : tcypes.int}, - {'domainOK' : NSS.types.CERTOKDomainName.ptr}, - {'isperm' : tcypes.int}, - {'istemp' : tcypes.int}, - {'nickname' : tcypes.char.ptr}, - {'dbnickname' : tcypes.char.ptr}, - {'nssCertificate' : NSS.types.NSSCertificateStr.ptr}, - {'trust' : NSS.types.CERTCertTrust.ptr}, - {'referenceCount' : tcypes.int}, - {'subjectList' : NSS.types.CERTSubjectList.ptr}, - {'authKeyID' : NSS.types.CERTAuthKeyID.ptr}, - {'isRoot' : tcypes.int}, - {'options' : tcypes.voidptr_t}, - {'series' : tcypes.int}, - {'slot' : NSS.types.PK11SlotInfo.ptr}, - {'pkcs11ID' : tcypes.unsigned_long}, - {'ownSlot' : tcypes.int}]); - - NSS.types.CERTBasicConstraints = tcypes.StructType("CERTBasicConstraints", - [{'isCA': tcypes.int}, - {'pathLenConstraint' : tcypes.int}]); - - - NSS.lib = { - SEC_OID_MD5 : 3, - SEC_OID_SHA1 : 4, - SEC_OID_X509_KEY_USAGE : 81, - SEC_OID_NS_CERT_EXT_COMMENT : 75, - CKM_RSA_PKCS_KEY_PAIR_GEN : 0, - buffer : tcypes.ArrayType(tcypes.char), - ubuffer : tcypes.ArrayType(tcypes.unsigned_char), - - // CERT_CertificateTemplate : sharedLib.declare("CERT_CertificateTemplate", - // NSS.types.SEC_ASN1Template), - - NSS_Get_CERT_CertificateTemplate : sharedLib.declare("NSS_Get_CERT_CertificateTemplate", - tcypes.default_abi, - NSS.types.SEC_ASN1Template.ptr), - - PK11_HashBuf : sharedLib.declare("PK11_HashBuf", - tcypes.default_abi, - tcypes.int, - tcypes.int, - tcypes.unsigned_char.ptr, - tcypes.unsigned_char.ptr, - tcypes.int32_t), - - CERT_GetDefaultCertDB : sharedLib.declare("CERT_GetDefaultCertDB", - tcypes.default_abi, - NSS.types.CERTCertDBHandle.ptr), - - CERT_ChangeCertTrust : sharedLib.declare("CERT_ChangeCertTrust", - tcypes.default_abi, - tcypes.int32_t, - NSS.types.CERTCertDBHandle.ptr, - NSS.types.CERTCertificate.ptr, - NSS.types.CERTCertTrust.ptr), - - CERT_FindCertByNickname : sharedLib.declare("CERT_FindCertByNickname", - tcypes.default_abi, - NSS.types.CERTCertificate.ptr, - NSS.types.CERTCertDBHandle.ptr, - tcypes.char.ptr), - - CERT_FindCertByDERCert : sharedLib.declare("CERT_FindCertByDERCert", - tcypes.default_abi, - NSS.types.CERTCertificate.ptr, - NSS.types.CERTCertDBHandle.ptr, - NSS.types.SECItem.ptr), - - CERT_VerifyCertNow : sharedLib.declare("CERT_VerifyCertNow", - tcypes.default_abi, - tcypes.int, - NSS.types.CERTCertDBHandle.ptr, - NSS.types.CERTCertificate.ptr, - tcypes.int, - tcypes.int, - tcypes.voidptr_t), - - CERT_CertChainFromCert : sharedLib.declare("CERT_CertChainFromCert", - tcypes.default_abi, - NSS.types.CERTCertificateList.ptr, - NSS.types.CERTCertificate.ptr, - tcypes.int, - tcypes.int), - - PK11_FindKeyByAnyCert : sharedLib.declare("PK11_FindKeyByAnyCert", - tcypes.default_abi, - NSS.types.SECKEYPrivateKey.ptr, - NSS.types.CERTCertificate.ptr, - tcypes.voidptr_t), - - PK11_GetInternalKeySlot : sharedLib.declare("PK11_GetInternalKeySlot", - tcypes.default_abi, - NSS.types.PK11SlotInfo.ptr), - - PK11_GetAllSlotsForCert : sharedLib.declare("PK11_GetAllSlotsForCert", - tcypes.default_abi, - NSS.types.PK11SlotList.ptr, - NSS.types.CERTCertificate.ptr, - tcypes.voidptr_t), - - PK11_GetTokenName : sharedLib.declare("PK11_GetTokenName", - tcypes.default_abi, - tcypes.char.ptr, - NSS.types.PK11SlotInfo.ptr), - - PK11_GenerateKeyPair : sharedLib.declare("PK11_GenerateKeyPair", - tcypes.default_abi, - NSS.types.SECKEYPrivateKey.ptr, - NSS.types.PK11SlotInfo.ptr, - tcypes.int, - NSS.types.PK11RSAGenParams.ptr, - NSS.types.SECKEYPublicKey.ptr.ptr, - tcypes.int, - tcypes.int, - tcypes.voidptr_t), - - PK11_SetPrivateKeyNickname : sharedLib.declare("PK11_SetPrivateKeyNickname", - tcypes.default_abi, - tcypes.int, - NSS.types.SECKEYPrivateKey.ptr, - tcypes.char.ptr), - - SEC_ASN1EncodeItem : sharedLib.declare("SEC_ASN1EncodeItem", - tcypes.default_abi, - NSS.types.SECItem.ptr, - NSS.types.PLArenaPool.ptr, - NSS.types.SECItem.ptr, - tcypes.voidptr_t, - NSS.types.SEC_ASN1Template.ptr), - - SEC_DerSignData : sharedLib.declare("SEC_DerSignData", - tcypes.default_abi, - tcypes.int, - NSS.types.PLArenaPool.ptr, - NSS.types.SECItem.ptr, - tcypes.unsigned_char.ptr, - tcypes.int, - NSS.types.SECKEYPrivateKey.ptr, - tcypes.int), - - SEC_GetSignatureAlgorithmOidTag : sharedLib.declare("SEC_GetSignatureAlgorithmOidTag", - tcypes.default_abi, - tcypes.int, - tcypes.int, - tcypes.int), - - SECOID_SetAlgorithmID : sharedLib.declare("SECOID_SetAlgorithmID", - tcypes.default_abi, - tcypes.int, - NSS.types.PLArenaPool.ptr, - NSS.types.SECAlgorithmID.ptr, - tcypes.int, - NSS.types.SECItem.ptr), - - - CERT_Hexify : sharedLib.declare("CERT_Hexify", - tcypes.default_abi, - tcypes.char.ptr, - NSS.types.SECItem.ptr, - tcypes.int), - - CERT_AsciiToName : sharedLib.declare("CERT_AsciiToName", - tcypes.default_abi, - NSS.types.CERTName.ptr, - tcypes.char.ptr), - - SECKEY_CreateSubjectPublicKeyInfo : sharedLib.declare("SECKEY_CreateSubjectPublicKeyInfo", - tcypes.default_abi, - NSS.types.CERTSubjectPublicKeyInfo.ptr, - NSS.types.SECKEYPublicKey.ptr), - - CERT_CreateCertificateRequest : sharedLib.declare("CERT_CreateCertificateRequest", - tcypes.default_abi, - NSS.types.CERTCertificateRequest.ptr, - NSS.types.CERTName.ptr, - NSS.types.CERTSubjectPublicKeyInfo.ptr, - NSS.types.SECItem.ptr.ptr), - - CERT_CreateCertificate : sharedLib.declare("CERT_CreateCertificate", - tcypes.default_abi, - NSS.types.CERTCertificate.ptr, - tcypes.uint32_t, - NSS.types.CERTName.ptr, - NSS.types.CERTValidity.ptr, - NSS.types.CERTCertificateRequest.ptr), - - CERT_DestroyCertificate : sharedLib.declare("CERT_DestroyCertificate", - tcypes.default_abi, - tcypes.int, - NSS.types.CERTCertificate.ptr), - - CERT_DestroyCertificateList : sharedLib.declare("CERT_DestroyCertificateList", - tcypes.default_abi, - tcypes.int, - NSS.types.CERTCertificateList.ptr), - - CERT_NewTempCertificate : sharedLib.declare("CERT_NewTempCertificate", - tcypes.default_abi, - NSS.types.CERTCertificate.ptr, - NSS.types.CERTCertDBHandle.ptr, - NSS.types.SECItem.ptr, - tcypes.char.ptr, - tcypes.int, - tcypes.int), - - CERT_CreateValidity : sharedLib.declare("CERT_CreateValidity", - tcypes.default_abi, - NSS.types.CERTValidity.ptr, - tcypes.int64_t, - tcypes.int64_t), - - CERT_CertListFromCert : sharedLib.declare("CERT_CertListFromCert", - tcypes.default_abi, - NSS.types.CERTCertificateList.ptr, - NSS.types.CERTCertificate.ptr), - - CERT_StartCertExtensions : sharedLib.declare("CERT_StartCertExtensions", - tcypes.default_abi, - tcypes.voidptr_t, - NSS.types.CERTCertificate.ptr), - - CERT_AddExtension : sharedLib.declare("CERT_AddExtension", - tcypes.default_abi, - tcypes.int, - tcypes.voidptr_t, - tcypes.int, - NSS.types.SECItem.ptr, - tcypes.int, - tcypes.int), - - - CERT_EncodeBasicConstraintValue : sharedLib.declare("CERT_EncodeBasicConstraintValue", - tcypes.default_abi, - tcypes.int, - NSS.types.PLArenaPool.ptr, - NSS.types.CERTBasicConstraints.ptr, - NSS.types.SECItem.ptr), - - CERT_EncodeAndAddBitStrExtension : sharedLib.declare("CERT_EncodeAndAddBitStrExtension", - tcypes.default_abi, - tcypes.int, - tcypes.voidptr_t, - tcypes.int, - NSS.types.SECItem.ptr, - tcypes.int), - - CERT_EncodeAltNameExtension : sharedLib.declare("CERT_EncodeAltNameExtension", - tcypes.default_abi, - tcypes.int, - NSS.types.PLArenaPool.ptr, - NSS.types.CERTGeneralName.ptr, - NSS.types.SECItem.ptr), - - CERT_FinishExtensions : sharedLib.declare("CERT_FinishExtensions", - tcypes.default_abi, - tcypes.int, - tcypes.voidptr_t), - - CERT_ImportCerts : sharedLib.declare("CERT_ImportCerts", - tcypes.default_abi, - tcypes.int, - NSS.types.CERTCertDBHandle.ptr, - tcypes.int, - tcypes.int, - NSS.types.SECItem.ptr.ptr, - NSS.types.CERTCertificate.ptr.ptr.ptr, - tcypes.int, - tcypes.int, - tcypes.char.ptr), - - PORT_NewArena : sharedLib.declare("PORT_NewArena", - tcypes.default_abi, - NSS.types.PLArenaPool.ptr, - tcypes.uint32_t), - - PORT_ArenaZAlloc : sharedLib.declare("PORT_ArenaZAlloc", - tcypes.default_abi, - tcypes.voidptr_t, - NSS.types.PLArenaPool.ptr, - tcypes.int), - - PORT_FreeArena : sharedLib.declare("PORT_FreeArena", - tcypes.default_abi, - tcypes.void_t, - NSS.types.PLArenaPool.ptr, - tcypes.int), - - CERT_GetCommonName : sharedLib.declare("CERT_GetCommonName", - tcypes.default_abi, - tcypes.char.ptr, - NSS.types.CERTName.ptr), - - CERT_GetOrgUnitName : sharedLib.declare("CERT_GetOrgUnitName", - tcypes.default_abi, - tcypes.char.ptr, - NSS.types.CERTName.ptr), - - CERT_GetCertificateNames : sharedLib.declare("CERT_GetCertificateNames", - tcypes.default_abi, - NSS.types.CERTGeneralName.ptr, - NSS.types.CERTCertificate.ptr, - NSS.types.PLArenaPool.ptr), - - CERT_DecodeDERCertificate : sharedLib.declare("__CERT_DecodeDERCertificate", - tcypes.default_abi, - NSS.types.CERTCertificate.ptr, - NSS.types.SECItem.ptr, - tcypes.int, - tcypes.char.ptr), - - CERT_FindCertExtension : sharedLib.declare("CERT_FindCertExtension", - tcypes.default_abi, - tcypes.int, - NSS.types.CERTCertificate.ptr, - tcypes.int, - NSS.types.SECItem.ptr), - }; - -}; diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/content/code/Root-CAs.js b/data/extensions/https-everywhere-eff@eff.org/chrome/content/code/Root-CAs.js deleted file mode 100644 index 15372bc..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/content/code/Root-CAs.js +++ /dev/null @@ -1,348 +0,0 @@ -// These are concatenated md5 and sha1 fingerprints for the Firefox and -// Microsoft root CAs as of Aug 2010 - -var root_ca_hashes = { - '00531D1D7201D423C820D00B6088C5D143DDB1FFF3B49B73831407F6BC8B975023D07C50' : true, - '015A99C3D64FA94B3C3BB1A3AB274CBFFC219A76112F76C1C508833C9A2FA2BA84AC087A' : true, - '019408DE857F8D806CE602CA89522848750251B2C632536F9D917279543C137CD721C6E0' : true, - '0208EE8CAAB8387A6824DCB4E26A52337E206939CC5FA883635F64C750EBF5FDA9AEE653' : true, - '0226C3015E08303743A9D07DCF37E6BF323C118E1BF7B8B65254E2E2100DD6029037F096' : true, - '034287D7C1167D18AFA4703CB8312C3E4EF2E6670AC9B5091FE06BE0E5483EAAD6BA32D9' : true, - '03DC08EEC4703FFA20E5E179E81AE7C59ED18028FB1E8A9701480A7890A59ACD73DFF871' : true, - '044BFDC96CDA2A32857C598461468A64BEB5A995746B9EDF738B56E6DF437A77BE106B81' : true, - '0468E9247E41CED76C441630703DDDB9AB16DD144ECDC0FC4BAAB62ECF0408896FDE52B7' : true, - '068690F2195471FDDD3DE6EEA161CAFF7030AABF8432A800666CCCC42A887E42B7553E2B' : true, - '069F6979166690021B8C8CA2C3076F3A627F8D7827656399D27D7F9044C9FEB3F33EFA9A' : true, - '06F0171EB1E961ED7A363CA594A1374AFAAA27B8CAF5FDF5CDA98AC3378572E04CE8F2E0' : true, - '06F9EBECCC569D88BA90F5BAB01AE00216D424FE9610E17519AF232BB68774E24144BE6E' : true, - '076192047EA6B9CD5E6B007AE3BF1D0434D499426F9FC2BB27B075BAB682AAE5EFFCBA74' : true, - '087C581F522B44B43B79CD01F8C5C3C995E6ADF8D77146024DD56A21B2E73FCDF23B35FF' : true, - '0B092C1CD721866F94376FE6A7F3224D0409565B77DA582E6495AC0060A72354E64B0192' : true, - '0C412F135BA054F596662D7ECD0E03F4DA79C1711150C23439AA2B0B0C62FD55B2F9F580' : true, - '0C5ADD5AAE29F7A77679FA4151FEF035B865130BEDCA38D27F69929420770BED86EFBC10' : true, - '0C7FDD6AF42AB9C89BBD207EA9DB5C3760D68974B5C2659E8A0FC1887C88D246691B182C' : true, - '0CF89E17FCD403BDE68D9B3C0587FE8433A335C23CE8034B04E13DE5C48E791AEB8C3204' : true, - '0E40A76CDE035D8FD10FE4D18DF96CA9A9E9780814375888F20519B06D2B0D2B6016907D' : true, - '0EFA4BF7D760CD65F7A7068857986239D29F6C98BEFC6D986521543EE8BE56CEBC288CF3' : true, - '0FA01300C3558AB7D37E2D04739EDE3C8B1A1106B8E26B232980FD652E6181376441FD11' : true, - '100EADF35C841D8E035F2DC93937F552742CDF1594049CBF17A2046CC639BB3888E02E33' : true, - '10FC635DF6263E0DF325BE5F79CD6767742C3192E607E424EB4549542BE1BBC53E6174E2' : true, - '119279403CB18340E5AB664A679280DFA9628F4B98A91B4835BAD2C1463286BB66646A8C' : true, - '14F108AD9DFA64E289E71CCFA8AD7D5E3921C115C15D0ECA5CCB5BC4F07D21D8050B566A' : true, - '155EF5117AA2C1150E927E66FE3B84C3B38FECEC0B148AA686C3D00F01ECC8848E8085EB' : true, - '15ACA5C2922D79BCE87FCB67ED02CF36E7B4F69D61EC9069DB7E90A7401A3CF47D4FE8EE' : true, - '15B298A354704048703A375582C45AFA0048F8D37B153F6EA2798C323EF4F318A5624A9E' : true, - '15EE9F5AA08528DF6BDD34A3A056D8307F8A77836BDC6D068F8B0737FCC5725413068CA4' : true, - '160A1613C17FF01D887EE3D9E71261CCF88015D3F98479E1DA553D24FD42BA3F43886AEF' : true, - '173574AF7B611CEBF4F93CE2EE40F9A2925A8F8D2C6D04E0665F596AFF22D863E8256F3F' : true, - '1802B00127036A191B323B83DE9AA985D6BF7994F42BE5FA29DA0BD7587B591F47A44F22' : true, - '1898C0D6E93AFCF9B0F50CF74B014417FAB7EE36972662FB2DB02AF6BF03FDE87C4B2F9B' : true, - '18AE695D15CAB917673267D597B260C04BA7B9DDD68788E12FF852E1A024204BF286A8F6' : true, - '1AD00CB9A6E68A3B6E95860C5B8CD8195A4D0E8B5FDCFDF64E7299A36C060DB222CA78E4' : true, - '1B2E00CA2606903DADFE6F1568D36BB367650DF17E8E7E5B8240A4F4564BCFE23D69C6F0' : true, - '1BD75F76734CC0DC98CA442BCC0F78DD31E2C52CE1089BEFFDDADB26DD7C782EBC4037BD' : true, - '1C4BE2C62DB9AC3114F4400769CB1F4011C5B5F75552B011669C2E9717DE6D9BFF5FA810' : true, - '1D3554048578B03F42424DBF20730A3F02FAF3E291435468607857694DF5E45B68851868' : true, - '1D6496AF2D821A300BA0620D76BC53AA7FBB6ACD7E0AB438DAAF6FD50210D007C6C0829C' : true, - '1E240EA0F876D785A3F5F8A1493D2EBAFD1ED1E2021B0B9F73E8EB75CE23436BBCC746EB' : true, - '1E42950233926BB95FC07FDAD6B24BFCCCAB0EA04C2301D6697BDD379FCD12EB24E3949D' : true, - '1E74C3863C0C35C53EC27FEF3CAA3CD9209900B63D955728140CD13622D8C687A4EB0085' : true, - '200B4A7A88A7A942868A5F74567B880593E6AB220303B52328DCDA569EBAE4D1D1CCFB65' : true, - '206BD68B4A8F48ABE488090DE5651A500CFD83DBAE44B9A0C8F676F3B570650B94B69DBF' : true, - '2124A681C1D8F219AF4998E39DFE0BF46A174570A916FBE84453EED3D070A1D8DA442829' : true, - '21BC82AB49C4133B4BB22B5C6B909C198BAF4C9B1DF02A92F7DA128EB91BACF498604B6F' : true, - '21D84C822B990933A2EB14248D8E5FE84054DA6F1C3F4074ACED0FECCDDB79D153FB901D' : true, - '21EFB85040393F756F27FEE3EA5870EBA59C9B10EC7357515ABB660C4D94F73B9E6E9272' : true, - '222DA601EA7C0AF7F06C56433F7776D3FEB8C432DCF9769ACEAE3DD8908FFD288665647D' : true, - '224D8F8AFCF735C2BB5734907B8B22163E2BF7F2031B96F38CE6C4D8A85D3E2D58476A0F' : true, - '246DABD2F2EA4A66AE5BBCAE50AD6E56F9DD19266B2043F1FE4B3DCB0190AFF11F31A69D' : true, - '2477D9A891D13BFA882DC2FFF8CD3393D8C5388AB7301B1B6ED47AE645253A6F9F1A2761' : true, - '252AC6C5896839F9557202165EA39ED23C71D70E35A5DAA8B2E3812DC3677417F5990DF3' : true, - '255BA669B87BF8780DC18FA6EAE47063FA0882595F9CA6A11ECCBEAF65C764C0CCC311D0' : true, - '257ABA832EB6A20BDAFEF5020F08D7AD81968B3AEF1CDC70F5FA3269C292A3635BD123D3' : true, - '259DCF5EB3259D95B93F00865F47943D43F9B110D5BAFD48225231B0D0082B372FEF9A54' : true, - '266D2C1998B6706838505419EC9034600B77BEBBCB7AA24705DECC0FBD6A02FC7ABD9B52' : true, - '27DE36FE72B70003009DF4F01E6C0424DE3F40BD5093D39B6C60F6DABC076201008976C9' : true, - '27EC3947CDDA5AAFE29A016521A94CBB4D2378EC919539B5007F758F033B211EC54D8BCF' : true, - '2A5D003739469475397B11A6F29341E13F85F2BB4A62B0B58BE1614ABB0D4631B4BEF8BA' : true, - '2A954ECA79B2874573D92D90BAF99FB6A43489159A520F0D93D032CCAF37E7FE20A8B419' : true, - '2B508718392D3BFFC3917F2D7DC08A97B19DD096DCD4E3E0FD676885505A672C438D4E9C' : true, - '2B7020568682A018C807531228702172F17F6FB631DC99E3A3C87FFE1CF1811088D96033' : true, - '2C20269DCB1A4A0085B5B75AAEC201378C96BAEBDD2B070748EE303266A0F3986E7CAE58' : true, - '2C6F17A39562012065D2076EFCB83F6DB1EAC3E5B82476E9D50B1EC67D2CC11E12E0B491' : true, - '2C8C175EB154AB9317B5365ADBD1C6F2A073E5C5BD43610D864C21130A855857CC9CEA46' : true, - '2C8F9F661D1890B147269D8E86828CA96252DC40F71143A22FDE9EF7348E064251B18118' : true, - '2CC2B0D5D622C52E901EF4633F0FBB324A058FDFD761DB21B0C2EE48579BE27F42A4DA1C' : true, - '2DBBE525D3D165823AB70EFAE6EBE2E1B3EAC44776C9C81CEAF29D95B6CCA0081B67EC9D' : true, - '2E03FDC5F5D72B9464C1BE8931F1169B96995C7711E8E52DF9E34BECEC67D3CBF1B6C4D2' : true, - '30C908DDD73E63A4092814C74EB97E2CCFE4313DBA05B8A7C30063995A9EB7C247AD8FD5' : true, - '30C9E71E6BE614EB65B216692031674D3BC0380B33C3F6A60C86152293D9DFF54B81C004' : true, - '31853C62949763B9AAFD894EAF6FE0CF1F4914F7D874951DDDAE02C0BEFD3A2D82755185' : true, - '324A4BBBC863699BBE749AC6DD1D4624AD7E1C28B064EF8F6003402014C3D0E3370EB58A' : true, - '3327D16CFC9185FC8C7E98FA854EF305E70715F6F728365B5190E271DEE4C65EBEEACAF3' : true, - '33B784F55F27D76827DE14DE122AED6F0747220199CE74B97CB03D79B264A2C855E933FF' : true, - '343339FC6D033A8FA25385443270DEC45E5A168867BFFF00987D0B1DC2AB466C4264F956' : true, - '34FCB8D036DB9E14B3C2F2DB8FE494C7379A197B418545350CA60369F33C2EAF474F2079' : true, - '354895364A545A72968EE064CCEF2C8CC90D1BEA883DA7D117BE3B79F4210E1A5894A72D' : true, - '370971C4AFEB7501AE636C3016BFD1E5A399F76F0CBF4C9DA55E4AC24E8960984B2905B6' : true, - '3741491B18569A26F5ADC266FB40A54C4313BB96F1D5869BC14E6A92F6CFF63469878237' : true, - '3785445332451F20F0F395E125C4434EF48B11BFDEABBE94542071E641DE6BBE882B40B9' : true, - '37A56ED4B1258497B7FD56157AF9A200B435D4E1119D1C6690A749EBB394BD637BA782B7' : true, - '3916AAB96A41E11469DF9E6C3B72DCB6879F4BEE05DF98583BE360D633E70D3FFE9871AF' : true, - '3AB2DE229A209349F9EDC8D28AE7680D36863563FD5128C7BEA6F005CFE9B43668086CCE' : true, - '3AE550B039BEC7463633A1FE823E8D943CBB5DE0FCD6397C0588E56697BD462ABDF95C76' : true, - '3B0AE4BB416A84B39D2C575E6542BE478E1032E9245944F84791983EC9E829CB1059B4D3' : true, - '3C4C25CC0A19CAEE6AEB55160086725F23E833233E7D0CC92B7C4279AC19C2F474D604CA' : true, - '3D4129CB1EAA1174CD5DB062AFB0435BDDE1D2A901802E1D875E84B3807E4BB1FD994134' : true, - '3E455215095192E1B75D379FB187298AB1BC968BD4F49D622AA89A81F2150152A41D829C' : true, - '3E80175BADD77C104BF941B0CF1642B000EA522C8A9C06AA3ECCE0B4FA6CDC21D92E8099' : true, - '3F459639E25087F7BBFE980C3C2098E62AC8D58B57CEBF2F49AFF2FC768F511462907A41' : true, - '400125068D21436A0E43009CE743F3D5F9CD0E2CDA7624C18FBDF0F0ABB645B8F7FED57A' : true, - '410352DC0FF7501B16F0028EBA6F45C5DAC9024F54D8F6DF94935FB1732638CA6AD77C13' : true, - '41B807F7A8D109EEB49A8E704DFC1B787A74410FB0CD5C972A364B71BF031D88A6510E9E' : true, - '4265CABE019A9A4CA98C4149CDC0D57F293621028B20ED02F566C532D1D6ED909F45002F' : true, - '42769768CFA6B43824AAA11BF267DECA4178AB4CBFCE7B4102ACDAC4933E6FF50DCF715C' : true, - '4281A0E21CE35510DE558942659622E6E0B4322EB2F6A568B654538448184A5036874384' : true, - '429BD669C6D445AD2E81511D355A89624F555CE20DCD3364E0DC7C41EFDD40F50356C122' : true, - '45E1A572C5A93664409EF5E45884678C6B2F34AD8958BE62FDB06B5CCEBB9DD94F4E39F3' : true, - '45F750114EC5ADBD53688663EC7B6AE1C09AB0C8AD7114714ED5E21A5A276ADCD5E7EFCB' : true, - '468C210EAB92214659DBA6DB0061DE265A5A4DAF7861267C4B1F1E67586BAE6ED4FEB93F' : true, - '48D11E627801C26E4369A42CEE130AB564902AD7277AF3E32CD8CC1DC79DE1FD7F8069EA' : true, - '4963AE27F4D5953DD8DB2486B89C0753D3C063F219ED073E34AD5D750B327629FFD59AF2' : true, - '497904B0EB8719AC47B0BC11519B74D0D1EB23A46D17D68FD92564C2F1F1601764D8E349' : true, - '49EFA6A1F0DE8EA76AEE5B7D1E5FC4463E42A18706BD0C9CCF594750D2E4D6AB0048FDC4' : true, - '4B1C568CA0E8C79E1EF5EE32939965FE4C95A9902ABE0777CED18D6ACCC3372D2748381E' : true, - '4B6771BE33B90DB64B3A400187F08B1F7AC5FFF8DCBC5583176877073BF751735E9BD358' : true, - '4B798DD41D0392AA51EE04E5906F474954F9C163759F19045121A319F64C2D0555B7E073' : true, - '4BE2C99196650CF40E5A9392A00AFEB28CF427FD790C3AD166068DE81E57EFBB932272D4' : true, - '4C5641E50DBB2BE8CAA3ED1808AD43390483ED3399AC3608058722EDBC5E4600E3BEF9D7' : true, - '4D56677ECCE6457259B74F511172E169C0DB578157E9EE82B5917DF0DD6D82EE9039C4E2' : true, - '4FEBF1F070C280635D589FDA123CA9C4E392512F0ACFF505DFF6DE067F7537E165EA574B' : true, - '50193E2FE8B6F4055449F3AEC98B3E1947AFB915CDA26D82467B97FA42914468726138DD' : true, - '5186E81FBCB1C371B51810DB5FDCF62078E9DD0650624DB9CB36B50767F209B843BE15B3' : true, - '556EBEF54C1D7C0360C43418BC9649C1245C97DF7514E7CF2DF8BE72AE957B9E04741E85' : true, - '565FAA80611217F66721E62B6D61568E8025EFF46E70C8D472246584FE403B8A8D6ADBF5' : true, - '58EB470764D62CBAE29B96552B9700B56A6F2A8B6E2615088DF59CD24C402418AE42A3F1' : true, - '59736628512B98B410FF7D06FA22D6C8A0F8DB3F0BF417693B282EB74A6AD86DF9D448A3' : true, - '5A11B922850289E1C3F22CE14EC101844B421F7515F6AE8A6ECEF97F6982A400A4D9224E' : true, - '5B6F532CBB8188FA6C042C325DA56B967CA04FD8064C1CAA32A37AA94375038E8DF8DDC0' : true, - '5B9EFD3B6035EA688E52FE1319144AA36B81446A5CDDF474A0F800FFBE69FD0DB6287516' : true, - '5C48DCF74272EC56946D1CCC713580756631BF9EF74F9EB6C9D5A60CBA6ABED1F7BDEF7B' : true, - '5E397BDDF8BAEC82E9AC62BA0C54002BCA3AFBCF1240364B44B216208880483919937CF7' : true, - '5E809E845A0E650B1702F355182A3ED7786A74AC76AB147F9C6A3050BA9EA87EFE9ACE3C' : true, - '5F944A7322B8F7D131EC5939F78EFE6E9FC796E8F8524F863AE1496D381242105F1B78F5' : true, - '60847C5ACEDB0CD4CBA7E9FE02C6A9C0101DFA3FD50BCBBB9BB5600C1955A41AF4733A04' : true, - '649CEF2E44FCC68F5207D051738FCB3DDA40188B9189A3EDEEAEDA97FE2F9DF5B7D18A41' : true, - '65295911BB8F5166890D47824002C5AFC4674DDC6CE2967FF9C92E072EF8E8A7FBD6A131' : true, - '6558AB15AD576C1EA8A7B569ACBFFFEBE5DF743CB601C49B9843DCAB8CE86A81109FE48E' : true, - '67AC0D773011DED143AE7B737190BCA9ED8DC8386C4886AEEE079158AAC3BFE658E394B4' : true, - '67CB9DC013248A829BB2171ED11BECD4D23209AD23D314232174E40D7F9D62139786633A' : true, - '689B17C654E0E0E099551642F75A86D8027268293E5F5D17AAA4B3C3E6361E1F92575EAA' : true, - '6960ECBE8C94D76E6F2EC4782F55F08397226AAE4A7A64A59BD16787F27F841C0A001FD0' : true, - '6C397DA40E5559B23FD641B11250DE435F3B8CF2F810B37D78B4CEEC1919C37334B9C774' : true, - '6CC9A76E47F10CE3533B784C4DC26AC5B72FFF92D2CE43DE0A8D4C548C503726A81E2B93' : true, - '6D38C49B22244CA3A8B3A09345E157FA89C32E6B524E4D65388B9ECEDC637134ED4193A3' : true, - '70B57C4881953E80DC289BBAEF1EE4854072BA31FEC351438480F62E6CB95508461EAB2F' : true, - '711F0E21E7AAEA323A6623D3AB50D66996974CD6B663A7184526B1D648AD815CF51E801A' : true, - '71AA6AAF1FA5C0D50E90D40BF6AADFCC55C86F7414AC8BDD6814F4D86AF15F3710E104D0' : true, - '71E265FBCD7B0B845BE3BCD76320C598CFF810FB2C4FFC0156BFE1E1FABCB418C68D31C5' : true, - '72E44A87E369408077EABCE3F4FFF0E15F43E5B1BFF8788CAC1CC7CA4A9AC6222BCC34C6' : true, - '733A747AECBBA396A6C2E4E2C89BC0C3AEC5FB3FC8E1BFC4E54F03075A9AE800B7F7B6FA' : true, - '739DD35FC63C95FEC6ED89E58208DD897FB9E2C995C97A939F9E81A07AEA9B4D70463496' : true, - '74014A91B108C458CE47CDF0DD11530885A408C09C193E5D51587DCDD61330FD8CDE37BF' : true, - '747B820343F0009E6BB3EC47BF85A5934463C531D7CCC1006794612BB656D3BF8257846F' : true, - '74A82C81432B35609B78056B58F36582CFF360F524CB20F1FEAD89006F7F586A285B2D5B' : true, - '770D19B121FD00429C3E0CA5DD0B028E25019019CFFBD9991CB76825748D945F30939542' : true, - '774AF42C9DB027B747B515E4C762F0FCDF646DCB7B0FD3A96AEE88C64E2D676711FF9D5F' : true, - '782A02DFDB2E14D5A75F0ADFB68E9C5D4F65566336DB6598581D584A596C87934D5F2AB4' : true, - '78A5FB104BE4632ED26BFBF2B6C24B8EEC0C3716EA9EDFADD35DFBD55608E60A05D3CBF3' : true, - '79E4A9840D7D3A96D7C04FE2434C892EA8985D3A65E5E5C4B2D7D66D40C6DD2FB19C5436' : true, - '7A79544D07923B5BFF41F00EC739A298C060ED44CBD881BD0EF86C0BA287DDCF8167478C' : true, - '7BB508999A8C18BF85277D0EAEDAB2AB24BA6D6C8A5B5837A48DB5FAE919EA675C94D217' : true, - '7C62FF749D31535E684AD578AA1EBF239F744E9F2B4DBAEC0F312C50B6563B8E2D93C311' : true, - '7CA50FF85B9A7D6D30AE545AE342A28A59AF82799186C7B47507CBCF035746EB04DDB716' : true, - '7D86908F5BF1F240C0F73D62B5A4A93B72997913EC9B0DAE65D1B6D7B24A76A3AEC2EE16' : true, - '7E234E5BA7A5B425E90007741162AED67F8AB0CFD051876A66F3360F47C88D8CD335FC74' : true, - '7F667A71D3EB6978209A51149D83DA20BE36A4562FB2EE05DBB3D32323ADF445084ED656' : true, - '803ABC22C1E6FB8D9B3B274A321B9A0147BEABC922EAE80E78783462A79F45C254FDE68B' : true, - '8135B9FBFB12CA186936EBAE6978A1F1DCBB9EB7194BC47205C111752986835B53CAE4F8' : true, - '81D6ED354F1F26D031D040DD8AE5810DE0925E18C7765E22DABD9427529DA6AF4E066428' : true, - '8212F789E10B9160A4B6229F9468119268ED18B309CD5291C0D3357C1D1141BF883866B1' : true, - '824AD493004D66B6A32CA77B3536CF0B687EC17E0602E3CD3F7DFBD7E28D57A0199A3F44' : true, - '8292BA5BEFCD8A6FA63D55F984F6D6B7F9B5B632455F9CBEEC575F80DCE96E2CC7B278B7' : true, - '84901D95304956FC4181F045D776C46B439E525F5A6A47C32CEBC45C63ED39317CE5F4DF' : true, - '852FF4764CD5426CCB5E7DF717E835BD4EFCED9C6BDD0C985CA3C7D253063C5BE6FC620C' : true, - '85CA765A1BD16822DCA22312CAC680345BCDCDCC66F6DCE4441FE37D5CC3134C46F47038' : true, - '86386D5E49636C855CDB6DDC94B7D0F7ACED5F6553FD25CE015F1F7A483B6A749F6178C6' : true, - '86420509BCA79DEC1DF32E0EBAD81DD01D8259CA2127C3CBC16CD932F62C65298CA88712' : true, - '86ACDE2BC56DC3D98C2888D38D16131ECE6A64A309E42FBBD9851C453E6409EAE87D60F1' : true, - '86EF8E319D9F8569A2A41A127168BA1B90DECE77F8C825340E62EBD635E1BE20CF7327DD' : true, - '8714AB83C4041BF193C750E2D721EBEF30779E9315022E94856A3FF8BCF815B082F9AEFD' : true, - '879055F2CE31153C33D927C876E37DE13070F8833E4AA6803E09A646AE3F7D8AE1FD1654' : true, - '87CE0B7B2A0E4900E158719B37A893720563B8630D62D75ABBC8AB1E4BDFB5A899B24D43' : true, - '882C8C52B8A23CF3F7BB03EAAEAC420B74207441729CDD92EC7931D823108DC28192E2BB' : true, - '8949548CC8689A8329ECDC067321AB97A60F34C8626C81F68BF77DA9F667588A903F7D36' : true, - '8956AA4D441E59D805A1886DEAC828B26372C49DA9FFF051B8B5C7D4E5AAE30384024B9C' : true, - '8BCA525F7553D02C6F630D8F882E1CD78EB03FC3CF7BB292866268B751223DB5103405CB' : true, - '8CCADC0B22CEF5BE72AC411A11A8D81291C6D6EE3E8AC86384E548C299295C756C817B81' : true, - '8CD79FEBC7B8144C5478A7903BA935671F55E8839BAC30728BE7108EDE7B0BB0D3298224' : true, - '8D26FF2F316D5929DDE636A7E2CE6425720FC15DDC27D456D098FABF3CDD78D31EF5A8DA' : true, - '8D639B56C114E4EE9A128586119082A3D2441AA8C203AECAA96E501F124D52B68FE4C375' : true, - '8D7251DBA03ACF2077DFF265065EDFEFC8C25F169EF85074D5BEE8CDA2D43CAEE75FD257' : true, - '8EADB501AA4D81E48C1DD1E1140095193679CA35668772304D30A5FB873B0FA77BB70D54' : true, - '8F5D770627C4983C5B9378E7D77D9BCC7E784A101C8265CC2DE1F16D47B440CAD90A1945' : true, - '8F91E7EEE3FCDA86CAFCDC70EDB7B70C8250BED5A214433A66377CBC10EF83F669DA3A67' : true, - '911B3F6ECD9EABEE07FE1F71D2B36127E19FE30E8B84609E809B170D72A8C5BA6E1409BD' : true, - '91DE0625ABDAFD32170CBB25172A84672796BAE63F1801E277261BA0D77770028F20EEE4' : true, - '91F4035520A1F8632C62DEACFB611C8E21FCBD8E7F6CAF051BD1B343ECA8E76147F20F8A' : true, - '9265588BA21A317273685CB4A57A0748E621F3354379059A4B68309D8A2F74221587EC79' : true, - '932A3EF6FD23690D7120D42B47992BA6CBA1C5F8B0E35EB8B94512D3F934A2E90610D336' : true, - '937F901CED846717A4655F9BCB3002978781C25A96BDC2FB4C65064FF9390B26048A0E01' : true, - '93C28E117BD4F30319BD2875134A454AAB48F333DB04ABB9C072DA5B0CC1D057F0369B46' : true, - '93EB36130BC154F13E7505E5E01CD4375F4E1FCF31B7913B850B54F6E5FF501A2B6FC6CF' : true, - '93F1AD340B2BE7A85460E2738CA49431705D2B4565C7047A540694A79AF7ABB842BDC161' : true, - '9414777E3E5EFD8F30BD41B0CFE7D03075E0ABB6138512271C04F85FDDDE38E4B7242EFE' : true, - '96897D61D1552B27E25A39B42A6C446F8EFDCABC93E61E925D4D1DED181A4320A467A139' : true, - '9760E8575FD35047E5430C94368AB06290AEA26985FF14804C434952ECE9608477AF556F' : true, - '978FC66B3B3E40857724750B76BB55F8B5D303BF8682E152919D83F184ED05F1DCE5370C' : true, - '9A771918ED96CFDF1BB70EF58DB9882ECF74BFFF9B86815B08335440363E87B6B6F0BF73' : true, - '9AAEF722F533FB4EEC0A249DC63D7D255E997CA5945AAB75FFD14804A974BF2AE1DFE7E1' : true, - '9B340D1A315B97462698BCA6136A71969E6CEB179185A29EC6060CA53E1974AF94AF59D4' : true, - '9D666ACCFFD5F543B4BF8C16D12BA8998939576E178DF705780FCC5EC84F84F6253A4893' : true, - '9DFBF9ACED893322F428488325235BE0A69A91FD057F136A42630BB1760D2D51120C1650' : true, - '9E80FF78010C2EC136BDFE96906E08F34ABDEEEC950D359C89AEC752A12C5B29F6D6AA0C' : true, - '9F6C1F0F07AC1921F915BBD5C72CD82AF5C27CF5FFF3029ACF1A1A4BEC7EE1964C77D784' : true, - '9FDDDBABFF8EFF45215FF06C9D8FFE2B9656CD7B57969895D0E141466806FBB8C6110687' : true, - 'A10B44B3CA10D8006E9D0FD80F920AD1B80186D1EB9C86A54104CF3054F34C52B7E558C6' : true, - 'A208E4B33EEFDE084B60D0BF7952498D8CC4307BC60755E7B22DD9F7FEA245936C7CF288' : true, - 'A2339B4C747873D46CE7C1F38DCB5CE985371CA6E550143DCE2803471BDE3A09E8F8770F' : true, - 'A26F53B7EE40DB4A68E7FA18D9104B7269BD8CF49CD300FB592E1793CA556AF3ECAA35FB' : true, - 'A33D88FE161BDDF95C9F1A7FD8C89008A3E31E20B2E46A328520472D0CDE9523E7260C6D' : true, - 'A37D2C27E4A7F3AA5F75D4C49264026AB6AF5BE5F878A00114C3D7FEF8C775C34CCD17B6' : true, - 'A3EC750F2E88DFFA48014E0B5C486FFB37F76DE6077C90C5B13E931AB74110B4F2E49A27' : true, - 'A66B6090239B3F2DBB986FD6A7190D46E0AB059420725493056062023670F7CD2EFC6666' : true, - 'A771FD26FC3CE540F19906EBC1936DE9E619D25B380B7B13FDA33E8A58CD82D8A88E0515' : true, - 'A7F2E41606411150306B9CE3B49CB0C9E12DFB4B41D7D9C32B30514BAC1D81D8385E2D46' : true, - 'A80D6F3978B9436D77426D985ACC23CAD6DAA8208D09D2154D24B52FCB346EB258B28A58' : true, - 'A8EDDEEB938866D82FC3BD1DBE45BE4D7639C71847E151B5C7EA01C758FBF12ABA298F7A' : true, - 'A923759BBA49366E31C2DBF2E766BA87317A2AD07F2B335EF5A1C34E4B57E8B7D8F1FCA6' : true, - 'A981C0B73A9250BC91A521FF3D47879FCB658264EA8CDA186E1752FB52C397367EA387BE' : true, - 'AA088FF6F97BB7F2B1A71E9BEAEABD79CF9E876DD3EBFC422697A3B5A37AA076A9062348' : true, - 'AA8E5DD9F8DB0A58B78D26876C823555409D4BD917B55C27B69B64CB9822440DCD09B889' : true, - 'AABFBF6497DA981D6FC6083A957033CA394FF6850B06BE52E51856CC10E180E882B385CC' : true, - 'AB57A65B7D428219B5D85826285EFDFFB12E13634586A46F1AB2606837582DC4ACFD9497' : true, - 'ABAB8D2DB740E5973D2FF2A63BDA6A05C18211328A92B3B23809B9B5E2740A07FB12EB5E' : true, - 'ABBFEAE36B29A6CCA6783599EFAD2B802F173F7DE99667AFA57AF80AA2D1B12FAC830338' : true, - 'ACB694A59C17E0D791529BB19706A6E4D4DE20D05E66FC53FE1A50882C78DB2852CAE474' : true, - 'AD8E0F9E016BA0C574D50CD368654F1ECFDEFE102FDA05BBE4C78D2E4423589005B2571D' : true, - 'AFB8336E7CDDC60264AD58FC0D4F7BCFBC7B3C6FEF26B9F7AB10D7A1F6B67C5ED2A12D3D' : true, - 'B001EE14D9AF291894768EF169332A846E3A55A4190C195C93843CC0DB722E313061F0B1' : true, - 'B147BC1857D118A0782DEC71E82A9573204285DCF7EB764195578E136BD4B7D1E98E46A5' : true, - 'B39C25B1C32E32538015309D4D02773E6782AAE0EDEEE21A5839D3C0CD14680A4F60142A' : true, - 'B3A53E77216DAC4AC0C9FBD5413DCA0658119F0E128287EA50FDD987456F4F78DCFAD6D4' : true, - 'B44ADBE85916461E5AD86EDA064352622964B686135B5DFDDD3253A89BBC24D74B08C64D' : true, - 'B465220A7CADDF41B7D544D5ADFA9A75BC9219DDC98E14BF1A781F6E280B04C27F902712' : true, - 'B4819E89AC1724FD2A4285271D0C2B5D20CB594FB4EDD895763FD5254E959A6674C6EEB2' : true, - 'B5E83436C910445848706D2E83D4B805039EEDB80BE7A03C6953893B20D2D9323A4C2AFD' : true, - 'B75274E292B48093F275E4CCD7F2EA263BC49F48F8F373A09C1EBDF85BB1C365C7D811B3' : true, - 'B774CD487C5F9A0D3BF3FE66F41B3DFA5B4E0EC28EBD8292A51782241281AD9FEEDD4E4C' : true, - 'B7B0D1EC1A033ECEA91511CCB16FB2AEE3D73606996CDFEF61FA04C335E98EA96104264A' : true, - 'B8089AF003CC1B0DC86C0B76A1756423A0A1AB90C9FC847B3B1261E8977D5FD32261D3CC' : true, - 'B816334C4C4CF2D8D34D06B4A65B4003838E30F77FDD14AA385ED145009C0E2236494FAA' : true, - 'B8D312034E8C0C5A47C9B6C59E5B97FD0560A2C738FF98D1172A94FE45FB8A47D665371E' : true, - 'BA21EA20D6DDDB8FC1578B40ADA1FCFC801D62D07B449D5C5C035C98EA61FA443C2A58FE' : true, - 'BA926442161FCBA116481AF6405C59870456F23D1E9C43AECB0D807F1C0647551A05F456' : true, - 'BC6C5133A7E9D366635415721B2192935922A1E15AEA163521F898396A4646B0441B0FA9' : true, - 'BD8ACE34A8AE6148E85EC87A1CE8CCBFD2EDF88B41B6FE01461D6E2834EC7C8F6C77721E' : true, - 'BDD6F58A7C3CC4A6F934CCC38961F6B2CABB51672400588E6419F1D40878D0403AA20264' : true, - 'BE395ABE078AB1121725CC1D46343CB2DE990CED99E0431F60EDC3937E7CD5BF0ED9E5FA' : true, - 'BF6059A35BBAF6A77642DA6F1A7B50CF5D989CDB159611365165641B560FDBEA2AC23EF1' : true, - 'BFB5E77D3DEA6F1DF08A50BC8C1CFA1DE4554333CA390E128B8BF81D90B70F4002D1D6E9' : true, - 'C1623E23C582739C03594B2BE977497F2AB628485E78FBF3AD9E7910DD6BDF99722C96E5' : true, - 'C1D43E07AEEBECFD7589E67EA84CEBCD76B76096DD145629AC7585D37063C1BC47861C8B' : true, - 'C1D951C084B86A75E82FD7D65F7EAC460B972C9EA6E7CC58D93B20BF71EC412E7209FABF' : true, - 'C22A59ABCF152F4CF7E631A316AE840C9158C5EF987301A8903CFDAB03D72DA1D88909C9' : true, - 'C2DBAB8E9652C5EEAEF25500896D55953913853E45C439A2DA718CDFB6F3E033E04FEE71' : true, - 'C45D0E48B6AC28304E0ABCF938168757D8A6332CE0036FB185F6634F7D6A066526322827' : true, - 'C463AB44201C36E437C05F279D0F6F6E97E2E99636A547554F838FBA38B82E74F89A830A' : true, - 'C4D7F0B2A3C57D6167F004CD43D3BA5890DEDE9E4C4E9F6FD88617579DD391BC65A68964' : true, - 'C570C4A2ED53780CC810538164CBD01D23E594945195F2414803B4D564D2A3A3F5D88B8C' : true, - 'C5A1B7FF73DDD6D7343218DFFC3CAD8806083F593F15A104A069A46BA903D006B7970991' : true, - 'C5DFB849CA051355EE2DBA1AC33EB028D69B561148F01C77C54578C10926DF5B856976AD' : true, - 'C5E67BBF06D04F43EDC47A658AFB6B19339B6B1450249B557A01877284D9E02FC3D2D8E9' : true, - 'C69F6D5CB379B00389CBF03FA4C09F8AEF2DACCBEABB682D32CE4ABD6CB90025236C07BC' : true, - 'C7BD11D6918A3582C53666017C6F4779634C3B0230CF1B78B4569FECF2C04A8652EFEF0E' : true, - 'C86E97F335A729144782892391A6BEC84A3F8D6BDC0E1ECFCD72E377DEF2D7FF92C19BC7' : true, - 'C91962D0DA7E1020FCA4CD0380872DF551A44C28F313E3F9CB5E7C0A1E0E0DD2843758AE' : true, - 'C9982777281E3D0E153C8400B88503E656E0FAC03B8F18235518E5D311CAE8C24331AB66' : true, - 'CA3DD368F1035CD032FAB82B59E85ADB97817950D81C9670CC34D809CF794431367EF474' : true, - 'CB17E431673EE209FE455793F30AFA1C4EB6D578499B1CCF5F581EAD56BE3D9B6744A5E5' : true, - 'CBBDC3682DB3CB1859D32952E8C66489C9321DE6B5A82666CF6971A18A56F2D3A8675602' : true, - 'CC4DAEFB306BD838FE50EB86614BD2269C615C4D4D85103A5326C24DBAEAE4A2D2D5CC97' : true, - 'CD3B3D625B09B80936879E122F7164BA67EB337B684CEB0EC2B0760AB488278CDD9597DD' : true, - 'CD68B6A7C7C4CE75E01D4F5744619209132D0D45534B6997CDB2D5C339E25576609B5CC6' : true, - 'CD996CDB2AC296155ABF879EAEA5EE93EE29D6EA98E632C6E527E0906F0280688BDF44DC' : true, - 'CDF439F3B51850D73EA4C591A03E214BE1A45B141A21DA1A79F41A42A961D669CD0634C1' : true, - 'CE78335C5978016E18EAB936A0B92E23AE5083ED7CF45CBC8F61C621FE685D794221156E' : true, - 'CF8F3B62A3CACA711BA3E1CB4857351F5D003860F002ED829DEAA41868F788186D62127F' : true, - 'CFF4270DD4EDDC6516496D3DDABF6EDE3A44735AE581901F248661461E3B9CC45FF53A1B' : true, - 'D2EDEE7992F78272180BFED98BEC13D8A7F8390BA57705096FD36941D42E7198C6D4D9D5' : true, - 'D35376E3CE58C5B0F29FF42A05F0A1F2211165CA379FBB5ED801E31C430A62AAC109BCB4' : true, - 'D3D9BDAE9FAC6724B3C81B52E1B9A9BD4A65D5F41DEF39B8B8904A4AD3648133CFC7A1D1' : true, - 'D3F3A616C0FA6B1D59B12D964D0E112E74F8A3C3EFE7B390064B83903C21646020E5DFCE' : true, - 'D474DE575C39B2D39C8583C5C065498A5FB7EE0633E259DBAD0C4C9AE6D38F1A61C7DC25' : true, - 'D480656824F9892228DBF5A49A178F14016897E1A0B8F2C3B134665C20A727B7A158E28F' : true, - 'D59788DA6416E71D664AA6EA37FC7ADCEC93DE083C93D933A986B3D5CDE25ACB2FEECF8E' : true, - 'D5BEFFB5EE826CF0E2578EA7E5346F03D904080A4929C838E9F185ECF7A22DEF99342407' : true, - 'D5E98140C51869FC462C8975620FAA7807E032E020B72C3F192F0628A2593A19A70F069E' : true, - 'D63981C6527E9669FCFCCA66ED05F296B51C067CEE2B0C3DF855AB2D92F4FE39D4E70F0E' : true, - 'D6A5C3ED5DDD3E00C13D87921F1D3FE4B31EB1B740E36C8402DADC37D44DF5D4674952F9' : true, - 'D6ED3CCAE2660FAF10430D779B0409BF85B5FF679B0C79961FC86E4422004613DB179284' : true, - 'D7343DEF1D270928E131025B132BDDF7B172B1A56D95F91FE50287E14D37EA6A4463768A' : true, - 'D87E32EF69F8BF72031D4082E8A775AF42EFDDE6BFF35ED0BAE6ACDD204C50AE86C4F4FA' : true, - 'DA26B6E6C7C2F7B79E4659B3577718653E84D3BCC544C0F6FA19435C851F3F2FCBA8E814' : true, - 'DB233DF969FA4BB9958044735E7D4183273EE12457FDC4F90C55E82B56167F62F532E547' : true, - 'DBC8F2272EB1EA6A29235DFE563E33DFC8EC8C879269CB4BAB39E98D7E5767F31495739D' : true, - 'DC32C3A76D2557C768099DEA2DA9A2D18782C6C304353BCFD29692D2593E7D44D934FF11' : true, - 'DC6D6FAF897CDD17332FB5BA9035E9CE7F88CD7223F3C813818C994614A89C99FA3B5247' : true, - 'DD753F56BFBBC5A17A1553C690F9FBCC24A40A1F573643A67F0A4B0749F6A22BF28ABB6B' : true, - 'DF0DBC7CC836B77699A1ABF0D20F896A342CD9D3062DA48C346965297F081EBC2EF68FDC' : true, - 'DF168A83EA83845DB96501C6A65D193EDBAC3C7AA4254DA1AA5CAAD68468CB88EEDDEEA8' : true, - 'DF3C735981E7395081044C34A2CBB37B61573A11DF0ED87ED5926522EAD056D744B32371' : true, - 'DFF28073CCF1E66173FCF542E9C57CEE99A69BE61AFE886B4D2B82007CB854FC317E1539' : true, - 'E006A1C97DCFC9FC0DC0567596D862139BAAE59F56EE21CB435ABE2593DFA7F040D11DCB' : true, - 'E14B5273D71BDB9330E5BDE4096EBEFB216B2A29E62A00CE820146D8244141B92511B279' : true, - 'E1C07EA0AABBD4B77B84C228117808A7CDD4EEAE6000AC7F40C3802C171E30148030C072' : true, - 'E2D52023ECEEB872E12B5D296FFA43DA9BACF3B664EAC5A17BED08437C72E4ACDA12F7E7' : true, - 'E2D8F867F4509435FC5E05FC822295C30446C8BB9A6983C95C8A2E5464687C1115AAB74A' : true, - 'E2F8E080D0083F1EC1E9D23F8069AE06C73026E325FE21916B55C4B53A56B13DCAF3D625' : true, - 'E60BD2C9CA2D88DB1A710E4B78EB024140E78C1D523D1CD9954FAC1A1AB3BD3CBAA15BFC' : true, - 'E77ADCB11F6E061F746C591627C34BC07454535C24A3A758207E3E3ED324F816FB211649' : true, - 'E8CC9FB09B40C51F4FBA7421F952857A688B6EB807E8EDA5C7B17C4393D0795F0FAE155F' : true, - 'EBB04F1D3A2E372F1DDA6E27D6B680FA18F7C1FCC3090203FD5BAA2F861A754976C8DD25' : true, - 'EBF59D290D61F9421F7CC2BA6DE3150928903A635B5280FAE6774C0B6DA7D6BAA64AF2E8' : true, - 'EC407D2B765267052CEAF23A4F65F0D8A5EC73D48C34FCBEF1005AEB85843524BBFAB727' : true, - 'ED41F58C50C52B9C73E6EE6CEBC2A8261B4B396126276B6491A2686DD70243212D1F1D96' : true, - 'EE2931BC327E9AE6E8B5F751B4347190503006091D97D4F5AE39F7CBE7927D7D652D3431' : true, - 'EE7A41E0CF757D889280A21A9A7BA157679A4F81FC705DDEC419778DD2EBD875F4C242C6' : true, - 'EEFE6169656EF89CC62AF4D72B63EFA29FAD91A6CE6AC6C50047C44EC9D4A50D92D84979' : true, - 'EF5AF133EFF1CDBB5102EE12144B96C4A1DB6393916F17E4185509400415C70240B0AE6B' : true, - 'F058C503826717AB8FDA0310278E19C2CB44A097857C45FA187ED952086CB9841F2D51B5' : true, - 'F096B62FC510D5678E832532E85E2EE52388C9D371CC9E963DFF7D3CA7CEFCD625EC190D' : true, - 'F09E639376A595BC1861F19BFBD364DD80BF3DE9A41D768D194B293C85632CDBC8EA8CF7' : true, - 'F16A2218C9CDDFCE821D1DB7785CA9A57998A308E14D6585E6C21E153A719FBA5AD34AD9' : true, - 'F1BC636A54E0B527F5CDE71AE34D6E4A36B12B49F9819ED74C9EBC380FC6568F5DACB2F7' : true, - 'F20598E5964BBE5D55181B55B388E3929078C5A28F9A4325C2A7C73813CDFE13C20F934E' : true, - 'F27DE954E4A3220D769FE70BBBB3242B049811056AFE9FD0F5BE01685AACE6A5D1C4454C' : true, - 'F37E3A13DC746306741A3C38328CFBA9253F775B0E7797AB645F15915597C39E263631D1' : true, - 'F3D752A875FD18ECE17D35B1706EA59C968338F113E36A7BABDD08F7776391A68736582E' : true, - 'F4FF97428070FE66168BBED35315819BF44095C238AC73FC4F77BF8F98DF70F8F091BC52' : true, - 'F520DA5203862B92768D5CB72D8B93ADA65CB4733D94A5C865A864647C2C01272C89B143' : true, - 'F775AB29FB514EB7775EFF053C998EF5DE28F4A4FFE5B92FA3C503D1A349A7F9962A8212' : true, - 'F7B661AB03C25C463E2D2CF4A124D854FAA7D9FB31B746F200A85E65797613D816E063B5' : true, - 'F8387C7788DF2C16682EC2E2524BB8F95F3AFC0A8B64F686673474DF7EA9A2FEF9FA7A51' : true, - 'F8BEC46322C9A846748BB81D1E4A2BF661EF43D77FCAD46151BC98E0C35912AF9FEB6311' : true, - 'FB1B5D438A94CD44C676F2434B47E731F18B538D1BE903B6A6F056435B171589CAF36BF2' : true, - 'FC11B8D8089330006D23F97EEB521E0270179B868C00A4FA609152223F9F3E32BDE00562' : true, - 'FD49BE5B185A25ECF9C354851040E8D4086418E906CEE89C2353B6E27FBD9E7439F76316' : true -}; diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/content/code/X509ChainWhitelist.js b/data/extensions/https-everywhere-eff@eff.org/chrome/content/code/X509ChainWhitelist.js deleted file mode 100644 index 126efc0..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/content/code/X509ChainWhitelist.js +++ /dev/null @@ -1,1007 +0,0 @@ - -// These are SHA256 fingerprints for the most common chains observed by the -// Decentralized SSL Observatory. These should not be resubmitted. -// This file is automatically generated by utils/mk_client_whitelist.py - -const X509ChainWhitelist = { - '000AA4E99FE86D84F762DFB2DC29323D0614B95AA335A270AF204EBA2F2240AF' : true, - '002F83BE1562B658A7BA747EEE36FFBA25A7D6C66E263B2901184058802D9A43' : true, - '0061F7422DFE6198AD03858E318E018DAE931B87DB34D0EAEDAC2959A8F129A6' : true, - '007FDDA43F8F2C275CF3AE1D742A0DE86CFE1287B6FAE08F9676A8743E677255' : true, - '00AD891EBED89D8B1DE5893D32B98655479B79FAAF02D40BB933BBF726699446' : true, - '00DBEAA57891E7972D7AE5F00425E309B1A08B8EE4218B24AE3FB50EA98AA864' : true, - '00E60060B345194127FA895551ACA9CB12D5C31CBCE286D1CBEFA26D0BF22CBF' : true, - '0116774D8E17A678C4865D21049258EF547ADE1E84E48F91692CF41731C10657' : true, - '014EDEA8AD82D6923D4C9E10C925EBE098763D822E9F67F93DB267FB5F88675F' : true, - '016BBB29A76DA59A20C5E9909D8D0A9CD25824D7462BD51B022D61B503569936' : true, - '018BCB77EB89BD658CFB6388F57F22E40942E08FD6BF3A26DE05A2F992F6E5A2' : true, - '02303B95D5264B6C3766CECB979740D4422AF1F40EA377F80217780234881DCA' : true, - '028CD123ABEA12F150435947299419928DC5E80E94E9148841265B64344C3DBC' : true, - '0299AD4101A95EA006706582B2E55A35DFD2224EB9A8F8AA822D2354BAC4C640' : true, - '02E266B8D011CF92708D0DD0D9D840BB8EF54B4A4670BF700AE90EE6F7E445A8' : true, - '0333E05678F411BCFDAEFB069DDAC8BE1B3B7E45376AE4C3827771C10A53D294' : true, - '03693B464434A9683B54121395F0655F77D80A64D36AC7083A2923C3FB6EFC00' : true, - '037E1FDC6DBFFDCD1523AA8D44DCD04993025D13CA1545B6CC33138ADC14D47C' : true, - '03986F7123FD11870C6EEEFC9F40E6B8FA6FA8C7FD58C3B62E04F350D6B9D625' : true, - '03BD2F6C0E68327F7077FC5F5B0335F8FDC8AAE97CC920C602D7B29DF6329D88' : true, - '03E2027D68B6F8792C5E99FFA9221CE628E98F0D61346B99E8A2710BD29E1DE0' : true, - '03EA2D8120DF0BFF2AD3496A07D73CE403C5C04B24E562E4C5B5026462B09097' : true, - '041E24ED00997AAF1D78BB5A002A3ABCFC654CF09E38017EBD3BE031F05E8FEF' : true, - '049E2533BBDE9D2DA0BDD71FB463A0D7D2908706999C63FDCEB4B812864E3091' : true, - '05C5F3A4C0C5F676DFCA32690BBCE8A7F41D7D6C2438D9AA1F94F886E3015CB9' : true, - '05DDFDA20ECE2375B55CD05F5205E2608B75FF4D40078A4ABC2FD4EB7C7F4410' : true, - '05E7DF0F4B5A55A9E14DBBF4FFC438FC9FF987C16AF51B9EDB2E633AA6D3524B' : true, - '05FD9F4842FECB37EBB192331AFFFECC9098FE276B8FC915F73B5086ED7320A6' : true, - '061B58EED7864DD73B40146FB4EB9656CBD256F6C10A07C3AC47860150B14948' : true, - '064A8AF7F078CF04C63643298C3DA278EECA283CE11E3F34F3AB851AB89B5237' : true, - '06A8BAEDC838105FBEB3AF6C20B5E3EA3B98B82069246F1A5A096E8CD0FD3047' : true, - '06EA4798A8B6B73ACB72B15DD8D71D6D6541975EA01B6CCE95B92DDE7C0312F7' : true, - '06F072A3D91411EAFF93F070B499A88B082E745A2E369567A6DDAAE227B2E195' : true, - '06F3DCA5B295481A6B1A0ED50541CB67C20B4B6BEE7435F06F5FCBAADC27A40F' : true, - '06FB76F31639CCDDF599ADEB5E7CE9A475468C68B305442E99A067D09A89DDD0' : true, - '0742E85FE9C68350E070039897F5B790BDA92D92229D74BA9C6906D958A5C510' : true, - '07B914BF17C15B57AFE6430B785396D1952956B87C3936204337D63CBDEBBDAD' : true, - '07BFEFC4765397C94A348CE52AB2C7A01CC6257512A595DFDDE797429934B5F4' : true, - '07CF2A06F1718D6E476B98C2B42E370A35FAFE4C1F41CF7A1DE115CDB6222FAC' : true, - '08522737DBEF2F7400033E866B61B3F9E19066EC71294DC9CE2138231921AFAB' : true, - '088B1B9C85C5237A785E56C277962D8901D994350403FCA667645A0321EE1754' : true, - '095FB0FC3CC67539621E292205E758437D94D3B651714049E6F99130BD5ADB6D' : true, - '099E4D986B0D8639C59AA04B56C3E45819DE1898E813D55B0879779C47913268' : true, - '09B9774D69301C157F156316A659287B1023852F6FCD474279C0CF176E40AA11' : true, - '09E55E37A7D241C61FF28A026F9D6E78B5F44DFECE82592B6BC19D0575B2DE9A' : true, - '09F716F6D09883B430D2A1A9B6A2893384A79873AD45F7C1AC25FF05C9E90DCE' : true, - '0A96A08A2E42D95647355C089F7DF09731BC28449EDA336776F944250A265233' : true, - '0B1C1033250F6DED11E4C0A7E43138AD3D52F5661FEC896519BEBCBEFDC16E41' : true, - '0B1D9276FF6C18184DDF7409CB6C0916D24320DEC0505096AC79C0D3FFA9C1CD' : true, - '0B2F810BBEB072D82C51CC774A6C831CDA8EE9F9994C8DD167F2187BE9F8F38A' : true, - '0BDF3458A9B18415635FA90A62440432B3E40DD3D6C795068E1BAED868CAA8E7' : true, - '0C2154A365A0DE7DC5BD0AE6EE05A8E06EE782AC5C41F1D3823E2F95C61E0D2C' : true, - '0C9D6EF00C60807C04A1BF61E8C1E28DF2A628CB7CCA3E15593266682736588D' : true, - '0CCE7A78F794EC314AB50D5A4C40835418681A8E0B3EC84461E470CB1F766FCE' : true, - '0D8D1B9E2F81D60A99B58380F37E9F8F744E205AC778EAE66810224BF0FF9EEC' : true, - '0D98DAB031428D38C96C714C90F0E2ACC9A1767FDC6A953D590928683E8BF8C4' : true, - '0DAB05854E84AABD75D30CE09246103436A4C41E931374E16CC374596C8DBB94' : true, - '0DB35F56EEAE4C5580F3231EA19F4DBB0FD46DE1BF85F4CCF40103E012CDDA4B' : true, - '0DB6221BC96F9758356209EFB138285A19A72FE5B898511143A0751BA600CC1F' : true, - '0DC21B5C66F7A421406E2FF43676B6D7013C6115232AEE0CFD25D70E7D4C2625' : true, - '0E8071ED091D6F502E2649CEF26818C0D1DE8F752632B670395E916F1BE748FE' : true, - '0F0B2EAF8B0C4FBF1A47C048E13196C163ED9D8628AFA4AA264A4624B1CBCF3D' : true, - '0F2BD48DD412D479C8A61E31993A4545FA703253C2A70D901087A7F5B8843998' : true, - '0F820CFB486D8564C83E968049AD119FD838B2CD21C0B342A0D9B5D22C445C25' : true, - '0F8A4084830557DD278CE7C3C6977853A4202E89B5F5F61164D1052F05D67B12' : true, - '0FBBC11F4627D5AA5F7A7847E0F8DE298021E175EC69ECA90A62740A71DC9B1F' : true, - '0FEBD7B880368302F17E5ABC416528A49CD717B96FCF7A21AD5DF6C4A6E6F792' : true, - '1030FABD87581CC2360917E4B4D94B88AF59A0E4FBFBC796F36DEA520198CD28' : true, - '103A6A4F018518AA6454CF8C8D18D7DA301A3F3C9E4C3C7FC2C3EC23E9D4443E' : true, - '10620CC592779120114EB611657851E4859BBA59E0895E2D12A6BB5A69103A23' : true, - '10F22412D1CFAFDEBCF5BCF13FD251853DD98736450E36D989F880901DC4EB20' : true, - '12160CB58782201AF8F946F3911DF89177566E67C2AD7A2CF33107C89C65DF5F' : true, - '1243C75D0F805DA54E780D0D9C55247B1ABB31FC09EB65A7017695945F2A0D4A' : true, - '12C674B54921107861CA3EF8660E814B8B4D9913D0C7867A4787E3546F8642E7' : true, - '12F18371A507D5861569D0AEA4A8E66E551FFE7F312721E9122243EE006D8C46' : true, - '12F7E82D3406C5CEDA8CFD369DCB78374E1F37D312CFC7FB0ED422BDFDF47B7E' : true, - '13033A2EA4BC988F6079128723671DE679D332B41D5043BA058FC76F7E5DDDB9' : true, - '1306A4D21476D28D3E2F7D6E4385686E1BCB6D7EEBB1A5217346A6E5855DF944' : true, - '130F0A3C4B9E9132D1676B4EBBAB2B17AFD2AF39E291C983A696D8BF0DD379BD' : true, - '131F59EC4994BCECEC4BFDA4DD4153463E50830B1EF8629AB6A31DC1BE2F0F39' : true, - '13E77B97AFD7D4712B5BE975257B045E3A0FF8EA08910E1DBD5A64D0DCB95720' : true, - '14919EA335FB4C65A5314A820ED289B0C8697E0124E6FC92DFCA84FBD56B2D35' : true, - '14F6CC3EA57AE2656212AB521EA53739211382F1D8FC429AD02A0D6F6A1C43CE' : true, - '14FC4B733B50025484FAF2617C4C857FA37BD37E6B5785CB007DA63758749E0A' : true, - '15178AD6DD39B91835771E8C2193D0A96CFE82F913A2C10C03144B37DDF45CA0' : true, - '15DDBE5ABC768035989DD30C6A2BC696AA7E5AB2ADDF1F3AA8FEEA35D319B47E' : true, - '15ECBA98523C315922CFC13469827BC118123E02D1ADF24C3BF8305769869181' : true, - '15F88867DB06411FF17D7764070C6EF6050D08CE2B2071F56313F0FEEDC9A5F8' : true, - '161AAA4D4A25BB68199DBE8BDDA1E8FBC52E9C7B299EC5BFAA7B36040B3916E5' : true, - '1624DBB95D0B9786B98A4D7F0B7CDD8FF28754C5EB6673CAD7305B1B5B8F8826' : true, - '163227E6A01ADF06502730FF25F39D8F52B79F9AE61D5AA2876980A21985A211' : true, - '16583259A8715263D55C505FD1DFF51D3925AB6E38FC81417BB52A534D767F3E' : true, - '16A2F0D309D7E5CC00E5DFBDE3DC5DB21532F7E5ECF93E18554698374A5B5C2A' : true, - '16C84150B3F3733B9D898ED4F57B4204E8ED00ED1147C06335670DA94CA2E2D7' : true, - '17094402A4BDFBFA5780FEE086E2D0DA5F4D5EE3107A1E934F9023A1F7E1163B' : true, - '1715E347E92C85ADCEFCA2ED0C4B56DF7D7A3FA9C834B1F2DFA7CE115DC8DBC4' : true, - '174120EA445C5E517C983BFA02ADAD674EA986185E61DF9A782374AE987D67AF' : true, - '177CF252B8F289F84D70CF0C5F3BF4DC2F4B14019D777F62628BA1C74ADB567E' : true, - '178437C1DC169BA86687755E982E2CAEADE216ADD8A163157614A66F34325FDE' : true, - '1882C2D8D817DD1078933D244E379CFC5BA8EAAE302BCF9FA22636B08FAC86CE' : true, - '19230A5E183CB5DD90409C54F01075BB43D5608CE9C322EA3CA3724144FE03B6' : true, - '196603FAE474F910E61B7CFC9A735167422C230CC3917D4F0B1349A8AE18EC81' : true, - '197B67187392F9D4653EC70C8BB277DD7DA843E62BA1A47B0BD95B89CB2C1735' : true, - '1980AB9A47AE57C49A608D8DA4D1DA1B911F39FB199C9A483972FAC911F8B193' : true, - '1985D79429E03A4B25EF4195F04D0D6E770B36E8AB4369232CF3A1C1E40886D3' : true, - '198719FE25A84786A0C2BD4053E93940AF864498D6071994E09A5335B675A73D' : true, - '1A20D558B752D443D16F9B806ADFFFFA0B15F9A6BF15C4DD9B0127A3BF140BC2' : true, - '1AA2692979DFDFEFD4854EC9EAB4CC323BE159529C3E85799E2C3C51350FB9C2' : true, - '1AC3A4111AA231A03A5457B4143FA2302D977AC7666C84D504283EB828152B90' : true, - '1B2BC0D56C4FBF89A27616721222094198F39C550244459FAF352151161448A3' : true, - '1B53976D26A5F691CEFCF098279AAEADDE2651B698FC3F7088F5C2A5B9CB2C5A' : true, - '1BCC11E5459BEF3D48BCCFB10F57B0D640EC74C4BFAA3F0AA221B777170A5B6D' : true, - '1BDD0D8B130AB4FE89DB814276912F04405F2D202CE9DA8B89C4420740517437' : true, - '1C0A6732DDADEA7031C3AB577D185BA0908FC8CFC68925973F5D8D1EF314A0C4' : true, - '1C2A7980E99904650F707BD8FFE193EF77B98BF02C594F668E2CD8FEAFB87D34' : true, - '1C5101CF6E51596C08A2A9D05E7FD15977361F9397921F1E007190F7E161A57B' : true, - '1C84E802619ED9A0AC26289D6FD23589DBD71355453CA3A330C67875541314DD' : true, - '1CCFC1F41255B860F2231D11672FFC1AE32D9CEAA341139C2B472A0EA9CB426E' : true, - '1D16AA433A5042924AE1BB07FC1B53E8549BB93D0F3E40723DE9CF95720D593A' : true, - '1D5A459E02A0790B2082A875474C6B795D9DB88FBF88F5F71A6A0E1D7F0A793B' : true, - '1D968E8C9F5C1FAFE516D2B719A765DFC83AE7AB11BB461C696DFE8051E68C04' : true, - '1D9814B49CC077ABB5F8BA2FD6CEE094538866B595A4B5C5B96B8CD60342D7F3' : true, - '1D9D0031DF904A27E15FB3AF4E004B0A7350788FFEE1C7FC17F0E6118C678AEC' : true, - '1DA6DEBFCC0A4BADEB9672E523C95F42B2D16B168759F75FD03EFBD2CD482032' : true, - '1E07BA293C78E14CDFC629A797E8046A33F21981334BF6BFF9B4DD2D3C148CF4' : true, - '1EDEF3A2E0616C9B753FF6AF369292C619495091058BA99F9A2C691901600E5F' : true, - '1F0A95E93B1068A37FC1D05FCF5FA845CB7D6514F10DD5E69985F622F750D8C3' : true, - '1F4C963A9BA39CE44E46F135EFEAD5B30D6A0A3A43545E18CBE59DE452A6468B' : true, - '1F50A8F65E8256363E2710E05BBADE0FD84882DF8D7C5B12A92FC51B4643E4DC' : true, - '1FA7FFC35183479611091C22AA548F2807088FFC09EFC171596A26B228EB3951' : true, - '1FCEEF2FFF50C9A455ADF1A2FB3A2D150777EE49A0F333F746479D677E3283A3' : true, - '1FF0698D58F68707B69BC895A69FC1F7E6A645C6BAECDB82CECFD7F424BD60D3' : true, - '200F113FB8BE9CD93DCF38AF69F714D686AE4D227572F482F774574A5CCFA6DB' : true, - '20226C095C430BD6AE483B9806E0C32296B0819273076F35F65B6A52FDFEE19B' : true, - '2088FE71BC64663BEA0FB04CF93E3053228D41914681A3F17DA61CA996D453AF' : true, - '208D546555F7C8FB765630D817A53D96B3BDA2C42C82DDFDFD025E0D9FBD5512' : true, - '20C2806DEA7B729E29F7B7BB8B2653B8D71805605AD46394473D1B1F81103664' : true, - '20E0911E2A528C3DC143646F9369D844E82CDA53C48549125DD690ED1047D8FF' : true, - '2128E4E9D372E50A94E43591AAA7C8B6BCDD8BF303C0B22F923B1DCD596E79B6' : true, - '2156D89DFDE0B0676EBDE6CC82DF46DA81467DF96F9B8DC4A8B62F71DDA5DF95' : true, - '21773CA8E35B39C05F62E4EC902D512E19BF1249D303EDED85AB5A724D491B44' : true, - '217928469E2299DB33E82C901CD9BC5B3FAFFBAA9D980ECC601413C9FEF5F1C8' : true, - '218E1D545DF5578EFDEAEDECD87F3FD80C7DD8D925A529F1BCC6E2D72FF03FFD' : true, - '21B2E2C095E47F4762069BA39AAD86802201AC4ED5B6DDBC20D1C7863AE511ED' : true, - '21CA97793B165187383669364CEFC96F19BAF3F8987F7260CC46F3852721BA5C' : true, - '220A91D48D7994F2C122A3E75527F1C29C57C0FBC60E645E02958217AE7BC759' : true, - '223264A2EEB01CD24524FB9273B38688A0AA8E3A2E7D63ECB76012B060039760' : true, - '23F00AC8958BF1466784068A5CC7E2179988F1E73446955136DCBBF756CC2171' : true, - '241D89D07F380A6AFCBD4379AC49FB2EF6B82E7D9D3F155DFA4275A02B9ECE9C' : true, - '244EE1B87977A42E7CA64725F7DD82F337A432744853EFA58C9F386DD4E0283D' : true, - '24E10AC42500C086F78D008D164BC4899A932140B71A9D96CBAD9FB4C8968027' : true, - '25104DEC49F5E26A63CD9B1DFA2B4FA82F2C73E4AE18CC7050E0E0EC7946CAF4' : true, - '258A578A6BF92E1A60553F2A17EFDD2C3267E585FB64020225502A19C6A015BF' : true, - '25B1D037851DAB7E74114857E6ACEE603F0E41D7B6A89A58A2CEE23CA92D9135' : true, - '2677470F2FBD067904B7014B88988BB94F72403C014240B9843AE5A5FA21661D' : true, - '268343ADC21A53E71BD790E19507760E1F7F09B7C51E088E39DD0079C65AAAF7' : true, - '26A15E073F71406D8AFF4A4A623F956FA8E3ED70F0C04CB4B28031EA103DB975' : true, - '26D106DF3FE6E9C99924142C9DA27551E012C72C71FDE6EDD3CF4B5C87D59A26' : true, - '2741D5D511257BAB37E2DD48559D3FE3998CB3A5BA4FC1EA9C8656D5694D7BFD' : true, - '274C93C8441ED469C7B7E01B5A4DB6D9923C3947C87CA4B71D09F34D13F37D47' : true, - '276E05B404AF299D94034EC66A188571F2889D6BF76BFED48FFEF62BBAD8882C' : true, - '277DF8ECA2C7455A847D9C1F3B87D0FEB37C0D7FE1EA6B795718513BA73F71F7' : true, - '278688C47E3A183BB27A4FD418EBD2E408A09395047C896E3757F2D5BB50324F' : true, - '2823094C667C47C71749F7A97F6D215B234F086780B61B5AACF27BFD65C6AE4B' : true, - '2855C813E2F7369732C35656DD791928668591AC6AB3F9C73061B80AA7713920' : true, - '289395C86A0D1E03CF23E70D9FBB322F1988E1C89ECDDAF13B79DE45880C7295' : true, - '28C725A83ABDD4F961356B2B5583C1F165094C5BC820CF15A4FE18086272107E' : true, - '28F5E2863DA83BD5F283E9598D3E8D71817B97BA813C2329DFB2A61814BF56C0' : true, - '2A66B5579421025EC719858E2D80DDBBE02243073DE27DFC7AECC676B0899589' : true, - '2A7374ED5A49AFF8807C82CB9F3E3F4AD7DB5B4994D11D77D140124BCB095245' : true, - '2B059B135DC85869AFA0F2BB76122D71B97DF5EF2C87669085646D98CF08213B' : true, - '2B7C7CAEDD6611BE472B7BE0EDF5907E0F2DEFF89561E09F389343E095DFB90D' : true, - '2C610F90EE3EEA88B4CF39A44659B8B5F74454A5973A9D787794F15867177C3C' : true, - '2C78D9D3C1771061540AB7AF3D75B6A51F63D96DACCE2F21AC08161F2ED95969' : true, - '2CAB9683916ADE98D778D3394221D8D07E07353E546771D507232A26FA577902' : true, - '2CB5C98C4A0D8A9EE15CC49CB83490CE552677BF353A0FE7AAF1482A8BF8C012' : true, - '2CCE7C6E6F1C405C82DBC09B890BBC8F205F503A010210A67428FC8048DBEA1A' : true, - '2CD5E37B2C388FECDF839EE16998A0F0850B5A6BB39AA5A507AE676622001CB0' : true, - '2CDCECA60D7F0E4700411340E6CBFE1B3C8FAFA9081E219462D25A14B61F9AB5' : true, - '2CFB60CBA71ED8ED0B81BBF029CD02B2B025FB4859FCA999DCD96A5D54AB6C93' : true, - '2D375C90CC502EA17D4FCBE8EF35BF7E07A84B6B94EC7AC78613C623DD765E74' : true, - '2DBAF94C053FCCFA1EC09CBB22F54DAFF2DB4ABE1B3C61CFF1BEBC31260F4821' : true, - '2E7F1DBDCA2839FA5A49A6477FC9E09205393FC4A21BA2F5B04F58833DFB7304' : true, - '2E936472C0CBE755C72128EECCF5BB8AE91AF188CB2F3277B205E27904A9EF20' : true, - '2E9AA94F913F869B027272668BCA46D5076503EB9550737482C337950749E946' : true, - '2F3A46F3C2FC1EBB5FB46B3135B7B4ED88CB515C2DB9A508716102340AC3583B' : true, - '2F56C46CCFDB3A3F0192313C4801F02FFB1738F328CCF0F33F44C0731D340DD5' : true, - '2FABB733337C02FC7D79E61202EC0FF7115DCEE66134F5F8823EE61CB7000005' : true, - '2FB44A33A5795F520D20CB4ABC4AE4E239FC193CC2E3D3A85056685ABDA9E0A5' : true, - '301AB20AB753F09B1A1DFF526D3D5DC6ABFF5D796C6900392391D48C2AD850CF' : true, - '30547BCD70F47CABBDE76FDF5538C39D1894B49CC72B0A8BD07250A65E2437F9' : true, - '30664111831B947406CEAFC2E660230B307F401DD060852E0E5281C95D9F526E' : true, - '308F0B0CF08358D501CB807667A31FEE7FDBF7539E1AE74945DD9245AB9F2CF6' : true, - '311646C51E3AA0B2E8022B6B1D95E83814131B16921B3B38DA1ACA9518AD4602' : true, - '311F6B428C4994F2677A56588DA04B704926D737669A76B1B3C8504EECCE4A61' : true, - '31409761DAABE788EA289CD56CF4B7C2BAD543D7FD4347E2F567264195F5EA37' : true, - '3145502BE41C037D2D0E4EB721101662A34D31AD1C3803DCD441C55B4F1C214D' : true, - '317B7685779DAFF1AD898FA790781D54D3EDC11621D1EAA3F4A9BA3262462557' : true, - '31E1681F2BFF6FEDAB9643A60CEDFB2315E62408EC8AF54CA9252895E34B61A8' : true, - '321EB0C04DEBB24086B738BE5831A4D968DBF3FA26E610C367B7F6B241AC2B6B' : true, - '322EC261687A3829C2C0F1FF70B3E6956F5EC01497F58A422A099521BC236D24' : true, - '3247CA2A4D20116F5513937011CB89834D690D5FC864C788061B13AC826B0A64' : true, - '32ED76AE2E09C58605B9C2BF6A27080DB8C7EEB70889BCCCEA72104C7F33F95D' : true, - '3324199E8208DE00D12FC927DC434DF39C54E591EE8CA42B31B505FDF344E5F7' : true, - '333EA87B9503B4199BC1CEBC617DE7A5E500DB05DA5761B7B4C95093201F6200' : true, - '3361788E20F935BE971D4A9B9F49BCF9951C7B30E8E1B00E18130777401E634D' : true, - '338CC51C8910ACF7DC6CBC3AB6F2E288D38A7656CD78BF22C57745EE3146BDF0' : true, - '3422E68D29A6E40872B4B94E0758602613A6E2CE2CF3B5CA67E4EE4DC097C6D5' : true, - '347DB54EC154BC63A4DFBE7698F064254EB89FE7B534161AB6A5D282C87E2CC0' : true, - '34B1CD29AECA7639010C4082C4609B8EC6EFC5DF272CC90D2650D01ADEEA8A53' : true, - '350123506BA002EA62350E82CFEC1DA7BF24B405C4160EF1BF4C445F7DC31757' : true, - '3551069D5774095145A9731885485CE10FBF3FB46144F33A4E48C03CF2E475E0' : true, - '3572DCF086FCEFED230B4D1B47E73DF410A5C775BA3BC9DC2681204F2E980BC4' : true, - '35A0FA13220E762AF04C6148BA44189D2264555AD2FC34601434778390FA5D92' : true, - '35CE5363F4A107CF1BDE8CFA1F3636AC081B94188FD008395A1D8895B5AD2A27' : true, - '35FF7D237FE10EEEA04358CE725A8D43DE0D041729577BF817BF549B3CC1ABFF' : true, - '363A259BBB661DACB3BC7F7FCC2AD55BD495AD1845A0BF0F0744BFBE1F25BA5B' : true, - '365497AFA23330EDC3FF27DFF49CDDDCFDD680C3843BBCC719674A9FE6AC1E4C' : true, - '366810DE62E39878588C7AE621C28816F67DD25F3E76BA4843FCA93A680BA6F1' : true, - '367CD6CDFD0A98DF1D69EEFA8A8D5C79B4149F28188943BD32D042648021B458' : true, - '36C766FC49EDF0C95C068E89E5AFE604B86770D48FF3CF6284A579B200355C09' : true, - '36E58C6DDB5038020FC61F17D2728311DEA600AD9FBFBEBAE2EFBB7B5071D884' : true, - '3708509A206C9C6C5788597400D7C505859483753AD8CC0F99A5D2DDA9C76AEF' : true, - '375A5FEFE06518B0BFD2CE02034E185A44118CA92BEC6FE2D5809762C89E8C67' : true, - '376690DCA49A37377D699141D59A549953B2A0B730729BC6FF8BFDA67433F763' : true, - '37D9AF8274E2D58FDC78EAD2CEDA12B1F68C04A0F2758EA29CF0AEFE9342B525' : true, - '37F78563BBCCFD52A5A8E02FBC3AFCF8C60FCD15F9B7D011279497FB89B3018C' : true, - '387A2F5DD4AD9C5E0847B235EF6DFF8EBB8B786025B4317124DECA6E08DDED32' : true, - '388FDEE7D1F4001D828D2092BBEACF16E5D50375BC16FBF1BA058917BFA03C1F' : true, - '38930AA3E177FF30E734FFAB5B71050FB3105D8B3FBB693EEA22EFD70F1A124F' : true, - '38D12483160C6E3AC330EDC1DE173382B4C2AD79A298155181CCBC9A10CF6495' : true, - '392944F5A1C82284C698C6BB512CB5ABA48445376D54BDDF0A53C66B832D1BB2' : true, - '3955C196410B13A2BE4CE66E7CA1238F139DB5F00E2DF2997CD83903BA064B4F' : true, - '397B9EB5957CE4F48570ECB1A512AC0CB669DA638AEB298B95C9F155E2D0A841' : true, - '3980DC35B3F055E561CB3AEA700F226E35C1ED91C66B2CAF6E186E10A319BB29' : true, - '398785BB4B2E784270779911B8DFF4530758A295E20327D0F64BD31D7055BF1B' : true, - '39BF13F759A9161866C6DC6898A5E6D71FDDAEB9EC5925FFED274FA8E5FE34D4' : true, - '3A260A20CB6DC9BCEE25A21284C2304A9744F494B37359F5F0AFB46A1D0DABA6' : true, - '3A2AC86801E185B3B8A189C42AF1574721D452DA425CEDEC6FA0CCD44894BBF2' : true, - '3A6E84F6C3500A3C756D21172CFB91798DF0EE8CEC9690609D9240018B1986B9' : true, - '3AA33F69018FDFEE33875D0690C26D0CBDBED363252891E02592E0F2E2E1EC93' : true, - '3ACDE8B9E6B1100535007AC7316F4587DEA84EE0DF1B344DECEFFA952AEEDF96' : true, - '3B1CE26F0C0E4393AEAD1BEFD39546A60E52ED5E52727AFEA827E27CA20453F6' : true, - '3B209B5718F54F113C557AB8D670B1501B05A16B92E6E16BC97D026087B90C3E' : true, - '3BA68BADFED2C2A37E94A335FB77A9E633752A9BC037C2B387F89AFE76DC0C4D' : true, - '3C2E04A916C0E5A3D377B13111ABB1C5BCBF79A5DD18865FA9C01ECFA91C5620' : true, - '3C9E6298F6FC43F504BBBDD12ECC94B4BF47947775FB629D1E1683D8D5AA6A8A' : true, - '3CB171EFB062C3F0AC1CBF88CCF28B562B382A5EE096BB48394B16AEE1623F82' : true, - '3CBAC1646A082FD6EB8B9F2A844C1E6314F80DEA301385ED296DB13C3C37BE91' : true, - '3CC56DD89816FE295CF8990750308F966BDCBA97C5A46F6DBD5B781686D2434B' : true, - '3CEBACED87EF6D792BE57716D499B06A9E0965392FF9ED70A3FDD82673C91B1C' : true, - '3D0D68FB06AFA2D8D333AAC270310C45E9D6D79D18219B7C029A78CCC43DFFC8' : true, - '3D1C44AA234496D76A6BAC3434418253903B3C5019FF91F78348AC7C14E39CB6' : true, - '3D76435F7EA7583AD6F474333B7F8AC6368ACB53FAF4AFF9E8644765025ED427' : true, - '3DB253A22F1FBD071CBAB9E97294CD6534BC74430123B82198F7A29ECF800D64' : true, - '3DB397FC056841ECB8737ABEFCCE8A2419AA2BCEE8F1A1D2C440D0F0FF672303' : true, - '3E08AEB4D01EEE9C19968EDE2D5FEE0E974E6B7FD65769E767C28CCDADD85D46' : true, - '3E5558CB92AEDC7E01DB0FBCD0825CC0F51AA7B683ABFD01D1E5E04C8A4D716B' : true, - '3EFF635571ED85551721F01985D1B2C62613C2B7DE25C8DAF17A8767ECFCC39F' : true, - '3F1F9323436BD390A2355115CC333592B4B5AE3F3BA2755D342CD863371EAB1E' : true, - '3F56CDF75403392B96E7DA06DEB55C70E8D9166ED6FF6B84D7EC4C176157E6B0' : true, - '3FC92874F07DB0DEE11CCB2CA7BDF187641DC78ECE4C76E71B2253FBBC17E3FE' : true, - '3FE67F5B06535FC13DE42FBF82AB1238C7C899491A460D62CD2FC08DC87DCB73' : true, - '401560EF31EC01360E48BD4CC8C2B67B55C0004712A3C08E22A01F933C60CA67' : true, - '403708719913B389CB23493659C668C96CD9999F7BFFE044B35F8B44B13B5B39' : true, - '411ABA7575AC3548FE6E02AF1E192B80ADA7FD957D2FDC1360B747598D1327F4' : true, - '417548DCF639B7068DBD9E51D372C67D147C8D240A44EA9F9609A8B526FB4CE3' : true, - '4181BB2178C564FEA4F0F5C87337921A1DB4C1CB1264B1E2168FFAF334C7DA55' : true, - '41CD7602C418FD0831F1F207DD50A19A0A03679113F8508F43DE863AFD32FF45' : true, - '421255699474B76638EBF0F0B09FB1D5DA870483D1F6572913EF411B384DE3E2' : true, - '4226423E038140296172814E39889C6B35471796A12F91E450FA5E59341F571A' : true, - '423D0D4DD3D4B507C4115C46321A9B0BE3B9D7224DF626D2027A30FE682099DE' : true, - '4245AEAD44ABC8177230DB36491E58FE885773DB0D043E24412A8BF6262D506A' : true, - '42A2B7BAFC9E81A94112C062E15EC8017861988A458D8C52A686702633559BEF' : true, - '42DD0632CD639ADAD014D4C2E28BEA543E3989FDADFF9DC360676BF07C200A1B' : true, - '42F0C6BD144E105B3D14A68E267DDFCAAF76C95CFA265B187480EAB83FAB9215' : true, - '436A3291C05BB22CBED875AF7642839CC42E7C0BD534AA6698AF162F790F90BA' : true, - '437B07B7934374CFEB2F61FB1B9A764548A53C9255F053C59E236CDC6B89B839' : true, - '438F971859A8E9513FF0A066A2DAB7A7605BA447CC82183DC88B53CAF49D1A37' : true, - '43D2BFAE896F4791DF545D91764AFD74DE470C6B26787A553E70176925AAAAC3' : true, - '440D00F6A763CEAF241756BFC150BABBB724D3AD48D6739ADEBC84004E24FB7A' : true, - '44406F5E316D195EF83153B0E45380F529943062FC692EA5C202A897A013E95C' : true, - '446E31D583B00384BB2D1D48C8960DE3C852F2DC4FA3BB738867CF5FE64EEB5A' : true, - '44C748D62020862C698F3A1BE86A0261BEEF4337B6E28B3597F7FA0E4A01E49A' : true, - '44CABD03127B290D755547D264FEB34F4D906826A149B64DDDA514F549FB52D1' : true, - '454B18F6DAEAF7047D5B6CBE2639B39B2FD036870978048A5076DC8D50244365' : true, - '459F25329680CC7589904EFE8F94F17880AA9DF2BA9408645BC9370DAA937471' : true, - '45A2CDAA5DFAFF670425706B6543FBE161BAB6843A156A1D54F340BD8CB87970' : true, - '45CEF64AA866F2A2A72E13722374190F8EEDFE984F022C3B23B492A073741EBD' : true, - '45D1C3C1E96982C752313C9059D4D6291BC0652ED7B266E25F67738E4D74915E' : true, - '4603C35A8304F6057C253381D39404E8B40AE0958B4EB2CEAB7777CD85802C0C' : true, - '460D4CA817FB242D2263900689B3CBA7261A390B018391C7E1716991BE8ECAA0' : true, - '46565A05B815225FB600CF1CF1EE4BDBA5A7D39A7ECF45210FEF3C1FCC2B8B1A' : true, - '471B0944B33214226AC225854FE158436A278A750C082A48D9E7A5E2A0E1715F' : true, - '47F4235DE4F1BBD02682F65A8B465D04721124582B6DEAFDAC164A699F56F419' : true, - '480B822D5A85FA7778AAB5735E46949A668EFBE1F6E8CC1107B01C6B761C2089' : true, - '48544D794B99D6942B8C3B2CF051782C2F6CE051860BECDE2736C2CD6A429893' : true, - '48E8ED415FD8EFB4407D0C67F3A4EBF15286569D29D566DEFA8B7AD8F135A5CD' : true, - '49558145AB82E7F795C2E45402260F1AD1ED43D4DF145CF2577BA1615CD00843' : true, - '4A69353F89397B7FBF7B34B298BBA87342EE33C9F5B75660195F8B308FC892E9' : true, - '4A787F7CB8AC54A1EABAB27A47F6EACE47C2BE2076C2097973E035DA5B507C39' : true, - '4A978057E01B2F443BFC218B48E7D00D2542DBA58ABD2609ECE7E152A8F86292' : true, - '4AE85007A69D54CCEA04A3FF18B66CA5AAAC43342506963BF910E2C2C3AC8816' : true, - '4AF86DB451BCBBB3BD8BB3D5982DBF4451CD96394540DE9FE6210E69F7C2F8D3' : true, - '4B29F275C3803C8B4E50951895FE2A4C94442F4A7D14922D54EADBCAAABF4056' : true, - '4B7969CEDC5D49D2FD71A2BB9292ADDE46AA34B2F8291163708F0039DD950618' : true, - '4BA794C124A33334A880DFDA09E7CE5B10552C8301447ACA77FD53CD4CE9E725' : true, - '4C30D24EA7A5914CCCA63E3EA35BC8FB1235F5DCF380DD8A62A01EF15009668B' : true, - '4C3777C55B3DE718A1A48D7903656A81E9CE315333E2B6C3A1554F8B5C193BB4' : true, - '4C5B87AF5F835DFEBF4FBDA9585178998AF6C7E8681DF65E46494A8F6BEC6EA8' : true, - '4D112C44F7DBE6E0A55667E639E192515C54B00CE5E964EF696B13AA049BA656' : true, - '4D26A014A4C4007564C743D9BBF9C2DC9A5A881C05E549DFFDAFCD3814F3966C' : true, - '4D6CCD149A9BF9FA30CD78345F827ADB4A51553FCCDE1811FA39872E293EFE59' : true, - '4D8B64624279CF7D51601735841CBB361AF0B7391064C39EE82B7BD99F633599' : true, - '4D8C4D5D0326174F4268C67B81010F65F2DDF58CE700989FFFEEA379269B0AB2' : true, - '4DAD9C6A183D4E385824B6026E226BA5F220BD838F827C2063831B5998504253' : true, - '4DC761701AB68524A6BACAD94CAF1D8480229B66D8B9B9C0CDA3D3B233A6B785' : true, - '4E49086BA0B8B96D1C31415D8A1464F19B93CF45B46D04AE4C21672279ECEFFB' : true, - '4E896A7D43F19E4E9586661BE2C642A13C1A6276BEC67EE05D73AAAD7009E723' : true, - '4E9BD8EE95C95E2F30BC2874E73252CD5F1E93ED8044F8BDB007117ED14E2959' : true, - '4EC463F17C54EFF037FFAC18326F5C8D86F5AC295149408499042DC4F8A96B73' : true, - '4EEC544B64210519ACB153834E7AFE21867AA949946FEB78CE5A254D12A0934A' : true, - '4F109E78AEF1C633256A8D142E1BB4634CA4DD28D45C9121F8AC34EAA2CA8D61' : true, - '4F2585D48325C6EFDF76B91358BCEA97A428B95E575ABDD83028DF3C7AA10FB0' : true, - '4FD1A1A0E4A435C96CFBAC9AEF2D8F93C9505CA0A01B505CB5B5D3384A4C90BA' : true, - '505707224B14F1FFF2F5937865DE662C85B0C21D090C59658E24B53CA635EFEA' : true, - '50CC4D1AE164F66EC09AA6B7D5931074094FA1BB6788AFF3525D7711449CEA81' : true, - '50D807568742476BDDFB2B2DD7532ADF770BC0A5D8CCF0710AA8EDA90AC1BF4E' : true, - '50DB534A27B601C2268FB45FC5F496F4457DC030EBCDFD6221A85B1D6F612837' : true, - '50E9896B78F1F7518FF47BA049FB637E9EE670EDC54AE3611164EDB0C77005FE' : true, - '5146E8FC07229C7FB68C4D978D98E431559515C26B7C940C9B02846666CBF86A' : true, - '51951278BE011B8562F6F9F629855BCFC7F28856755EA274F29109E2489CCAC4' : true, - '51BCC26F962807CF0E8DBAB22F10EC07C964A23ABCB3F54CF247590433E81955' : true, - '51D55D35DC31E9E37668C1D7722B6F9C09F044B5BA6AC7E4292E6B2ECEF92535' : true, - '51F5AC607BCB1882F792585357C63B23D08267F717AAC5BE2AF557123EB19446' : true, - '52064B1A1610B2374CC7319E51B4ABFAD46FA995B9447DF18ECBFC68382A9ACF' : true, - '521C2A94F68FD0E4A39D62EDD2F980BA51A70DE79312605479C49E9BD633B854' : true, - '527E1D8CBE4936132EB16202101509A3A0535CEF78476DD9317AE7A31C097327' : true, - '52AFEFBC93919093868483354CF11C747FB38F946CDEFDCFA6E5117FB0F5039B' : true, - '52B692F4633A4490F8CF535009183557C5562B4B933829691FDC17E229919E2F' : true, - '52D622E1A7705A08FC599381FD67871611748B8EE9BD235E6C2A91E315C251D0' : true, - '52FB96DD74E66D3AAD9362B58E44731D388E0B0E17DE700E2FF3A7ACB2FC1BE2' : true, - '5322CEB4048FC373C5BBCCCA48985E2C72A380ECB490D143DA16482383C74B2B' : true, - '53A96B8A54585360591C2CD5A84E299962FAD97F6C1FF0D55484D3F56B2FB87F' : true, - '53BC74DCB0A19B859F3FC60A2C6410D22F86321E2AA4D03B08C53181A0FDA996' : true, - '549714E49A3540F72DBFAD7836857D6566333DBA4645F3C4F349E5FDE00D4302' : true, - '54F36E09737DAF689E5E4639E147A532A852983FD88F7D26234EA7C9BEACF0B2' : true, - '55360AB9E4626C6A5CABE53D4DC3FFE3339671F040B96E93C3B8ACB6CB1AD4D1' : true, - '557AE25211574C66868033236E50981E6DD3AAC09C9A7916CE3A26D03420E774' : true, - '5588811DFD0F3670F7E1A16786678388365EB5024E756A724F3E270874A0C307' : true, - '560643E22142CFB43DC9055CE558A62AA7102F75F6D42E3CA314920016A5779D' : true, - '562245CF8A84D1D3C1D6B93E913E3B22E5EB561788981CD666125C21EBF44D88' : true, - '563A36F203C4A0D86BC2ADC38B1006499E3CD3D651B5C97AA848494CBC5582AC' : true, - '56471B223E05275BE6DC106B9104B5205CE2E6FE11115C5BE564B51B965B5F09' : true, - '566B4401F65B5C29AAB831E836536E791FDCCCE98184D62C0A26E6842F55D303' : true, - '56C3C0B8AFAC13E7ADBC449142D6782CC3C31A5E19DADEDF1CC01A1C80FD6D4B' : true, - '56E517CBA2C7389F835B1BA349D636309FEFF05323957D8E64D6A2EC78F22883' : true, - '575B7E593AA02701C1596A6A45E1FF458D4626BB2A31F5D3031B2023956FE5B7' : true, - '5763D92A93E32A742A173821970D56891B3874753DECF5DFFF2BC7D2D95B82B8' : true, - '57B2958E7031793509E2EB58DE05C460E0791C4F78A43244640F7926FA3BD7D6' : true, - '581247229E9E4F0D67498BD22646654479F5E0E21C96DF47CF84EC94218EFAA6' : true, - '585568A4010D0650BF0F0C2F78402F25FBF6D0B8C82879E5B475708DA6617E35' : true, - '58B590F006C3B293A57D41FF491EDACB580EBBF8AB20A91D6F8F0ACC3D3C19EC' : true, - '58D9F0EA223A00FFF59D34A5C07E1F2ADEE43CDBE908334E1153830DBE463D91' : true, - '592C1FA32CB66B17E0ADC3B3C6C65DB7A7B8863D0302D5E51C53416DB637BE6B' : true, - '592E6A566E519805F81D7C487817C94208B9EA356C03D1A69A3D1702265873E0' : true, - '59473282262DBA200C960F2938F0683168E8316CCBCA3FEE394F0F0D54A4029C' : true, - '59AF4358506C0A2318F28B90E799634921C869C5FD8B624C9D76756E2A9FDF6D' : true, - '59BA7AAEA0B865D4463836C24AB3BBE6D77AA72177831208B2B6A34C8C1DB307' : true, - '59D52BF260BA4EB3C33F0E2A17264E4FCDA3551FD2A1FA8587645C29547F4534' : true, - '5AE9D9A57C2C534BFF3EEA5BA91F7456910808227C9D3075409C010D69B35DD2' : true, - '5AEA8446AEF2B9BE8984ACDBA8D42A71D3A8D0AE31372342710B67E8F5A43BF9' : true, - '5B3B3DEBC9899E074F2AFFE1A660013CDFD66E4F70948B72AAA20DF84433A80C' : true, - '5B9DE184B19CB095ECE56743A43B16ABDEB3063CD37F0E20E985C9E65D71D311' : true, - '5C1AF4338F1854843A251AFCCBFB2F626FA70E1DE41D2C941F34D15230BB56C9' : true, - '5C3F4C823A953A561E8D0787CE7AD8FAC7434EF57CDEFA4520C18A5667C82003' : true, - '5CDDF1DF7B5333F1B4C0FAA66297AD72ACA5258C5E9FDE4B9ACD9EAE832C7A02' : true, - '5CF1D1896FCEF8E0B72BF6E617D8210ACE7DC6393E38FD4BD4C68E2EFE2EDC03' : true, - '5D64C4C9EDDD06639D193853EC96E2965F6B25D267B77C6B4215DD267F8ED96B' : true, - '5D68D02C6166F138C5CDF38DBEE7D4554849D48923FD4002319655F3625DB8A5' : true, - '5D93064489EF0EFC4896A08CAFC0E39631930121F724A3D1CDFB83C96EABBE9E' : true, - '5D9A9954AA2FBF6B426E2D08BCB18387123B6E2CE67BE2FB9F60F8D4B405CD20' : true, - '5DE0EE469B7D133584FC7B15F067761A0A18D73CFCC973EDE76DF596C4F7C9A7' : true, - '5E0567301967C4B11CD56E3246BD48FE8C4A23AF8C6F5042B745FA3F631725A6' : true, - '5E650BBA8E8037D6BBEE78A730F740DDDCDD7EC828120AD912F4BBD72794070C' : true, - '5EA41BBE7505A57EBB3603AB14050A284390BDB6E72B39D918232A5D13E702E1' : true, - '5F24DC1AC032BB0FFEC76D35C0091D9B658E94D953C8F7576A7C1613ECD728B2' : true, - '5F6CADF774ECAB5E763C99E911D31B7CE7A470AC7A91DDB8A0DFB092079CB0D6' : true, - '5F85D6DF2EFBA0438EA4283D734CFAA8B3C43E22BCF7F6CFC24DBE82232ECD3F' : true, - '5FB6ECAF5FD5CA42241B12521D7BB6F06B7D804C60C84D7BBA7B7A7543FE754E' : true, - '5FE1351F1D181DAE879D37BA02B76A4AEE40BB3578718C0F467F2B53383CC773' : true, - '5FEA0DFD20247FA12D63859439FF9F4D5D0207D6E1134820CAA9CFE4A1B08FEF' : true, - '60E9F3B150DCF1BD90562DEDD083FD783E2CA9A982C08BCA2C455F50BF977B98' : true, - '610B774EA0B634E6F9B5A73C2DE39026C1A55D9425691B68DF4803228BDB7F8A' : true, - '6129C7157898F2D29FDF04A78AC6730FFB248F7467858C9F3441A5D4D6B88C8D' : true, - '615745882CBA2C8B9875198E3FB62A6831207B74A21330847BA9AD01DC9D5586' : true, - '618F1FA3F38C857898847A865AE73D87B0071C8DCFD4EBB7E80828B11862151A' : true, - '61987C4865081BB1C9CFF8E555A2B73DC6C88CAABE6BCA06950D3821A1F9E407' : true, - '61BA185CD2FAB39562813CDCDDFCD75184A1572E2B2B87667728C2EE8596AC65' : true, - '626A46879F664F1EFC638A217EEA9AF538608E03B7496D5D11CF4E285F1FB2E0' : true, - '626D3DAAE3451C750616F520086766043D22C2E2C34F483D6C7EB06E76ABF206' : true, - '628B608326DFE57DF84B8289702D0510AF97D93EE30499B0CB5140921EC87DFD' : true, - '62C9A052080F8EBA5E8FEB9615B5CDDFFF1D74F8467653030CB1BA12337EB5D7' : true, - '6359C58181A724613C613A6C4BDF358B7AFC4F5E0B229F8877190FD3E71B9803' : true, - '63A4A98B9778705A9CD9A0F1A40827B0A6C86E2A520DEFFB1AD8F815D760D992' : true, - '64034D52E2C298EBEFB8DBE9B29A28732103B368215EECDDE114D22B2D7B2EEB' : true, - '640ABE7DD00142C0BC18A62F0DF54284DC89AA1BA000DBCD992F719A4B9D2887' : true, - '647BF8B75837D8245F6BD412B2618136176D68395FFA83FC4E3A1473B0F5CC3B' : true, - '64D1D9522071A54B43A6C43A759223AEA7AE209FEAB423EA24E3E95FD83BDFCC' : true, - '64FA303A129E23C91B42F1C76DBEC8089307AFE11E5C937704D88B919BA60B45' : true, - '651F8FBEC4C5909A0FDC3B8E8D557574FAF01B33981B5B725311B57DEBB47B24' : true, - '6568B78ED9264581EEDFB87DA662F20BB6E032EBFB2F5B61DAEEF1F4E6E91627' : true, - '65ACF48C5CF24783794CB8D5AFC30737273D3DDF93F62EF803EDCD05650D775F' : true, - '6640103D01C44839CC471424756C6CEEFE090B3BB98534B35675BC524D2FDA50' : true, - '664EF517A09AAC31503712482FAD76860E0376164400E67A96177EDC25CC4CE2' : true, - '66B10F427AD63DB6544E9E20191BDE4F827A7C96F1DB17E01E0B254D67BE282E' : true, - '66D67EC6407BBAA2F4A0EAF49D81F223332DEAADC96292827CD749DB07A82C02' : true, - '67118345997FE5257EB55439485C3BE019B32F1235E050EA2769A7DD80E6BBF3' : true, - '673739D407C00E1F449A4F9846B8453C09BA0D0F46442053DD5339F93A2B0065' : true, - '67EC9245E211B5D1725811DDD82CE19F1E44F3478BE3B2E42B049A41AD44EB84' : true, - '68382918F5505DA3670FA53F90A4F583D648B55CF05044CEE68B290D68279AA5' : true, - '6860622481E0AB0EAD93B771290792279985D4989D072D5C1E376F451FFB1360' : true, - '68F4D48C069E0E2FE572EF492CF6682A03AB7350D9CB3E57EDA19EDCC558151E' : true, - '68F575FF9F2EE5CBBE2975DB80B0D2E8582B2B5A1624A70EE6470FD562D59E93' : true, - '692C0A28DE13EBB75674023CC105A5F663CF5C67153225EF1193209E985CB1D4' : true, - '696DF754F89F8B927A273EAFAF6B85C38F1D07E3EB99C4458188B443BC352D48' : true, - '69CE183BD9B04AD76F8FEBE25095D92D95888AA7D8735400158CD60B836FCF05' : true, - '69EC7BB154853BCCDC5C5646ED659F54B957152BDF1799B2BD48D4EF52DD9A85' : true, - '69F71F4F07365D7F684EC748F9CE61559DA33FBE1C9772F836664D656F51A5F6' : true, - '6A7D32C4F099C8D7ECA61CECDFCE82C5D241F33F6A02B3A00D89802D4689DCBC' : true, - '6AC112C1828538894A1FAC7CECE0ACFEE75658118041513498E880274BD2B7C9' : true, - '6AD39077DC61A2347F25E34A809107D3F11E18B1E197A88A9A39F5FDBB0A3861' : true, - '6B079CEE0C61F7DEEFC419FBABA5A734BEB22AB794791A0B6247E61EB4493B78' : true, - '6B16CAD6D99596442162EEE7113248C0C77EBA7DBE1D3BDC044AB9802337D2CE' : true, - '6B8153379F9AD865DAA48C0B805430D7B62D6624C4AA9389FBD770A366439995' : true, - '6BC4B8F5756C6E11852DEAF28C2208733B463931BC5413937F897D4735CC2F01' : true, - '6BF2234F99577BEF099F5A651C125E660A765202F83A7FF24C82FFC87F87C3FB' : true, - '6BF93E269F6A628136F482392804350AED624D75C68CA78D744CC06CF68EE1D4' : true, - '6BFB1661BA15D7A0A8CA1B9B4198D9A6C4ADB15245006CC59A60939AA10903D3' : true, - '6C2FD820535D5A821A1D96C86B45519B751F141CEE8E1DFE6E52EA5370E1E7F5' : true, - '6D1A6A751BC763F5027ADCB9DD5D2FDD2B3BF82A755B3013851D2C8BB98342B1' : true, - '6D2E55B7B10EC7E3F82F060350C9BB7DAEED8B6ACB8E79B4B088D9B711A9CC6E' : true, - '6D53AA3328CC9AC46F2872113922BC105CC4A5C2B3EB7F45C331A93BBE4ADE3E' : true, - '6D9C7D48EBEC4A7D808E0A45C6ADB9A6CC5E61551DDF1A24A3A74846039208AF' : true, - '6DC6A2951DC967373452FB4E9A95DEEBCAC70945DDE09BDA398F74161060EEC7' : true, - '6DCF946587948A63E73023A5F33AAEC7EACE0525DA389B15F1F8AF1AF80F51CF' : true, - '6DD13D5385101A3323ECC27F7548813E240A1D58E37DF8D820CD2E2998BBB8C1' : true, - '6DD80C2FC91323D55EE9802BB3D0B8532383450610A54F1818EA67BE12DE0F6A' : true, - '6DF077999FC9CF42DBA6A53792BC94D44D0A7EB834DE9F8BEC2D973ABF5DD1FA' : true, - '6E1EBDACC8C14CBC6635F612329AA11C13C8C13BF612858C392A3B8C472AD059' : true, - '6E22A88D52132B3E2E43BD300743F5A381C225267449FD9DC8E86813046405DA' : true, - '6E2E497FB005ECE46395535FD0DDFB0D25109D1BDA9D1933F522706D8D79E179' : true, - '6E4717FF9379E997C167282DAD35030DCB397B5407EC9A25EFF535824449FB70' : true, - '6E5129A0D68D66F16303D10A033F33DA6D6E69C0F8524FF4385D3469B987F9BF' : true, - '6E6DA0FA0E408041742AF46AFC9DF9C2B0C3FC42337FA1AC04A91F4C89726F10' : true, - '6EB7B7B5944AE125A6CB7A1E47F94EEB2707DB51DDA0A74B6DC73A9EA683F963' : true, - '6EC6D27D2BE121B49CCDB7866F4FFCC3C2091AF00405CED481AD072FE4BC2307' : true, - '6EE1C6CE7C12DC2137FBAF7D8F23D3D39384C7486A22BD9DC5DFA7BD8864A0E7' : true, - '6F45127FE064F0BBB5EAF17D7A4D9EA3A47175AEF7CAB5C98F2B6D11F28A4BB7' : true, - '6F6AD0836CA59A26AAF84CB1E1909CE44F427C1A5AA2C26C77D0893C0404873C' : true, - '6FFF24F5CF69ACA10DFEBDCEA8B5A56990728D9EADA33D0CD316BF042E79068C' : true, - '704172C04EB3CE46ADA086772ABDD4DEE208909ABA10D59D1815E9533107CE5C' : true, - '707966CCAEC5908E84C5AE646566426234491D2F78CC00BA7C7B9E5F009924B0' : true, - '70A67B74C0989BE98A1EEE5FC657E903C09A82E81E9C921EAA995DCCF790EB82' : true, - '7109EDEE1A5EA15999322CCD296655E089C12CE7193B9B83008E97A382F3708A' : true, - '711280787458F0E54B0C9294A54270FA83E8CAB29E212ADAF665D7F6345C4DF9' : true, - '711C387F2C7A8AD850D98BB2D145DA6F0240960AC5563A50CC6251C28D659503' : true, - '712DFCF0FDE6A19BB956670492E1C39956012537416F6B0F90EFDF093ECE2D88' : true, - '716121E1DA67D3A82CC8116139F78C34C30E6DC96F647B7F474CE569B38D0F3F' : true, - '7177E89F5B3033D51F000533ACEA71FDEAEC93E4C3CEA1E0FF68F78BF35C8B21' : true, - '71C96A7294C59E44C257A0BDA7578AC44118DE25DEE425F73E0A211066FE6AD4' : true, - '7231ADFE0CF97B4891B54A4F17EC2104C2A732D06878323D7585801DC8883E6E' : true, - '72438F5523C4516DEF379EA7206A883EA5876DDAEA39EC848A5C456E9215A1D3' : true, - '725D6786E7D84AD1620F2C3C26F74F188EC71F0955877FF57060E2943972C1FC' : true, - '72B25D2B306852E429F21DE58CDC4A9891E3F5982691FE9CC6788D240DA268FC' : true, - '72B3E7A98A999A30F431233EA370E5C4FF0F4DC6C14EF976823F7D1E715D78C9' : true, - '72DA08B04A02C6951EBFBB53503A49B8449ACCE5F0DC3D0539FCF72C0BAC8C2F' : true, - '72F3DB1BB2B0B3D65683F62D927E20C95303A00E8C845E0088E4DACD4F3B19FE' : true, - '730C9CFC51120B6E5C66F07772ECB96F2933EB184A397BAF90453D2BB43BB600' : true, - '731365F0467B856B049E1DA2E48507BED14DAC7F850DB92517B78FAD19C3AD50' : true, - '7334856F73A23C5F0A60FD1EB2DD14EDB444B1B8B62516FFFC38589D1200B09D' : true, - '734B6A2AAFD05E66A9C2D72EDB67EEB5611E1FC44F4611602DE3CEDC166F2CC3' : true, - '739BAFCDED267B356D90B89CEB40EF6C9C77DC768025EC662EDFE035A816DDDE' : true, - '73A621FFE0ABD75757F5C92C8EF20E63EC8F4A279A450BACC7E4FA9D75E0EE5A' : true, - '745525C231C9DF8BE6CCB47D13C76E48309B978C8307B00D4AC43F5E8E94C719' : true, - '74A9F7B27B38326F64792AAF791E5A5969071CD05C8ECB1E068035AF9AEAF482' : true, - '74DD81E119FA195E9D174DE01F5EAEDB33DB2947E8B14103A68BD6C048EA491B' : true, - '757071EF34F3CA907D7D29C6420EC14B6953F433FA03F2049636F55265E456B0' : true, - '75A6F19FAB17B6F9369BE788451392B4297CEF7CF8CDE5885466DD3027567B48' : true, - '75A9264209E9CFFCF8C4D74F1988A6AD0F509269A5DDA3DAEFC0068EDBE6AB26' : true, - '75BA937083A01BD2E40BAF99E67BE6A5DA4091DB23E1180D476A4F29E3B85F2A' : true, - '76158E2FDAF1F6E79D74A36BB2DE03AB8F5A4D7BE13550662A53ED88EA7FA494' : true, - '7645E014C8465F11596B1B7093FCE41313B51FCAC1FBADD409033F63F5475CC6' : true, - '76A3EB6F8C1F3036DB2CDD46425DDAB17A5896602C21D537C750D56539D609B4' : true, - '77011CEBCD8791962FB34FA78597897A9CD8757BD10F4A3A595359986F6022AB' : true, - '770784FC2B1A52F110194800E972006E868F055C52A8BE467F3AD7BCD7E441CC' : true, - '7792187AA52C5BF5D6962B492FA6A9CCE23C2AAC15A97385EB19409E3C27C307' : true, - '78688E9E72AB7EBBF676773115F2FDCB5E48AEEFFE7A214996099B5B0A97140D' : true, - '7871679EEF661F72EE1CCD043F1B7C597E8F23196B653B42634C37F2B6619B00' : true, - '78EA89695196A279F7B44D8F1AA15080C91C3BB240F1D1878A88F2B27228D430' : true, - '792EE0B202E6A45AAA85E918497D9C9F16FEAC99500A7940C0FC812ECC42120C' : true, - '79506C5663C38F43902B55BE2FFABE0757A806105C2A18473770E9DEE5322E40' : true, - '796C57ECE8BDA296B3D99CF733FB6416DA911E5C88B9A3F4D666AB35C15BB68B' : true, - '79C23A183F34B74C5E27A98B7639F49A05DA497FE8DA09BB3009E1347E749164' : true, - '7A25BD2F891D7C049CED17BE56848CB2C398B23FF5BBC6E0B483D7C0EEC38004' : true, - '7A9E192C2E40C868BC0712625F76BF4017E503E5F115AF842F089A23FEE14F1F' : true, - '7AA535C0D9A800DB2CF104B369AD51EA6030237E857EF61EE4412335F83649DA' : true, - '7BDE39A76CE550ABEBE58E8195C5D2635A04B6362CEC665EADB76E8807C0A39B' : true, - '7C63B78CCB8DE59051349EFBA4A9E34EB627F65855F3C754312DCFCDBFDC270C' : true, - '7CE292E89FE576958102FD62E37D0932577DF71B88F116498212E5ABAA662A9D' : true, - '7D4642DEBC7CF346EC7846E9B0314B73B6B9C23F8016E23E8BD49ED247D2BEBC' : true, - '7E01E1EBA9D9E46D3DEBEC868180199AE64DB3BC878F66066E91CB4C060B55D0' : true, - '7E0920FB66D549811711C20F1789AF9FFC54846E738997B8A18A2F154F57D29F' : true, - '7E0AB095FE17F430AAE0B4AB7490366DF97BADF13AC223D96AF0913D6919BE7D' : true, - '7E6457A0590ACA862390B02CFC9F03042A7D08F4864AA9B1355521808F8390F3' : true, - '7E723113D07305D5E9843032E474637331F1567CF33EDD8316059148AA2E3ED8' : true, - '7E73DC62FF77BE88149C85444C4066E0657AADB72716230EBC073848DBD7F59A' : true, - '7EB86A40F92731EBBE58C26A9ABE78C3C1D2E2406EA2CBB6FC5908EF852253D3' : true, - '7F1566D05D1E3A90A9D5D551AEF51D2F1827FC9E82922F2BB32A08CDC5BDEC7F' : true, - '7FFDBE3A1A423CCC6EC3C9FCE2D51B91D70EB1A122BD7FB53875F4BB08E3E966' : true, - '80BCFC1145A7F287ABB29FD26F6FF09F2F9299D43DBFC2214B15BC346D1A7EE5' : true, - '81041B22B3F6B997CF39557DA4E384FA0D8FFDC59F790CAC512D966297380E90' : true, - '8117437E2D53CBAF96B03A772D719EA4783D32C4401D6C590BA9F941C52E54FF' : true, - '8133AEBBA592FF513EB1EA61723A0CEF57A583CDE66794FA9DE2FC0A8F573B54' : true, - '814328B3A40AA4F30950FF66E5DF4304428357F2C5AEA8C1E397723C751651C6' : true, - '8179173BEEC9E5175036B790F2CED009213A8FF7D62CDED95DE000BE2B03B068' : true, - '81978F89C67611A83F0BF14A51B0E10B80BE74B659A922AEB49A53E652030AAB' : true, - '820CD9756E7EC92E85459F6F260007CD5EB8CEDCF0A7EDEF61271196CFB946E4' : true, - '82362F61201C87FE00EC65651619A9328FD56E81135F03ACC3D4B366F7F772EB' : true, - '82F25208D7357EE223C6715E802CD0F8D019E3004DEFD76A90BFAB18D2DF07CE' : true, - '83596674713CAB21FE42B21B3B20A84E3B5FF47B8C7A53FA7A83E6A909780003' : true, - '839596D68CDA901FE0D021E3F9AAA8D2163FD2B41F233D90159E656D7C7C534E' : true, - '83FE18CEB7B7F20CF40E6B0CF5752E9C318C59479162649037981222CA9EFC5B' : true, - '8429A60996289DE8FB13E507080F79DDC85415E7BD78B07AB9A20AE8CFEF692A' : true, - '84A093B67AC79FA09CC2E40B54BE4027DE363B86EDF64B623BC346188B877ACF' : true, - '84A8C623C4304D57CE03893ACBF4E51FC9975C58658B89127508E5C33BE992A7' : true, - '8502DA6C4457ACBF635D8B3719166A351ACB8F2EAE0F9756EC1636B90CF6068C' : true, - '852E459CB1D06493912BE1BC7073CC188379CD530C4C5F637029E31C5BF136C4' : true, - '8540F78EF676D50879CFF30B3CAFCDCDB1287CE9472D0E39AD221AC0B049BF5C' : true, - '8565CBCC3E3484929C4C2D7408530788E83FF8CE2B8502125176AA2F89D3C350' : true, - '857EB3AE3D76F7A86260D7DF2583D65053D7DBC30558CF41078A51A841A15408' : true, - '8627217D9525127A4161D0F1809492211C4105596A011CCD2F10968D3C3307CD' : true, - '8632291EE6C74182159207F88A43B60EDD3715D9B23CB51B878C7DFA413AEBAC' : true, - '867622FECA6ADC5366B8B7EB239748F8BD90435258DD86FD700ED1C7D8D5D48B' : true, - '87505A19F4BF8A251C9F7EEC090BB5F91FF1FBF950EFCC6BFB9B513EBB62AEE9' : true, - '87676E5A79E6109B7C7D671E94CD66D181B0D8A1FEFE73FB4485EDBFDA886D26' : true, - '877B00258FBC7D02FB4ACEC3DF73B1F62E6507DEA0C8F12512EB10FAA3FB7F86' : true, - '878F9A1345B5F3F76831E0AA2CEC43E51FD88455FD70FF0C671DDB8D8646BECF' : true, - '8798A29F91634076CE7FFE713E075C4A9E231DB4113DEEFE4FF052C73E900069' : true, - '88309337C547D8D229017278F74A626BAE5E796E3209733D4DB626300C8E7527' : true, - '88E384C8D565A472AC171FE6EF8B5E7CE909CCF207710A6CD96FE4B110EB5267' : true, - '891419933107B0EC0222BF502DB271240F352C825D2E32776842C40D13C2F8C1' : true, - '89EE7B469928739A68120E926B0E08E296C0617FD7226EA8562EABB75C870891' : true, - '8A0BD2A91793B98A002F45011E47B8B81C1F11CF4F10550B39861B709A22A8B0' : true, - '8B1225A29F8C7203B6154A99814B028517B03B3D4B5A3E25239EC91650206C0D' : true, - '8B263AB07FF99A5799F92D421AD4E1194C6137FCD96E6E27EC440EF4D1421788' : true, - '8B41B56DC76B41CBEF93FD4F1F74525CF5B11723140CB81A7DD29AA3D95703BD' : true, - '8B9A4D566E925173442D3DC26FFCE9C4F64EC63A10312AD5EE279BEADFD2538C' : true, - '8BD1BB8CD29EBAEB36A58AFE2BA070CBB92EC003064B71AEC49E812E39C2874E' : true, - '8BD3D0A64D73FCD8450DF0224F56F2B44F88D2B89B94EBBA3B5CB7E905DFCB74' : true, - '8C4AA99089DE2B772FA47DE3D9901FE175AA49A46B9D056BD8211B53848276AF' : true, - '8C742B891F670721F4F8E1D4DADEC74C9E9256E0C7D132578973823FE27C3A33' : true, - '8CB5F19E2297781F0BE655C983127A501F5DF9C2414E34E6534F9109EEFC2110' : true, - '8D0CF6F0B227BE9394DA0DADABAB81A44900D104A915645ABF030220F3AE187C' : true, - '8D1399FC7382FB9F29574FADD5757DD9213F6A13D8A318ED9F60B9936F46C548' : true, - '8DC7006EF66CF140FB5DF85CD6876D305F4CD69E49F42503E283FDFD978866AD' : true, - '8E778C2C00AEB79E3C3BD5B071E2102021DA3E343A2F39E18B0F114682974D9C' : true, - '8E795D5F2117043F8EBC55A114E169A460FBC05FDA6E32CA66684A3F8C9D9BAD' : true, - '8E7B767A2628C52A105B12B793B74B95DD2A1FA5F1F0924675AD9DEBCF77186F' : true, - '9055AB7512901D1134842CD2E96FA6A7ACD149ECB71088495948DB65D70C5377' : true, - '90B043789B50C7E4AF14615A1DFA5F0794C919B38F8924BD109CD3A33FADE0AC' : true, - '90C2F31A64343BA4CBEEAC90A43FCBDB46932CC21CC58095FB6D6CDA7B33F362' : true, - '90C90EFA3BCA09204457ABBDB583EFE2FD5550877B0D61FC3CA6D4176DEC7916' : true, - '90DBCC78B8F09351F0FFA7930D8CD187302A623703E9ED7F5F9DCCCA5644F32D' : true, - '90E64A0F26C4DB9ADC398C779A5E526DC969AAFEDD0E93CC3D8E8409EE0A14E5' : true, - '91045740421F423B4863813FDA01E15F2DBFFF49AD80C9B732B0921980734999' : true, - '9122BF7F13DF3B05605A0F292B4C90830F29A3196A5156D97B76AA8507D3FEB2' : true, - '912C3FC6899CD7AF6EB7639C9522EBF7E41B91DC47C167AAABB3695E61486538' : true, - '91490F346E9CE34F77126105D7CB01AD7C58E0891B398289095613F1D1162F6C' : true, - '9155BD4E0154F175C67770CD7B10B714A7AD41BA78252254DC0AF2DECEAADE32' : true, - '918B02B75417DE289310E10FC77AF7041D1F380F02939D64F063776F121AD61E' : true, - '924BC74FE59554AEA09046C36D47000CC6DF8D06D63D4C21E7A11D7B3FE6DD92' : true, - '926B2CC74A86E6919298CF1B5D43A44E70214CC94C416E9DA227701666BBEE6C' : true, - '9295435D6B38A570B2F537814147422BC442A7E39E1AA307550DDEF0AB93C3DC' : true, - '92BF7C35E4A9C241A5D5C74AB7723187BE0D0AA544447BEC0EC3AC45BAC91A8D' : true, - '92E91A15A0542407788FCD78EF9287724B2B25A27F703C9FBF2F5BEE709A68F3' : true, - '92FC5C28899C60D64BE77DDC8D6F746182A5C5CAED5A3CA093E6A6FC8070B64B' : true, - '9360AA88AB130BC33B6A59487B3C78262E210EE98A69A28758C47B7A9F1FEC10' : true, - '93CF7CB34FFC1835E250AEB5503591EB1BDAA9377A48484F57AFE07006E966B4' : true, - '93EA9238869ECEAB7081D1B925AC899BA4AEAF8C838D08B0583526D924EE5663' : true, - '93FAF638AE932CA9041AD738D265C4A3A5E80ED99C8DCBF40717C0772AFE479A' : true, - '944AFE4D1EF232D595CD97012A5F2B7FC3BB113B29E806516B5C749D947DE751' : true, - '9452917F8C5F6F630305312187EA4858EC07A829CC74DAD74BA24EFE7F4F883D' : true, - '948FEECECF512A9AD8200FB07E9330ACFF0D53D8C67068A9367225131840200B' : true, - '94914F5DC57650D56AA2A25D6BEA5610F1E167C05274CBCC1A235FDF399B1C7E' : true, - '94E94CDC7BF2592B3403AAC8ABDC98EEFE04298078B2FAF8DEC490B30309E542' : true, - '94F858E57AC5AA1A13209E8D6DB28141036EDF3AE160BE93AE79A7CEB0CA33B9' : true, - '95130BCD7669BD1B1F2FF94AF3096312509FE7FDC95A535D73F7883CAFB18DE5' : true, - '95A4DD514D4B5F9B29118B3CE20FD8D4996F40424D7D64BF678A252262608C70' : true, - '95A80082CCA2E52DFF16CA0E49B9FFE32F7ECB93770D20913605BBD47A2C65A6' : true, - '95F4DD2172DA363A17D9A230EA3385F277EFC74D1044C6C6D7F78BCC95987E9B' : true, - '960B5A0740783B428A6F0A86DD6BB5AB90A0FD0A43C237F941E64D8ED8417998' : true, - '96325E2201BF96695DC1378E91147E8AD4ED26C7D65049436FCC365BDF45C75D' : true, - '9663C730BE3E8838AF256662B79C2EEC10D7AB2595D9712EAD7BB4C8F5454837' : true, - '9668363E5A4509F63E66C774CC7374E8D7654D0D63E833131665F65BB0116D90' : true, - '9703B5D60B49A69534FA129729FE3176EA17E03C53BC90BF11280C050F776E73' : true, - '970B1C70C6B3BEF76B0C23BC02D38D50DCC90C1383B4B45525691213F0439310' : true, - '970D20E6919A2FACA4E42CDD5E94B6F26ABB2AC051278F10E746CFD897996249' : true, - '976ECEBA965B747F498F8E4D26E3BABEFC48A6DD2645210168D7D82BB97C15C5' : true, - '9787C483E07B0D1A0251A93D9F86495C6E39D25375C395E9939145D6C1E818D6' : true, - '978A11502BA1AFF09010E88EA0735B0DF403F36294566EE8DB01CCD036525893' : true, - '97B6986F21E5CA4BCB2B337C1B03AE1F2DE4B69D972E06DC882514831472E6B0' : true, - '9874E435B3A12419DA88FE7AE98EEFA9DE47D098DC95AA6204B499202AB1A0CB' : true, - '997FEE57A95C9A7D469F9055CE8547F9585677BBC655D67C05CC30D0AFAB35EF' : true, - '99BD9F4C25AF74058C9E443467C9FBA76EB37661CBEF5A1E1244D8077200A250' : true, - '99CBBF6AFBFF1BD3AC24402B5F4D3CBD7B6984131B6B0A6955AA3295B92891F0' : true, - '99CC71A07B4304B5F9392B1D2AE627E33EC83F527206B3C1D0E6EDB41A93EC07' : true, - '99D555755AF5BD6B75B7151D7B70EF10912AA159589F47DA50C4C3C623044666' : true, - '99DDDA7A8D6D222C3111DDF5E85A45261AE9A7CAE2972567996A7729D0FD6E68' : true, - '99E2609E0CDCFD36015CC659568D5C5B01CE4F7FA0C5671738D525FD8C518B44' : true, - '99F02B4F32B9993CB7656021DA511B31A2944585B6B9C6DD5BC1F4A41681C5DD' : true, - '9A01E5759613554A5FAEB7E8889F18EEE16568073CCEDEFA0485F01969535C43' : true, - '9ADA51307C3FA225DB6F8E1FA3A218E477F775FA3D3DBE839232E3C385310902' : true, - '9B128E182D224AE31F63FA92892A8A322AE42BF2D4723D62F5A6744973C82F6C' : true, - '9B37ABC1012C67357E1B828C3F70EF7584EA128D20968DA23969B0BE939CB83B' : true, - '9B80DD5C98B0F0A7AE343DBB896DBCE45DA52EB4E31BE057287A2A738D9CE3D6' : true, - '9B8B430BCC7FFDD28FA85A1B18690D76DE8F18DE340656F63BD1472816A3C83E' : true, - '9BAE8B30BBFA182D0BC3DCE5BADF78381980EE69F15884A0B93F291EA09A7EB9' : true, - '9BEB9D4CF88A648ACC9CFFA48A687370D76E9F8188AB3BD638D9BFABD2D6AB24' : true, - '9C052D1467B80EC3013D5641910680BFFE3616095B7F3FE61338C31A4E08A6A5' : true, - '9C07BE98C75118CC9B3EAD57210BBADE61461FBE9215CBB340BBC5F04823FCE1' : true, - '9C07E1B1AD0D395C4E1DE4CA35F84D0D09FB5FE48A22221A0CEA433D47C5CE39' : true, - '9CFB4802809B54253FD655390678454D0AFFE4E5B0239AF6E4D5CFD90FEF6931' : true, - '9D00AADBE77F1BB0DE4602AFBDFF9B202A7E4B696836AF7C5186F4A26ADB5157' : true, - '9D10CB4207766E66BF3482393E13D3E3BB23AEC361470B6693597632FDAEB302' : true, - '9D28BF964F6C820DD26D42FFC18689C1D2FD43F4C4DA9B35F11CEB8FA24F2073' : true, - '9D98952A99B9FF1B2B7A86D21F50E311B3147CD9475830A856A4C63798B05630' : true, - '9E1FEA6617DEB24D7E3DCCACDCE1C98337E581262A08D42EB3F912333E977D39' : true, - '9E418F784C18C79930946ED9BC408D8E2F694BE1E3DBAE4BB20917F8E1B277A7' : true, - '9E7B765C4D2E62EB9F8D0CA3126FDBC518E9AD62449A3BD25B849697A6898257' : true, - '9EBA1808D31F89FD26CA580E6FD37B15D0261A807154FBAF11A7DA4B0C9A5E06' : true, - '9EE2376792A6437F098A3DA7A2CA9AB54D9E9138051FB201CF84A91653C9C32B' : true, - '9F1B06851A22B5D02399C278BEC2F6A977B918C4E924497066C8126CB8CEF0AD' : true, - '9F31E8A729CDBA0C25E4D73181264776E6DC12F264ACDE58F047382B0326E463' : true, - '9FB66B76C9B0AB6ED5DA3188A3DC6FCBC369AB273DCA99468C1EE4604A1E9E99' : true, - '9FCBC4D11F68EA0BC0AD58F9E775C871625E869C9C6ED647E538EEB55BC2EDEF' : true, - 'A009E34551A5963FBA989DEC7806F779CFB3BA34C5DD675A331BD55410F8EF33' : true, - 'A024128989862D72CA20143420C8437F2E91D063A2D85E3B44C0E9F125DC7E59' : true, - 'A039ECC540EAB00B2B41960B77171CB8B451230566C595F4631651A389C49A7F' : true, - 'A0516DBC87026108B694F794B6C040585995F9C7BB00D08BF9F817D4F54069B6' : true, - 'A08110BB7D0D5F694D791F82071E44B4C968D4990C73A402B25E0E0ACA5EA6E7' : true, - 'A09F67FB2E70E4BAD3197A8CF7273531D0125CBD5BB05BE09E53CF582CA90E41' : true, - 'A0B9ADCD27CD63E8842BAE80188453C09DEC27270C32748A4EC2508372AD36A5' : true, - 'A10BD98A012649F9DD627093BEC6687C8954955E251534D016E4022BA66040A0' : true, - 'A1359CA553460934748962D75921CFB51E3298EFD3FB1ECF5823BAF599E56136' : true, - 'A13EAF82F0814BE5FA12BFB4D2FFBB75FC6375DF19E16B8490D140CFEB54AEE3' : true, - 'A15BB49CD56693B9881AD43F6366FD2966AF816643BB107E8A249E07227F67EA' : true, - 'A16AFE3B66D38B2B59EB35AE36A050AF2BEADCA90BF1C705B14E1E16A9469543' : true, - 'A16BC03AE3E35E7C39B45D339A22BEB39CEC134D6B9CCA289E873F91A384DCBF' : true, - 'A20571EB3FCEFA102CE99C087F9217BD081AAA8DBB618558D49EC7364AE2CA72' : true, - 'A2178486A6B30A68CF5FE41C0968CB43B78E5E569B163027419B8B6C99AF0053' : true, - 'A2263FF0D63F93183AF81B16964F4C8A3AB8A02E836CDFEE2CBE32C3E09EB486' : true, - 'A277B893194AE7687EBBCFA344178B3578AA6228D2B430BBE2FC8D5EAEE43135' : true, - 'A278FEDD023B6A1BE29917353E38320B8D8EBED9ADB0F88A8D00434D9B1A0851' : true, - 'A2C85895E192F69BFF3BD6CE420B8C84A6FC87B3A999F84701F0230887DD3344' : true, - 'A300C56C8CB909C4F6ABAD6A7FCACC5E621BE17D5209717912B3F3BF2F7D6CAF' : true, - 'A3CDDDCD6C81AEFEC436E5ABF463775F26FB7050A51372C1AD3515626FABF6FF' : true, - 'A3D68A1A93E75E8250BE2851500FADA3A3F3A0FB073197DF59ADCF9569C22B4D' : true, - 'A3F3E71EAE7D9B913059174B39113F3EC7A119F514AF8364983A4A5548298427' : true, - 'A41920689CEE150BF8CDA57D32B36D32985FE08AD4F0E52D150D1CE5C7096810' : true, - 'A50296CC1D9C76EBA1C32829FA4D1674846913D61D2B27F3896CDFF8091D34F5' : true, - 'A503E853F535F69CB099A247D5FA9D2F656CA1992C65C050CC5A36FF11DD47FB' : true, - 'A57EE515604253DDBB4FFB6C1FEF243E6F680910808147AE52318A02699220FB' : true, - 'A5DDC8B597C05D597C4B2FA0C2C4C39C7FD384E039D15BD205023A47FCD78CC0' : true, - 'A5DF74566E059491858A87805B36E5060095F7963D35877692C2951C1D649E22' : true, - 'A66BDA4B1FB0A132F118520414B7C2FE89EB9CAEA7E599743F0DDB2F5DA36294' : true, - 'A686BB3EA8129BEA261D5B99357BDD2BC22DE15F0140AFA2D7CA3ADBCB64DE14' : true, - 'A6BFA26366333691E7F2B419D0FD8536949D5F1A533D69CE8E64F7795CEFF72B' : true, - 'A6CFE13A11E87665A1E66FE984B4F6F723CFBC22311FE89CDBEF719A62C91539' : true, - 'A7BBF060D6455FAC1B40C3C14FDC8DCAB6B032A3C636F78EFF0035E035D2A289' : true, - 'A85EC0692236ED65D5C36943B771F81FA013E93A887264C8870599C858456241' : true, - 'A8FFD3DCAC35478A6187DB3E317D7A9BA8D9823BDDA70440B8FCD5D83F49B836' : true, - 'A905FD2FCB5494E9126BFD0372D166EA641B4FB9E0162E56FC70085392036974' : true, - 'A9913780644EF0A55C80B8BBFFA76A7453DF7F9FC04E9BB09FB9434240D03961' : true, - 'A9C3D776062E86182D7BFAD9005B716E1189EBD051D477078341EBA83F602DC7' : true, - 'A9DC93714FC4909043621557714D90CD0FCEC20AB7B8D4D96C2A5CC357599837' : true, - 'AA33D12B28CCA921C5DAB6E8055B0F162ED6B6B9F92D85F93749619165B1D3A2' : true, - 'AAA0B610FC8267716C7703C164E8E8A47B0DB68F821405F83AFBF5F4D7BB5219' : true, - 'AB21EC1EF6132DBC69161985F4364C39C1F3F4F2F26C920EAF9741C5057CA6C9' : true, - 'ABE32C06C939CB27C5B7744697B92399AB712132074139162FD988DD108C1061' : true, - 'AC1199A88C3BB6564557B6BA422B776E8032D9457EE1099D0BD3E53DC44F73F5' : true, - 'AC3DBED034C44698984D68EA44B0B3D74C0DE3B7615C3240A71C1709958DC3BF' : true, - 'AC523FD08C897CD327DE0751BB2C5DD6AFF7A6948D7561478E300AE758F9BE77' : true, - 'AC72106DE06D4C1A17E641546E6DC5C53A1F48FCED34B9BD09368429F828CD70' : true, - 'ACA129E9ABBBC9473A45F1F0688C8FB4BB9E7B9965D8BA382DB371575A2100FC' : true, - 'ACAB21C4AB1A6C2220A5B2AEA4C51C7F409BD8B48B32158AB4EC7503991FD191' : true, - 'AD38118018119E7607C26A4009331772532E32D5514CB6099FFD0AA2DBC55912' : true, - 'AD56E6AD659C808689220F5959DECE86001E37EEB88F452E2111BBAD634B4AFC' : true, - 'AD678FA6695065389D8B0C4E8995AE0A598A6E6BFA5CE1E016725D396651419B' : true, - 'ADEE2E350B52CF5BF6A5E4670B0F6BDA48C23D331F0E9B18FD3EB4A45E503FC1' : true, - 'AE3359DA4CEE82D978C3C7B4954AD6E0A80E53D1CEDB3A6262996F9CA0B77D83' : true, - 'AE387E179AFCB2F919BA3BD839B2350E9EF48A03A5B5AAC0B87517502456F051' : true, - 'AE7D10798CDAEF50F7599FB03394DE7DED48C3054CE987479DB018E789E3718C' : true, - 'AEA0E3A8AC6F70B681BDEFB28D9F156116F80230149D8E5C9DE76E9062EC015B' : true, - 'AEDE30ABFD76FFEFF77B437F8862FF677913239CB0DE0360FF93EDA6B515F731' : true, - 'AF6F25BC29AA257FB80826165B3AA5BECB2CEF777817998D0619544F02FAF897' : true, - 'AFE6418D301202651844A84CC8B19A56C479D627DE922366E532643D995470A9' : true, - 'B00A011214BDCCCAEED615B5B662C3A704ADF8C619C1538BC7D98BAC4D39E33A' : true, - 'B03FB37D54CC8E27E281D02BF684E553FFA3CECB66583C141A9C99B22E1D2BB7' : true, - 'B05633EABB92254800392A31FA1627F077F2C91B29D82CF1EB1D507EC7D44038' : true, - 'B0A3CC901A3D58371289521F9345843F7ADEA438660729BE9B7B520DDB0BB965' : true, - 'B145A895F26B09540185848A600F7F58C0B03740C17B61A1B43BDC652740B80B' : true, - 'B17B2A39EF0B4A01171DCA730D2AA7214B570F692ED75B439B84B1EFE528F7D8' : true, - 'B19BEC326EB5F611BA8CE10410932955840A0818BFD2C1C690BC1C06C63A686F' : true, - 'B1B0AFC6B60DF8FFA9CC34F7F7A5162E496F4E12FAF6886BD0B20A1DEE246028' : true, - 'B1B58B7EEBC1947CB840FC4C2713D0DDB23DEBC75E58DB15610AB4EA9A1DE1C3' : true, - 'B1D9B3EE2512A48A8E703E2D2263EEB4B0A3D24963F5165DB3719CD4750D2986' : true, - 'B2618AD6AE584F2CDCEC050ECB0FCE8E5BF0E9E978AFE692E4A1BCB8B7D03044' : true, - 'B29A6DB4686379EB52C1D8F249A74FA55A1DD9F2162B0B3E0683912C1E942437' : true, - 'B2AA11D7E16E0A583868904825CE9F856AB1620E0EEE95218985C6817DCAF38B' : true, - 'B2CB5A2A69339A575A4198D5B76822E6A0F90871A45C8348F2A060CEE67EC98D' : true, - 'B31C07387E56AA457F17CA3D3A4C485683253CF387E6DCE37469B6A8E51CBF29' : true, - 'B33419AF991DF06128CC6A1EF6CAD190F68C1903CFB16B5346D0653C9C5139CA' : true, - 'B36285188019C24567BCD0F0FD9C0AFC1EDBC6494F401A6214496118519C8AEE' : true, - 'B38307BF753F924511125E6FE9542C79A8541FCC780FF6905BA237A4C7FCBB13' : true, - 'B394D63292D829C96CB346802B997C42285D8DB94292166AB984F5264BBF8C96' : true, - 'B3B278DD571DDC491FD26D3B0942C78EC4A1AE3D9A5D07C1E317CE901E6B8979' : true, - 'B40348577B02967F8EA86C645C6FFE8746DBE860F8D04B1584E9365F85115FCC' : true, - 'B43A735BA55D1C7D255F8E14DE97ED2FC89DEEF492BF38E871556FE7FF1712E4' : true, - 'B478303C0A26FF8A262C29BA3A9683FFC4CF075735E637F6A958640C5EC33669' : true, - 'B50AADEEA7AEA0CC344AFC4BDC81C75292E1F52374DC4E405CA9376CBA5594BF' : true, - 'B54B1776D34DF92E8E090FBF0C927D9852E6F18F98E6F306AE0369229A4AE2E6' : true, - 'B5826AF547B2C4FBB118246774B8C027E7E18255F864395300F07B03E43571CE' : true, - 'B5F50267B0042B154B8529FCD98F5E01C986F7D23628B49B63011A3C90398CEC' : true, - 'B60986E6211152854AE63CBF6925EEEAB8FE0722F24FF6BDC2960FBB5073CC40' : true, - 'B75601AB7AE44FB2C77FF1E9C6FBC4B4D9ECB548009BF40C46CDDBBA8C0FE493' : true, - 'B76A1B985E6C2B027BBD67B29109789DC4E2EF90CC65315E164B88ECDD64FD7E' : true, - 'B84E356014F669D463F72970212816B4F70CEADA86B8FC08F71EB4B9975404AC' : true, - 'B8560406CEDD4A4721BBEA6B155D62C62BD3CB0B379F6D6420A464DCD5973FEC' : true, - 'B87A6FAC22CF54752FF918799C09D2D582F3621A35F1AA5751AB86E5A56EEBBA' : true, - 'B8D24CA4AD6AB12946ABF8793A7F38565A05866EB8364E746D498F2600782857' : true, - 'B8D51C21B0EC70C695421685C76E543D87A7D1345BA395CB4C5D0E14EDA07A91' : true, - 'B9891F4ABEA7FE5802FA2C07E596905422C39B16E36612B37FFABB81F49A0BCA' : true, - 'B9B8984BD73419077A912955DEF673CCB572907E2C494256D627DCCAF86226A0' : true, - 'B9EC2202B3D25F6C2CFEEC96ECB1967C1171197A121F6278682988D68C9CCB6B' : true, - 'BA4C966939F1680966D9B9BC85E5E7B011F51BCF1F41FB01142D603F9A45EE3D' : true, - 'BA5B818BCA65AC78BB2F0B33879F721058892D0F5260266ABAD93045D4A3E1E8' : true, - 'BA74E086962745CB5EDA606276E3FCE2220C2EDEF5824FC5D67EBFD1A94A0685' : true, - 'BA7828CB29D5F67285C2E1A6F2F5982FDD674E57609970BF9540802335E9D39C' : true, - 'BACEEA64658C6E86E126219A40FCBEE7B3A0C7687503114E59B3EF28E0C06A19' : true, - 'BB6970E212CBF8325822B968387F263BA8D6CC479F448CF712381A36C92965DB' : true, - 'BB998A2EEB4ED3C4251EB69296AE91EAE7360B0CBAF690FD250C38A710ACB38A' : true, - 'BBABDCCD647C247047D39ECC57EECD8174CA5A8CF00349B1DAA1DEE75AEB84E9' : true, - 'BC7FCB90CF245804DAF432637A53FDEF6B5F88BAF87EB23245AF20C668CA74EA' : true, - 'BC86367AF49A238438C89460780C94DE2C1E49021437B3DFC590A63F46332888' : true, - 'BCEAEC2D8B8C18B58BD320D77850EC38285F419ACA8A9E939DAE7DFDF26696D0' : true, - 'BCF2EE107D285BD0BCB864C39BEB0171DD94657D761DB1EED17DA1D5F8E7D576' : true, - 'BD2B6A9DA30AAB3D39906793DB2C9C238C7260EC5B8835CCF8D9C58558B4A945' : true, - 'BD3379DFECF46E7BF128D0C1BA77D7179ADFAEF6BE7259A47E026ADB7C91975E' : true, - 'BE6E70EB169369668EF9523107E95867B1B9C0320C750180303720B35CF09798' : true, - 'BEA63BBA0D4C8E462D0FE2722B9ECC23A8E6E89905E19C15362BC33458D47CFA' : true, - 'BEA7ED0A4C77505CFF6FAEA9F1B399C41324C52804D35EE4D9076F726C8D2C4E' : true, - 'BEEA29655F2F0DE938C7460012B5265BDF623C09F11529CDC33A4B6BEAF96616' : true, - 'BEEB38B82A906102D7CD92E5FD98661DAB5D3C9B7DCA9DE3533565EA9607C5EA' : true, - 'BF46BAD48562C88CA9B110FD99D88DF43EAB728810C78F12A062C292876612B6' : true, - 'C0144D1B67F2AB403DD08B73E5F1772F050E9713D8F2FD98BE999FCEE51D2792' : true, - 'C096DD5D0925878000E9E48DA0C004D04984A98194E4D4E5F12D86D4C1D477D8' : true, - 'C0AB8B4E884A20E51AB9325567115F185D18654803E08E2C2C6A4632D7ACC2D0' : true, - 'C0F030365B0F33FE3624CCAE4EB7A81BC7B9127966953E82DEA179DD1AE66458' : true, - 'C1529D3D2B287392E5CFF924DE47B904B2BE179468929FB61D10D5B8F02FC8CD' : true, - 'C18C15016390F78742A45137409C8BEAC8A0475E39A444448D3ACE0499546462' : true, - 'C1B3EE2242FA7C7A57EE2F60C7AF3A514906864C2785544E30A013212ADA059B' : true, - 'C1E47B7AE65AB520DC18A03F063101FD14AB70E868F16DB2C42ECCBEEEE5A6D9' : true, - 'C1EB50953EE0D16410A5DDFD97F5C05060B39F2902807F139EF6B015D0C66729' : true, - 'C2118D84846AAB7DE521B0379672EC639CFD745D82E3D504EF68CA723725C5F6' : true, - 'C24539CAB91F915751D6D0DC8B96C0EDEC32C8244F388DBBED97C03080227B9D' : true, - 'C2C9A263D5F88D7064870FD13AB8633A10CD97E8281F0ECC49C2C1C3F54327A6' : true, - 'C2EC6DD4A6B571933F5DE0F94508D629FAA849B1A31A8AB979DAAECFED2AD253' : true, - 'C2F50D73D45CFC1B6EED268BF85650F9FC709E3E60900A52F8FFB32B955BF0E8' : true, - 'C3045E5B6AF9BF030A6A7113CD3303D23962DEB88E15EA62BA53D0523362AC26' : true, - 'C3107C690BA5007E11C076B2FEB58BF88E67D1ADA15DF1B8280D226177AB6A13' : true, - 'C33DB47CE54F64CE33394E20A96D122EFB6F8DAB2584CF26120D8A8C5C380245' : true, - 'C33FE55FBE5E1E767E0FA9FE89D0B287AD7B3A41E1117461BCE96A681030C9AE' : true, - 'C34069193CBFC866E03EB745416B50B25BBCAA00B5DE50D1D62D3365749CEDE4' : true, - 'C34CDEA10E72069587970C7033095864B6F069B6637C6263A1E7A7A5187923BB' : true, - 'C35CD8ADD8FF80A9CEFC31D3E0DB613D725FDB0BE52B9ECBB730E970A59E7E98' : true, - 'C3DCE474FB44F22E6497A1FCE2C45DEE167853134C6F1C21C13F1707B0BC7FBC' : true, - 'C3E16A5C58334D5CF450AD26F45BA93651A8FA036170B7D6A76DDFA0EB52EC07' : true, - 'C41706089A520406BBBDFB4ECABC4FAC33920CCEE6731CD703B502612E316E54' : true, - 'C436047329DDEC73634D393BA82EF0DAED888279608EEC33426BC825259BB389' : true, - 'C4C5E3161080AAEAF488DD97BF7C5BD5527EC28370BB83EEE9C979F03638145E' : true, - 'C4D6F5EE0EF714732BA04504333775AA8535825F8BCE4DF3FB6B44C3633B8BF7' : true, - 'C58563CE93B0DF900E0681376244F32977F577D130320226D3BD9CF82863402E' : true, - 'C5C58D7B5A145FD684B3A5A6D12468617BE9DF323D37015420BAEFAFC086EBA1' : true, - 'C5FCA59FE803B0F5B7BDD9387C65A1A5B9CDC8D0C76B79C2954CB769506DD1F7' : true, - 'C62633FCB5854BC091CDEDB3B7B6C6FD8C1403DC0E2ABE789DEB717F724BB8DE' : true, - 'C689F3B9238DB156A7D563E76DF45FCA607B4B5F6CD62BDDC1AD1AC720E67952' : true, - 'C6F63ACDAA452E008A1DCC711CAD36D00AFE55F958F2CC82A139BB53E27D11EB' : true, - 'C6F893D20A417841D7584A029E6E6A2A44B044D858ADFBAD4B11F35B7199309A' : true, - 'C700D31BDB3076006337BC249FF7CDFDFBB8A3677F206CB475E7807FE6FBE286' : true, - 'C7056A5FFEA8A4751271C17CAA9EF3BBDB7142A08ACA673522EDFD9AD18AFE66' : true, - 'C71294A0124420512711C918C36F77192D2B45CDF8C99824B4BC862D0B31C3B0' : true, - 'C7C3A02A4A1C71C54C37BE7889E60467E9C6A48A64FDC85289598188F4D2D839' : true, - 'C80206FCE84D0B5CE5844251C567526E26969DB81D52F15734C69DC4078472DE' : true, - 'C80317E42E46F8B391A27CE8A30DB43B8982BE7350749D6530131711D4CCB28A' : true, - 'C936FEC68191D7AF75334834906C8CFB18F91FD53BDE7C2F0B2ACF8100ED3855' : true, - 'C959CD326D9F3AA21FDEDD42A5AF0B7A2FAA5E9B92907654F29F1ACDC691DBE6' : true, - 'C97F815DB2FE0895632311CBE80C5A8F99A025201CDD3F70939D5C1E1BADC94C' : true, - 'C9A9B118F63E40C8F5F73E89E580626EDEE028DF8ABE5D3374CDA69459207CDB' : true, - 'CA46DA728E76E97AD214DBB6AC9CB1EA2DC87202C88C35E87CE574FC1F2E0438' : true, - 'CA529AC5A7489D57CEC2D6BA5881213C5A163409BD6946558DACFE899A977009' : true, - 'CAAF21212D1AFB10BA4844150A49541967BC1C9879801E43064429A632DFD941' : true, - 'CB133229997821E418467CC3A72F77A7B9E31CC62B41032D6A82577B7AF1C6A2' : true, - 'CC2E477D4A2640BCF70F232C040954DFC4878E536A4B03E788173E673A2D31FD' : true, - 'CC73DEDCFB8EC2BD78A979BAA47FB8D1697C38BD286E0F4A716619939D6F495F' : true, - 'CC9DE9ACA31709D03188E3FE36B902288F56A3AD1510AAEBCE0881A363CB8B66' : true, - 'CCD4C850054C2E89024A8E78E337518B9137528B9190B9417E182E6CFA0180B9' : true, - 'CCDD0AD541F322CED13EB7E00654FD567B39EAC71E146760EBC9D5C736329993' : true, - 'CD2F8D3520116EC6F56491855CA3F0794A0DA8AECFAC5022026E7DD844F35047' : true, - 'CD35C7ABA0839C0D865DEA4C1DB624F709E5EA041A68DB55842E2C189F38BAC1' : true, - 'CD77980905D47EE1EF9C53EE9682FF6AA8ADC7F04CD17CC06F9D7CA2EC8E2175' : true, - 'CDEAE34CDFC82DA38149F11C995A2971D0564D619F13C5867FAD21C749BB4E3A' : true, - 'CE77D1F5ED11C8CA34DA5DBB0E999CAB0469D215552BCAE775B1AE6ED072F01B' : true, - 'CEACC5425237EED1F7736E13A92AE0A70A94F15EB08B564D0CDEA3EB042D1BF2' : true, - 'CEB1ADB71C3CBA6FD012A778BF70CC93BEAB621B4DA4A464934C5440868E58C7' : true, - 'CF16F6A03813485A44746BAC08788ECF1BDDA70E60A03EA6E8598798CD2DB75A' : true, - 'CF19B1004488D5D9C882E2C4D0A47789618E0BCD6475F6D9C6B5591C2BF333C9' : true, - 'CF2A79710CABB0EB440EE621B37934C249C50612DB4FF926EDDE5B8A30686BED' : true, - 'CF41907FD2550A0AAFF0E09AF82423DCFDFE470F225A003D607C19F709A591CC' : true, - 'CFDC25BD3A406CC65DF19685CB300D33E13AB2F2064BE7071ECA3A6F76AA3215' : true, - 'D03547E78303C9FBD70A38BEAFE87AA9F266A92275D818D1A8758DCB9D08DAE0' : true, - 'D103ECB2B7F74BEFD44109C1CA30EA92D9016C0F9347F1DF3E5467C3AC20221B' : true, - 'D182B5FCA42FF996EFC43E57CA3FA6B6723F9BEBBEE8E718BB017C719FA10275' : true, - 'D27084DE959A5900DF81A94F79A92293B11E0CBAC666D43784A28ED4C0D42F00' : true, - 'D3676F00560CED41E28BE263ADFC10B602DEA2026CAD2C7E77E9AA585E085DFA' : true, - 'D368841DDBBC15C7CDA82090EB95511736C97FDE82BA9AF5F95114653EB5234A' : true, - 'D3946220D26CD68E238632CD7AD63FD62669D9F60770C62788747C7552AEFC8B' : true, - 'D39BD0C1656F99A47DA9D2957E2D7A49FC9EDD92CC6BE729C29299ECECFC42E7' : true, - 'D3A74C371854206A5756470274FB16A3D7280E959FF93F265650A3002030B78D' : true, - 'D3ED8391B1F4FB1151D105C9E7EB6D66B0A588D9A8BF7AC93CF38DA44B99979B' : true, - 'D44DF644880E56596405F1364D8C3E5301F05ACBF82FD66B671D895288C75360' : true, - 'D462D57028E10CB7A7C87ADA83EBD7FE9B4DA384D2971BD7A708816C4EA8711F' : true, - 'D46D29E4176A93E3DCD80BA5861A87E84FB7866B784488A977E7E4E4076DD2BD' : true, - 'D4CB5B06AF9ABEBF5639377BF36B289CA95A3205A84537D36B4506DF51430669' : true, - 'D4D6C947FDD2599121B7F10FF6F1892CA98D3E07D6B34D29BB74B24AC34EEB3B' : true, - 'D53A4E1FB44B5C282566F8AC28D68A76E12B76EFEF719AED86F11D15BCE9A0B5' : true, - 'D5B0165C0F4C8F14A2E0C2310AE4A51B6EA08D2FD9790DFD49BCF3FD78AD5198' : true, - 'D5D5E4B278DB8BEE14CB48FEB3172C48DB575E96730449A30A35EE589E252C2E' : true, - 'D652650A3DE79A5C0DFEC1925007DA094925533D13F14094722A80F936FC9A8B' : true, - 'D7198C80471105D95103DB11B6BD2F6CDC8E7A7E67DB8329F1FA75C5F5D5E8CE' : true, - 'D76E8E1051EE6E7F951F42F6E342112B30DB14169B5081E55D280CE44BDF85BF' : true, - 'D844DEE1597B654C0E645C787DB52F6EA5C855C6C35626BD7787E71E873CAF8F' : true, - 'D89779E2C6899073B88547C48EB71C93D56B021E33D3BA390255E6D104B4D349' : true, - 'D8B59B698E3702C610DE464F210086F776442C9F21698AF779BC04BC5F3D09E7' : true, - 'D8B6CC82BEA51A5BDEBA5B3B046B0D1965528CCF70B8F7D27E57A99CDD87D226' : true, - 'D8B8F53177C1E04D93746C8460A7296707654094814772BFAD31F79C03802240' : true, - 'D8EB3A26B3132739539EEF2B7E3EB472578112D5D8AE470B0F2CD4EE99250ADC' : true, - 'D904379306D37F489337D71508E1CA3FE9FDC8188286D24265D3437BC069EA15' : true, - 'D942963C31649F76D7F96313922A7B163B631AF72FF9962767D6E4DB84026B62' : true, - 'D97CF453986570998A9B529709574C7A2EC1E7D43CC42A659A5CD908CA3CED89' : true, - 'D97D72D7A8F796A1A27E0DA0A08C075DE294F373E2480A76EB9D93F89EC58B2D' : true, - 'D9D5FFCAD69421840F7A7159B3F8641F050A53EBF2B91D909C2CD7455FCC5C7D' : true, - 'D9DD6D21944C5623DA765567EF61919B1F6BF2B1E8E79137B5BD48F4AF75C405' : true, - 'DA0D9391992825F7A10312F7E85568086F18DB901838A303E721E58239158EA0' : true, - 'DA5110BB1526CBA9E86FBC66B91A8A2880E85440765C9208A1FF4D3DF2E8AD65' : true, - 'DA675CC41023A78B1E4B2DB4B5E43B0BB6BAD64327E0A1B70C9350FFDEBABB4B' : true, - 'DAA1D178C143A35B8A1F394E17F2551770019947EDDA18E8FAAB45F643C1E443' : true, - 'DAA9CED5BA817CED9942DB9CFAD0210505937A9DB2214298E0BEB831BFC8A31B' : true, - 'DAF6B7470355545FF9FF41E11016056CBD9537558F503D7F9C049C8ACC446112' : true, - 'DBBF2D4498ED91C779C81FED5E96F9B5210CE86EA463712268BCAF098FE2E285' : true, - 'DC04E4E5B03D875F796835B599AE226470B9ACDAF0DC79AB2F766B77AC59F3E5' : true, - 'DC7FCD5741DC383619A2CFFC85E1CB100CA9E20FC499E37FBD8CF954559F1421' : true, - 'DCA17501D12F98C84EE99DF4BC8EFC1FFFA9B65E2BC5A92B20C9296EC61C96CA' : true, - 'DCFF47F0DCA2B78BCEC9D6F35E84BAD6803DEC85A888028C9DBA44A9B69C5BC2' : true, - 'DD55F1E1BEBA4CF9F582CBEEF4A35E1C1DE36750A3403489C1C98955FCE9950E' : true, - 'DD64C7D9E60AE6748B449ACE8CF9C21B5551BC6427EDDCE1D77B7C7720FD21E4' : true, - 'DD69E7139111F9129165D58471784F634EA8C13B76D4AB65D43BF18CD5864004' : true, - 'DD98420C927FBBBB0F2D1FFFFF359416FB7B352770A6550E3D68BA33CC23ED57' : true, - 'DDD0BC82A32A5341EFA53746F39B0D88C668E0483D705BDE607F071FBE937062' : true, - 'DDDEDD50F49CDC46A4F576F1C571CCCF6F32F2DA30CE9BE228DAD3599BBC34DE' : true, - 'DDF758753965C89E747CA6799902A045B22F473F654CEDB51B3C0CA0EA01BB51' : true, - 'DE327172F9BCDA3DBD4E6EEFC759F3EE88FBC635BAD34D76E360541420CDC8BC' : true, - 'DE411E4537133A4D436E0D730AE192277792AA1D0584E60B1CECCDC736F53407' : true, - 'DEA472B5BED8DA9F6F5539F8DC66FB5340010F7316FB28055E14EA76E03BBE41' : true, - 'DEC7DC8AB8ED70C1D2FB2875F0F99FA99FB53E6BED70CD47B244ABA2104DA5AD' : true, - 'DEEB105F77ED36DAECBE1AEC896736B7925F56C86BA06FC1A43AD5F35E9E914E' : true, - 'DEF20D4F0C0D98AE8C9786C364182CCD8990A834C96C1F0989AAE9ECAF33720F' : true, - 'DF03F73A71A568E6A05A7E9FCE240EC0254EE86E24790D6DFCCDC71A5763C27C' : true, - 'DF0525A7807F3709BAD2DEC2ECC569A1D473F97F0C382C932DF726C79926DA0E' : true, - 'DFD291C1074E972A9FE6261BE6FFDDA85472A8AA7F543C867F53B7D8946478DB' : true, - 'DFE3CB9DB34E3CDE7E6B641C90D116F906DB0C916C5B437308CA502C756C6331' : true, - 'E09CD94E0A501BB4D25D5BBB02CCAE95A24D0BAF8CABADEC9D55A74B7D2C5BD8' : true, - 'E0D373C9758BB237C4E5C616A072F192E0D11EC0E48ECE22A326ACE69E3CF771' : true, - 'E0D7FA4702E25E7F51F94DD0D12C39A352DF48DE10A5249AE2687CBC15020CB3' : true, - 'E0E11F4703CA92B8F0837DDE262F347B3EE57238914F7AC07BBF332636B4CCD7' : true, - 'E0E75FCABD59C24DDEF932396FC86801979D2DD3BE05BE7CA211B4661A5897B7' : true, - 'E1595A9AA15B24610100AEB57ED619460CA1D976B769B856398EADA5A01F952B' : true, - 'E1DBBD569E797BC58D21935695EB6EF34DAD0C82FCBB4F4A1C5E644EF161F190' : true, - 'E22F7A2669FF7B9F9C89B3BB1B0A5FA485C26A697CF2418869394A0710AA5EAF' : true, - 'E246BBDD2C2C4AE987C41CE0185AB7669DE3F9C9ACB7453145234A9CD143A1E8' : true, - 'E297439120E6E2701069440EC321BA98A5CFF9EA3F407FF16185671E466B87F0' : true, - 'E2D55EAADCF87AD1BD50E53B7168CCC08561F0172004C1EC4DC13D8166D1A313' : true, - 'E321AD541727DAEC0801A774095546FDD0642CDB597A7AD431C6BFA5C7F447E1' : true, - 'E32ECC9EEA662085C10C003A5C910D77A6DCC1E99BD187576EFDD1BFA84591C4' : true, - 'E335D8CABE2F4940CA80CA10A6BE55A138A163E1C56C281165FBA3FA601C61A9' : true, - 'E37314E72C7304D32336940ABB576DBD7BE3190CD9A5E8F87413CEEB7579D502' : true, - 'E381DF6792973BFE322D23C6CF2A6C24A4ECFC77F43F03D2FC04EE39FAD7C683' : true, - 'E4866B48A6E45C4B11326D3FC5409D4AC595DB81D59075FF1AF4815ADD15B54A' : true, - 'E4C5A51B3B2DCD2472B1FF0693DB5E0FD6FD2F3F3A6CE0164AC1521B9EAF38D4' : true, - 'E549DACF42BED70415999CB677AD037F972087B39E6B2C20BBF2E3473AC8BB49' : true, - 'E586C4E5A9238BD1734FF71658C8054309968EB94188660D70EA0E2511F49D7C' : true, - 'E5F65E0B9FA619FB212BA4DE4AD7166DF37C0690AF8AAF30DD68E2B53802DACB' : true, - 'E5FA7806C1E6122EE6F7B008711DAF068DC6FDE60B2A5877DDEECA8A23F96586' : true, - 'E600D8689E99AEA0C40D363CD164494D463AAF3763797D6F9FD8EB1EFB9DFBA4' : true, - 'E647F0EC7153DFB3D17ED1F82ED36B4D21B5EBA39940BDD88B41AEE7620D90D8' : true, - 'E66C27C6E02A21FB8D6CEF881E5BBDCEBF6CA94DE15E22BA1C80A7F2DDDFCB99' : true, - 'E696A05D698717888181DFB7B903B380E42454076BA429EC8AB0FB58206AB166' : true, - 'E7D6E1EE5088D460A94D5E16D305D1F575BF0895237E4F79A483538CB12903FC' : true, - 'E7EB8B4D5DE598BED2B9C817AB7D42F1EC99F16640B8C673AF2152D42F5344C4' : true, - 'E80145830C085D838E07095A18AC3178396F8D552B3D77A6E15B2E48A6C00717' : true, - 'E853498E9A3091B0AF8641A0B62970AB613371CA3631D1C97D70F79042BB00D0' : true, - 'E855A1B90A017AC7A8C20639AA316048160973669FD0058C9237B5FED85F34B7' : true, - 'E8CEBFAFE4D31D8F110DF0D61793BFC32B10492A2840D7DF99922E78000030BF' : true, - 'E928047ACF80352DE21C59864D3DD5C34E7325E52821D7D30A0F112677EB660F' : true, - 'E98FAFA6B8EE0C53407805C761D80684215776CE5F4085CCAC91B876E92B3307' : true, - 'E9C07A0196B2C73344FAFBE8488F0B4E048FC4112B8EEDDDF74F949340255E44' : true, - 'E9CFA5E0C69E623B15F54AF73644E6FD5B0F86F24826F378F7C903D50A1AAA28' : true, - 'EA028E45F54FEFEE8D14D2E848A20950C7CB1F8532D70D01646A5B93497AC1C5' : true, - 'EA7AD4DE86B47BEC726BFE21172676F92E0C0BB86888417916CB3123086E84A1' : true, - 'EACDBC29504EE8E44559D3FCF154E1CF632CBBB4065734CB5C6C1B16D42352B5' : true, - 'EB479C3872B58B510211798256705A8C59D2602125CF4B53219AA9CCFB175E1F' : true, - 'EB59182D7ACE742ED7D7AEE751763EF9F09EDF68D1DDF765E80BE40A53AD0E10' : true, - 'EB6B1F16F70E3080F38E7ADDC7E3AB69164ECD068F5E8F15931575FDD62B0A64' : true, - 'EB6D34EFBF063DCACDFB823734B9788D9FB5E22A48372B7EA8AAFED8046652E1' : true, - 'EB907252FF62CCF97B16796B9106686C4260E682878EFCA7721D37D6B8C83319' : true, - 'EC521C3B04AF772AF812B63555A7C24BDA282C06EC619E1766CC346780EC6E04' : true, - 'EC9E1FA91BBEA7C9B4EE73E8DD1CDDB8A2038E1CF61CA11A41A9372B634CF37C' : true, - 'ED0908FC61ADB97F583F8CBC9629E4AB369B6141A16B682E8F9076826A373E6D' : true, - 'ED4BB615EA54DAB9EDC94BA434DC0B194FA5EB91BCA7E1B05CA9C21ACE3E4A43' : true, - 'ED4D737C0BBE1DC2CD305D8A912D1C1D923C1C4325401D66349541F754233B53' : true, - 'EE3B7480B691828ABEBECA3DB0EE96619F01E886FC959942F6AB7EB3D263A237' : true, - 'EE49B2B0E38A16743525D6CEE70CB71038D43094BC71BE2EEE861E4602B6D891' : true, - 'EEEAC8F1C70F20FDF05D777140A4A5F72AA9FEABFA9699F9B0F5120147A26486' : true, - 'EF0EE2FBF54D87B6AC02AEB88050155A27E1A60A5A8C4AC46FF24B529D912B04' : true, - 'F094E7890A2B177AB1517C2EAA8D1DF0F69DB94633C4A510BC02CA8D71B36403' : true, - 'F09ECA7EC8BF7B582C42AEB4A0733A0D40FDFD28CEA2C70DA1BBCF1FF85E29FF' : true, - 'F0BF33EE5C1D9A83A7BBDCDE95426DCD201D1C071CF1FB58CA4FE3776996A99F' : true, - 'F0EDB0C989C20672BAFC51FA2710F3841BA5793BE379FC212D7ACC3AD4743455' : true, - 'F1147FBF98A54E12693453EC571CE8B86C05D7FDF3995D775DFF135E10B9C520' : true, - 'F1161FFAB7AD2257CC0ACA0147C47FE17DAA44BA9E998AD59E063871EF95C8C1' : true, - 'F15E12419E936A907F201FD9D6D3DE2E01E5F8465AC4D8EDDCE1E58262183223' : true, - 'F1B73AEECC6698895051EE69179C3897A1DC398C2D72DDD720A29F9C9520457C' : true, - 'F1EC4F6CADD8B97B55AEF8AFDF69AA2261D10B641023C4F8CC895E5F26301D3E' : true, - 'F22F96FB88C9D96104167D95B3AD8B5888C92680B0AD13DC785FD5AD3E19EDB7' : true, - 'F234FBFD807A0302CBF855175C73ABF27C94915B95135E3146C0ED73662DE3F5' : true, - 'F2E97D43FC9356095F97C4B20A626D620D8C55230C07CD7BBF7F99257CD6A5BC' : true, - 'F2F02451FAEE938066E557577740D09ABE2A499CCF08504BF3BB1633EBAAF559' : true, - 'F35B9D7C54418022E6FD4FDFE88C3261FD138329A11C013AD640145D40BE934A' : true, - 'F39D175463288D9639AE5C852B945D89ED858548F8621E5DDC29853E8C84BE36' : true, - 'F3D480D69675A57DC2061544BF7F52B631BB02716680C0E5605413C9B2A6183F' : true, - 'F4F3D03488B8B699725AEBCF9033B73C8997AED2D4504891EE4FFAC3E7CB4272' : true, - 'F513DC8D7F8B425FCF55E74BDCF2675EF2ABF98523E5226CF8A2391B0A36A919' : true, - 'F55617B92584757BB516B19BFCBDA9B4A71237075487651831CD9C5F9C6F5F29' : true, - 'F5ACAF2324A7AF3B1D2AE6C0D1765F5EDA51129FECADFC97878DAF63BA8B75A0' : true, - 'F5D715B6BE56D1A677ECBF7C26B4D79716F5EC2D2E2EC323ABDFE3442F40BD31' : true, - 'F5E43F516D61A0329F78A2560454B8346732A9420C172AC9983C0BEFFD8DEA0A' : true, - 'F5EFB0566F96DBFC58848E1F101457F6F2D05904C1F91A4D22B1192787B0FBD1' : true, - 'F62CA149D43A56F24345F70DD17EAC3E6232068AD7E06251AEB42ACAE23BA120' : true, - 'F6620F848AB3CFC1695D2AF5399FD8FDD8F2FEC43F73F2924DF78C1A26C22653' : true, - 'F6719127E9730A196DF5D961354756211240F34C5279D39351C3DBBBB2896244' : true, - 'F6D424B2B0304F80F9F57E9A501576769B75304FFB569A1118B9B0D5E72561C6' : true, - 'F7835EBD5236BECAB435AE25E9D79BB389DFA8462D552965A2B901ED70B4FF79' : true, - 'F805AE1FEDB2D94096F0D341B703ECD4975D773A179555DDC83D424F85578571' : true, - 'F83CE9030678A0476F8285DC93E59D83E91E8E0DE214E0BF80278EBCF3BFDA43' : true, - 'F894E6B109C27D8C32BFE2A88BACC5DD8BEFEA514661B0509643E02A68A107CD' : true, - 'F9AA3378654B8DAE243713E502260C71E88F8AD2B7021072A02574D09E34D1A0' : true, - 'F9B011926D3405A3B902B76FD7DB90E8A62429A5A34ADAD21B9870446D425130' : true, - 'F9E220AC82D672997DC20E9EE89BF0713BC4153FB5F2EBC8D9AC9EE35A6E494D' : true, - 'FA324620CEE61AFCCA03A0B31508287FB4A78CCE65362F979770B7AF69CA0AC1' : true, - 'FA616BE68A75F14CA6331BD5BFDBE3840CE34CC3C3C98E3C8C3E10F027389F2F' : true, - 'FAD57B1698DDD7EEDC68ACA2B91FFC327696BA682F8B1DC7CC18D058EDB48632' : true, - 'FAEDB6948B44BBBEB18CC3DE18788AD31CE938A2BA36BD84765BF47728C415E9' : true, - 'FB26AD0A3ADB010EB9B8C70998BA5AF151F8CCF1B31312A9AE5CCC3B8E4F709B' : true, - 'FB81BF294DB8EDE0C4DFFB7F5528EB3EB406FE435A6D62E6894482D8B42CCC48' : true, - 'FB8410F5AB21257DC1971CC27F60A1BD1F7DA0962DC5FB97C240135C3BB6DCD8' : true, - 'FC072A7AD4E6E41680493AF4BEB98215D4D2F7CE040C95004BB3A1621A9DD513' : true, - 'FC7B49DBE7843EA61C2BE33A5EED8CB6E7B23605FFB783948AA4B57608A20DDC' : true, - 'FCA9C3A036EA797D58CA26F793C98A9952E59D37C35E352B67A30D4F8F49FC7D' : true, - 'FDF0D11B28F98D542D2D0B2658C0CB0CB46E5E155398B8739AD968944B4C41FB' : true, - 'FE075A2C82D9FA253B59B401A7A31C4AD5D17FD66FE393D8EE5ACD7FA478743D' : true, - 'FE2ACBE26A3ACFBA15C9C3425A9A06EED0006E94A82669BFE3BE705D578021D6' : true, - 'FEB76D3D961661D830CDE04D78FAD83736F60E3D9473688418FB1DE7AE942663' : true, - 'FEC9F5C500456C61F90439F04F3E1B8884AEDF07BD5A35E6DA8A8FC61731F053' : true, - 'FF3E77DFF8C24FE2DC89CE8757B6AE9ACBB838D35AEBDBD9A29D099E211380BB' : true, - 'FF4B63FB97FBFD55B9173F648FA145576AEEB91D0166D79F1A0087A8235538E4' : true, - 'FF8C4E466EBCD5BD1A16F83E6096501479D74D077F84F2EDEA264781DFD82270' : true, - 'FFA2F572D6F89A48043006E117D0B7B7F1D8FC7AC8C264EFD491422A38AEBDE8' : true, - 'FFAE947BA6D3D7E8D31D04F02EEEE60601B0200ACDEBCB12AA5D617F650D5FD0' : true, - 'FFB09E8C7F4CCA88C213AF60CD7047B85A6085DA93C7C3C7D3B73C57FA05702F' : true, - 'FFFB09720CCEF3A610BCB81EEF5FCD614C1602D4968A9DE8400C05256AEDC1ED' : true, -} ; diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/content/code/commonOCSP.json b/data/extensions/https-everywhere-eff@eff.org/chrome/content/code/commonOCSP.json deleted file mode 100644 index 106916d..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/content/code/commonOCSP.json +++ /dev/null @@ -1,289 +0,0 @@ -[ -"https://safebrowsing-cache.google.com/", -"http://ocsp.pca.dfn.de/OCSP-Server/OCSP", -"http://ocsp.digicert.com", -"http://ocsp.verisign.com", -"http://ocsp.comodoca.com", -"http://clients1.google.com/ocsp", -"http://ocsp.usertrust.com", -"http://ocsp.disa.mil", -"http://ocsp.quovadisglobal.com", -"http://ocsp.nsn0.rcvs.nit.disa.mil", -"http://ocsp.camerfirma.com", -"http://ocsp.thawte.com", -"http://ocsp.serverpass.telesec.de/ocspr", -"http://ocsp.certum.pl", -"http://ocsp.certisign.com.br", -"http://ocsp.entrust.net", -"http://telstra-ocsp.pki.telstra.com.au/ocsp", -"http://ocsp.a-trust.at/ocsp", -"http://ocsp.godaddy.com", -"https://ocspaces.trustdst.com", -"http://ocsp.identrust.com", -"http://ocsp.pki.auth.gr", -"http://ocsp2.globalsign.com/gsorganizationvalg2", -"http://ocsp.starfieldtech.com", -"http://ocsp.pki.bayern.de:8080", -"http://ocsp.netsolssl.com", -"http://ocsp.europki.org:8026", -"http://ocsp.starfieldtech.com", -"http://ocsp.treas.gov", -"http://ocsp.trust-provider.com", -"http://ocsp.rcsc.lt/ocspresponder.rcsc", -"http://ocsp.globessl.com", -"http://ocsp1.wosign.com/ca1", -"http://gtssl-ocsp.geotrust.com", -"http://ocsp.turktrust.com.tr", -"http://ocsp.quovadisoffshore.com", -"http://eva.orc.com", -"http://ocsp.incosolutions.com/ocsp", -"http://validator.wellsfargo.com", -"http://jjedsocsp1.jnj.com", -"http://ocsp.cybertrust.ne.jp/OcspServer", -"http://ocsp.digsigtrust.com", -"http://ocsp.trust.teliasonera.com", -"http://ocsp.harica.gr", -"http://ocsp.pki-services.siemens.com", -"http://sd.symcd.com", -"http://ocsp.catcert.cat", -"http://ocsp.certificateservices.eads.com", -"http://dc/ocsp", -"http://ocsp.wosign.com/ca", -"http://ocsp.swissdigicert.ch/rubin", -"http://ocsp.unimelb.edu.au/ocsp", -"http://ocsp.gandi.net", -"http://ca.multistructure.co.id/ocsp", -"http://ocsp.buypass.no/ocsp/BPOcsp", -"http://rapidssl-ocsp.geotrust.com", -"http://ocsp.tcclass3-II.trustcenter.de", -"http://ocsp2.globalsign.com/gsalphasha2g2", -"http://ldap.takata-petri.com:2560", -"http://ocsp.dpwn.net", -"http://ocsp.certyfikatyssl.pl", -"https://ocsp.quovadisoffshore.com", -"http://ocsp.swissdigicert.ch/smaragd", -"http://sureseries-ocsp.cybertrust.ne.jp/OcspServer", -"http://wongtaisin.ms.local/ocsp", -"http://nsc.vrm.lt/OCSP/ocspresponder.nsc", -"http://ocsp.webspace-forum.de", -"http://ocsp.luxtrust.lu", -"https://ca.e-szigno.hu/aocsp", -"http://ocsp.trustsign.com.br", -"http://ocspape.cert.fnmt.es/ocspape/OcspResponder", -"http://telstra-ocsp.pki.telstra.com.au/ocsp", -"http://ocsp.tcclass2.trustcenter.de", -"http://ocsp.inmeta.net/ejbca/publicweb/status/ocsp", -"http://igc.auf.org/ocsp", -"http://ocsp.certification.tn", -"http://ocsp.globaltrust.eu", -"http://ocsp.e-tugra.com/status/ocsp", -"http://ocsp.bezeq.com", -"http://ocsp.nsn0.rcvs.gds.disa.mil", -"http://certinfo-ocsp.ubs.com:53417", -"http://ocsp.tbs-x509.com", -"http://ocsp.ll.mit.edu", -"http://pki.utg.ua/ocsp", -"http://ocsp.accv.es", -"http://crl.itsumo.pl/ocsphttp://corppki/ocsp", -"http://tr-dc-r2.telering.biz/ocsp", -"http://ocsp.eme.lv/responder.eme", -"http://ocsp2.globalsign.com/gsalphag2", -"http://ocsp.ssl.com", -"http://ocsp.certificadodigital.com.br/serasa_cd2006", -"http://la-email.corp.valueclick.com/ocsp", -"http://ocsp.startssl.com/sub/class3/server/ca", -"http://acbridge.ds.commun.test.fc2consortium.org:8080/ejbca/publicweb/status/ocsp", -"http://remote.hirschmann.nl/ocsp", -"http://ocsp1jca.defence.gov.sg", -"http://ocsp02.telesec.de/ocspr", -"http://certs.vonagenetworks.net/ocsp/vonsca", -"http://ca-ocsp.disig.sk", -"http://www.isscorp.com/PKI/ra/ocsp", -"http://ocsp.digi-sign.com", -"http://ocsp.certificadodigital.com.br/serasarfbv1", -"http://certificates.medsigroup.ru/ocsp", -"http://ocsp.bee.vimpelcom.ru/ocsp", -"http://cert1.cert.internal.loc1.gathowin.net/ocsp", -"http://ocsp-ext.pki.wellsfargo.com", -"http://ocsp.innossl.com", -"http://ocsp.pcf.pl/ocsp", -"http://nts15.etoncollege.org.uk/ocsp", -"http://ocsp.dreamhost.com", -"http://ocspISAca.cert.fnmt.es/ocspISAca/OcspResponder", -"http://bt1svl0a.bpa.bouyguestelecom.fr/ocsp", -"http://ocsp.co.vectis.local/ocsp", -"http://localhost:8080/ejbca/publicweb/status/ocsp", -"http://ocsp.siteblindadocerts.com", -"http://corpcert.app.corpintra.net/ocsp", -"http://ocsp.nlss.com", -"http://ocsp.bobo-rousselin.com", -"http://cert.bioscomputers.com/ocsp", -"http://ocsp.lienvietpostbank.com.vn/ocsp", -"http://sslocsp.twca.com.tw", -"http://ocsp.mdais.co.il", -"http://pki.sana-bb.de/ocsp", -"http://ocsp.wisekey.com", -"https://ocsp.rcsc.lt/ocspresponder.rcsc", -"http://ocsp.startssl.com/sub/class2/server/ca", -"http://ocsp-cpki.telekom.de/ocsp", -"http://ocsp2.ssc.lt:2560", -"http://ocsp.it.point/RMGRCA/http://ocsp.extranet.royalmail.com/RMGRCA", -"http://eca.ocspts.identrust.com", -"http://ocsp.vkb-bank.com/ocsp", -"http://pki.automobiletechnologies.com/ocsp", -"http://ocsp.g4s.no/ocsp", -"http://vpn.ozero.com/ocsp", -"http://ocsp.village-roadshow.com/ocsp", -"http://ocsp.groupensia.com/ocsp", -"http://pki.rosautoprom.ru/ocsp", -"http://ogbl-ocsp2.ogbl.lan/ocsp", -"http://ocsp.southernco.com/ocsp", -"http://ocsp.swiss.signdemo.com", -"http://ocsp.itexcellence.rs/ocsp", -"http://www.cepsa.com/pki/ocsp", -"https://ocspaces.identrust.com", -"http://ocsp.dtica.eu", -"http://www.tys.org/aia", -"http://ocsp2.globalsign.com/gsextendvalg2", -"http://caors.wiltshire.ac.uk/ocsp", -"http://ocsp1.ssp-strong-id.net/SSP-CA-A1", -"http://cert.econgas.com/ocsp", -"http://ocsp.wienerberger.net/ocsp", -"http://ocsp.pki.wayport.net:2560", -"http://pkib.mallesons.com/ocsp", -"http://ocsp.ovh.com", -"http://ocsp.certificadodigital.com.br/serasacdv1", -"http://pkiva.indra.es", -"http://itcert.stanford.edu/ocsp", -"http://certenroll.bogdanov-associates.com/ocsp", -"http://srv-pki/ocsp", -"http://ocsp.godaddy.com", -"http://ocsp.pki.slb.com/ocsp", -"http://ocsp.swisssign.net", -"http://cert.naftogaz.com/ocsp", -"http://ocsp.uk.deloitte.com", -"http://ocsp.comodoca3.com", -"http://ocsp.exzumin.de/ocsp", -"http://ocsp.msocsp.com", -"http://cdp2.nis.rs/ocsp", -"http://corptestcert.app.corpintra.net/ocsp", -"http://ocsp.comodoca2.com", -"http://ocsp.ersca.com", -"http://ocsp.xth.cc", -"http://ocsp1.ssp-strong-id.net/VA-SSP-CA-B2", -"http://ocsp.vnpt-ca.vn/responder", -"http://ocspts.identrust.com", -"http://ocsp2.globalsign.com/gsdomainvalg2", -"http://pkiva.bde.es", -"http://certs.mapservices.fr/ocsp", -"http://ino.inosoft.de/ocsp", -"http://rootca.poclabs.net/ocsp", -"http://pki.rtc-leasing.ru/ocsp", -"http://ocsp.startssl.com/ca", -"http://ocsp.ca.vodafone.com/ocsp", -"http://ocsp.cs.auscert.org.au", -"http://ocsp.tcclass2-II.trustcenter.de", -"http://www.er76.ru/ocsp", -"http://ocsp.walgreens.com/ocsp", -"http://www.pki.nosc.us/ocsp", -"http://test_pki1/ocsp", -"http://ocsp.mytrc.net/ocsp", -"http://certs.ankalagon.ru/ocsp", -"http://www.ocsp.gpo.gov", -"http://ocsp.bayanca.ir", -"http://va.pfizer.com:1025", -"http://certificates.dnv.com/ocsp", -"http://ocsp.orapharma.com/ocsp", -"http://ocsp.seattlecca.org/ocsp", -"http://backbone.cnsd.interno.it/ocsp", -"http://nyppki02/ocsp", -"http://ocsp2.globalsign.com/gsorganizationvalsha2g2", -"http://gtssl2-ocsp.geotrust.com", -"http://ocsp.tcuniversal-I.trustcenter.de", -"http://ocsp.register.com", -"http://ocsp.ncdc.gov.sa", -"http://pki.life.com.by/ocsp", -"http://ocsp.sgssl.net", -"http://pki.gmprint.local/ocsp", -"http://pki.solitdev.com/ocsp", -"http://ocsp.dics.ua/ocsp", -"http://ocsp.pre.swissdigicert.ch/rubin", -"http://ocsp.affirmtrust.com/commev", -"http://aia.gdir.vt.ru/ocsp", -"http://ocsp.averius.nl/ocsp", -"http://ocsp.bechtel.com/ocsp", -"http://ac.ds.commun.test.fc2consortium.org:8080/ejbca/publicweb/status/ocsp", -"http://cert-services.e-control.at/OCSP?ca=EControl_IntermediateCA", -"http://nfiocsp.managed.entrust.com", -"http://cert.bernards.com/ocsp", -"http://bhca2.baker-hostetler.com/ocsp", -"http://pki.suva.ch/ocsp", -"http://EVSecure-ocsp.verisign.com", -"http://ocsp.go", -"http://pki.wabag.com/ocsp", -"http://ocsp.startssl.com/sub/class4/server/ca", -"http://nfi2.eva.orc.com", -"http://onsite-ocsp.verisign.com", -"http://ocspsslv3.kamusm.gov.tr", -"http://ocsp.pki.belgium.be", -"https://www.isscorp.com/PKI/ra/ocsp", -"http://ocsp.statoil.com:3502", -"http://pki-ocsp.allscriptscloud.com/ocsp", -"http://swoop-pki.swoopin.com/ocsp", -"http://kzatpki0002.okioc.com/ocsp", -"http://ocsp.policia.es", -"http://ocsp.startssl.com/sub/class1/client/ca", -"http://dc01/ocsp", -"http://ocsp2.pki.wayfair.com/ocsp", -"http://10.1.101.2/publicweb/status/ocsp", -"http://ocsp.bt.com/ocsp", -"http://ocsp.sanofi-aventis.com/ocsp", -"http://dc-01.raise.group", -"http://ocsp.spar-ics.eu/ocsp", -"http://ocsp.vodokanal.spb.ru/ocsp", -"http://socsp.turktrust.com.tr", -"http://ocsp.thermocolor.com/ocsp", -"http://ocsp.lisec-sw.com", -"http://ocsp.csctrustedsecure.com", -"http://houpki2.nov.com/ocsp", -"http://ocsp.bwinservices.com/ocsp", -"http://ocsp2.globalsign.com/gsextendvalsha2g2", -"http://ocsp.tcclass3.trustcenter.de", -"http://ocsp-b.pki.wayport.net:2560", -"http://devdc01.dev.gatesfoundation.org/ocsp", -"http://certsrv1.dc1.thomson-webcast.net/ocsp", -"http://relay.systemshouse.ru/ocsp", -"http://gold-root-g2.ocsp.swisssign.net", -"http://pecs1.unisys.com/ocsp", -"http://ocsp.europeanssl.eu", -"http://gw.idsaas.de/ocsp", -"http://ocsp.tcs.terena.org", -"http://ocsp.trendmicro.com/tmca", -"http://ocsp-ent.pki.wellsfargo.com", -"http://www.meridian-capital.kz/ocsp", -"http://ca.x-any.com/ocsp", -"http://crl.inditex.com/ocsp", -"http://ocsp.firmaprofesional.com", -"http://ocsp2.globalsign.com/gsdomainvalsha2g2", -"http://exchange.cdl.cz/ocsp", -"http://pkicvs.cisco.com/pki/ocsp", -"http://ocsp.affirmtrust.com/premev", -"http://ocsp.icewarp.com", -"http://ocsp.ferbritas.pt/ocsp", -"http://cert.energokaskad.com/ocsp", -"http://ocsp.utn.com.ua:2560", -"http://ocsp.affirmtrust.com/ntwkev", -"http://ocsp.omniroot.com/baltimoreroot", -"http://ocsp.shamusclan.com", -"http://ocsp.wurthnet.com/ocsp", -"http://ocsp.pkic.es/ocsp", -"http://ocsp.strixchomutov.cz", -"http://sha2ocsp.dnsalias.com/responder", -"http://ocsp-test.ncdc.gov.sa", -"http://ocsp.sysadmins.lv", -"http://cert.incoma.ru/ocsp", -"http://ocsp.north-winds.org", -"http://iis1.eeza.csic.es/ocsp", -"http://pki.winextreme.org/ocsp", -"http://ocsp.startssl.com/sub/class1/server/ca", -"http://pki.eduuni.local/ocsp"] diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/content/code/sha256.js b/data/extensions/https-everywhere-eff@eff.org/chrome/content/code/sha256.js deleted file mode 100644 index 7e15f1a..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/content/code/sha256.js +++ /dev/null @@ -1,249 +0,0 @@ -/* - * A JavaScript implementation of the SHA256 hash function. - * - * FILE:sha256.js - * VERSION:0.8 - * AUTHOR:Christoph Bichlmeier <informatik@zombiearena.de> - * - * NOTE: This version is not tested thoroughly! - * - * Copyright (c) 2003, Christoph Bichlmeier - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of the copyright holder nor the names of contributors - * may be used to endorse or promote products derived from this software - * without specific prior written permission. - * - * ====================================================================== - * - * THIS SOFTWARE IS PROVIDED BY THE AUTHORS ''AS IS'' AND ANY EXPRESS - * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR - * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, - * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE - * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, - * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -/* SHA256 logical functions */ -function rotateRight(n,x) { - return ((x >>> n) | (x << (32 - n))); -} -function choice(x,y,z) { - return ((x & y) ^ (~x & z)); -} -function majority(x,y,z) { - return ((x & y) ^ (x & z) ^ (y & z)); -} -function sha256_Sigma0(x) { - return (rotateRight(2, x) ^ rotateRight(13, x) ^ rotateRight(22, x)); -} -function sha256_Sigma1(x) { - return (rotateRight(6, x) ^ rotateRight(11, x) ^ rotateRight(25, x)); -} -function sha256_sigma0(x) { - return (rotateRight(7, x) ^ rotateRight(18, x) ^ (x >>> 3)); -} -function sha256_sigma1(x) { - return (rotateRight(17, x) ^ rotateRight(19, x) ^ (x >>> 10)); -} -function sha256_expand(W, j) { - return (W[j&0x0f] += sha256_sigma1(W[(j+14)&0x0f]) + W[(j+9)&0x0f] + - sha256_sigma0(W[(j+1)&0x0f])); -} - -/* Hash constant words K: */ -var K256 = new Array( - 0x428a2f98, 0x71374491, 0xb5c0fbcf, 0xe9b5dba5, - 0x3956c25b, 0x59f111f1, 0x923f82a4, 0xab1c5ed5, - 0xd807aa98, 0x12835b01, 0x243185be, 0x550c7dc3, - 0x72be5d74, 0x80deb1fe, 0x9bdc06a7, 0xc19bf174, - 0xe49b69c1, 0xefbe4786, 0x0fc19dc6, 0x240ca1cc, - 0x2de92c6f, 0x4a7484aa, 0x5cb0a9dc, 0x76f988da, - 0x983e5152, 0xa831c66d, 0xb00327c8, 0xbf597fc7, - 0xc6e00bf3, 0xd5a79147, 0x06ca6351, 0x14292967, - 0x27b70a85, 0x2e1b2138, 0x4d2c6dfc, 0x53380d13, - 0x650a7354, 0x766a0abb, 0x81c2c92e, 0x92722c85, - 0xa2bfe8a1, 0xa81a664b, 0xc24b8b70, 0xc76c51a3, - 0xd192e819, 0xd6990624, 0xf40e3585, 0x106aa070, - 0x19a4c116, 0x1e376c08, 0x2748774c, 0x34b0bcb5, - 0x391c0cb3, 0x4ed8aa4a, 0x5b9cca4f, 0x682e6ff3, - 0x748f82ee, 0x78a5636f, 0x84c87814, 0x8cc70208, - 0x90befffa, 0xa4506ceb, 0xbef9a3f7, 0xc67178f2 - ); - -/* global arrays */ -var ihash, count, buffer; -var sha256_hex_digits = "0123456789abcdef"; - -/* Add 32-bit integers with 16-bit operations (bug in some JS-interpreters: - overflow) */ -function safe_add(x, y) -{ - var lsw = (x & 0xffff) + (y & 0xffff); - var msw = (x >> 16) + (y >> 16) + (lsw >> 16); - return (msw << 16) | (lsw & 0xffff); -} - -/* Initialise the SHA256 computation */ -function sha256_init() { - ihash = new Array(8); - count = new Array(2); - buffer = new Array(64); - count[0] = count[1] = 0; - ihash[0] = 0x6a09e667; - ihash[1] = 0xbb67ae85; - ihash[2] = 0x3c6ef372; - ihash[3] = 0xa54ff53a; - ihash[4] = 0x510e527f; - ihash[5] = 0x9b05688c; - ihash[6] = 0x1f83d9ab; - ihash[7] = 0x5be0cd19; -} - -/* Transform a 512-bit message block */ -function sha256_transform() { - var a, b, c, d, e, f, g, h, T1, T2; - var W = new Array(16); - - /* Initialize registers with the previous intermediate value */ - a = ihash[0]; - b = ihash[1]; - c = ihash[2]; - d = ihash[3]; - e = ihash[4]; - f = ihash[5]; - g = ihash[6]; - h = ihash[7]; - - /* make 32-bit words */ - for(var i=0; i<16; i++) - W[i] = ((buffer[(i<<2)+3]) | (buffer[(i<<2)+2] << 8) | (buffer[(i<<2)+1] - << 16) | (buffer[i<<2] << 24)); - - for(var j=0; j<64; j++) { - T1 = h + sha256_Sigma1(e) + choice(e, f, g) + K256[j]; - if(j < 16) T1 += W[j]; - else T1 += sha256_expand(W, j); - T2 = sha256_Sigma0(a) + majority(a, b, c); - h = g; - g = f; - f = e; - e = safe_add(d, T1); - d = c; - c = b; - b = a; - a = safe_add(T1, T2); - } - - /* Compute the current intermediate hash value */ - ihash[0] += a; - ihash[1] += b; - ihash[2] += c; - ihash[3] += d; - ihash[4] += e; - ihash[5] += f; - ihash[6] += g; - ihash[7] += h; -} - -/* Read the next chunk of data and update the SHA256 computation */ -function sha256_update(data, inputLen) { - var i, index, curpos = 0; - /* Compute number of bytes mod 64 */ - index = ((count[0] >> 3) & 0x3f); - var remainder = (inputLen & 0x3f); - - /* Update number of bits */ - if ((count[0] += (inputLen << 3)) < (inputLen << 3)) count[1]++; - count[1] += (inputLen >> 29); - - /* Transform as many times as possible */ - for(i=0; i+63<inputLen; i+=64) { - for(var j=index; j<64; j++) - buffer[j] = data.charCodeAt(curpos++); - sha256_transform(); - index = 0; - } - - /* Buffer remaining input */ - for(var j=0; j<remainder; j++) - buffer[j] = data.charCodeAt(curpos++); -} - -/* Finish the computation by operations such as padding */ -function sha256_final() { - var index = ((count[0] >> 3) & 0x3f); - buffer[index++] = 0x80; - if(index <= 56) { - for(var i=index; i<56; i++) - buffer[i] = 0; - } else { - for(var i=index; i<64; i++) - buffer[i] = 0; - sha256_transform(); - for(var i=0; i<56; i++) - buffer[i] = 0; - } - buffer[56] = (count[1] >>> 24) & 0xff; - buffer[57] = (count[1] >>> 16) & 0xff; - buffer[58] = (count[1] >>> 8) & 0xff; - buffer[59] = count[1] & 0xff; - buffer[60] = (count[0] >>> 24) & 0xff; - buffer[61] = (count[0] >>> 16) & 0xff; - buffer[62] = (count[0] >>> 8) & 0xff; - buffer[63] = count[0] & 0xff; - sha256_transform(); -} - -/* Split the internal hash values into an array of bytes */ -function sha256_encode_bytes() { - var j=0; - var output = new Array(32); - for(var i=0; i<8; i++) { - output[j++] = ((ihash[i] >>> 24) & 0xff); - output[j++] = ((ihash[i] >>> 16) & 0xff); - output[j++] = ((ihash[i] >>> 8) & 0xff); - output[j++] = (ihash[i] & 0xff); - } - return output; -} - -/* Get the internal hash as a hex string */ -function sha256_encode_hex() { - var output = new String(); - for(var i=0; i<8; i++) { - for(var j=28; j>=0; j-=4) - output += sha256_hex_digits.charAt((ihash[i] >>> j) & 0x0f); - } - return output; -} - -/* Main function: returns a hex string representing the SHA256 value of the - given data */ -function sha256_digest(data) { - sha256_init(); - sha256_update(data, data.length); - sha256_final(); - return sha256_encode_hex(); -} - -/* test if the JS-interpreter is working properly */ -function sha256_self_test() -{ - return sha256_digest("message digest") == - "f7846f55cf23e14eebeab5b4e1550cad5b509e3348fbc4efa3a1413d393cb650"; -} - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/content/meta-preferences.xul b/data/extensions/https-everywhere-eff@eff.org/chrome/content/meta-preferences.xul deleted file mode 100644 index 3e48010..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/content/meta-preferences.xul +++ /dev/null @@ -1,30 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<?xml-stylesheet href="chrome://global/skin/" type="text/css"?> -<?xml-stylesheet href="chrome://https-everywhere/content/preferences.css" type="text/css"?> - -<!DOCTYPE overlay SYSTEM "chrome://https-everywhere/locale/https-everywhere.dtd"> - -<window id="https-everywhere-meta-prefs" - xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" - xmlns:html="http://www.w3.org/1999/xhtml" - title="&https-everywhere.prefs.title;" - persist="screenX screenY width height" - width="600" - height="600"> - <separator class="thin" /> - <tabbox flex="1"> - <tabs> - <tab label="HTTPS Everywhere" /> - <tab label="SSL Observatory" /> - </tabs> - <tabpanels flex="1"> - <tabpanel flex="1" orient="vertical"> - <browser src="chrome://https-everywhere/content/preferences.xul" flex="1"/> - </tabpanel> - <tabpanel flex="1" orient="vertical"> - <browser src="chrome://https-everywhere/content/observatory-preferences.xul" flex="1"/> - </tabpanel> - </tabpanels> - </tabbox> - -</window> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/content/observatory-popup.xul b/data/extensions/https-everywhere-eff@eff.org/chrome/content/observatory-popup.xul deleted file mode 100644 index 2b02e53..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/content/observatory-popup.xul +++ /dev/null @@ -1,61 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<?xml-stylesheet href="chrome://global/skin/" type="text/css"?> -<!DOCTYPE window SYSTEM "chrome://https-everywhere/locale/ssl-observatory.dtd"> -<window id="ssl-observatory-dialog" - xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" - xmlns:html="http://www.w3.org/1999/xhtml" - title="&ssl-observatory.popup.title;" - width="600" - height="520" - align="center" - onload="document.getElementById('ask-me-later').focus()" - > - <script type="application/x-javascript" src="observatory-xul.js" /> - <image src="chrome://https-everywhere/skin/https-everywhere-banner.png" /> - <label style="padding:25px;">&ssl-observatory.popup.text;</label> - - <commandgroup> - <command id="enable" oncommand="enable_observatory() ; popup_done()" /> - <command id="nope" oncommand="disable_observatory() ; popup_done()" /> - <command id="later" oncommand="window.close()" /> - <command id="more-info" - oncommand='popup_done() ; - window.open("chrome://https-everywhere/content/observatory-preferences.xul","obsprefs", - "chrome, centerscreen")'/> - </commandgroup> - - <vbox flex="1"> - <spacer flex="5" /> - <separator class="thin"/> - <hbox> - <spacer flex="2" /> - <button label="&ssl-observatory.popup.yes;" tabindex="2" accesskey="y" - command='enable'/> - <spacer flex="1" /> - <button label="&ssl-observatory.popup.no;" tabindex="3" accesskey="n" - command='nope'/> - <spacer flex="2" /> - </hbox> - <separator class="thin"/> - <spacer flex="10" /> - <hbox> - <spacer flex="2" /> - <button label="&ssl-observatory.popup.details;" tabindex="4" accesskey="D" - command='more-info'/> - <spacer flex="1" /> - <button id="ask-me-later" label="&ssl-observatory.popup.later;" - tabindex="1" accesskey="A" command='later'/> - <spacer flex="2" /> - </hbox> - <separator class="thin"/> - <spacer flex="1" /> - </vbox> - - <!-- - <hbox style="padding-top:10px;"> - <label class="text-link" href="https://www.eff.org/" tabindex="3" value="&ssl-observatory.popup.details;" /> - <spacer flex="1" /> - <button label="&ssl-observatory.popup.later;" id="ask-me-later" tabindex="0" style="font-size:0.8em;" accesskey="l" - oncommand="doCancel()"/>- - </hbox>--> -</window> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/content/observatory-preferences.xul b/data/extensions/https-everywhere-eff@eff.org/chrome/content/observatory-preferences.xul deleted file mode 100644 index 0a149bb..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/content/observatory-preferences.xul +++ /dev/null @@ -1,115 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<?xml-stylesheet href="chrome://global/skin/" type="text/css"?> - -<!DOCTYPE overlay SYSTEM "chrome://https-everywhere/locale/ssl-observatory.dtd"> - -<dialog id="https-everywhere-prefs" - xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" - xmlns:html="http://www.w3.org/1999/xhtml" - buttons="accept" - buttonlabelaccept="&ssl-observatory.prefs.done;" - title="&ssl-observatory.prefs.title;" - width="800" - height="768" - persist="screenX screenY width height" - onload="observatory_prefs_init(document)" - ondialogaccept="observatory_prefs_accept()"> - <script type="application/x-javascript" src="observatory-xul.js" /> - <vbox flex="1" style="overflow:auto"> - <spacer flex="1" /> - <hbox flex="1"> - <spacer flex="1" /> - <image id="obs-title-logo" - src="chrome://https-everywhere/skin/https-everywhere-banner.png" /> - <spacer flex="1" /> - </hbox> - <spacer flex="2" /> - <label>&ssl-observatory.prefs.explanation;</label> - <separator class="thin" /> - <label>&ssl-observatory.prefs.explanation2;</label> - <separator class="thin" /> - <commandset> - <command id="toggle-enabled" oncommand="toggle_enabled()" /> - <command id="use-obs-anon" oncommand="set_obs_anon(true)" /> - <command id="use-obs-nonanon" oncommand="set_obs_anon(false)" /> - <command id="toggle-alt-roots" oncommand="toggle_alt_roots()" /> - <command id="toggle-send-asn" oncommand="toggle_send_asn()" /> - <command id="toggle-show-cert-warning" oncommand="toggle_show_cert_warning()" /> - <command id="toggle-priv-dns" oncommand="toggle_priv_dns()" /> - <command id="toggle-self-signed" oncommand="toggle_self_signed()" /> - </commandset> - <checkbox label="&ssl-observatory.prefs.use;" id="use-observatory" - command="toggle-enabled" style="font-size:1.5em;"/> - <separator class="thin"/> - <radiogroup style="margin-left:3em;" id="ssl-obs-how"> - <radio label="&ssl-observatory.prefs.anonymous;" - default_label="&ssl-observatory.prefs.anonymous;" - tooltiptext="&ssl-observatory.prefs.anonymous_tooltip;" - alt_label="&ssl-observatory.prefs.anonymous_unavailable;" - command="use-obs-anon" - class="ssl-obs-conf" id="ssl-obs-anon"/> - <radio label="&ssl-observatory.prefs.nonanon;" - tooltiptext="&ssl-observatory.prefs.nonanon_tooltip;" - command="use-obs-nonanon" - class="ssl-obs-conf" id="ssl-obs-nonanon"/> - </radiogroup> - <separator class="thin"/> - <tooltip id="asn-tip" noautohide="true"> - <label>&ssl-observatory.prefs.asn_tooltip;</label> - </tooltip> - <checkbox label="&ssl-observatory.prefs.asn;" id="send-asn" - tooltip="asn-tip" class="ssl-obs-conf" - command="toggle-send-asn"/> - <separator class="thin"/> - <tooltip id="cert-warning-tip" noautohide="true"> - <label>&ssl-observatory.prefs.show_cert_warning_tooltip;</label> - </tooltip> - <checkbox label="&ssl-observatory.prefs.show_cert_warning;" id="show-cert-warning" - tooltip="cert-warning-tip" class="ssl-obs-conf" - command="toggle-show-cert-warning"/> - <spacer flex="2" /> - <hbox> - <spacer flex="1" /> - <button label="&ssl-observatory.prefs.show;" onclick="show_advanced()" - id="show-advanced-button" class="ssl-obs-conf"/> - <button label="&ssl-observatory.prefs.hide;" onclick="hide_advanced()" - id="hide-advanced-button" hidden="true" /> - <spacer flex="1" /> - </hbox> - <spacer flex="1" /> - <vbox flex="2"> - <tooltip id="alt-roots-tip" noautohide="true"> - <label>&ssl-observatory.prefs.alt_roots_tooltip;</label> - </tooltip> - <tooltip id="priv-dns-tip" noautohide="true"> - <label>&ssl-observatory.prefs.priv_dns_tooltip;</label> - </tooltip> - <tooltip id="self-signed-tip" noautohide="true"> - <label>&ssl-observatory.prefs.self_signed_tooltip;</label> - </tooltip> - <vbox id="observatory-advanced-opts" hidden="true"> - - <groupbox hidden="true" tooltip="self-signed-tip"> - <checkbox label="&ssl-observatory.prefs.self_signed;" - class="ssl-obs-conf" id="self-signed" - command="toggle-self-signed"/> - </groupbox> - - <groupbox hidden="true" tooltip="alt-roots-tip" > - <caption hidden="true" label="&ssl-observatory.prefs.adv_priv_opts1;"/> - <checkbox label="&ssl-observatory.prefs.alt_roots;" - command="toggle-alt-roots" class="ssl-obs-conf" - id="alt-roots" /> - </groupbox> - <groupbox hidden="true" tooltip="priv-dns-tip"> - <caption hidden="true" label="&ssl-observatory.prefs.adv_priv_opts2;"/> - <checkbox label="&ssl-observatory.prefs.priv_dns;" - class="ssl-obs-conf" id="priv-dns" - command="toggle-priv-dns"/> - </groupbox> - </vbox> - </vbox> - <spacer flex="5" /> - </vbox> -</dialog> - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/content/observatory-warning.xul b/data/extensions/https-everywhere-eff@eff.org/chrome/content/observatory-warning.xul deleted file mode 100644 index 5237de4..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/content/observatory-warning.xul +++ /dev/null @@ -1,49 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<?xml-stylesheet href="chrome://global/skin/" type="text/css"?> -<!DOCTYPE window SYSTEM "chrome://https-everywhere/locale/ssl-observatory.dtd"> -<window id="ssl-observatory-dialog" - xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" - xmlns:html="http://www.w3.org/1999/xhtml" - title="&ssl-observatory.warning.title;" - width="600" - height="500" - align="center" - onload="warning_populate(window.arguments[0])" - > - <script type="application/x-javascript" src="observatory-xul.js" /> - <image src="chrome://https-everywhere/skin/https-everywhere-banner.png" /> - <vbox flex="1"> - <vbox id="warning-container" flex="1"> - <label style="padding:25px 25px 10px;">&ssl-observatory.warning.text;</label> - <spacer flex="1" /> - </vbox> - - <commandgroup> - <command id="showcert" oncommand="show_certs()" /> - <command id="okay" oncommand='window.close()' - /> - </commandgroup> - - <spacer flex="1" /> - <label style="padding:5px 25px 0px;">&ssl-observatory.warning.defense;</label> - <separator class="thin"/> - <hbox> - <spacer flex="2" /> - <button label="&ssl-observatory.warning.showcert;" accesskey="S" - id="show-certificate" command='showcert'/> - <spacer flex="1" /> - <button label="&ssl-observatory.warning.okay;" accesskey="I" - command='okay'/> - <spacer flex="2" /> - </hbox> - <separator class="thin" /> - </vbox> - - <!-- - <hbox style="padding-top:10px;"> - <label class="text-link" href="https://www.eff.org/" tabindex="3" value="&ssl-observatory.popup.details;" /> - <spacer flex="1" /> - <button label="&ssl-observatory.popup.later;" id="ask-me-later" tabindex="0" style="font-size:0.8em;" accesskey="l" - oncommand="doCancel()"/>- - </hbox>--> -</window> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/content/observatory-xul.js b/data/extensions/https-everywhere-eff@eff.org/chrome/content/observatory-xul.js deleted file mode 100644 index b2290f7..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/content/observatory-xul.js +++ /dev/null @@ -1,208 +0,0 @@ -const CC = Components.classes; -const CI = Components.interfaces; -VERB=1; -DBUG=2; -INFO=3; -NOTE=4; -WARN=5; - -var ssl_observatory = CC["@eff.org/ssl-observatory;1"] - .getService(Components.interfaces.nsISupports) - .wrappedJSObject; -var obsprefs = ssl_observatory.prefs; - -const pref_prefix = "extensions.ssl_observatory."; - -function observatory_prefs_init(doc) { - // Is the Observatory on? - var enabled = obsprefs.getBoolPref("extensions.https_everywhere._observatory.enabled"); - document.getElementById("use-observatory").checked = enabled; - set_observatory_configurability(enabled); - // Other settings - document.getElementById("alt-roots").checked = - obsprefs.getBoolPref("extensions.https_everywhere._observatory.alt_roots"); - document.getElementById("priv-dns").checked = - obsprefs.getBoolPref("extensions.https_everywhere._observatory.priv_dns"); - document.getElementById("self-signed").checked = - obsprefs.getBoolPref("extensions.https_everywhere._observatory.self_signed"); - document.getElementById("send-asn").checked = - obsprefs.getBoolPref("extensions.https_everywhere._observatory.send_asn"); - document.getElementById("show-cert-warning").checked = - obsprefs.getBoolPref("extensions.https_everywhere._observatory.show_cert_warning"); - - // More complicated: is it anonymised by Tor? - var obs_how = doc.getElementById("ssl-obs-how"); - var anon_radio = document.getElementById("ssl-obs-anon"); - var nonanon_radio = document.getElementById("ssl-obs-nonanon"); - var anon = !obsprefs.getBoolPref( - "extensions.https_everywhere._observatory.use_custom_proxy"); - - // first set the radios to match the current settings variables - obs_how.selectedItem = (anon) ? anon_radio : nonanon_radio; - - // But if the user hasn't turned the observatory on, - // the default should be the maximally sensible one - var torbutton_avail = ssl_observatory.proxy_test_successful; - if (!enabled) { - set_obs_anon(torbutton_avail); - obs_how.selectedItem = (torbutton_avail) ? anon_radio : nonanon_radio; - } - //scale_title_logo(); -} - -// The user has responded to the popup in a final way; don't show it to them -// again -function popup_done() { - obsprefs.setBoolPref("extensions.https_everywhere._observatory.popup_shown", true); - obsprefs.setBoolPref("extensions.https_everywhere._observatory.clean_config", true); - window.close(); -} - - -function scale_title_logo() { - // The image is naturally 500x207, but if it's shrunk we don't want it - // distorted - var img = document.getElementById("obs-title-logo"); - alert("ch is " + img.height); - if (img.height != "207") - img.width = (500.0/207.0) * img.height; -} - -// grey/ungrey UI elements that control observatory operation -function set_observatory_configurability(enabled) { - // the relevant widgets are tagged with class="ssl-obs-conf" - var ui_elements = document.querySelectorAll(".ssl-obs-conf"); - for (var i =0; i < ui_elements.length; i++) - ui_elements[i].disabled = !enabled; - // the "use tor" option can't be ungreyed unless tor is available - if (enabled) { - ssl_observatory.testProxySettings(function(proxy_test_successful){ - var tor_opt = document.getElementById("ssl-obs-anon") - if (proxy_test_successful == false) { - tor_opt.disabled = true; - tor_opt.label = tor_opt.getAttribute("alt_label"); - } else { - tor_opt.disabled = false; - tor_opt.label = tor_opt.getAttribute("default_label"); - } - }); - } else { - hide_advanced(); - } -} - -// show/hide advanced options in the preferences dialog -function show_advanced() { - var enabled = obsprefs.getBoolPref("extensions.https_everywhere._observatory.enabled"); - if (enabled) { - var adv_opts_box = document.getElementById("observatory-advanced-opts"); - recursive_set(adv_opts_box, "hidden", "false"); - document.getElementById("show-advanced-button").hidden = true; - document.getElementById("hide-advanced-button").hidden = false; - } - //scale_title_logo(); -} -function hide_advanced() { - var adv_opts_box = document.getElementById("observatory-advanced-opts"); - recursive_set(adv_opts_box, "hidden", "true"); - document.getElementById("show-advanced-button").hidden = false; - document.getElementById("hide-advanced-button").hidden = true; -} - -function recursive_set(node, attrib, value) { - node.setAttribute(attrib, value); - for (var i=0; i < node.childNodes.length; i++) - recursive_set(node.childNodes[i], attrib, value) -} - - -function set_obs_anon(val) { - obsprefs.setBoolPref( "extensions.https_everywhere._observatory.use_custom_proxy", !val); -} - -// called from the popup only -function enable_observatory() { - obsprefs.setBoolPref("extensions.https_everywhere._observatory.enabled", true); - var torbutton_avail = ssl_observatory.proxy_test_successful; - set_obs_anon(torbutton_avail); -} - -function disable_observatory() { - // default but be sure... - obsprefs.setBoolPref("extensions.https_everywhere._observatory.enabled", false); -} - -// called from within the prefs window, we have more work to do: -function toggle_enabled() { - var use_obs = document.getElementById("use-observatory").checked; - obsprefs.setBoolPref("extensions.https_everywhere._observatory.enabled", use_obs); - set_observatory_configurability(use_obs); -} - -function toggle_send_asn() { - var send_asn = document.getElementById("send-asn").checked; - obsprefs.setBoolPref("extensions.https_everywhere._observatory.send_asn", send_asn); - if (send_asn) ssl_observatory.setupASNWatcher() - else ssl_observatory.stopASNWatcher(); -} - -function toggle_show_cert_warning() { - var show_cert_warning = document.getElementById("show-cert-warning").checked; - obsprefs.setBoolPref("extensions.https_everywhere._observatory.show_cert_warning", show_cert_warning); -} - -function toggle_alt_roots() { - var alt_roots = document.getElementById("alt-roots").checked; - obsprefs.setBoolPref("extensions.https_everywhere._observatory.alt_roots", alt_roots); -} - -function toggle_priv_dns() { - var priv_dns = document.getElementById("priv-dns").checked; - obsprefs.setBoolPref("extensions.https_everywhere._observatory.priv_dns", priv_dns); -} - -function toggle_self_signed() { - var self_signed = document.getElementById("self-signed").checked; - obsprefs.setBoolPref("extensions.https_everywhere._observatory.self_signed", self_signed); -} - -function observatory_prefs_accept() { - // This is *horrid*, but - // https://developer.mozilla.org/en/working_with_windows_in_chrome_code#Accessing_the_elements_of_the_top-level_document_from_a_child_window - var outer = window.QueryInterface(Components.interfaces.nsIInterfaceRequestor) - .getInterface(Components.interfaces.nsIWebNavigation) - .QueryInterface(Components.interfaces.nsIDocShellTreeItem) - .rootTreeItem - .QueryInterface(Components.interfaces.nsIInterfaceRequestor) - .getInterface(Components.interfaces.nsIDOMWindow); - - if (outer) outer.close() - else alert("no outer space"); - - return true; // https://developer.mozilla.org/en/XUL/dialog#a-ondialogaccept - // also close things if there is no out meta prefs window -} - -function warning_populate(warningObj) { - // Fill in the SSL Observatory Warning labels... - var container = document.getElementById("warning-container"); - for (var hash in warningObj) { - var label=document.createElement("label"); - label.setAttribute("style","padding:5px 25px 5px;"); - label.textContent = warningObj[hash].long_desc; - container.appendChild(label); - //var spacer=document.createElement("spacer"); - //separator.setAttribute("flex","1"); - //container.appendChild(spacer); - } -} - -function show_certs() { - var parent_win = window.arguments[1]; - var cert = window.arguments[2]; - if (!parent_win) - alert("no parent window trying to show certs"); - CC["@mozilla.org/nsCertificateDialogs;1"] - .getService(CI.nsICertificateDialogs) - .viewCert(parent_win, cert); -} diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/content/rulesets.json b/data/extensions/https-everywhere-eff@eff.org/chrome/content/rulesets.json deleted file mode 100644 index d16c775..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/content/rulesets.json +++ /dev/null @@ -1 +0,0 @@ -{"rulesetStrings": ["<ruleset name=\"00f.net\" f=\"00f.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"01.org\" f=\"01.org.xml\"><rule from=\"^http://mx\\.01\\.org/\" to=\"https://lists.01.org/mailman/listinfo\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"0bin.net\" f=\"0bin.net.xml\"><securecookie host=\"^0bin\\.net\" name=\".+\"/><rule from=\"^http://www\\.0bin\\.net/\" to=\"https://0bin.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"0nl1ne.at (partial)\" default_off=\"mismatched\" f=\"0nl1ne.at.xml\"><rule from=\"^http://(?:(mb\\.|tools\\.)|www\\.)?0nl1ne\\.at/\" to=\"https://$10nl1ne.at/\"/></ruleset>", "<ruleset name=\"0p.no\" default_off=\"failed ruleset test\" f=\"0p.no.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"0x.co\" f=\"0x.co.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"0x41.no\" f=\"0x41.no.xml\"><securecookie host=\"^www\\.0x41\\.no$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"0x539 dev group (partial)\" f=\"0x539-dev-group.xml\"><securecookie host=\"^\\w+\\.0x539\\.de$\" name=\".+\"/><rule from=\"^http://gobby\\.0x539\\.de/.*\" to=\"https://gobby.github.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"0x539.se\" f=\"0x539.se.xml\"><rule from=\"^http://www\\.0x539\\.se/\" to=\"https://0x539.se/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"0xbadc0de.be\" f=\"0xbadc0de.be.xml\"><rule from=\"^http://(www\\.)?0xbadc0de\\.be/\" to=\"https://blog.0xbadc0de.be/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"0xdb.org\" f=\"0xdb.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"100-gute-gruende.de\" f=\"100-Gute-Gruende.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"100R.org\" default_off=\"failed ruleset test\" f=\"100R.org.xml\"><securecookie host=\"^(?:www\\.)?100r\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"100 Fans.de\" f=\"100_Fans.org.de.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"101domain.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"101domain.com-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"101domain.com (partial)\" default_off=\"failed ruleset test\" f=\"101domain.com.xml\"><exclusion pattern=\"^http://(?:portuguese|spanish)\\.101domain\\.com/+(?!css/|favicon\\.ico|images/)\"/><rule from=\"^http://russian\\.101domain\\.com/[^?]*\" to=\"https://www.101domain.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"101domain.ru\" f=\"101domain.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"101weiqi.com\" f=\"101weiqi.xml\"><rule from=\"^http://7j1yxi\\.com1\\.z0\\.glb\\.clouddn\\.com/\" to=\"https://www.101weiqi.com/\"/><exclusion pattern=\"^http://(www\\.)?101weiqi\\.com/login\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"104.com.tw\" f=\"104.com.tw.xml\"><rule from=\"^http://(www\\.)?104\\.com\\.tw/\" to=\"https://www.104.com.tw/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"10 Minute Mail.com\" f=\"10_Minute_Mail.com.xml\"><securecookie host=\"^\\.?10minutemail\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"10antz.co.jp\" f=\"10antz.co.jp.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"10 Dollar.ca\" f=\"10dollar.ca.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"10gen.com\" f=\"10gen.xml\"><rule from=\"^http://blog\\.10gen\\.com/+(?:$|\\?.*)\" to=\"https://www.mongodb.com/blog/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"1105 Media.com\" f=\"1105_Media.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"1105 pubs.com\" f=\"1105_pubs.com.xml\"><securecookie host=\"^newsletters\\.1105pubs\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"112-akersloot.nl\" f=\"112-akersloot.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"112-uitgeest.nl\" f=\"112-uitgeest.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"112 Cafe.com\" default_off=\"mismatched, self-signed\" f=\"112_Cafe.com.xml\"><rule from=\"^http://(?:www\\.)?112cafe\\.com/\" to=\"https://112cafe.com/\"/></ruleset>", "<ruleset name=\"115.com (partial)\" f=\"115.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"1177.se\" f=\"1177.se.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"118 Information (partial)\" default_off=\"mismatched\" f=\"118-Information.xml\"><securecookie host=\"^118information\\.co\\.uk$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?118information\\.co\\.uk/\" to=\"https://118information.co.uk/\"/></ruleset>", "<ruleset name=\"11 Main.com\" f=\"11_Main.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"11footballclub\" default_off=\"failed ruleset test\" f=\"11footballclub.xml\"><securecookie host=\"^\\.11footballclub\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"123-reg\" f=\"123-reg.xml\"><securecookie host=\"^.*\\.123-reg\\.co\\.uk$\" name=\".*\"/><rule from=\"^http://inside\\.123-reg\\.co\\.uk/\" to=\"https://www.123-reg.co.uk/blog/\"/><rule from=\"^http://(\\w+\\.)?123-reg\\.co\\.uk/\" to=\"https://$1123-reg.co.uk/\"/><rule from=\"^http://ssllin1\\.123-secure\\.com/\" to=\"https://ssllin1.123-secure.com/\"/></ruleset>", "<ruleset name=\"123ContactForm.com\" f=\"123ContactForm.com.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"123Count.com\" f=\"123Count.com.xml\"><securecookie host=\"^\\.123count\\.com$\" name=\".+\"/><rule from=\"^http://123count\\.com/\" to=\"https://www.123count.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"123RF.com\" f=\"123RF.xml\"><securecookie host=\".*\\.123rf\\.com$\" name=\".+\"/><rule from=\"^http://static\\.123rf\\.com/\" to=\"https://d3klshmqqidl5x.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"123eHost.com (partial)\" f=\"123eHost.com.xml\"><exclusion pattern=\"^http://www\\.123ehost\\.com/+(?!(?:business-hosting-signup|support-ticket|website-design-quote)(?:$|[?/])|cpanel-webmailLogin\\.html|favicon\\.ico|passwordrecovery\\.htm|wp-content/|wp-includes/)\"/><rule from=\"^http://123ehost\\.com/\" to=\"https://www.123ehost.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"123systems.net (partial)\" f=\"123systems.xml\"><exclusion pattern=\"^http://(?:www\\.)?123systems\\.net/+(?!billing(?:$|[?/]))\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"126.com\" f=\"126.com.xml\"><exclusion pattern=\"^http://mail\\.126\\.com/(?!favicon\\.ico)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"126.net\" f=\"126.net.xml\"><exclusion pattern=\"^http://file\\.ws\\.stu\\.126\\.net/$\"/><rule from=\"^http://img(lf(0|1|2|3))?\\.ph\\.126\\.net/\" to=\"https://lofter.ph.126.net/\"/><exclusion pattern=\"^http://music\\.ph\\.126\\.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"127.net\" f=\"127.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"131002.net\" f=\"131002.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"1337x.org\" default_off=\"failed ruleset test\" f=\"1337x.org.xml\"><securecookie host=\"^\\.1337x\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"1337x.to\" f=\"1337x.to.xml\"><securecookie host=\"^\\.1337x\\.to$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"1431am.org\" default_off=\"failed ruleset test\" f=\"1431am.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"148apps\" platform=\"mixedcontent\" f=\"148apps.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"15Mpedia\" f=\"15Mpedia.xml\"><securecookie host=\"^(www\\.)?15mpedia\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"16163.com\" f=\"16163.com.xml\"><rule from=\"^http://16163\\.com/\" to=\"https://www.16163.com/\"/><rule from=\"^http://(www|app|bbs|m)\\.16163\\.com/\" to=\"https://$1.16163.com/\"/><exclusion pattern=\"^http://cc\\.16163\\.com/forum\\.php$\"/><rule from=\"^http://(\\w+)\\.16163\\.com/(\\S+)\" to=\"https://$1.16163.com/$2\"/></ruleset>", "<ruleset name=\"163.com-problematic\" f=\"163.com-problematic.xml\"><exclusion pattern=\"^http://mail\\.163\\.com/$\"/><rule from=\"^http://mail\\.163\\.com/favicon\\.ico\" to=\"https://mail.163.com/favicon.ico\"/><exclusion pattern=\"^http://i\\.money\\.163\\.com/$\"/><rule from=\"^http://i\\.money\\.163\\.com/(\\S+)\\.json\" to=\"https://i.money.163.com/$1.json\"/><exclusion pattern=\"^http://piao\\.163\\.com/$\"/><rule from=\"^http://piao\\.163\\.com/favicon\\.ico/\" to=\"https://piao.163.com/favicon.ico/\"/><rule from=\"^http://piao\\.163\\.com/movie/get_phone\\.html\" to=\"https://piao.163.com/movie/get_phone.html\"/><exclusion pattern=\"^http://study\\.163\\.com/$\"/><rule from=\"^http://study\\.163\\.com/crossdomain\\.xml/\" to=\"https://study.163.com/crossdomain.xml/\"/><rule from=\"^http://study\\.163\\.com/cdn/getCdnPoint\\.htm\" to=\"https://study.163.com/cdn/getCdnPoint.htm\"/><rule from=\"^http://study\\.163\\.com/course/anchorList\\.htm\\?lessonId\" to=\"https://study.163.com/course/anchorList.htm?lessonId\"/><rule from=\"^http://study\\.163\\.com/res/images/(\\S+)\\.png\" to=\"https://study.163.com/res/images/$1.png\"/><exclusion pattern=\"^http://chat\\.study\\.163\\.com/$\"/><rule from=\"^http://chat\\.study\\.163\\.com/\" to=\"https://chat.study.163.com/\"/></ruleset>", "<ruleset name=\"163.com\" f=\"163.com.xml\"><exclusion pattern=\"http://reg\\.163\\.com/(Main\\.do|Main\\.jsp|update\\.html)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"1688.com (partial)\" f=\"1688.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"168qiquan.com (partial)\" f=\"168qiquan.com.xml\"><rule from=\"^http://hk\\.168qiquan\\.com/(?=bridge/|css/|favicon\\.ico|images/|javax\\.faces\\.resource/|jsp?/|thickbox/|undefined/)\" to=\"https://hk.168qiquan.com/\"/></ruleset>", "<ruleset name=\"16chan.nl\" default_off=\"failed ruleset test\" f=\"16chan.nl.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.16chan\\.nl/\" to=\"https://16chan.nl/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"16personalities.com\" f=\"16personalities.com.xml\"><rule from=\"^http://16personalities\\.com/\" to=\"https://www.16personalities.com/\"/><rule from=\"^http://([^/:@]+)\\.16personalities\\.com/\" to=\"https://$1.16personalities.com/\"/></ruleset>", "<ruleset name=\"17track.net\" platform=\"mixedcontent\" f=\"17track.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"1823.gov.hk\" f=\"1823.gov.hk.xml\"><rule from=\"^http://1823\\.gov\\.hk/\" to=\"https://www.1823.gov.hk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"1984.is\" default_off=\"failed ruleset test\" f=\"1984.is.xml\"><securecookie host=\"^(?:\\.|www\\.)?1984\\.is$\" name=\".*\"/><rule from=\"^http://((?:kb|owa|www)\\.)?1984\\.is/\" to=\"https://$11984.is/\"/></ruleset>", "<ruleset name=\"1984.live\" f=\"1984.live.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"1984 Hosting.com\" f=\"1984_Hosting.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?1984hosting\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"1BTCXE.com\" f=\"1BTCXE.com.xml\"><securecookie host=\"^\\.1btcxe\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"1Cart\" f=\"1Cart.xml\"><securecookie host=\"^(www\\.)?1cart\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?1cart\\.co\\.nz/\" to=\"https://1cart.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"1LotSTP.com\" default_off=\"failed ruleset test\" f=\"1LotSTP.com.xml\"><securecookie host=\"^\\.1lotstp\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"1PipFix\" default_off=\"failed ruleset test\" f=\"1PipFix.xml\"><securecookie host=\"^(?:w*\\.)?1pipfix\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"1ShoppingCart.com (partial)\" default_off=\"failed ruleset test\" f=\"1ShoppingCart.com.xml\"><exclusion pattern=\"^http://www\\.1shoppingcart\\.com/+(?!app/adtrack\\.asp|SecureCart/SecureCart\\.aspx)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"1TW.org\" f=\"1TW.org.xml\"><rule from=\"^http://c\\.1tw\\.org/\" to=\"https://d2bj0t3lpy2azd.cloudfront.net/\"/></ruleset>", "<ruleset name=\"1WT.eu (partial)\" default_off=\"expired\" f=\"1WT.eu.xml\"><rule from=\"^http://(?:static|www)\\.1wt\\.eu/\" to=\"https://1wt.eu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"1X.com\" default_off=\"failed ruleset test\" f=\"1X.xml\"><securecookie host=\"^\\.1x\\.com$\" name=\".+\"/><rule from=\"^http://mail\\.1x\\.com/.*\" to=\"https://mail.google.com/a/1x.com\"/><rule from=\"^http://www\\.1x\\.com/\" to=\"https://1x.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"1 Deg.org\" default_off=\"failed ruleset test\" f=\"1_Deg.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"1and1.com\" default_off=\"failed ruleset test\" f=\"1and1-Internet.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://faq\\.1and1\\.com/\" to=\"https://help.1and1.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"1and1.ca (partial)\" default_off=\"failed ruleset test\" f=\"1and1.ca.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://1and1\\.ca/\" to=\"https://www.1and1.ca/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"1and1.co.uk (partial)\" f=\"1and1.co.uk.xml\"><securecookie host=\"^\\.\" name=\"^chocolateChip$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://community\\.1and1\\.co\\.uk/.*\" to=\"https://community.1and1.com/11-community/?pk_campaign=1and1UK&pk_kwd=redirect\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"1and1.es\" f=\"1and1.es.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"1anh.com\" default_off=\"failed ruleset test\" f=\"1anh.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"1c-bitrix.ru (partial)\" f=\"1c-bitrix.ru.xml\"><securecookie host=\"^\\.1c-bitrix\\.ru$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?1c-bitrix\\.ru/\" to=\"https://www.1c-bitrix.ru/\"/><rule from=\"^http://(1c|academy|dev|idea|marketplace|partners|promo)\\.1c-bitrix\\.ru/\" to=\"https://$1.1c-bitrix.ru/\"/></ruleset>", "<ruleset name=\"1d4.us\" default_off=\"failed ruleset test\" f=\"1d4.us.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"1dedic.ru\" f=\"1dedic.ru.xml\"><rule from=\"^http://www\\.1dedic\\.ru/\" to=\"https://1dedic.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"1dmp.io\" f=\"1dmp.io.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"1f0.de\" f=\"1f0.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"1fichier\" default_off=\"failed ruleset test\" f=\"1fichier.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"1nsk.ru (problematic)\" default_off=\"expired, self-signed\" f=\"1nsk.ru-problematic.xml\"><securecookie host=\"^b?\\.1nsk\\.ru$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?1nsk\\.ru/\" to=\"https://www.1nsk.ru/\"/><rule from=\"^http://b\\.1nsk\\.ru/\" to=\"https://b.1nsk.ru/\"/></ruleset>", "<ruleset name=\"1nsk.ru (partial)\" default_off=\"failed ruleset test\" f=\"1nsk.ru.xml\"><securecookie host=\"^live\\.1nsk\\.ru$\" name=\".+\"/><rule from=\"^http://live\\.1nsk\\.ru/\" to=\"https://live.1nsk.ru/\"/></ruleset>", "<ruleset name=\"1phads.com\" f=\"1phads.com.xml\"><securecookie host=\"^1phads\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?1phads\\.com/\" to=\"https://1phads.com/\"/></ruleset>", "<ruleset name=\"1prime.ru\" f=\"1prime.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"1s and 0s.nl\" default_off=\"failed ruleset test\" f=\"1s_and_0s.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"1stWarning.com\" f=\"1stWarning.com.xml\"><securecookie host=\"^(?:.*\\.)?1stwarning\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"1time.aero\" default_off=\"ssl-error\" f=\"1time.aero.xml\"><rule from=\"^http://(?:www\\.)?1time\\.aero/\" to=\"https://www.1time.aero/\"/></ruleset>", "<ruleset name=\"1tulatv.ru\" platform=\"mixedcontent\" f=\"1tulatv.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"1tv.ru (partial)\" f=\"1tv.ru.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://1tv\\.ru/\" to=\"https://www.1tv.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"1ty.me\" f=\"1ty.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"1u1s.de (partial)\" f=\"1u1s.de.xml\"><exclusion pattern=\"^http://(?:www\\.)?1u1s\\.de/+(?!$|\\?)\"/><rule from=\"^http://(?:www\\.)?1u1s\\.de/.*\" to=\"https://www.1und1.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"1und1.de (partial)\" default_off=\"failed ruleset test\" f=\"1und1.de.xml\"><securecookie host=\".*\\.1und1\\.de$\" name=\".+\"/><rule from=\"^http://1und1\\.de/\" to=\"https://www.1und1.de/\"/><rule from=\"^http://erfolgscenter\\.1und1\\.de/\" to=\"https://blog.1und1.de/\"/><rule from=\"^http://service-center\\.1und1\\.de/[^?]*\" to=\"https://hilfe-center.1und1.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"1xbet.com\" f=\"1xbet.com.xml\"><securecookie host=\"^(?:w*\\.)?1xbet\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"2020mobile\" default_off=\"failed ruleset test\" f=\"2020mobile.es.xml\"><rule from=\"^http://(?:www\\.)?2020mobile\\.es/\" to=\"https://www.2020mobile.es/\"/></ruleset>", "<ruleset name=\"20minutes.fr\" platform=\"mixedcontent\" f=\"20minutes.fr.xml\"><rule from=\"^http://20minutes\\.fr/\" to=\"https://www.20minutes.fr/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"21.co\" default_off=\"failed ruleset test\" f=\"21.co.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"220Volt.hu\" f=\"220volt.hu.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"2345.cn\" f=\"2345.cn.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"2345.com\" f=\"2345.com.xml\"><exclusion pattern=\"^http://jifen\\.2345\\.com/(?!api/|images/|jifenimg/|upload/)\"/><exclusion pattern=\"^http://shouji\\.2345\\.com/(?!api/|images/|shoujiimg/|upload/)\"/><exclusion pattern=\"^http://m\\.2345\\.com/$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"23Systems\" f=\"23Systems.xml\"><securecookie host=\"^(?:w*\\.)?23systems\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"23andMe.com\" f=\"23andMe.com.xml\"><securecookie host=\"^\\.23andme\\.com$\" name=\"^__cfduid$\"/><securecookie host=\"^(?:www\\.)?23andme\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"24/7 Media clients\" f=\"24-7-Media-clients.xml\"><rule from=\"^http://oascentral\\.bostonherald\\.com/\" to=\"https://oasc08.247realmedia.com/\"/><rule from=\"^http://oascentral\\.aviationweek\\.com/\" to=\"https://oasc10.247realmedia.com/\"/><rule from=\"^http://oascentral\\.globalpost\\.com/\" to=\"https://oasc11.247realmedia.com/\"/></ruleset>", "<ruleset name=\"24/7 Media (partial)\" f=\"24-7-Media.xml\"><securecookie host=\"^.*\\.(?:247)?realmedia\\.com$\" name=\".+\"/><securecookie host=\"^network\\.realmedia\\.com$\" name=\".+\"/><rule from=\"^http://imagec14\\.247realmedia\\.com/\" to=\"https://oasc14.247realmedia.com/\"/><rule from=\"^http://imageceu1\\.247realmedia\\.com/\" to=\"https://oasc-eu1.247realmedia.com/\"/><rule from=\"^http://o(asc[01]\\d|asc-eu1|penadstream(?:1\\d|-eu1))\\.247realmedia\\.com/\" to=\"https://o$1.247realmedia.com/\"/><rule from=\"^http://oasc([01]\\d)(?:a|\\d{1,3})\\.247realmedia\\.com/\" to=\"https://oasc$1.247realmedia.com/\"/><rule from=\"^http://network\\.realmedia\\.com/\" to=\"https://network.realmedia.com/\"/><rule from=\"^http://oas-central\\.realmedia\\.com/\" to=\"https://oasc10.247realmedia.com/\"/></ruleset>", "<ruleset name=\"24/7 Customer (partial)\" f=\"24-7_Customer.xml\"><rule from=\"^http://(cdn|psp)\\.247ilabs\\.com/\" to=\"https://$1.247ilabs.com/\"/></ruleset>", "<ruleset name=\"24 ways\" f=\"24-ways.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"247exchange.com\" default_off=\"failed ruleset test\" f=\"247exchange.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"247filmz\" default_off=\"failed ruleset test\" f=\"247filmz.xml\"><securecookie host=\"^(?:www\\.)?247filmz\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"24img.com\" default_off=\"failed ruleset test\" f=\"24img.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"24pay.me\" f=\"24pay.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"24paybank.com\" default_off=\"failed ruleset test\" f=\"24paybank.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"254a.com\" f=\"254a.com.xml\"><securecookie host=\"^d\\.254a\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"2600.com\" f=\"2600.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://2600\\.com/\" to=\"https://www.2600.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"2Checkout.com (mismatches)\" default_off=\"mismatched\" f=\"2Checkout-mismatches.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"2Checkout.com (partial)\" f=\"2Checkout.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"2Dialog.com (partial)\" default_off=\"failed ruleset test\" f=\"2Dialog.com.xml\"><rule from=\"^http://(www\\.)?2dialog\\.com/([\\w-]+/admin\\.php|(?:[\\w-]+/)?(?:cs|image|j)s/|favicon\\.ico)\" to=\"https://$12dialog.com/$2\"/></ruleset>", "<ruleset name=\"2GIS.ru (partial)\" f=\"2GIS.ru.xml\"><rule from=\"^http://(?:(app\\.)|www\\.)?2gis\\.ru/\" to=\"https://$12gis.ru/\"/></ruleset>", "<ruleset name=\"2K.com (partial)\" f=\"2K.com.xml\"><exclusion pattern=\"^http://store\\.2k\\.com/+(?!Admin/|DRHM/|favicon\\.io)\"/><securecookie host=\"^\\.2k\\.com$\" name=\"^(?:PHPSESSID|blog-2k_(?:last_activity|last_visit|tracker))$\"/><securecookie host=\"^www\\.2k\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"2K Games.com (partial)\" default_off=\"failed ruleset test\" f=\"2K_Games.xml\"><securecookie host=\".+\\.2kgames\\.com\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"2K Sports.com\" default_off=\"failed ruleset test\" f=\"2K_Sports.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"2 Ton.com.au\" default_off=\"failed ruleset test\" f=\"2_Ton.com.au.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"2buntu.com\" f=\"2buntu.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.2buntu\\.com/\" to=\"https://2buntu.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"2ch.cm\" default_off=\"failed ruleset test\" f=\"2ch.cm.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"2ch.hk\" f=\"2ch.hk.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"2ch.net\" platform=\"mixedcontent\" f=\"2ch.net.xml\"><exclusion pattern=\"^http://(?:headline\\.|(?:[^./]+\\.){2,})2ch\\.net/\"/><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"2cnt.net\" f=\"2cnt.net.xml\"><securecookie host=\"^ssl-fromcs\\.2cnt\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"2CO.com\" f=\"2co.co.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"2cyr.com\" f=\"2cyr.com.xml\"><rule from=\"^http://www\\.2cyr\\.com/\" to=\"https://2cyr.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"2ip.ru\" f=\"2ip.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"2kom.ru\" f=\"2kom.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"2mdn.net\" f=\"2mdn.net.xml\"><exclusion pattern=\"http://s\\d\\.2mdn\\.net/instream/flash/v3/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"2nd Vote.com\" f=\"2nd_Vote.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"2o7.net\" f=\"2o7.net.xml\"><securecookie host=\"^(?:.*\\.)?2o7\\.net$\" name=\".+\"/><rule from=\"^http://([^/:@\\.]+)(\\.1[12]2|\\.sbx1)?\\.2o7\\.net/\" to=\"https://$1$2.2o7.net/\"/></ruleset>", "<ruleset name=\"2pay.ru\" f=\"2pay.ru.xml\"><rule from=\"^http://(?:www\\.)?2pay\\.ru/[^?]*\" to=\"https://www.xsolla.com/\"/></ruleset>", "<ruleset name=\"2shared.com\" default_off=\"refused\" f=\"2shared.xml\"><securecookie host=\"^(?:.*\\.)?2shared\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?2shared\\.com/\" to=\"https://www.2shared.com/\"/></ruleset>", "<ruleset name=\"2x.com\" f=\"2x.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"3.cn\" default_off=\"failed ruleset test\" f=\"3.cn.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"32Red Online Casino\" f=\"32Red_Online_Casino.xml\"><securecookie host=\"^(?:affiliates|gamesarcade|livecasino|www)?\\.32red\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?32red\\.com/\" to=\"https://www.32red.com/\"/><rule from=\"^http://(affiliates|assets|gamesarcade|images|livecasino)\\.32red\\.com/\" to=\"https://$1.32red.com/\"/></ruleset>", "<ruleset name=\"33Across (partial)\" platform=\"mixedcontent\" f=\"33Across.xml\"><exclusion pattern=\"^http://socialdna\\.\"/><securecookie host=\"^(?:.*\\.)?33across\\.com$\" name=\".+\"/><rule from=\"^http://(\\w+\\.)?33across\\.com/\" to=\"https://$133across.com/\"/></ruleset>", "<ruleset name=\"33Bits.org\" default_off=\"mismatched\" f=\"33Bits.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"33option.com\" default_off=\"failed ruleset test\" f=\"33option.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"350.org\" f=\"350.org.xml\"><securecookie host=\"^act\\.350\\.org$\" name=\".+\"/><rule from=\"^http://earth\\.350\\.org/\" to=\"https://art.350.org/earth/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"350zEvolution.com\" default_off=\"refused\" f=\"350zEvolution.com.xml\"><securecookie host=\"^(?:.*\\.)?350zevolution\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"360.cn (partial)\" default_off=\"failed ruleset test\" f=\"360.cn.xml\"><rule from=\"^http://(c(\\d{1,2})|dev)\\.yunpan\\.360\\.cn/\" to=\"https://$1.yunpan.360.cn/\"/><rule from=\"^http://(0kee|1|110|110-b|8|huid\\.ad|baby|butian|cdata\\.browser|captcha|hao|i|jiagu|kids|msoftdl|openapi|s|shouji|t|t321\\.tianji|yunpan|zhongce)\\.360\\.cn/\" to=\"https://$1.360.cn/\"/></ruleset>", "<ruleset name=\"360Cities (partial)\" f=\"360Cities.xml\"><securecookie host=\"^www\\.360cities\\.net$\" name=\".+\"/><rule from=\"^http://(www\\.)?360cities\\.net/\" to=\"https://$1360cities.net/\"/><rule from=\"^http://cdn1\\.360cities\\.net/\" to=\"https://d2dw0c606n9zn3.cloudfront.net/\"/><rule from=\"^http://cdn2\\.360cities\\.net/\" to=\"https://d3tllcxe89i3i3.cloudfront.net/\"/></ruleset>", "<ruleset name=\"360 Safe.com (partial)\" default_off=\"mismatched\" f=\"360_Safe.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"360 Total Security.com\" f=\"360_Total_Security.com.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"360 Yield\" default_off=\"failed ruleset test\" f=\"360_Yield.xml\"><securecookie host=\".*\\.360yield\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"360buy.com (partial)\" f=\"360buy.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://360buy\\.com/+\" to=\"https://www.jd.com/\"/><rule from=\"^http://(?!auth\\.)(\\w+)\\.360buy\\.com/+\" to=\"https://$1.jd.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"360buyimg.com\" f=\"360buyimg.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"365 Tickets.co.uk\" f=\"365_Tickets.co.uk.xml\"><securecookie host=\"^\\.365tickets\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"365 Tickets.com\" f=\"365_Tickets.com.xml\"><securecookie host=\"^\\.365tickets\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"365 Tickets Central.com\" f=\"365_Tickets_Central.com.xml\"><securecookie host=\"^\\.365ticketscentral\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"365 Tickets Global.com\" f=\"365_Tickets_Global.com.xml\"><securecookie host=\"^\\.365ticketsglobal\\.com$\" name=\".+\"/><rule from=\"^http://(cs|image)s\\.365ticketsglobal\\.com/\" to=\"https://$1s.365ticketsglobal.com/\"/></ruleset>", "<ruleset name=\"365 Tickets Scotland.com\" f=\"365_Tickets_Scotland.com.xml\"><securecookie host=\"^\\.365ticketsscotland\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"36Kr (partial)\" f=\"36Kr.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"37Signals\" f=\"37Signals.xml\"><securecookie host=\"^(?:(?:www|gettingreal|launchpad|smiley)\\.)?37signals\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?37signals\\.com/\" to=\"https://37signals.com/\"/><rule from=\"^http://(gettingreal|launchpad|smiley)\\.37signals\\.com/\" to=\"https://$1.37signals.com/\"/></ruleset>", "<ruleset name=\"38.de\" default_off=\"missing certificate chain\" f=\"38.de.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://38\\.de/.*\" to=\"https://www.38.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"38degrees.org.uk\" f=\"38degrees.xml\"><securecookie host=\"^(?:.*\\.)?38degrees\\.org\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"39dollarglasses.com\" f=\"39dollarglasses.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"3DCenter.org (partial)\" f=\"3DCenter.org.xml\"><rule from=\"^http://3dcenter\\.org/\" to=\"https://www.3dcenter.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"3DStats.com\" f=\"3DStats.xml\"><securecookie host=\"^(?:.*\\.)?3dstats\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"3D Robotics.com (partial)\" default_off=\"failed ruleset test\" f=\"3D_Robotics.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"3D Vision Live.com (partial)\" f=\"3D_Vision_Live.com.xml\"><securecookie host=\"^\\.3dvisionlive\\.com$\" name=\".+\"/><rule from=\"^http://3dvisionlive\\.com/\" to=\"https://www.3dvisionlive.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"3FM\" f=\"3FM.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"3M.com (partial)\" f=\"3M.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?3m\\.com/+(?!product/)\"/><exclusion pattern=\"^http://solutions\\.3m\\.com/+(?!3M/themes/|3MContentRetrievalAPI/|wps/)\"/><rule from=\"^http://((?:metricscst|solutions|www)\\.)?3m\\.com/\" to=\"https://$13m.com/\"/></ruleset>", "<ruleset name=\"3Play Media (partial)\" f=\"3Play-Media.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"3 News\" f=\"3_News.xml\"><rule from=\"^http://cdn\\.3news\\.co\\.nz/\" to=\"https://cdn.mediaworks.nz/\"/></ruleset>", "<ruleset name=\"3bbwifi.com\" default_off=\"failed ruleset test\" f=\"3bbwifi.com.xml\"><rule from=\"^http://(?:www\\.)?3bbwifi\\.com/\" to=\"https://www.3bbwifi.com/\"/></ruleset>", "<ruleset name=\"3cdn\" f=\"3cdn.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"3conline.com (partial)\" default_off=\"failed ruleset test\" f=\"3conline.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"3dglassesfree.com (partial)\" f=\"3dglassesfree.com.xml\"><rule from=\"^http://www\\.3dglassesfree\\.com/(?=favicon\\.ico|images/|stylesheets/)\" to=\"https://www.3dglassesfree.com/\"/></ruleset>", "<ruleset name=\"3DR.com\" f=\"3dr.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:_ga|incap_|nlbi_|visid_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://press\\.3dr\\.com/+\" to=\"https://www.3dr.com/contact/press/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"3dsupply.de\" f=\"3dsupply.de.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"3min\" default_off=\"Invalid Certificate\" f=\"3min.xml\"><securecookie host=\"^(?:.*\\.)?3min\\.de$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?3min\\.de/\" to=\"https://www.3min.de/\"/></ruleset>", "<ruleset name=\"3sat\" default_off=\"breaks video streaming\" f=\"3sat.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"3scale\" f=\"3scale.net.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"3suisses.de\" f=\"3suisses.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"3taps\" default_off=\"failed ruleset test\" f=\"3taps.xml\"><securecookie host=\"^developer\\.3taps\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"3v1n0.net\" platform=\"mixedcontent\" f=\"3v1n0.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"4.CN (partial)\" f=\"4.CN.xml\"><securecookie host=\"^www\\.4\\.cn$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"419 Eater.com (partial)\" f=\"419_Eater.com.xml\"><securecookie host=\"^forum\\.419eater\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"42Floors.com (partial)\" default_off=\"failed ruleset test\" f=\"42Floors.com.xml\"><securecookie host=\"^(?:www\\.)?42floors\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"435 by MJC.com\" default_off=\"failed ruleset test\" f=\"435_by_MJC.com.xml\"><securecookie host=\"^(?:www)?\\.435bymjc\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"444.hu (mixedcontent)\" platform=\"mixedcontent\" f=\"444.hu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"451 Research.com\" f=\"451-Group.xml\"><securecookie host=\"^(?:.*\\.)?451research\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"451Unavailable.org\" f=\"451Unavailable.org.xml\"><securecookie host=\"^(?:www\\.)?451unavailable\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"48months.ie\" f=\"48months.ie.xml\"><securecookie host=\"^community\\.48months\\.ie$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"49gov.ru\" f=\"49gov.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"4D.com (partial)\" f=\"4D.com.xml\"><securecookie host=\"^\\.store\\.4d\\.com$\" name=\".+\"/><rule from=\"^http://store\\.4d\\.com/\" to=\"https://store.4d.com/\"/></ruleset>", "<ruleset name=\"4DO\" default_off=\"mismatched\" f=\"4DO.xml\"><securecookie host=\"^.*\\.fourdo\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?fourdo\\.com/\" to=\"https://www.fourdo.com/\"/><rule from=\"^http://(forum|wiki)\\.fourdo\\.com/\" to=\"https://$1.fourdo.com/\"/></ruleset>", "<ruleset name=\"4K Download.com (partial)\" f=\"4K_Download.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"4PDA\" f=\"4PDA.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"4Shared.com\" f=\"4Shared.xml\"><exclusion pattern=\"^http://help\\.4shared\\.com/\"/><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://forum\\.4shared\\.com/[^?]*\" to=\"https://blog.4shared.com/\"/><rule from=\"^http://www\\.m\\.4shared\\.com/\" to=\"https://www.4shared.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"4Tulemar\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"4Tulemar.xml\"><securecookie host=\".*\\.4tulemar\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"4 Free Proxy\" default_off=\"self-signed\" f=\"4_Free_Proxy.xml\"><securecookie host=\"^4freeproxy\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?4freeproxy\\.com/\" to=\"https://4freeproxy.com/\"/></ruleset>", "<ruleset name=\"4armed.com\" f=\"4armed.com.xml\"><securecookie host=\"^www\\.4armed\\.com$\" name=\".+\"/><rule from=\"^http://4armed\\.com/\" to=\"https://www.4armed.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"4chan (partial)\" f=\"4chan.xml\"><exclusion pattern=\"^http://(?:status|blog)\\.\"/><securecookie host=\".*\\.4chan(?:-ads|nel)?\\.org$\" name=\".+\"/><rule from=\"^http://([\\w.]+\\.)?4c(dn|han|han-ads|hannel)\\.org/\" to=\"https://$14c$2.org/\"/></ruleset>", "<ruleset name=\"4dsply.com (partial)\" f=\"4dsply.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"4gamer.net (partial)\" f=\"4gamer.net.xml\"><rule from=\"^http://(?:www\\.)?4gamer\\.net/(favicon\\.ico|images/)\" to=\"https://www.4gamer.net/$1\"/></ruleset>", "<ruleset name=\"4mlinux.com (partial)\" f=\"4mlinux.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"4plebs.org\" f=\"4plebs.org.xml\"><securecookie host=\"^(?:archive)?\\.4plebs\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"4sevens\" default_off=\"failed ruleset test\" f=\"4sevens.xml\"><rule from=\"^http://(?:www\\.)?4sevens\\.com/\" to=\"https://www.4sevens.com/\"/></ruleset>", "<ruleset name=\"4sqi.net\" f=\"4sqi.net.xml\"><rule from=\"^http://(irs\\d|is\\d|ss[0-5l])\\.4sqi\\.net/\" to=\"https://$1.4sqi.net/\"/></ruleset>", "<ruleset name=\"4sysops.com\" f=\"4sysops.com.xml\"><rule from=\"^http://www\\.4sysops\\.com/\" to=\"https://4sysops.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"500ish.com\" f=\"500ish.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"500px.com (partial)\" f=\"500px.com.xml\"><securecookie host=\"^(?:(?:prime|www)\\.)?500px\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"500px.org (partial)\" f=\"500px.org.xml\"><exclusion pattern=\"^http://assetcdn\\.500px\\.org/$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"511tactical.com\" f=\"511tactical.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"512 Pixels.net\" f=\"512_Pixels.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"51fanli.net\" f=\"51fanli.net.xml\"><rule from=\"^http://imagefile\\.51fanli\\.com/\" to=\"https://imagefile.51fanli.net/\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"55ch.org\" default_off=\"failed ruleset test\" f=\"55ch.org.xml\"><securecookie host=\"^\\.55ch\\.org$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"55chan.org\" f=\"55chan.org.xml\"><securecookie host=\"^\\.55chan\\.org$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"58.com (partial)\" f=\"58.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"58CDN.com.cn\" f=\"58CDN.com.cn.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"5NINES (partial)\" default_off=\"failed ruleset test\" f=\"5NINES.xml\"><securecookie host=\"^portal\\.5ninesdata\\.com$\" name=\".*\"/><rule from=\"^http://portal\\.5ninesdata\\.com/\" to=\"https://portal.5ninesdata.com/\"/></ruleset>", "<ruleset name=\"5 July.org\" f=\"5_July.org.xml\"><securecookie host=\"^5july\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"5dec.ru\" f=\"5dec.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"5min.com (partial)\" default_off=\"failed ruleset test\" f=\"5min.com.xml\"><rule from=\"^http://5min\\.com/\" to=\"https://www.5min.com/\"/><rule from=\"^http://[ap](shared|thumbnails)\\.5min\\.com/\" to=\"https://$1.5min.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"5vpn.net\" f=\"5vpn.net.xml\"><securecookie host=\"^(?:www\\.)?5vpn.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"64Px.com\" default_off=\"expired\" f=\"64Px.com.xml\"><rule from=\"^http://(?:www\\.)?64px\\.com/\" to=\"https://64px.com/\"/></ruleset>", "<ruleset name=\"66option.com\" f=\"66option.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"6PM.com (partial)\" default_off=\"needs clearnet testing\" f=\"6PM.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"6Scan.com (partial)\" default_off=\"refused\" f=\"6Scan.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"6Wunderkinder (partial)\" default_off=\"mismatched\" f=\"6Wunderkinder.xml\"><rule from=\"^http://(?:www\\.)?6wunderkinder\\.com/(6-Wunderkinder-Logo\\.png|favicon\\.ico|wp-content/)\" to=\"https://www.6wunderkinder.com/$1\"/></ruleset>", "<ruleset name=\"6connect.com\" f=\"6connect.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"6to4.ru\" f=\"6to4.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"6xq.net\" f=\"6xq.net.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"7-Eleven.com (partial)\" default_off=\"failed ruleset test\" f=\"7-Eleven.com.xml\"><securecookie host=\"^\\.7-eleven\\.com$\" name=\"^__qca$\"/><rule from=\"^http://7-eleven\\.com/\" to=\"https://www.7-eleven.com/\"/><rule from=\"^http://careers\\.7-eleven\\.com/+(?:\\?.*)?$\" to=\"https://sites.7-eleven.com/careers/Careers.html\"/><rule from=\"^http://franchise\\.7-eleven\\.com/+(?:\\?.*)?$\" to=\"https://sites.7-eleven.com/franchise/home\"/><rule from=\"^http://(?:careers|corp|franchise)\\.7-eleven\\.com/\" to=\"https://sites.7-eleven.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"7Headlines.com\" f=\"7Headlines.com.xml\"><securecookie host=\"^\\.7headlines\\.com$\" name=\".+\"/><rule from=\"^http://7headlines\\.com/\" to=\"https://www.7headlines.com/\"/><rule from=\"^https?://asset\\.7headlines\\.net/\" to=\"https://asset-7headlines.pixfs.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"7 Elements.co.uk\" default_off=\"failed ruleset test\" f=\"7_Elements.co.uk.xml\"><securecookie host=\"^(?:www\\.)?7elements\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"7 Springs.com\" f=\"7_Springs.com.xml\"><securecookie host=\"^(?:www\\.)?7springs\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"7chan\" f=\"7chan.xml\"><securecookie host=\"^\\.7chan\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"7digital.com (partial)\" f=\"7digital.xml\"><rule from=\"^http://7digital\\.com/\" to=\"https://www.7digital.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"7eer.net\" f=\"7eer.net.xml\"><securecookie host=\".*\\.7eer\\.net$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"7search.com (partial)\" f=\"7search.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"7static.com\" f=\"7static.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"7terminals.com\" f=\"7terminals.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"7x7-journal.ru\" f=\"7x7-journal.ru.xml\"><rule from=\"^http://www\\.7x7-journal\\.ru/\" to=\"https://7x7-journal.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"80s Purple.com\" f=\"80s_Purple.com.xml\"><securecookie host=\".*\\.80spurple\\.com$\" name=\".+\"/><rule from=\"^http://(?:smcdn\\.|(news\\.|www\\.))?80spurple\\.com/\" to=\"https://$180spurple.com/\"/></ruleset>", "<ruleset name=\"888173.net (false MCB)\" platform=\"mixedcontent\" f=\"888173.net-falsemixed.xml\"><securecookie host=\"^\\.888173\\.net$\" name=\".+\"/><rule from=\"^http://www\\.888173\\.net/\" to=\"https://www.888173.net/\"/></ruleset>", "<ruleset name=\"888173.net (partial)\" f=\"888173.net.xml\"><exclusion pattern=\"^http://www\\.888173\\.net/+(?!favicon\\.ico|wp-content/|wp-includes/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"888VoIP.com\" default_off=\"failed ruleset test\" f=\"888VoIP.com.xml\"><securecookie host=\"^(?:[w.]*\\.)?888voip\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"8R.com\" f=\"8R.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?8r\\.com$\" name=\".+\"/><rule from=\"^http://8r\\.com/\" to=\"https://www.8r.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"8ch.net\" f=\"8ch.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"8chan\" default_off=\"failed ruleset test\" f=\"8chan.co.xml\"><rule from=\"^http://(?:www\\.)?8chan\\.co/\" to=\"https://8chan.co/\"/><rule from=\"^http://jp\\.8chan\\.co/\" to=\"https://jp.8chan.co/\"/><rule from=\"^http://media\\.8chan\\.co/\" to=\"https://media.8chan.co/\"/></ruleset>", "<ruleset name=\"8tracks.com\" default_off=\"failed ruleset test\" f=\"8tracks.xml\"><rule from=\"^http://imgix\\.8tracks\\.com/\" to=\"https://8tracks.imgix.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"91.com (partial)\" default_off=\"expired, mismatched, self-signed\" f=\"91.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"911.gov\" f=\"911.gov.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"95516.com\" default_off=\"failed ruleset test\" f=\"95516.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"96boards.org\" f=\"96boards.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"972 Mag.com (partial)\" f=\"972mag.com.xml\"><rule from=\"^http://(?:www\\.)?972mag\\.com/(?=wp-content/|wp-includes/)\" to=\"https://d2f1h9jpcesbx3.cloudfront.net/\"/></ruleset>", "<ruleset name=\"99Bitcoins.com\" f=\"99Bitcoins.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^_gat?$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"9GAG.com (partial)\" f=\"9gag.com.xml\"><securecookie host=\"^accounts\\.9gag\\.com$\" name=\".+\"/><securecookie host=\"^m\\.9gag\\.com$\" name=\".+\"/><securecookie host=\"9cache\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"9seeds.com (partial)\" f=\"9seeds.xml\"><exclusion pattern=\"^http://(?:www\\.)?9seeds\\.com/+(?!favicon\\.ico|wp-content/)\"/><securecookie host=\"^\\.9seeds\\.com$\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http://9seeds\\.com/\" to=\"https://www.9seeds.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"9to5google.com\" f=\"9to5google.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"9to5mac.com\" f=\"9to5mac.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"9to5toys.com\" f=\"9to5toys.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"9tv.co.il\" default_off=\"failed ruleset test\" f=\"9tv.co.il.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"a-3.ru\" f=\"A-3.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"A Small Orange.com\" f=\"A-Small-Orange.xml\"><securecookie host=\"^customers\\.asmallorange\\.com$\" name=\".+\"/><rule from=\"^http://forums\\.asmallorange\\.com/+\" to=\"https://status.asmallorange.com/\"/><rule from=\"^http://jobs\\.asmallorange\\.com/+\" to=\"https://asmallorange.com/jobs/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"a-ads.com\" f=\"A-ads.com.xml\"><securecookie host=\"^a-ads\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"A1 Telekom Austria\" f=\"A1-Telekom-Austria.xml\"><securecookie host=\"^.*\\.a1(?:community)?\\.net$\" name=\".*\"/><rule from=\"^http://a1community\\.net/\" to=\"https://www.a1community.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"A14 Electronics.com\" default_off=\"failed ruleset test\" f=\"A14_Electronics.com.xml\"><securecookie host=\"^(?:w*\\.)?a14electronics\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"A16z.com\" f=\"A16z.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"A1A Fast Cash\" f=\"A1A_Fast_Cash.xml\"><securecookie host=\"^(?:www)?\\.a1afastcash.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"A1WebStats.com (partial)\" f=\"A1WebStats.com.xml\"><rule from=\"^http://(www\\.)?a1webstats\\.com/(?=stats/|wp-content/|wp-includes/)\" to=\"https://$1a1webstats.com/\"/></ruleset>", "<ruleset name=\"A2 Hosting.com (partial)\" f=\"A2_Hosting.xml\"><securecookie host=\"\\.a2hosting\\.com$\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\".+\\.a2hosting\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"a2z, Inc (partial)\" f=\"A2z.xml\"><exclusion pattern=\"^http://www\\.a2zinc\\.net/(?!Show6/custom/newsletter/[\\w-]+\\.htm|show6/(?:css|custom/flexslider|[Cc]ustom/[Ii]mages|include)/)\"/><rule from=\"^http://a2zinc\\.net/\" to=\"https://www.a2zinc.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"a3li\" platform=\"cacert\" default_off=\"failed ruleset test\" f=\"A3li.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"a4apphack (mismatches)\" default_off=\"mismatched\" f=\"A4apphack-mismatches.xml\"><rule from=\"^http://(?:www\\.)?a4apphack\\.com/blog/wp-content/\" to=\"https://a4apphack.com/~afouapph/blog/wp-content/\"/><rule from=\"^http://apps\\.a4apphack\\.com/apps/timthumb/\" to=\"https://a4apphack.com/~afouapph/apps/timthumb/\"/></ruleset>", "<ruleset name=\"a4uexpo.com (false MCB)\" default_off=\"expired\" platform=\"mixedcontent\" f=\"A4uexpo.com.xml\"><securecookie host=\"^\\.a4uexpo\\.com$\" name=\"^__utm\\w$\"/><rule from=\"^http://(?:www\\.)?a4uexpo\\.com/\" to=\"https://www.a4uexpo.com/\"/></ruleset>", "<ruleset name=\"A8.net\" f=\"A8.net.xml\"><rule from=\"^http://a8\\.net/\" to=\"https://a8.net/\"/><rule from=\"^http://(ad-api|direct|items|ow|pub|px|rot\\d+|rpx|rws|statics|support|www|www\\d+)\\.a8\\.net/\" to=\"https://$1.a8.net/\"/></ruleset>", "<ruleset name=\"AA.net.uk (partial)\" f=\"AA.net.uk.xml\"><securecookie host=\"^(?:accounts|clueless|status)\\.aa\\.net\\.uk$\" name=\".+\"/><rule from=\"^http://(accounts|clueless|order|status)\\.aa\\.net\\.uk/\" to=\"https://$1.aa.net.uk/\"/></ruleset>", "<ruleset name=\"American Airlines\" default_off=\"failed ruleset test\" f=\"AA.xml\"><securecookie host=\"^(?:.*\\.)aa\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AAAI.org (partial)\" f=\"AAAI.org.xml\"><securecookie host=\"^(www\\.)aaai\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AAAS.org (partial)\" f=\"AAAS.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Australian Aged Care Quality Agency (AACQA)\" f=\"AACQA.gov.au.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://aacqa\\.gov\\.au/\" to=\"https://www.aacqa.gov.au/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AAMC.org\" f=\"AAMC.org.xml\"><rule from=\"^http://(?:www\\.)?aamc\\.org/\" to=\"https://www.aamc.org/\"/></ruleset>", "<ruleset name=\"AARNet\" f=\"AARNet.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AARP.org (partial)\" default_off=\"failed ruleset test\" f=\"AARP.org.xml\"><exclusion pattern=\"^http://discounts\\.aarp\\.org/+(?!static/)\"/><securecookie host=\"^\\.aarp\\.org$\" name=\"^u$\"/><securecookie host=\"^(?:appsec|community|secure|services\\.share)\\.aarp\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AAS.org (partial)\" default_off=\"failed ruleset test\" f=\"AAS.org.xml\"><securecookie host=\"^members\\.aas\\.org$\" name=\".+\"/><rule from=\"^http://aj\\.aas\\.org/+\" to=\"https://iopscience.iop.org/1538-3881\"/><rule from=\"^http://apj\\.aas\\.org/+\" to=\"https://iopscience.iop.org/0004-637X\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AAU.at (partial)\" f=\"AAU.at.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AB9IL.net\" f=\"AB9IL.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ABC Music Publishing\" default_off=\"mismatched\" f=\"ABC-Music-Publishing.xml\"><rule from=\"^http://(?:www\\.)?abcmusicpublishing\\.com\\.au/\" to=\"https://abcmusicpublishing.com.au/\"/></ruleset>", "<ruleset name=\"ABC Online (partial)\" f=\"ABC-Online.xml\"><securecookie host=\"^shop.abc.net.au$\" name=\".+\"/><securecookie host=\"^\\.abccommercial\\.com$\" name=\".+\"/><rule from=\"^http://shop\\.abc\\.net\\.au/\" to=\"https://shop.abc.net.au/\"/><rule from=\"^http://(?:www\\.)?abccomercial\\.com/\" to=\"https://abccomercial.com/\"/></ruleset>", "<ruleset name=\"ABC News (false MCB)\" platform=\"mixedcontent\" default_off=\"JS redirect loop\" f=\"ABC_News-falsemixed.xml\"><rule from=\"^http://a\\.abcnews(?:\\.go)?\\.com/\" to=\"https://abcnews.go.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ABC News (partial)\" default_off=\"JS redirect loop\" f=\"ABC_News.xml\"><exclusion pattern=\"^http://abcnews\\.go\\.com/+(?!assets/|favicon\\.ico|gma$|images/)\"/><exclusion pattern=\"^http://a\\.abcnews(?:\\.go)?\\.com/.+(?!(?:gif|jpg|png)(?:$|\\?))\"/><rule from=\"^http://a\\.abcnews(?:\\.go)?\\.com/\" to=\"https://abcnews.go.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ABI.org.uk (partial)\" f=\"ABI.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://abi\\.org\\.uk/\" to=\"https://www.abi.org.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ABIS-Studien.se (default off)\" default_off=\"expired certificate\" f=\"ABIS-studien.se.xml\"><rule from=\"^http://www\\.abis-studien\\.se/\" to=\"https://www.abis-studien.se/\"/><rule from=\"^http://abis-studien\\.se/\" to=\"https://abis-studien.se/\"/></ruleset>", "<ruleset name=\"ABI Research.com\" f=\"ABI_Research.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ABN AMRO Bank\" f=\"ABNAMRO.xml\"><securecookie host=\"^www\\.abnamro\\.nl$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?abnamro\\.nl/\" to=\"https://www.abnamro.nl/\"/></ruleset>", "<ruleset name=\"ABestWeb.com\" f=\"ABestWeb.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ACCAN\" f=\"ACCAN.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ACI-Europe.org\" f=\"ACI-Europe.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ACLS.org\" default_off=\"failed ruleset test\" f=\"ACLS.org.xml\"><securecookie host=\"^www\\.acls\\.org$\" name=\".+\"/><rule from=\"^http://acls\\.org/.*\" to=\"https://www.acls.org/\"/><rule from=\"^http://www\\.acls\\.org/\" to=\"https://www.acls.org/\"/></ruleset>", "<ruleset name=\"ACLU of Arizona\" f=\"ACLU-of-Arizona.xml\"><securecookie host=\"^www\\.acluaz\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ACLU of California\" f=\"ACLU-of-California.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ACLU of Florida\" f=\"ACLU-of-Florida.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://media\\.aclufl\\.org/(media(/|$))?\" to=\"https://media.aclufl.org/media/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ACLU of Georgia\" f=\"ACLU-of-Georgia.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ACLU of Kansas\" f=\"ACLU-of-Kansas.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ACLU of Louisiana\" f=\"ACLU-of-Louisiana.xml\"><rule from=\"^http://(?:www\\.)?laaclu\\.org/\" to=\"https://www.laaclu.org/\"/></ruleset>", "<ruleset name=\"ACLU of Maine\" f=\"ACLU-of-Maine.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ACLU of Mississippi\" f=\"ACLU-of-Mississippi.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://aclu-ms\\.org/\" to=\"https://www.aclu-ms.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ACLU of Missouri\" f=\"ACLU-of-Missouri.xml\"><securecookie host=\"^www\\.aclu-mo\\.org$\" name=\".+\"/><rule from=\"^http://aclu-mo\\.org/\" to=\"https://www.aclu-mo.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ACLU of Montana\" f=\"ACLU-of-Montana.xml\"><securecookie host=\"^www\\.aclumontana\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ACLU of New Mexico\" f=\"ACLU-of-New-Mexico.xml\"><securecookie host=\"^www\\.aclu-nm\\.org$\" name=\".+\"/><rule from=\"^http://aclu-nm\\.org/\" to=\"https://www.aclu-nm.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ACLU of North Carolina.org\" default_off=\"needs clearnet testing\" f=\"ACLU-of-North-Carolina.xml\"><rule from=\"^http://(?:www\\.)?acluofnc\\.org/\" to=\"https://www.acluofnorthcarolina.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ACLU of San Diego and Imperial Counties (partial)\" f=\"ACLU-of-San-Diego.xml\"><securecookie host=\"^www\\.aclusandiego\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ACLU of Southern California\" f=\"ACLU-of-Southern-California.xml\"><rule from=\"^http://(?:www\\.)?aclu-sc\\.org/\" to=\"https://www.aclu-sc.org/\"/></ruleset>", "<ruleset name=\"ACLU of Texas\" f=\"ACLU-of-Texas.xml\"><securecookie host=\"^(?:vpn|www)\\.aclutx\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?aclutx\\.org/\" to=\"https://www.aclutx.org/\"/><rule from=\"^http://vpn\\.aclutx\\.org/\" to=\"https://vpn.aclutx.org/\"/></ruleset>", "<ruleset name=\"ACLU VA.org\" f=\"ACLU-of-Virginia.xml\"><securecookie host=\"^\\.?acluva\\.org$\" name=\".+\"/><rule from=\"^http://www\\.acluva\\.org/\" to=\"https://acluva.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ACLU-WA.org\" f=\"ACLU-of-Washington.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ACLU.org (partial)\" f=\"ACLU.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://metrics\\.aclu\\.org/\" to=\"https://smetrics.aclu.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ACLU SoCal.org\" f=\"ACLU_SoCal.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ACLUM.org\" f=\"ACLU_of_Massachusetts.xml\"><securecookie host=\"^\\.aclum\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ACLU-NJ.org\" f=\"ACLU_of_New_Jersey.xml\"><securecookie host=\"^www\\.aclu-nj\\.org$\" name=\".+\"/><rule from=\"^http://aclu-nj\\.org/\" to=\"https://www.aclu-nj.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ACLU NC.org\" f=\"ACLU_of_Northern_California.xml\"><securecookie host=\"^\\w\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ACM.org (false MCB)\" platform=\"mixedcontent\" f=\"ACM.org-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ACM.org (partial)\" f=\"ACM.org.xml\"><exclusion pattern=\"^http://(?:www\\.)?acm\\.org/+(?!.+\\.(?:/image_thumb$|\\.gif$|\\.jpg$|\\.png$)|favicon\\.ico|images-mail/|portal_css/)\"/><exclusion pattern=\"^http://cacm.acm.org/(?!(?:accounts/(?:forgot-password|new)|login)/*(?:\\?.*)?$|favicon\\.ico|images/|javascripts/|stylesheets/|system/)\"/><securecookie host=\"^(?!cacm\\.).*\\.acm\\.org$\" name=\".+\"/><rule from=\"^http://((?:cacm|campus|dl|myacm|pd|learning|myacm|plone|portal|queue|spam|techpack|www)\\.)?acm\\.org/\" to=\"https://$1acm.org/\"/></ruleset>", "<ruleset name=\"ACNC.gov.au\" f=\"ACNC.gov.au.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ACPICA.org\" default_off=\"failed ruleset test\" f=\"ACPICA.org.xml\"><securecookie host=\"^(?:bugs\\.)?acpica\\.org$\" name=\".+\"/><rule from=\"^http://www\\.acpica\\.org/\" to=\"https://acpica.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ACSAC.org\" f=\"ACSAC.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"A.C.T.I.O.N Kooperative (partial)\" default_off=\"failed ruleset test\" f=\"ACTION_Kooperative.xml\"><securecookie host=\"^mail\\.action\\.at$\" name=\".+\"/><rule from=\"^http://mail\\.action\\.at/\" to=\"https://mail.action.at/\"/></ruleset>", "<ruleset name=\"ADCocktail (partial)\" f=\"ADCocktail.xml\"><securecookie host=\"^track\\.adcocktail\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Attention Deficit Disorders Association - Southern Region\" default_off=\"failed ruleset test\" f=\"ADD-Assoc-Southern-Region.xml\"><rule from=\"^http://(?:www\\.)?adda-sr\\.org/\" to=\"https://www.adda-sr.org/\"/></ruleset>", "<ruleset name=\"ADISC.org\" f=\"ADISC.org.xml\"><securecookie host=\"^\\.adisc\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ADPLAN DS (partial)\" f=\"ADPLAN-DS.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ADP Retirement Services\" default_off=\"failed ruleset test\" f=\"ADP_Retirement_Services.xml\"><securecookie host=\"^www\\.mykplan\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ADP Screening and Selection Services\" f=\"ADP_Screening_and_Selection_Services.xml\"><rule from=\"^http://(?:www\\.)?adpselect\\.com/\" to=\"https://www.adpselect.com/\"/></ruleset>", "<ruleset name=\"ADP VirtualEdge\" f=\"ADP_VirtualEdge.xml\"><securecookie host=\"^www\\.virtualedge\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?virtualedge\\.com/\" to=\"https://www.virtualedge.com/\"/></ruleset>", "<ruleset name=\"ADTmag.com\" f=\"ADTmag.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Accès Doctorat Unique et Mutualisé\" platform=\"mixedcontent\" f=\"ADUM.fr.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AD Security.org\" f=\"AD_Security.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ADindex\" f=\"ADindex.xml\"><securecookie host=\"^(?:.*\\.)?adindex\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AEGEE-Enschede.nl (partial)\" f=\"AEGEE-Enschede.nl.xml\"><securecookie host=\"^\\.aegee-enschede\\.nl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AEI.org\" f=\"AEI.org.xml\"><securecookie host=\"^\\.?aei\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Australian Emergency Management Institute\" default_off=\"failed ruleset test\" f=\"AEMI.xml\"><rule from=\"^http://(?:www\\.)?schools\\.aemi\\.edu\\.au/\" to=\"https://schools.aemi.edu.au/\"/></ruleset>", "<ruleset name=\"AEUP.eu\" platform=\"mixedcontent\" default_off=\"self-signed\" f=\"AEUP.eu.xml\"><rule from=\"^http://(?:www\\.)?aeup\\.eu/\" to=\"https://www.aeup.eu/\"/></ruleset>", "<ruleset name=\"AFCEA\" f=\"AFCEA.xml\"><securecookie host=\"^www\\.afcea\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?afcea\\.org/\" to=\"https://www.afcea.org/\"/></ruleset>", "<ruleset name=\"AFCOM.com\" f=\"AFCOM.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AFNIC.fr\" f=\"AFNIC.fr.xml\"><securecookie host=\"^www\\.(?:sandbox\\.)?afnic\\.fr$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AFRA-Berlin.de\" f=\"AFRA-Berlin.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"American Foundation for Suicide Prevention\" f=\"AFSP.org.xml\"><rule from=\"^http://www\\.afsp\\.org/\" to=\"https://afsp.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AFUL.org\" f=\"AFUL.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AGU.org (partial)\" f=\"AGU.org.xml\"><exclusion pattern=\"^http://(?:ethics|meetings|publications|sciencepolicy|sharingscience|sites)\\.agu\\.org/+(?!favicon\\.ico|(?:\\w+/)?wp-(?:content|includes)/)\"/><rule from=\"^http://(about|chapman|education|ethics|fallmeeting|geocalendar|giving|honors|meetings|membership|news|publications|sciencepolicy|sharingscience|sites2?|spc)\\.agu\\.org/\" to=\"https://$1.agu.org/\"/></ruleset>", "<ruleset name=\"AI-Radio.org\" default_off=\"failed ruleset test\" f=\"AI-Radio.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AIA Surety\" f=\"AIA-Surety.xml\"><securecookie host=\"^(?:.*\\.)?(?:aiasurety|expertbail)\\.com$\" name=\".*\"/><rule from=\"^http://((?:becomeanagent|www)\\.)?aiasurety\\.com/\" to=\"https://$1aiasurety.com/\"/><rule from=\"^http://(www\\.)?expertbail\\.com/\" to=\"https://$1expertbail.com/\"/></ruleset>", "<ruleset name=\"Asian Infrastructure Investment Bank (AIIB)\" f=\"AIIB.org.xml\"><securecookie host=\"^(www\\.)?aiib\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AIM.com\" f=\"AIM.com.xml\"><rule from=\"^http://(?:cdn\\.)?aim\\.com/\" to=\"https://www.aim.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AIP.org (partial)\" default_off=\"failed ruleset test\" f=\"AIP.org.xml\"><exclusion pattern=\"^http://scitation\\.aip\\.org/+(?!css/|favicon\\.ico|images/)\"/><securecookie host=\"^(?!scitation\\.)\\w\" name=\".\"/><rule from=\"^http://aip\\.org/\" to=\"https://www.aip.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AIVD.nl\" f=\"AIVD.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AJC.com (partial)\" f=\"AJC.com.xml\"><rule from=\"^https?://ajc\\.com/\" to=\"https://www.ajc.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AJ's Ski & Sports\" default_off=\"failed ruleset test\" f=\"AJs_Ski_and_Sports.xml\"><securecookie host=\"^\\.stowesports\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?stowesports\\.com/\" to=\"https://$1[stowesports.com/\"/></ruleset>", "<ruleset name=\"Vorratsdatenspeicherung.de\" platform=\"cacert\" default_off=\"failed ruleset test\" f=\"AK-Vorrat.de.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AKA.ms\" f=\"AKA.ms.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AK Vorrat.org (partial)\" f=\"AK_Vorrat.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ALA.org (partial)\" default_off=\"failed ruleset test\" f=\"ALA.org.xml\"><exclusion pattern=\"^http://(?:www\\.)?ala\\.org/+(?!Security/|Template\\.cfm)\"/><securecookie host=\"^(?:www\\.alastore|joblist)\\.ala\\.org$\" name=\".+\"/><rule from=\"^http://alastore\\.ala\\.org/\" to=\"https://www.alastore.ala.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aldi\" default_off=\"failed ruleset test\" f=\"ALDI.xml\"><rule from=\"^http://aldi-mobile\\.ch/\" to=\"https://www.aldi-mobile.ch/\"/><rule from=\"^http://aldi-sued\\.de/\" to=\"https://www.aldi-sued.de/\"/><rule from=\"^http://aldi-suisse\\.ch/\" to=\"https://www.aldi-suisse.ch/\"/><rule from=\"^http://aldi\\.be/\" to=\"https://www.aldi.be/\"/><rule from=\"^http://aldi\\.co\\.uk/\" to=\"https://www.aldi.co.uk/\"/><rule from=\"^http://aldi\\.es/\" to=\"https://www.aldi.es/\"/><rule from=\"^http://aldi\\.hu/\" to=\"https://www.aldi.hu/\"/><rule from=\"^http://hirlevel\\.aldi\\.hu/\" to=\"https://www.hirlevel.aldi.hu/\"/><rule from=\"^http://borvilag\\.aldi\\.hu/\" to=\"https://www.borvilag.aldi.hu/\"/><rule from=\"^http://aldi\\.ie/\" to=\"https://www.aldi.ie/\"/><rule from=\"^http://aldi\\.us/\" to=\"https://www.aldi.us/\"/><rule from=\"^http://alditalk\\.de/\" to=\"https://www.alditalk.de/\"/><rule from=\"^http://hofer\\.at/\" to=\"https://www.hofer.at/\"/><rule from=\"^http://hofer\\.si/\" to=\"https://www.hofer.si/\"/><rule from=\"^http://vinothek\\.hofer\\.at/\" to=\"https://www.vinothek.hofer.at/\"/><rule from=\"^http://vinoteka\\.hofer\\.si/\" to=\"https://www.vinoteka.hofer.si/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ALDImobile.com.au\" f=\"ALDImobile.com.au.xml\"><securecookie host=\"^.*\\.aldimobile\\.com\\.au$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ALSO Actebis\" f=\"ALSOActebis.xml\"><rule from=\"^http://(?:www\\.)?alsoactebis\\.com/\" to=\"https://www.alsoactebis.com/\"/><exclusion pattern=\"^http://www\\.alsoactebis\\.com/ec/cms3/[0-9]+/ShopStart\\.do\"/></ruleset>", "<ruleset name=\"ALTS.Trade\" default_off=\"failed ruleset test\" f=\"ALTS.Trade.xml\"><securecookie host=\"^\\.alts\\.trade$\" name=\".+\"/><rule from=\"^http://www\\.alts\\.trade/\" to=\"https://alts.trade/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ALT Linux.org (untrusted root)\" default_off=\"untrusted root\" f=\"ALT_Linux.org-problematic.xml\"><exclusion pattern=\"^http://packages\\.altlinux\\.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ALT Linux.org (partial)\" f=\"ALT_Linux.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AMC TV.com (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"AMC.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".+\"/><rule from=\"^http://amctv\\.com/\" to=\"https://www.amctv.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AMCTheatres\" f=\"AMCTheatres.xml\"><securecookie host=\"^(?:www)?\\.amctheatres\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?amctheatres\\.com/\" to=\"https://www.amctheatres.com/\"/></ruleset>", "<ruleset name=\"AMI.com\" f=\"AMI.com.xml\"><securecookie host=\"^(?:www\\.)?ami\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AMMEC.de\" default_off=\"self-signed\" f=\"AMMEC.de.xml\"><securecookie host=\"^ammec\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ammec\\.de/\" to=\"https://ammec.de/\"/></ruleset>", "<ruleset name=\"AMS.org\" f=\"AMS.org.xml\"><exclusion pattern=\"^http://www\\.ams\\.org/$\"/><rule from=\"^http://www\\.ams\\.org/(css|images|js|journals|mathmoments)/\" to=\"https://www.ams.org/$1/\"/><rule from=\"^http://www\\.ams\\.org/(animated_favicon1\\.gif|favicon\\.ico)\" to=\"https://www.ams.org/$1\"/><rule from=\"^http://ams\\.org/\" to=\"https://ams.org/\"/><rule from=\"^http://(amsweb|attach|surveys)\\.ams\\.org/\" to=\"https://$1.ams.org/\"/></ruleset>", "<ruleset name=\"AMSl.com\" f=\"AMSl.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AM Best.com (partial)\" f=\"AM_Best.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AMetSoc.org (partial)\" f=\"AMetSoc.org.xml\"><exclusion pattern=\"^http://(?:www\\.)?ametsoc\\.org/(?!favicon\\.ico|.+(?:css|gif|jpg|png)(?:$|\\?))\"/><exclusion pattern=\"^http://annual\\.ametsoc\\.org/(?!\\d{4}/includes/|cssfiles/|includes/)\"/><exclusion pattern=\"^http://bookstore\\.ametsoc\\.org/(?!(?:cart|user/login)(?:$|\\?)|sites/)\"/><exclusion pattern=\"^http://journals\\.ametsoc\\.org/(?!action/showLogin|favicon\\.ico|na101/home/literatum/publisher/\\w+/journals/|templates/|userimages/)\"/><rule from=\"^http://((?:annual|bookstore|journals|shib|www)\\.)?ametsoc\\.org/\" to=\"https://$1ametsoc.org/\"/></ruleset>", "<ruleset name=\"AMoAd.com\" f=\"AMoAd.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ANB\" f=\"ANB.xml\"><rule from=\"^http://anb\\.com\\.sa/\" to=\"https://www.anb.com.sa/\"/><rule from=\"^http://(e|ebusiness|onlinebanking|www)\\.anb\\.com\\.sa/\" to=\"https://$1.anb.com.sa/\"/></ruleset>", "<ruleset name=\"ANXBTC.com\" f=\"ANXBTC.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?anxbtc\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ANZ (partial)\" f=\"ANZ.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://(businessadvice|social)\\.anz\\.com/\" to=\"https://www.$1.anz.com/\"/><rule from=\"^http://info\\.anz\\.com/\" to=\"https://infos.anz.com/\"/><rule from=\"^http://www\\.nz\\.anz\\.com/\" to=\"https://www.anz.co.nz/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AOE.com (partial)\" f=\"AOE.com.xml\"><rule from=\"^http://(www\\.)?aoe\\.com/(?=$|\\?|en/*(?:$|\\?)|en/press/press-contact\\.html|fileadmin/|typo3conf/|typo3temp/|uploads/)\" to=\"https://$1aoe.com/\"/><rule from=\"^http://cdn1\\.aoe\\.com/\" to=\"https://d1bxvq8g6qmzaf.cloudfront.net/\"/><rule from=\"^http://cdn2\\.aoe\\.com/\" to=\"https://dgpnghoac0a43.cloudfront.net/\"/></ruleset>", "<ruleset name=\"AOK.de\" default_off=\"failed ruleset test\" f=\"AOK.de.xml\"><securecookie host=\"aok\\.de$\" name=\".+\"/><securecookie host=\"aokplus-online\\.de$\" name=\".+\"/><rule from=\"^http://aok\\.de/\" to=\"https://www.aok.de/\"/><rule from=\"^http://www\\.familie\\.aok\\.de/\" to=\"https://familie.aok.de/\"/><rule from=\"^http://www\\.familie\\.(bw|bayern|bremen|hessen|niedersachsen|nordost|nordwest|plus|rh|rps|san)\\.aok\\.de/\" to=\"https://familie.$1.aok.de/\"/><rule from=\"^http://aokplus-online\\.de/\" to=\"https://www.aokplus-online.de/\"/><rule from=\"^http://aok-gesundheitspartner\\.de/\" to=\"https://www.aok-gesundheitspartner.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Atwola.com\" default_off=\"failed ruleset test\" f=\"AOL-Advertising.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AOL (mismatches)\" default_off=\"mismatched\" f=\"AOL-mismatches.xml\"><rule from=\"^http://(?:www\\.)?blogsmithmedia\\.com/corp\\.aol\\.com/media/([\\w\\-\\.]+)\\.css(\\?v=\\d)?$\" to=\"https://www.blogsmithmedia.com/corp.aol.com/media/$1.css$2\"/><rule from=\"^http://(?:www\\.)?blogsmithmedia\\.com/translogic\\.aolautos\\.com/media/\" to=\"https://translogic.aolautos.com/media/\"/><rule from=\"^http://an\\.tacoda\\.net/\" to=\"https://an.tacoda.net/\"/></ruleset>", "<ruleset name=\"AOL.co.uk (partial)\" default_off=\"failed ruleset test\" f=\"AOL.co.uk.xml\"><exclusion pattern=\"^http://uktools\\.aol\\.co\\.uk/(?!media/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AOL.com (partial)\" default_off=\"failed ruleset test\" f=\"AOL.xml\"><exclusion pattern=\"^http://my\\.screenname\\.aol\\.com/_cqr/logout/\"/><securecookie host=\"^\\.\" name=\"^(?:_ga|optimizely)\"/><securecookie host=\"^(?:dev\\.sandbox\\.autos|new)\\.aol\\.com$\" name=\".\"/><rule from=\"^http://a(s|t)\\.on\\.aol\\.com/\" to=\"https://$1.on.aol.com/\"/><rule from=\"^http://support\\.on\\.aol\\.com/\" to=\"https://support.aolonnetwork.com/\"/><rule from=\"^http://expapi\\.oscar\\.aol\\.com/\" to=\"https://api.oscar.aol.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AOL CDN.com (mismatched)\" default_off=\"mismatched\" f=\"AOL_CDN.com-problematic.xml\"><rule from=\"^http://(?:vivad\\.)?aolcdn\\.com/\" to=\"https://www.aolcdn.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AOL CDN.com\" f=\"AOL_CDN.com.xml\"><rule from=\"^http://o3\\.aolcdn\\.com/\" to=\"https://s.aolcdn.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AOL On Network.com (partial)\" default_off=\"failed ruleset test\" f=\"AOL_On_Network.com.xml\"><securecookie host=\"^console\\.aolonnetwork\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AOL Platforms.com\" f=\"AOL_Platforms.com.xml\"><rule from=\"^http://aolplatforms\\.com/\" to=\"https://www.aolplatforms.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AOptix\" default_off=\"mismatch, self-signed\" f=\"AOptix.xml\"><rule from=\"^http://(?:www\\.)?aoptix\\.com(?::7081)?/\" to=\"https://www.aoptix.com/\"/></ruleset>", "<ruleset name=\"APA.org (partial)\" platform=\"mixedcontent\" f=\"APA.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"APAN.net (partial)\" f=\"APAN.net.xml\"><securecookie host=\"^(?:master\\.|www\\.)?apan\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"APAN.org (partial)\" default_off=\"failed ruleset test\" f=\"APAN.org.xml\"><securecookie host=\"^(?:\\w+\\.)?apan\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"APC Magazine\" default_off=\"refused\" f=\"APC-Magazine.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?apcmag\\.com/\" to=\"https://apcmag.com/\"/></ruleset>", "<ruleset name=\"API Analytics.com\" f=\"API_Analytics.com.xml\"><securecookie host=\"^\\.apianalytics\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"APM.com\" default_off=\"failed ruleset test\" f=\"APM.com.xml\"><securecookie host=\"^(?:myapm|www)\\.apm\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Associated Press News\" f=\"APNews.com.xml\"><securecookie host=\"^(www\\.)?apnews\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"APO Box.com\" f=\"APO_Box.com.xml\"><securecookie host=\"^\\.apobox\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?apobox\\.com/\" to=\"https://$1apobox.com/\"/><rule from=\"^http://support\\.apobox\\.com/(?=favicon\\.ico|generated/|images/|system/)\" to=\"https://apobox.zendesk.com/\"/></ruleset>", "<ruleset name=\"APS Jobs.gov.au\" f=\"APSJobs.xml\"><rule from=\"^http://apsjobs\\.gov\\.au/\" to=\"https://www.apsjobs.gov.au/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AP Schedule.com\" f=\"AP_Schedule.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AR15.com\" f=\"AR15.com.xml\"><securecookie host=\"^\\.ar15\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ARIN.net (partial)\" default_off=\"failed ruleset test\" f=\"ARIN.net.xml\"><securecookie host=\"^(?:updown-pilot\\.|w*\\.)?arin\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ARM.com (problematic)\" default_off=\"expired, mismatched, self-signed\" f=\"ARM.com-problematic.xml\"><securecookie host=\"^(?:i|malidevelope)r\\.arm\\.com$\" name=\".+\"/><rule from=\"^http://(i|malidevelope)r\\.arm\\.com/\" to=\"https://$1r.arm.com/\"/></ruleset>", "<ruleset name=\"ARM (partial)\" f=\"ARM.xml\"><securecookie host=\"^(?:cmsis|(?:apps\\.)?community(?:-uat)?|login)\\.arm\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?arm\\.com/(?=css/|images/)\" to=\"https://cmsis.arm.com/\"/><rule from=\"^http://(cmsis|(?:apps\\.)?community(?:-uat)?|login|silver)\\.arm\\.com/\" to=\"https://$1.arm.com/\"/></ruleset>", "<ruleset name=\"ARM servers\" f=\"ARMservers.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ARPNetworks.com (partial)\" f=\"ARPNetworks.com.xml\"><securecookie host=\"^(?:.*\\.)?arpnetworks\\.com$\" name=\".*\"/><rule from=\"^http://(portal\\.|www\\.)?arpnetworks\\.com/\" to=\"https://$1arpnetworks.com/\"/><rule from=\"^http://support\\.arpnetworks\\.com/(help|pkg|stylesheets)/\" to=\"https://asset-2.tenderapp.com/$1/\"/></ruleset>", "<ruleset name=\"ARRL (partial)\" f=\"ARRL.xml\"><rule from=\"^http://(www\\.)?arrl\\.org/(?=css/|favicon\\.ico|img/|shop(?:$|[?/]))\" to=\"https://$1arrl.org/\"/></ruleset>", "<ruleset name=\"AS112.net\" f=\"AS112.net.xml\"><rule from=\"^http://as112\\.net/\" to=\"https://www.as112.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ASACP.org\" f=\"ASACP.org.xml\"><securecookie host=\"^www\\.asacp\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Australian Sports Anti-Doping Authority\" f=\"ASADA.xml\"><rule from=\"^http://(?:www\\.)?asada\\.gov\\.au/\" to=\"https://www.asada.gov.au/\"/></ruleset>", "<ruleset name=\"ASC Trust.com\" f=\"ASC_Trust.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ASDA.com (partial)\" default_off=\"failed ruleset test\" f=\"ASDA.xml\"><exclusion pattern=\"^http://direct\\.asda\\.com/(?!/*on/demandware.store/Sites-ASDA-Site/default/(?:Login-Show|NewsletterSignup-Form|Order-Track)(?:$|[?/]))\"/><securecookie host=\"^\\.\" name=\"^(?:__cfduid$|_gat?$|_gat_|optimizely|s_v)\"/><securecookie host=\"^(?!direct\\.).+\\.asda\\.com$\" name=\".\"/><rule from=\"^http://credit-card\\.asda\\.com/\" to=\"https://apply.creation.co.uk/\"/><rule from=\"^http://omniture\\.groceries\\.asda\\.com/\" to=\"https://groceries.asda.com.d2.sc.omtrdc.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ASIC\" f=\"ASIC.xml\"><rule from=\"^http://(?:www\\.)?asic\\.gov\\.au/\" to=\"https://www.asic.gov.au/\"/><rule from=\"^http://(?:www\\.)?insolvencynotices\\.asic\\.gov\\.au/\" to=\"https://insolvencynotices.asic.gov.au/\"/></ruleset>", "<ruleset name=\"ASI robots.com\" f=\"ASI_robots.com.xml\"><securecookie host=\"^\\.asirobots\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ASL19.org\" f=\"ASL19.org.xml\"><securecookie host=\"^\\.asl19\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ASN Bank.nl (problematic)\" default_off=\"mismatched\" f=\"ASN_Bank.nl-problematic.xml\"><securecookie host=\"^nieuws\\.asnbank\\.nl$\" name=\".+\"/><rule from=\"^http://nieuws\\.asnbank\\.nl/\" to=\"https://nieuws.asnbank.nl/\"/></ruleset>", "<ruleset name=\"ASN Bank.nl (partial)\" f=\"ASN_Bank.nl.xml\"><securecookie host=\"^\\.www\\.asnbank\\.nl$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?asnbank\\.nl/\" to=\"https://www.asnbank.nl/\"/></ruleset>", "<ruleset name=\"ASP.NET (partial)\" f=\"ASP.NET.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ASPNETcdn.com\" f=\"ASPNETcdn.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ASPPlayground.NET\" f=\"ASPPlayground.NET.xml\"><securecookie host=\"^www\\.aspplayground\\.net$\" name=\".+\"/><rule from=\"^http://aspplayground\\.net/\" to=\"https://www.aspplayground.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ASUS.com (false MCB)\" platform=\"mixedcontent\" f=\"ASUS.com-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ASUS.com (partial)\" f=\"ASUS.xml\"><exclusion pattern=\"^http://rog\\.asus\\.com/+(?!wp-content/)\"/><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://autodiscover\\.asus\\.com/.*\" to=\"https://mymail.asus.com/owa/\"/><rule from=\"^http://shop\\.asus\\.com/\" to=\"https://eshop.asus.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ATBank\" f=\"ATBank.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ATG Web Commerce\" f=\"ATG_Web_Commerce.xml\"><securecookie host=\"^[gr]s\\.instantservice\\.com$\" name=\".+\"/><rule from=\"^http://(g|r)s\\.instantservice\\.com/\" to=\"https://$1s.instantservice.com/\"/></ruleset>", "<ruleset name=\"ATNAME\" default_off=\"mismatched\" f=\"ATNAME.xml\"><rule from=\"^http://(?:www\\.)?atname\\.ru/\" to=\"https://atname.ru/\"/></ruleset>", "<ruleset name=\"ATS.aq (partial)\" f=\"ATS.aq.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ATV.hu (partial)\" default_off=\"failed ruleset test\" f=\"ATV.hu.xml\"><rule from=\"^http://static\\.atv\\.hu/\" to=\"https://static.atv.hu/\"/></ruleset>", "<ruleset name=\"AT Internet Solutions\" f=\"AT_Internet_Solutions.xml\"><securecookie host=\"^www\\.atinternet-solutions\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?atinternet-solutions\\.com/\" to=\"https://www.atinternet-solutions.com/\"/></ruleset>", "<ruleset name=\"AT&T (partial)\" f=\"ATandT.xml\"><securecookie host=\"^.*\\.att\\.com$\" name=\".+\"/><rule from=\"^http://((?:connect|www\\.corp|cprodmasx|developer|www\\.e-access|forums|localization|networkingexchangeblog|rewardcenter|smb|trial\\.uc|ufix|uversecentral\\d|webhosting|www\\.wireless|www)\\.)?att\\.com/\" to=\"https://$1att.com/\"/><rule from=\"^http://(?:www\\.)?business\\.att\\.com/(?:enterprise/)?(?:\\?.*)?$\" to=\"https://www.att.com/gen/landing-pages?pid=9214\"/><rule from=\"^http://wireless\\.att\\.com/($|\\?)\" to=\"https://www.att.com/shop/wireless/$1\"/><rule from=\"^http://(\\d)\\.ecom\\.attccc\\.com/\" to=\"https://$1.ecom.attccc.com/\"/></ruleset>", "<ruleset name=\"ATbar (partial)\" f=\"ATbar.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"aTech.io\" default_off=\"failed ruleset test\" f=\"ATech.io.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://(?:www\\.)?atech\\.io/\" to=\"https://atechmedia.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"aTech Media.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"ATech_Media.com-falsemixed.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"aTech Media.com (partial)\" f=\"ATech_Media.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://www\\.atechmedia\\.com/\" to=\"https://atechmedia.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ATrpms.net\" default_off=\"self-signed\" f=\"ATrpms.net.xml\"><rule from=\"^http://(?:www\\.)?atrpms\\.net/\" to=\"https://atrpms.net/\"/></ruleset>", "<ruleset name=\"AV-Comparatives\" default_off=\"mismatched, self-signed\" f=\"AV-Comparatives.xml\"><securecookie host=\"^av-comparatives\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?av-comparatives\\.org/\" to=\"https://av-comparatives.org/\"/></ruleset>", "<ruleset name=\"AVG.com (partial)\" f=\"AVG.com.xml\"><securecookie host=\"^(?:\\w+\\.)?inst\\.avg\\.com$\" name=\".+\"/><rule from=\"^http://(\\w+\\.)?inst\\.avg\\.com/\" to=\"https://$1inst.avg.com/\"/></ruleset>", "<ruleset name=\"AVON.cz\" default_off=\"failed ruleset test\" f=\"AVON.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AWSInsider.net\" f=\"AWSInsider.net.xml\"><securecookie host=\"^awsinsider\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AWS Trust.com\" f=\"AWS_Trust.com.xml\"><rule from=\"^http://awstrust\\.com/([^?]*).*\" to=\"https://www.amazontrust.com/$1\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AWcloud.net\" f=\"AWcloud.net.xml\"><rule from=\"^http://(projecta|stats)\\.awcloud\\.net/\" to=\"https://$1.awcloud.net/\"/></ruleset>", "<ruleset name=\"AWeber Communications (partial)\" f=\"AWeber-Communications.xml\"><securecookie host=\"^(?:forms|help|labs)\\.aweber\\.com$\" name=\".+\"/><rule from=\"^http://(forms|help|labs)\\.aweber\\.com/\" to=\"https://$1.aweber.com/\"/></ruleset>", "<ruleset name=\"AWeber (partial)\" f=\"AWeber.xml\"><exclusion pattern=\"^http://(?:www\\.)?aweber\\.com/(?!assets/|banners/|blog(?:$|[?/])|(?:(?:contact-us|login|order|signup)\\.htm)(?:$|\\?)|favicon\\.ico|images/|img/)\"/><securecookie host=\"^(?:\\.?forms|help|labs)\\.aweber\\.com$\" name=\".+\"/><securecookie host=\".*\\.aweber-static\\.com$\" name=\".+\"/><rule from=\"^http://status\\.aweber\\.com/\" to=\"https://aweber.statuspage.io/\"/><rule from=\"^http://((?:analytics|blog|engineering|forms|help|labs|www)\\.)?aweber\\.com/\" to=\"https://$1aweber.com/\"/><rule from=\"^http://cdn([1-5])\\.aweber-static\\.com/\" to=\"https://cdn$1.weber-static.com/\"/><rule from=\"^http://hostedimages\\.aweber-static\\.com/\" to=\"https://s3.amazonaws.com/hostedimages.aweber-static.com/\"/></ruleset>", "<ruleset name=\"AXA (partial)\" default_off=\"failed ruleset test\" f=\"AXA.xml\"><securecookie host=\"^creativegallery\\.axa\\.com$\" name=\".+\"/><rule from=\"^http://creativegallery\\.axa\\.com/\" to=\"https://creativegallery.axa.com/\"/></ruleset>", "<ruleset name=\"AXA Winterthur\" f=\"AXA_Winterthur.xml\"><rule from=\"^http://axa-winterthur\\.ch/\" to=\"https://www.axa-winterthur.ch/\"/><rule from=\"^http://([^/:@]+)?\\.axa-winterthur\\.ch/\" to=\"https://$1.axa-winterthur.ch/\"/></ruleset>", "<ruleset name=\"AZHCA.org\" f=\"AZHCA.org.xml\"><securecookie host=\"^(?:www)?\\.azhca\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?azhca\\.org/\" to=\"https://www.azhca.org/\"/></ruleset>", "<ruleset name=\"A 1000 Words.com\" f=\"A_1000_Words.com.xml\"><securecookie host=\"^\\.a1000words\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?a1000words\\.com/\" to=\"https://www.a1000words.com/\"/></ruleset>", "<ruleset name=\"A Bigger Society.com\" default_off=\"522\" f=\"A_Bigger_Society.com.xml\"><securecookie host=\"^(?:w*\\.)?abiggersociety\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"A+ Flint River Ranch\" default_off=\"failed ruleset test\" f=\"A_Plus_Flint_River_Ranch.xml\"><securecookie host=\"^\\.www\\.aplus-flint-river-ranch\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?aplus-flint-river-ranch\\.com/\" to=\"https://$1aplus-flint-river-ranch.com/\"/><rule from=\"^http://cats\\.aplus-flint-river-ranch\\.com/(?:\\?.*)?$\" to=\"https://www.aplus-flint-river-ranch.com/index-cat.php?\"/></ruleset>", "<ruleset name=\"A Voice for Men.com\" f=\"A_Voice_for_Men.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"A Weird Imagination.net\" f=\"A_Weird_Imagination.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aalborg University (partial)\" f=\"Aalborg_University.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aalto.fi (partial)\" default_off=\"failed ruleset test\" f=\"Aalto.fi.xml\"><exclusion pattern=\"^http://artcoordination\\.aalto\\.fi/(?!fi/midcom-serveattachmentguid-)\"/><securecookie host=\"^\\.aalto\\.fi$\" name=\"^(?:incap_ses_\\d+|visid_incap)_\\d+$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://mathsys\\.aalto\\.fi/\" to=\"https://math.aalto.fi/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"aan.sh\" default_off=\"failed ruleset test\" f=\"Aan.sh.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aarhus.dk\" f=\"Aarhus.dk.xml\"><securecookie host=\"^www\\.aarhus\\.dk$\" name=\".+\"/><rule from=\"^http://(www\\.)?aarhus\\.dk/\" to=\"https://www.aarhus.dk/\"/></ruleset>", "<ruleset name=\"Aaron Brothers\" f=\"Aaron_Brothers.xml\"><securecookie host=\"^(?:w*\\.)?aaronbrotherscircular.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aaron D Campbell.com\" f=\"Aaron_D_Campbell.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aaron Lindsay.com\" default_off=\"expired\" f=\"Aaron_Lindsay.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aaronparecki.com\" f=\"Aaronparecki.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aart de Vos (partial)\" f=\"Aart_de_Vos.xml\"><rule from=\"^http://(www\\.)?aartdevos\\.dk/(_css/|file/|_grafix/|konto(?:$|\\?|/))\" to=\"https://$1aartdevos.dk/$2\"/></ruleset>", "<ruleset name=\"aaspring.com\" f=\"Aaspring.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aastatus.net\" default_off=\"failed ruleset test\" f=\"Aastatus.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aaulan.dk\" default_off=\"failed ruleset test\" f=\"Aaulan.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Abacus.com (partial)\" f=\"Abacus.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Abbo-shop.ch\" default_off=\"redirect to http\" f=\"Abbo-Shop.xml\"><securecookie host=\"^(?:.*\\.)?abbo-shop\\.ch$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Abbott Laboratories\" default_off=\"failed ruleset test\" f=\"Abbott-Laboratories.xml\"><securecookie host=\"^(?:www\\.)?abbott\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"abc.xyz\" f=\"Abc.xyz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AbcLinuxu.cz\" f=\"AbcLinuxu.cz.xml\"><securecookie host=\"^(?:w*\\.)?abclinuxu\\.cz$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Abdn.ac.uk (partial)\" f=\"Abdn.ac.uk.xml\"><rule from=\"^http://(?:www\\.)?abdn\\.ac\\.uk/\" to=\"https://www.abdn.ac.uk/\"/></ruleset>", "<ruleset name=\"Abdullah-ocalan.com\" platform=\"mixedcontent\" f=\"Abdullah-ocalan.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Abdussamad.com\" f=\"Abdussamad.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AbeBooks.co.uk (partial)\" f=\"AbeBooks.co.uk.xml\"><exclusion pattern=\"^http://www\\.abebooks\\.co\\.uk/(?!(?:affiliate-programme|bestbuys|customer-support|sell-books)/?(?:$|\\?)|docs/|favicon\\.ico|images/|servlet/(?:CSActionRequest|LoginDirector|SignOn|SignOnPL)(?:$|\\?))\"/><rule from=\"^http://abebooks\\.co\\.uk/\" to=\"https://www.abebooks.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AbeBooks.com (partial)\" f=\"AbeBooks.xml\"><exclusion pattern=\"^http://www\\.abebooks\\.com/(?!(?:bestbuys|careers|customer-support|help)/?(?:$|\\?)|docs/|favicon\\.ico|images/|servlet/(?:CSActionRequest|LoginDirector|SignOn|SignOnPL)(?:$|\\?))\"/><rule from=\"^http://abebooks\\.com/\" to=\"https://www.abebooks.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AbenteuerLand.at (partial)\" f=\"AbenteuerLand.at.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AberdeenMosque.org\" f=\"AberdeenMosque.org.xml\"><securecookie host=\"^(www|qa)\\.aberdeenmosque\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aberdeen City.gov.uk (false MCB)\" platform=\"mixedcontent\" f=\"Aberdeen_City.gov.uk-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aberdeen City.gov.uk (partial)\" f=\"Aberdeen_City.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aberdeenshire.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"Aberdeenshire.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:host1\\.)?aberdeenshire\\.gov\\.uk/\" to=\"https://www.aberdeenshire.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aberystwyth University (partial)\" default_off=\"failed ruleset test\" f=\"Aberystwyth-University.xml\"><securecookie host=\"^www\\.aber\\.ac\\.uk$\" name=\".+\"/><securecookie host=\"^careers\\.aber\\.ac\\.uk$\" name=\".+\"/><securecookie host=\"^jobs\\.aber\\.ac\\.uk$\" name=\".+\"/><securecookie host=\"^myaccount\\.aber\\.ac\\.uk$\" name=\".+\"/><rule from=\"^http://aber\\.ac\\.uk/\" to=\"https://www.aber.ac.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"abftracker.com\" f=\"Abftracker.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Abhayagiri Buddhist Monastery\" f=\"Abhayagiri.org.xml\"><securecookie host=\"^www\\.abhayagiri\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Abila.com\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Abila.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Abine.com\" f=\"Abine.xml\"><securecookie host=\"^(?:w*\\.)?abine\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AbleGamers\" f=\"AbleGamers.xml\"><securecookie host=\"^www\\.ablegamers\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Abosgratis.de\" f=\"Abosgratis.de.xml\"><rule from=\"^http://(?:www\\.)?abosgratis\\.de/\" to=\"https://www.abosgratis.de/\"/></ruleset>", "<ruleset name=\"About Ads (partial)\" default_off=\"failed ruleset test\" f=\"About-Ads.xml\"><exclusion pattern=\"^http://(www\\.)?aboutads\\.info/choices/\"/><exclusion pattern=\"^http://(www\\.)?aboutads\\.info/actionlog/post/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AboutMe\" f=\"AboutMe.xml\"><securecookie host=\"^(?:.*\\.)?about.me$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AboutUs (problematic)\" default_off=\"expired\" f=\"AboutUs-problematic.xml\"><rule from=\"^http://(www\\.)?aboutus\\.org/(favicon\\.ico|Special/)\" to=\"https://$1aboutus.org/$2\"/></ruleset>", "<ruleset name=\"AboutUs (partial)\" platform=\"mixedcontent\" f=\"AboutUs.xml\"><rule from=\"^http://static\\.aboutus\\.org/\" to=\"https://s3.amazonaws.com/au-site-static-assets/\"/></ruleset>", "<ruleset name=\"About My Vote.co.uk\" f=\"About_My_Vote.co.uk.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://aboutmyvote\\.co\\.uk/\" to=\"https://www.aboutmyvote.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"About the Data.com\" f=\"About_the_Data.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Above.com (partial)\" f=\"Above.com.xml\"><securecookie host=\"^(?:www\\.)?above\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Absolute Software\" default_off=\"failed ruleset test\" f=\"Absolute.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Abuse.ch\" f=\"Abuse.ch.xml\"><securecookie host=\".*\\.abuse\\.ch$\" name=\".+\"/><rule from=\"^http://(sslbl|spyeyetracker|www|zeustracker)\\.abuse\\.ch/\" to=\"https://$1.abuse.ch/\"/></ruleset>", "<ruleset name=\"AbuseIPDB.com\" f=\"AbuseIPDB.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"abusix.com\" f=\"Abusix.com.xml\"><rule from=\"^http://((?:abusehq|blackholemx|leakdb|spamfeedme|www)\\.)?abusix\\.com/\" to=\"https://$1abusix.com/\"/></ruleset>", "<ruleset name=\"abysmal.nl\" default_off=\"failed ruleset test\" f=\"Abysmal.nl.xml\"><securecookie host=\"^\\.abysmal.nl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Academia Press\" default_off=\"expired, self-signed\" f=\"Academia-Press.xml\"><securecookie host=\"^(?:.*\\.)?academiapress\\.be$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?academiapress\\.be/\" to=\"https://www.academiapress.be/\"/></ruleset>", "<ruleset name=\"Academia-assets.com\" f=\"Academia-assets.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Academia.edu (partial)\" f=\"Academia.edu.xml\"><exclusion pattern=\"^http://support\\.academia\\.edu/\"/><exclusion pattern=\"^http://mail\\.academia\\.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"academics.de\" default_off=\"failed ruleset test\" f=\"Academics.de.xml\"><securecookie host=\"^(?:www)?\\.academics\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Academy of Model Aeronautics (partial)\" f=\"Academy-of-Model-Aeronautics.xml\"><securecookie host=\"^(?:www\\.)?modelaircraft\\.org$\" name=\".*\"/><rule from=\"^http://modelaircraft\\.org/\" to=\"https://modelaircraft.org/\"/><rule from=\"^http://www\\.modelaircraft\\.org/(advertising/|(?:clubsearch|hobbyshopsearch|joinrenew|ping|shopama/dept)\\.ashx|(?:fil|imag|templat|UserFil)es/|forums/)\" to=\"https://www.modelaircraft.org/$1\"/></ruleset>", "<ruleset name=\"Acalog\" f=\"Acalog.xml\"><securecookie host=\".+\\.acalogadmin\\.com$\" name=\".+\"/><rule from=\"^http://([\\w-]+)\\.acalogadmin\\.com/\" to=\"https://$1.acalogadmin.com/\"/></ruleset>", "<ruleset name=\"Accellion\" platform=\"mixedcontent\" f=\"Accellion.xml\"><securecookie host=\"^(?:.*\\.)accellion\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Accenture\" f=\"Accenture.com.xml\"><rule from=\"^http://beacon4\\.abba\\.accenture\\.com/\" to=\"https://beacon4.abba.accenture.com/\"/></ruleset>", "<ruleset name=\"Acceptiva.com (partial)\" f=\"Acceptiva.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"access-kaiseki-tools.com\" f=\"Access-kaiseki-tools.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AccessGuardian.com\" default_off=\"failed ruleset test\" f=\"AccessGuardian.com.xml\"><securecookie host=\"^(?:www\\.)?accessguardian\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AccessNow.org\" f=\"AccessNow.xml\"><securecookie host=\".*\\.accessnow\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AccessPress Themes.com\" f=\"AccessPress_Themes.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AccessPrivacy.ca\" default_off=\"failed ruleset test\" f=\"AccessPrivacy.ca.xml\"><securecookie host=\"^(?:w*\\.)?accessprivacy\\.ca$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Access Office Products\" default_off=\"failed ruleset test\" f=\"Access_Office_Products.xml\"><securecookie host=\"^\\.accessofficeproducts\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Access Privacy.com\" f=\"Access_Privacy.com.xml\"><securecookie host=\"^(?:w*\\.)?accessprivacy\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Accessibility.nl\" f=\"AccessibilityNL.xml\"><rule from=\"^http://(?:www\\.)?accessibility\\.nl/\" to=\"https://www.accessibility.nl/\"/></ruleset>", "<ruleset name=\"Accessible Information Management (gunadiframework.com)\" default_off=\"failed ruleset test\" f=\"Accessible-Information-Management.xml\"><securecookie host=\"^(?:(?:[a-zA-Z0-9\\-]*)\\.)?gunadiframework.com$\" name=\".+\"/><rule from=\"^http://gunadiframework\\.com/\" to=\"https://gunadiframework.com/\"/><rule from=\"^http://([a-zA-Z0-9\\-]+)\\.gunadiframework\\.com/\" to=\"https://$1.gunadiframework.com/\"/></ruleset>", "<ruleset name=\"Accessorize (partial)\" f=\"Accessorize.xml\"><rule from=\"^http://uk\\.accessorize\\.com/(medias/|monsoon/|registerSession\\.gif)\" to=\"https://uk.accessorize.com/$1\"/></ruleset>", "<ruleset name=\"accesstrade.net (partial)\" f=\"Accesstrade.net.xml\"><securecookie host=\"^member\\.accesstrade\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Accordance Bible.com (partial)\" f=\"Accordance_Bible.com.xml\"><securecookie host=\"^\\.accordancebible\\.com$\" name=\"^(?:__utm\\w+|newsession_id)$\"/><rule from=\"^http://(www\\.)?accordancebible\\.com/(?=archive/|(?:custom_)?content/|errors/|files/|(?:forums|site/thirdparty|store/(?:checkout_info|gift_card))(?:$|[?/])|thirdparty/)\" to=\"https://$1accordancebible.com/\"/></ruleset>", "<ruleset name=\"account3000.com\" f=\"Account3000.com.xml\"><securecookie host=\"^(?:www\\.)?account3000\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AccountKiller.com\" f=\"AccountKiller.com.xml\"><securecookie host=\"^www\\.accountkiller\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AccountSupport.com\" f=\"AccountSupport.com.xml\"><securecookie host=\"^\\.accountsupport\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Account Chooser\" f=\"Account_Chooser.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Account Online.com\" f=\"Account_Online.com.xml\"><securecookie host=\"^(?:\\.?www)?\\.accountonline\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?accountonline\\.com/(\\?.*)?$\" to=\"https://creditcards.citi.com/$1\"/><rule from=\"^http://(?:www\\.)?accountonline\\.com/\" to=\"https://www.accountonline.com/\"/></ruleset>", "<ruleset name=\"accountservergroup.com\" f=\"Accountservergroup.com.xml\"><rule from=\"^http://(?!www\\.)([\\w-]+)\\.accountservergroup\\.com/\" to=\"https://$1accountservergroup.com/\"/></ruleset>", "<ruleset name=\"Accredible.com\" f=\"Accredible.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^__utm\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AccuWeather (partial)\" default_off=\"failed ruleset test\" f=\"AccuWeather.xml\"><securecookie host=\"^enterpriseportal\\.accuweather\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Accuen (problematic)\" default_off=\"refused\" f=\"Accuen-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Accuen (partial)\" default_off=\"refused\" f=\"Accuen.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Accuvant.com\" default_off=\"failed ruleset test\" f=\"Accuvant.com.xml\"><securecookie host=\"^(?:www)?\\.accuvant\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?accuvant\\.com/\" to=\"https://$1accuvant.com/\"/><rule from=\"^http://blog\\.accuvant\\.com/\" to=\"https://blog.accuvant.com/\"/><rule from=\"^http://files\\.accuvant\\.com/\" to=\"https://accuvantstorage.blob.core.windows.net/\"/></ruleset>", "<ruleset name=\"ace-analyzer.com\" f=\"Ace-analyzer.com.xml\"><securecookie host=\"^(?:www\\.)?ace-analyzer\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ace Hotel.com (partial)\" f=\"Ace_Hotel.com.xml\"><exclusion pattern=\"^http://shop\\.acehotel\\.com/+(?!media/)\"/><securecookie host=\"^www\\.acehotel\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Acenet (partial)\" f=\"Acenet.xml\"><exclusion pattern=\"http://billing\\.ace-host\\.net/(?:announcements|index)\\.php$\"/><exclusion pattern=\"http://(?:demos|testimonials)\\.ace-host\\.net/\"/><securecookie host=\"^(?:.*\\.)?ace-host\\.net$\" name=\".*\"/><securecookie host=\"^(?:.*\\.)?acenet-inc\\.net$\" name=\".*\"/><rule from=\"^http://(\\w+\\.)?ace-host\\.net/\" to=\"https://$1ace-host.net/\"/><rule from=\"^http://(www\\.)?ace-net\\.net/\" to=\"https://$1ace-host.net/\"/><rule from=\"^http://(billing|esupport|warthog)\\.acenet-inc\\.net/\" to=\"https://$1.acenet-inc.net/\"/></ruleset>", "<ruleset name=\"Acessa\" f=\"Acessa.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"acessoseguro.net\" f=\"Acessoseguro.net.xml\"><securecookie host=\".+\\.acessoseguro\\.net$\" name=\".+\"/><rule from=\"^http://([\\w-]+)\\.acessoseguro\\.net/\" to=\"https://$1.acessoseguro.net/\"/></ruleset>", "<ruleset name=\"Achievementstats.com\" f=\"Achievementstats.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Acik Akademi.com\" f=\"Acik_Akademi.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://acikakademi\\.com/\" to=\"https://www.acikakademi.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Acorns.com (partial)\" f=\"Acorns.com.xml\"><rule from=\"^http://(?:www\\.)?acorns\\.com/\" to=\"https://www.acorns.com/\"/></ruleset>", "<ruleset name=\"AcoustID.org\" f=\"AcoustID.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Acoustics.org\" default_off=\"failed ruleset test\" f=\"Acoustics.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Acquia\" f=\"Acquia.xml\"><securecookie host=\"^.*\\.acquia\\.com$\" name=\".+\"/><rule from=\"^http://((?:api|docs|insight|library|network|showcase|www)\\.)?acquia\\.com/\" to=\"https://$1acquia.com/\"/></ruleset>", "<ruleset name=\"Acro Media (partial)\" f=\"Acro-Media.xml\"><rule from=\"^http://(?:www\\.)?acromediainc\\.com/(acronet|careers|co(?:ntact|ntent-management|nversion-calculator)|drupal-development|news(?:/|letter/|-articles)|ongoing-(?:services|marketing)|privacy-policy|process|sites/|strategy-planning|team|uploads/)\" to=\"https://www.acromediainc.com/$1\"/></ruleset>", "<ruleset name=\"Acrobat.com\" default_off=\"failed ruleset test\" f=\"Acrobat.com.xml\"><rule from=\"^http://success\\.acrobat\\.com/+\" to=\"https://success.adobe.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Acrobat Users.com\" f=\"Acrobat_Users.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Acronis.com (partial)\" f=\"Acronis.com.xml\"><exclusion pattern=\"^http://www\\.acronis\\.com/(?!modules/|sites/|(?:\\w\\w-\\w\\w/)?(?:my|support)(?:$|[?/]))\"/><securecookie host=\"^\\.forum\\.acronis\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?acronis\\.com/\" to=\"https://www.acronis.com/\"/><rule from=\"^http://(forum|i4|kb)\\.acronis\\.com/\" to=\"https://$1.acronis.com/\"/></ruleset>", "<ruleset name=\"Acronymfinder.com\" f=\"Acronymfinder.com.xml\"><securecookie host=\"^(www\\.)?acronymfinder\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Acrylic Wifi.com\" f=\"Acrylic_Wifi.com.xml\"><securecookie host=\"^\\.(?:www\\.)?acrylicwifi\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Act-On Software (partial)\" f=\"Act-On-Software.xml\"><securecookie host=\"^(?:.*\\.)?actonsoftware\\.com$\" name=\".+\"/><rule from=\"^http://(ci\\d*\\.|mktg\\.|www\\.)?actonsoftware\\.com/\" to=\"https://$1actonsoftware.com/\"/></ruleset>", "<ruleset name=\"ActBlue (partial)\" f=\"ActBlue.xml\"><securecookie host=\"^\\.actblue\\.com$\" name=\".*\"/><rule from=\"^http://secure\\.actblue\\.com/\" to=\"https://secure.actblue.com/\"/><rule from=\"^http://(?:www|m)\\.actblue\\.com/\" to=\"https://secure.actblue.com/\"/><rule from=\"^http://i\\.actblue\\.com/\" to=\"https://s3.amazonaws.com/i.actblue.com/\"/></ruleset>", "<ruleset name=\"Actel.com\" f=\"Actel.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Action Auto Wreckers\" f=\"Action-Auto-Wreckers.xml\"><securecookie host=\"^www\\.actionautowreckers\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?actionsalvage\\.com/\" to=\"https://www.actionautowreckers.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ActionKit.com (partial)\" f=\"ActionKit.com.xml\"><exclusion pattern=\"^http://www\\.\"/><securecookie host=\"^\\w+\\.actionkit\\.com$\" name=\".+\"/><rule from=\"^http://(\\w+)\\.actionkit\\.com/\" to=\"https://$1.actionkit.com/\"/></ruleset>", "<ruleset name=\"Action Intell\" f=\"Actionable_Intelligence.xml\"><rule from=\"^http://(?:www\\.)?action-intell\\.com/\" to=\"https://www.action-intell.com/\"/></ruleset>", "<ruleset name=\"activatejavascript.org\" default_off=\"mismatched\" f=\"Activatejavascript.xml\"><securecookie host=\"^(?:.*\\.)?activatejavascript\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?activatejavascript\\.org/\" to=\"https://activatejavascript.org/\"/></ruleset>", "<ruleset name=\"Active Events (partial)\" f=\"Active-Events.xml\"><exclusion pattern=\"^http://www\\.\"/><securecookie host=\"^.+\\.activenetwork\\.com$\" name=\".+\"/><rule from=\"^http://([\\w\\-]+)\\.activeevents\\.com/\" to=\"https://$1.activeevents.com/\"/></ruleset>", "<ruleset name=\"active-srv02.de\" f=\"Active-srv02.de.xml\"><securecookie host=\"^\\.active-srv02\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Active.com (partial)\" f=\"Active.com.xml\"><securecookie host=\"^(?:(?:community|mobile|myevents|sso|sites|www)\\.)?active\\.com$\" name=\".+\"/><rule from=\"^http://((?:assets-results2|community|m|mobile|myevents|results|rolassets|sites|sso|www)\\.)?active\\.com/\" to=\"https://$1active.com/\"/><rule from=\"^http://schwaggle\\.active\\.com/help/faq/?(?=$|\\?)\" to=\"https://schwaggle.active.com/help/faq\"/><rule from=\"^http://schwaggle\\.active\\.com/content/\" to=\"https://schwaggle.active.com/content/\"/></ruleset>", "<ruleset name=\"ActiveDataX.com (partial)\" f=\"ActiveDataX.com.xml\"><securecookie host=\"^calendar\\.activedatax\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ActiveState Software (partial)\" f=\"ActiveState-Software.xml\"><securecookie host=\".*\\.activestate\\.com$\" name=\".+\"/><rule from=\"^http://((?:account|code|store|templates|www)\\.)?activestate\\.com/\" to=\"https://$1activestate.com/\"/></ruleset>", "<ruleset name=\"Active Melody.com (partial)\" f=\"Active_Melody.xml\"><exclusion pattern=\"^http://(?:www\\.)?activemelody\\.com/+(?!assets/|images/)\"/><securecookie host=\"^\\.activemelody\\.com$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Active Network.com (partial)\" f=\"Active_Network.com.xml\"><exclusion pattern=\"http://(?:www\\.)?activenetwork\\.com/+(?![Aa]ssets/(?!.+\\.css(?:$|\\?))|asset\\d+\\.aspx|favicon\\.ico|sites/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Active static.net\" default_off=\"failed ruleset test\" f=\"Active_static.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Activision\" f=\"Activision.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Activision Blizzard.com (partial)\" f=\"Activision_Blizzard.com.xml\"><rule from=\"^http://investor\\.activisionblizzard\\.com/common/\" to=\"https://investor.shareholder.com/common/\"/></ruleset>", "<ruleset name=\"Acuity Scheduling.com\" f=\"Acuity_Scheduling.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://status\\.acuityscheduling\\.com/\" to=\"https://acuityscheduling.statuspage.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Acuity platform.com\" f=\"Acuity_platform.com.xml\"><securecookie host=\"^\\.acuityplatform\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aculab.com (partial)\" f=\"Aculab.com.xml\"><securecookie host=\"^cloud\\.aculab\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Acunetix.com\" f=\"Acunetix.com.xml\"><securecookie host=\"^acunetix\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Acxiom-online.com (partial)\" default_off=\"failed ruleset test\" f=\"Acxiom-online.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Acxiom (partial)\" default_off=\"handshake fails\" f=\"Acxiom.xml\"><rule from=\"^http://(?:www\\.)?infobaselistexpress\\.com/\" to=\"https://infobaselistexpress.com/\"/></ruleset>", "<ruleset name=\"Acyba.com\" f=\"Acyba.com.xml\"><securecookie host=\"^www\\.acyba\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ad-Center.com (partial)\" f=\"Ad-Center.com.xml\"><securecookie host=\"^ads\\.ad-center\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ad-Juster (partial)\" f=\"Ad-Juster.xml\"><securecookie host=\"^tagscan\\.ad-juster\\.com$\" name=\".+\"/><rule from=\"^http://(?:tagscan\\.|www\\.)?ad-juster\\.com/\" to=\"https://ad-juster.com/\"/></ruleset>", "<ruleset name=\"Ad-Stir.com (partial)\" f=\"Ad-Stir.com.xml\"><securecookie host=\"^\\.ad-stir\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ad4Game (partial)\" f=\"Ad4Game.xml\"><securecookie host=\"\\.?ads\\.ad4game\\.com$\" name=\".*\"/><rule from=\"^http://(ads|traffic)\\.ad4game\\.com/\" to=\"https://$1.ad4game.com/\"/></ruleset>", "<ruleset name=\"ad6media (partial)\" f=\"Ad6media.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AdBit.co\" default_off=\"failed ruleset test\" f=\"AdBit.co.xml\"><securecookie host=\"^\\.?adbit\\.co$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AdBlock\" f=\"AdBlock.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AdBulter\" f=\"AdButler.xml\"><securecookie host=\"^\\.adbutler\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?adbutler\\.com/\" to=\"https://www.adbutler.com/\"/><rule from=\"^http://(?:www\\.)?servedbyadbutler\\.com/\" to=\"https://servedbyadbutler.com/\"/></ruleset>", "<ruleset name=\"AdCap.biz\" f=\"AdCap.biz.xml\"><securecookie host=\"^\\.adcap\\.biz$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AdExcite (partial)\" default_off=\"failed ruleset test\" f=\"AdExcite.xml\"><rule from=\"^http://cdn\\.adexcite\\.com/\" to=\"https://adexcite.s3.amazonaws.com/\"/></ruleset>", "<ruleset name=\"AdExtent.com (problematic)\" default_off=\"mismatched\" f=\"AdExtent.com-problematic.xml\"><rule from=\"^http://appv2\\.adextent\\.com/(?!favicon\\.ico|Frontend/(?:bootstrap|scripts|theme)/)\" to=\"https://appv2.adextent.com/\"/></ruleset>", "<ruleset name=\"AdExtent.com (partial)\" f=\"AdExtent.com.xml\"><securecookie host=\"^\\.appv2\\.adextent\\.com$\" name=\".+\"/><rule from=\"^http://appv2\\.adextent\\.com/(?=favicon\\.ico|Frontend/(?:bootstrap|scripts|theme)/)\" to=\"https://s3.amazonaws.com/appv2.adextent.com/\"/><rule from=\"^http://dynads\\.adextent\\.com/\" to=\"https://d2dxlvlyoblbme.cloudfront.net/\"/><rule from=\"^http://ssl\\.adextent\\.com/\" to=\"https://ssl.adextent.com/\"/><rule from=\"^http://support\\.adextent\\.com/\" to=\"https://adextent.freshdesk.com/\"/></ruleset>", "<ruleset name=\"AdF.ly (partial)\" f=\"AdF.ly.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AdFox.ru\" f=\"AdFox.ru.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AdHands.ru (partial)\" f=\"AdHands.ru.xml\"><rule from=\"^http://(api|sedu)\\.adhands\\.ru/\" to=\"https://$1.adhands.ru/\"/></ruleset>", "<ruleset name=\"AdJug.com (partial)\" default_off=\"failed ruleset test\" f=\"AdJug.com.xml\"><securecookie host=\"^\\.adjug\\.com$\" name=\"^AJUserGUID$\"/><rule from=\"^http://adjug\\.com/\" to=\"https://www.adjug.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AdJuggler (problematic)\" default_off=\"mismatched\" f=\"AdJuggler-problematic.xml\"><rule from=\"^http://(?:www\\.)?adjuggler\\.com/\" to=\"https://adjuggler.com/\"/></ruleset>", "<ruleset name=\"AdJuggler (partial)\" f=\"AdJuggler.xml\"><exclusion pattern=\"^http://hwcdn\\.hadj[147]\\.adjuggler\\.net/banners/\"/><securecookie host=\"^rotator\\.hadj7\\.adjuggler\\.net$\" name=\".+\"/><rule from=\"^http://(?:rotator\\.adjuggler\\.(?:com|net)|hwcdn\\.hadj[14]\\.adjuggler\\.net)/\" to=\"https://rotator.adjuggler.com/\"/><rule from=\"^http://(?:(?:\\w+\\.)?rotator|hwcdn)\\.hadj7\\.adjuggler\\.net/\" to=\"https://rotator.hadj7.adjuggler.net/\"/></ruleset>", "<ruleset name=\"AdMarvel.com (partial)\" f=\"AdMarvel.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AdMaster.com.cn (partial)\" default_off=\"failed ruleset test\" f=\"AdMaster.com.cn.xml\"><securecookie host=\"^\\.admaster\\.com\\.cn$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AdMatrix.jp\" f=\"AdMatrix.jp.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AdMob.com\" f=\"AdMob.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AdReactor (partial)\" f=\"AdReactor.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AdRiver.ru (partial)\" default_off=\"failed ruleset test\" f=\"AdRiver.xml\"><exclusion pattern=\"^http://content\\.adriver\\.ru/+(?:$|\\?)\"/><exclusion pattern=\"^http://ad\\.adriver\\.ru/crossdomain.xml\"/><securecookie host=\"^\\.adriver\\.ru$\" name=\".+\"/><rule from=\"^http://adriver\\.ru/\" to=\"https://www.adriver.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AdRoll (problematic)\" default_off=\"mismatched\" f=\"AdRoll-problematic.xml\"><rule from=\"^http://feedback\\.adroll\\.com/(?!s/)\" to=\"https://feedback.adroll.com/\"/></ruleset>", "<ruleset name=\"AdRoll (partial)\" f=\"AdRoll.xml\"><exclusion pattern=\"^http://feedback\\.adroll\\.com/(?!s/)\"/><securecookie host=\"^\\.adroll\\.com$\" name=\"^__adroll$\"/><rule from=\"^http://adroll\\.com/\" to=\"https://www.adroll.com/\"/><rule from=\"^http://a\\.adroll\\.com/\" to=\"https://s.adroll.com/\"/><rule from=\"^http://feedback\\.adroll\\.com/\" to=\"https://userecho.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AdSafe control.com\" default_off=\"failed ruleset test\" f=\"AdSafe.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AdSafe protected.com\" f=\"AdSafe_protected.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AdSonar.com\" default_off=\"failed ruleset test\" f=\"AdSonar.com.xml\"><securecookie host=\"^\\.adsonar\\.com$\" name=\".+\"/><rule from=\"^http://adsonar\\.com/\" to=\"https://www.adsonar.com/\"/><rule from=\"^http://js\\.adsonar\\.com/\" to=\"https://secure-js.adsonar.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AdSpeed.biz\" f=\"AdSpeed.biz.xml\"><rule from=\"^http://(?:www\\.)?adspeed\\.biz/.*\" to=\"https://www.adspeed.com/?src=dotbiz\"/><rule from=\"^http://\\w\\d+\\.adspeed\\.biz/\" to=\"https://g.adspeed.net/\"/></ruleset>", "<ruleset name=\"AdSpeed.net\" f=\"AdSpeed.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?adspeed\\.net/\" to=\"https://adspeed.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AdSpeed.com (partial)\" f=\"AdSpeed.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AdSpirit.de (partial)\" default_off=\"failed ruleset test\" f=\"AdSpirit.xml\"><exclusion pattern=\"http://www\\.adspirit\\.de/\"/><rule from=\"^http://([\\w-]+)\\.adspirit\\.de/\" to=\"https://$1.adspirit.de/\"/></ruleset>", "<ruleset name=\"AdSupply.com (partial)\" f=\"AdSupply.xml\"><securecookie host=\"^(?!\\.adsupply\\.com$)\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AdXpansion.com (partial)\" f=\"AdXpansion.com.xml\"><securecookie host=\"^(?:w*\\.)?adxpansion\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ad Peeps hosted.com\" f=\"Ad_Peeps_hosted.com.xml\"><securecookie host=\"^(?:www\\.)?adpeepshosted\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ada.lt (partial)\" f=\"Ada.lt.xml\"><securecookie host=\"^(?:www\\.)?ada\\.lt$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AdaCore\" platform=\"mixedcontent\" f=\"AdaCore.xml\"><securecookie host=\"^www\\.adacore\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Adactio.com\" f=\"Adactio.com.xml\"><rule from=\"^http://www\\.adactio\\.com/\" to=\"https://adactio.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AdaFruit.com\" f=\"Adafruit.xml\"><securecookie host=\"^\\.?www\\.adafruit\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Adagio.com\" f=\"Adagio.com.xml\"><rule from=\"^http://(www\\.)?adagio\\.com/\" to=\"https://www.adagio.com/\"/></ruleset>", "<ruleset name=\"Adallom.com (partial)\" f=\"Adallom.com.xml\"><rule from=\"^http://(console\\.|www\\.)?adallom\\.com/\" to=\"https://$1adallom.com/\"/><rule from=\"^http://learn\\.adallom\\.com/(?=css/|images/|js/|rs/)\" to=\"https://na-ab01.marketo.com/\"/></ruleset>", "<ruleset name=\"Adam Caudill.com\" f=\"Adam_Caudill.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Adap.TV (partial)\" default_off=\"failed ruleset test\" f=\"Adap.TV.xml\"><securecookie host=\"^\\.adap\\.tv$\" name=\".*\"/><rule from=\"^http://redir\\.adap\\.tv/\" to=\"https://ads.adap.tv/\"/><rule from=\"^http://www\\.adap\\.tv/\" to=\"https://adap.tv/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Adaptavist.com (partial)\" f=\"Adaptavist.com.xml\"><exclusion pattern=\"^http://www\\.adaptavist\\.com/+(?!s/\\d{4}/\\d\\d/[\\d.]{1,2}/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Adaptec.com (partial)\" default_off=\"failed ruleset test\" f=\"Adaptec.com.xml\"><rule from=\"^http://(?:www\\.)?adaptec\\.com/\" to=\"https://www.adaptec.com/\"/></ruleset>", "<ruleset name=\"Adapteva.com (partial)\" default_off=\"failed ruleset test\" f=\"Adapteva.com.xml\"><rule from=\"^http://shop\\.adapteva\\.com/\" to=\"https://adapteva.myshopify.com/\"/></ruleset>", "<ruleset name=\"Adaptive Computing (partial)\" default_off=\"failed ruleset test\" f=\"Adaptive_Computing.xml\"><exclusion pattern=\"^http://www\\.adaptivecomputing\\.com/+(?!wp-content/|wp-login\\.php)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Adara Media.com (partial)\" default_off=\"mismatched\" f=\"Adara-Media.xml\"><securecookie host=\"^login\\.adaramedia\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Adaway.org\" f=\"Adaway.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Adblade.com (partial)\" f=\"Adblade.xml\"><securecookie host=\"^\\.\" name=\"^__(?:qca|sgs$)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AdblockPlus.org\" f=\"AdblockPlus.xml\"><securecookie host=\"^(?:.*\\.)?adblockplus\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Adbooth.net\" f=\"Adbooth.net.xml\"><rule from=\"^http://cdn\\.adbooth\\.net/\" to=\"https://s3.amazonaws.com/cdn.adbooth.net/\"/><rule from=\"^http://help\\.adbooth\\.net/track\\.gif\" to=\"https://cdn.uservoice.com/track.gif\"/><rule from=\"^http://yieldmanager\\.adbooth\\.net/\" to=\"https://ad.yieldmanager.com/\"/></ruleset>", "<ruleset name=\"AdBrite.com (expired)\" default_off=\"expired\" f=\"Adbrite-expired.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AdBrite.com (partial)\" default_off=\"failed ruleset test\" f=\"Adbrite.xml\"><rule from=\"^http://(?:www\\.)?adbrite\\.com/\" to=\"https://www.sitescout.com/adbrite/?utm_source=adbrite\"/><rule from=\"^http://files\\.adbrite\\.com/\" to=\"https://www.adbrite.com/\"/></ruleset>", "<ruleset name=\"Adbusters.org\" f=\"Adbusters.org.xml\"><rule from=\"^http://(?:www\\.)?adbusters\\.org/\" to=\"https://www.adbusters.org/\"/></ruleset>", "<ruleset name=\"adbuyer.com\" default_off=\"failed ruleset test\" f=\"Adbuyer.com.xml\"><securecookie host=\"^(?:gbid)?\\.adbuyer\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?adbuyer\\.com/([^?]*)(\\?:.*)?\" to=\"https://app.mbuy.com/$1\"/><rule from=\"^http://(gbid|pixel)\\.adbuyer\\.com/\" to=\"https://$1.adbuyer.com/\"/></ruleset>", "<ruleset name=\"Adcash\" f=\"Adcash.xml\"><securecookie host=\"^(?:www\\.)?adcash\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Add2Net (mismatches)\" default_off=\"mismatched\" f=\"Add2Net-mismatches.xml\"><securecookie host=\"^marketing\\.lunarpages\\.com$\" name=\".*\"/><rule from=\"^http://marketing\\.lunarpages\\.com/\" to=\"https://marketing.lunarpages.com/\"/></ruleset>", "<ruleset name=\"Add2Net (partial)\" default_off=\"failed ruleset test\" f=\"Add2Net.xml\"><securecookie host=\"^www\\.lunarmods\\.com$\" name=\".*\"/><securecookie host=\"^(?:account|secure|support|www)?\\.lunarpages\\.com$\" name=\".*\"/><securecookie host=\"^(?:www)?\\.tremendesk\\.com$\" name=\".*\"/><rule from=\"^http://(www\\.)?lpdedicated\\.com/\" to=\"https://$1lpdedicated.com/\"/><rule from=\"^http://(?:www\\.)?lplogin\\.com/\" to=\"https://account.lunarpages.com/\"/><rule from=\"^http://(www\\.)?lunar(mod|page)s\\.com/\" to=\"https://$1lunarpages.com/\"/><rule from=\"^http://(account|secure|support)\\.lunarpages\\.com/\" to=\"https://$1.lunarpages.com/\"/><rule from=\"^http://(www\\.)?lunarpages\\.co(m\\.mx|\\.uk)/\" to=\"https://$1lunarpages.co$2/\"/><rule from=\"^http://(www\\.)?tremendesk\\.com/\" to=\"https://$1tremendesk.com/\"/></ruleset>", "<ruleset name=\"AddBooks.se\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"AddBooks.se.xml\"><rule from=\"^http://www\\.addbooks\\.se/\" to=\"https://www.addbooks.se/\"/><rule from=\"^http://addbooks\\.se/\" to=\"https://addbooks.se/\"/></ruleset>", "<ruleset name=\"AddThis.com (partial)\" f=\"AddThis.xml\"><exclusion pattern=\"^http://(?:www\\.)?addthis\\.com/(?!/*(?:$|\\?|bookmark\\.php|(?:academy|blog|dashboard|get|landing|login|plans|press|register|services|sitebar-editor|website-tools|wordpress)(?:$|[?/])|download/|images/|\\w+/sharing-buttons(?:$|\\?)|style/))\"/><securecookie host=\"^\\.\" name=\"^(?:__atuvc|__cfduid|di|uid|xtc)$\"/><securecookie host=\"^[^.w]\" name=\".\"/><rule from=\"^http://(ct\\d)\\.addthis\\.com/\" to=\"https://$1.addthis.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AddThisedge.com\" f=\"AddThisedge.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Addictech\" default_off=\"failed ruleset test\" f=\"Addictech.xml\"><rule from=\"^http://(?:www\\.)?addictech\\.com/\" to=\"https://www.addictech.com/\"/><rule from=\"^http://assets\\.musicwindow\\.com/public/\" to=\"https://www.addictech.com/shared/assetlink.php?file=public/\"/></ruleset>", "<ruleset name=\"Addiction Help.com\" f=\"Addiction_Help.xml\"><securecookie host=\"^www\\.addictionhelpchat\\.com$\" name=\".+\"/><rule from=\"^http://addictionhelpchat\\.com/\" to=\"https://www.addictionhelpchat.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Addison.com.hk (partial)\" f=\"Addison.com.hk.xml\"><rule from=\"^http://(www\\.)?addison\\.com\\.hk/(?=(?:contact_us|what_we_do)(?:$|[?/])|favicon\\.ico|images/|libraries/|media/|templates/|wp-content/|wp-includes/)\" to=\"https://$1addison.com.hk/\"/></ruleset>", "<ruleset name=\"Addison Lee\" f=\"Addison_Lee.xml\"><securecookie host=\"^(?:.*\\.)?addisonlee\\.com$\" name=\".+\"/><rule from=\"^http://addisonlee\\.com/\" to=\"https://www.addisonlee.com/\"/><rule from=\"^http://([^/:@]+)?\\.addisonlee\\.com/\" to=\"https://$1.addisonlee.com/\"/></ruleset>", "<ruleset name=\"Address Picker.io\" f=\"Address_Picker.io.xml\"><securecookie host=\"^(?:www)?\\.addresspicker\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Adecco Way to Work\" f=\"Adecco_Way_to_Work.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Adelaide.edu.au (partial)\" f=\"Adelaide.edu.au.xml\"><securecookie host=\"^(?:apps|blogs|myuni|orbit|shop)\\.adelaide\\.edu\\.au$\" name=\".+\"/><rule from=\"^http://((?:apps|auth|cas-prd\\.auth|blogs|global|international|login|m|myuni|orbit|password|shop|unified|www)\\.)?adelaide\\.edu\\.au/\" to=\"https://$1adelaide.edu.au/\"/></ruleset>", "<ruleset name=\"adelphi.de\" f=\"Adelphi.de.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Adentifi.com\" f=\"Adentifi.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Adestra (partial)\" f=\"Adestra.xml\"><rule from=\"^http://new\\.adestra\\.com/\" to=\"https://new.adestra.com/\"/><rule from=\"^http://cup\\.msgfocus\\.com/\" to=\"https://cup.msgfocus.com/\"/></ruleset>", "<ruleset name=\"Adform.net\" f=\"Adform.net.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Adform.com\" f=\"Adform.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Adformdsp.net\" f=\"Adformdsp.net.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Adhocracy.de (partial)\" f=\"Adhocracy.de.xml\"><securecookie host=\"^\\.adhocracy\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Adicio.com (partial)\" f=\"Adicio.com.xml\"><securecookie host=\"^sitemanager2\\.adicio\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Adify\" f=\"Adify.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"adigital (partial)\" f=\"Adigital.xml\"><rule from=\"^http://(?:www\\.)?adigital\\.org/(misc/|registrate/?(?:$|\\?)|sites/|user(?:$|\\?|/))\" to=\"https://www.adigital.org/$1\"/></ruleset>", "<ruleset name=\"Adility Gmbh\" f=\"Adility.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Adingo.jp\" f=\"Adingo.jp.xml\"><securecookie host=\"contract\\.adingo\\.jp\" name=\".+\"/><securecookie host=\"payment\\.adingo\\.jp\" name=\".+\"/><securecookie host=\"product\\.adingo\\.jp\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"adis.ws\" f=\"Adis.ws.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"adition.com\" f=\"Adition.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Adium.im\" f=\"Adium.im.xml\"><securecookie host=\"^trac\\.adium\\.im$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"adjust-net.jp\" f=\"Adjust-net.jp.xml\"><rule from=\"^http://(ads|ifr)\\.adjust-net\\.jp/\" to=\"https://$1.adjust-net.jp/\"/></ruleset>", "<ruleset name=\"adjust.com\" f=\"Adjust.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"adk2 (partial)\" default_off=\"failed ruleset test\" f=\"Adk2.xml\"><securecookie host=\"^\\.?ads\\.adk2\\.com$\" name=\".+\"/><rule from=\"^http://((?:ads|adstract|cpmrocket)\\.)?adk2\\.com/\" to=\"https://$1adk2.com/\"/><rule from=\"^http://cdn\\.adk2\\.com/\" to=\"https://d38cp5x90nxyo0.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Adknowledge (partial)\" f=\"Adknowledge.xml\"><securecookie host=\"^advertiser\\.adknowledge\\.com$\" name=\".+\"/><securecookie host=\"^(?:www\\.)?bidsystem\\.com$\" name=\".+\"/><rule from=\"^http://advertiser\\.adknowledge\\.com/\" to=\"https://advertiser.adknowledge.com/\"/><rule from=\"^http://(tracker\\.|www\\.)?bidsystem\\.com/\" to=\"https://$1bidsystem.com/\"/></ruleset>", "<ruleset name=\"Adkontekst.pl (problematic)\" default_off=\"mismatched\" f=\"Adkontekst.pl-problematic.xml\"><rule from=\"^http://(?:www\\.)?adkontekst\\.pl/\" to=\"https://www.adkontekst.pl/\"/></ruleset>", "<ruleset name=\"Adkontekst.pl (partial)\" f=\"Adkontekst.pl.xml\"><securecookie host=\"^wydawcy\\.panel\\.adkontekst\\.pl$\" name=\".+\"/><rule from=\"^http://((?:www\\.)?adsearch|wydawcy\\.panel)\\.adkontekst\\.pl/\" to=\"https://$1.adkontekst.pl/\"/></ruleset>", "<ruleset name=\"Adlegend.com (partial)\" f=\"Adlegend.com.xml\"><securecookie host=\"^(?:ad)?\\.adlegend\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Adlibris/Capris\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Adlibris.xml\"><rule from=\"^http://(?:www\\.)?(adlibris\\.com|capris\\.no)/\" to=\"https://www.$1/\"/></ruleset>", "<ruleset name=\"adlink.net\" default_off=\"failed ruleset test\" f=\"Adlink.net.xml\"><rule from=\"^http://js\\.adlink\\.net/\" to=\"https://js.adlink.net/\"/></ruleset>", "<ruleset name=\"Admatic\" f=\"Admatic.xml\"><securecookie host=\"^\\.admatic\\.com\\.br$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"adme.ru (partial)\" f=\"Adme.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Admeld\" f=\"Admeld.xml\"><securecookie host=\"^portal\\.admeld\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?admeld\\.com/images/interface/masthead_bk\\.jpg$\" to=\"https://portal.admeld.com/images/bg.jpg\"/><rule from=\"^http://portal\\.admeld\\.com/\" to=\"https://portal.admeld.com/\"/></ruleset>", "<ruleset name=\"Admeta Aktiebolag (partial)\" f=\"Admeta-Aktiebolag.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Admissions.com\" f=\"Admissions.com.xml\"><rule from=\"^http://(?:www\\.)?admissions\\.com/+\" to=\"https://www.fastweb.com/\"/></ruleset>", "<ruleset name=\"admitad.com\" f=\"Admitad.com.xml\"><rule from=\"^http://(ad|cdn)\\.admitad\\.com/\" to=\"https://$1.admitad.com/\"/></ruleset>", "<ruleset name=\"Admized\" f=\"Admized.xml\"><rule from=\"^http://ads\\.admized\\.com/\" to=\"https://ads.admized.com/\"/></ruleset>", "<ruleset name=\"Adnxs.com\" f=\"Adnxs.com.xml\"><exclusion pattern=\"^http://(?!cdn\\.oas-c18\\.adnxs\\.com/)(?:[^./]+\\.){2,}adnxs\\.com/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http://cdn\\.adnxs\\.com/\" to=\"https://secure.adnxs.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Adobe Digital Marketing\" f=\"Adobe-Digital-Marketing.xml\"><securecookie host=\"^(?:.*\\.)?worldsecuresystems\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Adobe.com (mismatched)\" default_off=\"mismatched\" f=\"Adobe-mismatches.xml\"><rule from=\"^http://(airdownload|gaming|html)\\.adobe\\.com/\" to=\"https://$1.adobe.com/\"/></ruleset>", "<ruleset name=\"Adobe.com\" f=\"Adobe.xml\"><exclusion pattern=\"^http://community\\.adobe\\.com/+(?!$|\\?)\"/><exclusion pattern=\"^http://fpdownload\\.adobe\\.com/(?:pub/swz/)?crossdomain\\.xml$\"/><exclusion pattern=\"^http://ns\\.adobe\\.com/(?!$|xap/)\"/><securecookie host=\".+\\.adobe\\.com$\" name=\".+\"/><rule from=\"^http://community\\.adobe\\.com/+\" to=\"https://www.adobe.com/communities\"/><rule from=\"^http://cookbooks\\.adobe\\.com/[^?]*\" to=\"https://forums.adobe.com/\"/><rule from=\"^http://edexchange\\.adobe\\.com/.*\" to=\"https://edex.adobe.com/\"/><rule from=\"^http://cem\\.events\\.adobe\\.com/[^?]*\" to=\"https://www.adobe.com/solutions/web-experience-management.html\"/><rule from=\"^http://get2\\.adobe\\.com/\" to=\"https://get.adobe.com/\"/><rule from=\"^http://images\\.groups\\.adobe\\.com/\" to=\"https://s3.amazonaws.com/images.groups.adobe.com/\"/><rule from=\"^http://ns\\.adobe\\.com/$\" to=\"https://www.adobe.com/\"/><rule from=\"^http://ns\\.adobe\\.com/xap/\" to=\"https://www.adobe.com/products/xmp/\"/><rule from=\"^http://stats\\.adobe\\.com/\" to=\"https://mxmacromedia.d1.sc.omtrdc.net/\"/><rule from=\"^http://techlive\\.adobe\\.com/[^?]*\" to=\"https://www.adobe.com/devnet/archive/techlive.html\"/><rule from=\"^http://wwwimages\\.adobe\\.com/www\\.adobe\\.com/css/\" to=\"https://www.adobe.com/css/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Adobe Connect.com\" default_off=\"failed ruleset test\" f=\"Adobe_Connect.xml\"><rule from=\"^http://((?:bridges|events-(?:emea\\d+|na\\d+)|experts|na\\d+cps|www)\\.)?adobeconnect\\.com/\" to=\"https://$1adobeconnect.com/\"/></ruleset>", "<ruleset name=\"Adobe Exchange.com\" f=\"Adobe_Exchange.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Adobe forms central.com\" default_off=\"failed ruleset test\" f=\"Adobe_forms_central.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Adobe login.com\" f=\"Adobe_login.com.xml\"><securecookie host=\"^ims-na1\\.adobelogin\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?adobelogin\\.com/+\" to=\"https://www.adobe.com/\"/><rule from=\"^http://ims-na1\\.adobelogin\\.com/\" to=\"https://ims-na1.adobelogin.com/\"/></ruleset>", "<ruleset name=\"Adobetag.com\" f=\"Adobetag.com.xml\"><securecookie host=\"^www\\.adobetag\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Adometry.com (partial)\" f=\"Adometry.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Adoyacademy.se\" f=\"Adoyacademy.se.xml\"><rule from=\"^http://www\\.adoyacademy\\.se/\" to=\"https://adoyacademy.se/\"/><rule from=\"^http://adoyacademy\\.se/\" to=\"https://adoyacademy.se/\"/></ruleset>", "<ruleset name=\"Adpay.com (partial)\" f=\"Adpay.com.xml\"><exclusion pattern=\"^http://secure\\.adpay\\.com/(?!ajaxpro/|[bB]randing/|favicon\\.ico|[iI]mages/|Includes/|RadControls/|WebResource\\.axd)\"/><exclusion pattern=\"^http://staging\\.adpay\\.com//searchresults\\.aspx\"/><securecookie host=\"^\\.adpay\\.com$\" name=\"^adpay$\"/><rule from=\"^http://s(ecure|taging)\\.adpay\\.com/\" to=\"https://s$1.adpay.com/\"/></ruleset>", "<ruleset name=\"Adperium.com\" default_off=\"failed ruleset test\" f=\"Adperium.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"adrolays.de (partial)\" f=\"Adrolays.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"adscale\" default_off=\"failed ruleset test\" f=\"Adscale.xml\"><securecookie host=\".*\\.adscale\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?adscale\\.de/\" to=\"https://www.adscale.de/\"/><rule from=\"^http://(ih|js|rh)\\.adscale\\.de/\" to=\"https://$1.adscale.de/\"/></ruleset>", "<ruleset name=\"Adscend Media\" platform=\"mixedcontent\" f=\"Adscend-Media.xml\"><securecookie host=\"^adscendmedia\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Adseekmedia.com\" f=\"Adseekmedia.xml\"><rule from=\"^http://delivery\\.adseekmedia\\.com/\" to=\"https://delivery.adseekmedia.com/\"/></ruleset>", "<ruleset name=\"adserver01.de\" f=\"Adserver01.de.xml\"><securecookie host=\"^ad2\\.adserver01\\.de$\" name=\".+\"/><rule from=\"^http://(ad|r)2\\.adserver01\\.de/\" to=\"https://$12.adserver01.de/\"/></ruleset>", "<ruleset name=\"Adsimilis\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Adsimilis.xml\"><securecookie host=\"^(?:.*\\.)?adsimilis\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"adspdbl.com (partial)\" f=\"Adspdbl.com.xml\"><rule from=\"^http://files\\.adspdbl\\.com/\" to=\"https://d3ijm230svej28.cloudfront.net/\"/></ruleset>", "<ruleset name=\"adsrvmedia.com\" f=\"Adsrvmedia.com.xml\"><rule from=\"^http://ads\\.adsrvmedia\\.com/\" to=\"https://ads.adk2.com/\"/><rule from=\"^http://cdn\\.adsrvmedia\\.com/\" to=\"https://d3vg9hiogk70qz.cloudfront.net/\"/></ruleset>", "<ruleset name=\"adsrvmedia.net\" default_off=\"mismatched\" f=\"Adsrvmedia.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"adsrvr.org (partial)\" f=\"Adsrvr.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"adsurve.com (partial)\" default_off=\"expired\" f=\"Adsurve.com.xml\"><securecookie host=\"^adsurve\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?adsurve\\.com/\" to=\"https://adsurve.com/\"/></ruleset>", "<ruleset name=\"adtarget.me\" f=\"Adtarget.me.xml\"><rule from=\"^http://static[.-]trackers\\.adtarget\\.me/\" to=\"https://static-trackers.adtarget.me/\"/></ruleset>", "<ruleset name=\"Adtech.de (partial)\" default_off=\"failed ruleset test\" f=\"Adtech.de.xml\"><securecookie host=\"^\\.adtech\\.de\" name=\".+\"/><rule from=\"^http://aka-cdn-ns\\.adtech\\.de/\" to=\"https://aka-cdn.adtech.de/\"/><rule from=\"^http://ad\\.dc2\\.adtech\\.de/\" to=\"https://adserver.adtech.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Adtechus.com (partial)\" f=\"Adtechus.com.xml\"><securecookie host=\".*\\.adtechus\\.com$\" name=\".+\"/><rule from=\"^http://aka-cdn-ns\\.adtechus\\.com/\" to=\"https://aka-cdn.adtechus.com/\"/><rule from=\"^http://ad\\.us-ec\\.adtechus\\.com/\" to=\"https://adserverec.adtechus.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Adtile.me (partial)\" f=\"Adtile.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"adtraxx.de\" f=\"Adtraxx.de.xml\"><securecookie host=\"^\\.adtraxx\\.de$\" name=\".+\"/><rule from=\"^http://view\\.adtraxx\\.de/\" to=\"https://view.adtraxx.de/\"/></ruleset>", "<ruleset name=\"Adult Ad World (partial)\" f=\"Adult-Ad-World.xml\"><rule from=\"^http://(?:newt[27]|hippo)\\.adultadworld\\.com/\" to=\"https://hippo.adultadworld.com/\"/></ruleset>", "<ruleset name=\"Adult FriendFinder.com\" f=\"Adult-FriendFinder.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://(?:banners\\.|www\\.)?adultfriendfinder\\.com/\" to=\"https://secure.adultfriendfinder.com/\"/><rule from=\"^http://graphics\\.adultfriendfinder\\.com/\" to=\"https://secureimage.securedataimages.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AdultShopping.com\" default_off=\"failed ruleset test\" f=\"AdultShopping.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:optimizely|_gat?$|_gat_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^https?://store\\.adultshopping\\.com/\" to=\"https://checkout.adultshopping.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AdultWork.com (partial)\" f=\"AdultWork.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Adult Toys 4 U.com.au\" f=\"Adult_Toys_4_U.com.xml\"><securecookie host=\"^\\.w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AWEmpire.com (partial)\" f=\"Adult_Webmaster_Empire.xml\"><exclusion pattern=\"^http://(?:www\\.)?awempire\\.com/(?!/*(?:\\w+/css/|favicon\\.ico))\"/><securecookie host=\"^\\.\" name=\"^(?:_gat?$|_gat_|awesec_session$)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Advance Digital (partial)\" f=\"Advance_Digital.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Advantage Business Media\" f=\"Advantage-Business-Media.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Advantage\" default_off=\"failed ruleset test\" f=\"Advantage.xml\"><securecookie host=\"^click\\.discountclick\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?advantageseoservices\\.com/\" to=\"https://$1advantageseoservices.com/\"/><rule from=\"^http://(?:www\\.)?discountclick\\.com/\" to=\"https://www.advantageseoservices.com/\"/><rule from=\"^http://click\\.discountclick\\.com/\" to=\"https://click.discountclick.com/\"/></ruleset>", "<ruleset name=\"advconversion.com\" default_off=\"missing certificate chain\" f=\"Advconversion.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Advel\" default_off=\"self-signed\" f=\"Advel.xml\"><securecookie host=\"^(?:.*\\.)?advel\\.cz$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?advel\\.cz/\" to=\"https://www.advel.cz/\"/></ruleset>", "<ruleset name=\"Advent.com (partial)\" default_off=\"failed ruleset test\" f=\"Advent.com.xml\"><securecookie host=\"^\\.advent\\.com$\" name=\"^VISITORID$\"/><securecookie host=\"^(?:engage\\.|login\\.|www\\.)?advent\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AdvertServe.com\" f=\"AdvertServe.com.xml\"><securecookie host=\"^tradefx\\.advertserve\\.com$\" name=\".+\"/><rule from=\"^http://(?:secure\\.|www\\.)?advertserve\\.com/\" to=\"https://secure.advertserve.com/\"/><rule from=\"^http://([\\w-]+)\\.advertserve\\.com/\" to=\"https://$1.advertserve.com/\"/></ruleset>", "<ruleset name=\"Advert Stream (partial)\" f=\"Advert_Stream.xml\"><securecookie host=\"^\\.adaccess\\.advertstream\\.com$\" name=\".+\"/><rule from=\"^http://(a?d|adaccess)\\.advertstream\\.com/\" to=\"https://$1.advertstream.com/\"/></ruleset>", "<ruleset name=\"Adverticum\" f=\"Adverticum.xml\"><rule from=\"^http://([^@:/]*)\\.adverticum\\.net/\" to=\"https://$1.adverticum.net/\"/></ruleset>", "<ruleset name=\"Advertise.com (partial)\" f=\"Advertise.com.xml\"><securecookie host=\"^admin\\.advertise\\.com$\" name=\".+\"/><rule from=\"^http://ad\\.advertise\\.com/\" to=\"https://ad.rmxads.com/\"/><rule from=\"^http://admin\\.advertise\\.com/\" to=\"https://admin.advertise.com/\"/></ruleset>", "<ruleset name=\"advertisers-OpenX.com\" default_off=\"failed ruleset test\" f=\"Advertisers-OpenX.com.xml\"><securecookie host=\"^d3\\.advertisers-openx\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Advertising.com (mismatches)\" default_off=\"mismatched\" f=\"Advertising.com-mismatches.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Advertising.com (partial)\" f=\"Advertising.com.xml\"><securecookie host=\"^\\.(?:adaptv\\.)?advertising\\.com$\" name=\".+\"/><rule from=\"^http://(?:[\\w-]+\\.)?ace\\.advertising\\.com/\" to=\"https://secure.ace.advertising.com/\"/><rule from=\"^http://(ace-tag|leadback|uac)\\.advertising\\.com/\" to=\"https://secure.$1.advertising.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Adverts.ie\" f=\"Adverts.ie.xml\"><securecookie host=\"^www\\.adverts\\.ie$\" name=\".+\"/><rule from=\"^http://(c\\d\\.|www\\.)?adverts\\.ie/\" to=\"https://$1adverts.ie/\"/></ruleset>", "<ruleset name=\"advg.jp (partial)\" f=\"Advg.jp.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Adviceguide.org.uk\" f=\"Adviceguide.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://adviceguide\\.org\\.uk/\" to=\"https://www.adviceguide.org.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"adview.pl\" default_off=\"failed ruleset test\" f=\"Adview.pl.xml\"><securecookie host=\"^\\.\" name=\"^AdViewPIBann$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.adview\\.pl/\" to=\"https://adview.pl/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Advisor Mailout.com\" default_off=\"mismatched\" f=\"Advisor_Mailout.com.xml\"><securecookie host=\"^advisormailout\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?advisormailout\\.com/\" to=\"https://advisormailout.com/\"/></ruleset>", "<ruleset name=\"Adviva.net\" f=\"Adviva.net.xml\"><rule from=\"^http://smdd\\.adviva\\.net/\" to=\"https://secure.adviva.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Advocate-Europe.eu\" f=\"Advocate-Europe.eu.xml\"><securecookie host=\"^advocate-europe\\.eu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Advocates for Youth (partial)\" f=\"Advocates_for_Youth.xml\"><securecookie host=\"^\\.?s(?:ecure|hop)\\.advocatesforyouth\\.org$\" name=\".+\"/><rule from=\"^http://s(ecure|hop)\\.advocatesforyouth\\.org/\" to=\"https://s$1.advocatesforyouth.org/\"/></ruleset>", "<ruleset name=\"advolution.de\" f=\"Advolution.de.xml\"><securecookie host=\"^\\.advolution\\.de$\" name=\".+\"/><rule from=\"^http://asn\\.advolution\\.de/\" to=\"https://asn.advolution.de/\"/></ruleset>", "<ruleset name=\"Adweek (partial)\" default_off=\"mismatched\" f=\"Adweek.xml\"><securecookie host=\"^jobs\\.adweek\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?adweek\\.com/\" to=\"https://www.adweek.com/\"/><rule from=\"^http://jobs\\.adweek\\.com/\" to=\"https://jobs.adweek.com/\"/></ruleset>", "<ruleset name=\"Ady Advantage.com (false MCB)\" platform=\"mixedcontent\" f=\"Ady_Advantage.com-falsemixed.xml\"><securecookie host=\"^(?:w*\\.)?adyadvantage\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ady Advantage.com (partial)\" f=\"Ady_Advantage.com.xml\"><rule from=\"^http://(www\\.)?adyadvantage\\.com/(?=favicon\\.ico|sites/|wp-content/|wp-includes/)/\" to=\"https://$1adyadvantage.com/\"/></ruleset>", "<ruleset name=\"Adzerk.net (partial)\" default_off=\"failed ruleset test\" f=\"Adzerk.net.xml\"><securecookie host=\"^(?:engine)?\\.adzerk\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Adzerk.com (partial)\" f=\"Adzerk.xml\"><rule from=\"^http://static\\.adzerk\\.com/\" to=\"https://d36aw3ue2ntmsq.cloudfront.net/\"/></ruleset>", "<ruleset name=\"adzip.co\" f=\"Adzip.co.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AeXp-static.com (partial)\" f=\"AeXp-static.com.xml\"><exclusion pattern=\"^http://qwww\\.aexp-static\\.com/$\"/><rule from=\"^http://www\\.aexp-static\\.com/$\" to=\"https://www.americanexpress.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aea.se\" platform=\"mixedcontent\" f=\"Aea.se.xml\"><rule from=\"^http://www\\.aea\\.se/\" to=\"https://www.aea.se/\"/><rule from=\"^http://aea\\.se/\" to=\"https://aea.se/\"/></ruleset>", "<ruleset name=\"Aer Lingus (testing)\" default_off=\"broken?\" f=\"AerLingus.xml\"><rule from=\"^http://aerlingus\\.com/\" to=\"https://aerlingus.com/\"/><rule from=\"^http://(portal|training|www)\\.aerlingus\\.com/\" to=\"https://$1.aerlingus.com/\"/></ruleset>", "<ruleset name=\"Aera.net\" f=\"Aera.net.xml\"><securecookie host=\"^(?:w*\\.)?aera\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aereo.com (problematic)\" default_off=\"expired, mismatched\" f=\"Aereo.com-problematic.xml\"><rule from=\"^http://blog\\.aereo\\.com/\" to=\"https://blog.aereo.com/\"/></ruleset>", "<ruleset name=\"Aereo.com (partial)\" default_off=\"failed ruleset test\" f=\"Aereo.com.xml\"><securecookie host=\"^\\.aereo\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?aereo\\.com/\" to=\"https://$1aereo.com/\"/><rule from=\"^http://support\\.aereo\\.com/favicon\\.ico\" to=\"https://d3jyn100am7dxp.cloudfront.net/favicon.ico\"/></ruleset>", "<ruleset name=\"Aeriagames\" f=\"Aeriagames.xml\"><rule from=\"^http://(?:www\\.)?aeriagames\\.com/\" to=\"https://www.aeriagames.com/\"/><rule from=\"^http://c\\.aeriastatic\\.com/\" to=\"https://c.aeriastatic.com/\"/><rule from=\"^https?://s\\.aeriastatic\\.com/\" to=\"https://c.aeriastatic.com/\"/></ruleset>", "<ruleset name=\"AeroFS.com\" default_off=\"failed ruleset test\" f=\"AeroFS.xml\"><securecookie host=\".+\\.aerofs\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AeroHosting.cz\" f=\"AeroHosting.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aéroports de Montréal\" default_off=\"failed ruleset test\" f=\"Aeroports_de_Montreal.xml\"><rule from=\"^http://admtl\\.com/\" to=\"https://www.admtl.com/\"/><rule from=\"^http://([^/:@]+)?\\.admtl\\.com/\" to=\"https://$1.admtl.com/\"/></ruleset>", "<ruleset name=\"Aeryon Labs\" f=\"Aeryon_Labs.xml\"><securecookie host=\"^(?:www\\.)?aeryon\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aether Flyff.com\" default_off=\"failed ruleset test\" f=\"AetherFlyff.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aff.biz\" f=\"Aff.biz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AffUtd.com\" default_off=\"failed ruleset test\" f=\"AffUtd.com.xml\"><securecookie host=\"^www\\.affutd\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?affutd\\.com/\" to=\"https://www.affutd.com/\"/></ruleset>", "<ruleset name=\"Affec.tv (partial)\" f=\"Affec.tv.xml\"><securecookie host=\"^\\.go\\.\" name=\".\"/><rule from=\"^http://an\\.affec\\.tv/\" to=\"https://ib.adnxs.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"affili.net (partial)\" f=\"Affili.net.xml\"><exclusion pattern=\"^http://(?:www\\.)?affili\\.net/(?:\\w\\w/defaultdesktop|de/Startseite)\\.aspx\"/><securecookie host=\"^www\\.affili\\.net$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?affili\\.net/\" to=\"https://www.affili.net/\"/><rule from=\"^http://(?:www\\.)?affili\\.de/\" to=\"https://www.affili.net/de/\"/></ruleset>", "<ruleset name=\"Affiliate-B.com\" f=\"Affiliate-B.com.xml\"><rule from=\"^http://affiliate-b\\.com/\" to=\"https://www.affiliate-b.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AffiliateTracking.com\" f=\"AffiliateTracking.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.affiliatetracking\\.com/\" to=\"https://affiliatetracking.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"affility.com (partial)\" f=\"Affility.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Afford.com\" f=\"Afford.com.xml\"><securecookie host=\"(?:^|\\.)afford\\.com$\" name=\".+\"/><rule from=\"^http://borrowsmart\\.afford\\.com/\" to=\"https://borrowsmart.afford.com/\"/><rule from=\"^http://(?:www\\.)?afford\\.com/\" to=\"https://www.afford.com/\"/></ruleset>", "<ruleset name=\"Afiestas.org\" default_off=\"failed ruleset test\" f=\"Afiestas.org.xml\"><securecookie host=\"^\\.afiestas\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Afilias\" f=\"Afilias.xml\"><securecookie host=\"^\\.afilias\\.info$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FreeDNS.Afraid.org\" f=\"Afraid.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"African Network Information Center\" platform=\"mixedcontent\" f=\"African-Network-Information-Center.xml\"><securecookie host=\"^(?:.*\\.)?afrinic\\.net$\" name=\".*\"/><rule from=\"^http://((?:meeting|my|www2?)\\.)?afrinic\\.net/\" to=\"https://$1afrinic.net/\"/></ruleset>", "<ruleset name=\"African Grey Parrot Centre\" default_off=\"failed ruleset test\" f=\"African_Grey_Parrot_Centre.xml\"><securecookie host=\"^(?:www)?\\.africangreyparrotcentre\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aftenposten.no (false MCB)\" platform=\"mixedcontent\" f=\"Aftenposten.no-falsemixed.xml\"><rule from=\"^http://(?:www\\.)?aftenposten\\.no/(?=nyheter(?:$|[?/]))\" to=\"https://www.aftenposten.no/\"/></ruleset>", "<ruleset name=\"Aftenposten (partial)\" f=\"Aftenposten.xml\"><exclusion pattern=\"^http://www\\.aftenposten\\.no/+(?!.+\\.(?:css|gif|jpg|png)(?:$|\\?)|\\?service=css|favicon\\.ico|skins/)\"/><securecookie host=\"^(?:a|kundesenter|kundeweb|onlinesos)\\.aftenposten\\.no$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?aftenposten\\.no/\" to=\"https://www.aftenposten.no/\"/><rule from=\"^http://kundeservice\\.aftenposten\\.no/(?=$|\\?.*)\" to=\"https://a.aftenposten.no/kundeservice/\"/><rule from=\"^http://(a|kundesenter|kundeweb|onlinesos)\\.aftenposten\\.no/\" to=\"https://$1.aftenposten.no/\"/><rule from=\"^http://ap\\.mnocdn\\.no/\" to=\"https://www.aftenposten.no/\"/></ruleset>", "<ruleset name=\"AfterShip.com\" f=\"AfterShip.com.xml\"><securecookie host=\"^www\\.aftership\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Afton Trial Run\" f=\"Afton_Trial_Run.xml\"><securecookie host=\"^(?:www\\.)?aftontrailrun\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aftonbladet-CDN.se\" f=\"Aftonbladet-CDN.se.xml\"><rule from=\"^http://gfx2?\\.aftonbladet-cdn\\.se/\" to=\"https://www.aftonbladet.se/\"/></ruleset>", "<ruleset name=\"Aftonbladet.se (partial)\" f=\"Aftonbladet.xml\"><exclusion pattern=\"^http://bloggar\\.aftonbladet\\.se/+(?!wp-content/)\"/><securecookie host=\"^(?:ads|\\.smetrics)\\.aftonbladet\\.se$\" name=\".+\"/><rule from=\"^http://aftonbladet\\.se/\" to=\"https://www.aftonbladet.se/\"/><rule from=\"^http://metrics\\.aftonbladet\\.se/\" to=\"https://smetrics.aftonbladet.se/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"afx.ms\" default_off=\"failed ruleset test\" f=\"Afx.ms.xml\"><rule from=\"^http://(bay|dub)(\\d+)\\.afx\\.ms/\" to=\"https://$1$2.afx.ms/\"/></ruleset>", "<ruleset name=\"AgKn.com (partial)\" f=\"AgKn.com.xml\"><exclusion pattern=\"^http://d\\.agkn\\.com/$\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Agar.io\" f=\"Agar.io.xml\"><rule from=\"^http://(?:www\\.)?agar\\.io/\" to=\"https://agar.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Agari\" f=\"Agari.xml\"><securecookie host=\"^(?:w*\\.)?agari\\.com$\" name=\".+\"/><rule from=\"^http://(app\\.|www\\.)?agari\\.com/\" to=\"https://$1agari.com/\"/><rule from=\"^http://dev\\.agari\\.com/wp-content/\" to=\"https://agari.com/wp-content/\"/></ruleset>", "<ruleset name=\"Agariomods.com\" f=\"Agariomods.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"agava.ru\" f=\"Agava.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Age of Mine.com\" default_off=\"failed ruleset test\" f=\"Age_of_Mine.com.xml\"><securecookie host=\"^\\.ageofmine\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Agence France-Presse (partial)\" default_off=\"mismatched\" f=\"Agence-France-Presse.xml\"><securecookie host=\"^ediplomacy\\.afp\\.com$\" name=\".*\"/><rule from=\"^http://ediplomacy\\.afp\\.com/\" to=\"https://ediplomacy.afp.com/\"/></ruleset>", "<ruleset name=\"Agendaless.com\" f=\"Agendaless.com.xml\"><rule from=\"^http://(?:www\\.)?agendaless\\.com/\" to=\"https://agendaless.com/\"/></ruleset>", "<ruleset name=\"Aggemam.dk\" f=\"Aggemam.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aggregate Knowledge.com\" default_off=\"failed ruleset test\" f=\"Aggregate_Knowledge.xml\"><exclusion pattern=\"^http://data\\.aggregateknowledge\\.com/$\"/><securecookie host=\"^\\.aggregateknowledge\\.com$\" name=\".+\"/><rule from=\"^http://aggregateknowledge\\.com/+\" to=\"https://www.aggregateknowledge.com/\"/><rule from=\"^http://(?:creative|www-stage)\\.aggregateknowledge\\.com/\" to=\"https://www.aggregateknowledge.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AgileU.com\" f=\"AgileU.com.xml\"><securecookie host=\"^\\.agileu\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"agmk.net\" f=\"Agmk.net.xml\"><securecookie host=\"^(?:.+\\.)?agmk\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Agol.dk\" f=\"Agol.dk.xml\"><rule from=\"^https?://(www\\.)?agol\\.dk/\" to=\"https://agol.dk/\"/></ruleset>", "<ruleset name=\"Agora Voting.com\" f=\"Agora_Voting.com.xml\"><securecookie host=\"^\\.agoravoting\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"agra-net.com (partial)\" default_off=\"failed ruleset test\" f=\"Agra-net.com.xml\"><securecookie host=\"^(?:\\.store|www)?\\.agra-net\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"agra-net.net (partial)\" f=\"Agra-net.net.xml\"><securecookie host=\"^(?:www)?\\.agra-net\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Agri Supply.com (partial)\" f=\"Agri_Supply.com.xml\"><rule from=\"^http://(?:www\\.)?agrisupply\\.com/((?:editaccount|signin)\\.aspx|favicon\\.ico|images/|Java[sS]cript/|Styles/)\" to=\"https://www.agrisupply.com/$1\"/></ruleset>", "<ruleset name=\"Agwa.name\" f=\"Agwa.name.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ahm.com.au (partial)\" f=\"Ahm.com.au.xml\"><exclusion pattern=\"^http://(?:providers|www)\\.ahm\\.com\\.au/+(?!assets/)\"/><securecookie host=\"^members\\.ahm\\.com\\.au$\" name=\".+\"/><rule from=\"^http://((?:members|providers|www)\\.)?ahm\\.com\\.au/\" to=\"https://$1ahm.com.au/\"/></ruleset>", "<ruleset name=\"ahmia.fi\" default_off=\"failed ruleset test\" f=\"Ahmia.fi.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ahnlab\" platform=\"mixedcontent\" f=\"Ahnlab.com.xml\"><rule from=\"^http://global\\.ahnlab\\.com/\" to=\"https://global.ahnlab.com/\"/><rule from=\"^http://image\\.ahnlab\\.com/\" to=\"https://image.ahnlab.com/\"/></ruleset>", "<ruleset name=\"Ahosting.cz\" f=\"Ahosting.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"aidsmap.com\" default_off=\"failed ruleset test\" f=\"Aidsmap.com.xml\"><rule from=\"^http://aidsmap\\.com/\" to=\"https://www.aidsmap.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aim4Media.com (partial)\" default_off=\"failed ruleset test\" f=\"Aim4Media.com.xml\"><rule from=\"^http://ad\\.aim4media\\.com/\" to=\"https://ad.yieldmanager.com/\"/></ruleset>", "<ruleset name=\"aimatch.com\" f=\"Aimatch.com.xml\"><rule from=\"^http://(?:www\\.)?aimatch\\.com/[^?]*\" to=\"https://www.sas.com/software/customer-intelligence/intelligent-advertising.html\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aimpulse.com\" f=\"Aimpulse.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aioe.org\" f=\"Aioe.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Air Canada Pilot's Association (partial)\" default_off=\"failed ruleset test\" f=\"Air-Canada-Pilots-Association.xml\"><rule from=\"^http://(?:www\\.)?acpa\\.ca/(client_asset/|multimedia/)\" to=\"https://secure.acpa.ca/$1/\"/><rule from=\"^http://secure\\.acpa\\.ca/\" to=\"https://secure.acpa.ca/\"/></ruleset>", "<ruleset name=\"Air Asia (broken)\" default_off=\"currently broken\" f=\"AirAsia.xml\"><rule from=\"^http://(?:www\\.)?airasia\\.com/\" to=\"https://www.airasia.com/\"/><rule from=\"^http://(booking|booking2|goholiday|mobile|origin-www|redtix-tickets)\\.airasia\\.com/\" to=\"https://$1.airasia.com/\"/><rule from=\"^http://(?:www\\.)?airasiamegastore\\.com/\" to=\"https://www.airasiamegastore.com/\"/></ruleset>", "<ruleset name=\"AirMap\" f=\"AirMap.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AirPair.com\" f=\"AirPair.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Air VPN.org\" f=\"AirVPN.xml\"><securecookie host=\"^airvpn\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Airbnb (partial)\" f=\"Airbnb.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://airbnb\\.co\\.ve/\" to=\"https://www.airbnb.co.ve/\"/><rule from=\"^http://airbnb\\.lu/\" to=\"https://www.airbnb.lu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aircrack-ng.org (mismatched)\" default_off=\"mismatched\" f=\"Aircrack-ng.org-problematic.xml\"><securecookie host=\"^(?:.+\\.)?aircrack-ng\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Airs.com\" f=\"Airs.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AirshipVentures\" default_off=\"failed ruleset test\" f=\"AirshipVentures.xml\"><rule from=\"^http://(?:www\\.)?airshipventures\\.com/\" to=\"https://www.airshipventures.com/\"/></ruleset>", "<ruleset name=\"Airshow Journal\" default_off=\"mismatched\" f=\"Airshow-Journal.xml\"><rule from=\"^http://(\\w+)\\.airshowjournal\\.com/\" to=\"https://$1.airshowjournal.com/\"/></ruleset>", "<ruleset name=\"AirsoftGI.com\" default_off=\"failed ruleset test\" f=\"AirsoftGI.com.xml\"><securecookie host=\"^\\.airsoftgi\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Airtime.pro\" f=\"Airtime.pro.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Airtop-pc.com\" f=\"Airtop-pc.com.xml\"><rule from=\"^http://www\\.airtop-pc\\.com/\" to=\"https://airtop-pc.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Airtricity\" platform=\"mixedcontent\" f=\"Airtricity.xml\"><rule from=\"^http://airtricity\\.com/\" to=\"https://www.airtricity.com/\"/><rule from=\"^http://([^/:@\\.]+)\\.airtricity\\.com/\" to=\"https://$1.airtricity.com/\"/></ruleset>", "<ruleset name=\"aist.go.jp (partial)\" f=\"Aist.go.jp.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AkademikerFörsäkring.se\" f=\"AkademikerForsakring.se.xml\"><rule from=\"^http://(?:www\\.)?akademikerf[oö]rs[aä]kring\\.se/\" to=\"https://www.akademikerforsakring.se/\"/></ruleset>", "<ruleset name=\"AkademiskaHus.se (partial)\" f=\"AkademiskaHus.se.xml\"><securecookie host=\"^(?:portal|vpn)\\.akademiskahus\\.se$\" name=\".+\"/><rule from=\"^http://(portal|vpn)\\.akademiskahus\\.se/\" to=\"https://$1.akademiskahus.se/\"/></ruleset>", "<ruleset name=\"Edgesuite (mismatches)\" default_off=\"mismatched\" f=\"Akamai-mismatches.xml\"><rule from=\"^http://(\\w+\\.\\w+)\\.edgesuite\\.net/\" to=\"https://$1.edgesuite.net/\"/></ruleset>", "<ruleset name=\"Akamai.com (partial)\" default_off=\"failed ruleset test\" f=\"Akamai.com.xml\"><securecookie host=\"^\\.\" name=\"^_(?:_qca$|gat?$|gat_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Akamai\" f=\"Akamai.xml\"><exclusion pattern=\"^http://ak1\\.abmr\\.net/$\"/><exclusion pattern=\"^http://[\\w_-]+-(?:f|i|s|lh|vh)\\.akamaihd\\.net/\"/><exclusion pattern=\"^http://eaassets-a\\.akamaihd\\.net/\"/><exclusion pattern=\"^http://imagesmtv-a\\.akamaihd\\.net/\"/><exclusion pattern=\"^http://steamcommunity-a\\.akamaihd\\.net/\"/><exclusion pattern=\"^http://zynga\\d-a.akamaihd\\.net/\"/><exclusion pattern=\"^http://tedcdnpb-a\\.akamaihd\\.net/\"/><exclusion pattern=\"^http://hlsak-a\\.akamaihd\\.net/\"/><securecookie host=\".*\\.abmr\\.net$\" name=\".+\"/><rule from=\"^http://ak1s\\.abmr\\.net/\" to=\"https://ak1s.abmr.net/\"/><rule from=\"^http://([^@:/\\.]+)\\.akamaihd\\.net/\" to=\"https://$1.akamaihd.net/\"/><rule from=\"^http://ak1\\.abmr\\.net/is/(www.imiclk|pixel\\.mathtag)\\.com(?=$|\\?)\" to=\"https://ak1s.abmr.net/is/$1.com\"/></ruleset>", "<ruleset name=\"Akamaized.net\" f=\"Akamaized.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Akban.org\" f=\"Akban.org.xml\"><rule from=\"^http://images\\.akban\\.org/\" to=\"https://c3198132.ssl.cf0.rackcdn.com/\"/></ruleset>", "<ruleset name=\"Akira.org\" f=\"Akira.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Akismet\" f=\"Akismet.xml\"><rule from=\"^http://(?:www\\.)?akismet\\.com/\" to=\"https://akismet.com/\"/></ruleset>", "<ruleset name=\"aklamio.com\" f=\"Aklamio.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Akola Project.org (false MCB)\" platform=\"mixedcontent\" f=\"Akola_Project.org.xml\"><securecookie host=\"^\\.akolaproject\\.org$\" name=\".+\"/><rule from=\"^http://www\\.akolaproject\\.org/\" to=\"https://akolaproject.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aktion-Deutschland-Hilft.de (partial)\" f=\"Aktion-Deutschland-Hilft.de.xml\"><rule from=\"^http://(?:www\\.)?aktion-deutschland-hilft\\.de/(css/|favicon\\.ico|fileadmin/|index\\.php\\?eID=adh_banner|typo3(?:conf|temp)/|uploads/)\" to=\"https://www.aktion-deutschland-hilft.de/$1\"/><rule from=\"^http://media\\.aktion-deutschland-hilft\\.de/\" to=\"https://d3c57cw0c70g44.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Aktivix.org\" default_off=\"failed ruleset test\" f=\"Aktivix.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.aktivix\\.org/\" to=\"https://aktivix.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Al-Islam.org\" f=\"Al-Islam.org.xml\"><securecookie host=\"^www\\.al-islam\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Al-Quran.info\" f=\"Al-Quran.info.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"al-akhbar\" f=\"Al-akhbar.xml\"><securecookie host=\"^(?:english)?\\.al-akhbar\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AlIslam.org\" f=\"AlIslam.org.xml\"><securecookie host=\"^www\\.alislam\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Alamo Drafthouse\" f=\"Alamo-Drafthouse.xml\"><securecookie host=\"^drafthouse\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Alamy\" f=\"Alamy.xml\"><securecookie host=\"^\\.alamy\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"alandroidnet.com\" f=\"Alandroidnet.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Alaska Robotics\" default_off=\"mismatched\" f=\"Alaska-Robotics.xml\"><securecookie host=\"^alaskarobotics\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?alaskarobotics\\.com/\" to=\"https://alaskarobotics.com/\"/></ruleset>", "<ruleset name=\"Alaska Airlines\" platform=\"mixedcontent\" f=\"AlaskaAirlines.xml\"><rule from=\"^http://alaskaair\\.com/\" to=\"https://www.alaskaair.com/\"/><rule from=\"^http://(careers|easybiz|myeagle|webselfservice|www)\\.alaskaair\\.com/\" to=\"https://$1.alaskaair.com/\"/></ruleset>", "<ruleset name=\"Alastair’s Place\" platform=\"mixedcontent\" f=\"Alastairs-Place.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Albennet Hosting Provider\" default_off=\"failed ruleset test\" f=\"Albennet.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"albinoloverats\" f=\"Albinoloverats.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AlbumArsiv.com\" default_off=\"failed ruleset test\" f=\"AlbumArsiv.com.xml\"><securecookie host=\"^(?:w*\\.)?albumarsiv\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Alcatel-Lucent.com (partial)\" f=\"Alcatel-Lucent.com.xml\"><exclusion pattern=\"^http://developer-enterprise.alcatel-lucent.com/(?!api_content(?:$|[?/])|components/|images/|libraries/|media/|modules/|plugins/|templates/|webapp/)\"/><securecookie host=\"^(?:\\.?applicationpartner|businessportal|service\\.esd|market|www3)\\.alcatel-lucent\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?alcatel-lucent\\.com/\" to=\"https://www.alcatel-lucent.com/\"/><rule from=\"^http://corporatereporting\\.alcatel-lucent\\.com/.*\" to=\"https://www3.alcatel-lucent.com/corporate-portal/corporate-reporting-portal.html\"/><rule from=\"^http://(applicationpartner|businessportal|developer-enterprise|service\\.esd|market|my-home|(?:services\\.)?support|www3)\\.alcatel-lucent\\.com/\" to=\"https://$1.alcatel-lucent.com/\"/><rule from=\"^http://www2\\.alcatel-lucent\\.com/(?:\\?.*)?$\" to=\"https://wwww.alcatel-lucent.com/\"/><rule from=\"^http://(market|services\\.support)\\.lucent\\.com/\" to=\"https://$1.lucent.com/\"/></ruleset>", "<ruleset name=\"alchemistowl.org\" f=\"Alchemistowl.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Alchemy Global.com\" f=\"Alchemy_Global.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Alcuda (partial)\" default_off=\"failed ruleset test\" f=\"Alcuda.xml\"><securecookie host=\"^affiliates\\.upforitnetworks\\.com$\" name=\".*\"/><rule from=\"^http://whitelabeldating\\.(?:alcuda|upforitnetworks)\\.com/\" to=\"https://whitelabeldating.upforitnetworks.com/\"/><rule from=\"^http://(?:cdn\\.)?wl\\.easydategroup\\.com/static/\" to=\"https://www.upforit.com/static/\"/><rule from=\"^http://(?:cdn\\.picstat2|upforit)\\.com/\" to=\"https://www.upforit.com/\"/><rule from=\"^http://shagaholic\\.com/\" to=\"https://www.shagaholic.com/\"/><rule from=\"^http://www\\.(shagaholic|upforit)\\.com/(login\\.html|static/)\" to=\"https://www.$1.com/$2\"/><rule from=\"^http://affiliates\\.upforitnetworks\\.com/\" to=\"https://affiliates.upforitnetworks.com/\"/><rule from=\"^http://(?:www\\.)?xhamster\\.biz/static/\" to=\"https://www.upforit.com/static/\"/></ruleset>", "<ruleset name=\"Aldergrove Credit Union\" f=\"Aldergrove-Credit-Union.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aleavia.com (partial)\" f=\"Aleavia.xml\"><rule from=\"^http://(www\\.)?shop\\.aleavia\\.com/(?=\\w+_\\d+\\.css|checkout\\.sc|images/|media/|qsctemplates/|static/)\" to=\"https://$1shop.aleavia.com/\"/></ruleset>", "<ruleset name=\"Alecomm.com\" default_off=\"failed ruleset test\" f=\"Alecomm.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AlertBot.com\" f=\"AlertBot.com.xml\"><securecookie host=\"^w*\\.alertbot\\.com$\" name=\".+\"/><rule from=\"^http://alertbot\\.com/\" to=\"https://www.alertbot.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Alert Investor Relations\" f=\"Alert_Investor_Relations.xml\"><securecookie host=\"^\\.alertir\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?alertir\\.com/\" to=\"https://www.alertir.com/\"/><rule from=\"^http://vp(\\d+)\\.alertir\\.com/\" to=\"https://vp$1.alertir.com/\"/></ruleset>", "<ruleset name=\"Alert Logic.com\" f=\"Alert_Logic.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Alert Online.nl\" f=\"Alert_Online.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Alestic.com\" f=\"Alestic.com.xml\"><rule from=\"^http://feeds\\.alestic\\.com/\" to=\"https://feeds.feedburner.com/\"/><rule from=\"^http://www\\.alestic\\.com/\" to=\"https://alestic.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Alex.se\" f=\"Alex.se.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Alex Cabal.com\" f=\"Alex_Cabal.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Alexa (partial)\" f=\"Alexa.xml\"><exclusion pattern=\"^http://www\\.alexa\\.com/(?!favicon\\.ico|css/|images/|secure/|\\w+/wp-content/)\"/><rule from=\"^http://pcache\\.alexa\\.com/\" to=\"https://d1uki75gjpelap.cloudfront.net/\"/><rule from=\"^http://xslt\\.alexa\\.com/\" to=\"https://d1loejjcvv1d9m.cloudfront.net/\"/><rule from=\"^http://pixel\\.alexametrics\\.com/\" to=\"https://d5nxst8fruw4z.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Alexander Interactive (partial)\" f=\"Alexander-Interactive.xml\"><rule from=\"^http://(?:cdn|origin)\\.at\\.ai/\" to=\"https://dzutovmmu6g2t.cloudfront.net/\"/></ruleset>", "<ruleset name=\"AlexanderCoward.com\" f=\"AlexanderCoward.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Alexandras Angel Gifts.co.uk (partial)\" default_off=\"expired\" f=\"Alexandras_Angel_Gifts.co.uk.xml\"><exclusion pattern=\"^http://alexandrasangelgifts\\.co\\.uk/+(?!wp-content/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"alfa Media Partner (partial)\" f=\"Alfa-Media-Partner.xml\"><rule from=\"^http://owa\\.alfa\\.de/\" to=\"https://owa.alfa.de/\"/><rule from=\"^http://sso\\.alfa-openmedia\\.de/\" to=\"https://sso.alfa-openmedia.de/\"/></ruleset>", "<ruleset name=\"Alfa.cz\" f=\"Alfa.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Alfabank.ru\" default_off=\"failed ruleset test\" f=\"Alfabank.ru.xml\"><rule from=\"^http://alfaportal\\.ru/\" to=\"https://www.alfaportal.ru/\"/><rule from=\"^http://(?:www\\.)?alfaportal\\.kz/\" to=\"https://p2p.alfaportal.kz/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Alfresco.com\" default_off=\"failed ruleset test\" f=\"Alfresco.com.xml\"><securecookie host=\"^my\\.alfresco\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Algonquin College\" f=\"Algonquin-College.xml\"><securecookie host=\"^([\\w.-]+)\\.algonquincollege\\.com$\" name=\".+\"/><rule from=\"^http://([\\w.-]+)\\.algonquincollege\\.com/\" to=\"https://$1.algonquincollege.com/\"/><exclusion pattern=\"^http://myalgonquin2\\.algonquincollege\\.com/\"/></ruleset>", "<ruleset name=\"Algorithmwatch.org\" f=\"Algorithmwatch.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AliCDN.com (partial)\" f=\"AliCDN.com.xml\"><rule from=\"^http://atms0(\\d)\\.alicdn\\.com/\" to=\"https://gtms0$1.alicdn.com/\"/><rule from=\"^http://g0(\\d)\\.[ast]\\.alicdn\\.com/\" to=\"https://sc0$1.alicdn.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AliExpress.com (partial)\" f=\"AliExpress.com.xml\"><securecookie host=\"^\\.\" name=\"^ali_apache_track(?:tmp)?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Alianza\" f=\"Alianza.xml\"><securecookie host=\"\\.alianza\\.tv$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"alias.io\" f=\"Alias.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Alibaba.com (partial)\" default_off=\"failed ruleset test\" f=\"Alibaba.xml\"><exclusion pattern=\"^http://(?!www\\.)(?:[^./]+\\.){2,}(?:en|fm)\\.alibaba\\.com/\"/><exclusion pattern=\"^http://(?:[^./]+\\.){2,}trustpass\\.alibaba\\.com/\"/><securecookie host=\"^\\.\" name=\"^(?:__utm|ali_apache_track(?:tmp)?$|ali_beacon_id$)\"/><securecookie host=\"^\\w\" name=\".+\"/><rule from=\"^http://www\\.bd\\.alibaba\\.com/\" to=\"https://bd.alibaba.com/\"/><rule from=\"^http://img\\.china\\.alibaba\\.com/\" to=\"https://cbu01.alicdn.com/\"/><rule from=\"^http://www\\.([^.]+)\\.(en|fm)\\.alibaba\\.com/\" to=\"https://$1.$2.alibaba.com/\"/><rule from=\"^http://img\\.alibaba\\.com/\" to=\"https://is.alicdn.com/\"/><rule from=\"^http://style\\.alibaba\\.com/\" to=\"https://stylessl.alibaba.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AliceDSL\" default_off=\"failed ruleset test\" f=\"AliceDSL.xml\"><securecookie host=\"^(?:.*\\.)?alice-dsl\\.de$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?alice\\.de/\" to=\"https://www.alice-dsl.de/\"/><rule from=\"^http://alice\\.de/\" to=\"https://www.alice-dsl.de/\"/><rule from=\"^http://alice-dsl\\.de/\" to=\"https://www.alice-dsl.de/\"/><rule from=\"^http://(?:www\\.)?alice-dsl\\.de/\" to=\"https://www.alice-dsl.de/\"/></ruleset>", "<ruleset name=\"Alien.net.au\" default_off=\"failed ruleset test\" f=\"Alien.net.au.xml\"><securecookie host=\"^\\.alien\\.net\\.au$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AlienVault (partial)\" f=\"AlienVault.xml\"><securecookie host=\"^.*\\.alienvault\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?alienvault\\.com/\" to=\"https://www.alienvault.com/\"/><rule from=\"^http://(cloud|communities|resources)\\.alienvault\\.com/\" to=\"https://$1.alienvault.com/\"/><rule from=\"^http://forums\\.alienvault\\.com/\" to=\"https://alienvault.vanillaforums.com/\"/></ruleset>", "<ruleset name=\"Aliimg.com (partial)\" f=\"Aliimg.com.xml\"><rule from=\"^http://i0[05]\\.c\\.aliimg\\.com/\" to=\"https://cbu01.alicdn.com/\"/><rule from=\"^http://i0(\\d)\\.c\\.aliimg\\.com/\" to=\"https://cbu0$1.alicdn.com/\"/><rule from=\"^http://style\\.c\\.aliimg\\.com/\" to=\"https://astyle.alicdn.com/\"/><rule from=\"^http://i0(\\d)\\.i\\.aliimg\\.com/\" to=\"https://sc0$1.alicdn.com/\"/><rule from=\"^http://kfdown\\.s\\.aliimg\\.com/\" to=\"https://is.alicdn.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Alimama.com (partial)\" f=\"Alimama.com.xml\"><rule from=\"^http://alimama\\.com/\" to=\"https://www.alimama.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Alionet.org\" f=\"Alionet.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Alipay.com (partial)\" f=\"Alipay.com.xml\"><securecookie host=\"^(?!fun\\.).\" name=\".\"/><rule from=\"^http://alipay\\.com/\" to=\"https://www.alipay.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Alitrip.com\" f=\"Alitrip.com.xml\"><securecookie host=\"^\\.alitrip\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aliunicorn.com\" f=\"Aliunicorn.com.xml\"><rule from=\"^http://style\\.aliunicorn\\.com/\" to=\"https://stylessl.aliunicorn.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"alivenotdead.com\" f=\"Alivenotdead.com.xml\"><securecookie host=\"^(?:www)?\\.alivenotdead\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?alivenotdead\\.com/\" to=\"https://www.alivenotdead.com/\"/><rule from=\"^http://s3\\.alivenotdead\\.com/\" to=\"https://s3.alivenotdead.com/\"/></ruleset>", "<ruleset name=\"Aliyun.com (partial)\" f=\"Aliyun.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"alkasir.com\" f=\"Alkasir.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Alkohol.cz\" f=\"Alkohol.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"All Above Offers\" platform=\"mixedcontent\" f=\"All-Above-Offers.xml\"><rule from=\"^http://(?:www\\.)?abovealloffers\\.com/\" to=\"https://www.abovealloffers.com/\"/></ruleset>", "<ruleset name=\"All-inkl.com\" f=\"All-Inkl.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?all-inkl\\.\\w\\w/\" to=\"https://all-inkl.com/\"/><rule from=\"^http://([^/:@.]+\\.)?all-inkl\\.com/\" to=\"https://$1all-inkl.com/\"/></ruleset>", "<ruleset name=\"all4xs.net\" f=\"All4xs.net.xml\"><securecookie host=\"^(?:www\\.)?all4xs\\.net$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AllClear ID.com\" f=\"AllClearid.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AllCoin.com\" f=\"AllCoin.com.xml\"><securecookie host=\"^(?:www)?\\.allcoin\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AllCrypt.com\" default_off=\"needs clearnet testing\" f=\"AllCrypt.com.xml\"><securecookie host=\"^\\.allcrypt\\.com$\" name=\".+\"/><rule from=\"^http://support\\.allcrypt\\.com/.*\" to=\"https://allcrypt.zendesk.com/hc\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AllDebrid.com (partial)\" f=\"AllDebrid.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AllDebrid.fr\" f=\"AllDebrid.fr.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AllJoyn.org\" default_off=\"mismatched\" f=\"AllJoyn.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AllMyChanges.com\" default_off=\"failed ruleset test\" f=\"AllMyChanges.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AllPlayers.com\" f=\"AllPlayers.com.xml\"><securecookie host=\".*\\.allplayers\\.com$\" name=\".+\"/><rule from=\"^http://((?:f|m|platform|store|usarugbystats|www)\\.)?allplayers\\.com/\" to=\"https://$1allplayers.com/\"/></ruleset>", "<ruleset name=\"AllPosters.com (partial)\" f=\"AllPosters.com.xml\"><securecookie host=\"^(?:\\.|affiliates\\.|\\.atrack\\.)?allposters\\.com$\" name=\".+\"/><rule from=\"^http://allposters\\.com/\" to=\"https://www.allposters.com/\"/><rule from=\"^http://imagecache(2)?\\.allposters\\.com/\" to=\"https://secureimg$1.allposters.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AllPosters images.com\" f=\"AllPosters_images.com.xml\"><rule from=\"^http://cache1\\.allpostersimages\\.com/\" to=\"https://secureimg.allposters.com/\"/></ruleset>", "<ruleset name=\"AllSeen Alliance.org\" f=\"AllSeen_Alliance.org.xml\"><securecookie host=\"^(?:ask|jira|wiki)\\.allseenalliance\\.org$\" name=\".+\"/><rule from=\"^http://((?:ask|git|jira|lists|wiki|www)\\.)?allseenalliance\\.org/\" to=\"https://$1allseenalliance.org/\"/></ruleset>", "<ruleset name=\"AllShare_Play\" default_off=\"failed ruleset test\" f=\"AllShare_Play.xml\"><exclusion pattern=\"^http://m\\.allshareplay\\.com/$\"/><rule from=\"^http://allshareplay\\.com/$\" to=\"https://link.samsung.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AllThingsD.com (mismatched)\" default_off=\"mismatched\" f=\"AllThingsD.com-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AllThingsD.com (partial)\" f=\"AllThingsD.xml\"><exclusion pattern=\"^http://allthingsd\\.com/(?!/*(?:favicon\\.ico|files/|theme/|wp-content/|wp-includes/))\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AllUnmanaged.com\" f=\"AllUnmanaged.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AllYou.net\" f=\"AllYou.net.xml\"><securecookie host=\"^(?:www)?\\.allyou\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"All About Security\" default_off=\"mismatched, self-signed\" f=\"All_About_Security.xml\"><securecookie host=\"^www\\.all-about-security\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?all-about-security\\.de/\" to=\"https://www.all-about-security.de/\"/></ruleset>", "<ruleset name=\"All American Trains\" f=\"All_American_Trains.xml\"><securecookie host=\"^\\.(?:www\\.)?aat-net\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"All Day Calm\" f=\"All_Day_Calm.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"All My Base.com\" f=\"All_My_Base.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"All Star Tire\" f=\"All_Star_Tire.xml\"><securecookie host=\"^(?:.*\\.)?allstartire\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"All You Can Arcade.com (partial)\" f=\"All_You_Can_Arcade.com.xml\"><securecookie host=\"^www\\.allyoucanarcade\\.com$$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?allyoucanarcade\\.com/\" to=\"https://www.allyoucanarcade.com/\"/><rule from=\"^http://blog\\.allyoucanarcade\\.com/wp-content/\" to=\"https://secure.bluehost.com/~findmymi/allyoucanarcadeblog/wp-content/\"/></ruleset>", "<ruleset name=\"AllahsQuran.com\" f=\"AllahsQuran.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Allegro\" default_off=\"reported broken\" f=\"Allegro.xml\"><rule from=\"^http://(?:www\\.)?allegro\\.pl/\" to=\"https://ssl.allegro.pl/\"/></ruleset>", "<ruleset name=\"Alliance '90/The Greens (partial)\" f=\"Alliance-90-The-Greens.xml\"><securecookie host=\"^www\\.gruene\\.de$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AllianceBernstein (partial)\" f=\"AllianceBernstein.xml\"><securecookie host=\"^(?:www\\.)?alliancebernstein\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?(alliance)?bernstein\\.com/\" to=\"https://$1$2bernstein.com/\"/></ruleset>", "<ruleset name=\"Allianz für Cyber-Sicherheit\" f=\"Allianz_fur_Cyber-Sicherheit.xml\"><securecookie host=\"^www\\.(?:allianz-?fuer-?cybersicherheit\\.(?:de|org)|cybersicherheits-allianz\\.de)$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?(allianz-?fuer-?cybersicherheit\\.(?:de|org)|cybersicherheits-allianz\\.de)/\" to=\"https://www.$1/\"/></ruleset>", "<ruleset name=\"AlliedModders\" f=\"AlliedMods.xml\"><securecookie host=\"^(?:.*\\.)?alliedmods\\.net$\" name=\".+\"/><rule from=\"^http://([^/@:\\.]+)\\.alliedmods\\.net/\" to=\"https://$1.alliedmods.net/\"/><rule from=\"^http://alliedmods\\.net/\" to=\"https://alliedmods.net/\"/></ruleset>", "<ruleset name=\"Allied Media.org\" f=\"Allied_Media.org.xml\"><securecookie host=\"^\\.(?:store|talk)\\.alliedmedia\\.org$\" name=\".+\"/><rule from=\"^http://((?:amc|store|talk|www)\\.)?alliedmedia\\.org/\" to=\"https://$1alliedmedia.org/\"/></ruleset>", "<ruleset name=\"Allistene.fr\" f=\"Allistene.fr.xml\"><rule from=\"^http://allistene\\.fr/\" to=\"https://www.allistene.fr/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Allizom.org (partial)\" default_off=\"failed ruleset test\" f=\"Allizom.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://developer-dev\\.allizom\\.org/+\" to=\"https://allizom.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Allmend.ch (partial)\" f=\"Allmend.ch.xml\"><securecookie host=\"^(www\\.)?allmend\\.ch$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"allmyvideos.net (partial)\" default_off=\"failed ruleset test\" f=\"Allmyvideos.net.xml\"><securecookie host=\"^(?:api|cacti)?\\.allmyvideos\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Alloscomp.com\" f=\"Alloscomp.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://www\\.alloscomp\\.com/\" to=\"https://alloscomp.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Alloy Digital (partial)\" default_off=\"failed ruleset test\" f=\"Alloy_Digital.xml\"><rule from=\"^http://cdn\\.b5media\\.com/\" to=\"https://d36nwfv100lk1n.cloudfront.net/\"/><rule from=\"^http://cdn\\.blisstree\\.com/\" to=\"https://d2oiv51wjnj5wa.cloudfront.net/\"/><rule from=\"^http://cdn\\.crushable\\.com/\" to=\"https://d1r0ty19i0gtvo.cloudfront.net/\"/><rule from=\"^http://cdn\\.mommyish\\.com/\" to=\"https://dkuyan05fvz6l.cloudfront.net/\"/><rule from=\"^http://cdn\\.thegloss\\.com/\" to=\"https://daispricmon6s.cloudfront.net/\"/><rule from=\"^http://cdn\\.thegrindstone\\.com/\" to=\"https://d176o63igdzvgd.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Allpoetry\" default_off=\"breaks login\" f=\"Allpoetry.xml\"><securecookie host=\"^\\.?allpoetry\\.com$\" name=\".+\"/><rule from=\"^http://(?:(a\\.)|www\\.)?allpoetry\\.com/\" to=\"https://$1allpoetry.com/\"/></ruleset>", "<ruleset name=\"AllTop.com\" f=\"Alltop.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AllTube Download.net\" f=\"AlltubeDownload.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Alluremedia (partial)\" f=\"Alluremedia.xml\"><rule from=\"^http://edge\\.alluremedia\\.com\\.au/(assets/img|m)/\" to=\"https://i0.wp.com/edge.alluremedia.com.au/$1/\"/><rule from=\"^http://(?:edge|secure)\\.alluremedia\\.com/\" to=\"https://secure.alluremedia.com.au/\"/></ruleset>", "<ruleset name=\"Ally Financial (problematic)\" default_off=\"mismatched\" f=\"Ally_Financial-problematic.xml\"><rule from=\"^http://community\\.ally\\.com/\" to=\"https://community.ally.com/\"/></ruleset>", "<ruleset name=\"Ally Financial (partial)\" default_off=\"failed ruleset test\" f=\"Ally_Financial.xml\"><securecookie host=\".*\\.ally\\.com$\" name=\".+\"/><rule from=\"^http://((?:billpay|chat|m|online-application|secure|survey|www)\\.)?ally\\.com/\" to=\"https://$1ally.com/\"/><rule from=\"^http://(?:www\\.)?allybank\\.com/\" to=\"https://www.ally.com/\"/><rule from=\"^http://www\\.smartauction\\.biz/\" to=\"https://www.smartauction.biz/\"/></ruleset>", "<ruleset name=\"alonetone (partial)\" f=\"Alonetone.xml\"><rule from=\"^http://stash\\.alonetone\\.com/\" to=\"https://s3.amazonaws.com/stash.alonetone.com/\"/></ruleset>", "<ruleset name=\"AlphaSSL\" f=\"AlphaSSL.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Alpha Dominche.com\" default_off=\"404\" f=\"Alpha_Dominche.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Alpine Linux.org (partial)\" f=\"Alpine_Linux.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Alpnames.com\" f=\"Alpnames.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AlreadyHosting.com (partial)\" default_off=\"refused\" f=\"AlreadyHosting.com.xml\"><securecookie host=\"^(?:.*\\.)?bestwebhostinggeek\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Alt-Sheff.org\" f=\"Alt-Sheff.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AltQuick.co\" f=\"AltQuick.co.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Alta Ski Area\" f=\"Alta_Ski_Area.xml\"><securecookie host=\"^shop\\.alta\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?alta\\.com/\" to=\"https://www.alta.com/\"/><rule from=\"^http://shop\\.alta\\.com/\" to=\"https://shop.alta.com/\"/></ruleset>", "<ruleset name=\"Alteeve.ca\" f=\"Alteeve.ca.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AlterNet.org\" f=\"AlterNet.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Altera.com (partial)\" f=\"Altera.com.xml\"><rule from=\"^http://(?:www\\.)?altera\\.com/(?=common/|favicon\\.ico|js\\.lib/|myaltera(?:$|[?/]))\" to=\"https://www.altera.com/\"/></ruleset>", "<ruleset name=\"Altera Praxis.com\" default_off=\"self-signed\" f=\"Altera_Praxis.com.xml\"><rule from=\"^http://(?:www\\.)?alterapraxis\\.com/\" to=\"https://www.alterapraxis.com/\"/></ruleset>", "<ruleset name=\"AlternC (partial)\" default_off=\"failed ruleset test\" f=\"AlternC.xml\"><securecookie host=\"^(?:www\\.)?alternc\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Alternate\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Alternate.xml\"><rule from=\"^http://([^/:@]*)\\.alternate\\.be/\" to=\"https://$1.alternate.be/\"/><rule from=\"^http://alternate\\.be/\" to=\"https://alternate.be/\"/><rule from=\"^http://([^/:@]*)\\.alternate\\.nl/\" to=\"https://$1.alternate.nl/\"/><rule from=\"^http://alternate\\.nl/\" to=\"https://alternate.nl/\"/><rule from=\"^http://([^/:@]*)\\.alternate-b2b\\.nl/\" to=\"https://$1.alternate-b2b.nl/\"/><rule from=\"^http://alternate-b2b\\.nl/\" to=\"https://alternate-b2b.nl/\"/></ruleset>", "<ruleset name=\"Alternatif Bilisim.org\" f=\"Alternatif_Bilisim.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Alternative Libertaire\" f=\"AlternativeLibertaire.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Alternatives.ca\" f=\"Alternatives.ca.xml\"><rule from=\"^http://(?:www\\.)?alternatives\\.ca/\" to=\"https://www.alternatives.ca/\"/></ruleset>", "<ruleset name=\"Alternativet (partial)\" f=\"Alternativet.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Alternativeto.net\" f=\"Alternativeto.net.xml\"><rule from=\"^http://www\\.alternativeto\\.net/\" to=\"https://alternativeto.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Alternativlos.org\" f=\"Alternativlos.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Altex.ro (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Altex.ro.xml\"><securecookie host=\"^\\.\" name=\"^_gat$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://cdn\\.altex\\.ro/\" to=\"https://d2qpxedcu5ji30.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Alticore (partial)\" f=\"Alticore.xml\"><exclusion pattern=\"^http://www\\.amway\\.com/Shop/Product/\"/><rule from=\"^http://(?:www\\.)?amway\\.com/\" to=\"https://www.amway.com/\"/><rule from=\"^http://(www\\.)?bww\\.com/(css/|images/|Common/CharitableGiving\\.aspx)\" to=\"https://$1bww.com/$2\"/><rule from=\"^http://(www\\.)?lauramercier\\.com/(store/(account|cart|template)/|subscription/)\" to=\"https://$1lauramercier.com/$2\"/></ruleset>", "<ruleset name=\"altii.de\" f=\"Altii.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Altimate Wellness (partial)\" f=\"Altimate_Wellness.xml\"><rule from=\"^http://(www\\.)?altimatewellness\\.com/wp-(admin(?:/|\\.php)|content/|includes/)\" to=\"https://$1altimatewellness.com/wp-$2\"/></ruleset>", "<ruleset name=\"Altinget.dk (partial)\" f=\"Altinget.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Altmetric.com\" f=\"Altmetric.com.xml\"><exclusion pattern=\"^http://(metricstoolkit|status)\\.altmetric\\.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Alton Towers Resort\" f=\"AltonTowers.xml\"><securecookie host=\"www\\.altontowers\\.com$\" name=\".+\"/><rule from=\"^http://altontowers\\.com/\" to=\"https://www.altontowers.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Altoona Mirror.com (partial)\" f=\"Altoona-Mirror.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://mobile\\.altoonamirror\\.com/$\" to=\"https://www.altoonamirror.com/page/wap.frontPage/\"/><rule from=\"^http://(?:mobile\\.)?altoonamirror\\.com/\" to=\"https://www.altoonamirror.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AlumFX.com\" f=\"AlumFX.com.xml\"><rule from=\"^http://(www\\.)?alumfx\\.com/images/\" to=\"https://$1alumfx.com/images/\"/></ruleset>", "<ruleset name=\"alumniconnections.com\" default_off=\"failed ruleset test\" f=\"Alumniconnections.com.xml\"><securecookie host=\"^secure\\.www\\.alumniconnections\\.com$\" name=\".+\"/><rule from=\"^http://(secure\\.www\\.|www\\.)?alumniconnections\\.com/\" to=\"https://$1alumniconnections.com/\"/></ruleset>", "<ruleset name=\"alwaysdata.com (problematic, false MCB)\" default_off=\"mismatched\" platform=\"mixedcontent\" f=\"Alwaysdata.com-problematic.xml\"><securecookie host=\"^(?:\\.?blog|forum)\\.alwaysdata\\.com$\" name=\".+\"/><rule from=\"^http://(blog|forum)\\.alwaysdata\\.com/\" to=\"https://$1.alwaysdata.com/\"/></ruleset>", "<ruleset name=\"alwaysdata.com (partial)\" f=\"Alwaysdata.com.xml\"><securecookie host=\"^(?!blog\\.|forum\\.)\\w+\\.alwaysdata\\.com$\" name=\".+\"/><rule from=\"^http://((?:admin|help|php(?:my|pg)admin|static|status|webmail|www)\\.)?alwaysdata\\.com/\" to=\"https://$1alwaysdata.com/\"/></ruleset>", "<ruleset name=\"Alzforum.org (partial)\" f=\"Alzforum.org.xml\"><rule from=\"^http://(www\\.)?alzforum\\.org/(?=favicon\\.ico|(?:login|my-alzforum|password-recovery|registration)(?:$|[?/])|sites/)\" to=\"https://$1alzforum.org/\"/></ruleset>", "<ruleset name=\"Alzheimer's Association (partial)\" f=\"Alzheimers_Association.xml\"><exclusion pattern=\"^http://act\\.alz\\.org/+(?!$|\\?|\\w+/images/|css/|favicon\\.ico|images/)\"/><securecookie host=\"^(?:sdc\\.|www\\.)?alz\\.org$\" name=\".+\"/><rule from=\"^http://((?:sdc|shop|www)\\.)?alz\\.org/\" to=\"https://$1alz.org/\"/></ruleset>", "<ruleset name=\"Alzheimer's Society (partial)\" f=\"Alzheimers_Society.xml\"><securecookie host=\"^(?:www)?\\.alzheimers\\.org\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?alzheimers\\.org\\.uk/\" to=\"https://www.alzheimers.org.uk/\"/><rule from=\"^http://shop\\.alzheimers\\.org\\.uk/(checkout(?:$|\\?|/)|_css/|images/|_img/|_js/)\" to=\"https://shop.alzheimers.org.uk/$1\"/></ruleset>", "<ruleset name=\"AmEx Travel.com\" f=\"AmEx_Travel.com.xml\"><securecookie host=\"^faq\\.amextravel\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AmExserve-static.com\" f=\"AmExserve-static.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Am I unique.org\" f=\"Am_I_unique.org.xml\"><rule from=\"^http://www\\.amiunique\\.org/\" to=\"https://amiunique.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amadeu-Antonio-Stiftung.de\" f=\"Amadeu-Antonio-Stiftung.de.xml\"><rule from=\"^http://amadeu-antonio-stiftung\\.de/\" to=\"https://www.amadeu-antonio-stiftung.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amahi.org (partial)\" default_off=\"failed ruleset test\" f=\"Amahi.org.xml\"><securecookie host=\"^(?:(?:bugs|\\.shop|wiki|www)\\.)?amahi\\.org$\" name=\".+\"/><rule from=\"^http://((?:blog|bugs|forums|shop|wiki|www)\\.)?amahi\\.org/\" to=\"https://$1amahi.org/\"/><rule from=\"^http://talk\\.amahi\\.org/.*\" to=\"https://webchat.freenode.net/?channels=amahi\"/></ruleset>", "<ruleset name=\"amara.org\" f=\"Amara.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"amazingweb\" f=\"Amazingweb.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amazon-Adsystem.com (partial)\" default_off=\"failed ruleset test\" f=\"Amazon-Adsystem.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://ps-us\\.amazon-adsystem\\.com/\" to=\"https://dnd1av4y9k5gc.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amazon.jobs\" default_off=\"failed ruleset test\" f=\"Amazon.jobs.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amazon.com\" f=\"Amazon.xml\"><securecookie host=\".\" name=\"^(?:aps-trtmnt$|s_v)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AmazonSupply.com\" f=\"AmazonSupply.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AmazonWebServices (breakzoom)\" default_off=\"breaks image zoom\" f=\"AmazonWebServices-breakzoom.xml\"><rule from=\"^http://ecx\\.images-amazon\\.com/\" to=\"https://images-na.ssl-images-amazon.com/\"/></ruleset>", "<ruleset name=\"AmazonWebServices\" f=\"AmazonWebServices.xml\"><exclusion pattern=\"^http://(?:static\\.via\\.me|img\\.wired\\.co\\.uk|s3\\.sandbaguk\\.com|spiegeltv-ivms2-restapi|www\\.mercyships\\.org|www-prod-storage\\.cloud\\.caltech\\.edu)\\.s3\\.amazonaws\\.com/\"/><exclusion pattern=\"^http://badracket-website\\.s3\\.amazonaws\\.com/swf/soundmanager\\d_flash\\d\\.swf\"/><exclusion pattern=\"^http://s3\\.amazonaws\\.com/pb_(sfx_)?previews/\"/><exclusion pattern=\"^http://ec\\.images-amazon\\.com/$\"/><exclusion pattern=\"^http://em\\.css\\.s3\\.amazonaws\\.com/style\\.css\"/><exclusion pattern=\"^http://s3\\.lbrcdn\\.net\\.s3-external-3\\.amazonaws\\.com/\"/><exclusion pattern=\"^http://charts-datawrapper\\.s3\\.amazonaws\\.com/\"/><exclusion pattern=\"^http://darkskysatellite(?:maps)?\\.s3\\.amazonaws\\.com/\"/><exclusion pattern=\"^http://g-ecx\\.images-amazon\\.com/.*(?:[mM][pP]3|zeitgeist|digital/music)\"/><exclusion pattern=\"^http://ecx\\.images-amazon\\.com/\"/><rule from=\"^http://static\\.newsblur\\.com\\.s3\\.amazonaws\\.com/\" to=\"https://s3.amazonaws.com/static.newsblur.com/\"/><rule from=\"^http://dis(\\.resized)?\\.images\\.s3\\.amazonaws\\.com/\" to=\"https://s3-eu-west-1.amazonaws.com/dis$1.images/\"/><rule from=\"^http://cms\\.kiva\\.org\\.s3\\.amazonaws\\.com/\" to=\"https://s3-us-west-1.amazonaws.com/cms.kiva.org/\"/><rule from=\"^http://fls-eu\\.amazon\\.co\\.uk/\" to=\"https://fls-eu.amazon.co.uk/\"/><rule from=\"^http://((?:docs|forums)\\.aws|aws|aws-portal|fls-eu|fls-na|webservices)\\.amazon\\.com/\" to=\"https://$1.amazon.com/\"/><rule from=\"^http://s3(?:-website)?(-ap-(?:nor|sou)theast-1|-eu-central-\\d|-(?:eu|us)-west-\\d|-external-\\d|-sa-east-1)?\\.amazonaws\\.com/\" to=\"https://s3$1.amazonaws.com/\"/><rule from=\"^http://static-course-assets\\.s3\\.amazonaws\\.com/\" to=\"https://static-course-assets.s3.amazonaws.com/\"/><rule from=\"^http://([\\w-]+)\\.s3(-ap-(?:nor|sou)theast-1|-(?:eu|us)-west-\\d|-external-\\d|-sa-east-1)?\\.amazonaws\\.com/\" to=\"https://$1.s3$2.amazonaws.com/\"/><rule from=\"^http://([\\w.-]+)\\.s3-us-west-2\\.amazonaws\\.com/\" to=\"https://s3-us-west-2.amazonaws.com/$1/\"/><rule from=\"^http://s3-website-us-east-1\\.amazonaws\\.com/\" to=\"https://s3.amazonaws.com/\"/><rule from=\"^http://(?:www\\.)?amazonwebservices\\.com/\" to=\"https://aws.amazon.com/\"/><rule from=\"^http://developer\\.amazonwebservices\\.com/\" to=\"https://developer.amazonwebservices.com/\"/><rule from=\"^http://media\\.amazonwebservices\\.com/\" to=\"https://s3.amazonaws.com/awsmedia/\"/><rule from=\"^http://(?:g-images\\.|(?:ec[5x]|g-ecx)\\.images-)amazon\\.com/\" to=\"https://d1ge0kk1l5kms0.cloudfront.net/\"/><rule from=\"^http://(?:(?:ec[1-8x]|z-ak)\\.images-|images(?:-jp)?\\.)amazon\\.com/\" to=\"https://images-na.ssl-images-amazon.com/\"/><exclusion pattern=\"^http://amazon-zg\\.s3\\.amazonaws\\.com/\"/><exclusion pattern=\"^http://[^@:/]+images[^@:/]+/images/G/01/zeitgeist/mp3player\"/><rule from=\"^http://images-(eu|fe|na)\\.ssl-images-amazon\\.com/\" to=\"https://images-$1.ssl-images-amazon.com/\"/></ruleset>", "<ruleset name=\"Amazon Trust.com\" f=\"Amazon_Trust.com.xml\"><rule from=\"^http://amazontrust\\.com/([^?]*).*\" to=\"https://www.amazontrust.com/$1\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amazon blogs.com\" default_off=\"failed ruleset test\" f=\"Amazon_blogs.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amber Swann Publishing (partial)\" f=\"Amber_Swann_Publishing.xml\"><rule from=\"^http://(www\\.)?amberswann\\.com/(components/|favicon\\.ico|images/|libraries/|media/|modules/|plugins/|templates/)\" to=\"https://$1amberswann.com/$2\"/></ruleset>", "<ruleset name=\"amblin.io (partial)\" f=\"Amblin.io.xml\"><securecookie host=\"^amblin\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"amBX.com\" default_off=\"expired\" f=\"Ambx.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"amd.co.at (partial)\" f=\"Amd.co.at.xml\"><exclusion pattern=\"^http://mail\\.amd\\.co\\.at/+(?!(?:phpmyadmin|roundcube)(?:$|[?/]))\"/><rule from=\"^http://(?:(diebold\\.|mail\\.)|www\\.)?amd\\.co\\.at/\" to=\"https://$1amd.co.at/\"/></ruleset>", "<ruleset name=\"Amd.com\" f=\"Amd.com.xml\"><exclusion pattern=\"http://(www\\.)?amd.com/featuredetails\"/><rule from=\"^http://amd\\.com/\" to=\"https://www.amd.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ameba.jp (partial)\" f=\"Ameba.xml\"><exclusion pattern=\"^http://stat\\.ameba\\.jp/user_images/\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amelia Andersdotter.eu\" f=\"Amelia_Andersdotter.eu.xml\"><rule from=\"^http://(?:www\\.)?ameliaandersdotter\\.eu/\" to=\"https://ameliaandersdotter.eu/\"/></ruleset>", "<ruleset name=\"American Association of Neurological Surgeons\" default_off=\"failed ruleset test\" f=\"American-Association-of-Neurological-Surgeons.xml\"><securecookie host=\"^(?:.*\\.)?aans\\.org$\" name=\".*\"/><rule from=\"^http://(\\w+\\.)?aans\\.org/\" to=\"https://$1aans.org/\"/></ruleset>", "<ruleset name=\"ACS.org (partial)\" default_off=\"failed ruleset test\" f=\"American-Chemical-Society.xml\"><securecookie host=\"^\\.\" name=\"^s_v\"/><securecookie host=\"^(?!pubs\\.)\\w\" name=\".\"/><rule from=\"^http://renew\\.acs\\.org/\" to=\"https://www.renew.acs.org/\"/><rule from=\"^http://webanalytics\\.acs\\.org/\" to=\"https://achsportal.122.2o7.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AESnet.org (partial)\" f=\"American-Epilepsy-Society.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"APS.org (partial)\" f=\"American-Physical-Society.xml\"><exclusion pattern=\"^http://feeds\\.aps\\.org/(?!$|\\?)\"/><securecookie host=\"^(?!feeds\\.)\\w\" name=\".\"/><rule from=\"^http://feeds\\.aps\\.org/.*\" to=\"https://journals.aps.org/feeds\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"American Postal Workers Union\" f=\"American-Postal-Workers-Union.xml\"><securecookie host=\"^www\\.apwu\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?apwu\\.org/\" to=\"https://www.apwu.org/\"/><rule from=\"^http://(?:www\\.)?apwustore\\.org/(?:apwu/)?\" to=\"https://www.costore.com/apwu/\"/></ruleset>", "<ruleset name=\"American University (partial)\" f=\"American-University.xml\"><rule from=\"^http://library\\.american\\.edu/\" to=\"https://www.american.edu/library/\"/><rule from=\"^http://([\\w\\.]+\\.)?american\\.edu/\" to=\"https://$1american.edu/\"/></ruleset>", "<ruleset name=\"AmericanExpress.com (partial)\" f=\"AmericanExpress.xml\"><securecookie host=\"^(?:www01\\.extra|online|rewards|search|travel|www209|www295|www304)\\.americanexpress\\.com$\" name=\".+\"/><rule from=\"^http://axptravel\\.americanexpress\\.com/$\" to=\"https://axptravel.americanexpress.com/consumertravel/travel.do\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"American Academy of Neurology (partial)\" f=\"American_Academy_of_Neurology.xml\"><securecookie host=\"^patients\\.aan\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?aan\\.com/(CFFileServlet/|contact/|globals/|go/|(?:index\\.cfm)?\\?axon=user\\.(?:login|profile)|skins/)\" to=\"https://www.aan.com/$1\"/><rule from=\"^http://patients\\.aan\\.com/\" to=\"https://patients.aan.com/\"/></ruleset>", "<ruleset name=\"American Ancestors.org (partial)\" f=\"American_Ancestors.org.xml\"><securecookie host=\"^www\\.americanancestors\\.org$\" name=\"^EkAnalytics$\"/><rule from=\"^http://(www\\.)?americanancestors\\.org/(?=css/|favicon\\.ico|images/|membershipproduct\\.aspx|uploadedImages/|WebResource\\.axd|WorkArea/)\" to=\"https://$1americanancestors.org/\"/></ruleset>", "<ruleset name=\"American Bar Association\" f=\"American_Bar_Association.xml\"><securecookie host=\"^(?:.*\\.)?americanbar\\.org$\" name=\".+\"/><rule from=\"^http://www\\.abanet\\.org/+(?=search/+common/+img/)\" to=\"https://apps.americanbar.org/\"/><rule from=\"^http://www\\.abanet\\.org/+(?=$|\\?)\" to=\"https://www.americanbar.org/content/aba/\"/><rule from=\"^http://www\\.abanet\\.org/+rppt(?:(?:/[^?]*)?(\\?.*)?)$\" to=\"https://www.americanbar.org/publications/probate_property_magazine_home.html$1\"/><rule from=\"^http://(apps\\.|www\\.)?americanbar\\.org/\" to=\"https://$1americanbar.org/\"/><rule from=\"^http://webstats\\.americanbar\\.org/\" to=\"https://americanbar-org.d1.sc.omtrdc.net/\"/></ruleset>", "<ruleset name=\"American Center for Law and Justice (partial)\" f=\"American_Center_for_Law_and_Justice.xml\"><securecookie host=\"^aclj\\.org$\" name=\".+\"/><rule from=\"^http://(www\\.)?aclj\\.org/\" to=\"https://$1aclj.org/\"/><rule from=\"^http://action\\.aclj\\.org/\\??$\" to=\"https://www.aclj.org/\"/><rule from=\"^http://images\\.aclj\\.org/\" to=\"https://c427193.ssl.cf2.rackcdn.com/\"/><rule from=\"^http://media\\.aclj\\.org/\" to=\"https://c391070.ssl.cf2.rackcdn.com/\"/></ruleset>", "<ruleset name=\"American College of Radiology (partial)\" f=\"American_College_of_Radiology.xml\"><securecookie host=\"^(?:login|shop)\\.acr\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?acr\\.org/(~|css|images|js|Login)($|\\?|/)\" to=\"https://www.acr.org/$1$2\"/><rule from=\"^http://(login|shop)\\.acr\\.org/\" to=\"https://$1.acr.org/\"/></ruleset>", "<ruleset name=\"American Flyer Trains.com\" f=\"American_Flyer_Trains.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"American Freedom.com\" default_off=\"failed ruleset test\" f=\"American_Freedom.com.xml\"><securecookie host=\"^americanfreedom\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"American Future Fund\" f=\"American_Future_Fund.xml\"><securecookie host=\"^(?:www\\.)?americanfuturefund\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"American Heart.org (partial)\" f=\"American_Heart.org.xml\"><exclusion pattern=\"^http://my\\.americanheart\\.org/(?!\\w+/(?:imag|theme)es/|favicon\\.ico)\"/><securecookie host=\"^donate\\.americanheart\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?americanheart\\.org/.*\" to=\"https://www.heart.org/\"/><rule from=\"^http://(donate|my)\\.americanheart\\.org/\" to=\"https://$1.americanheart.org/\"/></ruleset>", "<ruleset name=\"American Scientist.org\" f=\"American_Scientist.org.xml\"><securecookie host=\"^www\\.americanscientist\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?americanscientist\\.org/\" to=\"https://www.americanscientist.org/\"/><rule from=\"^http://amsciadmin\\.eresources\\.com/Libraries/\" to=\"https://www.americanscientist.org/Libraries/\"/></ruleset>", "<ruleset name=\"American Society of Media Photographers\" default_off=\"failed ruleset test\" f=\"American_Society_of_Media_Photographers.xml\"><securecookie host=\"^.*\\.asmp\\.org$\" name=\".+\"/><rule from=\"^http://(www\\.)?(admin\\.)?asmp\\.org/\" to=\"https://$1$2asmp.org/\"/></ruleset>", "<ruleset name=\"Americana Exchange\" default_off=\"failed ruleset test\" f=\"AmericanaExchange.xml\"><rule from=\"^http://(?:www\\.)?americanaexchange\\.com/\" to=\"https://www.americanaexchange.com/\"/></ruleset>", "<ruleset name=\"Americans United (partial)\" f=\"Americans_United.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"America's Longest War\" default_off=\"mismatched\" f=\"Americas_Longest_War.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amerika21.de\" f=\"Amerika21.de.xml\"><rule from=\"^http://(?:www\\.)?amerika21\\.de/\" to=\"https://amerika21.de/\"/></ruleset>", "<ruleset name=\"amgdgt.com\" f=\"Amgdgt.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amherst.edu\" f=\"Amherst.edu.xml\"><rule from=\"^http://(?:www\\.)?amherst\\.edu/\" to=\"https://www.amherst.edu/\"/></ruleset>", "<ruleset name=\"Amiami.jp (partial)\" f=\"Amiami.jp.xml\"><securecookie host=\"^secure\\.amiami\\.jp$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"amiando (partial)\" f=\"Amiando.xml\"><securecookie host=\".*\\.amiando\\.com$\" name=\".+\"/><rule from=\"^http://amiando\\.com/\" to=\"https://www.amiando.com/\"/><rule from=\"^http://(?!blog\\.|info\\.)(\\w+)\\.amiando\\.com/\" to=\"https://$1.amiando.com/\"/></ruleset>", "<ruleset name=\"Amica.com\" f=\"Amica.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amnesty.org (partial)\" default_off=\"failed ruleset test\" f=\"Amnesty-International.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amnesty-in-Bewegung.de\" f=\"Amnesty-in-Bewegung.de.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amnesty.at\" f=\"Amnesty.at.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amnesty.ch (partial)\" f=\"Amnesty.ch.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amnesty.de (partial)\" f=\"Amnesty.de.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amnesty.fi\" f=\"Amnesty.fi.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://amnesty\\.fi/\" to=\"https://www.amnesty.fi/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amnesty.fr\" f=\"Amnesty.fr.xml\"><securecookie host=\"^\\w\" name=\".+\"/><rule from=\"^http://marathon\\.amnesty\\.fr/\" to=\"https://www.amnesty.fr/personnes\"/><rule from=\"^http://(m|siteslocaux)\\.amnesty\\.fr/\" to=\"https://www.amnesty.fr/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amnesty.gr\" f=\"Amnesty.gr.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://amnesty\\.gr/\" to=\"https://www.amnesty.gr/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amnesty.ie\" f=\"Amnesty.ie.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amnesty.it (partial)\" f=\"Amnesty.it.xml\"><exclusion pattern=\"^http://www\\.amnesty\\.it/+(?!flex/(?:Extensions/templates|FixedPages|TemplatesUSR|cm/pages/ServeCSS\\.php|images)/)\"/><securecookie host=\"^\\.\" name=\"^ubvt$\"/><securecookie host=\"^(?!www\\.)\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amnesty.or.jp\" f=\"Amnesty.or.jp.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://amnesty\\.or\\.jp/\" to=\"https://www.amnesty.or.jp/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amnesty.org.nz\" default_off=\"failed ruleset test\" f=\"Amnesty.org.nz.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://amnesty\\.org\\.nz/\" to=\"https://www.amnesty.org.nz/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amnesty.org.pl\" f=\"Amnesty.org.pl.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.amnesty\\.org\\.pl/\" to=\"https://amnesty.org.pl/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amnesty.org.ru\" f=\"Amnesty.org.ru.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amnesty.org.tr (partial)\" f=\"Amnesty.org.tr.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amnesty.org.uk (partial)\" f=\"Amnesty.org.uk.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amnesty.se (partial)\" f=\"Amnesty.se.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amnesty.tw (partial)\" f=\"Amnesty.tw.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amnesty.no (partial)\" f=\"Amnesty_International_Norway.xml\"><exclusion pattern=\"^http://www\\.amnesty\\.no/+(?!sites/)\"/><securecookie host=\"^minside\\.amnesty\\.no$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amnesty USA.org (partial)\" f=\"Amnesty_USA.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amnistia.cl\" default_off=\"expired\" f=\"Amnistia.cl.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amnistia.org.mx (false MCB)\" platform=\"mixedcontent\" f=\"Amnistia.org.mx.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amnistia.org.pe\" platform=\"mixedcontent\" f=\"Amnistia.org.pe.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amoena\" default_off=\"failed ruleset test\" f=\"Amoena.xml\"><rule from=\"^http://(www\\.)?amoena\\.com/\" to=\"https://www.amoena.com/\"/><rule from=\"^http://(www\\.)?amoena\\.de/\" to=\"https://www.amoena.de/\"/><rule from=\"^http://(www\\.)?amoena\\.fr/\" to=\"https://www.amoena.fr/\"/><rule from=\"^http://(www\\.)?amoena\\.us/\" to=\"https://www.amoena.us/\"/><rule from=\"^http://b2b\\.amoena\\.(fr|us)/\" to=\"https://b2b.amoena.$1/\"/></ruleset>", "<ruleset name=\"Ampersandjs.com (partial)\" f=\"Ampersandjs.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AMS-IX.net\" f=\"Amsterdam_Internet_Exchange.xml\"><securecookie host=\"^(?:w*\\.)?ams-ix\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amtel (partial)\" default_off=\"mismatched\" f=\"Amtel.xml\"><rule from=\"^http://ir\\.amtel\\.com/common/\" to=\"https://ir.amtel.com/common/\"/><rule from=\"^http://store\\.atmel\\.com/\" to=\"https://store.atmel.com/\"/></ruleset>", "<ruleset name=\"An.de\" f=\"An.de.xml\"><securecookie host=\"^pk\\.an\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"An Post.ie (partial)\" f=\"AnPost.xml\"><securecookie host=\"^(?:edocket|www)\\.anpost\\.ie$\" name=\".+\"/><rule from=\"^http://anpost\\.ie/\" to=\"https://www.anpost.ie/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Anadolu University\" default_off=\"failed ruleset test\" f=\"Anadolu.edu.tr.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Analyst One.com (false MCB)\" default_off=\"mismatched\" platform=\"mixedcontent\" f=\"Analyst_One.com.xml\"><securecookie host=\"^\\.analystone\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?analystone\\.com/\" to=\"https://analystone.com/\"/></ruleset>", "<ruleset name=\"analytics.edgesuite.net\" f=\"Analytics.edgesuite.net.xml\"><rule from=\"^http://([\\w-]+)\\.analytics\\.edgekey\\.net/\" to=\"https://$1.analytics.edgekey.net/\"/></ruleset>", "<ruleset name=\"Ananda.org (partial)\" f=\"Ananda_Sangha.xml\"><exclusion pattern=\"^http://www\\.ananda\\.org/+(?!support-ananda/|wp-content/|wp-includes/)\"/><rule from=\"^http://(?:www\\.)?ananda\\.org/\" to=\"https://www.ananda.org/\"/></ruleset>", "<ruleset name=\"AnarchistNews.org\" f=\"AnarchistNews.xml\"><securecookie host=\"^(www\\.)?anarchistnews.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Anarplex.net\" default_off=\"failed ruleset test\" f=\"Anarplex.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ancestry.com (partial)\" default_off=\"failed ruleset test\" f=\"Ancestry.xml\"><securecookie host=\"^secure\\.ancestry\\.co\\.uk$\" name=\".+\"/><securecookie host=\"^dna\\.ancestry\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Anchor.com.au (partial)\" f=\"Anchor.xml\"><exclusion pattern=\"^http://www\\.anchor\\.com\\.au/+(?!forms(?:$|[?/])|wp-content/)\"/><securecookie host=\"^\\.\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AnchorFree (partial)\" f=\"AnchorFree.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ancud.de\" default_off=\"self-signed\" f=\"Ancud.de.xml\"><securecookie host=\"^www\\.ancud\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ancud\\.de/\" to=\"https://www.ancud.de/\"/></ruleset>", "<ruleset name=\"Andalucia Property Rentals\" default_off=\"expired, self-signed\" f=\"Andalucia_Property_Rentals.com.xml\"><securecookie host=\"^andaluciapropertyrentals\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?andaluciapropertyrentals\\.com/\" to=\"https://andaluciapropertyrentals.com/\"/></ruleset>", "<ruleset name=\"Anders.com\" default_off=\"expired, self-signed\" f=\"Anders.com.xml\"><securecookie host=\"^www\\.anders\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?anders\\.com/\" to=\"https://www.anders.com/\"/></ruleset>", "<ruleset name=\"Andesi.org\" default_off=\"self-signed\" f=\"Andesi.org.xml\"><securecookie host=\"^andesi\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Andor.com\" default_off=\"failed ruleset test\" f=\"Andor.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?andor\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Andrea Fabrizi.it\" f=\"Andrea_Fabrizi.it.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Andrew Blum\" default_off=\"mismatched\" f=\"Andrew-Blum.xml\"><rule from=\"^http://(?:www\\.)?andrewblum\\.net/\" to=\"https://andrewblum.net/\"/></ruleset>", "<ruleset name=\"Andrew Munsell\" f=\"Andrew-Munsell.xml\"><rule from=\"^http://(www\\.)?andrewmunsell\\.com/\" to=\"https://www.andrewmunsell.com/\"/></ruleset>", "<ruleset name=\"Andrew Brookins.com\" default_off=\"missing certificate chain\" f=\"Andrew_Brookins.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Android-Arsenal.com\" f=\"Android-Arsenal.com.xml\"><securecookie host=\"^android-arsenal\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?android-arsenal\\.com/\" to=\"https://android-arsenal.com/\"/></ruleset>", "<ruleset name=\"Android-Port.de\" f=\"Android-Port.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Android.com\" f=\"Android.xml\"><securecookie host=\".+\\.android\\.com$\" name=\".+\"/><rule from=\"^http://((?:developer|market|source)\\.)?android\\.com/\" to=\"https://$1android.com/\"/><rule from=\"^http://tools\\.android\\.com/\" to=\"https://sites.google.com/a/android.com/tools/\"/></ruleset>", "<ruleset name=\"Androidpolice\" default_off=\"failed ruleset test\" f=\"AndroidPolice.xml\"><rule from=\"^http://(?:www\\.)?androidpolice\\.com/\" to=\"https://www.androidpolice.com/\"/></ruleset>", "<ruleset name=\"Android File Host.com\" f=\"Androidfilehost.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:_gat?$|_gat_|aps-trtmnt)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Androidpit\" default_off=\"failed ruleset test\" f=\"Androidpit.xml\"><securecookie host=\"^(www\\.)?androidpit\\.de\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Andy Tyson.com\" default_off=\"failed ruleset test\" f=\"Andy_Tyson.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Andy Walsh.com\" f=\"Andy_Walsh.com.xml\"><securecookie host=\"^(?:www)?\\.andywalsh\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"andyet.com (partial)\" f=\"Andyet.com.xml\"><rule from=\"^http://(?:(blog\\.|labs\\.)|www\\.)?andyet\\.com/\" to=\"https://$1andyet.com/\"/></ruleset>", "<ruleset name=\"Aneros.com\" f=\"Aneros.com.xml\"><securecookie host=\"^(?:www\\.)?aneros\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Angel.co (partial)\" f=\"AngelList.xml\"><securecookie host=\"^angel\\.co$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Angelika Film Center.com\" f=\"Angelika_Film_Center.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"anglomedia.net\" f=\"Anglomedia.net.xml\"><securecookie host=\"^www\\.anglomedia\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?anglomedia\\.net/\" to=\"https://www.anglomedia.net/\"/><rule from=\"^http://cdn\\.anglomedia\\.net/\" to=\"https://3024-iamnoonesolution.netdna-ssl.com/\"/></ruleset>", "<ruleset name=\"Angreifer.org\" f=\"Angreifer.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Angular-Gantt.com\" f=\"Angular-Gantt.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Angus.gov.uk (partial)\" f=\"Angus.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.(?:archive|services|www)\\.\" name=\".\"/><rule from=\"^http://library\\.angus\\.gov\\.uk/[^?]*\" to=\"https://angus.spydus.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AniList.co\" f=\"AniList.co.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AniRena\" f=\"AniRena.xml\"><securecookie host=\"^\\.(?:www\\.)?anirena\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AniDB.net\" f=\"Anidb.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Anidex.moe\" f=\"Anidex.moe.xml\"><rule from=\"^http://(www\\.)?anidex\\.moe/\" to=\"https://anidex.moe/\"/></ruleset>", "<ruleset name=\"Animal Law.info\" f=\"Animal_Law.info.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Anime-Planet\" f=\"Anime-Planet.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Animenfo.com\" platform=\"mixedcontent\" f=\"Animenfo.com.xml\"><rule from=\"^http://(?:www\\.)?animenfo\\.com/\" to=\"https://www.animenfo.com/\"/><securecookie host=\"\\.animenfo\\.com$\" name=\"PHPSESSID\"/><securecookie host=\"\\.animenfo\\.com$\" name=\"anforadio_(?:user|hash)\"/></ruleset>", "<ruleset name=\"Animoto.com (partial)\" f=\"Animoto.com.xml\"><rule from=\"^http://(www\\.)?animoto\\.com/(?=favicon\\.ico|images/|sign_(?:in|up)/*(?:$|\\?))\" to=\"https://$1animoto.com/\"/><rule from=\"^http://help\\.animoto\\.com/(?=favicon\\.ico|generated/|images/|system/|widgets/)\" to=\"https://animoto.zendesk.com/\"/><rule from=\"^http://static\\.animoto\\.com/\" to=\"https://d150hyw1dtprld.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Ann Summers.com (partial)\" default_off=\"failed ruleset test\" f=\"Ann_Summers.xml\"><exclusion pattern=\"^http://(?:www\\.)?annsummers\\.com/+(?:$|\\?|c/|page/|store)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Anne Summers.com Jobs\" default_off=\"mismatched\" f=\"Ann_Summers_Jobs.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"annihil.us\" f=\"Annihil.us.xml\"><rule from=\"^http://[ix]\\.annihil\\.us/\" to=\"https://i.annihil.us/\"/></ruleset>", "<ruleset name=\"Annonce.cz\" f=\"Annonce.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AnnualCreditReport.com\" f=\"AnnualCreditReport.com.xml\"><securecookie host=\"^(?:.*\\.)?annualcreditreport\\.com$\" name=\".+\"/><rule from=\"^http://([\\w-]+\\.)?annualcreditreport\\.com/\" to=\"https://$1annualcreditreport.com/\"/></ruleset>", "<ruleset name=\"Anomos (CAcert)\" platform=\"cacert\" default_off=\"failed ruleset test\" f=\"Anomos.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Anon-IB.com\" default_off=\"failed ruleset test\" f=\"Anon-IB.com.xml\"><securecookie host=\"^\\.anon-ib\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"anon.click\" f=\"Anon.click.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AnonFiles.com\" default_off=\"failed ruleset test\" f=\"AnonFiles.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AnonOps.com\" f=\"AnonOps.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Anon Imag.es\" f=\"Anon_Imag.es.xml\"><securecookie host=\"^\\.?anonimag\\.es$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Anonabox.com\" default_off=\"failed ruleset test\" f=\"Anonabox.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"anonbox.net\" f=\"Anonbox.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Anonine.com\" f=\"Anonine.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AnonySurfer.com\" default_off=\"failed ruleset test\" f=\"AnonySurfer.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Anonymizer\" f=\"Anonymizer.xml\"><rule from=\"^http://(www1?\\.)?anonymizer\\.com/\" to=\"https://$1anonymizer.com/\"/></ruleset>", "<ruleset name=\"anonymoX\" f=\"AnonymoX.xml\"><securecookie host=\"^(?:.*\\.)?anonymox\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AnonymousSpeech.com\" f=\"AnonymousSpeech.com.xml\"><securecookie host=\"^(?:www\\.)?anonymousspeech\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Anonymousads.com\" default_off=\"refused\" f=\"Anonymousads.com.xml\"><rule from=\"^http://(?:www\\.)?anonymousads\\.com/\" to=\"https://anonymousads.com/\"/></ruleset>", "<ruleset name=\"Anonymouse\" default_off=\"mismatched\" f=\"Anonymouse.xml\"><securecookie host=\"^anonymouse\\.me$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?anonymouse\\.me/\" to=\"https://anonymouse.me/\"/></ruleset>", "<ruleset name=\"Anpdm.com\" f=\"Anpdm.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ansa.it\" platform=\"mixedcontent\" f=\"Ansa.it.xml\"><rule from=\"^http://(?:www\\.)?ansa\\.it/\" to=\"https://www.ansa.it/\"/></ruleset>", "<ruleset name=\"Ansible.com (partial)\" f=\"Ansible.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|_gat?|_gat_|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://ansible\\.com/\" to=\"https://www.ansible.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ansible works.com (partial)\" default_off=\"failed ruleset test\" f=\"Ansible_works.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AnswCDN.com\" f=\"AnswCDN.com.xml\"><rule from=\"^http://en\\.site1\\.answcdn\\.com/\" to=\"https://sitecdn.answcdn.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Answers.com (partial)\" f=\"Answers.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.answers\\.com$\" name=\"^__qca$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Answers Cloud.com\" f=\"Answers_Cloud.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Antergos.com (partial)\" f=\"Antergos.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Antevenio (partial)\" default_off=\"failed ruleset test\" f=\"Antevenio.xml\"><securecookie host=\"^reachandrich\\.antevenio\\.com$\" name=\".+\"/><rule from=\"^http://reachandrich\\.antevenio\\.com/\" to=\"https://reachandrich.antevenio.com/\"/></ruleset>", "<ruleset name=\"Anthony Cameron.com\" f=\"Anthony_Cameron.com.xml\"><rule from=\"^http://(?:blog|www)\\.anthonycameron\\.com/\" to=\"https://anthonycameron.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Anthrocon\" f=\"Anthrocon.xml\"><securecookie host=\"^\\.anthrocon\\.org$\" name=\".+\"/><securecookie host=\"^www\\.anthrocon\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?anthrocon\\.org/\" to=\"https://www.anthrocon.org/\"/></ruleset>", "<ruleset name=\"APWG.org\" f=\"Anti-Phishing_Working_Group.xml\"><securecookie host=\"^(?:.+\\.)?apwg\\.org$\" name=\".+\"/><rule from=\"^http://(www\\.)?antiphishing\\.org/\" to=\"https://$1apwg.org/\"/><rule from=\"^http://((?:docs|education|info|members|www)\\.)?apwg\\.org/\" to=\"https://$1apwg.org/\"/></ruleset>", "<ruleset name=\"Antifa.cz (default off)\" default_off=\"certificate mismatch\" f=\"Antifa.cz.xml\"><rule from=\"^http://(?:www\\.)?antifa\\.cz/\" to=\"https://www.antifa.cz/\"/></ruleset>", "<ruleset name=\"AntiSpam e.V.\" platform=\"mixedcontent\" f=\"Antispam.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Antivigilancia.org\" f=\"Antivigilancia.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.antivigilancia\\.org/\" to=\"https://antivigilancia.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Antiwar.com\" f=\"Antiwar.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Antizapret.info\" f=\"Antizapret.info.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Antpool.com\" f=\"Antpool.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AnubisNetworks.com (partial)\" default_off=\"failed ruleset test\" f=\"AnubisNetworks.com.xml\"><rule from=\"^http://anubisnetworks\\.com/\" to=\"https://www.anubisnetworks.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Anunciou.com\" default_off=\"522\" f=\"Anunciou.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"anxpro.com (partial)\" f=\"Anxpro.com.xml\"><securecookie host=\"^\\.?anxpro\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Anybalance.com\" default_off=\"failed ruleset test\" f=\"Anybalance.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Anybots.com\" f=\"Anybots.com.xml\"><securecookie host=\"^(?:w*\\.)?anybots\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Anyfi.net\" default_off=\"failed ruleset test\" f=\"Anyfi.net.xml\"><securecookie host=\"^anyfi\\.net$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?anyfi\\.net/\" to=\"https://anyfi.net/\"/></ruleset>", "<ruleset name=\"anyoption.com (partial)\" f=\"Anyoption.com.xml\"><rule from=\"^http://(?:www\\.)?anyoption\\.com/(?=bridge/|css/|favicon\\.ico|images/|javax\\.faces\\.resource/|jsp?/|thickbox/)\" to=\"https://www.anyoption.com/\"/><rule from=\"^http://(image|l)s\\.anyoption\\.com/\" to=\"https://$1s.anyoption.com/\"/></ruleset>", "<ruleset name=\"Anyproz\" default_off=\"failed ruleset test\" f=\"Anyproz.xml\"><securecookie host=\"^www\\.anonyproz\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenOffice.org (partial)\" f=\"Apache-OpenOffice.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Apache.org (false MCB)\" platform=\"mixedcontent\" f=\"Apache.org-falsemixed.xml\"><rule from=\"^http://(activemq|aries|attic|geronimo|helix|jackrabbit|lucy|oodt|santuario|tuscany)\\.apache\\.org/\" to=\"https://$1.apache.org/\"/></ruleset>", "<ruleset name=\"Apache.org (partial)\" f=\"Apache.xml\"><exclusion pattern=\"^http://(?:feathercast|ooo-forums|vmgump)\\.apache\\.org/\"/><exclusion pattern=\"^http://(?:activemq|aries|geronimo|helix|lucy|santuario|tuscany)\\.apache\\.org/(?!/*(?:css/|favicon\\.ico|images/|style/|stylesheets/))\"/><securecookie host=\"^(?:.+\\.)?apache\\.org$\" name=\".+\"/><rule from=\"^http://apache\\.org/\" to=\"https://www.apache.org/\"/><rule from=\"^http://www\\.us\\.apache\\.org/\" to=\"https://www.apache.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ApacheCon.com\" default_off=\"mismatched\" f=\"ApacheCon.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Apereo.org\" f=\"Apereo.org.xml\"><rule from=\"^http://apereo\\.org/\" to=\"https://www.apereo.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aphyr.com\" default_off=\"failed ruleset test\" f=\"Aphyr.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Apica\" f=\"Apica.xml\"><securecookie host=\"^.+\\.apicasystem\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?apicasystem\\.com/\" to=\"https://www.apicasystem.com/\"/><rule from=\"^http://webtracker\\.apicasystem\\.com/\" to=\"https://webtracker.apicasystem.com/\"/></ruleset>", "<ruleset name=\"Apigee (partial)\" f=\"Apigee.xml\"><securecookie host=\"^(?:accounts\\.)?apigee\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Apigility.org\" f=\"Apigility.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Apkmirror.com\" default_off=\"failed ruleset test\" f=\"Apkmirror.com.xml\"><securecookie host=\"^(www\\.)?apkmirror\\.com\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Apna India\" default_off=\"failed ruleset test\" f=\"Apna_India.xml\"><securecookie host=\"^\\.apnaindia\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Apomedifot.de (partial)\" f=\"Apomedifot.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Apotea.se\" f=\"Apotea.se.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Apoteket.se\" f=\"Apoteket.se.xml\"><rule from=\"^http://apoteket\\.se/\" to=\"https://www.apoteket.se/\"/><rule from=\"^http://www\\.apoteket\\.se/\" to=\"https://www.apoteket.se/\"/></ruleset>", "<ruleset name=\"Apotheke.de\" f=\"Apotheke_de.xml\"><rule from=\"^http://(?:www\\.)?apotheke\\.de/\" to=\"https://www.apotheke.de/\"/></ruleset>", "<ruleset name=\"AppCoding\" f=\"App-Coding.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"appCanary.com (partial)\" f=\"AppCanary.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AppDynamics\" f=\"AppDynamics.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AppGratis\" default_off=\"failed ruleset test\" f=\"AppGratis.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AppGuru.com\" f=\"AppGuru.com.xml\"><securecookie host=\"^(?:data|www)\\.appguru\\.com$\" name=\".+\"/><rule from=\"^http://appguru\\.com/\" to=\"https://www.appguru.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AppHub.io (partial)\" f=\"AppHub.io.xml\"><securecookie host=\"^\\.apphub\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"appmifile.com (partial)\" f=\"AppMifile.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AppNexus.com (partial)\" default_off=\"failed ruleset test\" f=\"AppNexus.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AppThemes.com\" f=\"AppThemes.com.xml\"><rule from=\"^http://((?:cdn|demos|docs|forums|ideas|marketplace|my|www)\\.)?appthemes\\.com/\" to=\"https://$1appthemes.com/\"/></ruleset>", "<ruleset name=\"AppVault (partial)\" f=\"AppVault.xml\"><securecookie host=\"^(?:www)?\\.skilldrum\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?appvault\\.com/\" to=\"https://appvault.com/\"/><rule from=\"^http://(www\\.)?skilldrum\\.com/\" to=\"https://$1skilldrum.com/\"/></ruleset>", "<ruleset name=\"App Developer Magazine.com\" f=\"App_Developer_Magazine.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Appadvice\" f=\"Appadvice.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Appcelerator.com (partial)\" default_off=\"failed ruleset test\" f=\"Appcelerator.xml\"><securecookie host=\"^(?:community|developer|marketplace|www)?\\.appcelerator\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Appear.in (partial)\" f=\"Appear.in.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Appetize.io\" f=\"Appetize.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Appie Hein.com\" default_off=\"failed ruleset test\" f=\"Appie_Hein.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Appinn (partial)\" f=\"Appinn.xml\"><exclusion pattern=\"^http://img\\.appinn\\.com/(wp-login\\.php)?$\"/><rule from=\"^http://img\\.appinn\\.com/wp-(admin|includes)/\" to=\"https://d.appinn.com/wp-$1/\"/><exclusion pattern=\"^http://img3\\.appinn\\.com/(wp-login\\.php)?$\"/><rule from=\"^http://img3\\.appinn\\.com/d/\" to=\"https://d.appinn.com/\"/><rule from=\"^http://img3\\.appinn\\.com/(images/|(static/)?wp-content/)\" to=\"https://img3.appinn.com/$1\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Apple-MapKit.com\" f=\"Apple-MapKit.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Apple.com.cn\" f=\"Apple.com.cn.xml\"><rule from=\"^http://www\\.apple\\.com\\.cn/\" to=\"https://www.apple.com/cn/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Apple.com\" default_off=\"failed ruleset test\" f=\"Apple.com.xml\"><rule from=\"^http://devimages\\.apple\\.com/\" to=\"https://devimages.apple.com.edgekey.net/\"/><rule from=\"^http://(prod|www)\\.lists\\.apple\\.com/\" to=\"https://lists.apple.com/\"/><rule from=\"^http://metrics\\.apple\\.com/\" to=\"https://securemetrics.apple.com/\"/><rule from=\"^http://storeimages\\.apple\\.com/\" to=\"https://storeimages.apple.com.edgekey.net/\"/><rule from=\"^http://a\\d+\\.phobos\\.apple\\.com/\" to=\"https://s1.mzstatic.com/\"/><securecookie host=\"^\\.apple\\.com$\" name=\"^s_.+$\"/><securecookie host=\"^(?!\\.?(?:www)\\.apple\\.com).+\\.apple\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Apple_CDN_buckets\" f=\"Apple_CDN_buckets.xml\"><rule from=\"^http://ax\\.phobos\\.apple\\.com\\.edgesuite\\.net/\" to=\"https://s.mzstatic.com/\"/><exclusion pattern=\"^http://a772\\.g\\.akamai\\.net/$\"/><rule from=\"^http://a772\\.g\\.akamai\\.net/7/772/51/\\w+/www\\.apple\\.com/\" to=\"https://www.apple.com/\"/></ruleset>", "<ruleset name=\"Apple Parts Store (partial)\" default_off=\"failed ruleset test\" f=\"Apple_Parts_Store.xml\"><securecookie host=\"^\\.(?:www\\.)?applepartsstore\\.com$\" name=\".+\"/><securecookie host=\"^\\.re-pear\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?applepartsstore\\.com/\" to=\"https://applepartsstore.com/\"/><rule from=\"^http://(?:www\\.)?re-pear\\.com/\" to=\"https://www.re-pear.com/\"/></ruleset>", "<ruleset name=\"Applebee's\" platform=\"mixedcontent\" f=\"Applebees.xml\"><rule from=\"^http://applebees\\.com/\" to=\"https://applebees.com/\"/><rule from=\"^http://(my|www)\\.applebees\\.com/\" to=\"https://$1.applebees.com/\"/></ruleset>", "<ruleset name=\"Applianceshop.eu\" f=\"Applianceshop.eu.xml\"><securecookie host=\"^\\.www\\.applianceshop\\.eu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Applicom (partial)\" default_off=\"webmaster request\" f=\"Applicom.xml\"><securecookie host=\"^launchpad\\.apollohq\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?apollohq\\.com/img/favicon(\\d\\d)\\.png$\" to=\"https://launchpad.apollohq.com/js/__dojo__1332519149/res/img/common/icon$1.png\"/><rule from=\"^http://launchpad\\.apollohq\\.com/\" to=\"https://launchpad.apollohq.com/\"/></ruleset>", "<ruleset name=\"Apply2Jobs.com\" f=\"Apply2Jobs.com.xml\"><rule from=\"^http://(?:www\\.)?apply2jobs\\.com/\" to=\"https://www.apply2jobs.com/\"/><rule from=\"^http://www\\.llcampus\\.apply2jobs\\.com/\" to=\"https://www.llcampus.apply2jobs.com/\"/></ruleset>", "<ruleset name=\"ApplyTracking.com\" f=\"ApplyTracking.com.xml\"><securecookie host=\"^www\\.applytracking\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ApplyWeb.com\" f=\"ApplyWeb.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ApplyYourself\" f=\"ApplyYourself.xml\"><securecookie host=\"^app\\.applyyourself\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Appolicious\" f=\"Appolicious.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AppsFlyer.com (partial)\" f=\"AppsFlyer.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Appsec USA (partial)\" default_off=\"mismatched, self-signed\" f=\"Appsec_USA.xml\"><securecookie host=\"^(?:\\.2012\\.)?appsecusa\\.org$\" name=\".+\"/><rule from=\"^http://(?:(videos\\.2012\\.|next-year\\.)|www\\.)?appsecusa\\.org/\" to=\"https://$1appsecusa.org/\"/></ruleset>", "<ruleset name=\"AppSec California.org\" default_off=\"failed ruleset test\" f=\"Appseccalifornia.org.xml\"><securecookie host=\"^appseccalifornia\\.org$\" name=\".+\"/><rule from=\"^http://www\\.appseccalifornia\\.org/\" to=\"https://appseccalifornia.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Appsecute\" default_off=\"failed ruleset test\" f=\"Appsecute.xml\"><securecookie host=\"^\\.appsecute\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Appsites.com\" f=\"Appsites.com.xml\"><securecookie host=\"^appsites\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?appsites\\.com/\" to=\"https://appsites.com/\"/></ruleset>", "<ruleset name=\"appsto.re\" f=\"Appsto.re.xml\"><rule from=\"^http://www\\.appsto\\.re/[^?]*\" to=\"https://www.apple.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Appuio.ch\" f=\"Appuio.ch.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Apress.com\" default_off=\"failed ruleset test\" f=\"Apress.com.xml\"><securecookie host=\"^\\.www\\.apress.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Apricorn.com\" f=\"Apricorn.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"April.org\" f=\"April.org.xml\"><securecookie host=\"^.*\\.april\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Apsis Lead.com\" f=\"Apsis_Lead.com.xml\"><securecookie host=\"^tr\\.apsislead\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AptDeco.com\" f=\"AptDeco.com.xml\"><securecookie host=\"^www\\.aptdeco\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AquaBounty.com\" f=\"AquaBounty.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AquaGear\" default_off=\"failed ruleset test\" f=\"AquaGear.xml\"><securecookie host=\"^(www\\.)?aquagear\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aquent (partial)\" platform=\"mixedcontent\" f=\"Aquent.xml\"><securecookie host=\"^(?:.*\\.)?aquent\\.com$\" name=\".*\"/><rule from=\"^http://(www\\.)?aquent\\.com/\" to=\"https://$1aquent.com/\"/><rule from=\"^http://(www\\.)?aquent\\.us/(common|global)/\" to=\"https://$1aquent.com/$2/\"/></ruleset>", "<ruleset name=\"Aqueous Vapor.com (partial)\" f=\"Aqueous_Vapor.com.xml\"><rule from=\"^http://(www\\.)?aqueousvapor\\.com/(?=favicon\\.ico|my-account(?:$|[?/])|wp-content/|wp-includes/)\" to=\"https://$1aqueousvapor.com/\"/></ruleset>", "<ruleset name=\"AquilaClothing.co.uk\" default_off=\"failed ruleset test\" f=\"AquilaClothing.co.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aquiss (partial)\" f=\"Aquiss.xml\"><exclusion pattern=\"^http://ebilling\\.aquiss\\.net/(?!css/|templates/)\"/><securecookie host=\"^secure\\.aquiss\\.net$\" name=\".*\"/><rule from=\"^http://(ebilling|secure)\\.aquiss\\.net/\" to=\"https://$1.aquiss.net/\"/></ruleset>", "<ruleset name=\"arXiv.org\" f=\"ArXiv.xml\"><rule from=\"^http://(?:www|xxx)\\.arxiv\\.org/\" to=\"https://arxiv.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Arachnys\" f=\"Arachnys.xml\"><securecookie host=\"^(?:app)?\\.arachnys\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aral Balkan.com\" default_off=\"failed ruleset test\" f=\"Aral_Balkan.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ArangoDB.com\" f=\"ArangoDB.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Arbeitsagentur.de\" platform=\"mixedcontent\" f=\"Arbeitsagentur.xml\"><rule from=\"^http://(?:www\\.)?arbeitsagentur\\.de/\" to=\"https://www.arbeitsagentur.de/\"/><rule from=\"^http://jobboerse\\.arbeitsagentur\\.de/\" to=\"https://jobboerse.arbeitsagentur.de/\"/></ruleset>", "<ruleset name=\"Arbor Networks\" default_off=\"failed ruleset test\" f=\"Arbor-Networks.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?arbor\\.net/+\" to=\"https://www.arbornetworks.com/\"/><rule from=\"^http://atlas\\.arbornetworks\\.com/+\" to=\"https://atlas.arbor.net/\"/><rule from=\"^http://ddos\\.arbornetworks\\.com/+\" to=\"https://www.arbornetworks.com/asert/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ArcGIS.com (partial)\" f=\"ArcGIS.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ArcGIS online.com\" f=\"ArcGIS_online.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ArchBang.org\" default_off=\"mismatched\" f=\"ArchBang.org.xml\"><rule from=\"^http://((?:bbs|wiki|www)\\.)?archbang\\.org(?::80)?/\" to=\"https://$1archbang.org/\"/></ruleset>", "<ruleset name=\"Arch Linux.fr\" f=\"Arch_Linux.fr.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Archaic Binary.net\" f=\"Archaic_Binary.net.xml\"><securecookie host=\"^\\.archaicbinary\\.net$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Archi-Strasbourg\" default_off=\"failed ruleset test\" f=\"Archi-Strasbourg.xml\"><rule from=\"^http://(?:www\\.)?archi-strasbourg\\.org/\" to=\"https://archi-strasbourg.org/\"/></ruleset>", "<ruleset name=\"Architect's Journal\" f=\"Architects_Journal.xml\"><securecookie host=\"^www\\.architectsjournal\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?(?:architectsjournal|theaj)\\.co\\.uk/\" to=\"https://www.architectsjournal.co.uk/\"/></ruleset>", "<ruleset name=\"Archive-It.org\" f=\"Archive-It.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Archive.is (partial)\" f=\"Archive.is.xml\"><rule from=\"^http://(www\\.)?archive\\.is/\" to=\"https://$1archive.fo/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Archive.org Way Back Machine\" f=\"Archive.org_Way_Back_Machine.xml\"><securecookie host=\"^web\\.archive\\.org$\" name=\".+\"/><rule from=\"^http://waybackmachine\\.org/\" to=\"https://web.archive.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ArchiveOfOurOwn.org\" f=\"ArchiveOfOurOwn.xml\"><securecookie host=\"^archiveofourown\\.org$\" name=\".+\"/><rule from=\"^http://www\\.archiveofourown\\.org/\" to=\"https://archiveofourown.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Archives-ouvertes.fr\" f=\"Archives-ouvertes.fr.xml\"><securecookie host=\"^tel\\.archives-ouvertes\\.fr$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?archives-ouvertes\\.fr/+\" to=\"https://hal.archives-ouvertes.fr/\"/><rule from=\"^http://(api|aurehal|aurehal-preprod|hal|hal-\\w+|halshs|pastel|tel)\\.archives-ouvertes\\.fr/\" to=\"https://$1.archives-ouvertes.fr/\"/></ruleset>", "<ruleset name=\"Archomedia\" default_off=\"mismatched, self-signed\" f=\"Archomedia.xml\"><securecookie host=\"^archomedia\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?archomedia\\.com/\" to=\"https://archomedia.com/\"/></ruleset>", "<ruleset name=\"Archos.com\" platform=\"mixedcontent\" f=\"Archos.com.xml\"><rule from=\"^http://(?:www\\.)?archos\\.com/\" to=\"https://www.archos.com/\"/></ruleset>", "<ruleset name=\"Arciszewski.me (partial)\" f=\"Arciszewski.me.xml\"><securecookie host=\"^\\.arciszewski\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ArcorCentralLogin\" f=\"ArcorCentralLogin.xml\"><securecookie host=\"^(?:.*\\.)?arcor\\.de$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?arcor\\.de/login/login\\.jsp\" to=\"https://www.arcor.de/login/login.jsp\"/></ruleset>", "<ruleset name=\"Ardamis.com\" f=\"Ardamis.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ardis.ru\" f=\"Ardis.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ardour (partial)\" f=\"Ardour.xml\"><securecookie host=\"^\\.community\\.ardour\\.org$\" name=\".+\"/><rule from=\"^http://(www\\.)?(community\\.)?ardour\\.org/\" to=\"https://$1$2ardour.org/\"/></ruleset>", "<ruleset name=\"Arduino.cc (partial)\" f=\"Arduino.cc.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Are We Slim Yet.com\" f=\"Are_We_Slim_Yet.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Are We Compressed Yet.com\" default_off=\"failed ruleset test\" f=\"Are_Wecompressed_Yet.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Area 17.com\" f=\"Area_17.com.xml\"><securecookie host=\"^www\\.area17\\.com$\" name=\".+\"/><rule from=\"^http://area17\\.com/\" to=\"https://www.area17.com/\"/><rule from=\"^http://assets\\.area17\\.com/\" to=\"https://d6115e0oaclnc.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ArenaVC.com\" f=\"ArenaVC.com.xml\"><securecookie host=\"^arenavc\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Argeweb.nl\" f=\"Argeweb.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Argeweb hosting.nl\" f=\"Argeweb_hosting.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Argonne National Laboratory (partial)\" f=\"Argonne-National-Laboratory.xml\"><rule from=\"^http://(?:www\\.)?(cels|evs|mcs)\\.anl\\.gov/\" to=\"https://www.$1.anl.gov/\"/><rule from=\"^http://(?:www\\.)?aps\\.anl\\.gov/(css/|img/)\" to=\"https://www.aps.anl.gov/$1\"/></ruleset>", "<ruleset name=\"Argos (mismatches)\" default_off=\"mismatched\" f=\"Argos-mismatches.xml\"><exclusion pattern=\"^http://answers\\.argos\\.(?:co\\.uk|ie)/(?:\\d+-\\w\\w_\\w\\w/allquestions|category/\\d+/category|product/\\d+/questions)\\.htm(?:$|\\?)\"/><rule from=\"^http://(answer|review)s\\.argos\\.(co\\.uk|ie)/\" to=\"https://$1s.argos.$2/\"/></ruleset>", "<ruleset name=\"Argos (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Argos.xml\"><securecookie host=\"^.*\\.argos\\.co\\.uk$\" name=\".*\"/><securecookie host=\"^www\\.argos\\.ie$\" name=\".*\"/><securecookie host=\"^www\\.argoscareers\\.com$\" name=\".*\"/><securecookie host=\"^www\\.argosemails\\.co\\.uk$\" name=\".*\"/><securecookie host=\"^www\\.argosonline\\.es$\" name=\".*\"/><securecookie host=\"^www\\.greatcareers\\.co\\.uk$\" name=\".*\"/><securecookie host=\"^www\\.wearechoosy\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?argosemails\\.co\\.uk/\" to=\"https://www.argosemails.co.uk/\"/><rule from=\"^http://image\\.email\\.argos\\.co\\.uk/\" to=\"https://image.email.argos.co.uk/\"/><rule from=\"^http://(?:www\\.)?argos\\.ie/\" to=\"https://www.argos.ie/\"/><rule from=\"^http://competitions\\.argos\\.ie/\" to=\"https://competitions.argos.ie/\"/><rule from=\"^http://(?:www\\.)?argos-spain\\.co\\.uk/.*\" to=\"https://www.argosonline.es/webapp/wcs/stores/servlet/LogonForm\"/><rule from=\"^http://(?:www\\.)?argoscareers\\.com/\" to=\"https://www.argoscareers.com/\"/><rule from=\"^http://(?:www\\.)?argosonline\\.es/\" to=\"https://www.argosonline.es/\"/><rule from=\"^http://www\\.greatcareers\\.co\\.uk/\" to=\"https://www.greatcareers.co.uk/\"/><rule from=\"^http://(?:www\\.)?wearechoosy\\.com/\" to=\"https://www.wearechoosy.com/\"/></ruleset>", "<ruleset name=\"Argus.ch (partial)\" f=\"Argus.ch.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Argus Leader\" f=\"Argus_Leader.xml\"><securecookie host=\"^www\\.argusleader\\.com$\" name=\".+\"/><rule from=\"^http://(?:cmsimg\\.|www\\.)argusleader\\.com/\" to=\"https://www.argusleader.com/\"/></ruleset>", "<ruleset name=\"Argyle Social (mismatches)\" default_off=\"mismatched\" f=\"Argyle-Social-mismatches.xml\"><rule from=\"^http://www2\\.argylesocial\\.com/\" to=\"https://www2.argylesocial.com/\"/></ruleset>", "<ruleset name=\"Ariejan.net\" f=\"Ariejan.net.xml\"><rule from=\"^http://(?:(spock\\.)|www\\.)?ariejan\\.net/\" to=\"https://$1ariejan.net/\"/></ruleset>", "<ruleset name=\"Arisebitcoin.com\" default_off=\"refused\" f=\"Arisebitcoin.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Arizona State University (partial)\" default_off=\"failed ruleset test\" f=\"Arizona-State-University.xml\"><exclusion pattern=\"^http://(?:www\\.)?herbergercollege\\.asu\\.edu/images/\"/><exclusion pattern=\"^http://lib\\.asu\\.edu/(?!misc/|sites/)\"/><securecookie host=\"^\\.(?:(?:articulation|asuevents|asuonline|asuresearch|catalog|cfo|s(?:hprs|st)\\.clas|commons|contact|cronkite|csid|cubic|eadvisor|flexdisplay|geo(?:da|dacenter|plan)?|global|graduat(?:e|ion)|havasu|healthsolutions|lsi|viewer\\.mars|mayo|newcollege|nursingandhealth|ocw|outreach|prehealth|researchadmin|shesc|sls|sols|student(?:succes|venture)?s|technology|uresearch|uto|visit|web|webconsulting|yourfuture)\\.)?asu\\.edu$\" name=\".+\"/><securecookie host=\"^\\w[\\w\\.]*\\.asu\\.edu$\" name=\".+\"/><securecookie host=\"^secure\\.asufoundation\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?asu\\.edu/\" to=\"https://www.asu.edu/\"/><rule from=\"^http://(articulation|artsandsciences|asu(?:events(?:-dev)?|news|research|webdevilarchive)|aztransmac2|bmi|(?:www\\.)?cabhp|caliper|catalog|ccj|cfo|chemistry|chem-webtools|(?:shprs\\.|sst\\.|www\\.)?clas|commguide|commons|connect|contact|copp|cronkite|csid|cubic|docs|drupal|eadvisor|email|ex2010|flexdisplay|forms|global|geoda(?:center)?|graduation|havasu|healthsolutions|herbergeronline2?|hpchelp|humanities|labs|(?:www\\.)?law|lists|lodestar|lsi|(?:drupal|jmars|viewer)\\.mars|mathpost|mayo|morrisoninstitute|mslgoee|my|myasucourses|(?:crm\\.|hrsa\\.)?oasis|ocw|outreach|prehealth|scholarships|search|selfsub|shibboleth2?|sls|spa|studyabroad|syshealth|uresearch|sirc|ssw|uto|vcweb|visit|secure\\.vpsa|washingtoncenter|web(?:app\\d?|consulting|login|work2?)?|(?:www\\.)?west|wpcareyonline|yourfuture)\\.asu\\.edu/\" to=\"https://$1.asu.edu/\"/><rule from=\"^http://budget\\.asu\\.edu/\" to=\"https://cfo.asu.edu/budget\"/><rule from=\"^http://(?:www\\.)?(asuonline|pgs\\.clas|digitalculture|geoplan|graduate|lib|newcollege|nursingandhealth|opendoor|origins|researchadmin|shesc|sols|student(?:succes|venture)?s|technology|wpcarey)\\.asu\\.edu/\" to=\"https://$1.asu.edu/\"/><rule from=\"^http://career\\.asu\\.edu/(?:index\\.htm)?(?:$|\\?.*)\" to=\"https://students.asu.edu/career/\"/><rule from=\"^http://cronkitenews\\.(?:jmc\\.)?asu\\.edu/\" to=\"https://cronkitenews.jmc.asu.edu/\"/><rule from=\"^http://geo(?:graphy|plan)\\.asu\\.edu/\" to=\"https://geoplan.asu.edu/\"/><rule from=\"^http://(?:www\\.)?prod\\.gios\\.asu\\.edu/\" to=\"https://www.prod.gios.asu.edu/\"/><rule from=\"^http://(?:www\\.)?herberger(?:college|institute)\\.asu\\.edu/\" to=\"https://herbergerinstitute.asu.edu/\"/><rule from=\"^http://web\\.hida\\.asu\\.edu/(?:$|\\?.*)\" to=\"https://herbergerinstitute.asu.edu/\"/><rule from=\"^http://libguides\\.asu\\.edu/(css\\d*|data|js)/\" to=\"https://libguides.com/$1/\"/><rule from=\"^http://marsed\\.(?:mars\\.)?asu\\.edu/\" to=\"https://marsed.mars.asu.edu/\"/><rule from=\"^http://technology\\.poly\\.asu\\.edu/(?:$|\\?.*)\" to=\"https://technology.asu.edu/\"/><rule from=\"^http://(?:www\\.)?wikispaces\\.asu\\.edu/i/\" to=\"https://ssl.wikicdn.com/i/\"/><rule from=\"^http://secure\\.asufoundation\\.org/\" to=\"https://secure.asufoundation.org/\"/><rule from=\"^http://(www\\.)?geodacenter\\.org/\" to=\"https://$1geodacenter.org/\"/></ruleset>", "<ruleset name=\"Arizona State University (problematic)\" default_off=\"mismatched\" platform=\"mixedcontent\" f=\"Arizona_State_University-problematic.xml\"><securecookie host=\"^\\.parents\\.asu\\.edu$\" name=\".+\"/><rule from=\"^http://(parents|themis|webhost355)\\.asu\\.edu/\" to=\"https://$1.asu.edu/\"/><rule from=\"^http://(?:www\\.)?sustainability\\.asu\\.edu/\" to=\"https://sustainability.asu.edu/\"/><rule from=\"^http://(?:www\\.)?wikispaces\\.asu\\.edu/(?!i/)\" to=\"https://www.wikispaces.asu.edu/\"/></ruleset>", "<ruleset name=\"arkOS.io\" default_off=\"failed ruleset test\" f=\"ArkOS.io.xml\"><securecookie host=\"^bbs\\.arkos\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Arkane Studios\" default_off=\"mismatched\" f=\"Arkane-Studios.xml\"><rule from=\"^http://(?:www\\.)?arkane-studios\\.com/\" to=\"https://www.arkane-studios.com/\"/></ruleset>", "<ruleset name=\"Arkena.com (partial)\" f=\"Arkena.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Arlanda.se\" f=\"Arlanda.se.xml\"><rule from=\"^http://arlanda\\.se/\" to=\"https://www.arlanda.se/\"/><rule from=\"^http://www\\.arlanda\\.se/\" to=\"https://www.arlanda.se/\"/></ruleset>", "<ruleset name=\"Arlt.com\" f=\"Arlt.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Arma3.com\" f=\"Arma3.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Armed Forces Day.org.uk\" f=\"Armed_Forces_Day.org.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ArmoryBids.com\" default_off=\"failed ruleset test\" f=\"ArmoryBids.com.xml\"><securecookie host=\"^www\\.armorybids\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Army Times (partial)\" f=\"Army_Times.xml\"><securecookie host=\"^\\.armytimes\\.com\" name=\"^s_(?!p|s)\\w+$\"/><rule from=\"^http://(awi|projects)\\.armytimes\\.com/\" to=\"https://$1.armytimes.com/\"/></ruleset>", "<ruleset name=\"Armyoutlet.de\" f=\"Armyoutlet.de.xml\"><rule from=\"^http://(?:www\\.)?armyoutlet\\.de/\" to=\"https://www.armyoutlet.de/\"/></ruleset>", "<ruleset name=\"Arne.schuldt.info\" f=\"Arne.schuldt.info.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Azorus (partial)\" f=\"Arozus.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"arpxs.com\" default_off=\"failed ruleset test\" f=\"Arpxs.com.xml\"><securecookie host=\"^www\\.arpxs\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Arq Backup.com\" f=\"Arq_Backup.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"arquetype.org\" default_off=\"failed ruleset test\" f=\"Arquetype.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"arranca.org\" default_off=\"mismatched\" f=\"Arranca.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Array.is (partial)\" f=\"Array.is.xml\"><securecookie host=\"^array\\.is$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?array\\.is/\" to=\"https://array.is/\"/></ruleset>", "<ruleset name=\"Arris.com\" f=\"Arris.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Arrisi.com (partial)\" f=\"Arrisi.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Arriva\" f=\"Arriva.xml\"><securecookie host=\"^www\\.arrivabus\\.co\\.uk$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?arrivabus\\.co\\.uk/\" to=\"https://www.arrivabus.co.uk/\"/></ruleset>", "<ruleset name=\"Ars Technica (partial)\" default_off=\"failed ruleset test\" f=\"Ars-Technica.xml\"><securecookie host=\"^\\.\" name=\"^(?:mbox$|phpbb3_|s_\\w|timeSpent|__utm\\w)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://ars\\.to/\" to=\"https://bit.ly/\"/><rule from=\"^http://feeds\\.arstechnica\\.com/\" to=\"https://feeds.feedburner.com/\"/><rule from=\"^http://stats2\\.arstechnica\\.com/\" to=\"https://condenast.112.2o7.net/\"/><rule from=\"^http://(?:(?:media|origin)\\.arstechnica\\.com|static\\.arstechnica\\.net)/\" to=\"https://cdn.arstechnica.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Art Practical\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Art-Practical.xml\"><rule from=\"^http://(?:www\\.)?artpractical\\.com/\" to=\"https://artpractical.com/\"/></ruleset>", "<ruleset name=\"Art.com (partial)\" default_off=\"failed ruleset test\" f=\"Art.com.xml\"><securecookie host=\"^(?:\\.atrack|eu)?\\.art\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Art2pO.com\" f=\"Art2pO.com.xml\"><securecookie host=\"^(?:w*\\.)?art2po\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ArtChristina\" default_off=\"expired, mismatched\" f=\"ArtChristina.xml\"><rule from=\"^http://(?:www\\.)?artchristina\\.com/\" to=\"https://artchristina.com/\"/></ruleset>", "<ruleset name=\"ArtSkills\" f=\"ArtSkills.xml\"><securecookie host=\"^(?:w*\\.)?artskills\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ArtStation\" f=\"ArtStation.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Art Lebedev.ru (partial)\" f=\"Art_Lebedev.ru.xml\"><exclusion pattern=\"^http://(?:www\\.)?artlebedev\\.ru/+(?!everything/|favicon\\.ico|svalka/)\"/><exclusion pattern=\"^http://store\\.artlebedev\\.ru/+(?!_i/|favicon\\.ico|products/images/|themes/)\"/><rule from=\"^http://((?:img|store|web|www)\\.)?artlebedev\\.ru/\" to=\"https://$1artlebedev.ru/\"/></ruleset>", "<ruleset name=\"Art Schools.com (partial)\" f=\"Art_Schools.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Art print images.com\" default_off=\"mismatched\" f=\"Art_print_images.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Artday\" default_off=\"failed ruleset test\" f=\"Artday.xml\"><securecookie host=\"^auction\\.artday\\.co\\.kr$\" name=\".+\"/><rule from=\"^http://(?:auction\\.|www\\.)?artday\\.co\\.kr/\" to=\"https://auction.artday.co.kr/\"/></ruleset>", "<ruleset name=\"Arte do Lar.com.br\" default_off=\"plaintext reply\" f=\"Arte_do_Lar.com.br.xml\"><securecookie host=\"^\\.(?:www\\.)?artedolar\\.com\\.br$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Artemis-IA.eu\" f=\"Artemis-IA.eu.xml\"><securecookie host=\"^artemis-ia\\.eu$\" name=\".+\"/><rule from=\"^http://community\\.artemis-ia\\.eu/[^?]*\" to=\"https://artemis-ia.eu/community\"/><rule from=\"^http://www\\.artemis-ia\\.eu/\" to=\"https://artemis-ia.eu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Artemis.net\" default_off=\"failed ruleset test\" f=\"Artemis.net.xml\"><securecookie host=\"^\\.artemis(?:\\.net|internet\\.com)$\" name=\".+\"/><rule from=\"^http://(www\\.)?artemis(\\.net|internet\\.com)/\" to=\"https://$1artemis$2/\"/></ruleset>", "<ruleset name=\"Artfiles New Media (partial)\" f=\"Artfiles_New_Media.xml\"><securecookie host=\"^(?:webmail|www)?\\.artfiles\\.de$\" name=\".+\"/><rule from=\"^http://((?:dcp\\.c|documents|www)\\.)?artfiles\\.de/\" to=\"https://$1artfiles.de/\"/><rule from=\"^http://(?:www\\.)?webmail\\.artfiles\\.de/\" to=\"https://webmail.artfiles.de/\"/></ruleset>", "<ruleset name=\"Article 19.org\" f=\"Article_19.org.xml\"><securecookie host=\"^www\\.article19\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Articulate.com (false MCB)\" platform=\"mixedcontent\" f=\"Articulate.com-falsemixed.xml\"><securecookie host=\"^www\\.articulate\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?articulate\\.com/\" to=\"https://www.articulate.com/\"/></ruleset>", "<ruleset name=\"Articulate.com (partial)\" f=\"Articulate.com.xml\"><securecookie host=\"^\\.?store\\.articulate\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?articulate\\.com/(?=blog/wp-(?:content|includes)/|favicon\\.ico|images/|javascripts/|stylesheets/)\" to=\"https://www.articulate.com/\"/><rule from=\"^http://store\\.articulate\\.com/\" to=\"https://store.articulate.com/\"/></ruleset>", "<ruleset name=\"Artsy.net\" f=\"Artsy.net.xml\"><securecookie host=\"^(?:admin|www)\\.artsy\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Arukereso.hu\" f=\"Arukereso.xml\"><securecookie host=\".*\\.arukereso\\.hu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Arvixe.com\" f=\"Arvixe.xml\"><securecookie host=\"^(?:.*\\.)?arvixe\\.com$\" name=\".+\"/><rule from=\"^http://mail\\.arvixe\\.com/\" to=\"https://postoffice.arvixe.com/\"/><rule from=\"^http://((?:affiliates|postoffice|support|www)\\.)?arvixe\\.com/\" to=\"https://$1arvixe.com/\"/></ruleset>", "<ruleset name=\"AsSeenOnTV.com (partial)\" f=\"AsSeenOnTV.com.xml\"><exclusion pattern=\"http://www\\.asseenontv\\.com/+(?!account\\.php|asseenontv/|cart\\.php|default/|favicon\\.ico|img/)\"/><rule from=\"^http://(?:www\\.)?asseenontv\\.com/\" to=\"https://www.asseenontv.com/\"/></ruleset>", "<ruleset name=\"Asahi Shimbun (partial)\" f=\"Asahi_Shimbun.xml\"><exclusion pattern=\"^http://digital\\.asahi\\.com/(?!css/|img/|login)\"/><securecookie host=\"^ajw\\.asahi\\.com$\" name=\".+\"/><rule from=\"^http://(ajw|digital)\\.asahi\\.com/\" to=\"https://$1.asahi.com/\"/></ruleset>", "<ruleset name=\"asana.com\" f=\"Asana.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Asbestos Safety and Eradication Agency\" f=\"AsbestosSafetyandEradicationAgency.xml\"><rule from=\"^http://(?:www\\.)?asbestossafety\\.gov\\.au/\" to=\"https://asbestossafety.gov.au/\"/></ruleset>", "<ruleset name=\"Asbury Park Press (partial)\" f=\"Asbury_Park_Press.xml\"><securecookie host=\"^www\\.app\\.com$\" name=\".+\"/><rule from=\"^http://(?:cmsimg\\.|www\\.)?app\\.com/\" to=\"https://www.app.com/\"/></ruleset>", "<ruleset name=\"Ascend app.com\" f=\"Ascend_app.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AscenderFonts.com\" f=\"AscenderFonts.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Asciinema.org (partial)\" default_off=\"failed ruleset test\" f=\"Asciinema.org.xml\"><exclusion pattern=\"^http://blog\\.asciinema\\.org/+(?!css/|img/)\"/><securecookie host=\"^asciinema\\.org$\" name=\".+\"/><rule from=\"^http://blog\\.asciinema\\.org/\" to=\"https://asciinema-blog.herokuapp.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ascio.com (partial)\" f=\"Ascio.com.xml\"><securecookie host=\"^portal\\.ascio\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Asecus\" f=\"Asecus.xml\"><securecookie host=\"^asecus\\.ch$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ashampoo.com (partial)\" default_off=\"failed ruleset test\" f=\"Ashampoo.com.xml\"><securecookie host=\"^(?:.+\\.)?ashampoo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Asheville Citizen-Times\" f=\"Asheville_Citizen-Times.xml\"><securecookie host=\"^www\\.citizen-times\\.com$\" name=\".+\"/><rule from=\"^http://(?:cmsimg\\.|www\\.)?citizen-times\\.com/\" to=\"https://www.citizen-times.com/\"/></ruleset>", "<ruleset name=\"Ashford.com (partial)\" f=\"Ashford.com.xml\"><rule from=\"^http://(?:www\\.)?ashford\\.com/(css_compressed/|images/|global/util/loginRedirect\\.jsp|marketing/|myaccount/)\" to=\"https://www.ashford.com/$1\"/></ruleset>", "<ruleset name=\"Ashland Fiber.net (partial)\" f=\"Ashland_Fiber.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ashley Madison.com (false MCB)\" platform=\"mixedcontent\" f=\"Ashley_Madison.com-falsemixed.xml\"><securecookie host=\"^blog(?:\\w\\w)?\\.ashleymadison\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ashley Madison.com (partial)\" f=\"Ashleymadison.com.xml\"><exclusion pattern=\"^http://amblog\\.ashleymadison\\.com/+(?!wp-content/)\"/><securecookie host=\"^(?:\\.affiliate|www)?\\.ashleymadison\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Asia-Pacific Network Information Centre (mismatches)\" default_off=\"mismatched\" f=\"Asia-Pacific-Network-Information-Centre-mismatches.xml\"><rule from=\"^http://conference\\.apnic\\.net/\" to=\"https://conference.apnic.net/\"/></ruleset>", "<ruleset name=\"Asia-Pacific Network Information Centre (partial)\" f=\"Asia-Pacific-Network-Information-Centre.xml\"><securecookie host=\"^\\.apnic\\.net$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?apnic\\.net/\" to=\"https://www.apnic.net/\"/><rule from=\"^http://submit\\.apnic\\.net/\" to=\"https://submit.apnic.net/\"/><rule from=\"^http://(?:www\\.)?myapnic\\.net/\" to=\"https://myapnic.net/\"/></ruleset>", "<ruleset name=\"AsiaBSDCon.org\" f=\"AsiaBSDCon.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Asianfanfics\" f=\"Asianfanfics.xml\"><securecookie host=\"^\\.asianfanfics\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Asjo.org\" f=\"Asjo.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ask.fm\" default_off=\"webmaster request, http redirect\" f=\"Ask.fm.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AskAhmadiyyat.org\" f=\"AskAhmadiyyat.org.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AskMonty.org (partial)\" f=\"AskMonty.xml\"><rule from=\"^http://(?:www\\.)?askmonty\\.org/+\" to=\"https://mariadb.com/about/\"/><rule from=\"^http://downloads\\.askmonty\\.org/+\" to=\"https://downloads.mariadb.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ask Leo.com\" f=\"Ask_Leo.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ask Leo media.com\" f=\"Ask_Leo_media.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ask a Patient\" f=\"Ask_a_Patient.xml\"><securecookie host=\"^(?:www\\.)?askapatient\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?askapatient\\.com/\" to=\"https://www.askapatient.com/\"/></ruleset>", "<ruleset name=\"Ask the Builder.com (partial)\" default_off=\"missing certificate chain\" f=\"Ask_the_Builder.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.shop\\.\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Askives.com\" f=\"Askives.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"asknet (partial)\" f=\"Asknet.xml\"><rule from=\"^http://srv\\.(cdn-)?asknet\\.(com|de)/\" to=\"https://srv.$1asknet.$2/\"/></ruleset>", "<ruleset name=\"Asmc.de\" f=\"Asmc.de.xml\"><rule from=\"^http://(?:www\\.)?asmc\\.de/\" to=\"https://www.asmc.de/\"/></ruleset>", "<ruleset name=\"asnetworks.de (partial)\" default_off=\"expired, self-signed\" f=\"Asnetworks.com.xml\"><rule from=\"^http://ads\\.asnetworks\\.de/\" to=\"https://ads.asnetworks.de/\"/></ruleset>", "<ruleset name=\"Aspect Security\" f=\"Aspect-Security.xml\"><rule from=\"^http://(?:www\\.)?aspectsecurity\\.com/\" to=\"https://www.aspectsecurity.com/\"/></ruleset>", "<ruleset name=\"Aspen.com (partial)\" f=\"Aspen.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?aspen\\.com/(?!favicon\\.ico|files/|sites/)\"/><securecookie host=\"^\\.aspen\\.com$\" name=\"^s_\\w+$\"/><rule from=\"^http://(?:www\\.)?aspen\\.com/\" to=\"https://secure.bluehost.com/~aspenco3/\"/></ruleset>", "<ruleset name=\"Aspiration Tech.org\" f=\"Aspiration_Tech.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aspsys.com\" f=\"Aspsys.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Assay Assured.co.uk (partial)\" f=\"Assayassured.co.uk.xml\"><rule from=\"^http://(www\\.)?assayassured\\.co\\.uk/(?!$|\\?|index\\.php|site/*(?:$|[?/]))\" to=\"https://$1assayassured.co.uk/\"/></ruleset>", "<ruleset name=\"asseenonresponsetv.com\" default_off=\"failed ruleset test\" f=\"Asseenonresponsetv.com.xml\"><securecookie host=\"^www\\.asseenonresponsetv\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Assembla (mismatches)\" default_off=\"mismatched\" f=\"Assembla-mismatches.xml\"><rule from=\"^http://(blog|feedback)\\.assembla\\.com/\" to=\"https://$1.assembla.com/\"/></ruleset>", "<ruleset name=\"Assembla (partial)\" f=\"Assembla.xml\"><securecookie host=\"^(?:.*\\.)?assembla\\.com$\" name=\".+\"/><rule from=\"^http://((?:assets\\d|nooku|(?:scala-ide-)?portfolio|svn2|trac2?|www)\\.)?assembla\\.com/\" to=\"https://$1assembla.com/\"/><rule from=\"^http://feedback\\.assembla\\.com/track\\.gif\" to=\"https://assembla.uservoice.com/track.gif\"/></ruleset>", "<ruleset name=\"Assemble.me\" f=\"Assemble.me.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Assembly.Wales (partial)\" f=\"Assembly.Wales.xml\"><exclusion pattern=\"^http://(?:www\\.)?assembly\\.wales/+(?!en/help/contact-the-assembly/Pages/enquiryform\\.aspx|SiteCollectionImages/|Style%20Library/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Assembly.com (partial)\" f=\"Assembly.com.xml\"><rule from=\"^http://(?:(treasure\\.)|www\\.)?assembly\\.com/\" to=\"https://$1assembly.com/\"/></ruleset>", "<ruleset name=\"Asset Insight\" f=\"Asset_Insight.xml\"><securecookie host=\"^\\.assetinsightinc.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"assets-Yammer.com\" f=\"Assets-Yammer.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Assistance-Multimedia.fr\" default_off=\"refused\" f=\"Assistance-Multimedia.fr.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Assoc-Amazon.ca\" f=\"Assoc-Amazon.ca.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Assoc-Amazon.co.jp\" f=\"Assoc-Amazon.co.jp.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Assoc-Amazon.co.uk\" f=\"Assoc-Amazon.co.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Assoc-Amazon.com\" f=\"Assoc-Amazon.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Assoc-Amazon.de\" f=\"Assoc-Amazon.de.xml\"><rule from=\"^http://assoc-amazon\\.de/\" to=\"https://www.assoc-amazon.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Assoc-Amazon.fr\" f=\"Assoc-Amazon.fr.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Associated Press (partial)\" f=\"Associated_Press.xml\"><rule from=\"^http://binaryapi\\.ap\\.org/\" to=\"https://d3obzbnzikmki9.cloudfront.net/\"/></ruleset>", "<ruleset name=\"AWP.is\" f=\"Associated_Whistleblowing_Press.xml\"><securecookie host=\"^\\.awp\\.is$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"associatedcontent.com\" default_off=\"failed ruleset test\" f=\"Associatedcontent.com.xml\"><rule from=\"^http://associatedcontent\\.com/\" to=\"https://www.associatedcontent.com/\"/><rule from=\"^http://www\\.associatedcontent\\.com/\" to=\"https://www.associatedcontent.com/\"/></ruleset>", "<ruleset name=\"APC.org (partial)\" default_off=\"failed ruleset test\" f=\"Association-for-Progressive-Communications.xml\"><securecookie host=\"^\\.(?:www\\.gn\\.)?apc\\.org$\" name=\".+\"/><rule from=\"^http://flossprize\\.apc\\.org/[^?]*\" to=\"https://www.apc.org/en/node/1786\"/><rule from=\"^http://gn\\.apc\\.org/[^?]*\" to=\"https://www.gn.apc.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Association for Learning Technology (partial)\" f=\"Association_for_Learning_Technology.xml\"><rule from=\"^http://(www\\.)?alt\\.ac\\.uk/((?:civicrm|user)(?:$|\\?|/)|modules/|sites/|themes/)\" to=\"https://$1alt.ac.uk/$2\"/></ruleset>", "<ruleset name=\"Association of National Advertisers\" f=\"Association_of_National_Advertisers.xml\"><securecookie host=\"^\\.ana\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ana\\.net/\" to=\"https://www.ana.net/\"/></ruleset>", "<ruleset name=\"Astaro.com\" f=\"Astaro.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://feature\\.astaro\\.com/\" to=\"https://astaro.uservoice.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Asterisk.org (partial)\" default_off=\"failed ruleset test\" f=\"Asterisk.xml\"><securecookie host=\"^wiki\\.asterisk\\.org$\" name=\".+\"/><rule from=\"^http://((?:ari|bamboo|issues|profiles|reviewboard|signup|wiki)\\.)?asterisk\\.org/\" to=\"https://$1asterisk.org/\"/></ruleset>", "<ruleset name=\"Asterisk Exchange (partial)\" f=\"Asterisk_Exchange.xml\"><rule from=\"^http://(www\\.)?asteriskexchange\\.com/(images|stylesheets|system)/\" to=\"https://$1asteriskexchange.com/$2/\"/></ruleset>", "<ruleset name=\"Astra.io\" default_off=\"failed ruleset test\" f=\"Astra.io.xml\"><rule from=\"^http://(?:www\\.)?astra\\.io/\" to=\"https://astra.io/\"/></ruleset>", "<ruleset name=\"Astrill.com\" f=\"Astrill.com.xml\"><rule from=\"^http://((?:support|www)\\.)?astrill\\.com/\" to=\"https://$1astrill.com/\"/></ruleset>", "<ruleset name=\"Astrobotic.com\" f=\"Astrobotic.com.xml\"><securecookie host=\"^www\\.astrobotic\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?astrobotic\\.com/\" to=\"https://www.astrobotic.com/\"/></ruleset>", "<ruleset name=\"Astrocentro.com (partial)\" f=\"Astrocentro.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AstronomicalTours.net\" default_off=\"mismatched\" f=\"AstronomicalTours.xml\"><securecookie host=\"^www\\.astronomicaltours\\.net$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Astronomy Now.com\" f=\"Astronomy_Now.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"aswirlgirl.com (partial)\" default_off=\"failed ruleset test\" f=\"Aswirlgirl.com.xml\"><rule from=\"^http://(?:www\\.)?(?:aswirlgirl|theswirlworld)\\.com/(?=favicon\\.ico|wp-content/|wp-includes/)\" to=\"https://secure.bluehost.com/~aswirlgi/\"/></ruleset>", "<ruleset name=\"Kingdom of Loathing.com (testing)\" default_off=\"needs testing\" f=\"Asymmetric-Publications.xml\"><securecookie host=\"^www\\.kingdomofloathing\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"atagar.com\" f=\"Atagar.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AtariAge\" f=\"AtariAge.xml\"><securecookie host=\"^(?:.*\\.)?atariage\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?atariage\\.com/\" to=\"https://atariage.com/\"/></ruleset>", "<ruleset name=\"ATAR Notes\" f=\"Atarnotes.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Atb-online.ru\" f=\"Atb-online.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"atgsvcs.com\" f=\"Atgsvcs.com.xml\"><rule from=\"^http://(rules|static)\\.atgsvcs\\.com/\" to=\"https://$1.atgsvcs.com/\"/></ruleset>", "<ruleset name=\"Athaliasoft (partial)\" default_off=\"self-signed\" f=\"Athaliasoft.xml\"><securecookie host=\"^(?:.*\\.)?agenda\\.athaliasoft\\.fr$\" name=\".*\"/><rule from=\"^http://agenda\\.athaliasoft\\.fr/\" to=\"https://agenda.athaliasoft.fr/\"/></ruleset>", "<ruleset name=\"Atheists.org (partial)\" f=\"Atheists.xml\"><securecookie host=\"^(?:w*\\.)?atheists\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Athleticum.ch\" f=\"Athleticum.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"atipso.com\" f=\"Atipso.com.xml\"><securecookie host=\"^\\.app\\.atipso\\.com$\" name=\".+\"/><rule from=\"^http://((?:app|piwik|static|www)\\.)?atipso\\.com/\" to=\"https://$1atipso.com/\"/></ruleset>", "<ruleset name=\"Ativismo.org.br\" f=\"Ativismo.org.br.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Atlantic Media (partial)\" default_off=\"failed ruleset test\" f=\"Atlantic-Media.xml\"><securecookie host=\"\\.govexec\\.com$\" name=\".*\"/><securecookie host=\"^admin\\.theatlantic(?:cities|wire)$\" name=\".*\"/><rule from=\"^http://(?:cdn\\.|www\\.)?govexec\\.com/\" to=\"https://www.govexec.com/\"/><rule from=\"^http://secure\\.nationaljournal\\.com/\" to=\"https://secure.nationaljournal.com/\"/><rule from=\"^http://admin\\.theatlantic(cities|wire)\\.com/\" to=\"https://admin.theatlantic$1.com/\"/><rule from=\"^http://cdn\\.theatlanticcities\\.com/\" to=\"https://admin.theatlanticcities.com/\"/></ruleset>", "<ruleset name=\"Atlantic Metro Communications (partial)\" platform=\"mixedcontent\" f=\"Atlantic-Metro-Communications.xml\"><exclusion pattern=\"^http://blog\\.\"/><securecookie host=\"^(?:.*\\.)?atlanticmetro\\.net$\" name=\".*\"/><rule from=\"^http://(my\\.|www\\.)?atlanticmetro\\.net/\" to=\"https://$1my.atlanticmetro.net/\"/></ruleset>", "<ruleset name=\"Atlantic.net\" f=\"Atlantic.net.xml\"><securecookie host=\"^(?:.*\\.)?atlantic\\.net$\" name=\".+\"/><rule from=\"^http://([^/:@]+\\.)?atlantic\\.net/\" to=\"https://$1atlantic.net/\"/></ruleset>", "<ruleset name=\"Atlantis.sk\" f=\"Atlantis.sk.xml\"><securecookie host=\"^(?:.+\\.)?atlantis\\.sk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Atlas.cz\" f=\"Atlas.cz.xml\"><rule from=\"^http://filmpub\\.atlas\\.cz/\" to=\"https://magazin.aktualne.cz/kultura/film/\"/><rule from=\"^http://finance\\.atlas\\.cz/\" to=\"https://zpravy.aktualne.cz/finance/\"/><rule from=\"^http://live\\.atlas\\.cz/\" to=\"https://magazin.aktualne.cz/kultura/hudba/\"/><rule from=\"^http://obchody\\.atlas\\.cz/\" to=\"https://najisto.centrum.cz/internetove-obchody-a-sluzby/on-line-obchody/\"/><rule from=\"^http://sex\\.atlas\\.cz/\" to=\"https://najisto.centrum.cz/erotika/\"/><rule from=\"^http://zajezdy\\.atlas\\.cz/\" to=\"https://najisto.centrum.cz/?what=zajezdy\"/><rule from=\"^http://(www\\.)?zena\\.atlas\\.cz/\" to=\"https://www.zena.cz/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Atlas of Prejudice.com\" f=\"Atlas_of_Prejudice.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Atlassian.com (partial)\" f=\"Atlassian.xml\"><exclusion pattern=\"http://(?:click\\.mailer|status\\.marketplace|swag|support-mail-links)\\.atlassian\\.com/\"/><exclusion pattern=\"^http://(?:.+\\.(?:ams|dyn\\.syd|inf|internal|intsys|sf|office)|go)\\.atlassian\\.com\"/><securecookie host=\"^(?:ace|answers|aug|confluence|developer|id|jira|marketplace|my|openid|support)\\.atlassian\\.com$\" name=\".+\"/><rule from=\"^http://status\\.atlassian\\.com/\" to=\"https://atlassian.statuspage.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Atlatszo.hu (partial)\" f=\"Atlatszo.hu.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Atmail\" f=\"Atmail.xml\"><securecookie host=\"^\\.atmail\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Atom.io (partial)\" f=\"Atom.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Atomic Cowlick\" default_off=\"failed ruleset test\" f=\"Atomic-Cowlick.xml\"><securecookie host=\"^(?:www\\.)?atomiccowlick\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Atomic Insights.com\" f=\"Atomic_Insights.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Atomic Object.com (partial)\" default_off=\"failed ruleset test\" f=\"Atomic_Object.com.xml\"><exclusion pattern=\"^http://spin\\.atomicobject\\.com/+(?!wp-content/)\"/><securecookie host=\"^(?:craft-staging|www)\\.atomicobject\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Atomicorp.com (partial)\" f=\"Atomicorp.xml\"><securecookie host=\"^\\.\" name=\"^(?:__qca$|phpbb3_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Atomz\" default_off=\"failed ruleset test\" f=\"Atomz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Atos.net\" f=\"Atos.net.xml\"><securecookie host=\"^(?:\\w+\\.)?atos\\.net$\" name=\".+\"/><rule from=\"^http://((?:a[eprtu]|ascentlookout|b[egr]|c[hnz]|cms|de|dk|eg|es|fi|fr|hr|in|it|jp|mx|n[alz]|p[hlt]|prd|r[osu]|se|sk|t[hrw]|uk|www|za)\\.)?atos\\.net/\" to=\"https://$1atos.net/\"/></ruleset>", "<ruleset name=\"Atrativa.com.br (partial)\" f=\"Atrativa.com.br.xml\"><exclusion pattern=\"^http://(?:www\\.)?atrativa\\.com\\.br/+(?!img/)\"/><rule from=\"^http://(?:secure\\.|www\\.)?atrativa\\.com\\.br/\" to=\"https://secure.atrativa.com.br/\"/></ruleset>", "<ruleset name=\"atsec.com\" f=\"Atsec.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"@stuff\" f=\"Atstuff.xml\"><securecookie host=\"^\\.atstuff\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Attac.at (partial)\" f=\"Attac.at.xml\"><exclusion pattern=\"^http://www\\.attac\\.at/+(?!fileadmin/|index\\.php\\?eID=fontsizer|piwik/|typo3conf/|typo3temp/)\"/><securecookie host=\"^attac\\.at$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Attachmate Group.com (partial)\" default_off=\"failed ruleset test\" f=\"Attachmate-Group.xml\"><securecookie host=\"^(?:esp|login)\\.attachmategroup\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Attachmate.com (partial)\" default_off=\"failed ruleset test\" f=\"Attachmate.xml\"><securecookie host=\"^download\\.attachmate\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Attendesource.com\" default_off=\"Appears to break certain registration pages when JavaScript scripting is enabled.\" f=\"Attendesource.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Attic-backup.org\" f=\"Attic-backup.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AtticTV.com\" default_off=\"failed ruleset test\" f=\"AtticTV.com.xml\"><securecookie host=\"^\\.attictv\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Attorney-General's Department\" f=\"Attorney-GeneralsDepartment.xml\"><rule from=\"^http://(?:www\\.)?ag\\.gov\\.au/\" to=\"https://www.ag.gov.au/\"/></ruleset>", "<ruleset name=\"Attracta\" f=\"Attracta.xml\"><securecookie host=\"^(?:.*\\.)?attracta\\.com$\" name=\".+\"/><rule from=\"^http://(\\w+\\.)?attracta\\.com/\" to=\"https://$1attracta.com/\"/></ruleset>", "<ruleset name=\"Atypon\" platform=\"mixedcontent\" f=\"Atypon.xml\"><securecookie host=\"^(?:.*\\.)?atypon\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Auchan.ru\" f=\"Auchan.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aucklandairport.co.nz\" f=\"Aucklandairport.co.nz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Auctionbunker\" default_off=\"failed ruleset test\" f=\"Auctionbunker.xml\"><securecookie host=\"^(?:w*\\.)?auctionbunker\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"auctionthing.net\" f=\"Auctionthing.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Auctiva.com (partial)\" f=\"Auctiva.com.xml\"><rule from=\"^http://img\\.auctiva\\.com/\" to=\"https://s3.amazonaws.com/img.auctiva.com/\"/></ruleset>", "<ruleset name=\"Audemars Piguet.com\" f=\"Audemars_Piguet.com.xml\"><securecookie host=\"^\\.audemarspiguet\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?audemarspiguet\\.com/\" to=\"https://www.audemarspiguet.com/\"/></ruleset>", "<ruleset name=\"Audentio.com\" f=\"Audentio.com.xml\"><securecookie host=\"^www\\.audentio\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Audible.de\" platform=\"mixedcontent\" f=\"Audible.de.xml\"><securecookie host=\"^(?:.*\\.)?audible\\.de$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?audible\\.de/\" to=\"https://www.audible.de/\"/><rule from=\"^http://audible\\.de/\" to=\"https://www.audible.de/\"/></ruleset>", "<ruleset name=\"Audicon.net\" default_off=\"failed ruleset test\" f=\"Audicon.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Audience Ad Network (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Audience-Ad-Network.xml\"><rule from=\"^http://manage\\.audienceadnetwork\\.com/\" to=\"https://manage.audienceadnetwork.com/\"/><rule from=\"^http://(\\w+)\\.qwobl\\.net/\" to=\"https://$1.qwobl.net/\"/><securecookie host=\"^manage\\.audienceadnetwork\\.com$\" name=\".*\"/><securecookie host=\"^\\.qwobl\\.net$\" name=\".*\"/></ruleset>", "<ruleset name=\"AudienceScience\" f=\"AudienceScience.xml\"><securecookie host=\"^demand\\.audiencescience\\.com$\" name=\"^hsPagesViewedThisSession$\"/><securecookie host=\"^gateway\\.audiencescience\\.com$\" name=\"^JSESSIONID$\"/><securecookie host=\"^gateway\\.audiencescience\\.com$\" name=\".+\"/><rule from=\"^http://ad\\.targetingmarketplace\\.com/\" to=\"https://ad.yieldmanager.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Audience Amplify.com (partial)\" f=\"Audience_Amplify.com.xml\"><rule from=\"^http://ads\\.audienceamplify\\.com/\" to=\"https://ib.adnxs.com/\"/></ruleset>", "<ruleset name=\"Audience IQ.com\" f=\"Audience_IQ.com.xml\"><securecookie host=\"^\\.audienceiq\\.com$\" name=\".+\"/><rule from=\"^http://www\\.audienceiq\\.com/.*\" to=\"https://www.experian.com/business-services/digital-advertising.html?cat1=marketing-services\"/><rule from=\"^http://d\\.audienceiq\\.com/\" to=\"https://d.audienceiq.com/\"/></ruleset>", "<ruleset name=\"Audience Targeting\" default_off=\"mismatched\" f=\"Audience_Targeting.xml\"><securecookie host=\"^audiencetargeting\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?audiencescience\\.com/\" to=\"https://audiencescience.com/\"/></ruleset>", "<ruleset name=\"Audiko\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Audiko.xml\"><rule from=\"^http://(s[45]\\.|www\\.)?audiko\\.net/\" to=\"https://$1audiko.net/\"/><rule from=\"^http://css\\.cdn\\.audiko\\.net/\" to=\"https://d21bsjqmai8lm5.cloudfront.net/\"/><rule from=\"^http://jpg\\.st\\.audiko\\.net/\" to=\"https://s4.audiko.net/\"/></ruleset>", "<ruleset name=\"AudioGO\" default_off=\"failed ruleset test\" f=\"AudioGO.xml\"><securecookie host=\"^\\.?www\\.audiogo\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?audiogo\\.com/\" to=\"https://www.audiogo.com/\"/></ruleset>", "<ruleset name=\"Audioboo.fm (partial)\" default_off=\"failed ruleset test\" f=\"Audioboo.fm.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Audioscrobbler.com\" f=\"Audioscrobbler.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AuditShark.com\" f=\"AuditShark.com.xml\"><securecookie host=\"^www\\.auditshark\\.com$\" name=\".+\"/><rule from=\"^http://auditshark\\.com/\" to=\"https://www.auditshark.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Audubon.org\" default_off=\"failed ruleset test\" f=\"Audubon.org.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://audubon\\.org/\" to=\"https://www.audubon.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aufbix.org (mismatched)\" default_off=\"mismatched\" f=\"Aufbix.org-problematic.xml\"><securecookie host=\"^tnt\\.aufbix\\.org$\" name=\".+\"/><rule from=\"^http://tnt\\.aufbix\\.org/\" to=\"https://tnt.aufbix.org/\"/></ruleset>", "<ruleset name=\"Aufbix.org (partial)\" f=\"Aufbix.org.xml\"><securecookie host=\"^hydra\\.aufbix\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Augur.io\" f=\"Augur.io.xml\"><securecookie host=\"^\\w\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aulani.jobs\" f=\"Aulani.jobs.xml\"><securecookie host=\"^aulani\\.jobs$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?aulani\\.jobs/\" to=\"https://aulani.jobs/\"/></ruleset>", "<ruleset name=\"Aulo.in\" default_off=\"Certificate mismatch\" f=\"Aulo.in.xml\"><rule from=\"^http://(?:www\\.)?aulo\\.in/\" to=\"https://aulo.in/\"/></ruleset>", "<ruleset name=\"Auphonic.com\" f=\"Auphonic.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aurous.me (partial)\" default_off=\"failed ruleset test\" f=\"Aurous.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AusCERT.org\" f=\"AusCERT.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AusGamers.com (buggy)\" default_off=\"breaks CSS\" f=\"AusGamers.com.xml\"><rule from=\"^http://(www\\.)?ausgamers\\.com/(account|ajax|res)/\" to=\"https://$1ausgamers.com/$1/\"/></ruleset>", "<ruleset name=\"AusRegistry (partial)\" f=\"AusRegistry.xml\"><securecookie host=\"^(?:www\\.)?ausregistry\\.com\\.au$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AusinfoTech.net\" f=\"AusinfoTech.xml\"><securecookie host=\"^(?:\\.|www\\.)?ausinfotech\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aussie Perth Tours\" f=\"Aussie-Perth-Tours.xml\"><securecookie host=\"aussieperthtours\\.com\\.au$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Austin Fit Magazine.com\" default_off=\"failed ruleset test\" f=\"Austin_Fit_Magazine.com.xml\"><securecookie host=\"^(?:w*\\.)?austinfitmagazine\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?austinfitmagazine\\.com/\" to=\"https://$1austinfitmagazine.com/\"/><rule from=\"^https?://static\\d\\.austinfitmagazine\\.com/\" to=\"https://www.austinfitmagazine.com/\"/></ruleset>", "<ruleset name=\"Austiners.com (false MCB)\" platform=\"mixedcontent\" f=\"Austiners.com.xml\"><securecookie host=\"^(?:www)?\\.austiners\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?austiners\\.com/\" to=\"https://www.austiners.com/\"/></ruleset>", "<ruleset name=\"Austrade\" f=\"Austrade.xml\"><rule from=\"^http://(?:www\\.)?austrade\\.gov\\.au/\" to=\"https://www.austrade.gov.au/\"/></ruleset>", "<ruleset name=\"Australia: UNSC\" default_off=\"failed ruleset test\" f=\"AustraliaUNSC.xml\"><rule from=\"^http://(?:www\\.)?australia-unsc\\.gov\\.au/\" to=\"https://australia-unsc.gov.au/\"/></ruleset>", "<ruleset name=\"Australian Koala Foundation\" f=\"Australian-Koala-Foundation.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Australian Antarctic Data Centre\" f=\"AustralianAntarcticDataCentre.xml\"><rule from=\"^http://(?:www\\.)?data\\.aad\\.gov\\.au/\" to=\"https://data.aad.gov.au/\"/></ruleset>", "<ruleset name=\"Australian Business Register\" f=\"AustralianBusinessRegister.xml\"><rule from=\"^http://(?:www\\.)?abr\\.gov\\.au/\" to=\"https://abr.gov.au/\"/></ruleset>", "<ruleset name=\"Australian Clinical Trials\" f=\"AustralianClinicalTrials.xml\"><rule from=\"^http://(?:www\\.)?australianclinicaltrials\\.gov\\.au/\" to=\"https://www.australianclinicaltrials.gov.au/\"/></ruleset>", "<ruleset name=\"Australian Competition and Consumer Commission\" f=\"AustralianCompetitionandConsumerCommission.xml\"><rule from=\"^http://(?:www\\.)?accc\\.gov\\.au/\" to=\"https://www.accc.gov.au/\"/></ruleset>", "<ruleset name=\"Australian Crime Commission\" default_off=\"failed ruleset test\" f=\"AustralianCrimeCommission.xml\"><rule from=\"^http://(?:www\\.)?crimecommission\\.gov\\.au/\" to=\"https://www.crimecommission.gov.au/\"/></ruleset>", "<ruleset name=\"Australian Data Archive\" default_off=\"failed ruleset test\" f=\"AustralianDataArchive.xml\"><rule from=\"^http://(?:www\\.)?ada\\.edu\\.au/\" to=\"https://www.ada.edu.au/\"/></ruleset>", "<ruleset name=\"Australian Early Development Census\" f=\"AustralianEarlyDevelopmentCensus.xml\"><rule from=\"^http://(?:www\\.)?aedc\\.gov\\.au/\" to=\"https://www.aedc.gov.au/\"/></ruleset>", "<ruleset name=\"Australian Emergency Management\" default_off=\"failed ruleset test\" f=\"AustralianEmergencyManagement.xml\"><rule from=\"^http://(?:www\\.)?em\\.gov\\.au/\" to=\"https://www.em.gov.au/\"/><rule from=\"^http://(?:www\\.)?emknowledge\\.gov\\.au/\" to=\"https://www.emknowledge.gov.au/\"/></ruleset>", "<ruleset name=\"Australian Energy Regulator\" f=\"AustralianEnergyRegulator.xml\"><rule from=\"^http://(?:www\\.)?aer\\.gov\\.au/\" to=\"https://www.aer.gov.au/\"/></ruleset>", "<ruleset name=\"Australian Export Awards\" f=\"AustralianExportAwards.xml\"><rule from=\"^http://(?:www\\.)?exportawards\\.gov\\.au/\" to=\"https://www.exportawards.gov.au/\"/></ruleset>", "<ruleset name=\"Australian Financial Security Authority\" f=\"AustralianFinancialSecurityAuthority.xml\"><rule from=\"^http://(?:www\\.)?afsa\\.gov\\.au/\" to=\"https://www.afsa.gov.au/\"/></ruleset>", "<ruleset name=\"Australian Government Boards\" f=\"AustralianGovernmentBoards.xml\"><rule from=\"^http://(?:www\\.)?ausgovboards\\.gov\\.au/\" to=\"https://www.ausgovboards.gov.au/\"/></ruleset>", "<ruleset name=\"Australian Health Practitioner Regulation Agency\" f=\"AustralianHealthPractitionerRegulationAgency.xml\"><rule from=\"^http://(?:www\\.)?ahpra\\.gov\\.au/\" to=\"https://www.ahpra.gov.au/\"/></ruleset>", "<ruleset name=\"Australian Human Rights Commission\" f=\"AustralianHumanRightsCommission.xml\"><rule from=\"^http://(?:www\\.)?humanrights\\.gov\\.au/\" to=\"https://www.humanrights.gov.au/\"/></ruleset>", "<ruleset name=\"Australian Law Reform Commission\" f=\"AustralianLawReformCommission.xml\"><rule from=\"^http://(?:www\\.)?alrc\\.gov\\.au/\" to=\"https://www.alrc.gov.au/\"/></ruleset>", "<ruleset name=\"Australian Maritime Safety Authority\" f=\"AustralianMaritimeSafetyAuthority.xml\"><rule from=\"^http://(?:www\\.)?amsa\\.gov\\.au/\" to=\"https://www.amsa.gov.au/\"/></ruleset>", "<ruleset name=\"Australian Passport Office\" f=\"AustralianPassportOffice.xml\"><rule from=\"^http://(?:www\\.)?passports\\.gov\\.au/\" to=\"https://www.passports.gov.au/\"/></ruleset>", "<ruleset name=\"Australian Plants, Botany and Horticulture\" f=\"AustralianPlantsBotanyandHorticulture.xml\"><rule from=\"^http://(?:www\\.)?anbg\\.gov\\.au/\" to=\"https://www.anbg.gov.au/\"/></ruleset>", "<ruleset name=\"Australian Sports Commission Learning Portal\" f=\"AustralianSportsCommissionLearningPortal.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Australian Strategic Policy Institute\" f=\"AustralianStrategicPolicyInstitute.xml\"><rule from=\"^http://(?:www\\.)?aspi\\.org\\.au/\" to=\"https://www.aspi.org.au/\"/></ruleset>", "<ruleset name=\"Australian Taxation Office\" f=\"AustralianTaxationOffice.xml\"><rule from=\"^http://(?:www\\.)?ato\\.gov\\.au/\" to=\"https://www.ato.gov.au/\"/></ruleset>", "<ruleset name=\"Australian Transport Safety Bureau\" f=\"AustralianTransportSafetyBureau.xml\"><rule from=\"^http://(?:www\\.)?atsb\\.gov\\.au/\" to=\"https://www.atsb.gov.au/\"/></ruleset>", "<ruleset name=\"Australian Valuation Office\" default_off=\"failed ruleset test\" f=\"AustralianValuationOffice.xml\"><rule from=\"^http://(?:www\\.)?avo\\.gov\\.au/\" to=\"https://www.avo.gov.au/\"/></ruleset>", "<ruleset name=\"Australian War Memorial\" f=\"AustralianWarMemorial.xml\"><rule from=\"^http://(?:www\\.)?awm\\.gov\\.au/\" to=\"https://www.awm.gov.au/\"/></ruleset>", "<ruleset name=\"Austrian Airlines\" f=\"AustrianAirlines.xml\"><rule from=\"^http://(?:www\\.)?austrian\\.com/\" to=\"https://www.austrian.com/\"/></ruleset>", "<ruleset name=\"Auth0.com\" f=\"Auth0.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"authbox.io\" default_off=\"failed ruleset test\" f=\"Authbox.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Authorea.com\" f=\"Authorea.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Authorize.Net\" f=\"Authorize.net.xml\"><securecookie host=\"^(?:.*\\.)?authorize\\.net$\" name=\".+\"/><rule from=\"^http://authorize\\.net/\" to=\"https://www.authorize.net/\"/><rule from=\"^http://(account|captcha|content|(?:community\\.)?developer|ems|simplecheckout|support|verify|www)\\.authorize\\.net/\" to=\"https://$1.authorize.net/\"/><rule from=\"^http://(?:www\\.)?authorizenet\\.com/\" to=\"https://www.authorize.net/\"/><rule from=\"^http://(?:www\\.)?fuzeqna\\.com/\" to=\"https://www.fuzeqna.com/\"/></ruleset>", "<ruleset name=\"Authy.com (partial)\" f=\"Authy.com.xml\"><securecookie host=\"^(?:www)?\\.authy\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Autistic Self-Advocacy Network\" f=\"Autistic_Self-Advocacy_Network.xml\"><securecookie host=\"^autisticadvocacy\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?autisticadvocacy\\.org/\" to=\"https://autisticadvocacy.org/\"/></ruleset>", "<ruleset name=\"Autistici/inventati\" f=\"Autistici-Inventati.xml\"><securecookie host=\"^www\\.autistici\\.org$\" name=\".+\"/><securecookie host=\"^\\.noblogs\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Auto.ro (partial)\" default_off=\"missing certificate chain\" f=\"Auto.ro.xml\"><exclusion pattern=\"^http://(?:www\\.)?auto\\.ro/+(?!favicon\\.ico|resize\\.php|resources/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AutoDraw.com\" f=\"AutoDraw.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AutoHits.vn\" default_off=\"expired, mismatched, self-signed\" f=\"AutoHits.vn.xml\"><securecookie host=\"^\\.autohits\\.vn$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?autohits\\.vn/\" to=\"https://autohits.vn/\"/></ruleset>", "<ruleset name=\"AutoIt CDN.com\" default_off=\"failed ruleset test\" f=\"AutoIt-CDN.com.xml\"><rule from=\"^http://static1\\.autoit-cdn\\.com/\" to=\"https://static1.autoit-cdn.com/\"/></ruleset>", "<ruleset name=\"AutoIt script.com\" f=\"AutoIt_script.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AutoTrack.nl\" f=\"AutoTrack.nl.xml\"><rule from=\"^http://((?:assets|media|www)\\.)?autotrack\\.nl/\" to=\"https://$1autotrack.nl/\"/></ruleset>", "<ruleset name=\"AutoTrader.com (partial)\" f=\"AutoTrader.com.xml\"><securecookie host=\"^\\.autotraderstatic\\.com$\" name=\".*\"/><rule from=\"^http://(ads\\.)?autotrader\\.com/\" to=\"https://$1autotrader.com/\"/><rule from=\"^http://www\\.autotrader\\.com/(no_cache/)\" to=\"https://www.autotrader.com/$1\"/><rule from=\"^http://(?:www\\.)?autotraderstatic\\.com/\" to=\"https://www.autotraderstatic.com/\"/></ruleset>", "<ruleset name=\"Auto Ad Manager.com (partial)\" f=\"Auto_Ad_Manager.com.xml\"><securecookie host=\"^\\.autoadmanager\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Auto Blog.com\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Auto_Blog.com.xml\"><rule from=\"^http://autoblog\\.com/\" to=\"https://www.autoblog.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Auto Rims & Accessories\" f=\"Auto_Rims_and_Accessories.xml\"><securecookie host=\"^(?:.*\\.)?autorimsandaccessories\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Autobytel.com (false MCB)\" platform=\"mixedcontent\" f=\"Autobytel.com-falsemixed.xml\"><securecookie host=\"^(?:new|www)\\.autobytel\\.com$\" name=\".+\"/><rule from=\"^http://autobytel\\.com/\" to=\"https://www.autobytel.com/\"/><rule from=\"^http://hybrid\\.autobytel\\.com/[^?]*\" to=\"https://www.autobytel.com/green-cars/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Autobytel.com (partial)\" f=\"Autobytel.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Automatic Data Processing (partial)\" f=\"Automatic_Data_Processing.xml\"><securecookie host=\".*\\.adp\\.com$\" name=\".+\"/><securecookie host=\"^adpe\\.csod\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?(edu\\.|flexdirect\\.)?adp\\.com/\" to=\"https://www.$1adp.com/\"/><rule from=\"^http://([ac]gateway|clientcenter|(?:checkprint|yearend)\\.pss|downtime2|eetime1|ewallet|glinterface|payexag|resource-secure|runpayroll|www\\.tlm|totalsource)\\.adp\\.com/\" to=\"https://$1.adp.com/\"/><rule from=\"^http://(www\\.)?(adpvantage|documax|etime|ezlm|ipay(?:admin)?|ireports|netsecure|paystatements|payex|portal|quickview|reporting|select|support|timesaver)\\.adp\\.com/\" to=\"https://$1$2.adp.com/\"/><rule from=\"^http://(?:www\\.)?(adp4me|easynet|smallbusiness)\\.adp\\.com/\" to=\"https://$1.adp.com/\"/><rule from=\"^http://(?:www\\.)?dataaccessregistration\\.adp\\.com/(?:.*)\" to=\"https://runpayroll.adp.com/default.aspx?action=newclient&RAP=1\"/><rule from=\"^http://(?:www\\.)?ilearn\\.adp\\.com/\\?*$\" to=\"https://adpe.csod.com/\"/><rule from=\"^http://(?:www\\.)?virtualedge\\.adp\\.com/(?:.*)\" to=\"https://www.adp.com/solutions/employer-services/pre-employment-services.aspx\"/><rule from=\"^http://adpe\\.csod\\.com/\" to=\"https://adpe.csod.com/\"/></ruleset>", "<ruleset name=\"Automattic\" f=\"Automattic.xml\"><rule from=\"^http://bbpress\\.automattic\\.com/\" to=\"https://bbpress.trac.wordpress.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Automotive Industries\" platform=\"mixedcontent\" f=\"Automotive-Industries.xml\"><securecookie host=\"^(?:.*\\.)?ai-online\\.com$\" name=\".*\"/><rule from=\"^http://(www\\.)?ai(?:\\.ai|-online\\.com)/\" to=\"https://$1ai-online.com/\"/></ruleset>", "<ruleset name=\"Automotive Linux.org\" f=\"Automotive_Linux.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"automx.org (partial)\" default_off=\"missing certificate chain\" f=\"Automx.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Autopilot HQ.com (partial)\" f=\"Autopilot_HQ.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Autoscout24.ch (partial)\" f=\"Autoscout24.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Autoscout24.de\" f=\"Autoscout24.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Autosite.com (partial)\" f=\"Autosite.com.xml\"><exclusion pattern=\"^http://dealers\\.autosite\\.com/+(?![Cc]ontent/|favicon\\.ico)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Autotools.io\" f=\"Autotools.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AvaHost (partial)\" default_off=\"failed ruleset test\" f=\"AvaHost.xml\"><securecookie host=\"^(?:www\\.)?secure\\.avahost\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AVADirect.com (partial)\" f=\"Avadirect.com.xml\"><exclusion pattern=\"^http://www\\.avadirect\\.com/+(?!(?:[Aa]ccount|[Ff]orum|[Ll]ogin)(?:$|[?/]))\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Avangard.ru\" f=\"Avangard.ru.xml\"><rule from=\"^http://avangard\\.ru/\" to=\"https://www.avangard.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Avangate (partial)\" f=\"Avangate.xml\"><securecookie host=\"^secure\\.avangate\\.com$\" name=\".*\"/><rule from=\"^http://www\\.avangate\\.com/(docs/|favicon\\.ico|images/|template_new/)\" to=\"https://www.avangate.com/$1\"/><rule from=\"^http://cdn\\.avangate\\.com/web/\" to=\"https://www.avangate.com/\"/><rule from=\"^http://((?:arms|download2?|secure)\\.)?avangate\\.com/\" to=\"https://$1avangate.com/\"/><rule from=\"^http://edge\\.avangate\\.net/\" to=\"https://edge.avangate.net/\"/></ruleset>", "<ruleset name=\"Avanis.fr\" f=\"Avanis.fr.xml\"><securecookie host=\"^\\.avanis\\.fr$\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Avantar.com\" default_off=\"missing certificate chain\" f=\"Avantar.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"avanticdn (partial)\" default_off=\"expired\" f=\"Avanticdn.xml\"><rule from=\"^http://cdn\\.avanti247\\.com/\" to=\"https://cdn.avanti247.com/\"/></ruleset>", "<ruleset name=\"Avanza.se\" f=\"Avanza.se.xml\"><rule from=\"^http://www\\.avanza\\.se/\" to=\"https://www.avanza.se/\"/><rule from=\"^http://avanza\\.se/\" to=\"https://www.avanza.se/\"/></ruleset>", "<ruleset name=\"Avast.com (partial)\" f=\"Avast.com.xml\"><rule from=\"^http://ans?\\.avast\\.com/\" to=\"https://avast-co-jp-ldc.d3.sc.omtrdc.net/\"/><securecookie host=\"^\\.\" name=\"^s_vi$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Avaya (partial)\" f=\"Avaya.xml\"><securecookie host=\"^.+\\.avaya\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?avaya\\.com/(_assets/|PremiumIcon\\.asp|uk/ResourceWriter\\.ashx|uk/RtImage\\.aspx)\" to=\"https://www.avaya.com/$1\"/><rule from=\"^http://(downloads|grt|sso|support(?:betasite-stg)?)\\.avaya\\.com/\" to=\"https://$1.avaya.com/\"/></ruleset>", "<ruleset name=\"Avectra.com (partial)\" f=\"Avectra.com.xml\"><securecookie host=\"^www2\\.avectra\\.com$\" name=\".+\"/><rule from=\"^http://success\\.avectra\\.com/(?=css/|images/|js/|rs/)\" to=\"https://na-abk.marketo.com/\"/><rule from=\"^http://www2\\.avectra\\.com/\" to=\"https://www2.avectra.com/\"/></ruleset>", "<ruleset name=\"AvenirClimatique.org\" f=\"AvenirClimatique.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Avinc.com\" f=\"Avinc.com.xml\"><securecookie host=\"^(?:\\.avportal|www)?\\.avinc\\.com$\" name=\".+\"/><rule from=\"^http://(avportal\\.|www\\.)?avinc\\.com/\" to=\"https://$1avinc.com/\"/><rule from=\"^http://investor\\.avinc\\.com/common/\" to=\"https://investor.shareholder.com/common/\"/></ruleset>", "<ruleset name=\"Avira.com\" default_off=\"failed ruleset test\" f=\"Avira.xml\"><securecookie host=\"^\\.avira\\.com$\" name=\"^__qca$\"/><securecookie host=\"^www\\.avira\\.com$\" name=\".+\"/><rule from=\"^http://www\\.(analysis|forum|license|myaccount|partnernet)\\.avira\\.com/\" to=\"https://$1.avira.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aviris näönvälineet\" f=\"Aviris-naonvalineet.xml\"><securecookie host=\"^aviris\\.nkl\\.fi$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?aviris(?:\\.nkl)?\\.fi/\" to=\"https://aviris.nkl.fi/\"/></ruleset>", "<ruleset name=\"Avis.com\" f=\"Avis.com.xml\"><securecookie host=\".*\\.avis\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Avisservices.com\" f=\"Avisservices.com.xml\"><securecookie host=\"^(?:\\.?snap)?\\.avisservices\\.com$\" name=\".+\"/><rule from=\"^http://snap\\.avisservices\\.com/\" to=\"https://snap.avisservices.com/\"/></ruleset>", "<ruleset name=\"AVM.de (partial)\" f=\"Avm.de.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Avon and Somerset Constabulary\" f=\"AvonandSomersetConstabulary.xml\"><rule from=\"^http://(www\\.)?avonandsomerset\\.police\\.uk/\" to=\"https://www.avonandsomerset.police.uk/\"/></ruleset>", "<ruleset name=\"avonmaquiagem.com.br\" default_off=\"failed ruleset test\" f=\"Avonmaquiagem.com.br.xml\"><securecookie host=\"^(?:w*\\.)?avonmaquiagem\\.com\\.br$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Avropa.se\" f=\"Avropa.se.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Avtrade\" default_off=\"self-signed\" f=\"Avtrade.xml\"><rule from=\"^http://(?:www\\.)?avtrade\\.co\\.uk/\" to=\"https://avtrade.co.uk/\"/></ruleset>", "<ruleset name=\"Avue Central\" f=\"Avue_Central.xml\"><rule from=\"^http://(?:www\\.)?avuecentral\\.com/\" to=\"https://www.avuecentral.com/\"/></ruleset>", "<ruleset name=\"Avue Digital Services\" f=\"Avue_Digital_Services.xml\"><rule from=\"^http://(?:www\\.)?avuedigitalservices\\.com/\" to=\"https://www.avuedigitalservices.com/\"/></ruleset>", "<ruleset name=\"Avv.de\" f=\"Avv.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"awe.sm (partial)\" default_off=\"failed ruleset test\" f=\"Awe.sm.xml\"><securecookie host=\"^\\.awe\\.sm$\" name=\".+\"/><rule from=\"^http://widgets\\.awe\\.sm/$\" to=\"https://totally.awe.sm/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"awesome-it.de\" f=\"Awesome-it.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AwesomeJar.com\" f=\"AwesomeJar.xml\"><rule from=\"^http://(?:www\\.)?awesomejar\\.com/\" to=\"https://awesomejar.com/\"/></ruleset>", "<ruleset name=\"Awio Web Services (mismatches)\" default_off=\"mismatched\" f=\"Awio-Web-Services-mismatches.xml\"><securecookie host=\"^(?:.*\\.)?dialshield\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?dialshield\\.com/\" to=\"https://www.dialshield.com/\"/></ruleset>", "<ruleset name=\"Awio Web Services (partial)\" default_off=\"failed ruleset test\" f=\"Awio-Web-Services.xml\"><securecookie host=\"^app\\.dialshield\\.com$\" name=\".*\"/><securecookie host=\"^(?:.*\\.)?(?:visitorboost|w3roi)\\.com$\" name=\".*\"/><rule from=\"^http://app\\.dialshield\\.com/\" to=\"https://app.dialshield.com/\"/><rule from=\"^http://(?:www\\.)?visitorboost\\.com/\" to=\"https://www.visitorboost.com/\"/><rule from=\"^http://(www\\.)?w3roi\\.com/\" to=\"https://$1w3roi.com/\"/></ruleset>", "<ruleset name=\"awxcnx.de\" default_off=\"broken\" f=\"Awxcnx.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Axamba (partial)\" default_off=\"failed ruleset test\" f=\"Axamba.xml\"><securecookie host=\"^my\\.webtapestry\\.net$\" name=\".*\"/><rule from=\"^http://my\\.webtapestry\\.net/\" to=\"https://my.webtapestry.net/\"/></ruleset>", "<ruleset name=\"Axantum.com (partial)\" f=\"Axantum.com.xml\"><rule from=\"^http://(?:www\\.)?axantum\\.com/(?=Xecrets/Log(On|gedOff)\\.aspx|favicon\\.ico)\" to=\"https://www.axantum.com/\"/></ruleset>", "<ruleset name=\"Axboe (partial)\" default_off=\"failed ruleset test\" f=\"Axboe.xml\"><securecookie host=\"^webmail\\.axboe\\.dk$\" name=\".*\"/><rule from=\"^http://webmail\\.axboe\\.dk/\" to=\"https://webmail.axboe.dk/\"/></ruleset>", "<ruleset name=\"Axel Springer (partial)\" f=\"Axel-Springer.xml\"><exclusion pattern=\"^http://www\\.aufeminin\\.com/.+(?:\\.asp$|/)\"/><rule from=\"^http://(?:www\\.)?aufeminin\\.com/(a/|[\\w\\W]+(?:\\.(?:css|gif|js|ico|jpg|png)(?:$|\\?)|\\?lsh|v=[\\d\\.]+))\" to=\"https://www.aufeminin.com/$1\"/><rule from=\"^http://network\\.aufeminin\\.com/call/pubimppixel/\\d{7}/\\d+\\??\" to=\"https://im2.smartserver.com/images/shim.gif\"/></ruleset>", "<ruleset name=\"Axel Arnbak.nl\" f=\"Axel_Arnbak.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Axel Simon.net\" f=\"Axel_Simon.net.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://(www\\.)?axelsimon\\.net/\" to=\"https://axelsimon.net/\"/></ruleset>", "<ruleset name=\"axelname.ru\" default_off=\"failed ruleset test\" f=\"Axelname.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Axeso5.com (false MCB)\" platform=\"mixedcontent\" f=\"Axeso5.com-falsemixed.xml\"><securecookie host=\"^www\\.axeso5\\.com$\" name=\".+\"/><rule from=\"^http://axeso5\\.com/\" to=\"https://www.axeso5.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Axeso5.com (partial)\" f=\"Axeso5.com.xml\"><securecookie host=\"^(?:billing|oauth2)\\.axeso5\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Axis Bank (partial)\" f=\"Axis_Bank.xml\"><securecookie host=\"^.+\\.axisbank\\.co(?:\\.in|m)$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?axisbank\\.co(\\.in|m)/\" to=\"https://www.axisbank.co$1/\"/><rule from=\"^http://aps\\.axisbank\\.com/\" to=\"https://aps.axisbank.com/\"/></ruleset>", "<ruleset name=\"Axonify.com\" f=\"Axonify.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Axonix.com (partial)\" f=\"Axonix.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Axosoft.com\" default_off=\"failed ruleset test\" f=\"Axosoft.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ay Yildiz\" f=\"Ay_Yildiz.xml\"><securecookie host=\"^www\\.ayyildiz\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ayyildiz\\.de/\" to=\"https://www.ayyildiz.de/\"/></ruleset>", "<ruleset name=\"azcentral.com (partial)\" default_off=\"failed ruleset test\" f=\"Azcentral.com.xml\"><securecookie host=\"^\\.azcentral\\.com$\" name=\".+\"/><rule from=\"^http://(?:[il]\\.|(www\\.))?azcentral\\.com/\" to=\"https://$1azcentral.com/\"/></ruleset>", "<ruleset name=\"Azet.sk\" f=\"Azet.sk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Azure.com (partial)\" f=\"Azure.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Azure websites.net\" f=\"Azure_websites.net.xml\"><securecookie host=\"^\\.oauthplay\\.azurewebsites\\.net$\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AzurecomCDN.net\" f=\"AzurecomCDN.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"b2bmediaportal.com\" f=\"B2bmediaportal.com.xml\"><securecookie host=\"^www\\.b2bmediaportal\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?b2bmediaportal\\.com/\" to=\"https://www.b2bmediaportal.com/\"/></ruleset>", "<ruleset name=\"b3n.org\" f=\"B3n.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"British Airways\" default_off=\"failed ruleset test\" f=\"BA.xml\"><securecookie host=\"^(?:.*\\.)?britishairways.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BANAN.CZ\" f=\"BANAN.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BAPCo.com\" f=\"BAPCo.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BASE (partial)\" f=\"BASE.xml\"><exclusion pattern=\"^http://infos\\.base\\.de/\\?\"/><securecookie host=\"^.*\\.base\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?base\\.de/\" to=\"https://www.base.de/\"/><rule from=\"^http://(?:www\\.)?angebote\\.base\\.de/\" to=\"https://angebote.base.de/\"/><rule from=\"^http://(chatsurvey|m|proactive2?|tracking)\\.base\\.de/\" to=\"https://$1.base.de/\"/><rule from=\"^http://facebook\\.base\\.de/\" to=\"https://angebote.base.de/\"/><rule from=\"^http://(?:infos|promotion)\\.base\\.de/(?:$|\\?.*)\" to=\"https://www.base.de/\"/></ruleset>", "<ruleset name=\"BATS Exchange\" f=\"BATS_Exchange.xml\"><securecookie host=\"^(?:www\\.)?batstrading\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BAWSI.org\" f=\"BAWSI.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BBB Online.org (partial)\" f=\"BBB_Online.org.xml\"><exclusion pattern=\"^http://(?:www\\.)?bbbonline\\.org/(?!cks\\.asp\\?id=\\d)\"/><rule from=\"^http://(?:www\\.)?bbbonline\\.org/cks\\.asp\" to=\"https://www.bbb.org/us/bbb-online-business/\"/></ruleset>", "<ruleset name=\"BBB Silicon.org (partial)\" f=\"BBB_Silicon.org.xml\"><exclusion pattern=\"http://(?:www\\.)?bbbsilicon\\.org/+(?!$|\\?)\"/><rule from=\"^http://(?:www\\.)?bbbsilicon\\.org/+(?:\\?.*)?\" to=\"https://sanjose.bbb.org/\"/></ruleset>", "<ruleset name=\"BBC.co.uk (self-signed)\" default_off=\"mismatched, self-signed\" f=\"BBC-mismatches.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BBC.com (false MCB)\" platform=\"mixedcontent\" f=\"BBC.com-falsemixed.xml\"><exclusion pattern=\"^http://www\\.bbc\\.com/(?:$|\\?|favicon\\.ico|news/[\\w-]+-\\d+(?:$|\\?))\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BBC.com (partial)\" f=\"BBC.com.xml\"><rule from=\"^http://sa\\.bbc\\.com/\" to=\"https://bbc.112.2o7.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BBC.co.uk (partial)\" f=\"BBC.xml\"><exclusion pattern=\"^http://(?:www\\.)?bbc\\.co\\.uk/(?!/*(?:$|\\?|travel(?:$|[?/])))\"/><securecookie host=\"^\\.\" name=\"^(?:BGUID|s1)$\"/><securecookie host=\"^[^.w]\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BBC Children In Need\" f=\"BBC_Children_In_Need.xml\"><securecookie host=\"^(?:.*\\.)?bbcchildreninneed\\.co\\.uk$\" name=\".*\"/><rule from=\"^http://bbcchildreninneed\\.co\\.uk/\" to=\"https://www.bbcchildreninneed.co.uk/\"/><rule from=\"^http://([^/:@]+)\\.bbcchildreninneed\\.co\\.uk/\" to=\"https://$1.bbcchildreninneed.co.uk/\"/></ruleset>", "<ruleset name=\"BBVA-Bancomer\" f=\"BBVA-Bancomer.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BC.edu (MCB)\" platform=\"mixedcontent\" f=\"BC.edu-mixedcontent.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BC.edu (partial)\" f=\"BC.edu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BC Automobile Association\" f=\"BCAA.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BCCLA.org\" f=\"BCCLA.org.xml\"><securecookie host=\"^(?:www\\.)?bccla\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BCGolf.com (mismatches)\" default_off=\"mismatched\" f=\"BCGolf.com-mismatches.xml\"><exclusion pattern=\"^http://www\\.\"/><securecookie host=\"^.*\\.golf2go\\.net$\" name=\".*\"/><rule from=\"^http://([\\w\\-]+)\\.golf2go\\.net/\" to=\"https://$1.golf2go.net/\"/></ruleset>", "<ruleset name=\"BCGolf.com\" f=\"BCGolf.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BCLA Connect.ca\" f=\"BCLA_Connect.ca.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.bclaconnect\\.ca/\" to=\"https://bclaconnect.ca/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BC Hydro\" f=\"BC_Hydro.xml\"><securecookie host=\"^(?:www)?(?:\\.)?bchydro\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Becu.org\" default_off=\"failed ruleset test\" f=\"BECU.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BEL Solutions Oy\" default_off=\"failed ruleset test\" f=\"BEL.fi.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BEM.info\" default_off=\"failed ruleset test\" f=\"BEM.info.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BE One Spark.com (partial)\" f=\"BE_One_Spark.com.xml\"><rule from=\"^http://(www\\.)?beonespark\\.com/(?=assets/|berlin/(?:sign-in|users/password)/*(?:$|\\?))\" to=\"https://$1beonespark.com/\"/></ruleset>", "<ruleset name=\"BGPStream.com\" f=\"BGPStream.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BGPmon.net\" f=\"BGPmon.net.xml\"><securecookie host=\"^portal\\.bgpmon\\.net$\" name=\".+\"/><rule from=\"^http://bgpmon\\.(?:com|net)/\" to=\"https://www.bgpmon.net/\"/><rule from=\"^http://(portal|www)?\\.bgpmon\\.net/\" to=\"https://$1.bgpmon.net/\"/><rule from=\"^http://(portal|www)?\\.bgpmon\\.com/\" to=\"https://$1.bgpmon.net/\"/></ruleset>", "<ruleset name=\"BGR.com\" default_off=\"failed ruleset test\" f=\"BGR.com.xml\"><rule from=\"^http://cdn\\.bgr\\.com/\" to=\"https://boygeniusreport.files.wordpress.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bGamed.de (partial)\" f=\"BGamed.de.xml\"><securecookie host=\"^bgamed\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?bgamed\\.de/\" to=\"https://bgamed.de/\"/></ruleset>", "<ruleset name=\"BHW.de\" f=\"BHW.de.xml\"><securecookie host=\"^apps\\.bhw\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bHosted.nl (partial)\" f=\"BHosted.nl.xml\"><securecookie host=\"^webmail\\.bhosted\\.nl$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?bhosted\\.nl/(css/|favicon\\.ico|images/|js/|webmail(?:$|\\?|/))\" to=\"https://www.bhosted.nl/$1\"/><rule from=\"^http://(admin|klant|webmail)\\.bhosted\\.nl/\" to=\"https://$1.bhosted.nl/\"/></ruleset>", "<ruleset name=\"bHosting.ru\" default_off=\"mismatched\" f=\"BHosting.ru.xml\"><securecookie host=\"^www\\.bhosting\\.ru$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?bhosting\\.ru/\" to=\"https://www.bhosting.ru/\"/></ruleset>", "<ruleset name=\"Breitbandinfrastrukturgesellschaft Oberhessen\" f=\"BIGO.xml\"><rule from=\"^http://www\\.bigo\\.net/\" to=\"https://www.bigo.net/\"/></ruleset>", "<ruleset name=\"BIKT\" default_off=\"mismatched, self-signed\" f=\"BIKT.xml\"><securecookie host=\"^bikt\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?bikt\\.de/\" to=\"https://bikt.de/\"/></ruleset>", "<ruleset name=\"BIO.org (partial)\" default_off=\"failed ruleset test\" f=\"BIO-International-Convention.xml\"><securecookie host=\"^convention\\.bio\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BIT.nl\" f=\"BIT.nl.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BKK-Advita\" platform=\"mixedcontent\" f=\"BKK-Advita.xml\"><rule from=\"^http://(?:www\\.)?bkk-advita\\.de/\" to=\"https://www.bkk-advita.de/\"/></ruleset>", "<ruleset name=\"BLOX (partial)\" f=\"BLOX.xml\"><rule from=\"^http://([\\w\\-]+)\\.bloxcms\\.com/\" to=\"https://$1.bloxcms.com/\"/></ruleset>", "<ruleset name=\"bls.ch\" f=\"BLS.xml\"><rule from=\"^http://bls\\.ch/\" to=\"https://www.bls.ch/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BMC.com (partial)\" f=\"BMC.com.xml\"><securecookie host=\"^communities\\.bmc\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?bmc\\.com/(?=includes/|s\\?action=doLogin)\" to=\"https://www.bmc.com/\"/><rule from=\"^http://(media\\.cms|communities|docs|webapps)\\.bmc\\.com/\" to=\"https://$1.bmc.com/\"/></ruleset>", "<ruleset name=\"BMC Logo Store.com\" f=\"BMC_Logo_Store.com.xml\"><securecookie host=\"^www\\.bmclogostore\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BMDW.org\" f=\"BMDW.org.xml\"><securecookie host=\"^(?:www\\.)?bmdw\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BME\" default_off=\"failed ruleset test\" f=\"BME.hu.xml\"><rule from=\"^https?://tmit\\.bme\\.hu/\" to=\"https://www.tmit.bme.hu/\"/><rule from=\"^http://(www\\.)?neptun\\.bme\\.hu/\" to=\"https://www.kth.bme.hu/neptun/\"/><rule from=\"^http://vik\\.wiki/\" to=\"https://wiki.sch.bme.hu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BME (incomplete)\" default_off=\"missing certificate chain\" f=\"BME.hu_incomplete.xml\"><rule from=\"^https?://mit\\.bme\\.hu/\" to=\"https://www.mit.bme.hu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BMF-Steuerrechner.de\" f=\"BMF-Steuerrechner.de.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://bmf-steuerrechner\\.de/\" to=\"https://www.bmf-steuerrechner.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BM Pharmacy\" f=\"BM_Pharmacy.xml\"><securecookie host=\"^\\.bmpharmacy\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BN-static.com\" f=\"BN-static.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BNZ.co.nz\" f=\"BNZ.xml\"><securecookie host=\"^\\.\" name=\"^(?:_gat?|incap_ses_\\d+_\\d+|visid_incap_\\d+)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BOALT\" f=\"BOALT.xml\"><securecookie host=\"^\\.boalt\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?boalt\\.com/\" to=\"https://$1boalt.com/\"/><rule from=\"^http://adamboalt\\.wpengine\\.netdna-cdn\\.com/\" to=\"https://boalt.com/\"/></ruleset>", "<ruleset name=\"Boe.es\" f=\"BOE.es.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BoF.nl\" f=\"BOF.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BPS.org.uk (partial)\" f=\"BPS.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bayrischer Rundfunk\" f=\"BR.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BRChan\" f=\"BRChan.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"B.R.S.M.\" default_off=\"mismatched\" f=\"BRSM.xml\"><rule from=\"^http://(?:www\\.)?brsmblog\\.com/\" to=\"https://brsmblog.com/\"/></ruleset>", "<ruleset name=\"BSD.net (partial)\" f=\"BSD.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BSD Can.org (partial)\" f=\"BSDCan.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BSD Consulting.co.jp\" default_off=\"failed ruleset test\" f=\"BSD_Consulting.co.jp.xml\"><rule from=\"^http://www\\.bsdconsulting\\.co\\.jp/\" to=\"https://www.bsdconsulting.co.jp/\"/></ruleset>", "<ruleset name=\"Buddhist Society of Western Australia\" platform=\"mixedcontent\" f=\"BSWA.xml\"><securecookie host=\"^(?:www)?(?:\\.)?dhammaloka\\.org\\.au$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BSidesLV.org\" f=\"BSidesLV.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BSidesSLC.org\" default_off=\"failed ruleset test\" f=\"BSidesSLC.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BT PLC.com\" f=\"BT-Group.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BT.co.uk (partial)\" f=\"BT.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BT.no (false MCB)\" platform=\"mixedcontent\" f=\"BT.no-falsemixed.xml\"><rule from=\"^http://(?:www\\.)?bt\\.no/(?=tips(?:$|[?/]))\" to=\"https://www.bt.no/\"/></ruleset>", "<ruleset name=\"BT.com (partial)\" default_off=\"failed ruleset test\" f=\"BT.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://(dslchecker|globalservices)\\.bt\\.com/\" to=\"https://www.$1.bt.com/\"/><rule from=\"^http://(?:www\\.)?redcare\\.bt\\.com/\" to=\"https://www.redcare.com/\"/><rule from=\"^http://shop\\.bt\\.com/.*\" to=\"https://www.shop.bt.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BTC Buy\" default_off=\"failed ruleset test\" f=\"BTC-Buy.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BTC100.com\" default_off=\"missing certificate chain\" f=\"BTC100.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BTCChina.com\" f=\"BTCChina.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BTCGreece.com\" default_off=\"failed ruleset test\" f=\"BTCGreece.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BTCJam.com (partial)\" f=\"BTCJam.com.xml\"><securecookie host=\"^btcjam\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BTCKan.com\" default_off=\"failed ruleset test\" f=\"BTCKan.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BTCS.com\" f=\"BTCS.com.xml\"><securecookie host=\"^\\.shop\\.btcs\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BTCTrader.com\" f=\"BTCTrader.com.xml\"><securecookie host=\"^\\.(?:www\\.)?btctrader\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BTCTurk.com (partial)\" f=\"BTCTurk.com.xml\"><securecookie host=\"^\\.(?:www\\.)?btcturk\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BTCZone\" f=\"BTCZone.xml\"><securecookie host=\"^(?:www\\.)?btczone\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BTC Gear.com\" default_off=\"failed ruleset test\" f=\"BTC_Gear.com.xml\"><securecookie host=\"^(?:w*\\.)?btcgear\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BTC Markets.net\" f=\"BTC_Markets.net.xml\"><securecookie host=\"^(?:\\.|www\\.)?btcmarkets\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BTC Media.org (partial)\" f=\"BTC_Media.org.xml\"><securecookie host=\"^(?:www\\.)?btcmedia\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BTC Store.eu\" f=\"BTC_Store.eu.xml\"><securecookie host=\"^\\.btcstore\\.eu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BTDigg\" f=\"BTDigg.xml\"><securecookie host=\"^\\.?btdigg\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?btdigg\\.org/\" to=\"https://btdigg.org/\"/></ruleset>", "<ruleset name=\"BTGuard.com\" f=\"BTGuard.com.xml\"><securecookie host=\"^(?:.*\\.)?btguard\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?(affiliate\\.)?btguard\\.com/\" to=\"https://$1btguard.com/\"/></ruleset>", "<ruleset name=\"BTH.se\" platform=\"mixedcontent\" f=\"BTH.se.xml\"><rule from=\"^http://bth\\.se/\" to=\"https://www.bth.se/\"/><rule from=\"^http://www\\.bth\\.se/\" to=\"https://www.bth.se/\"/></ruleset>", "<ruleset name=\"BTR CDN.com\" f=\"BTR_CDN.com.xml\"><rule from=\"^http://cdn\\.btrcdn\\.com/\" to=\"https://cdn2.btrstatic.com/\"/></ruleset>", "<ruleset name=\"BTR static.com\" f=\"BTR_static.com.xml\"><rule from=\"^http://cdn([1-3])\\.btrstatic\\.com/\" to=\"https://cdn$1.btrstatic.com/\"/></ruleset>", "<ruleset name=\"BTXIndia.com (partial)\" f=\"BTXIndia.com.xml\"><securecookie host=\"^btcxindia\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BT Sport.com (partial)\" f=\"BT_Sport.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BT Sport Business.com\" f=\"BT_Sport_for_Business.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BT Wholesale.com\" f=\"BT_Wholesale.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BT Wi-fi\" f=\"BT_Wi-fi.xml\"><securecookie host=\"^(?:.+\\.)?btwifi\\.co(?:\\.uk|m)$\" name=\".+\"/><rule from=\"^http://(my\\.|www\\.)?btwifi\\.co(\\.uk|m)/\" to=\"https://$1btwifi.co$2/\"/></ruleset>", "<ruleset name=\"BTstatic.com (partial)\" f=\"BTstatic.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BTunnel\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"BTunnel.xml\"><securecookie host=\"^(?:.+\\.)?btunnel\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?btunnel\\.com/\" to=\"https://btunnel.com/\"/></ruleset>", "<ruleset name=\"BVG.de\" default_off=\"failed ruleset test\" f=\"BVG.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BVI Photo Video.com\" f=\"BVI_Photo_Video.com.xml\"><securecookie host=\"^(?:www)\\.bviphotovideo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BW.com\" f=\"BW.com.xml\"><rule from=\"^http://bw\\.com/\" to=\"https://www.bw.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BWurst.org\" f=\"BWurst.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BX.in.th\" f=\"BX.in.th.xml\"><securecookie host=\"^bx\\.in\\.th$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Brew Your Own\" f=\"BYO.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Brigham Young University (partial)\" platform=\"mixedcontent\" f=\"BYU.xml\"><exclusion pattern=\"^http://cpms\\.byu\\.edu/(?:content/|ESM(?:$|/)|newsletters/StudentNews/)\"/><exclusion pattern=\"^http://(?:www\\.)?byu\\.edu/(?:family|o(?:n|ff)campus)?housing(?:$|/)\"/><exclusion pattern=\"^http://www\\.physics\\.byu\\.edu/Graduate(?:/?$|/[dD]efault\\.aspx(?:\\?|$))\"/><rule from=\"^http(?:://(?:www\\.)?|s://www\\.)(alumni[23]|animation|asme|assess|at|barbershop|blackboard|bookexchange|booklist|byuems|byusa|cac|calendar|ccr|cheme|chemicalengineering|cles|clsupport|comd|cougarprints|coursemanagement|cpms|creativeworks|(?:(?:(?:accounts|docs|faculty|facwiki|help|labs|students|tick)\\.)?cs)|delegate|developer|education|edward|eroom|(?:(?:org|pml)\\.et)|events|examstat|facultyprofile|finserve|finserve-dev|gamescenter|gamma|gamma-stg|gardner|globalcareer|go|gradebook|home|honorcode|hrms|inshop|internationalservices|irbtutorial|it|itmedia|ittest|jobs|kennedy|kronprod|lambda|leadershiped|lockers|lodges|login|map|marylou|(?:mail01\\.)?math|mathed|multicultural|news|newsnet|oit|online[12]?|orca|(?:mail\\.physics)|pmpc|pmpcapps|police|printandmail|purchasing|redefineservice|remedy|risk|ry|sa|saas|sasapps|scheduling|software|spiral|stab|stleader|stokes|studentratings|testing|tutoring|uac|unicomm|volta|webmail|wilk|www|y|yfacts|yjobs|yscience)\\.byu\\.edu/\" to=\"https://$1.byu.edu/\"/><rule from=\"^http(?:://(?:www\\.)?|s://)((?:acerc|et|chem|physics)\\.)?byu\\.edu/\" to=\"https://www.$1byu.edu/\"/><rule from=\"^http://((?:secure\\.chem)|(?:support\\.cheme)|(?:(?:contentdm|listserver)\\.lib))\\.byu\\.edu/\" to=\"https://$1.byu.edu/\"/><rule from=\"^http://([a-zA-Z\\d\\-]+)\\.groups\\.et\\.byu\\.net/\" to=\"https://$1.groups.et.byu.net/\"/></ruleset>", "<ruleset name=\"B. E. Smith\" f=\"B_E_Smith.xml\"><securecookie host=\".+\\.besmith\\.com$\" name=\".+\"/><rule from=\"^http://((?:ex1|mail|thebridge|www)\\.)?besmith\\.com/\" to=\"https://$1besmith.com/\"/><rule from=\"^http://autodiscover\\.besmith\\.com/\" to=\"https://autodiscover-s.outlook.com/\"/></ruleset>", "<ruleset name=\"Babbel.com (false MCB)\" platform=\"mixedcontent\" f=\"Babbel.com-falsemixed.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Babbel.com (partial)\" f=\"Babbel.com.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BabelZilla\" f=\"BabelZilla.org.xml\"><securecookie host=\"^\\.?babelzilla\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Babeljs.io\" f=\"Babeljs.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BabyMed.com (partial)\" f=\"BabyMed.com.xml\"><rule from=\"^http://(?:www\\.)?babymed\\.com/(favicon\\.ico|sites/|themes/|user(?:$|\\?/))\" to=\"https://www.babymed.com/$1\"/></ruleset>", "<ruleset name=\"Babylon (partial)\" f=\"Babylon.xml\"><securecookie host=\"^store\\.babylon\\.com$\" name=\".*\"/><rule from=\"^http://(img|store|utils)\\.babylon\\.com/\" to=\"https://$1.babylon.com/\"/></ruleset>", "<ruleset name=\"Backblaze\" f=\"Backblaze.com.xml\"><securecookie host=\"^(www|secure)\\.backblaze\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Backbone Security.com\" f=\"Backbone-Security.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Backbox.org\" f=\"Backbox.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Backcountry.com (partial)\" f=\"Backcountry.com.xml\"><securecookie host=\"^m\\.backcountry\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?backcountry\\.com/(css|images|promo_upload)/\" to=\"https://www.backcountry.com/$1/\"/><rule from=\"^http://(api|beta|m)\\.backcountry\\.com/\" to=\"https://$1.backcountry.com/\"/><rule from=\"^http://(?:content|promoimages)\\.backcountry\\.com/\" to=\"https://www.backcountry.com/\"/></ruleset>", "<ruleset name=\"Backloggery.com\" platform=\"mixedcontent\" f=\"Backloggery.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Backpack.tf\" f=\"Backpack.tf.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Backpackers Lucerne\" f=\"Backpackers_Lucerne.xml\"><securecookie host=\"^(?:.*\\.)?backpackerslucerne\\.ch$\" name=\".+\"/><rule from=\"^http://backpackerslucerne\\.ch/\" to=\"https://www.backpackerslucerne.ch/\"/><rule from=\"^http://([^/:@]+)?\\.backpackerslucerne\\.ch/\" to=\"https://$1.backpackerslucerne.ch/\"/></ruleset>", "<ruleset name=\"Backpage.com (partial)\" f=\"Backpage.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Backstreet International Merchandise\" f=\"Backstreet-International-Merchandise.xml\"><securecookie host=\"^(?:.*\\.)?backstreetmerch\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?backstreet-merch\\.com/\" to=\"https://www.backstreetmerch.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Backupify\" f=\"Backupify.xml\"><securecookie host=\"^(?:.*\\.)?backupify\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?backupify\\.com/\" to=\"https://www.backupify.com/\"/></ruleset>", "<ruleset name=\"BadgeKit.org\" default_off=\"failed ruleset test\" f=\"BadgeKit.org.xml\"><securecookie host=\"^badgekit\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Badgeville.com (problematic)\" default_off=\"expired, self-signed\" f=\"Badgeville.com-problematic.xml\"><securecookie host=\"^\\.?badgeville\\.com$\" name=\".+\"/><rule from=\"^http://(?:(community\\.)|www\\.)?badgeville\\.com/\" to=\"https://$1badgeville.com/\"/></ruleset>", "<ruleset name=\"Badgeville.com (partial)\" f=\"Badgeville.com.xml\"><rule from=\"^http://(users\\.admin|api\\.v2)\\.badgeville\\.com/\" to=\"https://$1.badgeville.com/\"/></ruleset>", "<ruleset name=\"Badische-zeitung.de (partial)\" f=\"Badische-zeitung.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Badosoft.com\" f=\"Badosoft.com.xml\"><securecookie host=\"^www\\.badosoft\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Badssl.com\" f=\"Badssl.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Badwarebusters.org\" f=\"Badwarebusters.org.xml\"><securecookie host=\"^(?:www)?\\.badwarebusters\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Baekdal (partial)\" f=\"Baekdal.xml\"><rule from=\"^http://(?:www\\.)?baekdal\\.com/\" to=\"https://www.baekdal.com/\"/></ruleset>", "<ruleset name=\"Bagatoo.se\" default_off=\"failed ruleset test\" f=\"Bagatoo.se.xml\"><rule from=\"^http://www\\.bagatoo\\.se/\" to=\"https://www.bagatoo.se/\"/><rule from=\"^http://bagatoo\\.se/\" to=\"https://bagatoo.se/\"/></ruleset>", "<ruleset name=\"Bagnet.org (partial)\" default_off=\"failed ruleset test\" f=\"Bagnet.org.xml\"><exclusion pattern=\"^http://www\\.bagnet\\.org/(?!skin/|vendor/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bahn-BKK\" f=\"Bahn-BKK.xml\"><rule from=\"^http://(?:www\\.)?bahn-bkk\\.de/\" to=\"https://www.bahn-bkk.de/\"/></ruleset>", "<ruleset name=\"Bahn.de\" default_off=\"failed ruleset test\" f=\"Bahn.de.xml\"><rule from=\"^http://bahn\\.de/\" to=\"https://www.bahn.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Baidu (partial)\" f=\"Baidu.xml\"><rule from=\"^http://bdl\\.baidu\\.com/\" to=\"https://bdltest.duapp.com/\"/><rule from=\"^http://financestatic\\.baidu\\.com/\" to=\"https://8.baidu.com/\"/><exclusion pattern=\"^http://g?img\\.baidu\\.com/$\"/><exclusion pattern=\"^http://tieba\\.baidu\\.com/(?!mo/|mo_wowap_pb/)\"/><exclusion pattern=\"^http://zhidao\\.baidu\\.com/s/\"/><exclusion pattern=\"^http://zhidao\\.baidu\\.com/zhima/\"/><exclusion pattern=\"^http://zhidao\\.baidu\\.com/zt/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Baidu_CN\" default_off=\"Only available in China\" f=\"Baidu_CN.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Baidupcs.com\" f=\"Baidupcs.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bakabt.me\" f=\"Bakabt.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BTol.com (minimal)\" f=\"Baker-and-Taylor.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bakerlab.org\" default_off=\"failed ruleset test\" f=\"Bakerlab.org.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BalaBit.com\" f=\"BalaBit.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Balatarin\" platform=\"mixedcontent\" f=\"Balatarin.xml\"><rule from=\"^http://(?:www\\.)?balatarin\\.com/\" to=\"https://www.balatarin.com/\"/></ruleset>", "<ruleset name=\"Balboa.io\" f=\"Balboa.io.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Baldershage.se\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Baldershage.se.xml\"><rule from=\"^http://www\\.baldershage\\.se/\" to=\"https://www.baldershage.se/\"/><rule from=\"^http://baldershage\\.se/\" to=\"https://baldershage.se/\"/></ruleset>", "<ruleset name=\"Balkan Leaks\" default_off=\"failed ruleset test\" f=\"Balkan_Leaks.xml\"><securecookie host=\"^www\\.balkanleaks\\.eu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Balkongshoppen.se\" f=\"Balkongshoppen.se.xml\"><rule from=\"^http://www\\.balkongshoppen\\.se/\" to=\"https://www.balkongshoppen.se/\"/><rule from=\"^http://balkongshoppen\\.se/\" to=\"https://balkongshoppen.se/\"/></ruleset>", "<ruleset name=\"Ballerup.dk\" f=\"Ballerup.dk.xml\"><securecookie host=\"^www\\.ballerup\\.dk$\" name=\".+\"/><rule from=\"^http://(www\\.)?ballerup\\.dk/\" to=\"https://www.ballerup.dk/\"/></ruleset>", "<ruleset name=\"Ballicom\" f=\"Ballicom.xml\"><securecookie host=\"^www\\.ballicom\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ballicom\\.co\\.uk/\" to=\"https://www.ballicom.co.uk/\"/></ruleset>", "<ruleset name=\"BallotReady\" f=\"BallotReady.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://ballotready\\.org/\" to=\"https://www.ballotready.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ballot Measure Domains\" default_off=\"failed ruleset test\" f=\"Ballot_Measure_Domains.xml\"><securecookie host=\"^(?:www\\.)?ballotmeasuredomains\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ballou (partial)\" f=\"Ballou.xml\"><securecookie host=\"^(?:mail|mailadministration|minasidor|www)\\.ballou\\.se$\" name=\".+\"/><rule from=\"^http://((?:autodiscover|mail|mailadministration|minasidor|websally|wiki|www)\\.)?ballou\\.se/\" to=\"https://$1ballou.se/\"/><rule from=\"^http://(?:registrar|support)\\.ballou\\.se/\" to=\"https://minasidor.ballou.se/\"/></ruleset>", "<ruleset name=\"Balsamiq (partial)\" f=\"Balsamiq.xml\"><rule from=\"^http://(?!builds\\.|support\\.|www\\.)([\\w-]+)\\.mybalsamiq\\.com/\" to=\"https://$1.mybalsamiq.com/\"/></ruleset>", "<ruleset name=\"Bamsoftware.com\" f=\"Bamsoftware.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bananian.org\" f=\"Bananian.org.xml\"><securecookie host=\"^(dev\\.|webmail\\.|www\\.)?bananian\\.org\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BancoPastor.es\" f=\"Bancopastor.es.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bandcamp\" f=\"Bandcamp.xml\"><securecookie host=\"^\\.bandcamp\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?bandcamp\\.mu/\" to=\"https://bandcamp.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bandinelli.net\" default_off=\"failed ruleset test\" f=\"Bandinelli.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bandisoft\" default_off=\"failed ruleset test\" f=\"Bandisoft.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bangor University (self-signed)\" default_off=\"self-signed\" f=\"Bangor-University-self-signed.xml\"><rule from=\"^http://www\\.undeb\\.bangor\\.ac\\.uk/\" to=\"https://www.undeb.bangor.ac.uk/\"/></ruleset>", "<ruleset name=\"Bangor University (partial)\" f=\"Bangor-University.xml\"><securecookie host=\"^[^w]\\w+\\.bangor\\.ac\\.uk$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?bangor\\.ac\\.uk/itservices/user($|/)\" to=\"https://www.bangor.ac.uk/itservices/user$1\"/><rule from=\"^http://(bangorportal|blackboard|forum|inside|intranet|webmail)\\.bangor\\.ac\\.uk/\" to=\"https://$1.bangor.ac.uk/\"/></ruleset>", "<ruleset name=\"Bangor Daily News (partial)\" f=\"Bangor_Daily_News.xml\"><rule from=\"^http://(chrisbusby\\.|www\\.)?bangordailynews\\.com/\" to=\"https://$1bangordailynews.com/\"/><rule from=\"^http://(?:static\\.bangordailynews|bdnpull\\.bangorpublishing\\.netdna-cdn)\\.com/\" to=\"https://bangordailynews.com/\"/></ruleset>", "<ruleset name=\"BankID.no\" f=\"BankID.no.xml\"><securecookie host=\"^www\\.bankid\\.no$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?bankid\\.no/\" to=\"https://www.bankid.no/\"/></ruleset>", "<ruleset name=\"Bank of America.com (partial)\" f=\"Bank_of_America.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bank of England.co.uk (partial)\" f=\"Bank_of_England.co.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bank of Taipei.com.tw\" f=\"Bank_of_Taipei.com.tw.xml\"><securecookie host=\"^ebank\\.bankoftaipei\\.com\\.tw$\" name=\".+\"/><rule from=\"^http://(ebank|www)\\.bankoftaipei\\.com\\.tw/\" to=\"https://$1.bankoftaipei.com.tw/\"/></ruleset>", "<ruleset name=\"Banki.ru\" f=\"Banki.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Banking.co.at\" default_off=\"failed ruleset test\" f=\"Banking.co.at.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bankinter.com\" default_off=\"failed ruleset test\" f=\"Bankinter.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bankofscotland.de\" f=\"BankofScotland.de.xml\"><rule from=\"^http://bankofscotland\\.de/\" to=\"https://www.bankofscotland.de/\"/><rule from=\"^http://([^/:@]*)\\.bankofscotland\\.de/\" to=\"https://$1.bankofscotland.de/\"/></ruleset>", "<ruleset name=\"bankrate.com\" default_off=\"failed ruleset test\" f=\"Bankrate.com.xml\"><securecookie host=\"^(?:.*\\.)?bankrate\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?bankrate\\.com/\" to=\"https://origin.bankrate.com/\"/></ruleset>", "<ruleset name=\"Bankuralsib.ru\" default_off=\"failed ruleset test\" f=\"Bankuralsib.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BannerSnack.com\" f=\"BannerSnack.com.xml\"><securecookie host=\"^(?:www\\.)?bannersnack\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?bannersnack\\.com/\" to=\"https://$1bannersnack.com/\"/><rule from=\"^http://files\\.bannersnack\\.com/\" to=\"https://s3.amazonaws.com/files.bannersnack.com/\"/></ruleset>", "<ruleset name=\"Banque CIC\" f=\"Banque_CIC.xml\"><securecookie host=\"^(?:.*\\.)?cic\\.fr$\" name=\".+\"/><rule from=\"^http://cic\\.fr/\" to=\"https://www.cic.fr/\"/><rule from=\"^http://([^/:@]+)?\\.cic\\.fr/\" to=\"https://$1.cic.fr/\"/></ruleset>", "<ruleset name=\"Banque CIC (Suisse)\" f=\"Banque_CIC_Suisse.xml\"><securecookie host=\"^(?:.*\\.)?cic\\.ch$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Banque Cantonale du Valais\" f=\"Banque_Cantonale_du_Valais.xml\"><securecookie host=\"^(?:.*\\.)?bcvs\\.ch$\" name=\".+\"/><rule from=\"^http://bcvs\\.ch/\" to=\"https://www.bcvs.ch/\"/><rule from=\"^http://([^/:@]+)?\\.bcvs\\.ch/\" to=\"https://$1.bcvs.ch/\"/><rule from=\"^http://mybcvs\\.ch/\" to=\"https://www.mybcvs.ch/\"/><rule from=\"^http://([^/:@]+)?\\.mybcvs\\.ch/\" to=\"https://$1.mybcvs.ch/\"/></ruleset>", "<ruleset name=\"Banu.com\" f=\"Banu.com.xml\"><securecookie host=\"^(?:.*\\.)?banu\\.com$\" name=\".+\"/><rule from=\"^http://((?:bugzilla|git|mail|staff|wiki|www)\\.)?banu\\.com/\" to=\"https://$1banu.com/\"/></ruleset>", "<ruleset name=\"Banx.io\" default_off=\"failed ruleset test\" f=\"Banx.io.xml\"><securecookie host=\"^(?:\\.|www\\.)?banx\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Banyen Books and Sound\" f=\"Banyen-Books-and-Sound.xml\"><securecookie host=\"^www\\.banyen\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Banym.de\" f=\"Banym.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Baomoi.com\" default_off=\"mismatched\" f=\"Baomoi.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Barbican\" f=\"Barbican.xml\"><securecookie host=\"^www\\.barbican\\.org\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?barbican\\.org\\.uk/\" to=\"https://www.barbican.org.uk/\"/></ruleset>", "<ruleset name=\"Barclays.co.uk\" default_off=\"failed ruleset test\" f=\"Barclays.xml\"><securecookie host=\"^\\.barclays\\.co\\.uk$\" name=\"^s_vi$\"/><securecookie host=\"^(?:.+\\.)?barclays\\.co\\.uk$\" name=\".*\"/><rule from=\"^http://(jobs\\.)?barclays\\.co\\.uk/\" to=\"https://www.$1barclays.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Barclays Corporate.com\" default_off=\"failed ruleset test\" f=\"Barclays_Corporate.com.xml\"><securecookie host=\"^(?:.+\\.)?barclayscorporate\\.com$\" name=\".+\"/><rule from=\"^http://barclayscorporate\\.com/\" to=\"https://www.barclayscorporate.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Barclaycard.co.uk\" f=\"Barcleycard.co.uk.xml\"><securecookie host=\"^(?:.+\\.)?barclaycard\\.co\\.uk$\" name=\".*\"/><rule from=\"^http://barclaycard\\.co\\.uk/\" to=\"https://www.barclaycard.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bardwil Home (partial)\" f=\"Bardwil_Home.xml\"><rule from=\"^http://(?:www\\.)?bardwilhome\\.com/(cdn-cgi/ping|Controller/User_Session/CallTryCookie|css/|photos/|Public/|store_image/|Styles/)\" to=\"https://www.bardwilhome.com/$1\"/></ruleset>", "<ruleset name=\"BareMetal\" platform=\"mixedcontent\" f=\"BareMetal.xml\"><securecookie host=\"^swww\\.baremetal\\.com$\" name=\".*\"/><rule from=\"^http://(proxy\\.|s?www\\.)?baremetal\\.com/\" to=\"https://$1baremetal.com/\"/></ruleset>", "<ruleset name=\"Baremetrics.io\" f=\"Baremetrics.io.xml\"><securecookie host=\"^(?:www)?\\.baremetrics\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bareos\" f=\"Bareos.xml\"><securecookie host=\"^www\\.bareos\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?bareos\\.org/\" to=\"https://www.bareos.org/\"/></ruleset>", "<ruleset name=\"Barfi.ch\" f=\"Barfi.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bargains 4 Business\" default_off=\"refused\" f=\"Bargains_4_Business.xml\"><securecookie host=\"^(?:w*\\.)?bargains4business\\.com\\.au$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BarkBox.com (partial)\" f=\"BarkBox.com.xml\"><securecookie host=\"^\\.barkbox\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BarkerJr.net\" default_off=\"failed ruleset test\" f=\"BarkerJr.net.xml\"><rule from=\"^http://www\\.barkerjr\\.net/\" to=\"https://www.barkerjr.net/\"/></ruleset>", "<ruleset name=\"Barmer-GEK\" f=\"Barmer-GEK.xml\"><rule from=\"^http://(?:www\\.)?barmer-gek\\.de/\" to=\"https://www.barmer-gek.de/\"/></ruleset>", "<ruleset name=\"Barna.org (partial)\" f=\"Barna.org.xml\"><securecookie host=\"^\\.www\\.barna\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Barnard College\" f=\"Barnard_College.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Barnebys.co.uk\" f=\"Barnebys.co.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Barnebys.com\" f=\"Barnebys.com.xml\"><rule from=\"^http://widget\\.barnebys\\.com/\" to=\"https://d3dvc13yhtcxbb.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Barnes-Jewish Hospital (partial)\" default_off=\"failed ruleset test\" f=\"Barnes-Jewish_Hospital.xml\"><rule from=\"^http://(?:www\\.)?barnesjewish\\.org/(BJHControls/|favicon\\.ico|images/|MediaGallery/|skins/|styles/|[uU]pload/)\" to=\"https://www.barnesjewish.org/$1\"/></ruleset>", "<ruleset name=\"Barnes and Noble (partial)\" platform=\"mixedcontent\" f=\"BarnesandNoble.xml\"><exclusion pattern=\"^http://www\\.barnesandnoble\\.com/(?:google/ad\\?url=|p/[\\w-]+|[sw]/)\"/><securecookie host=\"^(?:cart\\d|my|\\.?mynook)\\.barnesandnoble\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?b(?:arnesandnoble|n)\\.com/\" to=\"https://www.barnesandnoble.com/\"/><rule from=\"^http://(cart\\d|my|mynook|pnr)\\.barnesandnoble\\.com/\" to=\"https://$1.barnesandnoble.com/\"/><rule from=\"^http://images\\.barnesandnoble\\.com/\" to=\"https://simg1.imagesbn.com/\"/></ruleset>", "<ruleset name=\"Barnskospecialisten.se\" platform=\"mixedcontent\" f=\"Barnskospecialisten.se.xml\"><rule from=\"^http://www\\.barnskospecialisten\\.se/\" to=\"https://www.barnskospecialisten.se/\"/><rule from=\"^http://barnskospecialisten\\.se/\" to=\"https://barnskospecialisten.se/\"/></ruleset>", "<ruleset name=\"Barracuda.com\" f=\"Barracuda.com.xml\"><securecookie host=\"^www\\.barracuda\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bart.gov\" default_off=\"failed ruleset test\" f=\"Bart.gov.xml\"><securecookie host=\"^(www|api|ess|ezrider|jobs|m|suppliers|telestaff|webapps|ws(8|20|26))\\.bart\\.gov$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bart Bania.com (partial)\" f=\"Bart_Bania.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Barter.vg\" f=\"Barter.vg.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bartleby.com\" default_off=\"expired, mismatched, self-signed\" f=\"Bartleby.com.xml\"><securecookie host=\"^bartleby\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?bartleby\\.com/\" to=\"https://bartleby.com/\"/></ruleset>", "<ruleset name=\"Barvaux.org\" f=\"Barvaux.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Basecamp.com\" f=\"Basecamp.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bassetlaw.gov.uk (partial)\" f=\"Bassetlaw.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bathnes.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"Bathnes.gov.uk.xml\"><exclusion pattern=\"^http://(?:idox\\.|www\\.)?bathnes\\.gov\\.uk/+(?!misc/|sites/)\"/><securecookie host=\"^(?!(?:idox\\.|www\\.)?bathnes\\.gov\\.uk$)\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Batman Arkham Knight.com\" f=\"Batman_Arkham_Knight.com.xml\"><rule from=\"^http://batmanarkhamknight\\.com/\" to=\"https://www.batmanarkhamknight.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Batmanarkhamorigins.com\" default_off=\"failed ruleset test\" f=\"Batmanarkhamorigins.com.xml\"><rule from=\"^http://(?:www\\.)?batmanarkhamorigins\\.com/\" to=\"https://www.batmanarkhamorigins.com/\"/></ruleset>", "<ruleset name=\"Battelle (partial)\" f=\"Battelle.xml\"><rule from=\"^http://(www\\.)?battelle\\.org/(careers/(?:benefits|current-openings|our-culture)(?:$|\\?)|docs/|doing-business-with-us/commercial-clients(?:$|\\?)|favicon\\.ico|feeds/|images/|Sitefinity/|Telerik\\.Web\\.UI\\.WebResource\\.axd)\" to=\"https://$1battelle.org/$2\"/></ruleset>", "<ruleset name=\"Battle.net (partial)\" f=\"Battle.net.xml\"><exclusion pattern=\"^http://(?:(?:eu|kr|sea|tw|us|www)\\.)?battle\\.net/(?!(?:account|d3|login)(?:$|\\?|/)|favicon\\.ico|static(?:-render)?/|.+/static/)\"/><securecookie host=\"^forums\\.battle\\.net$\" name=\".+\"/><rule from=\"^http://((?:eu|forums|kr|sea|tw|us|www)\\.)?battle\\.net/\" to=\"https://$1battle.net/\"/><rule from=\"^http://us\\.media3\\.battle\\.net/\" to=\"https://bnetcmsus-a.akamaihd.net/\"/></ruleset>", "<ruleset name=\"Battle Creek Enquirer\" f=\"Battle_Creek_Enquirer.xml\"><securecookie host=\"^www\\.battlecreekenquirer\\.com$\" name=\".+\"/><rule from=\"^http://(?:cmsimg\\.|www\\.)?battlecreekenquirer\\.com/\" to=\"https://www.battlecreekenquirer.com/\"/></ruleset>", "<ruleset name=\"Battle for the Net.com\" f=\"Battle_for_the_Net.com.xml\"><securecookie host=\"^\\.battleforthenet\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bauhaus-University Weimar (partial)\" f=\"Bauhaus-University_Weimar.xml\"><securecookie host=\"^.+\\.uni-weimar\\.de$\" name=\".+\"/><rule from=\"^http://w(ebmail|ww)\\.uni-weimar\\.de/\" to=\"https://w$1.uni-weimar.de/\"/></ruleset>", "<ruleset name=\"The Baxter Bulletin\" f=\"Baxter_Bulletin.xml\"><securecookie host=\"^www\\.baxterbulletin\\.com$\" name=\".+\"/><rule from=\"^http://(?:cmsimg\\.|www\\.)?baxterbulletin\\.com/\" to=\"https://www.baxterbulletin.com/\"/></ruleset>", "<ruleset name=\"BayFiles\" default_off=\"failed ruleset test\" f=\"BayFiles.xml\"><rule from=\"^http://(?:www\\.)?bayfiles\\.com/\" to=\"https://bayfiles.net/\"/><rule from=\"^http://(www\\.)?bayfiles\\.net/\" to=\"https://$1bayfiles.net/\"/></ruleset>", "<ruleset name=\"BayLeaks.com\" default_off=\"failed ruleset test\" f=\"BayLeaks.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BayLibre.com\" default_off=\"failed ruleset test\" f=\"BayLibre.com.xml\"><securecookie host=\"^(?:www\\.)?baylibre\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bay Area Amusements\" f=\"Bay_Area_Amusements.xml\"><securecookie host=\"^(?:www\\.)?bayareaamusements\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bay Citizen.org\" default_off=\"failed ruleset test\" f=\"Bay_Citizen.org.xml\"><securecookie host=\"^www\\.baycitizen\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?baycitizen\\.org/\" to=\"https://www.baycitizen.org/\"/></ruleset>", "<ruleset name=\"Bayan.ir (expired)\" default_off=\"expired\" f=\"Bayan.ir-expired.xml\"><rule from=\"^http://cdn\\.bayan\\.ir/\" to=\"https://cdn.bayan.ir/\"/></ruleset>", "<ruleset name=\"Bayan.ir (partial)\" f=\"Bayan.ir.xml\"><securecookie host=\"^bayan\\.ir$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Baylor.edu (partial)\" f=\"Baylor.edu.xml\"><securecookie host=\"^\\.(?:m|www)\\.baylor\\.edu$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?baylor\\.edu/\" to=\"https://www.baylor.edu/\"/><rule from=\"^http://(m|www1)\\.baylor\\.edu/\" to=\"https://$1.baylor.edu/\"/></ruleset>", "<ruleset name=\"Bayphoto.com\" f=\"Bayphoto.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bazaar.tf\" f=\"Bazaar.tf.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bazaarbay.org\" f=\"Bazaarbay.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bazaarvoice.com (problematic)\" default_off=\"mismatched\" f=\"Bazaarvoice-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bazaarvoice.com (partial)\" default_off=\"failed ruleset test\" f=\"Bazaarvoice.xml\"><exclusion pattern=\"^http://resources\\.bazaarvoice\\.com/+(?!css/|images/|rs/)\"/><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^login\\.\" name=\".\"/><rule from=\"^http://spark\\.bazaarvoice\\.com/\" to=\"https://bazaarvoice.secure.force.com/\"/><rule from=\"^http://resources\\.bazaarvoice\\.com/\" to=\"https://na-aba.marketo.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bazar.sk\" f=\"Bazar.sk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"baztab.net\" default_off=\"failed ruleset test\" f=\"Baztab.net.xml\"><securecookie host=\"^\\.baztab\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BazzApp\" f=\"BazzApp.xml\"><securecookie host=\"^bazzapp\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?bazapp\\.com/\" to=\"https://bazapp.com/\"/></ruleset>", "<ruleset name=\"bbPress.org\" f=\"BbPress.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bbcshop.com\" platform=\"mixedcontent\" f=\"Bbcshop.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bbelements.com (partial)\" default_off=\"failed ruleset test\" f=\"Bbelements.com.xml\"><securecookie host=\"^\\.go\\.\" name=\".\"/><rule from=\"^http://go\\.arbopl\\.bbelements\\.com/\" to=\"https://go.goldbachpoland.bbelements.com/\"/><rule from=\"^http://go\\.(?:cz|pl)\\.bbelements\\.com/\" to=\"https://go.eu.bbelements.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bbsey.es (partial)\" f=\"Bbsey.es.xml\"><rule from=\"^http://(www\\.)?bbsey(?:\\.es|es\\.com)/(?=favicon\\.ico|wp-content/|wp-includes/)\" to=\"https://$1bbseye.es/\"/></ruleset>", "<ruleset name=\"BBVA.es\" f=\"Bbva.es.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bcash.com.br (partial)\" f=\"Bcash.com.br.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bcove.me\" f=\"Bcove.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bdimg.com (partial)\" f=\"Bdimg.com.xml\"><exclusion pattern=\"^http://baike\\.bdimg\\.com/static/wiki-(common|lemma)/\\S+\\.(ttf|woff|woff2)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BeCoquin.com (partial)\" f=\"BeCoquin.com.xml\"><securecookie host=\"^\\.becoquin\\.com$\" name=\"^(?:TRACK_(?:CLOG|VISIT)|__utm\\w)$\"/><rule from=\"^http://(?:www\\.)?becoquin\\.com/(?=blog(?:$|[?/])|ext\\.php|favicon\\.ico|login\\.html|static/)\" to=\"https://www.becoquin.com/\"/></ruleset>", "<ruleset name=\"BeNaughty.com (partial)\" f=\"BeNaughty.com.xml\"><exclusion pattern=\"^http://ed\\.benaughty\\.com/(?!ext\\.php)\"/><securecookie host=\"^(?:.*\\.)?benaughty\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?benaughty\\.com/\" to=\"https://www.benaughty.com/\"/><rule from=\"^http://(cdn|ed)\\.benaughty\\.com/\" to=\"https://$1.benaughty.com/\"/></ruleset>", "<ruleset name=\"BeSTGRID.org (partial)\" f=\"BeSTGRID.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Be Diff.com.br\" default_off=\"failed ruleset test\" f=\"Be_Diff.com.br.xml\"><securecookie host=\"^(?:w*\\.)?bediff\\.com\\.br$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Be Mobile.ua\" default_off=\"missing certificate chain\" f=\"Be_Mobile.ua.xml\"><securecookie host=\"^bemobile\\.ua$\" name=\"\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"be quiet.com (false MCB)\" platform=\"mixedcontent\" f=\"Be_quiet.com.xml\"><securecookie host=\"^www\\.bequiet\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?bequiet\\.com/\" to=\"https://www.bequiet.com/\"/></ruleset>", "<ruleset name=\"Beacon Initiative\" default_off=\"failed ruleset test\" f=\"Beacon_Initiative.xml\"><securecookie host=\"^\\.beaconinitiative\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Beagle Street (partial)\" f=\"Beagle_Street.xml\"><securecookie host=\"^quotes\\.beaglestreet\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Beaker-Project.org\" f=\"Beaker-Project.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BeamYourScreen\" default_off=\"failed ruleset test\" f=\"BeamYourScreen.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Beanbag Inc.com\" f=\"Beanbag_Inc.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Beanstalk Data\" f=\"Beanstalk_Data.xml\"><securecookie host=\"^app\\.beanstalkdata\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Beanstock Media (partial)\" f=\"Beanstock_Media.xml\"><rule from=\"^http://tag\\.beanstock\\.co/\" to=\"https://ib.adnxs.com/\"/></ruleset>", "<ruleset name=\"bear.im\" default_off=\"failed ruleset test\" f=\"Bear.im.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BeastNode (expired)\" default_off=\"expired\" f=\"BeastNode-problematic.xml\"><rule from=\"^http://cp\\.beastnode\\.com/\" to=\"https://cp.beastnode.com/\"/></ruleset>", "<ruleset name=\"BeastNode (partial)\" f=\"BeastNode.xml\"><securecookie host=\"^.*\\.beastnode\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Beatport (buggy)\" default_off=\"JS redirection loop\" f=\"Beatport.xml\"><securecookie host=\"^(?:baseware)?\\.beatport\\.com$\" name=\".+\"/><rule from=\"^http://((?:accounts|baseware|geo-media|mixes|news|play|sounds|www)\\.)?beatport\\.com/\" to=\"https://$1beatport.com/\"/><rule from=\"^http://embed\\.beatport\\.com/(?:$|\\?)\" to=\"https://www.beatport.com/\"/><rule from=\"^http://static\\.bpddn\\.com/\" to=\"https://static.bpddn.com/\"/></ruleset>", "<ruleset name=\"Beatsmedia\" default_off=\"failed ruleset test\" f=\"Beatsmedia.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Beauteprivee.fr\" f=\"Beauteprivee.fr.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://(?:statics\\d\\.)?beauteprivee\\.fr/\" to=\"https://www.beauteprivee.fr/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BeautifulDecay.com (partial)\" default_off=\"failed ruleset test\" f=\"BeautifulDecay.com.xml\"><securecookie host=\"^\\.beautifuldecay\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BeautifulMosque.com\" f=\"BeautifulMosque.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BeautyBar.com\" f=\"BeautyBar.com.xml\"><securecookie host=\".\" name=\"^aps-trtmnt$\"/><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://beautybar\\.com/\" to=\"https://www.beautybar.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Beaverbrooks.co.uk (partial)\" f=\"Beaverbrooks.co.uk.xml\"><securecookie host=\"^\\.beaverbrooks\\.co\\.uk$\" name=\"^__utm\\w$\"/><rule from=\"^http://(?:www\\.)?beaverbrooks\\.co\\.uk/(?=_client/|favicon\\.ico|images/|myaccount(?:$|[?/])|_uploads/)\" to=\"https://www.beaverbrooks.co.uk/\"/><rule from=\"^http://content\\.beaverbrooks\\.co\\.uk/\" to=\"https://content.beaverbrooks.co.uk/\"/></ruleset>", "<ruleset name=\"Bebo.com\" f=\"Bebo.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Beck PC.ch\" default_off=\"missing certificate chain\" f=\"Beck_PC.ch.xml\"><securecookie host=\"^\\.beckpc\\.ch$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bedis.eu\" default_off=\"expired\" f=\"Bedis.eu.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://stats\\.bedis\\.eu/\" to=\"https://wiki.bedis.eu/\"/><rule from=\"^http://www\\.bedis\\.eu/\" to=\"https://bedis.eu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BeeFree.io\" f=\"BeeFree.io.xml\"><securecookie host=\"^(?:www\\.)?beefree\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Beefy Miracle.org\" f=\"Beefy_Miracle.org.xml\"><securecookie host=\"^\\.beefymiracle\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Beego.me\" f=\"Beego.me.xml\"><rule from=\"^http://(www|fanyi|zh)\\.beego\\.me/\" to=\"https://beego.me/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Beeld en Geluid.nl (partial)\" f=\"Beeld_en_Geluid.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Beeline.ru\" f=\"Beeline.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BeenVerified (partial)\" f=\"BeenVerified.xml\"><exclusion pattern=\"^http://(?:www\\.)?beenverified\\.com/(?!(?:\\?.*)?$|sitemap\\.html)\"/><securecookie host=\"^m\\.beenverified\\.com$\" name=\".+\"/><rule from=\"^http://(api\\.|(?:www\\.)?sor\\.api\\.|m\\.|www\\.)?beenverified\\.com/\" to=\"https://$1beenverified.com/\"/><rule from=\"^http://support\\.beenverified\\.com/(generated|images)/\" to=\"https://assets.zendesk.com/$1/\"/></ruleset>", "<ruleset name=\"beender.co\" default_off=\"failed ruleset test\" f=\"Beender.co.xml\"><securecookie host=\"^\\.?beender\\.co$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?beender\\.co/\" to=\"https://beender.co/\"/></ruleset>", "<ruleset name=\"Beetailer.com\" f=\"Beetailer.com.xml\"><securecookie host=\"^www\\.beetailer\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?beetailer\\.com/\" to=\"https://$1beetailer.com/\"/><rule from=\"^http://support\\.beetailer\\.com/\" to=\"https://beetailer.tenderapp.com/\"/></ruleset>", "<ruleset name=\"Beget.ru\" f=\"Beget.ru.xml\"><securecookie host=\"^(?:www\\.)?beget\\.ru$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BeginLinux.com\" f=\"BeginLinux.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Beginner Triathlete (partial)\" default_off=\"failed ruleset test\" f=\"Beginner_Triathlete.xml\"><securecookie host=\"^(?:www\\.)?beginnertriathlete\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Begun.ru\" f=\"Begun.xml\"><securecookie host=\"^(?:www)?\\.begun\\.ru$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Behance (partial)\" f=\"Behance.xml\"><securecookie host=\"^(?:a2|www)\\.behance\\.net$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?behance\\.net/\" to=\"https://www.behance.net/\"/><rule from=\"^http://(a2|help)\\.behance\\.net/\" to=\"https://$1.behance.net/\"/></ruleset>", "<ruleset name=\"Behavioral Policy.org\" f=\"Behavioral_Policy.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Behr\" default_off=\"failed ruleset test\" f=\"Behr.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Beleza na Web (partial)\" default_off=\"failed ruleset test\" f=\"Beleza_na_Web.xml\"><securecookie host=\"^\\.belezanaweb\\.net\\.br$\" name=\"^__sonar$\"/><rule from=\"^http://(www\\.)?belezanaweb\\.com\\.br/(css/|favicon\\.ico|imagen?s/|scripts/)\" to=\"https://$1belezanaweb.com.br/$2\"/><rule from=\"^http://static\\d?\\.belezanaweb\\.net\\.br/\" to=\"https://d33827d8ipi614.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Belgacoin.com\" f=\"Belgacoin.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Belkin (partial)\" f=\"Belkin.xml\"><rule from=\"^http://(?:www\\.)?belkin\\.com/(favicon\\.ico|images/|\\w\\w/login(?:$|\\?|/)|medias/|resources/|_ui/|\\w\\w/_ui/)\" to=\"https://www.belkin.com/$1\"/></ruleset>", "<ruleset name=\"Bell Canada (partial)\" f=\"Bell-Canada.xml\"><securecookie host=\"^(?:www|business|mybell)?(?:\\.)?bell\\.ca$\" name=\".+\"/><securecookie host=\"^jobs\\.bce\\.ca$\" name=\".+\"/><securecookie host=\"^webmail\\.bell\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bell-Labs.com\" f=\"Bell-Labs.com.xml\"><securecookie host=\"^www\\.bell-labs\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?bell-labs\\.com/\" to=\"https://www.bell-labs.com/\"/></ruleset>", "<ruleset name=\"BellSouth (partial)\" default_off=\"failed ruleset test\" f=\"BellSouth.xml\"><securecookie host=\"^smallbusiness\\.bellsouth\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?bellsouth\\.com/\" to=\"https://www.bellsouth.com/\"/><rule from=\"^http://smallbusiness\\.bellsouth\\.com/\" to=\"https://smallbusiness.bellsouth.com/\"/></ruleset>", "<ruleset name=\"Bellingcat.com\" f=\"Bellingcat.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bellingham School District (partial)\" f=\"Bellingham_School_District.xml\"><rule from=\"^http://(sehome\\.|www\\.)?bellinghamschools\\.org/(misc|sites)/\" to=\"https://$1bellinghamschools.org/$2/\"/></ruleset>", "<ruleset name=\"Belly Button Biodiversity\" default_off=\"mismatched\" f=\"Belly_Button_Biodiversity.xml\"><rule from=\"^http://(?:www\\.)?wildlifeofyourbody\\.org/\" to=\"https://wildlifeofyourbody.org/\"/></ruleset>", "<ruleset name=\"Belnet.be (partial)\" f=\"Belnet.be.xml\"><securecookie host=\"^(?:\\.?dcs|\\.events?|idpcustomer)\\.belnet\\.be$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?belnet\\.be/\" to=\"https://www.belnet.be/\"/><rule from=\"^http://(bcg|certificates|changepass(?:word)?|dcs|events?|fiorano|idp|idpcustomer|scs)\\.belnet\\.be/\" to=\"https://$1.belnet.be/\"/><rule from=\"^http://bnc\\.belnet\\.be/+(\\?.*)?$\" to=\"https://events.belnet.be/nl/content/belnet-networking-conference-2012$1\"/><rule from=\"^http://loba\\.belnet\\.be/+[^?]*(\\?.*)?\" to=\"https://dcs.belnet.be/$1\"/></ruleset>", "<ruleset name=\"Belpino.se\" default_off=\"failed ruleset test\" f=\"Belpino.se.xml\"><rule from=\"^http://www\\.belpino\\.se/\" to=\"https://www.belpino.se/\"/><rule from=\"^http://belpino\\.se/\" to=\"https://belpino.se/\"/></ruleset>", "<ruleset name=\"Belspo.be (partial)\" f=\"Belspo.be.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Beltelecom.by (partial)\" f=\"Beltelecom.by.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BelWü\" f=\"Belwue.de.xml\"><rule from=\"^http://belwue\\.de/\" to=\"https://www.belwue.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BenTasker.co.uk\" f=\"BenTasker.co.uk.xml\"><rule from=\"^http://bentasker\\.co\\.uk/\" to=\"https://www.bentasker.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ben Marshall.me\" f=\"Ben_Marshall.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bendigo Bank\" f=\"BendigoBank.xml\"><rule from=\"^http://bendigobank\\.com\\.au/\" to=\"https://www.bendigobank.com.au/\"/><rule from=\"^http://(edroom|m|shop|www)\\.bendigobank\\.com\\.au/\" to=\"https://$1.bendigobank.com.au/\"/></ruleset>", "<ruleset name=\"Benedikt-Bitterli.me\" f=\"Benedikt-Bitterli.me.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Benefit.nl\" f=\"Benefit.nl.xml\"><securecookie host=\"^www\\.benefit\\.nl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"benefitsweb.com\" platform=\"mixedcontent\" f=\"Benefitsweb.com.xml\"><securecookie host=\"^(?:www)?\\.benefitsweb\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?benefitsweb\\.com/\" to=\"https://www.benefitsweb.com/\"/></ruleset>", "<ruleset name=\"Benetech\" f=\"Benetech.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bennetts (partial)\" f=\"Bennetts.xml\"><securecookie host=\"^\\.?quotes\\.bennets\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?bennetts\\.co\\.uk/(assets/|bikesocial/signin|Global/|PageFiles/|[tT]emplates/)\" to=\"https://www.bennetts.co.uk/$1\"/><rule from=\"^http://(classified|quote)s\\.bennetts\\.co\\.uk/\" to=\"https://$1s.bennetts.co.uk/\"/></ruleset>", "<ruleset name=\"Benthams Gaze.org\" f=\"Benthams_Gaze.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bentley University (partial)\" f=\"Bentley_University.xml\"><exclusion pattern=\"^http://(?:www\\.)?bentley\\.edu/(?!favicon\\.ico|files/|sites/)\"/><securecookie host=\"^\\.secureforms\\.bentley\\.edu$\" name=\".+\"/><rule from=\"^http://((?:secureforms|www)\\.)?bentley\\.edu/\" to=\"https://$1bentley.edu/\"/></ruleset>", "<ruleset name=\"Benzinga.com (partial)\" f=\"Benzinga.com.xml\"><exclusion pattern=\"^http://pro\\.benzinga\\.com/+(?!sites/)\"/><exclusion pattern=\"^http://www\\.benzinga\\.com/+(?!favicon\\.ico)\"/><rule from=\"^http://((?:cdn\\d|jobs|pro|www)\\.)?benzinga\\.com/\" to=\"https://$1benzinga.com/\"/></ruleset>", "<ruleset name=\"bepress.com (partial)\" f=\"Bepress.xml\"><exclusion pattern=\"^http://[^/]+\\.[^/]+\\.bepress\\.com/\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BT.no (partial)\" f=\"BergensTidende.xml\"><exclusion pattern=\"^http://kundesenter\\.bt\\.no/+(?!keypublisher_gui/|sitefiles/)\"/><exclusion pattern=\"^http://(?:www\\.)?bt\\.no/+(?!external/|skins/)\"/><rule from=\"^http://(?:www\\.)?bt\\.no/\" to=\"https://www.bt.no/\"/><rule from=\"^http://(kundesenter|statisk)\\.bt\\.no/\" to=\"https://$1.bt.no/\"/></ruleset>", "<ruleset name=\"Berkeley LUG.com\" f=\"Berkeley_LUG.com.xml\"><securecookie host=\"^www\\.berkeleylug\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?berkeleylug\\.com/\" to=\"https://www.berkeleylug.com/\"/></ruleset>", "<ruleset name=\"Berklee College of Music\" f=\"Berklee.edu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Berkshire-Hathaway (partial)\" f=\"Berkshire-Hathaway.xml\"><rule from=\"^http://businesswire\\.com/\" to=\"https://www.businesswire.com/\"/><rule from=\"^http://(?:www\\.)?businesswire\\.com/(css/|images/|portal/(?:binary|site/home/(?:template\\.LOGIN|index\\.jsp\\?epi-content=[\\w&=]+wizardName=userreg)))\" to=\"https://www.businesswire.com/$1\"/><rule from=\"^http://(connect|secure|mms)\\.businesswire\\.com/\" to=\"https://$1.businesswire.com/\"/></ruleset>", "<ruleset name=\"BerliOS\" default_off=\"mismatched\" f=\"BerliOS.de.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Berlin Airport\" default_off=\"failed ruleset test\" f=\"Berlin-Airport.de.xml\"><rule from=\"^http://berlin-airport\\.de/\" to=\"https://www.berlin-airport.de/\"/><rule from=\"^http://([^/:@]+)?\\.berlin-airport\\.de/\" to=\"https://$1.berlin-airport.de/\"/></ruleset>", "<ruleset name=\"Berlin.de (partial)\" f=\"Berlin.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Berliner Energietisch\" default_off=\"mismatch, self-signed\" f=\"Berliner-Energietisch.xml\"><securecookie host=\"^berliner-energietisch\\.net$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?berliner-energietisch\\.net/\" to=\"https://berliner-energietisch.net/\"/></ruleset>", "<ruleset name=\"Berlinonline.de\" platform=\"mixedcontent\" f=\"Berlinonline.de.xml\"><rule from=\"^http://berlinonline\\.de/\" to=\"https://www.berlinonline.de/\"/><rule from=\"^http:\" to=\"https:\"/><securecookie host=\"^\\w\" name=\".*\"/></ruleset>", "<ruleset name=\"Bernal Bucks\" f=\"Bernal_Bucks.xml\"><securecookie host=\"^\\.?bernalbucks\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bernard Hodes Group (partial)\" default_off=\"failed ruleset test\" f=\"Bernard_Hodes_Group.xml\"><securecookie host=\"^.+\\.sc\\.hodesdigital\\.com$\" name=\".+\"/><rule from=\"^http://(\\w+)\\.sc\\.hodesdigital\\.com/\" to=\"https://$1.sc.hodesdigital.com/\"/><rule from=\"^http://jobmatcher\\.hodesiq\\.com/\" to=\"https://jobmatcher.hodesiq.com/\"/></ruleset>", "<ruleset name=\"Bernie Sanders.com\" f=\"Bernie_Sanders.com.xml\"><securecookie host=\"^\\.berniesanders\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bernina\" f=\"Bernina.xml\"><exclusion pattern=\"^http://bernina\\.com/$\"/><exclusion pattern=\"^http://www\\.bernina\\.com/$\"/><rule from=\"^http://bernina-chur\\.ch/\" to=\"https://www.bernina-chur.ch/\"/><rule from=\"^http://bernina-lausanne\\.ch/\" to=\"https://www.bernina-lausanne.ch/\"/><rule from=\"^http://bernina-lugano\\.ch/\" to=\"https://www.bernina-lugano.ch/\"/><rule from=\"^http://bernina-mels\\.ch/\" to=\"https://www.bernina-mels.ch/\"/><rule from=\"^http://bernina-solothurn\\.ch/\" to=\"https://www.bernina-solothurn.ch/\"/><rule from=\"^http://bernina-wil\\.ch/\" to=\"https://www.bernina-wil.ch/\"/><rule from=\"^http://xn--bernina-zrich-4ob\\.ch/\" to=\"https://www.xn--bernina-zrich-4ob.ch/\"/><rule from=\"^http://(www\\.)?bernina-zuerich\\.ch/\" to=\"https://www.xn--bernina-zrich-4ob.ch/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"berniw.org\" default_off=\"mismatched\" f=\"Berniw.org.xml\"><securecookie host=\"^berniw\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?berniw\\.org/\" to=\"https://berniw.org/\"/></ruleset>", "<ruleset name=\"BerryReview.com (false MCB)\" platform=\"mixedcontent\" f=\"BerryReview.com.xml\"><securecookie host=\"^(?:\\.?www\\.)?berryreview\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bertrand Meyer.com\" f=\"Bertrand_Meyer.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bespied-ons-niet.nl\" f=\"Bespied-ons-niet.nl.xml\"><rule from=\"^http://(?:www\\.)?bespied-ons-niet\\.nl/\" to=\"https://bespied-ons-niet.nl/\"/></ruleset>", "<ruleset name=\"Best Buy (partial)\" f=\"Best-Buy.xml\"><securecookie host=\"^www-ssl\\.bestbuy\\.com$\" name=\".+\"/><rule from=\"^http://bestbuy\\.ugc\\.bazaarvoice\\.com/\" to=\"https://bestbuy.ugc.bazaarvoice.com/\"/><rule from=\"^http://www-ssl\\.bestbuy\\.com/\" to=\"https://www-ssl.bestbuy.com/\"/><rule from=\"^http://images(?:-ssl)?\\.bestbuy\\.com/\" to=\"https://images-ssl.bestbuy.com/\"/></ruleset>", "<ruleset name=\"Best Lawyers\" f=\"Best-Lawyers.xml\"><securecookie host=\"^www\\.bestlawyers\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?bestlawyers\\.com/\" to=\"https://www.bestlawyers.com/\"/></ruleset>", "<ruleset name=\"Best Master's Degrees\" default_off=\"mismatched\" f=\"Best-Masters-Degrees.xml\"><securecookie host=\"^www\\.bestmastersdegrees\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?bestmastersdegrees\\.com/\" to=\"https://www.bestmastersdegrees.com/\"/></ruleset>", "<ruleset name=\"BestChange.org\" f=\"BestChange.org.xml\"><securecookie host=\"^www\\.bestchange\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BestOfferBuy.com\" default_off=\"failed ruleset test\" f=\"BestOfferBuy.com.xml\"><securecookie host=\"^\\.(?:www\\.)?bestofferbuy\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?bestofferbuy\\.com/\" to=\"https://www.bestofferbuy.com/\"/></ruleset>", "<ruleset name=\"Best Olive Oils (partial)\" f=\"Best_Olive_Oils.xml\"><rule from=\"^http://\\d\\.bestoliveoils\\.com/\" to=\"https://d2j28hyghlzp.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Best Practical.com (partial)\" f=\"Best_Practical.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Best VPN.com\" f=\"Best_VPN.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?bestvpn\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bestcovery.com (partial)\" f=\"Bestcovery.com.xml\"><securecookie host=\"^\\.bestcovery\\.com$\" name=\"^__utm\\w$\"/><rule from=\"^http://(www\\.)?bestcovery\\.com/(aspect_js\\.js|blog/wp-content/|ci/|sites/)\" to=\"https://$1bestcovery.com/$2\"/><rule from=\"^http://cdn[1-6]?\\.bestcovery\\.com/\" to=\"https://d20no9q7bar3sq.cloudfront.net/\"/></ruleset>", "<ruleset name=\"bet365.com (partial)\" f=\"Bet365-Group.xml\"><exclusion pattern=\"^http://members\\.bet365\\.com/$\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bet555\" f=\"Bet555.xml\"><securecookie host=\"^(?:w*\\.)?bet555\\.eu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BetCoin.tm\" default_off=\"failed ruleset test\" f=\"BetCoin.tm.xml\"><securecookie host=\"^(?:luck|www)?\\.betcoin\\.tm$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Beta & Cie (mismatches)\" default_off=\"mismatched\" f=\"Beta-and-Cie-mismatches.xml\"><rule from=\"^http://img\\.tweetimag\\.es/\" to=\"https://img.tweetimag.es/\"/></ruleset>", "<ruleset name=\"Beta & Cie (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Beta-and-Cie.xml\"><rule from=\"^http://cdn\\.betacie\\.(?:com|net)/\" to=\"https://cdn.betacie.net/\"/><rule from=\"^http://cdn\\d\\.viedemerde\\.fr/\" to=\"https://betacie.cachefly.net/\"/><rule from=\"^http://(www\\.)?viedemerde\\.fr/\" to=\"https://$1viedemerde.fr/\"/></ruleset>", "<ruleset name=\"Betanews (partial)\" default_off=\"self-signed\" f=\"Betanews.xml\"><rule from=\"^http://store\\.fileforum\\.com/\" to=\"https://store.fileforum.com/\"/></ruleset>", "<ruleset name=\"Bethesignal.org\" f=\"Bethesignal.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bethsoft.com (false MCB)\" platform=\"mixedcontent\" f=\"Bethsoft.com-falsemixed.xml\"><exclusion pattern=\"^http://(?:www\\.)?bethsoft\\.com/(?:assets/|css/|favicon\\.ico)\"/><exclusion pattern=\"^http://bgs\\.bethsoft\\.com/(?:[\\w-]+\\.css|favicon\\.ico|images/)\"/><exclusion pattern=\"^http://(?:cdn|cdnstatic|content|fallout|geck|store)\\.\"/><exclusion pattern=\"^http://forums\\.bethsoft\\.com/(?:cache/|favicon\\.ico|public/|uploads/)\"/><exclusion pattern=\"^http://support\\.bethsoft\\.com/(?:assets/|favicon\\.ico|themes/)\"/><securecookie host=\"^(?:.*\\.)?bethsoft\\.com$\" name=\".+\"/><rule from=\"^http://(\\w+\\.)?bethsoft\\.com/\" to=\"https://$1bethsoft.com/\"/></ruleset>", "<ruleset name=\"Bethsoft.com (partial)\" f=\"Bethsoft.com.xml\"><exclusion pattern=\"^http://geck\\.\"/><exclusion pattern=\"^http://(?:www\\.)?bethsoft\\.com/(?!assets/|css/|favicon\\.ico)\"/><exclusion pattern=\"^http://bgs\\.bethsoft\\.com/(?![\\w-]+\\.css|favicon\\.ico|images/)\"/><exclusion pattern=\"^http://forums\\.bethsoft\\.com/(?!cache/|favicon\\.ico|public/|uploads/)\"/><exclusion pattern=\"^http://support\\.bethsoft\\.com/(?!assets/|favicon\\.ico|themes/)\"/><securecookie host=\"^\\.bethsoft\\.com$\" name=\"__u\\w+$\"/><securecookie host=\".+\\.bethsoft\\.com$\" name=\".+\"/><rule from=\"^http://cdn\\.bethsoft\\.com/\" to=\"https://d1bjnur3wbumt5.cloudfront.net/\"/><rule from=\"^http://cdnstatic\\.bethsoft\\.com/\" to=\"https://d1ys1uetzexz61.cloudfront.net/\"/><rule from=\"^http://content\\.bethsoft\\.com/\" to=\"https://d3o0v0yx1apq2.cloudfront.net/\"/><rule from=\"^http://(\\w+\\.)?bethsoft\\.com/\" to=\"https://$1bethsoft.com/\"/></ruleset>", "<ruleset name=\"Betrams.com (partial)\" f=\"Betram-Trading.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Better Business Bureau (mismatches)\" default_off=\"mismatched\" f=\"Better-Business-Bureau-mismatches.xml\"><rule from=\"^http://(?:www\\.)?seflorida\\.bbb\\.org/\" to=\"https://seflorida.bbb.org/\"/></ruleset>", "<ruleset name=\"BBB.org\" f=\"Better-Business-Bureau.xml\"><exclusion pattern=\"^http://www\\.bbb\\.org/\\w+/business-reviews/\\w+/\\w\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.([\\w-]+)\\.bbb\\.org/\" to=\"https://$1.bbb.org/\"/><rule from=\"^http://((?:[\\w-]+|(?:hurdman|sanjose)\\.app)\\.)?bbb\\.org/\" to=\"https://$1bbb.org/\"/></ruleset>", "<ruleset name=\"BetterBills.com.au\" f=\"BetterBills.com.au.xml\"><rule from=\"^http://(?:www\\.)?betterbills\\.com\\.au/\" to=\"https://www.betterbills.com.au/\"/></ruleset>", "<ruleset name=\"BetterBills.com\" f=\"BetterBills.com.xml\"><securecookie host=\"^www\\.betterbills\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BetterCGI.com\" f=\"BetterCGI.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BetterFap.com\" f=\"BetterFap.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Better Place.org\" f=\"Better_Place.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Better Sales.se\" default_off=\"mismatched\" f=\"Better_Sales.se.xml\"><securecookie host=\"^bettersales\\.se\" name=\".+\"/><rule from=\"^http://(?:www\\.)?bettersales\\.se/\" to=\"https://bettersales.se/\"/></ruleset>", "<ruleset name=\"Bettershopping.eu\" f=\"Bettershopping.eu.xml\"><rule from=\"^http://(?:www\\.)?bettershopping\\.eu/\" to=\"https://www.bettershopping.eu/\"/></ruleset>", "<ruleset name=\"Betts\" default_off=\"failed ruleset test\" f=\"Betts.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Beyond Security.com (partial)\" f=\"Beyond-Security.xml\"><exclusion pattern=\"^http://(?:[^./]+\\.){2,}beyondsecurity\\.com/\"/><exclusion pattern=\"^http://www\\.beyondsecurity\\.com/(?!/*assets/)\"/><securecookie host=\"^(?!www\\.).\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BezeqInt.net (partial)\" default_off=\"failed ruleset test\" f=\"Bezeq_International.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bezos Expeditions\" default_off=\"failed ruleset test\" f=\"Bezos_Expeditions.xml\"><rule from=\"^http://(?:www\\.)?bezosexpeditions\\.com/\" to=\"https://www.bezosexpeditions.com/\"/></ruleset>", "<ruleset name=\"bgentry.io\" f=\"Bgentry.io.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bhiab.se\" f=\"Bhiab.se.xml\"><rule from=\"^http://www\\.bhiab\\.se/\" to=\"https://www.bhiab.se/\"/><rule from=\"^http://bhiab\\.se/\" to=\"https://bhiab.se/\"/></ruleset>", "<ruleset name=\"Bia2.com\" f=\"Bia2.com.xml\"><securecookie host=\"^(?:staging|www)\\.bia2\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Biallo.de\" f=\"Biallo.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Biapy.fr\" default_off=\"failed ruleset test\" f=\"Biapy.fr.xml\"><rule from=\"^http://((?:piwik|rss|www)\\.)?biapy\\.fr/\" to=\"https://$1biapy.fr/\"/></ruleset>", "<ruleset name=\"bibbitec\" default_off=\"failed ruleset test\" f=\"Bibbitec.xml\"><securecookie host=\"^\\.www\\.bibbitec\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bible Gateway.com\" f=\"Bible_Gateway.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Biciperros.org\" default_off=\"self-signed\" f=\"Biciperros.org.xml\"><securecookie host=\"^(?:www\\.)?biciperros\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?biciperros\\.org/\" to=\"https://biciperros.org/\"/></ruleset>", "<ruleset name=\"BidBubble.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"BidBubble.com.xml\"><securecookie host=\"^\\.bidbubble\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BidItBob.com\" f=\"BidItBob.com.xml\"><securecookie host=\"^(?:w*\\.)?biditbob\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Biddeal\" default_off=\"failed ruleset test\" f=\"Biddeal.xml\"><securecookie host=\"^\\.(?:www\\.)?biddeal\\.com$\" name=\".+\"/><rule from=\"^http://www\\.biddeal\\.com/\" to=\"https://www.biddeal.com/\"/></ruleset>", "<ruleset name=\"bidswitch.net\" f=\"Bidswitch.net.xml\"><securecookie host=\"^\\.bidswitch\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bidtellect.com\" default_off=\"failed ruleset test\" f=\"Bidtellect.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bidz.com (partial)\" default_off=\"refused\" f=\"Bidz.com.xml\"><exclusion pattern=\"^http://blog\\.\"/><securecookie host=\".*\\.bidz\\.com$\" name=\".*\"/><rule from=\"^http://bidz\\.com/\" to=\"https://www.bidz.com/\"/><rule from=\"^http://(\\w+)\\.bidz\\.com/\" to=\"https://$1.bidz.com/\"/></ruleset>", "<ruleset name=\"Big Cartel (partial)\" f=\"Big-Cartel.xml\"><rule from=\"^http://cache[01]\\.bigcartel\\.com/\" to=\"https://d3m7eij7f8iwln.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Big Change\" f=\"Big-Change.xml\"><securecookie host=\"^\\.bigchangeuk\\.co\\.uk$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"German BigBrotherAwards\" platform=\"mixedcontent\" f=\"BigBrotherAwards.de.xml\"><securecookie host=\"^www\\.bigbrotherawards\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BigCommerce\" f=\"BigCommerce.xml\"><exclusion pattern=\"^http://www\\.mybigcommerce\\.com/$\"/><securecookie host=\"^(?:account|support|www)\\.bigcommerce\\.com$\" name=\".+\"/><securecookie host=\"^www\\.interspire\\.com$\" name=\".+\"/><securecookie host=\".*\\.mybigcommerce\\.com$\" name=\".+\"/><rule from=\"^http://(?:my)?bigcommerce\\.com/\" to=\"https://www.bigcommerce.com/\"/><rule from=\"^http://(account|apps|cdn\\d*|support|www)\\.bigcommerce\\.com/\" to=\"https://$1.bigcommerce.com/\"/><rule from=\"^http://(?:www\\.)?interspire\\.com/\" to=\"https://www.interspire.com/\"/><rule from=\"^http://([\\w-]+)\\.mybigcommerce\\.com/\" to=\"https://$1.mybigcommerce.com/\"/></ruleset>", "<ruleset name=\"BigHugeLabs\" f=\"BigHugeLabs.xml\"><securecookie host=\"^\\.bighugelabs\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?bighugelabs\\.com/\" to=\"https://bighugelabs.com/\"/></ruleset>", "<ruleset name=\"BigV.io\" default_off=\"failed ruleset test\" f=\"BigV.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Big Brother.se (partial)\" default_off=\"failed ruleset test\" f=\"Big_Brother.se.xml\"><securecookie host=\"^\\.bigbrother\\.se$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Big Brother Watch.org.uk\" f=\"Big_Brother_Watch.xml\"><securecookie host=\"^(?:www)?\\.bigbrotherwatch\\.org\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?bigbrotherwatch\\.org\\.uk/\" to=\"https://www.bigbrotherwatch.org.uk/\"/></ruleset>", "<ruleset name=\"Big Concerts (partial)\" f=\"Big_Concerts.xml\"><rule from=\"^http://(www\\.)?bigconcerts\\.co\\.za/(account|media/|resource/|themes/|ui/|zpimages/)\" to=\"https://$1bigconcerts.co.za/$2\"/></ruleset>", "<ruleset name=\"Big Nerd Ranch.com\" f=\"Big_Nerd_Ranch.xml\"><securecookie host=\"^www\\.bignerdranch\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bigboxsave.com\" default_off=\"failed ruleset test\" f=\"Bigboxsave.xml\"><securecookie host=\"^.*\\.bigboxsave\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bigdinosaur.org\" f=\"Bigdinosaur.org.xml\"><rule from=\"^http://(?:www\\.)?bigdinosaur\\.org/\" to=\"https://www.bigdinosaur.org/\"/><rule from=\"^http://blog\\.bigdinosaur\\.org/\" to=\"https://blog.bigdinoosaur.org/\"/></ruleset>", "<ruleset name=\"Biggest Loser Club.com\" default_off=\"failed ruleset test\" f=\"Biggest_Loser_Club.com.xml\"><securecookie host=\"^[.w]*\\.biggestloserclub\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?biggestloserclub\\.com/\" to=\"https://www.biggestloserclub.com/\"/></ruleset>", "<ruleset name=\"bigjocker.com\" default_off=\"failed ruleset test\" f=\"Bigjocker.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Biglobe (partial)\" f=\"Biglobe.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bigmir.net (false MCB)\" platform=\"mixedcontent\" f=\"Bigmir.net-falsemixed.xml\"><securecookie host=\"^\\.bigmir\\.net$\" name=\".+\"/><rule from=\"^http://(antivirus|auto|cards|dnevnik|games|goroskop|info|mail|map|perevod|photo|search|sport|top)\\.bigmir\\.net/\" to=\"https://$1.bigmir.net/\"/></ruleset>", "<ruleset name=\"bigmir.net (partial)\" default_off=\"failed ruleset test\" f=\"Bigmirnet.xml\"><exclusion pattern=\"^http://market\\.bigmir\\.net/+(?!css/|i/|/img/)\"/><rule from=\"^http://market\\.bigmir\\.net/\" to=\"https://technoportal.ua/\"/><rule from=\"^http://(id?|m|passport|s)\\.bigmir\\.net/\" to=\"https://$1.bigmir.net/\"/></ruleset>", "<ruleset name=\"Bigstock\" f=\"Bigstock.xml\"><exclusion pattern=\"^http://www\\.bigstockphoto\\.com/blog/\"/><securecookie host=\"^\\.bigstockimages\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bihira.com\" f=\"Bihira.com.xml\"><securecookie host=\"^www\\.bihira\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Biicode.com\" default_off=\"failed ruleset test\" f=\"Biicode.com.xml\"><rule from=\"^http://(?:www\\.)?biicode\\.com/\" to=\"https://www.biicode.com/\"/></ruleset>", "<ruleset name=\"Bike24.com\" f=\"Bike24.com.xml\"><securecookie host=\"^\\.bike24\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bike24.de\" f=\"Bike24.de.xml\"><rule from=\"^http://(www\\.)?bike24\\.de/\" to=\"https://www.bike24.de/\"/></ruleset>", "<ruleset name=\"bikeji.com\" default_off=\"failed ruleset test\" f=\"Bikeji.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bild.de (valid MCB)\" platform=\"mixedcontent\" f=\"Bild.de-mixed.xml\"><rule from=\"^http://email\\.bild\\.de/\" to=\"https://www.fagms.net/\"/></ruleset>", "<ruleset name=\"Bild.de (partial)\" f=\"Bild.de.xml\"><rule from=\"^http://(don|offer)\\.bild\\.de/\" to=\"https://$1.bild.de/\"/><rule from=\"^http://email\\.bild\\.de/(?!/*host/)\" to=\"https://www.fagms.net/\"/></ruleset>", "<ruleset name=\"BiliGame\" f=\"BiliGame.xml\"><exclusion pattern=\"^http://www\\.biligame\\.com/gift\\.html\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bilibili.com (partial)\" f=\"Bilibili.com.xml\"><exclusion pattern=\"^http://api\\.bilibili\\.com/$\"/><exclusion pattern=\"^http://api\\.bilibili\\.com/x/reply\\?jsonp=jsonp\"/><exclusion pattern=\"^http://app\\.bilibili\\.com/(?!images/)\"/><exclusion pattern=\"^http://bangumi\\.bilibili\\.com/moe/2016/\"/><exclusion pattern=\"^http://bml\\.bilibili\\.com/(?!bml_intro)\"/><exclusion pattern=\"^http://h\\.bilibili\\.com/(?!css/|js/|images/|img/)\"/><exclusion pattern=\"^http://data\\.bilibili\\.com/$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bilio.com (partial)\" default_off=\"failed ruleset test\" f=\"Bilio.com.xml\"><exclusion pattern=\"^http://www\\.bilio\\.com/+(?!Content/|Global/)\"/><rule from=\"^http://bilio\\.com/\" to=\"https://www.bilio.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BillDesk.com\" f=\"BillDesk.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BillPay.de\" default_off=\"failed ruleset test\" f=\"BillPay.de.xml\"><securecookie host=\"^login\\.billpay\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bill Maher.com\" default_off=\"failed ruleset test\" f=\"Bill_Maher.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Billboard.com (partial)\" f=\"Billboard.com.xml\"><exclusion pattern=\"^http://www\\.billboard\\.com/+(?!files/|images/pref_images/|media/)\"/><rule from=\"^http://billboard\\.com/\" to=\"https://www.billboard.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BillettenDK\" f=\"Billetten.dk.xml\"><securecookie host=\"^www\\.billetten\\.dk\" name=\".*\"/><rule from=\"^http://(www\\.)?billetten\\.dk/\" to=\"https://www.billetten.dk/\"/></ruleset>", "<ruleset name=\"billiger.de (partial)\" f=\"Billiger.de.xml\"><securecookie host=\"^\\.billiger\\.de$\" name=\"^_#\\w+$\"/><securecookie host=\"^www\\.billiger\\.de$\" name=\"^(?:billigerderevisit|emos_jc[sv]id|emosTransmit1)$\"/><rule from=\"^http://(www\\.)?billiger\\.de/(combine/|favicon\\.ico|img/|vnt_gc/img/|js/|stats/graphite\\.gif)\" to=\"https://$1billiger.de/$2\"/><rule from=\"^http://api-img\\.billiger\\.de/\" to=\"https://api-img.billiger.de/\"/></ruleset>", "<ruleset name=\"BillionDigital.com (partial)\" default_off=\"failed ruleset test\" f=\"BillionDigital.com.xml\"><securecookie host=\"^(?:account\\.)?billionphotos\\.com$\" name=\".+\"/><rule from=\"^http://www\\.billiondigital\\.com/\" to=\"https://billiondigital.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Billiongraves.com\" f=\"Billiongraves.com.xml\"><exclusion pattern=\"^http://(blog|store|community)\\.billiongraves\\.com\"/><securecookie host=\"^(www\\.|\\w{2}\\.)?billiongraves\\.com$\" name=\"^(?!bguid|bgue).+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Billund.dk\" default_off=\"failed ruleset test\" f=\"Billund.dk.xml\"><securecookie host=\"^\\.?billund\\.dk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Billy Creative\" f=\"Billy_Creative.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bin-Store.com\" f=\"Bin-Store.com.xml\"><securecookie host=\"^\\.bin-store\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?(secure\\.)?bin-store\\.com/\" to=\"https://$1$2bin-store.com/\"/></ruleset>", "<ruleset name=\"BinRev\" default_off=\"Invalid Certificate\" f=\"BinRev.xml\"><rule from=\"^http://(?:www\\.)?binrev\\.com/\" to=\"https://binrev.com/\"/></ruleset>", "<ruleset name=\"BinSearch\" f=\"BinSearch.xml\"><rule from=\"^http://(www\\.)?binsearch\\.(?:info|net)/\" to=\"https://$1binsearch.info/\"/></ruleset>", "<ruleset name=\"Binary Biz\" f=\"Binary-Biz.xml\"><securecookie host=\"^www\\.(?:binarybiz|totalrecall)\\.com$\" name=\".*\"/><rule from=\"^http://(www\\.)?binarybiz\\.com/\" to=\"https://$1binarybiz.com/\"/><rule from=\"^http://(?:www\\.)?totalrecall\\.com/\" to=\"https://www.totalrecall.com/\"/></ruleset>", "<ruleset name=\"BinaryTurf.com\" f=\"BinaryTurf.xml\"><securecookie host=\"^(?:.+\\.)?binaryturf\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Binary Defense.com\" f=\"Binary_Defense.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Binbank.ru\" f=\"Binbank.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Binbox.io (partial)\" f=\"Binbox.io.xml\"><securecookie host=\"^binbox\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Binero.se\" platform=\"mixedcontent\" f=\"Binero.se.xml\"><rule from=\"^http://binero\\.se/\" to=\"https://www.binero.se/\"/><rule from=\"^http://support\\.binero\\.se/\" to=\"https://support.binero.se/\"/><rule from=\"^http://order\\.binero\\.se/\" to=\"https://order.binero.se/\"/><rule from=\"^http://www\\.binero\\.se/\" to=\"https://www.binero.se/\"/></ruleset>", "<ruleset name=\"Bing.net\" f=\"Bing.net.xml\"><rule from=\"^http://s(1|2|3|4)?\\.cn\\.bing\\.net/\" to=\"https://www.bing.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bing.com\" f=\"Bing.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bing Places.com\" f=\"Bing_Places.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://bingplaces\\.com/\" to=\"https://www.bingplaces.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bintray.com (partial)\" f=\"Bintray.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://status\\.bintray\\.com/\" to=\"https://bintray.statuspage.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BioInfo.pl (partial)\" f=\"BioInfo.pl.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BioInfoBank.com (partial)\" f=\"BioInfoBank.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BioMedCentral.com\" f=\"BioMedCentral.com.xml\"><securecookie host=\"^(?:.*\\.)?biomedcentral\\.com$\" name=\".+\"/><rule from=\"^http://biomedcentral\\.com/\" to=\"https://www.biomedcentral.com/\"/><rule from=\"^http://oas\\.biomedcentral\\.com/\" to=\"https://oasc-eu1.247realmedia.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BioShock Infinite\" f=\"BioShock_Infinite.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?finkmanufacturing\\.com/+([^?/]*).*\" to=\"https://www.bioshockinfinite.com/faq$1\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BioVendor.cz\" f=\"BioVendor.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BioWare (partial)\" default_off=\"failed ruleset test\" f=\"BioWare.xml\"><securecookie host=\"^\\.biowarestore\\.com$\" name=\".+\"/><rule from=\"^http://na\\.llnet\\.bioware\\.cdn\\.ea\\.com/u/f/eagames/bioware/social/\" to=\"https://social.bioware.com/\"/><rule from=\"^http://social\\.bioware\\.com/(images/|packer\\.php|templates/)\" to=\"https://social.bioware.com/$1\"/><rule from=\"^http://(?:www\\.)?biowarestore\\.com/\" to=\"https://biowarestore.com/\"/></ruleset>", "<ruleset name=\"BioXFEL.org\" f=\"BioXFEL.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bioconductor.org\" f=\"Bioconductor.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"biofitt.com\" f=\"Biofitt.com.xml\"><securecookie host=\"^(?:www)?\\.biofitt\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bios-Mods.com\" f=\"Bios-Mods.com.xml\"><securecookie host=\"^(?:www\\.)?bios-mods\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Biostars.org\" f=\"Biostars.org.xml\"><securecookie host=\"^www\\.biostars\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Biotrim Labs.com (partial)\" f=\"Biotrim_Labs.com.xml\"><exclusion pattern=\"^http://(?:(?:de|fr|www)\\.)?biotrimlabs\\.com/(?!/*(?:(?:asset|j)s/.+\\.css(?:$|\\?)|css/|images/|(?:health-muscle-products|privacy-policy|store|terms-conditions)(?:$|[?/])))\"/><exclusion pattern=\"^http://es\\.biotrimlabs\\.com/(?!/*(?:(?:asset|j)s/.+\\.css(?:$|\\?)|css/|images/|(?:privacy-policy|products|store|terms-conditions)(?:$|[?/])))\"/><securecookie host=\"^\\.\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bip.IO\" f=\"Bip.IO.xml\"><securecookie host=\"^(?:www\\.)?bip\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bircko.com\" f=\"Bircko.com.xml\"><securecookie host=\"^(?:w*\\.)?bircko\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Birds-Are-Nice.me\" default_off=\"missing certificate chain\" f=\"Birds-Are-Nice.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Birthday in a Box (partial)\" f=\"Birthday_in_a_Box.xml\"><rule from=\"^http://(?:www\\.)?birthdayinabox\\.com/(csc_inc|css|images)\" to=\"https://www.birthdayinabox.com/$1/\"/></ruleset>", "<ruleset name=\"BisaQuran.com\" f=\"BisaQuran.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bisente.com\" f=\"Bisente.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bishop Fox.com\" f=\"Bishop_Fox.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?bishopfox\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bishop Interactive (problematic)\" default_off=\"mismatched\" f=\"Bishop_Interactive-mismatches.xml\"><securecookie host=\"^riglogix\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?riglogix\\.com/\" to=\"https://riglogix.com/\"/><rule from=\"^http://(comptracker|noblewin)\\.rigzone\\.com/\" to=\"https://$1.rigzone.com/\"/></ruleset>", "<ruleset name=\"Bishop Interactive\" f=\"Bishop_Interactive.xml\"><securecookie host=\"^(?:.+\\.)?bishopi\\.com$\" name=\".+\"/><rule from=\"^http://(\\w+\\.)?bishopi\\.com/\" to=\"https://$1bishopi.com/\"/><rule from=\"^http://(media\\.|www\\.)?bishopinteractive\\.com/\" to=\"https://$1bishopi.com/\"/><rule from=\"^http://cdn\\.bishopinteractive\\.com/\" to=\"https://cdn.bishopinteractive.com/\"/></ruleset>", "<ruleset name=\"Bisnow.com\" f=\"Bisnow.com.xml\"><securecookie host=\"^www\\.bisnow\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bit2c.co.il\" f=\"Bit2c.co.il.xml\"><securecookie host=\"^(?:www\\.)?bit2c\\.co\\.il$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bit9.com\" f=\"Bit9.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BitBalloon.com\" f=\"BitBalloon.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BitBay.net\" f=\"BitBay.net.xml\"><securecookie host=\"^\\.?bitbay\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BitCalm.com\" default_off=\"failed ruleset test\" f=\"BitCalm.com.xml\"><securecookie host=\"^bitcalm\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BitCard.org\" f=\"BitCard.xml\"><securecookie host=\"^(?:www\\.)?bitcard\\.org$\" name=\"c\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BitCasino.io\" f=\"BitCasino.io.xml\"><securecookie host=\"^\\.?bitcasino\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bitFlyer.jp (partial)\" f=\"BitFlyer.jp.xml\"><securecookie host=\"^(?:.*\\.)?bitflyer\\.jp$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BitGravity (partial)\" f=\"BitGravity.xml\"><securecookie host=\"^dashboard\\.bitgravity\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BitInstant (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"BitInstant.xml\"><exclusion pattern=\"^http://blog\\.bitinstant\\.com/(?!contributor/|display/|layout/|storage/|universal/)\"/><securecookie host=\"^\\.bitinstant\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BitLendingClub.com (partial)\" f=\"BitLendingClub.com.xml\"><securecookie host=\"^(?:\\.|blog\\.|www\\.)?bitlendingclub\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BitMEX.com\" f=\"BitMEX.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BitMarket.pl\" f=\"BitMarket.pl.xml\"><securecookie host=\"^\\.bitmarket\\.pl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BitMissile (mismatches)\" default_off=\"mismatched\" f=\"BitMissile-mismatches.xml\"><rule from=\"^http://(mirror|www)\\.bitmissile\\.com/\" to=\"https://$1.bitmissile.com/\"/></ruleset>", "<ruleset name=\"BitMissile (partial)\" default_off=\"failed ruleset test\" f=\"BitMissile.xml\"><securecookie host=\"^.*\\.bitmissile\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bitNZ.com\" default_off=\"failed ruleset test\" f=\"BitNZ.com.xml\"><securecookie host=\"^(?:www\\.)?bitnz\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BitPay.com\" f=\"BitPay.xml\"><securecookie host=\"^\\.?bitpay\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BitQuick.me\" default_off=\"missing certificate chain\" f=\"BitQuick.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BitQuick\" default_off=\"failed ruleset test\" f=\"BitQuick.xml\"><securecookie host=\"^(?:www)?\\.bitquick\\.co$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BitRock (mismatches)\" default_off=\"expired, mismatch, self-signed\" f=\"BitRock-mismatches.xml\"><rule from=\"^http://(?:www\\.)?bitnami\\.org/(favicon\\.ico|images/|stylesheets/)\" to=\"https://bitnami.org/$1\"/><rule from=\"^http://helpdesk\\.bitnami\\.org/(generated|system)/\" to=\"https://helpdesk.bitnami.org/$1/\"/></ruleset>", "<ruleset name=\"BitRock (partial)\" default_off=\"failed ruleset test\" f=\"BitRock.xml\"><securecookie host=\"^(?:app\\.)?bitnamihosting\\.com$\" name=\".*\"/><rule from=\"^http://www\\.bitnamihosting\\.com/\" to=\"https://app.bitnamihosting.com/\"/><rule from=\"^http://(app\\.)?bitnamihosting\\.com/\" to=\"https://$1bitnamihosting.com/\"/></ruleset>", "<ruleset name=\"BitShares.org (partial)\" f=\"BitShares.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BitSight Tech.com\" f=\"BitSight_Tech.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BitTorrent (partial)\" default_off=\"failed ruleset test\" f=\"BitTorrent.xml\"><securecookie host=\"^forum\\.bittorrent\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BitVC.com\" default_off=\"failed ruleset test\" f=\"BitVC.com.xml\"><securecookie host=\"^\\.?www\\.bitvc\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BitVisor.org\" default_off=\"missing certificate chain\" f=\"BitVisor.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BitX.co\" f=\"BitX.co.xml\"><securecookie host=\"^\\.?bitx\\.co$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BitYes.com\" default_off=\"failed ruleset test\" f=\"BitYes.com.xml\"><securecookie host=\"^\\.bityes\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bit Stampede.com\" f=\"Bit_Stampede.com.xml\"><securecookie host=\"^(?:www\\.)?bitstampede\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bitaddress.org\" f=\"Bitaddress.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitbucket (mismatches)\" default_off=\"mismatched\" f=\"Bitbucket-mismatches.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitbucket (partial)\" f=\"Bitbucket.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitch Magazine.org (partial)\" default_off=\"failed ruleset test\" f=\"Bitch_Magazine.org.xml\"><securecookie host=\"^\\.bitchmagazine\\.org$\" name=\".+\"/><rule from=\"^http://www\\.bitchmagazine\\.org/\" to=\"https://bitchmagazine.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitcoin Börse\" default_off=\"refused\" f=\"Bitcoin-Borse.xml\"><securecookie host=\"^mybitcointrade\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?mybitcointrade\\.com/\" to=\"https://mybitcointrade.com/\"/></ruleset>", "<ruleset name=\"Bitcoin-Central.net\" default_off=\"expired\" f=\"Bitcoin-Central.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitcoin-Contact.org\" default_off=\"failed ruleset test\" f=\"Bitcoin-Contact.org.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitcoin Talk.org\" f=\"Bitcoin-Forum.xml\"><securecookie host=\"^bitcointalk\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BitVPS.com\" f=\"Bitcoin-VPS.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitcoin Wiki\" default_off=\"failed ruleset test\" f=\"Bitcoin-Wiki.xml\"><securecookie host=\".*\\.bitcoin\\.it$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitcoin-otc.com\" f=\"Bitcoin-otc.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitcoin.Co.th (partial)\" f=\"Bitcoin.Co.th.xml\"><securecookie host=\"^bitcoin\\.co\\.th$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitcoin.co.id\" f=\"Bitcoin.co.id.xml\"><securecookie host=\"^(?:newsletter|www)?\\.bitcoin\\.co\\.id$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitcoin.pl (partial)\" default_off=\"failed ruleset test\" f=\"Bitcoin.pl.xml\"><exclusion pattern=\"^http://bitcoin\\.pl/(?!cache/|components/|images/|login(?:$|[?/])|media/|modules/|templates/)\"/><securecookie host=\"^\\.forum\\.bitcoin\\.pl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BitcoinAverage.com\" f=\"BitcoinAverage.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BitcoinPool.com\" default_off=\"expired\" f=\"BitcoinPool.xml\"><securecookie host=\"^(?:.*\\.)?bitcoinpool\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?bitcoinpool\\.com/\" to=\"https://bitcoinpool.com/\"/></ruleset>", "<ruleset name=\"BitcoinShop.US\" default_off=\"mismatched\" f=\"BitcoinShop.US.xml\"><securecookie host=\"^\\.(?:www\\.)?bitcoinshop\\.us$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BitcoinStats.com (false MCB)\" platform=\"mixedcontent\" f=\"BitcoinStats.com-falsemixed.xml\"><securecookie host=\"^\\.bitcoinstats\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BitcoinStats.com (partial)\" f=\"BitcoinStats.com.xml\"><securecookie host=\"^\\.bitcoinstats\\.com$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BitcoinStore.com\" default_off=\"failed ruleset test\" f=\"BitcoinStore.com.xml\"><securecookie host=\"^\\.www\\.bitcoinstore\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BitcoinWisdom.com\" f=\"BitcoinWisdom.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?bitcoinwisdom\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BitcoinXT.software\" f=\"BitcoinXT.software.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitcoin Armory.com\" f=\"Bitcoin_Armory.com.xml\"><securecookie host=\"^\\.bitcoinarmory\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitcoin Charts.com\" f=\"Bitcoin_Charts.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitcoin Forum.com\" f=\"Bitcoin_Forum.com.xml\"><securecookie host=\"^(?:www\\.)?bitcoinforum\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitcoin Foundation.org\" default_off=\"failed ruleset test\" f=\"Bitcoin_Foundation.org.xml\"><securecookie host=\"^(?:members)?\\.bitcoinfoundation\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitcoin Magazine.com\" f=\"Bitcoin_Magazine.com.xml\"><securecookie host=\"^\\.?bitcoinmagazine\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitcoin Plus\" default_off=\"expired\" f=\"Bitcoin_Plus.xml\"><rule from=\"^http://(?:www\\.)?bitcoinplus\\.com/\" to=\"https://bitcoinplus.com/\"/></ruleset>", "<ruleset name=\"bitcoinapi.de\" f=\"Bitcoinapi.de.xml\"><securecookie host=\"^\\.bitcoinapi\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitcoinity.org\" f=\"Bitcoinity.org.xml\"><securecookie host=\"^(?:(?:data|static|www)\\.)?bitcoinity\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BitcointoYou.com\" f=\"BitcointoYou.com.xml\"><securecookie host=\"^(?:broker)?\\.bitcointoyou\\.com$\" name=\"\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitcurex.com\" default_off=\"failed ruleset test\" f=\"Bitcurex.com.xml\"><securecookie host=\"^(?:eur|pln)?\\.bitcurex\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitdefender.com (partial)\" f=\"Bitdefender.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid$|__qca$|cf_clearance$)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitdeli.com\" default_off=\"failed ruleset test\" f=\"Bitdeli.com.xml\"><securecookie host=\"^\\.bitdeli\\.com$\" name=\".+\"/><rule from=\"^http://bitdeli\\.com/\" to=\"https://bitdeli.com/\"/></ruleset>", "<ruleset name=\"bitdrift (partial)\" default_off=\"mismatched\" f=\"Bitdrift.xml\"><rule from=\"^http://(?:www\\.)?bitdrift\\.org/(fonts/|tile\\.jpg)\" to=\"https://www.bitdrift.org/~bitdrift/$1\"/></ruleset>", "<ruleset name=\"Bite.lt\" f=\"Bite.lt.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Biteasy.com\" f=\"Biteasy.com.xml\"><securecookie host=\"^\\.biteasy\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitfinex.com\" f=\"Bitfinex.com.xml\"><securecookie host=\"^\\.bitfinex\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitin.io\" default_off=\"failed ruleset test\" f=\"Bitin.io.xml\"><securecookie host=\"^\\.bitin\\.io$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitinvest.com.br (partial)\" default_off=\"failed ruleset test\" f=\"Bitinvest.com.br.xml\"><securecookie host=\"^www\\.bitinvest\\.com\\.br$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitkonan.com\" f=\"Bitkonan.com.xml\"><rule from=\"^http://www\\.bitkonan\\.com/\" to=\"https://bitkonan.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitlove\" f=\"Bitlove.xml\"><rule from=\"^http://(?:t\\.|(www\\.))?bitlove\\.org/\" to=\"https://$1bitlove.org/\"/></ruleset>", "<ruleset name=\"Bitly.com (partial)\" f=\"Bitly.com.xml\"><securecookie host=\"^bitly\\.com$\" name=\".+\"/><rule from=\"^http://www\\.bitly\\.com/\" to=\"https://bitly.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bit.ly\" f=\"Bitly.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitly vanity domains\" f=\"Bitly_branded_short_domains.xml\"><rule from=\"^http:\" to=\"https:\"/><securecookie host=\".+\" name=\".+\"/></ruleset>", "<ruleset name=\"Bitmain.com (partial)\" default_off=\"failed ruleset test\" f=\"Bitmain.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitmain Tech.com\" f=\"Bitmain_Tech.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitmask.net\" default_off=\"failed ruleset test\" f=\"Bitmask.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitmazk.com\" default_off=\"failed ruleset test\" f=\"Bitmazk.com.xml\"><securecookie host=\"^bitmazk\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitmessage.com\" f=\"Bitmessage.xml\"><securecookie host=\"^(?:www\\.)?bitmessage\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitmit\" default_off=\"failed ruleset test\" f=\"Bitmit.xml\"><securecookie host=\"\\.bitmit\\.net$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitmovin.com\" f=\"Bitmovin.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitnami.com (partial)\" f=\"Bitnami.com.xml\"><securecookie host=\"^(?:community\\.|google\\.|wiki\\.)?bitnami\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitnik.org\" f=\"Bitnik.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitnodes.io (partial)\" f=\"Bitnodes.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitrig\" f=\"Bitrig.xml\"><securecookie host=\"^(?:www\\.)?bitrig\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bits.media\" f=\"Bits.media.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitsapphire.com\" f=\"Bitsapphire.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitsharestalk.org (partial)\" f=\"Bitsharestalk.org.xml\"><securecookie host=\"^bitsharestalk\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitsnoop.com (partial)\" f=\"Bitsnoop.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitso.com\" default_off=\"failed ruleset test\" f=\"Bitso.com.xml\"><securecookie host=\"^\\.bitso\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bitsontherun.com (partial)\" f=\"Bitsontherun.com.xml\"><rule from=\"^http://(content|dashboard)\\.bitsontherun\\.com/\" to=\"https://$1.bitsontherun.com/\"/></ruleset>", "<ruleset name=\"Bitsquare.io\" f=\"Bitsquare.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitstamp.net\" f=\"Bitstamp.net.xml\"><securecookie host=\"^(?:\\w\\w|www)?\\.bitstamp\\.net$\" name=\".+\"/><rule from=\"^http://(\\w\\w\\.|www\\.)?bitstamp\\.net/\" to=\"https://$1bitstamp.net/\"/></ruleset>", "<ruleset name=\"Bittiraha.fi\" f=\"Bittiraha.fi.xml\"><securecookie host=\"^\\.bittiraha\\.fi$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bittit.info\" f=\"Bittit.info.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bittorrentdotorg\" default_off=\"certificate mismatch\" f=\"Bittorrent.org.xml\"><rule from=\"^http://(?:www\\.)?bittorrent\\.org/\" to=\"https://www.bittorrent.org/\"/></ruleset>", "<ruleset name=\"Bittrex.com\" f=\"Bittrex.com.xml\"><securecookie host=\"^\\.bittrex\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitwig.com\" f=\"Bitwig.com.xml\"><securecookie host=\"^(?:www\\.)?bitwig\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bivol\" f=\"Bivol.xml\"><securecookie host=\"^(?:www\\.)?bivol\\.bg$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BizLand.com\" f=\"BizLand.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bizo.com (mismatches)\" default_off=\"mismatched\" f=\"Bizo-mismatches.xml\"><rule from=\"^http://blog\\.bizo\\.com/\" to=\"https://blog.bizo.com/\"/></ruleset>", "<ruleset name=\"Bizo.com\" f=\"Bizo.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bizo graphics.com\" f=\"Bizo_graphics.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://js\\.bizographics\\.com/\" to=\"https://sjs.bizographics.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bizrate.com (partial)\" default_off=\"failed ruleset test\" f=\"Bizrate.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:_data|br|cnx_sessionid|p13n_id|rng|roi_cookie|trafficSourceDebugParam)$\"/><rule from=\"^http://about\\.bizrate\\.com/\" to=\"https://aboutbizrate.blazonco.com/\"/><rule from=\"^http://(?:file|img)\\.bizrate\\.com/\" to=\"https://images.bizrate.com/\"/><rule from=\"^http://\\w+\\.bizrate-images\\.com/\" to=\"https://images.bizrate.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bizshark\" f=\"Bizshark.xml\"><securecookie host=\"^(?:www)?\\.bizshark\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BlackArch.org\" f=\"BlackArch.org.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BlackHat.com (partial)\" f=\"BlackHat.xml\"><securecookie host=\"^\\.blackhat\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?blackhat\\.com/\" to=\"https://www.blackhat.com/\"/></ruleset>", "<ruleset name=\"BlackMesh.com\" f=\"BlackMesh.com.xml\"><securecookie host=\"^(?:mail|portal|webmail|www)\\.blackmesh\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?blackmesh\\.com/\" to=\"https://www.blackmesh.com/\"/><rule from=\"^http://mail\\.blackmesh\\.com/\" to=\"https://mail.blackmesh.com/zimbra/\"/><rule from=\"^http://(autodiscover|portal|webmail)\\.blackmesh\\.com/\" to=\"https://$1.blackmesh.com/\"/></ruleset>", "<ruleset name=\"BlackPearl PDM.com\" default_off=\"failed ruleset test\" f=\"BlackPearl_PDM.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BlackTonic.com (partial)\" f=\"BlackTonic.com.xml\"><rule from=\"^http://(www\\.)?blacktonic\\.com/si(gnup(?:$|\\?|/)|tes/)\" to=\"https://$1blacktonic.com/si$2\"/></ruleset>", "<ruleset name=\"blackVPN\" f=\"BlackVPN.xml\"><securecookie host=\"^\\.blackvpn\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?blackvpn\\.com/\" to=\"https://$1blackvpn.com/\"/><rule from=\"^http://news\\.blackvpn\\.com/(?=favicon\\.ico|stylesheets/)\" to=\"https://www.twylah.com/\"/></ruleset>", "<ruleset name=\"BlackZNC.net (partial)\" f=\"BlackZNC.net.xml\"><securecookie host=\"^\\.blackznc\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Black Box.co.uk\" f=\"Black_Box.co.uk.xml\"><securecookie host=\"^www\\.blackbox\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?blackbox\\.co\\.uk/\" to=\"https://www.blackbox.co.uk/\"/></ruleset>", "<ruleset name=\"Black Duck Software.com (partial)\" f=\"Black_Duck_Software.com.xml\"><exclusion pattern=\"http://osdelivers\\.blackducksoftware\\.com/+(?!wp-content/|wp-includes/)\"/><rule from=\"^http://(?:www\\.)?blackducksoftware\\.com/\" to=\"https://www.blackducksoftware.com/\"/><rule from=\"^http://(dev|osdelivers|stg)\\.blackducksoftware\\.com/\" to=\"https://$1.blackducksoftware.com/\"/></ruleset>", "<ruleset name=\"Black Lotus\" default_off=\"failed ruleset test\" f=\"Black_Lotus.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Black Phone.ch\" default_off=\"failed ruleset test\" f=\"Black_Phone.ch.xml\"><securecookie host=\"^(?:store\\.|www\\.)?blackphone\\.ch$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Blackbaud.com (partial)\" f=\"Blackbaud.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Blackberry.com (partial)\" default_off=\"failed ruleset test\" f=\"Blackberry.xml\"><exclusion pattern=\"^http://(?:www\\.)?blackberry\\.com/(?!(?:SRPAddressLookup|beta|businessbeta|training)/?$|jira(?:$|[?/]))\"/><securecookie host=\"^\\.\" name=\"^s_\\w\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://developerforums\\.blackberry\\.com/[^?]*\" to=\"https://supportforums.blackberry.com/t5/Developer-Support-Forums/ct-p/blackberrydev\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Blackboard.com (partial)\" f=\"Blackboard.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Blackfire.io\" f=\"Blackfire.io.xml\"><securecookie host=\"^(www\\.)?blackfire\\.io\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Blackfoot.co.uk\" default_off=\"failed ruleset test\" f=\"Blackfoot.co.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Blacknight Internet Solutions (partial)\" f=\"Blacknight-Internet-Solutions.xml\"><securecookie host=\"^.*\\.blacknight\\.com$\" name=\".*\"/><rule from=\"^http://((?:altmail|cp|wiki|www)\\.)?blacknight\\.com/\" to=\"https://$1blacknight.com/\"/></ruleset>", "<ruleset name=\"Blackout Congress.org\" f=\"Blackout_Congress.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Blackpool.gov.uk (partial)\" f=\"Blackpool.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"blah.im\" f=\"Blah.im.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BlameStella\" default_off=\"failed ruleset test\" f=\"BlameStella.xml\"><securecookie host=\"^(?:www\\.)?blamestella\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?blamestella\\.com/\" to=\"https://www.blamestella.com/\"/></ruleset>", "<ruleset name=\"Blank Slate.io\" default_off=\"missing certificate chain\" f=\"Blank_Slate.io.xml\"><securecookie host=\"^blankslate\\.io$\" name=\".+\"/><rule from=\"^http://www\\.blankslate\\.io/\" to=\"https://blankslate.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"blastingnews.com\" f=\"Blastingnews.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Blau.de\" f=\"Blau.de.xml\"><securecookie host=\"^(?:.+\\.)?blau\\.de$\" name=\".+\"/><rule from=\"^http://([^/:@]+\\.)?blau\\.de/\" to=\"https://$1blau.de/\"/></ruleset>", "<ruleset name=\"blaze.com (partial)\" f=\"Blaze.com.xml\"><rule from=\"^http://(assets|downloads|platform|secure)\\.blaze\\.com/\" to=\"https://$1.blaze.com/\"/></ruleset>", "<ruleset name=\"Blazeti.me\" f=\"Blazeti.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Blazing Thyme\" default_off=\"failed ruleset test\" f=\"Blazing-Thyme.xml\"><securecookie host=\"^(?:www\\.)?blazingthyme\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Blazonco.com\" f=\"Blazonco.com.xml\"><securecookie host=\"^(?:.*\\.)?blazonco\\.com$\" name=\".+\"/><rule from=\"^http://([\\w-]+\\.)?blazonco\\.com/\" to=\"https://$1blazonco.com/\"/></ruleset>", "<ruleset name=\"Bleep.com\" f=\"Bleep.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Blekko\" f=\"Blekko.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Blender.org\" f=\"Blender.org.xml\"><rule from=\"^http://blender\\.org/\" to=\"https://www.blender.org/\"/><rule from=\"^http://www\\.developer\\.blender\\.org/\" to=\"https://developer.blender.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Blendle\" f=\"Blendle.xml\"><exclusion pattern=\"^http://blog.blendle\\.nl/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Blesk.cz\" f=\"Blesk.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Blesta.com\" f=\"Blesta.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bleutrade.com\" f=\"Bleutrade.com.xml\"><securecookie host=\"^\\.bleutrade\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"blick.ch (partial)\" default_off=\"failed ruleset test\" f=\"Blick.xml\"><rule from=\"^http://(c|ebalance|parship|video)\\.blick\\.ch/\" to=\"https://$1.blick.ch/\"/><exclusion pattern=\"^http://f.blick.ch/$\"/><exclusion pattern=\"^http://f1.blick.ch/$\"/><exclusion pattern=\"^http://f2.blick.ch/$\"/><exclusion pattern=\"^http://f3.blick.ch/$\"/><exclusion pattern=\"^http://f.blickamabend.ch/$\"/><rule from=\"^http://(f[1-3]?)\\.blick\\.ch/(img|resources)/\" to=\"https://$1.blick.ch/$2/\"/><rule from=\"^http://f\\.blickamabend\\.ch/(img|resources)/\" to=\"https://f.blickamabend.ch/$1/\"/></ruleset>", "<ruleset name=\"BlimpMe.com\" default_off=\"mismatched\" f=\"BlimpMe.com.xml\"><securecookie host=\"^blimpme\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?blimpme\\.com/\" to=\"https://blimpme.com/\"/></ruleset>", "<ruleset name=\"Blinddesign.nl\" f=\"Blinddesign.nl.xml\"><securecookie host=\"^\\.blinddesign\\.nl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"blink-182 (partial)\" default_off=\"refused\" f=\"Blink-182.xml\"><rule from=\"^http://(?:www\\.)?blink-182\\.com/(_?css/|favicon\\.ico)\" to=\"https://modlife.com/$1\"/></ruleset>", "<ruleset name=\"blinkeye.ch\" default_off=\"self-signed\" f=\"Blinkeye.ch.xml\"><securecookie host=\"^(?:.*\\.)?blinkeye\\.ch$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?blinkeye\\.ch/\" to=\"https://blinkeye.ch/dokuwiki/doku.php\"/></ruleset>", "<ruleset name=\"Blinksale.com\" f=\"Blinksale.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Blinktrade.com (partial)\" f=\"Blinktrade.com.xml\"><securecookie host=\"^\\.blinktrade\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Blip.tv (mixed content)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Blip.xml\"><securecookie host=\"^(?:.*\\.)?blip\\.tv$\" name=\".*\"/><rule from=\"^http://a\\.blip\\.tv/\" to=\"https://as.blip.tv/\"/><rule from=\"^https?://\\d\\.i\\.blip\\.tv/\" to=\"https://i.blip.tv/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Blipp.com\" f=\"Blipp.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bloadr.com\" default_off=\"mismatched\" f=\"Bloadr.com.xml\"><securecookie host=\"^(?:www\\.)?bloadr\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BlockExplorer.com\" f=\"BlockExplorer.com.xml\"><securecookie host=\"^\\.blockexplorer\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BlockExplorer.nu\" default_off=\"failed ruleset test\" f=\"BlockExplorer.nu.xml\"><securecookie host=\"^\\.blockexplorer\\.nu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BlockScript\" f=\"BlockScript.xml\"><securecookie host=\"^www\\.blockscript\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?blockscript\\.com/\" to=\"https://www.blockscript.com/\"/></ruleset>", "<ruleset name=\"BlockTrail.com\" f=\"BlockTrail.com.xml\"><securecookie host=\"^\\.blocktrail\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Block Together.org\" default_off=\"failed ruleset test\" f=\"Block_Together.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Blockchainbdgpzk.onion\" platform=\"mixedcontent\" f=\"Blockchainbdgpzk.onion.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Blocked.org.uk\" f=\"Blocked.org.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Blocket.com\" f=\"Blocket.com.xml\"><rule from=\"^http://blocket\\.com/\" to=\"https://www.blocket.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Blocket.se (partial)\" f=\"Blocket.se.xml\"><exclusion pattern=\"^http://www\\.blocket\\.se/+(?!(?:bostad|konto|support)(?:$|[?/])|css/|img/|static/)\"/><securecookie host=\"^jobb\\.blocket\\.se$\" name=\".+\"/><rule from=\"^http://blocket\\.se/\" to=\"https://www.blocket.se/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Blockets Annonswebb.se\" f=\"Blockets_Annonswebb.se.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BlockitPocket.com\" f=\"BlockitPocket.com.xml\"><securecookie host=\"^www\\.blockitpocket\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?blockitpocket\\.com/\" to=\"https://www.blockitpocket.com/\"/></ruleset>", "<ruleset name=\"Blockr.io\" f=\"Blockr.io.xml\"><securecookie host=\"^\\.blockr\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Blockspring.com\" f=\"Blockspring.com.xml\"><securecookie host=\"^(?:www)?\\.blockspring\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Blockstream.com\" default_off=\"failed ruleset test\" f=\"Blockstream.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BlogCatalog\" f=\"BlogCatalog.xml\"><securecookie host=\"^(?:www\\.)?blogcatalog\\.com$\" name=\".*\"/><rule from=\"^http://(www\\.)?blogcatalog\\.com/\" to=\"https://$1blogcatalog.com/\"/><rule from=\"^http://stats\\.blogcatalog\\.com/\" to=\"https://win.staticstuff.net/\"/></ruleset>", "<ruleset name=\"BlogGeek.me\" default_off=\"failed ruleset test\" f=\"BlogGeek.me.xml\"><securecookie host=\"^\\.bloggeek\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BlogHer.com (partial)\" f=\"BlogHer.com.xml\"><exclusion pattern=\"^http://www\\.blogher\\.com/+(?!files/|(?:login|sheknows_connect/init)(?:$|[?/])|sites/)\"/><rule from=\"^http://blogher\\.com/\" to=\"https://www.blogher.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BlogTalkRadio (partial)\" f=\"BlogTalkRadio.xml\"><exclusion pattern=\"^http://(?:www\\.)?blogtalkradio\\.com/+(?![cC]ontent/|favicon\\.ico|img/|login\\.aspx)\"/><securecookie host=\"^secure\\.blogtalkradio\\.com$\" name=\".+\"/><rule from=\"^http://(?:secure\\.|www\\.)?blogtalkradio\\.com/\" to=\"https://secure.blogtalkradio.com/\"/></ruleset>", "<ruleset name=\"Blog Automobile\" f=\"Blog_Automobile.xml\"><securecookie host=\"^(?:www)?\\.blogautomobile\\.fr$\" name=\".+\"/><rule from=\"^http://(cdn2?\\.|www\\.)?blogautomobile\\.fr/\" to=\"https://$1blogautomobile.fr/\"/></ruleset>", "<ruleset name=\"Blog Top Sites.com\" default_off=\"expired\" f=\"Blog_Top_Sites.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Blogg.se (partial)\" f=\"Blogg.se.xml\"><exclusion pattern=\"^http://(?:annonsera|info)\\.blogg\\.se/+(?!favicon\\.ico|static/)\"/><rule from=\"^http://((?:annonsera|faq|info|support|www)\\.)?blogg\\.se/\" to=\"https://$1blogg.se/\"/></ruleset>", "<ruleset name=\"Blogger\" f=\"Blogger.xml\"><securecookie host=\"^www2?\\.blogger\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bloggerei.de (partial)\" f=\"Bloggerei.de.xml\"><exclusion pattern=\"^http://www\\.bloggerei\\.de/+(?!bgpublicon2?\\.jpg)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Blogmint.com\" f=\"Blogmint.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Blognone.com\" f=\"Blognone.com.xml\"><securecookie host=\"^\\.blognone\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"blogo (partial)\" f=\"Blogo.xml\"><securecookie host=\"^(?:www)?\\.blogo\\.it$\" name=\"^__utm\\w$\"/><rule from=\"^http://static(?:-a)?\\.blogo\\.it/\" to=\"https://d2vgi5skuln6ia.cloudfront.net/\"/><rule from=\"^http://static-q\\.blogo\\.it/\" to=\"https://d2ofxhm151efeq.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Blogspot.com blogs\" f=\"Blogspot.com_blogs.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bloo.ie\" default_off=\"failed ruleset test\" f=\"Bloo.ie.xml\"><securecookie host=\"^\\.bloo\\.ie$\" name=\".+\"/><rule from=\"^http://(?:(auth\\.|client\\.)|www\\.)?bloo\\.ie/\" to=\"https://$1bloo.ie/\"/></ruleset>", "<ruleset name=\"Blood.co.uk (partial)\" f=\"Blood.co.uk.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bloodhound Gang.com\" default_off=\"failed ruleset test\" f=\"Bloodhound_Gang.com.xml\"><securecookie host=\"^\\.(?:stufftobuy\\.)?bloodhoundgang\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?bloodhoundgang\\.com/\" to=\"https://www.bloodhoundgang.com/\"/><rule from=\"^http://(www\\.)?stufftobuy\\.bloodhoundgang\\.com/\" to=\"https://$1stufftobuy.bloodhoundgang.com/\"/></ruleset>", "<ruleset name=\"Bloomberg.com (problematic)\" default_off=\"mismatched\" f=\"Bloomberg.com-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bloomberg.net (partial)\" default_off=\"failed ruleset test\" f=\"Bloomberg.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bloomberg.com (partial)\" f=\"Bloomberg.xml\"><exclusion pattern=\"^http://(?:origin-www\\.|www\\.)?bloomberg\\.com/(?!/*(?:news|view)/articles/\\d{4}-\\d\\d-\\d\\d/)\"/><securecookie host=\"^\\.\" name=\"^optimizely\"/><securecookie host=\"^(?:careers|service)\\.bloomberg\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bloomberg Sports.com\" default_off=\"failed ruleset test\" f=\"Bloomberg_Sports.com.xml\"><securecookie host=\"^\\.bloombergsports\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?bloombergsports\\.com/\" to=\"https://www.bloombergsports.com/\"/></ruleset>", "<ruleset name=\"Blossom.IO\" f=\"Blossom.IO.xml\"><securecookie host=\"^www\\.blossom\\.io$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?blossom\\.io/\" to=\"https://www.blossom.io/\"/></ruleset>", "<ruleset name=\"Blossom.co\" f=\"Blossom.co.xml\"><securecookie host=\"^\\.blossom\\.co$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Blot.im\" default_off=\"failed ruleset test\" f=\"Blot.im.xml\"><securecookie host=\"^(?:www\\.)?blot\\.im$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Blottr\" default_off=\"self-signed\" f=\"Blottr.xml\"><securecookie host=\"^www\\.blottr\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?blottr\\.com/\" to=\"https://www.blottr.com/\"/></ruleset>", "<ruleset name=\"Blue Movie (partial)\" default_off=\"failed ruleset test\" f=\"Blue-Movie.xml\"><securecookie host=\"^(?:www\\.)?bluemovie\\.net$\" name=\".*\"/><rule from=\"^http://bluemovie\\.eu/\" to=\"https://www.bluemovie.eu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BlueCat Networks.com\" f=\"BlueCat_Networks.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BlueCats.com (partial)\" f=\"BlueCats.com.xml\"><securecookie host=\"^\\.app\\.bluecats\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BlueCava (partial)\" default_off=\"failed ruleset test\" f=\"BlueCava.xml\"><securecookie host=\"^\\.bluecava\\.com$\" name=\"^(?:d|e|g|machine|s)$\"/><securecookie host=\"^(?:vpn\\.corp|transfer)\\.bluecava\\.com$\" name=\".+\"/><rule from=\"^http://((?:clients|vpn\\.corp|ds|insight|lookup|platform|transfer|www)\\.)?bluecava\\.com/\" to=\"https://$1bluecava.com/\"/><rule from=\"^http://(?:preferences\\.bluecava|bcpd\\.x7y24z365)\\.com/\" to=\"https://bcpd.x7y24z365.com/\"/></ruleset>", "<ruleset name=\"BlueCoat.com\" default_off=\"failed ruleset test\" f=\"BlueCoat.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BlueHost clients\" f=\"BlueHost-clients.xml\"><exclusion pattern=\"^http://(?:www\\.)courtneyluv\\.com/(?:~courtnk6/)?wp-content/uploads/\"/><rule from=\"^http://(?:www\\.)?316space(?:\\.harralmedia)?\\.com/(?:~harralme/316space/)?\" to=\"https://secure.bluehost.com/~harralme/316space/\"/><rule from=\"^http://(?:www\\.)?courtneyluv\\.com/(?:~courtnk6/)?wp-content/\" to=\"https://secure.bluehost.com/~courtnk6/wp-content/\"/><rule from=\"^http://(?:www\\.)?kyleschaeffer\\.com/wordpress/wp-content/\" to=\"https://secure.bluehost.com/~kylescha/wordpress/wp-content/\"/><rule from=\"^http://blog\\.pressdisplay\\.com/wp-(content|includes)/\" to=\"https://secure.bluehost.com/~pressdis/wp-$1/\"/></ruleset>", "<ruleset name=\"BlueKai.com (partial)\" f=\"BlueKai.xml\"><rule from=\"^http://tags\\.bluekai\\.com/\" to=\"https://stags.bluekai.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BlueKrypt.com\" f=\"BlueKrypt.com.xml\"><rule from=\"^http://(?:www\\.)?bluekrypt\\.be/[^?]*\" to=\"https://www.bluekrypt.com/fr/\"/><rule from=\"^http://(www\\.)?bluekrypt\\.com/\" to=\"https://$1bluekrypt.com/\"/></ruleset>", "<ruleset name=\"BluePoint.com.ph (partial)\" f=\"BluePoint.com.ph.xml\"><securecookie host=\"^mail\\.bluepoint\\.com\\.ph$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"blueSSL.com\" f=\"BlueSSL.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BlueShore Financial\" f=\"BlueShore-Financial.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BlueSnap.com (partial)\" f=\"BlueSnap.com.xml\"><securecookie host=\"^sandbox\\.bluesnap\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BlueToad.com\" f=\"BlueToad.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BlueZ (partial)\" default_off=\"expired, self-signed\" f=\"BlueZ.xml\"><exclusion pattern=\"^http://www\\.bluez\\.org/$\"/><rule from=\"^http://(?:www\\.)?bluez\\.org/\" to=\"https://www.bluez.org/\"/></ruleset>", "<ruleset name=\"Blue Jeans.com (partial)\" default_off=\"failed ruleset test\" f=\"Blue_Jeans.com.xml\"><exclusion pattern=\"^http://bluejeans\\.com/+(?!favicon\\.ico|iframe/|sites/|trial(?:$|[?/])|z[12]/)\"/><securecookie host=\"^\\.bluejeans\\.com$\" name=\"^__qca$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Blue Jeans Cable.com\" f=\"Blue_Jeans_Cable.com.xml\"><securecookie host=\"^www\\.bluejeanscable\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Blue Man Ticketing (partial)\" f=\"Blue_Man_Ticketing.xml\"><rule from=\"^http://(?:www\\.)?bluemanticketing\\.com/(buy/|get-show-dates/|myticketbooth/themes/)\" to=\"https://www.bluemanticketing.com/$1\"/></ruleset>", "<ruleset name=\"Blue Mountain.com\" f=\"Blue_Mountain.xml\"><securecookie host=\"^\\.bluemountain\\.com$\" name=\".+\"/><rule from=\"^http://bluemountain\\.com/\" to=\"https://www.bluemountain.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Blue Origin.com\" f=\"Blue_Origin.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Blue State Digital.com (partial)\" f=\"Blue_State_Digital.xml\"><securecookie host=\"^(?:\\.|\\.?www\\.)?bluestatedigital\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bluebird.com\" f=\"Bluebird.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bluechip (mixedcontent)\" default_off=\"failed ruleset test\" f=\"Bluechip.xml\"><rule from=\"^http://www\\.bluechip\\.hu/\" to=\"https://www.bluechip.hu/\"/></ruleset>", "<ruleset name=\"Bluefly (partial)\" f=\"Bluefly.xml\"><rule from=\"^http://(?:cdn\\.)?media\\.bluefly\\.com/\" to=\"https://media.bluefly.com/\"/></ruleset>", "<ruleset name=\"Bluegiga.com\" f=\"Bluegiga.com.xml\"><rule from=\"^http://(?:www\\.)?bluegiga\\.com/\" to=\"https://www.bluegiga.com/\"/></ruleset>", "<ruleset name=\"Bluehost-CDN.com\" default_off=\"failed ruleset test\" f=\"Bluehost-CDN.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BlueHost.com\" f=\"Bluehost.xml\"><securecookie host=\"^(?:www)?\\.bluehost\\.com$\" name=\".+\"/><rule from=\"^http://serverstatus\\.bluehost\\.com/$\" to=\"https://www.bluehost.com/cgi/serverstatus/\"/><rule from=\"^http://(www|box\\d+|br|helpdesk|cloud|login|my|secure|tutorials)\\.bluehost\\.com/\" to=\"https://$1.bluehost.com/\"/><rule from=\"^http://bluehost\\.com/\" to=\"https://bluehost.com/\"/></ruleset>", "<ruleset name=\"bluehosting.pl (partial)\" f=\"Bluehosting.pl.xml\"><securecookie host=\"^.+\\.bho\\.pl$\" name=\".+\"/><rule from=\"^http://([\\w-]+\\.)?bho\\.pl/\" to=\"https://$1bho.pl/\"/></ruleset>", "<ruleset name=\"Bluemix.net\" f=\"Bluemix.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bluemle-neubrunn.de\" f=\"Bluemle-neubrunn.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bluenote.io\" f=\"Bluenote.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bluesnews\" f=\"Bluesnews.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bluetooth.org (partial)\" f=\"Bluetooth.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BlueTurn.Earth\" f=\"Blueturn.earth.xml\"><rule from=\"^http://www\\.blueturn\\.earth/\" to=\"https://blueturn.earth/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HostCenter.com\" default_off=\"failed ruleset test\" f=\"Bluewin-HostCenter.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bluewin.ch (partial)\" default_off=\"failed ruleset test\" f=\"Bluewin.ch.xml\"><securecookie host=\"^(?:(?:xtrazone|pres|sam|rich)\\.sso|www)\\.bluewin\\.ch$\" name=\".+\"/><rule from=\"^http://bluewin\\.ch/\" to=\"https://www.bluewin.ch/\"/><rule from=\"^http://bluewin\\.wemfbox\\.ch/\" to=\"https://blue-ssl.wemfbox.ch/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Blumenthals\" f=\"Blumenthals.xml\"><securecookie host=\"^blumenthals\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Blutmagie.de (partial)\" default_off=\"self-signed\" f=\"Blutmagie.de.xml\"><securecookie host=\"^torstatus\\.blutmagie\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?blutmagie\\.de/+(?:\\?.*)?$\" to=\"https://torstatus.blutmagie.de/~h3s\"/><rule from=\"^http://torstatus\\.blutmagie\\.de/\" to=\"https://torstatus.blutmagie.de/\"/></ruleset>", "<ruleset name=\"bm.ru\" f=\"Bm.ru.xml\"><exclusion pattern=\"^http://(www\\.)?bm\\.ru/$\"/><rule from=\"^http://(www\\.)?bm\\.ru/ru/personal/platezhi-i-perevody/perevody-s-kart/perevody-s-karty-na-karty/\" to=\"https://$1bm.ru/ru/personal/platezhi-i-perevody/perevody-s-kart/perevody-s-karty-na-karty/\"/><rule from=\"^http://anketa\\.bm\\.ru/\" to=\"https://anketa.bm.ru/\"/><rule from=\"^http://anketa-ipoteka\\.bm\\.ru/\" to=\"https://anketa-ipoteka.bm.ru/\"/><rule from=\"^http://bmmobile\\.bm\\.ru/\" to=\"https://bmmobile.bm.ru/\"/><rule from=\"^http://mobile\\.bm\\.ru/\" to=\"https://mobile.bm.ru/\"/><rule from=\"^http://online\\.bm\\.ru/\" to=\"https://online.bm.ru/\"/><rule from=\"^http://partner\\.bm\\.ru/\" to=\"https://partner.bm.ru/\"/><rule from=\"^http://ssl\\.bm\\.ru/\" to=\"https://ssl.bm.ru/\"/></ruleset>", "<ruleset name=\"Bmmetrix.com (partial)\" f=\"Bmmetrix.com.xml\"><securecookie host=\".+\\.bmmetrix\\.com$\" name=\".+\"/><rule from=\"^http://(ie-stat|t)\\.bmmetrix\\.com/\" to=\"https://$1.bmmetrix.com/\"/><rule from=\"^http://(?:www\\.)?bmmetrix\\.com/\" to=\"https://www.bmmetrix.com/\"/></ruleset>", "<ruleset name=\"bn-MCLP.org (partial)\" f=\"Bn-MCLP.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bnc4free.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Bnc4free.com-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bnc4free.com (partial)\" default_off=\"failed ruleset test\" f=\"Bnc4free.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BoCA.gov.tw\" default_off=\"failed ruleset test\" f=\"BoCA.gov.tw.xml\"><securecookie host=\"^www\\.boca\\.gov\\.tw$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?boca\\.gov\\.tw/\" to=\"https://www.boca.gov.tw/\"/></ruleset>", "<ruleset name=\"Board Game Arena\" f=\"Board-Game-Arena.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BoardGameGeek.com\" f=\"BoardGameGeek.com.xml\"><securecookie host=\"^(\\.|www\\.)?boardgamegeek\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BoardZoo.com\" f=\"BoardZoo.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Boards.ie (broken)\" default_off=\"reported broken\" f=\"Boards.ie.xml\"><rule from=\"^http://([^/:@\\.]+\\.)?boards\\.ie/\" to=\"https://$1boards.ie/\"/><rule from=\"^http://b-static\\.net/\" to=\"https://c0.b-static.net/\"/><rule from=\"^http://(avatar|c0)\\.b-static\\.net/\" to=\"https://$1.b-static.net/\"/></ruleset>", "<ruleset name=\"Boathouse Crew Shop\" default_off=\"failed ruleset test\" f=\"Boathouse_Crew_Shop.xml\"><securecookie host=\"^\\.www\\.boathousecrewshop\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bob131.so\" f=\"Bob131.so.xml\"><rule from=\"^http://www\\.bob131\\.so/\" to=\"https://bob131.so/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Boba Family\" default_off=\"failed ruleset test\" f=\"Boba_Family.xml\"><securecookie host=\"^(?:.*\\.)?bobafamily\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bobcares.com (partial)\" default_off=\"failed ruleset test\" f=\"Bobcares.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bodum\" f=\"Bodum.xml\"><securecookie host=\"^(?:.+\\.)?bodum\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?bodum\\.com/\" to=\"https://www.bodum.com/\"/></ruleset>", "<ruleset name=\"BodyBuilding.com (partial)\" f=\"BodyBuilding.com.xml\"><exclusion pattern=\"^http://my\\.bodybuilding\\.com/\"/><securecookie host=\"^ad\\.bodybuilding\\.com$\" name=\".+\"/><rule from=\"^http://(common|store)\\.bbcomcdn\\.com/\" to=\"https://$1.bbcomcdn.com/\"/><rule from=\"^http://(\\w{2}\\.|www\\.)?bodybuilding\\.com/store/(account/|commerce/cart\\.jsp|orderstatus\\.htm)\" to=\"https://$1bodybuilding.com/store/$2\"/><rule from=\"^http://(ad|assets|s)\\.bodybuilding\\.com/\" to=\"https://$1.bodybuilding.com/\"/><rule from=\"^http://imagecdn\\.bodybuilding\\.com/\" to=\"https://d1qro4ibhgqt8c.cloudfront.net/\"/><rule from=\"^http://n\\.bodybuilding\\.com/\" to=\"https://bodybuilding-com.112.2o7.net/\"/></ruleset>", "<ruleset name=\"boell.de\" default_off=\"failed ruleset test\" f=\"Boell.de.xml\"><rule from=\"^http://boell\\.de/\" to=\"https://www.boell.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Börse Frankfurt\" f=\"Boerse_Frankfurt.xml\"><rule from=\"^http://boerse-frankfurt\\.de/\" to=\"https://www.boerse-frankfurt.de/\"/><rule from=\"^http://([^/:@]+)?\\.boerse-frankfurt\\.de/\" to=\"https://$1.boerse-frankfurt.de/\"/></ruleset>", "<ruleset name=\"bofh.it (partial)\" f=\"Bofh.it.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bohemia Interactive (partial)\" f=\"Bohemia_Interactive.xml\"><securecookie host=\"^\\.bistudio\\.com$\" name=\"^bohemiaInteractiveForums_session_id$\"/><securecookie host=\"^(?:account|community|store)\\.bistudio\\.com$\" name=\".+\"/><rule from=\"^http://bistudio\\.com/\" to=\"https://www.bistudio.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bohoomil.com (bad cert)\" default_off=\"Expired certificate\" f=\"Bohoomil.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Boing Boing.net (partial)\" f=\"Boing-Boing.xml\"><securecookie host=\"^\\.\" name=\"^__qca$\"/><securecookie host=\"^(?:\\.shop\\.)?boingboing\\.net$\" name=\".*\"/><rule from=\"^http://www\\.boingboing\\.net/\" to=\"https://boingboing.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Boingo\" default_off=\"failed ruleset test\" f=\"Boingo.xml\"><rule from=\"^http://boingo\\.com/\" to=\"https://www.boingo.com/\"/><rule from=\"^http://([^/:@]+)?\\.boingo\\.com/\" to=\"https://$1.boingo.com/\"/><rule from=\"^http://boingo\\.net/\" to=\"https://www.boingo.net/\"/><rule from=\"^http://([^/:@]+)?\\.boingohotspot\\.net/\" to=\"https://$1.boingohotspot.net/\"/></ruleset>", "<ruleset name=\"Bokborgen.se\" default_off=\"failed ruleset test\" f=\"Bokborgen.se.xml\"><rule from=\"^http://www\\.bokborgen\\.se/\" to=\"https://bokborgen.se/\"/><rule from=\"^http://bokborgen\\.se/\" to=\"https://bokborgen.se/\"/></ruleset>", "<ruleset name=\"Bokelskere\" platform=\"mixedcontent\" f=\"Bokelskere.xml\"><rule from=\"^http://bokelskere\\.no/\" to=\"https://bokelskere.no/\"/><rule from=\"^http://www\\.bokelskere\\.no/\" to=\"https://www.bokelskere.no/\"/></ruleset>", "<ruleset name=\"Bokon.se\" f=\"Bokon.se.xml\"><securecookie host=\"^(?:www\\.)?bokon\\.se$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bolagsverket.se\" platform=\"mixedcontent\" f=\"Bolagsverket.se.xml\"><rule from=\"^http://bolagsverket\\.se/\" to=\"https://www.bolagsverket.se/\"/><rule from=\"^http://www\\.bolagsverket\\.se/\" to=\"https://www.bolagsverket.se/\"/></ruleset>", "<ruleset name=\"BoldChat.com (partial)\" f=\"BoldChat.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://autodiscover\\.boldchat\\.com/.*\" to=\"https://autodiscover.mex07a.emailsrvr.com/autodiscover/autodiscover.xml\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BolehVPN.net\" default_off=\"failed ruleset test\" f=\"BolehVPN.net.xml\"><securecookie host=\"^(?:\\.|portal\\.|www\\.)?bolehvpn\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Boligejer.dk\" f=\"Boligejer.dk.xml\"><securecookie host=\"^\\.boligejer\\.dk$\" name=\".+\"/><rule from=\"^http://(www\\.)?boligejer\\.dk/\" to=\"https://boligejer.dk/\"/></ruleset>", "<ruleset name=\"Boligportal.dk (false MCB)\" platform=\"mixedcontent\" f=\"Boligportal.dk-mixedcontent.xml\"><securecookie host=\"(www)?\\.boligportal\\.dk\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Boligportal.dk (static)\" f=\"Boligportal.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bolo's Computer Museum\" f=\"Bolos_Computer_Museum.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Boltbus.com\" platform=\"mixedcontent\" f=\"Boltbus.com.xml\"><rule from=\"^http://(?:www\\.)?boltbus\\.com/\" to=\"https://www.boltbus.com/\"/></ruleset>", "<ruleset name=\"Bonadza.com\" f=\"Bonadza.com.xml\"><securecookie host=\"^(?:www\\.)?bonadza\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bonding.de\" f=\"Bonding.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bonneville Power Administration (partial)\" f=\"Bonneville_Power_Administration.xml\"><securecookie host=\"^.*\\.bpa\\.gov$\" name=\".+\"/><rule from=\"^http://(customerportal\\.|www\\.)?bpa\\.gov/\" to=\"https://$1bpa.gov/\"/><rule from=\"^http://(?:www\\.)?(careers|efw|jobs)\\.bpa\\.gov/\" to=\"https://$1.bpa.gov/\"/></ruleset>", "<ruleset name=\"BookBoon.com (partial)\" f=\"BookBoon.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BookLink.Me\" f=\"BookLink.Me.xml\"><rule from=\"^http://www\\.booklink\\.me/\" to=\"https://booklink.me/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BookMyName.com\" f=\"BookMyName.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Book Depository.co.uk (partial)\" f=\"Book_Depository.co.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Book Depository.com (partial)\" f=\"Book_Depository.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bookacourse.com (partial)\" default_off=\"522\" f=\"Bookacourse.xml\"><exclusion pattern=\"^http://(?:www\\.)?bookacourse\\.com/content\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bookie.io\" default_off=\"failed ruleset test\" f=\"Bookie.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Booking.com\" f=\"Booking.com.xml\"><exclusion pattern=\"^http://((?:[^./]+\\.){2,}|(?:[^./]+\\.){3,})b(?:ooking|static)\\.com/\"/><exclusion pattern=\"^http://(?:m\\.admin|sg|suite)\\.booking\\.com/\"/><exclusion pattern=\"^http://(r|s)-ec\\.booking\\.com/\"/><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Booklog.jp\" default_off=\"failed ruleset test\" f=\"Booklog.jp.xml\"><rule from=\"^http://(?:www\\.)?booklog\\.jp/\" to=\"https://www.booklog.jp/\"/></ruleset>", "<ruleset name=\"booklooker.de\" f=\"Booklooker.de.xml\"><securecookie host=\"^(?:www\\.)?(?:images\\.|secure\\.)?booklooker\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?(?:secure\\.)?booklooker\\.de/\" to=\"https://secure.booklooker.de/\"/><rule from=\"^http://(?:www\\.)?images\\.booklooker\\.de/\" to=\"https://images.booklooker.de/\"/></ruleset>", "<ruleset name=\"BooksOnIslam.org\" f=\"BooksOnIslam.org.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bookshare\" f=\"Bookshare.xml\"><securecookie host=\"^www\\.bookshare\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?bookshare\\.org/\" to=\"https://www.bookshare.org/\"/></ruleset>", "<ruleset name=\"Booktype.pro\" f=\"Booktype.pro.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bookworm\" f=\"Bookworm.xml\"><securecookie host=\"^bookworm\\.oreilly\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Boomads\" f=\"BoomAds.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Boomerang (partial)\" default_off=\"failed ruleset test\" f=\"Boomerang.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BoordatWork.com\" default_off=\"self-signed\" f=\"BoordatWork.com.xml\"><securecookie host=\"^\\.?booredatwork\\.com$\" name=\".*\"/><rule from=\"^http://(?:cdn\\.|www\\.)?booredatwork\\.com/\" to=\"https://booredatwork.com/\"/></ruleset>", "<ruleset name=\"boost.org (partial)\" default_off=\"expired\" f=\"Boost.xml\"><securecookie host=\"^svn\\.boost\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Boost by Benz.com\" default_off=\"failed ruleset test\" f=\"Boost_by_Benz.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BootCDN\" f=\"BootCDN.xml\"><exclusion pattern=\"^http://cdn.bootcss.com/bootstrap-tokenfield/0.11.8/package/index.html\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Boots.com (partial)\" f=\"Boots.com.xml\"><securecookie host=\"^(?:.*\\.)?boots\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?boots\\.com/\" to=\"https://www.boots.com/\"/><rule from=\"^http://www\\.international\\.boots\\.com/\" to=\"https://www.international.boots.com/\"/><rule from=\"^http://(?:www\\.)?th\\.boots\\.com/\" to=\"https://www.bootsthai.com/\"/><rule from=\"^http://(www\\.)?shopbootsusa\\.com/webstore/(?=a4j/|login\\.do)\" to=\"https://$1shopbootsusa.com/webstore/\"/><rule from=\"^http://images\\.shopbootsusa\\.com/\" to=\"https://images.shopbootsusa.com/\"/></ruleset>", "<ruleset name=\"Boots.ie\" f=\"Boots.ie.xml\"><securecookie host=\"^www\\.boots\\.ie$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?boots\\.ie/\" to=\"https://www.boots.ie/\"/></ruleset>", "<ruleset name=\"Boots.no\" f=\"Boots.no.xml\"><securecookie host=\".*\\.boots\\.no$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?boots\\.no/\" to=\"https://www.boots.no/\"/></ruleset>", "<ruleset name=\"Boots Thai.com\" default_off=\"failed ruleset test\" f=\"Boots_Thai.com.xml\"><rule from=\"^http://www\\.bootsthai\\.com/\" to=\"https://www.bootsthai.com/\"/></ruleset>", "<ruleset name=\"BootstrapCDN.com (partial)\" f=\"BootstrapCDN.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bootswatch.com (partial)\" f=\"Bootswatch.com.xml\"><securecookie host=\"^\\.bootswatch\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Boounce\" default_off=\"failed ruleset test\" f=\"Boounce.xml\"><securecookie host=\"^forums\\.boounce\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Booz Allen.com (partial)\" f=\"Booz_Allen.com.xml\"><securecookie host=\"^cybertab\\.boozallen\\.com$\" name=\".+\"/><rule from=\"^http://((?:cybertab|mena|www)\\.)?boozallen\\.com/\" to=\"https://$1boozallen.com/\"/></ruleset>", "<ruleset name=\"Borderfree.com (partial)\" f=\"Borderfree.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bored to Death\" f=\"Bored_to_Death.xml\"><securecookie host=\"^(?:w*\\.)?boredtodeath\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Born This Way Foundation (partial)\" f=\"Born_This_Way_Foundation.xml\"><securecookie host=\"^\\.?secure\\.bornthiswayfoundation\\.org$\" name=\".+\"/><rule from=\"^http://(?:action\\.|www\\.)?bornthiswayfoundation\\.org/page/-/img/\" to=\"https://dnwssx4l7gl7s.cloudfront.net/bway/default/page/-/img/\"/><rule from=\"^http://secure\\.bornthiswayfoundation\\.org/\" to=\"https://secure.bornthiswayfoundation.org/\"/></ruleset>", "<ruleset name=\"Borsen.dk (partial)\" f=\"Borsen.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bortársaság\" f=\"Bortarsasag.xml\"><securecookie host=\"^www\\.bortarsasag\\.hu$\" name=\".*\"/><rule from=\"^http://(www\\.)?bortarsasag\\.hu/\" to=\"https://www.bortarsasag.hu/\"/></ruleset>", "<ruleset name=\"Bosch-Sensortec.com\" f=\"Bosch-Sensortec.com.xml\"><rule from=\"^http://bosch-sensortec\\.com/[^?]*\" to=\"https://www.bosch-sensortec.com/\"/><rule from=\"^http://www\\.bosch-sensortec\\.com/\" to=\"https://www.bosch-sensortec.com/\"/></ruleset>", "<ruleset name=\"Bosch.com (partial)\" f=\"Bosch.com.xml\"><rule from=\"^http://(appcenter|crisis|ebike|idea|(?:ae-bst|beat-emea|boschshared-bosch-de|c-design-bosch-de|rb-master)\\.resource)\\.bosch\\.com/\" to=\"https://$1.bosch.com/\"/></ruleset>", "<ruleset name=\"Bose\" f=\"Bose.xml\"><securecookie host=\"^(?:.*\\.)?bose\\.co\\.uk$\" name=\".*\"/><rule from=\"^http://bose\\.co\\.uk/\" to=\"https://www.bose.co.uk/\"/><rule from=\"^http://([^/:@]+)\\.bose\\.co\\.uk/\" to=\"https://$1.bose.co.uk/\"/></ruleset>", "<ruleset name=\"bosh.io\" f=\"Bosh.io.xml\"><securecookie host=\"^\\.bosh\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bossland GmbH\" f=\"BosslandGmbH.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Boston Built\" default_off=\"mismatched\" f=\"Boston-Built.xml\"><rule from=\"^http://(?:www\\.)?bostonbuilt(?:\\.org|-org\\.hoaxdevice\\.com)/\" to=\"https://bostonbuilt-org.hoaxdevice.com/~hoaxdevi/bostonbuilt/\"/></ruleset>", "<ruleset name=\"Boston.com\" f=\"Boston.com.xml\"><rule from=\"^http://prototype\\.boston\\.com/\" to=\"https://p.o0bc.com/\"/><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BostonGlobe.com (partial)\" f=\"BostonGlobe.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://bostonglobe\\.com/\" to=\"https://www.bostonglobe.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BostonGlobeMedia.com (partial)\" f=\"BostonGlobeMedia.com.xml\"><exclusion pattern=\"^http://go\\.bostonglobemedia\\.com/(?!css/|l/)\"/><rule from=\"^http://go\\.bostonglobemedia\\.com/\" to=\"https://go.pardot.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Boston Review.com\" f=\"Boston_Review.net.xml\"><securecookie host=\"^(?:w*\\.)?bostonreview\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Boston University (partial)\" f=\"Boston_University.xml\"><securecookie host=\"^(?:www)?\\.bu\\.edu$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?bu\\.edu/\" to=\"https://www.bu.edu/\"/><rule from=\"^http://tandem\\.bu\\.edu/\" to=\"https://tandem.bu.edu/\"/></ruleset>", "<ruleset name=\"BotBot.me\" default_off=\"failed ruleset test\" f=\"BotBot.me.xml\"><securecookie host=\"^botbot\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BotScanner.com (partial)\" default_off=\"expired\" f=\"BotScanner.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Botconf.eu\" f=\"Botconf.eu.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://botconf\\.eu/\" to=\"https://www.botconf.eu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Botfrei.de (partial)\" f=\"Botfrei.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"boum.org\" f=\"Boum.org.xml\"><rule from=\"^http://frangipane\\.boum\\.org/\" to=\"https://nantes.indymedia.org/\"/><rule from=\"^http://(mail|ns2?|panoptique)\\.boum\\.org/\" to=\"https://boum.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bounce.io\" default_off=\"failed ruleset test\" f=\"Bounce.io.xml\"><rule from=\"^http://(?:www\\.)?bounce\\.io/\" to=\"https://bounce.io/\"/></ruleset>", "<ruleset name=\"bouncebidder.com\" f=\"Bouncebidder.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bouncy Castle.org (partial)\" f=\"Bouncy_Castle.org.xml\"><securecookie host=\"^(?:www\\.)?bouncycastle\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bountysource.com (partial)\" f=\"Bountysource.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bourgeois.me\" default_off=\"failed ruleset test\" f=\"Bourgeois.me.xml\"><securecookie host=\"^\\.bourgeois\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bourne To Code.com\" f=\"Bourne_To_Code.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bournemouth.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"Bournemouth.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://bournemouth\\.gov\\.uk/\" to=\"https://www.bournemouth.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bovpg.net\" f=\"Bovpg.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Box-Look.org\" f=\"Box-Look.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Box (partial)\" f=\"Box.xml\"><exclusion pattern=\"^http://opensource\\.box\\.com/\"/><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://forum\\.developers\\.box\\.com/\" to=\"https://getsatisfaction.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BoxOffice (partial)\" f=\"BoxOffice.xml\"><exclusion pattern=\"^http://(?:www\\.)?boxoffice\\.com/(?:$|\\?|/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BoxUK\" platform=\"mixedcontent\" f=\"BoxUK.xml\"><securecookie host=\"^(?:www\\.)?boxuk\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?boxuk\\.com/\" to=\"https://www.boxuk.com/\"/></ruleset>", "<ruleset name=\"Box Cloud.com\" f=\"Box_Cloud.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Boxcar.io (partial)\" f=\"Boxcar.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Boxee.tv (partial)\" default_off=\"failed ruleset test\" f=\"BoxeeTV.xml\"><securecookie host=\"^(?:\\w+\\.)?boxee\\.tv$\" name=\".+\"/><rule from=\"^http://((?:account|app|assets|www)\\.)?boxee\\.tv/\" to=\"https://$1boxee.tv/\"/></ruleset>", "<ruleset name=\"boxopus.com\" f=\"Boxopus.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Boxpn.com\" default_off=\"failed ruleset test\" f=\"Boxpn.com.xml\"><securecookie host=\"^(?:www)?\\.boxpn\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Boxwood Technology\" default_off=\"failed ruleset test\" f=\"Boxwood_Technology.xml\"><securecookie host=\"^(?:.+\\.)?boxwoodtech\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bpaste.net\" f=\"Bpaste.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Brabysads.com (partial)\" default_off=\"refused\" f=\"Brabysads.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bradford.gov.uk (partial)\" f=\"Bradford.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://bradford\\.gov\\.uk/\" to=\"https://www.bradford.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BradleyF.id.au\" f=\"BradleyF.id.au.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Brainbench\" platform=\"mixedcontent\" f=\"BrainBench.xml\"><rule from=\"^http://(?:www\\.)?brainbench\\.com/\" to=\"https://www.brainbench.com/\"/></ruleset>", "<ruleset name=\"Brain Decoder.com\" f=\"Brain_Decoder.com.xml\"><rule from=\"^http://braindecoder\\.com/\" to=\"https://www.braindecoder.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Brain Pickings.org\" f=\"Brain_Pickings.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"braincert.org\" default_off=\"failed ruleset test\" f=\"Braincert.org.xml\"><securecookie host=\"^\\.braincert\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Brainshark\" platform=\"mixedcontent\" f=\"Brainshark.xml\"><securecookie host=\"^(?:.*\\.)?brainshark\\.com$\" name=\".*\"/><rule from=\"^http://presentation\\.brainshark\\.com/company/contact_us\\.(?:aspx|php)(?:$|\\?.*)\" to=\"https://www.brainshark.com/contact-us\"/><rule from=\"^http://presentation\\.brainshark\\.com/privacy_policy/privacy_policy\\.(?:aspx|php)(?:$|\\?.*)\" to=\"https://www.brainshark.com/company/privacy-policy.aspx\"/><rule from=\"^http://(?:presentation\\.|www\\.)?brainshark\\.com/\" to=\"https://www.brainshark.com/\"/></ruleset>", "<ruleset name=\"Brainsonic (partial)\" f=\"Brainsonic.xml\"><rule from=\"^http://(?:www\\.)?brainsonic\\.com/wp-content/\" to=\"https://www.brainsonic.com/wp-content/\"/><rule from=\"^http://(live2|live-secure|francetv\\.motscroises\\.pad)\\.brainsonic\\.com/\" to=\"https://$1.brainsonic.com/\"/></ruleset>", "<ruleset name=\"Brainstorage.me (partial)\" f=\"Brainstorage.me.xml\"><rule from=\"^http://(?:www\\.)?brainstorage\\.me/(?=assets/)\" to=\"https://brainstorage.me/\"/></ruleset>", "<ruleset name=\"Braintree.gov.uk (partial)\" f=\"Braintree.gov.uk.xml\"><securecookie host=\"^(?!\\.braintree\\.gov\\.uk$).\" name=\".\"/><rule from=\"^http://braintree\\.gov\\.uk/\" to=\"https://www.braintree.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Braintreepayments.com\" f=\"Braintreepayments.com.xml\"><securecookie host=\"^(?:(?:developers|signups|www)\\.)?braintreepayments\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BrainyQuote.com\" f=\"BrainyQuote.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Branch\" default_off=\"failed ruleset test\" f=\"Branch.xml\"><securecookie host=\"^\\.branch\\.com$\" name=\".+\"/><rule from=\"^http://(?:secure\\.|www\\.)?branch\\.com/\" to=\"https://secure.branch.com/\"/><rule from=\"^http://static\\.branch\\.com/\" to=\"https://d3sipcemvmkij2.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Branchable.com\" f=\"Branchable.com.xml\"><securecookie host=\".+\\.branchable\\.com$\" name=\".+\"/><rule from=\"^http://([\\w-]+\\.)?branchable\\.com/\" to=\"https://$1branchable.com/\"/></ruleset>", "<ruleset name=\"brand-server.com\" f=\"Brand-server.com.xml\"><securecookie host=\"^t\\.brand-server\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Brand Embassy (partial)\" f=\"Brand_Embassy.xml\"><securecookie host=\"^(?:engager|ui)\\.brandembassy\\.com$\" name=\".+\"/><rule from=\"^http://(engager|ui)\\.brandembassy\\.com/\" to=\"https://$1.brandembassy.com/\"/></ruleset>", "<ruleset name=\"Brand New Booty\" f=\"Brand_New_Booty.xml\"><securecookie host=\"^(?:www)?\\.brandnewbooty\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Brand Spanking New\" default_off=\"mismatched\" f=\"Brand_Spanking_New.xml\"><rule from=\"^http://(?:www\\.)?brandspankingnew\\.net/\" to=\"https://brandspankingnew.net/\"/></ruleset>", "<ruleset name=\"Brandensittich.de\" f=\"Brandensittich.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Brandfolder.com\" f=\"Brandfolder.com.xml\"><securecookie host=\"^brandfolder\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Brandify (partial)\" default_off=\"failed ruleset test\" f=\"Brandify.xml\"><rule from=\"^http://secure\\.brandify\\.com\\.au/\" to=\"https://secure.brandify.com.au/\"/></ruleset>", "<ruleset name=\"Brandisty.com\" f=\"Brandisty.com.xml\"><securecookie host=\"^(?:www\\.)?brandisty\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Brandl-Services\" f=\"Brandl-Services.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Brands.com.tw\" f=\"Brands.xml\"><securecookie host=\"^mall\\.brands\\.com\\.tw$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BrandweerUitgeest.nl\" f=\"BrandweerUitgeest.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Branson Zipline (partial)\" f=\"Branson_Zipline.xml\"><exclusion pattern=\"^http://(?:www\\.)?bransonzipline\\.com/(?!public/)\"/><securecookie host=\"^secure\\.bransonzipline\\.com$\" name=\".+\"/><rule from=\"^http://(secure\\.|www\\.)?bransonzipline\\.com/\" to=\"https://$1bransonzipline.com/\"/><rule from=\"^http://(?:css|img)\\.bzimages\\.com/\" to=\"https://www.bransonzipline.com/\"/></ruleset>", "<ruleset name=\"Brasil 24/7\" f=\"Brasil_24-7.xml\"><securecookie host=\".*\\.brasil247\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Braunschweig\" platform=\"mixedcontent\" f=\"Braunschweig.xml\"><rule from=\"^http://(?:www\\.)?braunschweig\\.de/\" to=\"https://www.braunschweig.de/\"/></ruleset>", "<ruleset name=\"Brave Media\" default_off=\"mismatched\" f=\"Brave-Media.xml\"><securecookie host=\"^(?:.*\\.)?bravemedia\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?bravemedia\\.org/(?:~bravemed/)?\" to=\"https://bravemedia.org/~bravemed/\"/><rule from=\"^http://(?:(?:www\\.)?dino\\.sr/|dinosr\\.bravemedia\\.org/(?:~bravemed/dinosr/)?)\" to=\"https://bravemedia.org/~bravemed/dinosr/\"/><rule from=\"^http://(?:(?:www\\.)?kea\\.nu/|keanu\\.bravemedia\\.org/(?:~bravemed/keanu/)?)\" to=\"https://bravemedia.org/~bravemed/keanu/\"/><rule from=\"^http://(?:(?:www\\.)?scordit\\.com/|scordit\\.bravemedia\\.org/(?:~bravemed/scordit/)?)\" to=\"https://bravemedia.org/~bravemed/scordit/\"/></ruleset>", "<ruleset name=\"Braveinfo.net\" f=\"Braveinfo.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bravely Onward.com\" f=\"Bravely_Onward.com.xml\"><securecookie host=\"^\\.bravelyonward\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bravenet Media (partial)\" default_off=\"failed ruleset test\" f=\"Bravenet_Media.xml\"><securecookie host=\"^redvase\\.bravenet\\.com$\" name=\".+\"/><rule from=\"^http://redvase\\.bravenet\\.com/\" to=\"https://redvase.bravenet.com/\"/></ruleset>", "<ruleset name=\"BreNet (mismatches)\" default_off=\"mismatch, self-signed\" f=\"BreNet-mismatches.xml\"><rule from=\"^http://(vz46|webmail)\\.brenet\\.de/\" to=\"https://$1.brenet.de/\"/></ruleset>", "<ruleset name=\"BreNet (partial)\" f=\"BreNet.xml\"><securecookie host=\"^(?:.*\\.)?brenet\\.de$\" name=\".*\"/><rule from=\"^http://(www\\.)?brenet\\.de(:8443)?/\" to=\"https://$1brenet.de$2/\"/></ruleset>", "<ruleset name=\"break.com\" f=\"Break.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Breakfast Quay (partial)\" default_off=\"failed ruleset test\" f=\"Breakfast-Quay.xml\"><rule from=\"^http://code\\.breakfastquay\\.com/\" to=\"https://code.breakfastquay.com/\"/><securecookie host=\"^code\\.breakfastquay\\.com$\" name=\".*\"/></ruleset>", "<ruleset name=\"BreakoutBand.com\" default_off=\"failed ruleset test\" f=\"BreakoutBand.com.xml\"><securecookie host=\"^www\\.breakoutband\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Breitbandmessung.de\" f=\"Breitbandmessung.de.xml\"><exclusion pattern=\"^http://breitbandmessung.de/(test|images|api|public)(/)?\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bremer Bank\" default_off=\"failed ruleset test\" f=\"Bremer-Bank.xml\"><securecookie host=\"^(?:careers|rdc|www)\\.bremer\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Brendan Eich.com\" f=\"Brendan_Eich.xml\"><securecookie host=\"^(?:www\\.)?brendaneich\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Brennan Center.org\" f=\"Brennan_Center.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Brennan Novak.com\" default_off=\"failed ruleset test\" f=\"Brennan_Novak.com.xml\"><securecookie host=\"^(?:www\\.)?brennannovak\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Brent.gov.uk (partial)\" f=\"Brent.gov.uk.xml\"><exclusion pattern=\"^http://democracy\\.brent\\.gov\\.uk/+(?!(?:ieLogon|ieRegisterUser|mgRegisterKeywordInterest)\\.aspx|sitespecific/)\"/><securecookie host=\"^\\.\" name=\"^_gat$\"/><securecookie host=\"^(?!democracy\\.)\\w\" name=\".\"/><rule from=\"^http://archive\\.brent\\.gov\\.uk/\" to=\"https://www.brent.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bretagne-web.eu\" default_off=\"mismatched\" f=\"Bretagne-web.eu.xml\"><securecookie host=\"^bretagne-web\\.eu$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?bretagne-web\\.eu/\" to=\"https://bretagne-web.eu/\"/></ruleset>", "<ruleset name=\"Breuninger (partial)\" f=\"Breuninger.xml\"><rule from=\"^http://(?:www\\.)?breuninger\\.com/(_css/|_media/|e/|(?:login|register)Page\\.cmd|medias/)\" to=\"https://www.breuninger.com/$1\"/></ruleset>", "<ruleset name=\"Brian Clifton.com\" f=\"Brian_Clifton.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Brian Smith.org\" f=\"Brian_Smith.org.xml\"><securecookie host=\"^\\.briansmith\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?briansmith\\.org/\" to=\"https://briansmith.org/\"/></ruleset>", "<ruleset name=\"briandunning.com\" f=\"Briandunning.xml\"><securecookie host=\"^www\\.briandunning\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BrickLink\" f=\"BrickLink.xml\"><securecookie host=\"^www\\.bricklink\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?bricklink\\.com/\" to=\"https://www.bricklink.com/\"/></ruleset>", "<ruleset name=\"Bridge Road Marketing.com\" f=\"Bridge_Road_Marketing.com.xml\"><securecookie host=\"^bridgeroadmarketing\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bridgeways.com\" default_off=\"failed ruleset test\" f=\"Bridgeways.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?bridgeways\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BrieHost.com\" f=\"BrieHost.com.xml\"><securecookie host=\"^\\.briehost\\.com$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Briggs and Riley\" f=\"Briggs_and_Riley.xml\"><rule from=\"^http://briggs-riley\\.com/\" to=\"https://www.briggs-riley.com/\"/><rule from=\"^http://([^/:@]+)?\\.briggs-riley\\.com/\" to=\"https://$1.briggs-riley.com/\"/></ruleset>", "<ruleset name=\"Bright-Things.com\" f=\"Bright-Things.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BrightContext.com\" default_off=\"expired\" f=\"BrightContext.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BrightFort.com (mismatched)\" default_off=\"mismatched\" f=\"BrightFort.com-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BrightFort.com (partial)\" f=\"BrightFort.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Btrll.com\" f=\"BrightRoll.xml\"><securecookie host=\"^\\.btrll\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BrightTALK.com (partial)\" default_off=\"failed ruleset test\" f=\"BrightTALK.com.xml\"><exclusion pattern=\"^http://go\\.brighttalk\\.com/+(?!$|\\?|css/|images/|rs/)\"/><rule from=\"^http://go\\.brighttalk\\.com/+(?:\\?.*)?$\" to=\"https://app-sji.marketo.com/\"/><rule from=\"^http://go\\.brighttalk\\.com/\" to=\"https://na-sji.marketo.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BrightTag (problematic)\" default_off=\"mismatched\" f=\"BrightTag-problematic.xml\"><rule from=\"^http://(?:www\\.)?(?:the)?brighttag\\.com/\" to=\"https://www.brighttag.com/\"/></ruleset>", "<ruleset name=\"BrightTag (partial)\" f=\"BrightTag.xml\"><securecookie host=\"^(?!\\.thebrighttag\\.com$).\" name=\".\"/><rule from=\"^http://[ab]\\.s\\.thebrighttag\\.com/\" to=\"https://s.thebrighttag.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bright Hub.com (partial)\" default_off=\"failed ruleset test\" f=\"Bright_Hub.com.xml\"><rule from=\"^http://s\\.brighthub\\.com/s/css/\" to=\"https://ss.brighthub.com/s/css/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bright Kids NYC\" default_off=\"failed ruleset test\" f=\"Bright_Kids_NYC.xml\"><securecookie host=\"^(?:www)?\\.brightkidsnyc.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?brightkidsnyc\\.com/\" to=\"https://www.brightkidsnyc.com/\"/></ruleset>", "<ruleset name=\"Brightcove (partial)\" f=\"Brightcove.xml\"><exclusion pattern=\"^http://admin\\.brightcove\\.com/crossdomain\\.xml\"/><exclusion pattern=\"^https://secure.brightcove.com/services/viewer/\"/><exclusion pattern=\"^http://admin\\.brightcove\\.com/viewer/us20[\\d\\.]+/BrightcoveBootloader\\.swf(?:\\?|$)\"/><exclusion pattern=\"^http://admin\\.brightcove\\.com/viewer/.+\\.swf(?:\\?|$)\"/><securecookie host=\"^\\w.*\\.brightcove\\.com$\" name=\".+\"/><rule from=\"^http://c\\.brightcove\\.com/services/viewer/\" to=\"https://secure.brightcove.com/services/viewer/\"/><rule from=\"^http://((?:api|(?:read\\.|transcode\\.|write\\.)?appcloud|blog|brightcove01-secure|docs|files|images\\.gallery|goku|img|link|metrics|my|register|secure|services|signin|solutions|support|videocloud|www)\\.)?brightcove\\.com/\" to=\"https://$1brightcove.com/\"/><rule from=\"^http://brightcove01\\.brightcove\\.com/\" to=\"https://brightcove01-secure.brightcove.com/\"/><rule from=\"^http://s?admin\\.brightcove\\.com/\" to=\"https://sadmin.brightcove.com/\"/><rule from=\"^http://opensource\\.brightcove\\.com/+[^?]*\" to=\"https://docs.brightcove.com/en/video-cloud/open-source/\"/></ruleset>", "<ruleset name=\"brighteroption.com\" f=\"Brighteroption.com.xml\"><securecookie host=\"^\\.brighteroption\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Brightidea.com (partial)\" f=\"Brightidea.xml\"><securecookie host=\"^\\.brightidea\\.com$\" name=\"^__qca$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Brighton (partial)\" f=\"Brighton.xml\"><securecookie host=\"\\.brightoncollectibles\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?brighton\\.com/(content/|css/|Public/|Shop/Customer(?:$|\\?|/)|store_image/|Styles/)\" to=\"https://$1brighton.com/$2\"/><rule from=\"^http://(www\\.)?brightoncollectibles\\.com/\" to=\"https://$1brightoncollectibles.com/\"/></ruleset>", "<ruleset name=\"Brilig.com\" default_off=\"refused\" f=\"Brilig.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bring the Gig\" f=\"Bring_the_Gig.xml\"><securecookie host=\"^\\.bringthegig\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Brinkster.com\" f=\"Brinkster.com.xml\"><securecookie host=\"^(?:webmail)?\\.brinkster\\.com$\" name=\".+\"/><rule from=\"^http://((?:help|secure|webmail|www)\\.)?brinkster\\.com/\" to=\"https://$1brinkster.com/\"/></ruleset>", "<ruleset name=\"BritAc.ac.uk (partial)\" f=\"BritAc.ac.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Britannica.com (partial)\" f=\"Britannica.com.xml\"><securecookie host=\"^(?:safe1|www)?\\.britannica\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?britannica\\.com/\" to=\"https://www.britannica.com/\"/><rule from=\"^http://safe(1)?\\.britannica\\.com/\" to=\"https://safe$1.britannica.com/\"/></ruleset>", "<ruleset name=\"Britcoin.co.uk\" default_off=\"failed ruleset test\" f=\"Britcoin.co.uk.xml\"><rule from=\"^http://(?:www\\.)?britcoin\\.co\\.uk/\" to=\"https://www.britcoin.co.uk/\"/></ruleset>", "<ruleset name=\"BriteObjects\" default_off=\"mismatched\" f=\"BriteObjects.xml\"><rule from=\"^http://(?:www\\.)?briteobjects\\.com/\" to=\"https://www.briteobjects.com/\"/></ruleset>", "<ruleset name=\"British Gas\" f=\"BritishGas.co.uk.xml\"><rule from=\"^http://britishgas\\.co\\.uk/\" to=\"https://www.britishgas.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"British Airline Pilots Association\" f=\"British_Airline_Pilots_Association.xml\"><rule from=\"^http://balpa\\.org/\" to=\"https://www.balpa.org/\"/><rule from=\"^http://([^/:@]+)?\\.balpa\\.org/\" to=\"https://$1.balpa.org/\"/></ruleset>", "<ruleset name=\"British Library (partial)\" f=\"British_Library.xml\"><securecookie host=\"^pressandpolicy\\.bl\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"British National Formulary (partial)\" f=\"British_National_Formulary.xml\"><rule from=\"^http://(?:www\\.)?bnf\\.org/bnf/((?:account|login|password|request_registration)\\.htm|images/|style/|theme/)\" to=\"https://www.bnf.org/bnf/$1\"/></ruleset>", "<ruleset name=\"British Red Cross (partial)\" f=\"British_Red_Cross.xml\"><exclusion pattern=\"^http://(?:m\\.|www\\.)?redcross\\.org\\.uk/(?!(?:[\\w/-]+/)?~/media/|css/|images/)\"/><securecookie host=\"^\\.?giftshop\\.redcross\\.org\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?redcross\\.org\\.uk/\" to=\"https://www.redcross.org.uk/\"/><rule from=\"^http://(?:www\\.)?giftshop\\.redcross\\.org\\.uk/\" to=\"https://giftshop.redcross.org.uk/\"/><rule from=\"^http://((?:www\\.)?everydayfirstaid|m)\\.redcross\\.org\\.uk/\" to=\"https://$1.redcross.org.uk/\"/></ruleset>", "<ruleset name=\"Brixwork.com (partial)\" platform=\"mixedcontent\" f=\"Brixwork.com.xml\"><securecookie host=\"^www\\.brixwork\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"brmlab\" f=\"Brmlab.cz.xml\"><securecookie host=\"^(?:www\\.)?brmlab\\.cz$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?brmlab\\.cz/\" to=\"https://www.brmlab.cz/\"/></ruleset>", "<ruleset name=\"Bro.org (partial)\" f=\"Bro.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Broad Institute\" f=\"Broad-Institute.xml\"><securecookie host=\"(?:www)?\\.broadinstitute\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?broadinstitute\\.org/\" to=\"https://www.broadinstitute.org/\"/></ruleset>", "<ruleset name=\"Broadband-Forum.org\" default_off=\"failed ruleset test\" f=\"Broadband-Forum.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Broadband Convergent\" f=\"Broadband_Convergent.xml\"><securecookie host=\"^www\\.broadbandconvergent\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Broadband Map.gov\" f=\"Broadband_Map.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Broadbandbuyer.co.uk\" f=\"Broadbandbuyer.co.uk.xml\"><securecookie host=\"^www\\.broadbandbuyer\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://broadbandbuyer\\.co\\.uk/\" to=\"https://www.broadbandbuyer.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"broadbandchoices.co.uk\" default_off=\"mismatched\" f=\"Broadbandchoices.co.uk.xml\"><rule from=\"^http://(?:www\\.)?broadbandchoices\\.co\\.uk/\" to=\"https://www.broadbandchoices.co.uk/\"/></ruleset>", "<ruleset name=\"BroadcastJobs.co.uk (partial)\" f=\"BroadcastJobs.co.uk.xml\"><securecookie host=\"^rs\\.broadcastjobs\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BroadcasTheNet\" default_off=\"failed ruleset test\" f=\"Broadcasthe.net.xml\"><securecookie host=\"^(?:.*\\.)?broadcastthe\\.net$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Broadcom.com (partial)\" default_off=\"failed ruleset test\" f=\"Broadcom.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Broadcom Foundation.org\" default_off=\"failed ruleset test\" f=\"Broadcom_Foundation.org.xml\"><securecookie host=\"^www\\.broadcomfoundation\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?broadcomfoundation\\.org/\" to=\"https://www.broadcomfoundation.org/\"/></ruleset>", "<ruleset name=\"Broadland.gov.uk (partial)\" f=\"Broadland.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://consult\\.broadland\\.gov\\.uk/\" to=\"https://broadland-consult.objective.co.uk/\"/></ruleset>", "<ruleset name=\"Brockman\" f=\"Brockman.xml\"><rule from=\"^http://(?:www\\.)?brockman\\.com/\" to=\"https://www.brockman.com/\"/></ruleset>", "<ruleset name=\"Brokentoaster\" default_off=\"mismatched\" f=\"Brokentoaster.xml\"><rule from=\"^http://(?:www\\.)?brokentoaster\\.com/\" to=\"https://www.brokentoaster.com/\"/></ruleset>", "<ruleset name=\"Bromley.gov.uk\" f=\"Bromley.gov.uk.xml\"><securecookie host=\"^\\.?www\\.bromley\\.gov\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?bromley\\.gov\\.uk/\" to=\"https://www.bromley.gov.uk/\"/><rule from=\"^http://fix\\.bromley\\.gov\\.uk/\" to=\"https://fix.bromley.gov.uk/\"/></ruleset>", "<ruleset name=\"Bronto Software (partial)\" f=\"Bronto_Software.xml\"><securecookie host=\"^\\.(?:bm23|fyleio)\\.com$\" name=\"^CISFOR$\"/><securecookie host=\"^\\.app\\.bronto\\.com$\" name=\".+\"/><rule from=\"^http://(\\w+)\\.bm23\\.com/\" to=\"https://$1.bm23.com/\"/><rule from=\"^http://(app|appstatic|content\\d*|hosting|static)\\.bronto\\.com/\" to=\"https://$1.bronto.com/\"/><rule from=\"^http://mkto\\.bronto\\.com/(cs|image|j|r)s/\" to=\"https://na-c.marketo.com/$1s/\"/><rule from=\"^http://(?:www\\.)?fyleio\\.com/(?:\\?.*)?$\" to=\"https://app.bronto.com/login/index/login/\"/><rule from=\"^http://hosting\\.fyleio\\.com/\" to=\"https://hosting.fyleio.com/\"/></ruleset>", "<ruleset name=\"Brookings.edu (partial)\" default_off=\"failed ruleset test\" f=\"Brookings_Institution.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Brookline College.edu\" default_off=\"failed ruleset test\" f=\"Brookline_College.edu.xml\"><securecookie host=\"^\\.?brooklinecollege\\.edu$\" name=\".+\"/><rule from=\"^http://((?:apply|fa|fbapp|mysite|www)\\.)?brooklinecollege\\.edu/\" to=\"https://$1brooklinecollege.edu/\"/></ruleset>", "<ruleset name=\"Brookside Capital\" default_off=\"failed ruleset test\" f=\"Brookside_Capital.xml\"><securecookie host=\"^(?:.*\\.)?brooksidefund\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Suny Broome.edu (partial)\" default_off=\"failed ruleset test\" f=\"BroomeCC.xml\"><exclusion pattern=\"^http://(?:news|www[1-3])\\.sunybroome\\.edu/+(?!\\w+/wp-content/|wp-content/)\"/><securecookie host=\"^banner\\.sunybroome\\.edu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Brown Paper Tickets (partial)\" f=\"Brown-Paper-Tickets.xml\"><exclusion pattern=\"^http://community\\.\"/><exclusion pattern=\"^http://(?:www\\.)?brownpapertickets\\.com/event/\"/><securecookie host=\"^m\\.bpt\\.me$\" name=\".*\"/><securecookie host=\"^(?:.*\\.)?brownpapertickets\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?bpt\\.(?:bz|me)/\" to=\"https://www.brownpapertickets.com/\"/><rule from=\"^http://m\\.bpt\\.(?:bz|me)/\" to=\"https://m.bpt.me/\"/><rule from=\"^http://brownpapertickets\\.com/\" to=\"https://www.brownpapertickets.com/\"/><rule from=\"^http://(\\w+)\\.brownpapertickets\\.com/\" to=\"https://$1.brownpapertickets.com/\"/></ruleset>", "<ruleset name=\"Brown.edu (partial)\" default_off=\"failed ruleset test\" f=\"Brown_University.xml\"><securecookie host=\".+\\.brown\\.edu$\" name=\".+\"/><rule from=\"^http://www\\.research\\.brown\\.edu/\" to=\"https://research.brown.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BrowseAloud.com\" default_off=\"failed ruleset test\" f=\"BrowseAloud.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Browser-Statistik.de\" f=\"Browser-Statistik.de.xml\"><securecookie host=\"^www\\.browser-statistik\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BrowserID.org\" default_off=\"failed ruleset test\" f=\"BrowserID.xml\"><securecookie host=\"^(?:www\\.)?browserid\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BrowserLeaks.com\" f=\"BrowserLeaks.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BrowserShots\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"BrowserShots.xml\"><securecookie host=\"^(?:.+\\.)?browsershots\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?browsershots\\.org/\" to=\"https://browsershots.org/\"/></ruleset>", "<ruleset name=\"Browser Addon.com\" default_off=\"self-signed\" f=\"Browser_Addon.com.xml\"><securecookie host=\"^(?:www\\.)?browseraddon\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?browseraddon\\.com/\" to=\"https://www.browseraddon.com/\"/></ruleset>", "<ruleset name=\"Browser Hacker.com\" default_off=\"failed ruleset test\" f=\"Browser_Hacker.com.xml\"><rule from=\"^http://www\\.browserhacker\\.com/\" to=\"https://browserhacker.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"browsermob.com\" default_off=\"expired\" f=\"Browsermob.com.xml\"><rule from=\"^http://(?:www\\.)?browsermob\\.com/\" to=\"https://browsermob.com/\"/></ruleset>", "<ruleset name=\"Browsersafetymark.io\" default_off=\"failed ruleset test\" f=\"Browsersafetymark.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BruCON.org (partial)\" default_off=\"self-signed\" f=\"BruCON.org.xml\"><rule from=\"^http://ssl\\.brucon\\.org/\" to=\"https://ssl.brucon.org/\"/></ruleset>", "<ruleset name=\"Bruce Perens\" f=\"Bruce-Perens.xml\"><securecookie host=\"^(?:w*\\.)?perens\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bruno Postle\" default_off=\"expired, self-signed\" f=\"Bruno-Postle.xml\"><rule from=\"^http://www\\.bruno\\.postle\\.net/\" to=\"https://www.bruno.postle.net/\"/></ruleset>", "<ruleset name=\"Bruteforce.gr (Partial)\" f=\"Bruteforce.gr.xml\"><rule from=\"^http://(www\\.)?bruteforce\\.gr/\" to=\"https://bruteforce.gr/\"/></ruleset>", "<ruleset name=\"Bspb.ru\" f=\"Bspb.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BtcTrade.com\" f=\"BtcTrade.com.xml\"><securecookie host=\"^www\\.btctrade\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Btcc.com\" f=\"Btcc.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bter.com (partial)\" f=\"Bter.com.xml\"><securecookie host=\"^\\.?bter\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BTP.Police.uk (partial)\" f=\"Btp.police.uk.xml\"><rule from=\"^http://btp\\.police\\.uk/\" to=\"https://www.btp.police.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bttrack.com\" f=\"Bttrack.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BucketListly.com (partial)\" f=\"BucketListly.com.xml\"><rule from=\"^http://(?:www\\.)?bucketlistly\\.com/(?=favicon\\.ico|users/new(?:$|[?/]))\" to=\"https://www.bucketlistly.com/\"/></ruleset>", "<ruleset name=\"Bucket Explorer.com (partial)\" f=\"Bucket_Explorer.com.xml\"><rule from=\"^http://(?:www\\.)?bucketexplorer\\.com/favicon\\.ico\" to=\"https://d1davc07w1ubq9.cloudfront.net/favicon.ico\"/><rule from=\"^http://coppermine\\.bucketexplorer\\.com/\" to=\"https://s3.amazonaws.com/coppermine.bucketexplorer.com/\"/><rule from=\"^http://images\\.bucketexplorer\\.com/\" to=\"https://d1davc07w1ubq9.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Bucknell University (partial)\" f=\"Bucknell_University.xml\"><rule from=\"^http://www\\.b-link\\.bucknell\\.edu/\" to=\"https://b-link.bucknell.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bucyrus Telegraph Forum\" f=\"Bucyrus_Telegraph_Forum.xml\"><securecookie host=\"^www\\.bucyrustelegraphforum\\.com$\" name=\".+\"/><rule from=\"^http://(?:cmsimg\\.|www\\.)?bucyrustelegraphforum\\.com/\" to=\"https://www.bucyrustelegraphforum.com/\"/></ruleset>", "<ruleset name=\"BuddyPress.org\" f=\"BuddyPress.org.xml\"><rule from=\"^http://(\\w+\\.)?buddypress\\.org/\" to=\"https://$1buddypress.org/\"/></ruleset>", "<ruleset name=\"Budget Insurance.com\" f=\"Budget_Insurance.xml\"><securecookie host=\".\\.budgetinsurance\\.com$\" name=\".\"/><rule from=\"^http://budgetinsurance\\.com/\" to=\"https://www.budgetinsurance.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Budgetgolf.se\" f=\"Budgetgolf.se.xml\"><rule from=\"^http://www\\.budgetgolf\\.se/\" to=\"https://www.budgetgolf.se/\"/><rule from=\"^http://budgetgolf\\.se/\" to=\"https://www.budgetgolf.se/\"/></ruleset>", "<ruleset name=\"budgetkredit.ch (partial)\" f=\"Budgetkredit.ch.xml\"><rule from=\"^http://(www\\.)?budgetkredit\\.ch/(core/|css/|de/kredit/kreditantrag/antrag\\.php|pix/)\" to=\"https://$1budgetkredit.ch/$2\"/></ruleset>", "<ruleset name=\"Buds Gun Shop\" f=\"Buds_Gun_Shop.xml\"><securecookie host=\"^\\.budsgunshop\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bürger-CERT\" f=\"Buerger-CERT.xml\"><securecookie host=\"^(?:.*\\.)?buerger-cert\\.de$\" name=\".+\"/><rule from=\"^http://buerger-cert\\.de/\" to=\"https://www.buerger-cert.de/\"/><rule from=\"^http://([^/:@]+)?\\.buerger-cert\\.de/\" to=\"https://$1.buerger-cert.de/\"/></ruleset>", "<ruleset name=\"Bürgernetz Gera-Greiz\" f=\"Buergernetz-Gera-Greiz.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Buffalo-Global.com\" default_off=\"mismatched\" f=\"Buffalo-Global.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Buffalo-Technology.com\" default_off=\"mismatched, self-signed\" f=\"Buffalo-Technology.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Buffalo.edu (false MCB)\" platform=\"mixedcontent\" f=\"Buffalo.edu-falsemixed.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Buffalo State College (partial)\" f=\"Buffalo_State_College.xml\"><securecookie host=\"^chngpwd\\.buffalostate\\.edu$\" name=\".+\"/><securecookie host=\"^giving\\.buffalostate\\.edu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Buffer app.com (partial)\" default_off=\"failed ruleset test\" f=\"Buffer.xml\"><securecookie host=\"^(?:(?:cibot|happiness|widgets|www)\\.)?bufferapp\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bufferbloat.net\" default_off=\"expired\" f=\"Bufferbloat.xml\"><securecookie host=\"^www\\.bufferbloat\\.net$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BufferedIO\" default_off=\"mismatched\" f=\"BufferedIO.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BugMeNot.com\" default_off=\"failed ruleset test\" f=\"BugMeNot.com.xml\"><securecookie host=\"^\\.?bugmenot\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bugcrowd user content.com\" f=\"Bugcrowd_user_content.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bugsnag.com (partial)\" f=\"Bugsnag.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bugzilla.org\" f=\"Bugzilla.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Build Better.Software\" default_off=\"failed ruleset test\" f=\"Build_Better.Software.xml\"><securecookie host=\"^\\.buildbetter\\.software$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Build it Break it.org\" default_off=\"failed ruleset test\" f=\"Build_it_Break_it.org.xml\"><securecookie host=\"^www\\.builditbreakit\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BulbMan\" default_off=\"failed ruleset test\" f=\"Bulbman.xml\"><rule from=\"^http://(?:www\\.)?bulbman\\.com/\" to=\"https://www.bulbman.com/\"/></ruleset>", "<ruleset name=\"BulkSMS\" f=\"BulkSMS.xml\"><securecookie host=\"^(?:.+\\.)?bulksms\\.co\\.uk$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?bulksms\\.co\\.uk/\" to=\"https://www.bulksms.co.uk/\"/></ruleset>", "<ruleset name=\"BulletProof Meteor.com\" default_off=\"failed ruleset test\" f=\"BulletProof_Meteor.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bulletin.net\" f=\"Bulletin.net.xml\"><securecookie host=\"^(?:www)?\\.bulletin\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bulletin Messenger.net\" f=\"Bulletin_Messenger.net.xml\"><securecookie host=\"^m\\.bulletinmessenger\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?bulletinmessenger\\.net/\" to=\"https://www.bulletinmessenger.net/\"/><rule from=\"^http://m\\.bulletinmessenger\\.net/\" to=\"https://m.bulletinmessenger.net/\"/></ruleset>", "<ruleset name=\"Bulletproof Exec.com (partial)\" f=\"Bulletproof_Exec.com.xml\"><rule from=\"^http://(www\\.)?bulletproofexec\\.com/(?!/*(?:$|\\?)|(?:category/podcasts|contact|have-dave-asprey-speak-at-your-next-event|upgraded-whey)(?:$|[?/]))\" to=\"https://$1bulletproofexec.com/\"/><rule from=\"^http://support\\.bulletproofexec\\.com/favicon\\.ico\" to=\"https://bulletproofexec.zendesk.com/favicon.ico\"/></ruleset>", "<ruleset name=\"Bullguard\" f=\"Bullguard.com.xml\"><rule from=\"^http://www\\.bullguard\\.com/\" to=\"https://www.bullguard.com/\"/><rule from=\"^http://bullguard\\.com/\" to=\"https://www.bullguard.com/\"/></ruleset>", "<ruleset name=\"BullionStar.com\" f=\"BullionStar.com.xml\"><securecookie host=\"^(?:static|www)\\.bullionstar\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bullock Inc.com\" f=\"Bullock_Inc.com.xml\"><securecookie host=\"^(?:www\\.)?bullockinc\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bunadformenn.info (partial)\" default_off=\"failed ruleset test\" f=\"Bunadformenn.info.xml\"><rule from=\"^http://cdn\\.bunadformenn\\.info/\" to=\"https://dml5atgx9m0j8.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Bunchball.com (partial)\" default_off=\"failed ruleset test\" f=\"Bunchball.com.xml\"><exclusion pattern=\"^http://go\\.bunchball\\.com/+(?!$|\\?|css/|images/|rs/)\"/><rule from=\"^http://go\\.bunchball\\.com/+(?:\\?.*)?$\" to=\"https://www.bunchball.com/\"/><rule from=\"^http://go\\.bunchball\\.com/\" to=\"https://na-sjl.marketo.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bunchball.net\" default_off=\"failed ruleset test\" f=\"Bunchball.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bundanon Trust\" default_off=\"failed ruleset test\" f=\"BundanonTrust.xml\"><rule from=\"^http://(?:www\\.)?bundanon\\.com\\.au/\" to=\"https://www.bundanon.com.au/\"/></ruleset>", "<ruleset name=\"Bundesamt für Verfassungsschutz\" f=\"Bundesamt_fuer_Verfassungsschutz.xml\"><rule from=\"^http://verfassungsschutz\\.de/\" to=\"https://www.verfassungsschutz.de/\"/><rule from=\"^http://([^/:@]+)?\\.verfassungsschutz\\.de/\" to=\"https://$1.verfassungsschutz.de/\"/></ruleset>", "<ruleset name=\"Bundeskanzlerin\" f=\"Bundeskanzlerin.xml\"><rule from=\"^http://bundeskanzlerin\\.de/\" to=\"https://www.bundeskanzlerin.de/\"/><rule from=\"^http://([^/:@]+)?\\.bundeskanzlerin\\.de/\" to=\"https://$1.bundeskanzlerin.de/\"/></ruleset>", "<ruleset name=\"Bundesministerium des Innern\" f=\"Bundesministerium_des_Innern.xml\"><rule from=\"^http://bmi\\.bund\\.de/\" to=\"https://www.bmi.bund.de/\"/><rule from=\"^http://bevoelkerungsschutz-portal\\.de/\" to=\"https://www.bevoelkerungsschutz-portal.de/\"/><rule from=\"^http://115\\.de/\" to=\"https://www.115.de/\"/><rule from=\"^http://d115\\.de/\" to=\"https://www.d115.de/\"/><rule from=\"^http://softwareplattform\\.d115\\.de/\" to=\"https://softwareplattform.115.de/\"/><rule from=\"^http://www\\.softwareplattform\\.d115\\.de/\" to=\"https://softwareplattform.115.de/\"/><rule from=\"^http://softwareplattform\\.test\\.d115\\.de/\" to=\"https://softwareplattform.test.115.de/\"/><rule from=\"^http://www\\.softwareplattform\\.test\\.d115\\.de/\" to=\"https://softwareplattform.test.115.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bundesnachrichtendienst\" f=\"Bundesnachrichtendienst.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bundesnetzagentur\" f=\"Bundesnetzagentur.xml\"><securecookie host=\"^www\\.bundesnetzagentur\\.de$\" name=\".*\"/><rule from=\"^http://bundesnetzagentur\\.de/\" to=\"https://www.bundesnetzagentur.de/\"/><rule from=\"^http://netzausbau\\.de/\" to=\"https://www.netzausbau.de/\"/><rule from=\"^http://www\\.plus\\.netzausbau\\.de/\" to=\"https://plus.netzausbau.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bundespolizei\" f=\"Bundespolizei.xml\"><rule from=\"^http://bundespolizei\\.de/\" to=\"https://www.bundespolizei.de/\"/><rule from=\"^http://([^/:@]+)?\\.bundespolizei\\.de/\" to=\"https://$1.bundespolizei.de/\"/></ruleset>", "<ruleset name=\"Bundesrat.de\" f=\"Bundesrat.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bundesverband IT-Mittelstand\" default_off=\"expired, mismatched\" f=\"Bundesverband_IT-Mittelstand.xml\"><rule from=\"^http://(?:www\\.)?bitmi\\.de/\" to=\"https://bitmi.de/\"/></ruleset>", "<ruleset name=\"Bundesverfassungsgericht.de\" f=\"Bundesverfassungsgericht.xml\"><securecookie host=\"^(.*\\.)?bundesverfassungsgericht\\.de$\" name=\".+\"/><securecookie host=\"^(.*\\.)?bverfg\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bundle.media (partial)\" f=\"Bundle.media.xml\"><securecookie host=\"^\\.bundle\\.media$\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bundler.io\" f=\"Bundler.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bundlestars.com\" f=\"Bundlestars.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bungie\" f=\"Bungie.xml\"><rule from=\"^http://(?:www\\.)?bungie\\.net/\" to=\"https://www.bungie.net/\"/></ruleset>", "<ruleset name=\"Bunnie Huang\" f=\"Bunnie_Huang.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bupa\" f=\"Bupa.xml\"><exclusion pattern=\"^http://(www\\.)?bupa\\.com/$\"/><securecookie host=\"^(www\\.)?bupa\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bureau of Infrastructure, Transport and Regional Economics\" f=\"BureauofInfrastructureTransportandRegionalEconomics.xml\"><rule from=\"^http://(?:www\\.)?bitre\\.gov\\.au/\" to=\"https://www.bitre.gov.au/\"/></ruleset>", "<ruleset name=\"Burlington Free Press\" f=\"Burlington_Free_Press.xml\"><securecookie host=\"^www\\.burlingtonfreepress\\.com$\" name=\".+\"/><rule from=\"^http://(?:cmsimg\\.|www\\.)?burlingtonfreepress\\.com/\" to=\"https://www.burlingtonfreepress.com/\"/></ruleset>", "<ruleset name=\"Burning Shed\" f=\"Burning-Shed.xml\"><securecookie host=\"^(?:www\\.)?burningshed\\.co(?:m|(?:\\.uk))$\" name=\".+\"/><rule from=\"^http://(www\\.)?burningshed\\.co(m|(\\.uk))/\" to=\"https://$1burningshed.co$2/\"/></ruleset>", "<ruleset name=\"Burning Series\" default_off=\"failed ruleset test\" f=\"BurningSeries.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Burnley.gov.uk (false MCB)\" platform=\"mixedcontent\" f=\"Burnley.gov.uk-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Burnley.gov.uk (partial)\" f=\"Burnley.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BurstNET (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"BurstNET.xml\"><securecookie host=\"^.+\\.burst(?:\\.net|net\\.eu)$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Burst Media\" default_off=\"failed ruleset test\" f=\"Burst_Media.xml\"><securecookie host=\"^(?:www)?\\.burstmedia\\.co(?:\\.uk|m)$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?burstmedia\\.co(\\.uk|m)/\" to=\"https://www.burstmedia.co$1/\"/></ruleset>", "<ruleset name=\"Burstnet\" f=\"Burstnet.com.xml\"><securecookie host=\"^\\.burstnet\\.com$\" name=\"^BI\\d+$\"/><rule from=\"^http://www\\.burstnet\\.com/\" to=\"https://www.burstnet.com/\"/></ruleset>", "<ruleset name=\"Burt (mismatches)\" default_off=\"mismatched\" f=\"Burt-mismatches.xml\"><rule from=\"^http://(?:www\\.)?burtcorp\\.com/\" to=\"https://www.burtcorp.com/\"/></ruleset>", "<ruleset name=\"Burt.io (partial)\" f=\"Burt.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Burt (partial)\" f=\"Burt.xml\"><rule from=\"^http://measure\\.richmetrics\\.com/\" to=\"https://d3q6px0y2suh5n.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Burt hub.com\" default_off=\"failed ruleset test\" f=\"Burt_hub.com.xml\"><securecookie host=\"^\\.burthub\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Buscapé (mismatches)\" default_off=\"mismatched\" f=\"Buscape-mismatches.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BusinessAU\" f=\"BusinessAU.xml\"><rule from=\"^http://(?:www\\.)?abr\\.business\\.gov\\.au/\" to=\"https://abr.business.gov.au/\"/><rule from=\"^http://(?:www\\.)?ablis\\.business\\.gov\\.au/\" to=\"https://ablis.business.gov.au/\"/></ruleset>", "<ruleset name=\"BusinessInsider.com (partial)\" f=\"BusinessInsider.xml\"><exclusion pattern=\"^http://static(\\d|-ssl)?.businessinsider.com/assets/js/app/partners/ooyala/skin.json$\"/><exclusion pattern=\"^http://www\\.businessinsider\\.com/(?!assets/|favicon\\.ico|login)\"/><securecookie host=\"^\\.businessinsider\\.com$\" name=\"^OAX$\"/><securecookie host=\"^intelligence\\.businessinsider\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BusinessWeek.com (partial)\" f=\"BusinessWeek.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Business 2 Community (partial)\" f=\"Business_2_Community.xml\"><rule from=\"^http://cdn\\d?\\.business2community\\.com/\" to=\"https://a413375ddb981b128589-d09eee90a0d59eeeae019b649aa3ca91.ssl.cf2.rackcdn.com/\"/></ruleset>", "<ruleset name=\"Business Catalyst.com (mismatched)\" default_off=\"mismatched\" f=\"Business_Catalyst.com-problematic.xml\"><securecookie host=\"^\\.?businesscatalyst\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?businesscatalyst\\.com/\" to=\"https://businesscatalyst.com/\"/></ruleset>", "<ruleset name=\"Business Catalyst.com (partial)\" f=\"Business_Catalyst.com.xml\"><rule from=\"^http://musecdn2\\.businesscatalyst\\.com/\" to=\"https://d35mridaos0l3l.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Business Companion.info\" f=\"Business_Companion.info.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Business Link.gov.uk\" default_off=\"failed ruleset test\" f=\"Business_Link.gov.uk.xml\"><rule from=\"^http://businesslink\\.gov\\.uk/\" to=\"https://www.businesslink.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bussgods.se\" f=\"Bussgods.se.xml\"><rule from=\"^http://(www\\.)?bussgods\\.se/\" to=\"https://www.bussgods.se/\"/></ruleset>", "<ruleset name=\"Buttercoin.com\" default_off=\"522\" f=\"Buttercoin.com.xml\"><securecookie host=\"^\\.buttercoin\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Butterfly Network\" f=\"Butterfly-Network.xml\"><securecookie host=\"(www\\.)?butterflynetinc\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Butterfly Labs.com (partial)\" f=\"Butterfly_Labs.com.xml\"><securecookie host=\"^(?:forum|product)s\\.butterflylabs\\.com$\" name=\".+\"/><rule from=\"^http://(forum|product)s\\.butterflylabs\\.com/\" to=\"https://$1s.butterflylabs.com/\"/></ruleset>", "<ruleset name=\"Buy Premium Tech (partial)\" default_off=\"failed ruleset test\" f=\"Buy-Premium-Tech.xml\"><securecookie host=\"^secure\\.buypremiumtech\\.net$\" name=\".*\"/><rule from=\"^http://secure\\.buypremiumtech\\.net/\" to=\"https://secure.buypremiumtech.net/\"/></ruleset>", "<ruleset name=\"BuyBoard (partial)\" default_off=\"failed ruleset test\" f=\"BuyBoard.xml\"><exclusion pattern=\"^http://vendor\\.\"/><securecookie host=\"^.*\\.buyboard\\.com$\" name=\".*\"/><rule from=\"^http://(\\w+\\.)?buyboard\\.com/\" to=\"https://$1buyboard.com/\"/></ruleset>", "<ruleset name=\"BuySellAds (partial)\" f=\"BuySellAds.xml\"><rule from=\"^http://(www\\.)?buysellads\\.com/(favicon\\.ico|images/|stuff/|users(?:$|\\?|/))\" to=\"https://$1buysellads.com/$2\"/><rule from=\"^http://s3\\.buysellads\\.com/\" to=\"https://s3.buysellads.com/\"/></ruleset>", "<ruleset name=\"BuyTREZOR.com\" f=\"BuyTREZOR.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Buy Veteran (partial)\" f=\"Buy_Veteran.xml\"><rule from=\"^http://(www\\.)?buyveteran\\.com/([aA]bout\\.aspx|[aA]pp_[tT]hemes/|BuyVeteran\\.ico|[gG]ift|[iI]mages/|Join_Step1\\.aspx|[pP]artner|[pP]ress|[sS]tore|[tT]estimonials\\.aspx)\" to=\"https://$1buyveteran.com/$2\"/></ruleset>", "<ruleset name=\"Buycott.com\" f=\"Buycott.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Buycraft.net\" f=\"Buycraft.com.xml\"><securecookie host=\"^(?:server\\.|www\\.|\\.)?buycraft\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BuzzFeed (partial)\" f=\"BuzzFeed.xml\"><rule from=\"^http://buzzfed\\.com/\" to=\"https://www.buzzfeed.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BuzzFocus\" default_off=\"expired, mismatched, self-signed\" f=\"BuzzFocus.xml\"><securecookie host=\"^www\\.buzzfocus\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?buzzfocus\\.com/\" to=\"https://www.buzzfocus.com/\"/></ruleset>", "<ruleset name=\"Buzz VPN\" default_off=\"refused\" f=\"Buzz_VPN.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Buzzdock (partial)\" f=\"Buzzdock.xml\"><rule from=\"^http://(?:www\\.)?buzzdock\\.com/\" to=\"https://www.buzzdock.com/\"/><rule from=\"^http://edge\\.buzzdock\\.com/\" to=\"https://edge.buzzdock.com/\"/></ruleset>", "<ruleset name=\"buzzdoes.com\" default_off=\"failed ruleset test\" f=\"Buzzdoes.com.xml\"><securecookie host=\"^(?:www\\.)?buzzdoes\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Buzzeff\" default_off=\"mismatched\" f=\"Buzzeff.xml\"><rule from=\"^http://(?:www\\.)?buzzeff\\.com/\" to=\"https://buzzeff.com/\"/></ruleset>", "<ruleset name=\"Buzzhosting.org\" default_off=\"failed ruleset test\" f=\"Buzzhosting.org.xml\"><rule from=\"^http://(?:www\\.)?buzzhosting\\.org/\" to=\"https://www.buzzhosting.org/\"/></ruleset>", "<ruleset name=\"Buzzurl\" default_off=\"failed ruleset test\" f=\"Buzzurl.xml\"><securecookie host=\"^\\.?buzzurl\\.jp$\" name=\".+\"/><rule from=\"^http://(?:api\\.|cdn\\.)?buzzurl\\.jp/\" to=\"https://buzzurl.jp/\"/><rule from=\"^http://buzzurl\\.jp\\.eimg\\.jp/\" to=\"https://buzzurl.jp/\"/></ruleset>", "<ruleset name=\"bwbx.io\" f=\"Bwbx.io.xml\"><rule from=\"^http://images\\.bwbx\\.io/\" to=\"https://d3kfrplp7t05mg.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ByCraft.cz\" f=\"ByCraft.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"by David Wittig.com\" f=\"By_David_Wittig.com.xml\"><securecookie host=\"^\\.?bydavidwittig\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bystrobank.ru\" f=\"Bystrobank.ru.xml\"><rule from=\"^http://bystrobank\\.ru/\" to=\"https://www.bystrobank.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Byte.nl\" f=\"Byte.nl.xml\"><securecookie host=\"^service\\.byte\\.nl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Byteark.com (partial)\" f=\"Byteark.com.xml\"><rule from=\"^http://(\\w+\\.(?:cdn|s3)|s3)\\.byteark\\.com/\" to=\"https://$1.byteark.com/\"/></ruleset>", "<ruleset name=\"Bytemark.co.uk (partial)\" default_off=\"failed ruleset test\" f=\"Bytemark.co.uk.xml\"><securecookie host=\".+\\.bytemark\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bytename (buggy)\" default_off=\"breaks bytelove\" f=\"Bytename.xml\"><securecookie host=\"^(?:.*\\.)?bytelove\\.\\w{2,3}$\" name=\".*\"/><rule from=\"^http://(www\\.)?bytelove\\.com/\" to=\"https://$1bytelove.com/\"/><rule from=\"^http://(?:www\\.)?bytelove\\.([ds]e|fr|it|us)/\" to=\"https://bytelove.$1/\"/><rule from=\"^http://(www\\.)?bytename\\.com/\" to=\"https://$1bytename.com/\"/></ruleset>", "<ruleset name=\"Bytenoc.nl\" f=\"Bytenoc.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"C-Base.org (partial)\" f=\"C-Base.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"C-CEX.com\" f=\"C-CEX.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?c-cex\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"C-SPAN Video.org (mismatched)\" default_off=\"mismatched\" f=\"C-SPAN_Video.org-falsemixed.xml\"><securecookie host=\"^www\\.c-spanvideo\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"C-SPAN Video.org (partial)\" f=\"C-SPAN_Video.org.xml\"><rule from=\"^http://images\\.c-spanvideo\\.org/\" to=\"https://d1k1xzqsosjdry.cloudfront.net/\"/><rule from=\"^http://static\\.c-spanvideo\\.org/\" to=\"https://d29dpj283v14nc.cloudfront.net/\"/></ruleset>", "<ruleset name=\"c-and-a.com\" f=\"C-and-a.com.xml\"><securecookie host=\"^(?:www)?\\.c-and-a\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?c-and-a\\.com/\" to=\"https://www.c-and-a.com/\"/><rule from=\"^http://postview\\.c-and-a\\.com/\" to=\"https://postview.c-and-a.com/\"/></ruleset>", "<ruleset name=\"c-ware.de\" f=\"C-ware.de.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?c-ware\\.de/\" to=\"https://dev.c-ware.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TDC.dk\" f=\"C.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"C3S.cc\" f=\"C3S.cc.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"C3VOC.de\" f=\"C3VOC.de.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"c3noc.net\" default_off=\"failed ruleset test\" f=\"C3noc.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"C3tag.com\" f=\"C3tag.com.xml\"><securecookie host=\"^(?:www\\.)?c3tag\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"C4SS.org\" f=\"C4SS.org.xml\"><rule from=\"^http://www\\.c4ss\\.org/\" to=\"https://c4ss.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"c4tw.net (partial)\" default_off=\"failed ruleset test\" f=\"C4tw.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"C9x.me\" f=\"C9x.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CAB Forum.org\" f=\"CA-Browser_Forum.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CA-PCR.fr\" f=\"CA-PCA.fr.xml\"><rule from=\"^http://ca-pca\\.fr/\" to=\"https://www.ca-pca.fr/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"California State Board of Equalization\" f=\"CA-State-Board-of-Equalization.xml\"><securecookie host=\"^(?:efile|www)\\.boe\\.ca\\.gov$\" name=\".+\"/><rule from=\"^(?:http://(?:www\\.)?|https://)boe\\.ca\\.gov/\" to=\"https://www.boe.ca.gov/\"/><rule from=\"^http://efile\\.boe\\.ca\\.gov/\" to=\"https://efile.boe.ca.gov/\"/></ruleset>", "<ruleset name=\"CA Technologies\" f=\"CA-Technologies.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CA-mpr.jp\" f=\"CA-mpr.jp.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CA.com (partial)\" default_off=\"failed ruleset test\" f=\"CA.com.xml\"><exclusion pattern=\"^http://rewrite\\.ca\\.com/+(?!~/media/|[\\w/-]+/~/media/|assets/|favicon\\.ico)\"/><exclusion pattern=\"^http://trials\\.ca\\.com/+(?!favicon\\.ico|us/~/media/)\"/><exclusion pattern=\"^http://www\\.ca\\.com/+(?!assets-digital-commerce/|favicon\\.ico|styles/)\"/><securecookie host=\"^support\\.ca\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CADSI\" f=\"CADSI.xml\"><securecookie host=\"^(?:www\\.)?defenceandsecurity\\.ca$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CAGW.org (partial)\" f=\"CAGW.org.xml\"><securecookie host=\"^\\.?secure\\.cagw\\.org$\" name=\".+\"/><rule from=\"^http://secure\\.cagw\\.org/\" to=\"https://secure.cagw.org/\"/></ruleset>", "<ruleset name=\"CAIR.com\" f=\"CAIR.com.xml\"><securecookie host=\"^(www|ca)\\.cair\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CANNEX\" f=\"CANNEX.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CAREpackage (partial)\" f=\"CAREpackage.xml\"><rule from=\"^http://stage\\.carepackage\\.org/sites/\" to=\"https://stage.carepackage.org/sites/\"/></ruleset>", "<ruleset name=\"CARI.net (self-signed)\" default_off=\"self-signed\" f=\"CARI.net-self-signed.xml\"><rule from=\"^http://webmail\\.cari\\.net/\" to=\"https://webmail.cari.net/\"/></ruleset>", "<ruleset name=\"CARI.net (partial)\" default_off=\"failed ruleset test\" f=\"CARI.net.xml\"><securecookie host=\"^(?:.*\\.)?cari\\.net$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CA Security Council\" f=\"CA_Security_Council.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CACert.org (CAcert)\" platform=\"cacert\" default_off=\"failed ruleset test\" f=\"CAcert.xml\"><securecookie host=\"^\\w+\\.cacert\\.org$\" name=\".+\"/><exclusion pattern=\"\\.crt\"/><exclusion pattern=\"\\.crl\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CBC Blueprint\" f=\"CBC_Blueprint.xml\"><securecookie host=\"^www\\.cbcblueprint\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?cbcblueprint\\.com/\" to=\"https://www.cbcblueprint.com/\"/></ruleset>", "<ruleset name=\"CBCrypt.org\" default_off=\"failed ruleset test\" f=\"CBCrypt.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CBP.gov\" f=\"CBP.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://cbp\\.gov/\" to=\"https://www.cbp.gov/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CBP.net.br\" f=\"CBP.net.br.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CBS Sports Network \" default_off=\"mismatched\" f=\"CBS-Sports-Network.xml\"><securecookie host=\"^.*\\.cbssportsnetwork\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?cbssportsnetwork\\.com/\" to=\"https://www.cbssportsnetwork.com/\"/></ruleset>", "<ruleset name=\"CBS (partial)\" f=\"CBS.xml\"><exclusion pattern=\"^http://(?:www\\.)?cbs\\.com/(?!assets/|base/files/|Common/|favicon\\.ico|thumbnails/|user(?:$|\\?|/))\"/><rule from=\"^http://(www\\.)?cbs\\.com/user/?(?:\\?.*)?$\" to=\"https://$1cbs.com/user/settings/\"/><rule from=\"^http://(fileupload\\.intl\\.|www\\.)?cbs\\.com/\" to=\"https://$1cbs.com/\"/><rule from=\"^http://wwwimage\\.cbs\\.com/\" to=\"https://www.cbs.com/\"/><rule from=\"^http://markets\\.cbsnews\\.com/$\" to=\"https://markets.financialcontent.com/cbsnews\"/><rule from=\"^http://markets\\.cbsnews\\.com/\" to=\"https://markets.financialcontent.com/\"/><rule from=\"^http://www(?:image)?\\.cbsstatic\\.com/\" to=\"https://www.cbs.com/\"/><rule from=\"^http://om\\.cnet\\.com\\.au/\" to=\"https://zdau-cnet.122.2o7.net/\"/><rule from=\"^http://dw\\.com\\.com/\" to=\"https://dw.com.com/\"/></ruleset>", "<ruleset name=\"CBSI.com (partial)\" f=\"CBSI.com.xml\"><securecookie host=\"^dw\\.cbsi\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CBSIstatic.com (partial)\" f=\"CBSIstatic.net.xml\"><rule from=\"^http://tpr\\d\\.cbsistatic\\.com/\" to=\"https://techproresearch-a.akamaihd.net/\"/><rule from=\"^http://tr\\d\\.cbsistatic\\.com/(?!fly/)\" to=\"https://techrepublic-a.akamaihd.net/\"/></ruleset>", "<ruleset name=\"CBS Local (partial)\" default_off=\"akamai cert\" f=\"CBS_Local.xml\"><securecookie host=\"^sacramento\\.cbslocal\\.com$\" name=\".+\"/><rule from=\"^http://sacramento\\.cbslocal\\.com/\" to=\"https://sacramento.cbslocal.com/\"/></ruleset>", "<ruleset name=\"CBS Store\" f=\"CBS_Store.xml\"><securecookie host=\"^\\.cbsstore\\.com$\" name=\".+\"/><rule from=\"^http://(?:secure\\.|www\\.)?cbsstore\\.com/\" to=\"https://secure.cbsstore.com/\"/></ruleset>", "<ruleset name=\"CBendt.de (partial)\" f=\"CBendt.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CC.com (partial)\" f=\"CC.com.xml\"><securecookie host=\"^\\.cc\\.com$\" name=\"^s_vi$\"/><rule from=\"^http://direct\\.cc\\.com/\" to=\"https://direct.cc.com/\"/></ruleset>", "<ruleset name=\"California College of the Arts (partial)\" f=\"CCA.edu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CCAvenue\" f=\"CCAvenue.xml\"><securecookie host=\"^.+\\.ccavenue\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ccavenue\\.com/\" to=\"https://www.ccavenue.com/\"/><rule from=\"^http://(mars|world)\\.ccavenue\\.com/\" to=\"https://$1.ccavenue.com/\"/></ruleset>", "<ruleset name=\"CCBill.com (partial)\" f=\"CCBill.com.xml\"><securecookie host=\"^(?:support|www)\\.ccbill\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CCC-Mannheim.de\" default_off=\"failed ruleset test\" f=\"CCC-Mannheim.de.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CCC.co.il\" f=\"CCC.co.il.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CCC.de (CAcert)\" platform=\"cacert\" default_off=\"failed ruleset test\" f=\"CCC.de-cacert.xml\"><exclusion pattern=\"^http://(?:desalte|ds|dsrad|wahlcomputer|wuppa)\\.ccc\\.de/\"/><securecookie host=\"^(?:svn\\.berlin|hannover)\\.ccc\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ccc.de (partial)\" default_off=\"failed ruleset test\" f=\"CCC.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CCC cloud.com\" f=\"CCC_cloud.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CCCure.com\" f=\"CCCure.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CCCure.org\" f=\"CCCure.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CCCure.training (false MCB)\" platform=\"mixedcontent\" f=\"CCCure.training-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CCCure.training (partial)\" f=\"CCCure.training.xml\"><rule from=\"^http://(www\\.)?cccure\\.training/(?=banners/|gzip_loader\\.php|media/|modules/|templates/)\" to=\"https://$1cccure.training/\"/></ruleset>", "<ruleset name=\"CCCv.de\" f=\"CCCv.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CCDCoE.org\" f=\"CCDCoE.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CCEDK.com (partial)\" f=\"CCEDK.com.xml\"><securecookie host=\"^www\\.ccedk\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CCH\" f=\"CCH.xml\"><securecookie host=\".*\\.cch(?:group)?\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?cch\\.com/\" to=\"https://$1cch.com/\"/><rule from=\"^http://(?:www\\.)?support\\.cch\\.com/\" to=\"https://support.cch.com/\"/><rule from=\"^http://(?:www\\.)?cchgroup\\.com/\" to=\"https://www.cchgroup.com/\"/><rule from=\"^http://(?:www\\.)?tax\\.cchgroup\\.com/\" to=\"https://tax.cchgroup.com/\"/><rule from=\"^http://(stage\\.)?prosystemfxsupport\\.tax\\.cchgroup\\.com/\" to=\"https://$1prosystemfxsupport.tax.cchgroup.com/\"/></ruleset>", "<ruleset name=\"CCIAnet.org\" f=\"CCIA.xml\"><securecookie host=\"^(?:www\\.)?ccianet\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CCRjustice.org\" f=\"CCRjustice.org.xml\"><securecookie host=\"^(?:w*\\.)?ccrjustice\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CCS.com (partial)\" default_off=\"failed ruleset test\" f=\"CCS.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://ccs\\.com/\" to=\"https://www.ccs.com/\"/><rule from=\"^http://ebm\\.e\\.ccs\\.com/\" to=\"https://ebm.cheetahmail.com/\"/><rule from=\"^http://f\\.e\\.ccs\\.com/\" to=\"https://f.chtah.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CDG Commerce.com\" default_off=\"failed ruleset test\" f=\"CDG_Commerce.com.xml\"><securecookie host=\"^(?:myapp\\.|www\\.)?cdgcommerce\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CDN-Apple.com\" f=\"CDN-Apple.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CDN-Redfin.com\" default_off=\"failed ruleset test\" f=\"CDN-Redfin.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CDN77.com (problematic)\" default_off=\"mismatched\" f=\"CDN77.com-problematic.xml\"><rule from=\"^http://([\\w\\-])\\.r\\.cdn77\\.net/\" to=\"https://$1.r.cdn77.net/\"/></ruleset>", "<ruleset name=\"CDN77.com (partial)\" f=\"CDN77.com.xml\"><rule from=\"^http://client\\.cdn77\\.com/\" to=\"https://client.cdn77.com/\"/><rule from=\"^http://([\\w-]+)\\.r\\.worldssl\\.net/\" to=\"https://$1.r.worldssl.net/\"/></ruleset>", "<ruleset name=\"CDNST.NET\" default_off=\"mismatched\" f=\"CDNST.NET.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CDN Instagram.com\" f=\"CDN_Instagram.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CDNetworks.com.sg\" f=\"CDNetworks.com.sg.xml\"><rule from=\"^http://(www\\.)?cdnetworks\\.com\\.sg/\" to=\"https://www.cdnetworks.com.sg/\"/></ruleset>", "<ruleset name=\"CDNetworks.com\" f=\"CDNetworks.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CDNpark.com\" default_off=\"expired\" f=\"CDNpark.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CDON.COM\" platform=\"mixedcontent\" f=\"CDON.COM.xml\"><securecookie host=\"^cdon\\.(?:dk|eu|fi|no|se)$\" name=\".+\"/><rule from=\"^http://(?:www)?cdon\\.(dk|eu|fi|no|se)/\" to=\"https://cdon.$1/\"/><rule from=\"^http://s\\.cdon\\.com/\" to=\"https://s.cdon.com/\"/></ruleset>", "<ruleset name=\"CDS Global (mismatches)\" default_off=\"mismatched\" f=\"CDS-Global-mismatches.xml\"><securecookie host=\"^\\w\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CDS Global (partial)\" f=\"CDS-Global.xml\"><securecookie host=\"^w1\\.buysub\\.com$\" name=\".*\"/><securecookie host=\"^(?:sso)?\\.mycdsglobal\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CDW and CDW-G\" f=\"CDWG.xml\"><rule from=\"^http://(?:www\\.)?cdw(g)?\\.com/\" to=\"https://www.cdw$1.com/\"/></ruleset>", "<ruleset name=\"CD ROM Land.nl\" f=\"CD_ROM_Land.nl.xml\"><securecookie host=\"^(?:www\\.)?cdromland\\.nl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CD Universe (partial)\" f=\"CD_Universe.xml\"><exclusion pattern=\"^http://g\\.cduniverse\\.com/Default\\.asp\"/><exclusion pattern=\"^http://www\\.cduniverse\\.com/(?!checkout/(?:account|allorderdisp|changepassword|orderstatus)\\.asp|favicon\\.ico|FooterIFrame\\.asp|footer/footermusic\\.html|help/contact\\.asp|(?:\\w+/)?images/|login\\.asp|partner/(?:menu|partner)form\\.asp|stylesheet\\.css|wishlist\\.asp)\"/><securecookie host=\"^g\\.cduniverse\\.com$\" name=\".+\"/><rule from=\"^http://(g\\.|www\\.)?cduniverse\\.com/\" to=\"https://$1cduniverse.com/\"/><rule from=\"^http://c3\\.cduniverse\\.ws/\" to=\"https://c3.cduniverse.ws/\"/><rule from=\"^http://i\\.cduniverse\\.ws/\" to=\"https://www.cduniverse.com/\"/></ruleset>", "<ruleset name=\"CED Magazine\" default_off=\"expired, mismatch\" f=\"CED-Magazine.xml\"><rule from=\"^http://(?:www\\.)?cedmagazine\\.com/\" to=\"https://www.cedmagazine.com/\"/></ruleset>", "<ruleset name=\"CEDIA.org.ec (partial)\" f=\"CEDIA.org.ec.xml\"><securecookie host=\"^(?:www\\.)?cedia\\.org\\.ec$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CERIT-SC.cz\" default_off=\"failed ruleset test\" f=\"CERIT-SC.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CERIT.cz\" default_off=\"failed ruleset test\" f=\"CERIT.cz.xml\"><securecookie host=\"^www\\.cerit\\.cz$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CERN.ch (false MCB)\" platform=\"mixedcontent\" f=\"CERN.ch-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CERN.ch (problematic)\" default_off=\"missing certificate chain, untrusted root\" f=\"CERN.ch-problematic.xml\"><rule from=\"^http://cmsdoc\\.cern\\.ch/\" to=\"https://vocms0153.cern.ch/\"/><rule from=\"^http://root\\.cern\\.ch/(?=/*(?:$|\\?))\" to=\"https://root.cern.ch/drupal/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CERN\" f=\"CERN.xml\"><exclusion pattern=\"http://directory\\.web\\.cern\\.ch/+(?!directory/(?:cern_toolbar/css|css|img|jquery-ui|js)/)\"/><rule from=\"^http://lhcb\\.cern\\.ch/\" to=\"https://lhcb.web.cern.ch/lhcb/\"/><rule from=\"^http://listboxservices\\.web\\.cern\\.ch/listboxservices/simba2/\" to=\"https://simba3.web.cern.ch/simba3/simba2/\"/><exclusion pattern=\"^http://listboxservices\\.web\\.cern\\.ch/(?!listboxservices/simba2/)\"/><rule from=\"^http://home\\.web\\.cern\\.ch/\" to=\"https://home.cern/\"/><rule from=\"^http://st\\.web\\.cern\\.ch/\" to=\"https://st-div.web.cern.ch/\"/><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CERT-Bund\" f=\"CERT-Bund.xml\"><securecookie host=\"^(?:.*\\.)?cert-bund\\.de$\" name=\".+\"/><rule from=\"^http://cert-bund\\.de/\" to=\"https://www.cert-bund.de/\"/><rule from=\"^http://([^/:@]+)?\\.cert-bund\\.de/\" to=\"https://$1.cert-bund.de/\"/></ruleset>", "<ruleset name=\"CERT Polska\" f=\"CERT-Polska.xml\"><securecookie host=\"^(?:.*\\.)?cert\\.pl$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CERT-UK\" f=\"CERT-UK.xml\"><securecookie host=\"^(?:.*\\.)?cert\\.gov\\.uk$\" name=\".+\"/><rule from=\"^http://cert\\.gov\\.uk/\" to=\"https://www.cert.gov.uk/\"/><rule from=\"^http://([^/:@]+)?\\.cert\\.gov\\.uk/\" to=\"https://$1.cert.gov.uk/\"/></ruleset>", "<ruleset name=\"CERT-Verbund.de\" f=\"CERT-Verbund.xml\"><securecookie host=\"^(?:.*\\.)?cert-verbund\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CERT.at\" f=\"CERT.at.xml\"><securecookie host=\"^(?:.*\\.)?cert\\.at$\" name=\".+\"/><rule from=\"^http://cert\\.at/\" to=\"https://www.cert.at/\"/><rule from=\"^http://([^/:@]+)?\\.cert\\.at/\" to=\"https://$1.cert.at/\"/></ruleset>", "<ruleset name=\"CERT.fi\" f=\"CERT.fi.xml\"><securecookie host=\"^www\\.cert\\.fi$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CERT.se\" f=\"CERT.se.xml\"><rule from=\"^http://www\\.cert\\.se/\" to=\"https://www.cert.se/\"/><rule from=\"^http://cert\\.se/\" to=\"https://www.cert.se/\"/></ruleset>", "<ruleset name=\"CERT.org\" f=\"CERT.xml\"><securecookie host=\"^(?:.+\\.)?cert\\.org$\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CESG.gov.uk\" f=\"CESG.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CESNET.cz (partial)\" f=\"CESNET.xml\"><securecookie host=\"^whoami\\.cesnet\\.cz$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CETIC.be (partial)\" f=\"CETIC.be.xml\"><rule from=\"^http://(?:www\\.)?cetic\\.be/\" to=\"https://www.cetic.be/\"/><rule from=\"^http://(cronos|forge|(?:git|svn)\\.forge|smtp|webmail)\\.cetic\\.be/\" to=\"https://$1.cetic.be/\"/></ruleset>", "<ruleset name=\"CEX.IO (partial)\" f=\"CEX.IO.xml\"><securecookie host=\"^\\.cex\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CEntrance (partial)\" f=\"CEntrance.xml\"><exclusion pattern=\"^http://(?:www\\.)?centrance\\.com/store/cart\\.php(?!\\?target=(?:cart&action=(?:add|delete)|profile))\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CEtrk.com (partial)\" f=\"CEtrk.com.xml\"><rule from=\"^http://trk\\.cetrk\\.com/\" to=\"https://s3.amazonaws.com/trk.cetrk.com/\"/></ruleset>", "<ruleset name=\"CFEngine\" f=\"CFEngine.xml\"><securecookie host=\"^(?:www\\.)?cfengine\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?cfengine\\.com/\" to=\"https://cfengine.com/\"/></ruleset>", "<ruleset name=\"CFJ-Lab\" platform=\"mixedcontent\" f=\"CFJLab.fr.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CGRAN.org\" default_off=\"refused\" f=\"CGRAN.org.xml\"><rule from=\"^http://(?:www\\.)?cgran\\.org/\" to=\"https://www.cgran.org/\"/></ruleset>", "<ruleset name=\"CHDK\" default_off=\"mismatched\" platform=\"cacert\" f=\"CHDK.xml\"><rule from=\"^http://(?:www\\.)?mighty-hoernsche\\.de/\" to=\"https://mighty-hoernsche.de/\"/></ruleset>", "<ruleset name=\"CHIP-Digital.de\" f=\"CHIP-Digital.de.xml\"><securecookie host=\"^www\\.chip-digital\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CHIP-Kiosk.de\" f=\"CHIP-Kiosk.de.xml\"><securecookie host=\"^\\.www\\.chip-kiosk\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?chip-app\\.de/+(?:$|\\?.*)\" to=\"https://www.chip-kiosk.de/chip#chip-tablet-edition\"/><rule from=\"^http://(?:www\\.)?chip-kiosk\\.de/\" to=\"https://www.chip-kiosk.de/\"/></ruleset>", "<ruleset name=\"CHIP Online (mismatches)\" default_off=\"Akamai\" f=\"CHIP-Online-mismatches.xml\"><rule from=\"^http://chip01\\.chipimages\\.de/\" to=\"https://chip01.chipimages.de/\"/></ruleset>", "<ruleset name=\"CHIP Online (partial)\" f=\"CHIP-Online.xml\"><rule from=\"^http://omniture\\.chip\\.eu/\" to=\"https://chipxonioonlinegmbh.d1.sc.omtrdc.net/\"/></ruleset>", "<ruleset name=\"CHL.it\" platform=\"mixedcontent\" f=\"CHL.it.xml\"><rule from=\"^http://(?:www\\.)?chl\\.it/\" to=\"https://www.chl.it/\"/></ruleset>", "<ruleset name=\"Central Intelligence Agency\" f=\"CIA.xml\"><securecookie host=\"^(www\\.)?cia\\.gov$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CIBC\" f=\"CIBC.xml\"><rule from=\"^http://([^/:@\\.]+)\\.cibc\\.com/\" to=\"https://$1.cibc.com/\"/></ruleset>", "<ruleset name=\"CICLOPS\" default_off=\"expired, self-signed\" f=\"CICLOPS.xml\"><securecookie host=\"^(?:.*\\.)ciclops\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?ciclops\\.org/\" to=\"https://www.ciclops.org/\"/></ruleset>", "<ruleset name=\"CIHR.eu\" f=\"CIHR.eu.xml\"><securecookie host=\"^(?:www\\.)?cihr\\.eu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CIMB Cambodia\" default_off=\"failed ruleset test\" f=\"CIMB-Cambodia.xml\"><securecookie host=\"^www\\.bizchannel\\.cimbbank\\.com\\.kh$\" name=\".+\"/><rule from=\"^http://bizchannel\\.cimbbank\\.com\\.kh/\" to=\"https://www.bizchannel.cimbbank.com.kh/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CIMB Indonesia\" f=\"CIMB-Indonesia.xml\"><securecookie host=\"^www\\.cimbclicks\\.co\\.id$\" name=\".+\"/><securecookie host=\"^www\\.itradecimb\\.co\\.id$\" name=\".+\"/><securecookie host=\"^www\\.cimbniaga\\.com$\" name=\".+\"/><rule from=\"^http://cimbniaga\\.com/\" to=\"https://www.cimbniaga.com/\"/><rule from=\"^http://cimbclicks\\.co\\.id/\" to=\"https://www.cimbclicks.co.id/\"/><rule from=\"^http://itradecimb\\.co\\.id/\" to=\"https://www.itradecimb.co.id/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CIMB Malaysia\" default_off=\"failed ruleset test\" f=\"CIMB-Malaysia.xml\"><securecookie host=\"^www\\.cimb\\.com$\" name=\".+\"/><securecookie host=\"^.*\\.cimbpreferred\\.com$\" name=\".+\"/><securecookie host=\"^www\\.cimbbank\\.com\\.my$\" name=\".+\"/><securecookie host=\"^www\\.cimbclicks\\.com\\.my$\" name=\".+\"/><securecookie host=\"^.*\\.itradecimb\\.com\\.my$\" name=\".+\"/><securecookie host=\"^www\\.eipocimb\\.com$\" name=\".+\"/><securecookie host=\"^www\\.cimb-principal\\.com\\.my$\" name=\".+\"/><rule from=\"^http://cimb\\.com/\" to=\"https://www.cimb.com/\"/><rule from=\"^http://cimbclicks\\.com\\.my/\" to=\"https://www.cimbclicks.com.my/\"/><rule from=\"^http://cimb-principal\\.com\\.my/\" to=\"https://www.cimb-principal.com.my/\"/><rule from=\"^http://cimbbank\\.com\\.my/\" to=\"https://www.cimbbank.com.my/\"/><rule from=\"^http://eipocimb\\.com/\" to=\"https://www.eipocimb.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CIMB Singapore\" f=\"CIMB-Singapore.xml\"><securecookie host=\"^www\\.cimbclicks\\.com\\.sg$\" name=\".+\"/><securecookie host=\"^www\\.bizchannel\\.cimb\\.com\\.sg$\" name=\".+\"/><securecookie host=\"^.*\\.itradecimb.com.sg$\" name=\".+\"/><rule from=\"^http://cimbclicks\\.com\\.sg/\" to=\"https://www.cimbclicks.com.sg/\"/><rule from=\"^http://bizchannel\\.cimb\\.com\\.sg/\" to=\"https://www.bizchannel.cimb.com.sg/\"/><rule from=\"^http://itradecimb\\.com\\.sg/\" to=\"https://www.itradecimb.com.sg/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CIMB Thailand\" default_off=\"failed ruleset test\" f=\"CIMB-Thailand.xml\"><securecookie host=\"^www\\.cimbclicks\\.in\\.th$\" name=\".+\"/><securecookie host=\"^www\\.(ebanking|ibanking|bizchannel)\\.cimbthai\\.com$\" name=\".+\"/><securecookie host=\"^.*\\.cimbsecurities\\.co\\.th$\" name=\".+\"/><rule from=\"^http://cimbclicks\\.in\\.th/\" to=\"https://www.cimbclicks.in.th/\"/><rule from=\"^http://(ebanking|ibanking|bizchannel)\\.cimbthai\\.com/\" to=\"https://www.$1.cimbthai.com/\"/><rule from=\"^http://cimbsecurities\\.co\\.th/\" to=\"https://www.cimbsecurities.co.th/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CINES.fr (partial)\" f=\"CINES.fr.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CIO.com.au\" platform=\"mixedcontent\" f=\"CIO.com.au.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CIO.com (partial)\" f=\"CIO.com.xml\"><rule from=\"^http://council\\.cio\\.com/\" to=\"https://council.cio.com/\"/><rule from=\"^http://itjobs\\.cio\\.com/c/\" to=\"https://computerworld.jobamatic.com/c/\"/></ruleset>", "<ruleset name=\"CIRT.net\" default_off=\"failed ruleset test\" f=\"CIRT.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CIR Online.org (partial)\" default_off=\"failed ruleset test\" f=\"CIR_Online.org.xml\"><exclusion pattern=\"^http://cironline\\.org/+(?!sites/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CIS-India.org (false MCB)\" platform=\"mixedcontent\" f=\"CIS-India.org.xml\"><securecookie host=\"^\\.cis-india\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CISOfy.com\" f=\"CISOfy.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^_gat?$\"/><rule from=\"^http://www\\.cisofy\\.com/.*\" to=\"https://cisofy.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CI Security.org\" f=\"CI_Security.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CJ2.nl\" default_off=\"failed ruleset test\" f=\"CJ2.nl.xml\"><securecookie host=\"^(?:datacenter|panel|\\.webmail|www)\\.cj2\\.nl$\" name=\".+\"/><rule from=\"^http://cj2\\.nl/\" to=\"https://www.cj2.nl/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CJFE.org\" default_off=\"invalid cert\" f=\"CJFE.org.xml\"><securecookie host=\"^\\.cjfe\\.org$\" name=\".+\"/><rule from=\"^http://www\\.cjfe\\.org/\" to=\"https://cjfe.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CJS-CDKeys.com (mixed content)\" platform=\"mixedcontent\" f=\"CJS-CDKeys.com-mixed.xml\"><securecookie host=\"^\\.cjs-cdkeys\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CJS-CDKeys.com (partial)\" f=\"CJS-CDKeys.com.xml\"><exclusion pattern=\"^(?![\\w:/.-]+\\.(css|gif|ico|jpg|js|png)$)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CKEditor.com (partial)\" f=\"CKEditor.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CKSource.com (partial)\" f=\"CKSource.com.xml\"><rule from=\"^http://c\\.cksource\\.com/\" to=\"https://d2xc7e2akbvihw.cloudfront.net/\"/><rule from=\"^http://www\\.cksource\\.com/\" to=\"https://cksource.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CLIC-study\" default_off=\"mismatched\" f=\"CLIC-study.xml\"><securecookie host=\"^clic-study\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?clic-study\\.org/\" to=\"https://clic-study.org/\"/></ruleset>", "<ruleset name=\"CLP Power Hong Kong Limited (partial)\" f=\"CLP.com.hk.xml\"><securecookie host=\"^(www\\.)?clp\\.com\\.hk$\" name=\".+\"/><rule from=\"^http://clp\\.com\\.hk/\" to=\"https://www.clp.com.hk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CLTglobal.com\" default_off=\"failed ruleset test\" f=\"CLTglobal.com.xml\"><securecookie host=\"^\\.cltglobal\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CMAS Center.org\" default_off=\"failed ruleset test\" f=\"CMAS_Center.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CMBChina.com (partial)\" f=\"CMBChina.com.xml\"><exclusion pattern=\"^http://www\\.cmbchina\\.com/(cmbinfo/)?$\"/><exclusion pattern=\"^http://ccclub\\.cmbchina\\.com/$\"/><exclusion pattern=\"^http://ccclub\\.cmbchina\\.com/fincreditweb/cccar/\"/><exclusion pattern=\"^http://forum\\.cmbchina\\.com/\\S+\\.aspx\"/><rule from=\"^http://(ssl\\.)?img\\.jf\\.cmbchina\\.com/\" to=\"https://img.jf.cmbchina.com/\"/><exclusion pattern=\"^http://live\\.cmbchina\\.com/\\S+\\.aspx\"/><rule from=\"^http://live\\.cmbchina\\.com/\" to=\"https://forum.cmbchina.com/\"/><exclusion pattern=\"^http://market\\.cmbchina\\.com/ccard/\"/><exclusion pattern=\"^http://mlife\\.cmbchina\\.com/$\"/><exclusion pattern=\"^http://trip\\.cmbchina\\.com/(?!StaticFiles/|combres\\.axd/|Mgm/|MyTrip/|platinum/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CMPnet.com\" default_off=\"failed ruleset test\" f=\"CMP.xml\"><rule from=\"^http://cookies\\.cmpnet\\.com/\" to=\"https://i.cmpnet.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CMPXCHG8B.com\" f=\"CMPXCHG8B.xml\"><rule from=\"^http://(?:www\\.)?cmpxchg8b\\.com/\" to=\"https://lock.cmpxchg8b.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CMSWire\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"CMSWire.xml\"><rule from=\"^http://(?:www\\.)?cmswire\\.com/\" to=\"https://www.cmswire.com/\"/></ruleset>", "<ruleset name=\"CM Dev.com\" default_off=\"failed ruleset test\" f=\"CM_Dev.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CNBC.com (mixed)\" platform=\"mixedcontent\" f=\"CNBC.com-mixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CNBC.com (partial)\" f=\"CNBC.com.xml\"><exclusion pattern=\"^http://www\\.cnbc\\.com/$\"/><rule from=\"^http://cnbc\\.com/\" to=\"https://cnbc.com/\"/><rule from=\"^http://(commentsapi|fm|gdsapi|login|media|mps|portfolio|pro|quote|register|pages\\.response)\\.cnbc\\.com/\" to=\"https://$1.cnbc.com/\"/><rule from=\"^http://www\\.cnbc\\.com/(fonts|staticcontent|staticContent)/\" to=\"https://www.cnbc.com/$1/\"/></ruleset>", "<ruleset name=\"CNDP.fr (partial)\" f=\"CNDP.fr.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CNES.fr (partial)\" f=\"CNES.fr.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CNET content.com\" f=\"CNET_content.com.xml\"><securecookie host=\"^ws\\.cnetcontent\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CNN.com (partial)\" f=\"CNN.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CNN.net (partial)\" f=\"CNN.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Conseil National du Numérique\" f=\"CNNumerique.fr.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"COIN-OR.org\" f=\"COIN-OR.org.xml\"><securecookie host=\"^projects\\.coin-or\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"COMNAP.aq\" f=\"COMNAP.aq.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"COSMOS magazine (partial)\" f=\"COSMOS_magazine.xml\"><rule from=\"^http://cdn\\d\\.cosmosmagazine\\.com/\" to=\"https://d1dop0qewlixo7.cloudfront.net/\"/></ruleset>", "<ruleset name=\"COSPAR-Assembly.org\" f=\"COSPAR-Assembly.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"COTC.edu\" default_off=\"failed ruleset test\" f=\"COTC.edu.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"COUNTER\" default_off=\"mismatched\" f=\"COUNTER.xml\"><rule from=\"^http://(?:www\\.)?projectcounter\\.org/\" to=\"https://www.projectcounter.org/\"/></ruleset>", "<ruleset name=\"COZmedics.com.au\" default_off=\"failed ruleset test\" f=\"COZmedics.com.au.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CPIB.ac.uk\" f=\"CPIB.ac.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CPJ.org\" f=\"CPJ.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CPMStar.com\" default_off=\"failed ruleset test\" f=\"CPMStar.xml\"><securecookie host=\"^\\.server\\.\" name=\".\"/><rule from=\"^http://cdn\\.cpmstar\\.com/\" to=\"https://server.cpmstar.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CPM Rocket.com (partial)\" default_off=\"failed ruleset test\" f=\"CPM_Rocket.com.xml\"><rule from=\"^http://adk2cdn\\.cpmrocket\\.com/\" to=\"https://d38cp5x90nxyo0.cloudfront.net/\"/></ruleset>", "<ruleset name=\"CPSC.gov\" platform=\"mixedcontent\" f=\"CPSC.xml\"><securecookie host=\"^\\.cpsc\\.gov$\" name=\"^ZNPCQ003-\\d{8}$\"/><securecookie host=\"^www\\.cpsc\\.gov$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?cpsc\\.gov/\" to=\"https://www.cpsc.gov/\"/></ruleset>", "<ruleset name=\"CPU Benchmark.net\" f=\"CPU_Benchmark.net.xml\"><securecookie host=\"^(?:www\\.)?cpubenchmark\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cPanel.com (partial)\" f=\"CPanel.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cPanel.guru\" default_off=\"failed ruleset test\" f=\"CPanel.guru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cPanel.net (partial)\" default_off=\"failed ruleset test\" f=\"CPanel.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://applications\\.cpanel\\.net/\" to=\"https://applications.cpanel.com/\"/><rule from=\"^http://blogs\\.cpanel\\.net/\" to=\"https://blogs.cpanel.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CQRCengage.com\" f=\"CQRCengage.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CQ Roll Call.com (partial)\" default_off=\"missing certificate chain\" platform=\"mixedcontent\" f=\"CQ_Roll_Call.xml\"><rule from=\"^http://www\\.cqrollcall\\.com/\" to=\"https://cqrollcall.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CRC.id.au (partial)\" f=\"CRC.id.au.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CREW (partial)\" default_off=\"failed ruleset test\" f=\"CREW.xml\"><securecookie host=\"^\\.?secure\\.citizensforethics\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CRM Metrix\" default_off=\"failed ruleset test\" f=\"CRMMetrix.xml\"><rule from=\"^http://(?:www\\.)?crm-metrix\\.com/\" to=\"https://www.crm-metrix.com/\"/></ruleset>", "<ruleset name=\"CRN\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"CRN.xml\"><securecookie host=\"^.*\\.crn\\.com$\" name=\".+\"/><rule from=\"^http://(i\\.|signin\\.|www\\.)?crn\\.com/\" to=\"https://$1crn.com/\"/><rule from=\"^http://crn\\.verticalsearchworks\\.com/\" to=\"https://ad-secure.firstlightera.com/\"/></ruleset>", "<ruleset name=\"CRON-O-Meter\" f=\"CRON-O-Meter.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CRU-Inc.com (partial)\" f=\"CRU-Inc.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CS-Cart\" f=\"CS-Cart.xml\"><securecookie host=\"^\\.cs-cart\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CSA-CEE-Summit.eu\" default_off=\"expired, missing certificate chain\" f=\"CSA-CEE-Summit.eu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CSBA Academy.com (partial)\" default_off=\"failed ruleset test\" f=\"CSBA_Academy.com.xml\"><rule from=\"^http://(www\\.)?csbaacademy\\.com/(?=login\\.php|_scripts/)\" to=\"https://$1csbaacademy.com/\"/><rule from=\"^http://(www\\.)?csbaacademy\\.com/login/?(?=$|\\?)\" to=\"https://$1csbaacademy.com/login.php\"/><rule from=\"^http://(www\\.)?csbaacademy\\.com/register\\.php(?=$|\\?)\" to=\"https://$1csbaacademy.com/register/\"/></ruleset>", "<ruleset name=\"CSC Visa Information Service\" f=\"CSC-Visa-Information-Service.xml\"><securecookie host=\"^(?:.*\\.)usvisa-info.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CSC (partial)\" f=\"CSC.xml\"><exclusion pattern=\"^http://(?:staging\\.|www\\.)?csc\\.com/(?!favicon\\.ico|images/|stylesheets/)\"/><rule from=\"^http://(?:www\\.)?csc\\.com/\" to=\"https://www.csc.com/\"/><rule from=\"^http://(assets[1-4]|qa|staging)\\.csc\\.com/\" to=\"https://$1.csc.com/\"/><rule from=\"^http://assetsdev1\\.csc\\.com/\" to=\"https://s3.amazonaws.com/assetsdev1.csc.com/\"/><rule from=\"^http://assetsdev2\\.csc\\.com/\" to=\"https://d22z1n4koknpni.cloudfront.net/\"/><rule from=\"^http://assetsdev3\\.csc\\.com/\" to=\"https://d2vblp5odpf1nm.cloudfront.net/\"/><rule from=\"^http://assetsdev4\\.csc\\.com/\" to=\"https://dkoz0rlg89gph.cloudfront.net/\"/></ruleset>", "<ruleset name=\"CSCtrustedsecure.com\" f=\"CSCtrustedsecure.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CSDb.dk\" default_off=\"expired, self-signed\" f=\"CSDb.dk.xml\"><securecookie host=\"^\\.?csdb\\.dk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?csdb\\.dk/\" to=\"https://csdb.dk/\"/></ruleset>", "<ruleset name=\"CSEd Week.org\" f=\"CSEd_Week.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CSIAC.org\" default_off=\"failed ruleset test\" f=\"CSIAC.org.xml\"><securecookie host=\"^\\.csiac\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CSIE.org\" f=\"CSIE.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CSIRT.CZ\" f=\"CSIRT.CZ.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CSIS.dk\" f=\"CSIS.dk.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CSIS.org\" f=\"CSIS.org.xml\"><rule from=\"^http://(?:(my\\.)|www\\.)?csis\\.org/\" to=\"https://$1csis.org/\"/></ruleset>", "<ruleset name=\"CSPInet.org\" f=\"CSPInet.org.xml\"><securecookie host=\"^order\\.cspinet\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CSP Forum.eu\" default_off=\"failed ruleset test\" f=\"CSP_Forum.eu.xml\"><securecookie host=\"^\\.www\\.cspforum\\.eu$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?cspforum\\.eu/\" to=\"https://www.cspforum.eu/\"/></ruleset>", "<ruleset name=\"CSRSupport.com\" f=\"CSRsupport.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CSS-Tricks.com\" f=\"CSS-Tricks.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Commonwealth Superannuation Scheme\" f=\"CSS.gov.au.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CSdata1.com\" f=\"CSdata1.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CT.gov (partial)\" default_off=\"failed ruleset test\" f=\"CT.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?ct\\.gov/.*\" to=\"https://www.ct.egov.com/\"/><exclusion pattern=\"^http://(?:www\\.)?ct\\.gov/+(?!$|\\?)\"/><rule from=\"^http://portal\\.ct\\.gov/\" to=\"https://www.ct.egov.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CTAN\" f=\"CTAN.org.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CTEP-EBP.com\" f=\"CTEP-EBP.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.ctep-ebp\\.com/\" to=\"https://ctep-ebp.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CTERA Networks\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"CTERA-Networks.xml\"><securecookie host=\"^(?:www\\.)?ctera\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CTFtime.org\" default_off=\"failed ruleset test\" f=\"CTFtime.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CTOvision.com (false MCB)\" default_off=\"mismatched\" platform=\"mixedcontent\" f=\"CTOvision.com.xml\"><rule from=\"^http://(?:www\\.)?ctovision\\.com/\" to=\"https://ctovision.com/\"/></ruleset>", "<ruleset name=\"CTS Wholesale Sunglasses\" f=\"CTS_Wholesale_Sunglasses.xml\"><securecookie host=\"^\\.ctswholesalesunglasses.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CTunnel\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"CTunnel.xml\"><securecookie host=\"^(?:.+\\.)?ctunnel\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?ctunnel\\.com/\" to=\"https://ctunnel.com/\"/></ruleset>", "<ruleset name=\"CUFP.org\" default_off=\"mismatched\" f=\"CUFP.org.xml\"><securecookie host=\"^\\.cufp\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?cufp\\.org/\" to=\"https://cufp.org/\"/></ruleset>", "<ruleset name=\"The Chinese University of Hong Kong\" default_off=\"failed ruleset test\" f=\"CUHK.xml\"><exclusion pattern=\"^http://www\\.cuhk\\.edu\\.hk/(chinese|english)/(?!css/|fonts/|images|js/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CUPS.org\" f=\"CUPS.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CVI Melles Griot\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"CVIMellesGriot.com.xml\"><rule from=\"^http://(?:www\\.)?cvimellesgriot\\.com/\" to=\"https://www.cvimellesgriot.com/\"/></ruleset>", "<ruleset name=\"CWSPOD.com (false MCB)\" platform=\"mixedcontent\" f=\"CWSPOD.com.xml\"><securecookie host=\"^\\.cwspod\\.com$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CWSPOD Music (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"CWSPOD_Music.xml\"><securecookie host=\"^\\.cwspodmusic.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cxense.com\" f=\"CXense.com.xml\"><securecookie host=\"^\\.cxense\\.com$\" name=\"^gck\\w$\"/><securecookie host=\"^wiki\\.cxense\\.com$\" name=\".+\"/><rule from=\"^http://cdn\\.cxense\\.com/\" to=\"https://scdn.cxense.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CYBERsitter.com\" default_off=\"refused\" f=\"CYBERsitter.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cYpherpunK.at\" f=\"CYpherpunK.at.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CZ-Hosting.com\" f=\"CZ-Hosting.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"C F Mueller.de\" f=\"C_F_Mueller.de.xml\"><securecookie host=\"^www\\.cfmueller\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cabal WS (partial)\" f=\"Cabal_WS.xml\"><rule from=\"^http://(www\\.)?cabal\\.ws/(addons|img|slider)/\" to=\"https://$1cabal.ws/$2/\"/></ruleset>", "<ruleset name=\"Cabinet-Office.gov.uk\" f=\"Cabinet-Office.gov.uk.xml\"><rule from=\"^http://www\\.cabinet-office\\.gov\\.uk/.*\" to=\"https://www.gov.uk/government/organisations/cabinet-office\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cabinet Office.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"Cabinet_Office.xml\"><exclusion pattern=\"^http://(?:ccs|communitylife|gps|mutuals|www\\.openpublicservices|(?:www\\.)?publications|transactionsexplorer|update|www)\\.cabinetoffice\\.gov\\.uk/+(?!$|\\?)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:cc|gp)s\\.cabinetoffice\\.gov\\.uk/.*\" to=\"https://www.gov.uk/government/organisations/crown-commercial-service\"/><rule from=\"^http://communitylife\\.cabinetoffice\\.gov\\.uk/.*\" to=\"https://www.gov.uk/government/collections/community-life-survey\"/><rule from=\"^http://digital\\.cabinetoffice\\.gov\\.uk/\" to=\"https://gds.blog.gov.uk/\"/><rule from=\"^http://blog\\.digital\\.cabinetoffice\\.gov\\.uk/\" to=\"https://alphagov.wordpress.com/\"/><rule from=\"^http://mutuals\\.cabinetoffice\\.gov\\.uk/.*\" to=\"https://www.gov.uk/government/groups/mutuals-information-service\"/><rule from=\"^http://www\\.openpublicservices\\.cabinetoffice\\.gov\\.uk/.*\" to=\"https://www.gov.uk/government/organisations/open-public-services\"/><rule from=\"^http://pm\\.cabinetoffice\\.gov\\.uk/[^?]*\" to=\"https://www.gov.uk/government/history/past-prime-ministers/margaret-thatcher\"/><rule from=\"^http://(?:www\\.)?publications\\.cabinetoffice\\.gov\\.uk/.*\" to=\"https://www.gov.uk/government/publications?departments%5B%5D=cabinet-office\"/><rule from=\"^http://transactionsexplorer\\.cabinetoffice\\.gov\\.uk/.*\" to=\"https://www.gov.uk/performance/transactions-explorer\"/><rule from=\"^http://(?:update|www)\\.cabinetoffice\\.gov\\.uk/.*\" to=\"https://www.gov.uk/government/organisations/cabinet-office\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cable6.net\" default_off=\"missing certificate chain\" f=\"Cable6.net.xml\"><securecookie host=\"^piwik\\.cable6\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CableTV.com\" default_off=\"expired\" f=\"CableTV.com.xml\"><rule from=\"^http://(?:www\\.)?cabletv\\.com/\" to=\"https://cabletv.com/\"/></ruleset>", "<ruleset name=\"Cables.com\" f=\"Cables.com.xml\"><securecookie host=\"^(?:www)?\\.cables\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?cables\\.com/\" to=\"https://www.cables.com/\"/></ruleset>", "<ruleset name=\"Cablesurf.de\" f=\"Cablesurf.de.xml\"><securecookie host=\"^(www\\.|www2\\.|mail\\.)?cablesurf\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CaceTech.com\" f=\"CaceTech.xml\"><securecookie host=\"^\\.cacetech\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CacheBrowser.info\" f=\"CacheBrowser.info.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CacheFly (partial)\" f=\"CacheFly.xml\"><exclusion pattern=\"^http://cachefly\\.cachefly\\.net/(?:speedtest/|.+\\.test)\"/><exclusion pattern=\"^http://topix\\.cachefly\\.net\"/><securecookie host=\"^portal\\.cachefly\\.com$\" name=\".+\"/><rule from=\"^http://portal\\.cachefly\\.com/\" to=\"https://portal.cachefly.com/\"/><rule from=\"^http://(?:\\d\\.)?([^@:/\\.]+)\\.cachefly\\.net/\" to=\"https://$1.cachefly.net/\"/></ruleset>", "<ruleset name=\"Cactus Complete Commerce (partial)\" default_off=\"failed ruleset test\" f=\"Cactus_Complete_Commerce.xml\"><securecookie host=\"^app\\.cactuscompletecommerce\\.com$\" name=\".+\"/><rule from=\"^http://app\\.cactuscompletecommerce\\.com/\" to=\"https://app.cactuscompletecommerce.com/\"/></ruleset>", "<ruleset name=\"CadSoft\" f=\"CadSoft.xml\"><securecookie host=\"^\\.?www\\.cadsoft\\.de$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?cadsoft\\.de/\" to=\"https://www.cadsoft.de/\"/></ruleset>", "<ruleset name=\"Caddy server.com\" f=\"Caddy_server.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cadence Design Systems (partial)\" f=\"Cadence-Design-Systems.xml\"><rule from=\"^http://(?:www\\.)?cadence\\.com/(_layouts/|misc_pages/|pages/(?:login|registration)\\.aspx|Pub/|rl/Resources/|usercontrols/)\" to=\"https://www.cadence.com/$1\"/></ruleset>", "<ruleset name=\"Cadetnet\" f=\"Cadetnet.xml\"><rule from=\"^http://(?:www\\.)?cadetnet\\.gov\\.au/\" to=\"https://www.cadetnet.gov.au/\"/></ruleset>", "<ruleset name=\"Cadw (partial)\" f=\"Cadw.xml\"><rule from=\"^http://cadw\\.wales\\.gov\\.uk/cbin/\" to=\"https://cadw.wales.gov.uk/cbin/\"/></ruleset>", "<ruleset name=\"CafePress (partial)\" default_off=\"failed ruleset test\" f=\"CafePress.xml\"><rule from=\"^http://(?:www\\.)?cafepress\\.co(m|\\.uk)/content/\" to=\"https://www.cafepress.co$1/content/\"/><rule from=\"^http://(content|members)\\.cafepress\\.co(m|\\.uk)/\" to=\"https://$1.cafepress.co$2/\"/><rule from=\"^http://shop\\.cafepress\\.com/$\" to=\"https://shop.cafepress.com/\"/><rule from=\"^http://help\\.cafepress\\.com/hc/\" to=\"https://server.iad.liveperson.net/hc/\"/><rule from=\"^http://content\\d?\\.cpcache\\.com/\" to=\"https://content.cafepress.com/\"/><rule from=\"^https://server\\.iad\\.liveperson\\.net/make/\" to=\"https://www.cafepress.com/make/\"/></ruleset>", "<ruleset name=\"cafegate.com\" default_off=\"failed ruleset test\" f=\"Cafegate.com.xml\"><securecookie host=\"^\\.cafegate.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cafemakers\" default_off=\"failed ruleset test\" f=\"Cafemakers.xml\"><securecookie host=\"^\\.cafemakers\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cahiers Antispécistes.org\" platform=\"mixedcontent\" f=\"Cahiers-Antispecistes.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"caimao.com\" f=\"Caimao.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CainTV (partial)\" f=\"CainTV.xml\"><rule from=\"^http://static\\d?\\.caintvnetwork\\.com/\" to=\"https://d19kb9pin9tdml.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Caisse d'Epargne\" default_off=\"failed ruleset test\" f=\"Caisse-Epargne.fr.xml\"><rule from=\"^http://(?:www\\.)?caisse-epargne\\.fr/\" to=\"https://www.caisse-epargne.fr/\"/></ruleset>", "<ruleset name=\"Cake Central.com (partial)\" f=\"Cake_Central.com.xml\"><rule from=\"^http://cdn\\.cakecentral\\.com/\" to=\"https://s3.amazonaws.com/cdn.cakecentral.com/\"/></ruleset>", "<ruleset name=\"Caktus Group.com\" f=\"Caktus_Group.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cal.net\" f=\"Cal.net.xml\"><rule from=\"^http://(?:www\\.)?cal\\.net/\" to=\"https://cal.net/\"/></ruleset>", "<ruleset name=\"CalChamber.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"CalChamber.com-falsemixed.xml\"><rule from=\"^http://store\\.calchamer\\.com/\" to=\"https://store.calchamer.com/\"/></ruleset>", "<ruleset name=\"CalChamber.com (partial)\" default_off=\"failed ruleset test\" f=\"CalChamber.com.xml\"><exclusion pattern=\"^http://store\\.calchamer\\.com/+(?!favicon\\.ico|images/|style/|SupplyImages/|styles/)\"/><rule from=\"^http://(?:www\\.)?calchamer\\.com/\" to=\"https://www.calchamer.com/\"/><rule from=\"^http://(ehc|store)\\.calchamer\\.com/\" to=\"https://$1.calchamer.com/\"/></ruleset>", "<ruleset name=\"CalSky\" default_off=\"mismatched\" f=\"CalSky.xml\"><rule from=\"^http://(?:www\\.)?calsky\\.com/\" to=\"https://www.calsky.com/\"/></ruleset>", "<ruleset name=\"Cal Poly.edu (false MCB)\" platform=\"mixedcontent\" f=\"Cal_Poly.edu-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cal Poly Arts.org\" f=\"Cal_Poly_Arts.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cal State.edu (partial)\" f=\"Cal_State.edu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Calacademy.org\" default_off=\"failed ruleset test\" f=\"Calacademy.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Calameo.com (problematic)\" default_off=\"expired, self-signed\" platform=\"mixedcontent\" f=\"Calameo.com-problematic.xml\"><securecookie host=\"^help\\.calameo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Calameo.com (partial)\" f=\"Calameo.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Calameoassets.com\" f=\"Calameoassets.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Calazan.com\" default_off=\"failed ruleset test\" f=\"Calazan.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Calderdale.gov.uk (false MCB)\" platform=\"mixedcontent\" f=\"Calderdale.gov.uk-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Calderdale.gov.uk (partial)\" f=\"Calderdale.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CalendarWiz\" f=\"CalendarWiz.xml\"><securecookie host=\"^www\\.calendarwiz\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Calendario.cc\" f=\"Calendario.cc.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Calendars.com\" f=\"Calendars.com.xml\"><exclusion pattern=\"^http://(www\\.)?calendars\\.com/(?!(css/|img/|js/|user/|dbs/))\"/><exclusion pattern=\"^http://(www\\.)?calendars\\.com/dbs/(?!(css/|img/|js/|user/))\"/><rule from=\"^http://(www\\.)?calendars\\.com/(css/|img/|js/|user/|dbs)\" to=\"https://$1calendars.com/$2\"/></ruleset>", "<ruleset name=\"Calguns Foundation.org\" default_off=\"failed ruleset test\" f=\"Calguns_Foundation.org.xml\"><securecookie host=\"^(?:store\\.|www\\.)?calgunsfoundation\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"calibre-ebook.com\" f=\"Calibre-Ebook.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"California Department of Motor Vehicles\" f=\"California-Department-of-Motor-Vehicles.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"California Franchise Tax Board\" f=\"California-Franchise-Tax-Board.xml\"><securecookie host=\"^(?:(?:stats|webapp|www)\\.)?ftb\\.ca\\.gov$\" name=\".+\"/><rule from=\"^http://((stats|webapp|www)\\.)?ftb\\.ca\\.gov/\" to=\"https://$1ftb.ca.gov/\"/></ruleset>", "<ruleset name=\"California STD/HIV Prevention Training Center (partial)\" default_off=\"failed ruleset test\" f=\"California-STD-HIV-Training.xml\"><rule from=\"^((http://(?:www\\.)?)|https://)stdhivtraining\\.org/\" to=\"https://www.stdhivtraining.org/\"/></ruleset>", "<ruleset name=\"California State University (partial)\" f=\"California-State-University.xml\"><securecookie host=\"^(?:.*\\.)?csulb\\.edu$\" name=\".*\"/><rule from=\"^http://(?:www2?\\.)?csulb\\.edu/\" to=\"https://www.csulb.edu/\"/></ruleset>", "<ruleset name=\"California Department of Justice\" f=\"California_Department_of_Justice.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"California Legislative Information\" f=\"California_Legislative_Information.xml\"><securecookie host=\"^leginfo\\.legislature\\.ca\\.gov$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cal Poly.edu (partial)\" default_off=\"failed ruleset test\" f=\"California_Polytechnic_State_University.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.(lib|my|tickets)\\.calpoly\\.edu/\" to=\"https://$1.calpoly.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"California Polytechnic State University, Ponoma (partial)\" f=\"California_Polytechnic_State_University_Ponoma.xml\"><securecookie host=\"^(?:bbcollab|blackboard|broncodirect\\.cms|dsa|housing|ehelp\\.wiki)\\.csupomona\\.edu$\" name=\".+\"/><rule from=\"^http://(autodiscover|bbcollab|blackboard|broncodirect\\.cms|ehousing|exchange|ehelp\\.wiki|www)\\.csupomona\\.edu/\" to=\"https://$1.csupomona.edu/\"/><rule from=\"^http://(?:www\\.)?dsa\\.csupomona\\.edu/\" to=\"https://dsa.csupomona.edu/\"/></ruleset>", "<ruleset name=\"California Sunday.com\" f=\"California_Sunday.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"California United Bank\" default_off=\"failed ruleset test\" f=\"California_United_Bank.xml\"><securecookie host=\"^(?:w*\\.)?(?:californiaunitedbank|cunb|pcboc)\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?c(aliforniaunitedbank|unb)\\.com/\" to=\"https://$1c$2.com/\"/><rule from=\"^http://(?:www\\.)?pcboc\\.com/\" to=\"https://pcboc.com/\"/></ruleset>", "<ruleset name=\"Caller.com (partial)\" f=\"Caller.com.xml\"><securecookie host=\"^(?:login)?\\.caller\\.com$\" name=\".+\"/><rule from=\"^http://caller\\.com/\" to=\"https://www.caller.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Calligra.org\" f=\"Calligra.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Caltech (mismatches)\" default_off=\"mismatched, self-signed\" f=\"Caltech-mismatches.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Caltech.edu (partial)\" default_off=\"failed ruleset test\" f=\"Caltech.xml\"><securecookie host=\".\\.caltech\\.edu$\" name=\".\"/><rule from=\"^https?://imss-test-storage\\.ads\\.caltech\\.edu\\.s3\\.amazonaws.com/\" to=\"https://s3-us-west-1.amazonaws.com/imss-test-storage.ads.caltech.edu/\"/><rule from=\"^https?://www-prod-storage\\.cloud\\.caltech\\.edu\\.s3\\.amazonaws\\.com/\" to=\"https://s3-us-west-1.amazonaws.com/www-prod-storage.cloud.caltech.edu/\"/><rule from=\"^http://www\\.access\\.caltech\\.edu/\" to=\"https://access.caltech.edu/\"/><rule from=\"^http://blackboard\\.caltech\\.edu/.*\" to=\"https://caltech-sp.blackboard.com/eaccounts\"/><rule from=\"^http://imss-website-storage\\.cloud\\.caltech\\.edu/\" to=\"https://s3-us-west-1.amazonaws.com/imss-website-storage.cloud.caltech.edu/\"/><rule from=\"^http://irsecure\\.caltech\\.edu/.*\" to=\"https://securelb.imodules.com/s/1709/devassoc/index.aspx?sid=1709&gid=3&pgid=498\"/><rule from=\"^http://moodle\\.caltech\\.edu/\" to=\"https://courses.caltech.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Calum.org\" f=\"Calum.xml\"><securecookie host=\"^calum\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Calvin College (partial)\" f=\"Calvin_College.xml\"><securecookie host=\"^ulysses\\.calvin\\.edu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Calyx Institute.org\" f=\"Calyx-Institute.xml\"><securecookie host=\"^(?:.*\\.)?calyxinstitute\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"calyx.net\" f=\"Calyx.net.xml\"><rule from=\"^http://www\\.calyx\\.net/\" to=\"https://calyx.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cam.ac.uk (false MCB)\" platform=\"mixedcontent\" f=\"Cam.ac.uk-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cam.ac.uk (mismatched)\" default_off=\"mismatched, missing certificate chain\" f=\"Cam.ac.uk-problematic.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cambey West.com (partial)\" f=\"Cambey-and-West.xml\"><exclusion pattern=\"^http://ful\\.cambeywest\\.com/+(?!$|cwwweb/$)\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http://ful\\.cambeywest\\.com/(?:cwweb)?$\" to=\"https://www.cambeywest.com/cwweb/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cambodia Daily.com\" f=\"Cambodia_Daily.com.xml\"><securecookie host=\"^(?:www\\.)?cambodiadaily\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cambridge Journals\" platform=\"mixedcontent\" f=\"Cambridge-Journals.xml\"><securecookie host=\"^journals\\.cambridge\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cambridge.org (partial)\" f=\"Cambridge-University-Press.xml\"><exclusion pattern=\"^http://ebooks\\.cambridge\\.org/(?!.+\\.(?:css|ico|jpg|png)(?:$|\\?))\"/><exclusion pattern=\"^http://journals\\.cambridge\\.org/+(?!css/|favicon\\.ico|images/)\"/><securecookie host=\"^(?:assets|dictionary)\\.cambridge\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?cambridge\\.org/(?=files/|(?:generated|other)_files/|login(?:$|[?/])|packages/)\" to=\"https://www.cambridge.org/\"/><rule from=\"^http://(assets|dictionary|ebooks|journals|shibboleth)\\.cambridge\\.org/\" to=\"https://$1.cambridge.org/\"/></ruleset>", "<ruleset name=\"CambridgeSoft.com (partial)\" f=\"CambridgeSoft.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cambridgeshire Constabulary\" f=\"CambridgeshireConstabulary.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Camden.gov.uk (false MCB)\" platform=\"mixedcontent\" f=\"Camden.gov.uk-falsemixed.xml\"><securecookie host=\"^\\.\" name=\"_gat$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Camden.gov.uk (partial)\" f=\"Camden.gov.uk.xml\"><securecookie host=\"^\\.\" name=\"_gat$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CamelHost.net (partial)\" default_off=\"failed ruleset test\" f=\"CamelHost.net.xml\"><rule from=\"^http://billing\\.camelhost\\.net/\" to=\"https://billing.camelhost.net/\"/></ruleset>", "<ruleset name=\"camelcamelcamel (partial)\" default_off=\"failed ruleset test\" f=\"Camelcamelcamel.xml\"><rule from=\"^http://s3\\.(antimac\\.org|camelcamelcamel\\.com)/\" to=\"https://s3.amazonaws.com/s3.$1/\"/></ruleset>", "<ruleset name=\"CampBX.com\" f=\"CampBX.com.xml\"><securecookie host=\"^\\.campbx\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Camp Staff USA\" f=\"Camp_Staff_USA.xml\"><securecookie host=\"^\\.campstaffusa\\.com$\" name=\".+\"/><securecookie host=\"^\\.?jorsika\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?campstaffusa\\.com/\" to=\"https://campstaffusa.com/\"/><rule from=\"^http://(www\\.)?jorsika\\.com/\" to=\"https://$1jorsika.com/\"/></ruleset>", "<ruleset name=\"Campact.de (partial)\" f=\"Campact.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CampaignEQ.com (partial)\" default_off=\"failed ruleset test\" f=\"CampaignEQ.com.xml\"><securecookie host=\"^\\.campaigneq\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Campaigner (partial)\" f=\"Campaigner.xml\"><securecookie host=\".*\\.campaigner\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?campaigner\\.com/\" to=\"https://www.campaigner.com/\"/><rule from=\"^http://(media|secure)\\.campaigner\\.com/\" to=\"https://$1.campaigner.com/\"/></ruleset>", "<ruleset name=\"CampaignerCRM.com\" default_off=\"failed ruleset test\" f=\"CampaignerCRM.com.xml\"><securecookie host=\"^\\.campaignercrm\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?campaignercrm\\.com/\" to=\"https://www.campaignercrm.com/\"/><rule from=\"^http://(go|home)\\.campaignercrm\\.com/\" to=\"https://$1.campaignercrm.com/\"/></ruleset>", "<ruleset name=\"Campaignmonitor.com\" f=\"Campaignmonitor.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CampfireUnion.com\" f=\"CampfireUnion.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Campina (mismatches)\" default_off=\"Certificate mismatch\" f=\"Campina-mismatches.xml\"><rule from=\"^http://campina\\.(be|de|es|ru)/(error(%20pages/|page\\.htm$)|images/errorpage/)\" to=\"https://campina.$1/$2\"/><rule from=\"^http://(?:www\\.)?campina\\.(be|de|es|ru)/\" to=\"https://www.campina.$1/\"/><rule from=\"^http://(www\\.)?compina(\\.com|boerderijdag\\.nl)/(error(%20pages/|page\\.htm$)|images/errorpage/)\" to=\"https://campina$1/$2\"/><rule from=\"^http://(www\\.)?campina\\.de/\" to=\"https://www.campina.de/\"/><rule from=\"^http://(www\\.(nl\\.)?)?frieslandcampina\\.(com|nl)/\" to=\"https://www.frieslandcampina.com/english/\"/><rule from=\"^http://(www\\.)?mycampina\\.com/\" to=\"https://www.mycampina.com/\"/><securecookie host=\"^(?:www\\.)campina\\.be$\" name=\".*\"/><securecookie host=\"^www\\.campina\\.(?:de|es|ru)$\" name=\".*\"/><securecookie host=\"^www\\.(?:nl\\.)?frieslandcampina\\.com$\" name=\".*\"/></ruleset>", "<ruleset name=\"Campina (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Campina.xml\"><rule from=\"^http://campinaopschool\\.nl/(error(%20pages/|page\\.htm$)|images/errorpage/)\" to=\"https://campinaopschool.nl/$1\"/><rule from=\"^http://www\\.campinaopschool\\.nl/\" to=\"https://www.campinaopschool.nl/\"/><rule from=\"^http://(www\\.)?connecthr\\.nl/\" to=\"https://www.connecthr.nl/\"/><rule from=\"^http://intern\\.connecthr\\.nl/\" to=\"https://intern.connecthr.nl/\"/><rule from=\"^http://(academy|m(elk|ilch)web)\\.frieslandcampina\\.com/\" to=\"https://$1.frieslandcampina.com/\"/><rule from=\"^http://(www\\.)landliebe\\.de/\" to=\"https://landliebe.de/\"/><rule from=\"^http://(www\\.)?melkweb\\.com/\" to=\"https://melkweb.frieslandcampina.com/\"/><rule from=\"^http://edixml\\.m(elkweb|ycampina)\\.com/\" to=\"https://edixml.m$1.com/\"/><rule from=\"^http://(www\\.)?mycampina\\.com/\" to=\"https://www.mycampina.com/\"/><securecookie host=\"^(?:www\\.)campinaopschool\\.nl$\" name=\".*\"/><securecookie host=\"^www\\.connecthr\\.nl$\" name=\".*\"/><securecookie host=\"^me(?:elk|ilch)web\\.frieslandcampina\\.com$\" name=\".*\"/><securecookie host=\"^www\\.landliebe\\.de$\" name=\".*\"/><securecookie host=\"^edixml\\.melkweb\\.com$\" name=\".*\"/></ruleset>", "<ruleset name=\"Campus Job.com\" f=\"Campus_Job.com.xml\"><securecookie host=\"^\\.campusjob\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Campus Pack (partial)\" default_off=\"failed ruleset test\" f=\"Campus_Pack.xml\"><exclusion pattern=\"^http://www\\.campuspack\\.net/\"/><securecookie host=\"^(?:.+\\.)?campuspack\\.eu$\" name=\".+\"/><rule from=\"^http://([\\w\\-]+\\.)?campuspack\\.eu/\" to=\"https://$1campuspack.eu/\"/><rule from=\"^http://([\\w\\-]+)\\.campuspack\\.net/(Domain/|static)/\" to=\"https://$1.campuspack.net/$2/\"/></ruleset>", "<ruleset name=\"Campus Labs.com\" f=\"Campuslabs.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^(?!\\.campuslabs\\.com$).\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cams.com (partial)\" f=\"Cams.com.xml\"><securecookie host=\"^\\.cams\\.com$\" name=\"^(?:AB_TRACKING|cams_tr|click_id_time|HISTORY|IP_COUNTRY|LOCATION_FROM_IP|REFERRAL_URL)$\"/><rule from=\"^http://(?:graphic|photo)s\\.cams\\.com/\" to=\"https://secureimage.securedataimages.com/\"/></ruleset>", "<ruleset name=\"CanLII\" f=\"CanLII.xml\"><securecookie host=\"^(?:www\\.)?canlii\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CanSecWest\" f=\"CanSecWest.xml\"><securecookie host=\"^\\.cansecwest\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?cansecwest\\.com/\" to=\"https://cansecwest.com/\"/></ruleset>", "<ruleset name=\"Can I Use Python 3.com\" f=\"Can_I_Use_Python_3.com.xml\"><rule from=\"^http://www\\.caniusepython3\\.com/\" to=\"https://caniusepython3.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Can They See My Dick.com\" f=\"Can_They_See_My_Dick.com.xml\"><securecookie host=\"^\\.cantheyseemydick\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CanadaHelps (partial)\" f=\"CanadaHelps.xml\"><exclusion pattern=\"^http://(?:www\\.)?canadahelps\\.org/(?:GivingPages/GivingPages|Home|InfoPages/AboutUsOverview|.+/Default)\\.aspx\"/><exclusion pattern=\"^http://(?:www\\.)?canadahelps\\.org/database/files/\"/><rule from=\"^http://(?:www\\.)?canadahelps\\.org/\" to=\"https://www.canadahelps.org/\"/></ruleset>", "<ruleset name=\"Canada Post\" f=\"CanadaPost.xml\"><rule from=\"^http://([^/:@\\.]+)\\.canadapost\\.ca/\" to=\"https://$1.canadapost.ca/\"/></ruleset>", "<ruleset name=\"Canadian Lung Association\" f=\"Canadian-Lung-Assoc.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Canadian Web Hosting (partial)\" f=\"Canadian-Web-Hosting.xml\"><securecookie host=\"^(?:.*\\.)?canadianwebhosting\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Canadian Broadcasting Corporation (mixed content)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Canadian_Broadcasting_Corporation-mixedcontent.xml\"><exclusion pattern=\"^http://music\\.cbc\\.ca/(?:config/|images/|(?:.+/)?(?:j|service)s/|lib/|modules/|(?:Web|Script)Resource\\.axd/|stats/)\"/><rule from=\"^http://music\\.cbc\\.ca/\" to=\"https://music.cbc.ca/\"/></ruleset>", "<ruleset name=\"Canadian Broadcasting Corporation (partial)\" f=\"Canadian_Broadcasting_Corporation.xml\"><exclusion pattern=\"^http://music\\.cbc\\.ca/(?!config/|images/|(?:.+/)?(?:j|service)s/|lib/|modules/|(?:Web|Script)Resource\\.axd/|stats/)\"/><rule from=\"^http://(music|sso)\\.cbc\\.ca/\" to=\"https://$1.cbc.ca/\"/></ruleset>", "<ruleset name=\"Canadian Dimension.com\" f=\"Canadian_Dimension.com.xml\"><securecookie host=\"^canadiandimension\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Canadian Institute of Chartered Accountants (partial)\" default_off=\"failed ruleset test\" f=\"Canadian_Institute_of_Chartered_Accountants.xml\"><securecookie host=\"^secure\\.cica\\.ca$\" name=\".+\"/><rule from=\"^http://secure\\.cica\\.ca/\" to=\"https://secure.cica.ca/\"/></ruleset>", "<ruleset name=\"Canadian Light Source (partial)\" f=\"Canadian_Light_Source.xml\"><securecookie host=\"^user\\.lightsource\\.ca$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Canadian Press\" f=\"Canadian_Press.xml\"><securecookie host=\"^www\\.thecanadianpress\\.com$\" name=\".+\"/><rule from=\"^http://www\\.cp\\.org/([^\\?]*)(?:\\?.*)?\" to=\"https://www.thecanadianpress.com/$1\"/><rule from=\"^http://(?:www\\.)?thecanadianpress\\.com/\" to=\"https://www.thecanadianpress.com/\"/></ruleset>", "<ruleset name=\"Canadian Security Intelligence Service\" f=\"Canadian_Security_Intelligence_Service.xml\"><rule from=\"^http://csis\\.gc\\.ca/\" to=\"https://www.csis.gc.ca/\"/><rule from=\"^http://([^/:@]+)?\\.csis\\.gc\\.ca/\" to=\"https://$1.csis.gc.ca/\"/><rule from=\"^http://scrs\\.gc\\.ca/\" to=\"https://www.csis.gc.ca/\"/><rule from=\"^http://([^/:@]+)?\\.scrs\\.gc\\.ca/\" to=\"https://$1.csis.gc.ca/\"/><rule from=\"^http://csis-scrs\\.gc\\.ca/\" to=\"https://www.csis.gc.ca/\"/><rule from=\"^http://([^/:@]+)?\\.csis-scrs\\.gc\\.ca/\" to=\"https://$1.csis.gc.ca/\"/></ruleset>", "<ruleset name=\"CanalDigital\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"CanalDigital.xml\"><rule from=\"^http://((?:www|erhverv|foreninger|iptv|kabel|parabol|selger)\\.)?canaldigital\\.(dk|no|se)/\" to=\"https://$1canaldigital.$2/\"/></ruleset>", "<ruleset name=\"Canary Watch.org\" default_off=\"failed ruleset test\" f=\"Canary_Watch.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cancer.gov (partial)\" f=\"Cancer.gov.xml\"><exclusion pattern=\"^http://seer\\.cancer\\.gov/+(?!favicon\\.ico|[is]/|toolbox/.+\\.css)\"/><securecookie host=\"^(?!seer\\.)\\w\" name=\".\"/><rule from=\"^http://itcr\\.cancer\\.gov/\" to=\"https://cbiit.nci.nih.gov/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CandH Lures.com (partial)\" f=\"CandH_Lures.com.xml\"><rule from=\"^http://(?:www\\.)?candhlures\\.com/(?=cdn-cgi/|css/|javascript/)\" to=\"https://www.candhlures.com/\"/></ruleset>", "<ruleset name=\"Canlı Alem\" f=\"Canli_Alem.xml\"><securecookie host=\"^\\.?canlialem\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Canon (partial)\" default_off=\"failed ruleset test\" f=\"Canon.xml\"><exclusion pattern=\"^http://shop\\.usa\\.canon\\.com/+(?!estore/(?:images|marketing)/|favicon\\.ico|shop/(?:CheckoutLogonDisplayView|OrderShippingBillingView|ResetPasswordGuestErrorView|UserRegistrationForm|catalog)(?:$|[?/])|sys/|wcsstore/.+/(?:css|images)/)\"/><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^(?!shop\\.usa\\.)\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Canonical.com (partial)\" default_off=\"failed ruleset test\" f=\"Canonical.xml\"><securecookie host=\"^(?:certification|irclogs|shop)\\.canonical\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Canterbury.gov.uk (partial)\" f=\"Canterbury.gov.uk.xml\"><exclusion pattern=\"http://democracy\\.canterbury\\.gov\\.uk/(?!/*(?:[Ss]iteSpecific/|(?:ieLogon|mgRegisterKeywordInterest)\\.aspx|jquery-ui/))\"/><securecookie host=\"^(?!democracy\\.)\\w\" name=\".\"/><securecookie host=\"^\\.forms\\.\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Canvas.Net\" f=\"Canvas.net.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://canvas\\.net/\" to=\"https://www.canvas.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Canvas LMS.com\" f=\"Canvas_LMS.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Canvas n decor.com\" f=\"Canvas_n_decor.com.xml\"><securecookie host=\"^\\.canvasndecor\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cape-it.de (partial)\" f=\"Cape-it.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Capistrano\" f=\"Capistrano.xml\"><rule from=\"^http://(?:www\\.)?capify\\.org/\" to=\"https://github.com/capistrano/capistrano/wiki/Documentation-v2.x\"/></ruleset>", "<ruleset name=\"Capital One Connect\" f=\"Capital-One-Connect.xml\"><securecookie host=\"^www\\.capitaloneconnect\\.\\w{3,4}$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?capitaloneconnect\\.(biz|com|info|net|org)/\" to=\"https://www.capitaloneconnect.$1/\"/></ruleset>", "<ruleset name=\"CapitalOne.com\" default_off=\"failed ruleset test\" f=\"CapitalOne.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Capitalone360.com\" default_off=\"failed ruleset test\" f=\"CapitalOne360.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Capitaller.ru\" f=\"Capitaller.ru.xml\"><securecookie host=\"^(?:www\\.)?capitaller\\.ru$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Capitol Machine.com\" f=\"Capitol_Machine.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Capn Proto.org\" f=\"Capn_Proto.org.xml\"><securecookie host=\"^\\.capnproto\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"captchas.net\" f=\"Captchas.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Captura Group (partial)\" platform=\"mixedcontent\" f=\"Captura-Group.xml\"><securecookie host=\"^(?:www\\.)?measuredvoice\\.com$\" name=\".*\"/><rule from=\"^http://cdn\\.measuredvoice\\.com/\" to=\"https://s3.amazonaws.com/cdn.measuredvoice.com/\"/><rule from=\"^http://(www\\.)?measuredvoice\\.com/(favicon\\.ico|img/|wp-content/)\" to=\"https://$1measuredvoice.com/$2\"/></ruleset>", "<ruleset name=\"capwiz.com (partail)\" f=\"Capwiz.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Car.com (partial)\" f=\"Car.com.xml\"><exclusion pattern=\"^http://dealers\\.car\\.com/+(?![Cc]ontent/|favicon.ico)\"/><securecookie host=\"^(?:finance|loans)\\.car\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CarAdvice\" default_off=\"failed ruleset test\" f=\"CarAdvice.xml\"><rule from=\"^http://(?:cdn\\.|(www\\.))?caradvice\\.com\\.au/\" to=\"https://$1caradvice.com.au/\"/></ruleset>", "<ruleset name=\"CarProMods.com\" f=\"CarProMods.com.xml\"><securecookie host=\"^(?:www)?\\.carpromods\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?carpromods\\.com/\" to=\"https://www.carpromods.com/\"/></ruleset>", "<ruleset name=\"Cara Sutra.co.uk\" f=\"Carasutra.co.uk.xml\"><securecookie host=\"^\\.carasutra\\.co\\.uk$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Carbonfund.org\" f=\"Carbonfund.org.xml\"><securecookie host=\"^(?:www\\.)?carbonfund\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Carbonmade.com\" f=\"Carbonmade.xml\"><securecookie host=\"^(?:descience0\\d\\.)?carbonmade\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Carbonwind.net\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Carbonwind.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CardCash.com\" f=\"CardCash.com.xml\"><securecookie host=\"^\\.(?:www\\.)?cardcash\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cardiff University (partial)\" f=\"Cardiff-University.xml\"><rule from=\"^http://www\\.astro\\.cardiff\\.ac\\.uk/\" to=\"https://www.astro.cf.ac.uk/\"/><rule from=\"^http://(cardiffnetwork|cs|engin)\\.cf\\.ac\\.uk/\" to=\"https://www.$1.cf.ac.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cards Against Humanity.com\" f=\"Cards_Against_Humanity.com.xml\"><securecookie host=\"^store\\.cardsagainsthumanity\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Care Net\" f=\"Care-Net.xml\"><securecookie host=\"^www\\.care-net\\.org$\" name=\".+\"/><rule from=\"^(?:http://(?:www\\.)?|https://)care-net\\.org/\" to=\"https://www.care-net.org/\"/></ruleset>", "<ruleset name=\"Care2.com\" default_off=\"failed ruleset test\" f=\"Care2.com.xml\"><securecookie host=\"^(?:www)?\\.care2\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?care2\\.com/\" to=\"https://www.care2.com/\"/><rule from=\"^http://dingo\\.care2\\.com/\" to=\"https://dingo.care2.com/\"/><rule from=\"^http://jobs\\.care2\\.com/\" to=\"https://care2.jobamatic.com/\"/><rule from=\"^http://passport\\.care2\\.com/login\\.html\" to=\"https://www.care2.com/login.html\"/><rule from=\"^http://passport\\.care2\\.com/\" to=\"https://www.care2.com/accounts/\"/><rule from=\"^http://volunteer\\.care2\\.com/[^\\?]*(\\?.*)?\" to=\"https://www.care2.com/volunteer$1\"/></ruleset>", "<ruleset name=\"Carecareers.com.au (partial)\" default_off=\"failed ruleset test\" f=\"Carecareers.com.au.xml\"><securecookie host=\"^jobs\\.carecareers\\.com\\.au$\" name=\".+\"/><rule from=\"^http://jobs\\.carecareers\\.com\\.au/\" to=\"https://jobs.carecareers.com.au/\"/></ruleset>", "<ruleset name=\"Career.ru\" f=\"Career.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CareerBuilder.com (partial)\" default_off=\"failed ruleset test\" f=\"CareerBuilder.xml\"><exclusion pattern=\"^http://b2b\\.careerbuilder\\.com/(?!/*(?:$|\\?|[els]/|emailPreference/|unsubscribe/|webmail/))\"/><securecookie host=\"^\\.\" name=\"^(?:__cfduid$|_ga|cf_clearance$)\"/><securecookie host=\"^(?!b2b\\.)\\w\" name=\".\"/><rule from=\"^http://b2b\\.careerbuilder\\.com/+(?:\\?.*)?$\" to=\"https://www.careerbuilder.com/\"/><rule from=\"^http://b2b\\.careerbuilder\\.com/\" to=\"https://go.pardot.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CareerDean.com\" default_off=\"failed ruleset test\" f=\"CareerDean.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CareerPerfect\" f=\"CareerPerfect.xml\"><securecookie host=\"^\\.careerperfect\\.com$\" name=\".*\"/><rule from=\"^http://(?:secure\\.|www\\.)?careerperfect\\.com/\" to=\"https://secure.careerperfect.com/\"/><rule from=\"^http://monsterres\\.careerperfect\\.com/(brands|content/(\\d{4}\\w?|images|trk-v1))/\" to=\"https://secure.careerperfect.com/$1/\"/></ruleset>", "<ruleset name=\"Careerfoundry.com\" f=\"Careerfoundry.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Careers.fi\" f=\"Careers.fi.xml\"><rule from=\"^http://(www\\.)?careers\\.fi/\" to=\"https://careers.fi/\"/></ruleset>", "<ruleset name=\"Carestream.com\" f=\"Carestream.com.xml\"><securecookie host=\"^(?:www)?\\.carestream\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?carestream\\.com/\" to=\"https://www.carestream.com/\"/></ruleset>", "<ruleset name=\"Carezone.cz\" f=\"Carezone.cz.xml\"><securecookie host=\"^\\.carezone\\.cz$\" name=\"^__utma$\"/><securecookie host=\"^\\.carezone\\.cz$\" name=\"^__utmz$\"/><securecookie host=\"^admin\\.carezone\\.cz$\" name=\"^session$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cargo (partial)\" f=\"Cargo.xml\"><rule from=\"^http://(www\\.)?cargocollective\\.com/(?=_css/|favicon\\.ico|_gfx/|stylesheet/)\" to=\"https://$1cargocollective.com/\"/><rule from=\"^http://media\\.cargocollective\\.com/\" to=\"https://c3434167.ssl.cf0.rackcdn.com/\"/><rule from=\"^http://payload\\.cargocollective\\.com/\" to=\"https://c573862.ssl.cf0.rackcdn.com/\"/><rule from=\"^http://payload50\\.cargocollective\\.com/\" to=\"https://c3426892.ssl.cf0.rackcdn.com/\"/><rule from=\"^http://payload54\\.cargocollective\\.com/\" to=\"https://c3426897.ssl.cf0.rackcdn.com/\"/><rule from=\"^http://payload56\\.cargocollective\\.com/\" to=\"https://c3426899.ssl.cf0.rackcdn.com/\"/><rule from=\"^http://payload57\\.cargocollective\\.com/\" to=\"https://c3426900.ssl.cf0.rackcdn.com/\"/><rule from=\"^http://payload93\\.cargocollective\\.com/\" to=\"https://c3452614.ssl.cf0.rackcdn.com/\"/><rule from=\"^http://payload100\\.cargocollective\\.com/\" to=\"https://c3452621.ssl.cf0.rackcdn.com/\"/><rule from=\"^http://payload120\\.cargocollective\\.com/\" to=\"https://a506586f092ca126898c-4779b67baf4ae2f3b1add8bb236f618f.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://payload141\\.cargocollective\\.com/\" to=\"https://7886f778086c061c4ea7-c166c3974f4551941b1742539f87878f.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://payload162\\.cargocollective\\.com/\" to=\"https://5365791d8e35e1727236-7f9dfcc055df093645758908fe06f705.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://payload169\\.cargocollective\\.com/\" to=\"https://612d1a71230523df4fe9-4ee8e300510bcfe4f6b35103392d0b2b.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://payload174\\.cargocollective\\.com/\" to=\"https://d12d30d30b94662cf1bf-d730a381cec30b09b6ffdde13fb218a6.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://payload180\\.cargocollective\\.com/\" to=\"https://a4ce430392986aec9cfc-443e219c85814104c662bd85fe98ae82.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://payload203\\.cargocollective\\.com/\" to=\"https://4716a3e1207fa032eadf-9086378b72655457e586fa5056c9274c.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://payload200\\.cargocollective\\.com/\" to=\"https://7e88561f37b025b9959e-f9c813036f1357060526fbfc879ecc04.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://payload215\\.cargocollective\\.com/\" to=\"https://e2f0d7e1fc4fd5d3636b-5c5fc32a9669fba64977478aa8802799.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://payload216\\.cargocollective\\.com/\" to=\"https://c961e2a037a0257122b6-069ed874dcd6a73d3851c1620da864a4.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://payload246\\.cargocollective\\.com/\" to=\"https://3ee99a4d99cc6612cec3-afe7421badd138b05a2309c5cb228ad8.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://payload250\\.cargocollective\\.com/\" to=\"https://79374de44d5e7ecaf88a-2ad9d41db9c7ba36604c9612b6f92488.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://payload258\\.cargocollective\\.com/\" to=\"https://4cb35411cb45cfd77b32-f5d733f446c8fd08907dcac084aa95a3.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://payload263\\.cargocollective\\.com/\" to=\"https://9f20954c27db5d99940c-223557c9acb55198baff86c90a7b5e16.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://payload271\\.cargocollective\\.com/\" to=\"https://7f110843eca5c0d3e385-4e08e849f3eae91ecc5304ca7a022f60.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://payload277\\.cargocollective\\.com/\" to=\"https://17c03ece40efdab208da-3a9b57b1b9597fd75dd50c1708c7fa0c.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://payload280\\.cargocollective\\.com/\" to=\"https://5e5d49cfdb379ce0c937-5f37aeb368ece0460243e4e3c4a03111.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://payload282\\.cargocollective\\.com/\" to=\"https://7c6429bafe722da2753b-014553dd10402f2cae583d2fc431df61.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://payload287\\.cargocollective\\.com/\" to=\"https://dcac8aac4b6120e78f70-4816ed90d4cd9717520c758b10641d4f.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://payload288\\.cargocollective\\.com/\" to=\"https://d7b28b377c20485bcd1e-17badbe9072beed4090a37cfee2aeb9d.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://payload291\\.cargocollective\\.com/\" to=\"https://9817d040c26c7fc91c86-7067033f01f8681d3d26db1b869e7c13.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://payload294\\.cargocollective\\.com/\" to=\"https://aa0c5e4ad94186b7d1ff-c47c05f42ae1f5ff6f44beac40165734.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://payload295\\.cargocollective\\.com/\" to=\"https://d3f85a14b915f530cfd8-341bc7b6089f1bf517cb1eb7488d0cf3.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://payload296\\.cargocollective\\.com/\" to=\"https://14dc5f4076479b5cedab-94c4d07712ffb0415e1a5357e32aaf70.ssl.cf1.rackcdn.com/\"/></ruleset>", "<ruleset name=\"Zeiss.com (partial)\" f=\"Carl_Zeiss.xml\"><securecookie host=\".+\\.zeiss\\.com$\" name=\".+\"/><rule from=\"^http://applications\\.zeiss\\.com/\\??$\" to=\"https://corporate.zeiss.com/gateway/en_de/home.html\"/><rule from=\"^http://applications\\.zeiss\\.com/(?=\\w{16}/Index\\?ReadForm)\" to=\"https://www.zeiss.com/\"/><rule from=\"^http://(corporate|meditec|microscopy|www)\\.zeiss\\.com/\" to=\"https://$1.zeiss.com/\"/></ruleset>", "<ruleset name=\"Carleton.ca (partial)\" f=\"Carleton.ca.xml\"><exclusion pattern=\"^http://(?:alumni|graduate|newsroom|sprott)\\.carleton\\.ca/(?!wp-content/|wp-includes/)\"/><exclusion pattern=\"^http://events\\.carleton\\.ca/(?!cu_global/|wp-content/|wp-includes/)\"/><exclusion pattern=\"^http://researchworks\\.carleton\\.ca/(?!cu/wp-content/|cu/wp-includes/)\"/><securecookie host=\"^(?:events|gsapplications)\\.carleton\\.ca$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?(ccsl|library)\\.carleton\\.ca/\" to=\"https://$1.carleton.ca/\"/><rule from=\"^http://((?:admissions|alumni|apply|events|forms|giving|goravens|graduate|gsapplications|newsroom|researchworks|science|(?:www\\.)?scs|sprott|students|www[12]?)\\.)?carleton\\.ca/\" to=\"https://$1carleton.ca/\"/></ruleset>", "<ruleset name=\"Carleton College\" f=\"Carleton_College.xml\"><securecookie host=\"^apps\\.carleton\\.edu$\" name=\".+\"/><rule from=\"^http://carleton\\.edu/\" to=\"https://www.carleton.edu/\"/><rule from=\"^http://(webapps\\.acs|apps|www)\\.carleton\\.edu/\" to=\"https://$1.carleton.edu/\"/></ruleset>", "<ruleset name=\"carlosprioglio.com\" default_off=\"mismatched\" f=\"Carlosprioglio.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Carlsbad.org\" f=\"Carlsbad.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CarltonBale.com (partial)\" f=\"CarltonBale.com.xml\"><rule from=\"^http://s3\\.carltonbale\\.com/\" to=\"https://d18oqavmcmo3u.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Carnegie Institution for Science (partial)\" default_off=\"failed ruleset test\" f=\"Carnegie-Institution-for-Science.xml\"><securecookie host=\".*\\.carnegiescience\\.edu$\" name=\".+\"/><securecookie host=\"^(?:\\.gl|\\.hazen\\.gl|mail)\\.ciw\\.edu$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ciw\\.edu/\" to=\"https://carnegiescience.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Carnegie Mellon University (problematic)\" default_off=\"mismatched\" f=\"Carnegie-Mellon-University-mismatches.xml\"><securecookie host=\"^portal\\.etc\\.cmu.edu$\" name=\".+\"/><rule from=\"^http://(athletics|portal\\.etc|repository)\\.cmu\\.edu/\" to=\"https://$1.cmu.edu/\"/></ruleset>", "<ruleset name=\"Carnegie Mellon University (partial)\" f=\"Carnegie-Mellon-University.xml\"><exclusion pattern=\"^http://(?:www\\.)?heinz\\.cmu\\.edu/(?!image).+\\.aspx(?:$|\\?)\"/><securecookie host=\"^.*\\.cmu\\.edu$\" name=\".*\"/><rule from=\"^http://(www\\.)?cmu\\.edu/\" to=\"https://$1cmu.edu/\"/><rule from=\"^http://(www\\.)?((?:directory\\.|webiso\\.)?andrew|cylab|ece|(?:sparrow|users)\\.ece|(?:(?:calendar|ccc12|csadmins|cleese|www-dev\\.csd|cups|fac|heinz|link|lti|ath-live\\.mts|news|(?:dev\\.|wonderwoman\\.)?olympus|origami\\.qolt|sites|(?:antman|gambit|innovation|mailman|webbuild-web1)\\.srv|trust|(?:ptest[1-4]-userpool|webbuild)\\.web|webapps|wiki|women|www-2|www-dev|xia)\\.)?cs|lunchdelivery\\.hcii|libwebspace\\.library|my|ri|(?:resources\\.|www\\.)?sei|studentaffairs)\\.cmu\\.edu/\" to=\"https://$1$2.cmu.edu/\"/><rule from=\"^http://webuild-web2\\.srv\\.cs\\.cmu\\.edu/\" to=\"https://webuild-web1.srv.cs.cmu.edu/\"/><rule from=\"^http://(?:www\\.)?etc\\.cmu\\.edu/\" to=\"https://www.etc.cmu.edu/\"/></ruleset>", "<ruleset name=\"Carousell.com (partial)\" f=\"Carousell.com.xml\"><securecookie host=\"^(?:id\\.|my\\.|sg\\.|tw\\.|us\\.)?carousell\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Carphone Warehouse.com (partial)\" f=\"Carphone_Warehouse.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?carphonewarehouse\\.com/(?!cpwtrade\\.css|favicon\\.ico)\"/><exclusion pattern=\"^http://m\\.carphonewarehouse\\.com/+(?!img/|mt/a/)\"/><securecookie host=\"^\\.\" name=\"^s_v\"/><securecookie host=\"^(?!m\\.|www\\.)\\w\" name=\".\"/><securecookie host=\"^\\.business\\.\" name=\".\"/><rule from=\"^http://metrics\\.carphonewarehouse\\.com/\" to=\"https://carphonewarehouse.sc.omtrdc.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CarrefourSA.com\" f=\"CarrefourSA.com.xml\"><securecookie host=\"^www\\.carrefoursa\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"carrier-lost.org\" f=\"Carrier-lost.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cars.com (partial)\" f=\"Cars.com.xml\"><exclusion pattern=\"http://www\\.cars\\.com/+(?!$|\\?|[\\w-]+/(?:image|cs)s/|css/|favicon\\.ico|images/|static/)\"/><securecookie host=\"^\\.www\\.cars\\.com$\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Carsabi.com\" default_off=\"mismatched\" f=\"Carsabi.com.xml\"><securecookie host=\"^carsabi\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?carsabi\\.com/\" to=\"https://carsabi.com/\"/></ruleset>", "<ruleset name=\"CarterCenter.org (mismatches)\" default_off=\"Certificate mismatch\" f=\"CarterCenter.org-mismatches.xml\"><rule from=\"^http://blog\\.cartercenter\\.org/\" to=\"https://blog.cartercenter.org/\"/></ruleset>", "<ruleset name=\"Carter Center.org (partial)\" f=\"CarterCenter.org.xml\"><exclusion pattern=\"^http://donate\\.cartercenter\\.org/(?!$|\\?|site/(?:PageServer$|(?:Donation2|SPageNavigator|UserLogin(?:$|[?/]))))\"/><securecookie host=\"^\\.\" name=\"^_ga\"/><securecookie host=\"^[^.d]\" name=\".\"/><rule from=\"^http://donate\\.cartercenter\\.org/(?:\\?.*)?$\" to=\"https://secure3.convio.net/carter/site/PageServer\"/><rule from=\"^http://donate\\.cartercenter\\.org/\" to=\"https://secure3.convio.net/carter/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Carters.com (partial)\" f=\"Carters.com.xml\"><securecookie host=\"^(?:supplier|www)\\.carters\\.com$\" name=\".+\"/><rule from=\"^http://carters\\.com/\" to=\"https://www.carters.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Carters OshLosh.Ca\" default_off=\"failed ruleset test\" f=\"Carters_OshLosh.Ca.xml\"><securecookie host=\"^www\\.cartersoshkosh\\.ca$\" name=\".+\"/><rule from=\"^http://cartersoshkosh\\.ca/\" to=\"https://www.cartersoshkosh.ca/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Casale Media.com (partial)\" default_off=\"failed ruleset test\" f=\"Casale-Media.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://ip\\.casalemedia\\.com/\" to=\"https://as-sec.casalemedia.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CCE.com\" f=\"Casas_Communications_Engineering.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Casascius\" f=\"Casascius.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cascading Media.com\" f=\"Cascading_Media.com.xml\"><securecookie host=\"^\\.cascadingmedia\\.com$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Case Western Reserve University (partial)\" f=\"Case_Western_Reserve_University.xml\"><rule from=\"^http://tiswww\\.c(ase|wru)\\.edu/\" to=\"https://tiswww.c$1.edu/\"/><rule from=\"^http://cnswww\\.cns\\.cwru\\.edu/\" to=\"https://cnswww.cns.cwru.edu/\"/></ruleset>", "<ruleset name=\"Caseking.biz\" f=\"Caseking.biz.xml\"><rule from=\"^http://(?:www\\.)?caseking\\.biz/\" to=\"https://www.caseking.biz/\"/></ruleset>", "<ruleset name=\"Caseking.de\" f=\"Caseking.de.xml\"><securecookie host=\"^(?:www)?\\.caseking\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?caseking\\.de/\" to=\"https://www.caseking.de/\"/></ruleset>", "<ruleset name=\"Case's Ladder\" f=\"Cases_Ladder.xml\"><rule from=\"^http://((?:cdn-img|cgi\\d?|img|plus\\d|users|www)\\.)?igl\\.net/\" to=\"https://$1igl.net/\"/></ruleset>", "<ruleset name=\"casetext.com\" f=\"Casetext.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CashPlatoon.com\" default_off=\"expired, missing certificate chain\" f=\"CashPlatoon.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cash for Contracts\" default_off=\"expired\" f=\"Cash_for_Contracts.xml\"><securecookie host=\"^secure\\.cashforcontracts\\.com$\" name=\".+\"/><rule from=\"^http://(?:secure\\.|www\\.)?cashforcontracts\\.com/\" to=\"https://secure.cashforcontracts.com/\"/></ruleset>", "<ruleset name=\"Cashback.co.uk (partial)\" f=\"Cashback.co.uk.xml\"><exclusion pattern=\"http://www\\.cashback\\.co\\.uk/$\"/><rule from=\"^http://(secure\\.|www\\.)?cashback\\.co\\.uk/\" to=\"https://$1cashback.co.uk/\"/><rule from=\"^https://secure\\.cashback\\.co\\.uk/$\" to=\"https://www.cashback.co.uk/\"/></ruleset>", "<ruleset name=\"CasinoAffiliatePrograms.com\" default_off=\"failed ruleset test\" f=\"CasinoAffiliatePrograms.xml\"><securecookie host=\"^www\\.casinoaffiliateprograms\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?casinoaffiliateprograms\\.com/\" to=\"https://casinoaffiliateprograms.com/\"/></ruleset>", "<ruleset name=\"CasinoEstrella.com\" f=\"CasinoEstrella.com.xml\"><securecookie host=\"^(?:www)?\\.casinoestrella\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Caskstore.com\" f=\"Caskstore.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Casper.com\" f=\"Casper.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Casper og Frank.de (false MCB)\" platform=\"mixedcontent\" f=\"Casper_og_Frank.dk.xml\"><securecookie host=\"^\\.casperogfrank\\.dk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Casro (partial)\" f=\"Casro.xml\"><exclusion pattern=\"^http://(?:www\\.)?casro\\.org/(?:index\\.cfm)?(?:$|\\?)\"/><rule from=\"^http://(?:www\\.)?casro\\.org/\" to=\"https://www.casro.org/\"/></ruleset>", "<ruleset name=\"CassinoEstrela\" default_off=\"failed ruleset test\" f=\"CassinoEstrela.xml\"><securecookie host=\"^(?:www)?\\.cassinoestrela\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Castel-Bayart\" f=\"Castel-Bayart.xml\"><securecookie host=\"^w*\\.castel-bayart\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?castel-bayart\\.com/\" to=\"https://www.castel-bayart.com/\"/></ruleset>", "<ruleset name=\"Castle-Technology.co.uk\" f=\"Castle-Technology.co.uk.xml\"><securecookie host=\"^\\.www\\.castle-technology\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Castlebridge.ie\" f=\"Castlebridge.ie.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CatN.com\" f=\"CatN.com.xml\"><securecookie host=\"^cp\\.c4\\.catn\\.com$\" name=\".+\"/><rule from=\"^http://(cp\\.c4\\.|www\\.)?catn\\.com/\" to=\"https://$1catn.com/\"/></ruleset>", "<ruleset name=\"Catalog of Domestic Federal Assistance\" f=\"Catalog-of-Domestic-Federal-Assistance.xml\"><securecookie host=\"^.*\\.cfda\\.gov$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?cfda\\.gov/\" to=\"https://www.cfda.gov/\"/></ruleset>", "<ruleset name=\"Catalysis.com (partial)\" f=\"Catalysis.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Catalyst IT (partial)\" f=\"Catalyst-IT.xml\"><rule from=\"^http:\" to=\"https:\"/><securecookie host=\"^wrms\\.catalyst\\.net\\.nz$\" name=\".*\"/></ruleset>", "<ruleset name=\"Catalyst Host.com\" f=\"Catalyst_Host.com.xml\"><securecookie host=\"^(?:cp|portal)?\\.catalysthost\\.com$\" name=\".+\"/><rule from=\"^http://(?:(cp\\.|portal\\.)|www\\.)?catalysthost\\.com/\" to=\"https://$1catalysthost.com/\"/></ruleset>", "<ruleset name=\"Catalyst Technology Group\" default_off=\"failed ruleset test\" f=\"Catalyst_Technology_Group.xml\"><securecookie host=\"^(?:.+\\.)?catalysttg\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Catarse.me (partial)\" f=\"Catarse.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Catchy.com\" f=\"Catchy.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cateee.net\" f=\"Cateee.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Caters News Agency (partial)\" f=\"Caters_News_Agency.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Catgirlsare.sexy\" f=\"Catgirlsare.sexy.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cathay Pacific\" default_off=\"failed ruleset test\" f=\"Cathay_Pacific.xml\"><rule from=\"^http://cathaypacific\\.com/\" to=\"https://www.cathaypacific.com/\"/><rule from=\"^http://cathaypacificcargo\\.com/\" to=\"https://www.cathaypacficcargo.com/\"/><rule from=\"^http://cathaypacifichost\\.com/\" to=\"https://www.cathaypacifichost.com/\"/><rule from=\"^http://cxholidays\\.com/\" to=\"https://www.cxholidays.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Catlin Sea Survey.com (partial)\" default_off=\"failed ruleset test\" f=\"Catlin_Sea_Survey.xml\"><securecookie host=\"^(?:www)?\\.catlinseaviewsurvey\\.com$\" name=\".+\"/><rule from=\"^http://catlinseaviewsurvey\\.com/\" to=\"https://www.catlinseaviewsurvey.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cato Institute (partial)\" default_off=\"failed ruleset test\" f=\"Cato-Institute.xml\"><rule from=\"^http://secure\\.cato\\.org/\" to=\"https://secure.cato.org/\"/></ruleset>", "<ruleset name=\"Catooh.com (partial)\" f=\"Catooh.com.xml\"><exclusion pattern=\"^http://www\\.catooh\\.com/+(?!catoohthumb\\d\\d/|html/|magix/|registrierung\\.\\d+\\.html|themes/)\"/><rule from=\"^http://catooh\\.com/\" to=\"https://www.catooh.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Catraca Livre.com.br\" default_off=\"failed ruleset test\" f=\"Catraca_Livre.com.br.xml\"><securecookie host=\"^\\.catracalivre\\.com\\.br$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Causes (partial)\" default_off=\"failed ruleset test\" f=\"Causes.xml\"><securecookie host=\"^(?:(?:[^s]\\w*)?\\.)?causes\\.com$\" name=\".*\"/><rule from=\"^http://s2\\.causes\\.com/\" to=\"https://www.causes.com/\"/><rule from=\"^http://([^s][\\w\\-]*\\.)?causes\\.com/\" to=\"https://$1causes.com/\"/><rule from=\"^http://support\\.causes\\.com/(assets|generated|images|system)/\" to=\"https://causes.zendesk.com/$1/\"/><rule from=\"^http://causes\\.presscdn\\.com/\" to=\"https://exchange.causes.com/\"/></ruleset>", "<ruleset name=\"Cavirtex.com (partial)\" default_off=\"failed ruleset test\" f=\"Cavirtex.com.xml\"><securecookie host=\"^\\.cavirtex\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cavium.com\" f=\"Cavium.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cax.com\" f=\"Cax.com.xml\"><securecookie host=\"^www\\.cax\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cbb.dk\" f=\"Cbb.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cchtml.com\" default_off=\"self-signed\" f=\"Cchtml.com.xml\"><securecookie host=\"^mail\\.cchtml\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?cchtml\\.com/\" to=\"https://cchtml.com/\"/><rule from=\"^http://mail\\.cchtml\\.com/\" to=\"https://mail.cchtml.com/\"/></ruleset>", "<ruleset name=\"Cctld.ru\" f=\"Cctld.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cdig.me\" f=\"Cdig.me.xml\"><securecookie host=\"^(?:w*\\.)?cdig\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cdkeys.com\" f=\"Cdkeys.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cdn-net.com\" f=\"Cdn-net.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cdnads.com\" f=\"Cdnads.com.xml\"><rule from=\"^http://padsdel\\.cdnads\\.com/\" to=\"https://padsdel2.cdnads.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cdncomputer.com\" default_off=\"failed ruleset test\" f=\"Cdncomputer.com.xml\"><rule from=\"^http://cdn\\.cdncomputer\\.com/\" to=\"https://d1eiwcwqdd4h4w.cloudfront.net/\"/></ruleset>", "<ruleset name=\"cdngeek.net\" default_off=\"mismatched\" f=\"Cdngeek.net.xml\"><rule from=\"^http://awscf\\.cdngeek\\.net/\" to=\"https://awscf.cdngeek.net/\"/></ruleset>", "<ruleset name=\"cdnme.se\" f=\"Cdnme.se.xml\"><rule from=\"^http://cdn(\\d)\\.cdnme\\.se/\" to=\"https://cdn$1.cdnme.se/\"/></ruleset>", "<ruleset name=\"cdnpi.pe\" f=\"Cdnpi.pe.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CeBIT.de (partial)\" f=\"CeBIT.de.xml\"><rule from=\"^http://(?:www\\.)?cebit\\.de/(?=(?:de|en)/applikation/secure/|meinemesse/login(?:$|\\?))\" to=\"https://www.cebit.de/\"/></ruleset>", "<ruleset name=\"Ceasefire Magazine.co.uk\" f=\"Ceasefire_Magazine.co.uk.xml\"><securecookie host=\"^www\\.ceasefiremagazine\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cedexis (partial)\" f=\"Cedexis.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CeeJay.net (partial)\" f=\"CeeJay.net.xml\"><securecookie host=\"^(?:crashplan|support)\\.ceejay\\.net$\" name=\".+\"/><rule from=\"^http://(crashplan|support)\\.ceejay\\.net(:4285)?/\" to=\"https://$1.ceejay.net$2/\"/></ruleset>", "<ruleset name=\"Cefas.co.uk\" f=\"Cefas.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://cefas\\.co\\.uk/\" to=\"https://www.cefas.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cefbuilds.com\" f=\"Cefbuilds.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Celartem (mismatches)\" default_off=\"expired, self-signed\" f=\"Celartem-mismatches.xml\"><rule from=\"^http://celartem\\.com/\" to=\"https://www.celartem.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Celartem (partial)\" platform=\"mixedcontent\" f=\"Celartem.xml\"><rule from=\"^http://(?:www\\.)?lizardtech\\.com/\" to=\"https://lizardtech.com/\"/></ruleset>", "<ruleset name=\"Celiac Disease Foundation\" platform=\"mixedcontent\" f=\"Celiac-Foundation.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cemetech.net\" f=\"Cemetech.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cendio.com\" f=\"Cendio.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ceneo.pl (false MCB)\" platform=\"mixedcontent\" f=\"Ceneo.pl-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ceneo.pl (partial)\" f=\"Ceneo.pl.xml\"><exclusion pattern=\"^http://www\\.ceneo\\.pl/+(?!Content/)\"/><securecookie host=\"^partnerzy\\.ceneo\\.pl$\" name=\".+\"/><rule from=\"^http://ceneo\\.pl/\" to=\"https://www.ceneo.pl/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cengage (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Cengage.xml\"><securecookie host=\"^(?:.*\\.)?(?:ed2go|ordercourses).com$\" name=\".*\"/><securecookie host=\"^serviceplus\\.cengage\\.com$\" name=\".*\"/><securecookie host=\"^(?:.*\\.)?cengagebrain\\.co(?:m|\\.uk)$\" name=\".*\"/><rule from=\"^http://serviceplus\\.cengage\\.com/\" to=\"https://serviceplus.cengage.com/\"/><rule from=\"^http://assets\\.cengagebrain\\.com/\" to=\"https://assets.cengagebrain.com/\"/><rule from=\"^http://(www\\.)?cengagebrain\\.co(m|\\.uk)/\" to=\"https://$1cengagebrain.co$2/\"/><rule from=\"^http://(www\\.)?ed2go\\.com/\" to=\"https://$1ed2go.com/\"/><rule from=\"^http://hbb\\.hbrstatic\\.com/\" to=\"https://business.highbeam.com/\"/><rule from=\"^http://hbr\\.hbrstatic\\.com/\" to=\"https://highbeam.com/\"/><rule from=\"^http://(www\\.)?highbeam\\.com/(Account/|combres\\.axd/|[cC]ontent/|favicon\\.ico|Img/|Login|Registration/)\" to=\"https://$1highbeam.com/$2\"/><rule from=\"^http://business\\.highbeam\\.com/(Content/|favicon2\\.ico|iframead/)\" to=\"https://business.highbeam.com/$1\"/><rule from=\"^http://(?:www\\.)?multivu\\.com/\" to=\"https://www.multivu.com/\"/><rule from=\"^http://(www\\.)?ordercourses\\.com/\" to=\"https://$1ordercourses.com/\"/></ruleset>", "<ruleset name=\"Cenowarka.pl\" f=\"Cenowarka.pl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Censorship.govt.nz\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Censorship.govt.nz.xml\"><rule from=\"^http://www\\.censorship\\.govt\\.nz/\" to=\"https://www.censorship.govt.nz/\"/><rule from=\"^http://censorship\\.govt\\.nz/\" to=\"https://www.censorship.govt.nz/\"/></ruleset>", "<ruleset name=\"census-labs.com\" f=\"Census.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CentOS.org (partial)\" f=\"CentOS.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CentOS Blog.com\" f=\"CentOS_Blog.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Center for Documentation of Violations in Syria\" default_off=\"self-signed\" f=\"Center-for-Documentation-of-Violations-in-Syria.xml\"><rule from=\"^http://(?:www\\.)?vdc-sy\\.org/\" to=\"https://www.vdc-sy.org/\"/></ruleset>", "<ruleset name=\"Center for Responsive Politics (partial)\" f=\"Center-for-Responsive-Politics.xml\"><securecookie host=\"^(?:.*\\.)?opensecrets\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?opensecrets\\.org/\" to=\"https://www.opensecrets.org/\"/><rule from=\"^http://(asset|image)s\\.opensecrets\\.org/\" to=\"https://s3.amazonaws.com/$1s.opensecrets.org/\"/></ruleset>", "<ruleset name=\"Center for Early Childhood Professional Development\" f=\"Center_for_Early_Childhood_Professional_Development.xml\"><securecookie host=\"^(?:w*\\.)?cecpdonline\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Center for Individual Freedom (partial)\" default_off=\"failed ruleset test\" f=\"Center_for_Individual_Freedom.xml\"><securecookie host=\"^(?:www\\.)?cfif\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Center for Land Use Interpretation\" default_off=\"mismatched\" f=\"Center_for_Land_Use_Interpretation.xml\"><securecookie host=\"^\\.clui\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?culi\\.org/\" to=\"https://culi.org/\"/></ruleset>", "<ruleset name=\"Centerline Digital (partial)\" default_off=\"expired\" f=\"Centerline_Digital.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Centili\" f=\"Centili.xml\"><securecookie host=\"^(api|www)\\.centili\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Centmin Mod.com (partial)\" f=\"Centmin_Mod.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Central Computers.com\" f=\"Central_Computers.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Centralfield.com\" default_off=\"failed ruleset test\" f=\"Centralfield.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Centralreg.ru\" f=\"Centralreg.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Centre for Effective Altruism.org\" f=\"Centre_for_Effective_Altruism.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Centre for the Protection of National Infrastructure (CPNI)\" f=\"Centre_for_the_Protection_of_National_Infrastructure.xml\"><securecookie host=\"^(?:.*\\.)?cpni\\.gov\\.uk$\" name=\".+\"/><rule from=\"^http://cpni\\.gov\\.uk/\" to=\"https://www.cpni.gov.uk/\"/><rule from=\"^http://([^/:@]+)?\\.cpni\\.gov\\.uk/\" to=\"https://$1.cpni.gov.uk/\"/></ruleset>", "<ruleset name=\"Centreon.com (partial)\" default_off=\"failed ruleset test\" f=\"Centreon.com.xml\"><securecookie host=\"^(?:.+\\.)?centreon\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Centrinvest.ru\" f=\"Centrinvest.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CWI.nl\" f=\"Centrum-Wiskunde-and-Informatica.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Centzy.com\" f=\"Centzy.xml\"><rule from=\"^http://centzy\\.com/\" to=\"https://locality.com/\"/></ruleset>", "<ruleset name=\"Ceonex\" default_off=\"expired, self-signed\" f=\"Ceonex.xml\"><rule from=\"^http://(?:www\\.)?ceonex\\.com/\" to=\"https://ceonex.com/\"/><rule from=\"^http://info\\.ceonex\\.com/$\" to=\"https://ceonex.com/conversion/\"/></ruleset>", "<ruleset name=\"CerberusApp.com\" f=\"CerberusApp.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CereProc.com\" f=\"CereProc.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ceredigion.gov.uk (partial)\" f=\"Ceredigion.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CertSimple.com\" f=\"CertSimple.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CertiVox.com (partial)\" f=\"CertiVox.com.xml\"><securecookie host=\"^m-pindemo\\.certivox\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Certificate-Transparency.org\" f=\"Certificate-transparency.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Certificate Monitor.org\" default_off=\"failed ruleset test\" f=\"Certificate_Monitor.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.certificatemonitor\\.org/\" to=\"https://certicatemonitor.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Certified Secure.com\" f=\"Certified_Secure.com.xml\"><securecookie host=\"^\\.www\\.certifiedsecure\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?certifiedsecure\\.com/\" to=\"https://www.certifiedsecure.com/\"/></ruleset>", "<ruleset name=\"Certigna.fr (partial)\" f=\"Certigna.fr.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://certigna\\.fr/\" to=\"https://www.certigna.fr/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Certona (partial)\" f=\"Certona.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cesium JS.org\" f=\"Cesium_JS.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.cesiumjs\\.org/\" to=\"https://cesiumjs.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Česká pošta, s.p.\" f=\"CeskaPosta.cz.xml\"><rule from=\"^http://postaonline\\.cz/\" to=\"https://www.postaonline.cz/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cfapps.io\" f=\"Cfapps.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cg Marketing Systems.com\" f=\"Cg_Marketing_Systems.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cgd.pt\" f=\"Cgd.pt.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ch9.ms (partial)\" f=\"Ch9.ms.xml\"><exclusion pattern=\"^http://(?:www\\.)?ch9\\.ms/+(?!$|\\?)\"/><rule from=\"^http://(?:www\\.)?ch9\\.ms/+(?:\\?.*)?$\" to=\"https://channel9.msdn.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chain.com (partial)\" default_off=\"failed ruleset test\" f=\"Chain.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chainlove.com\" default_off=\"failed ruleset test\" f=\"Chainlove.com.xml\"><rule from=\"^http://(?:images\\.)?chainlove\\.com/\" to=\"https://www.chainlove.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chais doeuvre.fr\" f=\"ChaisdOeuvre.fr.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chakas Mmm.com (partial)\" f=\"Chakas_Mmm.com.xml\"><rule from=\"^http://(www\\.)?chakasmmm\\.com/(?=favicon\\.ico|shop/(?:checkout|login|register|your-account)(?:$|[?/])|wp-content/|wp-includes/)\" to=\"https://$1chakasmmm.com/\"/></ruleset>", "<ruleset name=\"ChakraOS.org\" default_off=\"failed ruleset test\" f=\"ChakraOS.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Challenge.gov\" default_off=\"failed ruleset test\" f=\"Challenge.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ChallengePost (partial)\" default_off=\"failed ruleset test\" f=\"ChallengePost.xml\"><securecookie host=\"^(?:.+\\.)?challengepost\\.com$\" name=\".+\"/><rule from=\"^http://((?:forexfreestyle|nycschools|secure|www)\\.)?challengepost\\.com/\" to=\"https://$1challengepost.com/\"/><rule from=\"^http://(?:www\\.)?assetspost\\.com/assets/\" to=\"https://www.assetspost.com/assets/\"/><rule from=\"^http://challengepost\\d?\\.assetspost\\.com/\" to=\"https://challengepost-challengepost.netdna-ssl.com/\"/></ruleset>", "<ruleset name=\"Chalmers\" f=\"Chalmers.se.xml\"><securecookie host=\"^(?:www\\.)?chalmers\\.se$\" name=\".+\"/><rule from=\"^http://(www\\.)?(admin\\.)?chalmers\\.se/\" to=\"https://$1$2chalmers.se/\"/></ruleset>", "<ruleset name=\"Chambal (partial)\" f=\"Chambal.xml\"><securecookie host=\"^accounts\\.chambal\\.com$\" name=\".+\"/><rule from=\"^http://accounts\\.chambal\\.com/\" to=\"https://accounts.chambal.com/\"/><rule from=\"^http://images\\.chambal\\.com/\" to=\"https://d1tk5j9aunjut2.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Champaign County ACLU\" f=\"Champaign-County-ACLU.xml\"><securecookie host=\"^www\\.aclu-cu\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ChampionCasino.net (partial)\" f=\"ChampionCasino.net.xml\"><securecookie host=\"^.+\\.championcasino\\.net$\" name=\".+\"/><rule from=\"^http://(cdn1|pay|sec)\\.championcasino\\.net/\" to=\"https://$1.championcasino.net/\"/></ruleset>", "<ruleset name=\"Champions of Regnum.com\" f=\"Champions_of_Regnum.com.xml\"><securecookie host=\"^www\\.championsofregnum\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Champs Sports (partial)\" f=\"Champs_Sports.xml\"><securecookie host=\"^.*\\.champssports\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?champssports\\.com/\" to=\"https://www.champssports.com/\"/><rule from=\"^http://ebm\\.e\\.champssports\\.com/\" to=\"https://ebm.cheetahmail.com/\"/><rule from=\"^http://f\\.e\\.champssports\\.com/\" to=\"https://f.chtah.com/\"/><rule from=\"^http://(images|m)\\.champssports\\.com/\" to=\"https://$1.champssports.com/\"/></ruleset>", "<ruleset name=\"Change.org (partial)\" f=\"Change.org.xml\"><securecookie host=\".*\\.change\\.org$\" name=\".+\"/><rule from=\"^http://(www\\.)?change\\.org/\" to=\"https://$1change.org/\"/><rule from=\"^http://helpdesk\\.change\\.org/(?=generated/|images/|system/)\" to=\"https://change.zendesk.com/\"/></ruleset>", "<ruleset name=\"ChangeDetection.com\" f=\"ChangeDetection.com.xml\"><securecookie host=\"^www\\.changedetection\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ChangeIP.com\" f=\"ChangeIP.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Changemakers\" f=\"Changemakers.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chango\" default_off=\"failed ruleset test\" f=\"Chango.xml\"><securecookie host=\"^\\.\" name=\"^_(?:i_cw|i_lj|v?t)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://ads\\.chango\\.ca/\" to=\"https://as.chango.com/\"/><rule from=\"^http://chango\\.com/\" to=\"https://www.chango.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Channel 5.com (partial)\" f=\"Channel-5.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ChannelAdvisor.com (self-signed)\" default_off=\"self-signed\" f=\"ChannelAdvisor.com-problematic.xml\"><rule from=\"^http://(?:www\\.)?channeladvisor\\.com/\" to=\"https://www.channeladvisor.com/\"/></ruleset>", "<ruleset name=\"ChannelAdvisor.com (partial)\" f=\"ChannelAdvisor.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ChannelIntelligence.com (partial)\" f=\"ChannelIntelligence.com.xml\"><rule from=\"^http://cts(?:-secure)?\\.channelintelligence\\.com/\" to=\"https://cts-secure.channelintelligence.com/\"/></ruleset>", "<ruleset name=\"Channel 4.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Channel_4-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Channel 4.com (partial)\" default_off=\"Breaks video\" f=\"Channel_4.xml\"><exclusion pattern=\"^http://(?:www\\.)?channel4\\.com/(?!4me(?:$|[?/])|static/)\"/><exclusion pattern=\"^http://mailing\\.channel4\\.com/public/snowmail/remotebox\\.jsp\"/><rule from=\"^http://realmedia\\.channel4\\.com/\" to=\"https://2a7e9.v.fwmrm.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"channelme.tv\" f=\"Channelme.tv.xml\"><rule from=\"^http://(?:cdn-)?media\\.channelme\\.tv/\" to=\"https://media.channelme.tv/\"/></ruleset>", "<ruleset name=\"channelx.biz\" default_off=\"self-signed\" f=\"Channelx.biz.xml\"><rule from=\"^http://(?:www\\.)?channelx\\.biz/\" to=\"https://www.channelx.biz/\"/><rule from=\"^http://gentoo\\.channelx\\.biz/\" to=\"https://gentoo.channelx.biz/\"/></ruleset>", "<ruleset name=\"Chaos Reigns\" default_off=\"expired, self-signed\" f=\"Chaos-Reigns.xml\"><securecookie host=\"^(?:.*\\.)?chaosreigns\\.com$\" name=\".+\"/><rule from=\"^http://(?:panic\\.|www\\.)?chaosreigns\\.com/\" to=\"https://www.chaosreigns.com/\"/></ruleset>", "<ruleset name=\"Chapman.edu\" f=\"Chapman.edu.xml\"><rule from=\"^http://((?:blogs|inside|social|www)\\.)?chapman\\.edu/\" to=\"https://$1chapman.edu/\"/></ruleset>", "<ruleset name=\"America's Charities\" f=\"Charities.org.xml\"><securecookie host=\"^www\\.charities\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Charity Navigator\" f=\"Charity-Navigator.xml\"><securecookie host=\"^(?:w*\\.)?charitynavigator\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Charity Wings\" default_off=\"refused\" platform=\"mixedcontent\" f=\"Charity-Wings.xml\"><securecookie host=\"^(?:(?:www)?\\.)?scrapbookroyalty\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?scrapbookroyalty\\.org/\" to=\"https://www.scrapbookroyalty.org/\"/></ruleset>", "<ruleset name=\"charity water.org\" f=\"CharityWater.org.xml\"><securecookie host=\"^(www\\.)?charitywater\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CharityWeb (partial)\" f=\"CharityWeb.xml\"><securecookie host=\"^\\.charityweb\\.net$\" name=\"^/globalcompactfoundation/.*$\"/><rule from=\"^http://ssl\\.charityweb\\.net/\" to=\"https://ssl.charityweb.net/\"/></ruleset>", "<ruleset name=\"charlie.bz\" default_off=\"failed ruleset test\" f=\"Charlie.bz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Charlotte Nature Museum.org (partial)\" default_off=\"failed ruleset test\" f=\"CharlotteNatureMuseum.xml\"><exclusion pattern=\"^http://(?:www\\.)?charlottenaturemuseum\\.org/(?!/*(?:(?:assets|content)/.+\\.pdf(?:$|\\?)|(?:membership/application|support/donate)(?:$|[?/])))\"/><securecookie host=\"^\\w\" name=\"^__utm\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Charnwood.gov.uk (partial)\" f=\"Charnwood.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://consult\\.charnwood\\.gov\\.uk/\" to=\"https://charnwood-consult.objective.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ChartMogul.com\" f=\"ChartMogul.com.xml\"><securecookie host=\"^(?:app)?\\.chartmogul\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chartbeat.net\" f=\"Chartbeat.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chartbeat.com (partial)\" default_off=\"failed ruleset test\" f=\"Chartbeat.xml\"><exclusion pattern=\"^http://lp\\.chartbeat\\.com/+(?!$|\\?|css/|images/|rs/)\"/><securecookie host=\"^chartbeat\\.com$\" name=\".+\"/><rule from=\"^http://lp\\.chartbeat\\.com/+(?:\\?.*)?$\" to=\"https://chartbeat.com/404\"/><rule from=\"^http://lp\\.chartbeat\\.com/\" to=\"https://na-p.marketo.com/\"/><rule from=\"^http://status\\.chartbeat\\.com/\" to=\"https://chartbeat.statuspage.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Charter-Business.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Charter-Business.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Charter.com\" default_off=\"failed ruleset test\" f=\"Charter.com.xml\"><securecookie host=\"^(?:(?:media|www\\.myaccount|www)\\.)?charter\\.com$\" name=\".+\"/><securecookie host=\"^\\.charter\\.com$\" name=\"^(?:CSList|PrefID|TE_Opt)$\"/><rule from=\"^http://myaccount\\.charter\\.com/\" to=\"https://www.myaccount.charter.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Charter.net (partial)\" f=\"Charter.net.xml\"><exclusion pattern=\"^http://www\\.charter\\.net/(?!login/)\"/><rule from=\"^http://charter\\.net/\" to=\"https://www.charter.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CharterBusiness.com\" default_off=\"failed ruleset test\" f=\"CharterBusiness.com.xml\"><securecookie host=\"^(?:\\.|www2?\\.)?charterbusiness\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Charter our Community.com\" default_off=\"failed ruleset test\" f=\"Charter_our_Community.com.xml\"><securecookie host=\"^(?:www\\.)?charterourcommunity\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chartio.com\" f=\"Chartio.com.xml\"><securecookie host=\"^(?:www\\.)?chartio\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Charts in France.net\" default_off=\"expired, self-signed\" f=\"Charts_in_France.xml\"><securecookie host=\"^(?:www\\.)?chartsinfrance\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chase\" f=\"Chase.xml\"><securecookie host=\"^(?:\\.mfasa|privateclient)?\\.chase\\.com$\" name=\".+\"/><rule from=\"^http://((?:apply|banking|cards|chaseonline|creditcards|deposits|investments|jpmorgan|locator|mfasa|mobilebanking|payments|privateclient|resources|servicing|stmts|ultimaterewards|www)\\.)?chase\\.com/\" to=\"https://$1chase.com/\"/></ruleset>", "<ruleset name=\"Chase Paymentech.com\" f=\"Chase_Paymentech.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chat Place\" default_off=\"mismatched\" f=\"Chat-Place.xml\"><securecookie host=\"^(?:.*\\.)?chat-place\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?chat-place\\.org/\" to=\"https://chat-place.org/\"/></ruleset>", "<ruleset name=\"ChatMe.im (partial)\" f=\"ChatMe.im.xml\"><securecookie host=\"^\\.?chatme\\.im$\" name=\".+\"/><rule from=\"^http://((?:cdn|webchat|www)\\.)?chatme\\.im/\" to=\"https://$1chatme.im/\"/><rule from=\"^http://support\\.chatme\\.im/.*\" to=\"https://chatme.im/wp-signup.php?new=support\"/></ruleset>", "<ruleset name=\"ChatSecure.org\" f=\"ChatSecure.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chatango.com\" f=\"Chatango.com.xml\"><securecookie host=\"^\\.chatango\\.com$\" name=\".+\"/><rule from=\"^http://([\\w-]+\\.|(?:www\\.)?secure\\.)?chatango\\.com/\" to=\"https://$1chatango.com/\"/></ruleset>", "<ruleset name=\"Chatham House.org\" f=\"Chatham_House.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chatter\" f=\"Chatter.xml\"><securecookie host=\"^.+\\.chatter\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?chatter\\.com/\" to=\"https://www.chatter.com/\"/><rule from=\"^http://community\\.chatter\\.com/\" to=\"https://community.chatter.com/\"/></ruleset>", "<ruleset name=\"Chaturbate.com\" f=\"Chaturbate.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://ads\\.chaturbate\\.com/\" to=\"https://exoticads.com/\"/><rule from=\"^http://serve\\.ads\\.chaturbate\\.com/\" to=\"https://adserver.exoticads.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"chbtc.com\" f=\"Chbtc.com.xml\"><securecookie host=\".*\\.chbtc\\.com$\" name=\".+\"/><rule from=\"^http://chbtc\\.com/\" to=\"https://www.chbtc.com/\"/><rule from=\"^http://(?:s|trans)\\.chbtc\\.com/+(?=$|\\?)\" to=\"https://www.chbtc.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chcemvediet.sk\" f=\"Chcemvediet.sk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cheap Ass Gamer\" f=\"Cheap-Ass-Gamer.xml\"><securecookie host=\"(\\.|^)cheapassgamer\\.com$\" name=\".+\"/><rule from=\"^http://((cache|www)\\.)?cheapassgamer\\.com/\" to=\"https://$1cheapassgamer.com/\"/></ruleset>", "<ruleset name=\"CheapOz\" f=\"CheapOz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CheapSSL.com\" f=\"CheapSSL.com.xml\"><securecookie host=\"^support\\.cheapssl\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?cheapssl\\.com/[^?]*\\??$\" to=\"https://www.cheapssls.com/?from=www.cheapssl\"/><rule from=\"^http://(?:www\\.)?cheapssl\\.com/[^?]*\\?=\" to=\"https://www.cheapssls.com/?from=www.cheapssl&\"/><rule from=\"^http://support\\.cheapssl\\.com/\" to=\"https://support.cheapssl.com/\"/></ruleset>", "<ruleset name=\"CheapSSLs\" f=\"CheapSSLs.xml\"><rule from=\"^http://(?:www\\.)?cheapssls\\.com/\" to=\"https://www.cheapssls.com/\"/></ruleset>", "<ruleset name=\"Cheap Airport Parking\" default_off=\"failed ruleset test\" f=\"Cheap_Airport_Parking.xml\"><securecookie host=\"^\\.cheapairportparkingbirmingham.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cheapass Fiction.com\" f=\"Cheapass_Fiction.com.xml\"><rule from=\"^http://(?:www\\.)?cheapassfiction\\.com/\" to=\"https://cheapassfiction.com/\"/></ruleset>", "<ruleset name=\"Check24.de\" f=\"Check24.de.xml\"><rule from=\"^http://check24\\.de/\" to=\"https://check24.de/\"/><rule from=\"^http://([^/:@]*)\\.check24\\.de/\" to=\"https://$1.check24.de/\"/></ruleset>", "<ruleset name=\"CheckM8 (partial)\" f=\"CheckM8.xml\"><exclusion pattern=\"^http://(?:support|www)\\.\"/><rule from=\"^http://(\\w+)\\.checkm8\\.com/\" to=\"https://$1.checkm8.com/\"/></ruleset>", "<ruleset name=\"Check Point.com (problematic)\" default_off=\"mismatched\" platform=\"mixedcontent\" f=\"Check_Point-problematic.xml\"><securecookie host=\"^(?:forums|search\\.us)\\.checkpoint\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Check Point.com (partial)\" default_off=\"failed ruleset test\" f=\"Check_Point.xml\"><exclusion pattern=\"^http://blog\\.checkpoint\\.com/+(?!wp-content/)\"/><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\".+\\.checkpoint\\.com$\" name=\".\"/><rule from=\"^http://checkpoint\\.com/\" to=\"https://www.checkpoint.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Checkdomain.de\" f=\"Checkdomain.xml\"><securecookie host=\"^\\.www\\.checkdomain\\.de$\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Checkmarx.com (problematic)\" default_off=\"mismatched\" f=\"Checkmarx.com-problematic.xml\"><securecookie host=\"^\\.checkmarx\\.com$\" name=\"^ubvt$\"/><rule from=\"^http://lp\\.checkmarx\\.com/\" to=\"https://lp.checkmarx.com/\"/></ruleset>", "<ruleset name=\"Checkmarx.com (partial)\" f=\"Checkmarx.com.xml\"><rule from=\"^http://(www\\.)?checkmarx\\.com/(?=favicon\\.ico|wp-content/|wp-includes/)\" to=\"https://$1checkmarx.com/\"/></ruleset>", "<ruleset name=\"checkmyping.com\" default_off=\"failed ruleset test\" f=\"Checkmyping.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Checktls.com\" f=\"Checktls.com.xml\"><rule from=\"^http://(?:www\\.)?checktls\\.com/\" to=\"https://www.checktls.com/\"/></ruleset>", "<ruleset name=\"cheema.com\" default_off=\"expired, self-signed\" f=\"Cheema.com.xml\"><securecookie host=\"^cheema\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?cheema\\.com/\" to=\"https://cheema.com/\"/></ruleset>", "<ruleset name=\"CheetahMail\" f=\"CheetahMail.xml\"><rule from=\"^http://(?:www\\.)?cheetahmail\\.com/\" to=\"https://www.experian.com/cheetahmail/\"/><rule from=\"^http://ebm\\.cheetahmail\\.com/\" to=\"https://ebm.cheetahmail.com/\"/><rule from=\"^http://(f\\.)?chtah\\.com/\" to=\"https://$1chtah.com/\"/></ruleset>", "<ruleset name=\"Cheezburger\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Cheezburger.xml\"><securecookie host=\"^www\\.cheezburger\\.com$\" name=\".+\"/><rule from=\"^http://images\\.cheezburger\\.com/\" to=\"https://i.chzbgr.com/\"/><rule from=\"^http://support\\.cheezburger\\.com/\" to=\"https://cheezburger.support.com/\"/><rule from=\"^http://([\\w-]+\\.)?cheezburger\\.com/\" to=\"https://$1cheezburger.com/\"/><rule from=\"^http://(i|s|t)\\.chzbgr\\.com/\" to=\"https://$1.chzbgr.com/\"/></ruleset>", "<ruleset name=\"Chef.io (partial)\" default_off=\"failed ruleset test\" f=\"Chef.io.xml\"><exclusion pattern=\"^http://pages\\.chef\\.io/+(?!css/|images/|rs/)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://pages\\.chef\\.io/\" to=\"https://na-sj05.marketo.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chefkoch (partial)\" default_off=\"failed ruleset test\" f=\"Chefkoch.de.xml\"><rule from=\"^http://cdn\\.chefkoch\\.de/\" to=\"https://static.chefkoch-cdn.de/\"/><exclusion pattern=\"^http://js\\.chefkoch\\-cdn.de/js/vendor/jwplayer6\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chemical Abstracts Service (partial)\" platform=\"mixedcontent\" f=\"Chemical_Abstracts_Service.xml\"><securecookie host=\"^www\\.cas\\.org$\" name=\".+\"/><rule from=\"^http://cas\\.org/\" to=\"https://www.cas.org/\"/><rule from=\"^http://(my|scifinder|stneasy(?:-japan)?|www)\\.cas\\.org/\" to=\"https://$1.cas.org/\"/></ruleset>", "<ruleset name=\"Chemist Warehouse\" f=\"ChemistWarehouse.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cherenkov Telescope Array\" f=\"Cherenkov_Telescope_Array.xml\"><securecookie host=\"^\\.www\\.cta-observatory\\.org$\" name=\".+\"/><rule from=\"^http://www\\.cta-observatory\\.org/\" to=\"https://www.cta-observatory.org/\"/></ruleset>", "<ruleset name=\"Cherry.de\" f=\"Cherry.de.xml\"><securecookie host=\"^(?:www\\.)?cherry\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cherwell.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"Cherwell.gov.uk.xml\"><exclusion pattern=\"http://www\\.cherwell\\.gov\\.uk/(?!/*media\\.cfm)\"/><securecookie host=\"^(?!www\\.)\\w\" name=\".\"/><rule from=\"^http://consult\\.cherwell\\.gov\\.uk/\" to=\"https://cherwell-consult.objective.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cheshire.gov.uk (false MCB)\" platform=\"mixedcontent\" f=\"Cheshire.gov.uk-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cheshire.gov.uk (partial)\" f=\"Cheshire.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cheshire East.gov.uk (MCB)\" platform=\"mixedcontent\" f=\"Cheshire_East.gov.uk-mixedcontent.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cheshire East.gov.uk (partial)\" f=\"Cheshire_East.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ChessBase-shop.com (partial)\" f=\"ChessBase-shop.com.xml\"><rule from=\"^http://(www\\.)?chessbase-shop\\.com/(?=cbshop\\.css|pics/|res/|xamlrender)\" to=\"https://$1chessbase-shop.com/\"/></ruleset>", "<ruleset name=\"ChessBase.com (partial)\" f=\"ChessBase.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chevereto.com (partial)\" f=\"Chevereto.com.xml\"><securecookie host=\"^chevereto\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chicago Fed.org\" f=\"Chicago_Fed.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chicago Tribune.com (partial)\" f=\"Chicago_Tribune.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chicken Soup for the Soul\" default_off=\"failed ruleset test\" f=\"Chicken_Soup_for_the_Soul.xml\"><securecookie host=\"^(?:www)?\\.chickensoup\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Children's Mutual (partial)\" f=\"Childrens_Mutual.xml\"><securecookie host=\"^ctf\\.thechildrensmutual\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://ctf\\.thechildrensmutual\\.co\\.uk/\" to=\"https://ctf.thechildrensmutual.co.uk/\"/></ruleset>", "<ruleset name=\"ChileBit.NET\" f=\"ChileBit.NET.xml\"><securecookie host=\"^\\.chilebit\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ChiliProject.org (partial)\" f=\"ChiliProject.org.xml\"><securecookie host=\"^www\\.chiliproject\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chillicothe Gazette\" f=\"Chillicothe_Gazette.xml\"><securecookie host=\"^www\\.chillicothegazette\\.com$\" name=\".+\"/><rule from=\"^http://(?:cmsimg\\.|www\\.)?chillicothegazette\\.com/\" to=\"https://www.chillicothegazette.com/\"/></ruleset>", "<ruleset name=\"ChillingEffects\" f=\"ChillingEffects.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chime.in\" f=\"Chime.in.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ChimeriC.de\" default_off=\"mismatched, self-signed\" platform=\"mixedcontent\" f=\"ChimeriC.de.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ChinaPaymentServices.com\" f=\"ChinaPaymentServices.com.xml\"><rule from=\"^http://chinapaymentservices\\.com/\" to=\"https://www.chinapaymentservices.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chinabank.com.cn\" f=\"Chinabank.com.cn.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"China Dialogue.net\" f=\"Chinadialogue.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chip Chap\" f=\"Chip-Chap.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ChipIn (partial)\" f=\"ChipIn.xml\"><rule from=\"^http://(www\\.)?chipin\\.com/(cs|image)s/\" to=\"https://$1chipin.com/$2s/\"/></ruleset>", "<ruleset name=\"ChipLand.hu\" default_off=\"failed ruleset test\" f=\"ChipLand.hu.xml\"><securecookie host=\"^www\\.chipland\\.hu$\" name=\".+\"/><rule from=\"^http://www\\.chipland\\.hu/\" to=\"https://www.chipland.hu/\"/></ruleset>", "<ruleset name=\"Chiphell\" f=\"Chiphell.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chipworks\" default_off=\"failed ruleset test\" f=\"Chipworks.xml\"><securecookie host=\"^www\\.chipworks\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chistes Cortos Buenos.com (partial)\" f=\"Chistes_Cortos_Buenos.com.xml\"><rule from=\"^http://css\\.chistescortosbuenos\\.com/\" to=\"https://d3ju1pxrijkg8e.cloudfront.net/\"/><rule from=\"^http://images\\.chistescortosbuenos\\.com/\" to=\"https://dvlos4rx2v54l.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Chitika.net (partial)\" f=\"Chitika.net.xml\"><rule from=\"^http://(www\\.)?chitika\\.net/\" to=\"https://$1chitika.com/\"/><rule from=\"^http://(images|scripts)\\.chitika\\.net/\" to=\"https://$1.chitika.net/\"/></ruleset>", "<ruleset name=\"Chitika (partial)\" f=\"Chitika.xml\"><securecookie host=\"^(?:.*\\.)?chitika\\.com$\" name=\".*\"/><rule from=\"^http://(www\\.)?chitika\\.com/\" to=\"https://$1chitika.com/\"/><rule from=\"^http://(affiliate|blog|publishers)\\.chitika\\.com/\" to=\"https://$1.chitika.com/\"/></ruleset>", "<ruleset name=\"Chloe.re\" f=\"Chloe.re.xml\"><securecookie host=\"^\\.chloe\\.re$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chlomo.org (partial)\" f=\"Chlomo.org.xml\"><rule from=\"^http://(www\\.)?chlomo\\.org/(?=chan/(?:\\w+/thumb/|favicon-v2\\.png|img/|static/|stylesheets/)|favicon\\.ico)\" to=\"https://$1chlomo.org/\"/></ruleset>", "<ruleset name=\"Chocolate-Doom.org\" f=\"Chocolate-Doom.org.xml\"><rule from=\"^http://chocolate-doom\\.org/\" to=\"https://www.chocolate-doom.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chocolatey.org\" f=\"Chocolatey.org.xml\"><securecookie host=\"^chocolatey\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chocolatfrey.ch\" f=\"Chocolatfrey.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ChoiceStream.com (partial)\" f=\"ChoiceStream.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Choice of Games.com\" f=\"Choice_of_Games.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Choon.net (partial)\" default_off=\"failed ruleset test\" f=\"Choon.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Choopa.com\" f=\"Choopa.com.xml\"><securecookie host=\"^(?:my|www)?\\.choopa\\.com$\" name=\".+\"/><rule from=\"^http://choopa\\.com/\" to=\"https://www.choopa.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"choosealicense.com\" f=\"Choosealicense.com.xml\"><rule from=\"^http://www\\.choosealicense\\.com/\" to=\"https://choosealicense.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"chooseblocks.com\" f=\"Chooseblocks.com.xml\"><securecookie host=\"^(www\\.)?chooseblocks\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chris-Lamb.co.uk\" f=\"Chris-Lamb.co.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chris.lu\" default_off=\"failed ruleset test\" f=\"Chris.lu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chris Cowley.me.uk\" f=\"Chris_Cowley.me.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chris Coyne.com\" f=\"Chris_Coyne.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chris Newland.com\" f=\"Chris_Newland.com.xml\"><securecookie host=\"^(?:www\\.)?chrisnewland\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chrisanthemums\" f=\"Chrisanthemums.xml\"><securecookie host=\"^(?:www)?\\.chrisanthemums\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?chrisanthemums\\.com/\" to=\"https://www.chrisanthemums.com/\"/></ruleset>", "<ruleset name=\"chrismatic.io\" default_off=\"failed ruleset test\" f=\"Chrismatic.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Christelijke Mutualiteit\" f=\"Christelijke_Mutualiteit.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Christian Prayer Center\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Christian-Prayer-Center.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ChristianForums.com\" f=\"ChristianForums.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Christian Heilmann\" default_off=\"mismatched\" f=\"Christian_Heilmann.xml\"><rule from=\"^http://(?:www\\.)?christianheilmann\\.com/\" to=\"https://christianheilmann.com/\"/></ruleset>", "<ruleset name=\"Christianbook.com (partial)\" f=\"Christianbook.com.xml\"><securecookie host=\".*\\.christianbook\\.com$\" name=\"\"/><rule from=\"^http://christianbook\\.com/\" to=\"https://www.christianbook.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fjellner.eu\" default_off=\"redirects to http\" f=\"Christofer-Fjellner.xml\"><securecookie host=\"^www\\.fjellner\\.eu$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chrome.com (partial)\" f=\"Chrome.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chrome Data\" f=\"Chrome_Data.xml\"><securecookie host=\"^login\\.carbook\\.com$\" name=\".+\"/><securecookie host=\"^.+\\.chromedata\\.com$\" name=\".+\"/><rule from=\"^http://login\\.carbook\\.com/\" to=\"https://login.carbook.com/\"/><rule from=\"^http://((?:autodiscover|mail|mopar|webmail|www)\\.)?chromedata\\.com/\" to=\"https://$1chromedata.com/\"/></ruleset>", "<ruleset name=\"Chrome Experiments.com\" f=\"Chrome_Experiments.com.xml\"><rule from=\"^http://chromeexperiments\\.com/\" to=\"https://www.chromeexperiments.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chrome Status.com\" f=\"Chrome_Status.com.xml\"><rule from=\"^http://(?:www\\.)?chromestatus\\.com/\" to=\"https://www.chromestatus.com/\"/></ruleset>", "<ruleset name=\"Chromium.org\" f=\"Chromium.org.xml\"><securecookie host=\"^codereview\\.chromium\\.org$\" name=\".+\"/><rule from=\"^http://chromium\\.org/\" to=\"https://www.chromium.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ChroniX Radio.com\" default_off=\"failed ruleset test\" f=\"ChroniX_Radio.com.xml\"><securecookie host=\"^\\.chronixradio\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chronicle-Store.com\" default_off=\"failed ruleset test\" f=\"Chronicle-Store.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chronicle.com (partial)\" default_off=\"failed ruleset test\" f=\"Chronicle.xml\"><exclusion pattern=\"^http://(?:www\\.)?chronicle\\.com/blognetwork/\"/><securecookie host=\"^(?:www\\.)?chronicle\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?chronicle\\.com/\" to=\"https://chronicle.com/\"/></ruleset>", "<ruleset name=\"Chronicle Vitae.com\" f=\"Chronicle_Vitae.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^_gat?$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"chroot-me.in\" f=\"Chroot-me.in.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chrysalis-Ventures (partial)\" default_off=\"mismatched\" f=\"Chrysalis-Ventures.xml\"><rule from=\"^http://(?:www\\.)chrysalisventures\\.com/(images|wp-content)/\" to=\"https://chrysalisventures.com/\"/></ruleset>", "<ruleset name=\"chs.us\" f=\"Chs.us.xml\"><securecookie host=\"^(?:www\\.)?chs\\.us$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chtah.net\" f=\"Chtah.net.xml\"><rule from=\"^http://f\\.money\\.chtah\\.net/\" to=\"https://f.chtah.com/\"/></ruleset>", "<ruleset name=\"Church of the SubGenius\" default_off=\"expired\" f=\"Church-of-the-SubGenius.xml\"><rule from=\"^http://(?:www\\.)?subgenius\\.com/\" to=\"https://subgenius.com/\"/></ruleset>", "<ruleset name=\"Church Hill Classics (partial)\" f=\"Church_Hill_Classics.xml\"><rule from=\"^http://(www\\.)?diplomaframe\\.com/(DesktopModules/|home/login|images/|js/|Portals/|Resources/|(?:Script|Web)Resource\\.axd)\" to=\"https://$1diplomaframe.com/$1\"/></ruleset>", "<ruleset name=\"chuug.com (partial)\" f=\"Chuug.com.xml\"><rule from=\"^http://s3\\.chuug\\.com/\" to=\"https://d322xzyiofrruv.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Ciao (partial)\" f=\"Ciao.xml\"><rule from=\"^http://(de|uk)-img([12])\\.ciao\\.com/\" to=\"https://$1-img$2.ciao.com/\"/><rule from=\"^http://(www\\.)?ciao\\.co\\.uk/(captcha/|efb_[\\d_]+/|login\\.php|reg\\.php)\" to=\"https://$1ciao.co.uk/$2\"/><rule from=\"^http://(www\\.)?ciao\\.de/([\\w/]+/css/|favicon\\.ico)\" to=\"https://$1ciao.de/$1\"/></ruleset>", "<ruleset name=\"Ciety.com\" default_off=\"failed ruleset test\" f=\"Ciety.com.xml\"><rule from=\"^http://ciety\\.com/\" to=\"https://ciety.com/\"/></ruleset>", "<ruleset name=\"Cihar.com (partial)\" f=\"Cihar.com.xml\"><rule from=\"^http://(blog|stats)\\.cihar\\.com/\" to=\"https://$1.cihar.com/\"/></ruleset>", "<ruleset name=\"Cilk Plus.org\" default_off=\"failed ruleset test\" f=\"Cilk_Plus.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CinCHouse.com\" default_off=\"expired\" f=\"CinCHouse.com.xml\"><securecookie host=\"^cinchouse\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?cinchouse\\.com/\" to=\"https://cinchouse.com/\"/></ruleset>", "<ruleset name=\"cinapalace.com\" f=\"Cinapalace.com.xml\"><securecookie host=\"^(?:www\\.)?cinapalace\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cincinnati.com (partial)\" default_off=\"failed ruleset test\" f=\"Cincinnati.com.xml\"><securecookie host=\"^(?:classifiedads|local)\\.cincinnati\\.com$\" name=\".+\"/><rule from=\"^http://((?:classifiedads|local|nky|secure|www)\\.)?cincinnati\\.com/\" to=\"https://$1cincinnati.com/\"/><rule from=\"^http://(?:cinweekly|rodeo)\\.cincinnati\\.com/+(?:\\?.*)?$\" to=\"https://cincinnati.com/thingstodo/\"/><rule from=\"^http://(?:cmsimg|news)\\.cincinnati\\.com/\" to=\"https://news.cincinnati.com/\"/><rule from=\"^http://deals\\.cincinnati\\.com/+(?:\\?.*)?$\" to=\"https://cin.planetdiscover.com/sp?aff=1180\"/><rule from=\"^http://deals\\.cincinnati\\.com/\" to=\"https://cin.planetdiscover.com/\"/><rule from=\"^http://finance\\.cincinnati\\.com/+(?:\\?.*)?$\" to=\"https://studio-5.financialcontent.com/gannett.theenquirer\"/><rule from=\"^http://finance\\.cincinnati\\.com/\" to=\"https://studio-5.financialcontent.com/\"/><rule from=\"^http://rodeo\\.cincinnati\\.com/getlocal/all\\.aspx\" to=\"https://local.cincinnati.com/community/\"/><rule from=\"^http://rodeo\\.cincinnati\\.com/re/+(?:\\?.*)?$\" to=\"https://local.cincinnati.com/realestatenews/\"/></ruleset>", "<ruleset name=\"Cinder (partial)\" f=\"Cinder.xml\"><securecookie host=\"^forum\\.libcinder\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cinder Cooks.com\" f=\"Cinder_Cooks.com.xml\"><rule from=\"^http://www\\.cindercooks\\.com/\" to=\"https://cindercooks.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CineSport.com (partial)\" default_off=\"mismatched\" f=\"CineSport.xml\"><securecookie host=\"^\\.\" name=\"^__qca$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CineStar.de (partial)\" default_off=\"failed ruleset test\" f=\"CineStar.xml\"><exclusion pattern=\"^http://www\\.cinestar\\.de/(?!.+\\.(?:ico|jpg|png)(?:$|\\?))\"/><securecookie host=\"^\\.(?:b2b)?shop\\.cinestar\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cineble.com\" f=\"Cineble.com.xml\"><securecookie host=\"^(?:w*\\.)?cineble\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cineclick.com.br (partial)\" f=\"Cineclick.com.br.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CinemaCon.com\" default_off=\"self-signed\" f=\"CinemaCon.com.xml\"><securecookie host=\"^cinemacon\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?cinemacon\\.com/\" to=\"https://cinemacon.com/\"/></ruleset>", "<ruleset name=\"CinemaNow (partial)\" f=\"CinemaNow.xml\"><securecookie host=\"^www\\.cinemanow\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?cinemanow\\.com/\" to=\"https://www.cinemanow.com/\"/><rule from=\"^http://cache\\.cinemanow\\.com/\" to=\"https://cache.cinemanow.com/\"/></ruleset>", "<ruleset name=\"Cinfu.com (partial)\" default_off=\"failed ruleset test\" f=\"Cinfu.com.xml\"><securecookie host=\"^\\.?panel\\.cinfu\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cinnamon-look.org\" f=\"Cinnamon-look.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cint.com\" f=\"Cint.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CipherLaw\" f=\"CipherLaw.xml\"><securecookie host=\"^(?:www\\.)?cipherlawgroup\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CipherShed.org\" f=\"CipherShed.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cir.ca\" default_off=\"failed ruleset test\" f=\"Cir.ca.xml\"><securecookie host=\"^\\.cir\\.ca$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?cir\\.ca/+\" to=\"https://circanews.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Circa News.com\" default_off=\"failed ruleset test\" f=\"Circa_News.com.xml\"><securecookie host=\"^(?:www\\.)?circanews\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CircleCI.com (partial)\" f=\"CircleCI.com.xml\"><securecookie host=\"^\\.circleci\\.com$\" name=\"^(?:__ar\\w+|__utm\\w+|_mkto_trk|_te_|mp_\\w+_mixpanel)$\"/><rule from=\"^http://status\\.circleci\\.com/\" to=\"https://circleci.statuspage.io/\"/><rule from=\"^http://(www\\.)?circleci\\.com/\" to=\"https://$1circleci.com/\"/></ruleset>", "<ruleset name=\"Circle of Moms\" f=\"Circle_of_Moms.xml\"><securecookie host=\"^www\\.circleofmoms\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?circleofmoms\\.com/\" to=\"https://www.circleofmoms.com/\"/><rule from=\"^http://imagelib4\\.circleofmoms\\.com/\" to=\"https://dx7naiqi3v8zr.cloudfront.net/\"/><rule from=\"^http://images3\\.circleofmoms\\.com/\" to=\"https://d2sshc984jwlg9.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Circular Hub\" f=\"Circular_Hub.xml\"><securecookie host=\"^www\\.circularhub\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?circularhub\\.com/\" to=\"https://www.circularhub.com/\"/><rule from=\"^http://(?:api|editorials)\\.circularhub\\.com/\" to=\"https://editorials.merchants.wishabi.ca/\"/></ruleset>", "<ruleset name=\"Cirrus Media.com.au (partial)\" f=\"Cirrus_Media.com.au.xml\"><rule from=\"^http://(ccbnstatic|media)\\.cirrusmedia\\.com\\.au/\" to=\"https://$1.cirrusmedia.com.au/\"/></ruleset>", "<ruleset name=\"Cirtex Hosting.com\" default_off=\"expired\" f=\"Cirtex_Hosting.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cirw.in\" f=\"Cirw.in.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cisco.mobi (partial)\" default_off=\"failed ruleset test\" f=\"Cisco.mobi.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cisco.com (partial)\" default_off=\"failed ruleset test\" f=\"Cisco.xml\"><exclusion pattern=\"^http://csr\\.cisco\\.com/(?!/*(?:$|\\?|cdnorigin/|content/|favicon\\.ico))\"/><exclusion pattern=\"^http://www\\.cisco\\.com/cgi-bin/login\"/><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://home(?:support)?\\.cisco\\.com/+\" to=\"https://support.linksys.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cisco Connect Cloud.com\" f=\"Cisco_Connect_Cloud.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cisco Learning System.com\" f=\"Cisco_Learning_System.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cisco Live.com\" platform=\"mixedcontent\" f=\"Cisco_Live.com.xml\"><securecookie host=\"^\\.\" name=\"^s_v\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://ciscolive\\.com/\" to=\"https://www.ciscolive.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Citadium.com (partial)\" f=\"Citadium.com.xml\"><securecookie host=\"^\\.citadium\\.com$\" name=\"^__utm\\w$\"/><rule from=\"^http://citadium\\.com/.*\" to=\"https://www.citadium.com/\"/><rule from=\"^http://www\\.citadium\\.com/(?=elmt/|favicon\\.ico|js/|login(?:$|[?/])|medias/|spinner\\.gif|_ui/)\" to=\"https://www.citadium.com/\"/></ruleset>", "<ruleset name=\"CiteULike.org\" default_off=\"expired\" f=\"CiteULike.xml\"><rule from=\"^http://citeulike\\.org/\" to=\"https://www.citeulike.org/\"/><rule from=\"^http://www\\.citeulike\\.org/(login|register|static/)\" to=\"https://www.citeulike.org/$1\"/></ruleset>", "<ruleset name=\"Citi.com\" f=\"Citi.com.xml\"><exclusion pattern=\"^http://thankyoucard\\.citi\\.com/(?!$|\\?)\"/><securecookie host=\"^\\.citi\\.com$\" name=\"^(?:mbox|ss_pers|ss_sess)$\"/><securecookie host=\"^(?:(?:chat\\.online|creditcards|www)\\.)?citi\\.com$\" name=\".+\"/><rule from=\"^http://thankyoucard\\.citi\\.com/\" to=\"https://online.citibank.com/US/JRS/portal/template.do?ID=ThankYouCards\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Citi Alumni Network\" f=\"Citi_Alumni_Network.xml\"><securecookie host=\"^www\\.citialumninetwork\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?citialumninetwork\\.com/\" to=\"https://www.citialumninetwork.com/\"/></ruleset>", "<ruleset name=\"Citibank.com.au (insecure)\" default_off=\"JS redirect loop\" f=\"Citibank-Australia.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Citibank.com\" default_off=\"failed ruleset test\" f=\"Citibank.xml\"><securecookie host=\"^\\.citibank\\.com$\" name=\"^(?:CTBN|s_vi)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Citigroup.com (partial)\" default_off=\"handshake fails\" f=\"Citigroup.com.xml\"><securecookie host=\"^jobs\\.citigroup\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CitizenPost.fr\" f=\"CitizenPost.fr.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Citizenfour Film.com\" f=\"CitizenfourFilm.com.xml\"><securecookie host=\"^citizenfourfilm\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CitizensInformation\" default_off=\"plaintext reply\" f=\"Citizensinformation.ie.xml\"><rule from=\"^http://(?:www\\.)?citizensinformation\\.ie/\" to=\"https://www.citizensinformation.ie/\"/></ruleset>", "<ruleset name=\"Citrix.com (false MCB)\" platform=\"mixedcontent\" f=\"Citrix.com-falsemixed.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Citrix.com (partial)\" default_off=\"failed ruleset test\" f=\"Citrix.xml\"><exclusion pattern=\"^http://training\\.citrix\\.com/+(?!favicon\\.ico|theme/)\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http://blogs\\.citrix\\.com/+\" to=\"https://www.citrix.com/blogs/\"/><rule from=\"^http://cdn\\.ws\\.citrix\\.com/\" to=\"https://c558080.ssl.cf2.rackcdn.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Citrix Online.com\" f=\"Citrix_Online.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://citrixonline\\.com/\" to=\"https://www.citrixonline.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Citrix Online CDN.com\" f=\"Citrix_Online_CDN.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Citrusbyte.com\" f=\"Citrusbyte.com.xml\"><securecookie host=\"^(?:www\\.)?citrusbyte\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?citrusbyte\\.com/\" to=\"https://citrusbyte.com/\"/></ruleset>", "<ruleset name=\"City Link\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"City-Link.xml\"><rule from=\"^http://(?:www\\.)?city-link\\.co\\.uk/\" to=\"https://www.city-link.co.uk/\"/></ruleset>", "<ruleset name=\"City Mail\" f=\"City-Mail.xml\"><securecookie host=\"^(?:www\\.)?cityemail\\.com$\" name=\".*\"/><rule from=\"^http://(www\\.)?citymail\\.com/\" to=\"https://$1citymail.com/\"/></ruleset>", "<ruleset name=\"City of Chicago\" platform=\"mixedcontent\" f=\"City-of-Chicago.xml\"><securecookie host=\"^.*\\.cityofchicago\\.org$\" name=\".*\"/><rule from=\"^http://cityofchicago\\.org/\" to=\"https://www.cityofchicago.org/\"/><rule from=\"^http://mayor\\.cityofchicago\\.org/\" to=\"https://www.cityofchicago.org/content/city/en/depts/mayor.html\"/><rule from=\"^http://(data|www)\\.cityofchicago\\.org/\" to=\"https://$1.cityofchicago.org/\"/></ruleset>", "<ruleset name=\"City of Sedona (partial)\" f=\"City-of-Sedona.xml\"><rule from=\"^http://(?:www\\.)?sedonaaz\\.gov/([sS]edonacms/(?:\\w+\\.css$|_gfx/|Modules/))\" to=\"https://www.sedonaaz.gov/$1\"/></ruleset>", "<ruleset name=\"City.com.ua\" f=\"City.com.ua.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"City University London\" default_off=\"failed ruleset test\" f=\"City_University_London.xml\"><securecookie host=\"^\\.www\\.city\\.ac\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?(soi\\.)?city\\.ac\\.uk/\" to=\"https://www.$1city.ac.uk/\"/><rule from=\"^http://s1\\.city\\.ac\\.uk/\" to=\"https://s1.city.ac.uk/\"/></ruleset>", "<ruleset name=\"City University of New York (problematic)\" default_off=\"mismatched\" f=\"City_University_of_New_York-problematic.xml\"><rule from=\"^http://(?:www\\.)?law\\.cuny\\.edu/\" to=\"https://www.law.cuny.edu/\"/></ruleset>", "<ruleset name=\"City University of New York (partial)\" f=\"City_University_of_New_York.xml\"><securecookie host=\"^\\.cuny\\.edu$\" name=\"^__utm\\w$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"City of London.gov.uk (partial)\" f=\"City_of_London.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"City of Mountain View (partial)\" default_off=\"failed ruleset test\" f=\"City_of_Mountain_View.xml\"><securecookie host=\"^www\\.mountainview\\.gov$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?mountainview\\.gov/\" to=\"https://www.mountainview.gov/\"/></ruleset>", "<ruleset name=\"City of Seattle (partial)\" platform=\"mixedcontent\" f=\"City_of_Seattle.xml\"><securecookie host=\"^.+\\.seattle\\.gov$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?seattle\\.gov/\" to=\"https://www.seattle.gov/\"/><rule from=\"^http://citylink\\.seattle\\.gov/\" to=\"https://www.seattle.gov/citylink/\"/><rule from=\"^http://(data|my|wald1|web1)\\.seattle\\.gov/\" to=\"https://$1.seattle.gov/\"/><rule from=\"^http://web[56]\\.seattle\\.gov/\" to=\"https://web6.seattle.gov/\"/></ruleset>", "<ruleset name=\"Citymapper\" f=\"Citymapper.xml\"><securecookie host=\"^.*\\.citymapper\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"City of London Police\" f=\"CityofLondonPolice.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"City of Portland, OR\" f=\"CityofPortland.xml\"><securecookie host=\"^www\\.portlandonline\\.com$\" name=\".+\"/><securecookie host=\"^www\\.portlandoregon\\.gov$\" name=\".+\"/><rule from=\"^http://portlandonline\\.com/\" to=\"https://www.portlandonline.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Citypaketet (partial)\" f=\"Citypaketet.xml\"><securecookie host=\"^ssl\\.sifomedia\\.se$\" name=\".*\"/><rule from=\"^http://sifomedia\\.citypaketet\\.se/\" to=\"https://ssl.sifomedia.se/\"/></ruleset>", "<ruleset name=\"Citysearch.com\" f=\"Citysearch.com.xml\"><securecookie host=\"^\\w\" name=\"^_gat?$\"/><rule from=\"^http://citysearch\\.com/\" to=\"https://www.citysearch.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Citywerkz.com\" default_off=\"failed ruleset test\" f=\"Citywerkz.com.xml\"><securecookie host=\"^(?:www)?\\.citywerkz\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ciuvo.com\" f=\"Ciuvo.com.xml\"><rule from=\"^http://((?:api|secure|www)\\.)?ciuvo\\.com/\" to=\"https://$1ciuvo.com/\"/></ruleset>", "<ruleset name=\"CiviCRM\" f=\"CiviCRM.xml\"><securecookie host=\"^\\.civicrm\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CivicScience (partial)\" f=\"CivicScience.xml\"><rule from=\"^http://(beta\\.|www\\.)?civicscience\\.com/\" to=\"https://$1civicscience.com/\"/><rule from=\"^http://blog\\.civicscience\\.com/(display/|favicon\\.ico|layout/|storage/|universal/)\" to=\"https://civicscience.squarespace.com/$1\"/></ruleset>", "<ruleset name=\"Civica ePay.co.uk\" f=\"Civica_ePay.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CAA.co.uk\" f=\"Civil_Aviation_Authority.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cjdns.info\" default_off=\"failed ruleset test\" f=\"Cjdns.info.xml\"><securecookie host=\"^\\.cjdns\\.info$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ckom\" default_off=\"expired, self-signed\" f=\"Ckom.xml\"><rule from=\"^http://(?:www\\.)?ckom\\.de/\" to=\"https://ckom.de/\"/><rule from=\"^http://(\\w+)\\.ckom\\.de/\" to=\"https://$1.ckom.de/\"/></ruleset>", "<ruleset name=\"Cl.ly (partial)\" f=\"Cl.ly.xml\"><securecookie host=\"^my\\.cl(?:\\.ly|d\\.me)$\" name=\".+\"/><rule from=\"^http://((?:api|my|www)\\.)?cl\\.ly/\" to=\"https://$1cl.ly/\"/><rule from=\"^http://f\\.cl\\.ly/\" to=\"https://s3.amazonaws.com/f.cl.ly/\"/><rule from=\"^http://(api|my)\\.cld\\.me/\" to=\"https://$1.cld.me/\"/><rule from=\"^http://assets\\.my\\.cld\\.me/\" to=\"https://d9yac136u048z.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Claim Forms Plus\" f=\"Claim_Forms_Plus.xml\"><securecookie host=\"^\\.claimformsplus\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ClamAV.net\" f=\"ClamAV.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Clara.io\" f=\"Clara.io.xml\"><securecookie host=\"^(?:forum\\.)?clara\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Claranet (mismatches)\" default_off=\"expired, mismatch\" f=\"Claranet-mismatches.xml\"><securecookie host=\"^admin-vh\\.es\\.clara\\.net$\" name=\".*\"/><rule from=\"^http://admin-vh\\.es\\.clara\\.net/\" to=\"https://admin-vh.es.clara.net/\"/><rule from=\"^http://signup\\.claranet\\.de/\" to=\"https://signup.claranet.de/\"/></ruleset>", "<ruleset name=\"Claranet (partial)\" default_off=\"failed ruleset test\" f=\"Claranet.xml\"><securecookie host=\"^(?:.*\\.)?clara\\.net$\" name=\".*\"/><securecookie host=\"^admin\\.clarahost\\.co\\.uk$\" name=\".*\"/><securecookie host=\"^pop\\.claranet\\.de$\" name=\".*\"/><securecookie host=\"^(?:.*\\.)?claranet\\.nl$\" name=\".*\"/><securecookie host=\"^webmail\\.claranet\\.pt$\" name=\".*\"/><securecookie host=\"^secure\\.claranetsoho\\.co\\.uk$\" name=\".*\"/><rule from=\"^http://(corporate|customer|webmail(\\.bln\\.de)?|(nswebmail|portal)\\.uk)\\.clara\\.net/\" to=\"https://$1.clara.net/\"/><rule from=\"^http://admin\\.clarahost\\.co\\.uk/\" to=\"https://admin.clarahost.co.uk/\"/><rule from=\"^http://pop\\.claranet\\.de/\" to=\"https://pop.claranet.de/\"/><rule from=\"^http://webmail\\.claranet\\.(nl|pt)/\" to=\"https://webmail.claranet.$1/\"/><rule from=\"^http://servicecenter\\.claranet\\.nl/\" to=\"https://servicecenter.claranet.nl/\"/><rule from=\"^http://secure\\.claranetsoho\\.co\\.uk/\" to=\"https://secure.claranetsoho.co.uk/\"/></ruleset>", "<ruleset name=\"Clarion-Ledger\" f=\"Clarion-Ledger.xml\"><securecookie host=\"^www\\.clarionledger\\.com$\" name=\".+\"/><rule from=\"^http://(?:cmsimg\\.|www\\.)?clarionledger\\.com/\" to=\"https://www.clarionledger.com/\"/></ruleset>", "<ruleset name=\"ClarityRay (partial)\" default_off=\"refused\" f=\"ClarityRay.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Clasohlson.se (broken)\" default_off=\"redirects to HTTP\" f=\"Clasohlson.se.xml\"><rule from=\"^http://www\\.clasohlson\\.se/\" to=\"https://www.clasohlson.se/\"/><rule from=\"^http://clasohlson\\.se/\" to=\"https://www.clasohlson.se/\"/></ruleset>", "<ruleset name=\"Class-Central.com\" f=\"Class-Central.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://class-central\\.com/\" to=\"https://www.class-central.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ClassZone.com\" f=\"ClassZone.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Classmates.com (partial)\" f=\"Classmates.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ClassyMotherfucker.com\" default_off=\"self-signed\" f=\"ClassyMotherfucker.xml\"><rule from=\"^http://(?:www\\.)?classymotherfucker\\.com/\" to=\"https://classymotherfucker.com/\"/></ruleset>", "<ruleset name=\"Claudio dAngelis.com\" f=\"Claudio_dAngelis.com.xml\"><securecookie host=\"^\\.claudiodangelis\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Claws-Mail.org\" default_off=\"mismatched\" f=\"Claws-Mail.org.xml\"><rule from=\"^http://(git\\.|www\\.)?claws-mail\\.org/\" to=\"https://$1claws-mail.org/\"/></ruleset>", "<ruleset name=\"cldlr.com\" f=\"Cldlr.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cldup.com\" f=\"Cldup.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Clean Energy Experts\" f=\"Clean-Energy-Experts.xml\"><securecookie host=\"^(?:.*\\.)?cleanenergyexperts\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Clean Energy Finance Corporation\" f=\"CleanEnergyFinanceCorporation.xml\"><rule from=\"^http://(?:www\\.)?cleanenergyfinancecorp\\.com\\.au/\" to=\"https://www.cleanenergyfinancecorp.com.au/\"/></ruleset>", "<ruleset name=\"CleanPrint.net\" default_off=\"failed ruleset test\" f=\"CleanPrint.net.xml\"><rule from=\"^http://(www\\.)?cleanprint\\.net/\" to=\"https://$1cleanprint.net/\"/><rule from=\"^http://cache-02\\.cleanprint\\.net/\" to=\"https://cache-02.cleanprint.net/\"/></ruleset>", "<ruleset name=\"Clear-Code.com\" f=\"Clear-Code.com.xml\"><rule from=\"^http://clear-code\\.com/\" to=\"https://www.clear-code.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Clear-link.com\" f=\"Clear-link.com.xml\"><rule from=\"^http://(?:www\\.)?clear-link\\.com/+\" to=\"https://www.clearlink.com/\"/><rule from=\"^http://cms\\.clear-link\\.com/\" to=\"https://cms.clear-link.com/\"/></ruleset>", "<ruleset name=\"ClearCenter.com (partial)\" f=\"ClearCenter.com.xml\"><securecookie host=\"^secure\\.clearcenter\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ClearChain.com (partial)\" platform=\"mixedcontent\" f=\"ClearChain.com.xml\"><securecookie host=\"^(www\\.)?clearchain\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ClearXchange.com\" f=\"ClearXchange.com.xml\"><securecookie host=\"^\\.clearxchange\\.com$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Clear Linux.org\" f=\"Clear_Linux.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Clearista.com\" f=\"Clearista.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Clearlink.com\" f=\"Clearlink.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Clergy Project\" default_off=\"mismatched\" f=\"Clergy-Project.xml\"><rule from=\"^http://(?:www\\.)?clergyproject\\.org/\" to=\"https://clergyproject.org/\"/></ruleset>", "<ruleset name=\"ClevelandClinic (partial)\" f=\"ClevelandClinic.org.xml\"><securecookie host=\"^.*\\.clevelandclinic\\.org$\" name=\".+\"/><rule from=\"^http://www\\.clevelandclinic\\.org/\" to=\"https://my.clevelandclinic.org/\"/><rule from=\"^http://lerner\\.ccf\\.org/\" to=\"https://www.lerner.ccf.org/\"/><rule from=\"^http://clevelandclinicmeded\\.com/\" to=\"https://www.clevelandclinicmeded.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cleveland Police\" f=\"ClevelandPolice.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Clever.com\" f=\"Clever.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CleverCoin.com\" f=\"CleverCoin.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?clevercoin\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cleverbridge (partial)\" default_off=\"failed ruleset test\" f=\"Cleverbridge.xml\"><exclusion pattern=\"^http://(?:go|lp-content)\\.cleverbridge\\.com/\"/><exclusion pattern=\"^http://message\\.cleverbridge\\.com/bin/icon_generator\\?key=captcha-key$\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http://(?:www\\.)?cleverbridge\\.org/\" to=\"https://www.cleverbridge.com/\"/><rule from=\"^http://(\\w+\\.)?cleverbridge\\.com/\" to=\"https://$1cleverbridge.com/\"/></ruleset>", "<ruleset name=\"Click-Sec.com\" default_off=\"failed ruleset test\" f=\"Click-Sec.com.xml\"><securecookie host=\"^(?:support|www)?\\.click-sec\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Click4Assistance.co.uk\" f=\"Click4Assistance.co.uk.xml\"><securecookie host=\"^(?:www\\.)?click4assistance\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ClickBank\" f=\"ClickBank.xml\"><securecookie host=\"^(?:\\.accounts|www)?\\.clickbank\\.com$\" name=\".+\"/><securecookie host=\"^(?:ssl)?\\.clickbank\\.net$\" name=\".+\"/><rule from=\"^http://((?:accounts|support|www)\\.)?clickbank\\.com/\" to=\"https://$1clickbank.com/\"/><rule from=\"^http://www\\.clickbank\\.net/+\\??$\" to=\"https://www.clickbank.com/\"/><rule from=\"^http://(?:www\\.)?clickbank\\.net/.*\" to=\"https://www.clickbank.com/network_abuse.html\"/><rule from=\"^http://ssl\\.clickbank\\.net/\" to=\"https://ssl.clickbank.net/\"/></ruleset>", "<ruleset name=\"ClickDimensions.com (partial)\" f=\"ClickDimensions.xml\"><rule from=\"^http://files-eu\\.clickdimensions\\.com/\" to=\"https://az551914.vo.msecnd.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ClickEquations.net\" default_off=\"failed ruleset test\" f=\"ClickEquations.net.xml\"><securecookie host=\"^(?:w*\\.)?clickequations\\.net$\" name=\".+\"/><rule from=\"^http://((?:beacon|js|www)\\.)?clickequations\\.net/\" to=\"https://$1clickequations.net/\"/></ruleset>", "<ruleset name=\"ClickFunnels.com\" f=\"ClickFunnels.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ClickFuse.com\" f=\"ClickFuse.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ClickMotive.com (partial)\" default_off=\"failed ruleset test\" f=\"ClickMotive.xml\"><rule from=\"^http://assets\\.clickmotive\\.com/\" to=\"https://secureassets.clickmotive.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ClickOn.com.ar\" f=\"ClickOn.xml\"><securecookie host=\"^(?:www\\.)?clickon\\.com\\.ar$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ClickPath (partial)\" f=\"ClickPath.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ClickSSL.com\" f=\"ClickSSL.com.xml\"><securecookie host=\"^www\\.clickssl\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ClickTale\" f=\"ClickTale.xml\"><securecookie host=\".*\\.clicktale\\.(?:com|net)$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?clicktale\\.com/\" to=\"https://www.clicktale.com/\"/><rule from=\"^http://((?:login|subs)\\.app|blog)\\.clicktale\\.com/\" to=\"https://$1.clicktale.com/\"/><rule from=\"^http://s\\.clicktale\\.net/\" to=\"https://clicktale.pantherssl.com/\"/><rule from=\"^http://cdn\\.clicktale\\.net/\" to=\"https://clicktalecdn.sslcs.cdngc.net/\"/><rule from=\"^http://www(07)?\\.clicktale\\.net/\" to=\"https://www$1.clicktale.net/\"/></ruleset>", "<ruleset name=\"ClickVoyage.ru (MCB)\" platform=\"mixedcontent\" f=\"ClickVoyage.ru-mixedcontent.xml\"><securecookie host=\"^booking\\.clickvoyage\\.ru$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ClickVoyage.ru (partial)\" f=\"ClickVoyage.ru.xml\"><securecookie host=\"^b2b\\.clickvoyage\\.ru$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Click and Pledge.com (partial)\" f=\"Click_and_Pledge.com.xml\"><securecookie host=\"^(?:.+\\.)?clickandpledge\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Click to Tweet.com\" f=\"Click_to_Tweet.com.xml\"><securecookie host=\"^clicktotweet\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Clickdelivery.gr\" f=\"Clickdelivery.gr.xml\"><securecookie host=\"^(?:www\\.)?clickdelivery\\.gr$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Clickerheroes.com\" f=\"Clickerheroes.com.xml\"><rule from=\"^http://(?:www\\.)?clickerheroes\\.com/\" to=\"https://www.clickerheroes.com/\"/></ruleset>", "<ruleset name=\"Clickfun Casino\" default_off=\"failed ruleset test\" f=\"Clickfun_Casino.xml\"><securecookie host=\"^(?:.*\\.)?clickfun(?:casino)?\\.com$\" name=\".+\"/><rule from=\"^http://(cdn77\\.|www\\.)?clickfun(casino)?\\.com/\" to=\"https://$1clickfun$2.com/\"/></ruleset>", "<ruleset name=\"Clicklivechat.com\" f=\"Clicklivechat.com.xml\"><securecookie host=\"^\\.clicklivechat\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"clicks.lv (partial)\" default_off=\"expired\" f=\"Clicks.lv.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Clicksor.com (partial)\" f=\"Clicksor.com.xml\"><securecookie host=\"^\\.clicksor\\.com$\" name=\".+\"/><rule from=\"^http://(admin|ads|serw|signup)\\.clicksor\\.com/\" to=\"https://$1.clicksor.com/\"/><rule from=\"^http://pub\\.clicksor\\.net/\" to=\"https://ads.clicksor.com/\"/></ruleset>", "<ruleset name=\"Clicktools.com\" f=\"Clicktools.xml\"><securecookie host=\"^(?:.+\\.)?clicktools\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Climate Central\" default_off=\"http redirect\" f=\"Climate-Central.xml\"><securecookie host=\"^www\\.climatecentral\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Climate-Diplomacy.org\" f=\"Climate-Diplomacy.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ClinicalKey.com\" f=\"ClinicalKey.com.xml\"><securecookie host=\"^\\.\" name=\"^dtCookie$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Clinkle.com\" default_off=\"failed ruleset test\" f=\"Clinkle.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ClipPod.com\" f=\"ClipPod.com.xml\"><securecookie host=\"^clippod\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Clipperz.is\" f=\"Clipperz.is.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"clkads.com\" default_off=\"missing certificate chain\" f=\"Clkads.com.xml\"><rule from=\"^http://(?:www\\.)?clk(?:ads|mon|rev)\\.com/\" to=\"https://clkads.com/\"/></ruleset>", "<ruleset name=\"ClockworkMod.com (partial)\" f=\"Clockworkmod.com.xml\"><securecookie host=\"^developer\\.clockworkmod\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Closerware.net (partial)\" f=\"Closerware.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Clothing at Tesco.com\" default_off=\"failed ruleset test\" f=\"Clothing_at_Tesco.com.xml\"><securecookie host=\"^[w.]*\\.clothingattesco\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ClouDNS.net\" f=\"ClouDNS.net.xml\"><securecookie host=\"^www\\.cloudns\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ClouToday.nl\" f=\"ClouToday.nl.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://cloutoday\\.nl/\" to=\"https://www.cloutoday.nl/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CloudAccess.net (partial)\" f=\"Cloud-Access.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cloud Privacy (partial)\" f=\"Cloud-Privacy.xml\"><rule from=\"^http://files\\.cloudprivacy\\.net/\" to=\"https://s3.amazonaws.com/files.cloudprivacy.net/\"/></ruleset>", "<ruleset name=\"C9.io\" default_off=\"failed ruleset test\" f=\"Cloud9.xml\"><securecookie host=\"^(?:\\.|docs\\.)?c9\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CloudAfrica.net\" f=\"CloudAfrica.net.xml\"><securecookie host=\"^(?:www\\.)?cloudafrica\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cloudatcost.com\" f=\"CloudAtCost.com.xml\"><exclusion pattern=\"^http://panel\\.cloudatcost\\.com:[0-9]+/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cloudControl.com (partial)\" default_off=\"failed ruleset test\" f=\"CloudControl.com.xml\"><rule from=\"^http://cloudcontrol\\.com/\" to=\"https://www.cloudcontrol.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CloudCracker\" default_off=\"failed ruleset test\" f=\"CloudCracker.xml\"><rule from=\"^http://(?:www\\.)?wpacracker\\.com/\" to=\"https://cloudcracker.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CloudFlare.com\" f=\"CloudFlare.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CloudFlare Challenge.com\" default_off=\"expired\" f=\"CloudFlare_Challenge.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CloudForge.com (partial)\" default_off=\"expired\" f=\"CloudForge.xml\"><securecookie host=\"^(?:ap|hel)p\\.cloudforge\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CloudLinux.com (false MCB)\" platform=\"mixedcontent\" f=\"CloudLinux.com-falsemixed.xml\"><securecookie host=\"^\\.cloudlinux\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CloudLinux.com (partial)\" f=\"CloudLinux.com.xml\"><securecookie host=\"^\\.cloudlinux\\.com$\" name=\"^(?:__cfduid|BITRIX_SM_LAST_VISIT|cf_clearance)$\"/><securecookie host=\"^cln\\.cloudlinux\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CloudMagic\" f=\"CloudMagic.xml\"><securecookie host=\"^cloudmagic\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CloudPiercer.org\" f=\"CloudPiercer.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CloudSigma\" default_off=\"failed ruleset test\" f=\"CloudSigma.xml\"><securecookie host=\"^(?:.*\\.)?cloudsigma\\.com$\" name=\".+\"/><rule from=\"^http://((?:autodetect|www|zrh|gui\\.zrh)\\.)?cloudsigma\\.com/\" to=\"https://$1cloudsigma.com/\"/><rule from=\"^http://status\\.cloudsigma\\.com/\" to=\"https://cloudsigma.statuspage.io/\"/></ruleset>", "<ruleset name=\"CloudSleuth.net\" f=\"CloudSleuth.xml\"><rule from=\"^http://(?:www\\.)?cloudsleuth\\.net/.*\" to=\"https://www.dynatrace.com/en/index.html\"/></ruleset>", "<ruleset name=\"CloudSponge (partial)\" f=\"CloudSponge.xml\"><securecookie host=\"^api\\.cloudsponge\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CloudSwitch\" default_off=\"failed ruleset test\" f=\"CloudSwitch.xml\"><securecookie host=\".*cloudswitch\\.com$\" name=\".*\"/><rule from=\"^http://(\\w+\\.)?cloudswitch\\.com/\" to=\"https://$1cloudswitch.com/\"/></ruleset>", "<ruleset name=\"CloudTrax.com\" f=\"CloudTrax.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CloudWorks.nu\" default_off=\"mismatched\" f=\"CloudWorks.nu.xml\"><rule from=\"^http://(?:www\\.)?cloudworks\\.nu/\" to=\"https://cloudworks.nu/\"/></ruleset>", "<ruleset name=\"Cloud Foundry.org (partial)\" default_off=\"failed ruleset test\" f=\"Cloud_Foundry.org.xml\"><exclusion pattern=\"^http://blog\\.cloudfoundry\\.org/+(?!wp-content/.+\\.(?:jp|pn)g)\"/><rule from=\"^http://blog\\.cloudfoundry\\.org/\" to=\"https://i0.wp.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cloud Foundry.com (partial)\" default_off=\"failed ruleset test\" f=\"Cloud_Foundry.xml\"><exclusion pattern=\"^http://blog\\.cloudfoundry\\.com/(?!$)\"/><securecookie host=\"^core\\.cloudfoundry\\.com$\" name=\".+\"/><rule from=\"^http://blog\\.cloudfoundry\\.com/\" to=\"https://blog.pivotal.io/cloud-foundry-pivotal\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cloud Proven.net\" default_off=\"failed ruleset test\" f=\"Cloud_Proven.net.xml\"><securecookie host=\"^(?:www)?\\.cloudproven\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cloudera.com\" default_off=\"failed ruleset test\" f=\"Cloudera.com.xml\"><securecookie host=\"^(?:\\.|ccp\\.|university\\.|www\\.)?cloudera\\.com$\" name=\".+\"/><rule from=\"^http://((?:ccp|community|university|www)\\.)?cloudera\\.com/\" to=\"https://$1cloudera.com/\"/><rule from=\"^http://files\\.cloudera\\.com/\" to=\"https://s3.amazonaws.com/files.cloudera.com/\"/><rule from=\"^http://images\\.go\\.cloudera\\.com/\" to=\"https://secure.eloqua.com/\"/></ruleset>", "<ruleset name=\"Cloudflarestatus.com\" f=\"Cloudflarestatus.com.xml\"><rule from=\"^http://cloudflarestatus\\.com/\" to=\"https://www.cloudflarestatus.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cloudforce.com\" f=\"Cloudforce.com.xml\"><exclusion pattern=\"^http://cloudforce\\.com/.+\"/><securecookie host=\"^$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?cloudforce\\.com/.*\" to=\"https://www.salesforce.com/events/\"/><rule from=\"^http://([\\w-]+)\\.cloudforce\\.com/\" to=\"https://$1.cloudforce.com/\"/></ruleset>", "<ruleset name=\"Cloudfront.net\" f=\"Cloudfront.xml\"><rule from=\"^http:\" to=\"https:\"/><exclusion pattern=\"^http://d2i3r43q6ffvz8\\.cloudfront\\.net/.+\\.js\"/><exclusion pattern=\"^http://(\\w+)\\.cloudfront\\.net/crossdomain\\.xml\"/><exclusion pattern=\"^http://d3aef1qbbv7i5v\\.cloudfront\\.net/\"/><exclusion pattern=\"^http://(?:d3bn78kc7qbjb6|d1nawi9f7y8zrl)\\.cloudfront\\.net/\"/><exclusion pattern=\"&Signature=\"/><exclusion pattern=\"^http://d3biamo577v4eu\\.cloudfront\\.net/\"/><exclusion pattern=\"^http://d3s2wlph6mu7bx\\.cloudfront\\.net/\"/><exclusion pattern=\"^http://dp8hsntg6do36\\.cloudfront\\.net/\"/></ruleset>", "<ruleset name=\"Cloudhexa Network\" f=\"Cloudhexa_Network.xml\"><securecookie host=\"^\\.(?:www\\.)?cloudhexa\\.com$\" name=\".+\"/><rule from=\"^http://www\\.cloudhexa\\.com/\" to=\"https://www.cloudhexa.com/\"/><rule from=\"^http://support\\.cloudhexa\\.com/\" to=\"https://cloudhexa.zendesk.com/\"/></ruleset>", "<ruleset name=\"Cloudimage.io\" f=\"Cloudimage.io.xml\"><securecookie host=\"^(?:[\\w-]+\\.)?cloudimage\\.io$\" name=\".+\"/><rule from=\"^http://([\\w-]+\\.)?cloudimage\\.io/\" to=\"https://$1cloudimage.io/\"/></ruleset>", "<ruleset name=\"Cloudinary.com (partial)\" f=\"Cloudinary.xml\"><exclusion pattern=\"^http://cloudinary\\.com/(?!/*(?:(?:console|users/login|users/recover_password|users/register)(?:$|[?/])|fonts/|stylesheets/))\"/><rule from=\"^http://demo-res\\.cloudinary\\.com/\" to=\"https://d1c4ogak0lt2ja.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cloudmailin.com (partial)\" f=\"Cloudmailin.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cloudmark\" f=\"Cloudmark.xml\"><rule from=\"^http://(?:www\\.)?cloudmark\\.com/\" to=\"https://cloudmark.com/\"/><securecookie host=\"^(?:www\\.)?cloudmark\\.com$\" name=\".*\"/></ruleset>", "<ruleset name=\"cloudmining.guru\" default_off=\"expired\" f=\"Cloudmining.guru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cloudorado.com (partial)\" f=\"Cloudorado.com.xml\"><securecookie host=\"^\\.cloudorado\\.com$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cloudpath.net (partial)\" f=\"Cloudpath.net.xml\"><securecookie host=\"^xpc\\.cloudpath\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cloudron.io\" f=\"Cloudron.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cloudscaling.com\" default_off=\"failed ruleset test\" f=\"Cloudscaling.com.xml\"><securecookie host=\"^(?:w*\\.)?cloudscaling\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cloudset.net\" f=\"Cloudset.net.xml\"><rule from=\"^http://(app|index\\.app|integrator|qa)\\.cloudset\\.net/\" to=\"https://$1.cloudset.net/\"/></ruleset>", "<ruleset name=\"Cloudwear.com\" default_off=\"failed ruleset test\" f=\"Cloudwear.com.xml\"><securecookie host=\"^(?:w*\\.)?cloudwear\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Clover.com\" f=\"Clover.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ClubNix.fr\" f=\"ClubNix.fr.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Club Red Gaming.com (partial)\" default_off=\"refused\" f=\"Club_Red_Gaming.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ClusterHQ.com\" default_off=\"failed ruleset test\" f=\"ClusterHQ.com.xml\"><securecookie host=\"^\\.clusterhq\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cluster Connection.com (partial)\" f=\"Cluster_Connection.com.xml\"><rule from=\"^http://(www\\.)?clusterconnection\\.com/(?=favicon\\.ico|(?:members|register)(?:$|[?/])|wordpress/)\" to=\"https://$1clusterconnection.com/\"/></ruleset>", "<ruleset name=\"Clusters.de\" f=\"Clusters.de.xml\"><securecookie host=\"^(?:customer|domain)\\.clusters\\.de$\" name=\".+\"/><rule from=\"^http://((?:customer|domain|www)\\.)?clusters\\.de/\" to=\"https://$1clusters.de/\"/></ruleset>", "<ruleset name=\"Clyp.it\" f=\"Clyp.it.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CaCDN.net\" default_off=\"failed ruleset test\" f=\"CmCDN.net.xml\"><rule from=\"^http://media\\.cmcdn\\.net/\" to=\"https://d2tbi97h020xxe.cloudfront.net/\"/><rule from=\"^http://s\\.cmcdn\\.net/\" to=\"https://d1gyuuidj3lauh.cloudfront.net/\"/></ruleset>", "<ruleset name=\"cmcenroe.me (partial)\" f=\"Cmcenroe.me.xml\"><securecookie host=\"^\\.cmcenroe\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cmtt.ru\" f=\"Cmtt.ru.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cmxlog.com\" f=\"Cmxlog.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cnchost.com (partial)\" default_off=\"failed ruleset test\" f=\"Cnchost.com.xml\"><securecookie host=\"^secure\\.chchost\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cnzz.com\" f=\"Cnzz.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"co-operative bank\" f=\"Co-operative-bank.xml\"><securecookie host=\"^.*\\.co-operativebank\\.co\\.uk$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?co-operativebank\\.co\\.uk/\" to=\"https://www.co-operativebank.co.uk/\"/><rule from=\"^http://personal\\.co-operativebank\\.co\\.uk/\" to=\"https://personal.co-operativebank.co.uk/\"/></ruleset>", "<ruleset name=\"Co3 Sys.com\" f=\"Co3_Sys.com.xml\"><securecookie host=\"^app\\.co3sys\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?co3sys\\.com/\" to=\"https://www.co3sys.com/\"/><rule from=\"^http://app\\.co3sys\\.com/\" to=\"https://app.co3sys.com/\"/></ruleset>", "<ruleset name=\"CoCubes.com (false MCB)\" platform=\"mixedcontent\" f=\"CoCubes.com-falsemixed.xml\"><securecookie host=\"^assess\\.cocubes\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CoCubes.com (partial)\" f=\"CoCubes.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cogen Media (partial)\" default_off=\"missing certificate chain\" f=\"CoGen-Media.xml\"><securecookie host=\"^\\.\" name=\"^_(?:_utm|gat?$|gat_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CoNetrix\" f=\"CoNetrix.xml\"><securecookie host=\"^(?:www)?\\.conetrix\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Coast Capital Savings\" default_off=\"failed ruleset test\" f=\"Coast-Capital-Savings.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Coast Digital\" default_off=\"failed ruleset test\" f=\"Coast-Digital.xml\"><rule from=\"^http://(?:www\\.)?coastdigital\\.co\\.uk/\" to=\"https://coastdigital.co.uk/\"/><securecookie host=\"^(?:www\\.)?coastdigital\\.co\\.uk$\" name=\".*\"/></ruleset>", "<ruleset name=\"Coastal Community Credit Union\" f=\"Coastal-Community-Credit-Union.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Coastal Micro Supply (partial)\" default_off=\"failed ruleset test\" f=\"Coastal_Micro_Supply.xml\"><rule from=\"^http://(www\\.)?coastalmicrosupply\\.com/($|catalog\\.html|images/|index\\.php\\?target=auth|skins/)\" to=\"https://$1coastalmicrosupply.com/$2\"/></ruleset>", "<ruleset name=\"Cobalt Mania.com\" default_off=\"failed ruleset test\" f=\"Cobalt_Mania.com.xml\"><securecookie host=\"^(?:www)?\\.cobaltmania.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?cobaltmania\\.com/\" to=\"https://www.cobaltmania.com/\"/></ruleset>", "<ruleset name=\"Coccoc.com\" f=\"Coccoc.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Coclico Project (partial)\" default_off=\"shows default page\" f=\"Coclico-Project.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Code of Honor\" f=\"Code-of-Honor.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Code.org\" f=\"Code.org.xml\"><securecookie host=\"^\\.code\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Code42.com\" f=\"Code42.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CodeAurora.org\" f=\"CodeAurora.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CodeBeamer.com\" f=\"CodeBeamer.com.xml\"><securecookie host=\"^codebeamer\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CodeHS.com\" f=\"CodeHS.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CodePen.io\" f=\"CodePen.io.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CodePicnic.com\" f=\"CodePicnic.com.xml\"><securecookie host=\"^(?:www\\.)?codepicnic\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CodePunker.com\" f=\"CodePunker.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CodeWeavers\" f=\"CodeWeavers.xml\"><securecookie host=\"^www\\.codeweavers\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Code Club.org.uk (partial)\" f=\"Code_Club.org.uk.xml\"><securecookie host=\"^(?:www\\.)?codeclub\\.org\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Code Club Pro.org\" f=\"Code_Club_Pro.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Code Mill Tech.com\" f=\"Code_Mill_Tech.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^(?:_gat?|ARRAffinity)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Code School.com (partial)\" f=\"Code_School.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Code as Craft.com\" f=\"Code_as_Craft.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Code for America.org (partial)\" default_off=\"failed ruleset test\" f=\"Code_for_America.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Codebase HQ.com\" default_off=\"failed ruleset test\" f=\"Codebase_HQ.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Codecademy.com\" f=\"Codecademy.com.xml\"><securecookie host=\"^(www\\.|discuss\\.)?codecademy\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Codecentric.de\" f=\"Codecentric.de.xml\"><securecookie host=\"^\\.blog\\.codecentric\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Codeclimate.com\" f=\"Codeclimate.com.xml\"><securecookie host=\"^(www\\.)?codeclimate\\.com\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Codecombat.com\" f=\"Codecombat.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Codecoon.com\" default_off=\"failed ruleset test\" f=\"Codecoon.com.xml\"><securecookie host=\"^my\\.codecoon.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Codecoop.org\" f=\"Codecoop.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Codecov.io\" f=\"Codecov.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Codefisher.org\" f=\"Codefisher.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Codefuel.com (partial)\" f=\"Codefuel.xml\"><securecookie host=\"^\\.codefuel.com$\" name=\"^(?:PERSISTENT_REFERRER_URL|REFERRER_URL|REFID)$\"/><securecookie host=\"^(?:accounts|sso)\\.codefuel.com$\" name=\".+\"/><rule from=\"^http://(accounts|sso)\\.codefuel\\.com/\" to=\"https://$1.codefuel.com/\"/></ruleset>", "<ruleset name=\"codefund.io (partial)\" default_off=\"failed ruleset test\" f=\"Codefund.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Codehaus.org (partial)\" default_off=\"failed ruleset test\" f=\"Codehaus.org.xml\"><securecookie host=\"^docs\\.codehaus\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Codementor.io\" f=\"Codementor.io.xml\"><securecookie host=\"^(?:www)?\\.codementor\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Codemirror.net\" f=\"Codemirror.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Codemoji.org\" f=\"Codemoji.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Codeplex.com (partial)\" f=\"Codeplex.xml\"><exclusion pattern=\"^http://(?:download|i[123])\\.codeplex\\.com/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"coderbits.com (partial)\" default_off=\"failed ruleset test\" f=\"Coderbits.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Coderouge.co\" default_off=\"failed ruleset test\" f=\"Coderouge.co.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CodersClan.net\" f=\"CodersClan.net.xml\"><securecookie host=\"^(?:www\\.)?codersclan\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Coderwall.com\" default_off=\"failed ruleset test\" f=\"Coderwall.xml\"><securecookie host=\"^(?:www\\.)?coderwall\\.com$\" name=\".+\"/><rule from=\"^http://cdn\\.coderwall\\.com/\" to=\"https://d2h0j0bhq7ad3b.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Codeship.com\" f=\"Codeship.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"codespeak\" default_off=\"failed ruleset test\" f=\"Codespeak.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Codethink\" default_off=\"mismatched\" f=\"Codethink.xml\"><rule from=\"^http://(?:www\\.)?codethink\\.co\\.uk/\" to=\"https://www.codethink.co.uk/\"/></ruleset>", "<ruleset name=\"Codetriage.com\" f=\"Codetriage.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Codex NS.io (partial)\" default_off=\"failed ruleset test\" f=\"Codex_NS.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CodingTeam.net\" default_off=\"expired\" f=\"CodingTeam.net.xml\"><rule from=\"^http://(?:www\\.)?codingteam\\.net/\" to=\"https://codingteam.net/\"/></ruleset>", "<ruleset name=\"Coding Horror\" default_off=\"failed ruleset test\" f=\"Codinghorror.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Coed.com\" f=\"Coed.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cognesia.net\" f=\"Cognesia.net.xml\"><securecookie host=\"^(?:resources|www)\\.cognesia\\.net$\" name=\".+\"/><rule from=\"^http://www\\.cognesia\\.net/\" to=\"https://www.cognesia.net/\"/></ruleset>", "<ruleset name=\"Cognition Secure.com\" f=\"Cognition_Secure.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cognitive Dissidents (partial)\" default_off=\"Akamai\" f=\"Cognitive-Dissidents.xml\"><rule from=\"^http://(blog|www)\\.cognitivedissidents\\.com/\" to=\"https://$1.cognitivedissidents.com/\"/></ruleset>", "<ruleset name=\"CohnReznick.com\" f=\"CohnReznick.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Coin-Swap.net\" default_off=\"failed ruleset test\" f=\"Coin-Swap.net.xml\"><securecookie host=\"^coin-swap\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CoinAxis.com\" f=\"CoinAxis.com.xml\"><securecookie host=\"^\\.?coinaxis\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CoinDL.com\" f=\"CoinDL.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CoinDaddy.io\" f=\"CoinDaddy.io.xml\"><securecookie host=\"^\\.coindaddy\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CoinDesk.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"CoinDesk.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CoinForum.de\" f=\"CoinForum.de.xml\"><securecookie host=\"^\\.coinforum\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CoinJabber.com\" f=\"CoinJabber.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CoinJar.com\" f=\"CoinJar.com.xml\"><securecookie host=\"^\\.coinjar\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CoinMate.io\" f=\"CoinMate.io.xml\"><securecookie host=\"^\\.?coinmate\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CoinURL.com\" f=\"CoinURL.com.xml\"><securecookie host=\"^coinurl\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?coinurl\\.com/\" to=\"https://coinurl.com/\"/></ruleset>", "<ruleset name=\"CoinWallet.eu\" default_off=\"failed ruleset test\" f=\"CoinWallet.eu.xml\"><securecookie host=\"^(?:www)?\\.coinwallet\\.eu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CoinWorker.com\" f=\"CoinWorker.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Coinb.in\" f=\"Coinb.in.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"coincheck.jp\" f=\"Coincheck.jp.xml\"><securecookie host=\"^coincheck\\.jp$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Coinfloor.co.uk (partial)\" f=\"Coinfloor.co.uk.xml\"><securecookie host=\"^(?:\\.|www\\.)?coinfloor\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://status\\.coinfloor\\.co\\.uk/\" to=\"https://coinfloor.statuspage.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Coinimal.com\" f=\"Coinimal.com.xml\"><securecookie host=\"^\\.coinimal\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Coinkite.com\" default_off=\"failed ruleset test\" f=\"Coinkite.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Coinomat.com (partial)\" f=\"Coinomat.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Coinpay.in.th\" f=\"Coinpay.in.th.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Coinsecure.in\" f=\"Coinsecure.in.xml\"><securecookie host=\"^coinsecure\\.in$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Coinsquare.io\" f=\"Coinsquare.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cointrader.net\" default_off=\"failed ruleset test\" f=\"Cointrader.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Coicoisas.com\" f=\"Coisas.com.xml\"><securecookie host=\"^\\.coisas.com$\" name=\".+\"/><rule from=\"^http://coisas\\.com/\" to=\"https://www.coisas.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Coke CCE.com\" f=\"Coke_CCE.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Colchester.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"Colchester.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Colin Leroy\" f=\"Colin-Leroy.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CollabNet\" f=\"CollabNet.xml\"><securecookie host=\"^\\.collab\\.net$\" name=\".+\"/><rule from=\"^http://((?:blog|git\\.help|forums\\.open|www)\\.)?collab\\.net/\" to=\"https://$1collab.net/\"/><rule from=\"^http://(?:www\\.)?open\\.collab\\.net/\" to=\"https://www.open.collab.net/\"/><rule from=\"^http://visit\\.collab\\.net/(?=css/|images/|js/|rs/)\" to=\"https://na-aba.collab.net/\"/></ruleset>", "<ruleset name=\"Collabora (mismatches)\" default_off=\"mismatched, self-signed\" f=\"Collabora-mismatches.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Collabora (partial)\" f=\"Collabora.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Collateral Murder\" f=\"Collateral_Murder.xml\"><securecookie host=\"^\\.collateralmurder\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"collectd.org\" f=\"Collectd.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Collectif Stop TAFTA.org\" f=\"Collectif_Stop_TAFTA.org.xml\"><rule from=\"^http://collectifstoptafta\\.org/\" to=\"https://www.collectifstoptafta.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Collective Media (partial)\" f=\"Collective-Media.xml\"><securecookie host=\"^\\.collective-media\\.net$\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Collective IP.com\" f=\"Collective_IP.com.xml\"><securecookie host=\"^\\.collectiveip\\.com$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"College of Nurses of Ontario (partial)\" f=\"College-of-Nurses-of-Ontario.xml\"><rule from=\"^http://(www\\.)?cno\\.org/(CNO|Global|login)/\" to=\"https://www.cno.org/$2/\"/><rule from=\"^http://flo\\.cno\\.org/\" to=\"https://flo.cno.org/\"/></ruleset>", "<ruleset name=\"CollegeBoundfund (partial)\" f=\"CollegeBoundfund.xml\"><securecookie host=\"^(?:.+\\.)?collegeboundfund\\.com$\" name=\".+\"/><rule from=\"^http://(corporate\\.|www\\.)?collegeboundfund\\.com/\" to=\"https://$1collegeboundfund.com/\"/><rule from=\"^http://ri\\.collegeboundfund\\.com/(\\?.*)?$\" to=\"https://www.collegeboundfund.com/ri/home.aspx$1\"/><rule from=\"^http://ri\\.collegeboundfund\\.com/CmsObjectRICBF/\" to=\"https://corporate.collegeboundfund.com/CmsObjectRICBF/\"/></ruleset>", "<ruleset name=\"CollegeHumor (mismatches)\" default_off=\"Akamai\" f=\"CollegeHumor-mismatches.xml\"><rule from=\"^http://\\d\\.media\\.collegehumor\\.cvcdn\\.com/\" to=\"https://1.media.collegehumor.cvcdn.com/\"/></ruleset>", "<ruleset name=\"CollegeHumor (buggy)\" default_off=\"JS redirection loops\" f=\"CollegeHumor.xml\"><securecookie host=\"^\\.collegehumor\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?collegehumor\\.com/\" to=\"https://www.collegehumor.com/\"/><rule from=\"^http://\\d\\.static\\.collegehumor\\.cvcdn\\.com/\" to=\"https://www.collegehumor.com/\"/></ruleset>", "<ruleset name=\"CollegeNET.com\" f=\"CollegeNET.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CollegiateLink.net\" default_off=\"failed ruleset test\" f=\"CollegiateLink.xml\"><exclusion pattern=\"^http://(?:[^./]+\\.){2,}collegiatelink\\.net/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Collegiate Peaks Bank\" f=\"CollegiatePeaksBank.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://cpbonlinebanking\\.com/\" to=\"https://www.cpbonlinebanking.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CollierTech.org (partial)\" f=\"CollierTech.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Collings Foundation.org\" f=\"Collings_Foundation.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"College of Richard Collyer\" default_off=\"failed ruleset test\" f=\"Collyers.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Colm Networks\" f=\"Colm_Networks.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Colocation America.com (partial)\" f=\"Colocation_America.com.xml\"><exclusion pattern=\"^http://www\\.colocationamerica\\.com/+(?!images/|wp-content/)\"/><securecookie host=\"^colocationamerica\\.com$\" name=\".+\"/><rule from=\"^http://cdn\\d?\\.colocationamerica\\.com/\" to=\"https://www.colocationamerica.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Colocore.ch\" default_off=\"failed ruleset test\" f=\"Colocore.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CologneFurdance\" default_off=\"failed ruleset test\" f=\"CologneFurdance.xml\"><securecookie host=\"^reg\\.cologne-cfd\\.de$\" name=\".+\"/><rule from=\"^http://reg\\.cologne-cfd\\.de/\" to=\"https://reg.cologne-cfd.de/\"/></ruleset>", "<ruleset name=\"Coloman.nl\" f=\"Coloman.nl.xml\"><securecookie host=\"^www\\.coloman\\.nl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Color Of Change\" default_off=\"failed ruleset test\" f=\"Color-Of-Change.xml\"><securecookie host=\"^(act|iam|represent|www)?\\.colorofchange\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Colorado State Attorney General\" default_off=\"failed ruleset test\" f=\"Colorado-Attorney-General.xml\"><rule from=\"^http://(?:www\\.)?coloradoattorneygeneral\\.gov/\" to=\"https://www.coloradoattorneygeneral.gov/\"/></ruleset>", "<ruleset name=\"Official Colorado No-Call List\" f=\"Colorado-No-Call-List.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Colorado Captures\" f=\"Colorado_Captures.xml\"><securecookie host=\"^\\.(?:www\\.)?coloradocaptures\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Colorado College.edu (partial)\" f=\"Colorado_College.edu.xml\"><exclusion pattern=\"^http://sites\\.coloradocollege\\.edu/+(?:$|\\?)\"/><securecookie host=\"^(?:www\\.)?coloradocollege\\.edu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Colorado Secretary of State\" f=\"Colorado_Secretary_of_State.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Coloradoan\" f=\"Coloradoan.xml\"><rule from=\"^http://(?:cmsimg\\.|www\\.)?coloradoan\\.com/\" to=\"https://www.coloradoan.com/\"/></ruleset>", "<ruleset name=\"Colorlines.com\" f=\"Colorlines.com.xml\"><rule from=\"^http://colorlines\\.com/\" to=\"https://www.colorlines.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"colors-il.com\" default_off=\"failed ruleset test\" f=\"Colors-il.com.xml\"><securecookie host=\"^(?:w*\\.)?colors-il.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Colossal.jp (partial)\" f=\"Colosall.jp.xml\"><securecookie host=\"^(?:www\\.)?colossal\\.jp$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Columbia University (problematic)\" default_off=\"mismatched\" f=\"Columbia_University-problematic.xml\"><securecookie host=\"^.+\\.columbia\\.edu$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?(cdrs|stv)\\.columbia\\.edu/\" to=\"https://www.$1.columbia.edu/\"/><rule from=\"^http://(support\\.academiccommons|bulletin\\.engineering|managers\\.hr|(?:twiki|www)\\.nevis|scholcomm)\\.columbia\\.edu/\" to=\"https://$1.columbia.edu/\"/></ruleset>", "<ruleset name=\"Columbia University (partial)\" f=\"Columbia_University.xml\"><exclusion pattern=\"^http://www\\.cs\\.columbia\\.edu/(?!icons/)\"/><exclusion pattern=\"^http://www\\.giving\\.columbia\\.edu/(?!$|ccvolunteers/(?:App_Themes/|Telerik\\.Web\\.UI\\.WebResource\\.axd)|volunteer/)\"/><exclusion pattern=\"^http://gs\\.columbia\\.edu/(?!files/|misc/|sites/)\"/><exclusion pattern=\"^http://library\\.columbia\\.edu/(?!apps/|content/|etc/)\"/><exclusion pattern=\"^http://procurement\\.columbia\\.edu/(?!modules/|sites/)\"/><securecookie host=\"^\\w.*\\.columbia\\.edu$\" name=\".+\"/><securecookie host=\"^\\.(?:alumni|cubemail\\.cc|ingo\\.cc|cuitalerts|facets|facilities|forms\\.finance|www7\\.gsb|isso|lexington|mailservices|my|news|policylibrary|researchinitiatives|spa|universityprograms|worklife|worldleaders)\\.columbia\\.edu$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?columbia\\.edu/cuit/index\\.html($|\\?.*)\" to=\"https://cuit.columbia.edu/$1\"/><rule from=\"^http://(www\\.ais|cas|(?:cubemail|ingo|rascalprod|uniapp)\\.cc|www\\.college|(?:mice|www)\\.cs|wikis\\.cuit|(?:haydn|roomreservations|scholcomm-dev)\\.cul|www\\.facil|forms\\.finance|admissions\\.gs|(?:apply|gsas-2l12p-01)\\.gsas|(?:apply|gear|www[024678]|www-1)\\.gsb|housingportal|isso|www\\.law|lexington|alumni-friends\\.library|newcourseworks|portal\\.seas|(?:www\\.)?procurement|ssol|(?:undergraduate-admissions\\.|www\\.)?studentaffairs|(?:auth|careers|my)\\.tc|wind|www1)\\.columbia\\.edu/\" to=\"https://$1.columbia.edu/\"/><rule from=\"^http://(?:www\\.)?alice\\.columbia\\.edu/(?:.*)\" to=\"https://health.columbia.edu/services/alice\"/><rule from=\"^http://(?:www\\.)?(alumni(?:clubs)?|arch|arts|bme|communityservice|courseworks|cuit|cuitalerts|cup|directory|engineering|eoaa|evpr|facets|facilities|facultyhouse|finance|giving|goaskalice|gs|health|housingservices|hr|library|mail|my|news|policylibrary|printservices|registar|researchinitiatives|spa|universityprograms|worklife|worldleaders)\\.columbia\\.edu/\" to=\"https://$1.columbia.edu/\"/><rule from=\"^http://(?:www\\.)?(giving|gsas|gsb|infoed|math|rascal|tc)\\.columbia\\.edu/\" to=\"https://www.$1.columbia.edu/\"/><rule from=\"^http://(?:www\\.)?ogp\\.columbia\\.edu/\" to=\"https://columbia.studioabroad.com/\"/><rule from=\"^http://outlook1?\\.cuit\\.columbia\\.edu/\" to=\"https://outlook1.cuit.columbia.edu/\"/><rule from=\"^http://lionmail\\.columbia\\.edu/(?:.*)\" to=\"https://mail.google.com/a/columbia.edu\"/><rule from=\"^http://uni\\.columbia\\.edu/(?:$|\\?.*)\" to=\"https://cuit.columbia.edu/cuit/manage-my-uni\"/><rule from=\"^http://www\\.w2aee\\.columbia\\.edu/($|\\?.*)\" to=\"https://wikis.cuit.columbia.edu/confluence/display/cuarc/Home$1\"/></ruleset>", "<ruleset name=\"Com-Sys\" default_off=\"expired\" f=\"Com-Sys.xml\"><securecookie host=\"^com-sys\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?com-sys\\.de/\" to=\"https://com-sys.de/\"/></ruleset>", "<ruleset name=\"ComCav.com\" default_off=\"failed ruleset test\" f=\"ComCav.com.xml\"><securecookie host=\"^\\.www\\.comcav\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ComNews Conferences\" default_off=\"mismatched\" f=\"ComNews-Conferences.xml\"><securecookie host=\"^comnews-conferences\\.ru$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?comnews-conferences\\.ru/\" to=\"https://comnews-conferences.ru/\"/></ruleset>", "<ruleset name=\"comScore.com (partial)\" f=\"ComScore.com.xml\"><securecookie host=\"^(?:mail|my)\\.comscore\\.com$\" name=\".*\"/><rule from=\"^http://webmail\\.comscore\\.com/\" to=\"https://mail.comscore.com/\"/><rule from=\"^http://(?:www\\.)?nedstat\\.com/\" to=\"https://dax-files.comscore.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"comScore Data Mine.com\" default_off=\"mismatched\" f=\"ComScore_Data_Mine.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ComSignTrust.com\" f=\"ComSignTrust.com.xml\"><securecookie host=\"^(?:blog|www)?\\.comsigntrust\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ComStern.at\" f=\"ComStern.at.xml\"><securecookie host=\"^www\\.comstern\\.at$\" name=\".+\"/><rule from=\"^http://comstern\\.at/\" to=\"https://www.comstern.at/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ComStern.de\" f=\"ComStern.de.xml\"><securecookie host=\"^www\\.comstern\\.de$\" name=\".+\"/><rule from=\"^http://comstern\\.de/\" to=\"https://www.comstern.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ComSuper\" f=\"ComSuper.xml\"><rule from=\"^http://(?:www\\.)?comsuper\\.gov\\.au/\" to=\"https://www.comsuper.gov.au/\"/></ruleset>", "<ruleset name=\"Com Laude.com\" f=\"Com_Laude.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Comcast.net (partial)\" default_off=\"failed ruleset test\" f=\"Comcast.net.xml\"><securecookie host=\"^\\.\" name=\"^(?:NXCLICK2|OAX)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Comcast.com (partial)\" default_off=\"failed ruleset test\" f=\"Comcast.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://comcast\\.com/\" to=\"https://www.comcast.com/\"/><rule from=\"^http://forums\\.comcast\\.com/+\" to=\"https://forums.xfinity.com/\"/><rule from=\"^http://store\\.comcast\\.com/\" to=\"https://securestore.xfinity.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Comcate (partial)\" f=\"Comcate.xml\"><securecookie host=\"^clients\\.comcate\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Comenity.net (partial)\" f=\"Comenity.net.xml\"><rule from=\"^http://(c|d)\\.comenity\\.net/\" to=\"https://$1.comenity.net/\"/></ruleset>", "<ruleset name=\"Cometdocs.com (partial)\" f=\"Cometdocs.com.xml\"><securecookie host=\"^www\\.cometdocs\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"comiXology.com (partial)\" f=\"ComiXology.com.xml\"><exclusion pattern=\"^http://support\\.comixology\\.com/(?!favicon\\.ico)\"/><securecookie host=\"^(?:pulllist|retailers|store-images|submit|www)\\.comixology\\.com$\" name=\".+\"/><rule from=\"^http://comixology\\.com/\" to=\"https://www.comixology.com/\"/><rule from=\"^http://support\\.comixology\\.com/\" to=\"https://d3jyn100am7dxp.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Comic-Con International\" f=\"Comic-Con-Intl.xml\"><securecookie host=\"^secure2?.comic-con.org$\" name=\".+\"/><rule from=\"^https?://comic-con\\.org/\" to=\"https://secure.comic-con.org/\"/><rule from=\"^http://(?:www\\.)?comic-con\\.(?:net|org)/\" to=\"https://secure.comic-con.org/\"/><rule from=\"^http://(secure2?)\\.comic-con\\.(net|org)/\" to=\"https://$1.comic-con.org/\"/></ruleset>", "<ruleset name=\"Comic-Rocket.com\" f=\"Comic-Rocket.com.xml\"><securecookie host=\"^www\\.comic-rocket\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ComicFury\" f=\"ComicFury.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Comingolstadt\" f=\"Comingolstadt.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Comkort.com\" default_off=\"failed ruleset test\" f=\"Comkort.com.xml\"><securecookie host=\"^\\.comkort\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"com100.cn\" f=\"Comm100.cn.xml\"><securecookie host=\"^chatserver\\.comm100\\.cn$\" name=\".+\"/><rule from=\"^http://(chatserver|hosted)\\.comm100\\.cn/\" to=\"https://$1.comm100.cn/\"/></ruleset>", "<ruleset name=\"comm100.com\" f=\"Comm100.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CommLink.org (partial)\" f=\"CommLink.org.xml\"><rule from=\"^http://(?:www\\.)?commlink\\.org/(?=concrete/|favicon\\.ico|files/|packages/|themes/)\" to=\"https://www.commlink.org/\"/></ruleset>", "<ruleset name=\"CommScope.com (partial)\" f=\"CommScope.com.xml\"><rule from=\"^http://(www\\.)?commscope\\.com/(?=favicon\\.ico|theme/|uploadedImages/|WorkArea/(?:images|FrameworkUI)/)\" to=\"https://$1commscope.com/\"/><rule from=\"^http://info\\.commscope\\.com/+(?:\\?.*)?$\" to=\"https://www.commscope.com/\"/><rule from=\"^http://info\\.commscope\\.com/(?=css/|images/|js/|rs/)\" to=\"https://na-sjp.marketo.com/\"/></ruleset>", "<ruleset name=\"Command Five\" f=\"Command_Five.xml\"><securecookie host=\"^(?:www\\.)?commandfive\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Commandlinefu.com\" f=\"Commandlinefu.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Commando.io (partial)\" f=\"Commando.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Commando Boxing.com\" default_off=\"failed ruleset test\" f=\"Commando_Boxing.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Commonwealth Bank of Australia\" f=\"Commbank.xml\"><rule from=\"^http://my\\.commbank\\.com\\.au/\" to=\"https://www.my.commbank.com.au/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Commentary Magazine.com\" f=\"Commentary_Magazine.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Commerce5.com (partial)\" default_off=\"mismatched\" f=\"Commerce5.com.xml\"><securecookie host=\"^cm\\.commerce5\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"commindo media (partial)\" f=\"Commindo-media.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Commission Junction\" platform=\"mixedcontent\" f=\"Commission_Junction.xml\"><securecookie host=\"^(?:.*\\.)?(?:apmebf|cj)\\.com$\" name=\".+\"/><rule from=\"^http://www\\.(afcyhf|anrdoezrs|apmebf|awltovhc|commission-junction|dpbolvw|emjcd|ftjcfx|jdoqocy|kdukvh|kqzyfj|lduhtrp|pkracv|tkqlhce|tqlkg)\\.(com|net)/\" to=\"https://www.$1.$2/\"/><rule from=\"^http://www\\.(?:awxibrm|cualbr|rnsfpw|vofzpwh|yceml)\\.(?:com|net)/\" to=\"https://www.apmebf.com/\"/><rule from=\"^http://(?:www\\.)?cj\\.com/\" to=\"https://www.cj.com/\"/><rule from=\"^http://(members|signup)\\.cj\\.com/\" to=\"https://$1.cj.com/\"/><rule from=\"^http://www\\.qks(?:rv|z)\\.net/\" to=\"https://www.qksrv.net/\"/></ruleset>", "<ruleset name=\"Commodity Futures Trading Commission (partial)\" default_off=\"failed ruleset test\" f=\"Commodity_Futures_Trading_Commission.xml\"><securecookie host=\"^services\\.cftc\\.gov$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?cftc\\.gov/ucm/\" to=\"https://www.cftc.gov/ucm/\"/><rule from=\"^http://services\\.cftc\\.gov/\" to=\"https://services.cftc.gov/\"/></ruleset>", "<ruleset name=\"Common Application\" f=\"Common-App.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Common-Lisp.net\" f=\"Common-Lisp.net.xml\"><securecookie host=\"^gitlab\\.common-lisp\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Common Short Code Administration (partial)\" f=\"Common-Short-Code-Administration.xml\"><rule from=\"^http://(www\\.)?usshortcodes\\.com/(content|csc|csclogin|images|Includes)/\" to=\"https://$1usshortcodes.com/$2/\"/></ruleset>", "<ruleset name=\"CommonCrawl\" f=\"CommonCrawl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CommonDreams.org\" f=\"CommonDreams.org.xml\"><securecookie host=\"^commondreams\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Common Place Books\" f=\"CommonPlaceBooks.xml\"><rule from=\"^http://(www\\.)?commonplacebooks\\.com/\" to=\"https://commonplacebooks.squarespace.com/\"/></ruleset>", "<ruleset name=\"Common Craft.com\" f=\"Common_Craft.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Common Criteria Portal.org\" f=\"Common_Criteria_Portal.xml\"><securecookie host=\".*\\.commoncriteriaportal\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Commonwealth Courts Portal\" f=\"CommonwealthCourtsPortal.xml\"><rule from=\"^http://(?:www\\.)?comcourts\\.gov\\.au/\" to=\"https://www.comcourts.gov.au/\"/></ruleset>", "<ruleset name=\"Commonwealth GITC\" default_off=\"failed ruleset test\" f=\"CommonwealthGITC.xml\"><rule from=\"^http://(?:www\\.)?gitc\\.finance\\.gov\\.au/\" to=\"https://www.gitc.finance.gov.au/\"/></ruleset>", "<ruleset name=\"Commonwealth Grants Commission\" f=\"CommonwealthGrantsCommission.xml\"><rule from=\"^http://(?:www\\.)?cgc\\.gov\\.au/\" to=\"https://www.cgc.gov.au/\"/></ruleset>", "<ruleset name=\"Commonwealth Superannuation Corporation\" f=\"CommonwealthSuperannuationCorporation.xml\"><rule from=\"^http://(?:www\\.)?csc\\.gov\\.au/\" to=\"https://www.csc.gov.au/\"/></ruleset>", "<ruleset name=\"Commotionwireless.net\" default_off=\"failed ruleset test\" f=\"Commotionwireless.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CommuniGate\" f=\"CommuniGate.xml\"><rule from=\"^http://(?:www\\.)?communigate\\.com/\" to=\"https://www.communigate.com/\"/></ruleset>", "<ruleset name=\"CommuniGator.co.uk\" f=\"CommuniGator.co.uk.xml\"><rule from=\"^http://(?:www\\.)?communigator\\.co\\.uk/\" to=\"https://www.communigator.co.uk/\"/><rule from=\"^http://guru\\.communigator\\.co\\.uk/\" to=\"https://guru.communigator.co.uk/\"/></ruleset>", "<ruleset name=\"Communicate Live\" f=\"Communicate_Live.xml\"><securecookie host=\"^(?:www\\.)?communicatelive\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Communicator Corporation (partial)\" f=\"Communicator_Corporation.xml\"><securecookie host=\"^platform\\.communicatorcorp\\.com$\" name=\".+\"/><rule from=\"^http://platform\\.communicatorcorp\\.com/\" to=\"https://platform.communicatorcorp.com/\"/><rule from=\"^http://(?:www\\.)?communicatoremail\\.com/\" to=\"https://www.communicatoremail.com/\"/></ruleset>", "<ruleset name=\"Community Savings Credit Union\" f=\"Community-Savings-Credit-Union.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Community.elgg.org\" f=\"Community.elgg.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WB Games.com (partial)\" default_off=\"failed ruleset test\" f=\"Community.wbgames.com.xml\"><securecookie host=\"community\\.wbgames\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Community Matters (partial)\" default_off=\"failed ruleset test\" f=\"Community_Matters.xml\"><securecookie host=\"^.+\\.hohndel\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Comodo\" f=\"Comodo.xml\"><securecookie host=\"^[\\w-]+\\.comodo\\.com$\" name=\".+\"/><rule from=\"^http://((?:accounts|antivirus|directory|downloads?|enterprise|forums|friends|help|icedragon|m|marketingdb|pctuneup|penetration-testing|personalfirewall|secure|ssl|www\\.ssl|support|trustlogo|trustlogostats|www)\\.)?comodo\\.com/\" to=\"https://$1comodo.com/\"/><rule from=\"^http://www\\.download\\.comodo\\.com/\" to=\"https://download.comodo.com/\"/><rule from=\"^http://secure\\.comodo\\.net/\" to=\"https://secure.comodo.net/\"/><rule from=\"^http://siteinspector\\.comodo\\.com/\" to=\"https://app.webinspector.com/\"/><rule from=\"^http://(?:www\\.)trustlogo\\.com/(trustlogo/|images/cornertrust\\.gif$)\" to=\"https://secure.comodo.com/$1\"/><rule from=\"^http://(?:www\\.)?comodo(?:group\\.com|\\.net)/\" to=\"https://www.comodo.com/\"/></ruleset>", "<ruleset name=\"CompEx (partial)\" default_off=\"expired\" f=\"CompEx.xml\"><securecookie host=\"^(?:.*\\.)themoneyreferral\\.com$\" name=\".*\"/><securecookie host=\"^(?:.*\\.)videogateway\\.tv$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?themoneyreferral\\.com/\" to=\"https://www.themoneyreferral.com/\"/><rule from=\"^http://(?:www\\.)?videogateway\\.tv/\" to=\"https://www.videogateway.tv/\"/></ruleset>", "<ruleset name=\"CompaniesHouse (partial)\" f=\"CompaniesHouse.xml\"><exclusion pattern=\"^http://wck2\\.companieshouse\\.gov\\.uk//?wcframe\"/><securecookie host=\"^(?!wck2\\.)\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?companieshouse\\.gov\\.uk/.*\" to=\"https://www.gov.uk/government/organisations/companies-house\"/><exclusion pattern=\"^http://(?:www\\.)?companieshouse\\.gov\\.uk/(?!/*(?:$|\\?))\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CompaniesInTheUK\" f=\"CompaniesInTheUK.xml\"><securecookie host=\"^(?:.+\\.)?companiesintheuk\\.co\\.uk$\" name=\".*\"/><rule from=\"^http://companiesintheuk\\.co\\.uk/\" to=\"https://companiesintheuk.co.uk/\"/><rule from=\"^http://(www)\\.companiesintheuk\\.co\\.uk/\" to=\"https://$1.companiesintheuk.co.uk/\"/></ruleset>", "<ruleset name=\"company-target.com\" f=\"Company-target.com.xml\"><securecookie host=\"^\\.company-target\\.com$\" name=\"\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Compaq.com\" f=\"Compaq.com.xml\"><rule from=\"^http://(?:www\\.)?compaq\\.com/\" to=\"https://www.compaq.com/\"/></ruleset>", "<ruleset name=\"Compare The Market.com (partial)\" default_off=\"failed ruleset test\" f=\"CompareTheMarket.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://comparethemarket\\.com/\" to=\"https://www.comparethemarket.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Compari.ro\" f=\"Compari.ro.xml\"><securecookie host=\".*\\.compari\\.ro$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Comparis.ch\" f=\"Comparis.xml\"><securecookie host=\"^(?:.*\\.)?comparis\\.ch$\" name=\".*\"/><rule from=\"^http://comparis\\.ch/\" to=\"https://www.comparis.ch/\"/><rule from=\"^http://([^/:@]+)?\\.comparis\\.ch/\" to=\"https://$1.comparis.ch/\"/></ruleset>", "<ruleset name=\"Comparitech.com\" f=\"Comparitech.com.xml\"><securecookie host=\"^www\\.comparitech\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CompassIslam.com\" f=\"CompassIslam.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TransLink Compass Card\" f=\"Compasscard.ca.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Compendium.com (partial)\" default_off=\"failed ruleset test\" f=\"Compendium.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?compendium\\.com/(?!$)\"/><securecookie host=\"^imagefilter\\.app\\.compendium\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?compendium\\.com/\" to=\"https://www.oracle.com/us/corporate/acquisitions/compendium/index.html\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Compendium Blog.com\" f=\"Compendium.xml\"><rule from=\"^http://(?:cdn|global)\\.content\\.compendiumblog\\.com/\" to=\"https://s3.amazonaws.com/global.content.compendiumblog.com/\"/><rule from=\"^http://(\\w+)\\.compendiumblog\\.com/\" to=\"https://$1.compendiumblog.com/\"/><rule from=\"^http://cdn2\\.content\\.compendiumblog\\.com/\" to=\"https://cdn2.content.compendiumblog.com/\"/></ruleset>", "<ruleset name=\"Compete.org\" default_off=\"refused\" f=\"Compete.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Compete (partial)\" default_off=\"failed ruleset test\" f=\"Compete.xml\"><securecookie host=\".*\\.c-col\\.com$\" name=\".*\"/><rule from=\"^http://media\\.compete\\.com/\" to=\"https://securemedia.compete.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Competitive Enterprise Institute (problematic)\" default_off=\"expired, mismatched\" f=\"Competitive_Enterprise_Institute-problematic.xml\"><rule from=\"^http://(?:www\\.)?cei\\.org/\" to=\"https://cei.org/\"/></ruleset>", "<ruleset name=\"Competitive Enterprise Institute (partial)\" default_off=\"failed ruleset test\" f=\"Competitive_Enterprise_Institute.xml\"><securecookie host=\"^shop\\.cei\\.org$\" name=\".+\"/><rule from=\"^http://shop\\.cei\\.org/\" to=\"https://shop.cei.org/\"/></ruleset>", "<ruleset name=\"Compiz-themes.org\" f=\"Compiz-themes.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Compiz\" default_off=\"Certificate mismatch\" f=\"Compiz.xml\"><rule from=\"^http://(?:www\\.)?compiz(?:-fusion)?\\.org/\" to=\"https://www.compiz.org/\"/><rule from=\"^http://(cgit|forum|gitweb|lists|planet|releases|wiki)\\.compiz(-fusion)?\\.org/\" to=\"https://$1.compiz.org/\"/><securecookie host=\"^\\.forum\\.compiz\\.org$\" name=\".*\"/></ruleset>", "<ruleset name=\"CompletelyPrivateFiles.com\" default_off=\"failed ruleset test\" f=\"CompletelyPrivateFiles.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Complex-systems.com\" default_off=\"refused\" f=\"Complex-systems.com.xml\"><rule from=\"^http://(?:www\\.)?complex-systems\\.com/\" to=\"https://www.complex-systems.com/\"/></ruleset>", "<ruleset name=\"ComplianceSigns.com\" f=\"ComplianceSigns.com.xml\"><securecookie host=\"^\\.compliancesigns\\.com$\" name=\".+\"/><rule from=\"^http://(?:cdn\\.|www\\.)?compliancesigns\\.com/\" to=\"https://www.compliancesigns.com/\"/></ruleset>", "<ruleset name=\"Compose.IO\" f=\"Compose.IO.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CompraNoExterior.com.br (partial)\" f=\"CompraNoExterior.com.br.xml\"><rule from=\"^http://cdn1?\\.compranoexterior\\.com\\.br/\" to=\"https://d1h9c8t56th1se.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Comprehensive C Archive Network\" f=\"Comprehensive-C-Archive-Network.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Compteur.fr\" f=\"Compteur.fr.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CompuLab.co.il\" platform=\"mixedcontent\" f=\"CompuLab.co.il.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Computec-Academy.de (partial)\" default_off=\"missing certificate chain\" f=\"Computec-Academy.de.xml\"><exclusion pattern=\"^http://www\\.computec-academy\\.de/+(?!sites/)\"/><rule from=\"^http://computec-academy\\.de/\" to=\"https://www.computec-academy.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Computer Steroids\" default_off=\"self-signed\" f=\"Computer-Steroids.xml\"><securecookie host=\"^(?:(?:acdd|aolo|bedd|eaak|geak|goob|iglo|jeth|luez|mett|pooi|rade|siit)\\.tk|(?:surfingip|switchip|whyblockme)\\.info)$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?(acdd|aolo|bedd|eaak|geak|goob|iglo|jeth|luez|mett|pooi|rade|siit)\\.tk/\" to=\"https://$1.tk/\"/><rule from=\"^http://(?:www\\.)?(surfingip|switchip|whyblockme)\\.info/\" to=\"https://$1.info/\"/></ruleset>", "<ruleset name=\"ComputerWorld (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"ComputerWorld.xml\"><securecookie host=\"^\\.computerworld\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?computerworld\\.com/\" to=\"https://www.computerworld.com/\"/><rule from=\"^http://events\\.computerworld\\.com/\" to=\"https://eiseverywhere.com/ehome/Computerworld/\"/><rule from=\"^http://itjobs\\.computerworld\\.com/\" to=\"https://computerworld.jobamatic.com/\"/><rule from=\"^http://m\\.computerworld\\.com/mobify/\" to=\"https://computerworld.mobify.com/mobify/\"/></ruleset>", "<ruleset name=\"Computer Fulfillment\" default_off=\"failed ruleset test\" f=\"Computer_Fulfillment.xml\"><rule from=\"^http://(?:www\\.)?computerfulfillment\\.com/\" to=\"https://www.computerfulfillment.com/\"/></ruleset>", "<ruleset name=\"Computer Lab Solutions\" default_off=\"expired\" f=\"Computer_Lab_Solutions.xml\"><securecookie host=\"^computerlabsolutions\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?computerlabsolutions\\.com/\" to=\"https://computerlabsolutions.com/\"/></ruleset>", "<ruleset name=\"Computer Libya\" default_off=\"mismatch\" f=\"Computer_Libya.xml\"><securecookie host=\".*\\.computer\\.ly$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Computerbasedmath.org\" f=\"Computerbasedmath.org.xml\"><rule from=\"^http://(?:www\\.)?computerbasedmath\\.org/\" to=\"https://computerbasedmath.org/\"/></ruleset>", "<ruleset name=\"ComputersnYou.com (partial)\" f=\"ComputersnYou.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"computeruniverse\" f=\"Computeruniverse.xml\"><securecookie host=\"^www\\.computeruniverse\\.net$\" name=\".+\"/><rule from=\"^http://computeruniverse\\.net/\" to=\"https://www.computeruniverse.net/\"/><rule from=\"^http://(\\w+)\\.computeruniverse\\.net/\" to=\"https://$1.computeruniverse.net/\"/></ruleset>", "<ruleset name=\"Computerworld.ch\" platform=\"mixedcontent\" f=\"Computerworld.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Compuware.com (partial)\" default_off=\"expired, mismatched\" f=\"Compuware.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Compuware APM.com\" f=\"Compuware_APM.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Compuware Gomez\" default_off=\"failed ruleset test\" f=\"Compuware_Gomez.xml\"><securecookie host=\"^www\\.gomez\\.com$\" name=\".+\"/><rule from=\"^http://(\\w+)\\.r\\.axf8\\.net/\" to=\"https://$1.r.axf8.net/\"/><rule from=\"^http://(?:www\\.)?gomez\\.com/\" to=\"https://www.gomez.com/\"/></ruleset>", "<ruleset name=\"Comsecuris.com\" f=\"Comsecuris.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Comviq.se\" f=\"Comviq.se.xml\"><rule from=\"^http://comviq\\.se/\" to=\"https://comviq.se/\"/><rule from=\"^http://www\\.comviq\\.se/\" to=\"https://www.comviq.se/\"/></ruleset>", "<ruleset name=\"con-tech.de (partial)\" default_off=\"failed ruleset test\" f=\"Con-tech.de.xml\"><securecookie host=\"^ct-cds\\.con-tech\\.de$\" name=\".+\"/><rule from=\"^http://ct-cds\\.con-tech\\.de/\" to=\"https://ct-cds.con-tech.de/\"/></ruleset>", "<ruleset name=\"ConSecur\" f=\"ConSecur.xml\"><securecookie host=\"^www\\.consecur\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"concrete5 (partial)\" f=\"Concrete5.xml\"><securecookie host=\"^(?:www\\.)?concrete5\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Concur.com\" f=\"Concur.com.xml\"><securecookie host=\"^(?:\\.?developer\\.)?concur\\.com$\" name=\".+\"/><rule from=\"^http://((?:assets|developer|fusion|www)\\.)?concur\\.com/\" to=\"https://$1concur.com/\"/></ruleset>", "<ruleset name=\"Condé Nast (mismatches)\" default_off=\"expired, mismatch, self-signed\" f=\"Conde-Nast-mismatches.xml\"><securecookie host=\"^designcentersearch\\.com$\" name=\".*\"/><rule from=\"^http://allure\\.com/\" to=\"https://www.allure.com/\"/><rule from=\"^http://www\\.allure\\.com/(cs|image)s/\" to=\"https://www.allure.com/$1s/\"/><rule from=\"^http://blog\\.allure\\.com/\" to=\"https://blog.allure.com/\"/><rule from=\"^http://jobs\\.arstechnica\\.com/\" to=\"https://jobs.arstechnica.com/\"/><rule from=\"^http://thumbnailer\\.thestudio\\.condenast\\.com/\" to=\"https://thumbnailer.thestudio.condenast.com/\"/><rule from=\"^http://(?:www\\.)?designcentersearch\\.com/\" to=\"https://designcentersearch.com/\"/><rule from=\"^http://blog\\.details\\.com/\" to=\"https://blog.details.com/\"/><rule from=\"^http://(?:www\\.)?golfdigestschool\\.com/\" to=\"https://www.golfdigestschool.com/\"/><rule from=\"^http://(?:www\\.)?v(?:anityfair|f)\\.com/\" to=\"https://www.vanityfair.com/\"/><rule from=\"^http://stag\\.vanityfair\\.com/\" to=\"https://stag.vanityfair.com/\"/></ruleset>", "<ruleset name=\"Conde Nast.com (partial)\" default_off=\"failed ruleset test\" f=\"Conde-Nast.xml\"><rule from=\"^http://condenast\\.com/\" to=\"https://www.condenast.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Conde Nast.co.uk (partial)\" f=\"Conde_Nast.co.uk.xml\"><rule from=\"^http://cdni\\.condenast\\.co\\.uk/\" to=\"https://s3-eu-west-1.amazonaws.com/img.condenast.co.uk/\"/><rule from=\"^http://cnda\\.condenast\\.co\\.uk/\" to=\"https://dg9g3lm9lsog5.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Conde Nast Digital.com (partial)\" f=\"Conde_Nast_Digital.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Condé Nast Traveler (problematic)\" default_off=\"mismatched\" f=\"Conde_Nast_Traveler-problematic.xml\"><securecookie host=\"^(?:stag|www)\\.cntraveler\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?cntraveler\\.com/\" to=\"https://www.cntraveler.com/\"/><rule from=\"^http://(?:stag-)?result\\.cntraveler\\.com/\" to=\"https://result.cntraveler.com/\"/><rule from=\"^http://stag\\.cntraveler\\.com/\" to=\"https://stag.cntraveler.com/\"/></ruleset>", "<ruleset name=\"Condé Nast Traveler (partial)\" f=\"Conde_Nast_Traveler.xml\"><securecookie host=\"^\\.cntraveler\\.com$\" name=\"^s_\\w+$\"/><rule from=\"^http://secure\\.cntraveler\\.com/\" to=\"https://secure.cntraveler.com/\"/><rule from=\"^http://stats2\\.cntraveler\\.com/\" to=\"https://condenast.112.2o7.net/\"/></ruleset>", "<ruleset name=\"Conde Nast store.com\" default_off=\"failed ruleset test\" f=\"Conde_Nast_store.com.xml\"><rule from=\"^http://condenaststore\\.com/\" to=\"https://www.condenaststore.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Condenet.com (partial)\" f=\"Condenet.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Condesa (partial)\" f=\"Condesa.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Condominiums for Everyone\" default_off=\"failed ruleset test\" f=\"Condominiums_for_Everyone.xml\"><securecookie host=\"^\\.condosforeveryone\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?condosforeveryone\\.com/\" to=\"https://www.condosforeveryone.com/\"/></ruleset>", "<ruleset name=\"Condor.com\" f=\"Condor.com.xml\"><securecookie host=\"^(www\\.)?condor\\.com$\" name=\".+\"/><rule from=\"^http://condor\\.com/\" to=\"https://www.condor.com/\"/><rule from=\"^http://condor\\.de/\" to=\"https://www.condor.com/\"/><rule from=\"^http://www\\.condor\\.de/\" to=\"https://www.condor.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"conduit-data.com\" f=\"Conduit-data.com.xml\"><securecookie host=\"^\\.conduit-data\\.com$\" name=\".+\"/><rule from=\"^http://([\\w-]+)\\.conduit-data\\.com/\" to=\"https://$1.conduit-data.com/\"/></ruleset>", "<ruleset name=\"Conduit (problematic)\" default_off=\"mismatched\" f=\"Conduit-problematic.xml\"><rule from=\"^http://developers\\.mobile\\.conduit\\.com/\" to=\"https://developers.mobile.conduit.com/\"/></ruleset>", "<ruleset name=\"Conduit (partial)\" default_off=\"failed ruleset test\" f=\"Conduit.xml\"><securecookie host=\"^.*\\.conduit\\.com$\" name=\".+\"/><rule from=\"^http://((?:api|accounts|my|sso|storage|toolbar|www)\\.)?conduit\\.com/\" to=\"https://$1conduit.com/\"/><rule from=\"^http://mobilecp\\.conduit\\.com/(external|[iI]mages)/\" to=\"https://mobilecp.conduit.com/$1/\"/><rule from=\"^http://mobilesupport\\.conduit\\.com/generated/\" to=\"https://supportconduit.zendesk.com/generated/\"/></ruleset>", "<ruleset name=\"Conetix.com.au\" f=\"Conetix.com.au.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Confederation of Danish Industry (partial)\" default_off=\"failed ruleset test\" f=\"Confederation_of_Danish_Industry.xml\"><exclusion pattern=\"^http://(?:www\\.)?di\\.dk/(?!_layouts/)\"/><securecookie host=\"^itek\\.di\\.dk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Confex.com\" f=\"Confex.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Confianza Online.es\" f=\"Confianza_Online.xml\"><securecookie host=\"^\\.?www\\.confianzaonline\\.es$\" name=\".+\"/><rule from=\"^http://confianzaonline\\.es/\" to=\"https://www.confianzaonline.es/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Confidence.org.pl (partial)\" default_off=\"mismatched, self-signed\" f=\"Confidence.org.pl.xml\"><securecookie host=\"^2014\\.confidence\\.org\\.pl$\" name=\"^qtrans_cookie_test$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Confirmit\" f=\"Confirmit.xml\"><securecookie host=\"^(?:.*\\.)?confirmit\\.com$\" name=\".+\"/><rule from=\"^http://((?:author|(?:cdn\\.)?(?:euro|us)|(?:author|reportal)\\.euro|extranet|reportal\\.us|www|www10)\\.)?confirmit\\.com/\" to=\"https://$1confirmit.com/\"/></ruleset>", "<ruleset name=\"confirmsubscription.com\" f=\"Confirmsubscription.com.xml\"><rule from=\"^http://www\\.confirmsubscription\\.com/\" to=\"https://confirmsubscription.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Conformal.com\" default_off=\"failed ruleset test\" f=\"Conformal-Systems.xml\"><securecookie host=\"^(?:.*\\.)?conformal\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Confused.com (partial)\" f=\"Confused.com.xml\"><securecookie host=\"^secure\\.confused\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?confused\\.com/([\\w-]+/~/|\\w+/contact-us|~/)\" to=\"https://www.confused.com/$1\"/><rule from=\"^http://(content|my|secure)\\.confused\\.com/\" to=\"https://$1.confused.com/\"/></ruleset>", "<ruleset name=\"Confuzzled\" f=\"Confuzzled.xml\"><securecookie host=\"^(?:www|reg|)\\.confuzzled\\.org\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?confuzzled\\.org\\.uk/\" to=\"https://www.confuzzled.org.uk/\"/><rule from=\"^http://reg\\.confuzzled\\.org\\.uk/\" to=\"https://reg.confuzzled.org.uk/\"/></ruleset>", "<ruleset name=\"Congress.gov\" f=\"Congress.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"congstar-media.de\" f=\"Congstar-media.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"congstar\" default_off=\"failed ruleset test\" f=\"Congstar.xml\"><securecookie host=\"(?:www\\.)?congstar\\.de$\" name=\"BIGipServer\\w+$\"/><securecookie host=\"^freundewerben\\.congstar\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ConnMan\" default_off=\"failed ruleset test\" f=\"ConnMan.xml\"><securecookie host=\"^\\.?connman\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Connect.gov (false MCB)\" platform=\"mixedcontent\" f=\"Connect.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Connect.me\" f=\"Connect.me.xml\"><rule from=\"^http://(?:www\\.)?connect\\.me/+\" to=\"https://www.respectnetwork.com/connect-me-2/\"/></ruleset>", "<ruleset name=\"ConnectMyPhone.com\" default_off=\"expired\" f=\"ConnectMyPhone.com.xml\"><rule from=\"^http://(?:www\\.)?connectmyphone\\.com/\" to=\"https://connectmyphone.com/\"/></ruleset>", "<ruleset name=\"ConnectiCon.org\" default_off=\"expired\" f=\"ConnectiCon.org.xml\"><securecookie host=\"^connecticon\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?connecticon\\.org/\" to=\"https://connecticon.org/\"/></ruleset>", "<ruleset name=\"Connexity.com (partial)\" f=\"Connexity.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?connexity\\.com/(?!/*(?:favicon\\.ico|wp-content/))\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Connexity.net\" default_off=\"failed ruleset test\" f=\"Connexity.net.xml\"><securecookie host=\"^\\.\" name=\"^(?:COu|br|refresh|rf|sync)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"connextra.com (partial)\" f=\"Connextra.com.xml\"><securecookie host=\"^workbench\\.connextra\\.com$\" name=\".+\"/><rule from=\"^http://ff\\.connextra\\.com/\" to=\"https://ssl.connextra.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ConnochaetOS.org\" f=\"ConnochaetOS.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ConoHa.jp\" f=\"ConoHa.jp.xml\"><securecookie host=\"^(?:cp|help)\\.conoha\\.jp$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ConsCallHome.com\" f=\"ConsCallHome.com.xml\"><securecookie host=\"^(?:www)?\\.conscallhome\\.com$\" name=\".+\"/><rule from=\"^http://conscallhome\\.com/.*\" to=\"https://www.conscallhome.com/\"/><rule from=\"^http://(secure|www)\\.conscallhome\\.com/\" to=\"https://$1.conscallhome.com/\"/></ruleset>", "<ruleset name=\"Conservatives.com\" f=\"Conservatives.com.xml\"><securecookie host=\"^(?:www\\.)?conservatives\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Consortium Library\" f=\"Consortium_Library.xml\"><securecookie host=\"^(?:www\\.)?consortiumlibrary\\.org$\" name=\".+\"/><rule from=\"^http://(www\\.)?consortiumlibrary\\.com/\" to=\"https://$1consortiumlibrary.com/\"/></ruleset>", "<ruleset name=\"Constant Contact.com (partial)\" default_off=\"failed ruleset test\" f=\"Constant-Contact.xml\"><exclusion pattern=\"^http://blogs\\.constantcontact\\.com/(?!wp-admin(?:$|[?/])|wp-content/|wp-includes/|wp-login\\.php)\"/><exclusion pattern=\"^http://www\\.constantcontact\\.com/(?!favicon\\.ico|features/signup\\.jsp|login(?:$|\\?)|(?:global-(?:login|nav)|login|signup|styles)\\.jsp|_styles/)\"/><exclusion pattern=\"^http://news\\.constantcontact\\.com/+(?!sites/)\"/><exclusion pattern=\"^http://techblog\\.constantcontact\\.com/+(?!wp-content/|wp-login\\.php)\"/><securecookie host=\"^\\.constantcontact\\.com$\" name=\"^cclp_(?:content|partner|referral)$\"/><securecookie host=\"^(?:about|community|developer|origin\\.ih|login|login-p2|visitor\\.r20|survey|visitor)\\.constantcontact\\.com$\" name=\".+\"/><rule from=\"^http://img\\.f2\\.constantcontact\\.com/\" to=\"https://imgssl.constantcontact.com/\"/><rule from=\"^http://ih\\.constantcontact\\.com/\" to=\"https://origin.ih.constantcontact.com/\"/><rule from=\"^http://news\\.constantcontact\\.com/\" to=\"https://constantcontact.newshq.businesswire.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Construx (partial)\" default_off=\"mismatched\" f=\"Construx.xml\"><rule from=\"^http://(?:www\\.)?construx\\.com/\" to=\"https://construx.com/\"/></ruleset>", "<ruleset name=\"ConsuWijzer.nl\" f=\"ConsuWijzer.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Consultwebs.com\" f=\"Consultwebs.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Consumentenbond.nl\" f=\"Consumentenbond.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Consumer Council (partial)\" default_off=\"failed ruleset test\" f=\"Consumer.org.hk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ConsumerAffairs.com (partial)\" f=\"ConsumerAffairs.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Consumer Reports (partial)\" f=\"ConsumerReports.xml\"><exclusion pattern=\"^http://(?:web\\.|www\\.)?consumerreports\\.org/+(?!etc/|favicon\\.ico)\"/><securecookie host=\"^ec\\.consumerreports\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?consumerreports\\.org/\" to=\"https://www.consumerreports.org/\"/><rule from=\"^http://(ec|web)\\.consumerreports\\.org/\" to=\"https://$1.consumerreports.org/\"/><rule from=\"^http://static[1-4]\\.consumerreportscdn\\.org/\" to=\"https://dffe75s34hxl9.cloudfront.net/\"/></ruleset>", "<ruleset name=\"ConsumerSniper.com\" default_off=\"refused\" f=\"ConsumerSniper.com.xml\"><securecookie host=\"^www\\.consumersniper\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Consumer Finance.gov (partial)\" f=\"Consumer_Finance.gov.xml\"><securecookie host=\"^\\.\" name=\"^_(?:_qca|gat?)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Consumer Reports.com (false MCB)\" platform=\"mixedcontent\" f=\"Consumer_Reports.com-falsemixed.xml\"><securecookie host=\".*\\.consumerreports\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?consumerreports\\.org/\" to=\"https://www.consumerreports.org/\"/><rule from=\"^http://web\\.consumerreports\\.org/\" to=\"https://web.consumerreports.org/\"/></ruleset>", "<ruleset name=\"Consumers Union.org\" f=\"Consumers_Union.org.xml\"><rule from=\"^http://(?:(secure\\.)|www\\.)?consumersunion\\.org/\" to=\"https://$1consumersunion.org/\"/></ruleset>", "<ruleset name=\"Cosumers Win.com\" f=\"Consumers_Win.com.xml\"><securecookie host=\"^(?:www\\.)?consumerswin\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Contact-sys.com\" f=\"Contact-sys.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ContactUs.com (partial)\" f=\"ContactUs.com.xml\"><rule from=\"^http://(www\\.)?contactus\\.com/(?=favicon\\.ico|wp-content/|wp-includes/)\" to=\"https://$1contactus.com/\"/></ruleset>", "<ruleset name=\"Contact At Once.com (partial)\" f=\"Contact_At_Once.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Contact Privacy\" f=\"Contact_Privacy.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Contactual (partial)\" f=\"Contactual.xml\"><securecookie host=\"^na\\d\\.mycontactual\\.com$\" name=\".+\"/><securecookie host=\"^\\.?mycontactual\\.com$\" name=\"^WPJ_CM$\"/><rule from=\"^http://(na\\d\\.|www\\.)?mycontactual\\.com/\" to=\"https://$1mycontactual.com/\"/></ruleset>", "<ruleset name=\"Content.ad (partial)\" f=\"Content.ad.xml\"><securecookie host=\"^(?:api|www)\\.content\\.ad$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?content\\.ad/\" to=\"https://www.content.ad/\"/><rule from=\"^http://api\\.content\\.ad/\" to=\"https://api.content.ad/\"/></ruleset>", "<ruleset name=\"Content Watch.com\" f=\"Content_Watch.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"contentabc.com (partial)\" f=\"Contentabc.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"contentdn.net\" f=\"Contentdn.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Contentful.com (partial)\" f=\"Contentful.com.xml\"><rule from=\"^http://status\\.contentful\\.com/\" to=\"https://contentful.statuspage.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Contextly.com\" f=\"Contextly.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://contextlysitescripts\\.contextly\\.com/\" to=\"https://c714015.ssl.cf2.rackcdn.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"contextweb.com (partial)\" f=\"Contextweb.com.xml\"><exclusion pattern=\"http://blog\\.contextweb\\.com/(?!sellingdesk$)\"/><securecookie host=\"^(?!blog\\.).\" name=\".\"/><rule from=\"^http://blog\\.contextweb\\.com/sellingdesk$\" to=\"https://getsatisfaction.com/contextweb\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Continent 8 Technologies (partial)\" f=\"Continent-8-Technologies.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Continental\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Continental.xml\"><rule from=\"^http://(?:www\\.)?continental\\.com/\" to=\"https://www.continental.com/\"/><rule from=\"^http://www\\.covacations\\.com/\" to=\"https://www.covacations.com/\"/><rule from=\"^http://covacations\\.com/\" to=\"https://www.covacations.com/\"/><rule from=\"^http://checkin\\.continental\\.com/\" to=\"https://checkin.continental.com/\"/></ruleset>", "<ruleset name=\"Contribs.org\" f=\"Contribs.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Contributoria.com\" default_off=\"failed ruleset test\" f=\"Contributoria.com.xml\"><securecookie host=\"^\\.contributoria\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ControlScan.com\" f=\"ControlScan.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?controlscan\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?controlscan\\.com/\" to=\"https://controlscan.com/\"/><rule from=\"^http://(payments|portal|smartscan)\\.controlscan\\.com/\" to=\"https://$1.controlscan.com/\"/></ruleset>", "<ruleset name=\"Controller Plus\" f=\"Controller_Plus.xml\"><securecookie host=\"^\\.(?:www\\.)?pluscontrollers\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Controllerpro\" f=\"Controllerpro.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CONVAR (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Convar.xml\"><exclusion pattern=\"^http://(?:jas|repairservice|sam)\\.convar\\.com/\"/><securecookie host=\"^(?:.*\\.)?(?:convar|tuvdotcom)\\.com$\" name=\".*\"/><securecookie host=\"^(?:.*\\.)?datenretter\\.de$\" name=\".*\"/><rule from=\"^http://(www\\.)?convar\\.de/([\\w\\W]+)\" to=\"https://$1convar.com/$2?language=2\"/><rule from=\"^http://(shop\\.|www\\.)?convar\\.com/\" to=\"https://$1convar.com/\"/><rule from=\"^http://(www\\.)?datenretter\\.de/\" to=\"https://$1datenretter.de/\"/><rule from=\"^http://(?:www\\.)?tuv\\.com/media/\" to=\"https://www.tuv.com/media/\"/><rule from=\"^http://(?:www\\.)?tuvdotcom\\.com/\" to=\"https://www.tuvdotcom.com/\"/></ruleset>", "<ruleset name=\"Conversations.im\" f=\"Conversations.im.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Conversejs.org\" default_off=\"failed ruleset test\" f=\"Conversejs.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Conversions Box.com\" default_off=\"expired, self-signed\" f=\"Conversions_Box.com.xml\"><rule from=\"^http://(?:www\\.)?conversionsbox\\.com/\" to=\"https://www.conversionsbox.com/\"/></ruleset>", "<ruleset name=\"ConverKit.com (partial)\" f=\"Convertkit.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Convio (mismatches)\" default_off=\"mismatched\" f=\"Convio-mismatches.xml\"><exclusion pattern=\"^http://ir\\.convio\\.com/(?!common/)\"/><exclusion pattern=\"^http://resources\\.convio\\.com/(?!css/|images/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Convio\" default_off=\"failed ruleset test\" f=\"Convio.xml\"><exclusion pattern=\"^http://customer\\.convio\\.net/(?!$)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://customer\\.convio\\.net/\" to=\"https://secure2.convio.net/customer/site/SPageServer\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Conviva (partial)\" f=\"Conviva.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Convox.com\" f=\"Convox.com.xml\"><securecookie host=\"^docs\\.convox\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Coochey.net (false MCB)\" platform=\"mixedcontent\" f=\"Coochey.net-falsemixed.xml\"><rule from=\"^http://www\\.coochey\\.net/\" to=\"https://www.coochey.net/\"/></ruleset>", "<ruleset name=\"Coochey.net (partial)\" f=\"Coochey.net.xml\"><rule from=\"^http://www\\.coochey\\.net/(?=favicon\\.ico|wp-content/|wp-includes/)\" to=\"https://www.coochey.net/\"/></ruleset>", "<ruleset name=\"Cookie Reports.com (partial)\" f=\"Cookie_Reports.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cooking Schools.com (partial)\" f=\"Cooking_Schools.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CoolCart.Net\" f=\"CoolCart.Net.xml\"><securecookie host=\"^www\\.coolcart\\.net$\" name=\"^ASP\\.NET_SessionId$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CoolMiniOrNot.com\" f=\"CoolMiniOrNot.com.xml\"><securecookie host=\"^(?:www)?\\.coolminiornot\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CoolUtils.com (false MCB)\" platform=\"mixedcontent\" f=\"CoolUtils.com.xml\"><securecookie host=\"^\\.coolutils\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CoolWebScripts.com\" f=\"CoolWebScripts.com.xml\"><securecookie host=\"^(?:www\\.)?coolwebscripts\\.com$\" name=\"\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cool Destinations.net\" default_off=\"failed ruleset test\" f=\"Cool_Destinations.net.xml\"><securecookie host=\"^(?:analytics|www)\\.cooldestinations\\.net$\" name=\".+\"/><rule from=\"^http://cooldestinations\\.net/\" to=\"https://www.cooldestinations.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cool Key West\" f=\"Cool_Key_West.xml\"><securecookie host=\"^coolkeywest\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?coolkeywest\\.com/\" to=\"https://coolkeywest.com/\"/></ruleset>", "<ruleset name=\"Cooliris\" f=\"Cooliris.xml\"><rule from=\"^http://(?:www\\.)?cooliris\\.com/\" to=\"https://www.cooliris.com/\"/><rule from=\"^http://apps\\.cooliris\\.com/\" to=\"https://apps.cooliris.com/\"/></ruleset>", "<ruleset name=\"Coop (mixed content)\" platform=\"mixedcontent\" f=\"Coop.ch-falsemixed.xml\"><rule from=\"^http://cooperazione\\.ch/\" to=\"https://www.cooperazione.ch/\"/><rule from=\"^http://thebodyshop\\.ch/\" to=\"https://www.thebodyshop.ch/\"/><rule from=\"^http://(www\\.)?the-body-shop\\.ch/\" to=\"https://www.thebodyshop.ch/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Coop\" f=\"Coop.ch.xml\"><rule from=\"^http://interdiscount\\.ch/\" to=\"https://www.interdiscount.ch/\"/><rule from=\"^http://microspot\\.ch/\" to=\"https://www.microspot.ch/\"/><rule from=\"^http://christ-swiss\\.ch/\" to=\"https://www.christ-swiss.ch/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Coop.no\" f=\"Coop.no.xml\"><securecookie host=\"^\\.\" name=\"^_ga\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cooperating-Objects.eu\" f=\"Cooperating-Objects.eu.xml\"><securecookie host=\"^www\\.cooperating-objects\\.eu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cope-IT\" f=\"Cope-IT.xml\"><securecookie host=\"^www\\.cope-it\\.at$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Copenhagenmarathon.dk\" platform=\"mixedcontent\" f=\"Copenhagenmarathon.dk-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Copenhagenmarathon.dk (mixed content)\" f=\"Copenhagenmarathon.dk.xml\"><exclusion pattern=\"^http://(www\\.)?copenhagenmarathon\\.dk/(?!files|wp-)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Copernic.com (partial)\" f=\"Copernic.com.xml\"><securecookie host=\"^(?:go|www)\\.copernic\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?copernic\\.com/\" to=\"https://www.copernic.com/\"/><rule from=\"^http://go\\.copernic\\.com/\" to=\"https://go.copernic.com/\"/><rule from=\"^http://images\\.copernic\\.com/\" to=\"https://www.copernic.com/images/\"/><rule from=\"^http://mail\\.copernic\\.com/\" to=\"https://webmail.harriscomputer.com/\"/></ruleset>", "<ruleset name=\"Copernico.net\" default_off=\"failed ruleset test\" f=\"Copernico.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Copia.Is\" f=\"Copia.Is.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.copia\\.is/\" to=\"https://copia.is/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Copiny (partial)\" f=\"Copiny.xml\"><securecookie host=\"^\\.copiny\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Copy.com (partial)\" f=\"Copy.com.xml\"><securecookie host=\"^(?:next|www)?\\.copy\\.com$\" name=\".+\"/><rule from=\"^http://((?:apiweb|next|www)\\.)?copy\\.com/\" to=\"https://$1copy.com/\"/><rule from=\"^http://support\\.copy\\.com/\" to=\"https://copy.zendesk.com/\"/></ruleset>", "<ruleset name=\"copyleft.org\" f=\"Copyleft.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Copyright Clearance Center\" f=\"Copyright_Clearance_Center.xml\"><securecookie host=\"^.+\\.copyright\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Corban Works.com\" f=\"Corban_Works.com.xml\"><securecookie host=\"^\\.corbanworks\\.com$\" name=\".+\"/><rule from=\"^http://corbanworks\\.com/\" to=\"https://www.corbanworks.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Corbett Report.com\" f=\"Corbett_Report.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Corbin Fisher\" f=\"Corbin_Fisher.xml\"><securecookie host=\"^www\\.corbinfisher\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CoreCode\" default_off=\"mismatched\" f=\"CoreCode.xml\"><rule from=\"^http://(?:www\\.)?corecode\\.at/\" to=\"https://corecode.at/\"/><rule from=\"^http://corebreach\\.corecode\\.at/\" to=\"https://corebreach.corecode.at/\"/></ruleset>", "<ruleset name=\"CoreCommerce\" f=\"CoreCommerce.xml\"><securecookie host=\"^(?:www\\.)?corecommerce\\.com$\" name=\".+\"/><rule from=\"^http://(www(?:1[56])?\\.)?corecommerce\\.com/\" to=\"https://$1corecommerce.com/\"/></ruleset>", "<ruleset name=\"CoreMetrics (partial)\" default_off=\"failed ruleset test\" f=\"CoreMetrics.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.surfaid\\.ihost\\.com$\" name=\".+\"/><rule from=\"^http://www\\.coremetrics\\.com/\" to=\"https://www.ibm.com/software/marketing-solutions/coremetrics/www.redirects/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CoreMotives.com\" f=\"CoreMotives.com.xml\"><rule from=\"^http://(?:www\\.)?coremotives\\.com/$\" to=\"https://www.silverpop.com/marketing-products/coremotives/\"/><rule from=\"^http://databroker\\.coremotives\\.com/\" to=\"https://databroker.coremotives.com/\"/></ruleset>", "<ruleset name=\"CoreOS.com\" f=\"CoreOS.com.xml\"><securecookie host=\"^\\.coreos\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CoreSite.com (partial)\" f=\"CoreSite.com.xml\"><securecookie host=\"^mycoresite\\.coresite\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Core Security.com (partial)\" f=\"Core_Security.com.xml\"><exclusion pattern=\"^http://ws\\.coresecurity\\.com/+(?!css/|images/|rs/)\"/><securecookie host=\"^cs\\.coresecurity\\.com$\" name=\".+\"/><rule from=\"^http://ws\\.coresecurity\\.com/\" to=\"https://na-d.marketo.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"coreboot.org (partial)\" f=\"Coreboot.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://coreboot\\.org/\" to=\"https://www.coreboot.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Coreix (partial)\" f=\"Coreix.xml\"><securecookie host=\"^(?:manage\\.|www\\.)?coreix\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Corelio.be\" default_off=\"expired, mismatched, self-signed\" f=\"Corelio.be.xml\"><securecookie host=\"^(?:www\\.)?corelio\\.be$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Corey Abramson.com\" default_off=\"failed ruleset test\" f=\"Corey_Abramson.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cork University Press.com\" f=\"Cork_University_Press.com.xml\"><securecookie host=\"^(?:www\\.)?corkuniversitypress\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Corlan.be\" f=\"Corlan-Team.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://redmine\\.corelan\\.be/+\" to=\"https://github.com/corelan\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cornell.edu (partial)\" default_off=\"failed ruleset test\" f=\"Cornell.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://css\\.cals\\.cornell\\.edu/\" to=\"https://scs.cals.cornell.edu/\"/><rule from=\"^http://(ciifad|cuaes)\\.cornell\\.edu/\" to=\"https://$1.cals.cornell.edu/\"/><rule from=\"^http://(dfa|news)\\.cornell\\.edu/\" to=\"https://www.$1.cornell.edu/\"/><rule from=\"^http://emergency\\.med\\.cornell\\.edu/[^?]*\" to=\"https://emergency.weill.cornell.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CorneredCat.com\" f=\"CorneredCat.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cornify\" default_off=\"mismatched\" f=\"Cornify.xml\"><rule from=\"^http://(?:www\\.)?cornify\\.com/\" to=\"https://www.cornify.com/\"/></ruleset>", "<ruleset name=\"Corning Credit Union\" platform=\"mixedcontent\" f=\"CorningCreditUnion.xml\"><rule from=\"^http://(?:www\\.)?corningcu\\.org/\" to=\"https://corningcu.org/\"/></ruleset>", "<ruleset name=\"corpimages.de\" f=\"Corpimages.de.xml\"><rule from=\"^http://(?:www\\.)?corpimages\\.de/\" to=\"https://corpimages.de/\"/></ruleset>", "<ruleset name=\"corporate-ir.net (partial)\" f=\"Corporate-ir.net.xml\"><exclusion pattern=\"^http://(?:(?:phoenix|phx|www)\\.)?corporate-ir\\.net/(?!External\\.File\\?|HttpCombiner\\.ashx|media_files/|WebSideStory/|client/\\d+/\\d+/css/)\"/><securecookie host=\"^origin-phoenix\\.corporate-ir\\.net$\" name=\".+\"/><rule from=\"^http://phx\\.corporate-ir\\.net/HttpCombiner\\.ashx\" to=\"https://origin-phoenix.corporate-ir.net/HttpCombiner.ashx\"/><rule from=\"^http://origin-(phoenix|www)\\.corporate-ir\\.net/\" to=\"https://origin-$1.corporate-ir.net/\"/></ruleset>", "<ruleset name=\"Corporate Card Application.com\" f=\"Corporate_Card_Application.com.xml\"><rule from=\"^http://(?:www\\.)?corporatecardapplication\\.com/\" to=\"https://www.corporatecardapplication.com/\"/></ruleset>", "<ruleset name=\"Corporate Color\" f=\"Corporate_Color.xml\"><rule from=\"^http://saimd\\.com/\" to=\"https://www.saimd.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Corporation Service Company\" f=\"Corporation_Service_Company.xml\"><securecookie host=\"^(?:.*\\.)?cscglobal\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?corporatedomains\\.com/[^\\?]*(\\?.*)?\" to=\"https://www.cscglobal.com/global/web/csc/corporate-identity-protection.html$1\"/><rule from=\"^http://(my\\.|www\\.)?cscglobal\\.com/\" to=\"https://$1cscglobal.com/\"/><rule from=\"^http://(?:www\\.)?cscprotectsbrands\\.com/.*\" to=\"https://www.cscglobal.com/global/web/csc/domains-and-trademarks.html\"/></ruleset>", "<ruleset name=\"Correctiv-Upload.org\" f=\"Correctiv-Upload.org.xml\"><securecookie host=\"^correctiv-upload\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Correctiv.org\" f=\"Correctiv.org.xml\"><securecookie host=\"^\\.?correctiv\\.org$\" name=\".+\"/><rule from=\"^http://www\\.crowdfunding\\.correctiv\\.org/+\" to=\"https://correctiv.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Corrent.org\" default_off=\"failed ruleset test\" f=\"Corrent.org.xml\"><securecookie host=\"^\\.corrent\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Corsair.com (partial)\" f=\"Corsair.com.xml\"><securecookie host=\"^shop\\.corsair\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Corvisa.com\" f=\"Corvisa.com.xml\"><securecookie host=\"^(?:(?:auth|developers|developers|www)\\.)?corvisa\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cosmo.org\" default_off=\"failed ruleset test\" f=\"Cosmo.org.xml\"><securecookie host=\"^www\\.cosmo\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?cosmo\\.org/\" to=\"https://www.cosmo.org/\"/></ruleset>", "<ruleset name=\"Cosmopolitan.com (partial)\" default_off=\"mismatched\" f=\"Cosmopolitan.xml\"><securecookie host=\"^www\\.cosmopolitan\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cosmote\" f=\"Cosmote.xml\"><securecookie host=\"^www\\.cosmote\\.gr$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cossack Labs.com\" f=\"Cossack_Labs.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Costco-static.com\" f=\"Costco-static.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Costco.com (partial)\" default_off=\"failed ruleset test\" f=\"Costco.xml\"><securecookie host=\"^(?:.*\\.)?costco\\.com$\" name=\".*\"/><rule from=\"^http://costco\\.com/\" to=\"https://www.costco.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cotera (partial)\" f=\"Cotera.xml\"><rule from=\"^http://(www\\.)?cortera\\.com/(css|img|video|wordpress)/\" to=\"https://$1cortera.com/$2/\"/><rule from=\"^http://blog\\.cortera\\.com/\" to=\"https://blog.cortera.com/\"/><rule from=\"^http://dev-blog\\.cortera\\.com/wordpress/\" to=\"https://blog.cortera.com/wordpress/\"/><rule from=\"^http://start\\.cortera\\.com/(go(?:$|/)|images/)\" to=\"https://start.cortera.com/$1\"/></ruleset>", "<ruleset name=\"Cotse.net\" f=\"Cotse.xml\"><rule from=\"^http://(?:www\\.)?cotse\\.net/\" to=\"https://www.cotse.net/\"/></ruleset>", "<ruleset name=\"Coub.com (partial)\" f=\"Coub.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://assets1-new\\.akamai\\.coub\\.com/\" to=\"https://coubsecureassets-a.akamaihd.net/\"/><rule from=\"^http://www\\.coub\\.com/\" to=\"https://coub.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CouchPota.to\" default_off=\"failed ruleset test\" f=\"CouchPota.to.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Couchbase (partial)\" f=\"Couchbase.xml\"><rule from=\"^http://(www\\.)?couchbase\\.com/couchbase-server(?:/?(?:\\?.*)?$|/overview)\" to=\"https://$1couchbase.com/couchbase-server/overview\"/><rule from=\"^http://(?:www\\.)?couchbase\\.com/develop/?(?:\\?.*)?$\" to=\"https://www.couchbase.com/communities/all-client-libraries\"/><rule from=\"^http://(www\\.)?couchbase\\.com/(?=$|\\?|(?:buzz|case-studies/\\w+|communities|company|contact|couchbase-(?:open-source-project|server-java-training|server/use-cases|support)|customers|docs|forums/user|learn|presentations|why-nosql/nosql-database)(?:$|\\?|/)|(?:forums/)?(?:misc|sites)/)\" to=\"https://$1couchbase.com/\"/><rule from=\"^http://info\\.couchbase\\.com/(?=(?:cs|image|j|r)s/)\" to=\"https://na-a.marketo.com/\"/><rule from=\"^http://packages\\.couchbase\\.com/\" to=\"https://s3.amazonaws.com/packages.couchbase.com/\"/></ruleset>", "<ruleset name=\"Council of Europe (partial)\" f=\"Council_of_Europe.xml\"><securecookie host=\"^(?:hub|piwik|www)\\.coe\\.int$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?coe\\.int/\" to=\"https://www.coe.int/\"/><rule from=\"^http://(hub|piwik)\\.coe\\.int/\" to=\"https://$1.coe.int/\"/></ruleset>", "<ruleset name=\"Council on Foreign Relations (partial)\" f=\"Council_on_Foreign_Relations.xml\"><exclusion pattern=\"^http://(?:www\\.)?cfr\\.org/(?!content/.+\\.(?:gif|jpg|png)$|css/|i/|login\\.html)\"/><rule from=\"^http://(?:www\\.)?cfr\\.org/login\\.html\" to=\"https://secure.cfr.org/login.html\"/><rule from=\"^http://(?:i\\.|www\\.)?cfr\\.org/\" to=\"https://d1lidwm7vls1dg.cloudfront.net/\"/><rule from=\"^http://(blogs|secure\\.www)\\.cfr\\.org/\" to=\"https://$1.cfr.org/\"/></ruleset>", "<ruleset name=\"Council of Australian Governments\" f=\"CouncilofAustralianGovernments.xml\"><rule from=\"^http://(?:www\\.)?coag\\.gov\\.au/\" to=\"https://www.coag.gov.au/\"/></ruleset>", "<ruleset name=\"Count Bayesie.com\" f=\"Count_Bayesie.com.xml\"><securecookie host=\"^(?:www)?\\.countbayesie\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CounterPunch.org (partial)\" f=\"CounterPunch.org.xml\"><exclusion pattern=\"^http://store\\.counterpunch\\.org/(?!(?:cart|my-account)(?:$|[?/])|favicon\\.ico|wp-content/|wp-includes/)\"/><rule from=\"^http://store\\.counterpunch\\.org/\" to=\"https://store.counterpunch.org/\"/></ruleset>", "<ruleset name=\"CounterpartyChain.io\" f=\"CounterpartyChain.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Counterwallet.io\" f=\"Counterwallet.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Countquest.se\" default_off=\"failed ruleset test\" f=\"Countquest.se.xml\"><rule from=\"^http://sdc\\.countquest\\.se/\" to=\"https://sdc.countquest.se/\"/></ruleset>", "<ruleset name=\"The County Star (partial)\" f=\"County_Star.xml\"><rule from=\"^http://(?:www\\.)?county-star\\.com/(misc/|sites/|user(?:$|\\?|/))\" to=\"https://www.county-star.com/$1\"/></ruleset>", "<ruleset name=\"CouponCabin.com\" default_off=\"needs clearnet testing\" f=\"CouponCabin.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Coupons, Inc (partial)\" f=\"Coupons-Inc.xml\"><rule from=\"^http://coupouns\\.com/\" to=\"https://www.coupouns.com/\"/><rule from=\"^http://www\\.coupons\\.com/couponweb/\" to=\"https://www.coupons.com/couponweb/\"/><rule from=\"^http://(access|brandcaster|downloads1|insight)\\.coupons\\.com/\" to=\"https://$1.coupons.com/\"/><rule from=\"^http://cdn\\.cpnscdn\\.com/\" to=\"https://cdn.cpnscdn.com/\"/></ruleset>", "<ruleset name=\"Courage Campaign.org (partial)\" f=\"Courage_Campaign.org.xml\"><securecookie host=\"^(www\\.)?couragecampaign\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Courier Post Online.com (partial)\" default_off=\"failed ruleset test\" f=\"Courier-Post.xml\"><exclusion pattern=\"http://localsearch\\.courierpostonline\\.com/+(?!images/|sf_frameworks/)\"/><rule from=\"^http://localsearch\\.courierpostonline\\.com/\" to=\"https://chill.planetdiscover.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Courierpost.co.nz\" f=\"Courierpost.co.nz.xml\"><rule from=\"^http://www\\.cardtocall\\.courierpost\\.co\\.nz/\" to=\"https://cardtocall.courierpost.co.nz/\"/><rule from=\"^http://www\\.trackandtrace\\.courierpost\\.co\\.nz/\" to=\"https://trackandtrace.courierpost.co.nz/\"/><rule from=\"^http://www\\.track\\.courierpost\\.co\\.nz/\" to=\"https://track.courierpost.co.nz/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cours Crypto.org\" default_off=\"failed ruleset test\" f=\"Cours_Crypto.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CourseFinder.io\" default_off=\"failed ruleset test\" f=\"CourseFinder.io.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CourseTalk.com (partial)\" f=\"CourseTalk.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Courthouse News Service\" platform=\"mixedcontent\" f=\"Courthouse-News-Service.xml\"><securecookie host=\"^(?:www\\.)?courthousenews\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Courts of NZ.govt.nz\" f=\"Courts_of_New_Zealand.xml\"><rule from=\"^http://courtsofnz\\.govt\\.nz/\" to=\"https://www.courtsofnz.govt.nz/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cov.com\" f=\"Cov.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://cov\\.com/\" to=\"https://www.cov.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Covad.com (problematic)\" default_off=\"expired, self-signed\" f=\"Covad.com-problematic.xml\"><rule from=\"^http://covad\\.com/\" to=\"https://www.covad.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Covad.com (partial)\" default_off=\"failed ruleset test\" f=\"Covad.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Covad.net\" f=\"Covad.net.xml\"><rule from=\"^http://(?:www\\.)?covad\\.net/[^?]*\" to=\"https://my.megapath.com/\"/></ruleset>", "<ruleset name=\"CoverStand.com\" default_off=\"failed ruleset test\" f=\"CoverStand.com.xml\"><securecookie host=\"^(?:www\\.)?coverstand\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cover Art Archive.org\" f=\"Cover_Art_Archive.org.xml\"><rule from=\"^http://www\\.coverartarchive\\.org/\" to=\"https://coverartarchive.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Foundation for Health Coverage Education\" f=\"Coverage-for-All.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Coveralls.io (partial)\" f=\"Coveralls.io.xml\"><securecookie host=\"^(?:\\.|www\\.)?coveralls\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Covered California (partial)\" f=\"Covered-California.xml\"><securecookie host=\"^www\\.coveredca\\.com$\" name=\".+\"/><securecookie host=\"^www\\.coveredcacertifiedpartners\\.com$\" name=\".+\"/><securecookie host=\"^v\\.calheers\\.ca\\.gov$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?coveredca\\.com/\" to=\"https://www.coveredca.com/\"/><rule from=\"^http://(?:www\\.)?coveredcacertifiedpartners\\.com/\" to=\"https://www.coveredcacertifiedpartners.com/\"/><rule from=\"^http://v\\.calheers\\.ca\\.gov/\" to=\"https://v.calheers.ca.gov/\"/><rule from=\"^http://(?:www\\.)?coveredca\\.org/\" to=\"https://www.coveredca.com/\"/></ruleset>", "<ruleset name=\"Coverfire.com\" f=\"Coverfire.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Coverforyou.com\" f=\"Coverforyou.com.xml\"><rule from=\"^http://coverforyou\\.com/\" to=\"https://www.coverforyou.com/\"/><rule from=\"^http://([^/:@]+)?\\.coverforyou\\.com/\" to=\"https://$1.coverforyou.com/\"/></ruleset>", "<ruleset name=\"Coverity.com (partial)\" default_off=\"failed ruleset test\" f=\"Coverity.com.xml\"><exclusion pattern=\"^http://(?:go|softwareintegrity)\\.coverity\\.com/+(?!css/|images/|rs/)\"/><securecookie host=\"^\\.\" name=\"^__qca$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://coverity\\.com/\" to=\"https://www.coverity.com/\"/><rule from=\"^http://autodiscover\\.coverity\\.com/+([^?]+).*\" to=\"https://outlook.office365.com/$1\"/><rule from=\"^http://autodiscover\\.coverity\\.com/.*\" to=\"https://outlook.office365.com/owa/\"/><rule from=\"^http://(?:go|softwareintegrity)\\.coverity\\.com/\" to=\"https://na-sjf.marketo.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CoveritLive.com (partial)\" f=\"CovertiLive.com.xml\"><exclusion pattern=\"^http://www\\.coveritlive\\.com/+(?!favicon\\.ico|images/|templates/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Covisint\" f=\"Covisint.xml\"><securecookie host=\"^(?:.*\\.)?covisint\\.com$\" name=\".*\"/><rule from=\"^http://(portal\\.|www\\.)?covisint\\.com/\" to=\"https://$1covisint.com/\"/><rule from=\"^http://support\\.covisint\\.com/\" to=\"https://portal.covisint.com/web/support/\"/></ruleset>", "<ruleset name=\"Cox Digital Solutions (problematic)\" default_off=\"self-signed\" f=\"Cox-Digital-Solutions-problematic.xml\"><rule from=\"^http://stat\\.coxds\\.com/\" to=\"https://stat.coxds.com/\"/></ruleset>", "<ruleset name=\"Cox Digital Solutions (partial)\" default_off=\"failed ruleset test\" f=\"Cox-Digital-Solutions.xml\"><securecookie host=\"^.+\\.coxds\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?coxdigitalsolutions\\.com/wp-content/\" to=\"https://$1coxdigitalsolutions.com/wp-content/\"/><rule from=\"^http://(?:www\\.)?coxds\\.com/\" to=\"https://www.coxdigitalsolutions.com/\"/><rule from=\"^http://(go|images)\\.coxds\\.com/\" to=\"https://$1.coxds.com/\"/></ruleset>", "<ruleset name=\"Cox Communications (partial)\" f=\"Cox_Communications.xml\"><exclusion pattern=\"^http://(?:intercept|ww2)\\.cox\\.com/.+\\.cox(?:$|\\?)\"/><securecookie host=\"^\\.?store\\.cox\\.com$\" name=\".+\"/><securecookie host=\"^\\.cox\\.net$\" name=\".+\"/><securecookie host=\"^.*\\.coxbusiness\\.com$\" name=\".+\"/><rule from=\"^http://(?:ww[2w]\\.)?cox\\.com/\" to=\"https://ww2.cox.com/\"/><rule from=\"^http://(framework|images|intercept|store)\\.cox\\.com/\" to=\"https://$1.cox.com/\"/><rule from=\"^http://(idm\\.east|framework)\\.cox\\.net/\" to=\"https://$1.cox.net/\"/><rule from=\"^http://(?:www\\.)?coxbusiness\\.com/\" to=\"https://ww2.cox.com/business\"/><rule from=\"^http://(framework|myaccount)\\.coxbusiness\\.com/\" to=\"https://$1.coxbusiness.com/\"/></ruleset>", "<ruleset name=\"coxnewsweb.net\" f=\"Coxnewsweb.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Coy.IM\" f=\"Coy.IM.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CozumPark.com (partial)\" f=\"CozumPark.com.xml\"><securecookie host=\"^www\\.cozumpark\\.com$\" name=\".+\"/><rule from=\"^http://cozumpark\\.com/\" to=\"https://www.cozumpark.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cp.fonality.com\" default_off=\"failed ruleset test\" f=\"Cp.fonality.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cp.pt\" f=\"Cp.pt.xml\"><rule from=\"^http://cp\\.pt/\" to=\"https://www.cp.pt/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cpaptalk.com (partial)\" f=\"Cpaptalk.com.xml\"><rule from=\"^http://(www\\.)?cpaptalk\\.com/(?=cdn-cgi/|images/|mobiquo/|styles/)\" to=\"https://$1cpaptalk.com/\"/></ruleset>", "<ruleset name=\"cpunk.de (partial)\" platform=\"cacert\" default_off=\"failed ruleset test\" f=\"Cpunk.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cpunks.org\" default_off=\"failed ruleset test\" f=\"Cpunks.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cr.yp.to (partial)\" f=\"Cr.yp.to.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cr0.org (partial)\" f=\"Cr0.org.xml\"><rule from=\"^http://www-pw\\.cr0\\.org/\" to=\"https://www.cr0.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"crackedconsole.com\" default_off=\"failed ruleset test\" f=\"Crackedconsole.com.xml\"><securecookie host=\"^\\.crackedconsole\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CraftBanter\" f=\"CraftBanter.xml\"><securecookie host=\"^\\.?craftbanter\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?craftbanter\\.com/\" to=\"https://craftbanter.com/\"/></ruleset>", "<ruleset name=\"CraftStats.com\" default_off=\"failed ruleset test\" f=\"CraftStats.com.xml\"><securecookie host=\"^(?:www)?\\.craftstats\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?craftstats\\.com/\" to=\"https://www.craftstats.com/\"/></ruleset>", "<ruleset name=\"Craft Coffee.com (partial)\" f=\"Craft_Coffee.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Crafty Syntax.com\" default_off=\"expired\" f=\"Crafty_Syntax.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Craigslist.ca\" f=\"Craigslist.ca.xml\"><exclusion pattern=\"^http://blog\\.craigslist\\.ca/\"/><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Craigslist.co.uk\" f=\"Craigslist.co.uk.xml\"><exclusion pattern=\"^http://blog\\.craigslist\\.co\\.uk/\"/><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Craigslist.org\" f=\"Craigslist.org.xml\"><exclusion pattern=\"^http://blog\\.craigslist\\.org/\"/><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://craigslist\\.org/\" to=\"https://craigslist.org/\"/><rule from=\"^http://([\\w-]+)\\.craigslist\\.org/\" to=\"https://$1.craigslist.org/\"/></ruleset>", "<ruleset name=\"Crain Communications (mismatches)\" default_off=\"mismatch, self-signed\" f=\"Crain-Communications-mismatches.xml\"><rule from=\"^http://(?:www\\.)?btobonline\\.com/\" to=\"https://www.btobonline.com/\"/><rule from=\"^http://mycrains\\.crainsnewyork\\.com/\" to=\"https://mycrains.crainsnewyork.com/\"/></ruleset>", "<ruleset name=\"Crain Communications (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Crain-Communications.xml\"><securecookie host=\"^sec\\.crain\\.com$\" name=\".*\"/><securecookie host=\"^\\.crainsnewyork\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?adage\\.com/(help/|(?:login|register)\\.php)\" to=\"https://adage.com/$1\"/><rule from=\"^http://(?:www\\.)?adage\\.com/(image|script)s/\" to=\"https://gaia.adage.com/$1s/\"/><rule from=\"^http://((?:www\\.)?amig|gai)a\\.adage\\.com/\" to=\"https://$1a.adage.com/\"/><rule from=\"^http://sec\\.crain\\.com/\" to=\"https://sec.crain.com/\"/><rule from=\"^http://(www\\.)?crainsnewyork\\.com/\" to=\"https://$1crainsnewyork.com/\"/><rule from=\"^http://(?:www\\.)?creativity-online\\.com/\" to=\"https://creativity-online.com/\"/></ruleset>", "<ruleset name=\"Crakpass (partial)\" default_off=\"mismatched\" f=\"Crakpass.xml\"><rule from=\"^http://thumbs\\.(crakpass|dachix|deviantclip)\\.com/\" to=\"https://thumbs.$1.com/\"/></ruleset>", "<ruleset name=\"Craphound\" default_off=\"expired\" f=\"Craphound.xml\"><securecookie host=\"^(?:www\\.)?craphound\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Crash Space\" f=\"Crash-Space.xml\"><rule from=\"^http://(?:blog\\.|www\\.)?crashspace\\.org/\" to=\"https://blog.crashspace.org/\"/></ruleset>", "<ruleset name=\"CrashPlan (partial)\" f=\"CrashPlan.xml\"><securecookie host=\"^(?:.+\\.)?crashplan\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Crate.io\" f=\"Crate.io.xml\"><securecookie host=\"^\\.?crate\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Crazy Egg.com (partial)\" f=\"Crazy-Egg.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CrazyBump\" default_off=\"expired\" f=\"CrazyBump.xml\"><rule from=\"^http://(?:www\\.)?crazybump\\.com/\" to=\"https://crazybump.com/\"/></ruleset>", "<ruleset name=\"Crazzed.com\" default_off=\"failed ruleset test\" f=\"Crazzed.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?crazzed\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Creare.co.uk\" default_off=\"failed ruleset test\" f=\"Creare.co.uk.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Creatavist.com (partial)\" f=\"Creatavist.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Create-DMGmedia.co.uk\" default_off=\"refused\" f=\"Create.xml\"><securecookie host=\"^create-dmgmedia\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CreateSpace.com\" default_off=\"failed ruleset test\" f=\"CreateSpace.xml\"><securecookie host=\"^(?:(?:tsw|www)?\\.)?createspace\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Createsend.com (partial)\" f=\"Createsend.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"createsend1.com\" f=\"Createsend1.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Creation.co.uk (partial)\" f=\"Creation.xml\"><securecookie host=\"^\\.\" name=\"^_ga\"/><securecookie host=\"^(?!\\.creation\\.co\\.uk$).\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Creative Endeavors\" f=\"Creative-Endeavors.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"creative-serving.com (partial)\" f=\"Creative-serving.com.xml\"><securecookie host=\"^ads\\.creative-serving\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Creative Commons (partial)\" default_off=\"failed ruleset test\" f=\"CreativeCommons.xml\"><securecookie host=\"(\\.|^)(api|blog|br|donate|i|login|search|stateof|stats|store|wiki|www)\\.creativecommons\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Creative COW\" default_off=\"failed ruleset test\" f=\"CreativeCow.net.xml\"><securecookie host=\"^(?:www)?(?:\\.)?creativecow\\.(?:net|com)$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Creative Partnerships Australia\" f=\"CreativePartnershipsAustralia.xml\"><rule from=\"^http://(?:www\\.)?creativepartnershipsaustralia\\.org\\.au/\" to=\"https://www.creativepartnershipsaustralia.org.au/\"/></ruleset>", "<ruleset name=\"CreativeSyndicator\" default_off=\"failed ruleset test\" f=\"CreativeSyndicator.xml\"><securecookie host=\"^(?:delivery|www)\\.ads-creativesyndicator\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Creative CDN.com\" f=\"Creative_CDN.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Creative Little Readers.com (false MCB)\" platform=\"mixedcontent\" f=\"Creative_Little_Readers.com-falsemixed.xml\"><securecookie host=\"^(?:www)?\\.creativelittlereaders\\.com$\" name=\".+\"/><rule from=\"^http://www\\.creativelittlereaders\\.com/\" to=\"https://www.creativelittlereaders.com/\"/></ruleset>", "<ruleset name=\"Creative Little Readers.com (partial)\" default_off=\"failed ruleset test\" f=\"Creative_Little_Readers.com.xml\"><exclusion pattern=\"^http://www\\.creativelittlereaders\\.com/+(?!favicon\\.ico|wp-content/|wp-includes/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Creative Virtual.com\" default_off=\"self-signed\" f=\"Creative_Virtual.com.xml\"><securecookie host=\"^www\\.creativevirtual\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?creativevirtual\\.com/\" to=\"https://www.creativevirtual.com/\"/><rule from=\"^http://info\\.creativevirtual\\.com/l/\" to=\"https://pi.pardot.com/l/\"/><rule from=\"^http://info\\.creativevirtual\\.com/.*\" to=\"https://www.creativevirtual.com/\"/></ruleset>", "<ruleset name=\"Creativeskills.be (false MCB)\" platform=\"mixedcontent\" f=\"Creativeskills.be-falsemixed.xml\"><securecookie host=\"^\\.creativeskills\\.be$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Creativeskills.be (partial)\" f=\"Creativeskills.be.xml\"><rule from=\"^http://(www\\.)?creativeskills\\.be/(?!articles/wp-content/|css/|favicon\\.ico|images/)\" to=\"https://$1creativeskills.be/\"/></ruleset>", "<ruleset name=\"CredAbility.com\" default_off=\"failed ruleset test\" f=\"CredAbility.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CreditDisputeProgram.com\" default_off=\"failed ruleset test\" f=\"CreditDisputeProgram.com.xml\"><securecookie host=\"^(?:[w.]*\\.)?creditdisputeprogram\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Credit Repair Trust.com\" default_off=\"failed ruleset test\" f=\"Credit_Repair_Trust.com.xml\"><securecookie host=\"^(?:[w.]*\\.)?creditrepairtrust\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Credit Report Nation\" default_off=\"failed ruleset test\" f=\"Credit_Report_Nation.xml\"><securecookie host=\"^(?:.*\\.)?creditreportnation\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Credit Suisse\" f=\"Credit_Suisse.xml\"><securecookie host=\"^(?:w*\\.)?credit-suisse\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Credo Action.com\" f=\"Credo_Action.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Crew.co (partial)\" f=\"Crew.co.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cricket Wireless.com\" f=\"Cricket_Wireless.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Crikey (partial)\" default_off=\"failed ruleset test\" f=\"Crikey.xml\"><securecookie host=\"^www\\.crikey\\.com\\.au$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CrimethInc.com\" f=\"CrimethInc.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Criminal Justice Inspectorates\" f=\"Criminal_Justice_Inspectorates.xml\"><rule from=\"^http://justiceinspectorates\\.gov\\.uk/\" to=\"https://www.justiceinspectorates.gov.uk/\"/><rule from=\"^http://([^/:@]+)\\.justiceinspectorates\\.gov\\.uk/\" to=\"https://$1.justiceinspectorates.gov.uk/\"/></ruleset>", "<ruleset name=\"Crimtan (partial)\" f=\"Crimtan.xml\"><securecookie host=\"^\\.ctnsnet\\.com$\" name=\".+\"/><rule from=\"^http://(cdn|i)\\.ctpsnet\\.com/\" to=\"https://$1.ctpsnet.com/\"/></ruleset>", "<ruleset name=\"Criosweb (partial)\" f=\"Criosweb.xml\"><rule from=\"^http://infoeuri\\.criosweb\\.ro/$\" to=\"https://infoeuri.criosweb.ro/\"/><rule from=\"^http://infoeuri\\.criosweb\\.ro/(aplicatie|css|fonts|img|js|povestea\\.php)/\" to=\"https://infoeuri.criosweb.ro/$1/\"/><rule from=\"^http://infoeuri\\.criosweb\\.ro/blog/wp-(content|includes)/\" to=\"https://infoeuri.criosweb.ro/blog/wp-$1/\"/><exclusion pattern=\"^http://luci\\.criosweb\\.ro/$\"/><rule from=\"^http://luci\\.criosweb\\.ro/(blog/)?wp-(content|includes)/\" to=\"https://luci.criosweb.ro/$1wp-$2/\"/><rule from=\"^http://(www\\.)?criosweb\\.ro/\" to=\"https://$1criosweb.ro/\"/></ruleset>", "<ruleset name=\"Crisis.org.uk (partial)\" f=\"Crisis.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Criteo (partial)\" default_off=\"failed ruleset test\" f=\"Criteo.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Critical Mass (partial)\" f=\"Critical-Mass.xml\"><securecookie host=\"^cm1\\.criticalmass\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Critical Path Internet Services\" f=\"Critical-Path-Internet-Services.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Critical Muslim\" f=\"CriticalMuslim.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://(www\\.)?criticalmuslim\\.(net|org)/\" to=\"https://criticalmuslim.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Critical Thinking.org\" f=\"Critical_Thinking.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Crittercism.com (partial)\" f=\"Crittercism.com.xml\"><securecookie host=\"^ap[ip]\\.crittercism\\.com\" name=\".+\"/><rule from=\"^http://ap(i|p)\\.crittercism\\.com/\" to=\"https://ap$1.crittercism.com/\"/></ruleset>", "<ruleset name=\"Crockotec (partial)\" default_off=\"expired\" f=\"Crockotec.xml\"><securecookie host=\"^\\.crocko\\.com$\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Crocs\" default_off=\"failed ruleset test\" f=\"Crocs.xml\"><exclusion pattern=\"^http://investors\\.crocs\\.com/(?!client/|WebSideStory/)\"/><securecookie host=\".*\\.crocs\\.com$\" name=\"^(?:s_\\w+|__utm)\\w$\"/><securecookie host=\"^(?:espanol|www)\\.crocs\\.com$\" name=\".+\"/><rule from=\"^http://crocs\\.com/\" to=\"https://www.crocs.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cronius.net\" default_off=\"expired, mismatched\" f=\"Cronius.net.xml\"><securecookie host=\"^webmanager\\.cronius\\.net$\" name=\".+\"/><rule from=\"^http://webmanager\\.cronius\\.net/\" to=\"https://webmanager.cronius.net/\"/></ruleset>", "<ruleset name=\"Cronius.nl\" f=\"Cronius.nl.xml\"><securecookie host=\"^\\.cronius\\.nl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cronkite News\" default_off=\"mismatched\" f=\"Cronkite-News.xml\"><rule from=\"^http://(?:www\\.)?cronkitenewsonline\\.com/\" to=\"https://cronkitenewsonline.com/\"/></ruleset>", "<ruleset name=\"Croscill.com (partial)\" f=\"Croscill.com.xml\"><rule from=\"^http://(www\\.)?croscill\\.com/(?=(?:contact|order-status|returns|Shop/Customer)(?:$|[?/])|content/.+\\.(?:htm|png)$|css/|favicon\\.ico|Public/|Styles/|store_image/)\" to=\"https://$1croscill.com/\"/><rule from=\"^http://(?:www\\.)?croscill\\.com/content/8/contact-us\\.html.*\" to=\"https://www.croscill.com/contact\"/></ruleset>", "<ruleset name=\"Cross Pixel Media (problematic)\" default_off=\"expired, mismatch, self-signed\" f=\"Cross-Pixel-Media-problematic.xml\"><rule from=\"^http://pixel\\.crosspixel\\.net/\" to=\"https://pixel.crosspixel.net/\"/></ruleset>", "<ruleset name=\"Cross Pixel Media (partial)\" f=\"Cross-Pixel-Media.xml\"><securecookie host=\"^(?:tag)?\\.crsspxl\\.com$\" name=\".+\"/><rule from=\"^http://elmo\\.crsspxl\\.com/\" to=\"https://d2kdqv2bboglbi.cloudfront.net/\"/><rule from=\"^http://tag\\.crsspxl\\.com/\" to=\"https://tag.crsspxl.com/\"/></ruleset>", "<ruleset name=\"CrossRef.org\" f=\"CrossRef.org.xml\"><rule from=\"^http://(det\\.labs|eventdata)\\.crossref\\.org/\" to=\"https://www.crossref.org/services/event-data/\"/><rule from=\"^http://labs\\.crossref\\.org/\" to=\"https://www.crossref.org/labs/\"/><rule from=\"^http://nlabs\\.labs\\.crossref\\.org/\" to=\"https://www.crossref.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CrossWire.org (partial)\" f=\"CrossWire.org.xml\"><securecookie host=\"^(www\\.)?crosswire\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Crossdresser-Forum.de\" f=\"Crossdresser-Forum.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Crossrider (partial)\" default_off=\"failed ruleset test\" f=\"Crossrider.xml\"><securecookie host=\"^\\.?crossrider\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?crossrider\\.com/\" to=\"https://crossrider.com/\"/></ruleset>", "<ruleset name=\"Crowd Factory\" default_off=\"failed ruleset test\" f=\"Crowd-Factory.xml\"><securecookie host=\"^.*\\.crowdfactory\\.com$\" name=\".*\"/><securecookie host=\"^socialcampaign\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?crowdfactory\\.com/\" to=\"https://www.crowdfactory.com/\"/><rule from=\"^http://b(2c-wsinsight|log)\\.crowdfactory\\.com/\" to=\"https://b$1.crowdfactory.com/\"/><rule from=\"^http://(www\\.)?socialcampaign\\.com/\" to=\"https://$1socialcampaign.com/\"/></ruleset>", "<ruleset name=\"Crowd Science (partial)\" f=\"Crowd-Science.xml\"><exclusion pattern=\"http://static\\.crowndscience\\.com/blog/\"/><rule from=\"^http://(aws-)?app\\.crowdscience\\.com/\" to=\"https://$1app.crowdscience.com/\"/><rule from=\"^http://(?:secure-)?static\\.crowdscience\\.com/\" to=\"https://secure-static.crowdscience.com/\"/><rule from=\"^http://support\\.crowdscience\\.com/(favicon\\.ico|generated/|system/|widgets/)\" to=\"https://crowdscience.zendesk.com/$1\"/></ruleset>", "<ruleset name=\"CrowdCulture.se\" f=\"CrowdCulture.se.xml\"><securecookie host=\"^\\.?crowdculture\\.se$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CrowdJustice.co.uk\" f=\"CrowdJustice.co.uk.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CrowdTangle (partial)\" f=\"CrowdTangle.xml\"><rule from=\"^http://(?:www\\.)?crowdtangle\\.com/(asset|upload)s/\" to=\"https://onepagerapp.com/$1s/\"/><rule from=\"^http://prod\\.crowdtangle\\.com/\" to=\"https://prod.crowdtangle.com/\"/></ruleset>", "<ruleset name=\"Crowd Supply.com (partial)\" f=\"Crowd_Supply.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Crowdcurity.com\" f=\"Crowdcurity.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Crowdin.com\" f=\"Crowdin.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Crowdin.net\" f=\"Crowdin.net.xml\"><securecookie host=\"^crowdin\\.net$\" name=\".+\"/><rule from=\"^http://www\\.crowdin\\.net/\" to=\"https://crowdin.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Crowdrise.com\" f=\"Crowdrise.com.xml\"><securecookie host=\"^\\.crowdrise\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cru.fr (partial)\" default_off=\"failed ruleset test\" f=\"Cru.fr.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(git|sourcesup)\\.cru\\.fr/\" to=\"https://$1.renater.fr/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cru.org\" f=\"Cru.org.xml\"><securecookie host=\"^(?:www\\.)?cru\\.org$\" name=\".+\"/><rule from=\"^http://(www\\.)?cru\\.org/\" to=\"https://$1cru.org/\"/><rule from=\"^https?://static\\.cru\\.org/\" to=\"https://d2kuvqjqp132ic.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Crucial.com (partial)\" f=\"Crucial.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CruisersForum.com\" f=\"CruisersForum.com.xml\"><securecookie host=\"^(?:www)?\\.cruisersforum\\.com$\" name=\".+\"/><rule from=\"^http://(?:cdn\\.|www\\.)?cruisersforum\\.com/\" to=\"https://www.cruisersforum.com/\"/></ruleset>", "<ruleset name=\"CrunchBase.com\" default_off=\"needs clearnet testing\" f=\"CrunchBase.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CrunchBoard.com (partial)\" default_off=\"failed ruleset test\" f=\"CrunchBoard.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?crunchboard\\.com/(?!build/|images3?/|include/)\"/><rule from=\"^http://(?:www\\.)?crunchboard\\.com/\" to=\"https://secure.personforce.com/\"/></ruleset>", "<ruleset name=\"Crunchbangplusplus.org\" f=\"Crunchbangplusplus.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Crux.nu\" default_off=\"failed ruleset test\" f=\"Crux.nu.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CrySyS Lab\" default_off=\"self-signed\" f=\"CrySyS-Lab.xml\"><securecookie host=\"^www\\.crysys\\.hu$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?crysys\\.hu/\" to=\"https://www.crysys.hu/\"/></ruleset>", "<ruleset name=\"Cryengine.com\" f=\"Cryengine.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cryout Creations.eu (partial)\" f=\"Cryout_Creations.eu.xml\"><exclusion pattern=\"^http://(?:www\\.)?cryoutcreations\\.eu/+(?!(?:contact|custom-work|premium-support)(?:$|\\?)|favicon\\.ico|sprites/|wp-content/|wp-includes/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CrypTrader.com\" f=\"CrypTrader.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?cryptrader\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CryptAByte.com\" f=\"CryptAByte.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CryptAd.com\" default_off=\"failed ruleset test\" f=\"CryptAd.com.xml\"><securecookie host=\"^\\.cryptad\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CryptDown.eu\" f=\"CryptDown.eu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cryptalloy.de (problematic)\" default_off=\"self-signed\" f=\"Cryptalloy.de-problematic.xml\"><securecookie host=\"^\\.www\\.cryptalloy\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?cryptalloy\\.de/\" to=\"https://www.cryptalloy.de/\"/></ruleset>", "<ruleset name=\"Cryptalloy.de (partial)\" f=\"Cryptalloy.de.xml\"><securecookie host=\"^www\\.shop\\.cryptalloy\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?shop\\.cryptalloy\\.de/\" to=\"https://www.shop.cryptalloy.de/\"/></ruleset>", "<ruleset name=\"Cryptanalysis.eu\" default_off=\"failed ruleset test\" f=\"Cryptanalysis.xml\"><securecookie host=\"^cryptanalysis\\.eu$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cryptbin.com\" default_off=\"failed ruleset test\" f=\"Cryptbin.com.xml\"><securecookie host=\"^cryptbin\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CryptedMemo.com\" default_off=\"failed ruleset test\" f=\"CryptedMemo.com.xml\"><rule from=\"^http://cryptedmemo\\.com/\" to=\"https://cryptedmemo.com/\"/></ruleset>", "<ruleset name=\"Crypteia Networks.com (partial)\" f=\"Crypteia_Networks.com.xml\"><securecookie host=\"^(?:w*\\.)?crypteianetworks\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?crypteianetworks\\.com/\" to=\"https://www.crypteianetworks.com/\"/><rule from=\"^http://support\\.crypteianetworks\\.com/(?=favicon\\.ico|generated/|images/|system/)\" to=\"https://crypteianetworks.zendesk.com/\"/></ruleset>", "<ruleset name=\"Crypteron.com\" f=\"Crypteron.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Crypto.cat\" f=\"Crypto.cat.xml\"><securecookie host=\"^crypto\\.cat$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Crypto.is (partial)\" f=\"Crypto.is.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CryptoCoinTalk.com\" f=\"CryptoCoinTalk.com.xml\"><securecookie host=\"^\\.cryptocointalk\\.com$\" name=\".+\"/><rule from=\"^http://www\\.cryptocointalk\\.com/\" to=\"https://cryptocointalk.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CryptoCoinsNews.com\" f=\"CryptoCoinsNews.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CryptoExperts.com\" f=\"CryptoExperts.com.xml\"><securecookie host=\"^(?:www\\.)?cryptoexperts\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CryptoLUX.org\" default_off=\"failed ruleset test\" f=\"CryptoLUX.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CryptoNetwork.com\" default_off=\"missing certificate chain\" f=\"CryptoNetwork.com.xml\"><rule from=\"^http://www\\.cryptonetwork\\.com/\" to=\"https://cryptonetwork.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CryptoPro.ru\" f=\"CryptoPro.ru.xml\"><rule from=\"^http://cryptopro\\.ru/\" to=\"https://www.cryptopro.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CryptoRave.org\" f=\"CryptoRave.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CryptoSeal.com\" default_off=\"failed ruleset test\" f=\"CryptoSeal.com.xml\"><securecookie host=\"^\\.cryptoseal\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CryptoThrift.com\" f=\"CryptoThrift.com.xml\"><securecookie host=\"^\\.cryptothrift\\.com$\" name=\".+\"/><rule from=\"^http://support\\.cryptothrift\\.com/\" to=\"https://cryptothrift.zendesk.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CryptoVPN.com\" f=\"CryptoVPN.com.xml\"><securecookie host=\"^(?:my)?\\.cryptovpn\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Crypto Capital.co\" f=\"Crypto_Capital.co.xml\"><securecookie host=\"^(?:secure)?\\.cryptocapital\\.co$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Crypto Design.org\" f=\"Crypto_Design.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Crypto Santa.xyz\" default_off=\"failed ruleset test\" f=\"Crypto_Santa.xyz.xml\"><securecookie host=\"^\\.cryptosanta\\.xyz$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cryptocoin Charts.info\" f=\"Cryptocoin_Charts.info.xml\"><securecookie host=\"^www\\.cryptocoincharts\\.info$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cryptohaze\" default_off=\"refused\" f=\"Cryptohaze.xml\"><securecookie host=\"^(?:.+\\.)?cryptohaze\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cryptoins.com\" f=\"Cryptoins.com.xml\"><securecookie host=\"^\\.?cryptoins\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cryptojedi.org\" f=\"Cryptojedi.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cryptologie.net\" f=\"Cryptologie.net.xml\"><securecookie host=\"^\\.cryptologie\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cryptomator.org\" f=\"Cryptomator.org.xml\"><securecookie host=\"^\\.cryptomator\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cryptome.org\" default_off=\"failed ruleset test\" f=\"Cryptome.xml\"><rule from=\"^http://(www\\.)?cryptome\\.info/\" to=\"https://cryptome.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cryptomilk.org (partial)\" f=\"Cryptomilk.org.xml\"><securecookie host=\"^blog\\.cryptomilk\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cryptomonkeys.com\" f=\"Cryptomonkeys.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Crypton.io\" f=\"Crypton.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cryptonator.com\" f=\"Cryptonator.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cryptonit.net\" f=\"Cryptonit.net.xml\"><securecookie host=\"^(?:\\.|www\\.)?cryptonit\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cryptonomicon\" default_off=\"mismatched\" f=\"Cryptonomicon.xml\"><rule from=\"^http://(?:www\\.)?cryptonomicon\\.com/\" to=\"https://cryptonomicon.com/\"/></ruleset>", "<ruleset name=\"Cryptopals.com\" f=\"Cryptopals.com.xml\"><rule from=\"^http://www\\.cryptopals\\.com/\" to=\"https://cryptopals.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cryptoparty\" f=\"Cryptoparty.xml\"><securecookie host=\"^www\\.cryptoparty\\.in$\" name=\".+\"/><securecookie host=\"^cryptoparty\\.org$\" name=\".+\"/><rule from=\"^http://www\\.cryptoparty\\.org/\" to=\"https://cryptoparty.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cryptopia.co.nz\" f=\"Cryptopia.co.nz.xml\"><securecookie host=\"^cryptopia\\.co\\.nz$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cryptopp.com\" f=\"Cryptopp.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cryptostocks.com\" default_off=\"failed ruleset test\" f=\"Cryptostocks.com.xml\"><securecookie host=\"^\\.cryptostocks\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cryptostorm.is\" f=\"Cryptostorm.is.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cryptostorm.org (partial)\" f=\"Cryptostorm.org.xml\"><securecookie host=\"^\\.cryptostorm\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cryptsy.com (partial)\" default_off=\"failed ruleset test\" f=\"Cryptsy.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?cryptsy\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Crystal Delights.com\" f=\"Crystal_Delights.com.xml\"><securecookie host=\"^(?:www\\.)?crystaldelights\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Crystal Singing Bowls\" f=\"Crystal_Singing_Bowls.xml\"><securecookie host=\"^(?:www)?\\.sacredcrystalsingingbowls\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Crytography.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Crytography.com.xml\"><securecookie host=\"^(?:www\\.)?cryptography\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Csgolounge.com\" f=\"Csgolounge.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Csob.sk\" default_off=\"failed ruleset test\" f=\"Csob.sk.xml\"><rule from=\"^http://(?:www\\.)?csob\\.sk/\" to=\"https://www.csob.sk/\"/><rule from=\"^http://ib24\\.csob\\.sk/\" to=\"https://ib24.csob.sk/\"/><rule from=\"^http://bb24\\.csob\\.sk/\" to=\"https://bb24.csob.sk/\"/><rule from=\"^http://secure\\.csob\\.sk/\" to=\"https://secure.csob.sk/\"/></ruleset>", "<ruleset name=\"CspBuilder.info\" default_off=\"failed ruleset test\" f=\"CspBuilder.info.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"css Zen Garden\" default_off=\"mismatched\" f=\"Css-Zen-Garden.xml\"><rule from=\"^http://(?:www\\.)?csszengarden\\.com/\" to=\"https://csszengarden.com/\"/></ruleset>", "<ruleset name=\"Css-security.com\" f=\"Css-security.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cstatic-graphics.com\" f=\"Cstatic-graphics.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cstatic-images.com\" f=\"Cstatic-images.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cstatic.net\" default_off=\"failed ruleset test\" f=\"Cstatic.net.xml\"><rule from=\"^http://cdn\\.cstatic\\.net/\" to=\"https://dzbb4sjawljdv.cloudfront.net/\"/></ruleset>", "<ruleset name=\"csync.org\" f=\"Csync.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CtCtCDN.com\" f=\"CtCtCDN.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ctrl+Alt+Del\" f=\"Ctrl_Alt_Del.xml\"><exclusion pattern=\"^http://v\\.cdn\\.cad-comic\\.com/css-\\d+\\.css\"/><rule from=\"^http://(?:v\\.)?cdn\\.cad-comic\\.com/\" to=\"https://s3.amazonaws.com/cdn.cad-comic.com/\"/></ruleset>", "<ruleset name=\"Cts-strasbourg.eu\" f=\"Cts-strasbourg.eu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CtsCDN.com (partial)\" f=\"CtsCDN.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ctt.org\" default_off=\"failed ruleset test\" f=\"Ctt.org.xml\"><rule from=\"^http://(?:www\\.)?ctt\\.org/\" to=\"https://www.ctt.org/\"/></ruleset>", "<ruleset name=\"Ctt\" f=\"Ctt.xml\"><rule from=\"^http://(?:www\\.)?ctt\\.pt/\" to=\"https://www.ctt.pt/\"/></ruleset>", "<ruleset name=\"ctwatch.net\" default_off=\"failed ruleset test\" f=\"Ctwatch.net.xml\"><securecookie host=\"^ctwatch\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cubby.com (partial)\" f=\"Cubby.com.xml\"><securecookie host=\"^www\\.cubby\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cubics\" default_off=\"failed ruleset test\" f=\"Cubics.xml\"><securecookie host=\"^cubplat\\.bidsystem\\.com$\" name=\".+\"/><rule from=\"^http://cubplat\\.bidsystem\\.com/\" to=\"https://cubplat.bidsystem.com/\"/><rule from=\"^http://(?:www\\.)?cubics\\.com/\" to=\"https://cubplat.bidsystem.com/signup/\"/><rule from=\"^http://icons\\.cubics\\.com/\" to=\"https://icons.cubics.com/\"/></ruleset>", "<ruleset name=\"Cubify\" default_off=\"JS redirect to http\" f=\"Cubify.xml\"><securecookie host=\"^cubify\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cue.me\" f=\"Cue.me.xml\"><securecookie host=\"^cue\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CuidadoDeSalud.gov\" f=\"CuidadoDeSalud.gov.xml\"><securecookie host=\"www\\.cuidadodesalud\\.gov\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cult-Labs.com\" f=\"Cult-Labs.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?cult-labs\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cultofmac\" f=\"Cultofmac.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cultura Sparebank\" f=\"Cultura.no.xml\"><rule from=\"^http://cultura\\.no/\" to=\"https://cultura.no/\"/><rule from=\"^http://www\\.cultura\\.no/\" to=\"https://www.cultura.no/\"/></ruleset>", "<ruleset name=\"Cultural Survival.org (partial)\" f=\"Cultural_Survival.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cultures for Health.com\" f=\"Cultures_for_Health.com.xml\"><securecookie host=\"^(?:www)?\\.culturesforhealth.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cumbria Constabulary\" f=\"CumbriaConstabulary.xml\"><rule from=\"^http://(?:www\\.)?cumbria\\.police\\.uk/\" to=\"https://www.cumbria.police.uk/\"/></ruleset>", "<ruleset name=\"Cumulus Networks (partial)\" f=\"Cumulus_Networks.xml\"><exclusion pattern=\"^http://(?:www\\.)?cumulusnetworks\\.com/+(?!secure/|static/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cupid (partial)\" f=\"Cupid.xml\"><exclusion pattern=\"^http://ed\\.cupid\\.com/(?!ext\\.php)\"/><securecookie host=\"^\\.(?:www\\.)?cupid\\.com$\" name=\"^TRACK_\\w+$\"/><rule from=\"^http://(cdn|ed)\\.cupid\\.com/\" to=\"https://$1.cupid.com/\"/><rule from=\"^http://(?:www\\.)?cupid\\.com/((?:aff|oth)\\.php|api/|favicon\\.ico|static/)\" to=\"https://www.cupid.com/$1\"/></ruleset>", "<ruleset name=\"Cupid plc.com (partial)\" f=\"Cupid_plc.com.xml\"><securecookie host=\"^(?:aff|stat\\.to|whitelabeldating)\\.cupidplc\\.com$\" name=\".+\"/><rule from=\"^http://(aff|affiliates|stat\\.ed|stat|(?:cdn\\.)?stat\\.to|whitelabeldating)\\.cupidplc\\.com/\" to=\"https://$1.cupidplc.com/\"/></ruleset>", "<ruleset name=\"Cupid plc CDN\" default_off=\"failed ruleset test\" f=\"Cupid_plc_CDN.xml\"><rule from=\"^http://cdn\\.cdtoimge\\.com/\" to=\"https://cdn.cdtoimge.com/\"/><rule from=\"^http://cdn\\.(?:imgstat|pictimgs)\\.com/\" to=\"https://cdn.pictimgs.com/\"/><rule from=\"^http://cdn\\.stati(?:c2img|mgs2)\\.com/\" to=\"https://cdn.static2img.com/\"/></ruleset>", "<ruleset name=\"Curated.co\" f=\"Curated.co.xml\"><securecookie host=\"^(?:my\\.|www\\.)?curated\\.co$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Curbed.cc\" default_off=\"failed ruleset test\" f=\"Curbed.cc.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Curbed.com (partial)\" f=\"Curbed.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?(?:hamptons|ny)\\.curbed\\.com/+(?!favicon\\.ico|marketplace/(?:image|stylesheet)s/|uploads/)\"/><securecookie host=\"^\\.\" name=\"^__qca$\"/><rule from=\"^http://www\\.hamptons\\.curbed\\.com/\" to=\"https://hamptons.curbed.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cure53.de\" f=\"Cure53.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CureSec.com (partial)\" default_off=\"failed ruleset test\" f=\"CureSec.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Curetheitch.com\" default_off=\"expired, missing certificate chain\" f=\"Curetheitch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Curious Cat\" f=\"Curiouscat.me.xml\"><rule from=\"^http:\" to=\"https:\"/><securecookie host=\"^curiouscat\\.me$\" name=\".+\"/></ruleset>", "<ruleset name=\"Curo.co.za\" default_off=\"expired\" f=\"Curo.co.za.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.curo\\.co\\.za/\" to=\"https://curo.co.za/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Currys.co.uk (partial)\" f=\"Currys.co.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Curse\" default_off=\"failed ruleset test\" f=\"Curse.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Curso de Italiano\" f=\"Curso_de_Italiano.xml\"><securecookie host=\"^\\.marconisida\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?marconisida\\.com/\" to=\"https://marconisida.com/\"/></ruleset>", "<ruleset name=\"Custhelp.com\" f=\"Custhelp.com.xml\"><securecookie host=\"^.*\\.custhelp\\.com$\" name=\"^(?!ps_cookie$).*\"/><exclusion pattern=\"^http://canoncanada\\.custhelp\\.com/\"/><exclusion pattern=\"^http://ancestryuk\\.custhelp\\.com/\"/><exclusion pattern=\"^http://www\\.custhelp\\.com/\"/><rule from=\"^http://motorola-global-community\\.custhelp\\.com/\" to=\"https://forums.motorola.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Custodian Vaults.com.au\" f=\"Custodian_Vaults.com.au.xml\"><securecookie host=\"^(?:w*\\.)?custodianvaults\\.com\\.au$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CustomWheelConnection.com (partial)\" f=\"CustomWheelConnection.com.xml\"><rule from=\"^http://(www\\.)?customwheelconnection\\.com/(favicon\\.ico|Portals/|scripts/|[sS]how(?:Category|Product)Image\\.aspx)\" to=\"https://$1customwheelconnection.com/$2\"/></ruleset>", "<ruleset name=\"Custom Tiburon\" default_off=\"failed ruleset test\" f=\"Custom_Tiburon.xml\"><securecookie host=\"^(?:.*\\.)?customtiburon\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Customer Lobby (partial)\" f=\"Customer-Lobby.xml\"><securecookie host=\"^(?:.*\\.)?customerlobby\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Customer.io (partial)\" f=\"Customer.io.xml\"><rule from=\"^http://(assets|manage|track)\\.customer\\.io/\" to=\"https://$1.customer.io/\"/></ruleset>", "<ruleset name=\"customersaas.com\" f=\"Customersaas.com.xml\"><rule from=\"^http://imageservice\\.customersaas\\.com/\" to=\"https://d35v9wsdymy32b.cloudfront.net/\"/><rule from=\"^http://static1\\.customersaas\\.com/\" to=\"https://d1wawgqwk8hdm1.cloudfront.net/\"/></ruleset>", "<ruleset name=\"customersvc.com\" f=\"Customersvc.com.xml\"><securecookie host=\"^secure\\.customersvc\\.com$\" name=\".+\"/><rule from=\"^http://(chat1|secure)\\.customersvc\\.com/\" to=\"https://$1.customersvc.com/\"/></ruleset>", "<ruleset name=\"CuteDigi\" default_off=\"failed ruleset test\" f=\"CuteDigi.xml\"><securecookie host=\"^\\.www\\.cutedigi\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cuttlefish.com\" default_off=\"refused\" f=\"Cuttlefish.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cuusoo.com (partial)\" default_off=\"failed ruleset test\" f=\"Cuusoo.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cvedetails.com\" f=\"Cvedetails.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cvent.com (partial)\" f=\"Cvent.com.xml\"><exclusion pattern=\"^http://www\\.cvent\\.com/events/.*/(?!registration-)\"/><securecookie host=\"^(?:shworldwide)?\\.cvent\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cxcloud.com\" default_off=\"failed ruleset test\" f=\"Cxcloud.com.xml\"><securecookie host=\"^(?:www\\.)?cxcloud\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?cxcloud\\.com/.*\" to=\"https://$1cxcloud.com/\"/></ruleset>", "<ruleset name=\"cxsecurity.com\" f=\"Cxsecurity.com.xml\"><securecookie host=\"^cxsecurity\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?cxsecurity\\.com/\" to=\"https://cxsecurity.com/\"/></ruleset>", "<ruleset name=\"Cxt.ms\" f=\"Cxt.ms.xml\"><rule from=\"^http://s\\.cxt\\.ms/\" to=\"https://d3j09g9h9lgmkt.cloudfront.net/\"/><rule from=\"^http://t\\.cxt\\.ms/\" to=\"https://t.cxt.ms/\"/></ruleset>", "<ruleset name=\"Cyando (partial)\" f=\"Cyando.xml\"><rule from=\"^http://(?:www\\.)?u(?:l|ploaded)\\.to/(favicon\\.ico$|img/|js2?/|misc/)\" to=\"https://uploaded.to/$1\"/></ruleset>", "<ruleset name=\"CyanogenMod.org (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"CyanogenMod.org-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CyanogenMod.org (partial)\" default_off=\"failed ruleset test\" f=\"CyanogenMod.org.xml\"><securecookie host=\"^\\.cyanogenmod\\.org$\" name=\"^__cfduid$\"/><securecookie host=\"^jira\\.cyanogenmod\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cyber Security Challenge\" f=\"Cyber-Security-Challenge.xml\"><securecookie host=\"^(?:www\\.)?cybersecuritychallenge\\.org\\.uk$\" name=\".*\"/><rule from=\"^http://cybersecuritychallenge\\.org\\.uk/\" to=\"https://www.cybersecuritychallenge.org.uk/\"/><rule from=\"^http://([^/:@]+)?\\.cybersecuritychallenge\\.org\\.uk/\" to=\"https://$1.cybersecuritychallenge.org.uk/\"/></ruleset>", "<ruleset name=\"CyberAces (partial)\" default_off=\"failed ruleset test\" f=\"CyberAces.xml\"><rule from=\"^http://(?:www\\.)?online\\.cyberaces\\.org/\" to=\"https://www.online.cyberaces.org/\"/></ruleset>", "<ruleset name=\"CyberAgent\" platform=\"mixedcontent\" f=\"CyberAgent.xml\"><rule from=\"^http://(?:www\\.)?cyberagent\\.co\\.jp/\" to=\"https://www.cyberagent.co.jp/\"/></ruleset>", "<ruleset name=\"CyberCamp.es\" f=\"CyberCamp.es.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CyberGhost\" f=\"CyberGhost.xml\"><securecookie host=\"^(?:.*\\.)?cyberghostvpn\\.com$\" name=\".*\"/><rule from=\"^http://(\\w+\\.)?cyberghostvpn\\.com/\" to=\"https://$1cyberghostvpn.com/\"/></ruleset>", "<ruleset name=\"CyberPatrol.com (partial)\" f=\"CyberPatrol.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CyberPhoto AB\" default_off=\"failed ruleset test\" f=\"CyberPhoto-AB.xml\"><securecookie host=\"^(?:www)?\\.cyberphoto\\.(?:fi|se)$\" name=\"^(?:PHPSESSID|kundvagn)$\"/><rule from=\"^http://(?:www\\.)?cyberphoto\\.(fi|se)/\" to=\"https://www.cyberphoto.$1/\"/></ruleset>", "<ruleset name=\"Cyber Stewards.org\" f=\"Cyber_Stewards.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cyberciti.org\" f=\"Cyberciti.org.xml\"><rule from=\"^http://s0\\.cyberciti\\.org/\" to=\"https://d2m4hyssawyie7.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Cybercompex.org\" f=\"Cybercompex.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cybercon (partial)\" f=\"Cybercon.xml\"><securecookie host=\"^\\.www\\.cybercon\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cyberduck.io\" f=\"Cyberduck.io.xml\"><rule from=\"^http://(?:(media\\.)|www\\.)?cyberduck\\.io/\" to=\"https://$1cyberduck.io/\"/></ruleset>", "<ruleset name=\"Cyberfret.com\" f=\"Cyberfret.com.xml\"><securecookie host=\"^(?:www\\.)?cyberfret\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cybergolf.com (MCB)\" platform=\"mixedcontent\" f=\"Cybergolf.com-mixedcontent.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cybergolf.com (partial)\" f=\"Cybergolf.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cyberleninka.ru\" f=\"Cyberleninka.ru.xml\"><rule from=\"^http://www\\.cyberleninka\\.ru/\" to=\"https://cyberleninka.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cybermill\" default_off=\"expired\" f=\"Cybermill.xml\"><rule from=\"^http://(?:www\\.)?cybermill\\.com/\" to=\"https://cybermill.com/\"/></ruleset>", "<ruleset name=\"Cyberplat.ru\" default_off=\"failed ruleset test\" f=\"Cyberplat.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cyberport.de\" f=\"Cyberport.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cyberport.hk (partial)\" f=\"Cyberport.hk.xml\"><rule from=\"^http://cyberport\\.hk/\" to=\"https://www.cyberport.hk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cyberquests (Partial)\" f=\"Cyberquests.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cyberstreetwise\" f=\"Cyberstreetwise.xml\"><securecookie host=\"^(?:.*\\.)?cyberstreetwise\\.com$\" name=\".*\"/><rule from=\"^http://cyberstreetwise\\.com/\" to=\"https://www.cyberstreetwise.com/\"/><rule from=\"^http://([^/:@]+)\\.cyberstreetwise\\.com/\" to=\"https://$1.cyberstreetwise.com/\"/></ruleset>", "<ruleset name=\"Cybertip.ca\" f=\"Cybertip.ca.xml\"><rule from=\"^http://(www\\.)?cyberaide\\.ca/\" to=\"https://$1cyberaide.ca/\"/><rule from=\"^http://((?:cwa|lea|www)\\.)?cybertip\\.ca/\" to=\"https://$1cybertip.ca/\"/></ruleset>", "<ruleset name=\"Cyberwar.nl\" f=\"Cyberwar.nl.xml\"><rule from=\"^http://((?:blog|news|www)\\.)?cyberwar\\.nl/\" to=\"https://$1cyberwar.nl/\"/></ruleset>", "<ruleset name=\"Cygwin.com (partial)\" f=\"Cygwin.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cykloteket.se\" f=\"Cykloteket.se.xml\"><rule from=\"^http://www\\.cykloteket\\.se/\" to=\"https://cykloteket.se/\"/><rule from=\"^http://cykloteket\\.se/\" to=\"https://cykloteket.se/\"/></ruleset>", "<ruleset name=\"Cyngn.com\" default_off=\"failed ruleset test\" f=\"Cyngn.com.xml\"><rule from=\"^http://builds\\.cyngn\\.com/\" to=\"https://d199yez36w5w8l.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cyphar.com\" f=\"Cyphar.com.xml\"><securecookie host=\"^\\.cyphar\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cyphdbyhiddenbhs.onion\" platform=\"mixedcontent\" f=\"Cyphdbyhiddenbhs.onion.xml\"><rule from=\"^http://www\\.cyphdbyhiddenbhs\\.onion/\" to=\"https://cyphdbyhiddenbhs.onion/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cypherpunks.ca\" f=\"Cypherpunks.ca.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cyphertite.com\" default_off=\"failed ruleset test\" f=\"Cyphertite.com.xml\"><securecookie host=\"^(?:.*\\.)?cyphertite\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cypouz.com\" f=\"Cypouz.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cyprus Satellite (partial)\" default_off=\"failed ruleset test\" f=\"Cyprus_Satellite.xml\"><securecookie host=\"^forums\\.satellitecyprus\\.com$\" name=\".+\"/><rule from=\"^http://forums\\.satellitecyprus\\.com/\" to=\"https://forums.satellitecyprus.com/\"/></ruleset>", "<ruleset name=\"Cyrus.Foundation\" default_off=\"failed ruleset test\" f=\"Cyrus.Foundation.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cyscon.net (partial)\" default_off=\"failed ruleset test\" f=\"Cyscon.net.xml\"><rule from=\"^http://stats\\.cyscon\\.net/\" to=\"https://stats.cyscon.net/\"/></ruleset>", "<ruleset name=\"Cysec Labs.com\" default_off=\"failed ruleset test\" f=\"Cysec_Labs.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Czech Technical University in Prague\" platform=\"mixedcontent\" f=\"Czech-Technical-University-in-Prague.xml\"><securecookie host=\"^.*\\.cvut\\.cz$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?cvut\\.cz/\" to=\"https://www.cvut.cz/\"/><rule from=\"^http://(akce|helpdesk|jira|usermap)\\.cvut\\.cz/\" to=\"https://$1.cvut.cz/\"/></ruleset>", "<ruleset name=\"D' Technology Weblog\" default_off=\"mismatched\" f=\"D-Technology-Weblog.xml\"><rule from=\"^http://(?:www\\.)?ditii\\.com/\" to=\"https://www.ditii.com/\"/></ruleset>", "<ruleset name=\"D.me\" default_off=\"failed ruleset test\" f=\"D.me.xml\"><rule from=\"^http://d\\.me/\" to=\"https://delicious.com/\"/></ruleset>", "<ruleset name=\"D.pr\" f=\"D.pr.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"d0wn.biz\" f=\"D0wn.biz.xml\"><securecookie host=\"^d0wn\\.biz$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"D2jsp.org\" default_off=\"failed ruleset test\" f=\"D2jsp.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"d3.ru\" f=\"D3.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"D4design Studios.com (false MCB)\" platform=\"mixedcontent\" f=\"D4design_Studios.com.xml\"><securecookie host=\"^(?:www)?\\.d4designstudios\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?d4designstudios\\.com/\" to=\"https://www.d4designstudios.com/\"/></ruleset>", "<ruleset name=\"DAB Bank\" f=\"DABBank.xml\"><rule from=\"^http://([^/:@\\.]+)\\.dab-bank\\.de/\" to=\"https://$1.dab-bank.de/\"/></ruleset>", "<ruleset name=\"D.A.Consortium\" f=\"DAConsortium.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DALnet\" platform=\"mixedcontent\" f=\"DALnet.xml\"><securecookie host=\"^(?:.+\\.)?dal\\.net$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?dal\\.net/\" to=\"https://www.dal.net/\"/><rule from=\"^http://(inspiration|users)\\.dal\\.net/\" to=\"https://$1.dal.net/\"/></ruleset>", "<ruleset name=\"DANTE.net (partial)\" f=\"DANTE.net.xml\"><exclusion pattern=\"^http://news\\.dante\\.net/+(?!_layouts/|SiteCollectionImages/)\"/><exclusion pattern=\"^http://www\\.dante\\.net/+(?!_catalogs/|_layouts/|_login/|_trust/)\"/><rule from=\"^http://(news|weblogin|www)\\.dante\\.net/\" to=\"https://$1.dante.net/\"/></ruleset>", "<ruleset name=\"DAR.fm (partial)\" f=\"DAR.fm.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DARCH.ch\" default_off=\"broken\" f=\"DARCH.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DATART INTERNATIONAL a.s.\" f=\"DATART.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dave.org.uk\" f=\"DAVE.org.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DB-IP.com\" f=\"DB-IP.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DBS\" f=\"DBS.xml\"><rule from=\"^http://(?:www\\.)?dbs\\.([^/:@]+)/\" to=\"https://www.dbs.$1/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dBforums.com\" default_off=\"missing certificate chain\" platform=\"mixedcontent\" f=\"DBforums.xml\"><securecookie host=\"^(?:www)?\\.dbforums\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DC801.org\" f=\"DC801.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DCBoEE.org\" f=\"DCBoEE.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DCCC.org\" f=\"DCCC.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DC Comics.com\" default_off=\"expired, mismatched, self-signed\" f=\"DC_Comics.com.xml\"><rule from=\"^http://(?:www\\.)?dccomics\\.com/\" to=\"https://www.dccomics.com/\"/></ruleset>", "<ruleset name=\"DC Power.eu\" f=\"DC_Power.eu.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DC Vote.org\" default_off=\"failed ruleset test\" f=\"DC_Vote.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DD-WRT.com (partial)\" f=\"DD-WRT.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DDM CDN.com\" f=\"DDM_CDN.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DDS2DDS.com\" default_off=\"failed ruleset test\" f=\"DDS2DDS.com.xml\"><securecookie host=\"^(?:w*\\.)?(?:dds2dds|kaizencrossfit)\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?(dds2dds|kaizencrossfit)\\.com/\" to=\"https://$1$2.com/\"/></ruleset>", "<ruleset name=\"DDoSBreak.com\" default_off=\"failed ruleset test\" f=\"DDoSBreak.com.xml\"><securecookie host=\"^(?:www\\.)?ddosbreak\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DE-CIX\" f=\"DE-CIX.xml\"><exclusion pattern=\"^http://lg\\.de-cix\\.net\"/><rule from=\"^http://de-cix\\.net/\" to=\"https://www.de-cix.net/\"/><rule from=\"^http://([^/:@]+)?\\.de-cix\\.net/\" to=\"https://$1.de-cix.net/\"/></ruleset>", "<ruleset name=\"DEALZON\" default_off=\"self-signed\" f=\"DEALZON.xml\"><securecookie host=\"^dealzon\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?dealzon\\.com/\" to=\"https://dealzon.com/\"/></ruleset>", "<ruleset name=\"Vase DEDRA s.r.o.\" f=\"DEDRA.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DEEWR\" default_off=\"failed ruleset test\" f=\"DEEWR.xml\"><rule from=\"^http://(?:www\\.)?prisms\\.deewr\\.gov\\.au/\" to=\"https://prisms.deewr.gov.au/\"/></ruleset>", "<ruleset name=\"DEF CON Groups.org\" f=\"DEF_CON_Groups.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DEMO\" default_off=\"mismatched\" f=\"DEMO.xml\"><securecookie host=\"^demo\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?demo\\.com/\" to=\"https://demo.com/$1/\"/></ruleset>", "<ruleset name=\"DENX.de\" default_off=\"self-signed\" f=\"DENX.de.xml\"><securecookie host=\"^www\\.denx\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?denx\\.de/\" to=\"https://www.denx.de/\"/></ruleset>", "<ruleset name=\"DF.eu\" f=\"DF.eu.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DFN-CERT.de\" f=\"DFN-CERT.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DFTBA Records\" f=\"DFTBA_Records.xml\"><securecookie host=\"^\\.dftba\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DFiles.eu\" f=\"DFiles.eu.xml\"><securecookie host=\"^\\.dfiles\\.eu$\" name=\".+\"/><rule from=\"^http://(static\\d+\\.|www\\.)?dfiles\\.eu/\" to=\"https://$1dfiles.eu/\"/></ruleset>", "<ruleset name=\"DGEX.com\" default_off=\"failed ruleset test\" f=\"DGEX.com.xml\"><securecookie host=\"^\\.dgex\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DHL.de\" platform=\"mixedcontent\" f=\"DHL.de.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://mobile\\.dhl\\.de/\" to=\"https://mobil.dhl.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DHS.gov (partial)\" f=\"DHS.gov.xml\"><exclusion pattern=\"^http://www\\.dhs\\.gov/+(?!misc/|profiles/dhs_gov/(?:modul|them)es/|sites/|xlibrary/videos/\\w+_thumb\\.jpg)\"/><securecookie host=\"^(?:esta\\.cbp|goes-app\\.cbp|www\\.llis|universalenroll)\\.dhs\\.gov$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DHgate.com (partial)\" f=\"DHgate.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?dhgate\\.com/(?:\\?.*)?$\"/><rule from=\"^http://(?:secure\\.|www\\.)?dhgate\\.com/\" to=\"https://secure.dhgate.com/\"/></ruleset>", "<ruleset name=\"DIYbanter\" f=\"DIYbanter.xml\"><securecookie host=\"^(?:w*\\.)?diybanter\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DJI\" default_off=\"failed ruleset test\" f=\"DJI.xml\"><rule from=\"^http://dji\\.com/\" to=\"https://www.dji.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DJKit\" f=\"DJKit.xml\"><securecookie host=\"^\\.djkit\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Deutsche Kreditbank\" f=\"DKB.de.xml\"><securecookie host=\"^(?:banking|m|www)\\.dkb\\.de$\" name=\".+\"/><rule from=\"^http://([^/:@\\.]+\\.)?dkb\\.de/\" to=\"https://$1dkb.de/\"/></ruleset>", "<ruleset name=\"DKiT.ie (partial)\" default_off=\"failed ruleset test\" f=\"DKiT.ie.xml\"><securecookie host=\"^\\.dkit\\.io$\" name=\"^SESS[\\da-f]{32}$\"/><securecookie host=\"^(?:help|owncloud|passwordreset)\\.dkit\\.io$\" name=\".+\"/><rule from=\"^http://dkit\\.ie/\" to=\"https://www.dkit.ie/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DM.id.lv (partial)\" f=\"DM.id.lv.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DMAchoice.org\" f=\"DMAchoice.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DMCA.com\" f=\"DMCA_Services.xml\"><securecookie host=\"^www\\.dmca\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?dmca\\.com/\" to=\"https://www.dmca.com/\"/><rule from=\"^http://images\\.dmca\\.com/\" to=\"https://images.dmca.com/\"/></ruleset>", "<ruleset name=\"DMLP.org (partial)\" default_off=\"failed ruleset test\" f=\"DMLP.org.xml\"><rule from=\"^http://(?:www\\.)?citmedialaw\\.org/\" to=\"https://www.citmedialaw.org/\"/><rule from=\"^http://(?:www\\.)?dmlp\\.org/(?!favicon\\.ico|files/|misc/|modules/|sites/)\" to=\"https://www.dmlp.org/\"/></ruleset>", "<ruleset name=\"DMS-Sweden.com\" f=\"DMS-Sweden.com.xml\"><rule from=\"^http://(?:www\\.)?dms-sweden\\.com/\" to=\"https://www.dms-sweden.com/\"/></ruleset>", "<ruleset name=\"DMU.ac.uk (partial)\" f=\"DMU.xml\"><securecookie host=\"^(?:(?:chooseyourhallroom|idpedir|www\\.library|password|vle|webmail|www)\\.)?dmu\\.ac\\.uk$\" name=\".+\"/><rule from=\"^http://((?:chooseyourhallroom|idpedir|www\\.library|password|vle|webmail|www)\\.)?dmu\\.ac\\.uk/\" to=\"https://$1dmu.ac.uk/\"/></ruleset>", "<ruleset name=\"DMX Austria\" default_off=\"self-signed\" f=\"DMX-Austria.xml\"><securecookie host=\"^www\\.dmx-austria\\.at$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?dmx-austria\\.at/\" to=\"https://www.dmx-austria.at/\"/></ruleset>", "<ruleset name=\"DM mailing list.com\" f=\"DM_mailing_list.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DM tracker.com\" f=\"DM_tracker.com.xml\"><securecookie host=\"^.*\\.dmtracker\\.com$\" name=\".+\"/><rule from=\"^http://(extended|vs)\\.dmtracker\\.com/\" to=\"https://$1.dmtracker.com/\"/></ruleset>", "<ruleset name=\"DMflex.com (partial)\" default_off=\"expired\" f=\"DMflex.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DMoruzzi.com\" f=\"DMoruzzi.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DN.com\" f=\"DN.com.xml\"><securecookie host=\"^www\\.dn\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DN.dk (partial)\" default_off=\"failed ruleset test\" f=\"DN.dk.xml\"><exclusion pattern=\"^http://www\\.dn\\.dk/([dD]efault\\.aspx|\\?).*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DN.no\" f=\"DN.no.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DNA.Land\" f=\"DNA.Land.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DNA Serum\" default_off=\"failed ruleset test\" f=\"DNA_Serum.xml\"><securecookie host=\"^(?:.*\\.)?dnaserum\\.com$\" name=\".+\"/><securecookie host=\"^\\.tepamine\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DNB.no (partial)\" f=\"DNB.no.xml\"><exclusion pattern=\"^http://(?:husrom|www3)\\.dnb\\.no/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http://dnb\\.no/\" to=\"https://www.dnb.no/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DNC.org\" f=\"DNC.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DNS-OARC.net\" f=\"DNS-OARC.net.xml\"><rule from=\"^http://dns-oarc\\.net/\" to=\"https://www.dns-oarc.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DNSChain.net\" f=\"DNSChain.net.xml\"><rule from=\"^http://(?:www\\.)?dnschain\\.net/\" to=\"https://forums.okturtles.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DNSCrypt.eu\" f=\"DNSCrypt.eu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DNSCurve\" f=\"DNSCurve.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DNS History.org\" f=\"DNSHistory.org.xml\"><securecookie host=\"^dnshistory\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DNSQuery.org\" f=\"DNSQuery.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.dnsquery\\.org/\" to=\"https://dnsquery.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DNSSEC-Tools\" f=\"DNSSEC-Tools.xml\"><securecookie host=\"^(?:www\\.)?dnssec-tools\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DNSSEC-Validator.cz\" f=\"DNSSEC-Validator.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DNSWatch.info\" f=\"DNSWatch.info.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DNS leak test.com\" f=\"DNS_leak_test.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DNSdynamic\" f=\"DNSdynamic.xml\"><securecookie host=\"^(?:www\\.)?dnsdynamic\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DNSstuff.com (partial)\" default_off=\"failed ruleset test\" f=\"DNSstuff.com.xml\"><exclusion pattern=\"^http://www\\.dnsstuff\\.com/+(?!dnsmedia/|images/|member(?:$|[?/])|templates/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DNTX.com\" f=\"DNTX.com.xml\"><securecookie host=\"^www\\.dntx\\.com$\" name=\".+\"/><rule from=\"^http://dntx\\.com/([^?]*).*\" to=\"https://www.dntx.com/$1\"/><rule from=\"^http://www\\.dntx\\.com/\" to=\"https://www.dntx.com/\"/></ruleset>", "<ruleset name=\"DNTrck.com\" f=\"DNTrck.com.xml\"><rule from=\"^http://(p1|www)\\.dntrck\\.com/\" to=\"https://$1.dntrck.com/\"/></ruleset>", "<ruleset name=\"DNV.com (partial)\" f=\"DNV.com.xml\"><securecookie host=\"^exchange\\.dnv\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DOCLIX (partial)\" f=\"DOCLIX.xml\"><rule from=\"^http://(?:ads|track)\\.doclix\\.com/\" to=\"https://track.doclix.com/\"/><rule from=\"^http://(advertis|publish)er\\.doclix\\.com/\" to=\"https://$1er.doclix.com/\"/></ruleset>", "<ruleset name=\"DOI.org\" f=\"DOI.org.xml\"><securecookie host=\"(.+\\.)?doi\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DONG Energy\" default_off=\"failed ruleset test\" f=\"DONGEnergy.xml\"><rule from=\"^http://dongenergy\\.dk/\" to=\"https://www.dongenergy.dk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DPC Frontier.com\" f=\"DPC-Frontier.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DPMC.gov.au\" f=\"DPMC.xml\"><securecookie host=\"^\\.dpmc\\.gov\\.au$\" name=\"\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DR.com.tr\" default_off=\"failed ruleset test\" f=\"DR.com.tr.xml\"><securecookie host=\"^(?:.*\\.)?dr\\.com\\.tr$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?dr\\.com\\.tr/\" to=\"https://www.dr.com.tr/\"/></ruleset>", "<ruleset name=\"DR.dk\" f=\"DR.dk.xml\"><exclusion pattern=\"^http://www\\.dr\\.dk/(?:radio/.|mu/|assets/js/004/dr/elements/dist/swf/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DRG Network.com (partial)\" f=\"DRG_Network.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DRM.info\" default_off=\"mismatched\" f=\"DRM.info.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DSLReports\" f=\"DSLReports.xml\"><exclusion pattern=\"^http://www\\.dslreports\\.com/speedtest\"/><exclusion pattern=\"^http://www\\.dslreports\\.com/tools/puma6$\"/><securecookie host=\"^.*\\.dslreports\\.com$\" name=\".*\"/><rule from=\"^http://(www\\.)?broadbandreports\\.com/\" to=\"https://www.dslreports.com/\"/><rule from=\"^http://(www\\.)?dslreports\\.ca/\" to=\"https://www.dslreports.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DSNR Media Group (partial)\" default_off=\"failed ruleset test\" f=\"DSNR-Media-Group.xml\"><rule from=\"^http://ad\\.z5x\\.net/\" to=\"https://ad.rmxads.net/\"/></ruleset>", "<ruleset name=\"DS Internals.com\" f=\"DS_Internals.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DShield.org\" f=\"DShield.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DTInt.com (partial)\" default_off=\"failed ruleset test\" f=\"DTInt.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DTunnel\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"DTunnel.xml\"><securecookie host=\"^(?:.+\\.)?dtunnel\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?dtunnel\\.com/\" to=\"https://dtunnel.com/\"/></ruleset>", "<ruleset name=\"DUG.net.pl\" f=\"DUG.net.pl.xml\"><rule from=\"^http://www\\.dug\\.net\\.pl/\" to=\"https://dug.net.pl/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DVDFab.cn (partial)\" f=\"DVDFab.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DVIDS Hub.net\" f=\"DVIDS_Hub.net.xml\"><securecookie host=\"^\\.dvidshub\\.net$\" name=\".+\"/><rule from=\"^http://(www\\.)?dvidshub\\.net/\" to=\"https://$1dvidshub.net/\"/><rule from=\"^http://(?:d\\d\\.)?static\\.dvidshub\\.net/\" to=\"https://static.dvidshub.net/\"/><rule from=\"^http://(?:www\\.)?nasaimages\\.org/+\" to=\"https://www.dvidshub.net/unit/NASA\"/></ruleset>", "<ruleset name=\"DW.de (partial)\" f=\"DW.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DWCDN.net\" f=\"DWCDN.net.xml\"><securecookie host=\"^\\.dwcdn\\.net$\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dwheeler.com\" default_off=\"expired, mismatch\" f=\"DWheeler.xml\"><rule from=\"^http://(?:www\\.)?dwheeler\\.com/\" to=\"https://www.dwheeler.com/\"/></ruleset>", "<ruleset name=\"DWin1.com\" f=\"DWin1.com.xml\"><rule from=\"^http://(?:www\\.)?dwin1\\.com/\" to=\"https://www.dwin1.com/\"/></ruleset>", "<ruleset name=\"DYC.edu (mixedcontent)\" platform=\"mixedcontent\" f=\"DYC.edu-mixedcontent.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DYC.edu (partial)\" f=\"DYC.edu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DZone.com (partial)\" f=\"DZone.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"D Franke.us\" f=\"D_Franke.us.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Da.gd\" default_off=\"failed ruleset test\" f=\"Da.gd.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DaButtonFactory.com\" f=\"DaButtonFactory.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DaWanda (partial)\" f=\"DaWanda.xml\"><exclusion pattern=\"^http://(?:de|en|es|fr|it|nl|pl)\\.dawanda.com/(?!(?:account/login|cms/c/\\w\\w/seller-portal)(?:$|\\?|/)|cms/(?:image|javascript|stylesheet)s/|_pi_/|uo/|trck/|widget/)\"/><rule from=\"^http://(assets|de|en|es|fr|it|nl|pl)\\.dawanda\\.com/\" to=\"https://$1.dawanda.com/\"/><rule from=\"^http://(?:img\\.dawanda|s3[12]\\.dawandastatic)\\.com/\" to=\"https://dawandaimages.s3.amazonaws.com/\"/></ruleset>", "<ruleset name=\"Da Capo Alfine-dd.de\" f=\"Da_Capo_Alfine-dd.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dabs (partial)\" f=\"Dabs.xml\"><rule from=\"^http://(?:www\\.)?dabs\\.com/(?=account|Article\\.aspx|articles/|asp-images/|blank\\.html|(?:blog|products/recently-viewed|wishlist)(?:$|[?/])|brands/(?!$)|[cC]ss/|checkout|clearance-corner|cms/|contact/|forms/|forum/|go/|[iI]mages/|learn-more|my-dabs|register|[sS]cripts/|SimpleContent/)\" to=\"https://www.dabs.com/\"/><rule from=\"^http://reporting\\.dabs\\.com/\" to=\"https://reporting.dabs.com/\"/></ruleset>", "<ruleset name=\"daemon-systems.org\" f=\"Daemon-systems.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dafdirect.org\" default_off=\"failed ruleset test\" f=\"Dafdirect.org.xml\"><rule from=\"^http://(?:www\\.)?dafdirect\\.org/\" to=\"https://www.dafdirect.org/\"/></ruleset>", "<ruleset name=\"Dafont.com (partial)\" f=\"Dafont.com.xml\"><exclusion pattern=\"^http://(www\\.)?dafont\\.com/$\"/><rule from=\"^http://(www\\.)?dafont\\.com/img/\" to=\"https://$1dafont.com/img/\"/></ruleset>", "<ruleset name=\"Daft.ie\" f=\"Daft.ie.xml\"><securecookie host=\"^(www\\.)?daft\\.ie$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Daft Media (partial)\" f=\"Daft_Media.xml\"><rule from=\"^http://m(0|1)\\.dmlimg\\.com/\" to=\"https://m$1.dmlimg.com/\"/><rule from=\"^http://c(0|1)\\.dmstatic\\.com/\" to=\"https://c$1.dmstatic.com/\"/></ruleset>", "<ruleset name=\"Dagbladet.no (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Dagbladet.no-falsemixed.xml\"><securecookie host=\"^\\.\" name=\"^(?:_gat?$|_gat_|abByUrl)\"/><securecookie host=\"^(?!\\.dagbladet\\.no$).\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dagbladet.no (partial)\" default_off=\"failed ruleset test\" f=\"Dagbladet.no.xml\"><securecookie host=\"^\\.\" name=\"^(?:_gat?$|_gat_|abByUrl)\"/><securecookie host=\"^(?!\\.dagbladet\\.no$).\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dagens Bedste.de (partial)\" default_off=\"failed ruleset test\" f=\"Dagens_Bedste.dk.xml\"><securecookie host=\"^(?:dagensbedste|dagensgetaway|lokaldealen)-dbapp\\.netdna-ssl\\.com$\" name=\".+\"/><rule from=\"^http://([\\w-]+)\\.dbapp\\.netdna-cdn\\.com/\" to=\"https://$1-dbapp.netdna-ssl.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Daily Herald\" default_off=\"failed ruleset test\" f=\"Daily-Herald.xml\"><securecookie host=\"^.*\\.dailyherald\\.com$\" name=\".*\"/><rule from=\"^http://(classifieds\\.|prev\\.|www\\.)?dailyherald\\.com/\" to=\"https://$1dailyherald.com/\"/><rule from=\"^http://homes\\.dailyherald\\.com/$\" to=\"https://www.dailyherald.com/realestate/\"/></ruleset>", "<ruleset name=\"Daily Star (partial)\" default_off=\"failed ruleset test\" f=\"Daily-Star.xml\"><rule from=\"^http://(?:cdn\\.)?images\\.dailystar\\.co\\.uk/\" to=\"https://d1mlsq9roc275d.cloudfront.net/\"/><rule from=\"^http://(?:cdn\\.)?images\\.dailystar-uk\\.co\\.uk/\" to=\"https://d1gdw8d643djmp.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Daily\" f=\"Daily.xml\"><rule from=\"^http://(?:www\\.)?daily\\.co\\.uk/\" to=\"https://www.daily.co.uk/\"/><rule from=\"^http://(webmail)\\.daily\\.co\\.uk/\" to=\"https://$1.daily.co.uk/\"/></ruleset>", "<ruleset name=\"DailyDot.com (partial)\" platform=\"mixedcontent\" f=\"DailyDot.xml\"><securecookie host=\"^\\.dailydot\\.com$\" name=\"^__qca$\"/><rule from=\"^http://dailydot\\.com/\" to=\"https://www.dailydot.com/\"/><rule from=\"^https?://cdn0\\.dailydot\\.com/\" to=\"https://dailydot.s3.amazonaws.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DailyHiit.com\" f=\"DailyHiit.com.xml\"><securecookie host=\"^\\.dailyhiit\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DailyKos.com (problematic)\" default_off=\"mismatched\" f=\"DailyKos.com-problematic.xml\"><rule from=\"^http://images(1|2)?\\.dailykos\\.com/\" to=\"https://images$1.dailykos.com/\"/><rule from=\"^http://(?:comics|elections|labor)\\.dailykos\\.com/([cij])/\" to=\"https://www.dailykos.com/$1/\"/></ruleset>", "<ruleset name=\"DailyKos.com\" f=\"DailyKos.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DailyPix\" f=\"DailyPix.xml\"><securecookie host=\"^(?:w*\\.)?(?:dailypix\\.me|lolzparade\\.com)$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Daily Fantasy Radio\" default_off=\"failed ruleset test\" f=\"Daily_Fantasy_Radio.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Daily Mail (problematic)\" default_off=\"mismatched\" f=\"Daily_Mail-problematic.xml\"><rule from=\"^http://jobs\\.dailymail\\.co\\.uk/(cs|image)s/\" to=\"https://jobs.dailymail.co.uk/$1s/\"/></ruleset>", "<ruleset name=\"Daily Mail and General Trust\" default_off=\"mismatched\" f=\"Daily_Mail_and_General_Trust.xml\"><securecookie host=\"^dmgt\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?dmgt\\.co\\.uk/\" to=\"https://dmgt.co.uk/\"/></ruleset>", "<ruleset name=\"Daily NK.com (partial)\" f=\"Daily_NK.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Daily Star (mismatched)\" default_off=\"mismatched\" f=\"Daily_Star-problematic.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://dailystar\\.co\\.uk/\" to=\"https://www.dailystar.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dailyinfo.co.uk\" f=\"Dailyinfo.co.uk.xml\"><rule from=\"^http://(www\\.)?dailyinfo\\.co\\.uk/\" to=\"https://www.dailyinfo.co.uk/\"/></ruleset>", "<ruleset name=\"Dailymotion (default off)\" default_off=\"breaks some embedded videos\" f=\"Dailymotion.xml\"><exclusion pattern=\"^http://(?:www\\.)?dailymotion\\.com/(?:cdn/[\\w-]+/video/|crossdomain\\.xml$)\"/><securecookie host=\"^\\.dailymotion\\.com$\" name=\"^s_\\w+$\"/><securecookie host=\"^www\\.dailymotion\\.com$\" name=\".+\"/><rule from=\"^http://(erroracct\\.|www\\.)?dailymotion\\.com/\" to=\"https://$1dailymotion.com/\"/><rule from=\"^http://(s\\d|static(?:\\d|s\\d-ssl))\\.dmcdn\\.net/\" to=\"https://$1.dmcdn.net/\"/><rule from=\"^http://ak2\\.static\\.dailymotion\\.com/\" to=\"https://static1-ssl.dmcdn.net/\"/><rule from=\"^http://(s\\.|www\\.)?dmcloud\\.net/\" to=\"https://$1dmcloud.net/\"/><rule from=\"^http://support\\.dmcloud\\.net/\" to=\"https://dmcloud.zendesk.com/\"/></ruleset>", "<ruleset name=\"dakko.us (partial)\" f=\"Dakko.us.xml\"><rule from=\"^http://(www-s\\.)?dakko\\.us/\" to=\"https://$1dakko.us/\"/><rule from=\"^http://www\\.dakko\\.us/\" to=\"https://www-s.dakko.us/\"/></ruleset>", "<ruleset name=\"Dale Macartney.com\" default_off=\"expired\" f=\"Dale_Macartney.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Damballa.com (partial)\" default_off=\"failed ruleset test\" f=\"Damballa.com.xml\"><securecookie host=\"^\\.damballa\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Damn Small Linux.org\" default_off=\"expired, self-signed\" f=\"Damn_Small_Linux.org.xml\"><rule from=\"^http://(?:www\\.)?damnsmalllinux\\.org/\" to=\"https://damnsmalllinux.org/\"/></ruleset>", "<ruleset name=\"Dan Bull\" default_off=\"mismatched\" f=\"Dan-Bull.xml\"><securecookie host=\"^itsdanbull\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?itsdanbull\\.com/\" to=\"https://itsdanbull.com/\"/></ruleset>", "<ruleset name=\"dan blah.com\" f=\"DanBlah.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DanID.dk\" f=\"DanID.dk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DanceSafe.org\" f=\"DanceSafe.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dancing Astronaut (partial)\" f=\"Dancing_Astronaut.xml\"><rule from=\"^http://(static|uploads)\\.dancingastronaut\\.com/\" to=\"https://$1.dancingastronaut.com/\"/></ruleset>", "<ruleset name=\"DandB.com\" default_off=\"failed ruleset test\" f=\"DandB.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"D&B (partial)\" f=\"DandB.xml\"><rule from=\"^http://(www\\.)?dnb\\.com/(auth/|product/(?:contract\\.htm|support-files/))\" to=\"https://$1dnb.com/$2\"/></ruleset>", "<ruleset name=\"Dandwiki.com\" f=\"Dandwiki.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dangpu.com\" default_off=\"failed ruleset test\" f=\"Dangpu.com.xml\"><securecookie host=\"^\\.?dangpu\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"danhlode.com\" f=\"Danhlode.com.xml\"><securecookie host=\"^\\.danhlode\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DaniWeb.com\" f=\"DaniWeb.com.xml\"><securecookie host=\"^\\.www\\.daniweb\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Berrange.com\" f=\"Daniel-P-Berrange.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Daniel Miessler.com\" f=\"Daniel_Miessler.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Danny Mekic.com\" f=\"Danny_Mekic.com.xml\"><securecookie host=\"^(?:www)?\\.dannymekic\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Danske Bank\" f=\"DanskeBank.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DareBoost.com (partial)\" f=\"DareBoost.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Daring Fireball.net\" f=\"Daring_Fireball.xml\"><rule from=\"^http://www\\.daringfireball\\.net/\" to=\"https://daringfireball.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Darjeelin.fr\" default_off=\"failed ruleset test\" f=\"Darjeelin.fr.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DarkMoney.cc\" default_off=\"expired\" f=\"DarkMoney.cc.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dark Reading.com\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Dark_Reading.com.xml\"><securecookie host=\"^(www\\.)?darkreading\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Darkcoin Foundation.org\" f=\"Darkcoin_Foundation.org.xml\"><securecookie host=\"^www\\.darkcoinfoundation\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Darkfasel.net\" f=\"Darkfasel.net.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Darkmail.info\" f=\"Darkmail.info.xml\"><rule from=\"^http://(?:www\\.)?darkmail\\.info/\" to=\"https://www.darkmail.info/\"/></ruleset>", "<ruleset name=\"darktable.org\" f=\"Darktable.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Darling HQ.com\" default_off=\"failed ruleset test\" f=\"Darling_HQ.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Darmstadt University of Applied Sciences (partial)\" f=\"Darmstadt_University_of_Applied_Sciences.xml\"><securecookie host=\"^(?:(?:\\.?www\\.)?fbi|email|www)\\.h-da\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?h-da\\.de/\" to=\"https://www.h-da.de/\"/><rule from=\"^http://(autodiscover|(?:www\\.|webmail\\.)?fbi|email|webmail)\\.h-da\\.de/\" to=\"https://$1.h-da.de/\"/><rule from=\"^http://mail\\.h-da\\.de/(?:\\?.*)?$\" to=\"https://webmail.h-da.de/owa\"/></ruleset>", "<ruleset name=\"Dart Lang.org (partial)\" f=\"Dart_Lang.org.xml\"><securecookie host=\"^pub\\.dartlang\\.org$\" name=\".+\"/><rule from=\"^http://dartlang\\.org/\" to=\"https://www.dartlang.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dartmouth College (partial)\" f=\"Dartmouth_College.xml\"><securecookie host=\"^(?:.+\\.)?dartmouth\\.edu$\" name=\".+\"/><rule from=\"^http://((?:briefings|dimensions|library|login|tower|websso|www)\\.)?dartmouth\\.edu/\" to=\"https://$1dartmouth.edu/\"/><rule from=\"^http://arts\\.dartmouth\\.edu/\" to=\"https://dartmouth-arts.herokuapp.com/\"/><rule from=\"^http://search\\.dartmouth\\.edu/(?:.*)\" to=\"https://www.dartmouth.edu/~search/\"/></ruleset>", "<ruleset name=\"Das-labor.org\" f=\"Das-labor.org.xml\"><securecookie host=\"^(?:www\\.)?das-labor\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Das Parlament (partial)\" default_off=\"failed ruleset test\" f=\"Das_Parlament.xml\"><rule from=\"^http://www\\.das-parlament\\.de/\" to=\"https://www.das-parlament.de/\"/></ruleset>", "<ruleset name=\"bitmovin GmbH\" default_off=\"failed ruleset test\" f=\"Dash-Player.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dash.org\" f=\"Dash.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dashlane.com (partial)\" f=\"Dashlane.com.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://dashlane\\.com/\" to=\"https://www.dashlane.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dashpay.io (partial)\" default_off=\"failed ruleset test\" f=\"Dashpay.io.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dasource.ch\" default_off=\"self-signed\" f=\"Dasource.xml\"><rule from=\"^http://(?:www\\.)?dasource\\.ch/\" to=\"https://www.dasource.ch/\"/></ruleset>", "<ruleset name=\"Dassault Falcon\" f=\"Dassault_Falcon.xml\"><securecookie host=\"^.+\\.(?:dassaultfalcon|falconjet)\\.com$\" name=\".+\"/><rule from=\"^http://(?:dassaultfalcon|(?:www\\.)?falconjet)\\.com/\" to=\"https://www.dassaultfalcon.com/\"/><rule from=\"^http://(customer|insight|sqr|wtsdc|www)\\.dassaultfalcon\\.com/\" to=\"https://$1.dassaultfalcon.com/\"/><rule from=\"^http://(aht|cats|devworks|qlik|spares|thebridge|thin)\\.falconjet\\.com/\" to=\"https://$1.falconjet.com/\"/></ruleset>", "<ruleset name=\"Dassault Systèmes (partial)\" f=\"Dassault_Systemes.xml\"><exclusion pattern=\"^http://(?:www\\.)?3ds\\.com/(?!ajax/|favicon\\.ico|fileadmin/|index\\.php\\?eID=dasty_dsstore_ajax|my-account/|typo3temp/|uploads/)\"/><securecookie host=\"^iam\\.3ds\\.com$\" name=\".+\"/><rule from=\"^http://(iam\\.|www\\.)?3ds\\.com/\" to=\"https://$13ds.com/\"/><rule from=\"^http://a\\d\\.media\\.3ds\\.com/\" to=\"https://www.3ds.com/\"/></ruleset>", "<ruleset name=\"Dastelefonbuch.de\" f=\"Dastelefonbuch.de.xml\"><rule from=\"^http://www2\\.dastelefonbuch\\.de/\" to=\"https://www2.dastelefonbuch.de/\"/><rule from=\"^http://mein2\\.dastelefonbuch\\.de/\" to=\"https://mein2.dastelefonbuch.de/\"/></ruleset>", "<ruleset name=\"DatStat\" f=\"DatStat.xml\"><securecookie host=\"^www\\.datstat\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?datstat\\.com/\" to=\"https://www.datstat.com/\"/><rule from=\"^http://([\\w-]+)\\.datstathost\\.com/\" to=\"https://$1.datstathost.com/\"/></ruleset>", "<ruleset name=\"Data Design (mismatches)\" default_off=\"mismatched\" f=\"Data-Design-mismatches.xml\"><securecookie host=\"^(?:.*\\.)?webmercs\\.no$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?webmercs\\.(?:com|no)/\" to=\"https://www.webmercs.no/\"/><rule from=\"^http://img2\\.wmxstatic\\.com/\" to=\"https://img2.wmxstatic.com/\"/></ruleset>", "<ruleset name=\"Data Design (partial)\" f=\"Data-Design.xml\"><securecookie host=\"^secure\\.webmercs\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Data Protection Commissioner\" f=\"Data-Protection-Commissioner.xml\"><securecookie host=\"^(?:www\\.)?dataprotection\\.ie$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Data.com\" f=\"Data.com.xml\"><securecookie host=\"^.+\\.data\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?data\\.com/\" to=\"https://www.data.com/\"/><rule from=\"^http://(connect|(?:www\\.)?jigsaw|static)\\.data\\.com/\" to=\"https://$1.data.com/\"/></ruleset>", "<ruleset name=\"data.fm\" default_off=\"failed ruleset test\" f=\"Data.fm.xml\"><securecookie host=\".*\\.data\\.fm$\" name=\".*\"/><rule from=\"^http://data\\.fm/\" to=\"https://data.fm/\"/><rule from=\"^http://([\\w\\-_]+)\\.data\\.fm/\" to=\"https://$1.data.fm/\"/></ruleset>", "<ruleset name=\"DataCamp.com\" f=\"DataCamp.com.xml\"><securecookie host=\"^api\\.datacamp\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?datacamp\\.com/\" to=\"https://www.datacamp.com/\"/><rule from=\"^http://api\\.datacamp\\.com/\" to=\"https://api.datacamp.com/\"/></ruleset>", "<ruleset name=\"DataCell\" platform=\"mixedcontent\" f=\"DataCell.xml\"><securecookie host=\"^(?:paygate|www)\\.datacell\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?datacell\\.(?:com|is)/\" to=\"https://www.datacell.com/\"/><rule from=\"^http://paygate\\.datacell\\.com/\" to=\"https://paygate.datacell.com/\"/></ruleset>", "<ruleset name=\"DataCenterKnowledge.com (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"DataCenterKnowledge.com.xml\"><exclusion pattern=\"^http://jobs\\.datacenterknowledge\\.com/(?:$|a/)\"/><rule from=\"^http://(www\\.)?datacenterknowledge\\.com/\" to=\"https://$1datacenterknowledge.com/\"/><rule from=\"^http://jobs\\.datacenterknowledge\\.com/c/\" to=\"https://datacenterknowledge.jobamatic.com/c/\"/></ruleset>", "<ruleset name=\"Datacoup.com (partial)\" f=\"DataCoup.com.xml\"><securecookie host=\"^(?:www\\.)?datacoup\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DataDirect.com\" f=\"DataDirect.com.xml\"><securecookie host=\"^blogs\\.datadirect\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?datadirect\\.com/[^?]*\" to=\"https://www.progress.com/products/datadirect\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"data.gov.au\" f=\"DataGovAU.xml\"><rule from=\"^http://(?:www\\.)?data\\.gov\\.au/\" to=\"https://data.gov.au/\"/></ruleset>", "<ruleset name=\"dataHC.com\" f=\"DataHC.com.xml\"><rule from=\"^http://(cdn|media)\\.datahc\\.com/\" to=\"https://$1.datahc.com/\"/></ruleset>", "<ruleset name=\"DataMineLab.com (partial)\" f=\"DataMineLab.com.xml\"><securecookie host=\"^\\.dataminelab\\.com$\" name=\"^__utm\\w+$\"/><rule from=\"^http://(?:www\\.)?dataminelab\\.com/(?=favicon\\.ico|wp-content/|wp-includes/)\" to=\"https://secure.bluehost.com/~datamine/\"/></ruleset>", "<ruleset name=\"DataQuest.io\" f=\"DataQuest.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DataSavesLives.eu\" default_off=\"failed ruleset test\" f=\"DataSavesLives.eu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DataSpace.pl\" f=\"DataSpace.pl.xml\"><securecookie host=\"^(?:panel\\.|www\\.)?dataspace\\.pl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DataSphere.com (partial)\" f=\"DataSphere.com.xml\"><rule from=\"^http://oascentral\\.datasphere\\.com/\" to=\"https://oasc18.247realmedia.com/\"/></ruleset>", "<ruleset name=\"DataTables.net\" f=\"DataTables.net.xml\"><securecookie host=\"^(?:w*\\.)?datatables\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DataVantage\" f=\"DataVantage.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DataXu.com\" f=\"DataXu.xml\"><securecookie host=\"^(?:advertisers\\.|www\\.)?dataxu\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Data Center World.com (partial)\" f=\"Data_Center_World.com.xml\"><rule from=\"^http://(www\\.)?datacenterworld\\.com/(?=(?:[\\w-]+/)?wp-(?:content|includes)/)\" to=\"https://$1datacenterworld.com/\"/></ruleset>", "<ruleset name=\"Data Conservancy.org\" default_off=\"failed ruleset test\" f=\"Data_Conservancy.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Data Informed\" default_off=\"mismatched\" f=\"Data_Informed.xml\"><securecookie host=\"^data-informed\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?data-informed\\.com/\" to=\"https://data-informed.com/\"/></ruleset>", "<ruleset name=\"Database.com (problematic)\" default_off=\"mismatched\" f=\"Database.com-problematic.xml\"><rule from=\"^http://(?:(docs\\.)|www\\.)?database\\.com/\" to=\"https://$1database.com/\"/></ruleset>", "<ruleset name=\"Database.com (partial)\" f=\"Database.com.xml\"><rule from=\"^http://(autodiscover|blog|login|webmail)\\.database\\.com/\" to=\"https://$1.database.com/\"/></ruleset>", "<ruleset name=\"databits.net\" default_off=\"failed ruleset test\" f=\"Databits.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Databricks.com (partial)\" f=\"Databricks.com.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Datacard.com\" f=\"Datacard.com.xml\"><securecookie host=\"^www\\.datacard\\.com$\" name=\"\"/><rule from=\"^http://(?:www\\.)?datacard\\.com/\" to=\"https://www.datacard.com/\"/><rule from=\"^http://careers\\.datacard\\.com/\" to=\"https://careers.datacard.com/\"/></ruleset>", "<ruleset name=\"DatacentrumGids.nl\" f=\"DatacentrumGids.nl.xml\"><securecookie host=\"^(?:www)?\\.datacentrumgids\\.nl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"datacloudMail.ru\" f=\"DatacloudMail.ru.xml\"><rule from=\"^http://(cloclo\\d+|games)\\.datacloudmail\\.ru/\" to=\"https://$1.datacloudmail.ru/\"/></ruleset>", "<ruleset name=\"DatadogHQ.com (partial)\" f=\"DatadogHQ.com.xml\"><rule from=\"^http://datadoghq\\.com/\" to=\"https://www.datadoghq.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Datalogix.com (partial)\" default_off=\"failed ruleset test\" f=\"Datalogix.com.xml\"><rule from=\"^http://(?:www\\.)?datalogix\\.com/(favicon\\.ico|wp-content/|wp-includes/)\" to=\"https://www.datalogix.com/$1\"/></ruleset>", "<ruleset name=\"Datamappi.fi\" default_off=\"failed ruleset test\" f=\"Datamappi.fi.xml\"><securecookie host=\"^(?:oma|www)\\.datamappi\\.fi$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?datamappi\\.fi/\" to=\"https://www.datamappi.fi/\"/><rule from=\"^http://oma\\.datamappi\\.fi/\" to=\"https://oma.datamappi.fi/\"/></ruleset>", "<ruleset name=\"datamind.ru\" f=\"Datamind.ru.xml\"><securecookie host=\"^\\.pool\\.datamind\\.ru$\" name=\".+\"/><rule from=\"^http://sync\\.pool\\.datamind\\.ru/\" to=\"https://sync.pool.datamind.ru/\"/></ruleset>", "<ruleset name=\"Datamonitor.com (partial)\" default_off=\"522\" f=\"Datamonitor.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|__utm\\w+|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Datamonitor (partial)\" f=\"Datamonitor.xml\"><rule from=\"^http://(?:www\\.)?research-store\\.com/((?:[\\w\\-]+/)?(?:css/|images/|Library/|Purchase/Basket\\.aspx|Registration\\.aspx|skins/))\" to=\"https://www.research-store.com/$1\"/></ruleset>", "<ruleset name=\"Datamonitor Healthcare\" default_off=\"expired, mismatched\" f=\"Datamonitor_Healthcare.xml\"><rule from=\"^http://(?:www\\.)?datamonitorhealthcare\\.com/\" to=\"https://www.datamonitorhealthcare.com/\"/></ruleset>", "<ruleset name=\"Datapath.io\" f=\"Datapath.io.xml\"><securecookie host=\"^\\.datapath\\.io$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Datapipe.co.uk\" f=\"Datapipe.co.uk.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Datapipe.com (mismatches)\" default_off=\"Certificate mismatch, self-signed\" f=\"Datapipe.com-mismatches.xml\"><rule from=\"^http://(?:www\\.)?datapipe\\.cn/\" to=\"https://www.datapipe.cn/\"/><rule from=\"^http://mirror\\.datapipe\\.(?:com|net)/\" to=\"https://mirror.datapipe.com/\"/></ruleset>", "<ruleset name=\"Datapipe.com (partial)\" f=\"Datapipe.com.xml\"><exclusion pattern=\"^http://go\\.datapipe\\.com/(?!l/)\"/><securecookie host=\"^(?:.+\\.)?datapipe\\.com$\" name=\".+\"/><rule from=\"^http://go\\.datapipe\\.com/\" to=\"https://pi.pardot.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Datared.dk\" default_off=\"failed ruleset test\" f=\"Datared.dk.xml\"><rule from=\"^http://(?:www\\.)?datared\\.dk/\" to=\"https://datared.dk/\"/></ruleset>", "<ruleset name=\"Datasheet Catalog.com\" default_off=\"expired, self-signed\" f=\"Datasheet_Catalog.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Datatilsynet\" f=\"Datatilsynet.xml\"><rule from=\"^http://(?:www\\.)?datatilsynet\\.no/\" to=\"https://www.datatilsynet.no/\"/><rule from=\"^http://(?:www\\.)?slettmeg\\.no/\" to=\"https://slettmeg.no/\"/></ruleset>", "<ruleset name=\"Datemas.de (partial)\" f=\"Datemas.de.xml\"><securecookie host=\"^web\\.datemas\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Datenschutz-ist-Buergerrecht.de\" default_off=\"refused\" f=\"Datenschutz-ist-Burgerrecht.xml\"><securecookie host=\"^(?:www)?\\.datenschutz-ist-buergerrecht\\.de$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Datenspuren.de\" f=\"Datenspuren.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DaumCDN.net (partial)\" f=\"DaumCDN.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Duam.net (partial)\" f=\"Daum_Communications.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"David-Campbell.org\" f=\"David-Campbell.org.xml\"><securecookie host=\"^(?:www\\.)?david-campbell\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"David Tisch\" default_off=\"mismatched\" f=\"David-Tisch.xml\"><rule from=\"^http://(?:www\\.)?davidtisch\\.com/\" to=\"https://www.davidtisch.com/\"/></ruleset>", "<ruleset name=\"David Gold\" default_off=\"mismatched\" f=\"David_Gold.xml\"><rule from=\"^http://(?:www\\.)?davidgold\\.co\\.uk/\" to=\"https://www.davidgold.co.uk/\"/></ruleset>", "<ruleset name=\"David Lazar.org\" default_off=\"failed ruleset test\" f=\"David_Lazar.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"David Sopas.com\" f=\"David_Sopas.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Davidson Tutoring (false MCB)\" platform=\"mixedcontent\" f=\"Davidson_Tutoring.com-falsemixed.xml\"><securecookie host=\"^(?:www)?\\.davidsontutoring\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?davidsontutoring\\.com/(?!assets/|favicon\\.ico)\" to=\"https://www.davidsontutoring.com/\"/></ruleset>", "<ruleset name=\"Davidson Tutoring (partial)\" f=\"Davidson_Tutoring.com.xml\"><rule from=\"^http://(?:www\\.)?davidsontutoring\\.com/(?=assets/|favicon\\.ico)\" to=\"https://www.davidsontutoring.com/\"/></ruleset>", "<ruleset name=\"Davinci Vaporizor\" f=\"Davinci_Vaporizor.xml\"><securecookie host=\"^\\.davincivaporizer\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DavisSystem\" f=\"DavisSystem.xml\"><securecookie host=\"^\\.davissystem\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Davis Instruments (partial)\" f=\"Davis_Instruments.xml\"><rule from=\"^http://(?:www\\.)?davis\\.com/((?:combres\\.axd|icons|images|includes|SiteAssets|Account-Profile|Forgot-Password|login|Register)(?:$|\\?|/))\" to=\"https://www.davis.com/$1/\"/><rule from=\"^http://static\\.davis\\.com/\" to=\"https://duaawgxv85i1i.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Davpack.co.uk\" f=\"Davpack.co.uk.xml\"><rule from=\"^http://(?:www\\.)?davpack\\.co\\.uk/(?=(?:checkout|Signin)\\.aspx|favicon\\.ico|(?:Script|Web)Resource\\.axd)\" to=\"https://www.davpack.co.uk/\"/></ruleset>", "<ruleset name=\"DawatEIslami.net\" f=\"DawatEIslami.net.xml\"><securecookie host=\"^(www|data2)\\.dawateislami\\.net$\" name=\".+\"/><rule from=\"^http://dawateislami\\.net/\" to=\"https://www.dawateislami.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dawsonera.com\" f=\"Dawsonera.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DayZ.com\" f=\"DayZ.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DbackPolice.com\" default_off=\"refused\" f=\"DbackPolice.com.xml\"><securecookie host=\"^\\.(?:www\\.)?dbackpolice\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dbrgn.ch\" f=\"Dbrgn.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dditscdn.com\" default_off=\"failed ruleset test\" f=\"Dditscdn.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"De-Captcher.com\" f=\"De-Captcher.com.xml\"><securecookie host=\"^de-captcher\\.com$\" name=\".+\"/><rule from=\"^http://www\\.de-captcher\\.com/\" to=\"https://de-captcher.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"De-Centralize.com\" default_off=\"expired, mismatched\" platform=\"mixedcontent\" f=\"De-Centralize.com.xml\"><rule from=\"^http://(?:www\\.)?de-centralize\\.com/\" to=\"https://www.de-centralize.com/\"/></ruleset>", "<ruleset name=\"De17a.com\" f=\"De17a.com.xml\"><securecookie host=\"^\\.de17a\\.com$\" name=\".+\"/><rule from=\"^http://de17a\\.com/\" to=\"https://de17a.com/\"/></ruleset>", "<ruleset name=\"DeSmuME.org\" f=\"DeSmuME.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"De Bekijkerie.nl\" f=\"De_Bekijkerie.nl.xml\"><rule from=\"^http://(?:www\\.)?debekijkerie\\.nl/\" to=\"https://www.debekijkerie.nl/\"/></ruleset>", "<ruleset name=\"De Correspondent.nl\" f=\"De_Correspondent.nl.xml\"><securecookie host=\"^decorrespondent\\.nl$\" name=\".+\"/><rule from=\"^http://((?:dynamic|static|www)\\.)?decorrespondent\\.nl/\" to=\"https://$1decorrespondent.nl/\"/></ruleset>", "<ruleset name=\"De Digitale Topschool.nl\" f=\"De_Digitale_Topschool.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"de Silva.biz\" default_off=\"missing certificate chain\" f=\"De_Silva.biz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Deaconess Health System\" f=\"Deaconess-Health-System.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://deaconess\\.com/\" to=\"https://www.deaconess.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dead Drops.com\" f=\"Dead_Drops.com.xml\"><securecookie host=\"^(?:www\\.)?deaddrops\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Deadline.com (partial)\" f=\"Deadline.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Deadspin.com\" f=\"Deadspin.com.xml\"><exclusion pattern=\"^http://(?:[^./]+\\.){2,}deadspin\\.com/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http://cache\\.deadspin\\.com/\" to=\"https://cache.gawkerassets.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Deakin University (partial)\" platform=\"mixedcontent\" f=\"Deakin-University.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Deal Extreme\" platform=\"mixedcontent\" f=\"DealExtreme.xml\"><securecookie host=\"^.*\\.d(?:ealextreme|x)\\.com$\" name=\".+\"/><rule from=\"^http://((?:club|e|m|www)\\.)?dealextreme\\.com/\" to=\"https://$1dealextreme.com/\"/><rule from=\"^http://((?:cart|club|cs|deals|e|passport|s|www)\\.)?dx\\.com/\" to=\"https://$1dx.com/\"/><rule from=\"^http://img\\.dxcdn\\.com/\" to=\"https://img.dxcdn.com/\"/></ruleset>", "<ruleset name=\"DealTime (partial)\" f=\"DealTime.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gator Chrysler.net\" default_off=\"mismatched, self-signed\" f=\"Dealer.com-mismatches.xml\"><securecookie host=\"^www\\.gatorchrysler\\.net$\" name=\".*\"/><rule from=\"^http://gatorchrysler\\.net/\" to=\"https://www.gatorchrysler.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dealer.com (partial)\" f=\"Dealer.com.xml\"><securecookie host=\"^(?:apps|cdn)\\.dealer\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DealerFire (partial)\" f=\"DealerFire.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DealerRater.com (partial)\" f=\"DealerRater.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?dealerrater\\.com/+(?:$|\\?)\"/><rule from=\"^http://(www\\.)?dealerrater\\.com/\" to=\"https://$1dealerrater.com/\"/><rule from=\"^http://cdn-static\\.dealerrater\\.com/\" to=\"https://d3go5n7g2hd1g0.cloudfront.net/\"/><rule from=\"^http://cdn-user\\.dealerrater\\.com/\" to=\"https://d17jk93jbxi6p4.cloudfront.net/\"/></ruleset>", "<ruleset name=\"DealerTrend.com (partial)\" f=\"DealerTrend.com.xml\"><rule from=\"^http://images\\.dealertrend\\.com/\" to=\"https://s3.amazonaws.com/images.dealertrend.com/\"/></ruleset>", "<ruleset name=\"Dealfish.co.th\" default_off=\"failed ruleset test\" f=\"Dealfish.co.th.xml\"><rule from=\"^http://(?:www\\.)?dealfish\\.co\\.th/\" to=\"https://www.dealfish.co.th/\"/></ruleset>", "<ruleset name=\"dealnews.com (partial)\" f=\"Dealnews.com.xml\"><exclusion pattern=\"^http://dealnews\\.com/+(?!mydealnews(?:$|[?/]))\"/><rule from=\"^http://content\\.dealnews\\.com/\" to=\"https://dealnews.a.ssl.fastly.net/\"/><rule from=\"^http://images\\.dealnews\\.com/\" to=\"https://dealnews.a.ssl.fastly.net/images/\"/><rule from=\"^http://static\\.dealnews\\.com/\" to=\"https://dealnews.a.ssl.fastly.net/static/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DEA.com (partial)\" default_off=\"failed ruleset test\" f=\"Dean-Evans-and-Associates.xml\"><exclusion pattern=\"^http://pages\\.dea\\.com/(?!/*(?:$|\\?|css/|images/|rs/))\"/><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^(?!pages\\.)\\w\" name=\".\"/><rule from=\"^http://dea\\.com/\" to=\"https://www.dea.com/\"/><rule from=\"^http://pages\\.dea\\.com/+(?:\\?.*)?$\" to=\"https://www.dea.com/\"/><rule from=\"^http://pages\\.dea\\.com/\" to=\"https://na-ab04.marketo.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DearBytes.com\" f=\"DearBytes.com.xml\"><securecookie host=\"^\\.(?:www\\.)?dearbytes\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Deater.Net\" default_off=\"mismatched\" f=\"Deater.Net.xml\"><rule from=\"^http://(?:www\\.)?deater\\.net/\" to=\"https://deater.net/\"/></ruleset>", "<ruleset name=\"DeathMask.net\" default_off=\"expired, mismatch, self-signed\" f=\"DeathMask.net.xml\"><rule from=\"^http://(?:www\\.)?deathmask\\.net/\" to=\"https://www.deathmask.net/\"/><rule from=\"^http://([^w]\\w+)\\.deathmask\\.net/\" to=\"https://$1.deathmask.net/\"/></ruleset>", "<ruleset name=\"Deb.li\" f=\"Deb.li.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DebConf.org (partial)\" default_off=\"self-signed\" f=\"DebConf.org-self-signed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DebConf.org\" f=\"DebConf.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Debian-Administration.org\" f=\"Debian-Administration.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Debian-Facile.org\" f=\"Debian-Facile.org.xml\"><rule from=\"^http://www\\.debian-facile\\.org/\" to=\"https://debian-facile.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Debian-fr.org\" f=\"Debian-fr.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://wiki\\.debian-fr\\.org/+\" to=\"https://www.isalo.org/wiki.debian-fr/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Debian.net (partial)\" f=\"Debian.net.xml\"><rule from=\"^http://meetings-archive\\.debian\\.net/\" to=\"https://ftp.acc.umu.se/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Debian.org (problematic)\" default_off=\"mismatched, self-signed\" f=\"Debian.org-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Debian.org (partial)\" f=\"Debian.xml\"><exclusion pattern=\"^http://security\\.debian\\.org/+(?!$|\\?)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://security\\.debian\\.org/+\" to=\"https://www.debian.org/security/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"debianforum.de\" f=\"Debianforum.de.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Debuggable (partial)\" f=\"Debuggable.xml\"><rule from=\"^http://www(-eleni|-eric)?\\.transloadit\\.com/\" to=\"https://www$1.transloadit.com/\"/><rule from=\"^http://transloadit\\.com/(accounts/forgot_pw|img/|login|mediaelement/|signup)\" to=\"https://transloadit.com/$1\"/></ruleset>", "<ruleset name=\"Debuggex.com\" default_off=\"failed ruleset test\" f=\"Debuggex.com.xml\"><securecookie host=\"^(?:www\\.)?debuggex\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Debuggify.net\" default_off=\"521\" f=\"Debuggify.net.xml\"><securecookie host=\"^\\.debuggify\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Decadent.org.uk\" f=\"Decadent.org.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Decdna.net\" default_off=\"failed ruleset test\" f=\"Decdna.net.xml\"><rule from=\"^http://(na|(eu\\.link))\\.decdna\\.net/\" to=\"https://$1.decdna.net/\"/></ruleset>", "<ruleset name=\"Deciduous Press.com.au\" f=\"Deciduous_Press.com.au.xml\"><securecookie host=\"^\\.deciduouspress\\.com\\.au$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Decipher Inc.com\" f=\"Decipher_Inc.com.xml\"><securecookie host=\"^v2\\.decipherinc\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?decipherinc\\.com/\" to=\"https://$1decipherinc.com/\"/><rule from=\"^http://(?:static|v2)\\.decipherinc\\.com/\" to=\"https://v2.decipherinc.com/\"/></ruleset>", "<ruleset name=\"DecisionBriefs\" f=\"DecisionBriefs.xml\"><securecookie host=\"^(?:.+\\.)?decisionbriefs\\.com$\" name=\".+\"/><rule from=\"^http://((?:core|partners|www)\\.)?decisionbriefs\\.com/\" to=\"https://$1decisionbriefs.com/\"/></ruleset>", "<ruleset name=\"DecisionKey\" f=\"DecisionKey.xml\"><securecookie host=\"^www\\.npddecisionkey\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?npddecisionkey\\.com/\" to=\"https://www.npddecisionkey.com/\"/></ruleset>", "<ruleset name=\"Declaration of Russian Hosting Providers\" default_off=\"failed ruleset test\" f=\"Declaration-of-Russian-Hosting-Providers.xml\"><rule from=\"^http://(?:www\\.)?hostdeclaration\\.ru/\" to=\"https://hostdeclaration.ru/\"/></ruleset>", "<ruleset name=\"Deco.proteste.pt\" f=\"Deco.proteste.pt.xml\"><rule from=\"^http://(?:www\\.)?deco\\.proteste\\.pt/\" to=\"https://www.deco.proteste.pt/\"/></ruleset>", "<ruleset name=\"Decrypt CryptoLocker.com\" default_off=\"failed ruleset test\" f=\"Decrypt_CryptoLocker.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Decrypted Matrix.com\" f=\"Decrypted_Matrix.com.xml\"><securecookie host=\"^\\.decryptedmatrix\\.com$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dedicated Gaming\" f=\"Dedicated_Gaming.xml\"><securecookie host=\"^(?:myaccount)?\\.dedicatedgaming.com.au$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dedikuoti.lt\" f=\"Dedikuoti.lt.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dediserve.com (partial)\" f=\"Dediserve.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"deekayen.net\" default_off=\"failed ruleset test\" f=\"Deekayen.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DeepDyve\" f=\"DeepDyve.xml\"><securecookie host=\"^www\\.deepdyve\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DeepField Networks\" default_off=\"mismatched\" f=\"DeepField-Networks.xml\"><rule from=\"^http://(?:www\\.)?deepfield\\.net/\" to=\"https://www.deepfield.net/\"/><rule from=\"^http://blog\\.deepfield\\.net/\" to=\"https://www.deepfield.net/\"/></ruleset>", "<ruleset name=\"DeepSec.net (partial)\" f=\"DeepSec.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Deep Dot Web.com\" f=\"Deep_Dot_Web.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Deep Politics Forum.com\" f=\"Deep_Politics_Forum.com.xml\"><securecookie host=\"^(?:www\\.)?deeppoliticsforum\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Deepin (partial)\" f=\"Deepin.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Deezer.com (Buggy)\" default_off=\"breaks left-hand navigation bar links\" f=\"Deezer.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Defcon.RU\" f=\"Defcon.RU.xml\"><securecookie host=\"^defcon\\.ru$\" name=\".+\"/><rule from=\"^http://www\\.defcon\\.ru/\" to=\"https://defcon.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Defective By Design.org\" f=\"Defectivebydesign.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DFRDB.gov.au\" f=\"DefenceForceRetirementandDeathBenefitsScheme.xml\"><securecookie host=\"^(?:\\.|www\\.)?dfrdb\\.gov\\.au$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DHA.gov.au\" f=\"DefenceHousingAustralia.xml\"><securecookie host=\"^invest\\.dha\\.gov\\.au$\" name=\".+\"/><rule from=\"^http://www\\.invest\\.dha\\.gov\\.au/\" to=\"https://invest.dha.gov.au/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Defense Industry Daily.com (partial)\" f=\"Defense_Industry_Daily.xml\"><securecookie host=\"^(?:\\.|www\\.)?defenseindustrydaily\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Defense Nuclear Facilities Safety Board\" default_off=\"mismatched\" f=\"Defense_Nuclear_Facilities_Safety_Board.xml\"><securecookie host=\"^\\.dnfsb\\.gov$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Defense One.com (partial)\" f=\"Defense_One.com.xml\"><securecookie host=\"^\\.defenseone\\.com$\" name=\"^s_\\w+$\"/><rule from=\"^http://metrics\\.defenseone\\.com/\" to=\"https://atlanticmedia.122.2o7.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Defer Panic.com\" f=\"Defer_Panic.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Defora.org\" default_off=\"untrusted root\" f=\"Defora.org.xml\"><rule from=\"^http://defora\\.org/\" to=\"https://www.defora.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Defra.gov.uk (partial)\" f=\"Defra.gov.uk.xml\"><exclusion pattern=\"^http://secure\\.fera\\.defra\\.gov\\.uk/$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Defsounds.com\" default_off=\"refused\" f=\"Defsounds.xml\"><securecookie host=\"^\\.defsounds\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Deichmann.com\" f=\"Deichmann.com.xml\"><rule from=\"^http://(www\\.)?deichmann\\.com/\" to=\"https://www.deichmann.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Deimos.fr\" f=\"Deimos.fr.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dein.dk\" default_off=\"failed ruleset test\" f=\"Dein.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Deis.com\" f=\"Deis.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Delaware Online (partial)\" f=\"Delaware_Online.xml\"><securecookie host=\"^www\\.delawareonline\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?delawareonline\\.com/\" to=\"https://www.delawareonline.com/\"/></ruleset>", "<ruleset name=\"Delaware Technical Community College (partial)\" f=\"Delaware_Technical_Community_College.xml\"><rule from=\"^http://(?:www\\.)?dtcc\\.edu/\" to=\"https://www.dtcc.edu/\"/><rule from=\"^http://(?:www\\.)?login\\.dtcc\\.edu/\" to=\"https://login.dtcc.edu/\"/></ruleset>", "<ruleset name=\"Delaware Today.com (partial)\" f=\"Delaware_Today.com.xml\"><rule from=\"^http://(www\\.)?delawaretoday\\.com/(?=[\\w-]+\\.png|core/|_delaware_rad/|favicon\\.ico|images/)\" to=\"https://$1delawaretoday.com/\"/></ruleset>", "<ruleset name=\"Delfogo Rx\" f=\"Delfogo_Rx.xml\"><securecookie host=\"^delfogo\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?delfogo\\.com/\" to=\"https://delfogo.com/\"/></ruleset>", "<ruleset name=\"Delft University of Technology (mismatches)\" default_off=\"mismatched\" f=\"Delft-University-of-Technology-mismatches.xml\"><rule from=\"^http://faq\\.weblog\\.tudelft\\.nl/\" to=\"https://faq.weblog.tudelft.nl/\"/></ruleset>", "<ruleset name=\"Delft University of Technology (partial)\" f=\"Delft-University-of-Technology.xml\"><securecookie host=\"^\\w+\\.tudelft\\.nl$\" name=\".*\"/><rule from=\"^http://(intranet|netid|weblog)\\.tudelft\\.nl/\" to=\"https://$1.tudelft.nl/\"/></ruleset>", "<ruleset name=\"Delicious Green Coffee.com\" default_off=\"failed ruleset test\" f=\"Delicious_Green_Coffee.com.xml\"><securecookie host=\"^(?:w*\\.)?deliciousgreencoffee\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Delico.se\" f=\"Delico.se.xml\"><rule from=\"^http://www\\.delico\\.se/\" to=\"https://www.delico.se/\"/><rule from=\"^http://delico\\.se/\" to=\"https://delico.se/\"/></ruleset>", "<ruleset name=\"Delish (partial)\" default_off=\"mismatched\" f=\"Delish.xml\"><rule from=\"^http://(?:www\\.)?delish\\.com/\" to=\"https://delish.com/\"/><rule from=\"^http://answerology\\.delish\\.com/\" to=\"https://answerology.delish.com/\"/></ruleset>", "<ruleset name=\"Deliver2\" f=\"Deliver2.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Deliveras.gr\" default_off=\"missing certificate chain\" f=\"Deliveras.gr.xml\"><securecookie host=\"^(?:www\\.)?deliveras\\.gr$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"delivery.com\" f=\"Delivery.com.xml\"><securecookie host=\"^www\\.delivery\\.com$\" name=\"\"/><rule from=\"^http://(?:www\\.)?delivery\\.com/\" to=\"https://www.delivery.com/\"/></ruleset>", "<ruleset name=\"Dell.com (false MCB)\" platform=\"mixedcontent\" f=\"Dell.com-falsemixed.xml\"><rule from=\"^http://(?:www\\.)?dell\\.com/(?!content/|favicon\\.ico)\" to=\"https://www.dell.com/\"/></ruleset>", "<ruleset name=\"Dell.com (partial)\" f=\"Dell.xml\"><exclusion pattern=\"^http://(?:www\\.)?dell\\.com/+(?!content/|favicon\\.ico)\"/><exclusion pattern=\"^http://partnerdirect\\.dell\\.com/(?!sites/channel/(?:Documents/|Style\\ Library/|\\w\\w_\\w\\w/pages/loginpage\\.aspx))\"/><exclusion pattern=\"^http://afcs\\.dell\\.com/support/article/static/\"/><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://(?:www-cdn\\.)?dell\\.com/\" to=\"https://www.dell.com/\"/><rule from=\"^http://i\\.dell\\.com/\" to=\"https://si.cdn.dell.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Delta.com\" default_off=\"failed ruleset test\" f=\"Delta.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Delta.no\" f=\"Delta.no.xml\"><securecookie host=\"^(?:www\\.)?delta\\.no$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Deltager.no\" f=\"Deltager.no.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Deluge-torrent.org\" default_off=\"refused\" f=\"Deluge.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.deluge-torrent\\.org/\" to=\"https://deluge-torrent.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Delvenetworks.com\" f=\"Delvenetworks.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DemWorks.org\" f=\"DemWorks.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Demandbase.com (partial)\" default_off=\"failed ruleset test\" f=\"Demand-Base.xml\"><securecookie host=\"^(?:.*\\.)?demandbase\\.com$\" name=\".*\"/><rule from=\"^http://demandbase\\.com/\" to=\"https://www.demandbase.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Demand Media (mismatches)\" default_off=\"mismatched\" f=\"Demand-Media-mismatches.xml\"><securecookie host=\"^blog\\.golflink\\.com$\" name=\".+\"/><securecookie host=\"^(?:.*\\.)?(?:trails|typef)\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?blogburst\\.com/\" to=\"https://blogburst.com/\"/><rule from=\"^http://i\\.crackedcdn\\.com/\" to=\"https://i.crackedcdn.com/\"/><rule from=\"^http://ir\\.demandmedia\\.com/\" to=\"https://ir.demandmedia.com/\"/><rule from=\"^http://create\\.demandstudios\\.com/\" to=\"https://create.demandstudios.com/\"/><rule from=\"^http://blog\\.golflink\\.com/\" to=\"https://blog.golflink.com/\"/><rule from=\"^http://(?:(?:cdn-)?www\\.)?t(rails|ypef)\\.com/\" to=\"https://www.t$1.com/\"/></ruleset>", "<ruleset name=\"Demand Media (partial)\" default_off=\"failed ruleset test\" f=\"Demand-Media.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"demand-driver.com\" f=\"Demand-driver.com.xml\"><securecookie host=\"^(?:www\\.)?demand-driver\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Demand Progress\" f=\"DemandProgress.org.xml\"><securecookie host=\"^(?:act)?\\.demandprogress\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Demandware.com (mismatches)\" default_off=\"mismatched\" platform=\"mixedcontent\" f=\"Demandware-mismatches.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Demandware.net (partial)\" f=\"Demandware.net.xml\"><rule from=\"^http://sits-pod(\\d+)\\.demandware\\.net/\" to=\"https://sits-pod$1.demandware.net/\"/></ruleset>", "<ruleset name=\"Demandware.com (partial)\" default_off=\"failed ruleset test\" f=\"Demandware.xml\"><exclusion pattern=\"^http://investors\\.demandware\\.com/(?!/*(?:client|media_files)/)\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http://investors\\.demandware\\.com/\" to=\"https://phx.corporate-ir.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Demdex.com (partial)\" f=\"Demdex.com.xml\"><securecookie host=\".*\\.demdex\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Demdex.net\" f=\"Demdex.net.xml\"><securecookie host=\".*\\.demdex\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Demisexuality.org\" f=\"Demisexuality.org.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Demisto.com\" default_off=\"failed ruleset test\" f=\"Demisto.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DemocracyNow.org (partial)\" f=\"DemocracyNow.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Democrat and Chronicle (partial)\" f=\"Democrat_and_Chronicle.xml\"><securecookie host=\".*\\.democratandchronicle\\.com$\" name=\".+\"/><rule from=\"^http://(?:cmsimg\\.|www\\.)?democratandchronicle\\.com/\" to=\"https://www.democratandchronicle.com/\"/><rule from=\"^http://(classifieds|closings|meetthebabies|offers|roctoday)\\.democratandchronicle\\.com/\" to=\"https://$1.democratandchronicle.com/\"/><rule from=\"^http://findnsave\\.democratandchronicle\\.com/static/\" to=\"https://democratchronicle.findnsave.com/static/\"/><rule from=\"^http://localshopping\\.democratandchronicle\\.com/Content/\" to=\"https://localshopping.shoplocal.com/Content/\"/></ruleset>", "<ruleset name=\"Democrats.org\" f=\"Democrats.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Demonii.com\" f=\"Demonii.com.xml\"><securecookie host=\"^\\.demonii\\.com$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Demonoid\" f=\"Demonoid.xml\"><rule from=\"^https?://(www\\.)?demonoid\\.ph/\" to=\"https://$1demonoid.pw/\"/><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"demonsaw.com (partial)\" f=\"Demonsaw.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Demos.ru (partial)\" f=\"Demos.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Denfri.dk\" default_off=\"failed ruleset test\" f=\"Denfri.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dengisend.ru\" f=\"Dengisend.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Denh.am\" f=\"Denh.am.xml\"><rule from=\"^http://([^/:@\\.]+\\.)?denh\\.am/\" to=\"https://$1denh.am/\"/></ruleset>", "<ruleset name=\"Denic.de\" default_off=\"failed ruleset test\" f=\"Denic.de.xml\"><securecookie host=\"^(www\\.)?(secure\\.)?denic\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Denik.cz (partial)\" f=\"Denik.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Denis Matsuev\" default_off=\"failed ruleset test\" f=\"Denis_Matsuev.xml\"><securecookie host=\"^\\.matsuev\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dennikn.sk\" f=\"Dennikn.sk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"denpa.moe\" default_off=\"failed ruleset test\" f=\"Denpa.moe.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DENSO WAVE\" f=\"Denso_Wave.xml\"><securecookie host=\"^www\\.denso-wave\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?denso-wave\\.com/\" to=\"https://www.denso-wave.com/\"/></ruleset>", "<ruleset name=\"DepFile.com\" f=\"DepFile.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Department of Education\" f=\"DepartmentofEducation.xml\"><rule from=\"^http://(?:www\\.)?education\\.gov\\.au/\" to=\"https://www.education.gov.au/\"/></ruleset>", "<ruleset name=\"Department of Employment\" f=\"DepartmentofEmployment.xml\"><rule from=\"^http://((?:www|ministers)\\.)?employment\\.gov\\.au/\" to=\"https://$1employment.gov.au/\"/></ruleset>", "<ruleset name=\"Department of Foreign Affairs and Trade\" default_off=\"failed ruleset test\" f=\"DepartmentofForeignAffairsandTrade.xml\"><rule from=\"^http://(?:www\\.)?dfat\\.gov\\.au/\" to=\"https://www.dfat.gov.au/\"/><rule from=\"^http://(?:www\\.)?orao\\.dfat\\.gov\\.au/\" to=\"https://www.orao.dfat.gov.au/\"/></ruleset>", "<ruleset name=\"Department of Infrastructure and Regional Development\" f=\"DepartmentofInfrastructureandRegionalDevelopment.xml\"><rule from=\"^http://(?:www\\.)?infrastructure\\.gov\\.au/\" to=\"https://www.infrastructure.gov.au/\"/></ruleset>", "<ruleset name=\"Dephormation.org.uk\" f=\"Dephormation.org.uk.xml\"><rule from=\"^http://(?:www\\.)?dephormation\\.org\\.uk/\" to=\"https://www.dephormation.org.uk/\"/></ruleset>", "<ruleset name=\"Depkatalog.no\" f=\"Depkatalog.no.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Deposit Files (partial)\" f=\"Deposit-Files.xml\"><securecookie host=\"^(?:.*\\.)?depositfiles\\.com$\" name=\".*\"/><rule from=\"^http://(static\\d+\\.|www\\.)?depositfiles\\.com/\" to=\"https://$1depositfiles.com/\"/><rule from=\"^http://(?:ads|img3|ssl3)\\.depositfiles\\.com/\" to=\"https://ssl3.depositfiles.com/\"/></ruleset>", "<ruleset name=\"DepositProtection.com\" f=\"DepositProtection.xml\"><securecookie host=\".\\.depositprotection\\.com$\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"depressionforums.org\" platform=\"mixedcontent\" f=\"Depressionforums.org.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"deprexis (partial)\" default_off=\"failed ruleset test\" f=\"Deprexis.xml\"><securecookie host=\"^.*\\.deprexis\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Deprogressive.dk\" f=\"Deprogressive.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Der Sächsische Datenschutzbeauftragte\" f=\"Der-Saechsische-Datenschutzbeauftragte.xml\"><securecookie host=\"^(?:www\\.)?saechsdsb\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"der-preis-jaeger.de\" default_off=\"failed ruleset test\" f=\"Der-preis-jaeger.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Der Keiler.com (partial)\" f=\"Der_Keiler.com.xml\"><rule from=\"^http://cdn\\.derkeiler\\.com/\" to=\"https://d30uw9rfekksi5.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Derby.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"Derby.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Derpibooru\" default_off=\"failed ruleset test\" f=\"Derpibooru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"derpy.me\" default_off=\"failed ruleset test\" f=\"Derpy.me.xml\"><securecookie host=\"^derpy\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DersVerilir.net\" f=\"DersVerilir.net.xml\"><securecookie host=\"^\\.dersverilir\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Derwesten.de\" f=\"Derwesten.de.xml\"><rule from=\"^http://(?:www\\.)?derwesten\\.de/\" to=\"https://www.derwesten.de/\"/><rule from=\"^http://(files1|shop)\\.derwesten\\.de/\" to=\"https://$1.derwesten.de/\"/></ruleset>", "<ruleset name=\"Desert News (partial)\" f=\"Desert_News.xml\"><exclusion pattern=\"^http://(?:www\\.)?desertnews\\.com/(?!css/|favicon\\.ico|images/|img/|js/|logo\\.gif|media/|misc/)\"/><exclusion pattern=\"^http://subscribe\\.desertnews\\.com/(?!css/|favicon\\.ico|images/|script/)\"/><rule from=\"^http://((?:static|subscribe|www)\\.)?desertnews\\.com/\" to=\"https://$1desertnews.com/\"/></ruleset>", "<ruleset name=\"Desertory Media\" default_off=\"self-signed\" f=\"Desertory_Media.xml\"><rule from=\"^http://(?:www\\.)?desertory\\.de/\" to=\"https://desertory.de/\"/></ruleset>", "<ruleset name=\"DesignAddict\" default_off=\"failed ruleset test\" f=\"DesignAddict.xml\"><securecookie host=\"^(?:.*\\.)?(?:designaddict\\.com|generationawake\\.eu)$\" name=\".+\"/><rule from=\"^http://(www\\.)?(designaddict\\.com|generationawake\\.eu)/\" to=\"https://$1$2/\"/></ruleset>", "<ruleset name=\"Designer News.co\" f=\"Designer_News.co.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://designernews\\.co/\" to=\"https://www.designernews.co/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Designova.net\" default_off=\"failed ruleset test\" f=\"Designova.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Desire2learn.com\" f=\"Desire2learn.com.xml\"><securecookie host=\"^(?:.*\\.)?desire2learn\\.com$\" name=\".+\"/><rule from=\"^http://((?:community|lmscloud\\.edev|pt\\.valence|www)\\.)?desire2learn\\.com/\" to=\"https://$1desire2learn.com/\"/></ruleset>", "<ruleset name=\"Desjardins (partial)\" f=\"Desjardins.xml\"><securecookie host=\"desjardins\\.com$\" name=\".+\"/><securecookie host=\"accesd\\.desjardins\\.com$\" name=\".+\"/><securecookie host=\"accesd\\.affaires\\.desjardins\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?desjardins\\.com/\" to=\"https://www.desjardins.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Desk.com\" default_off=\"failed ruleset test\" f=\"Desk.com.xml\"><rule from=\"^http://(www\\.)?assistly\\.com/\" to=\"https://$1assistly.com/\"/><rule from=\"^http://assets\\d\\.assistly\\.com/\" to=\"https://d1epb5gzmg3005.cloudfront.net/\"/><rule from=\"^http://webassets\\.assistly\\.com/\" to=\"https://dwan8j4vneaa7.cloudfront.net/\"/><rule from=\"^http://(?:www\\.)?desk\\.com/\" to=\"https://www.desk.com/\"/><rule from=\"^http://assets(?:[0-3]|0[1-4])?\\.desk\\.com/\" to=\"https://d218iqt4mo6adh.cloudfront.net/\"/><rule from=\"^http://webassets\\.desk\\.com/\" to=\"https://d3e6ejlgd1t9v1.cloudfront.net/\"/><rule from=\"^http://([\\w-]+)\\.desk\\.com/\" to=\"https://$1.desk.com/\"/></ruleset>", "<ruleset name=\"Desktop Summit.org\" f=\"Desktop_Summit.org.xml\"><securecookie host=\"^\\.desktopsummit\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Despora.de\" f=\"Despora.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dessaly.com\" f=\"Dessaly.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Destroy All Software.com\" f=\"Destroy_All_Software.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Destructoid\" f=\"Destructoid.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Desura (partial)\" f=\"Desura.xml\"><rule from=\"^http://s(?:ecure|tatic)\\.desura\\.com/\" to=\"https://secure.desura.com/\"/></ruleset>", "<ruleset name=\"Desy.de (partial)\" default_off=\"failed ruleset test\" f=\"Desy.de.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://desy\\.de/\" to=\"https://www.desy.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Details.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Details.com-falsemixed.xml\"><rule from=\"^http://wp-poc\\.details\\.com/\" to=\"https://wp-poc.details.com/\"/></ruleset>", "<ruleset name=\"Details (partial)\" f=\"Details.xml\"><exclusion pattern=\"^http://(?:www\\.)?details\\.com/(?!css/|images/|favicon\\.ico$|sandbox/)\"/><rule from=\"^http://(?:secure\\.|www\\.)?details\\.com/\" to=\"https://secure.details.com/\"/><rule from=\"^http://wp-poc\\.details\\.com/(?=(?:daily-details/)?(?:files/|wp-content/)|favicon\\.ico)\" to=\"https://wp-poc.details.com/\"/></ruleset>", "<ruleset name=\"Detectify.com (partial)\" f=\"Detectify.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Detektor.fm\" f=\"Detektor.fm.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DeusM clients\" default_off=\"mismatched\" f=\"DeusM-clients.xml\"><securecookie host=\"^www\\.internetevolution\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?internetevolution\\.com/\" to=\"https://www.internetevolution.com/\"/></ruleset>", "<ruleset name=\"DeusM.com (partial)\" f=\"DeusM.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://img\\.deusm\\.com/\" to=\"https://deusm.cachefly.net/\"/></ruleset>", "<ruleset name=\"Deutsche BKK\" f=\"Deutsche-BKK.xml\"><rule from=\"^http://(?:www\\.)?deutschebkk\\.de/\" to=\"https://www.deutschebkk.de/\"/></ruleset>", "<ruleset name=\"Deutsche-Rentenversicherung.de\" default_off=\"failed ruleset test\" f=\"Deutsche-Rentenversicherung.de.xml\"><rule from=\"^https?://(www\\.)?deutsche-rentenversicherung-bund\\.de/\" to=\"https://www.deutsche-rentenversicherung.de/\"/><rule from=\"^https?://(www\\.)?drv-bund\\.de/\" to=\"https://www.deutsche-rentenversicherung.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Deutsche Börse Group\" default_off=\"failed ruleset test\" f=\"Deutsche_Boerse.xml\"><rule from=\"^http://deutsche-boerse\\.com/\" to=\"https://www.deutsche-boerse.com/\"/><rule from=\"^http://([^/:@]+)?\\.deutsche-boerse\\.com/\" to=\"https://$1.deutsche-boerse.com/\"/></ruleset>", "<ruleset name=\"Messe.de (partial)\" f=\"Deutsche_Messe.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Telekom.de\" default_off=\"failed ruleset test\" f=\"Deutsche_Telekom.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://telekom\\.de/\" to=\"https://www.telekom.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Deutschebahn.com\" f=\"Deutschebahn.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Deutschen Forschungsgemeinschaft (partial)\" default_off=\"mismatched\" f=\"Deutschen-Forschungsgemeinschaft.xml\"><securecookie host=\"^research-explorer\\.dfg\\.de$\" name=\".*\"/><rule from=\"^http://research-explorer\\.dfg\\.de/\" to=\"https://research-explorer.dfg.de/\"/></ruleset>", "<ruleset name=\"deutscher-radiopreis.de\" f=\"Deutscher-radiopreis.de.xml\"><securecookie host=\"^(www\\.)?deutscher-radiopreis\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Deutscher Bundestag (partial)\" f=\"Deutscher_Bundestag.xml\"><securecookie host=\"^.+\\.bundestag\\.de$\" name=\".+\"/><rule from=\"^http://((?:datenaustausch|forum|suche|www)\\.)?bundestag\\.de/\" to=\"https://$1bundestag.de/\"/></ruleset>", "<ruleset name=\"DFN.de\" f=\"Deutsches_Forschungsnetz.xml\"><exclusion pattern=\"http://(?:airoserv4|www\\.listserv|cdp\\d*\\.pca)\\.dfn\\.de/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http://dfn\\.de/\" to=\"https://www.dfn.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DevConf.cz\" f=\"DevConf.cz.xml\"><securecookie host=\"^(www\\.)?devconf\\.cz$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DevDocs\" f=\"DevDocs.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Devstructure\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"DevStructure.xml\"><rule from=\"^http://(?:www\\.)?devstructure\\.com/\" to=\"https://devstructure.com/\"/></ruleset>", "<ruleset name=\"devZing.com\" f=\"DevZing.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?devzing\\.com/blog/index\\.php\"/><securecookie host=\"^devzing\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DeveloperMail.io\" f=\"DeveloperMail.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"devever.net\" f=\"Devever.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DeviantArt (mismatches)\" default_off=\"Certificate mismatch\" f=\"Deviantart-mismatches.xml\"><rule from=\"^http://(?:www\\.)?fav\\.me/\" to=\"https://fav.me/\"/></ruleset>", "<ruleset name=\"DeviantArt (waiting for webmasters to indicate site is ready)\" platform=\"mixedcontent\" f=\"Deviantart.xml\"><exclusion pattern=\"^http://chat\\.deviantart\\.(?:com|net)/\"/><exclusion pattern=\"^http://l\\.deviantart\\.net/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http://([aei]|fc\\d\\d|img\\d\\d|orig\\d\\d|pre\\d\\d|s[ht]|th?\\d\\d)\\.deviantart\\.(com|net)/\" to=\"https://$1.deviantart.$2/\"/><rule from=\"^http://([^/:@.]+\\.)?deviantart\\.(?:com|net)/\" to=\"https://$1deviantart.com/\"/></ruleset>", "<ruleset name=\"Devil Team.pl\" f=\"Devil_Team.pl.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.devilteam\\.pl/\" to=\"https://devilteam.pl/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"devmonk.com\" f=\"Devmonk.com.xml\"><rule from=\"^http://www\\.devmonk\\.com/\" to=\"https://devmonk.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Devolo.com\" f=\"Devolo.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Devolverdigital.com\" f=\"Devolverdigital.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Devon.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"Devon.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://devon\\.gov\\.uk/\" to=\"https://www.devon.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Devon and Cornwall Police\" default_off=\"failed ruleset test\" f=\"DevonandCornwallPolice.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Devoncredit.ru\" f=\"Devoncredit.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Devpress.com\" f=\"Devpress.com.xml\"><rule from=\"^http://(?:www\\.)?devpress\\.com/\" to=\"https://devpress.com/\"/></ruleset>", "<ruleset name=\"Devprom.ru (partial)\" default_off=\"missing certificate chain\" f=\"Devprom.ru.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DevsBuild.It (partial)\" f=\"DevsBuild.It.xml\"><rule from=\"^http://assets\\.devsbuild\\.it/\" to=\"https://dwr712tf70ilz.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Devuan.org (partial)\" f=\"Devuan.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dex Media.com (partial)\" f=\"Dex_Media.com.xml\"><securecookie host=\"^(?:account|my)\\.dexmedia\\.com$\" name=\".+\"/><rule from=\"^http://cdn\\.dexmedia\\.com/\" to=\"https://dexmedia-wpengine.netdna-ssl.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dezeen.com (partial)\" f=\"Dezeen.com.xml\"><securecookie host=\"^(www\\.)?dezeen\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dezert Depot\" default_off=\"failed ruleset test\" f=\"Dezert_Depot.xml\"><securecookie host=\"^(?:.*\\.)?dezertdepot\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dfri.se\" f=\"Dfri.se.xml\"><rule from=\"^http://(?:www\\.)?dfri\\.se/\" to=\"https://www.dfri.se/\"/></ruleset>", "<ruleset name=\"dgl.cx\" f=\"Dgl.cx.xml\"><rule from=\"^http://(?:www\\.)?dgl\\.cx/\" to=\"https://dgl.cx/\"/></ruleset>", "<ruleset name=\"Dhaval Kapil.com\" f=\"Dhaval_Kapil.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DiaGrid\" f=\"DiaGrid.xml\"><securecookie host=\"^diagrid\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?dia-?grid\\.org/\" to=\"https://diagrid.org/\"/></ruleset>", "<ruleset name=\"Diagonalperiodico.net\" platform=\"mixedcontent\" f=\"Diagonalperiodico.net.xml\"><rule from=\"^http://(?:www\\.)?diagonalperiodico\\.net/\" to=\"https://www.diagonalperiodico.net/\"/></ruleset>", "<ruleset name=\"Dial Direct\" f=\"Dial_Direct.xml\"><securecookie host=\"^\\.?www\\.dialdirect\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?dialdirect\\.co\\.uk/\" to=\"https://www.dialdirect.co.uk/\"/><rule from=\"^http://(?:www\\.)?insure-systems\\.co\\.uk/\" to=\"https://www.insure-systems.co.uk/\"/></ruleset>", "<ruleset name=\"Dialogs.com\" f=\"Dialogs.com.xml\"><securecookie host=\"^www\\.dialogs\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dianomi.com (partial)\" default_off=\"failed ruleset test\" f=\"Dianomi.xml\"><securecookie host=\"^(?:.*\\.)?dianomi\\.com$\" name=\".+\"/><rule from=\"^http://cdn\\.dianomi\\.com/\" to=\"https://d3von6il1wr7wo.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Diasp.de\" f=\"Diasp.de.xml\"><rule from=\"^http://www\\.diasp\\.de/\" to=\"https://diasp.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Diasp.eu\" default_off=\"failed ruleset test\" f=\"Diasp.eu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JoinDiaspora.com\" f=\"Diaspora.xml\"><securecookie host=\"^(?:www\\.)?joindiaspora\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DiasporaBR.com.br\" f=\"DiasporaBR.com.br.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Diaspora Brazil.org\" default_off=\"failed ruleset test\" f=\"Diaspora_Brazil.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Diaspora Foundation.org\" f=\"Diaspora_Foundation.org.xml\"><securecookie host=\"^(?:\\.|blog\\.)?diasporafoundation\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dice.com (false MCB)\" platform=\"mixedcontent\" f=\"Dice-problematic.xml\"><exclusion pattern=\"http://www\\.dice\\.com/+(?:$|\\?)\"/><rule from=\"^http://(?:www\\.)?dice\\.com/\" to=\"https://www.dice.com/\"/></ruleset>", "<ruleset name=\"Dice.com (partial)\" f=\"Dice.xml\"><exclusion pattern=\"^http://www\\.dice\\.com/(?!assets/|company/\\w|content/|(?:dashboard|jobs)(?:$|[?/])|favicon\\.ico)\"/><securecookie host=\"^\\.\" name=\"^(?:__qca$|s_v)\"/><rule from=\"^http://dice\\.com/\" to=\"https://www.dice.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dicesoft.net\" f=\"Dicesoft.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dict.cc\" f=\"Dict.cc.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Die-Linke.de (false MCB)\" platform=\"mixedcontent\" f=\"Die-Linke.de-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Die-Linke.de (partial)\" f=\"Die-Linke.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Die.net (partial)\" f=\"Die.net.xml\"><rule from=\"^http://die\\.net/\" to=\"https://www.die.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DieTrollDie\" f=\"DieTrollDie.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Die Linke-sachsen.de\" f=\"Die_Linke-sachsen.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DieselNet.com\" f=\"DieselNet.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Diff Checker.com\" f=\"Diff_Checker.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Difference Between\" default_off=\"self-signed\" f=\"Difference_Between.xml\"><rule from=\"^http://(?:cdn\\.|www\\.)?differencebetween\\.net/\" to=\"https://www.differencebetween.net/\"/></ruleset>", "<ruleset name=\"Diffoscope\" f=\"Diffoscope.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Difi.no (partial)\" default_off=\"failed ruleset test\" f=\"Difi.no.xml\"><exclusion pattern=\"^http://(?:[^./]+\\.){2,}brukerprofil\\.difi\\.no/\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://standard\\.difi\\.no/[^?]*\" to=\"https://www.difi.no/veiledning/ikt-og-digitalisering/standarder\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dig.Domains\" f=\"Dig.Domains.xml\"><securecookie host=\"^\\.dig\\.domains$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DigBoston.com\" f=\"DigBoston.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.digboston\\.com/\" to=\"https://digboston.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DigCoin.com\" default_off=\"failed ruleset test\" f=\"DigCoin.com.xml\"><securecookie host=\"^digcoin\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Digg (partial)\" f=\"Digg.xml\"><securecookie host=\"^\\.?digg\\.com$\" name=\".+\"/><rule from=\"^http://((?:static|widgets|www)\\.)?digg\\.com/\" to=\"https://$1digg.com/\"/></ruleset>", "<ruleset name=\"Digi-Key (partial)\" default_off=\"failed ruleset test\" f=\"Digi-Key.xml\"><securecookie host=\"^.*\\.digikey\\.(com|de)$\" name=\".+\"/><rule from=\"^http://digikey\\.(com|de)/\" to=\"https://www.digikey.$1/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Digi.hu\" default_off=\"failed ruleset test\" f=\"Digi.hu.xml\"><securecookie host=\"^\\.?digi\\.hu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Digi77.com\" f=\"Digi77.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DigiBib.net\" f=\"DigiBib.net.xml\"><rule from=\"^http://(m|www)\\.digibib\\.net/\" to=\"https://$1.digibib.net/\"/></ruleset>", "<ruleset name=\"DigiCert.com\" f=\"DigiCert.xml\"><securecookie host=\"^.*\\.digicert\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"digiKam.org\" f=\"DigiKam.org.xml\"><securecookie host=\"^\\.digikam\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Digia (partial)\" default_off=\"failed ruleset test\" f=\"Digia.xml\"><securecookie host=\"^(?:.+\\.)?digia\\.com$\" name=\".+\"/><rule from=\"^http://(blog\\.qt\\.|qt\\.|www\\.)?digia\\.com/\" to=\"https://$1digia.com/\"/></ruleset>", "<ruleset name=\"Digiday.com (false MCB)\" platform=\"mixedcontent\" f=\"Digiday.com.xml\"><securecookie host=\"^(?:www\\.)?digiday\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Digifense.com\" default_off=\"failed ruleset test\" f=\"Digifense.com.xml\"><securecookie host=\"^(?:www\\.)?digifense\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"digilinux.ru (false MCB)\" default_off=\"self-signed\" platform=\"mixedcontent\" f=\"Digilinux.ru.xml\"><rule from=\"^http://(?:www\\.)?digilinux\\.ru/\" to=\"https://digilinux.ru/\"/></ruleset>", "<ruleset name=\"Digital Bond.com\" f=\"Digital-Bond.xml\"><rule from=\"^http://digibond\\.wpengine\\.netdna-cdn\\.com/\" to=\"https://www.digitalbond.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DNUK.com (partial)\" default_off=\"mismatched\" f=\"Digital-Networks-UK.xml\"><exclusion pattern=\"^http://(?:www\\.)?dnuk\\.com/(?!_elements/|images/)\"/><securecookie host=\"^secure\\.dnuk\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?dnuk\\.com/\" to=\"https://secure.dnuk.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Digital River.com (partial)\" f=\"Digital-River.xml\"><exclusion pattern=\"^http://corporate\\.digitalriver\\.com/(?!DRHM/)\"/><securecookie host=\"^\\.digitalriver\\.com$\" name=\"^utag_\\w+$\"/><securecookie host=\"^(?:\\.?developers|gc|store)\\.digitalriver\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Digital Transactions\" default_off=\"self-signed\" f=\"Digital-Transactions.xml\"><securecookie host=\"^digitaltransactions\\.net$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?digitaltransactions\\.net/\" to=\"https://digitaltransactions.net/\"/></ruleset>", "<ruleset name=\"Digital Window (mismatches)\" default_off=\"mismatched\" f=\"Digital-Window-mismatches.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Digital Window (partial)\" f=\"Digital-Window.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://awin1\\.com/\" to=\"https://www.awin1.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DigitalForensicsMagazine.com\" f=\"DigitalForensicsMagazine.xml\"><securecookie host=\"^(?:.+\\.)?digitalforensicsmagazine\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DigitalGov.gov (false MCB)\" platform=\"mixedcontent\" f=\"DigitalGov.gov-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://digitalgov\\.gov/\" to=\"https://www.digitalgov.gov/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DigitalGov.gov (partial)\" f=\"DigitalGov.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.summit\\.\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Digital Creations.no\" default_off=\"mismatched\" f=\"Digital_Creations.no.xml\"><securecookie host=\"^(?:[.\\w]*\\.)?digitalcreations\\.no$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?digitalcreations\\.no/\" to=\"https://digitalcreations.no/\"/></ruleset>", "<ruleset name=\"Digital Defenders.org\" f=\"Digital_Defenders.org.xml\"><securecookie host=\"^digitaldefenders\\.org$\" name=\".+\"/><rule from=\"^http://www\\.digitaldefenders\\.org/\" to=\"https://digitaldefenders.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Digital Dollhouse.com\" default_off=\"failed ruleset test\" f=\"Digital_Dollhouse.com.xml\"><securecookie host=\"^\\.digitaldollhouse\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Digital Mars.com\" default_off=\"expired, self-signed\" f=\"Digital_Mars.com.xml\"><rule from=\"^http://www\\.digitalmars\\.com/\" to=\"https://digitalmars.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Digital News Agency.com\" default_off=\"expired\" f=\"Digital_News_Agency.com.xml\"><securecookie host=\"^\\.digitalnewsagency\\.com$\" name=\".+\"/><rule from=\"^http://digitalnewsagency\\.com/\" to=\"https://www.digitalnewsagency.com/\"/><rule from=\"^http://dna-bucket-dna\\.cf\\.rawcdn\\.com/\" to=\"https://df7r7v78mcbtc.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Digital Ocean.com\" f=\"Digital_Ocean.com.xml\"><securecookie host=\"^(?!\\.cloud\\.).\" name=\".\"/><securecookie host=\"^\\.cloud\\.\" name=\"^(?!(?:[A-Z][a-z]{2}\\ ){2}\\d\\d\\ \\d{4}\\ \\d\\d:\\d\\d:\\d\\d\\ [A-Z]{3}[+-]\\d{4}\\ \\([\\w\\ ]+\\)$).\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Digital Pacific.com.au\" f=\"Digital_Pacific.com.au.xml\"><securecookie host=\"^onepanel\\.digitalpacific\\.com\\.au$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Digital Photography Review (partial)\" f=\"Digital_Photography_Review.xml\"><rule from=\"^http://(?:www\\.)?dpreview\\.com/(challenges/[iI]mages/|members/register|products_data/|resources/)\" to=\"https://www.dpreview.com/$1\"/><rule from=\"^http://connect\\.dpreview\\.com/products_data/\" to=\"https://connect.dpreview.com/products_data/\"/><rule from=\"^http://(?:a|\\d+\\.static)\\.(?:img-)?dpreview\\.com/\" to=\"https://d199bk7kirt65b.cloudfront.net/\"/><rule from=\"^http://g[1-4]\\.img-dpreview\\.com/\" to=\"https://d3ojfab0q2dwum.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Digital Point.com\" f=\"Digital_Point_Solutions.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Digital River content.net\" f=\"Digital_River_content.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Digital Shelf Space (partial)\" default_off=\"failed ruleset test\" f=\"Digital_Shelf_Space.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Digital Trends.com (partial)\" platform=\"mixedcontent\" default_off=\"expired, missing certificate chain\" f=\"Digital_Trends.com.xml\"><rule from=\"^http://(?:www\\.)?digitaltrends\\.com/\" to=\"https://digitaltrends.com/\"/></ruleset>", "<ruleset name=\"digital WPC.com (partial)\" default_off=\"failed ruleset test\" f=\"Digital_WPC.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?digitalwpc\\.com/+(?!$|\\?)\"/><rule from=\"^http://(?:www\\.)?digitalwpc\\.com/+\" to=\"https://mspartner.microsoft.com/en/us/Pages/WPC/overview.aspx\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Digitalcourage.de\" f=\"Digitalcourage.de.xml\"><securecookie host=\"^\\.shop\\.digitalcourage\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Digitale-Diathek.net (partial)\" f=\"Digitale_Diathek.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Digitalegesellschaft.de\" f=\"Digitalegesellschaft.de.xml\"><securecookie host=\"^digitalegesellschaft\\.de$\" name=\".+\"/><rule from=\"^http://www\\.digitalegesellschaft\\.de/\" to=\"https://digitalegesellschaft.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Digitalfreedom.io\" default_off=\"failed ruleset test\" f=\"Digitalfreedom.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Digitaria (partial)\" f=\"Digitaria.xml\"><securecookie host=\"^redmine\\.digitaria\\.com$\" name=\".+\"/><securecookie host=\"^.+\\.insightmgr\\.com$\" name=\".+\"/><rule from=\"^http://redmine\\.digitaria\\.com/\" to=\"https://redmine.digitaria.com/\"/><rule from=\"^http://(digi|www)\\.insightmgr\\.com/\" to=\"https://$1.insightmgr.com/\"/></ruleset>", "<ruleset name=\"Digitec.ch\" f=\"Digitec.ch.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Digitecgalaxus.ch\" f=\"Digitecgalaxus.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Digits.com (partial)\" f=\"Digits.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Digium.com (partial)\" f=\"Digium.xml\"><exclusion pattern=\"^http://www\\.digium\\.com/(?:en/(?:$|\\?|partner-portal|products$)|favicon\\.ico|sites/)\"/><securecookie host=\"^\\.digium\\.com$\" name=\"^__cfduid$\"/><securecookie host=\"^login\\.digium\\.com$\" name=\".+\"/><rule from=\"^http://digium\\.com/\" to=\"https://www.digium.com/\"/><rule from=\"^http://(login|store|www)\\.digium\\.com/\" to=\"https://$1.digium.com/\"/></ruleset>", "<ruleset name=\"DigiumEnterprise.com\" f=\"DigiumEnterprise.com.xml\"><rule from=\"^http://digiumenterprise\\.com/answer/\" to=\"https://digiumenterprise.com/answer/\"/></ruleset>", "<ruleset name=\"Digiweb (self-signed)\" default_off=\"expired, self-signed\" f=\"Digiweb-self-signed.xml\"><securecookie host=\"^uweb[23]\\.host\\.ie$\" name=\".*\"/><securecookie host=\"^novweb\\.novara\\.ie$\" name=\".*\"/><rule from=\"^http://80\\.93\\.17\\.6/webshell4($|/)\" to=\"https://uweb2.host.ie/webshell4$1\"/><rule from=\"^http://80\\.93\\.17\\.242/webshell4($|/)\" to=\"https://uweb3.host.ie/webshell4$1\"/><rule from=\"^http://80\\.93\\.18\\.36/webshell4($|/)\" to=\"https://novweb.novara.ie/webshell4$1\"/><rule from=\"^http://uweb([23])\\.host\\.ie/\" to=\"https://uweb$1.host.ie/\"/><rule from=\"^http://novweb\\.novara\\.ie/\" to=\"https://novweb.novara.ie/\"/><rule from=\"^http://(?:www\\.)?securecerts\\.ie/\" to=\"https://www.securecerts.ie/\"/></ruleset>", "<ruleset name=\"Digiweb (partial)\" default_off=\"failed ruleset test\" f=\"Digiweb.xml\"><securecookie host=\"^(?:manage\\.hosting|secureorders)\\.digiweb\\.ie$\" name=\".*\"/><securecookie host=\"^(?:host|register)\\.ie$\" name=\".*\"/><securecookie host=\"^ncm\\.novarait\\.com$\" name=\".*\"/><rule from=\"^http://(manage\\.hosting|secureorders)\\.digiweb\\.ie/\" to=\"https://$1.digiweb.ie/\"/><rule from=\"^http://(?:www\\.)?host\\.ie/\" to=\"https://host.ie/\"/><rule from=\"^http://cp\\.host\\.ie/\" to=\"https://cp.host.ie/\"/><rule from=\"^http://(?:www\\.)?(?:novera|promote|register)\\.ie/\" to=\"https://register.ie/\"/><rule from=\"^http://ncm\\.novarait\\.com/\" to=\"https://ncm.novarait.com/\"/></ruleset>", "<ruleset name=\"Dignity in Dying.org.uk (partial)\" f=\"Dignity_in_Dying.org.uk.xml\"><rule from=\"^http://(www\\.)?dignityindying\\.org\\.uk/(?=favicon\\.ico|support-us(?:$|[?/])|wp-content/|wp-includes/)\" to=\"https://$1dignityindying.org.uk/\"/></ruleset>", "<ruleset name=\"Diigo\" f=\"Diigo.xml\"><securecookie host=\"^\\.diigo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dikkenberg.net\" f=\"Dikkenberg.net.xml\"><securecookie host=\"^www\\.dikkenberg\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DilbertFiles.org (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"DilbertFiles.org.xml\"><securecookie host=\"^secure\\.dilbertfiles\\.com$\" name=\".+\"/><rule from=\"^http://secure\\.dilbertfiles\\.com/\" to=\"https://secure.dilbertfiles.com/\"/></ruleset>", "<ruleset name=\"Dilcdn.com\" f=\"Dilcdn.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dinahosting.com\" f=\"Dinahosting.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dinahosting.pt\" default_off=\"failed ruleset test\" f=\"Dinahosting.pt.xml\"><securecookie host=\"^\\.dinahosting\\.pt$\" name=\".\"/><rule from=\"^http://www\\.dinahosting\\.pt/\" to=\"https://dinahosting.pt/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Diogo Monica.com\" f=\"Diogo_Monica.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Direct Marketing Association\" f=\"Direct-Marketing-Association.xml\"><securecookie host=\"^(?:.*\\.)?dma\\.org\\.uk$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Direct123.fi\" f=\"Direct123.fi.xml\"><securecookie host=\"^www\\.direct123\\.fi$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?direct123\\.fi/\" to=\"https://www.direct123.fi/\"/></ruleset>", "<ruleset name=\"DirectActionEverywhere.com\" f=\"DirectActionEverywhere.com.xml\"><rule from=\"^http://directactioneverywhere\\.com/\" to=\"https://www.directactioneverywhere.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DirectAdvert.ru (partial)\" default_off=\"failed ruleset test\" f=\"DirectAdvert.ru.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DirectSpace\" platform=\"mixedcontent\" f=\"DirectSpace.xml\"><rule from=\"^http://(?:www\\.)?directspace\\.net/\" to=\"https://directspace.net/\"/></ruleset>", "<ruleset name=\"Direct Line.com\" default_off=\"failed ruleset test\" f=\"Direct_Line.com.xml\"><rule from=\"^http://(?:uk3\\.|www\\.)?directline\\.com/\" to=\"https://uk3.directline.com/\"/><rule from=\"^http://amendsonline\\.directline\\.com/\" to=\"https://amendsonline.directline.com/\"/><rule from=\"^http://(?:faq\\.directline|directline\\.metafaq)\\.com/\" to=\"https://directline.metafaq.com/\"/></ruleset>", "<ruleset name=\"Direct Mail Mac.com (partial)\" f=\"Direct_Mail_Mac.com.xml\"><rule from=\"^http://four\\.cdn\\.directmailmac\\.com/\" to=\"https://d39okwd0art5yj.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Directa.cat\" f=\"Directa.cat.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Directbox\" default_off=\"failed ruleset test\" f=\"Directbox.xml\"><rule from=\"^http://(?:www\\.)?directbox\\.(?:at|biz|ch|com|de|eu|info|net|tv)/\" to=\"https://www.directbox.com/\"/><rule from=\"^http://neu\\.directbox\\.com/\" to=\"https://neu.directbox.com/\"/></ruleset>", "<ruleset name=\"Directgov (mismatches)\" default_off=\"mismatch, self-signed\" platform=\"mixedcontent\" f=\"Directgov-mismatches.xml\"><rule from=\"^http://epetitions\\.direct\\.gov\\.uk/(images/|javascripts/|stylesheets/)\" to=\"https://epetitions.direct.gov.uk/$1\"/><rule from=\"^http://www\\.northdown\\.gov\\.uk/\" to=\"https://www.northdown.gov.uk/\"/><rule from=\"^http://(?:www\\.)?ico\\.jobs/\" to=\"https://www.ico.jobs/\"/></ruleset>", "<ruleset name=\"Direct.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"Directgov.xml\"><securecookie host=\"^\\.epetitions\\.\" name=\".\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://direct\\.gov\\.uk/\" to=\"https://www.direct.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Directory Opus\" f=\"DirectoryOpus.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Directorystore.com (partial)\" default_off=\"failed ruleset test\" f=\"Directorystore.com.xml\"><exclusion pattern=\"^http://www\\.directorystore\\.com/index\\.jsp\"/><rule from=\"^http://directorystore\\.com/\" to=\"https://www.directorystore.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"directrev.com\" f=\"Directrev.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:_gat?$|_gat_|OAX$)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://cdn\\.directrev\\.com/\" to=\"https://d2wxwu28a4m0zf.cloudfront.net/\"/><rule from=\"^http://re\\.directrev\\.com/\" to=\"https://d1gl4fdbjuiapz.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dirk.to\" f=\"Dirk.to.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dirty.ru\" default_off=\"missing certificate chain\" f=\"Dirty.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dirxion\" f=\"Dirxion.xml\"><securecookie host=\"^.*\\.dirxion\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?dirxion\\.com/\" to=\"https://www.dirxion.com/\"/><rule from=\"^http://blogs\\.dirxion\\.com/\" to=\"https://blogs.dirxion.com/\"/></ruleset>", "<ruleset name=\"DisabledGo.com (partial)\" default_off=\"failed ruleset test\" f=\"DisabledGo.com.xml\"><exclusion pattern=\"^http://www\\.disabledgo\\.com/+(?![Ff]ile[Dd]epository/|(?:forgotten-password|login-register)(?:$|[?/])|[Ss]ite/|styleresource\\.webpos)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"disc-soft.com (partial)\" f=\"Disc-soft.com.xml\"><rule from=\"^http://(secure|img)\\.disc-soft\\.com/\" to=\"https://$1.disc-soft.com/\"/><rule from=\"^http://(?:www\\.)?disc-soft\\.com/\" to=\"https://www.disc-soft.com/\"/></ruleset>", "<ruleset name=\"DiscoSoupe.org\" f=\"DiscoSoupe.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Discogs.com\" f=\"Discogs.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"discojuice.org (partial)\" f=\"Discojuice.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Disconnect.me\" default_off=\"failed ruleset test\" f=\"Disconnect.me.xml\"><securecookie host=\"^blog\\.disconnect\\.me$\" name=\".+\"/><rule from=\"^http://forum\\.disconnect\\.me/\" to=\"https://disconnect.me/forum/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Discord.me\" f=\"Discord.me.xml\"><securecookie host=\"^discord\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DiscountTheatre.com\" f=\"DiscountTheatre.xml\"><rule from=\"^http://(?:www\\.)?discounttheatre\\.com/\" to=\"https://www.discounttheatre.com/\"/></ruleset>", "<ruleset name=\"Discourse.org (partial)\" f=\"Discourse.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Discover Magazine.com (partial)\" f=\"Discover-Magazine.xml\"><securecookie host=\"^(?:blogs|secure)\\.discovermagazine\\.com$\" name=\".+\"/><rule from=\"^http://cdn\\.media\\.discovermagazine\\.com/\" to=\"https://d2lcm6dnbncm78.cloudfront.net/\"/><rule from=\"^http://subscribe\\.discovermagazine\\.com/(?:digital/|\\?.*)?\" to=\"https://secure.discovermagazine.com/pubs/AG/DSD/DSDDCR_Zinio_Subscription-FreeGift-update2.jsp?cds_page_id=122337&cds_mag_code=DSD&cds_response_key=IF28R1\"/><rule from=\"^http://(blogs|secure)\\.discovermagazine\\.com/\" to=\"https://$1.discovermagazine.com/\"/></ruleset>", "<ruleset name=\"Discover.com\" f=\"Discover.com.xml\"><rule from=\"^http://((?:m|search|www)\\.)?discover\\.com/\" to=\"https://$1discover.com/\"/></ruleset>", "<ruleset name=\"DiscoverBSD.com\" f=\"DiscoverBSD.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Discover Card.com\" f=\"Discover_Card.com.xml\"><rule from=\"^http://((?:m|mst0\\.m|qsys\\.m|mapi|search|www)\\.)?discovercard\\.com/\" to=\"https://$1discovercard.com/\"/></ruleset>", "<ruleset name=\"Discover Merchants.com\" default_off=\"failed ruleset test\" f=\"Discover_Merchants.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Discover Meteor.com (partial)\" f=\"Discover_Meteor.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://discovermeteor\\.com/\" to=\"https://www.discovermeteor.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Discover Network.com (partial)\" f=\"Discover_Network.com.xml\"><rule from=\"^http://((?:cashlocator|servicecenter|www)\\.)?discovernetwork\\.com/\" to=\"https://$1discovernetwork.com/\"/></ruleset>", "<ruleset name=\"Discover Signage.com\" default_off=\"failed ruleset test\" f=\"Discover_Signage.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Discovery.com (partial)\" default_off=\"failed ruleset test\" f=\"Discovery-Communications.xml\"><rule from=\"^http://store\\.discovery\\.com/\" to=\"https://securestore.discovery.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Discovery.org\" default_off=\"failed ruleset test\" f=\"Discovery.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Discovery Place\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"DiscoveryPlace.xml\"><rule from=\"^http://(?:www\\.)?discoveryplace\\.org/\" to=\"https://www.discoveryplace.org/\"/><rule from=\"^http://(?:www\\.)?discoveryplacekids\\.org/\" to=\"https://www.discoveryplacekids.org/\"/></ruleset>", "<ruleset name=\"discshop.se\" f=\"Discshop.se.xml\"><securecookie host=\"^\\.?www\\.discshop\\.se$\" name=\".+\"/><rule from=\"^http://(?:s\\d\\.|www\\.)?discshop\\.se/\" to=\"https://www.discshop.se/\"/></ruleset>", "<ruleset name=\"Discuss.io (partial)\" f=\"Discuss.io.xml\"><securecookie host=\"^(?:www\\.)?discuss\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Discusslr.com\" default_off=\"failed ruleset test\" f=\"Discusslr.com.xml\"><rule from=\"^http://www\\.discusslr\\.com/\" to=\"https://discusslr.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Discuto.io\" f=\"Discuto.io.xml\"><rule from=\"^http://(?:www\\.)?discuto\\.io/\" to=\"https://www.discuto.io/\"/></ruleset>", "<ruleset name=\"disk42.com (partial)\" default_off=\"failed ruleset test\" f=\"Disk42.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DiskCryptor.net\" f=\"DiskCryptor.net.xml\"><securecookie host=\"^(?:www\\.)?diskcryptor\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Diskusjon\" platform=\"mixedcontent\" f=\"Diskusjon.xml\"><rule from=\"^http://diskusjon\\.no/\" to=\"https://diskusjon.no/\"/><rule from=\"^http://www\\.diskusjon\\.no/\" to=\"https://www.diskusjon.no/\"/></ruleset>", "<ruleset name=\"disman.tl\" f=\"Disman.tl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Disney.co.jp (partial)\" f=\"Disney.co.jp.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Disney International.com (partial)\" f=\"Disney_International.com.xml\"><rule from=\"^http://analytics\\.disneyinternational\\.com/\" to=\"https://analytics.disneyinternational.com/\"/></ruleset>", "<ruleset name=\"Disney Privacy Center.com\" f=\"Disney_Privacy_Center.com.xml\"><rule from=\"^http://www\\.disneyprivacycenter\\.com/\" to=\"https://disneyprivacycenter.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dispenser.tf\" f=\"Dispenser.tf.xml\"><rule from=\"^http://(www\\.)?dispenser\\.tf/\" to=\"https://dispenser.tf/\"/></ruleset>", "<ruleset name=\"displaymarketplace.com (partial)\" f=\"Displaymarketplace.com.xml\"><rule from=\"^http://(?:edge\\.|secure\\.)?aperture\\.displaymarketplace\\.com/\" to=\"https://secure.aperture.displaymarketplace.com/\"/></ruleset>", "<ruleset name=\"Disqus (partial)\" f=\"Disqus.xml\"><securecookie host=\"^(\\.)?disqus\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Disruption Lab.org\" default_off=\"mismatched\" f=\"Disruption_Lab.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Distil.it\" f=\"Distil.xml\"><securecookie host=\"^portal\\.distil\\.it$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Distil Networks.com (partial)\" default_off=\"failed ruleset test\" f=\"Distil_Networks.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Distraction.gov\" default_off=\"mismatched\" f=\"Distraction.xml\"><rule from=\"^http://distraction\\.gov/\" to=\"https://www.distraction.gov/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"distributed.net\" f=\"Distributed.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"District Sentinel.com\" f=\"District_Sentinel.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DistroWatch\" f=\"Distrowatch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ditt Distrikt\" default_off=\"failed ruleset test\" f=\"Dittdistrikt.xml\"><rule from=\"^http://(?:www\\.)?dittdistrikt\\.no/\" to=\"https://www.dittdistrikt.no/\"/></ruleset>", "<ruleset name=\"DivItUp.com\" f=\"DivItUp.com.xml\"><securecookie host=\"^www\\.divitup\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DivXpress.com\" default_off=\"expired, self-signed\" platform=\"mixedcontent\" f=\"DivXpress.com.xml\"><securecookie host=\"^\\.divxpress\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Diverse Direct\" f=\"Diverse.direct.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Divessi.com\" f=\"Divessi.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Divide (partial)\" f=\"Divide.xml\"><rule from=\"^http://(api|get|my)\\.divide\\.com/\" to=\"https://$1.divide.com/\"/><rule from=\"^http://blog\\.divide\\.com/wp-(content|includes)/\" to=\"https://s164796.gridserver.com/wp-$1/\"/><rule from=\"^http://support\\.divide\\.com/(generated|system)/\" to=\"https://assets.zendesk.com/$1/\"/></ruleset>", "<ruleset name=\"Divshot\" f=\"Divshot.xml\"><securecookie host=\"^\\.divshot\\.com$\" name=\".+\"/><rule from=\"^http://(app\\.|www\\.)?divshot\\.com/\" to=\"https://$1divshot.com/\"/><rule from=\"^http://a1\\.divshot\\.com/\" to=\"https://djyhxgczejc94.cloudfront.net/\"/></ruleset>", "<ruleset name=\"diwi.org (partial)\" default_off=\"self-signed\" f=\"Diwi.org.xml\"><securecookie host=\"^titus\\.diwi\\.org$\" name=\".+\"/><rule from=\"^http://(adn|fox|schmeuf|titus|zorglub)\\.diwi\\.org/\" to=\"https://$1.diwi.org/\"/></ruleset>", "<ruleset name=\"Dixcart.com (partial)\" default_off=\"missing certificate chain\" f=\"Dixcart.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dixy.ru\" f=\"Dixy.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"diygadget.com\" f=\"Diygadget.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dizaineriai.lt\" f=\"Dizaineriai.lt.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dizzcloud.com\" default_off=\"522\" f=\"Dizzcloud.com.xml\"><securecookie host=\"^\\.?dizzcloud\\.com$\" name=\".+\"/><rule from=\"^http://st\\.dizzcloud\\.com/\" to=\"https://dizzcloud.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DjangoEurope.com (mismatched)\" default_off=\"mismatched\" f=\"DjangoEurope.com-problematic.xml\"><rule from=\"^http://(?:www\\.)?djangoeurope\\.com/\" to=\"https://djangoeurope.com/\"/></ruleset>", "<ruleset name=\"DjangoEurope.com (partial)\" f=\"DjangoEurope.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Django Girls.org (partial)\" f=\"Django_Girls.org.xml\"><securecookie host=\"^\\.djangogirls\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DjurRattsAlliansen.se\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"DjurRattsAlliansen.se.xml\"><rule from=\"^http://www\\.djurrattsalliansen\\.se/\" to=\"https://djurrattsalliansen.se/\"/><rule from=\"^http://djurrattsalliansen\\.se/\" to=\"https://djurrattsalliansen.se/\"/></ruleset>", "<ruleset name=\"Dlisted.com\" default_off=\"mismatched, self-signed\" f=\"Dlisted.com.xml\"><rule from=\"^http://(?:i\\.|www\\.)?dlisted\\.com/\" to=\"https://dlisted.com/\"/></ruleset>", "<ruleset name=\"dlnws.com\" f=\"Dlnws.com.xml\"><rule from=\"^http://s(\\d+)\\.dlnws\\.com/\" to=\"https://dealnews.a.ssl.fastly.net/\"/></ruleset>", "<ruleset name=\"dmesg.gr\" f=\"Dmesg.gr.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dmg media (partial)\" f=\"Dmg_media.xml\"><securecookie host=\"^\\.and\\.co\\.uk$\" name=\"^s_vi$\"/><rule from=\"^http://wa\\.and\\.co\\.uk/\" to=\"https://and-co-uk.122.2o7.net/\"/></ruleset>", "<ruleset name=\"Dmjx.dk\" f=\"Dmjx.dk.xml\"><securecookie host=\"\\.?(www\\.)?dmjx\\.dk\" name=\".+\"/><rule from=\"^http://(www\\.)?dmjx\\.dk/\" to=\"https://www.dmjx.dk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dmoz.org\" default_off=\"failed ruleset test\" f=\"Dmoz.org.xml\"><rule from=\"^http://(?:www\\.)?dmoz\\.org/\" to=\"https://www.dmoz.org/\"/></ruleset>", "<ruleset name=\"dmri-library.com\" f=\"Dmri-library.com.xml\"><rule from=\"^http://c\\d\\.dmri-library\\.com/\" to=\"https://dmri.cachefly.net/\"/></ruleset>", "<ruleset name=\"dmtmag.com\" default_off=\"mismatched\" f=\"Dmtmag.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dmtry.com\" f=\"Dmtry.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DnB Nor.no\" default_off=\"failed ruleset test\" f=\"DnBNor.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dns-ip.net\" f=\"Dns-ip.net.xml\"><securecookie host=\"^www\\.dns-ip\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dnsdumpster.com\" f=\"Dnsdumpster.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dnsexit\" f=\"Dnsexit.xml\"><securecookie host=\"^(?:.*\\.)?dnsexit\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?dnsexit\\.com/\" to=\"https://www.dnsexit.com/\"/></ruleset>", "<ruleset name=\"Dntly.com\" default_off=\"failed ruleset test\" f=\"Dntly.com.xml\"><securecookie host=\"^\\.dntly\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Do-it.org\" f=\"Do-it.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^_gat?$\"/><rule from=\"^http://www\\.do-it\\.org/\" to=\"https://do-it.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Do Not Call Register\" f=\"DoNotCallRegister.xml\"><rule from=\"^http://(?:www\\.)?donotcall\\.gov\\.au/\" to=\"https://www.donotcall.gov.au/\"/></ruleset>", "<ruleset name=\"Do Not Track-doc.com\" default_off=\"failed ruleset test\" f=\"Do_Not_Track-doc.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dobrochan\" platform=\"cacert\" default_off=\"failed ruleset test\" f=\"Dobrochan.xml\"><securecookie host=\"^dobrochan\\.ru$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?dobrochan\\.(?:com|org|ru)/\" to=\"https://dobrochan.ru/\"/></ruleset>", "<ruleset name=\"DocSend.com\" f=\"DocSend.com.xml\"><securecookie host=\"^blog\\.docsend\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"docelu.pl (problematic)\" default_off=\"mismatched\" platform=\"mixedcontent\" f=\"Docelu.pl-problematic.xml\"><securecookie host=\"^(?:imprezy|rozklady|zdjecia)?\\.docelu\\.pl$\" name=\".+\"/><rule from=\"^http://(imprezy|rozklady|zdjecia)\\.docelu\\.pl/\" to=\"https://$1.docelu.pl/\"/></ruleset>", "<ruleset name=\"docelu.pl (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Docelu.pl.xml\"><securecookie host=\"^(?:.+\\.)?docelu\\.pl$\" name=\".+\"/><rule from=\"^http://(?:(trasy\\.)|www\\.)?docelu\\.pl/\" to=\"https://$1docelu.pl/\"/></ruleset>", "<ruleset name=\"Docker.com (partial)\" f=\"Docker.com.xml\"><securecookie host=\"^(?:www)?\\.docker\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Docker.io\" f=\"Docker.io.xml\"><rule from=\"^http://(blog|docs)\\.docker\\.io/\" to=\"https://$1.docker.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Docket Alarm.com\" f=\"Docket_Alarm.com.xml\"><rule from=\"^http://docketalarm\\.com/\" to=\"https://www.docketalarm.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Docler Holding\" f=\"Docler.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Docracy.com\" f=\"Docracy.com.xml\"><securecookie host=\"^www\\.docracy\\.com$\" name=\".+\"/><rule from=\"^http://docracy\\.com/\" to=\"https://www.docracy.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Docs.Zone\" f=\"Docs.Zone.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Docstoc (partial)\" f=\"Docstoc.xml\"><rule from=\"^http://(css|i|swf)\\.docstoc(?:cdn)?\\.com/\" to=\"https://$1.docstoccdn.com/\"/><rule from=\"^http://img\\.docstoc(?:cdn)?\\.com/\" to=\"https://s3.amazonaws.com/img.docstoc.com/\"/><rule from=\"^http://(?:www\\.)?docstoc\\.com/(account/|Captcha\\.ashx|cart/|favicon\\.ico|i/|pass(?:$|\\?))\" to=\"https://www.docstoc.com/$1\"/><rule from=\"^http://static2\\.docstoccdn\\.com/\" to=\"https://static2.docstoccdn.com/\"/></ruleset>", "<ruleset name=\"docstorepro.com\" default_off=\"failed ruleset test\" f=\"Docstorepro.com.xml\"><securecookie host=\"^\\.docstorepro\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Doctor Trusted.org\" default_off=\"failed ruleset test\" f=\"Doctor_Trusted.org.xml\"><securecookie host=\"^doctortrusted\\.org$\" name=\".+\"/><rule from=\"^http://www\\.doctortrusted\\.org/\" to=\"https://doctortrusted.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DoctorsWithoutBorders.org (partial)\" f=\"DoctorsWithoutBorders.org.xml\"><securecookie host=\"^donate\\.doctorswithoutborders\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Document.no\" f=\"Document.no.xml\"><rule from=\"^http://www\\.document\\.no/\" to=\"https://www.document.no/\"/><rule from=\"^http://document\\.no/\" to=\"https://www.document.no/\"/></ruleset>", "<ruleset name=\"DocumentCloud (partial)\" f=\"DocumentCloud.xml\"><securecookie host=\"^www\\.documentcloud\\.org$\" name=\".+\"/><rule from=\"^http://(www\\.)?documentcloud\\.org/\" to=\"https://$1documentcloud.org/\"/><rule from=\"^http://s3\\.documentcloud\\.org/\" to=\"https://s3.amazonaws.com/s3.documentcloud.org/\"/></ruleset>", "<ruleset name=\"Document Freedom Day\" default_off=\"failed ruleset test\" f=\"Document_Freedom_Day.xml\"><rule from=\"^http://(www\\.)?documentfreedom\\.(net|org)/\" to=\"https://$1documentfreedom.$2/\"/></ruleset>", "<ruleset name=\"Documentchecker.com\" f=\"Documentchecker.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Docusign.com\" f=\"Docusign.com.xml\"><rule from=\"^http://(?:www\\.)?docusign\\.com/\" to=\"https://www.docusign.com/\"/></ruleset>", "<ruleset name=\"Docusign.net\" f=\"Docusign.net.xml\"><rule from=\"^http://(?:www\\.)?docusign\\.net/\" to=\"https://www.docusign.net/\"/></ruleset>", "<ruleset name=\"Dods People.com (partial)\" f=\"Dods_People.com.xml\"><rule from=\"^http://(?:photos\\.|www\\.)?dodspeople\\.com/\" to=\"https://photos.dodspeople.com/\"/></ruleset>", "<ruleset name=\"DoesNotWork.eu\" default_off=\"failed ruleset test\" f=\"DoesNotWork.eu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dof.dk\" default_off=\"failed ruleset test\" f=\"Dof.dk.xml\"><securecookie host=\"(?:www)?\\.dof\\.dk\" name=\".*\"/><rule from=\"^http://(?:www\\.)?dof\\.dk/\" to=\"https://www.dof.dk/\"/></ruleset>", "<ruleset name=\"Dog Wheelchairs Center.com\" f=\"Dog_Wheelchairs_Center.com.xml\"><securecookie host=\"^(?:www)?\\.dogwheelchairscenter\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dogechain.info\" f=\"Dogechain.info.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dogsbodytechnology.com\" f=\"Dogsbodytechnology.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dogz Online\" f=\"Dogz_Online.xml\"><securecookie host=\"^(?:www)?\\.dogzonline\\.com\\.au$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Doileak.com\" f=\"Doileak.com.xml\"><securecookie host=\"^www\\.doileak\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Doitgarden.ch (partial)\" f=\"Doitgarden.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dojo Toolkit.org (partial)\" f=\"Dojo_Toolkit.org.xml\"><securecookie host=\"^bugs\\.dojotoolkit\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DokuWiki (partial)\" f=\"DokuWiki.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://search\\.dokuwiki\\.org/+$\" to=\"https://www.google.com/coop/cse?cx=009387785156597221763:mxrsu3_lmbs\"/><rule from=\"^http://search\\.dokuwiki\\.org/[^?]*\\?\" to=\"https://www.google.com/cse?cx=009387785156597221763:mxrsu3_lmbs&cof=FORID:1&\"/><rule from=\"^http://search\\.dokuwiki\\.org/+\" to=\"https://www.google.com/cse?cx=009387785156597221763:mxrsu3_lmbs&cof=FORID:1&q=\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DolarToday.com\" f=\"DolarToday.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dolezel.info (partial)\" default_off=\"mismatched\" f=\"Dolezel.info.xml\"><securecookie host=\"^fatrat\\.dolezel\\.info$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dolimg.com\" f=\"Dolimg.com.xml\"><rule from=\"^http://(?:(?:a|cdn\\d?|www)\\.)?dolimg\\.com/\" to=\"https://dolimg.com/\"/><rule from=\"^http://s\\.dolimg\\.com/\" to=\"https://s.dolimg.com/\"/></ruleset>", "<ruleset name=\"Dollar Shave Club.com (partial)\" f=\"Dollar_Shave_Club.com.xml\"><securecookie host=\"^\\.dollarshaveclub\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dollar a Day.co\" default_off=\"failed ruleset test\" f=\"Dollar_a_Day.co.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dolphin-emu.org\" f=\"Dolphin-emu.org.xml\"><securecookie host=\".+\\.dolphin-emu\\.org$\" name=\".+\"/><rule from=\"^http://((?:dl|forums|wiki|www)\\.)?dolphin-emu\\.org/\" to=\"https://$1dolphin-emu.org/\"/></ruleset>", "<ruleset name=\"Dom.bg\" f=\"Dom.bg.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Domain-DNS.com\" f=\"Domain-DNS.com.xml\"><rule from=\"^http://(?:www\\.)?domain-dns\\.com/\" to=\"https://domain-dns.com/\"/></ruleset>", "<ruleset name=\"Domain-Offensive\" f=\"Domain-Offensive.xml\"><securecookie host=\"^www\\.do\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Domain.com\" f=\"Domain.com.xml\"><securecookie host=\"^\\.domain\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?domain\\.com/\" to=\"https://www.domain.com/\"/><rule from=\"^http://images\\.domain\\.com/\" to=\"https://secure.domain.com/images/\"/><rule from=\"^http://secure\\.domain\\.com/\" to=\"https://secure.domain.com/\"/></ruleset>", "<ruleset name=\"Domain.de\" f=\"Domain.de.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Domain.fi\" f=\"Domain.fi.xml\"><securecookie host=\"^domain\\.fi$\" name=\".+\"/><rule from=\"^http://www\\.domain\\.fi/\" to=\"https://domain.fi/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"domainCAMP\" f=\"DomainCAMP.xml\"><securecookie host=\"^www\\.domaincamp\\.de$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?domaincamp\\.de/\" to=\"https://www.domaincamp.de/\"/></ruleset>", "<ruleset name=\"DomainCoin.net\" f=\"DomainCoin.net.xml\"><securecookie host=\"^(?:www\\.)?domaincoin\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DomainContext.com\" f=\"DomainContext.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DomainMarket.com (partial)\" f=\"DomainMarket.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DomainNameSales.com (partial)\" f=\"DomainNameSales.com.xml\"><securecookie host=\"^\\.domainnamesales\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DomainSigma.com (partial)\" default_off=\"failed ruleset test\" f=\"DomainSigma.com.xml\"><rule from=\"^http://static\\.domainsigma\\.com/\" to=\"https://djtg44apx8dzy.cloudfront.net/\"/></ruleset>", "<ruleset name=\"DomainSkate.com\" f=\"DomainSkate.com.xml\"><securecookie host=\"^(?:app\\.|www\\.)?domainskate\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DomainSponsor (partial)\" f=\"DomainSponsor.xml\"><securecookie host=\"^\\.domainsponsor\\.com$\" name=\".*\"/><rule from=\"^http://(pubman|spi)\\.domainsponsor\\.com/\" to=\"https://$1.domainsponsor.com/\"/></ruleset>", "<ruleset name=\"DomainTools.com (false MCB)\" platform=\"mixedcontent\" f=\"DomainTools.com-falsemixed.xml\"><rule from=\"^http://support\\.domaintools\\.com/\" to=\"https://domaintools.kayako.com/\"/></ruleset>", "<ruleset name=\"DomainTools\" default_off=\"failed ruleset test\" f=\"DomainTools.xml\"><securecookie host=\"^(account\\.|api\\.|brandmonitor\\.|directory\\.|domainreport\\.|freeapi\\.|img\\.|marketplace\\.|research\\.|reverseip\\.|reversens\\.|reversewhois\\.|secure\\.|source\\.|whitelabel\\.|whois\\.|www\\.|yahoo\\.)domaintools\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DomainWho.is\" default_off=\"failed ruleset test\" f=\"DomainWho.is.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Domainbox.com (partial)\" f=\"Domainbox.com.xml\"><rule from=\"^http://(?:www\\.)?domainbox\\.com/(?=favicon\\.ico|func/|images/|inc/|sign-up(?:$|[?/]))\" to=\"https://www.domainbox.com/\"/></ruleset>", "<ruleset name=\"Domaining.com\" f=\"Domaining.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Domainreseller.ru\" f=\"Domainreseller.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Domains By Proxy\" f=\"Domains_By_Proxy.xml\"><securecookie host=\"^(?:www\\.)?domainsbyproxy\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Domaintank\" f=\"Domaintank.xml\"><rule from=\"^http://([^@:/]+)?(domaintank|domainrendelo|processnet|malina)\\.hu/\" to=\"https://$1$2.hu/\"/></ruleset>", "<ruleset name=\"domcomp.com\" f=\"Domcomp.com.xml\"><securecookie host=\"^www\\.domcomp\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?domcomp\\.com/\" to=\"https://www.domcomp.com/\"/></ruleset>", "<ruleset name=\"domdex.com\" default_off=\"failed ruleset test\" f=\"Domdex.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Domen Kozar.com\" f=\"Domen_Kozar.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Domena.cz\" f=\"Domena.cz.xml\"><securecookie host=\"^(?:www\\.)?domena\\.cz$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Domena.pl (partial)\" f=\"Domena.pl.xml\"><securecookie host=\"^(?:domeny|hosting|poczta)\\.domena\\.pl$\" name=\".+\"/><rule from=\"^http://(domeny|hosting|poczta)\\.domena\\.pl/\" to=\"https://$1.domena.pl/\"/></ruleset>", "<ruleset name=\"Domenovy prohlizec.cz\" f=\"Domenovy_prohlizec.cz.xml\"><securecookie host=\"^www\\.domenovyprohlizec\\.cz$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dominios\" default_off=\"self-signed\" f=\"Dominios.xml\"><securecookie host=\"^www\\.nic\\.es$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?nic\\.es/\" to=\"https://www.nic.es/\"/></ruleset>", "<ruleset name=\"Dominus Temporis.com\" f=\"Dominus_Temporis.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Domoticz.com\" f=\"Domoticz.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Domreg.lt\" f=\"Domreg.lt.xml\"><securecookie host=\"^www\\.domreg\\.lt$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?domreg\\.lt/\" to=\"https://www.domreg.lt/\"/></ruleset>", "<ruleset name=\"Domru.ru\" f=\"Domru.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DonationCoder.com\" f=\"DonationCoder.com.xml\"><securecookie host=\"^www\\.donationcoder\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Doncaster.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"Doncaster.gov.uk.xml\"><exclusion pattern=\"^http://(?:www\\.)?doncaster\\.gov\\.uk/+(?!Eforms/|(?:Profile|Users)(?:$|[?/])|Themes/)\"/><securecookie host=\"^\\.\" name=\"_gat?$\"/><securecookie host=\"^(?!www\\.)\\w\" name=\".\"/><rule from=\"^http://eportal\\.schools\\.doncaster\\.gov\\.uk/.*\" to=\"https://www.engagedoncaster.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Doncaster College (partial)\" f=\"Doncaster_College.xml\"><rule from=\"^http://(staffintranet|webmail|www)\\.don\\.ac\\.uk/\" to=\"https://$1.don.ac.uk/\"/><rule from=\"^http://blackboard\\.don\\.ac\\.uk/(?:\\?.*)?$\" to=\"https://don.blackboard.com/\"/></ruleset>", "<ruleset name=\"Don't Spy On Us.org.uk\" f=\"Dont_Spy_On_Us.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Doodle (partial)\" f=\"Doodle.xml\"><rule from=\"^http://(www\\.)?doodle\\.com/(builtstatic/|favicon\\.ico|premium(?:$|\\?|/))\" to=\"https://$1doodle.com/$2\"/></ruleset>", "<ruleset name=\"Doom9.org (partial)\" f=\"Doom9.org.xml\"><securecookie host=\"^forum\\.doom9\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DoomWiki.org\" f=\"DoomWiki.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Doomworld.com\" f=\"Doomworld.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"doorbell.io\" f=\"Doorbell.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dorian Color\" f=\"DorianColor.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dormproject.ch\" f=\"Dormproject.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dosomething.org\" f=\"Dosomething.org.xml\"><rule from=\"^http://(?:www\\.)?dosomething\\.org/\" to=\"https://www.dosomething.org/\"/></ruleset>", "<ruleset name=\"dosowisko.net\" f=\"Dosowisko.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dot429 (partial)\" f=\"Dot429.xml\"><rule from=\"^http://(www\\.)?dot429\\.com/(blueprint|fonts|images|packages|stylesheets)/\" to=\"https://$1dot429.com/$2/\"/><rule from=\"^http://cdn[1-5]\\.dot429\\.com/\" to=\"https://d2qmyvn67i80mw.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Dot5Hosting\" f=\"Dot5Hosting.xml\"><securecookie host=\"^\\.dot5hosting\\.com$\" name=\".+\"/><rule from=\"^http://((?:images|secure|www)\\.)?dot5hosting\\.com/\" to=\"https://$1dot5hosting.com/\"/></ruleset>", "<ruleset name=\"Dot-BIT.org (partial)\" default_off=\"expired\" f=\"DotBit.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://explorer\\.dot-bit\\.org/+\" to=\"https://explorer.namecoin.info/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dotCOM host\" f=\"DotCOM-host.xml\"><securecookie host=\"^(?:.*\\.)?dotcomhost\\.com$\" name=\".*\"/><rule from=\"^http://(\\w+\\.)?dotcomhost\\.com/\" to=\"https://$1dotcomhost.com/\"/></ruleset>", "<ruleset name=\"dotCloud.com (partial)\" default_off=\"failed ruleset test\" f=\"DotCloud.com.xml\"><exclusion pattern=\"^http://zerorpc\\.dotcloud\\.com/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http://status\\.dotcloud\\.com/\" to=\"https://dotcloud.statuspage.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DotCologne.de\" f=\"DotCologne.de.xml\"><securecookie host=\"^domainstore\\.dotcologne\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?dotcologne\\.de/[^?]*\" to=\"https://domainstore.dotcologne.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dotMailer (partial)\" f=\"DotMailer.xml\"><exclusion pattern=\"^http://(?:www\\.)?dotmailer\\.co(?:m|\\.uk)/(?!favicon\\.ico|images/|m/css|login\\.aspx|professional_email_marketing_solutions/professional_trial_signup)\"/><securecookie host=\"^.+\\.dotmailer\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?dotmailer\\.com/\" to=\"https://www.dotmailer.com/\"/><rule from=\"^http://(my|support)\\.dotmailer\\.com/\" to=\"https://$1.dotmailer.com/\"/><rule from=\"^http://(www\\.)?dotmailer\\.co\\.uk/\" to=\"https://$1dotmailer.co.uk/\"/><rule from=\"^http://t\\.trackedlink\\.net/\" to=\"https://t.trackedlink.net/\"/></ruleset>", "<ruleset name=\"DotSec.com\" f=\"DotSec.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dota2lounge.com\" platform=\"mixedcontent\" f=\"Dota2lounge.com.xml\"><rule from=\"^http://cdn\\.dota2lounge\\.com/\" to=\"https://dota2lounge.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dota 2.com (partial)\" default_off=\"Breaks steam games\" f=\"Dota_2.com.xml\"><exclusion pattern=\"^http://(www\\.)?dota2\\.com/heroes\"/><exclusion pattern=\"^http://(www\\.)?dota2\\.com/jsfeed/(\\w+)?\"/><exclusion pattern=\"^http://(www\\.)?dota2\\.com/leaderboard\"/><exclusion pattern=\"^http://(www\\.)?dota2\\.com/public/(\\w+)?\"/><exclusion pattern=\"^http://(www\\.)?dota2\\.com/quiz\"/><exclusion pattern=\"^http://(www\\.)?dota2\\.com/store\"/><exclusion pattern=\"^http://(www\\.)?dota2\\.com/workshop\"/><rule from=\"^http://dota2\\.com/\" to=\"https://www.dota2.com/\"/><rule from=\"^http://cdn\\.dota2\\.com/\" to=\"https://steamcdn-a.akamaihd.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dotcomsecurity.de\" default_off=\"failed ruleset test\" f=\"Dotcomsecurity.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dotdeb.org\" f=\"Dotdeb.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Doteasy-nocookie.com\" f=\"Doteasy-nocookie.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Doteasy.com (partial)\" f=\"Doteasy.com.xml\"><securecookie host=\"^(?:kb|member)\\.doteasy\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dotomi.com (partial)\" f=\"Dotomi.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dotprojects.be (partial)\" default_off=\"expired\" f=\"Dotprojects.be.xml\"><securecookie host=\"^\\.extranet\\.dotprojects\\.be$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dotster\" f=\"Dotster.xml\"><securecookie host=\"^\\.dotster\\.com$\" name=\".+\"/><rule from=\"^http://([^/:@\\.]+\\.)?dotster\\.com/\" to=\"https://$1dotster.com/\"/></ruleset>", "<ruleset name=\"Douban.com (partial)\" f=\"Douban.com.xml\"><securecookie host=\".+\" name=\"^__utm\"/><rule from=\"^http://fm\\.douban\\.com/\" to=\"https://douban.fm/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DoubleClick by Google.com\" f=\"DoubleClick_by_Google.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://doubleclickbygoogle\\.com/\" to=\"https://www.doubleclickbygoogle.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DoubleVerify.com (partial)\" f=\"DoubleVerify.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Double Fine.com (false MCB)\" platform=\"mixedcontent\" f=\"Double_Fine.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Double Robotics.com (MCB)\" platform=\"mixedcontent\" f=\"Double_Robotics.com-mixedcontent.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Double Robotics.com (mismatched)\" default_off=\"mismatched\" f=\"Double_Robotics.com-problematic.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Double Robotics.com (partial)\" f=\"Double_Robotics.com.xml\"><exclusion pattern=\"^http://support\\.doublerobotics\\.com/+(?!favicon\\.ico|images/)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://support\\.doublerobotics\\.com/\" to=\"https://doublerobotics.desk.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Double the Donation.com\" f=\"Double_the_Donation.com.xml\"><rule from=\"^http://www\\.doublethedonation\\.com/\" to=\"https://doublethedonation.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Doubleclick.com\" f=\"Doubleclick.com.xml\"><rule from=\"^http://doubleclick\\.com/\" to=\"https://www.doubleclick.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Doubleclick.net (needs exclusions)\" platform=\"mixedcontent\" f=\"Doubleclick.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://([^/:@.]+)\\.(?!au|de|fr|jp|uk)[a-z]{2}\\.doubleclick\\.net/\" to=\"https://$1.doubleclick.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Doublepimp.com (partial)\" f=\"Doublepimp.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Douyu\" f=\"Douyu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dovecot.org\" f=\"Dovecot.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dover.gov.uk (partial)\" f=\"Dover.gov.uk.xml\"><securecookie host=\"^\\.forms\\.\" name=\".\"/><securecookie host=\"^\\w\" name=\"\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dovetail Services (problematic)\" default_off=\"mismatched\" f=\"Dovetail_Services-problematic.xml\"><rule from=\"^http://(?:www\\.)?dovetailservices\\.com/\" to=\"https://www.dovetailservices.com/\"/></ruleset>", "<ruleset name=\"Dovetail Services (partial)\" default_off=\"failed ruleset test\" f=\"Dovetail_Services.xml\"><securecookie host=\"^(?:.*\\.)?subscribeonline\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(\\w+\\.)?subscribeonline\\.co\\.uk/\" to=\"https://$1subscribeonline.co.uk/\"/></ruleset>", "<ruleset name=\"DownThemAll.net (false MCB)\" platform=\"mixedcontent\" f=\"DownThemAll.net-falsemixed.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DownThemAll.net (partial)\" f=\"DownThemAll.xml\"><exclusion pattern=\"^http://www\\.downthemall\\.net/+(?!favicon\\.ico|wp-content/|wp-includes/)\"/><securecookie host=\"^\\.\" name=\"^__cfduid$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Down for Everyone.com (false MCB)\" platform=\"mixedcontent\" f=\"Down_for_Everyone.com-falsemixed.xml\"><securecookie host=\"^\\.downforeveryone\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Down for Everyone.com (partial)\" f=\"Down_for_Everyone.com.xml\"><securecookie host=\"^\\.downforeveryone\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DownloadHelper.net\" f=\"DownloadHelper.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DownloadVerse.com\" f=\"DownloadVerse.com.xml\"><securecookie host=\"^(?:w*\\.)?downloadverse\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Downloadbox\" default_off=\"self-signed\" platform=\"mixedcontent\" f=\"Downloadbox.xml\"><securecookie host=\"^\\.downloadbox\\.me$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?downloadbox\\.me/\" to=\"https://downloadbox.me/\"/></ruleset>", "<ruleset name=\"DownstreamToday.com\" default_off=\"failed ruleset test\" f=\"DownstreamToday.com.xml\"><securecookie host=\"^(?:www\\.)?downstreamtoday\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Downtown Host (partial)\" f=\"Downtown_Host.xml\"><securecookie host=\"^(?:.+\\.)?downtownhost\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dozuki.net\" f=\"Dozuki.net.xml\"><rule from=\"^http://cacher\\.dozuki\\.net/\" to=\"https://d1luk0418egahw.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Dozuki.com (partial)\" f=\"Dozuki.xml\"><exclusion pattern=\"^http://www\\.dozuki\\.com/(?!Guide/login(?:/register)?(?:$|\\?))\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dpfoc.com\" f=\"Dpfoc.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dpskolkata.com\" f=\"Dpskolkata.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dr-qubit.org\" default_off=\"mismatched\" f=\"Dr-qubit.org.xml\"><rule from=\"^http://(?:www\\.)?dr-qubit\\.org/\" to=\"https://dr-qubit.org/\"/></ruleset>", "<ruleset name=\"DrAgnDroPbuilder.com\" f=\"DrAgnDroPbuilder.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"drServer.net\" f=\"DrServer.net.xml\"><securecookie host=\"^(?:www\\.)?drserver\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DragonByte-Tech.com\" f=\"DragonByte-Tech.xml\"><securecookie host=\"^www\\.dragonbyte-tech\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DragonFly BSD.org (partial)\" f=\"DragonFly_BSD.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://dragonflybsd\\.org/\" to=\"https://www.dragonflybsd.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DragonFly BSD Digest.com\" f=\"DragonFly_BSD_Digest.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dragonair\" f=\"Dragonair.xml\"><rule from=\"^http://(?:www\\.)?dragonair\\.com/\" to=\"https://www.dragonair.com/\"/></ruleset>", "<ruleset name=\"dragonsreach.it\" f=\"Dragonsreach.it.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Draugiem.lv (partial)\" default_off=\"failed ruleset test\" f=\"Draugiem.lv.xml\"><exclusion pattern=\"^http://(?:www\\.)?(?:baratikor.com|draugiem\\.lv)/+(?!$|\\?|favicon\\.ico|(?:forgot|help)(?:$|[?/])|upl/captcha\\.php)\"/><exclusion pattern=\"^http://m\\.draugiem\\.lv/+(?!$|\\?|favicon\\.ico|v\\d+/(?:cs|j)s/)\"/><exclusion pattern=\"^http://(?:www\\.)?frype\\.com/+(?!$|\\?|favicon\\.ico|(?:forgot|help)(?:$|[?/]))\"/><rule from=\"^http://(?:www\\.)?baratikor\\.com/\" to=\"https://www.baratikor.com/\"/><rule from=\"^http://(?:www\\.)?draugiem\\.lv/\" to=\"https://www.draugiem.lv/\"/><rule from=\"^http://m\\.draugiem\\.lv/\" to=\"https://m.draugiem.lv/\"/><rule from=\"^http://(?:www\\.)?frype\\.com/\" to=\"https://www.frype.com/\"/><rule from=\"^http://i([0379])\\.frype\\.com/\" to=\"https://i$1.frype.com/\"/><rule from=\"^http://ifrype\\.com/\" to=\"https://ifrype.com/\"/></ruleset>", "<ruleset name=\"Drawception\" f=\"Drawception.xml\"><rule from=\"^http:\" to=\"https:\"/><securecookie host=\"^\\.?drawception\\.com$\" name=\".+\"/></ruleset>", "<ruleset name=\"Drawing by Numbers.org\" f=\"Drawing_by_Numbers.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DrayTek.com\" f=\"DrayTek.com.xml\"><securecookie host=\".*\\.draytek\\.com\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Drchrono.com\" default_off=\"failed ruleset test\" f=\"Drchrono.com.xml\"><securecookie host=\"^(?:www\\.)?drchrono\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DreamHost.com (partial)\" default_off=\"failed ruleset test\" f=\"DreamHost.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://blog\\.dreamhost\\.com/\" to=\"https://www.dreamhost.com/blog/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DreamSpark.com\" default_off=\"failed ruleset test\" f=\"DreamSpark.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://dreamspark\\.com/\" to=\"https://www.dreamspark.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dream News.jp\" f=\"Dream_News.jp.xml\"><rule from=\"^http://(?:www\\.)?dreamnews\\.jp/\" to=\"https://www.dreamnews.jp/\"/></ruleset>", "<ruleset name=\"dreamboxcart.com\" f=\"Dreamboxcart.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dreampass.jp\" f=\"Dreampass.jp.xml\"><securecookie host=\"^\\.dreampass\\.jp$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dreamsolution.nl\" f=\"Dreamsolution.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dreamstime (problematic)\" default_off=\"mismatched\" f=\"Dreamstime-problematic.xml\"><exclusion pattern=\"^http://thumbs\\.dreamstime\\.com/site-img/\"/><rule from=\"^http://thumbs\\.dreamstime\\.com/\" to=\"https://thumbs.dreamstime.com/\"/></ruleset>", "<ruleset name=\"Dreamstime (partial)\" platform=\"mixedcontent\" f=\"Dreamstime.xml\"><exclusion pattern=\"^http://thumbs\\.dreamstime\\.com/(?!site-img/)\"/><securecookie host=\"^.*\\.dreamstime\\.com$\" name=\".+\"/><rule from=\"^http://(?:thumbs\\.|(www\\.))?dreamstime\\.com/\" to=\"https://$1dreamstime.com/\"/></ruleset>", "<ruleset name=\"Dreamwidth.org\" f=\"Dreamwidth.xml\"><securecookie host=\"^\\.dreamwidth\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Drew's Script-o-Rama\" default_off=\"mismatched\" f=\"Drews-Script-o-Rama.xml\"><rule from=\"^http://(?:www\\.)?script-o-rama\\.com/\" to=\"https://script-o-rama.com/\"/></ruleset>", "<ruleset name=\"Drexel University (partial)\" default_off=\"failed ruleset test\" f=\"Drexel_University.xml\"><securecookie host=\"^psal\\.cs\\.drexel\\.edu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dribbble.com (partial)\" f=\"Dribbble.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Drillisch.de\" f=\"Drillisch.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Drinkaware.co.uk\" f=\"Drinkaware.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Drive2.ru\" f=\"Drive2.ru.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DriveStyle Insure\" default_off=\"failed ruleset test\" f=\"DriveStyle_Insure.xml\"><securecookie host=\"^(?:www\\.)?drivestyle.co.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"drivee (partial)\" default_off=\"failed ruleset test\" f=\"Drivee.xml\"><exclusion pattern=\"^http://www\\.drive\\.jp/(?:$|\\?)\"/><rule from=\"^http://drivee\\.jp/\" to=\"https://www.drivee.jp/\"/><rule from=\"^http://(?:www\\.)?drivee\\.ne\\.jp/\" to=\"https://www.drivee.jp/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DriversEdDirect.com\" f=\"DriversEdDirect.com.xml\"><rule from=\"^http://(?:www\\.)?driverseddirect\\.com/\" to=\"https://www.driverseddirect.com/\"/></ruleset>", "<ruleset name=\"drone.io (partial)\" f=\"Drone.io.xml\"><rule from=\"^http://www\\.drone\\.io/\" to=\"https://drone.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DropDav.com\" f=\"DropDav.xml\"><securecookie host=\"^(?:.*\\.)?dropdav\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dropbox\" f=\"Dropbox.xml\"><securecookie host=\"^(?:.*\\.)?dropbox\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?db\\.tt/\" to=\"https://db.tt/\"/><rule from=\"^http://(www\\.)?dropbox(atwork|team)\\.com/\" to=\"https://$1dropbox$2.com/\"/><rule from=\"^http://(www\\.)?getdropbox\\.com/\" to=\"https://$1getdropbox.com/\"/></ruleset>", "<ruleset name=\"Dropbox Forum.com\" f=\"Dropbox_Forum.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Droplr.com\" f=\"Droplr.xml\"><securecookie host=\"^droplr\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Drought.gov\" f=\"Drought.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Drowned In Sound.com (problematic)\" default_off=\"mismatched\" f=\"Drowned_In_Sound.com-problematic.xml\"><securecookie host=\"^\\.drownedinsound\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?drownedinsound\\.com/(?!assets/|favicon\\.ico|(?:static_)?images/|javascripts/)\" to=\"https://www.drownedinsound.com/\"/></ruleset>", "<ruleset name=\"Drowned In Sound.com (partial)\" f=\"Drowned_In_Sound.com.xml\"><rule from=\"^http://(?:www\\.)?drownedinsound\\.com/(?=assets/|favicon\\.ico|(?:static_)?images/|javascripts/)\" to=\"https://dis11.herokuapp.com/\"/></ruleset>", "<ruleset name=\"drugpolicy.org\" default_off=\"failed ruleset test\" f=\"DrugPolicy.org.xml\"><rule from=\"^http://(?:www\\.)?drugpolicy\\.org/\" to=\"https://www.drugpolicy.org/\"/><securecookie host=\"^(?:www)?\\.drugpolicy\\.org\" name=\".*\"/></ruleset>", "<ruleset name=\"Drug Forum (problematic)\" default_off=\"self-signed\" f=\"Drug_Forum-problematic.xml\"><rule from=\"^http://img(\\d)\\.drugsforum\\.eu/\" to=\"https://img$1.drugsforum.eu/\"/></ruleset>", "<ruleset name=\"Drug Science.org.uk\" default_off=\"mismatched\" f=\"Drug_Science.org.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Drugs-Forum.com\" f=\"Drugs-Forum.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"drugstore.com (partial)\" f=\"Drugstore.com.xml\"><rule from=\"^http://(cfs\\.|dscmp1\\.|www\\.)?drugstore\\.com/(css/|img/|user(?:$|[\\?/]))\" to=\"https://$1drugstore.com/$2\"/><rule from=\"^http://pics([123])?\\.drugstore\\.com/\" to=\"https://pics$1.drugstore.com/\"/><rule from=\"^http://pics([123])?\\.ds-static\\.com/\" to=\"https://pics$1.ds-static.com/\"/></ruleset>", "<ruleset name=\"Drupal Gardens.com\" f=\"Drupal_Gardens.com.xml\"><securecookie host=\"^\\.?www\\.drupalgardens\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Drupal Watchdog.com\" f=\"Drupal_Watchdog.com.xml\"><rule from=\"^http://www\\.drupalwatchdog\\.com/\" to=\"https://drupalwatchdog.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dr Web.com\" default_off=\"failed ruleset test\" f=\"Drweb.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Drwho.virtadpt.net (self-signed)\" default_off=\"self-signed\" f=\"Drwho.virtadpt.net.xml\"><rule from=\"^http://(?:www\\.)?drwho\\.virtadpt\\.net/\" to=\"https://drwho.virtadpt.net/\"/></ruleset>", "<ruleset name=\"DryIcons.com\" f=\"DryIcons.com.xml\"><securecookie host=\"^\\.?dryicons\\.com$\" name=\".+\"/><rule from=\"^http://(?:(\\w\\.)|www\\.)?dryicons\\.com/\" to=\"https://$1dryicons.com/\"/></ruleset>", "<ruleset name=\"dshop.se\" f=\"Dshop.se.xml\"><securecookie host=\"^\\.dshop\\.se$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dsp.io\" f=\"Dsp.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DualShockers.com (partial)\" default_off=\"mismatched\" f=\"DualShockers.com.xml\"><rule from=\"^http://cdn2?\\.dualshockers\\.com/\" to=\"https://935956332.r.cdn77.net/\"/></ruleset>", "<ruleset name=\"duba.com (partial)\" f=\"Duba.com.xml\"><securecookie host=\"^www\\.duba\\.com$\" name=\".+\"/><rule from=\"^http://duba\\.com/\" to=\"https://www.duba.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dubfire.net (partial)\" f=\"Dubfire.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DuckCorp\" default_off=\"self-signed\" f=\"DuckCorp.xml\"><securecookie host=\".*\\.mini-dweeb\\.org$\" name=\".*\"/><rule from=\"^http://(debian|lists|projects|rcs|rcs-git|users|webdesk|webmail(?:-rc|-sm)?|wiki)\\.mini-dweeb\\.org/\" to=\"https://$1.mini-dweeb.org/\"/></ruleset>", "<ruleset name=\"DuckDuckGo\" f=\"DuckDuckGo.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://www\\.duck\\.co/\" to=\"https://duck.co/\"/><rule from=\"^http://www\\.ddg\\.gg/\" to=\"https://ddg.gg/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Duck DNS.org\" f=\"Duck_DNS.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dudley.gov.uk (MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Dudley.gov.uk-mixedcontent.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dudley.gov.uk (partial)\" f=\"Dudley.gov.uk.xml\"><exclusion pattern=\"^http://(?:www\\.)?dudley\\.gov\\.uk/+(?![Ee]asy[Ss]ite(?:[Ww]eb)?/)\"/><securecookie host=\"^(?!www\\.)\\w\" name=\".\"/><rule from=\"^http://dudley\\.gov\\.uk/\" to=\"https://www.dudley.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dueling Analogs.com (partial)\" f=\"Dueling_Aanalogs.com.xml\"><rule from=\"^http://cdn\\.duelinganalogs\\.com/\" to=\"https://d2fnxgc3lifa5q.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Duke Energy Convention Center (partial)\" default_off=\"failed ruleset test\" f=\"Duke-Energy-Convention-Center.xml\"><securecookie host=\"^www\\.duke-energycenter\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?duke-energycenter\\.com/\" to=\"https://www.duke-energycenter.com/\"/><rule from=\"^http://orders\\.duke-energycenter\\.com/\" to=\"https://orders.duke-energycenter.com/\"/></ruleset>", "<ruleset name=\"Duke University (mismatches)\" default_off=\"mismatch, self-signed\" f=\"Duke-University-mismatches.xml\"><rule from=\"^http://(global|ondemand)\\.duke\\.edu/\" to=\"https://$1.duke.edu/\"/></ruleset>", "<ruleset name=\"Duke.edu (partial)\" platform=\"mixedcontent\" f=\"Duke-University.xml\"><securecookie host=\"^.*\\.duke\\.edu$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?library\\.duke\\.edu/(css/|favicon\\.ico|imgs?/|sites/)\" to=\"https://library.duke.edu/$1\"/><rule from=\"^http://(voting\\.academiccouncil|login\\.dhts|fds|(?:www\\.)?(?:finance|hr|security|today)|www\\.finsvc|giving|(?:blogs|catalog)\\.library|www\\.math|(?:(?:dusonnet|match|www)\\.)?nursing|(?:(?:alertbar|bb-idp|brandbar|pwreset|shib|www)\\.)?oit|inside\\.pratt|(?:goldenorb\\.)?trinity|wiki)\\.duke\\.edu/\" to=\"https://$1.duke.edu/\"/><rule from=\"^http://(?:www\\.)?giving\\.duke\\.edu/\" to=\"https://giving.duke.edu/\"/><rule from=\"^http://www\\.mclibrary\\.duke\\.edu/(images/|style_\\w+\\.css$)\" to=\"https://www.mclibrary.duke.edu/$1\"/><rule from=\"^http://(?:www\\.)?pratt\\.duke\\.edu/(modul|sit)es/\" to=\"https://www.pratt.duke.edu/$1es/\"/><rule from=\"^http://it\\.pratt\\.duke\\.edu/(modul|sit)es/\" to=\"https://it.pratt.duke.edu/$1es/\"/><rule from=\"^http://members\\.dukeexechealth\\.org/\" to=\"https://members.dukeexechealth.org/\"/><rule from=\"^http://(?:www\\.)?goduke\\.com/(ads2|css|fls|images|siteMediaPlayer|pics32)/\" to=\"https://smnathletics.com/$1/\"/></ruleset>", "<ruleset name=\"Dulwich.io\" f=\"Dulwich.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dundee City.gov.uk (partial)\" f=\"Dundee_City.gov.uk.xml\"><exclusion pattern=\"^http://secure\\.dundeecity\\.gov\\.uk/$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://dundeecity\\.gov\\.uk/\" to=\"https://www.dundeecity.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dunkelangst.org\" default_off=\"failed ruleset test\" f=\"Dunkelangst.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Duo Security.com (partial)\" f=\"Duo-Security.xml\"><securecookie host=\"^(?:admin|go|signup)\\.duosecurity\\.com$\" name=\".*\"/><rule from=\"^http://((?:admin|blog|dl|go|jobs|signup|www)\\.)?duosecurity\\.com/\" to=\"https://$1duosecurity.com/\"/></ruleset>", "<ruleset name=\"Duo.com\" f=\"Duo.com.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Duodecim.fi\" f=\"Duodecim.fi.xml\"><rule from=\"^http://(?:www\\.)?duodecim\\.fi/\" to=\"https://www.duodecim.fi/\"/><rule from=\"^http://(star|verkkokauppa)\\.duodecim\\.fi/\" to=\"https://$1.duodecim.fi/\"/></ruleset>", "<ruleset name=\"Duolingo.com\" f=\"Duolingo.com.xml\"><securecookie host=\"^\\.duolingo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DuraSpace.org (partial)\" f=\"DuraSpace.org.xml\"><securecookie host=\"^bamboo\\.duraspace\\.org$\" name=\".+\"/><rule from=\"^http://(atlas|bamboo|crowd|jira|m2|svn|wiki)\\.duraspace\\.org/\" to=\"https://$1.duraspace.org/\"/><rule from=\"^http://scm\\.duraspace\\.org/+(?=$|\\?)\" to=\"https://svn.duraspace.org/dspace/\"/></ruleset>", "<ruleset name=\"Duracell Cloud.com (partial)\" f=\"Duracell_Cloud.com.xml\"><securecookie host=\"^(?:customer\\.|www\\.)?duracellcloud\\.com$\" name=\".+\"/><rule from=\"^http://((?:backup|customer|www)\\.)?duracellcloud\\.com/\" to=\"https://$1duracellcloud.com/\"/></ruleset>", "<ruleset name=\"Durham Constabulary\" f=\"DurhamConstabulary.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dustin.eu\" f=\"Dustin.eu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dustin.se\" f=\"Dustin.se.xml\"><securecookie host=\"^www\\.dustin\\.se$\" name=\".+\"/><rule from=\"^http://dustin\\.se/\" to=\"https://www.dustin.se/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dutch Bulbs.co.uk\" f=\"Dutch_Bulbs.co.uk.xml\"><securecookie host=\"^(?:www\\.)?dutchbulbs\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dutch Data Protection Authority\" f=\"Dutch_Data_Protection_Authority.xml\"><rule from=\"^http://dutchdpa\\.nl/\" to=\"https://www.dutchdpa.nl/\"/><rule from=\"^http://([^/:@]+)?\\.dutchdpa\\.nl/\" to=\"https://$1.dutchdpa.nl/\"/><rule from=\"^http://cbpweb\\.nl/\" to=\"https://www.cbpweb.nl/\"/><rule from=\"^http://([^/:@]+)?\\.cbpweb\\.nl/\" to=\"https://$1.cbpweb.nl/\"/><rule from=\"^http://([^/:@]+)?\\.collegebeschermingpersoonsgegevens\\.nl/\" to=\"https://$1.collegebeschermingpersoonsgegevens.nl/\"/></ruleset>", "<ruleset name=\"Dwarf Fortress Wiki.org (partial)\" f=\"Dwarf_Fortress_Wiki.org.xml\"><rule from=\"^http://(www\\.)?dwarffortresswiki\\.org/(?=w/skins/common/)\" to=\"https://$1dwarffortresswiki.org/\"/></ruleset>", "<ruleset name=\"Dwolla.com (false MCB)\" platform=\"mixedcontent\" f=\"Dwolla.com-falsemixed.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dwolla (partial)\" default_off=\"failed ruleset test\" f=\"Dwolla.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://status\\.dwolla\\.com/\" to=\"https://dwolla.statuspage.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dxtorrent.com\" f=\"Dxtorrent.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dxw.com\" f=\"Dxw.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dyankov.eu\" f=\"Dyankov.eu.xml\"><securecookie host=\"^dyankov\\.eu$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?dyankov\\.eu/\" to=\"https://dyankov.eu/\"/></ruleset>", "<ruleset name=\"dydx.io\" default_off=\"failed ruleset test\" f=\"Dydx.io.xml\"><securecookie host=\"^\\.?dydx\\.io$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?dydx\\.io/\" to=\"https://dydx.io/\"/></ruleset>", "<ruleset name=\"Dyn.com (partial)\" f=\"Dyn.xml\"><rule from=\"^http://status\\.dyn\\.com/\" to=\"https://www.dynstatus.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dynCDN.cc\" f=\"DynCDN.cc.xml\"><securecookie host=\"^\\.dyncdn\\.cc$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DynDNS.berlin\" f=\"DynDNS.berlin.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dyn Status.com\" default_off=\"failed ruleset test\" f=\"Dyn_Status.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DynaDot\" platform=\"mixedcontent\" f=\"DynaDot.xml\"><securecookie host=\"^(?:.+\\.)?dynadot\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?dynadot\\.com/\" to=\"https://www.dynadot.com/\"/></ruleset>", "<ruleset name=\"dynaTrace.com (partial)\" f=\"DynaTrace.xml\"><securecookie host=\".+\\.dynatrace\\.com$\" name=\".+\"/><rule from=\"^http://cdn\\.dynatrace\\.com/\" to=\"https://www.dynatrace.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DynamicWeb\" default_off=\"refused\" f=\"DynamicWeb.xml\"><securecookie host=\"^www\\.dynamicweb\\.it$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?dynamicweb\\.it/\" to=\"https://www.dynamicweb.it/\"/></ruleset>", "<ruleset name=\"Dynamic Site Platform\" f=\"Dynamic_Site_Platform.xml\"><securecookie host=\"^(?:\\.?s|secure)\\.clickability\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dynamic Yield.com\" f=\"Dynamic_Yield.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid$|_ga|cf_clearance$)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dynamics.com\" default_off=\"failed ruleset test\" f=\"Dynamics.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://dynamics\\.com/\" to=\"https://www.dynamics.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dynamite Data (mismatches)\" default_off=\"mismatched\" f=\"Dynamite-Data-mismatches.xml\"><securecookie host=\"^(?:.*\\.)?dynamitedeals\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?dynamitedeals\\.com/\" to=\"https://dynamitedeals.com/\"/></ruleset>", "<ruleset name=\"Dynamite Data (partial)\" f=\"Dynamite-Data.xml\"><securecookie host=\"^(?:.*\\.)?dynamitedata.com$\" name=\".+\"/><rule from=\"^http://((?:detonator|mkt|www)\\.)?dynamitedata\\.com/\" to=\"https://$1dynamitedata.com/\"/></ruleset>", "<ruleset name=\"Dynatech.de\" f=\"Dynatech.de.xml\"><securecookie host=\"^www\\.dynatech\\.de\" name=\".+\"/><rule from=\"^http://dynatech\\.de/\" to=\"https://www.dynatech.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dynavision.de\" f=\"Dynavision.de.xml\"><securecookie host=\"^www\\.dynavision\\.de\" name=\".+\"/><rule from=\"^http://dynavision\\.de/\" to=\"https://www.dynavision.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dyne.org (partial)\" default_off=\"failed ruleset test\" f=\"Dyne.org.xml\"><rule from=\"^http://((?:irc|lab|lists|mailinglists|www)\\.)?dyne\\.org/\" to=\"https://$1dyne.org/\"/><rule from=\"^http://new\\.dyne\\.org/\" to=\"https://www.dyne.org/\"/></ruleset>", "<ruleset name=\"Dynect.net (partial)\" f=\"Dynect.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dynu.com\" f=\"Dynu.com.xml\"><rule from=\"^http://(www\\.)?dynu\\.com/\" to=\"https://www.dynu.com/\"/></ruleset>", "<ruleset name=\"Dyson (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Dyson.xml\"><rule from=\"^http://(?:www\\.)?careers\\.dyson\\.com/\" to=\"https://www.careers.dyson.com/\"/><rule from=\"^http://media\\.dyson\\.com/\" to=\"https://media.dyson.com/\"/><rule from=\"^http://(?:www\\.)?dyson\\.co\\.uk/\" to=\"https://www.dyson.co.uk/\"/><rule from=\"^http://content\\.dyson\\.co\\.uk/(common|images)/\" to=\"https://www.careers.dyson.com/$1/\"/><rule from=\"^http://content\\.dyson\\.co\\.uk/Images/\" to=\"https://www.dyson.co.uk/medialibrary/Images/Dyson/Site/\"/><rule from=\"^http://(?:www\\.)?dyson\\.ie/\" to=\"https://www.dyson.ie/\"/><securecookie host=\"^www\\.careers\\.dyson\\.com$\" name=\".*\"/><securecookie host=\"^www\\.dyson\\.ie$\" name=\".*\"/></ruleset>", "<ruleset name=\"E-Estonia.com\" f=\"E-Estonia.com.xml\"><rule from=\"^http://(?:www\\.)?e-estonia\\.com/\" to=\"https://e-estonia.com/\"/></ruleset>", "<ruleset name=\"E-Generator.com (partial)\" f=\"E-Generator.com.xml\"><securecookie host=\"^id\\.e-generator\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"E-Hentai Forums\" f=\"E-Hentai-Forums.xml\"><rule from=\"^http://forums?\\.e-hentai\\.org/\" to=\"https://forums.e-hentai.org/\"/></ruleset>", "<ruleset name=\"e-KSF.org\" f=\"E-KSF.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"E-Mail-made-in-Germany.de\" f=\"E-Mail_made_in_Germany.xml\"><rule from=\"^http://e-mail-made-in-germany\\.de/\" to=\"https://www.e-mail-made-in-germany.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"E-Plus (problematic)\" default_off=\"mismatched\" f=\"E-Plus-problematic.xml\"><rule from=\"^http://einstellungen\\.e-plus\\.com/\" to=\"https://einstellungen.e-plus.com/\"/></ruleset>", "<ruleset name=\"E-Plus (partial)\" default_off=\"failed ruleset test\" f=\"E-Plus.xml\"><securecookie host=\"^.*\\.e-plus\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?e-plus\\.de/\" to=\"https://www.e-plus.de/\"/><rule from=\"^http://(ecc|dialog|metromobil|mymtv|norman|prepaidkundenbetreuung|vertragsverlaengerung)\\.e-plus\\.de/\" to=\"https://$1.e-plus.de/\"/></ruleset>", "<ruleset name=\"E-Plus Gruppe\" f=\"E-Plus_Gruppe.xml\"><rule from=\"^http://(?:www\\.)?eplus-gruppe\\.de/\" to=\"https://www.eplus-gruppe.de/\"/></ruleset>", "<ruleset name=\"E-Sports Entertainment\" default_off=\"self-signed\" f=\"E-Sports_Entertainment.xml\"><securecookie host=\"^\\.esea\\.net$\" name=\".+\"/><rule from=\"^http://(?:play\\.e-sea\\.net|(?:www\\.)?esportsea\\.com)/\" to=\"https://play.e-sea.net/\"/></ruleset>", "<ruleset name=\"e-activist.com\" f=\"E-activist.com.xml\"><exclusion pattern=\"^http://www\\.e-activist\\.com/ea-action/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"E-boks.dk (partial)\" f=\"E-boks.dk.xml\"><exclusion pattern=\"http://www\\.e-boks\\.dk/+(?!favicon\\.ico)\"/><securecookie host=\"^(?:logon|minerhverv)\\.e-boks\\.dk$\" name=\".+\"/><rule from=\"^http://((?:logon|minerhverv|www)\\.)?e-boks\\.dk/\" to=\"https://$1e-boks.dk/\"/></ruleset>", "<ruleset name=\"E-cegjegyzek.hu\" f=\"E-cegjegyzek.hu.xml\"><rule from=\"^http://(?:www\\.)?e-cegjegyzek\\.hu/\" to=\"https://www.e-cegjegyzek.hu/\"/></ruleset>", "<ruleset name=\"E-disclosure.ru\" f=\"E-disclosure.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"e-food.gr\" f=\"E-food.gr.xml\"><securecookie host=\"^(?:www\\.)?e-food\\.gr$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"e-gold (partial)\" default_off=\"failed ruleset test\" f=\"E-gold.xml\"><securecookie host=\"\\.e-gold.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?e-gold\\.com/\" to=\"https://www.e-gold.com/\"/></ruleset>", "<ruleset name=\"E-junkie (partial)\" f=\"E-junkie.xml\"><rule from=\"^http://(www\\.)?ejunkie\\.com/(bb/images/|ecom/|ej//?(?:(?:(?:admin|contact|register)\\.php|shop)(?:$|\\?|/)|css/|images/|media/)|gc/)\" to=\"https://$1ejunkie.com/$2\"/><rule from=\"^http://static\\.e-junkie\\.com/\" to=\"https://static.e-junkie.com/\"/></ruleset>", "<ruleset name=\"E-klase.lv\" f=\"E-klase.lv.xml\"><rule from=\"^http://(?:www\\.)?e-klase\\.lv/\" to=\"https://www.e-klase.lv/\"/></ruleset>", "<ruleset name=\"E-magin.se\" f=\"E-magazin.se.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"E-mielenterveys\" default_off=\"failed ruleset test\" f=\"E-mielenterveys.xml\"><securecookie host=\"^www\\.e-mielenterveys\\.fi$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?e-mielenterveys\\.fi/\" to=\"https://www.e-mielenterveys.fi/\"/></ruleset>", "<ruleset name=\"e-onlinedata.com\" f=\"E-onlinedata.com.xml\"><securecookie host=\"^www\\.e-onlinedata\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?e-onlinedata\\.com/\" to=\"https://www.e-onlinedata.com/\"/></ruleset>", "<ruleset name=\"E-pages.dk\" f=\"E-pages.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"e-prawnik.pl (partial)\" f=\"E-prawnik.pl.xml\"><exclusion pattern=\"^http://(?:www\\.)?e-prawnik\\.pl/(?!favicon\\.ico|i/|zamow-opinie(?:$|[?/]))\"/><rule from=\"^http://(?:www\\.)?e-prawnik\\.pl/\" to=\"https://e-prawnik.pl/\"/><rule from=\"^http://static\\.e-prawnik\\.pl/\" to=\"https://e-prawnik.pl/i/\"/><rule from=\"^http://static1\\.e-prawnik\\.pl/\" to=\"https://static1.money.pl/\"/></ruleset>", "<ruleset name=\"E-rewards.com\" f=\"E-rewards.com.xml\"><rule from=\"^http://(?:www\\.)?e-rewards\\.com/\" to=\"https://www.e-rewards.com/\"/></ruleset>", "<ruleset name=\"E.ON UK (partial)\" default_off=\"failed ruleset test\" f=\"E.ON_UK.xml\"><exclusion pattern=\"^http://(?:www\\.)?eon-uk\\.com/(?!careers/(?:Basic\\.css|images/|reset\\.css)|favicon\\.ico|images/|eOnAssets/|mediaFiles/)\"/><securecookie host=\"^stats\\.eon-uk\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"E2E Networks (partial)\" f=\"E2E-Networks.xml\"><securecookie host=\"^shopping\\.e2enetworks\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"E2ma.net (partial)\" f=\"E2ma.net.xml\"><securecookie host=\"^app\\.e2ma\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?e2ma\\.net/+(?=$|\\?)\" to=\"https://app.e2ma.net/app\"/><rule from=\"^http://app\\.e2ma\\.net/\" to=\"https://app.e2ma.net/\"/></ruleset>", "<ruleset name=\"E4ward.com\" f=\"E4ward.com.xml\"><rule from=\"^http://(?:www\\.)?e4ward\\.com/\" to=\"https://e4ward.com/\"/></ruleset>", "<ruleset name=\"e621.net\" platform=\"mixedcontent\" f=\"E621.net.xml\"><securecookie host=\"^(?:www\\.)?e621\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EAT.ch\" f=\"EAT.ch.xml\"><rule from=\"^http://www\\.eat\\.ch/\" to=\"https://eat.ch/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EA Sports.com (false MCB)\" platform=\"mixedcontent\" f=\"EA_Sports.com.xml\"><securecookie host=\"\\.www\\.easports\\.com$\" name=\".+\"/><rule from=\"^http://easports\\.com/\" to=\"https://www.easports.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eArcu\" default_off=\"failed ruleset test\" f=\"EArcu.xml\"><securecookie host=\"^(?:.*\\.)?earcu\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EBSCO-content.com\" f=\"EBSCO-content.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EBSCOhost (partial)\" platform=\"mixedcontent\" f=\"EBSCOhost.xml\"><exclusion pattern=\"^http://www2\\.\"/><securecookie host=\"^(?:.*\\.)?ebscohost\\.com$\" name=\".*\"/><rule from=\"^http://training\\.ebsco\\.com/\" to=\"https://ebscotraining.webex.com/\"/><rule from=\"^http://(\\w+\\.)?ebscohost\\.com/\" to=\"https://$1ebscohost.com/\"/></ruleset>", "<ruleset name=\"eBay (mismatches)\" default_off=\"mismatched\" f=\"EBay-mismatches.xml\"><exclusion pattern=\"^http://merchantsupport\\.shopping\\.com/(?!files/|public/(?!Mashery/styles/clients/))\"/><rule from=\"^http://di\\d+\\.shopping\\.com/\" to=\"https://img.shopping.com/\"/><rule from=\"^http://pages\\.ebay\\.com/\" to=\"https://pages.ebay.com/\"/><rule from=\"^http://merchantsupport\\.shopping\\.com/\" to=\"https://merchantsupport.shopping.com/\"/></ruleset>", "<ruleset name=\"eBay (buggy)\" default_off=\"https://www.eff.org/r.b6G9\" f=\"EBay.xml\"><securecookie host=\"^\\.?gatekeeper\\.psnt\\.ebay\\.eu$\" name=\".+\"/><securecookie host=\"^\\.ebayrtm\\.com$\" name=\"^CT$\"/><rule from=\"^http://((?:gift)?certificates|donationsstatic|merch|reco|rover|scgi|securethumbs|signin|spages\\.half|ocs|svcs)\\.ebay\\.com/\" to=\"https://$1.ebay.com/\"/><rule from=\"^http://cgi[15]\\.ebay\\.com/\" to=\"https://scgi.ebay.com/\"/><rule from=\"^http://payments\\.ebay\\.([\\w.]{2,6})/\" to=\"https://payments.ebay.$1/\"/><rule from=\"^http://s?rtm\\.ebay\\.com/\" to=\"https://srtm.ebay.com/\"/><rule from=\"^http://thumbs\\d?\\.ebay\\.com/\" to=\"https://securethumbs.ebay.com/\"/><rule from=\"^http://(?:cgi5|scgi)\\.ebay\\.com\\.sg/\" to=\"https://scgi.ebay.com.sg/\"/><rule from=\"^http://gatekeeper\\.psnt\\.ebay\\.eu/\" to=\"https://gatekeeper.psnt.ebay.eu/\"/><rule from=\"^http://sr[vx](\\.\\w+)?\\.ebayrtm\\.com/\" to=\"https://srv$1.ebayrtm.com/\"/></ruleset>", "<ruleset name=\"eBay static.com (testing)\" default_off=\"testing\" f=\"EBay_static.com-problematic.xml\"><exclusion pattern=\"^http://\\w+\\.ebaystatic\\.com/.+\\.(?:gif|ico|jpg|png)(?:$|\\?)\"/><rule from=\"^http://thumbs\\d?\\.ebaystatic\\.com/\" to=\"https://securethumbs.ebay.com/\"/><rule from=\"^http://(?:secure)?(include|ir|pics|rtm)\\.ebaystatic\\.com/\" to=\"https://secure$1.ebaystatic.com/\"/><rule from=\"^http://[pq]\\.ebaystatic\\.com/\" to=\"https://securepics.ebaystatic.com/\"/><rule from=\"^http://gh\\.ebaystatic\\.com/\" to=\"https://gh.ebaystatic.com/\"/></ruleset>", "<ruleset name=\"eBay static.com (partial)\" f=\"EBay_static.com.xml\"><exclusion pattern=\"^http://\\w+\\.ebaystatic\\.com/(?!.+\\.(?:gif|ico|jpg|png)(?:$|\\?))\"/><rule from=\"^http://thumbs\\d?\\.ebaystatic\\.com/\" to=\"https://securethumbs.ebay.com/\"/><rule from=\"^http://(?:secure)?(include|ir|pics|rtm)\\.ebaystatic\\.com/\" to=\"https://secure$1.ebaystatic.com/\"/><rule from=\"^http://[pq]\\.ebaystatic\\.com/\" to=\"https://securepics.ebaystatic.com/\"/><rule from=\"^http://gh\\.ebaystatic\\.com/\" to=\"https://gh.ebaystatic.com/\"/></ruleset>", "<ruleset name=\"eBlastEngine.com (partial)\" f=\"EBlastEngine.com.xml\"><securecookie host=\"^.*\\.eblastengine\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EC21 (partial)\" f=\"EC21.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ECC-Platform.org\" f=\"ECC-Platform.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eCPIC.gov\" f=\"ECPIC.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ECSI.net\" f=\"ECSI.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ECSI\" default_off=\"failed ruleset test\" f=\"ECSI.xml\"><rule from=\"^http://(?:www\\.)?ecsi\\.com/\" to=\"https://www.ecsi.com/\"/></ruleset>", "<ruleset name=\"eCampus.no (partial)\" default_off=\"failed ruleset test\" f=\"ECampus.no.xml\"><rule from=\"^http://tjenester\\.ecampus\\.no/\" to=\"https://getsatisfaction.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eCigPros\" f=\"ECigPros.xml\"><securecookie host=\"^(?:.*\\.)?ecigpros\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ECommerce Brasil.com.br\" f=\"ECommerce_Brasil.com.br.xml\"><securecookie host=\"^\\.?cursos\\.ecommercebrasil\\.com\\.br$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eCosCentric.com\" f=\"ECosCentric.com.xml\"><securecookie host=\"^\\.bugzilla\\.ecoscentric\\.com$\" name=\".+\"/><rule from=\"^http://(?:www(2)?\\.)?ecoscentric\\.com/\" to=\"https://www$1.ecoscentric.com/\"/><rule from=\"^http://(bugzilla|lists)\\.ecoscentric\\.com/\" to=\"https://$1.ecoscentric.com/\"/></ruleset>", "<ruleset name=\"eCrime Research.org\" f=\"ECrime_Research.org.xml\"><rule from=\"^http://(?:www\\.)?ecrimeresearch\\.org/\" to=\"https://ecrimeresearch.org/\"/></ruleset>", "<ruleset name=\"eCustomerOpinions.com\" default_off=\"failed ruleset test\" f=\"ECustomerOpinions.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ED.gov (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"ED.gov.xml\"><securecookie host=\"(?:^|\\.)(?:cbfisap|cod|dl|ecdrappeals|e-grants|faaaccess|fafsa|fsadownload|fsaregistration|fsawebenroll|ifap|nces|nslds|pin|sa|studentaid2?|tcli|teach-ats|(?:fafsademo\\.test)|usdoedregistration)\\.ed\\.gov$\" name=\".+\"/><rule from=\"^http://(dl\\.)?ed\\.gov/\" to=\"https://www.$1ed.gov/\"/><rule from=\"^http://((schools\\.dl)|ecdrappeals|e-grants|sa|(fafsademo\\.test)|www)\\.ed\\.gov/\" to=\"https://$1.ed.gov/\"/><rule from=\"^((http://(www\\.)?)|(https://www\\.))(cbfisap|cod|faaaccess|fafsa||fafsalivehelp01||fsawebenroll|nces|pin|studentaid2?|teach-ats|usdoedregistration)\\.ed\\.gov/\" to=\"https://$5.ed.gov/\"/><rule from=\"^(http://(www\\.)?|https://)(dl|fsadownload|fsaregistration|ifap|nslds|tcli)\\.ed\\.gov/\" to=\"https://www.$3.ed.gov/\"/></ruleset>", "<ruleset name=\"EDF Energy\" f=\"EDF_Energy.xml\"><securecookie host=\"^my-account\\.edfenergy\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?edfenergy\\.com/\" to=\"https://www.edfenergy.com/\"/><rule from=\"^http://my-account\\.edfenergy\\.com/\" to=\"https://my-account.edfenergy.com/\"/></ruleset>", "<ruleset name=\"EDG.com\" default_off=\"failed ruleset test\" f=\"EDG.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EDGAR-Online.com (partial)\" f=\"EDGAR-Online.xml\"><securecookie host=\"^\\.\" name=\"^__qca$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EDI Health Group (mismatches)\" default_off=\"mismatched\" f=\"EDI-Health-Group-mismatches.xml\"><securecookie host=\"^(?:.*\\.)?payconnect\\.net$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?payconnect\\.net/\" to=\"https://payconnect.net/\"/></ruleset>", "<ruleset name=\"EDI Health Group\" platform=\"mixedcontent\" f=\"EDI-Health-Group.xml\"><securecookie host=\"^(?:.*\\.)?dentalexchange\\.com$\" name=\".*\"/><securecookie host=\"^secure\\.payconnect\\.net$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?claimconnect\\.net/\" to=\"https://www.dentalxchange.com/x/claimconnect.jsp\"/><rule from=\"^http://(?:www\\.)?(?:dentalxchange\\.com|(?:edihealth|webclaim)\\.net)/\" to=\"https://www.dentalxchange.com/\"/><rule from=\"^http://claimconnect\\.dentalxchange\\.com/\" to=\"https://claimconnect.dentalxchange.com/\"/><rule from=\"^http://(?:www\\.)?edihealth\\.com/\" to=\"https://www.dentalxchange.com/x/partners/webclaim.jsp\"/><rule from=\"^http://secure\\.payconnect\\.net/\" to=\"https://secure.payconnect.net/\"/></ruleset>", "<ruleset name=\"EDI7.lu (partial)\" default_off=\"failed ruleset test\" f=\"EDI7.lu.xml\"><securecookie host=\"^www2\\.edi7\\.lu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Edp.pt\" default_off=\"failed ruleset test\" f=\"EDP.pt.xml\"><rule from=\"^http://edp\\.pt/\" to=\"https://www.edp.pt/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eDR CDN.com\" f=\"EDR_CDN.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.edrcdn\\.com/\" to=\"https://edrcdn.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EDRi.org\" f=\"EDRi.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eDeveloperz.com\" f=\"EDeveloperz.xml\"><rule from=\"^http://(?:version5\\.|www\\.)?edeveloperz\\.com/+([^?]*)(?:\\?.*)?\" to=\"https://version6.edeveloperz.com/$1\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eDialogue.org\" f=\"EDialogue.org.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eDigitalResearch.com (partial)\" default_off=\"failed ruleset test\" f=\"EDigitalResearch.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eDigitalSurvey.com\" f=\"EDigitalSurvey.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eDirectDebit (partial)\" default_off=\"failed ruleset test\" f=\"EDirectDebit.xml\"><securecookie host=\"^www\\.edirectdebit\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?edirectdebit\\.com/\" to=\"https://www.edirectdebit.com/\"/></ruleset>", "<ruleset name=\"eDonorCentral.com\" f=\"EDonorCentral.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EEQJ.com\" default_off=\"failed ruleset test\" f=\"EEQJ.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EET Group\" default_off=\"failed ruleset test\" f=\"EET_Group.xml\"><securecookie host=\"^.*\\.eet(?:group|nordic)\\.com$\" name=\".+\"/><rule from=\"^http://(s\\.|www\\.)?eet\\.eu/\" to=\"https://$1eet.eu/\"/><rule from=\"^http://(at|be|ch|cz|de|dk|es|fi|fr|it|nl|no|pl|pt|se|uk)\\.eet(group|nordic)\\.com/\" to=\"https://$1.eet$2.com/\"/></ruleset>", "<ruleset name=\"EE Times (mixed content)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"EE_Times-mixed.xml\"><securecookie host=\"^video\\.eetimes\\.com$\" name=\".+\"/><rule from=\"^http://video\\.eetimes\\.com/\" to=\"https://video.eetimes.com/\"/></ruleset>", "<ruleset name=\"EE Times (partial)\" default_off=\"failed ruleset test\" f=\"EE_Times.xml\"><securecookie host=\"^\\.eetimes\\.com$\" name=\"^s_\\w+$\"/><securecookie host=\"^www\\.eetimes\\.com$\" name=\".+\"/><rule from=\"^http://((?:cdn|confidential|new|www)\\.)?eetimes\\.com/\" to=\"https://$1eetimes.com/\"/><rule from=\"^http://om\\.eetimes\\.com/\" to=\"https://eetimes-com.112.2o7.net/\"/></ruleset>", "<ruleset name=\"EFF\" f=\"EFF.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eFinancialCareers.cn (partial)\" f=\"EFinancialCareers.cn.xml\"><exclusion pattern=\"^http://(?:www\\.)?efinancialcareers\\.cn/+(?!login|myefc/profile|resources/)\"/><rule from=\"^http://efinancialcareers\\.cn/+\" to=\"https://www.efinancialcareers.cn/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eFinancialCareers.com (partial)\" default_off=\"failed ruleset test\" f=\"EFinancialCareers.xml\"><exclusion pattern=\"^http://(?:www\\.)?efinancialcareers\\.com/(?!login|myefc/profile|resources/)\"/><securecookie host=\"^\\.\" name=\"^__utm\"/><rule from=\"^http://news-cdn\\.efinancialcareers\\.com/\" to=\"https://d2p98mys7gexzy.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eForensics Mag.com\" f=\"EForensics_Mag.com.xml\"><securecookie host=\"^\\.eforensicsmag\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eForsa.pl\" f=\"EForsa.pl.xml\"><securecookie host=\"^\\.?eforsa\\.pl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eFukt.com\" default_off=\"handshake failure\" f=\"EFukt.com.xml\"><securecookie host=\"^(?:www\\.)?efukt\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eFurnitureNY\" f=\"EFurnitureNY.xml\"><securecookie host=\"^(?:.*\\.)?efurnitureny\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EHIC.org.uk\" f=\"EHIC.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EIA.gov (partial)\" f=\"EIA.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://eia\\.gov/\" to=\"https://www.eia.gov/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EIDQ\" default_off=\"failed ruleset test\" f=\"EIDQ.xml\"><securecookie host=\"^(?:www\\.)?eidq\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EIS Kent.co.uk\" default_off=\"failed ruleset test\" f=\"EIS_Kent.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://eiskent\\.co\\.uk/\" to=\"https://www.eiskent.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EKWB Cooling Solutions\" f=\"EKWB.com.xml\"><securecookie host=\"^(?:www\\.)?ekwb\\.com\" name=\".*\"/><rule from=\"^http://(?:www\\.)?ekwb\\.com/\" to=\"https://www.ekwb.com/\"/></ruleset>", "<ruleset name=\"eKomi\" default_off=\"failed ruleset test\" f=\"EKomi.xml\"><securecookie host=\"^(?:www)?\\.ekomi(?:\\.\\w\\w|\\.co\\.\\w\\w|-us\\.com)$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ekomi\\.(?:at|ch)/\" to=\"https://www.ekomi.de/\"/><rule from=\"^http://ssl\\.ekomi\\.de/\" to=\"https://www.ekomi.de/\"/><rule from=\"^http://ekomi\\.(co\\.za|it|se|sk)/\" to=\"https://www.ekomi.$1/\"/><rule from=\"^http://(vf-js\\.|www\\.)?ekomi(\\.\\w\\w|\\.co\\.\\w\\w|-us\\.com)/\" to=\"https://$1ekomi$2/\"/></ruleset>", "<ruleset name=\"ELENA\" default_off=\"failed ruleset test\" f=\"ELENA-Verfahren.de.xml\"><rule from=\"^http://(?:www\\.)?das-elena-verfahren\\.de/\" to=\"https://www.das-elena-verfahren.de/\"/></ruleset>", "<ruleset name=\"ELO edge.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"ELO_edge.com.xml\"><securecookie host=\"^\\.eloedge\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ELRepo.org\" f=\"ELRepo.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ELTE.hu (partial)\" f=\"ELTE.hu.xml\"><securecookie host=\"^(?:hallgato\\.neptun|telefon|telefonkonyv|\\.webmail)\\.elte\\.hu$\" name=\".+\"/><rule from=\"^http://(alumni|web\\.caesar|felveteli|iig|mars|minoseg|hallgato\\.neptun|pik|telefon|telefonkonyv|ugykezelo|webmail|www)\\.elte\\.hu/\" to=\"https://$1.elte.hu/\"/><rule from=\"^http://(?:www\\.)?caesar\\.elte\\.hu/\" to=\"https://www.caesar.elte.hu/\"/><rule from=\"^http://webmail\\.caesar\\.elte\\.hu/\" to=\"https://webmail.elte.hu/\"/></ruleset>", "<ruleset name=\"eLabor (partial)\" f=\"ELabor.xml\"><securecookie host=\"^workforceportal\\.elabor\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eLatinos.com\" default_off=\"failed ruleset test\" f=\"ELatinos.com.xml\"><securecookie host=\"^(?:www)?\\.elatinos\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eLearnSecurity.com\" f=\"ELearnSecurity.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EMC (partial)\" f=\"EMC.xml\"><securecookie host=\"^\\.emc\\.com$\" name=\"^(?:CampaignHeader|s_\\w+|__utm\\w)$\"/><securecookie host=\"^www\\.emc\\.com$\" name=\"^(?:HumanClickSiteContainerID_\\w+|lpFPCtest)$\"/><securecookie host=\"^(?:community|education|\\.?gallery|powerlink|sso)\\.emc\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?emc\\.com/(_admin/|emc-plus/support/[\\w-]+\\.(?:cs|j)s|favicon\\.ico|homepage/css/|images/|jcaptcha\\.htm|login\\.htm|profile/account_information\\.htm|R1/|register\\.htm|reset_password/email\\.htm|rss/[\\w-]+\\.(?:json|rss)|utilities/(?:css/|globalsiteselect\\.jhtml))\" to=\"https://www.emc.com/$1\"/><rule from=\"^http://(community|ecn-analytics|education|gallery|powerlink|sso)\\.emc\\.com/\" to=\"https://$1.emc.com/\"/><rule from=\"^http://ecn-analytics-nssl\\.emc\\.com/\" to=\"https://emc-com.122.2o7.net/\"/><rule from=\"^http://emc\\.force\\.com/\" to=\"https://emc.secure.force.com/\"/></ruleset>", "<ruleset name=\"ENS.fr (partial)\" f=\"ENS.fr.xml\"><securecookie host=\"^(?:www-mail\\.(?:biologie|magbio)|www\\.cof|crypto(?:bib)?|\\.?halley|\\.mail\\.(?:jourdan|lumiere)|www\\.gdr-meso\\.phys)\\.ens\\.fr$\" name=\".+\"/><rule from=\"^http://(dg|ecocampus)\\.ens\\.fr/\" to=\"https://www.$1.ens.fr/\"/><rule from=\"^http://www\\.dma\\.ens\\.fr/\" to=\"https://www.math.ens.fr/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ENTP clients\" default_off=\"mismatched\" f=\"ENTP-clients.xml\"><exclusion pattern=\"^http://support\\.arpnetworks\\.com/(?:help|pkg|stylesheets)/\"/><exclusion pattern=\"^http://help\\.flavors\\.me/(?:help|pkg|stylesheets)/\"/><exclusion pattern=\"^http://help\\.goodsie\\.com/(?:help|pkg|stylesheets)/\"/><securecookie host=\"^help\\.flavors\\.me$\" name=\".*\"/><securecookie host=\"^help\\.goodsie\\.com$\" name=\".*\"/><rule from=\"^http://support\\.arpnetworks\\.com/\" to=\"https://support.arpnetworks.com/\"/><rule from=\"^http://help\\.flavors\\.me/\" to=\"https://help.flavors.me/\"/><rule from=\"^http://help\\.goodsie\\.com/\" to=\"https://help.goodsie.com/\"/></ruleset>", "<ruleset name=\"Tender Support\" f=\"ENTP.xml\"><securecookie host=\".*\\.tenderapp\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eNomCentral (partial)\" f=\"ENomCentral.xml\"><rule from=\"^http://(?:www\\.)?enomcentral\\.com/(captchautil/|css/|_?images/|js/|login\\.aspx|myaccount(?:$|\\?|/)|(?:Script|Web)Resource\\.axd|verisign-seal\\.htm)\" to=\"https://www.enomcentral.com/$1\"/></ruleset>", "<ruleset name=\"EOFT\" f=\"EOFT.xml\"><rule from=\"^http://(?:www\\.)?eoft\\.eu/\" to=\"https://www.eoft.eu/\"/></ruleset>", "<ruleset name=\"EOReality.net (partial)\" f=\"EOReality.net.xml\"><securecookie host=\"^billing\\.eoreality\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EPA.gov (MCB)\" platform=\"mixedcontent\" f=\"EPA.gov-mixedcontent.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EPA.gov (partial)\" f=\"EPA.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EPA (.ie)\" platform=\"mixedcontent\" f=\"EPA.ie.xml\"><exclusion pattern=\"^http://gis\\.epa\\.ie/\"/><rule from=\"^http://(?:www\\.)?epa\\.ie/\" to=\"https://www.epa.ie/\"/></ruleset>", "<ruleset name=\"EPB\" f=\"EPB.xml\"><securecookie host=\"^(?:.*\\.)?epb(?:\\.net|fi\\.com)$\" name=\".*\"/><rule from=\"^http://(livehelp\\.|www\\.)?epb\\.net/\" to=\"https://$1epb.net/\"/><rule from=\"^http://((?:mail|livehelp|phone|www)\\.)?epbfi\\.com/\" to=\"https://$1epbfi.com/\"/></ruleset>", "<ruleset name=\"EPEAT (partial)\" f=\"EPEAT.xml\"><rule from=\"^http://ww2\\.epeat\\.com/\" to=\"https://ww2.epeat.com/\"/></ruleset>", "<ruleset name=\"EPFL (partial)\" f=\"EPFL.xml\"><securecookie host=\"^(?:inform|jahia-prod)\\.epfl\\.ch$\" name=\".+\"/><rule from=\"^http://((?:inform|jahia-prod|winauth|www)\\.)?epfl\\.ch/\" to=\"https://$1epfl.ch/\"/></ruleset>", "<ruleset name=\"EPIC\" f=\"EPIC.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ePay.bg\" f=\"EPay.bg.xml\"><rule from=\"^http://(?:www\\.)?epay\\.bg/\" to=\"https://www.epay.bg/\"/></ruleset>", "<ruleset name=\"ePly.com\" f=\"EPly.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ePrize\" default_off=\"failed ruleset test\" f=\"EPrize.xml\"><securecookie host=\"^(?:rps01|socialize)\\.eprize\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?eprize\\.(?:com|net)/\" to=\"https://www.eprize.com/\"/><rule from=\"^http://(results|rps01|socialize|winlists?)\\.eprize\\.com/\" to=\"https://$1.eprize.com/\"/></ruleset>", "<ruleset name=\"eQualit.ie\" f=\"EQualit.ie.xml\"><securecookie host=\"^(?:www\\.)?equalit\\.ie$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eQuranClass.com\" f=\"EQuranClass.com.xml\"><exclusion pattern=\"^http://www\\.equranclass\\.com/elearning/registration/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ERA.int\" f=\"ERA.int.xml\"><rule from=\"^http://(?:www\\.)?era\\.int/\" to=\"https://www.era.int/\"/></ruleset>", "<ruleset name=\"ERC.edu\" default_off=\"failed ruleset test\" f=\"ERC.edu.xml\"><securecookie host=\"^courses\\.erc\\.edu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ERNW.de\" f=\"ERNW.de.xml\"><rule from=\"^http://(?:www\\.)?ernw\\.de/\" to=\"https://www.ernw.de/\"/></ruleset>", "<ruleset name=\"eReceptionist.co.uk (partial)\" f=\"EReceptionist.co.uk.xml\"><rule from=\"^http://(?:www\\.)?ereceptionist\\.co\\.uk/(?=App_Themes/|bundles/|Content/|e[vV]oice[iI]mages/|favicon\\.ico|(?:forgot-password|phone-system-choose)(?:$|[?/])|images/|[jJ]s/|(?:Telerik\\.Web\\.UI\\.)?WebResource\\.axd)\" to=\"https://www.ereceptionist.co.uk/\"/></ruleset>", "<ruleset name=\"ESB.ie\" default_off=\"failed ruleset test\" f=\"ESB.ie.xml\"><rule from=\"^http://(?:www\\.)?esb\\.ie/\" to=\"https://www.esb.ie/\"/><rule from=\"^http://(www\\.)?esbie\\.ie/\" to=\"https://$1esbie.ie/\"/></ruleset>", "<ruleset name=\"ESET.at\" f=\"ESET.at.xml\"><rule from=\"^http://(?:www\\.)?eset\\.at/\" to=\"https://www.sicontact.at/\"/></ruleset>", "<ruleset name=\"ESET.co.uk (partial)\" f=\"ESET.co.uk.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ESET.de (partial)\" f=\"ESET.de.xml\"><rule from=\"^http://(?:www\\.)?eset\\.de/(?=$|\\?)\" to=\"https://www.eset.com/de\"/></ruleset>", "<ruleset name=\"ESET NOD32.ru (partial)\" f=\"ESET_NOD32.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.shop\\.esetnod32\\.ru$\" name=\".\"/><rule from=\"^http://esetnod32\\.ru/\" to=\"https://www.esetnod32.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ESET static.com\" f=\"ESET_static.com.xml\"><rule from=\"^http://(static\\d|www)\\.esetstatic\\.com/\" to=\"https://$1.esetstatic.com/\"/></ruleset>", "<ruleset name=\"ESF-Works.com\" default_off=\"self-signed\" f=\"ESF-Works.com.xml\"><securecookie host=\"^esf-works\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?esf-works\\.com/\" to=\"https://esf-works.com/\"/></ruleset>", "<ruleset name=\"ESI-Group.com\" f=\"ESI-Group.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ESI\" f=\"ESI.xml\"><securecookie host=\"^(?:www)?\\.esi\\.dz$\" name=\".+\"/><rule from=\"^http://www\\.esi\\.dz/\" to=\"https://www.esi.dz/\"/></ruleset>", "<ruleset name=\"ESISS\" f=\"ESISS.xml\"><securecookie host=\"^(?:.+\\.)?esiss\\.ac\\.uk$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?esiss\\.ac\\.uk/\" to=\"https://www.esiss.ac.uk/\"/></ruleset>", "<ruleset name=\"ESJ.com\" f=\"ESJ.com.xml\"><securecookie host=\"^esj\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ESOMAR.org\" f=\"ESOMAR.org.xml\"><securecookie host=\".*\\.esomar\\.org$\" name=\"^__utm\\w$\"/><securecookie host=\"^(?:directory|www)\\.esomar\\.org$\" name=\".+\"/><rule from=\"^http://((?:directory|payment|rwconnect|www)\\.)?esomar\\.org/\" to=\"https://$1esomar.org/\"/></ruleset>", "<ruleset name=\"ESRB\" f=\"ESRB.xml\"><rule from=\"^http://(?:www\\.)?esrb\\.org/\" to=\"https://www.esrb.org/\"/></ruleset>", "<ruleset name=\"ESRI.ie\" f=\"ESRI.ie.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ESTA Visas.org.uk\" default_off=\"failed ruleset test\" f=\"ESTA_Visas.org.uk.xml\"><securecookie host=\"^(?:www\\.|\\.)?estavisas\\.org\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ESTA Visas.org\" default_off=\"failed ruleset test\" f=\"ESTA_Visas.org.xml\"><securecookie host=\"^(?:www\\.|\\.)?estavisas\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ESV.de\" f=\"ESV.de.xml\"><securecookie host=\"^www\\.esv\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?esv\\.de/\" to=\"https://www.esv.de/\"/></ruleset>", "<ruleset name=\"ES Discuss.com\" f=\"ES_Discuss.com.xml\"><securecookie host=\"^\\.?esdiscuss\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eScholarship.org (mismatched)\" default_off=\"mismatched\" f=\"EScholarship.org-problematic.xml\"><securecookie host=\"^publish\\.escholarship\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eScholarship.org (partial)\" f=\"EScholarship.org.xml\"><securecookie host=\"^submit\\.escholarship\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eSupport.com (partial)\" f=\"ESupport.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ETAO.com (partial)\" f=\"ETAO.com.xml\"><rule from=\"^http://(buy\\.|web\\.)?etao\\.com/\" to=\"https://www.etao.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ETHZ.ch (problematic)\" default_off=\"expired, missing certificate chain\" f=\"ETHZ.ch-problematic.xml\"><rule from=\"^http://ethlife\\.ethz\\.ch/\" to=\"https://www.ethlife.ethz.ch/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ETHZ.ch (partial)\" default_off=\"failed ruleset test\" f=\"ETH_Zurich.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://ethz\\.ch/\" to=\"https://www.ethz.ch/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ETS\" f=\"ETS.xml\"><rule from=\"^http://(?:www\\.)?ets\\.org/\" to=\"https://www.ets.org/\"/><rule from=\"^http://(apstudio|ept-elm|gedcalifornia|gresearch|ibtsd3|mygre|onyx|ppi|srp|title2|toefl-registration|toeflrts)\\.ets\\.org/\" to=\"https://$1.ets.org/\"/></ruleset>", "<ruleset name=\"ETegro Technologies (default off)\" default_off=\"invalid cert\" f=\"ETegro.xml\"><rule from=\"^http://(?:www\\.)?etegro\\.com/\" to=\"https://www.etegro.com/\"/></ruleset>", "<ruleset name=\"eToro.com (partial)\" f=\"EToro.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eUKhost (partial)\" f=\"EUKhost.xml\"><securecookie host=\"^billing\\.eukhost\\.com$\" name=\".+\"/><rule from=\"^http://(affiliates|billing)\\.eukhost\\.com/\" to=\"https://$1.eukhost.com/\"/></ruleset>", "<ruleset name=\"eUKhosting\" f=\"EUKhosting.xml\"><securecookie host=\".+\\.eukhosting.net$\" name=\".+\"/><rule from=\"^http://(?!www\\.)([\\w-]+)\\.eukhosting\\.net/\" to=\"https://$1.eukhosting.net/\"/></ruleset>", "<ruleset name=\"EUSecWest\" f=\"EUSecWest.xml\"><securecookie host=\"^\\.eusecwest\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?eusecwest\\.com/\" to=\"https://eusecwest.com/\"/></ruleset>", "<ruleset name=\"EUobserver.com\" f=\"EUobserver.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EUserv.de (partial)\" f=\"EUserv.de.xml\"><exclusion pattern=\"^http://(?:www\\.)?euserv\\.de/+(?!favicon\\.ico|pic/)\"/><rule from=\"^http://(?:(www\\.)?ssl\\.|www\\.)?euserv\\.de/\" to=\"https://$1ssl.euserv.de/\"/><rule from=\"^http://support\\.euserv\\.de/\" to=\"https://support.euserv.de/\"/></ruleset>", "<ruleset name=\"EVDrive (partial)\" default_off=\"mismatched\" f=\"EVDrive.xml\"><rule from=\"^http://(?:www\\.)?evdrive\\.com/wp-content/\" to=\"https://evdrive.evdriveinfo.com/~evdrivei/current/wp-current/\"/></ruleset>", "<ruleset name=\"EVE Online.com (partial)\" f=\"EVE_Online.com.xml\"><securecookie host=\"^(?:forums|secure|wiki)\\.eveonline\\.com$\" name=\".+\"/><rule from=\"^http://((?:community|forums|gate|image|login|secure|wiki|www)\\.)?eveonline\\.com/\" to=\"https://$1eveonline.com/\"/></ruleset>", "<ruleset name=\"EVGA (partial)\" f=\"EVGA.xml\"><exclusion pattern=\"^http://www\\.evga\\.com/(?:forums|Products)/\\w+\\.aspx\"/><securecookie host=\"^www\\.evga\\.com$\" name=\"^dbforums.*$\"/><rule from=\"^http://(?:www\\.)?evga\\.com/((?:.+/)?(?:$|\\w+\\.(?:aspx|css|gif|jpg|js|png|swf|xml)($|\\?)|attachments/|files/|forumsarchive/|images/|includes/|JS/)|banners/|favicon\\.ico|gaming/wp-content/|(?:[sS]upport/)?login\\.asp$|support/d(?:ownload|rivers)/|Support/download/)\" to=\"https://www.evga.com/$1\"/><rule from=\"^http://(?:(?:asia|[bfk]r|eu|jp|latam)\\.evga\\.com|(?:www\\.)?evga\\.com\\.(?:au|tw))/((?:.+/)?images/common/|favicon\\.ico$)\" to=\"https://www.evga.com/$1\"/></ruleset>", "<ruleset name=\"eVoice.co.uk (partial)\" f=\"EVoice.co.uk.xml\"><securecookie host=\"^www\\.evoice\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?evoice\\.co\\.uk/\" to=\"https://www.evoice.co.uk/\"/><rule from=\"^http://go\\.evoice\\.co\\.uk/\" to=\"https://go.evoice.co.uk/\"/><rule from=\"^http://home\\.evoice\\.co\\.uk/+(?=$|\\?)\" to=\"https://go.evoice.co.uk/eV_UK_NS_MyWebHelp/eV_UKHelp_Left.htm\"/></ruleset>", "<ruleset name=\"E. W. Scripps Company (mismatches)\" default_off=\"mismatched\" platform=\"mixedcontent\" f=\"EW-Scripps-Company-mismatches.xml\"><rule from=\"^http://m(edia)?\\.andersonvalleypost\\.com/\" to=\"https://m$1.andersonvalleypost.com/\"/><rule from=\"^http://(blogs|media|web)\\.commercialappeal\\.com/\" to=\"https://$1.commercialappeal.com/\"/><rule from=\"^http://(homes|web)\\.redding\\.com/\" to=\"https://$1web.redding.com/\"/></ruleset>", "<ruleset name=\"E. W. Scripps Company (partial)\" default_off=\"failed ruleset test\" f=\"EW-Scripps-Company.xml\"><rule from=\"^http://(?:www\\.)?andersonvalleypost\\.com/(accounts/(?:login|password_reset|register)|staff|subscribe)/\" to=\"https://www.andersonvalleypost.com/$1/\"/><rule from=\"^http://login\\.andersonvalleypost\\.com/\" to=\"https://login.andersonvalleypost.com/\"/><rule from=\"^http://(?:www\\.)?commercialappeal\\.com/\" to=\"https://www.commercialappeal.com/\"/><rule from=\"^http://(?:www\\.)?redding\\.com/\" to=\"https://www.redding.com/\"/></ruleset>", "<ruleset name=\"EW-online.de\" platform=\"mixedcontent\" default_off=\"self-signed\" f=\"EW-online.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EWebScapes.com (partial)\" f=\"EWebScapes.com.xml\"><rule from=\"^http://(?:www\\.)?ewebscapes\\.com/+\" to=\"https://webdevstudios.com/\"/><rule from=\"^http://clientarea\\.ewebscapes\\.com/+(?=$|\\?)\" to=\"https://webdevstudios.com/contact\"/></ruleset>", "<ruleset name=\"eWellness magazine (partial)\" default_off=\"failed ruleset test\" f=\"EWellness_magazine.xml\"><exclusion pattern=\"^http://www\\.ewellnessmag\\.com/(?:app/shop(?:$|\\?|/login_or_register)|cart(?:$|\\?))\"/><rule from=\"^http://(?:www\\.)?ewellnessmag\\.com/\" to=\"https://www.ewellnessmag.com/\"/></ruleset>", "<ruleset name=\"EXANTE\" f=\"EXANTE.xml\"><securecookie host=\"^exante\\.eu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EXIST.de\" f=\"EXIST.de.xml\"><securecookie host=\"^www\\.exist\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eXXile.net\" default_off=\"mismatched, self-signed\" f=\"EXXile.net.xml\"><securecookie host=\"^firefox\\.exxile\\.net$\" name=\".+\"/><rule from=\"^http://(?:(firefox\\.)|www\\.)?exxile\\.net/\" to=\"https://$1exxile.net/\"/></ruleset>", "<ruleset name=\"eXelate\" default_off=\"failed ruleset test\" f=\"EXelate.xml\"><securecookie host=\"^texi\\.exelate\\.com$\" name=\".+\"/><securecookie host=\"^\\.exelator\\.com$\" name=\".+\"/><rule from=\"^http://ad\\.exelate\\.com/\" to=\"https://ad.yieldmanager.com/\"/><rule from=\"^http://texi\\.exelate\\.com/\" to=\"https://texi.exelate.com/\"/><rule from=\"^http://loadan\\.exelator\\.com/\" to=\"https://load.exelator.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The eXiled (partial)\" default_off=\"expired, self-signed\" f=\"EXiled.xml\"><rule from=\"^http://(?:www\\.)?exiledonline\\.com/(favicon\\.ico|slider/|wp-content/)\" to=\"https://exiledonline.com/$1\"/></ruleset>", "<ruleset name=\"EYE film.nl (partial)\" f=\"EYE_film.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EZ Web Hosting\" f=\"EZ-Web-Hosting.xml\"><securecookie host=\"^.*\\.ez-web-hosting\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EZGram\" f=\"EZGram.xml\"><securecookie host=\"^(www)?\\.ezgram\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EZOSHosting (false MCB)\" platform=\"mixedcontent\" f=\"EZOSHosting.xml\"><securecookie host=\"^.*\\.ezoshosting\\.com$\" name=\".*\"/><rule from=\"^http://(?:cdn\\.|(support\\.|www\\.))?ezoshosting\\.com/\" to=\"https://$1ezoshosting.com/\"/></ruleset>", "<ruleset name=\"EZTV\" default_off=\"failed ruleset test\" f=\"EZTV.xml\"><securecookie host=\"^\\.ezimg\\.it$\" name=\".+\"/><securecookie host=\"^\\.?eztv\\.it$\" name=\".+\"/><rule from=\"^http://(www\\.)?ez(img|tv)\\.it/\" to=\"https://$1ez$2.it/\"/><rule from=\"^http://(?:www\\.)?(ezrss\\.it|zoink\\.it|ezimages\\.eu)/\" to=\"https://$1/\"/><rule from=\"^http://torrent\\.zoink\\.it/\" to=\"https://torrent.zoink.it/\"/></ruleset>", "<ruleset name=\"eager.io\" f=\"Eager.io.xml\"><rule from=\"^http://((?:bus|embedded|dev|www)\\.)?eager\\.io/\" to=\"https://$1eager.io/\"/><rule from=\"^http://status\\.eager\\.io/\" to=\"https://eager.statuspage.io/\"/></ruleset>", "<ruleset name=\"Eagle Rock Reservation\" default_off=\"mismatched\" f=\"Eagle_Rock_Reservation.xml\"><rule from=\"^http://(?:www\\.)?eaglerockreservation\\.org/\" to=\"https://eaglerockreservation.org/\"/></ruleset>", "<ruleset name=\"EarthLink (partial)\" default_off=\"Breaks certain pop-up content (such as the "Find Internet access numbers" option at [http://www.earthlink.net/membercenter/gethelp.faces])\" f=\"EarthLink.xml\"><exclusion pattern=\"^http://(?:www\\.)?earthlink\\.net/software/.+\"/><exclusion pattern=\"^http://(?:www\\.)?earthlink\\.net/membercenter/.+\"/><rule from=\"^(?:http://(?:www\\.)?|https://)earthlink\\.biz/\" to=\"https://www.earthlink.biz/\"/><rule from=\"^http://earthlink\\.net/\" to=\"https://www.earthlink.net/\"/><rule from=\"^http://((webmail\\.atl)|cc|control|(webmail\\.)?hosting|netstatus|store|(m\\.webmail)|www)\\.earthlink\\.net/\" to=\"https://$1.earthlink.net/\"/><rule from=\"^((http://(www\\.)?)|(https://www\\.))(myaccount|myvoice|orderstatus|support|webmail)\\.earthlink\\.net/\" to=\"https://$5.earthlink.net/\"/></ruleset>", "<ruleset name=\"Earth First.org.uk\" f=\"Earth_First.org.uk.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Earth & Space Research\" f=\"Earth_and_Space_Research.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Earwolf Podcast Network\" default_off=\"expired cert\" f=\"Earwolf_Podcast_Network.xml\"><securecookie host=\"^(?:www\\.)?earwolf\\.com$\" name=\".+\"/><rule from=\"^http://(?:cdn\\d?\\.|(www\\.))?earwolf\\.com/\" to=\"https://$1earwolf.com/\"/></ruleset>", "<ruleset name=\"easel.ly\" f=\"Easel.ly.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Easily.co.uk (partial)\" f=\"Easily.co.uk.xml\"><securecookie host=\"^easily\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(?:(webmail\\.)|www\\.)?easily\\.co\\.uk/\" to=\"https://$1easily.co.uk/\"/></ruleset>", "<ruleset name=\"East-Northamptonshire.gov.uk (partial)\" default_off=\"missing certificate chain\" f=\"East-Northamptonshire.gov.uk.xml\"><securecookie host=\"^(?!\\.east-northamptonshire\\.gov\\.uk$).\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"East Hants.gov.uk (partial)\" f=\"East_Hants.gov.uk.xml\"><exclusion pattern=\"^http://www\\.easthants\\.gov\\.uk/+(?!misc/|modules/|sites/)\"/><securecookie host=\"^\\.\" name=\"^citrix_ns_id$\"/><securecookie host=\"^(?!www\\.)?\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"East Lothian.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"East_Lothian.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^TestCookie$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"East Riding.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"East_Riding.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://eastriding\\.gov\\.uk/\" to=\"https://www.eastriding.gov.uk/\"/><rule from=\"^http://consult\\.eastriding\\.gov\\.uk/\" to=\"https://eastriding-consult.objective.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Eastbay (mismatches)\" default_off=\"mismatched\" f=\"Eastbay-problematic.xml\"><rule from=\"^http://reviews\\.eastbay\\.com/\" to=\"https://reviews.eastbay.com/\"/></ruleset>", "<ruleset name=\"Eastbay (partial)\" f=\"Eastbay.xml\"><securecookie host=\"^.*\\.eastbay\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?eastbay\\.com/\" to=\"https://www.eastbay.com/\"/><rule from=\"^http://(images|m|teamsales)\\.eastbay\\.com/\" to=\"https://$1.eastbay.com/\"/></ruleset>", "<ruleset name=\"Eastbay Team Services\" default_off=\"failed ruleset test\" f=\"Eastbay_Team_Services.xml\"><securecookie host=\"^www\\.eastbayteamservices\\.com$\" name=\".+\"/><rule from=\"^http://www\\.eastbayteamservices\\.com/\" to=\"https://www.eastbayteamservices.com/\"/></ruleset>", "<ruleset name=\"Eastday.com (partial)\" f=\"Eastday.com.xml\"><exclusion pattern=\"^http://(www\\.)?eastday\\.com/(?!images/|sitemap/)\"/><rule from=\"^http://(www\\.)?eastday\\.com/(images|sitemap)/\" to=\"https://$1eastday.com/$2/\"/><exclusion pattern=\"^http://ej\\.eastday\\.com/$\"/><exclusion pattern=\"^http://ejnews\\.eastday\\.com/$\"/><exclusion pattern=\"^http://imedia\\.eastday\\.com/(?!images/)\"/><exclusion pattern=\"^http://news\\.eastday\\.com/(?!images/)\"/><exclusion pattern=\"^http://paihang\\.eastday\\.com/$\"/><exclusion pattern=\"^http://pinglun\\.eastday\\.com/(?!images/)\"/><exclusion pattern=\"^http://sh\\.eastday\\.com/(?!images/)\"/><exclusion pattern=\"^http://tianqi\\.eastday\\.com/plugin/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Eastern Collegiate Taekwondo Conference\" default_off=\"mismatched\" f=\"Eastern-Collegiate-Taekwondo-Conference.xml\"><rule from=\"^http://(?:www\\.)?ectc-online\\.org/\" to=\"https://ectc-online.org/~ectconli/\"/></ruleset>", "<ruleset name=\"Eastmon.com.au (partial)\" f=\"Eastmon.com.au.xml\"><rule from=\"^http://staging\\.eastmon\\.com\\.au/(?=css/|favicon\\.ico|images/)\" to=\"https://staging.eastmon.com.au/\"/></ruleset>", "<ruleset name=\"easy2coach.net (partial)\" f=\"Easy2coach.net.xml\"><rule from=\"^http://(www\\.)?easy2coach\\.net/(?=\\w\\w/(?:banquedexercicesdefoot|base-de-datos-ejercicios-futbol|calcio-bancadati-esercizi|ejercicios-de-futbol/entrenamiento-11-11|esercizio-del-mese/ci-segnali|football-exercises(?:-database|/football-training-11-11|/recommend-us)|fussballuebungen/empfehlen-sie-uns|fussball-uebungsdatenbank)\\.html|/?facebook/|favicon\\.ico|/?templates/)\" to=\"https://$1easy2coach.net/\"/></ruleset>", "<ruleset name=\"EasyChair.org (partial)\" default_off=\"failed ruleset test\" f=\"EasyChair.org.xml\"><exclusion pattern=\"^http://www\\.easychair\\.org/+(?!account/|conferences/|css/|favicon\\.ico|images/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EasyCruit.com\" f=\"EasyCruit.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"easyDNS (partial)\" default_off=\"failed ruleset test\" f=\"EasyDNS.xml\"><exclusion pattern=\"^http://(?:blog2?|helpwiki|mediawiki|parked)\\.easydns\\.com/\"/><securecookie host=\".*\\.easydns\\.(?:com|net)$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?easydns\\.net/\" to=\"https://www.easydns.com/\"/><rule from=\"^http://([\\w-]+\\.)?easydns\\.(com|net)/\" to=\"https://$1easydns.$2/\"/></ruleset>", "<ruleset name=\"easyJet.com (partial)\" default_off=\"failed ruleset test\" f=\"EasyJet.com.xml\"><exclusion pattern=\"^http://stafftravel\\.easyjet\\.com/+(?!asp/en/stafftravel\\.asp|common/|favicon\\.ico)\"/><rule from=\"^http://(?:www\\.)?easyjet\\.com/(?=Content/|ejcms/|favicon\\.ico|fonts/)\" to=\"https://www.easyjet.com/\"/><rule from=\"^http://(onboarding|(?:js|media)\\.sc|stafftravel)\\.easyjet\\.com/\" to=\"https://$1.easyjet.com/\"/></ruleset>", "<ruleset name=\"easyMail.ca\" f=\"EasyMail.ca.xml\"><rule from=\"^http://(?:www\\.)?easymail\\.ca/$\" to=\"https://www.easydns.com/easymail-2/\"/><rule from=\"^http://(?:www\\.)?easymail\\.ca/\" to=\"https://www.easydns.com/easymail-2//\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EasyNews\" f=\"EasyNews.xml\"><rule from=\"^http://(?:www\\.)?easynews\\.com/\" to=\"https://easynews.com/\"/><rule from=\"^http://members\\.easynews\\.com/\" to=\"https://secure.members.easynews.com/\"/></ruleset>", "<ruleset name=\"EasyPost.com\" f=\"EasyPost.com.xml\"><rule from=\"^http://status\\.easypost\\.com/\" to=\"https://easypost.statuspage.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"easyPress.ca\" f=\"EasyPress.ca.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EasyVoiceBiometrics\" default_off=\"mismatched\" f=\"EasyVoiceBiometrics.xml\"><securecookie host=\"^(?:.*\\.)?easyvoicebiometrics\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?easyvoicebiometrics\\.com/\" to=\"https://www.easyvoicebiometrics.com/\"/></ruleset>", "<ruleset name=\"easyWhois.com\" f=\"EasyWhois.com.xml\"><securecookie host=\"^(?:www\\.)?easywhois\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Easy Hébergement\" default_off=\"failed ruleset test\" f=\"Easy_Hebergement.xml\"><securecookie host=\"^\\.easy-hebergement\\.fr$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Easyodds.com\" f=\"Easyodds.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Easyspace (expired)\" default_off=\"expired\" f=\"Easyspace-expired.xml\"><rule from=\"^http://helpdesk\\.easyspace\\.com/\" to=\"https://helpdesk.easyspace.com/\"/></ruleset>", "<ruleset name=\"Easyspace (partial)\" f=\"Easyspace.xml\"><securecookie host=\"^.*\\.easyspace\\.com$\" name=\".*\"/><rule from=\"^http://controlpanel\\.easyspace\\.com/\" to=\"https://controlpanel.easyspace.com/\"/></ruleset>", "<ruleset name=\"easywallet.org\" f=\"Easywallet.org.xml\"><securecookie host=\"^(?:www\\.)?easywallet\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Eater.com (partial)\" f=\"Eater.xml\"><rule from=\"^http://eater\\.com/\" to=\"https://www.eater.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ebi.ac.uk\" f=\"Ebi.ac.uk.xml\"><exclusion pattern=\"^http://www\\.ebi\\.ac\\.uk/systems-srv/\"/><rule from=\"^http://www\\.ebi\\.ac\\.uk/\" to=\"https://www.ebi.ac.uk/\"/></ruleset>", "<ruleset name=\"EBiS.ne.jp\" f=\"Ebis.ne.jp.xml\"><securecookie host=\"^secure\\.ebis\\.ne\\.jp$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ebis\\.ne\\.jp/\" to=\"https://secure.ebis.ne.jp/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ebroder.net\" f=\"Ebroder.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ebuyer.com (false MCB)\" platform=\"mixedcontent\" f=\"Ebuyer.com-falsemixed.xml\"><rule from=\"^http://blog\\.ebuyer\\.com/\" to=\"https://www.ebuyer.com/blog/\"/><rule from=\"^http://www\\.ebuyer\\.com/blog(?=$|[?/])\" to=\"https://www.ebuyer.com/blog\"/></ruleset>", "<ruleset name=\"Ebuyer.com (partial)\" default_off=\"Breaks blog\" f=\"Ebuyer.com.xml\"><exclusion pattern=\"^http://www\\.ebuyer\\.com/+(?!blog/(?:favicon\\.ico|index\\.php\\?ak_action=aktt_css|wp-content/|wp-includes/)|favicon\\.ico)\"/><exclusion pattern=\"^http://accounts\\.ebuyer\\.com/+(?!css/|favicon\\.ico|images/|js/)\"/><securecookie host=\"^forums\\.ebuyer\\.com$\" name=\".+\"/><rule from=\"^http://((?:accounts|image|orders|static|www)\\.)?ebuyer\\.com/\" to=\"https://$1ebuyer.com/\"/><rule from=\"^http://blog\\.ebuyer\\.com/(?=favicon\\.ico|wp-content/|wp-includes/)\" to=\"https://www.ebuyer.com/blog/\"/></ruleset>", "<ruleset name=\"ebuzzing (partial)\" default_off=\"failed ruleset test\" f=\"Ebuzzing.xml\"><securecookie host=\"^social\\.ebuzzing\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ebuzzing\\.com/\" to=\"https://ebuzzing.com/\"/><rule from=\"^http://(?:www\\.)?ebuzzing\\.de/(\\?.*)?$\" to=\"https://social.ebuzzing.de/$1\"/><rule from=\"^http://social\\.ebuzzing\\.de/\" to=\"https://social.ebuzzing.de/\"/></ruleset>", "<ruleset name=\"Ebyr CDN.net\" f=\"Ebyr_CDN.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EchoDitto.com\" default_off=\"failed ruleset test\" f=\"EchoDitto.com.xml\"><securecookie host=\"^(?:www\\.)?echoditto\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"echoplex.us (partial)\" default_off=\"failed ruleset test\" f=\"Echoplex.us.xml\"><rule from=\"^http://www\\.echoplex\\.us/\" to=\"https://echoplex.us/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Echothrust.com\" default_off=\"self-signed\" f=\"Echothrust.com.xml\"><securecookie host=\"^\\.echothrust\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?echothrust\\.com/\" to=\"https://www.echothrust.com/\"/></ruleset>", "<ruleset name=\"Eclipse (partial)\" f=\"Eclipse.xml\"><securecookie host=\"^bugs\\.eclipse\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Eclipso.ch\" f=\"Eclipso.ch.xml\"><rule from=\"^http://(?:www\\.)?eclipso\\.ch/\" to=\"https://www.eclipso.ch/\"/></ruleset>", "<ruleset name=\"eclipso\" f=\"Eclipso.xml\"><securecookie host=\"^(?:www\\.|mail\\.|m\\.)?eclipso\\.de$\" name=\".+\"/><rule from=\"^http://(?:mail\\.|www\\.)?eclipso\\.de/\" to=\"https://www.eclipso.de/\"/><rule from=\"^http://m\\.eclipso\\.de/\" to=\"https://www.eclipso.de/m/\"/></ruleset>", "<ruleset name=\"ecm74.com (partial)\" default_off=\"failed ruleset test\" f=\"Ecm74.com.xml\"><rule from=\"^http://(?:www\\.)?ecm74\\.com/(?!rp/\\d+/ContestForm\\.clsp)\" to=\"https://ecm74.com/\"/></ruleset>", "<ruleset name=\"Ecma-international.org\" f=\"Ecma-international.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EcoDissident.net\" f=\"EcoDissident.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ecode360.com\" f=\"Ecode360.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ecoff.org\" f=\"Ecoff.org.xml\"><securecookie host=\"^(?:w*\\.)?ecoff\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ecommerce.com (partial)\" f=\"Ecommerce.xml\"><securecookie host=\"^www\\.ecommerce\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"econda-monitor.de\" f=\"Econda-monitor.de.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Econda.de (partial)\" f=\"Econda.de.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://mail\\.econda\\.de/+\" to=\"https://portal.office.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Economic Policy Institute (partial)\" f=\"Economic-Policy-Institute.xml\"><securecookie host=\"^(?:my|\\.?secure)\\.epi\\.org$\" name=\".*\"/><rule from=\"^http://www\\.epi\\.org/page/-/\" to=\"https://secure.epi.org/page/-/\"/><rule from=\"^http://(my|secure)\\.epi\\.org/\" to=\"https://$1.epi.org/\"/></ruleset>", "<ruleset name=\"Economist.com (partial)\" default_off=\"failed ruleset test\" f=\"Economist.xml\"><exclusion pattern=\"^http://www\\.economist\\.com/+(?!(?:debate|user)(?:$|[?/])|favicon\\.ico|sites/)\"/><securecookie host=\"^\\.economist\\.com$\" name=\"^__(?:qca|_utm\\w+)$\"/><securecookie host=\"^(?:(?:app)?\\.gmat|jobs|\\.?subscriptions)\\.economist\\.com$\" name=\".+\"/><securecookie host=\"^www\\.economist\\.com$\" name=\"^(?:incap_ses_\\d+|visid_incap)_\\d+$\"/><rule from=\"^http://economist\\.com/\" to=\"https://www.economist.com/\"/><rule from=\"^http://stats\\.economist\\.com/\" to=\"https://economist.122.2o7.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Economist Intelligence Unit (partial)\" f=\"Economist_Intelligence_Unit.xml\"><securecookie host=\"^\\.eiu\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Economy.com\" f=\"Economy.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ecosia\" f=\"Ecosia.org.xml\"><securecookie host=\"^(www\\.|info.)?ecosia\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ecowatch.com\" f=\"Ecowatch.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ecustomer support.com\" f=\"Ecustomer_support.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ecwid (partial)\" f=\"Ecwid.xml\"><securecookie host=\"^my\\.ecwid\\.com$\" name=\".+\"/><rule from=\"^http://images-cdn\\.ecwid\\.com/\" to=\"https://dpbfm6h358sh7.cloudfront.net/\"/><rule from=\"^http://kb\\.ecwid\\.com/(f/|theme_image\\.php)\" to=\"https://ecwid.pbworks.com/$1\"/><rule from=\"^http://my\\.ecwid\\.com/\" to=\"https://my.ecwid.com/\"/><rule from=\"^http://static\\.ecwid\\.com/\" to=\"https://dj925myfyz5v.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Ed.ac.uk (partial)\" f=\"Ed.ac.uk.xml\"><securecookie host=\"^info\\.maths\\.ed\\.ac\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Edubuntu.org\" f=\"EdUbuntu.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EdWeek.org (partial)\" f=\"EdWeek.org.xml\"><exclusion pattern=\"^http://pddirectory\\.edweek\\.org/+(?:$|\\?)\"/><rule from=\"^http://(?:www\\.)?edweek\\.org/(?=css/|favicon\\.ico|images/|js/|media/)\" to=\"https://secure.edweek.org/\"/><rule from=\"^http://(myaccount|pddirectory|secure|sm)\\.edweek\\.org/\" to=\"https://$1.edweek.org/\"/><rule from=\"^http://m\\.edweek\\.org/\" to=\"https://edweek-org.122.2o7.net/\"/></ruleset>", "<ruleset name=\"edX.org\" f=\"EdX.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ed Uncovered.com\" default_off=\"failed ruleset test\" f=\"Ed_Uncovered.com.xml\"><securecookie host=\"^\\.eduncovered\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Edarabia.com\" default_off=\"failed ruleset test\" f=\"Edarabia.com.xml\"><securecookie host=\"^\\.edarabia\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Edas.info\" f=\"Edas.xml\"><rule from=\"^http://(?:www\\.)?edas\\.info/\" to=\"https://www.edas.info/\"/></ruleset>", "<ruleset name=\"Eddie Izzard (partial)\" f=\"Eddie_Izzard.xml\"><rule from=\"^http://(?:www\\.)?eddieizzard\\.com/([^/]+/assets/|favicon\\.ico|resource/)\" to=\"https://www.eddieizzard.com/$1\"/></ruleset>", "<ruleset name=\"EdenHost.com\" f=\"EdenHost.com.xml\"><securecookie host=\"^\\.edenhost\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ederdrom.de\" default_off=\"failed ruleset test\" f=\"Ederdrom.de.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Edge.org\" f=\"Edge.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EdgeCast Networks (partial)\" f=\"EdgeCast-networks.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Edgekey.net (partial)\" f=\"Edgekey.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Edgerunner.com (partial)\" f=\"Edgerunner.com.xml\"><securecookie host=\"^store\\.edgerunner\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Edgewall.org (partial)\" f=\"Edgewall-Software.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Edinburgh.gov.uk (partial)\" f=\"Edinburgh.gov.uk.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^(?!\\.edinburgh\\.gov\\.uk).\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"editmysite.com (partial)\" f=\"Editmysite.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?editmysite\\.com/+(?!(?:developer/none|favicon)\\.ico)\"/><rule from=\"^http://(?:www\\.)?editmysite\\.com/\" to=\"https://www.editmysite.com/\"/><rule from=\"^http://cdn(1|2)\\.editmysite\\.com/\" to=\"https://cdn$1.editmysite.com/\"/></ruleset>", "<ruleset name=\"Editola\" default_off=\"failed ruleset test\" f=\"Editola.xml\"><securecookie host=\"^\\.editola\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Editorialmanager.com\" f=\"Editorialmanager.com.xml\"><securecookie host=\"\\.editorialmanager\\.com\" name=\".*\"/><rule from=\"^http://(?:www\\.)?editorialmanager\\.com/\" to=\"https://www.editorialmanager.com/\"/></ruleset>", "<ruleset name=\"Edlund.dk\" f=\"Edlund.dk.xml\"><securecookie host=\"(www)?\\.?edlund\\.dk\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Edoceo.com (partial)\" f=\"Edoceo.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"edrive hosting (partial)\" default_off=\"failed ruleset test\" f=\"Edrive-hosting.xml\"><securecookie host=\"^www\\.edrive-hosting\\.cz$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EduPage\" f=\"EduPage.xml\"><exclusion pattern=\"^http://mobile\\.edupage\\.org/\"/><exclusion pattern=\"^http://help\\.edupage\\.org/\"/><securecookie host=\"^.+\\.edupage\\.org$\" name=\"^PHPSESSID$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Edublogs\" f=\"Edublogs.xml\"><securecookie host=\"^(?:.+\\.)?edublogs\\.org$\" name=\".+\"/><rule from=\"^http://files\\.campus\\.edublogs\\.org/\" to=\"https://s3.amazonaws.com/files.campus.edublogs.org/\"/><rule from=\"^http://([\\w-]+\\.)?edublogs\\.org/\" to=\"https://$1edublogs.org/\"/></ruleset>", "<ruleset name=\"EducaCursos\" f=\"EducaCursos.xml\"><securecookie host=\"^(?:w*\\.)?educacursos\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"educate the world.com.au\" default_off=\"failed ruleset test\" f=\"Educate_the_world.com.au.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Education Next\" default_off=\"mismatch, self-signed\" f=\"Education-Next.xml\"><securecookie host=\"^educationnext\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?educationnext\\.org/wp-content/\" to=\"https://educationnext.hks.harvard.edu/wp-content/\"/><rule from=\"^http://(?:www\\.)?educationnext\\.org/\" to=\"https://educationnext.org/\"/><rule from=\"^http://educationnext\\.hks\\.harvard\\.edu/\" to=\"https://educationnext.hks.harvard.edu/\"/></ruleset>", "<ruleset name=\"Educause.edu\" f=\"Educause.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eduid.cz\" default_off=\"failed ruleset test\" f=\"Eduid.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eduroam.cz\" f=\"Eduroam.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eduroam.org\" f=\"Eduroam.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eduroam ES\" f=\"Eduroam_ES.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Edvina.net\" f=\"Edvina.net.xml\"><rule from=\"^http://www\\.edvina\\.net/\" to=\"https://edvina.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Edward Tufte\" f=\"Edward_Tufte.xml\"><securecookie host=\"^www\\.edwardtufte\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?edwardtufte\\.com/\" to=\"https://www.edwardtufte.com/\"/></ruleset>", "<ruleset name=\"Eerdmans.com\" f=\"Eerdmans.com.xml\"><securecookie host=\"^\\.eerdmans\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?eerdmans\\.com/\" to=\"https://www.eerdmans.com/\"/></ruleset>", "<ruleset name=\"efax.co.uk (partial)\" f=\"Efax.co.uk.xml\"><rule from=\"^http://(?:www\\.)?efax\\.co\\.uk/(?=(?:affiliate|fax-machine-vs-efax|internet_fax_number)(?:$|[?/])|efaxieu-cms-public/)\" to=\"https://www.efax.co.uk/\"/></ruleset>", "<ruleset name=\"Effective Measure.com\" default_off=\"mismatched\" platform=\"mixedcontent\" f=\"Effective-Measure-mismatches.xml\"><securecookie host=\"^www\\.effectivemeasure\\.com$\" name=\".+\"/><rule from=\"^http://effectivemeasure\\.com/\" to=\"https://www.effectivemeasure.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Effective Measure.net\" default_off=\"failed ruleset test\" f=\"Effective-Measure.xml\"><securecookie host=\"^\\.effectivemeasure\\.net$\" name=\".*\"/><rule from=\"^http://us\\.effectivemeasure\\.net/\" to=\"https://us3.effectivemeasure.net/\"/><rule from=\"^http://za\\.effectivemeasure\\.net/\" to=\"https://za1.effectivemeasure.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Effi.org\" f=\"Effi.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EfficiOS\" f=\"EfficiOS.xml\"><securecookie host=\"^\\.efficios\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Effiliation (partial)\" f=\"Effiliation.xml\"><securecookie host=\"^track\\.effiliation\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Egedalkommune.dk\" f=\"Egedalkommune.dk.xml\"><securecookie host=\"^\\.?www\\.egedalkommune\\.dk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Egg\" f=\"Egg.xml\"><rule from=\"^http://(?:new\\.|www\\.)?egg\\.com/\" to=\"https://new.egg.com/\"/><rule from=\"^http://(your|phonehome)\\.egg\\.com/\" to=\"https://$1.egg.com/\"/></ruleset>", "<ruleset name=\"Egnyte\" f=\"Egnyte.xml\"><securecookie host=\"^(?:.*\\.)?egnyte\\.com$\" name=\".*\"/><rule from=\"^http://(\\w+\\.)?egnyte\\.com/\" to=\"https://$1egnyte.com/\"/></ruleset>", "<ruleset name=\"EgoPay.com\" default_off=\"refused\" f=\"EgoPay.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Egotastic\" default_off=\"failed ruleset test\" f=\"Egotastic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ehospice\" f=\"Ehospice.xml\"><securecookie host=\"^www\\.ehospice\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ehosting.ca (partial)\" f=\"Ehosting.ca.xml\"><securecookie host=\"^\\.?ssl\\.mecca\\.ca$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?(?:ehosting|mecca)\\.ca/\" to=\"https://ssl.mecca.ca/\"/><rule from=\"^http://cpanel\\.ehosting\\.ca/+(?:$|\\?.*)\" to=\"https://ssl.mecca.ca/service/\"/><rule from=\"^http://renewals\\.ehosting\\.ca/+(?:$|\\?.*)\" to=\"https://ssl.mecca.ca/apps/payment.php\"/><rule from=\"^http://webmail\\.ehosting\\.ca/+(?:$|\\?.*)\" to=\"https://ssl.mecca.ca/horde/imp/\"/></ruleset>", "<ruleset name=\"ehosts.net\" f=\"Ehosts.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ehrensenf\" default_off=\"Cert warning\" f=\"Ehrensenf.xml\"><securecookie host=\"^(?:.*\\.)?ehrensenf\\.de$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?ehrensenf\\.de/\" to=\"https://www.ehrensenf.de/\"/></ruleset>", "<ruleset name=\"eid.lt (partial)\" default_off=\"failed ruleset test\" f=\"Eid.lt.xml\"><rule from=\"^http://stork\\.eid\\.lt/\" to=\"https://stork.eid.lt/\"/></ruleset>", "<ruleset name=\"Eide-ITC.no\" default_off=\"failed ruleset test\" f=\"Eide-ITC.no.xml\"><rule from=\"^http://(?:www\\.)?eide-itc\\.no/\" to=\"https://eide-itc.no/\"/></ruleset>", "<ruleset name=\"Eiffel.com\" f=\"Eiffel.com.xml\"><securecookie host=\"^\\.(?:docs|room)\\.eiffel\\.com$\" name=\".+\"/><rule from=\"^http://activate\\.eiffel\\.com/+([^?]*)(?:\\?.*)?\" to=\"https://www2.eiffel.com/activate/$1\"/><rule from=\"^http://groups\\.eiffel\\.com/+\" to=\"https://groups.yahoo.com/group/eiffel_software/\"/><rule from=\"^http://support\\.eiffel\\.com/.*\" to=\"https://www2.eiffel.com/support\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eimg.com.tw\" f=\"Eimg.com.tw.xml\"><rule from=\"^http://i\\.eimg\\.com\\.tw/\" to=\"https://i.eimg.com.tw/\"/><rule from=\"^http://s\\.eimg\\.com\\.tw/\" to=\"https://i.kfs.io/\"/><rule from=\"^http://www\\.eimg\\.com\\.tw/+\" to=\"https://www.kkbox.com/about/\"/></ruleset>", "<ruleset name=\"Eindbazen.net\" default_off=\"failed ruleset test\" f=\"Eindbazen.net.xml\"><rule from=\"^http://www\\.eindbazen\\.net/\" to=\"https://eindbazen.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Eindhoven.nl\" f=\"Eindhoven.nl.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://eindhoven\\.nl/\" to=\"https://www.eindhoven.nl/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Einstein@Home\" f=\"EinsteinAtHome.org.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Eis.de\" f=\"Eis.de.xml\"><rule from=\"^http://(images|www)\\.eis\\.de/\" to=\"https://$1.eis.de/\"/></ruleset>", "<ruleset name=\"ejabberd.im\" f=\"Ejabberd.im.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ekiga (partial)\" f=\"Ekiga.xml\"><rule from=\"^http://(?:www\\.)?ekiga\\.net/\" to=\"https://ekiga.net/\"/><rule from=\"^http://(?:www\\.)?ekiga\\.org/sites/all/themes/ekiga_net/\" to=\"https://ekiga.net/\"/><securecookie host=\"^(?:www\\.)?ekiga\\.net$\" name=\".*\"/></ruleset>", "<ruleset name=\"EkmPowershop.com\" f=\"EkmPowershop.com.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ekm secure.co.uk\" f=\"Ekm_secure.co.uk.xml\"><securecookie host=\"^(?:www\\.)?ekmsecure\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ekm secure.com\" f=\"Ekm_secure.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ekm secure6.co.uk\" f=\"Ekm_secure6.co.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ekm secure 22.co.uk\" f=\"Ekm_secure_22.co.uk.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ekoodit.fi\" f=\"Ekoodit.fi.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"El-Tramo.be\" f=\"El-Tramo.be.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EL PAÍS\" f=\"ElPais.com.xml\"><rule from=\"^http://www\\.(brasil|ccaa|economia|elviajero|internacional|sociedad|tecnologia)\\.elpais\\.com/\" to=\"https://$1.elpais.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"El pueblo\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"El_pueblo.xml\"><securecookie host=\"^(?:w*\\.)?elpueblo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Elaf Net TV\" default_off=\"failed ruleset test\" f=\"Elaf_Net_TV.xml\"><securecookie host=\"^\\.(?:www\\.)?elafnettv\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Elance.com\" f=\"Elance.com.xml\"><securecookie host=\"^\\.elance\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Elanex.biz\" f=\"Elanex.biz.xml\"><securecookie host=\"^www\\.elanex\\.biz$\" name=\".+\"/><securecookie host=\"^elanex\\.biz$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Elastic.co\" f=\"Elastic.co.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"elasticTrace.com\" f=\"ElasticTrace.com.xml\"><securecookie host=\"^\\.elastictrace\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"elbadil.com\" f=\"Elbadil.com.xml\"><securecookie host=\"^\\.elbadil\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Elcomsoft (partial)\" f=\"Elcomsoft.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Elder Scrolls Online.com\" default_off=\"failed ruleset test\" f=\"Elder_Scrolls_Online.com.xml\"><securecookie host=\"^www\\.elderscrollsonline\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Electoral Commission.org.uk (partial)\" f=\"Electoral_Commission.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Electrek.co\" f=\"Electrek.co.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Electric Embers (partial)\" f=\"Electric_Embers.xml\"><securecookie host=\"^mail\\.electricembers\\.net$\" name=\".+\"/><rule from=\"^http://(internal|mail)\\.electricembers\\.net/\" to=\"https://$1.electricembers.net/\"/></ruleset>", "<ruleset name=\"Electric Studio (partial)\" default_off=\"failed ruleset test\" f=\"Electric_Studio.xml\"><rule from=\"^http://clients\\.electricstudio\\.co\\.uk/\" to=\"https://clients.electricstudio.co.uk/\"/></ruleset>", "<ruleset name=\"Electronic Arts Intermix (partial)\" f=\"Electronic-Arts-Intermix.xml\"><rule from=\"^http://(www\\.)?eai\\.org/(cartAdd\\.htm|css/|images/|user_files/)\" to=\"https://$1eai.org/$2\"/></ruleset>", "<ruleset name=\"Electronic Arts (partial)\" platform=\"mixedcontent\" f=\"Electronic-Arts.xml\"><securecookie host=\"^\\.ea\\.com$\" name=\"^(?:CEM-session|s_.*)$\"/><securecookie host=\"^(?:help|jobs|profile|ssl\\.resources)\\.ea\\.com$\" name=\".*\"/><securecookie host=\"^(?:forum|\\w\\w|www)?\\.thesims\\.com$\" name=\".*\"/><rule from=\"^http://ea\\.com/\" to=\"https://www.ea.com/\"/><rule from=\"^http://(?:(activate|ll\\.assets|fonts|help|images|socialsignup|tos|www)|(?:www\\.)?(jobs))\\.ea\\.com/\" to=\"https://$1$2.ea.com/\"/><rule from=\"^http://(?:ssl\\.)?resources\\.ea\\.com/\" to=\"https://ssl.resources.ea.com/\"/><rule from=\"^http://support\\.ea\\.com/\" to=\"https://help.ea.com/\"/><rule from=\"^http://om\\.eamobile\\.com/\" to=\"https://eamwebproduction.122.2o7.net/\"/><rule from=\"^http://synergy-stage\\.eamobile\\.com/\" to=\"https://synergy-stage.eamobile.com/\"/><rule from=\"^http://(?:llnw\\.|www\\.)?thesims3\\.com/\" to=\"https://www.thesims3.com/\"/><rule from=\"^http://(forum|\\w\\w)\\.thesims3\\.com/\" to=\"https://$1.thesims3.com/\"/><rule from=\"^http://(\\w\\w\\.)?store\\.thesims3\\.com/(community|content/|css/|images/)\" to=\"https://$1store.thesims3.com/$2\"/><rule from=\"^http://llnw\\.store\\.thesims3\\.com/\" to=\"https://llnw.store.thesims3.com/\"/></ruleset>", "<ruleset name=\"Electronic Frontiers Australia\" f=\"Electronic-Frontiers-Australia.xml\"><securecookie host=\"^(?:members|\\.?www)?\\.efa\\.org\\.au$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ElectronicInsanity.com (partial)\" default_off=\"failed ruleset test\" f=\"ElectronicInsanity.com.xml\"><rule from=\"^http://electronicinsanity\\.com/\" to=\"https://www.electronicinsanity.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Electronic Intifada.net\" f=\"Electronic_Intifada.net.xml\"><securecookie host=\"^\\.electronicintifada\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"electrum.org\" f=\"Electrum.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Elegant Themes.com\" f=\"Elegant_Themes.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Element14.com (Mixed)\" platform=\"mixedcontent\" f=\"Element14.com-Mixed.xml\"><rule from=\"^http://(au|cn|in|hk|kr|my|nz|ph|sg|th|tw)\\.element14\\.com/\" to=\"https://$1.element14.com/\"/></ruleset>", "<ruleset name=\"Element14.com\" f=\"Element14.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"element 5.com (partial)\" f=\"Element_5.xml\"><exclusion pattern=\"^http://www\\.element5\\.com/+(?!$|\\?)\"/><rule from=\"^http://www\\.element5\\.com/+\" to=\"https://www.mycommerce.com/share-it\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Elementary.io\" f=\"Elementary.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ElementaryOS.org\" f=\"Elementary_OS.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ElevenPaths\" f=\"ElevenPaths.xml\"><rule from=\"^http://(?:www\\.)?elevenpaths\\.com/\" to=\"https://www.elevenpaths.com/\"/></ruleset>", "<ruleset name=\"Elfa.se\" default_off=\"failed ruleset test\" f=\"Elfa.se.xml\"><securecookie host=\"^(?:\\.|www1?\\.)?elfa\\.se$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Elgiganten (partial)\" f=\"Elgiganten.xml\"><exclusion pattern=\"http://www.elgiganten.(dk|se)/(product|INTERSHOP)/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Eli Lilly (partial)\" f=\"Eli-Lilly.xml\"><securecookie host=\"^lillypad\\.lilly\\.c(?:a|om)$\" name=\".*\"/><rule from=\"^http://lillypad\\.lilly\\.c(a|om)/\" to=\"https://lillypad.lilly.c$1/\"/></ruleset>", "<ruleset name=\"Elie Bursztein\" f=\"Elie_Bursztein.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Elijah Laboratories\" default_off=\"expired, self-signed\" f=\"Elijah-Laboratories.xml\"><rule from=\"^http://(?:www\\.)?elilabs\\.com/\" to=\"https://elilabs.com/\"/></ruleset>", "<ruleset name=\"Eliomotors.com\" f=\"Eliomotors.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EliteKeyboards.com\" f=\"EliteKeyboards.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Elite Casting Network.com (partial)\" f=\"Elite_Casting_Network.com.xml\"><rule from=\"^http://(www\\.)?elitecastingnetwork\\.com/(?=favicon\\.ico|img/|min/)\" to=\"https://$1elitecastingnetwork.com/\"/><rule from=\"^http://cdn\\.elitecastingnetwork\\.com/\" to=\"https://ecn-cdncloud.netdna-ssl.com/\"/></ruleset>", "<ruleset name=\"Elitepartner.de\" f=\"Elitepartner.de.xml\"><rule from=\"^http://((?:www\\.)?partnervermittlung|www)\\.elitepartner\\.de/\" to=\"https://$1.elitepartner.de/\"/><rule from=\"^http://static\\.ep\\.elitem\\.net/\" to=\"https://static.ep.elitem.net/\"/></ruleset>", "<ruleset name=\"Elizabeth Smart Foundation (partial)\" f=\"Elizabeth_Smart_Foundation.xml\"><rule from=\"^http://(?:www\\.)?elizabethsmartfoundation\\.org/wp-content/\" to=\"https://esf.websocially.com/wp-content/\"/></ruleset>", "<ruleset name=\"Elle.com (partial)\" f=\"Elle.com.xml\"><rule from=\"^http://dating\\.elle\\.com/(?=assets/|bridge\\.js|favicon\\.ico|login/*(?:$|\\?)|whitelabel/elle/header\\.html)\" to=\"https://dating.elle.com/\"/><rule from=\"^http://service\\.elle\\.com/.*\" to=\"https://w1.buysub.com/servlet/CSGateway?cds_mag_code=ELM\"/></ruleset>", "<ruleset name=\"Elliptic Technologies\" default_off=\"failed ruleset test\" f=\"Elliptic-Technologies.xml\"><securecookie host=\"^(?:www\\.)?elliptictech\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ello.co\" f=\"Ello.co.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Elmbridge.gov.uk (MCB)\" platform=\"mixedcontent\" f=\"Elmbridge.gov.uk-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Elmbridge.gov.uk (partial)\" f=\"Elmbridge.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Elo Concursos.com.br\" f=\"Elo_Concursos.com.br.xml\"><securecookie host=\"^eloconcursos\\.com\\.br$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?eloconcursos\\.com\\.br/\" to=\"https://eloconcursos.com.br/\"/></ruleset>", "<ruleset name=\"Elo Global e-services\" default_off=\"failed ruleset test\" f=\"Elo_Global_e-services.xml\"><securecookie host=\"^(?:www\\.)?elotouchexpress\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Eloqua clients\" default_off=\"mismatched\" f=\"Eloqua-clients.xml\"><rule from=\"^http://connect\\.astaro\\.com/\" to=\"https://connect.astaro.com/\"/><rule from=\"^http://go\\.brightcove\\.com/\" to=\"https://go.brightcove.com/\"/><rule from=\"^http://info\\.vmware\\.com/\" to=\"https://info.vmware.com/\"/><rule from=\"^http://understanding\\.webtrends\\.com/\" to=\"https://understanding.webtrends.com/\"/></ruleset>", "<ruleset name=\"Eloqua (mismatches)\" default_off=\"expired, mismatched, self-signed\" f=\"Eloqua-mismatches.xml\"><securecookie host=\".*\\.eloqua\\.com$\" name=\".+\"/><securecookie host=\"(?:.*\\.)?useitandsee\\.com$\" name=\".+\"/><rule from=\"^http://www\\.useitandsee\\.com/\" to=\"https://useitandsee.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Eloqua.com (partial)\" default_off=\"failed ruleset test\" f=\"Eloqua.xml\"><exclusion pattern=\"^http://now\\.eloqua\\.com/(?!EloquaImages/)\"/><securecookie host=\"^\\.eloqua\\.com$\" name=\"^EL(?:OQUA|QSTATUS)$\"/><securecookie host=\"^(?:cloudconnectors|\\.login|\\.secure)\\.eloqua\\.com$\" name=\".+\"/><rule from=\"^http://blog\\.eloqua\\.com/\" to=\"https://blogs.oracle.com/marketingcloud//\"/><rule from=\"^http://images\\.marketing\\.eloqua\\.com/$\" to=\"https://login.eloqua.com/\"/><rule from=\"^http://images\\.marketing\\.eloqua\\.com/\" to=\"https://s33.t.eloqua.com/\"/><rule from=\"^http://now\\.eloqua\\.com/\" to=\"https://secure.eloqua.com/\"/><rule from=\"^http://topliners\\.eloqua\\.com/.*\" to=\"https://community.oracle.com/community/topliners/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Eloquent JavaScript.net\" default_off=\"failed ruleset test\" f=\"Eloquent_JavaScript.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Els-CDN.com (partial)\" f=\"Els-CDN.com.xml\"><securecookie host=\"^origin-ars\\.els-cdn\\.com$\" name=\".*\"/><rule from=\"^http://ars\\.els-cdn\\.com/\" to=\"https://origin-ars.els-cdn.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Elsevier (problematic)\" default_off=\"expired, mismatched\" f=\"Elsevier-mismatches.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Elsevier.ca\" f=\"Elsevier.ca.xml\"><securecookie host=\"^(?:www\\.)?elsevier\\.ca$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Elsevier.com (partial)\" f=\"Elsevier.xml\"><exclusion pattern=\"^http://dev\\.elsevier\\.com/+(?!css/|img/)\"/><exclusion pattern=\"^http://www\\.developers\\.elsevier\\.com/action/\"/><securecookie host=\".*\\.elsevier\\.com$\" name=\".+\"/><rule from=\"^http://developers\\.elsevier\\.com/\" to=\"https://www.developers.elsevier.com/\"/><rule from=\"^http://support\\.elsevier\\.com/\" to=\"https://help.elsevier.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Elsevier Health.com.au\" f=\"Elsevier_Health.com.au.xml\"><securecookie host=\"(?:.*\\.)?elsevierhealth\\.com\\.au$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?elsevierhealth\\.com\\.au/\" to=\"https://www.elsevierhealth.com.au/\"/></ruleset>", "<ruleset name=\"Elsevier Health.com (partial)\" default_off=\"failed ruleset test\" f=\"Elsevier_Health.com.xml\"><securecookie host=\"(?:.*\\.)?elsevierhealth\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Elster.de\" f=\"Elster.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Eltartar War\" f=\"Eltartar_War.xml\"><securecookie host=\"^(?:.*\\.)?eltartar\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?eltartar\\.com/\" to=\"https://$1eltartar.com/\"/></ruleset>", "<ruleset name=\"EmacsWiki.org\" f=\"EmacsWiki.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://emacswiki\\.org/\" to=\"https://www.emacswiki.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"email-lists.org\" f=\"Email-lists.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Emaileri.fi\" f=\"Emaileri.fi.xml\"><rule from=\"^http://(?:www\\.)?emaileri\\.fi/\" to=\"https://www.emaileri.fi/\"/><rule from=\"^http://(?:www\\.)?emaileri\\.net/\" to=\"https://www.emaileri.fi/\"/><rule from=\"^http://(?:www\\.)?emaileri\\.com/\" to=\"https://www.emaileri.fi/\"/></ruleset>", "<ruleset name=\"emailsrvr.com\" f=\"Emailsrvr.com.xml\"><rule from=\"^http://(autodiscover\\.\\w+\\.)?emailsrvr\\.com/\" to=\"https://$1emailsrvr.com/\"/></ruleset>", "<ruleset name=\"Emailvision (partial)\" default_off=\"failed ruleset test\" f=\"Emailvision.xml\"><securecookie host=\"^\\.www\\.emailvision\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?emailvision\\.com/\" to=\"https://$1emailvision.com/\"/><rule from=\"^http://(?:www\\.)?emv3\\.com/\" to=\"https://emv3.emv3.com/\"/><rule from=\"^http://(ase|emv\\d|p\\dtre|tre)\\.emv3\\.com/\" to=\"https://$1.emv3.com/\"/></ruleset>", "<ruleset name=\"Emap Awards\" default_off=\"failed ruleset test\" f=\"Emap_Awards.xml\"><securecookie host=\"^(?:www\\.)?emapawards\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Embed.ly (partial)\" default_off=\"failed ruleset test\" f=\"Embed.ly.xml\"><exclusion pattern=\"^http://support\\.embed\\.ly/(?!favicon\\.ico|images/|support/)\"/><securecookie host=\"^ap[ip]\\.embed\\.ly$\" name=\".+\"/><rule from=\"^http://support\\.embed\\.ly/\" to=\"https://embedly.zendesk.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Embedded ARM.com (partial)\" default_off=\"failed ruleset test\" f=\"Embedded_ARM.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Embedded Analytics.com\" f=\"Embedded_Analytics.com.xml\"><securecookie host=\"^\\.embeddedanalytics\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Embedly.com\" default_off=\"breaks site\" f=\"Embedly.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Emcraft.com\" default_off=\"failed ruleset test\" f=\"Emcraft.com.xml\"><securecookie host=\"^(?:order\\.|www\\.)?emcraft\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Emediate.dk\" f=\"Emediate.dk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://cdn1\\.emediate\\.dk/\" to=\"https://ad1.emediate.dk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Emediate.eu\" f=\"Emediate.eu.xml\"><securecookie host=\"^eas4\\.emediate\\.eu$\" name=\".+\"/><securecookie host=\"^eas8\\.emediate\\.eu$\" name=\".+\"/><rule from=\"^http://eas4\\.emediate\\.eu/\" to=\"https://eas4.emediate.eu/\"/><rule from=\"^http://eas8\\.emediate\\.eu/\" to=\"https://eas8.emediate.eu/\"/></ruleset>", "<ruleset name=\"emediate.se\" f=\"Emediate.se.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Emep.org\" f=\"Emep.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Emerald\" default_off=\"failed ruleset test\" f=\"Emerald.xml\"><securecookie host=\"^(?:www\\.)?emeraldinsight\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Emerging Threats.net (mismatched)\" default_off=\"mismatched\" f=\"Emerging_Threats.net-falsemixed.xml\"><rule from=\"^http://emergingthreats\\.net/\" to=\"https://www.emergingthreats.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Emerging Threats.net (partial)\" f=\"Emerging_Threats.net.xml\"><securecookie host=\"^portal\\.emergingthreats\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Emily.St (partial)\" f=\"Emily.St.xml\"><rule from=\"^http://(?:www\\.)?emily\\.st/\" to=\"https://emily.st/\"/></ruleset>", "<ruleset name=\"Emin Huseynov.com\" f=\"Emin_Huseynov.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Emojione.com\" f=\"Emojione.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EmoryHealthcare\" platform=\"mixedcontent\" f=\"EmoryHealthcare.xml\"><securecookie host=\"^www\\.emoryhealthcare\\.org$\" name=\".+\"/><rule from=\"^http://emoryhealthcare\\.org/\" to=\"https://www.emoryhealthcare.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Emory University (partial)\" f=\"Emory_University.xml\"><rule from=\"^http://(?:www\\.)?emory\\.edu/\" to=\"https://www.emory.edu/\"/></ruleset>", "<ruleset name=\"EmpFlix.com (partial)\" f=\"EmpFlix.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Empeopled.com\" f=\"Empeopled.com.xml\"><securecookie host=\"^\\.?empeopled\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Empire State College\" f=\"EmpireStateCollege.xml\"><rule from=\"^http://(?:www\\.)?esc\\.edu/\" to=\"https://www.esc.edu/\"/></ruleset>", "<ruleset name=\"Employease (partial)\" f=\"Employease.xml\"><securecookie host=\"^(?:adp|home)\\.eease\\.com$\" name=\".+\"/><rule from=\"^http://(adp|home)\\.eease\\.com/\" to=\"https://$1.eease.com/\"/></ruleset>", "<ruleset name=\"Employeeexpress.gov\" default_off=\"failed ruleset test\" f=\"Employeeexpress.gov.xml\"><securecookie host=\"^(?:www\\.)?employeeexpress\\.gov$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?employeeexpress\\.gov/\" to=\"https://www.employeeexpress.gov/\"/></ruleset>", "<ruleset name=\"Emply.net\" f=\"Emply.net.xml\"><securecookie host=\"herlev\\.emply\\.net\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Emporio Alberghiero.com\" f=\"Emporio_Alberghiero.com.xml\"><securecookie host=\"^\\.(?:www\\.)?emporioalberghiero\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Empstatic.com\" f=\"Empstatic.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"emptywheel.net\" f=\"Emptywheel.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ems-ph.org (partial)\" f=\"Ems-ph.org.xml\"><rule from=\"^http://(www\\.)?ems-ph\\.org/\" to=\"https://www.ems-ph.org/\"/></ruleset>", "<ruleset name=\"Emsisoft (partial)\" f=\"Emsisoft.com.xml\"><exclusion pattern=\"^http://(?:blog|changeblog)\\.emsisoft\\.com/+(?!wp-content/|wp-includes/)\"/><securecookie host=\"^(?:support|www)\\.emsisoft\\.com$\" name=\".+\"/><rule from=\"^http://((?:blog|cc|changeblog|support|www)\\.)?emsisoft\\.com/\" to=\"https://$1emsisoft.com/\"/></ruleset>", "<ruleset name=\"EmuNewz Network\" default_off=\"mismatched\" f=\"EmuNewz-Network.xml\"><securecookie host=\"^.*\\.emunews\\.net$\" name=\".*\"/><securecookie host=\"^.*\\.p(?:csp-emu|spudb)\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?(arcadeflex|pcsp-emu|pspudb|yaupspe)\\.com/\" to=\"https://$1.com/\"/><rule from=\"^http://(?:www\\.)?emunewz\\.net/\" to=\"https://emunewz.net/\"/><rule from=\"^http://(?:www\\.)?jpcsp\\.org/\" to=\"https://jpcsp.org/\"/></ruleset>", "<ruleset name=\"Emulate.su (partial)\" default_off=\"self-signed\" f=\"Emulate.su.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Emulex\" default_off=\"failed ruleset test\" f=\"Emulex.xml\"><securecookie host=\"^(?:.*\\.)?emulex\\.com$\" name=\".*\"/><rule from=\"^http://(www(?:qa)?\\.)?emulex\\.com/\" to=\"https://$1emulex.com/\"/></ruleset>", "<ruleset name=\"en25.com (partial)\" f=\"En25.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Enahost.com (partial)\" f=\"Enahost.com.xml\"><exclusion pattern=\"^http://my\\.enahost\\.com/+(?!favicon\\.ico|(?:clientarea|pwreset|register)\\.php|templates/)\"/><securecookie host=\"^www\\.enahost\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Enalean.com\" f=\"Enalean.com.xml\"><securecookie host=\"^my\\.enalean\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Enaza.ru\" f=\"Enaza.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Encipher.It\" default_off=\"failed ruleset test\" f=\"Encipher.It.xml\"><securecookie host=\"^(?:www\\.)?encipher\\.it$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Encoding.com\" f=\"Encoding.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Encosia\" default_off=\"failed ruleset test\" f=\"Encosia.xml\"><securecookie host=\"^(?:.+\\.)?encosia\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Encrypt.to\" f=\"Encrypt.to.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.encrypt\\.to/\" to=\"https://encrypt.to/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Encrypt Everything.ca\" default_off=\"failed ruleset test\" f=\"Encrypt_Everything.ca.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Encryptmas.org\" default_off=\"failed ruleset test\" f=\"Encryptmas.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Encryptr.org\" default_off=\"failed ruleset test\" f=\"Encryptr.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Encyclopedia Astronautica\" default_off=\"expired, self-signed\" f=\"Encyclopedia-Astronautica.xml\"><rule from=\"^http://(?:www\\.)?astronautix\\.com/\" to=\"https://astronautix.com/\"/></ruleset>", "<ruleset name=\"Encyclopedia Dramatica.se\" f=\"Encyclopedia_Dramatica.xml\"><securecookie host=\"^\\.?encyclopediadramatica\\.se$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EndNote Web\" f=\"EndNote_Web.xml\"><securecookie host=\"^www\\.myendnoteweb\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"End Point.com (partial)\" f=\"End_Point.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Endace\" f=\"Endace.xml\"><securecookie host=\"^.*\\.endace\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?endace\\.com/\" to=\"https://www.endace.com/\"/><rule from=\"^http://support\\.endace\\.com/\" to=\"https://support.endace.com/\"/></ruleset>", "<ruleset name=\"Endchan.xyz\" f=\"Endchan.xyz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Endesa.pt\" f=\"Endesa.pt.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Endora.cz\" f=\"Endora.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Endrift.com\" default_off=\"failed ruleset test\" f=\"Endrift.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Enecto.com (partial)\" f=\"Enecto.com.xml\"><rule from=\"^http://(ac|partner|pf3|trk)\\.enecto\\.com/\" to=\"https://$1.enecto.com/\"/></ruleset>", "<ruleset name=\"Energetix (partial)\" default_off=\"failed ruleset test\" f=\"Energetix.xml\"><securecookie host=\"^\\.goenergetix\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EnergiWatch.dk\" f=\"EnergiWatch.xml\"><rule from=\"^http://www\\.energiwatch\\.dk/\" to=\"https://energiwatch.dk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Energinet.dk (partial)\" f=\"Energinet.dk.xml\"><exclusion pattern=\"^http://(www\\.)?energinet\\.dk/(DA|EN)/\"/><exclusion pattern=\"http://(www.)?energinet.dk/_layouts/internet.oversaettelse/oversaettelse.aspx\"/><rule from=\"^http://(www\\.)?energinet\\.dk/\" to=\"https://www.energinet.dk/\"/></ruleset>", "<ruleset name=\"Energy.gov (partial)\" default_off=\"failed ruleset test\" f=\"Energy.gov.xml\"><exclusion pattern=\"^http://(?:www\\.)?afdc\\.energy\\.gov/(?!/*(?:(?:\\w+/)?(?:asset|image|pdf)s/|(?:prep|publications|widgets)(?:$|[?/])))\"/><exclusion pattern=\"^http://(?:www\\.)?eere\\.energy\\.gov/(?!/*i(?:mag|nclud)es/)\"/><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^(?!www\\.afdc\\.)\\w\" name=\".\"/><rule from=\"^http://basc\\.energy\\.gov/+\" to=\"https://basc.pnnl.gov/\"/><rule from=\"^http://www\\.fossil\\.energy\\.gov/\" to=\"https://fossil.energy.gov/\"/><rule from=\"^http://minorityinternships\\.energy\\.gov/+([^?]*).*\" to=\"https://www.doemeispp.org/$1/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Energy Made Easy\" f=\"EnergyMadeEasy.xml\"><rule from=\"^http://(?:www\\.)?energymadeeasy\\.gov\\.au/\" to=\"https://www.energymadeeasy.gov.au/\"/></ruleset>", "<ruleset name=\"EnergyStar\" f=\"EnergyStar.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Energy Live News.com\" default_off=\"expired, self-signed\" f=\"Energy_Live_News.com.xml\"><securecookie host=\"^\\.energylivenews\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?energylivenews\\.com/\" to=\"https://www.energylivenews.com/\"/></ruleset>", "<ruleset name=\"Enfield.gov.uk (partial)\" f=\"Enfield.gov.uk.xml\"><securecookie host=\"^(?!\\.enfield\\.gov\\.uk$).\" name=\".\"/><securecookie host=\"^\\.\" name=\"^TestCookie$\"/><rule from=\"^http://consult\\.enfield\\.gov\\.uk/\" to=\"https://enfield-consult.objective.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Engadget.com (partial)\" f=\"Engadget.com.xml\"><securecookie host=\"^\\.\" name=\"^gdgt_edition$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://engadget\\.com/\" to=\"https://www.engadget.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EngageSciences (partial)\" default_off=\"failed ruleset test\" f=\"EngageSciences.xml\"><securecookie host=\"^(?:app\\.|www\\.)?engagesciences\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Engage Media.org (partial)\" f=\"Engage_Media.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Engaged Doncaster.co.uk\" default_off=\"failed ruleset test\" f=\"Engaged_Doncaster.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Engaging Networks.net\" default_off=\"missing certificate chain\" f=\"Engaging_Networks.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Engelschall.com\" default_off=\"self-signed\" f=\"Engelschall.com.xml\"><rule from=\"^http://(?:www\\.)?engelschall\\.com/\" to=\"https://engelschall.com/\"/></ruleset>", "<ruleset name=\"Engelsystem.de\" f=\"Engelsystem.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Engine Yard.com\" f=\"Engine_Yard.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Engineering.com (partial)\" f=\"Engineering.com.xml\"><rule from=\"^http://(www\\.)?engineering\\.com/(?=[dD]esktop[mM]odules/|favicon\\.ico|js/|Login\\.aspx|Portals/|[rR]esources/|(?:Telerik\\.Web\\.UI\\.)?WebResource\\.axd)\" to=\"https://$1engineering.com/\"/><rule from=\"^http://file2\\.engineering\\.com/\" to=\"https://d2gm6q2bvqrwiz.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Engineering for Change.org\" f=\"Engineering_for_Change.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"English-Heritage.org.uk (partial)\" default_off=\"js redirect to http\" f=\"English-Heritage.org.uk.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"English-Heritage shop.org.uk\" default_off=\"failed ruleset test\" f=\"English-Heritage_shop.org.uk.xml\"><securecookie host=\"^\\.english-heritageshop\\.org\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EnhanceIE.com\" default_off=\"mismatched\" f=\"EnhanceIE.xml\"><securecookie host=\"^enhanceie\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Enhancedsteam.com\" f=\"Enhancedsteam.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Enigmabox.net\" f=\"Enigmabox.net.xml\"><securecookie host=\"^wiki\\.enigmabox\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Enigmail.net\" f=\"Enigmail.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Eniro (partial)\" f=\"Eniro.xml\"><securecookie host=\"^\\.adsrv\\.ads\\.eniro\\.com$\" name=\".+\"/><rule from=\"^http://adsrv\\.ads\\.eniro\\.com/\" to=\"https://adsrv.ads.eniro.com/\"/><rule from=\"^http://(www\\.)?eniro\\.se/(webb/)?$\" to=\"https://$1eniro.se/$2\"/><rule from=\"^http://(www\\.)?eniro\\.se/webmaster-content/partners/\" to=\"https://$1eniro.se/webmaster-content/partners/\"/><rule from=\"^http://static1\\.eniro\\.com/[\\d\\.]+/components/frontpage/\" to=\"https://www.eniro.se/components/frontpage/\"/><rule from=\"^http://static1\\.eniro\\.com/img/enirose/favicon\\.ico$\" to=\"https://www.eniro.com/favicon.ico\"/><rule from=\"^http://static2\\.eniro\\.com/\\d{4}\\.\\d\\d\\.\\d\\d/components/frontpage/css/components/frontpage/img/\" to=\"https://www.eniro.se/components/frontpage/img/\"/><rule from=\"^http://static2\\.eniro\\.com/\\d{4}\\.\\d\\d\\.\\d\\d/components/frontpage/css/\" to=\"https://www.eniro.se/components/frontpage/css/\"/></ruleset>", "<ruleset name=\"Enjin\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Enjin.xml\"><securecookie host=\"^(?:.*\\.)?enjin\\.com$\" name=\".+\"/><rule from=\"^http://assets-cloud\\.enjin\\.com/\" to=\"https://d2umfjgc9kwn9b.cloudfront.net/\"/><rule from=\"^http://files\\.enjin\\.com/\" to=\"https://s3.amazonaws.com/files.enjin.com/\"/><rule from=\"^http://(www\\.)?([\\w-]+\\.)?enjin\\.com/\" to=\"https://$2enjin.com/\"/><rule from=\"^http://resources\\.guild-hosting\\.net/\" to=\"https://resources.enjin.com/\"/></ruleset>", "<ruleset name=\"Enjoy.com (partial)\" f=\"Enjoy.com.xml\"><securecookie host=\"^www\\.enjoy\\.com$\" name=\".+\"/><rule from=\"^http://enjoy\\.com/\" to=\"https://www.enjoy.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Enlightened Perl.org (partial)\" f=\"Enlightened_Perl.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eNom.com (partial)\" f=\"Enom.xml\"><exclusion pattern=\"^http://www\\.enom\\.com/(?!login|signup/).*\\.aspx(?:$|\\?)\"/><exclusion pattern=\"^http://(?:www\\.)?enom\\.com/kb(?:$|[?/])\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Enpass.io\" f=\"Enpass.io.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Enphase.com (partial)\" f=\"Enphase-Energy.xml\"><exclusion pattern=\"^http://info\\.enphase\\.com/+(?!$|\\?|css/|images/|rs/)\"/><rule from=\"^http://info\\.enphase\\.com/+(?:\\?.*)?$\" to=\"https://enphase.com/\"/><rule from=\"^http://info\\.enphase\\.com/\" to=\"https://na-abb.marketo.com/\"/><rule from=\"^http://www\\.enphase\\.com/\" to=\"https://enphase.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Enphase Energy.com (partial)\" f=\"Enphase_Energy.com.xml\"><securecookie host=\"^enlighten\\.enphaseenergy\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?enphaseenergy\\.com/\" to=\"https://enphase.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ens-lyon.org\" f=\"Ens-lyon.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ensighten\" f=\"Ensighten.xml\"><securecookie host=\"^ui\\.ensighten\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?ensighten\\.com/\" to=\"https://www.ensighten.com/\"/><rule from=\"^http://(nexus|ui)\\.ensighten\\.com/\" to=\"https://$1.ensighten.com/\"/></ruleset>", "<ruleset name=\"Ensignia mail.com (partial)\" f=\"Ensignia_mail.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ensimag.fr (partial)\" f=\"Ensimag.fr.xml\"><rule from=\"^http://(ensiwiki|inside|intranet|relint|webmail)\\.ensimag\\.fr/\" to=\"https://$1.ensimag.fr/\"/></ruleset>", "<ruleset name=\"Entanet (mismatches)\" default_off=\"mismatched\" f=\"Entanet-mismatches.xml\"><securecookie host=\"^(?:.*\\.)?entadsl\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?entadsl\\.com/\" to=\"https://entadsl.com/\"/><rule from=\"^http://(?:www\\.)?entagroup\\.com/(content|includes)?/\" to=\"https://www.entagroup.com/$1/\"/></ruleset>", "<ruleset name=\"Enta.net (partial)\" f=\"Entanet.xml\"><securecookie host=\".\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Enterprise.com\" f=\"Enterprise.com.xml\"><rule from=\"^http://(?:www\\.)?enterprise\\.com/\" to=\"https://www.enterprise.com/\"/></ruleset>", "<ruleset name=\"Enterprise CIO Forum.com\" default_off=\"expired, mismatched, self-signed\" f=\"Enterprise_CIO_Forum.com.xml\"><securecookie host=\"^www\\.enterprisecioforum\\.com$\" name=\".+\"/><rule from=\"^http://(?:cdn\\.|www\\.)?enterprisecioforum\\.com/\" to=\"https://www.enterprisecioforum.com/\"/></ruleset>", "<ruleset name=\"Enterprisers Project.com\" f=\"Enterprisers_Project.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Entertainment Consumer's Association (mismatches)\" default_off=\"mismatched\" f=\"Entertainment-Consumers-Association-mismatches.xml\"><rule from=\"^http://(?:www\\.)ecaforums\\.com/((?:fil|modul|sit)e|newsletter)s/\" to=\"https://www.ecaforums.com/$1s/\"/></ruleset>", "<ruleset name=\"Entertainment Consumer's Association (partial)\" platform=\"mixedcontent\" f=\"Entertainment-Consumers-Association.xml\"><securecookie host=\"^\\.theeca\\.com$\" name=\"__utm\\w$\"/><rule from=\"^http://(?:www\\.)theeca\\.com/(favicon\\.ico|files/|misc/|modules/|newsletters/|sites/)\" to=\"https://www.theeca.com/$1\"/></ruleset>", "<ruleset name=\"entertainment.ie\" default_off=\"failed ruleset test\" f=\"Entertainment.ie.xml\"><securecookie host=\"^entertainment\\.ie$\" name=\".+\"/><rule from=\"^http://(?:images\\.|www\\.)?entertainment\\.ie/\" to=\"https://entertainment.ie/\"/></ruleset>", "<ruleset name=\"Entertainment Weekly (partial)\" default_off=\"mismatched\" f=\"Entertainment_Weekly.xml\"><securecookie host=\"^\\.ew\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ew\\.com/\" to=\"https://www.ew.com/\"/><rule from=\"^http://(popwatch|tvrecaps)\\.ew\\.com/\" to=\"https://$1.ew.com/\"/></ruleset>", "<ruleset name=\"EntheoShop\" f=\"EntheoShop.xml\"><securecookie host=\"^shop\\.entheogene\\.de$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Enthought.com (partial)\" f=\"Enthought.com.xml\"><securecookie host=\"^(?:support\\.|www2?\\.)?enthought\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EntroPay\" f=\"EntroPay.xml\"><securecookie host=\"^.*\\.entropay\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?entropay\\.com/\" to=\"https://www.entropay.com/\"/><rule from=\"^http://(payment-solutions|secure2)\\.entropay\\.com/\" to=\"https://$1.entropay.com/\"/></ruleset>", "<ruleset name=\"Entropy Wave.com (partial)\" default_off=\"expired\" f=\"Entropy_Wave.xml\"><securecookie host=\"^(?:www\\.)?entropywave\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Entroware.com\" f=\"Entroware.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?entroware\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Entrust.com (partial)\" f=\"Entrust.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Entrust.net (partial)\" default_off=\"failed ruleset test\" f=\"Entrust.xml\"><exclusion pattern=\"^http://www\\.entrust\\.net/(?!css/|customer_support/|ev/|favicon\\.ico|images/new/)\"/><securecookie host=\"^(?:buy|home|login|managed)\\.entrust\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Enum.ru\" f=\"Enum.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Envato-static.com (partial)\" f=\"Envato-static.com.xml\"><rule from=\"^http://\\d\\.envato-static\\.com/\" to=\"https://dmypbau5frl9g.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Envato.com (mismatched)\" default_off=\"mismatched\" f=\"Envato.com-problematic.xml\"><securecookie host=\"^www\\.envato\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?envato\\.com/\" to=\"https://www.envato.com/\"/></ruleset>", "<ruleset name=\"Envato.com (partial)\" f=\"Envato.com.xml\"><rule from=\"^http://\\d\\.s3\\.envato\\.com/\" to=\"https://d2mdw063ttlqtq.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Envirotrend (mismatches)\" default_off=\"expired, mismatch\" f=\"Envirotrend-mismatches.xml\"><rule from=\"^http://(?:www\\.)?envirostyles\\.ca/\" to=\"https://envirostyles.ca/\"/><rule from=\"^http://(?:www\\.)?sakittome\\.com/\" to=\"https://sakittome.com/\"/><rule from=\"^http://svc079\\.wic859dp\\.server-web\\.com/\" to=\"https://svc079.wic859dp.server-web.com/\"/><securecookie host=\"^\\.envirostyles\\.ca$\" name=\".*\"/><securecookie host=\"^(?:www\\.)?sakittome\\.com$\" name=\".*\"/><securecookie host=\"^svc079\\.wic859dp\\.server-web\\.com$\" name=\".*\"/></ruleset>", "<ruleset name=\"Envirotrend (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Envirotrend.xml\"><rule from=\"^http://(?:www\\.)?envirotrend\\.com\\.au/\" to=\"https://envirotrend.com.au/\"/><securecookie host=\"^(?:www.)?envirotrend\\.com\\.au\" name=\".*\"/></ruleset>", "<ruleset name=\"Envision Financial\" f=\"Envision-Financial.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Envoy Direct.com\" f=\"Envoy_Direct.com.xml\"><securecookie host=\"^(?:www)?\\.envoydirect\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Envoy Media Group.com (partial)\" f=\"Envoy_Media_Group.com.xml\"><securecookie host=\"^(?:www)?\\.envoymediagroup\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Envoyer.io\" f=\"Envoyer.io.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eoPortal.org (missing certificate chain)\" default_off=\"missing certificate chain\" f=\"EoPortal.org-problematic.xml\"><securecookie host=\"^wiki\\.services\\.eoportal\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eoPortal.org (partial)\" f=\"EoPortal.xml\"><securecookie host=\"^wiki\\.services\\.eoportal\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Eole Water\" default_off=\"mismatch, self-signed\" f=\"Eole-Water.xml\"><securecookie host=\"^www\\.eolewater\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?eolewater\\.com/\" to=\"https://www.eolewater.com/\"/></ruleset>", "<ruleset name=\"epartnershub.com (partial)\" f=\"Epartnershub.com.xml\"><rule from=\"^http://(\\w+)\\.epartnershub\\.com/(App_Themes/|Checkout/|CommonCss/|[lL]ogin\\.aspx)\" to=\"https://$1.epartnershub.com/$2\"/></ruleset>", "<ruleset name=\"Epaysol.com\" f=\"Epaysol.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Epek (partial)\" default_off=\"expired\" f=\"Epek.xml\"><securecookie host=\"^signin\\.epek\\.com$\" name=\".*\"/><rule from=\"^http://signin\\.epek\\.com/\" to=\"https://signin.epek.com/\"/></ruleset>", "<ruleset name=\"Epic.com\" f=\"Epic-Systems.xml\"><securecookie host=\"^\\w+\\.epic\\.com$\" name=\".*\"/><rule from=\"^https?://epic\\.com/\" to=\"https://www.epic.com/\"/><rule from=\"^http://(access|careers|councils|eventregistration|sites|ugm|userweb|www)\\.epic\\.com/\" to=\"https://$1.epic.com/\"/></ruleset>", "<ruleset name=\"Epic Games.com (partial)\" f=\"Epic_Games.xml\"><exclusion pattern=\"^http://(?:www\\.)?epicgames\\.com/(?!about$|favicon\\.ico|files/|css/|games$|img/|js/|mediaplayer/|news-events$|support$|technology$)\"/><securecookie host=\"^\\.?forums\\.epicgames\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Epilepsy Foundation of America\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Epilepsy-Foundation-America.xml\"><rule from=\"^http://(?:www\\.)?epilepsyfoundation\\.org/\" to=\"https://www.epilepsyfoundation.org/\"/></ruleset>", "<ruleset name=\"Epilepsy Ontario\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Epilepsy-Ontario.xml\"><rule from=\"^http://(?:www\\.)?epilepsyontario\\.org/\" to=\"https://www.epilepsyontario.org/\"/></ruleset>", "<ruleset name=\"Epix Media.co.uk\" f=\"Epix_Media.co.uk.xml\"><securecookie host=\"^\\.epixmedia\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EpochStats.com\" default_off=\"failed ruleset test\" f=\"EpochStats.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Epoch Times (partial)\" default_off=\"expired, mismatched, self-signed\" f=\"Epoch_Times.xml\"><securecookie host=\"^ad\\.epochtimes\\.com$\" name=\".+\"/><rule from=\"^http://ad\\.epochtimes\\.com/\" to=\"https://ad.epochtimes.com/\"/><rule from=\"^http://(?:www\\.)?theepochtimes\\.com/n2/(images|wp-content)/\" to=\"https://www.theepochtimes.com/n2/$1/\"/></ruleset>", "<ruleset name=\"Epoxate.com\" default_off=\"failed ruleset test\" f=\"Epoxate.com.xml\"><securecookie host=\"^epoxate\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eprncdn.com\" f=\"Eprncdn.com.xml\"><rule from=\"^http://static1?\\.ca\\.eprncdn\\.com/\" to=\"https://static.ca.eprncdn.com/\"/></ruleset>", "<ruleset name=\"Epsilon Telecommunications GmbH\" f=\"Epsilon-Telecom.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Epson.com (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Epson.xml\"><exclusion pattern=\"^http://(?:www\\.)?epson\\.com/cgi-bin/Store/consumer/(?!cross_sell\\.jsp)\"/><exclusion pattern=\"^http://(?:www\\.)?epson\\.com/cgi-bin/Store/jsp/Product/(?:Overview|Photos)\\.do\"/><exclusion pattern=\"^http://(?:www\\.)?epson\\.com/(?:[a-zA-Z][a-zA-Z\\d]+){1}$\"/><securecookie host=\"^(?:.*\\.)?epson\\.c(?:a|om)$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?epson\\.c(a|om)/\" to=\"https://www.epson.c$1/\"/><rule from=\"^http://global\\.latin\\.epson\\.com/(data|frame|template)/\" to=\"https://global.latin.epson.com/$1/\"/><rule from=\"^http://(pos|was)\\.epson\\.com/\" to=\"https://$1.epson.com/\"/><rule from=\"^http://(?:www\\.)?epson\\.com\\.mx/\" to=\"https://global.latin.epson.com/mx\"/><rule from=\"^http://cform\\.epson\\.jp/\" to=\"https://cform.epson.jp/\"/><rule from=\"^http://shop\\.epson\\.jp/eshop/\" to=\"https://shop.epson.jp/eshop/\"/></ruleset>", "<ruleset name=\"Equality Trust.org.uk\" f=\"Equality_Trust.org.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EquifaxCanada\" default_off=\"Certificate mismatch\" f=\"EquifaxCanada.xml\"><rule from=\"^http://([^/:@]*)\\.econsumer\\.equifax\\.com/\" to=\"https://$1.econsumer.equifax.ca/\"/></ruleset>", "<ruleset name=\"Equinix.com (problematic)\" default_off=\"mismatched\" f=\"Equinix.com-problematic.xml\"><securecookie host=\"^www\\.equinix\\.com$\" name=\".+\"/><rule from=\"^http://www\\.equinix\\.com/(?!img/|local/(?!new/css/ui/jquery-ui\\.css)|ss/)\" to=\"https://www.equinix.com/\"/></ruleset>", "<ruleset name=\"Equinix.com (partial)\" default_off=\"failed ruleset test\" f=\"Equinix.com.xml\"><securecookie host=\"^\\.equinix\\.com$\" name=\"^_(?:mkto_trk|_utm\\w)$\"/><securecookie host=\"^(?:.+\\.)?equinix\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Equip.org (partial)\" f=\"Equip.org.xml\"><rule from=\"^http://(www\\.)?equip\\.org/wp-(?=content/|includes/)\" to=\"https://$1equip.org/wp-\"/></ruleset>", "<ruleset name=\"Equity\" f=\"Equity.xml\"><securecookie host=\"^www\\.equity\\.org\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?equity\\.org\\.uk/\" to=\"https://www.equity.org.uk/\"/></ruleset>", "<ruleset name=\"EquityZen.com\" f=\"EquityZen.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ercpe.de\" f=\"Ercpe.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"erdgeist.org\" f=\"Erdgeist.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Eregon.ch\" f=\"Ergon.ch.xml\"><rule from=\"^http://((?:secure|techzone|www)\\.)?ergon\\.ch/\" to=\"https://$1ergon.ch/\"/></ruleset>", "<ruleset name=\"Erhvervsstyrelsen.dk\" f=\"Erhvervsstyrelsen.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Eric W.us\" f=\"Eric_W.us.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ericsson (partial)\" default_off=\"failed ruleset test\" f=\"Ericsson.xml\"><rule from=\"^http://webtrends-lb\\.ericsson\\.net/\" to=\"https://webtrends-lb.ericsson.net/\"/></ruleset>", "<ruleset name=\"erinn.org\" default_off=\"failed ruleset test\" f=\"Erinn.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Erlang\" default_off=\"Missing certificate chain\" f=\"Erlang.org.xml\"><rule from=\"^http://erlang\\.org/\" to=\"https://www.erlang.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ernst & Young (partial)\" f=\"Ernst-and-Young.xml\"><securecookie host=\"^.*\\.ey\\.com$\" name=\".*\"/><rule from=\"^http://(?:webforms\\.|www\\.)?ey\\.com/\" to=\"https://webforms.ey.com/\"/><rule from=\"^http://(clientportal|eyonline)\\.ey\\.com/\" to=\"https://$1.ey.com/\"/></ruleset>", "<ruleset name=\"Ero-Advertising.com\" f=\"Ero-advertising.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Eroakirkosta.fi\" f=\"Eroakirkosta.fi.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Erooups.com\" default_off=\"shows default page\" f=\"Erooups.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Eroshare.com\" f=\"Eroshare.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Erowid\" f=\"Erowid.xml\"><securecookie host=\"^\\.www\\.erowid\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?erowid\\.(?:com|org)/\" to=\"https://www.erowid.org/\"/></ruleset>", "<ruleset name=\"Errorception.com\" f=\"Errorception.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"es.gy (expired)\" default_off=\"expired\" f=\"Es.gy-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"es.gy (partial)\" default_off=\"failed ruleset test\" f=\"Es.gy.xml\"><securecookie host=\"^bbs\\.es\\.gy$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Escrow.com\" f=\"Escrow.com.xml\"><securecookie host=\"^\\.escrow\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Escrow Live.net\" default_off=\"failed ruleset test\" f=\"Escrow_Live.net.xml\"><securecookie host=\"^www\\.escrowlive\\.net$\" name=\".+\"/><rule from=\"^http://escrowlive\\.net/[^?]*\" to=\"https://www.nccgroup.com/services/software-escrow-services.aspx\"/><rule from=\"^http://www\\.escrowlive\\.net/\" to=\"https://www.escrowlive.net/\"/></ruleset>", "<ruleset name=\"Esdominios.com\" f=\"Esdominios.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Esellerate.net (partial)\" f=\"Esellerate.net.xml\"><securecookie host=\"^(?:.*\\.)?esellerate\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ESET.com (partial)\" f=\"Eset.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.shop\\.eset\\.com$\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Esolangs.org\" f=\"Esolangs.org.xml\"><rule from=\"^http:\" to=\"https:\"/><securecookie host=\"^(?:www\\.)?esolangs\\.org$\" name=\".\"/></ruleset>", "<ruleset name=\"espacejeux\" f=\"Espacejeux.xml\"><rule from=\"^http://(?:www\\.)?espacejeux\\.com/\" to=\"https://www.espacejeux.com/\"/><securecookie host=\"^(?:.*\\.)?espacejeux\\.com$\" name=\".*\"/></ruleset>", "<ruleset name=\"Esper.net\" f=\"Esper.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Espionage app.com\" f=\"Espionage_app.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Esri (partial)\" f=\"Esri.xml\"><securecookie host=\"^(?:customers|ecasapi|esribc|events|redowa|training)\\.esri\\.com$\" name=\".+\"/><rule from=\"^http://(autodiscover|customers|ecasapi|esribc|esriwd|events|legacy|promos|redowa|rss|service|training|uel|webaccounts)\\.esri\\.com/\" to=\"https://$1.esri.com/\"/><rule from=\"^http://(?:www\\.)?myesri\\.com/\" to=\"https://myesri.com/\"/></ruleset>", "<ruleset name=\"essaysReasy.net\" default_off=\"mismatched\" f=\"EssaysReasy.xml\"><securecookie host=\"^essaysreasy\\.net$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?essaysreasy\\.(com|net)/\" to=\"https://essaysreasy.$1/\"/></ruleset>", "<ruleset name=\"Essex.gov.uk (partial)\" f=\"Essex.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Essex Police\" f=\"EssexPolice.xml\"><rule from=\"^http://(www\\.)?essex\\.police\\.uk/\" to=\"https://www.essex.police.uk/\"/></ruleset>", "<ruleset name=\"estara.com\" f=\"Estara.com.xml\"><securecookie host=\"^\\.estara\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Estonia Evoting.org\" f=\"Estonia_Evoting.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Estonian Public Broadcasting (partial)\" default_off=\"failed ruleset test\" f=\"Estonian_Public_Broadcasting.xml\"><securecookie host=\"^(?:.+\\.)?err\\.ee$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"etapestry.com\" default_off=\"failed ruleset test\" f=\"Etapestry.com.xml\"><securecookie host=\"^app\\.etapestry\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?etapestry\\.com/(?=$|\\?)\" to=\"https://www.blackbaud.com/fundraising-crm/etapestry-donor-management.aspx\"/><rule from=\"^http://(?:www\\.)?etapestry\\.com/.+\" to=\"https://www.blackbaud.com/page.aspx?pid=209\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Etarget.hu\" f=\"Etarget.hu.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Etarget.ro\" f=\"Etarget.ro.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Etarget.sk\" f=\"Etarget.sk.xml\"><securecookie host=\"^\\.\" name=\"^optimizely\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Etarget.cz\" f=\"Etarget.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Etarget net.com\" f=\"Etarget_net.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eth0.nl\" default_off=\"failed ruleset test\" f=\"Eth0.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EtherCalc.net\" f=\"EtherCalc.net.xml\"><securecookie host=\"^\\.ethercalc\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ethereum.org (partial)\" default_off=\"failed ruleset test\" f=\"Ethereum.org.xml\"><exclusion pattern=\"^http://wiki\\.ethereum\\.org/(?!$|\\?)\"/><securecookie host=\"^(?!wiki\\.).\" name=\".\"/><rule from=\"^http://wiki\\.ethereum\\.org/.*\" to=\"https://github.com/ethereum/wiki/wiki\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ethersheet.org\" default_off=\"expired\" f=\"Ethersheet.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ethical Hacker.Net (false MCB)\" platform=\"mixedcontent\" f=\"Ethical_Hacker.Net.xml\"><securecookie host=\"^(?:\\.|www\\.)?ethicalhacker\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EthicsPoint.com\" f=\"EthicsPoint.com.xml\"><securecookie host=\"^secure\\.ethicspoint\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ethn.io\" f=\"Ethn.io.xml\"><securecookie host=\"^\\.ethn\\.io$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ethn\\.io/\" to=\"https://ethn.io/\"/></ruleset>", "<ruleset name=\"Ethnologue\" f=\"Ethnologue.xml\"><securecookie host=\"^www\\.ethnologue\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ethos-OS.org\" f=\"Ethos-OS.org.xml\"><rule from=\"^http://(?:www\\.)?ethos-os\\.org/\" to=\"https://www.ethos-os.org/\"/></ruleset>", "<ruleset name=\"Ethos Custom Brands\" default_off=\"failed ruleset test\" f=\"Ethos_Custom_Brands.xml\"><securecookie host=\"^(?:www)?\\.ethoscustombrands\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Etipos.sk\" f=\"Etipos.sk.xml\"><rule from=\"^http://(?:www\\.)?etipos\\.sk/\" to=\"https://www.etipos.sk/\"/></ruleset>", "<ruleset name=\"etnasoft.com\" default_off=\"failed ruleset test\" f=\"Etnasoft.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"etouches\" f=\"Etouches.xml\"><securecookie host=\"^(?:www\\.)?e(?:iseverywhere|touches)\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"etracker (partial)\" default_off=\"failed ruleset test\" f=\"Etracker.xml\"><exclusion pattern=\"^http://editor\\.etracker\\.com/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http://etracker\\.de/\" to=\"https://www.etracker.de/\"/><rule from=\"^http://(?:www\\.)?sedotracker\\.com/\" to=\"https://www.etracker.de/\"/><rule from=\"^http://visitormotion\\.com/\" to=\"https://www.visitormotion.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Etrade.com\" f=\"Etrade.com.xml\"><rule from=\"^http://((?:about|career|global|us|www)\\.)?etrade\\.com/\" to=\"https://$1etrade.com/\"/><rule from=\"^http://cdn\\.etrade\\.net/\" to=\"https://cdn.etrade.net/\"/></ruleset>", "<ruleset name=\"eTravelWay.com\" default_off=\"missing certificate chain\" f=\"Etravelway.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Etre Shop.com (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Etre_Shop.com.xml\"><securecookie host=\"^www\\.etreshop\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Etre Touchy.com\" default_off=\"expired\" f=\"Etre_Touchy.com.xml\"><exclusion pattern=\"^http://www\\.etrytouchy\\.com/+(?!favicon\\.ico|images/|styles/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Etrend.sk\" f=\"Etrend.sk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Etsy (partial)\" f=\"Etsy.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ettus.com (partial)\" f=\"Ettus.com.xml\"><rule from=\"^http://(www\\.)?ettus\\.com/(?=(?:account|cart|login|product/quick-order)(?:$|[?/])|assets/|content/|favicon\\.ico|images/)\" to=\"https://$1ettus.com/\"/></ruleset>", "<ruleset name=\"EuP Network\" default_off=\"mismatched\" f=\"EuP_Network.xml\"><securecookie host=\"^www\\.eup-network\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?eup-network\\.de/\" to=\"https://www.eup-network.de/\"/></ruleset>", "<ruleset name=\"Eucalyptus.com\" default_off=\"failed ruleset test\" f=\"Eucalyptus.com.xml\"><rule from=\"^http://(www\\.)?eucalyptus\\.com/\" to=\"https://$1eucalyptus.com/\"/><rule from=\"^http://support\\.eucalyptus\\.com/\" to=\"https://support.eucalyptus.com/\"/></ruleset>", "<ruleset name=\"EurActiv.com\" f=\"EurActiv.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Eurex Repo.com (partial)\" f=\"Eurex_Repo.com.xml\"><exclusion pattern=\"^http://www\\.eurexrepo\\.com/+(?!blob/|image/|resources/)\"/><rule from=\"^http://(?:www\\.)?eurexrepo\\.com/\" to=\"https://www.eurexrepo.com/\"/><rule from=\"^http://member\\.eurexrepo\\.com/\" to=\"https://member.eurexrepo.com/\"/></ruleset>", "<ruleset name=\"Eurexchange.com (partial)\" f=\"Eurexchange.com.xml\"><exclusion pattern=\"^http://www\\.eurexchange\\.com/+(?!blob/|image/|(?:exchange-de/ressourcen/circulars|exchange-de/ressourcen/regelwerke|exchange-en/contacts)(?:$|[?/])|resources/)\"/><rule from=\"^http://(?:www\\.)?eurexchange\\.com/\" to=\"https://www.eurexchange.com/\"/><rule from=\"^http://member\\.eurexchange\\.com/\" to=\"https://member.eurexchange.com/\"/></ruleset>", "<ruleset name=\"Euro-IX.net\" f=\"Euro-IX.xml\"><securecookie host=\"^(?:www\\.)?euro-ix\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EuroAds.se (partial)\" f=\"EuroAds.se.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EuroBSDcon.org (false MCB)\" platform=\"mixedcontent\" f=\"EuroBSDcon.org-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EuroBSDcon.org (partial)\" f=\"EuroBSDcon.org.xml\"><securecookie host=\"^2015\\.eurobsdcon\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EuroDNS.com (problematic)\" default_off=\"expired, mismatched, self-signed\" f=\"EuroDNS.com-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EuroDNS.com (partial)\" f=\"EuroDNS.com.xml\"><securecookie host=\"^affiliate\\.eurodns\\.com$\" name=\"^CAKEPHP$\"/><securecookie host=\"^(?:affiliate|www)\\.eurodns\\.com$\" name=\".+\"/><rule from=\"^http://cdn3\\.eurodns\\.com/\" to=\"https://static.eurodns.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EuroFlorist.no (partial)\" f=\"EuroFlorist.no.xml\"><exclusion pattern=\"^http://(?:bedrift\\.|www\\.)?euroflorist\\.no/(?!Css/|Domains/|favicon\\.ico|Images/|(?:En/)?Pages/CaptchaImage|Products/|(?:Script|Web)Resource\\.axd|Scripts/)\"/><securecookie host=\"^\\.(?:bedrift\\.)?euroflorist\\.no\" name=\"^__utm\\w$\"/><rule from=\"^http://(?:www\\.)?euroflorist\\.no/\" to=\"https://www.euroflorist.no/\"/><rule from=\"^http://bedrift\\.euroflorist\\.no/\" to=\"https://bedrift.euroflorist.no/\"/></ruleset>", "<ruleset name=\"EuroPriSe\" platform=\"mixedcontent\" f=\"EuroPriSe.xml\"><rule from=\"^http://(?:www\\.)?european-privacy-seal\\.eu/\" to=\"https://www.european-privacy-seal.eu/\"/></ruleset>", "<ruleset name=\"EuroPython.eu\" default_off=\"failed ruleset test\" f=\"EuroPython.xml\"><securecookie host=\".+\\.europython\\.eu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EuroSmartz\" default_off=\"expired\" f=\"EuroSmartz.xml\"><rule from=\"^http://(?:(?:mobile\\.|www\\.)?eurosmartz|u15404278\\.onlinehome-server)\\.com/\" to=\"https://u15404278.onlinehome-server.com/\"/></ruleset>", "<ruleset name=\"Eurodiet (partial)\" f=\"Eurodiet.xml\"><rule from=\"^http://(?:www\\.)?eurodiet\\.co\\.uk/_design/\" to=\"https://www.eurodiet.co.uk/_design/\"/></ruleset>", "<ruleset name=\"Euroforum (problematic)\" default_off=\"mismatched\" f=\"Euroforum-problematic.xml\"><rule from=\"^http://(?:www\\.)?euroforum\\.de/\" to=\"https://www.euroforum.de/\"/></ruleset>", "<ruleset name=\"Euroforum (partial)\" f=\"Euroforum.xml\"><rule from=\"^http://(www\\.)?euroforum\\.com/\" to=\"https://$1euroforum.com/\"/><rule from=\"^http://static2?\\.euroforum\\.de/\" to=\"https://d30az3luf8nwkb.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Eurofurence\" f=\"Eurofurence.xml\"><securecookie host=\"^forum\\.eurofurence\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Eurogamer.net (expired)\" default_off=\"expired\" f=\"Eurogamer-problematic.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Eurogamer.net (partial)\" f=\"Eurogamer.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eurogap.cz\" default_off=\"expired\" f=\"Eurogap.cz.xml\"><securecookie host=\"^dealers\\.eurogap\\.cz$\" name=\".+\"/><rule from=\"^http://dealers\\.eurogap\\.cz/\" to=\"https://dealers.eurogap.cz/\"/></ruleset>", "<ruleset name=\"Euroland.com\" f=\"Euroland.com.xml\"><securecookie host=\"^(?:tools\\.|www\\.)?euroland\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Europa-Apotheek.com\" f=\"Europa-Apotheek.com.xml\"><securecookie host=\"^www\\.europa-apotheek\\.com$\" name=\".+\"/><rule from=\"^http://europa-apotheek\\.com/\" to=\"https://www.europa-apotheek.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Europa.eu (false MCB)\" platform=\"mixedcontent\" f=\"Europa.eu-falsemixed.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Europa.eu (partial)\" f=\"Europa.eu.xml\"><exclusion pattern=\"http://www\\.consilium\\.europa\\.eu/+(?!content/|favicon\\.ico|images/|uedocs/|uploadedImages/)\"/><exclusion pattern=\"^http://cordis\\.europa\\.eu/+(?!account/|common/arc/|css/|favicon\\.ico|guidance/(?:cs|icon)s/|icons/|js/|scienceweek/+(?!$|\\?)|wel/template-)\"/><exclusion pattern=\"^http://ec\\.europa\\.eu/(?!/*(?:(?:commission|eures|eusurvey|futurium|jrc|research)(?:$|[?/])|enterprise/images/|growth/(?:heroes/template|images|stylesheets)/|wel/))\"/><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^(?:bookshop|www\\.ecb|eiopa|oami|publications)\\.europa\\.eu$\" name=\".\"/><securecookie host=\"^ec\\.europa\\.eu$\" name=\"^JSESSIONIDEUSURVEY$\"/><rule from=\"^http://www\\.ecb\\.eu/\" to=\"https://www.ecb.europa.eu/\"/><rule from=\"^http://(consilium|easa)\\.europa\\.eu/\" to=\"https://www.$1.europa.eu/\"/><rule from=\"^http://www\\.tmview\\.europa\\.eu/.*\" to=\"https://www.tmdn.org/tmview/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Europe-Consommateurs.eu\" f=\"Europe-Consommateurs.eu.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Europe Minatures\" default_off=\"expired, self-signed\" f=\"Europe_Miniatures.xml\"><rule from=\"^http://(?:www\\.)?europe-miniatures\\.com/\" to=\"https://europe-miniatures.com/\"/></ruleset>", "<ruleset name=\"European Bioinformatics Institute\" f=\"European-Bioinformatics-Institute.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"European Nuclear Society\" platform=\"mixedcontent\" f=\"European-Nuclear-Society.xml\"><rule from=\"^http://(?:www\\.)?euronuclear\\.org/\" to=\"https://www.euronuclear.org/\"/></ruleset>", "<ruleset name=\"European Nuclear Young Generation Forum\" default_off=\"mismatched\" f=\"European-Nuclear-Young-Generation-Forum.xml\"><securecookie host=\"^www\\.enygf\\.eu$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?enygf\\.eu/\" to=\"https://www.enygf.eu/\"/></ruleset>", "<ruleset name=\"European Southern Observatory (partial)\" f=\"European-Southern-Observatory.xml\"><exclusion pattern=\"^http://www\\.eso\\.org/public/(?:austria|belgium-(?:de|fr|nl)|brazil|chile|czechrepublic|denmark|finland|france|germany|italy|netherlands|portugal|spain|sweden)/\"/><exclusion pattern=\"^http://www\\.eso\\.org/public/news(?:$|\\?|/)\"/><rule from=\"^http://(?:www\\.)?eso\\.org/\" to=\"https://www.eso.org/\"/></ruleset>", "<ruleset name=\"EuropeanSSL\" f=\"EuropeanSSL.xml\"><securecookie host=\"^secure\\.europeanssl\\.eu$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?(?:secure\\.)?europeanssl\\.eu/\" to=\"https://secure.europeanssl.eu/\"/></ruleset>", "<ruleset name=\"European Energy Exchange (partial)\" f=\"European_Energy_Exchange.xml\"><securecookie host=\"^\\.eex\\.com$\" name=\"^sakura_session$\"/><rule from=\"^http://(?:www\\.)?eex\\.com/\" to=\"https://www.eex.com/\"/><rule from=\"^http://cdn\\.eex\\.com/\" to=\"https://cdn.eex.com/\"/></ruleset>", "<ruleset name=\"ESA.int (partial)\" default_off=\"failed ruleset test\" f=\"European_Space_Agency.xml\"><exclusion pattern=\"^http://www\\.esa\\.int/(?!extension/|var/)\"/><securecookie host=\"^(?!www\\.)\\w\" name=\".\"/><rule from=\"^http://esa\\.int/\" to=\"https://www.esa.int/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Eurovision.de\" f=\"Eurovision.de.xml\"><securecookie host=\"^(www\\.)?eurovision\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ESC\" f=\"Eurovision.tv.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Eveger\" f=\"EvEGer.xml\"><rule from=\"^http://(?:www\\.)?eveger\\.de/\" to=\"https://www.eveger.de/\"/></ruleset>", "<ruleset name=\"evanced.info\" default_off=\"failed ruleset test\" f=\"Evanced.info.xml\"><securecookie host=\"^(?:ca\\.)?evanced\\.info$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Evaske.com\" default_off=\"failed ruleset test\" f=\"Evaske.com.xml\"><securecookie host=\"^(?:clients|www)\\.evaske\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Evbstatic.com\" f=\"Evbstatic.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EvbUC.com\" f=\"Evbuc.com.xml\"><securecookie host=\"^s?\\.evbuc\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"evenmere.org (partial)\" default_off=\"failed ruleset test\" f=\"Evenmere.org.xml\"><rule from=\"^http://blog\\.evenmere\\.org/\" to=\"https://blog.evenmere.org/\"/></ruleset>", "<ruleset name=\"EventOverload\" default_off=\"failed ruleset test\" f=\"EventOverload.xml\"><securecookie host=\"^\\.?eventoverload\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Event Booking Online.com\" f=\"Event_Booking_Online.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Eventbrite.co.uk\" f=\"Eventbrite.co.uk.xml\"><exclusion pattern=\"^http://help\\.eventbrite\\.co\\.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Eventbrite.com\" f=\"Eventbrite.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Eventim (partial)\" f=\"Eventim.xml\"><exclusion pattern=\"^http://(?:www\\.)?eventim\\.bg/(?!bg/moyat_profil/|bg/sign-in/)\"/><exclusion pattern=\"^http://(?:www\\.)?eventim\\.hr/(?!hr/my_account/|hr/sign-in/)\"/><exclusion pattern=\"^http://(?:www\\.)?eventim\\.hu/(?!hu/felhasznaloi_profilom/|hu/sign-in/)\"/><exclusion pattern=\"^http://(?:www\\.)?eventim\\.ro/(?!ro/contul_meu/|ro/sign-in/)\"/><exclusion pattern=\"^http://(?:www\\.)?eventim\\.si/(?!si/moj_racun/|si/sign-in/)\"/><securecookie host=\"^.*\\.eventim\\.se$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?eventim\\.(bg|cz|co\\.il|co\\.uk|de|hr|hu|nl|pl|ro|se|si)/\" to=\"https://www.eventim.$1/\"/><rule from=\"^http://(ru\\.)?content\\.eventim\\.com/\" to=\"https://$1content.eventim.com/\"/><rule from=\"^http://secure\\.eventim\\.(co\\.il|co\\.uk|cz|de|nl|pl|se)/\" to=\"https://secure.eventim.$1/\"/></ruleset>", "<ruleset name=\"Eventpoint.com (partial)\" default_off=\"failed ruleset test\" f=\"Eventpoint.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Events.ch\" default_off=\"failed ruleset test\" f=\"Events.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EverMap.com\" f=\"EverMap.com.xml\"><securecookie host=\"^(?:www\\.)?evermap\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?evermap\\.com/\" to=\"https://evermap.com/\"/></ruleset>", "<ruleset name=\"Everest Tech.net\" f=\"Everest_Technology.xml\"><securecookie host=\"^\\.everesttech\\.net$\" name=\".+\"/><rule from=\"^http://pixel(\\d*)\\.everesttech\\.net/\" to=\"https://pixel$1.everesttech.net/\"/></ruleset>", "<ruleset name=\"Evergage.com (partial)\" f=\"Evergage.com.xml\"><securecookie host=\"^\\.?login\\.evergage\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"evermeet.cx\" default_off=\"failed ruleset test\" f=\"Evermeet.cx.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Evernote.com (partial)\" f=\"Evernote.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Everplans.com\" f=\"Everplans.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Every Angle Media\" default_off=\"mismatched\" f=\"Every_Angle_Media.xml\"><securecookie host=\"^(?:www\\.)?everyanglemedia\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Everyday Health (partial)\" default_off=\"failed ruleset test\" f=\"Everyday_Health.xml\"><securecookie host=\"^www\\.everydayhealth\\.com$\" name=\".+\"/><rule from=\"^http://images\\.(agora|waterfront)media\\.com/\" to=\"https://images.$1media.com/\"/><rule from=\"^http://(content\\.|www\\.)?everydayhealth\\.com/\" to=\"https://$1everydayhealth.com/\"/></ruleset>", "<ruleset name=\"Everyday Hero\" f=\"Everyday_Hero.xml\"><securecookie host=\"^\\.(?:passport\\.)?everydayhero\\.com$\" name=\".+\"/><securecookie host=\"^(?:www\\.)?everydayhero\\.com\\.au$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Everydayfeminism.com\" default_off=\"failed ruleset test\" f=\"Everydayfeminism.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Everyone is Gay.com\" default_off=\"mismatched\" f=\"Everyone_is_Gay.com.xml\"><rule from=\"^http://(?:www\\.)?everyoneisgay\\.com/\" to=\"https://www.everyoneisgay.com/\"/></ruleset>", "<ruleset name=\"Everything Everywhere (partial)\" f=\"Everything_Everywhere.xml\"><exclusion pattern=\"^http://business\\.ee\\.co\\.uk/(?!favicon\\.ico|misc/|modules/|sites/)\"/><securecookie host=\"^(?:(?:apply|broadband|community|explore|my|shop|storefinder)\\.)?ee\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://((?:apply|assets[1-5]|broadband|business|community|explore|my|shop|storefinder|www)\\.)?ee\\.co\\.uk/\" to=\"https://$1ee.co.uk/\"/><rule from=\"^http://assets6\\.ee\\.co\\.uk/\" to=\"https://s3-eu-west-1.amazonaws.com/assets6.ee.co.uk/\"/><rule from=\"^http://assets7\\.ee\\.co\\.uk/\" to=\"https://s3-eu-west-1.amazonaws.com/assets7.ee.co.uk/\"/><rule from=\"^http://assets10\\.ee\\.co\\.uk/\" to=\"https://c1400017.ssl.cf3.rackcdn.com/\"/><rule from=\"^http://assets11\\.ee\\.co\\.uk/\" to=\"https://c1400022.ssl.cf3.rackcdn.com/\"/><rule from=\"^http://assets12\\.ee\\.co\\.uk/\" to=\"https://c1400021.ssl.cf3.rackcdn.com/\"/><rule from=\"^http://assets13\\.ee\\.co\\.uk/\" to=\"https://c1400023.ssl.cf3.rackcdn.com/\"/><rule from=\"^http://assets14\\.ee\\.co\\.uk/\" to=\"https://c1400024.ssl.cf3.rackcdn.com/\"/></ruleset>", "<ruleset name=\"Evidon Inc (partial)\" default_off=\"failed ruleset test\" f=\"Evidon.xml\"><rule from=\"^http://cdn\\.(?:betteradvertising|evidon)\\.com/\" to=\"https://cdn.betrad.com/\"/><rule from=\"^http://blog\\.evidon\\.com/(?![^?])\" to=\"https://www.ghostery.com/intelligence/business-blog/\"/><rule from=\"^http://blog\\.evidon\\.com/\" to=\"https://www.ghostery.com/intelligence/business-blog\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Evil 32.com\" f=\"Evil_32.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Evisa-Vietnam.com\" default_off=\"expired\" f=\"Evisa-Vietnam.Com.xml\"><securecookie host=\"^(www\\.)?evisa-vietnam\\.com$\" name=\"^[\\da-f]{32}$\"/><securecookie host=\"^(?:www\\.)?evisa-vietnam\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Evm.dk\" default_off=\"refused\" f=\"Evm.dk.xml\"><rule from=\"^http://(www\\.)?evm\\.dk/\" to=\"https://www.evm.dk/\"/></ruleset>", "<ruleset name=\"evo.com (partial)\" f=\"Evo.com.xml\"><rule from=\"^http://(?:www\\.)?evo\\.com/(?=favicon\\.ico|faviconcrown\\.ico|img/|img-?p/|promos/upload/|temp/)\" to=\"https://www.evo.com/\"/></ruleset>", "<ruleset name=\"EvoTronix.com (partial)\" f=\"EvoTronix.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EvolMed.com\" f=\"EvolMed.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Evoliatis.com\" platform=\"mixedcontent\" f=\"Evoliatis.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Evoluted.net\" default_off=\"testing\" f=\"Evoluted.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Evozi\" f=\"Evozi.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Eweka.nl\" f=\"Eweka.nl.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ex10.biz\" f=\"Ex10.biz.xml\"><rule from=\"^http://ex10\\.biz/\" to=\"https://www.ex10.biz/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ex Libris\" f=\"Ex_Libris.xml\"><securecookie host=\"^sfxhosted\\.exlibrisgroup\\.com$\" name=\".+\"/><rule from=\"^http://(?:\\w+sfx\\.|sfx)hosted\\.exlibrisgroup\\.com/\" to=\"https://sfxhosted.exlibrisgroup.com/\"/></ruleset>", "<ruleset name=\"Ex Ratione.com\" f=\"Ex_Ratione.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ExaVault.com\" f=\"ExaVault.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"exaccess.ru (partial)\" f=\"Exaccess.ru.xml\"><rule from=\"^http://(dynam|stat)ic\\.exaccess\\.ru/\" to=\"https://$1ic.exaccess.ru/\"/></ruleset>", "<ruleset name=\"Exacom.sk\" f=\"Exacom.sk.xml\"><rule from=\"^http://(?:www\\.)?exacom\\.sk/+\" to=\"https://www.exahost.com/\"/></ruleset>", "<ruleset name=\"ExactTarget (mismatches)\" default_off=\"mismatched\" f=\"ExactTarget-mismatches.xml\"><rule from=\"^http://(blog|partners)\\.exacttarget\\.com/\" to=\"https://$1.exacttarget.com/\"/></ruleset>", "<ruleset name=\"ExactTarget (partial)\" f=\"ExactTarget.xml\"><securecookie host=\"^(?:.*\\.)?exacttarget\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?exacttarget\\.com/\" to=\"https://www.exacttarget.com/\"/><rule from=\"^http://(3sixty|(?:auth|click|imh|mc)\\.boa|brandcdn|click|email|image|imh|mc|members|nexus|pages|partners|(?:auth|imh|mc)\\.poc|(?:auth|imh|mc)\\.s[12]\\.qa[123]|(?:auth|mc)\\.s1|(?:auth|mc)\\.s100|(?:auth|click|image|imh|mc|members)\\.s4|(?:mc|members)\\.s5|(?:auth|click|image|imh|mc|members)\\.s6|(?:auth|click|image|mc|members)\\.s7|(?:auth|click|image|mc|members)\\.s8|(?:auth|mc|members)\\.test)\\.exacttarget\\.com/\" to=\"https://$1.exacttarget.com/\"/><rule from=\"^http://images\\.s4\\.exacttarget\\.com/\" to=\"https://image.s4.exacttarget.com/\"/></ruleset>", "<ruleset name=\"Exactag (partial)\" default_off=\"failed ruleset test\" f=\"Exactag.xml\"><exclusion pattern=\"^http://(?:www\\.)?exactag\\.com/(?!_extjs/|_jquery/|_js/|auth/)\"/><securecookie host=\"^(?:dr|m)\\.exactag\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Examine\" f=\"Examine.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"examiner.com (partial)\" default_off=\"failed ruleset test\" f=\"Examiner.com.xml\"><exclusion pattern=\"^http://www\\.examiner\\.com/tag/\"/><exclusion pattern=\"^http://www\\.examiner\\.com/(?![^/]+/|About_Examiner|Advertise|arts-entertainment$|careers|favicon\\.ico|interests$|privacy_policy|rss$|[\\w-]*sitemap|Terms_of_Use|video-portal$|[^\\?]+\\?cid=.*)\"/><securecookie host=\"^photos\\.examiner\\.com$\" name=\".+\"/><rule from=\"^http://((?:beacon|cdn2-b|photos|staging|www)\\.)?examiner\\.com/\" to=\"https://$1examiner.com/\"/><rule from=\"^http://www\\.examiner\\.com/([^\\?]+)(?:\\?cid=.*)$\" to=\"https://www.examiner.com/$1\"/><rule from=\"^http://stats\\.examiner\\.com/\" to=\"https://examiner-com.122.2o7.net/\"/><rule from=\"^http://cdn\\.exm\\.nr/\" to=\"https://cdn2-b.examiner.com/\"/></ruleset>", "<ruleset name=\"examp1e.net\" default_off=\"failed ruleset test\" f=\"Examp1e.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ExcT.net\" f=\"ExcT.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Excaliburfilms (partial)\" default_off=\"failed ruleset test\" f=\"Excaliburfilms.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Excelsior-USA.com (partial)\" f=\"Excelsior-USA.com.xml\"><exclusion pattern=\"^http://www\\.excelsior-usa\\.com/+(?!(?:blog|forum)(?:$|[?/])|images/|new\\.css)\"/><securecookie host=\"^excelsior-usa\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ExchangeWire.com\" f=\"ExchangeWire.com.xml\"><securecookie host=\"^www\\.exchangewire\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Excitations.com\" f=\"Excitations.com.xml\"><securecookie host=\"^(?:www)?\\.excitations\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Exclusive X\" f=\"Exclusive_X.xml\"><securecookie host=\"^(?:.*\\.)?exclusivex\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Executive Interviews.biz\" f=\"Executive_Interviews.biz.xml\"><rule from=\"^http://(?:www\\.)?executiveinterviews\\.biz/\" to=\"https://www.executiveinterviews.biz/\"/></ruleset>", "<ruleset name=\"Executive Interviews.com\" f=\"Executive_Interviews.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Exede (partial)\" f=\"Exede.xml\"><securecookie host=\"^order\\.exede\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Exeter Friendly Society\" default_off=\"failed ruleset test\" f=\"Exeter_Friendly_Society.xml\"><securecookie host=\"^www\\.exeterfamily\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?exeterfamily\\.co\\.uk/\" to=\"https://www.exeterfamily.co.uk/\"/><rule from=\"^http://(?:www\\.)?exeterfriendly\\.co\\.uk/(?:\\?.*)?$\" to=\"https://www.exeterfamily.co.uk/\"/></ruleset>", "<ruleset name=\"Exhale\" f=\"Exhale.xml\"><rule from=\"^http://(?:www\\.)?4exhale\\.org/\" to=\"https://exhaleprovoice.org/\"/><rule from=\"^http://(www\\.)?exhaleprovoice\\.org/\" to=\"https://$1exhaleprovoice.org/\"/></ruleset>", "<ruleset name=\"Exherbo.org\" f=\"Exherbo.org.xml\"><securecookie host=\"^(www\\.)?exherbo\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Exim.org (partial)\" f=\"Exim.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Exinda (partial)\" f=\"Exinda.xml\"><securecookie host=\"^support\\.exinda\\.com$\" name=\".+\"/><rule from=\"^http://go\\.exinda\\.com/(cs|image|r)s/\" to=\"https://na-sjf.marketo.com/$1s/\"/><rule from=\"^http://support\\.exinda\\.com/\" to=\"https://support.exinda.com/\"/></ruleset>", "<ruleset name=\"Exitec (partial)\" f=\"Exitec.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Exlibris.ch\" f=\"Exlibris.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Exmasters.com (partial)\" f=\"Exmasters.com.xml\"><securecookie host=\"^admin\\.exmasters\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Exmo.com\" default_off=\"failed ruleset test\" f=\"Exmo.com.xml\"><securecookie host=\"^(?:www)?\\.exmo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Exoclick.com (partial)\" f=\"Exoclick.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www-static\\.exoclick\\.com/\" to=\"https://www.exoclick.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ExootLab\" f=\"ExootLab.xml\"><securecookie host=\"^www\\.exootlab\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Expanded Support.com\" default_off=\"refused\" f=\"Expanded_Support.com.xml\"><securecookie host=\"^expandedsupport\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?expandedsupport\\.com/\" to=\"https://expandedsupport.com/\"/></ruleset>", "<ruleset name=\"Expedia\" default_off=\"failed ruleset test\" f=\"Expedia.xml\"><securecookie host=\"^\\.expedia\\.co(?:om|\\.uk)$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?expedia\\.com/(?=pub/|p/|.*Checkout)\" to=\"https://www.expedia.com/\"/><rule from=\"^http://media\\.expedia\\.com/\" to=\"https://media.expedia.com/\"/><rule from=\"^http://(www\\.)?expedia\\.co\\.uk/\" to=\"https://$1expedia.co.uk/\"/></ruleset>", "<ruleset name=\"Expedia affiliate.com\" f=\"Expedia_affiliate.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ExpeditedSSL.com\" f=\"ExpeditedSSL.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Experian\" f=\"Experian.xml\"><securecookie host=\"^\\.?experian\\.experiandirect\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?experian\\.com/\" to=\"https://www.experian.com/\"/><rule from=\"^http://experian\\.experiandirect\\.com/\" to=\"https://experian.experiandirect.com/\"/></ruleset>", "<ruleset name=\"Experience Days\" f=\"Experience-Days.xml\"><securecookie host=\"^www\\.experiencedays\\.co\\.uk$\" name=\".+\"/><rule from=\"^(?:https://|http://(?:www\\.)?)experiencedays\\.co\\.uk/\" to=\"https://www.experiencedays.co.uk/\"/></ruleset>", "<ruleset name=\"Explainxkcd.com\" platform=\"mixedcontent\" f=\"Explainxkcd.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Exploit.IN\" f=\"Exploit.IN.xml\"><securecookie host=\"^exploit\\.in$\" name=\".+\"/><rule from=\"^http://www\\.exploit\\.in/\" to=\"https://exploit.in/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ExploitHub.com\" f=\"ExploitHub.com.xml\"><rule from=\"^http://(?:www\\.)?exploithub\\.com/\" to=\"https://exploithub.com/\"/></ruleset>", "<ruleset name=\"exploreB2B.com\" default_off=\"failed ruleset test\" f=\"ExploreB2B.com.xml\"><securecookie host=\"^\\.exploreb2b\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Explosm.net (partial)\" default_off=\"failed ruleset test\" f=\"Explosm.net.xml\"><securecookie host=\"^\\.explosm\\.net$\" name=\".+\"/><rule from=\"^http://(www\\.)?explosm\\.net/\" to=\"https://$1explosm.net/\"/><rule from=\"^http://store\\.explosm\\.net/\" to=\"https://explosmstore.myshopify.com/\"/></ruleset>", "<ruleset name=\"Expo 2020 (partial)\" default_off=\"failed ruleset test\" f=\"Expo2020.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Exponential.com (partial)\" f=\"Exponential.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ExposeFacts.org\" f=\"ExposeFacts.org.xml\"><rule from=\"^http://(?:www\\.)?exposefacts\\.org/\" to=\"https://exposefacts.org/\"/></ruleset>", "<ruleset name=\"Exposing the Invisible.org\" f=\"Exposing_the_Invisible.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Exposure.co (partial)\" f=\"Exposure.co.xml\"><exclusion pattern=\"^http://(?:[^./]+\\.){2,}exposure\\.co/\"/><exclusion pattern=\"^http://(?:changes|gettingstarted|support)\\.exposure\\.co/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Express.co.uk\" f=\"Express.co.uk.xml\"><securecookie host=\"^www\\.express\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"expresscoin.com (partial)\" default_off=\"failed ruleset test\" f=\"Expresscoin.com.xml\"><securecookie host=\"^(?:\\.|accounts\\.|www\\.)?expresscoin\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Extabit (partial)\" default_off=\"expired\" f=\"Extabit.xml\"><securecookie host=\"^\\.extabit\\.com$\" name=\"^(?:\\w|\\w{3}|\\w{6,}|einfo)$\"/><rule from=\"^http://(?:st\\.|webmaster\\.|www\\.)?extabit\\.com/\" to=\"https://extabit.com/\"/></ruleset>", "<ruleset name=\"extatic.org\" f=\"Extatic.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Extension Defender.com\" default_off=\"failed ruleset test\" f=\"Extension_Defender.com.xml\"><securecookie host=\"^\\.extensiondefender\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Extensis.com (mismatched)\" default_off=\"mismatched\" f=\"Extensis.com-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Extensis.com (partial)\" default_off=\"failed ruleset test\" f=\"Extensis.com.xml\"><securecookie host=\"^(?:secure|www)?\\.extensis\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Extra Lunch Money\" f=\"Extra_Lunch_Money.xml\"><securecookie host=\"^\\.?extralunchmoney\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?extralunchmoney\\.com/\" to=\"https://$1extralunchmoney.com/\"/><rule from=\"^http://imageassets\\.extralunchmoney\\.com/\" to=\"https://1c2b4e3d78d00f8d775f-9944ec653f3e6c54804d49fe85e91fe7.ssl.cf2.rackcdn.com/\"/></ruleset>", "<ruleset name=\"Extract Widget.com\" default_off=\"mismatched\" f=\"Extract_Widget.com.xml\"><securecookie host=\"^extractwidget\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?extractwidget\\.com/\" to=\"https://extractwidget.com/\"/></ruleset>", "<ruleset name=\"Extratorrent.com\" default_off=\"failed ruleset test\" f=\"Extratorrent.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Extreme-Dm.com (partial)\" f=\"Extreme-Dm.com.xml\"><rule from=\"^http://nht-(2|3)\\.extreme-dm\\.com/\" to=\"https://nht-$1.extreme-dm.com/\"/><rule from=\"^http://t[01]\\.extreme-dm\\.com/\" to=\"https://t1.extreme-dm.com/\"/><rule from=\"^http://w1\\.extreme-dm\\.com/\" to=\"https://t1.extreme-dm.com/\"/></ruleset>", "<ruleset name=\"Extreme Light Infrastructure\" f=\"Extreme-Light-Infrastructure.xml\"><rule from=\"^http://(?:www\\.)?extreme-light-infrastructure\\.eu/\" to=\"https://ssl7.ovh.net/~extremel/\"/></ruleset>", "<ruleset name=\"Extreme Tracking\" f=\"Extreme-Tracking.xml\"><rule from=\"^http://(?:www\\.)?extremetracking\\.com/\" to=\"https://extremetracking.com/\"/></ruleset>", "<ruleset name=\"Extreme Digital\" platform=\"mixedcontent\" f=\"Extreme_Digital.xml\"><securecookie host=\"^www\\.edigital\\.hu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Extreme Tech.com (partial)\" default_off=\"broken\" f=\"Extreme_Tech.com.xml\"><securecookie host=\"^\\.extremetech\\.com$\" name=\"^(?:s_\\w+|__utm)\\w$\"/><securecookie host=\"^www\\.extremetech\\.com$\" name=\"^_chartbeat2$\"/><rule from=\"^http://metrics\\.extremetech\\.com/\" to=\"https://extremetech-com.122.2o7.net/\"/></ruleset>", "<ruleset name=\"eyeReturn.com (partial)\" f=\"EyeReturn.com.xml\"><securecookie host=\"^reports\\.eyereturn\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eyeReturn Marketing.com (partial)\" f=\"EyeReturn_Marketing.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?eyereturnmarketing\\.com/+(?!wp-content/|wp-includes/)\"/><rule from=\"^http://(?:(?:www\\.)?eyereturnmarketing|emi\\.wpengine)\\.com/\" to=\"https://emi.wpengine.com/\"/></ruleset>", "<ruleset name=\"EyeTech\" default_off=\"failed ruleset test\" f=\"EyeTech.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Eyeboot.com\" f=\"Eyeboot.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eyeviewads.com\" f=\"Eyeviewads.com.xml\"><securecookie host=\"^\\.eyeviewads\\.com$\" name=\".+\"/><rule from=\"^http://track\\.eyeviewads\\.com/\" to=\"https://track.eyeviewads.com/\"/></ruleset>", "<ruleset name=\"ezAccessory.com\" f=\"EzAccessory.com.xml\"><securecookie host=\"^(?:www\\.)?ezaccessory\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ezDing.com.tw (partial)\" default_off=\"failed ruleset test\" f=\"EzDing.com.tw.xml\"><securecookie host=\"^www\\.ezding\\.com\\.tw$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ezaxess.com (partial)\" f=\"Ezaxess.com.xml\"><exclusion pattern=\"^http://files\\.ezaxess\\.com/.+\\.css\"/><rule from=\"^http://files\\.ezaxess\\.com/\" to=\"https://s3.amazonaws.com/files.ezaxess.com/\"/></ruleset>", "<ruleset name=\"EzineArticles (partial)\" f=\"EzineArticles.xml\"><exclusion pattern=\"^http://ezinearticles\\.com/(?:.+\\.html)?(?:$|\\?)\"/><rule from=\"^http://(?:www\\.)?ezinearticles\\.com/\" to=\"https://ezinearticles.com/\"/><rule from=\"^http://img\\.ezinearticles\\.com/\" to=\"https://img.ezinearticles.com/\"/></ruleset>", "<ruleset name=\"F-CDN.com\" f=\"F-CDN.com.xml\"><rule from=\"^http://(\\d)\\.f-cdn\\.com/\" to=\"https://$1.f-cdn.com/\"/></ruleset>", "<ruleset name=\"F-Droid.org\" f=\"F-Droid.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"F-Secure.com (partial)\" default_off=\"failed ruleset test\" f=\"F-Secure.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://sp\\.f-secure\\.com/\" to=\"https://www.f-secure.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"F35.com\" f=\"F35.com.xml\"><securecookie host=\"^www\\.f35\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"f3images.com\" f=\"F3images.com.xml\"><securecookie host=\"^\\.f3images\\.com$\" name=\".+\"/><rule from=\"^http://(c\\d|www)\\.f3images\\.com/\" to=\"https://$1.f3images.com/\"/></ruleset>", "<ruleset name=\"F5 (mismatches)\" default_off=\"mismatched\" f=\"F5-mismatches.xml\"><securecookie host=\"^www\\.f5\\.com\\.cn$\" name=\".*\"/><securecookie host=\"^www\\.f5networks\\.(?:com\\.br|co\\.uk|cz|[ds]e|es|fr|it|[np]l)$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?f5\\.com\\.cn/\" to=\"https://www.f5.com.cn/\"/><rule from=\"^http://(?:www\\.)?f5networks\\.(com\\.br|co\\.uk|cz|[ds]e|es|fr|it|[np]l)/\" to=\"https://www.f5networks.$1/\"/></ruleset>", "<ruleset name=\"F5.com\" f=\"F5.xml\"><securecookie host=\".*\\.f5\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"F5 Networks.co.jp (partial)\" f=\"F5_Networks.co.jp.xml\"><rule from=\"^http://(www\\.)?f5networks\\.co\\.jp/(?=images/|shared/)\" to=\"https://$1f5networks.co.jp/\"/></ruleset>", "<ruleset name=\"F9 Distribution\" f=\"F9-Distribution.xml\"><rule from=\"^http://(?:www\\.)?f9\\.fi/\" to=\"https://www.f9.fi/\"/></ruleset>", "<ruleset name=\"FAAN College Network.org\" f=\"FAANCollegeNetwork.xml\"><rule from=\"^http://(?:www\\.)?faancollegenetwork\\.org/+(?:\\?.*)?$\" to=\"https://www.foodallergy.org/resources-for/colleges-universities/college-food-allergy-program\"/><rule from=\"^http://(?:www\\.)?faancollegenetwork\\.org/+\" to=\"https://www.foodallergy.org/resources-for/colleges-universities/college-food-allergy-program/\"/></ruleset>", "<ruleset name=\"FASFA.gov\" f=\"FAFSA.gov.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FAPMC\" default_off=\"self-signed\" f=\"FAPMC.xml\"><rule from=\"^http://(?:www\\.)?fapmc\\.ru/\" to=\"https://www.fapmc.ru/\"/></ruleset>", "<ruleset name=\"Freie Arbeiterinnen- und Arbeiter-Union (FAU)\" f=\"FAU.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FAZ (mismatches)\" default_off=\"Certificate mismatch\" f=\"FAZ-mismatches.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FAZ (partial)\" platform=\"mixedcontent\" f=\"FAZ.xml\"><securecookie host=\"^(?:www\\.)?fazjob\\.net$\" name=\".*\"/><rule from=\"^http://www\\.fazjob\\.net/\" to=\"https://stellenmarkt.faz.net/\"/><rule from=\"^http://m\\.fazjob\\.net/\" to=\"https://stellenmarkt.faz.net/\"/><rule from=\"^http://rebrush-oas\\.fazjob\\.net/\" to=\"https://stellenmarkt.faz.net/\"/><rule from=\"^http://jobsuche-hochschulanzeiger\\.fazjob\\.net/\" to=\"https://stellenmarkt.faz.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FC2.com (partial)\" f=\"FC2.com.xml\"><securecookie host=\"^\\.id\\.fc2\\.com$\" name=\"^FCSID$\"/><securecookie host=\"^(?:\\.?blog|id|secure\\.id|media3)\\.fc2\\.com$\" name=\".+\"/><rule from=\"^http://(blog|form1ssl|id|secure\\.id|media3|rentalserver1)\\.fc2\\.com/\" to=\"https://$1.fc2.com/\"/></ruleset>", "<ruleset name=\"FCA.org.uk (partial)\" f=\"FCA.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FCO.gov.uk (partial)\" f=\"FCO.gov.uk.xml\"><exclusion pattern=\"^http://(?:centralcontent\\.|www\\.)?fco\\.gov\\.uk/(?!/*(?:$|\\?))\"/><exclusion pattern=\"^http://ukinusa\\.fco\\.gov\\.uk/(?!/*(?:$|\\?|(?:houston|seattle)(?:$|[?/])))\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:centralcontent\\.|www\\.)?fco\\.gov\\.uk/.*\" to=\"https://www.gov.uk/government/organisations/foreign-commonwealth-office\"/><rule from=\"^http://ukinusa\\.fco\\.gov\\.uk/houston.*\" to=\"https://www.gov.uk/government/world/organisations/british-consulate-general-houston\"/><rule from=\"^http://ukinusa\\.fco\\.gov\\.uk/seattle.*\" to=\"https://www.gov.uk/government/world/organisations/british-consulate-general-san-francisco\"/><rule from=\"^http://ukinusa\\.fco\\.gov\\.uk/.*\" to=\"https://www.gov.uk/government/world/usa\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FCPA Blog (partial)\" default_off=\"failed ruleset test\" f=\"FCPA-Blog.xml\"><rule from=\"^http://(?:www\\.)?fcpablog\\.com/\" to=\"https://fcpablog.squarespace.com/\"/></ruleset>", "<ruleset name=\"FCW.com (partial)\" f=\"FCW.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FDA.gov (partial)\" f=\"FDA.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FDF.org.uk\" f=\"FDF.org.uk.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FDOPK.org\" f=\"FDOPK.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FE-DDIS.dk\" f=\"FE-DDIS.dk.xml\"><rule from=\"^http://www\\.fe-ddis\\.dk/\" to=\"https://fe-ddis.dk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FEE.org\" f=\"FEE.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FFmpeg.org\" f=\"FFMPEG.xml\"><securecookie host=\"^trac\\.ffmpeg\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FFSG.org\" default_off=\"failed ruleset test\" f=\"FFSG.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FFTLive.org\" default_off=\"failed ruleset test\" f=\"FFTLive.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://fftlive\\.org/\" to=\"https://www.fftlive.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FHNW.ch (partial)\" f=\"FHNW.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FHS.se\" platform=\"mixedcontent\" f=\"FHS.se.xml\"><rule from=\"^http://fhs\\.se/\" to=\"https://www.fhs.se/\"/><rule from=\"^http://www\\.fhs\\.se/\" to=\"https://www.fhs.se/\"/></ruleset>", "<ruleset name=\"FIDH.org\" f=\"FIDH.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FIDO Alliance.org\" f=\"FIDO_Alliance.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FIFE\" default_off=\"mismatch, self-signed\" f=\"FIFE.xml\"><rule from=\"^http://(?:www\\.)?fifengine\\.(?:de|net)/\" to=\"https://fifengine.net/\"/></ruleset>", "<ruleset name=\"FIGUE.com (partial)\" f=\"FIGUE.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?figue\\.com/+(?:$|\\?)\"/><securecookie host=\"^\\.figue\\.com$\" name=\"^__utm\\w$\"/><rule from=\"^http://(?:cdn1\\.|www\\.)?figue\\.com/\" to=\"https://www.figue.com/\"/></ruleset>", "<ruleset name=\"FIME.me\" f=\"FIME.me.xml\"><securecookie host=\"^\\.fime\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FIRST.org (partial)\" f=\"FIRST.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FLOSSManuals.net\" f=\"FLOSSManuals.xml\"><securecookie host=\"^flossmanuals\\.net$\" name=\".+\"/><rule from=\"^http://(?:en\\.|(www\\.))?flossmanuals\\.net/\" to=\"https://$1flossmanuals.net/\"/></ruleset>", "<ruleset name=\"FLonline.eu\" f=\"FLonline.eu.xml\"><securecookie host=\"^winners\\.flonline\\.eu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FMV.se\" platform=\"mixedcontent\" f=\"FMV.se.xml\"><rule from=\"^http://www\\.fmv\\.se/\" to=\"https://www.fmv.se/\"/><rule from=\"^http://fmv\\.se/\" to=\"https://www.fmv.se/\"/></ruleset>", "<ruleset name=\"FMyLife.com\" f=\"FMyLife.com.xml\"><securecookie host=\"^(?:www)?\\.fmylife\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?fmylife\\.com/\" to=\"https://$1fmylife.com/\"/><rule from=\"^http://cdn\\d\\.fmylife\\.com/\" to=\"https://betacie.cachefly.net/\"/><rule from=\"^http://media\\.fmylife\\.com/\" to=\"https://cdn.betacie.com/\"/></ruleset>", "<ruleset name=\"FN Cash.com\" f=\"FN_Cash.com.xml\"><securecookie host=\"^\\.?www\\.fncash\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FN Mag.co (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"FN_Mag.co-falsemixed.xml\"><securecookie host=\"^(?:www)?\\.fnmag\\.co$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FN Mag.co (partial)\" f=\"FN_Mag.co.xml\"><rule from=\"^http://cdn5?\\.fnmag\\.co/\" to=\"https://d3riqfjibuvp3c.cloudfront.net/\"/></ruleset>", "<ruleset name=\"FOM Networks.com\" default_off=\"mismatched\" f=\"FOM_Networks.com.xml\"><rule from=\"^http://(?:www\\.)?fomnetworks\\.com/\" to=\"https://fomnetworks.com/\"/></ruleset>", "<ruleset name=\"FORA.tv (partial)\" f=\"FORA.tv.xml\"><rule from=\"^http://(?:cdn\\.|(www\\.))?fora\\.tv/(fora/clientscript|purchase)/\" to=\"https://$1fora.tv/$2/\"/><rule from=\"^http://(?:cdn\\.|(www\\.))?fora\\.tv/i/\" to=\"https://$1fora.tv/i/\"/></ruleset>", "<ruleset name=\"FORCE11.org\" f=\"FORCE11.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FOSS.IN (partial)\" default_off=\"expired\" f=\"FOSS.IN.xml\"><rule from=\"^http://(planet\\.)?(www\\.)?foss\\.in/\" to=\"https://$1foss.in/\"/></ruleset>", "<ruleset name=\"FOSSBazaar.org (partial)\" f=\"FOSSBazaar.org.xml\"><securecookie host=\"^(?:.*\\.)?fossbazaar\\.org$\" name=\".*\"/><rule from=\"^http://(\\w+\\.)?fossbazaar\\.org/\" to=\"https://$1fossbazaar.org/\"/></ruleset>", "<ruleset name=\"FOX Toolkit\" default_off=\"self-signed\" f=\"FOX-Toolkit.xml\"><rule from=\"^http://www\\.fox-toolkit\\.(?:net|org)/\" to=\"https://fox-toolkit.org/\"/><rule from=\"^http://(blog|www)\\.fox-toolkit\\.(?:net|org)/\" to=\"https://$1.fox-toolkit.org/\"/></ruleset>", "<ruleset name=\"FPJ Intel.com\" f=\"FPJ_Intel.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FP Complete.com\" default_off=\"failed ruleset test\" f=\"FP_Complete.com.xml\"><securecookie host=\"^(?:www\\.)?fpcomplete\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FRA LLC.com\" f=\"FRA_LLC.com.xml\"><securecookie host=\"^(?:www\\.)?frallc\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FREAK Attack.com\" f=\"FREAK_Attack.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FREECULTR\" default_off=\"failed ruleset test\" f=\"FREECULTR.xml\"><securecookie host=\"^\\.freecultr\\.com$\" name=\".+\"/><rule from=\"^http://(?:static\\.|www\\.)?freecultr\\.com/\" to=\"https://www.freecultr.com/\"/></ruleset>", "<ruleset name=\"FRUCT.org (partial)\" f=\"FRUCT.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.yar\\.fruct\\.org/\" to=\"https://yar.fruct.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FSA.go.jp (partial)\" f=\"FSA.go.jp.xml\"><exclusion pattern=\"^http://www\\.fsa\\.go\\.jp/(?!sesc/watch/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FSA.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"FSA.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FSCS.org.uk (partial)\" f=\"FSCS.org.uk.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FSDN.com\" f=\"FSDN.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Free Software Foundation\" f=\"FSF.xml\"><exclusion pattern=\"^http://shop\\.fsf\\.org/(?!faq/$|jf$|static/|termsofsale/$)\"/><securecookie host=\"^(?:\\.crm|my|status)\\.fsf\\.org$\" name=\".*\"/><rule from=\"^http://donate\\.fsf\\.org/\" to=\"https://my.fsf.org/donate/\"/><rule from=\"^http://patron\\.fsf\\.org/\" to=\"https://www.fsf.org/patrons\"/><rule from=\"^http://bugs\\.gnewsense\\.org/.*\" to=\"https://savannah.nongnu.org/bugs/?group=gnewsense\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FSFE.org (partial)\" default_off=\"failed ruleset test\" f=\"FSFE.org.xml\"><securecookie host=\"^(?:fellowship|vote)\\.fsfe\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FSFEurope.org (partial)\" default_off=\"failed ruleset test\" f=\"FSFEurope.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FSF Latin America\" f=\"FSFLA.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FSU.edu (partial)\" f=\"FSU.edu.xml\"><securecookie host=\"^(?:(?:www\\.)?admissions|campus|cas|w(?:ebmail|ww)\\.cs|foundation|(?:www\\.)?my|one|(?:apps|cfprd)\\.oti|(?:www\\.)?registrar)\\.fsu\\.edu$\" name=\".+\"/><rule from=\"^http://((?:(?:www\\.)?admissions|campus|cas|(?:service|system|webmail|www1?)\\.cs|financialaid|foundation|(?:www\\.)?my|one|(?:cfprd|apps)\\.oti|(?:www\\.)?registrar|www)\\.)?fsu\\.edu/\" to=\"https://$1fsu.edu/\"/></ruleset>", "<ruleset name=\"FS CDN.org\" f=\"FS_CDN.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FS Data.se (partial)\" f=\"FS_Data.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FS ISAC.com\" f=\"FS_ISAC.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FTL Game.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"FTL_Game.com.xml\"><securecookie host=\"^\\.ftlgame\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FVEYdocs.org\" default_off=\"failed ruleset test\" f=\"FVEYdocs.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FX Prime.com\" default_off=\"failed ruleset test\" f=\"FX_Prime.com.xml\"><rule from=\"^http://fxprime\\.com/\" to=\"https://www.fxprime.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FX Systems\" default_off=\"failed ruleset test\" f=\"FX_Systems.xml\"><securecookie host=\"^\\.fxsystems.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FYBSG.com\" f=\"FYBSG.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FYB SE.se\" f=\"FYB_SE.se.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FabLab Tacoma\" f=\"FabLab_Tacoma.xml\"><securecookie host=\"^(?:www\\.)?fablabtacoma\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fab Lab Truck.nl\" f=\"Fab_Lab_Truck.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fabian Keil.de\" f=\"Fabian_Keil.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fabricatorz\" default_off=\"failed ruleset test\" f=\"Fabricatorz.xml\"><securecookie host=\"^fabricatorz\\.com$\" name=\".+\"/><rule from=\"^http://(?:(private\\.)|www\\.)?fabricatorz\\.com/\" to=\"https://$1fabricatorz.com/\"/></ruleset>", "<ruleset name=\"Facebook.net\" f=\"Facebook.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Facebook.com\" f=\"Facebook.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Facebook Hidden Service\" platform=\"mixedcontent\" f=\"FacebookCoreWWWi.onion.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Facebook-Studio.com\" default_off=\"failed ruleset test\" f=\"Facebook_Studio.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://facebook-studio\\.com/\" to=\"https://www.facebook-studio.com/\"/><rule from=\"^http://(\\w+)\\.facebook-studio\\.com/\" to=\"https://$1.facebook-studio.com/\"/></ruleset>", "<ruleset name=\"Facebook ccTLDs\" f=\"Facebook_ccTLDs.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://(?:www\\.)?facebook\\.(?:be|is|it|nl|us)/\" to=\"https://www.facebook.com/\"/><rule from=\"^http://(?:de-de\\.|www\\.)?facebook\\.de/\" to=\"https://de-de.facebook.com/\"/><rule from=\"^http://(?:da-dk\\.|www\\.)?facebook\\.dk/\" to=\"https://da-dk.facebook.com/\"/><rule from=\"^http://(?:es-es\\.|www\\.)?facebook\\.(?:es|mx)/\" to=\"https://es-es.facebook.com/\"/><rule from=\"^http://(?:fr-fr\\.|www\\.)?facebook\\.fr/\" to=\"https://fr-fr.facebook.com/\"/><rule from=\"^http://(?:ja-jp\\.|www\\.)?facebook\\.jp/\" to=\"https://ja-jp.facebook.com/\"/><rule from=\"^http://(?:nb-no\\.|www\\.)?facebook\\.no/\" to=\"https://nb-no.facebook.com/\"/><rule from=\"^http://(?:sv-se\\.|www\\.)?facebook\\.se/\" to=\"https://sv-se.facebook.com/\"/></ruleset>", "<ruleset name=\"Facepunch.com (partial)\" default_off=\"failed ruleset test\" f=\"Facepunch.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"facetz.net\" f=\"Facetz.net.xml\"><securecookie host=\"^\\.facetz\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"factorable.net\" f=\"Factorable.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Factory Expo Home Centers\" f=\"Factory_Expo_Home_Centers.xml\"><securecookie host=\"^(?:.*\\.)?(?:azchampion|expo(?:mobile)?homes|factory(?:directcabins|expo(?:direct|expohomes|mobilehomes)|homesale|selecthomes)|fbhexpo)\\.com$\" name=\".+\"/><securecookie host=\"^(?:.*\\.)?(?:cimacorp|factoryexpo)\\.net$\" name=\".+\"/><rule from=\"^http://(www\\.)?(azchampion|expo(?:mobile)?homes|factory(?:directcabins|expo(?:direct|expohomes|mobilehomes)|homesale|selecthomes)|fbhexpo)\\.com/\" to=\"https://$1$2.com/\"/><rule from=\"^http://(www\\.)?(cimacorp|factoryexpo)\\.net/\" to=\"https://$1$2.net/\"/></ruleset>", "<ruleset name=\"Faculty Diversity.org\" default_off=\"mismatched\" f=\"Faculty_Diversity.org.xml\"><securecookie host=\"^(?:www\\.)?facultydiversity\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"fagms.net\" f=\"Fagms.net.xml\"><rule from=\"^http://(?:www\\.)?fagms\\.net/\" to=\"https://www.fagms.net/\"/></ruleset>", "<ruleset name=\"Failure Magazine\" default_off=\"mismatched\" f=\"Failure-Magazine.xml\"><securecookie host=\"^(?:.*\\.)?failuremag\\.com$\" name=\".*\"/><rule from=\"^http://(?:origin\\.|www\\.)?failuremag\\.com/\" to=\"https://failuremag.com/\"/></ruleset>", "<ruleset name=\"FairSSL.se\" f=\"FairSSL.se.xml\"><securecookie host=\"^www\\.fairssl\\.se$\" name=\".+\"/><rule from=\"^http://fairssl\\.se/\" to=\"https://www.fairssl.se/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fair Work Commission\" f=\"FairWorkCommission.xml\"><rule from=\"^http://(?:www\\.)?fwc\\.gov\\.au/\" to=\"https://www.fwc.gov.au/\"/></ruleset>", "<ruleset name=\"Fair Work Ombudsman\" f=\"FairWorkOmbudsman.xml\"><rule from=\"^http://(?:www\\.)?fairwork\\.gov\\.au/\" to=\"https://www.fairwork.gov.au/\"/></ruleset>", "<ruleset name=\"Fairfax Digital (partial)\" default_off=\"failed ruleset test\" f=\"Fairfax-Digital.xml\"><securecookie host=\"^membercentre\\.fairfax\\.com\\.au$\" name=\".*\"/><rule from=\"^http://ads\\.afraccess\\.com/\" to=\"https://ads.afraccess.com/\"/><rule from=\"^http://membercentre\\.fairfax\\.com\\.au/\" to=\"https://membercentre.fairfax.com.au/\"/></ruleset>", "<ruleset name=\"Fairfax Public Access\" f=\"Fairfax_Public_Access.xml\"><securecookie host=\"^\\.fcac\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?fcac\\.org/\" to=\"https://www.fcac.org/\"/></ruleset>", "<ruleset name=\"Fairphone.com (partial)\" f=\"Fairphone.com.xml\"><exclusion pattern=\"^http://shop\\.fairphone\\.com/(?!/*(?:(?:checkout/cart|customer/account)(?:$|[?/])|favicon\\.ico|media/|skin/))\"/><securecookie host=\"^(?!shop\\.)\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Faith in Motion.com.au (partial)\" f=\"Faith_in_Motion.com.au.xml\"><rule from=\"^http://(www\\.)?faithinmotion\\.com\\.au/(?=favicon\\.ico|my-account(?:$|[?/])|wp-content/|wp-includes/)\" to=\"https://$1faithinmotion.com.au/\"/></ruleset>", "<ruleset name=\"FakaHeda.eu\" f=\"FakaHeda.eu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fakturownia (partial)\" f=\"Fakturownia.xml\"><securecookie host=\"^\\.fakturownia\\.pl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Falcon-UAV.com (partial)\" default_off=\"mismatched\" f=\"Falcon-UAV.com.xml\"><rule from=\"^http://(?:www\\.)?falcon-uav\\.com/(?=display/|favicon\\.ico|layout/|process/|storage/|universal/)\" to=\"https://www.falcon-uav.com/\"/></ruleset>", "<ruleset name=\"Falkirk.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"Falkirk.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://beta\\.falkirk\\.gov\\.uk/\" to=\"https://www.falkirk.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Falkvinge on Infopolicy\" f=\"Falkvinge_on_Infopolicy.xml\"><securecookie host=\"^\\.falkvinge\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fallout 4.com\" f=\"Fallout_4.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Falls Creek Resort\" platform=\"mixedcontent\" f=\"FallsCreek.com.au.xml\"><securecookie host=\"www\\.fallscreek\\.com\\.au$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"familie redlich\" default_off=\"mismatch, self-signed\" f=\"Familie-redlich.xml\"><securecookie host=\"^(?:systeme\\.)?familie-redlich\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?(systeme\\.)?familie-redlich\\.de/\" to=\"https://$1familie-redlich.de/\"/></ruleset>", "<ruleset name=\"Family Christian Stores\" default_off=\"failed ruleset test\" f=\"Family-Christian-Stores.xml\"><securecookie host=\"^\\.?www\\.familychristian\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FamilySearch.org\" default_off=\"failed ruleset test\" f=\"FamilySearch.org.xml\"><securecookie host=\"^(?:(?:donate|indexing|new)\\.)?familysearch\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Family Medicine Association\" f=\"Family_Medicine_Association.xml\"><securecookie host=\"^\\.fmaba\\.com$\" name=\".+\"/><rule from=\"^http://fmaba\\.com/\" to=\"https://www.fmaba.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FanFiction.net\" f=\"FanFiction.xml\"><rule from=\"^http://fanfiction\\.net/\" to=\"https://www.fanfiction.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fanatics (partial)\" f=\"Fanatics.xml\"><securecookie host=\"^st\\.fanatics\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?fanatics\\.com/((?:accoun|checkou)t(?:$|\\?|/)|css/)\" to=\"https://www.fanatics.com/$1\"/><rule from=\"^http://st\\.fanatics\\.com/\" to=\"https://st.fanatics.com/\"/></ruleset>", "<ruleset name=\"Fanboy.co.nz\" default_off=\"failed ruleset test\" f=\"Fanboy.xml\"><securecookie host=\"^(?:.+\\.)?fanboy\\.co\\.nz$\" name=\".\"/><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fandago\" default_off=\"failed ruleset test\" f=\"Fandago.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fandango (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Fandango.xml\"><securecookie host=\"^(?:www)?\\.?fandango\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fangamer (partial)\" f=\"Fangamer.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?fangamer\\.net/\" to=\"https://fangamer.myshopify.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fanhatten (partial)\" default_off=\"failed ruleset test\" f=\"Fanhattan.xml\"><rule from=\"^http://(?:www\\.)?fanhattan\\.com/\" to=\"https://www.fanhattan.com/\"/><rule from=\"^http://blog\\.fanhattan\\.com/\" to=\"https://blog.fanhattan.com/\"/><rule from=\"^http://cf2\\.imgobject\\.com/\" to=\"https://d1zm4mmpsrckwj.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Fanli.com\" f=\"Fanli.com.xml\"><exclusion pattern=\"^http://passport\\.fanli\\.com/invite\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fanoe.dk\" default_off=\"failed ruleset test\" f=\"Fanoe.dk.xml\"><securecookie host=\"^(www\\.)?fanoe\\.dk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fansub.co\" f=\"Fansub.co.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fantlab.ru\" f=\"Fantlab.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Faq-o-matic.net\" f=\"Faq-o-matic.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FarManager\" f=\"FarManager.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Faraday sec.com\" f=\"Faraday_sec.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fareham.gov.uk (partial)\" f=\"Fareham.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://fareham\\.gov\\.uk/\" to=\"https://www.fareham.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fark (partial)\" default_off=\"testing\" f=\"Fark.xml\"><exclusion pattern=\"^http://(?:www\\.)?fark\\.com/(?!/*(?:(?:barefarksignup|forgotpassword|newuser|submit)(?:$|[?/])))\"/><securecookie host=\"^\\.\" name=\"^_(?:_qca$|gat?$|gat_)\"/><securecookie host=\"^\\w\" name=\"^__utm\"/><securecookie host=\"^[^.f]\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FarmLogs.com\" f=\"FarmLogs.com.xml\"><securecookie host=\"^\\.farmlogs\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Faround.net (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Faround.net.xml\"><securecookie host=\"^(?:www)?\\.faround\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?faround\\.net/\" to=\"https://www.faround.net/\"/></ruleset>", "<ruleset name=\"Fashion Dip\" f=\"Fashion_Dip.xml\"><securecookie host=\"^(?:w*\\.)?fashiondip\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fashionwalker.com\" f=\"Fashionwalker.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fass.se\" f=\"Fass.se.xml\"><rule from=\"^http://fass\\.se/\" to=\"https://www.fass.se/\"/><rule from=\"^http://www\\.fass\\.se/\" to=\"https://www.fass.se/\"/></ruleset>", "<ruleset name=\"Fast Company.com (partial)\" f=\"Fast-Company.xml\"><securecookie host=\"^magazine\\.fastcompany\\.com$\" name=\".*\"/><rule from=\"^http://fastcompany\\.com/\" to=\"https://www.fastcompany.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fast Web Media (partial)\" default_off=\"failed ruleset test\" f=\"Fast-Web-Media.xml\"><securecookie host=\"^.+\\.fwmapps\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(www\\.)?fastwebmedia\\.com/\" to=\"https://$1fastwebmedia.com/\"/><rule from=\"^http://([\\w\\-]+\\.)?fwmapps\\.co\\.uk/\" to=\"https://$1fwmapps.co.uk/\"/></ruleset>", "<ruleset name=\"FastDomain\" f=\"FastDomain.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FastSSL.net\" f=\"FastSSL.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FastShare.cz\" f=\"FastShare.cz.xml\"><securecookie host=\"^\\.(?:www\\.)?fastshare\\.cz$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FastSoft (partial)\" default_off=\"expired, self-signed\" f=\"FastSoft.xml\"><rule from=\"^http://fastsoft\\.com/media//images/logo\\.gif$\" to=\"https://chi-10g-1-mirror.fastsoft.net/fs-logo.gif\"/><rule from=\"^http://chi-10g-1-mirror\\.fastsoft\\.net/\" to=\"https://chi-10g-1-mirror.fastsoft.net/\"/></ruleset>", "<ruleset name=\"FastSpring (mismatches)\" default_off=\"mismatched\" f=\"FastSpring-mismatches.xml\"><rule from=\"^http://(?:www\\.)?fastspringblog\\.com/\" to=\"https://fastspringblog.com/\"/><rule from=\"^http://(?:www\\.)?fastspringstore\\.com/\" to=\"https://www.fastspringstore.com/\"/></ruleset>", "<ruleset name=\"FastSpring (partial)\" f=\"FastSpring.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://resource\\.fastspring\\.com/\" to=\"https://s3.amazonaws.com/resource.fastspring.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FastWebHost.com (mismatches)\" default_off=\"mismatched\" f=\"FastWebHost.com-mismatches.xml\"><securecookie host=\"^webmail\\.fastwebhost\\.com$\" name=\".*\"/><rule from=\"^http://webmail\\.fastwebhost\\.com/\" to=\"https://webmail.fastwebhost.com/\"/></ruleset>", "<ruleset name=\"FastWebHost.com (partial)\" f=\"FastWebHost.com.xml\"><securecookie host=\"^(?:support|www)\\.fastwebhost\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fast Co Design.com\" f=\"Fast_Co_Design.com.xml\"><rule from=\"^http://(?:www\\.)?fastcodesign\\.com/\" to=\"https://www.fastcodesign.com/\"/></ruleset>", "<ruleset name=\"Fast Company.net\" f=\"Fast_Company.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fast Serv.com (partial)\" f=\"Fast_Serv.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Fast and the Furious\" default_off=\"akamai cert\" f=\"Fast_and_the_Furious.xml\"><rule from=\"^http://(?:www\\.)?thefastandthefurious\\.com/\" to=\"https://www.thefastandthefurious.com/\"/></ruleset>", "<ruleset name=\"FasterBadger.com\" f=\"FasterBadger.com.xml\"><securecookie host=\"^(?:www\\.)?fasterbadger\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fasthosts (partial)\" f=\"Fasthosts.xml\"><securecookie host=\"^.*\\.fasthosts\\.co\\.uk$\" name=\".*\"/><securecookie host=\"^www\\.ukreg\\.com$\" name=\".*\"/><rule from=\"^https://www\\.fasthosts\\.co\\.uk/js/track\\.js\" to=\"https://www.fasthosts.co.uk/favicon.ico\"/><rule from=\"^http://(?:www\\.)?fasthosts\\.co\\.uk/\" to=\"https://www.fasthosts.co.uk/\"/><rule from=\"^http://(admin|login|order)\\.fasthosts\\.co\\.uk/\" to=\"https://$1.fasthosts.co.uk/\"/><rule from=\"^http://secure(\\d|1[0-3-9]|2[0-4]|5[26])\\.prositehosting\\.co\\.uk/\" to=\"https://secure$1.prositehosting.co.uk/\"/><rule from=\"^http://(?:www\\.)?ukreg\\.com/\" to=\"https://www.ukreg.com/\"/></ruleset>", "<ruleset name=\"Fastly.net (partial)\" f=\"Fastly.net.xml\"><exclusion pattern=\"^http://(?!assets1\\.fastly\\.com\\.a\\.prod\\.)[\\w.-]+\\.prod\\.fastly\\.net/\"/><exclusion pattern=\"^http://purge\\.fastly\\.net/\"/><exclusion pattern=\"^http://[\\w.-]+/assets/fontawesome-webfont-\"/><exclusion pattern=\"^http://periscope\\-prod\\-[\\w.-]+\\.global\\.ssl\\.fastly\\.net\"/><rule from=\"^http://assets1\\.fastly\\.com\\.a\\.prod\\.fastly\\.net/\" to=\"https://fastly.a.ssl.fastly.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fastly.com\" f=\"Fastly.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fastmail (partial)\" f=\"Fastmail.xml\"><securecookie host=\"^.*\\.fastmail\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fastweb.com (partial)\" f=\"Fastweb.com.xml\"><exclusion pattern=\"^http://www\\.fastweb\\.com/+(?!assets/|images/|login(?:$|[?/])|nfs/|uploads/)\"/><rule from=\"^http://fastweb\\.com/\" to=\"https://www.fastweb.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FatCow Web Hosting\" platform=\"mixedcontent\" f=\"FatCow-Web-Hosting.xml\"><securecookie host=\"^(?:.*\\.)?fatcow\\.com$\" name=\".*\"/><rule from=\"^http://(\\w+\\.)?fatcow\\.com(:443)?/\" to=\"https://$1fatcow.com$2/\"/></ruleset>", "<ruleset name=\"FatWallet.com (partial)\" f=\"FatWallet.com.xml\"><exclusion pattern=\"^http://www\\.fatwallet\\.com/+(?!favicon\\.ico|login(?:$|[?/]))\"/><securecookie host=\"^\\.fatwallet\\.com$\" name=\"^(?:incap_ses|nlbi|visid_incap)_\\d+$\"/><securecookie host=\"^www\\.fatwallet\\.com$\" name=\"^___utm[abm]+$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Favrskov.dk\" f=\"Favrskov.dk.xml\"><securecookie host=\"^(www\\.)?favrskov\\.dk$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Favstar.fm\" f=\"Favstar.fm.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FaxCritics\" f=\"FaxCritics.xml\"><securecookie host=\"^\\.faxcritics.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fax Big Brother.com\" f=\"Fax_Big_Brother.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fax Robot.com\" default_off=\"failed ruleset test\" f=\"Fax_Robot.com.xml\"><securecookie host=\"^\\.faxrobot\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fazekas\" default_off=\"failed ruleset test\" f=\"Fazekas.xml\"><rule from=\"^http://(?:www\\.)?fazekas\\.hu/\" to=\"https://fazekas.hu/\"/><rule from=\"^http://sas\\.fazekas\\.hu/\" to=\"https://sas.fazekas.hu/\"/><rule from=\"^http://summertime\\.fazekas\\.hu/\" to=\"https://summertime.fazekas.hu/\"/></ruleset>", "<ruleset name=\"Fb.com (partial)\" f=\"Fb.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fb.me\" f=\"Fb.me.xml\"><exclusion pattern=\"^http://on\\.fb\\.me/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FbCDN.net\" f=\"FbCDN.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://dragon\\.ak\\.fbcdn\\.net/\" to=\"https://fbcdn-dragon-a.akamaihd.net/\"/><rule from=\"^http://external\\.ak\\.fbcdn\\.net/\" to=\"https://fbexternal-a.akamaihd.net/\"/><rule from=\"^http://s?photos-([a-h])\\.ak\\.fbcdn\\.net/\" to=\"https://fbcdn-sphotos-$1-a.akamaihd.net/\"/><rule from=\"^http://profile\\.ak\\.fbcdn\\.net/\" to=\"https://fbcdn-profile-a.akamaihd.net/\"/><rule from=\"^http://a\\d\\.sphotos\\.ak\\.fbcdn\\.net/\" to=\"https://fbcdn-sphotos-a.akamaihd.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fb F8.com\" f=\"Fb_F8.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fbk.info\" f=\"Fbk.info.xml\"><rule from=\"^http://www\\.fbk\\.info/\" to=\"https://fbk.info/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fcitx-im.org\" f=\"Fcitx-im.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"fdworlds.net (partial)\" f=\"Fdworlds.net.xml\"><exclusion pattern=\"^http://(?:www\\.)?fdworlds\\.net/+(?!favicon\\.ico|forum/$|img/|(?:about|laws|news|reg|top)\\.php)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FeatherCoin (partial)\" f=\"FeatherCoin.xml\"><securecookie host=\"^forum\\.feathercoin\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Febas.de\" f=\"Febas.de.xml\"><rule from=\"^http://(?:www\\.)?febas\\.de/\" to=\"https://www.febas.de/\"/></ruleset>", "<ruleset name=\"FedEx.com (problematic, false MCB)\" default_off=\"mismatched\" platform=\"mixedcontent\" f=\"FedEx.com-problematic.xml\"><securecookie host=\"^\\.blog\\.van\\.fedex\\.com$\" name=\".+\"/><rule from=\"^http://(blog|news)\\.van\\.fedex\\.com/\" to=\"https://$1.van.fedex.com/\"/></ruleset>", "<ruleset name=\"FedEx.com (partial)\" f=\"FedEx.com.xml\"><exclusion pattern=\"^http://m\\.fedex\\.com/+(?!img/)\"/><exclusion pattern=\"^http://wwwtest\\.fedex\\.com/(?!css/|images/)\"/><securecookie host=\"^\\.fedex\\.com$\" name=\"^s_\\w+$\"/><rule from=\"^http://(?:www\\.)?fedex\\.com/(?=css/|images/|myprofile/)\" to=\"https://www.fedex.com/\"/><rule from=\"^http://(images|m|wwwtest)\\.fedex\\.com/\" to=\"https://$1.fedex.com/\"/><rule from=\"^http://metrics\\.fedex\\.com/\" to=\"https://fedex-com.d2.sc.omtrdc.net/\"/></ruleset>", "<ruleset name=\"FBI.gov\" f=\"Federal-Bureau-of-Investigation.xml\"><securecookie host=\"^\\.fbi\\.gov$\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http://fbi\\.gov/\" to=\"https://www.fbi.gov/\"/><rule from=\"^http://foia\\.fbi\\.gov/\" to=\"https://www.fbi.gov/foia/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FCC.gov (partial)\" f=\"Federal-Communications-Commission.xml\"><exclusion pattern=\"^http://hraunfoss\\.fcc\\.gov/(?!edocs_public/attachmatch/(?!$))\"/><securecookie host=\".*\\.fcc\\.gov$\" name=\".+\"/><rule from=\"^http://fcc\\.gov/\" to=\"https://www.fcc.gov/\"/><rule from=\"^http://hraunfoss\\.fcc\\.gov/edocs_public/attachmatch/\" to=\"https://apps.fcc.gov/edocs_public/attachmatch/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FDIC.gov\" f=\"Federal-Deposit-Insurance-Corporation.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://fdic\\.gov/\" to=\"https://www.fdic.gov/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Federal Office for Information Security\" f=\"Federal-Office-for-Information-Security.xml\"><securecookie host=\"^www\\.bsi(?:\\.bund|-fuer-buerger)?\\.de$\" name=\".+\"/><rule from=\"^http://www\\.bsi\\.de/\" to=\"https://www.bsi.de/\"/><rule from=\"^http://(?:www\\.)?bsi-fuer-buerger\\.de/\" to=\"https://www.bsi-fuer-buerger.de/\"/><rule from=\"^http://(?:www\\.)?bsi\\.bund\\.de/\" to=\"https://www.bsi.bund.de/\"/></ruleset>", "<ruleset name=\"Federal Register.gov\" f=\"Federal-Register.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FAA.gov (partial)\" f=\"Federal_Aviation_Administration.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Federal Business Opportunities\" f=\"Federal_Business_Opportunities.xml\"><securecookie host=\"^(?:.*\\.)?fbo\\.gov$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?f(bo|edbizopps)\\.gov/\" to=\"https://www.f$1.gov/\"/></ruleset>", "<ruleset name=\"Federal Emergency Management Agency (FEMA)\" f=\"Federal_Emergency_Management_Agency.xml\"><rule from=\"^http://fema\\.gov/\" to=\"https://www.fema.gov/\"/><rule from=\"^http://([^/:@]+)?\\.fema\\.gov/\" to=\"https://$1.fema.gov/\"/></ruleset>", "<ruleset name=\"BVA.bund.de\" f=\"Federal_Office_of_Administration.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://bva\\.bund\\.de/\" to=\"https://www.bva.bund.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Federal Reserve.org (partial)\" f=\"Federal_Reserve.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Federal Reserve.gov\" f=\"Federal_Reserve.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://federalreserve\\.gov/\" to=\"https://www.federalreserve.gov/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Federal Soup\" f=\"Federal_Soup.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FTC.gov (partial)\" default_off=\"failed ruleset test\" f=\"Federal_Trade_Commission.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Federated Investors (partial)\" default_off=\"failed ruleset test\" f=\"Federated-Investors.xml\"><rule from=\"^http://(www\\.)?federatedinvestors\\.com/($|FII/(?:css/|(?:daf/)?images/|login\\.do|registration/|splash\\.do))\" to=\"https://$1federatedinvestors.com/$2\"/></ruleset>", "<ruleset name=\"Federated Media Publishing (partial)\" default_off=\"failed ruleset test\" f=\"Federated-Media-Publishing.xml\"><securecookie host=\"^.*\\.fmpub\\.net$\" name=\".+\"/><securecookie host=\"^www\\.federatedmedia\\.net$\" name=\".*\"/><rule from=\"^http://(www\\.)?federatedmedia\\.net/\" to=\"https://$1federatedmedia.net/\"/><rule from=\"^http://(keywords|r1|static|tenzing)\\.fmpub\\.net/\" to=\"https://$1.fmpub.net/\"/><rule from=\"^http://static-cf\\.fmpub\\.net/\" to=\"https://fmpub.cachefly.net/\"/></ruleset>", "<ruleset name=\"FAS.org\" default_off=\"failed ruleset test\" f=\"Federation-of-American-Scientists.xml\"><securecookie host=\".*\\.fas\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Federation of Small Businesses (partial)\" f=\"Federation-of-Small-Businesses.xml\"><securecookie host=\"^join\\.fsb\\.org\\.uk$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?fsb\\.org\\.uk/(general/imag|Templat)es/\" to=\"https://www.fsb.org.uk/$1es/\"/><rule from=\"^http://join\\.fsb\\.org\\.uk/\" to=\"https://join.fsb.org.uk/\"/></ruleset>", "<ruleset name=\"Fedge NO.com\" f=\"Fedge_NO.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fedora Project.org (partial)\" f=\"Fedora_Project.org.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FeeFighters\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"FeeFighters.xml\"><securecookie host=\"^(?:.+\\.)?feefighters\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?feefighters\\.com/\" to=\"https://feefighters.com/\"/></ruleset>", "<ruleset name=\"Feed2JS.org\" f=\"Feed2JS.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FeedBlitz\" f=\"FeedBlitz.xml\"><securecookie host=\"^w*\\.feedblitz\\.com$\" name=\".*\"/><rule from=\"^http://((?:archive|blog|feeds|p|www)\\.)?feedblitz\\.com/\" to=\"https://$1feedblitz.com/\"/><rule from=\"^http://(asset|user)s\\.feedblitz\\.com/\" to=\"https://s3.amazonaws.com/$1s.feedblitz.com/\"/><rule from=\"^http://spnsrs\\.feedblitz\\.com/\" to=\"https://p.liadm.com/\"/><rule from=\"^http://t\\.feedblitz\\.com/\" to=\"https://ei.rlcdn.com/\"/></ruleset>", "<ruleset name=\"FeedBurner.com\" f=\"FeedBurner.xml\"><rule from=\"^http://feedburner\\.com/\" to=\"https://www.feedburner.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FeedPress.me\" default_off=\"failed ruleset test\" f=\"FeedPress.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Feedbackify.com\" f=\"Feedbackify.com.xml\"><securecookie host=\"^www\\.feedbackify\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Feedjit (partial)\" f=\"Feedjit.xml\"><rule from=\"^http://(www\\.)?feedjit\\.com/(favicon\\.ico|images/|plansPricing/|pro/|rush/|static/)\" to=\"https://$1feedjit.com/$2\"/></ruleset>", "<ruleset name=\"feedly.com\" f=\"Feedly.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FeedMyInbox\" default_off=\"failed ruleset test\" f=\"Feedmyinbox.xml\"><securecookie host=\"^(?:.*\\.)?feedmyinbox\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?feedmyinbox\\.com/\" to=\"https://www.feedmyinbox.com/\"/></ruleset>", "<ruleset name=\"Feedsportal.com (partial)\" default_off=\"failed ruleset test\" f=\"Feedsportal.com.xml\"><rule from=\"^http://stats\\.feedsportal\\.com/\" to=\"https://stats.feedsportal.com/\"/></ruleset>", "<ruleset name=\"Feefo\" f=\"Feefo.xml\"><securecookie host=\"^www\\.feefo\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?feefo\\.com/\" to=\"https://www.feefo.com/\"/></ruleset>", "<ruleset name=\"Fefe.de (partial)\" f=\"Fefe.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Feide.no\" default_off=\"failed ruleset test\" f=\"Feide.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Feit Electric Company (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Feit-Electric-Company.xml\"><rule from=\"^http://(?:www\\.)?feitbulb\\.com/\" to=\"https://secure1.voloper.net/feitbulbs/\"/></ruleset>", "<ruleset name=\"Femtoduino.com\" f=\"Femtoduino.com.xml\"><securecookie host=\"^www\\.femtoduino\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fence Center.com\" default_off=\"failed ruleset test\" f=\"Fence_Center.com.xml\"><securecookie host=\"^www\\.fencecenter\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?fencecenter\\.com/\" to=\"https://www.fencecenter.com/\"/></ruleset>", "<ruleset name=\"Fender.com (problematic)\" default_off=\"mismatched\" f=\"Fender.com-problematic.xml\"><securecookie host=\"^\\.customcare\\.fender\\.com$\" name=\".+\"/><rule from=\"^http://customcare\\.fender\\.com/\" to=\"https://customcare.fender.com/\"/></ruleset>", "<ruleset name=\"Fender.com (partial)\" f=\"Fender.com.xml\"><securecookie host=\"^(?:www)?\\.fender\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?fender\\.com/\" to=\"https://www.fender.com/\"/></ruleset>", "<ruleset name=\"Fenland.gov.uk (partial)\" f=\"Fenland.gov.uk.xml\"><exclusion pattern=\"^http://(?:www\\.)?fenland\\.gov\\.uk/+(?!CHttpHandler\\.ashx|(?:HEF|article/(?:10909/Request-asbestos-bags|10910/Request-Housing-Advice|10919/Trade-or-Clinical-Waste-collection|10922/Request-an-extra-blue-bin|10923/Assisted-collection|3127/Apply-for-large-or-bulky-items-to-be-collected-Household-waste|3128/Make-a-Land-Charges-search)|cemeteryenquiry|ierform|landchargessearch|marketenquiry|streetnamingandnumbering|treesandhedges)(?:$|[?/])|\\w+/(?:css|images|template)/|media/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Feral.io\" f=\"Feral.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Feral Hosting.com\" f=\"Feral_Hosting.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Feralinteractive.com\" f=\"Feralinteractive.com.xml\"><rule from=\"^http://(?:www\\.)?feralinteractive\\.com/\" to=\"https://www.feralinteractive.com/\"/></ruleset>", "<ruleset name=\"Ferienhaus-emsland-suzan.de\" f=\"Ferienhaus-emsland-suzan.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ferienhaus-seepark-eiken.de\" f=\"Ferienhaus-seepark-eiken.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fermi National Accelerator Laboratory\" default_off=\"failed ruleset test\" f=\"Fermi_National_Accelerator_Laboratory.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FernUni-Hagen.de\" f=\"FernUni-Hagen.de.xml\"><securecookie host=\"^(?:account|moodle|wiki)\\.fernuni-hagen\\.de$\" name=\".+\"/><rule from=\"^http://(?:(cl-)?www\\.)?fernuni-hagen\\.de/\" to=\"https://$1www.fernuni-hagen.de/\"/><rule from=\"^http://(account|blog|moodle|www\\.ub|vu|wiki)\\.fernuni-hagen\\.de/\" to=\"https://$1.fernuni-hagen.de/\"/></ruleset>", "<ruleset name=\"Ferris State University (problematic)\" default_off=\"mismatched, self-signed\" f=\"Ferris_State_University-problematic.xml\"><rule from=\"^http://calendar\\.ferris\\.edu/\" to=\"https://calendar.ferris.edu/\"/></ruleset>", "<ruleset name=\"Ferris State University (partial)\" f=\"Ferris_State_University.xml\"><exclusion pattern=\"^http://myfsu.ferris.edu/cp/home/loginf\"/><securecookie host=\"^(?!myfsu)\\.ferris\\.edu$\" name=\".+\"/><rule from=\"^http://(ebill|fsuban2|m|mysfu|passwordhelp)\\.ferris\\.edu(:9000)?/\" to=\"https://$1.ferris.edu$2/\"/></ruleset>", "<ruleset name=\"Ferroh.com (partial)\" default_off=\"expired\" f=\"Ferroh.com.xml\"><rule from=\"^http://(?:www\\.)?ferroh\\.com/\" to=\"https://ferroh.com/\"/></ruleset>", "<ruleset name=\"Festeirice.com.br\" f=\"Festeirice.com.br.xml\"><securecookie host=\"^\\.festeirice\\.com\\.br$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Festivus Games.com\" f=\"Festivus_Games.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FetLife\" f=\"FetLife.xml\"><securecookie host=\"^(?:.*\\.)?fetlife\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?fetlife\\.com/\" to=\"https://fetlife.com/\"/></ruleset>", "<ruleset name=\"FetShop.co.uk\" f=\"FetShop.co.uk.xml\"><securecookie host=\"^\\.www\\.fetshop\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?fetshop\\.co\\.uk/\" to=\"https://www.fetshop.co.uk/\"/><rule from=\"^http://cdn\\.fetshop\\.co\\.uk/\" to=\"https://4001-fetshop-iamnoonesolution.netdna-ssl.com/\"/><rule from=\"^http://cdn-test\\.fetshop\\.co\\.uk/\" to=\"https://4001-test-iamnoonesolution.netdna-ssl.com/\"/></ruleset>", "<ruleset name=\"Fewo-mehrtens.de\" f=\"Fewo-mehrtens.de.xml\"><securecookie host=\"^(www\\.)?fewo-mehrtens\\.de$\" name=\".*\"/><rule from=\"^http://(www\\.)?fewo-mehrtens\\.de/\" to=\"https://www.fewo-mehrtens.de/\"/></ruleset>", "<ruleset name=\"FfProfile.com\" f=\"FfProfile.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FftFEF.org\" f=\"FftFEF.org.xml\"><securecookie host=\"^\\.fftfef\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"fhserve.com\" default_off=\"missing certificate chain\" f=\"Fhserve.com.xml\"><rule from=\"^http://fhserve\\.com/\" to=\"https://www.fhserve.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fianna Fail\" f=\"FiannaFail.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fibank\" platform=\"mixedcontent\" f=\"Fibank.xml\"><rule from=\"^http://(?:www\\.)?fibank\\.bg/\" to=\"https://www.fibank.bg/\"/><rule from=\"^http://(?:[^/:@\\.]+\\.)?e-fibank\\.bg/\" to=\"https://e-fibank.bg/\"/></ruleset>", "<ruleset name=\"Fiber7.ch\" f=\"Fiber7.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ficora.fi\" f=\"Ficora.fi.xml\"><securecookie host=\"^(?:eservices|www)\\.ficora\\.fi$\" name=\".+\"/><rule from=\"^http://ficora\\.fi/\" to=\"https://www.ficora.fi/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FictionPress.com (partial)\" f=\"FictionPress.com.xml\"><rule from=\"^http://fictionpress\\.com/\" to=\"https://www.fictionpress.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fictiv.com\" f=\"Fictiv.com.xml\"><rule from=\"^http://fictiv\\.com/\" to=\"https://www.fictiv.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fidelity.com (partial)\" f=\"Fidelity.com.xml\"><securecookie host=\"^\\.fidelity\\.com$\" name=\"^MC$\"/><securecookie host=\"^(?:charitablegift|login)\\.fidelity\\.com$\" name=\".+\"/><rule from=\"^http://((?:charitablegift|eresearch|fixedincome|login|membership|moneymovement|news|oltx|research2|researchtools|screener|scs|www)\\.)?fidelity\\.com/\" to=\"https://$1fidelity.com/\"/></ruleset>", "<ruleset name=\"FierceFinance (partial)\" default_off=\"failed ruleset test\" f=\"FierceFinance.xml\"><rule from=\"^http://(www\\.)?fiercefinance\\.com/(fil|sit)es/\" to=\"https://$1fiercefinance.com/$2es/\"/></ruleset>", "<ruleset name=\"FierceMarkets (partial)\" f=\"FierceMarkets.xml\"><rule from=\"^http://secure\\.fiercemarkets\\.com/\" to=\"https://secure.fiercemarkets.com/\"/><rule from=\"^http://assets\\.fiercemarkets\\.com/\" to=\"https://www.fiercefinance.com/\"/></ruleset>", "<ruleset name=\"FiercePharma (partial)\" default_off=\"self-signed\" f=\"FiercePharma.xml\"><rule from=\"^http://(?:www\\.)?fiercepharma\\.com/(fil|sit)es/\" to=\"https://www.fiercepharma.com/$1es/\"/></ruleset>", "<ruleset name=\"Fife Direct.org.uk\" default_off=\"failed ruleset test\" f=\"Fife_Direct.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fifi.Org (partial)\" default_off=\"self-signed\" f=\"Fifi.Org.xml\"><securecookie host=\"^\\.fifi\\.org$\" name=\".+\"/><rule from=\"^http://secure\\.fifi\\.org/\" to=\"https://secure.fifi.org/\"/></ruleset>", "<ruleset name=\"Fifth Third Bank\" f=\"FifthThirdBank.xml\"><rule from=\"^http://53\\.com/\" to=\"https://www.53.com/\"/><rule from=\"^http://(reo|sdg2|www)\\.53\\.com/\" to=\"https://$1.53.com/\"/></ruleset>", "<ruleset name=\"fifthhorseman.net (partial)\" f=\"Fifthhorseman.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fig.co\" f=\"Fig.co.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fight fot the Future (mismatches)\" default_off=\"mismatch, self-signed\" f=\"Fight-for-the-Future-mismatches.xml\"><securecookie host=\"^(?:.*\\.)?americancensorship\\.org$\" name=\".*\"/><securecookie host=\"^a\\.fightforthefuture\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?(americancensorship|congresstmi|freebieber)\\.org/\" to=\"https://$1.org/\"/><rule from=\"^http://(?:www\\.)?privacyisawesome\\.com/\" to=\"https://www.privacyisawesome.com/\"/><rule from=\"^http://a\\.fightforthefuture\\.org/\" to=\"https://a.fightforthefuture.org/\"/><rule from=\"^http://(?:www\\.)?sopastrike\\.com/\" to=\"https://sopastrike.com/\"/></ruleset>", "<ruleset name=\"Fight for the Future.org (partial)\" f=\"Fight-for-the-Future.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fight Aging.org\" f=\"Fight_Aging.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"figshare\" f=\"Figshare.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fiksu.com\" f=\"Fiksu.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FileBox\" default_off=\"failed ruleset test\" f=\"FileBox.xml\"><securecookie host=\"^(?:.*\\.)filebox\\.tv$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FileFactory.com (partial)\" default_off=\"failed ruleset test\" f=\"FileFactory.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://cdn\\.filefactory\\.com/\" to=\"https://www.filefactory.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FileFormat.info (MCB)\" platform=\"mixedcontent\" f=\"FileFormat.info.xml\"><rule from=\"^http://(www\\.)?fileformat\\.info/\" to=\"https://www.fileformat.info/\"/></ruleset>", "<ruleset name=\"FileHoot.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"FileHoot.com.xml\"><securecookie host=\"^\\.filehoot\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FileNuke.com\" f=\"FileNuke.com.xml\"><securecookie host=\"^\\.filenuke\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FilePost.com\" default_off=\"failed ruleset test\" f=\"FilePost.com.xml\"><securecookie host=\"^\\.filepost\\.com$\" name=\".+\"/><rule from=\"^http://(fs\\d+\\.|www\\.)?filepost\\.com/\" to=\"https://$1filepost.com/\"/></ruleset>", "<ruleset name=\"FileRio.in (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"FileRio.in.xml\"><securecookie host=\"^\\.filerio\\.in$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?filerio\\.in/\" to=\"https://filerio.in/\"/></ruleset>", "<ruleset name=\"FileTrip.net (partial)\" default_off=\"expired\" f=\"FileTrip.net.xml\"><securecookie host=\"^filetrip\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?filetrip\\.net/\" to=\"https://filetrip.net/\"/></ruleset>", "<ruleset name=\"FileZilla-project.org\" f=\"FileZilla.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"filebyid.com\" default_off=\"missing certificate chain\" f=\"Filebyid.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"filecloud.io\" default_off=\"failed ruleset test\" f=\"Filecloud.io.xml\"><securecookie host=\"^\\.filecloud\\.io$\" name=\".+\"/><rule from=\"^http://(?:(?:cdn|secure|www)\\.)?filecloud\\.io/\" to=\"https://secure.filecloud.io/\"/></ruleset>", "<ruleset name=\"Filemobile.com (mismatches)\" default_off=\"mismatched\" f=\"Filemobile-mismatches.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Filemobile.com (partial)\" f=\"Filemobile.xml\"><securecookie host=\"^(?:.+\\.)?filemobile\\.com$\" name=\".\"/><rule from=\"^http://(assets|storage)\\.filemobile\\.com/\" to=\"https://s3.amazonaws.com/$1.filemobile.com/\"/><rule from=\"^http://cimg\\.filemobile\\.com/\" to=\"https://d2ksawk1637r8x.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Filestack\" f=\"Filepicker.io.xml\"><securecookie host=\"^.*\\.?filestack\\.com$\" name=\"^.+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"files.poulsander.com\" default_off=\"self-signed\" f=\"Files.poulsander.com.xml\"><rule from=\"^http://files\\.poulsander\\.com/\" to=\"https://files.poulsander.com/\"/></ruleset>", "<ruleset name=\"FilesCrunch\" default_off=\"expired, self-signed\" f=\"FilesCrunch.xml\"><securecookie host=\"^filescrunch\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?filescrunch\\.com/\" to=\"https://filescrunch.com/\"/></ruleset>", "<ruleset name=\"Film Threat\" default_off=\"failed ruleset test\" f=\"Film-Threat.xml\"><securecookie host=\"^(?:.*\\.)?filmthreat\\.com$\" name=\".*\"/><rule from=\"^http://(media2?\\.|www\\.)?filmthreat\\.com/\" to=\"https://$1filmthreat.com/\"/></ruleset>", "<ruleset name=\"FilmTrack\" f=\"FilmTrack.xml\"><securecookie host=\"^.+\\.filmtrackonline\\.com$\" name=\".+\"/><rule from=\"^http://([\\w-]+)\\.filmtrackonline\\.com/\" to=\"https://$1.filmtrackonline.com/\"/><rule from=\"^http://([\\w-]+)\\.extranet2\\.filmtrackonline\\.com/\" to=\"https://$1.filmtrackonline.com/extranet/\"/></ruleset>", "<ruleset name=\"Film Linc.com (false MCB)\" platform=\"mixedcontent\" f=\"Film_Linc.com-falsemixed.xml\"><securecookie host=\"^(?:www)?\\.filmlinc\\.com$\" name=\".+\"/><rule from=\"^http://www\\.filmlinc\\.com/\" to=\"https://www.filmlinc.com/\"/></ruleset>", "<ruleset name=\"Film Linc.com (partial)\" default_off=\"failed ruleset test\" f=\"Film_Linc.com.xml\"><exclusion pattern=\"^http://www\\.filmlinc\\.com/(?!\\?css=|assets/|favicon\\.ico|page/-/)\"/><securecookie host=\"^\\.secure\\.filmlinc\\.com$\" name=\"^X-CheckNode$\"/><securecookie host=\"^(?:\\.secure\\.)?filmlinc\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"filmdates.co.uk (partial)\" f=\"Filmdates.co.uk.xml\"><securecookie host=\"^\\.filmdates\\.co\\.uk$\" name=\"^__utm\\w$\"/><rule from=\"^http://(?:www\\.)?filmdates\\.co\\.uk/(?=(?:content|reminders|widget(?!/details))(?:$|[?/])|css/|dummy\\.html|favicon\\.ico|headshots/|images/|js/|posters/|tools/)\" to=\"https://www.filmdates.co.uk/\"/></ruleset>", "<ruleset name=\"Filmlair\" f=\"Filmlair.xml\"><securecookie host=\"^(?:www\\.)?filmlair\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"filmlash.com (partial)\" f=\"Filmlash.com.xml\"><securecookie host=\"^(?:w*\\.)?filmlush\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Filmon.com\" f=\"Filmon.com.xml\"><securecookie host=\"^(?:www\\.)?filmon\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Filter (partial)\" f=\"Filter.xml\"><rule from=\"^http://(www\\.)?filterdigital\\.com/(CaptchaType\\.ashx|[cC]onnections/[bB]log/(?:editors/tiny_mce/|image\\.axd|pics/|themes/)|[rR]es/(?:img/|screen\\.css))\" to=\"https://$1filterdigital.com/$2\"/></ruleset>", "<ruleset name=\"FilterBypass.me\" f=\"FilterBypass.me.xml\"><securecookie host=\"^www\\.filterbypass\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Filtrala.org\" f=\"Filtrala.org.xml\"><securecookie host=\"^\\.filtrala.org$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fimfiction.net\" f=\"Fimfiction.net.xml\"><securecookie host=\"^\\.fimfiction\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"fimserve.com\" default_off=\"failed ruleset test\" f=\"Fimserve.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Final-Score\" f=\"Final-Score.xml\"><securecookie host=\"^.*\\.final-score\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?final-score\\.com/\" to=\"https://www.final-score.com/\"/><rule from=\"^http://ebm\\.e\\.final-score\\.com/\" to=\"https://ebm.cheetahmail.com/\"/><rule from=\"^http://f\\.e\\.final-score\\.com/\" to=\"https://f.chtah.com/\"/><rule from=\"^http://(images|m)\\.final-score\\.com/\" to=\"https://$1.final-score.com/\"/></ruleset>", "<ruleset name=\"Final4Ever.com (false MCB)\" platform=\"mixedcontent\" f=\"Final4Ever.xml\"><securecookie host=\"^\\.?final4ever\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"finalsite (partial)\" default_off=\"failed ruleset test\" f=\"Finalsite.xml\"><securecookie host=\"^(?:www)?\\.finalsite\\.com$\" name=\".+\"/><rule from=\"^http://((?:demo|secure(?:css|data|images|js|private)|www)\\.)?finalsite\\.com/\" to=\"https://$1finalsite.com/\"/></ruleset>", "<ruleset name=\"Finam (partial)\" default_off=\"failed ruleset test\" f=\"Finam.xml\"><rule from=\"^http://fb\\.finam\\.ru/\" to=\"https://fb.finam.ru/\"/><securecookie host=\"^fb\\.finam\\.ru$\" name=\".*\"/></ruleset>", "<ruleset name=\"Financial Content (partial)\" f=\"Financial-Content.xml\"><rule from=\"^http://(chart|images|js|markets)\\.financialcontent\\.com/\" to=\"https://$1.financialcontent.com/\"/></ruleset>", "<ruleset name=\"Financial Industry Regulatory Authority\" f=\"Financial_Industry_Regulatory_Authority.xml\"><rule from=\"^http://finra\\.org/\" to=\"https://www.finra.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Financial Post.com (partial)\" f=\"Financial_Post.com.xml\"><exclusion pattern=\"^http://idms\\.financialpost\\.com/(?!charts/|images/|js/|watchlist/\\w+\\.ajax\\?)\"/><rule from=\"^http://idms\\.financialpost\\.com/\" to=\"https://www.financialpost.idmanagedsolutions.com/\"/></ruleset>", "<ruleset name=\"FT.com (partial)\" default_off=\"failed ruleset test\" f=\"Financial_Times.xml\"><exclusion pattern=\"^http://markets\\.ft\\.com/(?!favicon\\.ico|RESEARCH/uploadhandler/)\"/><securecookie host=\"^\\.\" name=\"^(?:_ga|AYSC$|AYSC_C$|FTUserTrack$)\"/><rule from=\"^http://(im|s4)\\.media\\.ft\\.com/\" to=\"https://$1.ft-static.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"financialtrans.com\" f=\"Financialtrans.com.xml\"><rule from=\"^http://www(2|3)?\\.financialtrans\\.com/\" to=\"https://www$1.financialtrans.com/\"/></ruleset>", "<ruleset name=\"Financnahitparada.sk\" f=\"Financnahitparada.sk.xml\"><rule from=\"^http://(?:www\\.)?financnahitparada\\.sk/\" to=\"https://www.financnahitparada.sk/\"/><rule from=\"^http://(?:www\\.)?poistenie\\.financnahitparada\\.sk/\" to=\"https://www.poistenie.financnahitparada.sk/\"/></ruleset>", "<ruleset name=\"FinansWatch (mixed content)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"FinansWatch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Finansportalen.no\" default_off=\"failed ruleset test\" f=\"Finansportalen.no.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Finanssialan Keskusliitto\" default_off=\"failed ruleset test\" f=\"Finanssialan-Keskusliitto.xml\"><securecookie host=\"^extranet\\.fkl\\.fi$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Finanstilsynet.dk\" f=\"Finanstilsynet.dk.xml\"><securecookie host=\"^www\\.finanstilsynet\\.dk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Finanzberatung Max Herbst (partial)\" f=\"Finanzberatung_Max_Herbst.xml\"><rule from=\"^http://(?:cdn3|rechner)\\.fmh\\.de/\" to=\"https://rechner.fmh.de/\"/></ruleset>", "<ruleset name=\"Finavia.fi\" f=\"Finavia.fi.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Find a Babysitter (partial)\" f=\"Find-a-Babysitter.xml\"><rule from=\"^http://findababysitter\\.com\\.au/\" to=\"https://www.findababysitter.com.au/\"/><rule from=\"^http://www\\.findababysitter\\.com\\.au/(Account/|[cC]ontent/)\" to=\"https://www.findababysitter.com.au/$1\"/></ruleset>", "<ruleset name=\"Find n Save.com (partial)\" default_off=\"failed ruleset test\" f=\"Find-n-Save.xml\"><securecookie host=\"^(?:sfgate|\\.?www)\\.findnsave\\.com$\" name=\".+\"/><rule from=\"^http://cdn\\.findnsave\\.com/\" to=\"https://d3ne1tggqg4fzy.cloudfront.net/\"/><rule from=\"^http://content\\.findnsave\\.com/\" to=\"https://d10yv8m6mggaen.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Find.ly (partial)\" f=\"Find.ly.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FindLegalForms.com\" f=\"FindLegalForms.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FindRetros.com\" f=\"FindRetros.com.xml\"><securecookie host=\"^(?:w*\\.)?findretros\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FindTheBest.com\" default_off=\"failed ruleset test\" f=\"FindTheBest.xml\"><rule from=\"^http://([\\w-]+\\.)?findthebest\\.com/\" to=\"https://$1findthebest.com/\"/></ruleset>", "<ruleset name=\"Find My Order.com\" f=\"Find_My_Order.com.xml\"><securecookie host=\"^(?:www\\.)?findmyorder\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Find a Grave (partial)\" f=\"Find_a_Grave.xml\"><exclusion pattern=\"^http://www\\.findagrave\\.com/cgi-bin/\"/><rule from=\"^http://(?:secure\\.|www\\.)?findagrave\\.com/\" to=\"https://secure.findagrave.com/\"/></ruleset>", "<ruleset name=\"find Gravy.com\" default_off=\"failed ruleset test\" f=\"Findgravy.com.xml\"><securecookie host=\"^findgravy\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fine Art America.com\" platform=\"mixedcontent\" f=\"Fine_Art_America.xml\"><securecookie host=\"^\\.\" name=\"^__utm\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://images\\.fineartamerica\\.com/\" to=\"https://s3.amazonaws.com/images.fineartamerica.com/\"/><rule from=\"^http://(?:imageslocal|render)\\.fineartamerica\\.com/\" to=\"https://fineartamerica.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fineproxy.org (problematic)\" default_off=\"self-signed\" platform=\"mixedcontent\" f=\"Fineproxy.org-problematic.xml\"><securecookie host=\"^billingproxy\\.fineproxy\\.org$\" name=\".+\"/><rule from=\"^http://billingproxy\\.fineproxy\\.org/\" to=\"https://billingproxy.fineproxy.org/\"/></ruleset>", "<ruleset name=\"Fineproxy.org (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Fineproxy.org.xml\"><securecookie host=\"^\\.(?:forum\\.)?fineproxy\\.org$\" name=\".+\"/><rule from=\"^http://www\\.fineproxy\\.org/\" to=\"https://fineproxy.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Finka.pl (partial)\" f=\"Finka.pl.xml\"><rule from=\"^http://(?:www\\.)?finka\\.pl/(?=demo/|FrontPage/|images/)\" to=\"https://finka.pl/\"/></ruleset>", "<ruleset name=\"finmozg.ru\" f=\"Finmozg.ru.xml\"><rule from=\"^http://(?:www\\.)?finmozg\\.ru/\" to=\"https://finmozg.ru/\"/></ruleset>", "<ruleset name=\"Finn\" platform=\"mixedcontent\" f=\"Finn.xml\"><exclusion pattern=\"^http://labs\\.finn\\.no/\"/><exclusion pattern=\"^http://kart\\.finn\\.no/\"/><exclusion pattern=\"^http://oppdrag\\.finn\\.no/\"/><exclusion pattern=\"^http://katalog\\.finn\\.no/\"/><exclusion pattern=\"^http://www\\.katalog\\.finn\\.no/\"/><rule from=\"^http://finn\\.no/\" to=\"https://finn.no/\"/><rule from=\"^http://www\\.finn\\.no/\" to=\"https://www.finn.no/\"/></ruleset>", "<ruleset name=\"FinnChristiansen.de\" default_off=\"untrusted root\" f=\"FinnChristiansen.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Finna.fi\" f=\"Finna.fi.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FireEye (partial)\" f=\"FireEye.xml\"><securecookie host=\"^(?:www)?\\.fireeye\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?fireeye\\.com/\" to=\"https://www.fireeye.com/\"/><rule from=\"^http://blog\\.fireeye\\.com/[^?]*\" to=\"https://www.fireeye.com/blog/\"/><rule from=\"^http://(csportal|tfs|www2)\\.fireeye\\.com/\" to=\"https://$1.fireeye.com/\"/></ruleset>", "<ruleset name=\"FireHost (partial)\" default_off=\"failed ruleset test\" f=\"FireHost.xml\"><exclusion pattern=\"^http://www\\.firehost\\.com/(?:company|compare|customers|details/[\\w\\-]+\\w|secure-hosting(?:/[^/]?/)?|solutions)?$\"/><securecookie host=\"^(?:.*\\.)?firehost\\.com$\" name=\".*\"/><rule from=\"^http://(www\\.)?firehost\\.com/(/_CaptchaImage\\.axd|assets/|cart|company/contact|partners|protected/|secure-hosting/[\\w\\-]+/configure)\" to=\"https://$1firehost.com/$1\"/><rule from=\"^http://(developer|my)\\.firehost\\.com/\" to=\"https://$1.firehost.com/\"/></ruleset>", "<ruleset name=\"Firebase.com (partial)\" f=\"Firebase.xml\"><securecookie host=\"^auth\\.firebase\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fireclick.com (partial)\" default_off=\"failed ruleset test\" f=\"Fireclick.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Firedoglake (partial)\" default_off=\"failed ruleset test\" f=\"Firedoglake.xml\"><securecookie host=\"^members\\.firedoglake\\.com$\" name=\".+\"/><rule from=\"^http://members\\.firedoglake\\.com/\" to=\"https://members.firedoglake.com/\"/></ruleset>", "<ruleset name=\"Firedrive.com (partial)\" f=\"Firedrive.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?firedrive\\.com/+(?!favicon\\.ico)\"/><securecookie host=\"^(?:auth|dl|stats)\\.firedrive\\.com$\" name=\".+\"/><rule from=\"^http://((?:auth|dl|media-b\\d+|static|stats|www)\\.)?firedrive\\.com/\" to=\"https://$1firedrive.com/\"/></ruleset>", "<ruleset name=\"Firefox.com\" f=\"Firefox.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Firefox.net.cn\" default_off=\"failed ruleset test\" f=\"Firefox.net.cn.xml\"><securecookie host=\"^(?:www\\.)?firefox\\.net\\.cn$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Firefox OS Devices.org\" f=\"Firefox_OS_Devices.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Firelady.com\" f=\"Firelady.com.xml\"><securecookie host=\"^\\.firelady\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Firemail.de\" f=\"Firemail.de.xml\"><rule from=\"^http://(?:www\\.)?firemail\\.de/\" to=\"https://www.firemail.de/\"/></ruleset>", "<ruleset name=\"Firm24.com\" f=\"Firm24.com.xml\"><securecookie host=\"^(?:www\\.)?firm24\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Firmas.lv\" f=\"Firmas.lv.xml\"><rule from=\"^http://(?:www\\.)?firmas\\.lv/\" to=\"https://www.firmas.lv/\"/></ruleset>", "<ruleset name=\"Firmware.netgate.com\" f=\"Firmware.netgate.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"First Central SB.com\" f=\"First-Central-State-Bank.xml\"><securecookie host=\"^(?:^|\\.)firstcentralsb\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FirstDEDIC.ru (partial)\" f=\"FirstDEDIC.ru.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FirstGiving\" platform=\"mixedcontent\" f=\"FirstGiving.xml\"><rule from=\"^(?:http://(?:www\\.)?|https://)firstgiving\\.com/\" to=\"https://www.firstgiving.com/\"/></ruleset>", "<ruleset name=\"FirstTag.de\" f=\"FirstTag.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FirstTechFed.com\" f=\"FirstTechFed.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FirstVDS.ru (partial)\" default_off=\"failed ruleset test\" f=\"FirstVDS.ru.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^(?:_gat?$|billmgr)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"First Amendment Center.org\" default_off=\"mismatched\" f=\"First_Amendment_Center.org.xml\"><securecookie host=\"^\\.firstamendmentcenter\\.org$\" name=\"^__utm\\w$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"First Amendment Coalition\" default_off=\"expired\" f=\"First_Amendment_Coalition.xml\"><rule from=\"^http://(?:www\\.)?firstamendmentcoalition\\.org/\" to=\"https://firstamendmentcoalition.org/\"/></ruleset>", "<ruleset name=\"First Class Magazine.se\" f=\"First_Class_Magazine.se.xml\"><securecookie host=\"^\\.\" name=\"^__cfduid$\"/><rule from=\"^https?://www\\.firstclassmagazine\\.se/\" to=\"https://firstclassmagazine.se/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"First Integrity.com\" f=\"First_Integrity.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Firstfloor Elecronix\" default_off=\"expired, self-signed\" f=\"Firstfloor-Electronix.xml\"><rule from=\"^http://(?:www\\.)?firstfloor\\.org/\" to=\"https://firstfloor.org/\"/></ruleset>", "<ruleset name=\"Firsts.com\" default_off=\"failed ruleset test\" f=\"Firsts.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FishBase.us\" platform=\"mixedcontent\" f=\"FishBase.us.xml\"><securecookie host=\"^www\\.fishbase\\.us$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FishNet Security.com\" default_off=\"failed ruleset test\" f=\"FishNet_Security.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fishshell.com\" f=\"Fishshell.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fishwrapper.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Fishwrapper.com-falsemixed.xml\"><securecookie host=\"^\\.www\\.fishwrapper.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fishwrapper.com (partial)\" f=\"Fishwrapper.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?fishwrapper\\.com/+(?!favicon\\.ico)\"/><rule from=\"^http://((?:cdn-assets|cdn-media|www)\\.)?fishwrapper\\.com/\" to=\"https://$1fishwrapper.com/\"/></ruleset>", "<ruleset name=\"FitBit\" default_off=\"failed ruleset test\" f=\"FitBit.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FitStudio.com (partial)\" default_off=\"failed ruleset test\" f=\"FitStudio.com.xml\"><securecookie host=\".*\\.fitstudio\\.com$\" name=\".+\"/><rule from=\"^http://((?:blog|gear|polls|sweeps|www)\\.)?fitstudio\\.com/\" to=\"https://$1fitstudio.com/\"/><rule from=\"^http://fitnessconnect\\.fitstudio\\.com/(?=favicon\\.ico|files/|misc/|sites/)\" to=\"https://fitstudio.ideafit.com/\"/></ruleset>", "<ruleset name=\"Fitness Market (partial)\" f=\"Fitness_Market.xml\"><rule from=\"^http://(www\\.)?fitnessmarket\\.com\\.au/(favicon\\.ico|shop/(?:(?:antibot_)?image\\.php|cart\\.php\\?mode=checkout|images/|skin/|var/))\" to=\"https://$1fitnessmarket.com.au/$2\"/></ruleset>", "<ruleset name=\"Fitocracy (partial)\" f=\"Fitocracy.xml\"><securecookie host=\"^www\\.fitocracy\\.com$\" name=\".+\"/><exclusion pattern=\"^http://www.fitocracy.com/knowledge/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"fiuza.me\" default_off=\"failed ruleset test\" f=\"Fiuza.me.xml\"><rule from=\"^http://fiuza\\.me/\" to=\"https://fiuza.me/\"/></ruleset>", "<ruleset name=\"FiveTV (partial)\" f=\"FiveTV.xml\"><rule from=\"^http://oas\\.five\\.tv/\" to=\"https://oasc07.247realmedia.com/\"/></ruleset>", "<ruleset name=\"FiveThirtyEight.com\" f=\"FiveThirtyEight.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FixMyStreet.com\" f=\"FixMyStreet.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FixUnix.com (partial)\" default_off=\"failed ruleset test\" f=\"FixUnix.xml\"><rule from=\"^http://c\\.fixunix\\.com/\" to=\"https://d2yvm6gxdmpjqc.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Fix Ubuntu.com\" f=\"Fix_Ubuntu.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fixer.io (partial)\" f=\"Fixer.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fixing Tao.com\" f=\"FixingTao.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Flagrate.org\" f=\"Flagrate.org.xml\"><securecookie host=\"^\\.flagrate\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Flameeyes.eu\" default_off=\"failed ruleset test\" f=\"Flameeyes.xml\"><securecookie host=\"^blog\\.flameeyes\\.eu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FlamingSpork.com (partial)\" f=\"FlamingSpork.com.xml\"><exclusion pattern=\"^http://bugzilla\\.flamingspork\\.com/+(?!$|\\?)\"/><rule from=\"^http://bugzilla\\.flamingspork\\.com/.*\" to=\"https://bugs.launchpad.net/memberdb\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"flash-mp3-player.net (partial)\" default_off=\"mismatched\" f=\"Flash-mp3-player.net.xml\"><rule from=\"^http://flash-mp3-player\\.net/\" to=\"https://flash-mp3-player.net/\"/></ruleset>", "<ruleset name=\"FlashGot.net\" f=\"FlashGot.net.xml\"><securecookie host=\"^flashgot\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"flashrom.org (partial)\" f=\"Flashrom.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Flashtalking (partial)\" f=\"Flashtalking.xml\"><securecookie host=\"^\\.flashtalking\\.com$\" name=\".+\"/><rule from=\"^http://((?:cdn|servedby)\\.)?flashtalking\\.com/\" to=\"https://$1flashtalking.com/\"/><rule from=\"^http://(www\\.)?flashtalking\\.net/\" to=\"https://$1flashtalking.net/\"/></ruleset>", "<ruleset name=\"Flaska.net (partial)\" platform=\"cacert\" f=\"Flaska.net.xml\"><securecookie host=\"^projects\\.flaska\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?flaska\\.net/\" to=\"https://www.flaska.net/\"/><rule from=\"^http://(projects|trojita)\\.flaska\\.net/\" to=\"https://$1.flaska.net/\"/></ruleset>", "<ruleset name=\"Flatline Security.com\" f=\"Flatline_Security.com.xml\"><securecookie host=\"^\\.flatlinesecurity\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Flattr.net (partial)\" default_off=\"failed ruleset test\" f=\"Flattr.net.xml\"><rule from=\"^http://(?:www\\.)?flattr\\.net/\" to=\"https://flattr.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Flattr.com (partial)\" f=\"Flattr.xml\"><securecookie host=\"^(?:.*\\.)?flattr\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Flavors.me\" f=\"Flavors.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fleet Networks (partial)\" default_off=\"failed ruleset test\" f=\"Fleet_Networks.xml\"><rule from=\"^http://(?:www\\.)?hosting\\.fleetnetworks\\.net/csa/((?:clientarea|register)\\.php|images/|includes/|templates/)\" to=\"https://hosting.fleetnetworks.net/csa/$1\"/></ruleset>", "<ruleset name=\"Flex Investments\" default_off=\"refused\" f=\"Flex_Investments.xml\"><securecookie host=\"^(?:w*\\.)?flexinvestments\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Flexport.com\" f=\"Flexport.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Flexyourrights.org\" f=\"Flexyourrights.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Flibusta.is\" f=\"Flibusta.is.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Flic.kr\" f=\"Flic.kr.xml\"><securecookie host=\"^\\.flic\\.kr$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Flickr.net\" f=\"Flickr.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Flickr.com\" f=\"Flickr.xml\"><exclusion pattern=\"^http://api\\.flickr\\.com/$\"/><rule from=\"^http://blog\\.flickr\\.com/\" to=\"https://blog.flickr.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FlightAware.com (partial)\" f=\"Flightaware.xml\"><exclusion pattern=\"^(?!http://((?:[a-z][a-z]|discussions|origin|photos|www)\\.)?flightaware\\.com/)\"/><securecookie host=\"^\\.\" name=\"^(?:__qca$|phpbb3_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Flightglobal (mismatches)\" default_off=\"mismatched\" f=\"Flightglobal-mismatches.xml\"><rule from=\"^http://(?:www\\.)flightglobalimages\\.com/\" to=\"https://www.flightglobalimages.com/\"/></ruleset>", "<ruleset name=\"Flightglobal (partial)\" platform=\"mixedcontent\" f=\"Flightglobal.xml\"><securecookie host=\"^.*\\.flightglobal\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?flightglobal\\.com/\" to=\"https://www.flightglobal.com/\"/><rule from=\"^http://pro\\.flightglobal\\.com/\" to=\"https://pro.flightglobal.com/\"/><rule from=\"^http://(www\\.)?flightglobalshop\\.com/(new_image|skin)s/\" to=\"https://$1flightglobalshop.com/$1s/\"/></ruleset>", "<ruleset name=\"Flinq.de\" f=\"Flinq.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Flinto.com (partial)\" f=\"Flinto.com.xml\"><exclusion pattern=\"^http://blog\\.flinto\\.com/(?!assets/|favicon\\.ico)\"/><securecookie host=\"^www\\.flinto\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?flinto\\.com/\" to=\"https://www.flinto.com/\"/><rule from=\"^http://blog\\.flinto\\.com/\" to=\"https://d2xxitgvta5ie.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Flipagram.com\" f=\"Flipagram.com.xml\"><securecookie host=\"^(?:www\\.)?flipagram\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Flipboard.com (partial)\" f=\"Flipboard.xml\"><securecookie host=\"^(?:accounts|editor)\\.flipboard\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Flipkart.com (partial)\" f=\"Flipkart.com.xml\"><exclusion pattern=\"^http://www\\.flipkart\\.com/(?!(?:account|s/contact|viewcart)(?:$|[?/])|favicon\\.ico)\"/><securecookie host=\"^seller\\.flipkart\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Flippa.com\" f=\"Flippa.xml\"><securecookie host=\"^flippa\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Flite (partial)\" f=\"Flite.xml\"><securecookie host=\"^\\.flite\\.com$\" name=\"^__uuc2$\"/><securecookie host=\"^console\\.flite\\.com$\" name=\".+\"/><rule from=\"^http://(console|[prst])\\.flite\\.com/\" to=\"https://$1.flite.com/\"/><rule from=\"^http://press\\.flite\\.com/(display/|favicon\\.ico|layout/|storage/|universal/)\" to=\"https://pressflite.squarespace.com/$1\"/></ruleset>", "<ruleset name=\"Flitto.com\" f=\"Flitto.com.xml\"><securecookie host=\"^www\\.flitto\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?flitto\\.com/\" to=\"https://www.flitto.com/\"/></ruleset>", "<ruleset name=\"flix123.com\" f=\"Flix123.com.xml\"><securecookie host=\"^flix123\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FlixBus\" f=\"FlixBus.xml\"><securecookie host=\"^.*\\.flixbus\\..*$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FlixDen\" default_off=\"failed ruleset test\" f=\"FlixDen.xml\"><securecookie host=\"^(?:www\\.)?flixden\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Flixster (partial)\" default_off=\"failed ruleset test\" f=\"Flixster.xml\"><securecookie host=\"^\\.\" name=\"^(?:__qca$|s_v)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:instart[02]|content8)\\.flixster\\.com/\" to=\"https://content6.flixster.com/\"/><rule from=\"^http://(?:content9|instart[13])\\.flixster\\.com/\" to=\"https://content7.flixster.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Floating Hospital.org\" f=\"Floating_Hospital.org.xml\"><securecookie host=\"^www\\.floatinghospital\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?floatinghospital\\.org/\" to=\"https://www.floatinghospital.org/\"/></ruleset>", "<ruleset name=\"Flocabulary.com\" f=\"Flocabulary.com.xml\"><securecookie host=\"^www\\.flocabulary\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Flockport.com\" f=\"Flockport.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Floek.net\" f=\"Floek.net.xml\"><securecookie host=\"^www\\.floek\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?(?:binefreund\\.de|floek\\.net)/\" to=\"https://www.floek.net/\"/><rule from=\"^http://schwimm\\.binefreund\\.de/\" to=\"https://schwimm.binefreund.de/\"/></ruleset>", "<ruleset name=\"FlokiNET.is (partial)\" f=\"FlokiNET.is.xml\"><exclusion pattern=\"^http://(www\\.)?billing\\.flokinet\\.com/?$\"/><exclusion pattern=\"^http://(www\\.)?billing\\.flokinet\\.com/(announcements|downloads|index|knowledgebase)\\.php\"/><securecookie host=\"^(?!billing\\.)\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Floor64 (mismatches)\" default_off=\"mismatched\" f=\"Floor64-mismatches.xml\"><rule from=\"^http://listserv\\.techdirt\\.com/\" to=\"https://listserv.techdirt.com/\"/></ruleset>", "<ruleset name=\"Floor64 (partial)\" f=\"Floor64.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Florida Center for Library Automation (partial)\" f=\"Florida-Center-for-Library-Automation.xml\"><rule from=\"^http://(fclaweb|metalib)\\.fcla\\.edu/\" to=\"https://$1.fcla.edu/\"/></ruleset>", "<ruleset name=\"Florida Institute of Technology (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Florida-Institute-of-Technology.xml\"><rule from=\"^http://(?:www\\.)?fit\\.edu/\" to=\"https://www.fit.edu/\"/><rule from=\"^http://(411|(asset|ca|c|event|list|pantherpas|service|track)s|alumni|media|online|spam|webmail)\\.fit\\.edu/\" to=\"https://$1.fit.edu/\"/><rule from=\"^http://(?:go|my|portal\\.my)\\.fit\\.edu/\" to=\"https://portal.my.fit.edu/\"/></ruleset>", "<ruleset name=\"Florida Today (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Florida_Today.xml\"><securecookie host=\"^(?:.*\\.)fl(?:atd|oridatoda)y\\.com$\" name=\".+\"/><rule from=\"^http://ads\\.flatdy\\.net/\" to=\"https://ads.flatdy.net/\"/><rule from=\"^http://(?:(?:origin-)?cmsimg\\.)?floridatoday\\.com/\" to=\"https://www.floridatoday.com/\"/><rule from=\"^http://((?:origin-)?www)\\.floridatoday\\.com/\" to=\"https://$1.floridatoday.com/\"/><rule from=\"^http://deals\\.floridatoday\\.com/(?:$|\\?)\" to=\"https://brevardco.planetdiscover.com/sp?aff=1180\"/><rule from=\"^http://(?:deals|search)\\.floridatoday\\.com/\" to=\"https://brevardco.planetdiscover.com/\"/></ruleset>", "<ruleset name=\"FlowBTC.com\" f=\"FlowBTC.com.xml\"><rule from=\"^http://(?:www\\.)?flowbtc\\.com/.*\" to=\"https://trader.flowbtc.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FlowingData.com\" f=\"FlowingData.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Flownative.com\" default_off=\"missing certificate chain\" f=\"Flownative.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Flowplayer.org (partial)\" f=\"Flowplayer.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Flowtab.com\" default_off=\"failed ruleset test\" f=\"Flowtab.com.xml\"><securecookie host=\"^(?:w*\\.)?flowtab\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?flowtab\\.com/\" to=\"https://$1flowtab.com/\"/><rule from=\"^http://cdn\\.flowtab\\.mobi/\" to=\"https://dxluo93d48m7d.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Fluctis Hosting.com (partial)\" f=\"Fluctis_Hosting.com.xml\"><securecookie host=\"^\\.fluctishosting\\.com$\" name=\"^__utm\\w+$\"/><rule from=\"^http://(?:www\\.)?fluctishosting\\.com/(?!whmcs/(?:announcements\\.php|index\\.php)?(?:$|[?/]))\" to=\"https://fluctishosting.com/\"/></ruleset>", "<ruleset name=\"Fluendo (partial)\" f=\"Fluendo.xml\"><rule from=\"^http://(www\\.)?fluendo\\.com/(media/|press/\\w)\" to=\"https://$1fluendo.com/$2\"/></ruleset>", "<ruleset name=\"Fluid Hosting.com (partial)\" f=\"Fluid_Hosting.com.xml\"><securecookie host=\"^support\\.fluidhosting\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Flurry (problematic)\" default_off=\"mismatched\" f=\"Flurry-problematic.xml\"><securecookie host=\"^blog\\.flurry\\.com$\" name=\".+\"/><rule from=\"^http://blog\\.flurry\\.com/\" to=\"https://blog.flurry.com/\"/></ruleset>", "<ruleset name=\"Flurry\" f=\"Flurry.xml\"><securecookie host=\"^dev\\.flurry\\.com$\" name=\".+\"/><rule from=\"^http://(cdn|dev)\\.flurry\\.com/\" to=\"https://$1.flurry.com/\"/></ruleset>", "<ruleset name=\"FlutterToday.com (partial)\" f=\"FlutterToday.com.xml\"><rule from=\"^http://(www\\.)?fluttertoday\\.com/(?=deals/(?:account(?:$|[?/])|flavor/css/|wp-content/|wp-includes/)|favicon\\.ico)\" to=\"https://$1fluttertoday.com/\"/></ruleset>", "<ruleset name=\"F.lux\" f=\"Flux.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FluxBB.org\" f=\"FluxBB.xml\"><securecookie host=\"^\\.fluxbb\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FluxCards.de\" f=\"FluxCards.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fluxx.io (partial)\" f=\"Fluxx.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Flyasite.com (partial)\" f=\"Flyasite.com.xml\"><rule from=\"^http://assets[01]\\.flyasite\\.com/\" to=\"https://d1gzjld104oq4p.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Flybuys\" f=\"Flybuys.xml\"><rule from=\"^http://(www\\.)?flybuys\\.com\\.au/\" to=\"https://www.flybuys.com.au/\"/></ruleset>", "<ruleset name=\"FlyersRights.org\" default_off=\"failed ruleset test\" f=\"FlyersRights.org.xml\"><rule from=\"^http://(?:anything\\.|www\\.)?flyersrights\\.(?:com|org)/\" to=\"https://anything.flyersrights.com/\"/></ruleset>", "<ruleset name=\"Flyertalk.com\" platform=\"mixedcontent\" f=\"Flyertalk.com.xml\"><rule from=\"^http://(?:www\\.)?flyertalk\\.com/\" to=\"https://www.flyertalk.com/\"/></ruleset>", "<ruleset name=\"Flyertown\" f=\"Flyertown.xml\"><securecookie host=\"^www\\.flyertown\\.ca$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Flying Meat (partial)\" f=\"Flying_Meat.xml\"><rule from=\"^http://(?:secure\\.|www\\.)?flyingmeat\\.com/\" to=\"https://secure.flyingmeat.com/\"/></ruleset>", "<ruleset name=\"Flyn.org\" f=\"Flyn.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"fmod.org\" default_off=\"mismatched\" f=\"Fmod.xml\"><securecookie host=\"^(?:www\\.)?fmod\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fnac.pt\" f=\"Fnac.pt.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fnac (partial)\" f=\"Fnac.xml\"><rule from=\"^http://(?:www\\.)?fnacspectacles\\.com/(aide\\.do(?:$|\\?)|banniere/|css/|images/|js/|static/)\" to=\"https://www.fnacspectacles.com/$1\"/></ruleset>", "<ruleset name=\"fnfismd.com (partial)\" f=\"Fnfismd.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FoECV LiaB.com\" default_off=\"expired\" f=\"FoECV_LiaB.com.xml\"><rule from=\"^http://(?:www\\.)?foecvliab\\.com/\" to=\"https://www.foecvliab.com/\"/></ruleset>", "<ruleset name=\"Fobos.de\" f=\"Fobos.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"focaljet.com\" default_off=\"failed ruleset test\" f=\"Focaljet.com.xml\"><securecookie host=\"^\\.focaljet\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Focus.de (partial)\" default_off=\"failed ruleset test\" f=\"Focus.de.xml\"><exclusion pattern=\"^http://m\\.focus\\.de/+(?!favicon\\.ico|resources/)\"/><exclusion pattern=\"^http://www\\.focus\\.de/+(?!resources/)\"/><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Focus Camera.com\" f=\"Focus_Camera.com.xml\"><securecookie host=\"^\\.(?:www\\.)?focuscamera\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Focus on Learning Center.com\" f=\"Focus_on_Learning_Center.com.xml\"><securecookie host=\"^(?:www\\.)?focusonlearningcenter\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FodevareWatch\" default_off=\"failed ruleset test\" f=\"FodevareWatch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FoeBuD e.V.\" f=\"FoeBuD.xml\"><securecookie host=\"^\\.(?:shop\\.)?foebud\\.org$\" name=\".+\"/><rule from=\"^http://([^/:@\\.]+\\.)?foebud\\.org/\" to=\"https://$1foebud.org/\"/></ruleset>", "<ruleset name=\"FogBugz.com\" f=\"FogBugz.com.xml\"><securecookie host=\"^d2l\\.fogbugz\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?fogbugz\\.com/.*\" to=\"https://www.fogcreek.com/fogbugz/\"/><rule from=\"^http://d2l\\.fogbugz\\.com/\" to=\"https://d2l.fogbugz.com/\"/></ruleset>", "<ruleset name=\"Fog Creek\" f=\"Fog_Creek.xml\"><securecookie host=\"^(?:secure\\.|\\.)?fogcreek\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fokus Bank\" default_off=\"failed ruleset test\" f=\"Fokus.no.xml\"><rule from=\"^http://fokus\\.no/\" to=\"https://www.fokus.no/\"/><rule from=\"^http://www\\.fokus\\.no/\" to=\"https://www.fokus.no/\"/></ruleset>", "<ruleset name=\"Fold.cm\" f=\"Fold.cm.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FoldingCoin.net\" default_off=\"missing certificate chain\" platform=\"mixedcontent\" f=\"FoldingCoin.net.xml\"><securecookie host=\"^www\\.foldingcoin\\.net$\" name=\"\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Folding Forum.org\" f=\"Folding_Forum.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Foliovision.com\" f=\"Foliovision.com.xml\"><securecookie host=\"^foliovision\\.com$\" name=\".+\"/><rule from=\"^http://www\\.foliovision\\.com/\" to=\"https://foliovision.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Folkets.dk\" f=\"Folkets.dk.xml\"><securecookie host=\"(?:www)?\\.folkets\\.dk\" name=\".*\"/><rule from=\"^http://(?:www\\.)?folkets\\.dk/\" to=\"https://www.folkets.dk/\"/></ruleset>", "<ruleset name=\"Folksam.se\" platform=\"mixedcontent\" f=\"Folksam.se.xml\"><rule from=\"^http://www\\.folksam\\.se/\" to=\"https://www.folksam.se/\"/><rule from=\"^http://folksam\\.se/\" to=\"https://www.folksam.se/\"/></ruleset>", "<ruleset name=\"fomori.org\" default_off=\"self-signed\" f=\"Fomori.org.xml\"><rule from=\"^http://(?:www\\.)?fomori\\.org/\" to=\"https://fomori.org/\"/></ruleset>", "<ruleset name=\"FontMarketplace.com (partial)\" f=\"FontMarketplace.com.xml\"><rule from=\"^http://(?:www\\.)?fontmarketplace\\.com/+(?=$|\\?)\" to=\"https://www.fonts.com/\"/></ruleset>", "<ruleset name=\"Fontdeck.com (partial)\" default_off=\"failed ruleset test\" f=\"Fontdeck.xml\"><exclusion pattern=\"http://fontdeck\\.com/(?!images/|login$|register$|stylesheets/)\"/><rule from=\"^http://www\\.fontdeck\\.com/\" to=\"https://fontdeck.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fonticons.com (partial)\" f=\"Fonticons.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fonts.com (javascript loop)\" default_off=\"js redirect to http\" f=\"Fonts.com-noscript.xml\"><rule from=\"^http://www\\.fonts\\.com/(?!$)\" to=\"https://www.fonts.com/\"/></ruleset>", "<ruleset name=\"Fonts.com (partial)\" default_off=\"failed ruleset test\" f=\"Fonts.com.xml\"><exclusion pattern=\"^http://fast10\\.fonts\\.com/(?!(?:Account/)?LogOn(?:$|[?/]))\"/><exclusion pattern=\"^http://webfonts\\.fonts\\.com/(?![Cc]ontent/|min/|.+/Subscription/)\"/><exclusion pattern=\"^http://www\\.fonts\\.com/+(?!favicon\\.ico|(?:customer/login-page|customer-signin-page|secure/(?:become-a-member|reset-password|sign-in))(?:$|[?/]))\"/><rule from=\"^http://www\\.webfonts\\.fonts\\.com/\" to=\"https://webfonts.fonts.com/\"/><rule from=\"^http://www0\\d\\.fonts\\.com/\" to=\"https://www.fonts.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fonts.net (partial)\" f=\"Fonts.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fontspring (partial)\" f=\"Fontspring.xml\"><rule from=\"^http://www\\.fontspring\\.com/fonts/(?=$|\\?)\" to=\"https://www.fontspring.com/fonts\"/><rule from=\"^http://(www\\.)?fontspring\\.com/(?=account(?:$|[?/])|cache_assets/|favicon\\.ico|fnt_imgs/|(?:fonts|fresh)/*(?:$|\\?)|poster_imgs/|presentation_20140401/|tools/)\" to=\"https://$1fontspring.com/\"/><rule from=\"^http://cdn\\d\\.fontspring\\.com/\" to=\"https://www.fontspring.com/\"/></ruleset>", "<ruleset name=\"FooFighters\" f=\"FooFighters.xml\"><securecookie host=\"^(?:.+\\.)?foofighters\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?foofighters\\.com/\" to=\"https://www.foofighters.com/\"/></ruleset>", "<ruleset name=\"Foocorp.net (partial)\" default_off=\"expired, untrusted root\" f=\"Foocorp.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Food Allergy Initiative (mismatch)\" default_off=\"mismatch\" f=\"Food-Allergy-Initiative.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Food & Water Watch\" default_off=\"failed ruleset test\" f=\"FoodAndWaterWatch.org.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Food Protection Task Force.com (partial)\" f=\"Food_Protection_Task_Force.com.xml\"><rule from=\"^http://(www\\.)?foodprotectiontaskforce\\.com/(dfsr2/|member(?:$|[?/]))\" to=\"https://$1foodprotectiontaskforce.com/$2\"/></ruleset>", "<ruleset name=\"Food Allergy.org\" f=\"Foodallergy.org.xml\"><securecookie host=\"^(?:www\\.)?foodallergy\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Foodl.org\" f=\"Foodl.org.xml\"><securecookie host=\"^(?:beta\\.|deploy\\.)?foodl\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?foodl\\.org/\" to=\"https://foodl.org/\"/><rule from=\"^http://(beta|deploy)\\.foodl\\.org/\" to=\"https://$1.foodl.org/\"/></ruleset>", "<ruleset name=\"Foodler\" f=\"Foodler.com.xml\"><rule from=\"^http://(www\\.)?foodler\\.com/\" to=\"https://www.foodler.com/\"/></ruleset>", "<ruleset name=\"Foodwatch.org\" f=\"Foodwatch.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fool.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Fool.com-falsemixed.xml\"><rule from=\"^http://wiki\\.fool\\.com/\" to=\"https://wiki.fool.com/\"/><rule from=\"^http://(?:www\\.)?marketfoolery\\.com/[^?]*\" to=\"https://wiki.fool.com/MarketFoolery\"/></ruleset>", "<ruleset name=\"Foolz.us\" f=\"Foolz.us.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Foot Locker.com (partial)\" default_off=\"needs clearnet testing\" f=\"Foot_Locker.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Foot Locker Canada\" f=\"Foot_Locker_Canada.xml\"><securecookie host=\"^.*\\.footlocker\\.ca$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?footlocker\\.ca/\" to=\"https://www.footlocker.ca/\"/></ruleset>", "<ruleset name=\"Foot Locker.Eu (partial)\" f=\"Foot_Locker_Europe.xml\"><rule from=\"^http://(?:www\\.)?footlocker\\.eu/(\\w\\w/\\w\\w)/(?=k/|s/|ShoppingCart\\.aspx)\" to=\"https://www.footlocker.eu/$1/secure/\"/><rule from=\"^http://(?:www\\.)?footlocker\\.eu/(?=ns/|secure/|WebResource\\.axd)\" to=\"https://www.footlocker.eu/\"/></ruleset>", "<ruleset name=\"Foot Locker, Inc.\" f=\"Foot_Locker_Inc.xml\"><rule from=\"^http://(?:www\\.)?footlocker-inc\\.com/\" to=\"https://www.footlocker-inc.com/\"/></ruleset>", "<ruleset name=\"Footaction USA\" f=\"Footaction_USA.xml\"><securecookie host=\"^.*\\.footaction\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?footaction\\.com/\" to=\"https://www.footaction.com/\"/><rule from=\"^http://(images|m)\\.footaction\\.com/\" to=\"https://$1.footaction.com/\"/></ruleset>", "<ruleset name=\"Football Fanatics (partial)\" f=\"Football_Fanatics.xml\"><exclusion pattern=\"^http://(?!images\\.)(?:\\w+\\.)?footballfanatics\\.com/(?!account/|checkout/|css/)\"/><rule from=\"^http://footballfanatics\\.com/\" to=\"https://www.footballfanatics.com/\"/><rule from=\"^http://(\\w+)\\.footballfanatics\\.com/\" to=\"https://$1.footballfanatics.com/\"/></ruleset>", "<ruleset name=\"footholds.net\" f=\"Footholds.net.xml\"><exclusion pattern=\"^http://www\\.\"/><rule from=\"^http://([\\w-]+)\\.footholds\\.net/\" to=\"https://$1.footholds.net/\"/></ruleset>", "<ruleset name=\"footprint.net (partial)\" f=\"Footprint.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"forabank.ru\" f=\"Forabank.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Forbes.com\" default_off=\"failed ruleset test\" f=\"Forbes.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Forbes Magazine.com\" platform=\"mixedcontent\" default_off=\"mismatch, self-signed\" f=\"Forbes_Magazine.xml\"><securecookie host=\".+\\.forbesmagazine\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Forbrukerraadet\" default_off=\"failed ruleset test\" f=\"Forbrukerraadet.xml\"><rule from=\"^http://(?:www\\.)?forbrukerportalen\\.no/\" to=\"https://forbrukerportalen.no/\"/></ruleset>", "<ruleset name=\"Ford (partial)\" f=\"Ford.xml\"><exclusion pattern=\"^http://media\\.ford\\.com/(?!graphics/|images/|include/)\"/><rule from=\"^http://(developer|media)\\.ford\\.com/\" to=\"https://$1.ford.com/\"/></ruleset>", "<ruleset name=\"Fordela.com\" default_off=\"failed ruleset test\" f=\"Fordela.com.xml\"><securecookie host=\".*\\.fordela\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?fordela\\.com/\" to=\"https://www.fordela.com/\"/><rule from=\"^http://(goldmember|vms)\\.fordela\\.com/\" to=\"https://$1.fordela.com/\"/></ruleset>", "<ruleset name=\"ForeSee Results.com\" f=\"ForeSee_Results.com.xml\"><securecookie host=\"^(?:portal2)?\\.foreseeresults\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?foreseeresults\\.com/\" to=\"https://www.foreseeresults.com/\"/><rule from=\"^http://(events|portal2)\\.foreseeresults\\.com/\" to=\"https://$1.foreseeresults.com/\"/></ruleset>", "<ruleset name=\"Forecast.io\" default_off=\"failed ruleset test\" f=\"Forecast.io.xml\"><securecookie host=\"^developer\\.forecast\\.io$\" name=\"\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ForeignPolicy.com (partial)\" default_off=\"failed ruleset test\" f=\"ForeignPolicy.com.xml\"><exclusion pattern=\"^http://fpgroup\\.foreignpolicy\\.com/(?!/*wp-content/)\"/><securecookie host=\"^\\.\" name=\"^(?:_gat?$|_gat_|s_v)\"/><securecookie host=\"^(?!fpgroup\\.)\\w\" name=\".\"/><rule from=\"^http://blog\\.foreignpolicy\\.com/+(?:\\?.*)?$\" to=\"https://foreignpolicy.com/channel/passport/\"/><rule from=\"^http://ideas\\.foreignpolicy\\.com/+(?=$|\\?)\" to=\"https://foreignpolicy.com/\"/><rule from=\"^http://thecable\\.foreignpolicy\\.com/+(?:\\?.*)?$\" to=\"https://foreignpolicy.com/channel/the-cable/\"/><rule from=\"^http://theturtlebay\\.foreignpolicy\\.com/+(?:\\?.*)?$\" to=\"https://foreignpolicy.com/category/turtle-bay/\"/><rule from=\"^http://(?:blog|thecable|theturtlebay)\\.foreignpolicy\\.com/\" to=\"https://foreignpolicy.com/\"/><rule from=\"^http://ideas\\.foreignpolicy\\.com/\" to=\"https://foreignpolicy.com/\"/><rule from=\"^http://jobs\\.foreignpolicy\\.com/.*\" to=\"https://foreignpolicy.com/employment-opportunities/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Foreign Affairs.com (partial)\" f=\"Foreign_Affairs.com.xml\"><securecookie host=\"^\\.foreignaffairs\\.com$\" name=\"^(?:incap_ses_\\d+|nlbi|visid_incap)_\\d+$\"/><securecookie host=\"^www\\.foreignaffairs\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Foreningen for Dansk Internethandel (partial)\" f=\"Foreningen_for_Dansk_Internethandel.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Forensic Institute.nl\" f=\"Forensic_Institute.nl.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://forensicinstitute\\.nl/\" to=\"https://www.forensicinstitute.nl/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Foresight.org\" f=\"Foresight.org.xml\"><securecookie host=\"^\\.foresight\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?foresight\\.org/\" to=\"https://www.foresight.org/\"/></ruleset>", "<ruleset name=\"Forest Sangha\" default_off=\"failed ruleset test\" f=\"ForestSangha.org.xml\"><securecookie host=\"^(?:www)?(?:\\.)?forestsangha\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Foresters\" f=\"Foresters.xml\"><securecookie host=\"^\\.foresters\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?foresters\\.biz/.*\" to=\"https://www.foresters.com/\"/><rule from=\"^http://foresters\\.com/.*\" to=\"https://www.foresters.com/\"/><rule from=\"^http://www\\.foresters\\.com/\" to=\"https://www.foresters.com/\"/></ruleset>", "<ruleset name=\"Forever New\" platform=\"mixedcontent\" f=\"ForeverNew.xml\"><rule from=\"^http://(www\\.)?forevernew\\.com\\.au/\" to=\"https://www.forevernew.com.au/\"/></ruleset>", "<ruleset name=\"Forex-Metal\" default_off=\"failed ruleset test\" f=\"Forex-Metal.xml\"><securecookie host=\"^forex-metal\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?forex-metal\\.com/\" to=\"https://forex-metal.com/\"/></ruleset>", "<ruleset name=\"Forex.com (partial)\" default_off=\"failed ruleset test\" f=\"Forex.com.xml\"><securecookie host=\"^(?:myaccount|(?:practic|secur)e(?:15)?|previewtrade)\\.forex\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?forex\\.com/\" to=\"https://secure.forex.com/\"/><rule from=\"^http://(apply|assets|myaccount|(?:practic|secur)e(?:15)?|previewtrade)\\.forex\\.com/\" to=\"https://$1.forex.com/\"/></ruleset>", "<ruleset name=\"ForexCT (partial)\" f=\"ForexCT.xml\"><exclusion pattern=\"^http://(?:cn\\.|www\\.)?forexct\\.com/(?![iI]mages/|styles/)\"/><securecookie host=\"^forexctlogin\\.tradenetworks\\.com$\" name=\".+\"/><rule from=\"^http://forexct\\.com/\" to=\"https://www.forexct.com/\"/><rule from=\"^http://(cn|www)\\.forexct\\.com/\" to=\"https://$1.forexct.com/\"/><rule from=\"^http://forexctlogin\\.tradenetworks\\.com/\" to=\"https://forexctlogin.tradenetworks.com/\"/></ruleset>", "<ruleset name=\"ForgeFields.com (mismatched)\" default_off=\"mismatched\" f=\"ForgeFields.com-problematic.xml\"><securecookie host=\"^\\.?shop\\.forgefields\\.com$\" name=\".+\"/><rule from=\"^http://shop\\.forgefields\\.com/\" to=\"https://shop.forgefields.com/\"/></ruleset>", "<ruleset name=\"ForgeFields.com (partial)\" f=\"ForgeFields.com.xml\"><securecookie host=\"^(?:www)?\\.forgefields\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"forgifs.com\" f=\"Forgifs.com.xml\"><securecookie host=\"^\\.forgifs\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?4gifs\\.com/+\" to=\"https://forgifs.com/\"/><rule from=\"^http://(www\\.)?forgifs\\.com/\" to=\"https://$1forgifs.com/\"/></ruleset>", "<ruleset name=\"ForgottenLands.eu\" f=\"ForgottenLands.eu.xml\"><securecookie host=\"^(?:vote)?\\.forgottenlands\\.eu$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?forgottenlands\\.eu/\" to=\"https://www.forgottenlands.eu/\"/><rule from=\"^http://vote\\.forgottenlands\\.eu/\" to=\"https://vote.forgottenlands.eu/\"/></ruleset>", "<ruleset name=\"Foris Wine\" default_off=\"failed ruleset test\" f=\"ForisWine.xml\"><rule from=\"^http://(?:www\\.)?foriswine\\.com/\" to=\"https://www.foriswine.com/\"/></ruleset>", "<ruleset name=\"FormAssembly.com (partial)\" f=\"FormAssembly.com.xml\"><securecookie host=\"^.+\\.formassembly\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?formassembly\\.com/\" to=\"https://www3.formassembly.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FormKeep.com\" f=\"FormKeep.com.xml\"><securecookie host=\"^formkeep\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FormSanity.com (partial)\" f=\"FormSanity.com.xml\"><securecookie host=\"^(?:download\\.)?formsanity\\.com$\" name=\".+\"/><rule from=\"^http://www\\.formsanity\\.com/\" to=\"https://formsanity.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FormatDynamics.com\" default_off=\"failed ruleset test\" f=\"FormatDynamics.com.xml\"><securecookie host=\"^\\.formatdynamics\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Formilux.org\" default_off=\"expired, mismatched, self-signed\" f=\"Formilux.org.xml\"><rule from=\"^http://formilux\\.org/\" to=\"https://www.formilux.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Formstack.com (partial)\" f=\"Formstack.xml\"><securecookie host=\"^(?:bi|www)\\.formstack\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fornex.com (partial)\" f=\"Fornex.com.xml\"><securecookie host=\"^fornex\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Forocoches\" f=\"Forocoches.com.xml\"><rule from=\"^http://forocoches\\.com/\" to=\"https://forocoches.com/\"/><rule from=\"^http://([^/:@]*)\\.forocoches\\.com/\" to=\"https://$1.forocoches.com/\"/></ruleset>", "<ruleset name=\"Forester (partial)\" f=\"Forrester.xml\"><rule from=\"^http://(?:www\\.)?forrester\\.com/(assets|javax\\.faces\\.resource)/\" to=\"https://www.forrester.com/$1/\"/></ruleset>", "<ruleset name=\"Forsakringskassan.se\" platform=\"mixedcontent\" f=\"Forsakringskassan.se.xml\"><rule from=\"^http://www\\.forsakringskassan\\.se/\" to=\"https://www.forsakringskassan.se/\"/><rule from=\"^http://forsakringskassan\\.se/\" to=\"https://www.forsakringskassan.se/\"/></ruleset>", "<ruleset name=\"forsec.nl\" f=\"Forsec.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Forsiden (partial)\" default_off=\"failed ruleset test\" f=\"Forsiden.xml\"><securecookie host=\"^kundesenter\\.fvn\\.no$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?fvn\\.no/\" to=\"https://www.fvn.no/\"/><rule from=\"^http://kundesenter\\.fvn\\.no/\" to=\"https://kundesenter.fvn.no/\"/></ruleset>", "<ruleset name=\"Forsvarsforbundet.se\" f=\"Forsvarsforbundet.se.xml\"><rule from=\"^http://forsvarsforbundet\\.se/\" to=\"https://www.forsvarsforbundet.se/\"/><rule from=\"^http://www\\.forsvarsforbundet\\.se/\" to=\"https://www.forsvarsforbundet.se/\"/></ruleset>", "<ruleset name=\"Forthnet\" default_off=\"failed ruleset test\" f=\"Forthnet.gr.xml\"><securecookie host=\"^webmail.forthnet\\.gr$\" name=\".*\"/><securecookie host=\"^services.forthnet\\.gr$\" name=\".*\"/><rule from=\"^http://(webmail|services)\\.forthnet\\.gr/\" to=\"https://$1.forthnet.gr/\"/></ruleset>", "<ruleset name=\"FortiGuard.com\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"FortiGuard.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fortinet.com (partial)\" default_off=\"failed ruleset test\" f=\"Fortinet.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fortnite.com\" default_off=\"failed ruleset test\" f=\"Fortnite.com.xml\"><securecookie host=\"^(?:alpha\\.|www\\.)?fortnite\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fortress Linux.org\" f=\"Fortress_Linux.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fortum\" f=\"Fortum.xml\"><securecookie host=\"^(?:.*\\.)?fortum\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?fortum\\.com/\" to=\"https://www.fortum.com/\"/></ruleset>", "<ruleset name=\"Fortumo\" default_off=\"failed ruleset test\" f=\"Fortumo.xml\"><securecookie host=\"^.*\\.fortumo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fortune.com\" default_off=\"Breaks site\" f=\"Fortune.com.xml\"><rule from=\"^http://(?:www\\.)?fortune\\.com/\" to=\"https://fortune.com/\"/></ruleset>", "<ruleset name=\"Fortune Affiliates.com (partial)\" f=\"Fortune_Affiliates.com.xml\"><securecookie host=\"^secure\\.fortuneaffiliates\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ForumBlog.org\" default_off=\"failed ruleset test\" f=\"ForumBlog.org.xml\"><securecookie host=\"^\\.?forumblog\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?forumblog\\.org/\" to=\"https://forumblog.org/\"/></ruleset>", "<ruleset name=\"Forum Wizard.net\" f=\"Forum_Wizard.xml\"><securecookie host=\"^\\.forumwizard\\.net$\" name=\".+\"/><rule from=\"^http://w\\.forumwizard\\.net/\" to=\"https://www.forumwizard.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Forumatic (partial)\" default_off=\"failed ruleset test\" f=\"Forumatic.xml\"><securecookie host=\"^\\.forumatic\\.com$\" name=\"^PHPSESSID$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Forums.nexusmods.com\" default_off=\"failed ruleset test\" f=\"Forums.nexusmods.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Forums für Naturfotografen\" f=\"Forums_fur_Naturfotografen.xml\"><securecookie host=\"^\\.?naturfotografen-forum\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?naturfotografen-forum\\.de/\" to=\"https://naturfotografen-forum.de/\"/></ruleset>", "<ruleset name=\"Foscam-BG.com\" f=\"Foscam-BG.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FOSDEM.org\" f=\"Fosdem.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fosscon.us\" f=\"Fosscon.us.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://(www\\.)?fosscon\\.us/\" to=\"https://fosscon.us/\"/></ruleset>", "<ruleset name=\"Fossil-SCM.org\" f=\"Fossil-SCM.org.xml\"><rule from=\"^http://(?:www\\.)?fossil-scm\\.org/\" to=\"https://www.fossil-scm.org/\"/></ruleset>", "<ruleset name=\"FotisL.com\" f=\"Fotisl.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fotki (partial)\" f=\"Fotki.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FotoForensics.com\" f=\"FotoForensics.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FotoPigeon.com\" default_off=\"failed ruleset test\" f=\"FotoPigeon.xml\"><securecookie host=\"^(?:www\\.)?fotopigeon\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fotoblur\" default_off=\"failed ruleset test\" f=\"Fotoblur.xml\"><securecookie host=\"^www\\.fotoblur\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?fotoblur\\.com/\" to=\"https://www.fotoblur.com/\"/></ruleset>", "<ruleset name=\"fotocommunity.de (partial)\" f=\"Fotocommunity.de.xml\"><rule from=\"^http://(www\\.)?fotocommunity\\.de/(?=(?:blog|serverstatus)/wp-(?:content|includes)/|blog/\\?sccss=|(?:calendar|fotos-kaufen|fotowissen|html-sitemaps|login|mediathek|models|registrieren|sitemap)(?:$|[?/])|css/|css-2/|css-static/|favicon\\.ico|fcAssets/|gfx/|(?:Hilfe|pc/pc/channel/\\d+/\\w+/\\w+/display/\\d+)(?:$|\\?)|market-[\\w-]+\\.php|model-sedcard/|static/|wikiAssets/)\" to=\"https://$1fotocommunity.de/\"/><rule from=\"^http://(?:origin\\.)?images\\.fotocommunity\\.de/\" to=\"https://origin.images.fotocommunity.de/\"/></ruleset>", "<ruleset name=\"Fotolab.sk_cz\" f=\"Fotolab.sk_cz.xml\"><rule from=\"^http://eshop\\.fotolab\\.cz/\" to=\"https://www.fotolab.cz/eshop/\"/><rule from=\"^http://obrazy\\.fotolab\\.cz/\" to=\"https://www.fotolab.cz/fotoobrazy.html\"/><rule from=\"^http://sutaz\\.fotolab\\.sk/\" to=\"https://www.fotolab.sk/sutaze/fotosutaze.html\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Foundation Source\" f=\"Foundation-Source.xml\"><securecookie host=\"^(?:.*\\.)?foundationsource\\.com$\" name=\".*\"/><rule from=\"^http://((?:access|fsol|online|www)\\.)?foundationsource\\.com/\" to=\"https://$1foundationsource.com/\"/></ruleset>", "<ruleset name=\"Foundation Beyond Belief.org\" f=\"Foundation_Beyond_Belief.org.xml\"><securecookie host=\"^\\.foundationbeyondbelief\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Founding Fathers\" default_off=\"mismatched\" f=\"Founding_Fathers.xml\"><rule from=\"^http://(?:www\\.)?foundingfathers\\.info/\" to=\"https://foundingfathers.info/\"/></ruleset>", "<ruleset name=\"fourecks.de\" default_off=\"failed ruleset test\" f=\"Fourecks.de.xml\"><rule from=\"^http://www\\.fourecks\\.de/\" to=\"https://fourecks.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fourmilab.ch\" f=\"Fourmilab.ch.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Foursquare.com (partial)\" default_off=\"failed ruleset test\" f=\"Foursquare.com.xml\"><securecookie host=\"^(?:.*\\.)?foursquare\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fout.jp (partial)\" f=\"Fout.jp.xml\"><securecookie host=\"^\\.fout\\.jp$\" name=\"^uid$\"/><rule from=\"^http://(cnt|dsp|js)\\.fout\\.jp/\" to=\"https://$1.fout.jp/\"/></ruleset>", "<ruleset name=\"Fox-IT.com\" f=\"Fox-IT.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fox News (partial)\" default_off=\"failed ruleset test\" f=\"Fox_News.xml\"><exclusion pattern=\"^http://(?:www\\.fbn|global\\.fnc)static\\.com/static/(?:.+/)?(?:j|cs)s/\"/><rule from=\"^http://www\\.fbnstatic\\.com/\" to=\"https://a57.foxnews.com/$1static.com/\"/><rule from=\"^http://global\\.fncstatic\\.com/\" to=\"https://global.fncstatic.com/\"/><rule from=\"^http://(beta\\.)?video\\.foxbusiness\\.com/\" to=\"https://$1video.foxbusiness.com/\"/><rule from=\"^http://(a57|ads|video\\.(?:imag|insider|latino|ureport)|live|video|beta\\.video(?:\\.latino)?)\\.foxnews\\.com/\" to=\"https://$1.foxnews.com/\"/><rule from=\"^http://metrics\\.foxnews\\.com/\" to=\"https://foxnews.112.2o7.net/\"/><rule from=\"^http://uereport\\.foxnews\\.com/services/\" to=\"https://filemobile.com/services/\"/><rule from=\"^http://facebook\\.foxnewsinsider\\.com/\" to=\"https://facebook.foxnewsinsider.com/\"/><rule from=\"^http://foxnews\\.ramp\\.com/\" to=\"https://foxnews.ramp.com/\"/></ruleset>", "<ruleset name=\"Foxitsoftware.com (partial)\" f=\"Foxitsoftware.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FoxyCart.com (partial)\" f=\"FoxyCart.com.xml\"><securecookie host=\"^(?:admin|docs|forum|wiki)\\.foxycart\\.com$\" name=\".+\"/><rule from=\"^http://(admin|cdn|docs|forum|wiki)\\.foxycart\\.com/\" to=\"https://$1.foxycart.com/\"/></ruleset>", "<ruleset name=\"foxydeal.de (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Foxydeal.de-falsemixed.xml\"><securecookie host=\"^(?:w*\\.)?foxydeal\\.de$\" name=\".+\"/><rule from=\"^http://(www\\.)?foxydeal\\.(?:com|de)/(?!favicon\\.ico|files/|wp-content/|wp-includes/)\" to=\"https://$1foxydeal.de/\"/></ruleset>", "<ruleset name=\"foxydeal.de (partial)\" default_off=\"failed ruleset test\" f=\"Foxydeal.de.xml\"><rule from=\"^http://(www\\.)?foxydeal\\.(?:com|de)/(?=favicon\\.ico|files/|wp-content/|wp-includes/)\" to=\"https://$1foxydeal.de/\"/></ruleset>", "<ruleset name=\"fprnt.com\" f=\"Fprnt.com.xml\"><securecookie host=\"^\\.fprnt\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"fr33tux.org\" platform=\"cacert mixedcontent\" default_off=\"failed ruleset test\" f=\"Fr33tux.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FrOSCon\" f=\"FrOSCon.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Frack.nl\" f=\"Frack.nl.xml\"><securecookie host=\"^(?:www\\.)?frack\\.nl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FragDenStaat.de\" f=\"FragDenStaat.de.xml\"><securecookie host=\"^(?:www\\.)?fragdenstaat\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fraglive\" default_off=\"failed ruleset test\" f=\"Fraglive.xml\"><securecookie host=\"^(?:w*\\.)?fraglive\\.cl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Framasoft\" f=\"Framasoft.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"France-Universite-Numerique-MOOC.fr\" f=\"France-Universite-Numerique-MOOC.fr.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Franceserv\" f=\"Franceserv.xml\"><securecookie host=\"^www\\.franceserv\\.fr$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Franchise Gator.com (partial)\" f=\"Franchise_Gator.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?franchisegator\\.com/+(?!dashboard(?:$|[?/])|tracker\\.php)\"/><rule from=\"^http://franchisegator\\.com/\" to=\"https://www.franchisegator.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Francis Kim.co\" f=\"Francis_Kim.co.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Frank Timis\" f=\"Frank_Timis.xml\"><securecookie host=\"^\\.franktimis\\.com$\" name=\".+\"/><rule from=\"^http://www\\.franktimis\\.com/\" to=\"https://www.franktimis.com/\"/></ruleset>", "<ruleset name=\"Franken.de\" f=\"Franken.de.xml\"><securecookie host=\"^www\\.franken\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?franken\\.de/\" to=\"https://www.franken.de/\"/><rule from=\"^http://(cloud|kerio)\\.franken\\.de/\" to=\"https://$1.franken.de/\"/></ruleset>", "<ruleset name=\"Franklin Veaux.com\" f=\"Franklin_Veaux.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Franklin W. Olin College of Engineering\" default_off=\"failed ruleset test\" f=\"Franklin_W_Olin_College_of_Engineering.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Franziska Wellner.de (partial)\" f=\"Franziska_Wellner.de.xml\"><securecookie host=\"^mail\\.franziskawellner\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Frascati Cafe.nl\" f=\"Frascati_Cafe.nl.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^_gat?$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Frascati Producties.nl\" f=\"Frascati_Producties.nl.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\"\"/><rule from=\"^http://frascatiproducties\\.nl/\" to=\"https://www.frascatiproducties.nl/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Frascati Theater.nl\" f=\"Frascati_Theater.nl.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\"\"/><rule from=\"^http://frascatitheater\\.nl/\" to=\"https://www.frascatitheater.nl/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fraser Xu.me\" f=\"Fraser_Xu.me.xml\"><securecookie host=\"^\\.fraserxu\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fraternal Order of Locksport\" default_off=\"self-signed\" f=\"Fraternal-Order-of-Locksport.xml\"><securecookie host=\"^www\\.bloomingtonfools\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?bloomingtonfools\\.org/\" to=\"https://www.bloomingtonfools.org/\"/></ruleset>", "<ruleset name=\"FraudLabs.com\" f=\"FraudLabs.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fraunhofer (partial)\" f=\"Fraunhofer.xml\"><securecookie host=\"^(?:.*\\.)?(?:izb|scai)\\.fraunhofer\\.de$\" name=\".*\"/><rule from=\"^http://(www\\.)?((scai|fit|aisec|igd|iais|fkie|fokus|sit|ipk|irb|isst)\\.)?fraunhofer\\.de/\" to=\"https://www.$2fraunhofer.de/\"/></ruleset>", "<ruleset name=\"Fred and Pickles\" default_off=\"failed ruleset test\" f=\"Fred_and_Pickles.xml\"><securecookie host=\"^\\.fredandpickles\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fredericia.dk\" default_off=\"failed ruleset test\" f=\"Fredericia.dk.xml\"><securecookie host=\"^(www\\.)?fredericia\\.dk\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Frederikshavn.dk\" f=\"Frederikshavn.dk.xml\"><securecookie host=\"^\\.?frederikshavn\\.dk\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Frederikssund.dk\" f=\"Frederikssund.dk.xml\"><securecookie host=\"^\\.?www\\.frederikssund\\.dk\" name=\".+\"/><rule from=\"^http://(www\\.)?frederikssund\\.dk/\" to=\"https://www.frederikssund.dk/\"/></ruleset>", "<ruleset name=\"Free-TV-Video-Online.me\" default_off=\"failed ruleset test\" f=\"Free-TV-Video-Online.me.xml\"><securecookie host=\"^\\.free-tv-video-online\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FreeBSD.org (partial)\" f=\"FreeBSD.xml\"><securecookie host=\"^(?!\\.freebsd\\.org$).\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FreeBSDNews.com\" f=\"FreeBSDNews.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FreeBSD Foundation.org\" f=\"FreeBSD_Foundation.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FreeBSoft.org (partial)\" f=\"FreeBSoft.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FreeBusy.io\" f=\"FreeBusy.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"freedesktop.org (partial)\" f=\"FreeDesktop.xml\"><securecookie host=\"^bug\" name=\".\"/><rule from=\"^http://(?:download|sitewranglers)\\.freedesktop\\.org/\" to=\"https://fontconfig.freedesktop.org/\"/><rule from=\"^http://xorg\\.freedesktop\\.org/wiki(?=$|\\?)\" to=\"https://wiki.freedesktop.org/xorg\"/><rule from=\"^http://xorg\\.freedesktop\\.org/(?:wiki/)?\" to=\"https://wiki.freedesktop.org/xorg/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FreeFind.com\" f=\"FreeFind.xml\"><securecookie host=\"^(?:control|search|www)?\\.freefind\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FreeMarket Lite.cc\" default_off=\"failed ruleset test\" f=\"FreeMarket_Lite.cc.xml\"><rule from=\"^http://freemarketlite\\.cc/+\" to=\"https://www.freemarketlite.cc/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FreeRTOS.org (partial)\" f=\"FreeRTOS.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FreeSWITCH.org (partial)\" f=\"FreeSWITCH.org.xml\"><securecookie host=\"^\\w\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FreeScoreNation.com\" default_off=\"failed ruleset test\" f=\"FreeScoreNation.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?freescorenation\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FreeSoundEffects.com\" f=\"FreeSoundEffects.com.xml\"><securecookie host=\"(^|\\.)freesoundeffects\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FreeStyler.WS\" f=\"FreeStyler.WS.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FreeUnlocks.com\" f=\"FreeUnlocks.com.xml\"><securecookie host=\"^(?:www)?\\.freeunlocks\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FreeWheel (self-signed)\" default_off=\"expired, self-signed\" f=\"FreeWheel-problematic.xml\"><securecookie host=\"^\\.?freewheel\\.tv$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?freewheel\\.tv/\" to=\"https://freewheel.tv/\"/></ruleset>", "<ruleset name=\"FreeWheel (partial)\" default_off=\"failed ruleset test\" f=\"FreeWheel.xml\"><securecookie host=\"^.*\\.fwmrm\\.net$\" name=\".+\"/><securecookie host=\"^mrm\\.freewheel\\.tv$\" name=\".+\"/><rule from=\"^http://mrm\\.freewheel\\.tv/\" to=\"https://mrm.freewhell.tv/\"/><rule from=\"^http://2(912a|df7d)\\.v\\.fwmrm\\.net/\" to=\"https://2$1.v.fwmrm.net/\"/></ruleset>", "<ruleset name=\"Free Assange Now.org\" default_off=\"failed ruleset test\" f=\"Free_Assange_Now.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Free Barrett Brown.org\" f=\"Free_Barrett_Brown.org.xml\"><securecookie host=\"^\\.freebarrettbrown\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Free Bible Software.com\" default_off=\"missing certificate chain\" f=\"Free_Bible_Software.com.xml\"><securecookie host=\"^(?:development\\.|www\\.)?freebiblesoftware\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Free Chelsea.com\" f=\"Free_Chelsea.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://freechelsea\\.com/\" to=\"https://www.freechelsea.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Free Jeremy.net\" f=\"Free_Jeremy.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Free Language.org\" f=\"Free_Language.org.xml\"><securecookie host=\"^\\.freelanguage\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Free Lauri.com\" f=\"Free_Lauri.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Free Movement.org.uk\" default_off=\"failed ruleset test\" f=\"Free_Movement.org.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Free Porn Gif.com (false MCB)\" platform=\"mixedcontent\" f=\"Free_Porn_Gif.com-falsemixed.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Free Porn Gif.com (partial)\" f=\"Free_Porn_Gif.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?freeporngif\\.com/+(?!css/|favicon\\.ico)\"/><securecookie host=\"^\\.\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Free Press.net\" f=\"Free_Press.xml\"><securecookie host=\"^(?:act\\.|analytics\\.|www\\.)?freepress\\.net$\" name=\".+\"/><rule from=\"^http://s3\\.freepress\\.net/\" to=\"https://s3.amazonaws.com/s3.freepress.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Free Press Unlimited.org\" f=\"Free_Press_Unlimited.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Free Rainbow Tables.com\" default_off=\"failed ruleset test\" f=\"Free_Rainbow_Tables.xml\"><securecookie host=\"^(?:www\\.)?freerainbowtables\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Free Snowden.is\" f=\"Free_Snowden.is.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Free Speech.org\" f=\"Free_Speech.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Free State Project.org\" default_off=\"failed ruleset test\" f=\"Free_State_Project.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Free TV Online.com (partial)\" default_off=\"expired\" f=\"Free_TV_Online.com.xml\"><rule from=\"^http://(?:www\\.)?freetvonline\\.com/(?=css/|images/|showImages/)\" to=\"https://www.freetvonline.com/\"/></ruleset>", "<ruleset name=\"Free Utopia.org\" default_off=\"mismatched\" f=\"Free_Utopia.org.xml\"><securecookie host=\"^(?:www\\.)?freeutopia\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?freeutopia\\.org/\" to=\"https://www.freeutopia.org/\"/></ruleset>", "<ruleset name=\"Free Your Android.org\" f=\"Free_Your_Android.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Free practice tests.org\" f=\"Free_practice_tests.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Freebase.com (partial)\" default_off=\"failed ruleset test\" f=\"Freebase.xml\"><securecookie host=\".*\\.freebase\\.com$\" name=\".*\"/><rule from=\"^http://freebase\\.com/\" to=\"https://www.freebase.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Freebaselibs.com\" default_off=\"failed ruleset test\" f=\"Freebaselibs.com.xml\"><rule from=\"^http://freebaselibs\\.com/\" to=\"https://static.freebase.com/\"/></ruleset>", "<ruleset name=\"Freecause.com\" default_off=\"failed ruleset test\" f=\"Freecause.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Freeciv.org (partial)\" f=\"Freeciv.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Freecode.com (partial)\" default_off=\"refused\" f=\"Freecode.xml\"><rule from=\"^http://(?:www\\.)?freecode\\.com/(?=avatars/|images/|password_resets/|screenshots/|session/|user/)\" to=\"https://freecode.com/\"/></ruleset>", "<ruleset name=\"Freecycle.org (partial)\" f=\"Freecycle.xml\"><securecookie host=\"^(?:web)?mail\\.freecycle\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Freed0m4All.net (partial)\" f=\"Freed0m4All.net.xml\"><securecookie host=\"^\\.freed0m4all\\.net$\" name=\"\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Freedom-IP.com\" f=\"Freedom-IP.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Freedom from Religion Foundation (partial)\" f=\"Freedom-from-Religion-Foundation.xml\"><exclusion pattern=\"^http://(?:www\\.)?ffrf\\.org/news/radio(?:$|\\?|/)\"/><securecookie host=\"^\\.?ffrf\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Freedom to Connect\" default_off=\"self-signed\" f=\"Freedom-to-Connect.xml\"><rule from=\"^http://(?:www\\.)?freedom-to-connect\\.net/\" to=\"https://freedom-to-connect.net/\"/></ruleset>", "<ruleset name=\"Freedom to Tinker.com\" f=\"Freedom-to-Tinker.xml\"><securecookie host=\"^(?:.*\\.)?freedom-to-tinker.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FreedomBoxFoundation.org\" f=\"FreedomBoxFoundation.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FreedomDefined.org\" f=\"FreedomDefined.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FreedomPop.com (partial)\" f=\"FreedomPop.com.xml\"><securecookie host=\"^(?:www)?\\.freedompop\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Freedom Inc.nl\" f=\"Freedom_Inc.nl.xml\"><rule from=\"^http://www\\.freedominc\\.nl/\" to=\"https://freedominc.nl/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Freedom Online Coalition.com\" f=\"Freedom_Online_Coalition.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Freedom not Fear.org\" f=\"Freedom_not_Fear.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Press Freedom Foundation.org\" default_off=\"failed ruleset test\" f=\"Freedom_of_the_Press_Foundation.xml\"><securecookie host=\"^\\.pressfreedomfoundation\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Freedombox Foundation\" platform=\"mixedcontent\" f=\"Freedombox.xml\"><rule from=\"^http://(?:www\\.)?freedomboxfoundation\\.org/\" to=\"https://www.freedomboxfoundation.org/\"/></ruleset>", "<ruleset name=\"Freedomhouse.org\" f=\"Freedomhouse.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"freegeoip.net\" f=\"Freegeoip.net.xml\"><securecookie host=\"^\\.freegeoip\\.net$\" name=\"^(?:__cfuid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Freelancer\" f=\"Freelancer.xml\"><securecookie host=\"^(?:.*\\.)?freelancer\\.co(?:m|\\.uk)$\" name=\".*\"/><rule from=\"^http://(cdn\\d+\\.|www\\.)?freelancer\\.co(m|\\.uk)/\" to=\"https://$1freelancer.co$2/\"/></ruleset>", "<ruleset name=\"Freelancers Union.org\" default_off=\"failed ruleset test\" f=\"Freelancers_Union.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Freelansim.ru (partial)\" f=\"Freelansim.ru.xml\"><rule from=\"^http://(?:www\\.)?freelansim\\.ru/(?=assets/|favicon\\.ico|favicon\\.png)\" to=\"https://freelansim.ru/\"/></ruleset>", "<ruleset name=\"Freemailer.ch\" f=\"Freemailer.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"freenet.de (partial)\" default_off=\"failed ruleset test\" f=\"Freenet.de.xml\"><securecookie host=\"^(?:w*\\.)?mload\\.webmail\\.freenet\\.de$\" name=\".+\"/><rule from=\"^http://abakus\\.freenet\\.de/\" to=\"https://secure.freenet.de/abakus.freenet.de/\"/><rule from=\"^http://(?:blob|code)\\.freene?t\\.de/\" to=\"https://secure.freenet.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Freepik.com (partial)\" f=\"Freepik.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Freerangekitten.com\" f=\"Freerangekitten.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Freescale.com (partial)\" default_off=\"failed ruleset test\" f=\"Freescale.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?freescale\\.com/(?!favicon\\.ico|files/|(?:idp|ruhp|security|webapp)(?:$|[?/])|js/|recommendation/|shared/)\"/><securecookie host=\"^(?!www\\.).+\\.freescale\\.com$\" name=\".+\"/><rule from=\"^http://freescale\\.com/\" to=\"https://www.freescale.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Freesound.org\" f=\"Freesound.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Freestyle Capital\" default_off=\"self-signed\" f=\"Freestyle-Capital.xml\"><rule from=\"^http://(?:www\\.)?freestyle\\.vc/\" to=\"https://freestyle.vc/\"/></ruleset>", "<ruleset name=\"Freethought Blogs.com (partial)\" f=\"Freethought_Blogs.com.xml\"><securecookie host=\"^\\.freethoughtblogs\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Freezone.co.uk (partial)\" default_off=\"failed ruleset test\" f=\"Freezone.co.uk.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://freezone\\.co\\.uk/\" to=\"https://www.freezone.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FU-Berlin.de (partial)\" f=\"Freie-Universitat-Berlin.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Freifunk-Ansbach.de\" default_off=\"failed ruleset test\" f=\"Freifunk-Ansbach.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Freifunk-Goettingen.de\" f=\"Freifunk-Goettingen.de.xml\"><rule from=\"^http://goettingen\\.freifunk\\.net/(.*)\" to=\"https://freifunk-goettingen.de/$1\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"freifunk-karlsruhe.de\" default_off=\"failed ruleset test\" f=\"Freifunk-Karlsruhe.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Freifunk.net\" f=\"Freifunk.xml\"><securecookie host=\"^(bug|forum|blog\\.guetersloh|pad)\\.freifunk\\.net$\" name=\".+\"/><rule from=\"^http://facebook\\.freifunk\\.net/[^?]*\" to=\"https://www.facebook.com/pages/Freifunk/54553170762\"/><rule from=\"^http://twitter\\.freifunk\\.net/[^?]*\" to=\"https://twitter.com/freifunk\"/><rule from=\"^http://vimeo\\.freifunk\\.net/[^?]*\" to=\"https://vimeo.com/user20804353\"/><rule from=\"^http://youtube\\.freifunk\\.net/[^?]*\" to=\"https://www.youtube.com/user/FREIFUNK2013\"/><rule from=\"^http://www\\.freifunk\\.net/\" to=\"https://freifunk.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Freifunk Gera-Greiz\" f=\"Freifunk_Gera-Greiz.xml\"><securecookie host=\"^www\\.freifunk-gera-greiz\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Freight Calculator Australia\" default_off=\"self-signed\" f=\"Freight_Calculator_Australia.xml\"><rule from=\"^http://(?:www\\.)?freightcalculator\\.com\\.au/\" to=\"https://freightcalculator.com.au/\"/></ruleset>", "<ruleset name=\"Der Freitag\" f=\"Freitag.xml\"><securecookie host=\"^(www\\.|digital\\.|abo\\.)?freitag\\.de\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CNRS.fr (partial)\" default_off=\"failed ruleset test\" f=\"French-National-Centre-for-Scientific-Research.xml\"><exclusion pattern=\"^http://www\\.cnrs\\.fr/(?!/*ins2i/(?:images|IMG|plugins|squelettes/css|styles)/)\"/><securecookie host=\"^(?:nouba|support)\\.dsi\\.cnrs\\.fr$\" name=\".+\"/><rule from=\"^http://www\\.sg\\.cnrs\\.fr/[^?]*\" to=\"https://www.dgdr.cnrs.fr/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FrenchTV.to\" f=\"FrenchTV.to.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Frequentis.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Frequentis.com-falsemixed.xml\"><securecookie host=\"^www.frequentis\\.com$\" name=\".+\"/><rule from=\"^http://www\\.frequentis\\.com/(?!favicon\\.ico|fileadmin/|typo3temp/)\" to=\"https://www.frequentis.com/\"/></ruleset>", "<ruleset name=\"Frequentis.com (partial)\" default_off=\"failed ruleset test\" f=\"Frequentis.com.xml\"><exclusion pattern=\"^http://www\\.frequentis\\.com/+(?!favicon\\.ico|fileadmin/|typo3temp/)\"/><securecookie host=\"^\\.frequentis\\.com$\" name=\"^s_\\w+$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fresh-hotel.org\" f=\"Fresh-hotel.org.xml\"><securecookie host=\"^(?:w*\\.)?fresh-hotel\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FreshBSD.org\" f=\"FreshBSD.org.xml\"><rule from=\"^http://www\\.freshbsd\\.org/\" to=\"https://freshbsd.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FreshBooks (partial)\" f=\"FreshBooks.xml\"><exclusion pattern=\"^http://(?:www\\.)?freshbooks\\.com/(?!cache/|images/|javascript/|styles/)\"/><exclusion pattern=\"^http://(?:community|developers)\\.\"/><securecookie host=\"^(?!www\\.).+\\.freshbooks\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?fb-assets\\.com/\" to=\"https://$1fb-assets.com/\"/><rule from=\"^http://([\\w-]+\\.)?freshbooks\\.com/\" to=\"https://$1freshbooks.com/\"/></ruleset>", "<ruleset name=\"Freshapps\" f=\"Freshapps.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"freshcode.club\" f=\"Freshcode.club.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Freshdesk (partial)\" f=\"Freshdesk.xml\"><exclusion pattern=\"^http://(?:blog|www)\\.\"/><rule from=\"^http://assets\\.freshdesk\\.com/\" to=\"https://s3.amazonaws.com/assets.freshdesk.com/\"/><rule from=\"^http://cdn\\.freshdesk\\.com/\" to=\"https://s3.amazonaws.com/cdn.freshdesk.com/\"/><rule from=\"^http://static[1-5]?\\.freshdesk\\.com/\" to=\"https://d3o14s01j0qbic.cloudfront.net/\"/><rule from=\"^http://([\\w-]+)\\.freshdesk\\.com/\" to=\"https://$1.freshdesk.com/\"/></ruleset>", "<ruleset name=\"Freshmilk.de\" default_off=\"self-signed\" f=\"Freshmilk.de.xml\"><rule from=\"^http://(?:www\\.)?freshmilk\\.de/\" to=\"https://www.freshmilk.de/\"/><rule from=\"^http://nettv\\.freshmilk\\.de/\" to=\"https://nettv.freshmilk.de/\"/></ruleset>", "<ruleset name=\"Freshmilk.tv (partial)\" f=\"Freshmilk.tv.xml\"><exclusion pattern=\"^http://(?:www\\.)?freshmilk\\.tv/+(?!media/|static/)\"/><rule from=\"^http://(?:hub\\.|www\\.)?freshmilk\\.tv/\" to=\"https://hub.freshmilk.tv/\"/></ruleset>", "<ruleset name=\"Freshports.org\" f=\"Freshports.org.xml\"><securecookie host=\"^\\.freshports\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fressnapf.de\" f=\"Fressnapf.de.xml\"><securecookie host=\"^www\\.fressnapf\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FriBID.se\" f=\"FriBID.se.xml\"><rule from=\"^http://fribid\\.se/\" to=\"https://fribid.se/\"/><rule from=\"^http://www\\.fribid\\.se/\" to=\"https://www.fribid.se/\"/></ruleset>", "<ruleset name=\"Frictional Games (partial)\" f=\"Frictional-Games.xml\"><securecookie host=\"^(?:.*\\.)?frictionalgames\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fridge\" default_off=\"failed ruleset test\" f=\"Fridge.xml\"><securecookie host=\"^(?:.+\\.)?frid\\.ge$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?frid\\.ge/\" to=\"https://frid.ge/\"/></ruleset>", "<ruleset name=\"Friedhoff.org\" f=\"Friedhoff.org.xml\"><rule from=\"^http://(?:www\\.)?friedhoff\\.org/\" to=\"https://friedhoff.org/\"/></ruleset>", "<ruleset name=\"FriendFinder.com\" default_off=\"failed ruleset test\" f=\"FriendFinder.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://(?:www\\.)?friendfinder\\.com/\" to=\"https://secure.friendfinder.com/\"/><rule from=\"^http://(?:graphics|photos|piclist)\\.friendfinder\\.com/\" to=\"https://secureimage.securedataimages.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FriendlyDuck.com\" f=\"FriendlyDuck.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Friendly Bracelets.com (partial)\" f=\"Friendly_Bracelets.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Friendpaste.com\" f=\"Friendpaste.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Friends.nico\" f=\"Friends.nico.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Friendster (partial)\" default_off=\"failed ruleset test\" f=\"Friendster.xml\"><rule from=\"^http://(www\\.)?friendster\\.com/assets/\" to=\"https://$1friendster.com/assets/\"/><rule from=\"^http://assets0\\.frndcdn\\.net/\" to=\"https://d3outgkpos8q21.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Friesland Bank.nl (partial)\" f=\"Friesland_Bank.nl.xml\"><securecookie host=\"^(?:forms|internetbankieren)\\.frieslandbank\\.nl$\" name=\".+\"/><rule from=\"^http://(forms|internetbankieren)\\.frieslandbank\\.nl/\" to=\"https://$1.frieslandbank.nl/\"/></ruleset>", "<ruleset name=\"frim.nl\" default_off=\"self-signed\" f=\"Frim.nl.xml\"><rule from=\"^http://(?:www\\.)?frim\\.nl/\" to=\"https://www.frim.nl/\"/><rule from=\"^http://(frim|gitx)\\.frim\\.nl/\" to=\"https://$1.frim.nl/\"/></ruleset>", "<ruleset name=\"Frivillighetshuset.no\" default_off=\"failed ruleset test\" f=\"Frivillighetshuset.no.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"fromorbit.com\" f=\"Fromorbit.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Frontier Network and Computing Systems\" default_off=\"failed ruleset test\" f=\"Frontier-Network-and-Computing-Systems.xml\"><securecookie host=\"^fcns\\.eu$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?fcns\\.eu/\" to=\"https://fcns.eu/\"/></ruleset>", "<ruleset name=\"Frontier.co.uk (partial)\" f=\"Frontier.co.uk.xml\"><securecookie host=\"^(?:(?:elite|kinectimals|lostwinds|www)\\.)?frontier\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://((?:elite|kinectimals|lostwinds|www)\\.)?frontier\\.co\\.uk/\" to=\"https://$1frontier.co.uk/\"/></ruleset>", "<ruleset name=\"Frontiers (partial)\" f=\"Frontiers.xml\"><rule from=\"^http://(?:www\\.)?frontiersin\\.org/((?:Design/(?:cs|[iI]mage|j)|file)s/|(?:Script|Web)Resource\\.axd)\" to=\"https://www.frontiersin.org/$1\"/></ruleset>", "<ruleset name=\"Frontline Defenders.org\" f=\"FrontlineDefenders.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Frooition Software (partial)\" f=\"Frooition_Software.xml\"><rule from=\"^http://(freedom|my|secure)\\.frooition\\.com/\" to=\"https://$1.frooition.com/\"/></ruleset>", "<ruleset name=\"FrootVPN.com\" f=\"FrootVPN.com.xml\"><securecookie host=\"^www\\.frootvpn\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FrostWire (partial)\" f=\"FrostWire.xml\"><rule from=\"^http://static\\.frostwire\\.com/\" to=\"https://s3.amazonaws.com/static.frostwire.com/\"/></ruleset>", "<ruleset name=\"Frostmourne-WoW.eu (partial)\" default_off=\"mismatched\" f=\"Frostmourne-WoW.eu.xml\"><securecookie host=\"^img\\.frostmourne-wow\\.eu$\" name=\".+\"/><rule from=\"^http://img\\.frostmourne-wow\\.eu/\" to=\"https://img.frostmourne-wow.eu/\"/></ruleset>", "<ruleset name=\"FrozenCPU.com\" f=\"FrozenCPU.com.xml\"><securecookie host=\"^\\.www\\.frozencpu\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Frozen Yoghurt Franchise\" default_off=\"failed ruleset test\" f=\"Frozen_Yoghurt_Franchise.xml\"><securecookie host=\"^\\.frozen-yogurt-franchise.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Frozentux.net\" f=\"Frozentux.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Frugalware.org\" f=\"Frugalware.org.xml\"><exclusion pattern=\"^http://planet\\.frugalware\\.org/.+\"/><securecookie host=\"^.+\\.frugalware\\.org$\" name=\".+\"/><rule from=\"^http://lists\\.frugalware\\.org/\" to=\"https://frugalware.org/mailman/listinfo/\"/><rule from=\"^http://packages\\.frugalware\\.org/\" to=\"https://frugalware.org/packages/\"/><rule from=\"^http://planet\\.frugalware\\.org/$\" to=\"https://frugalware.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fruit Ninja.com\" f=\"Fruit_Ninja.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Frys (mismatches)\" default_off=\"mismatched\" f=\"Frys-mismatches.xml\"><rule from=\"^http://(?:www\\.)?frys\\.com/\" to=\"https://www.frys.com/\"/></ruleset>", "<ruleset name=\"Frys (partial)\" f=\"Frys.xml\"><securecookie host=\"^.*\\.frys\\.com$\" name=\".*\"/><rule from=\"^http://images\\.frys\\.com/\" to=\"https://frys.hs.llnwd.net/e1/\"/><rule from=\"^http://shop([1-6])\\.frys\\.com/\" to=\"https://shop$1.frys.com/\"/></ruleset>", "<ruleset name=\"Fshare.vn\" f=\"Fshare.vn.xml\"><securecookie host=\"^(?:www)?\\.fshare\\.vn$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fstoppers.com\" f=\"Fstoppers.com.xml\"><securecookie host=\"^(?:www\\.)?fstoppers\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fuck You Cash\" default_off=\"mismatched\" f=\"Fuck-You-Cash.xml\"><rule from=\"^http://join\\.fuckyoucash\\.com/\" to=\"https://join.fuckyoucash.com/\"/></ruleset>", "<ruleset name=\"Fuel Economy.gov\" f=\"Fuel_Economy.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"fuelcdn.com\" default_off=\"failed ruleset test\" f=\"Fuelcdn.com.xml\"><securecookie host=\"^\\.fuelcdn\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fuerza Popular (partial)\" default_off=\"failed ruleset test\" f=\"Fuerza_Popular.xml\"><rule from=\"^http://(?:fuerzapopularpe\\.keikoperu\\.com|(?:www\\.)?fuerzapopular\\.pe)/(banner/|favicon\\.ico|wp-content/)\" to=\"https://secure.bluehost.com/~keikoper/fuerzapopular.pe/$1\"/></ruleset>", "<ruleset name=\"Fujitsu (partial)\" platform=\"mixedcontent\" f=\"Fujitsu.xml\"><exclusion pattern=\"^http://(?:img\\.)?jp\\.fujitsu\\.com/imgv4/jp/\"/><securecookie host=\"^.*\\.fmworld\\.net$\" name=\".*\"/><securecookie host=\"^.*\\.fujitsu-webmart\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?fmworld\\.net/\" to=\"https://www.fmworld.net/\"/><rule from=\"^http://azby\\.fmworld\\.net/\" to=\"https://azby.fmworld.net/\"/><rule from=\"^http://img\\.jp\\.fujitsu\\.com/\" to=\"https://jp.fujitsu.com/\"/><rule from=\"^http://jp\\.fujitsu\\.com/(cgi-bin|cssv4|imgv[34])/\" to=\"https://jp.fujitsu.com/$1/\"/><rule from=\"^http://(?:www\\.)?fujitsu-webmart\\.com/\" to=\"https://www.fujitsu-webmart.com/\"/></ruleset>", "<ruleset name=\"Fukuchi.org\" f=\"Fukuchi.org.xml\"><rule from=\"^http://(?:www\\.)?fukuchi\\.org/\" to=\"https://fukuchi.org/\"/></ruleset>", "<ruleset name=\"Fulcrum Biometrics\" f=\"Fulcrum_Biometrics.xml\"><securecookie host=\"^(?:www\\.)?fulcrumbiometrics\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Full Circle Studies.com (partial)\" f=\"Full-Circle-Studies.xml\"><securecookie host=\"^(?:.*\\.)?fullcirclestudies\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FullCoin.com\" default_off=\"expired, missing certificate chain\" f=\"FullCoin.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FullContact.com\" f=\"FullContact.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Full Slate\" f=\"FullSlate.xml\"><exclusion pattern=\"^http://blog\\.fullslate\\.com/\"/><exclusion pattern=\"^http://support\\.fullslate\\.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FullStory.com (partial)\" f=\"FullStory.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FullTraffic (partial)\" f=\"FullTraffic.xml\"><exclusion pattern=\"^http://(?:www\\.)?fulltraffic\\.net/(?!(?:cart|create_account|login)(?:$|\\?))\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Full Signal (partial)\" f=\"Full_Signal.xml\"><rule from=\"^http://static\\.thefullsignal\\.com/\" to=\"https://d1jy4z176wg3x.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Fullerton.edu (partial)\" f=\"Fullerton.edu.xml\"><securecookie host=\"^(?:(?:calstate|diversity|ehis|ehs|exchange|finance|hr|my|parking|police|riskmanagement|training|vpait|www)\\.)?fullerton\\.edu$\" name=\".+\"/><rule from=\"^http://((?:(?:www\\.)?business|calstate|csuftraining|diversity|ehis|ehs|exchange|finance|giving|hr|(?:www\\.)?library|my|parking|police|pp|riskmanagement|training|vpait|www)\\.)?fullerton\\.edu/\" to=\"https://$1fullerton.edu/\"/><rule from=\"^http://rmehs\\.fullerton\\.edu/\" to=\"https://ehis.fullerton.edu/\"/></ruleset>", "<ruleset name=\"Fullrate\" f=\"Fullrate.xml\"><rule from=\"^http://(www\\.)?fullrate\\.dk/\" to=\"https://www.fullrate.dk/\"/><rule from=\"^http://forum\\.fullrate\\.dk/\" to=\"https://forum.fullrate.dk/\"/></ruleset>", "<ruleset name=\"FundFill.com\" default_off=\"failed ruleset test\" f=\"FundFill.com.xml\"><securecookie host=\"^www\\.fundfill\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FundRazr.com (partial)\" f=\"FundRazr.com.xml\"><securecookie host=\"^(?:www\\.)?fundrazr\\.com$\" name=\".+\"/><rule from=\"^http://(poweredby\\.|www\\.)?fundrazr\\.com/\" to=\"https://$1fundrazr.com/\"/><rule from=\"^http://support\\.fundrazr\\.com/favicon\\.ico\" to=\"https://fundrazr.zendesk.com/favicon.ico\"/></ruleset>", "<ruleset name=\"FundaGeek (partial)\" f=\"FundaGeek.xml\"><rule from=\"^http://(?:www\\.)?fundageek\\.com/+([^?]*).*\" to=\"https://gogetfunding.com/$1\"/></ruleset>", "<ruleset name=\"Fundacion Televisa.org (false MCB)\" platform=\"mixedcontent\" f=\"Fundacion_Televisa.org.xml\"><securecookie host=\"^\\.fundaciontelevisa\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FundersClub.com\" f=\"FundersClub.com.xml\"><securecookie host=\"^fundersclub\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"fundinfo.com (false MCB)\" platform=\"mixedcontent\" f=\"Fundinfo.com-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"fundinfo.com (partial)\" f=\"Fundinfo.com.xml\"><exclusion pattern=\"^http://about\\.fundinfo.com/+(?!wp-content/|wp-includes/)\"/><rule from=\"^http://((?:about|datahub|media|mobile|paperboy|www)\\.)?fundinfo\\.com/\" to=\"https://$1fundinfo.com/\"/></ruleset>", "<ruleset name=\"funet.fi\" f=\"Funet.fi.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Funio.com (partial)\" f=\"Funio.com.xml\"><securecookie host=\"^\\.(?:hub\\.|secure\\.)?funio\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Funker530.com\" f=\"Funker530.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Funky Android.com\" default_off=\"failed ruleset test\" f=\"Funky_Android.com.xml\"><rule from=\"^http://(?:www\\.)?funkyandroid\\.com/\" to=\"https://funkyandroid.com/\"/></ruleset>", "<ruleset name=\"Funstockdigital.co.uk\" f=\"Funstockdigital.co.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Funtoo.org (partial)\" f=\"Funtoo.org.xml\"><securecookie host=\"^bugs\\.funtoo\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Furaffinity (partial)\" f=\"Furaffinity.xml\"><securecookie host=\"^(?:forums|ox|sfw|www)?\\.furaffinity\\.net$\" name=\".+\"/><rule from=\"^http://(d|t)\\.facdn\\.net/\" to=\"https://$1.facdn.net/\"/><rule from=\"^http://((?:forums|ox|sfw|www)\\.)?furaffinity\\.net/\" to=\"https://$1furaffinity.net/\"/></ruleset>", "<ruleset name=\"Further\" f=\"Further.xml\"><securecookie host=\"^(?:www)?\\.further\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?further\\.co\\.uk/\" to=\"https://www.further.co.uk/\"/></ruleset>", "<ruleset name=\"fuscia.info\" f=\"Fuscia.info.xml\"><securecookie host=\"^fuscia\\.info$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?fuscia\\.info/\" to=\"https://fuscia.info/\"/></ruleset>", "<ruleset name=\"Fused\" f=\"Fused.xml\"><securecookie host=\"^(?:clients|support)\\.fused\\.com$\" name=\".+\"/><rule from=\"^http://((?:clients|s\\d+|soapbox|support|www)\\.)?fused\\.com/\" to=\"https://$1fused.com/\"/></ruleset>", "<ruleset name=\"Fusion-lifestyle.com\" default_off=\"failed ruleset test\" f=\"Fusion-lifestyle.com.xml\"><rule from=\"^http://(www\\.)?fusion-lifestyle\\.com/\" to=\"https://www.fusion-lifestyle.com/\"/></ruleset>", "<ruleset name=\"FusionForge.org\" f=\"FusionForge.xml\"><securecookie host=\"^(?:.*\\.)?fusionforge.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FusionIO\" default_off=\"failed ruleset test\" f=\"FusionIO.xml\"><securecookie host=\"^(?:.*\\.)?fusionio\\.com$\" name=\".*\"/><rule from=\"^http://((?:quote|support|(?:web)?mail|www)\\.)?fusionio\\.com/\" to=\"https://$1fusionio.com/\"/></ruleset>", "<ruleset name=\"FusionNet\" platform=\"mixedcontent\" f=\"FusionNet.xml\"><securecookie host=\"^(?:.+\\.)?fusion-net.co.uk$\" name=\".*\"/><rule from=\"^http://fusion-net\\.co\\.uk/\" to=\"https://fusion-net.co.uk/\"/><rule from=\"^http://www\\.fusion-net\\.co\\.uk/\" to=\"https://www.fusion-net.co.uk/\"/></ruleset>", "<ruleset name=\"Fusion Digital.io (partial)\" f=\"Fusion_Digital.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fuskator.com\" platform=\"cacert\" f=\"Fuskator.com.xml\"><securecookie host=\"^(?:(?:i1|imgsrv|www)\\.)?fuskator\\.com$\" name=\".+\"/><rule from=\"^http://((?:i1|imgsrv|www)\\.)?fuskator\\.com/\" to=\"https://$1fuskator.com/\"/></ruleset>", "<ruleset name=\"Fust.ch\" f=\"Fust.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Future Publishing (mismatches)\" default_off=\"mismatched\" f=\"Future-Publishing-mismatches.xml\"><rule from=\"^http://prg\\.(computerandvideogames|gamesradar)\\.com/\" to=\"https://prg.$1.com/\"/></ruleset>", "<ruleset name=\"Future Publishing (partial)\" f=\"Future-Publishing.xml\"><rule from=\"^http://(?:www\\.)?computerandvideogames\\.com/(reg|templates)/\" to=\"https://www.computerandvideogames.com/$1/\"/><rule from=\"^http://(?:cdn\\.)?static\\.computerandvideogames\\.com/\" to=\"https://www.computerandvideogames.com/templates/\"/></ruleset>", "<ruleset name=\"FutureLearn.com\" f=\"FutureLearn.com.xml\"><securecookie host=\"^(?:www)?\\.futurelearn\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FutureQuest (partial)\" default_off=\"failed ruleset test\" f=\"FutureQuest.net.xml\"><securecookie host=\"^(?:www\\.)?se(?:cur|rvic)e\\.(?:futurequest|questadmin)\\.net$\" name=\".+\"/><rule from=\"^http://(www\\.)?se(cur|rvic)e\\.futurequest\\.net/\" to=\"https://$1se$2e.futurequest.net/\"/><rule from=\"^http://(?:www\\.)?questadmin\\.net/(?:$|\\?.*)\" to=\"https://secure.questadmin.net/cgi-ssl/mgr.py/login\"/><rule from=\"^http://secure\\.questadmin\\.net/\" to=\"https://secure.questadmin.net/\"/></ruleset>", "<ruleset name=\"FutureZone.at\" f=\"FutureZone.at.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"futureboy.us\" f=\"Futureboy.us.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Futurity.org\" default_off=\"http redirect\" f=\"Futurity.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"fw.to\" default_off=\"mismatched\" f=\"Fw.to.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"fwdcdn.com\" f=\"Fwdcdn.com.xml\"><rule from=\"^http://([\\w-]+)\\.fwdcdn\\.com/\" to=\"https://$1.fwdcdn.com/\"/></ruleset>", "<ruleset name=\"fxguide.com (partial)\" f=\"Fxguide.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?fxguide\\.com/(?!(?:articles|contact|faq|insider|podcasts|quicktakes)(?:$|\\?|/)|favicon\\.ico|forums/(?:clientscript/||css\\.php|images/)|wp-admin/|wp-content/|wp-login\\.php)\"/><rule from=\"^http://(?:www\\.)?fxguide\\.com/wp-admin/\" to=\"https://ipa.fxguide.com/wp-admin/\"/><rule from=\"^http://(ipa\\.|www\\.)?fxguide\\.com/\" to=\"https://$1fxguide.com/\"/></ruleset>", "<ruleset name=\"fxphd\" f=\"Fxphd.xml\"><securecookie host=\"^(?:w*\\.)?fxphd\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fylde.gov.uk (partial)\" f=\"Fylde.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"G Central\" default_off=\"refused\" f=\"G-Central.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"G DATA Software (partial)\" default_off=\"failed ruleset test\" f=\"G-Data-Software.xml\"><securecookie host=\"^www\\.gdata\\.(at|be|co\\.jp|com\\.mx|ch|de|es|fr|it|nl|pl|pt)$\" name=\".+\"/><securecookie host=\"^www\\.gdatasoftware\\.co\\.uk$\" name=\".+\"/><securecookie host=\"^(br|in|jp|mx|ru|www)\\.gdatasoftware\\.com$\" name=\".+\"/><securecookie host=\"^www\\.gdata-software\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"G2 Crowd.com (partial)\" f=\"G2_Crowd.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://g2crowd\\.com/\" to=\"https://www.g2crowd.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"G2a.com\" f=\"G2a.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"G2play.net\" f=\"G2play.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"g33kinfo.com (false MCB)\" platform=\"mixedcontent\" f=\"G33kinfo.com-falsemixed.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"g33kinfo.com (partial)\" f=\"G33kinfo.com.xml\"><exclusion pattern=\"^http://g33kinfo\\.com/+(?!favicon\\.ico|info/wp-content/|info/wp-includes/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"G5 - US Department of Education\" f=\"G5.gov.xml\"><securecookie host=\"(?:^|\\.)g5\\.gov$\" name=\".+\"/><rule from=\"^(?:http://(?:www\\.)?|https://)g5\\.gov/\" to=\"https://www.g5.gov/\"/></ruleset>", "<ruleset name=\"GAC.edu\" f=\"GAC.edu.xml\"><rule from=\"^http://www\\.gac\\.edu/\" to=\"https://gac.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GAIA Host Collective\" f=\"GAIA_Host_Collective.xml\"><securecookie host=\"^(?:.+\\.)?gaiahost\\.coop$\" name=\".+\"/><rule from=\"^http://((?:securehost4|securemail2|www)\\.)?gaiahost\\.coop/\" to=\"https://$1gaiahost.coop/\"/></ruleset>", "<ruleset name=\"GAME.se (partial)\" default_off=\"connection reset\" f=\"GAME.se.xml\"><rule from=\"^http://secure\\.game\\.se/\" to=\"https://secure.game.se/\"/></ruleset>", "<ruleset name=\"GAcollege411.org\" default_off=\"failed ruleset test\" f=\"GAcollege411.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GBAtemp.net\" f=\"GBAtemp.net.xml\"><securecookie host=\"^\\.?gbatemp\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"gCDN.org\" default_off=\"failed ruleset test\" f=\"GCDN.org.xml\"><rule from=\"^http://www\\.gcdn\\.org/\" to=\"https://gcdn.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GCHQ-Careers.co.uk\" f=\"GCHQ-Careers.co.uk.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GCion.com (partial)\" f=\"GCIon.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GCM Asia.com (partial)\" f=\"GCM_Asia.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?gcmasia\\.com/(?!favicon\\.ico|_Incapsula_Resource(?:$|\\?)|open-real-account(?:$|[?/])|Templates/|tools/|Uploaded/|WebResource\\.axd)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GCM Computers.com\" f=\"GCM_Computers.com.xml\"><securecookie host=\"^(?:(?:cp|\\.webmail|www)\\.)?gcmcomputers\\.com$\" name=\".+\"/><rule from=\"^http://((?:cp|webmail|www)\\.)?gcmcomputers\\.com/\" to=\"https://$1gcmcomputers.com/\"/></ruleset>", "<ruleset name=\"gCaptain.com (partial)\" default_off=\"failed ruleset test\" f=\"GCaptain.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?gcaptain\\.com/+(?!images/)\"/><securecookie host=\"^gcaptain\\.com$\" name=\".+\"/><rule from=\"^http://c\\.gcaptain\\.com/\" to=\"https://d32gw8q6pt8twd.cloudfront.net/\"/><rule from=\"^http://cf\\.gcaptain\\.com/\" to=\"https://d38ecmhxsvwui3.cloudfront.net/\"/><rule from=\"^http://cfs1\\.gcaptain\\.com/\" to=\"https://d2m8pnbf2v4ae2.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GChat.com\" f=\"GChat.com.xml\"><securecookie host=\"^\\.gchat\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GEANT.net (partial)\" default_off=\"failed ruleset test\" f=\"GEANT.net.xml\"><exclusion pattern=\"^http://geant3\\.archive\\.geant\\.net/(?!_layouts/|_login/|_wpresources/|[sS]tyle%20Library/|_trust/|WebResource\\.axd\\?)\"/><exclusion pattern=\"^http://www\\.geant\\.net/+(?!_catalogs/|_layouts/|_login/|Style%20Library/|_trust/|WebResource\\.axd)\"/><securecookie host=\"^crowd\\.geant\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GEANT.org (partial)\" default_off=\"failed ruleset test\" f=\"GEANT.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GE Money\" default_off=\"failed ruleset test\" f=\"GEMoney.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GENEVI.org (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"GENEVI.org-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GENEVI.org (partial)\" default_off=\"failed ruleset test\" f=\"GENEVI.org.xml\"><exclusion pattern=\"^http://(?:www\\.)?genevi\\.org/+(?!favicon\\.ico|sites/)\"/><securecookie host=\"^(?:bug|project)s\\.genivi\\.org$\" name=\".+\"/><rule from=\"^http://((?:bugs|projects|www)\\.)?genivi\\.org/\" to=\"https://$1genivi.org/\"/></ruleset>", "<ruleset name=\"GENI.net (partial)\" f=\"GENI.xml\"><securecookie host=\"^portal\\.geni\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GF Financial Group\" f=\"GF-Financial.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GFI-Italia.com (partial)\" f=\"GFI-Italia.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://gfi-italia\\.com/\" to=\"https://www.gfi-italia.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GFI.nl\" f=\"GFI.nl.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://gfi\\.nl/\" to=\"https://www.gfi.nl/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GFI Cloud\" default_off=\"failed ruleset test\" f=\"GFI_Cloud.xml\"><securecookie host=\"^www\\.gficloud\\.com$\" name=\".+\"/><rule from=\"^http://((?:forgot|login|redirect|signup|www)\\.)?gficloud\\.com/\" to=\"https://$1gficloud.com/\"/></ruleset>", "<ruleset name=\"GFI Hispana.com\" f=\"GFI_Hispana.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://gfihispana\\.com/\" to=\"https://www.gfihispana.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GFI Software.de\" f=\"GFI_Software.de.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://gfisoftware\\.de/\" to=\"https://www.gfisoftware.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GFI.com (partial)\" f=\"GFI_Software_Development.xml\"><exclusion pattern=\"^http://www\\.gfi\\.com/blog/(?!wp-content/)\"/><exclusion pattern=\"^http://kb\\.gfi\\.com/(?!resource/)\"/><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^(?!www\\.)\\w\" name=\".\"/><securecookie host=\"^www\\.\" name=\"^(?:ASP\\.NET_SessionId$|EntryURL$|SC_ANALYTICS|adv$|loc$)\"/><rule from=\"^http://kb\\.gfi\\.com/resource/\" to=\"https://gfi.secure.force.com/partnersurvey/resource/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GFM Trader.com\" f=\"GFM_Trader.com.xml\"><securecookie host=\"^(?:w*\\.)?gfmtrader.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GFS France.com (partial)\" f=\"GFS_France.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://gfsfrance\\.com/\" to=\"https://www.gfsfrance.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GH static.com\" f=\"GH_static.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ghacks.net\" f=\"GHacks.net.xml\"><exclusion pattern=\"^http://cdn\\.ghacks\\.net/$\"/><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://(www\\.|deals\\.)?ghacks\\.net/\" to=\"https://$1ghacks.net/\"/><rule from=\"^http://cdn\\.ghacks\\.net/(wp-content|wp-includes)/\" to=\"https://cdn.ghacks.net/$1/\"/></ruleset>", "<ruleset name=\"GHash.IO\" default_off=\"failed ruleset test\" f=\"GHash.IO.xml\"><securecookie host=\"^\\.ghash\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GIAC.org\" f=\"GIAC.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GIDApp.com\" f=\"GIDApp.com.xml\"><securecookie host=\"^www\\.gidapp\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GIDForums.com\" f=\"GIDForums.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GIDNetwork.com (partial)\" default_off=\"failed ruleset test\" f=\"GIDNetwork.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GIMP foo\" default_off=\"self-signed\" f=\"GIMP-foo.xml\"><rule from=\"^http://(?:www\\.)?gimpfoo\\.de/\" to=\"https://gimpfoo.de/\"/></ruleset>", "<ruleset name=\"Hehner Reus Systems GmbH\" f=\"GIPS.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GJ Open.com\" f=\"GJ_Open.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GKG\" f=\"GKG.xml\"><securecookie host=\"^(?:.+\\.)?gkg\\.net$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?gkg\\.net/\" to=\"https://www.gkg.net/\"/></ruleset>", "<ruleset name=\"GKVnet-ag.de\" f=\"GKVnet-ag.de.xml\"><rule from=\"^http://www\\.gkvnet-ag\\.de/$\" to=\"https://www.gkvnet-ag.de/svnet-online/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GLAAD.org\" f=\"GLAAD.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GLAD.org\" f=\"GLAD.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GLS Bank\" f=\"GLS.de.xml\"><securecookie host=\"^(www\\.|blog\\.)?gls\\.de\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GMO.com\" f=\"GMO.com.xml\"><securecookie host=\"^www\\.gmo\\.com$\" name=\".+\"/><rule from=\"^http://gmo\\.com/\" to=\"https://www.gmo.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GMO BB.jp (partial)\" f=\"GMO_BB.jp.xml\"><securecookie host=\"^(?:file|help|webmail)\\.gmobb\\.jp\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GMO Cloud.com (partial)\" default_off=\"failed ruleset test\" f=\"GMO_Cloud.com.xml\"><securecookie host=\"^(?:contact|order|www)\\.gmocloud\\.com$\" name=\".+\"/><rule from=\"^http://blog\\.gmocloud\\.com/[^?]*\" to=\"https://www.gmocloud.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GMO Cloud.us\" f=\"GMO_Cloud.us.xml\"><securecookie host=\"^my\\.gmocloud\\.us$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GMO.jp (partial)\" f=\"GMO_Internet.xml\"><exclusion pattern=\"http://cloud\\.gmo\\.jp/+(?!common/|favicon\\.ico|(?:\\w+/)?images/|\\w+/style\\.css|this\\.css)\"/><exclusion pattern=\"http://point\\.gmo\\.jp/$\"/><securecookie host=\"^point\\.gmo\\.jp$\" name=\".+\"/><rule from=\"^http://img\\.gmo\\.jp/\" to=\"https://cache.img.gmo.jp/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GMO Registry.com\" f=\"GMO_Registry.com.xml\"><securecookie host=\"^www\\.gmoregistry\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?gmo-registry\\.com/\" to=\"https://www.gmoregistry.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GMO server.jp\" f=\"GMO_server.jp.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GMP Lib.org\" f=\"GMP_Lib.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GMRU.net\" f=\"GMRU.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GMX (partial)\" f=\"GMX.xml\"><securecookie host=\"^mobile\\.gmx\\.de$\" name=\".+\"/><securecookie host=\"^(?:service|\\.suche|\\.?www)?\\.gmx\\.net$\" name=\".+\"/><rule from=\"^http://i[012]\\.gmx\\.com/\" to=\"https://sec-s.uicdn.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GND-Tech.com (problematic)\" default_off=\"expired, self-signed\" platform=\"mixedcontent\" f=\"GND-Tech.com-problematic.xml\"><securecookie host=\"^\\.gnd-tech\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?gnd-tech\\.com/\" to=\"https://www.gnd-tech.com/\"/></ruleset>", "<ruleset name=\"GND-Tech.com (partial)\" f=\"GND-Tech.com.xml\"><rule from=\"^http://cdn\\.gnd-tech\\.com/\" to=\"https://s3-us-west-1.amazonaws.com/cdn.gnd-tech.com/\"/></ruleset>", "<ruleset name=\"GNOME (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"GNOME-falsemixed.xml\"><rule from=\"^http://(blog|new)s\\.gnome\\.org/\" to=\"https://$1s.gnome.org/\"/></ruleset>", "<ruleset name=\"GNOME (partial)\" f=\"GNOME.xml\"><exclusion pattern=\"^http://(?:blog|new)s\\.gnome\\.org/\"/><securecookie host=\"^(?:.*\\.)?gnome\\.org$\" name=\".+\"/><rule from=\"^http://((?:admin|api|blogs|bugs|bugzilla|(?:\\w+\\.)?bugzilla-attachments|build|cloud|developer|download|etherpad|extensions|foundation|git|glade|help|l10n|library|live|mail|mango|meetbot|nagios|news|ostree|people|planet|progress|projects|rt|static|usability|vote|webstats|wiki|www)\\.)?gnome\\.org/\" to=\"https://$1gnome.org/\"/><rule from=\"^http://ldap\\.gnome\\.org/\" to=\"https://www.gnome.org/\"/><rule from=\"^http://src\\.gnome\\.org/\" to=\"https://git.gnome.org/browse/\"/><rule from=\"^http://(?:www\\.)?gnomejournal\\.org/\" to=\"https://www.gnome.org/\"/><rule from=\"^http://(?:www\\.)?gupnp\\.org/\" to=\"https://live.gnome.org/GUPnP/\"/></ruleset>", "<ruleset name=\"GNS3.com (partial)\" f=\"GNS3.com.xml\"><securecookie host=\"^\\.gns3\\.com$\" name=\"^(?:__cfduid|__qca|cf_clearance)$\"/><securecookie host=\"^community\\.gns3\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GNU.io\" default_off=\"failed ruleset test\" f=\"GNU.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GNU.org\" f=\"GNU.org.xml\"><rule from=\"^http://(cvs|git|bzr0\\.savannah|hg0\\.savannah|vcs0\\.savannah|web\\.cvs0\\.savannah|bzr0\\.sv|web\\.cvs0\\.sv|hg0\\.sv|vcs0\\.sv)\\.gnu\\.org/\" to=\"https://bzr.savannah.gnu.org/\"/><rule from=\"^http://(eggs|mail)\\.gnu\\.org/\" to=\"https://lists.gnu.org/\"/><rule from=\"^http://(savanah|savanna|subversions)\\.gnu\\.org/\" to=\"https://savannah.gnu.org/\"/><rule from=\"^http://arch0\\.sv\\.gnu\\.org/\" to=\"https://arch.savannah.gnu.org/\"/><rule from=\"^http://(dl0\\.savannah|dl0\\.sv)\\.gnu\\.org/\" to=\"https://download.savannah.gnu.org/\"/><rule from=\"^http://git0\\.sv\\.gnu\\.org/\" to=\"https://git.savannah.gnu.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GNU Radio.org\" f=\"GNU_Radio.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GNUsocial.de\" f=\"GNUsocial.de.xml\"><securecookie host=\"^gnusocial\\.de$\" name=\".+\"/><rule from=\"^http://www\\.gnusocial\\.de/\" to=\"https://gnusocial.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GNUsocial.no\" default_off=\"failed ruleset test\" f=\"GNUsocial.no.xml\"><securecookie host=\"^(?:www\\.)?gnusocial\\.no$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GO.com (partial)\" platform=\"mixedcontent\" f=\"GO.com.xml\"><exclusion pattern=\"^http://a\\d?\\.espncdn\\.com/(?:espn360|media/motion)/\"/><securecookie host=\"^\\.go\\.com$\" name=\"^(?:mbox|s_pers|s_sess|s_vi)$\"/><securecookie host=\"^(?:(?:\\.?disneyparks|\\.?disneyworld|quickquote)\\.disney|(?:(?:\\.games|proxy|[rs]|streak)\\.)?espn)\\.go\\.com$\" name=\".+\"/><rule from=\"^http://(abc|ctologgerdev01\\.analytics|(?:(?:analytics|disneyparks|disneyworld|mobile|quickquote)\\.)?disney|(?:(?:broadband|games|proxy|[rs]|streak)\\.)?espn|globalregsession|marvelstore|register|sw88|tredir)\\.go\\.com/\" to=\"https://$1.go.com/\"/><rule from=\"^http://a?(home\\.disney|global)\\.go\\.com/\" to=\"https://$1.go.com/\"/><rule from=\"^http://games-ak\\.espn\\.go\\.com/(banners|img)/\" to=\"https://games.espn.go.com/$1/\"/><rule from=\"^http://g\\.espncdn\\.com/flb/static/\" to=\"https://games.espn.go.com/flb/static/\"/></ruleset>", "<ruleset name=\"GOC.io\" f=\"GOC.io.xml\"><securecookie host=\"^\\.goc\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GOG.com\" f=\"GOG.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GOV.UK\" f=\"GOV.UK.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GO Transit (partial)\" f=\"GO_Transit.xml\"><rule from=\"^http://(onthegoalerts|secure\\d*)\\.gotransit\\.com/\" to=\"https://$1.gotransit.com/\"/></ruleset>", "<ruleset name=\"GP.se (partial)\" default_off=\"failed ruleset test\" f=\"GP.se.xml\"><exclusion pattern=\"^http://info\\.gp\\.se/(?!image_processor/|polopoly_fs/)\"/><rule from=\"^http://(?:info\\.|(www\\.))?gp\\.se/\" to=\"https://$1gp.se/\"/><rule from=\"^http://sifomedia\\.gp\\.se/\" to=\"https://oasc16.247realmedia.com/\"/></ruleset>", "<ruleset name=\"GPFI\" default_off=\"failed ruleset test\" f=\"GPFI.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GPGTools.org\" f=\"GPGTools.org.xml\"><rule from=\"^http://nightly\\.gpgtools\\.org/\" to=\"https://releases.gpgtools.org/nightlies/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GPLHost (partial)\" default_off=\"missing certificate chain\" f=\"GPLHost.xml\"><securecookie host=\"^dtc\\.\\w+\\.gplhost\\.com$\" name=\".*\"/><rule from=\"^http://dtc(\\.sharedfr|\\.node\\d{1,5})?\\.gplhost\\.com/\" to=\"https://dtc$1.gplhost.com/\"/><rule from=\"^http://dtc\\.gplhost\\.co\\.uk/\" to=\"https://dtc.gplhost.co.uk/\"/></ruleset>", "<ruleset name=\"GPShopper.com (partial)\" f=\"GPShopper.com.xml\"><rule from=\"^http://(analytics|cdn|static)\\.gpshopper\\.com/\" to=\"https://$1.gpshopper.com/\"/></ruleset>", "<ruleset name=\"GPUGRID.net\" f=\"GPUGRID.net.xml\"><securecookie host=\"^.*\\.gpugrid\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GPUL.org (partial)\" default_off=\"failed ruleset test\" f=\"GPUL.org.xml\"><rule from=\"^http://(?:www\\.)?gpul\\.org/\" to=\"https://gpul.org/\"/></ruleset>", "<ruleset name=\"GP ehosting.com\" f=\"GP_ehosting.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"gPodder (partial)\" f=\"GPodder.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.bugs\\.\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GQ-magazine.co.uk (partial)\" f=\"GQ-magazine.co.uk.xml\"><exclusion pattern=\"^http://(?:www\\.)?gq-magazine\\.co\\.uk/(?!_/)\"/><rule from=\"^http://(?:www\\.)?gq-magazine\\.co\\.uk/_/\" to=\"https://d3u12z27ui3vom.cloudfront.net/Build-GQ-master/1220-22b97fd67340/\"/></ruleset>", "<ruleset name=\"GQ.com (partial)\" f=\"GQ.xml\"><rule from=\"^http://gq\\.com/\" to=\"https://www.gq.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GRC.com\" f=\"GRC.com.xml\"><securecookie host=\"^www\\.grc\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GRCtech.com\" f=\"GRCtech.com.xml\"><securecookie host=\"^www\\.grctech\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GRML.org\" f=\"GRML.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GRSecurity.net\" f=\"GRSecurity.net.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GRÜN Software\" f=\"GRUN_Software.xml\"><securecookie host=\"^www\\.gruen\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GS-media.de\" f=\"GS-media.de.xml\"><securecookie host=\"^\\.gs-media\\.de\" name=\".+\"/><rule from=\"^http://(css|flags|netbar|themes|www)\\.gs-media\\.de/\" to=\"https://$1.gs-media.de/\"/></ruleset>", "<ruleset name=\"GSA.gov (partial)\" default_off=\"failed ruleset test\" f=\"GSA.gov.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GSI Commerce\" default_off=\"mismatched\" f=\"GSI-Commerce.xml\"><rule from=\"^http://qpbs\\.imageg\\.net/\" to=\"https://qpbs.imageg.net/\"/></ruleset>", "<ruleset name=\"GSI.de\" f=\"GSI.de.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GSL-Co2.com\" platform=\"mixedcontent\" f=\"GSL-Co2.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GSU.edu (false MCB)\" platform=\"mixedcontent\" f=\"GSU.edu-falsemixed.xml\"><securecookie host=\"^www\\.gsu\\.edu$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?gsu\\.edu/\" to=\"https://www.gsu.edu/\"/></ruleset>", "<ruleset name=\"GSU.edu (partial)\" f=\"GSU.edu.xml\"><securecookie host=\"^(?:campusid|paws)\\.gsu\\.edu$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?gsu\\.edu/(?=wp-content/|wp-includes/)\" to=\"https://www.gsu.edu/\"/><rule from=\"^http://(campusid|(?:inb|www)\\.gosolar|paws|sendafile|gsu\\.view|webservices)\\.gsu\\.edu/\" to=\"https://$1.gsu.edu/\"/></ruleset>", "<ruleset name=\"GTC's Online\" default_off=\"failed ruleset test\" f=\"GTCs-Online.xml\"><securecookie host=\"^\\.gtcsonline\\.mycashflow\\.fi$\" name=\".+\"/><rule from=\"^http://(?:www\\.)peliaika\\.fi/\" to=\"https://gtcsonline.mycashflow.fi/\"/><rule from=\"^http://gtcsonline\\.mycashflow\\.fi/\" to=\"https://gtcsonline.mycashflow.fi/\"/></ruleset>", "<ruleset name=\"GTK-apps.org\" f=\"GTK-apps.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GTT.net (false MCB)\" platform=\"mixedcontent\" f=\"GTT.net.xml\"><securecookie host=\"^\\.gtt\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GU.se\" f=\"GU.se.xml\"><securecookie host=\"^gupea\\.ub\\.gu\\.se$\" name=\".+\"/><rule from=\"^http://(gupea\\.ub|webresources)\\.gu\\.se/\" to=\"https://$1.gu.se/\"/></ruleset>", "<ruleset name=\"GUADEC.org (partial)\" f=\"GUADEC.org.xml\"><rule from=\"^http://(www\\.)?guadec\\.org/\" to=\"https://$1guadec.org/\"/><rule from=\"^http://2012\\.guadec\\.org/sites/\" to=\"https://guadec.org/sites/\"/></ruleset>", "<ruleset name=\"GUUG.de\" f=\"GUUG.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GVC Credit Union\" f=\"GVC-Credit-Union.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GVNTube.com (partial)\" f=\"GVNTube.com.xml\"><rule from=\"^http://(?:www\\.)?gvntube\\.com/(favicon\\.ico|images/|javascripts/|login(?:$|\\?|/)|media/|stylesheets/)\" to=\"https://gvntube.com/$1\"/></ruleset>", "<ruleset name=\"GWhois.org (partial)\" f=\"GWhois.org.xml\"><securecookie host=\"^gwhois\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gaatur u stig slapen.nl\" default_off=\"failed ruleset test\" f=\"Gaatur_u_stig_slapen.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dhaval Kapil.me\" f=\"Gabor_Szathmari.me.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http://gaborszathmari\\.me/\" to=\"https://blog.gaborszathmari.me/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gabry.hu\" default_off=\"expired, missing certificate chain\" f=\"Gabry.hu.xml\"><securecookie host=\"^(?:www\\.)?gabry\\.hu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gaia-GIS.it\" default_off=\"failed ruleset test\" f=\"Gaia-GIS.it.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gaia Online (breaks registration)\" default_off=\"registration, avatar system not fully supported\" f=\"GaiaOnline.xml\"><exclusion pattern=\"^http://a2\\.cdn\\.gaiaonline\\.com/\"/><securecookie host=\"^.gaiaonline\\.com$\" name=\".*\"/><rule from=\"^http://gaiaonline\\.com/\" to=\"https://www.gaiaonline.com/\"/><rule from=\"^http://([^/:@\\.]+)\\.gaiaonline\\.com/\" to=\"https://$1.gaiaonline.com/\"/><rule from=\"^http://([^/:@\\.]+)\\.gaia\\.hs\\.llnwd\\.net/\" to=\"https://$1.gaia.hs.llnwd.net/\"/><rule from=\"^http://([^/:@\\.]+)\\.cdn\\.gaiaonline\\.com/\" to=\"https://$1.cdn.gaiaonline.com/\"/><rule from=\"^http://gaiaonlinehelp\\.com/\" to=\"https://www.gaiaonlinehelp.com/\"/><rule from=\"^http://([^/:@\\.]+)\\.gaiaonlinehelp\\.com/\" to=\"https://$1.gaiaonlinehelp.com/\"/></ruleset>", "<ruleset name=\"Gajim.org\" f=\"Gajim.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Galaxis.at\" f=\"Galaxis.xml\"><securecookie host=\"^(?:www)?\\.galaxis\\.at$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Galaxus.ch\" f=\"Galaxus.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Galaxy Project.org (partial)\" f=\"Galaxy_Project.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gallup (partial)\" f=\"Gallup.xml\"><exclusion pattern=\"^http://www\\.gallup\\.com/+(?!Assets/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Galois.com\" default_off=\"failed ruleset test\" f=\"Galois.com.xml\"><rule from=\"^http://corp\\.galois\\.com/$\" to=\"https://galois.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GamCare.org.uk (partial)\" default_off=\"522\" f=\"GamCare.xml\"><rule from=\"^http://(?:secure\\.|www\\.)?gamcare\\.org\\.uk/((?:forum/)?cs|image)s/\" to=\"https://secure.gamcare.org.uk/$1s/\"/></ruleset>", "<ruleset name=\"GambleID\" default_off=\"failed ruleset test\" f=\"GambleID.xml\"><securecookie host=\".+\\.gambleid\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?gambleid\\.com/\" to=\"https://www.gambleid.com/\"/><rule from=\"^http://(admin|developer|enterprise|myaccount)\\.gambleid\\.com/\" to=\"https://$1.gambleid.com/\"/></ruleset>", "<ruleset name=\"Gambling Commission.gov.uk (partial)\" f=\"Gambling_Commission.xml\"><securecookie host=\"^secure\\.gamblingcommission\\.gov\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gambling Portal Webmasters Association (partial)\" f=\"Gambling_Portal_Webmasters_Association.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Game Link (partial)\" f=\"Game-Link.xml\"><rule from=\"^http://(?:www\\.)?gamelink\\.com/(login|shipping)\\.jhtml($|[;\\?])\" to=\"https://www.gamelink.com/$1.jhtml$2\"/><rule from=\"^http://gfx3\\.gamelink\\.com/\" to=\"https://gamelink.hs.llnwd.net/e1/images/\"/></ruleset>", "<ruleset name=\"Game Show Network (partial)\" default_off=\"failed ruleset test\" f=\"Game-Show-Network.xml\"><securecookie host=\"^(?:www\\.)?gsn\\.com$\" name=\"^bb_.*$\"/><rule from=\"^http://(?:www\\.)?tv\\.gsn\\.com/\" to=\"https://www.tv.gsn.com/\"/><rule from=\"^http://(www\\.)?gsn\\.com/(cgi/(account/register|cash/wwcpa/register|nosession/)|dynamic/|forums/)\" to=\"https://$1gsn.com/$2\"/><rule from=\"^http://(www\\.)?worldwinner\\.com/(cgi/(login\\.html|nosession/)|dynamic/|images/)\" to=\"https://$1worldwinner.com/$2\"/><rule from=\"^http://cdn\\.worldwinner\\.com/\" to=\"https://gp1.wpc.edgecastcdn.net/\"/></ruleset>", "<ruleset name=\"Game.co.uk\" f=\"Game.co.uk.xml\"><rule from=\"^http://(?:www\\.)?game\\.co\\.uk/\" to=\"https://www.game.co.uk/\"/></ruleset>", "<ruleset name=\"GameDev.net (partial)\" f=\"GameDev.net.xml\"><exclusion pattern=\"^http://(?:www\\.)?gamedev\\.net/page/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GameFly\" default_off=\"needs clearnet testing\" f=\"GameFly.xml\"><securecookie host=\"^www\\.gamefly\\.co(?:\\.uk|m)$\" name=\".+\"/><rule from=\"^http://gamefly\\.co(\\.uk|m)/\" to=\"https://www.gamefly.co$1/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GameFly CDN.com\" f=\"GameFly_CDN.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GameHouse\" default_off=\"failed ruleset test\" f=\"GameHouse.xml\"><securecookie host=\"^.*\\.gamehouse\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?gamehouse\\.com/\" to=\"https://www.gamehouse.com/\"/><rule from=\"^http://(media|support)\\.gamehouse\\.com/\" to=\"https://$1.gamehouse.com/\"/><rule from=\"^http://ad\\.ghfusion\\.com/\" to=\"https://ad.ghfusion.com/\"/></ruleset>", "<ruleset name=\"GameInformer.com (partial)\" f=\"GameInformer.xml\"><securecookie host=\"^(?:www)?\\.gameinformer\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GameSports.net (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"GameSports.net-falsemixed.xml\"><securecookie host=\"^broadcasting\\.gamesports\\.net$\" name=\".+\"/><rule from=\"^http://(?:broadcasting\\.)?gamesports\\.net/\" to=\"https://broadcasting.gamesports.net/\"/></ruleset>", "<ruleset name=\"GameSports.net (partial)\" f=\"GameSports.net.xml\"><exclusion pattern=\"^http://broadcasting\\.gamesports\\.net/+(?!images/)\"/><securecookie host=\"^\\.gamesports\\.net$\" name=\"^gs_\\w+$\"/><rule from=\"^http://(broadcasting|forum|static|www)\\.gamesports\\.net/\" to=\"https://$1.gamesports.net/\"/><rule from=\"^http://(css|flags|netbar|themes)\\.cdn\\.gamesports\\.net/\" to=\"https://$1.gs-media.de/\"/></ruleset>", "<ruleset name=\"GameSpot.com (false MCB)\" platform=\"mixedcontent\" f=\"GameSpot.com-falsemixed.xml\"><securecookie host=\"^www\\.gamespot\\.com\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GameSpot (partial)\" f=\"GameSpot.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GameStop\" default_off=\"broken\" f=\"GameStop.xml\"><rule from=\"^http://(www\\.)?gamestop\\.com/(?:(.+/images|[cC]ommon|gs/(?:landing|merchincludes)|INTL|JavaScript|mrkt)/|.+\\.css$)\" to=\"https://$1gamestop.com/$2\"/></ruleset>", "<ruleset name=\"GameTree\" default_off=\"failed ruleset test\" f=\"GameTree.xml\"><securecookie host=\"^gametreedeveloper\\.com$\" name=\".*\"/><rule from=\"^http://(www\\.)?gametree(?:developer|linux)\\.com/\" to=\"https://$1gametreedeveloper.com/\"/><rule from=\"^http://cdn\\.gametreelinux\\.com/\" to=\"https://d303q111h1m66t.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Gamebillet.com\" f=\"Gamebillet.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"gamedesire.net (partial)\" f=\"Gamedesire.net.xml\"><rule from=\"^http://photos-1\\.gamedesire\\.net/\" to=\"https://e3228179915a08bd7e37-5d69d236ea985bd6e2070d8724d53456.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://photos-2\\.gamedesire\\.net/\" to=\"https://e3f51024f050759f7996-7353508386eef0cf2e5b88063e9df0e2.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://photos-3\\.gamedesire\\.net/\" to=\"https://888908a8a91b641e6a67-7e55c3863a20b7cd1941980d016517fa.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://photos-4\\.gamedesire\\.net/\" to=\"https://60b63af08206a373f3af-736369e37fca9c51db6ab510561606c6.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://photos-5\\.gamedesire\\.net/\" to=\"https://621677fdefd90f85a52a-b6139ea58ae4d364e7b4bd4667a1c497.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://photos-6\\.gamedesire\\.net/\" to=\"https://af8d3a47a81718cefa81-092f7446244ae8acdfdac8010fb979cd.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://photos-7\\.gamedesire\\.net/\" to=\"https://614a85fb3d3c967a8ec5-1d529e27d70978c2b79448c725df2738.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://photos-8\\.gamedesire\\.net/\" to=\"https://573a22c7efb0251d38f2-87b36d2522973cbc189ecd1c3c4899eb.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://photos-9\\.gamedesire\\.net/\" to=\"https://9c355a3ef7902c58f8c3-2968a6ed64c8971ba68b842decd2980d.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://photos-10\\.gamedesire\\.net/\" to=\"https://d3673d8f8c3a865506dc-7d83ed208f9667477016ebfe6ac5ce62.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://photos-11\\.gamedesire\\.net/\" to=\"https://551442956d1acb2b1ac1-b6b048cb71860b8f89a51e8ff21479aa.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://photos-12\\.gamedesire\\.net/\" to=\"https://b6092b1ede836d275575-c3f6d1586b2580acbe6579e8eb935fd7.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://photos-13\\.gamedesire\\.net/\" to=\"https://3daaecb033373e0b2101-70b1b2585d1b9a060f1c8b9e7768ed38.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://photos-15\\.gamedesire\\.net/\" to=\"https://73a523f744d40ef6e1ea-e266b9b68094d09351772a92303a5498.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://photos-16\\.gamedesire\\.net/\" to=\"https://6c0411fb3fc0be77b0de-2e254e45e3a9aa8529b4e5d95b3b5673.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://photos-17\\.gamedesire\\.net/\" to=\"https://17ce5d735a99c6d96ee6-947a6139d03941c2771ec84916445494.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://photos-38\\.gamedesire\\.net/\" to=\"https://289d643eaa9a1888ba4c-04f12471bcdb95cca3eeca2eb5591ec9.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://photos-42\\.gamedesire\\.net/\" to=\"https://c913c7fbe304b76ded85-f041eef37cfea00a1dcae6859e4fae41.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://photos-48\\.gamedesire\\.net/\" to=\"https://b223bd47ce46d2ab6b47-12643ce45db55bfccbbdf83d0572b127.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://photos-50\\.gamedesire\\.net/\" to=\"https://a3e605ccc7eed766293f-bbc3afff9c06ca2e8d6ce9265e4caf01.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://photos-74\\.gamedesire\\.net/\" to=\"https://9f68ec267a18e90d8671-d946aa0389f9fea95272af17b1d5e649.ssl.cf1.rackcdn.com/\"/><rule from=\"^http://photos-76\\.gamedesire\\.net/\" to=\"https://04079b3c5fffcb144679-73bdb3f152213b22052a33e18373fccd.ssl.cf1.rackcdn.com/\"/></ruleset>", "<ruleset name=\"Gamefactory.jp\" f=\"Gamefactory.jp.xml\"><securecookie host=\"^\\.gamefactory\\.jp$\" name=\".+\"/><rule from=\"^http://www\\.gamefactory\\.jp/\" to=\"https://www.gamefactory.jp/\"/></ruleset>", "<ruleset name=\"Gamegeek-denter\" f=\"Gamegeek-denter.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gameladen\" f=\"Gameladen.xml\"><securecookie host=\"^\\.gameladen\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"gameoapp.com\" f=\"Gameoapp.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Gameological Society (partial)\" f=\"Gameological_Society.xml\"><exclusion pattern=\"^http://(?:www\\.)?gameological\\.com/(?!favicon\\.ico)\"/><rule from=\"^http://(?:quickman\\.|www\\.)?gameological\\.com/\" to=\"https://douky4lqbffj8.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Gamersfirst.com (partial)\" f=\"Gamersfirst.com.xml\"><rule from=\"^http://(?:www\\.)?gamersfirst\\.com/\" to=\"https://www.gamersfirst.com/\"/><rule from=\"^http://merchants\\.gamersfirst\\.com/\" to=\"https://merchants.gamersfirst.com/\"/></ruleset>", "<ruleset name=\"GamesOnly.at\" f=\"GamesOnly.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GamesPlanet (partial, buggy)\" default_off=\"breaks some flash content\" f=\"GamesPlanet.xml\"><rule from=\"^http://(uk|es|it|fr)\\.gamesplanet\\.com/\" to=\"https://$1.gamesplanet.com/\"/></ruleset>", "<ruleset name=\"Gameselectors\" f=\"Gameselectors.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gamesites.cz\" f=\"Gamesites.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gamesrocket.de\" f=\"Gamesrocket.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gamestar.de\" f=\"Gamestar.de.xml\"><rule from=\"^http://images\\.gamestar\\.de/\" to=\"https://images.gamestar.de/\"/></ruleset>", "<ruleset name=\"Gamestar Mechanic\" f=\"Gamestar_Mechanic.xml\"><securecookie host=\".*\\.gamestarmechanic\\.com$\" name=\".+\"/><rule from=\"^http://((?:(?:chalkable|edmodo|lti|schoology)?(?:\\.stage)?|cq|dev|dyn|ltps|msu|njbegich|q2l|ramapo|stmarysschool|www)\\.)?gamestarmechanic\\.com/\" to=\"https://$1gamestarmechanic.com/\"/><rule from=\"^http://cdn\\.gamestarmechanic\\.com/\" to=\"https://d1uoa9d4t4btfa.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Gameswelt.de\" f=\"Gameswelt.de.xml\"><rule from=\"^http://www\\.gameswelt\\.de/\" to=\"https://www.gameswelt.de/\"/><rule from=\"^http://(mediang|static)\\.gameswelt\\.net/\" to=\"https://$1.gameswelt.net/\"/></ruleset>", "<ruleset name=\"Gametracker.com\" f=\"Gametracker.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gamewithyourbrain\" f=\"Gamewithyourbrain.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gamezebo\" f=\"Gamezebo.xml\"><securecookie host=\"^\\.gamezebo\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?gamezebo\\.com/\" to=\"https://$1gamezebo.com/\"/><rule from=\"^http://qa\\.gamezebo\\.com/gamezebov\\d/\" to=\"https://www.gamezebo.com/\"/></ruleset>", "<ruleset name=\"gamigo.com (partial)\" default_off=\"failed ruleset test\" f=\"Gamigo.com.xml\"><securecookie host=\"^\\.gamigo\\.com$\" name=\"^BIGipServer[\\w.]+$\"/><securecookie host=\"^\\w.*\\.gamigo\\.com$\" name=\".\"/><rule from=\"^http://gamigo\\.com/\" to=\"https://www.gamigo.com/\"/><rule from=\"^http://us\\.gamigo\\.com/[^?]*\" to=\"https://en.gamigo.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gaminator\" f=\"Gaminator.xml\"><securecookie host=\"^w*\\.slotsgaminator\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?(?:gaminatorslots|slotsgaminator)\\.com/\" to=\"https://$1slotsgaminator.com/\"/></ruleset>", "<ruleset name=\"Gamingonlinux.com\" default_off=\"failed ruleset test\" f=\"Gamingonlinux.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gamma Group\" f=\"Gamma-Group.xml\"><rule from=\"^http://(?:www\\.)?gammagroup\\.com/\" to=\"https://www.gammagroup.com/\"/></ruleset>", "<ruleset name=\"GammaE.com\" f=\"GammaE.com.xml\"><securecookie host=\"^ad2\\.gammae\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?gammae\\.com/\" to=\"https://www.gammae.com/\"/><rule from=\"^http://ad2\\.gammae\\.com/\" to=\"https://ad2.gammae.com/\"/></ruleset>", "<ruleset name=\"Gamona.de\" f=\"Gamona.de.xml\"><rule from=\"^http://www\\.gamona\\.de/\" to=\"https://www.gamona.de/\"/></ruleset>", "<ruleset name=\"Gandi\" f=\"Gandi.xml\"><rule from=\"^http://(?:www\\.)?gandi\\.net/\" to=\"https://www.gandi.net/\"/><rule from=\"^http://(en|es)\\.gandi\\.net/([^?#]*)(?:\\?([^#]+))?(#.*)?$\" to=\"https://www.gandi.net/$2?lang=$1&$3$4\"/><rule from=\"^http://uk\\.gandi\\.net/([^?#]*)(?:\\?([^#]+))?(#.*)?$\" to=\"https://www.gandi.net/$1?lang=en&$2$3\"/><rule from=\"^http://(blog|cal|wiki)\\.gandi\\.net/\" to=\"https://$1.gandi.net/\"/><securecookie host=\"^(?:(?:blog|cal|en|es|uk|wiki|www)\\.)?gandi\\.net$\" name=\".*\"/></ruleset>", "<ruleset name=\"Gang Land News\" f=\"Gang_Land_News.xml\"><securecookie host=\"^\\.(?:www\\.)?ganglandnews\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gannett Company (partial)\" default_off=\"failed ruleset test\" f=\"Gannett-Company.xml\"><securecookie host=\"^(?:support|wiki)\\.dmslocal\\.com$\" name=\".+\"/><securecookie host=\"^\\.gannett\\.com$\" name=\"^s_\\w+$\"/><securecookie host=\"^(?:am[mp]oc0\\d|circportal|cwa|www\\.ganweb01|webmail(?:\\.\\w+)?)\\.gannett\\.com$\" name=\".+\"/><securecookie host=\"^classifieds\\.nncogannett\\.com$\" name=\".+\"/><rule from=\"^http://(support|wiki)\\.dmslocal\\.com/\" to=\"https://$1.dmslocal.com/\"/><rule from=\"^http://(am[mp]oc0\\d|autodisover|circportal|cwa|www\\.ganweb01|webmail(?:\\.\\w+)?)\\.gannett\\.com/\" to=\"https://$1.gannett.com/\"/><rule from=\"^http://benefits\\.gannett\\.com/[^\\?]*(\\?.*)?\" to=\"https://www.benefitsweb.com/gannett.html$1\"/><rule from=\"^http://ssl1\\.gmti\\.com/\" to=\"https://ssl1.gmti.com/\"/><rule from=\"^http://deals\\.montgomeryadvertiser\\.com/\" to=\"https://montgom.planetdiscover.com/\"/><rule from=\"^http://classifieds\\.nncogannett\\.com/\" to=\"https://classifieds.nncogannett.com/\"/></ruleset>", "<ruleset name=\"GannettLocal (partial)\" f=\"GannettLocal.xml\"><securecookie host=\"^(?:support|wiki)\\.gannettlocal\\.com$\" name=\".+\"/><rule from=\"^http://(support|wiki)\\.gannettlocal\\.com/\" to=\"https://$1.gannettlocal.com/\"/></ruleset>", "<ruleset name=\"Gannett Ridge\" default_off=\"failed ruleset test\" f=\"Gannett_Ridge.xml\"><securecookie host=\"^(?:www\\.)?gannettridge\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ganz eStore.com (partial)\" f=\"Ganz_eStore.com.xml\"><securecookie host=\"^(?:www\\.)?ganzestore\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ganzestore\\.com/\" to=\"https://www.ganzestore.com/\"/><rule from=\"^http://adimages\\.ganzestore\\.com/\" to=\"https://adimages.ganzestore.com/\"/></ruleset>", "<ruleset name=\"GarageGames\" default_off=\"failed ruleset test\" f=\"GarageGames.xml\"><securecookie host=\"^\\.garagegames\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Garcinia Cambogia VitalMend.com (partial)\" f=\"Garcinia_Cambogia_VitalMend.com.xml\"><securecookie host=\"^\\.garciniacambogiavitalmend\\.com$\" name=\"^__qca$\"/><rule from=\"^http://(www\\.)?garciniacambogiavitalmend\\.com/(?=checkout(?:$|[?/])|favicon\\.ico|wp-content/|wp-includes/)\" to=\"https://$1garciniacambogiavitalmend.com/\"/></ruleset>", "<ruleset name=\"Garfield.com\" f=\"Garfield.com.xml\"><rule from=\"^http://(?:www\\.)?garfield\\.com/\" to=\"https://garfield.com/\"/><rule from=\"^http://licensee\\.garfield\\.com/\" to=\"https://licensee.garfield.com/\"/></ruleset>", "<ruleset name=\"Garron.me\" f=\"Garron.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gartner.com (partial)\" f=\"Gartner.com.xml\"><exclusion pattern=\"^http://blogs\\.gartner\\.com/+(?!favicon\\.ico|gbn-feed(?:$|[?/])|wp-content/|wp-includes/)\"/><exclusion pattern=\"^http://www\\.gartner\\.com/(?!SignIn\\.jsp).+\\.jsp(?:$|\\?)\"/><securecookie host=\"^my\\.gartner\\.com$\" name=\".+\"/><rule from=\"^http://(?:na\\d\\.www\\.)?gartner\\.com/\" to=\"https://www.gartner.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gary Johnson 2012\" default_off=\"failed ruleset test\" f=\"Gary_Johnson_2012.xml\"><securecookie host=\"^(?:.*\\.)?garyjohnson2012\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gasngrills.com (partial)\" f=\"Gasngrills.com.xml\"><rule from=\"^http://(www\\.)?gasngrills\\.com/(images/|index\\.php\\?(?:.+&)?dispatch=(?:auth\\.login_form|image\\.captcha|profiles\\.add)|skins/)\" to=\"https://$1gasngrills.com/$2\"/></ruleset>", "<ruleset name=\"Gate Grashing Org\" default_off=\"expired, self-signed\" f=\"Gate-Crashing-Org.xml\"><rule from=\"^http://gate\\.crashing\\.org/\" to=\"https://gate.crashing.org/\"/></ruleset>", "<ruleset name=\"Gateshead.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"Gateshead.gov.uk.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gateway SB.com\" f=\"Gateway-State-Bank.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://([\\w-]+\\.)?gatewaysb\\.com/\" to=\"https://$1gatewaysb.com/\"/></ruleset>", "<ruleset name=\"Gatwick Airport\" f=\"Gatwick_Airport.xml\"><rule from=\"^http://gatwickairport\\.com/\" to=\"https://www.gatwickairport.com/\"/><rule from=\"^http://([^/:@]+)?\\.gatwickairport\\.com/\" to=\"https://$1.gatwickairport.com/\"/></ruleset>", "<ruleset name=\"Gavel Buddy.com\" f=\"Gavel_Buddy.com.xml\"><securecookie host=\"^(?:www\\.)?gavelbuddy\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gavel Buddy Live.com\" f=\"Gavel_Buddy_Live.com.xml\"><securecookie host=\"^(?:w*\\.)?gavelbuddylive\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gavin Newsom\" default_off=\"mismatched\" f=\"Gavin-Newsom.xml\"><securecookie host=\"^gavinnewsom\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?gavinnewsom\\.com/\" to=\"https://gavinnewsom.com/\"/></ruleset>", "<ruleset name=\"Gavin Hungry.io\" f=\"Gavin_Hungry.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gawker-labs.com\" f=\"Gawker-labs.com.xml\"><rule from=\"^http://www\\.gawker-labs\\.com/\" to=\"https://gawker-labs.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gawker.com\" f=\"Gawker.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://feeds\\.gawker\\.com/\" to=\"https://feeds.feedburner.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gawkerassets.com (partial)\" f=\"Gawkerassets.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gay180\" f=\"Gay180.xml\"><securecookie host=\"^\\.gay180\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GaySwap.com\" f=\"GaySwap.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GayTorrents\" f=\"GayTorrents.xml\"><rule from=\"^http://(?:www\\.)?gay-torrents\\.net/\" to=\"https://www.gay-torrents.net/\"/><rule from=\"^http://static\\.gay-torrents\\.net/\" to=\"https://static.gay-torrents.net/\"/></ruleset>", "<ruleset name=\"Gayakuman\" default_off=\"mismatched\" f=\"Gayakuman.xml\"><rule from=\"^http://(?:www\\.)?gayakuman\\.com/\" to=\"https://www.gayakuman.com/\"/></ruleset>", "<ruleset name=\"Gazeta.ru\" f=\"Gazeta.ru.xml\"><securecookie host=\"^\\.\" name=\"^_ga\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gazetaexpress.com\" platform=\"mixedcontent\" f=\"Gazetaexpress.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GeForce.com (partial)\" f=\"GeForce.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Geany.org\" f=\"Geany.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GearSourceCDN.com\" f=\"GearSourceCDN.com.xml\"><securecookie host=\"^\\.gearsourcecdn\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GearSourceEurope.com (partial)\" f=\"GearSourceEurope.xml\"><exclusion pattern=\"^http://www\\.gearsourceeurope\\.com/+(?!general/(?:dsplogin|registration)(?:$|[?/]))\"/><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gearhog (default off)\" default_off=\"Certificate mismatch\" f=\"Gearhog.xml\"><rule from=\"^http://(?:www\\.)?gearhog\\.com/\" to=\"https://www.gearhog.com/\"/></ruleset>", "<ruleset name=\"Gearman\" default_off=\"self-signed\" f=\"Gearman.xml\"><securecookie host=\"^gearman\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?gearman\\.org/\" to=\"https://gearman.org/\"/></ruleset>", "<ruleset name=\"Gearslutz.com\" f=\"Gearslutz.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gearworks Manufacturing\" default_off=\"failed ruleset test\" f=\"Gearworks_Manufacturing.xml\"><securecookie host=\"^(?:.*\\.)?gearworkstire\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"geccdn.net\" f=\"Geccdn.net.xml\"><securecookie host=\"^i\\d+\\.geccdn\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Geef.nl (partial)\" f=\"Geef.nl.xml\"><exclusion pattern=\"^http://www\\.geef\\.nl/(?!assets/|commons/|css/|donatiemodule/|externalMod\\.php|favicon\\.ico|images/|js/|login|upload/)\"/><rule from=\"^http://geef\\.nl/\" to=\"https://www.geef.nl/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Geek.com\" f=\"Geek.com.xml\"><rule from=\"^http://mobile\\.geek\\.com/\" to=\"https://www.geek.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Geek.net (partial)\" f=\"Geek.net.xml\"><rule from=\"^http://cdn\\.asset\\.geek\\.net/\" to=\"https://d2hfi8wofzzjwf.cloudfront.net/\"/></ruleset>", "<ruleset name=\"GeekISP.com\" f=\"GeekISP.com.xml\"><securecookie host=\"^(?:www\\.)?geekisp\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GeekLAN.co.uk\" f=\"GeekLAN.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GeekPark (partial)\" f=\"GeekPark.xml\"><rule from=\"^http://7mnpep\\.com2\\.z0\\.glb\\.clouddn\\.com/\" to=\"https://dn-geekpark-new.qbox.me/\"/><rule from=\"^http://7mnpep\\.com2\\.z0\\.glb\\.qiniucdn\\.com/\" to=\"https://dn-geekpark-new.qbox.me/\"/><rule from=\"^http://geekpark-img\\.qiniudn\\.com/\" to=\"https://dn-geekpark-new.qbox.me/\"/><rule from=\"^http://gpk-new\\.qiniudn\\.com/\" to=\"https://dn-geekpark-new.qbox.me/\"/></ruleset>", "<ruleset name=\"GeekTime.com\" f=\"GeekTime.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GeekWire (partial)\" default_off=\"failed ruleset test\" f=\"GeekWire.xml\"><rule from=\"^http://cdn\\.geekwire\\.com/\" to=\"https://s3.amazonaws.com/geekwire/\"/></ruleset>", "<ruleset name=\"GeekZu\" f=\"GeekZu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Geek Girls Guide.com\" f=\"Geek_Girls_Guide.com.xml\"><securecookie host=\"^\\.?www\\.geekgirlsguide\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Geek Squad.co.uk\" f=\"Geek_Squad.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Geek Tech Labs.com\" default_off=\"failed ruleset test\" f=\"Geek_Tech_Labs.com.xml\"><rule from=\"^http://geektechlabs\\.com/\" to=\"https://www.geektechlabs.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Geekdo-static.com\" f=\"Geekdo-static.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Geekevents.org\" f=\"Geekevents.org.xml\"><securecookie host=\"^\\.geekevents\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"geekhack.org\" f=\"Geekhack.org.xml\"><securecookie host=\"^geekhack\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Geekheim.de\" default_off=\"self-signed\" f=\"Geekheim.de.xml\"><rule from=\"^http://frank\\.geekheim\\.de/\" to=\"https://frank.geekheim.de/\"/></ruleset>", "<ruleset name=\"Geekify (partial)\" default_off=\"failed ruleset test\" f=\"Geekify.xml\"><rule from=\"^http://(www\\.)?geekify\\.com\\.au/(data/|fpss/|images/|sites/|user(?:$|\\?|/))\" to=\"https://$1geekify.com.au/$2\"/></ruleset>", "<ruleset name=\"Geek Net Media.com\" default_off=\"404\" f=\"Geeknet_Media.xml\"><securecookie host=\"^geeknetmedia\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Geeksphone.com\" default_off=\"failed ruleset test\" f=\"Geeksphone.com.xml\"><securecookie host=\"^(?:(?:forum|\\.?shop|www)\\.)?geeksphone\\.com$\" name=\".+\"/><rule from=\"^http://((?:forum|shop|www)\\.)?geeksphone\\.com/\" to=\"https://$1geeksphone.com/\"/><rule from=\"^http://downloads\\.geeksphone\\.com/\" to=\"https://d337ou2hengace.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Geektimes.ru (partial)\" f=\"Geektimes.ru.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"geekzone.co.nz\" f=\"Geekzone.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gehrcke.de\" f=\"Gehrcke.de.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.gehrcke\\.de/\" to=\"https://gehrcke.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"geht.net (partial)\" default_off=\"failed ruleset test\" f=\"Geht.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Geizhals.at\" f=\"Geizhals.at.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Geizhals.de\" f=\"Geizhals.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Geizhals.eu\" f=\"Geizhals.eu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gem.co (partial)\" default_off=\"failed ruleset test\" f=\"Gem.co.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gemalto.com (expired, self-signed)\" default_off=\"expired, self-signed\" f=\"Gemalto.com-problematic.xml\"><securecookie host=\"^support\\.gemalto\\.com$\" name=\".+\"/><rule from=\"^http://support\\.gemalto\\.com/\" to=\"https://support.gemalto.com/\"/></ruleset>", "<ruleset name=\"Gemalto.com (partial)\" default_off=\"failed ruleset test\" f=\"Gemalto.com.xml\"><securecookie host=\"^(?:boutique|webstore)\\.gemalto\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gemius.com (partial)\" f=\"Gemius.com.xml\"><securecookie host=\"^(?:heatmap\\.|www\\.)?gemius\\.com$\" name=\".+\"/><rule from=\"^http://gemius\\.com/+\" to=\"https://www.gemius.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gemius.pl\" f=\"Gemius.xml\"><securecookie host=\"^(?!\\.gemius\\.pl$).\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gémklub\" default_off=\"failed ruleset test\" f=\"Gemklub.xml\"><rule from=\"^http://www\\.gemklub\\.hu/\" to=\"https://www.gemklub.hu/\"/></ruleset>", "<ruleset name=\"Gemnasium.com (partial)\" f=\"Gemnasium.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gemseek.com\" f=\"Gemseek.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GenGes.com\" default_off=\"failed ruleset test\" f=\"GenGes.com.xml\"><securecookie host=\"^\\.genges\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Genbank.ru\" f=\"Genbank.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"General Electric (partial)\" f=\"General-Electric.xml\"><rule from=\"^http://files\\.([^\\.]+)\\.geblogs\\.com/\" to=\"https://s3.amazonaws.com/files.$1.geblogs.com/\"/></ruleset>", "<ruleset name=\"General Logistics Systems\" f=\"General-Logistics-Systems.xml\"><securecookie host=\"^www\\.gls-group\\.eu$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?gls-group\\.eu/\" to=\"https://www.gls-group.eu/\"/></ruleset>", "<ruleset name=\"General-anzeiger-bonn.de\" default_off=\"failed ruleset test\" f=\"General-anzeiger-bonn.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Generalitat of Catalonia (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Generalitat-of-Catalonia.xml\"><securecookie host=\"^(?:.*[^0]*\\.)?gencat\\.cat$\" name=\".*\"/><rule from=\"^http://(www\\.)?gencat\\.cat/\" to=\"https://$1gencat.cat/\"/><rule from=\"^http://www20\\.gencat\\.cat/(doc|portal/template)s/\" to=\"https://www20.gencat.cat/$1s/\"/></ruleset>", "<ruleset name=\"Genesee Photo Systems\" f=\"GeneseePhoto.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Genesis-Technologies\" f=\"Genesis-Technologies.xml\"><securecookie host=\"^(?:www\\.)?genesis-technologies\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"genesis4gamer.de (partial)\" f=\"Genesis4gamer.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gentle labs.com\" default_off=\"failed ruleset test\" f=\"Gentle_labs.com.xml\"><securecookie host=\"^\\.gentlelabs\\.com$\" name=\".+\"/><rule from=\"^http://gentlelabs\\.com/\" to=\"https://www.gentlelabs.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"gentoo-blog.de (partial)\" f=\"Gentoo-blog.de.xml\"><rule from=\"^http://www\\.gentoo-blog\\.de/\" to=\"https://gentoo-blog.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gentoo-eV.org\" f=\"Gentoo-eV.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gentoo.org (partial)\" default_off=\"failed ruleset test\" f=\"Gentoo.xml\"><exclusion pattern=\"^http://forums-web1\\.gentoo\\.org/\"/><securecookie host=\".*\\.gentoo\\.org$\" name=\".+\"/><rule from=\"^http://distfiles\\.gentoo\\.org/\" to=\"https://gentoo.osuosl.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"gentooexperimental.org (partial)\" default_off=\"self-signed\" f=\"Gentooexperimental.org.xml\"><rule from=\"^http://(?:www\\.)?gentooexperimental\\.org/~\" to=\"https://www.gentooexperimental.org/~\"/></ruleset>", "<ruleset name=\"Genymotion.com\" f=\"Genymotion.com.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://genymotion\\.com/\" to=\"https://www.genymotion.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GeoAmigo\" f=\"GeoAmigo.xml\"><securecookie host=\"^(?:www\\.)?geoamigo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GeoCoder.ca\" default_off=\"failed ruleset test\" f=\"GeoCoder.xml\"><securecookie host=\"^(?:.*\\.)?geocoder\\.ca$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GeoGebra.org\" f=\"GeoGebra.org.xml\"><securecookie host=\"^(?:(?:blog|community|events|\\.?forum|gathering|tube|tube-test|vanillatest|wiki|www)?\\.)?geogebra\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GeoPlatform.gov\" f=\"GeoPlatform.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GeoTrust.net\" f=\"GeoTrust.net.xml\"><securecookie host=\"^\\.geotrust\\.net$\" name=\"^v1st$\"/><rule from=\"^http://(enterprise-security-center\\.ilg|www)\\.geotrust\\.net/\" to=\"https://$1.geotrust.net/\"/></ruleset>", "<ruleset name=\"Geo Listening.com\" f=\"Geo_Listening.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Geocaching.com (false MCB)\" platform=\"mixedcontent\" f=\"Geocaching.com-falsemixed.xml\"><securecookie host=\"^www\\.geocaching\\.com$\" name=\".+\"/><rule from=\"^http://blog\\.geocaching\\.com/\" to=\"https://www.geocaching.com/blog/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Geocaching.com (partial)\" f=\"Geocaching.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?geocaching\\.com/blog(?:$|[?/])\"/><securecookie host=\"^shop\\.geocaching\\.com$\" name=\".+\"/><rule from=\"^http://www\\.geocaching\\.com/forums/default\\.aspx(?:\\?.*)?\" to=\"https://forums.groundspeak.com/GC/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Geoclub.de (partial)\" f=\"Geoclub.de.xml\"><securecookie host=\"^\\.geoclub\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GMU.edu (partial)\" default_off=\"failed ruleset test\" f=\"George-Mason-University.xml\"><exclusion pattern=\"^http://mason\\.gmu\\.edu/(?!~)\"/><exclusion pattern=\"^http://today\\.gmu\\.edu/+(?!css/|images/)\"/><exclusion pattern=\"^http://ulife\\.gmu\\.edu/+(?!wp-content/)\"/><securecookie host=\"^(?:eagle|peoplefinder)\\.gmu\\.edu$\" name=\".+\"/><rule from=\"^http://gmu\\.edu/\" to=\"https://www.gmu.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GWU.edu (partial)\" f=\"George-Washington-University.xml\"><exclusion pattern=\"^http://www\\.seas\\.gwu\\.edu/+(?!~|favicon\\.ico|sites/)\"/><securecookie host=\"^.*\\.gwu\\.edu$\" name=\".*\"/><rule from=\"^http://(gwtoday|www\\.seas|www)\\.gwu\\.edu/\" to=\"https://$1.gwu.edu/\"/></ruleset>", "<ruleset name=\"Georgetown University (partial)\" default_off=\"testing\" f=\"Georgetown_University.xml\"><exclusion pattern=\"^http://portal\\.scs\\.georgetown\\.edu/(?!/*(?:coursebasket/publicCourseBasket|portal/logon|portal/logonInstructor)\\.do(?:$|\\?))\"/><exclusion pattern=\"^http://www\\.ll\\.georgetown\\.edu/(?!(?:services/|services/ill/)?(?:$|\\?))\"/><securecookie host=\"^\\.\" name=\"^(?:_ga|III_EXPT_FILE$|III_SESSION_ID$|SESSION_LANGUAGE$)\"/><securecookie host=\"^(?:secure\\.alumni|campus|commons|eaplus|gquads|gucms-mgmt|guevents|hoyalink|(?:mail|schedule|www)\\.law|(?:\\.?catalog|repository)\\.library|m|msb|myaccess|wiki\\.uis|uis-bboard-\\d|www[134])\\.georgetown\\.edu$\" name=\".+\"/><rule from=\"^http://georgetown\\.edu/\" to=\"https://www.georgetown.edu/\"/><rule from=\"^http://bpe\\.georgetown\\.edu/\" to=\"https://pes.georgetown.edu/\"/><rule from=\"^http://crm\\.georgetown\\.edu/\" to=\"https://gu360.georgetown.edu/\"/><rule from=\"^http://dbbb\\.georgetown\\.edu/\" to=\"https://biostatistics.georgetown.edu/\"/><rule from=\"^http://digital\\.georgetown\\.edu/\" to=\"https://www.library.georgetown.edu/digital/\"/><rule from=\"^http://www\\.(dml|catalog\\.library|msb)\\.georgetown\\.edu/\" to=\"https://$1.georgetown.edu/\"/><rule from=\"^http://globaleducation\\.georgetown\\.edu/\" to=\"https://studyabroad.georgetown.edu/\"/><rule from=\"^http://iwpsd\\.georgetown\\.edu/.*\" to=\"https://giwps.georgetown.edu/#domain-redirected\"/><rule from=\"^http://keyform\\.georgetown\\.edu/\" to=\"https://www4.georgetown.edu/uis/keybridge/keyform/\"/><rule from=\"^http://proxy\\.library\\.georgetown\\.edu/\" to=\"https://www.proxy.library.georgetown.edu/\"/><rule from=\"^http://www\\.ll\\.georgetown\\.edu/(?=$|\\?)\" to=\"https://www.law.georgetown.edu/library/\"/><rule from=\"^http://www\\.ll\\.georgetown\\.edu/services/(?=$|\\?)\" to=\"https://www.law.georgetown.edu/library/about/services-policies/\"/><rule from=\"^http://www\\.ll\\.georgetown\\.edu/services/ill/\" to=\"https://www.law.georgetown.edu/library/about/services-policies/interlibrary-loan.cfm\"/><rule from=\"^http://lynda\\.georgetown\\.edu/[^?]*\" to=\"https://www.library.georgetown.edu/lynda\"/><rule from=\"^http://mspp\\.georgetown\\.edu/\" to=\"https://mccourt.georgetown.edu/\"/><rule from=\"^http://netid\\.georgetown\\.edu/.*\" to=\"https://uis.georgetown.edu/netid-passwords\"/><rule from=\"^http://nursing\\.georgetown\\.edu/.*\" to=\"https://nhs.georgetown.edu/nursing\"/><rule from=\"^http://ocaf\\.georgetown\\.edu/.*\" to=\"https://getinvolved.georgetown.edu/reserving-spaces\"/><rule from=\"^http://osp\\.georgetown\\.edu/.*\" to=\"https://maincampusresearch.georgetown.edu/osp\"/><rule from=\"^http://otm\\.georgetown\\.edu/\" to=\"https://transportation.georgetown.edu/\"/><rule from=\"^http://outdoored\\.georgetown\\.edu/[^?]*\" to=\"https://blogs.commons.georgetown.edu/outdoored/\"/><rule from=\"^http://pjc\\.georgetown\\.edu/\" to=\"https://cjc.georgetown.edu/\"/><rule from=\"^http://preparedness\\.georgetown\\.edu/[^?]*\" to=\"https://www.georgetown.edu/campus-life/safety-and-emergency-preparedness/\"/><rule from=\"^http://sem\\.georgetown\\.edu/.*\" to=\"https://safety.georgetown.edu/#domain-redirected\"/><rule from=\"^http://news\\.sfs\\.georgetown\\.edu/.*\" to=\"https://news.sfs.georgetown.edu/\"/><rule from=\"^http://adifferentdialogue\\.studentaffairs\\.georgetown\\.edu/.*\" to=\"https://adifferentdialogue.georgetown.edu/#domain-redirected\"/><rule from=\"^http://woodstock\\.georgetown\\.edu/[^?]*\" to=\"https://www.library.georgetown.edu/woodstock\"/><rule from=\"^http://www2\\.georgetown\\.edu/\" to=\"https://units.georgetown.edu/\"/><rule from=\"^http://yates\\.georgetown\\.edu/.*\" to=\"https://recreation.georgetown.edu/yates/#domain-redirected&mssg=no\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Georgia Innocence Project\" default_off=\"expired, self-signed\" f=\"Georgia_Innocence_Project.xml\"><rule from=\"^http://(?:www\\.)?ga-innocenceproject\\.org/\" to=\"https://ga-innocenceproject.org/\"/></ruleset>", "<ruleset name=\"Georgie Girl Australia (partial)\" default_off=\"failed ruleset test\" f=\"Georgie_Girl_Australia.xml\"><rule from=\"^http://(www\\.)?georgiegirl\\.com\\.au/(data/|fpss/|images/|sites/|user(?:$|\\?|/))\" to=\"https://$1georgiegirl.com.au/$2\"/></ruleset>", "<ruleset name=\"GeoTrust\" f=\"Geotrust.xml\"><securecookie host=\"^(?:knowledge)?\\.geotrust\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?geotrust\\.com/\" to=\"https://$1geotrust.com/\"/><rule from=\"^http://(enterprise-security-center|gesc|knowledge|products|seal|security-center|smarticon)\\.geotrust\\.com/\" to=\"https://$1.geotrust.com/\"/></ruleset>", "<ruleset name=\"Geovation.uk\" f=\"Geovation.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gephi.org\" f=\"Gephi.org.xml\"><securecookie host=\"^.+\\.gephi\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Geraspora\" f=\"Geraspora.xml\"><rule from=\"^http://(?:www\\.)?pod\\.geraspora\\.de/\" to=\"https://pod.geraspora.de/\"/></ruleset>", "<ruleset name=\"German Academic Exchange Service\" f=\"German-Academic-Exchange-Service.xml\"><securecookie host=\"^ssl\\.daad\\.de$\" name=\".*\"/><rule from=\"^http://(?:(?:ssl|www)\\.)?daad\\.de/\" to=\"https://ssl.daad.de/\"/></ruleset>", "<ruleset name=\"German Design Council\" f=\"German-Design-Council.xml\"><securecookie host=\"^(?:.*\\.)?german-design-council\\.de$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GermanTV\" f=\"GermanTV.xml\"><securecookie host=\"^(?:w*\\.)?germantv\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"German Center for Neurodegenerative Diseases\" f=\"German_Center_for_Neurodegenerative_Diseases.xml\"><securecookie host=\"^www\\.dzne\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"German Privacy Foundation\" f=\"German_Privacy_Foundation.xml\"><securecookie host=\"^(?:www\\.)?privacyfoundation\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gerv.net\" f=\"Gerv.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gesellschaft fuer Informatik\" f=\"GesellschaftInformatik.xml\"><rule from=\"^http://(?:www\\.)?gi\\.de/\" to=\"https://www.gi.de/\"/></ruleset>", "<ruleset name=\"Gesetze-im-Internet.de\" f=\"Gesetze-im-internet.de.xml\"><securecookie host=\"^www\\.gesetze-im-internet\\.de\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"get-Digital.es\" f=\"Get-Digital.es.xml\"><securecookie host=\"^\\.(?:www\\.)?get-digital\\.es$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"get-Digital.it\" f=\"Get-Digital.it.xml\"><securecookie host=\"^\\.(?:www\\.)?get-digital\\.it$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"get-Digital.nl\" f=\"Get-Digital.nl.xml\"><securecookie host=\"^\\.(?:www\\.)?get-digital\\.nl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Get.CM\" default_off=\"expired\" f=\"Get.CM.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Get.It\" f=\"Get.It.xml\"><securecookie host=\"^\\.get.it$\" name=\".+\"/><rule from=\"^http://(media\\.|www\\.)?get\\.it/\" to=\"https://$1get.it/\"/><rule from=\"^http://detect\\.get\\.it/\" to=\"https://s3.amazonaws.com/detect.get.it/\"/></ruleset>", "<ruleset name=\"GetAwayGrey\" f=\"GetAwayGrey.xml\"><securecookie host=\"^\\.getawaygrey\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GetChute (partial)\" f=\"GetChute.xml\"><rule from=\"^http://auth\\.getchute\\.com/\" to=\"https://auth.getchute.com/\"/><rule from=\"^http://media\\.getchute\\.com/\" to=\"https://s3.amazonaws.com/media.getchute.com/\"/></ruleset>", "<ruleset name=\"GetCloak.com\" f=\"GetCloak.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GetClouder.com\" default_off=\"failed ruleset test\" f=\"GetClouder.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"getDigital-Blog.de\" f=\"GetDigital-Blog.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"getDigital.co.uk\" f=\"GetDigital.co.uk.xml\"><securecookie host=\"^\\.(?:www\\.)?getdigital\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"getDigital.eu\" f=\"GetDigital.eu.xml\"><securecookie host=\"^\\.(?:www\\.)?getdigital\\.eu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"getDigital.fr\" f=\"GetDigital.fr.xml\"><securecookie host=\"^\\.(?:www\\.)?getdigital\\.fr$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GetFirebug\" f=\"GetFirebug.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GetGlue\" f=\"GetGlue.xml\"><securecookie host=\"^www\\.getglue\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?getglue\\.com/\" to=\"https://$1getglue.com/\"/><rule from=\"^http://widgets\\.getglue\\.com/\" to=\"https://s3.amazonaws.com/widgets.getglue.com/\"/></ruleset>", "<ruleset name=\"GET.HOW\" f=\"GetHOW.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"getHarvest.com (partial)\" f=\"GetHarvest.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?getharvest\\.com/(?!images/|javascripts/|signup(?:$|[?/])|stylesheets/)\"/><securecookie host=\"^\\.getharvest\\.com$\" name=\"^__utm\\w$\"/><rule from=\"^http://(?:asset\\d\\.|(www\\.))?getharvest\\.com/\" to=\"https://$1getharvest.com/\"/></ruleset>", "<ruleset name=\"GetHashing.com\" f=\"GetHashing.com.xml\"><securecookie host=\"^forum\\.gethashing\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GetPelican.com\" f=\"GetPelican.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GetPersonas.com\" f=\"GetPersonas.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GetPocket.com (partial)\" f=\"GetPocket.com.xml\"><exclusion pattern=\"^http://help\\.getpocket\\.com/(?!favicon\\.ico)\"/><securecookie host=\"^\\.getpocket\\.com$\" name=\".+\"/><rule from=\"^http://help\\.getpocket\\.com/\" to=\"https://d3jyn100am7dxp.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GetResponse.com (partial)\" f=\"GetResponse.com.xml\"><exclusion pattern=\"^http://support\\.getresponse\\.com/+(?!uploads/|wp-content/|wp-includes/)\"/><rule from=\"^http://((?:api2?|app|cdn|multimedia|secure|static|support|support-panel|www)\\.)?getresponse\\.com/\" to=\"https://$1getresponse.com/\"/></ruleset>", "<ruleset name=\"GetTraffic.com (partial)\" f=\"GetTraffic.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GetVoIP.com\" f=\"GetVoIP.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Get ASGard.com\" default_off=\"failed ruleset test\" f=\"Get_ASGard.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"get Ambassador.com (partial)\" f=\"Get_Ambassador.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Get Beagle.co (partial)\" default_off=\"failed ruleset test\" f=\"Get_Beagle.co.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Get Chef.com (partial)\" f=\"Get_Chef.com.xml\"><exclusion pattern=\"http://www\\.getchef\\.com/+(?!account(?:$|[?/]))\"/><rule from=\"^http://(supermarket\\.|www\\.)?getchef\\.com/\" to=\"https://$1getchef.com/\"/><rule from=\"^http://docs\\.getchef\\.com/+(?=_static/)\" to=\"https://d172u545pcyiea.cloudfront.net/\"/><rule from=\"^http://learn\\.getchef\\.com/(?=assets/|favicon\\.ico)\" to=\"https://d11vgriu1n9l23.cloudfront.net/\"/></ruleset>", "<ruleset name=\"get Clef.com (partial)\" f=\"Get_Clef.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Get Composer.org\" f=\"Get_Composer.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"get Final.com\" f=\"Get_Final.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Get Foxy Proxy.org (partial)\" f=\"Get_Foxy_Proxy.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Get I2P.net\" f=\"Get_I2P.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"get KeepSafe.com\" f=\"Get_KeepSafe.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Get Lantern.org\" f=\"Get_Lantern.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"get Mailbird.com\" f=\"Get_Mailbird.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"get Meadow.com\" f=\"Get_Meadow.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Get Out of Debt Guy\" f=\"Get_Out_of_Debt_Guy.xml\"><securecookie host=\"^\\.getoutofdebt\\.org$\" name=\".+\"/><rule from=\"^http://(www\\.)?getoutofdebt\\.org/\" to=\"https://$1getoutofdebt.org/\"/><rule from=\"^http://cdn\\d*\\.getoutofdebt\\.org/\" to=\"https://d3iekd80gadj25.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Get Rave.com\" f=\"Get_Rave.com.xml\"><rule from=\"^http://getrave\\.com/+\" to=\"https://www.getrave.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Get Safe Online.org\" f=\"Get_Safe_Online.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Get Scroll.com\" f=\"Get_Scroll.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Get ShareX.com\" f=\"Get_ShareX.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"get Shine.com\" default_off=\"failed ruleset test\" f=\"Get_Shine.com.xml\"><securecookie host=\"^\\.getshine\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?getshine\\.com/\" to=\"https://www.getshine.com/\"/></ruleset>", "<ruleset name=\"Get Tag.mobi\" default_off=\"mismatched\" f=\"Get_Tag.mobi.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"get jaco.com\" default_off=\"failed ruleset test\" f=\"Get_jaco.com.xml\"><securecookie host=\".*\\.getjacko\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"get pol.org\" f=\"Get_pol.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Getbootstrap.com\" f=\"Getbootstrap.com.xml\"><exclusion pattern=\"^http://themes\\.getbootstrap\\.com/products/dashboard\"/><securecookie host=\"^(www\\.|expo\\.|blog\\.|v4-alpha\\.)?getbootstrap\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GetClicky\" f=\"Getclicky.xml\"><securecookie host=\"^(?:.*\\.)?getclicky\\.com$\" name=\".+\"/><securecookie host=\"^(?:.*\\.)?staticstuff\\.net$\" name=\".+\"/><rule from=\"^http://(www\\.)?clicky\\.com/(favicon\\.ico|user(?:$|\\?|/))\" to=\"https://$1clicky.com/$2\"/><rule from=\"^http://([^/:@\\.]+\\.)?getclicky\\.com/\" to=\"https://$1getclicky.com/\"/><rule from=\"^http://(?:win\\.|www\\.)?staticstuff\\.net/\" to=\"https://win.staticstuff.net/\"/><rule from=\"^http://hello\\.staticstuff\\.net/\" to=\"https://hello.staticstuff.net/\"/><rule from=\"^http://cdn\\.staticstuff\\.net/\" to=\"https://cdn.staticstuff.net/\"/></ruleset>", "<ruleset name=\"getDigital.de\" default_off=\"failed ruleset test\" f=\"Getdigital.de.xml\"><securecookie host=\"^\\.(?:hex\\.|leet\\.|www\\.)?getdigital\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"getdns API.net\" f=\"Getdns_API.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"getgo\" default_off=\"failed ruleset test\" f=\"Getgo.xml\"><securecookie host=\"^.*\\.getgo\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?getgo\\.de/\" to=\"https://www.getgo.de/\"/><rule from=\"^http://secure\\.getgo\\.de/\" to=\"https://secure.getgo.de/\"/></ruleset>", "<ruleset name=\"Getify.com (partial)\" default_off=\"failed ruleset test\" f=\"Getify.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GetMyBalance\" f=\"Getmybalance.xml\"><securecookie host=\"^((www\\.)?getmybalance\\.com)|(www.getmybalance.ca)|(www.getmymgmbalance.com)\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Getname.ru\" f=\"Getname.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Getprice (partial)\" f=\"Getprice.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Getsatisfaction.com (partial)\" default_off=\"failed ruleset test\" f=\"Getsatisfaction.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Getty.edu\" f=\"Getty.edu.xml\"><rule from=\"^http://(?:www\\.)?getty\\.edu/\" to=\"https://www.getty.edu/\"/><rule from=\"^http://shop\\.getty\\.edu/\" to=\"https://shopgetty.myshopify.com/\"/></ruleset>", "<ruleset name=\"Getty Images (problematic)\" default_off=\"expired, mismatched, self-signed\" f=\"Getty_Images-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Getty Images (partial)\" default_off=\"failed ruleset test\" f=\"Getty_Images.xml\"><exclusion pattern=\"^http://(?:www\\.)?gettyimages\\.(?:a[et]|be|c[ah]|co\\.(?:jp|nz|uk)|com|com\\.au|d[ek]|es|f[ir]|i[ent]|n[lo]|pt|se)/(?!/*(?:[Cc][Mm][Ss]/|Fonts/|gi-resources/|[Ii]mages/|(?:cart|purchase/cart|register|sign-in)(?:$|[?/])|[Ss]tyle/|Views/\\w+/Shared/images/|purchase-assets/|sign-in/assets/))\"/><exclusion pattern=\"^http://developer\\.gettyimages\\.com/(?!/*(?:files/|(?:login|member/(?:lost|lost-username|register))(?:$|[?/])|public/))\"/><securecookie host=\"^\\.\" name=\"^(?:__qca$|_gat?$|_gat_|s_v)\"/><securecookie host=\"^(?!developer\\.|www\\.).+\\.gettyimages\\.com$\" name=\".\"/><rule from=\"^http://gettyimages\\.([^./]+|co\\.(?:jp|nz|uk)|com\\.au)/\" to=\"https://www.gettyimages.$1/\"/><rule from=\"^http://cache\\.gettyimages\\.com/\" to=\"https://delivery.gettyimages.com/\"/><rule from=\"^http://licensecompliance\\.gettyimages\\.com/+\" to=\"https://copyrightcompliance.gettyimages.com/\"/><rule from=\"^http://remote\\.gettyimages\\.com/\" to=\"https://citrix.gettyimages.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gexpro.com\" f=\"Gexpro.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GfK Etilize (partial)\" f=\"GfK_Etilize.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"gfx.ms\" f=\"Gfx.ms.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gfycat.com\" f=\"Gfycat.com.xml\"><securecookie host=\"^\\.gfycat\\.com$\" name=\".+\"/><rule from=\"^http://([^/:@\\.]+\\.)?gfycat\\.com/\" to=\"https://$1gfycat.com/\"/></ruleset>", "<ruleset name=\"ghbtns.com\" f=\"Ghbtns.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ghirardelligiftguides.com\" default_off=\"failed ruleset test\" f=\"Ghirardelligiftguides.com.xml\"><securecookie host=\"^(?:w*\\.)?ghirardelligiftguides\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ghost.org (partial)\" f=\"Ghost.org.xml\"><securecookie host=\"^ghost\\.org$\" name=\".+\"/><securecookie host=\"^\\.ghost\\.org$\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http://status\\.ghost\\.org/\" to=\"https://ghost.statuspage.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ghostbin.com\" f=\"Ghostbin.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ghostery.com\" default_off=\"failed ruleset test\" f=\"Ghostery.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ghostery Enterprise.com\" default_off=\"failed ruleset test\" f=\"Ghostery_Enterprise.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ghostery metrics optout\" default_off=\"user choice\" f=\"Ghostery_metrics_optout.xml\"><rule from=\"^https?://d\\.ghostery\\.com/.*\" to=\"https://hell.localhost/\"/></ruleset>", "<ruleset name=\"Ghostnote app.com\" f=\"Ghostnote_app.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ghowen.me\" f=\"Ghowen.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GiBlod.no\" f=\"GiBlod.xml\"><rule from=\"^http://(?:www\\.)?giblod\\.no/\" to=\"https://www.giblod.no/\"/></ruleset>", "<ruleset name=\"GiNaC.de\" f=\"GiNaC.de.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Giant Bomb.com (partial)\" f=\"Giant_Bomb.com.xml\"><exclusion pattern=\"^http://www\\.giantbomb\\.com/+(?!bundles/|favicon\\.ico)\"/><securecookie host=\"^\\.giantbomb\\.com$\" name=\"^(?:AD_SESSION|ads_firstpg)$\"/><securecookie host=\"^auth\\.giantbomb\\.com$\" name=\".+\"/><securecookie host=\"^www\\.giantbomb\\.com$\" name=\"^_promos_seen\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gibraltar.gov.gi\" f=\"Gibraltar.gov.gi.xml\"><rule from=\"^http://gibraltar\\.gov\\.gi/\" to=\"https://www.gibraltar.gov.gi/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GifBook.io\" f=\"GifBook.io.xml\"><rule from=\"^http://www\\.gifbook\\.io/\" to=\"https://gifbook.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gif Gratis.net\" default_off=\"expired, self-signed\" f=\"Gif_Gratis.net.xml\"><rule from=\"^http://(?:www\\.)?gifgratis\\.net/\" to=\"https://www.gifgratis.net/\"/></ruleset>", "<ruleset name=\"GiftTool.com\" f=\"GiftTool.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GiftedandTalented.com (partial)\" f=\"GiftedandTalented.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GigaOM.com (partial)\" f=\"GigaOM.xml\"><securecookie host=\"^\\.\" name=\"^_(?:_qca|gat?)$\"/><securecookie host=\"^(?!jobs\\.)\\w\" name=\".\"/><rule from=\"^http://jobs\\.gigaom\\.com/\" to=\"https://www.jobthread.com/\"/><exclusion pattern=\"^http://jobs\\.gigaom\\.com/+(?!files/|images/|partners/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GigaSize (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"GigaSize.xml\"><securecookie host=\"^(?:.*\\.)?gigasize\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gigabyte.com (partial)\" f=\"Gigabyte.com.xml\"><rule from=\"^http://gigabyte\\.com/\" to=\"https://www.gigabyte.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gigaclear.com (partial)\" f=\"Gigaclear.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"gigafreak.net\" f=\"Gigafreak.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gigamon.com (partial)\" f=\"Gigamon.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Giganews (partial)\" f=\"Giganews.xml\"><rule from=\"^http://(www\\.)?giganews\\.com/($|\\?|(?:auth|signup)(?:$|/)|images/|password(?:$|\\.html)|styles/)\" to=\"https://$1giganews.com/$2\"/></ruleset>", "<ruleset name=\"Gigantic Tickets (partial)\" default_off=\"failed ruleset test\" f=\"Gigantic_Tickets.xml\"><securecookie host=\"^(?:.+\\.)?gigantic\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gigantti.fi\" f=\"Gigantti.fi.xml\"><securecookie host=\"^www\\.gigantti\\.fi$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"gigaone.pl\" f=\"Gigaone.pl.xml\"><rule from=\"^http://(?:www\\.)?gigaone\\.pl/\" to=\"https://www.gigaone.pl/\"/></ruleset>", "<ruleset name=\"Gigaserver (partial)\" f=\"Gigaserver.xml\"><exclusion pattern=\"^http://(?:blog|kb)\\.\"/><securecookie host=\"^(?:.*\\.)?gigaserver\\.cz$\" name=\".*\"/><rule from=\"^http://(\\w+\\.)?gigaserver\\.cz/\" to=\"https://$1gigaserver.cz/\"/></ruleset>", "<ruleset name=\"Gigaset.com\" platform=\"mixedcontent\" f=\"Gigaset.com.xml\"><rule from=\"^http://gigaset\\.com/\" to=\"https://gigaset.com/\"/><rule from=\"^http://www\\.gigaset\\.com/\" to=\"https://gigaset.com/\"/></ruleset>", "<ruleset name=\"GigeNET.com\" f=\"GigeNET.com.xml\"><securecookie host=\"^\\.gigenet\\.com$\" name=\".+\"/><securecookie host=\"^manage\\.gigenet\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GigeNET Cloud.com\" f=\"GigeNET_Cloud.com.xml\"><securecookie host=\"^orders\\.gigenetcloud\\.com$\" name=\".+\"/><rule from=\"^http://gigenetcloud\\.gigenet\\.net/\" to=\"https://gigenetcloud.com/\"/><rule from=\"^http://(orders\\.|www\\.)?gigenetcloud\\.com/\" to=\"https://$1gigenetcloud.com/\"/></ruleset>", "<ruleset name=\"Gigster.com\" f=\"Gigster.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gigya.com (partial)\" default_off=\"failed ruleset test\" f=\"Gigya.xml\"><exclusion pattern=\"^http://blog\\.gigya\\.com/+(?!wp-content/)\"/><exclusion pattern=\"^http://info\\.gigya\\.com/+(?!$|\\?|css/|images/|rs/)\"/><securecookie host=\"^staging\\.blog\\.gigya\\.com$\" name=\".+\"/><rule from=\"^http://gigya\\.com/\" to=\"https://www.gigya.com/\"/><rule from=\"^http://cdn\\.gigya\\.com/\" to=\"https://cdns.gigya.com/\"/><rule from=\"^http://info\\.gigya\\.com/+(?:\\?.*)?$\" to=\"https://www.gigya.com/\"/><rule from=\"^http://info\\.gigya\\.com/\" to=\"https://na-sjf.marketo.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gihyo.jp\" default_off=\"failed ruleset test\" f=\"Gihyo.jp.xml\"><securecookie host=\"^gihyo\\.jp$\" name=\".+\"/><rule from=\"^http://www\\.gihyo\\.jp/\" to=\"https://gihyo/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gimme Bar.com\" f=\"Gimme_Bar.com.xml\"><rule from=\"^http://(?:www\\.)?gimmebar\\.com/\" to=\"https://gimmebar.com/\"/></ruleset>", "<ruleset name=\"Gimmickwear\" f=\"Gimmickwear.xml\"><securecookie host=\"^\\.(?:www\\.)?gimmickwear\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"gionn.net\" f=\"Gionn.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.gionn\\.net/\" to=\"https://gionn.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Giphy.com\" f=\"Giphy.com.xml\"><securecookie host=\"^\\.giphy\\.com$\" name=\".+\"/><rule from=\"^http://labs\\.giphy\\.com/\" to=\"https://giphy.com/labs/\"/><rule from=\"^http://twitter\\.giphy\\.com/\" to=\"https://giphy.com/posts/giphy-makes-twitter-uploads-even-easier//\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Girl Scouts (partial)\" f=\"Girl_Scouts.xml\"><securecookie host=\"^www\\.girlscouts\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?girlscouts\\.org/\" to=\"https://www.girlscouts.org/\"/><rule from=\"^http://blog\\.girlscouts\\.org/favicon\\.ico\" to=\"https://www.blogger.com/favicon.ico\"/></ruleset>", "<ruleset name=\"Girls Out West.com (partial)\" f=\"Girls_Out_West.com.xml\"><exclusion pattern=\"^http://forums?\\.girlsoutwest\\.com/+(?!clientscript/|cron\\.php|favicon\\.ico|images/)\"/><securecookie host=\"^(?!forum\\.).\" name=\".\"/><rule from=\"^http://forums\\.girlsoutwest\\.com/\" to=\"https://forum.girlsoutwest.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Girls Out West Free Stuff.com\" f=\"Girls_Out_West_Free_Stuff.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gismeteo.ru (partial)\" f=\"Gismeteo.ru.xml\"><securecookie host=\"^\\.?www\\.gismeteo\\.ru$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gismeteo.ua\" f=\"Gismeteo.ua.xml\"><securecookie host=\"^\\.?www\\.gismeteo\\.ua$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"gistmarks.com\" default_off=\"failed ruleset test\" f=\"Gistmarks.com.xml\"><securecookie host=\"^(?:www\\.)?gistmarks\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Git.io\" f=\"Git.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Git\" f=\"Git.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GitBook.com\" f=\"GitBook.com.xml\"><rule from=\"^http://gitbook\\.com/\" to=\"https://www.gitbook.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GitBook.IO (partial)\" f=\"GitBook.io.xml\"><rule from=\"^http://(www\\.)?gitbook\\.io/\" to=\"https://www.gitbook.com/\"/><rule from=\"^http://help\\.gitbook\\.io/\" to=\"https://help.gitbook.com/\"/><rule from=\"^http://push\\.gitbook\\.io/\" to=\"https://git.gitbook.com/\"/><rule from=\"^http://status\\.gitbook\\.io/\" to=\"https://githubio.statuspage.io/\"/></ruleset>", "<ruleset name=\"GitCop.com\" f=\"GitCop.com.xml\"><securecookie host=\"^gitcop\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GitLab.com\" f=\"GitLab.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http://doc\\.gitlab\\.com/\" to=\"https://docs.gitlab.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GitLab Pages\" f=\"GitLab.io.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://([\\w-]+)\\.gitlab\\.io/\" to=\"https://$1.gitlab.io/\"/><rule from=\"^http://gitlab\\.io/\" to=\"https://gitlab.io/\"/></ruleset>", "<ruleset name=\"GitHub Pages\" f=\"Github-Pages.xml\"><exclusion pattern=\"^http://duckietv\\.github\\.io/DuckieTV/?\"/><exclusion pattern=\"^http://googletrends\\.github\\.io/(GOPDebate1|iframe-scaffolder)/\"/><exclusion pattern=\"^http://ibotpeaches\\.github\\.io/Apktool/?\"/><exclusion pattern=\"^http://schizoduckie\\.github\\.io/DuckieTorrent/?\"/><exclusion pattern=\"^http://schizoduckie\\.github\\.io/PimpMyuTorrent/?\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GitHub\" f=\"Github.xml\"><rule from=\"^http://github\\.io/\" to=\"https://pages.github.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Githubstats.com\" f=\"Githubstats.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gitian.org\" f=\"Gitian.org.xml\"><rule from=\"^http://(?:www\\.)?gitian\\.org/\" to=\"https://gitian.org/\"/></ruleset>", "<ruleset name=\"Gitorious\" f=\"Gitorious.xml\"><rule from=\"^http://(www\\.)?gitorious\\.org/\" to=\"https://gitorious.org/\"/></ruleset>", "<ruleset name=\"Gitshell.com (partial)\" f=\"Gitshell.com.xml\"><securecookie host=\"^gitshell\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gitter.im (partial)\" f=\"Gitter.im.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://support\\.gitter\\.im/.*\" to=\"https://gitter.zendesk.com/hc\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gittip.com\" f=\"Gittip.com.xml\"><securecookie host=\"^www\\.gittip\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Give Kids the World\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Give-Kids-the-World.xml\"><securecookie host=\"^(?:secure|www)\\.gktw\\.org$\" name=\".+\"/><securecookie host=\"^www\\.givekidstheworldstore\\.org$\" name=\".+\"/><rule from=\"^http://(www\\.)?gktw\\.org/\" to=\"https://$1gktw.org/\"/><rule from=\"^http://(www\\.)?givekidstheworld\\.org/\" to=\"https://$1gktw.org/\"/><rule from=\"^http://secure\\.gktw\\.org/\" to=\"https://secure.gktw.org/\"/><rule from=\"^http://(?:www\\.)?givekidstheworldstore\\.org/\" to=\"https://www.givekidstheworldstore.org/\"/></ruleset>", "<ruleset name=\"GiveDirect\" f=\"GiveDirect.xml\"><securecookie host=\"^(?:www\\.)?givedirect\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GiveDirectly.org\" f=\"GiveDirectly.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Givex (partial)\" f=\"Givex.xml\"><securecookie host=\"^wwws-.+\\.givex\\.com$\" name=\".+\"/><rule from=\"^http://wwws(-\\w\\w\\d)?\\.givex\\.com/\" to=\"https://wwws$1.givex.com/\"/></ruleset>", "<ruleset name=\"GivingComfort.org\" default_off=\"mismatched\" f=\"GivingComfort.org.xml\"><rule from=\"^http://(www\\.)?givingcomfort\\.(?:com|org)/\" to=\"https://$1givingcomfort.org/\"/></ruleset>", "<ruleset name=\"GivingPrograms.com\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"GivingPrograms.com.xml\"><securecookie host=\"^(?:.+\\.)?givingprograms\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Givskudzoo.dk\" f=\"Givskudzoo.dk.xml\"><rule from=\"^http://(www\\.)?givskudzoo\\.dk/\" to=\"https://www.givskudzoo.dk/\"/></ruleset>", "<ruleset name=\"Gixen\" f=\"Gixen.xml\"><exclusion pattern=\"^http://www\\.gixen\\.com/index\\.php$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gizmag.com (partial)\" f=\"Gizmag.xml\"><rule from=\"^http://files\\.gizmag\\.com/\" to=\"https://d1ad9ekm4vh0vj.cloudfront.net/\"/><rule from=\"^http://images\\.gizmag\\.com/\" to=\"https://d3fvptmknnj7i1.cloudfront.net/\"/><rule from=\"^http://img(?:-\\d)?\\.gizmag\\.com/\" to=\"https://gizmag-images.imgix.net/\"/></ruleset>", "<ruleset name=\"Gizmodo.com\" f=\"Gizmodo.com.xml\"><exclusion pattern=\"^http://(?:[^./]+\\.){2,}gizmodo\\.com/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http://cache\\.gizmodo\\.com/\" to=\"https://cache.gawkerassets.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GladRags.com (partial)\" f=\"GladRags.com.xml\"><securecookie host=\"^secure\\.gladrags\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?gladrags\\.com/\" to=\"https://secure.gladrags.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Glam (partial)\" default_off=\"failed ruleset test\" f=\"Glam.xml\"><securecookie host=\"^\\.glam\\.com$\" name=\".+\"/><rule from=\"^http://www2\\.glam\\.com/\" to=\"https://swww2.glam.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Glamorous UK\" default_off=\"failed ruleset test\" f=\"Glamorous_UK.xml\"><securecookie host=\"^\\.glamorousuk\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?glamorousuk\\.com/\" to=\"https://glamorousuk.com/\"/></ruleset>", "<ruleset name=\"Glasgow.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"Glasgow.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Glass Craft & Bead Expo\" f=\"Glass-Craft-and-Bead-Expo.xml\"><rule from=\"^http://(?:www\\.)?glasscraftexpo\\.com/\" to=\"https://www.glasscraftexpo.com/\"/></ruleset>", "<ruleset name=\"Glassdoor.com (partial)\" f=\"Glassdoor.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Glasses.com (partial)\" default_off=\"failed ruleset test\" f=\"Glasses.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?glasses\\.com/(?!images/|javascript/|product-detail/get-flyout/|production_minified/|__ssobj/|user/login-modal/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Glassesusa.com\" f=\"Glassesusa.com.xml\"><rule from=\"^http://(?:www\\.)?glassesusa\\.com/\" to=\"https://www.glassesusa.com/\"/></ruleset>", "<ruleset name=\"Glb img.com (partial)\" f=\"Glb_img.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gleam\" f=\"Gleam.xml\"><securecookie host=\"^gleam\\.io$\" name=\".+\"/><rule from=\"^http://(js\\.)?gleam\\.io/\" to=\"https://$1gleam.io/\"/></ruleset>", "<ruleset name=\"GlenScott\" f=\"GlenScott.xml\"><securecookie host=\"^(?:.+\\.)?glenscott\\.net$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?glenscott\\.net/\" to=\"https://www.glenscott.net/\"/></ruleset>", "<ruleset name=\"Glenoit.com\" f=\"Glenoit.com.xml\"><securecookie host=\"^(?:www\\.)?glenoit\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Glerups\" f=\"Glerups.xml\"><rule from=\"^http://glerups\\.dk/\" to=\"https://www.glerups.dk/\"/><rule from=\"^http://([^/:@]+)\\.glerups\\.dk/\" to=\"https://$1.glerups.dk/\"/></ruleset>", "<ruleset name=\"GlimmerBlocker.org\" f=\"GlimmerBlocker.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"glispa.com\" f=\"Glispa.com.xml\"><securecookie host=\"^ads\\.glispa\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GlitterBank (partial)\" f=\"GlitterBank.xml\"><rule from=\"^http://(?:www\\.)?glitterbank\\.com/flag/\" to=\"https://secure.hostmonster.com/~glitterb/flag/\"/></ruleset>", "<ruleset name=\"GlobaLeaks.org (partial)\" default_off=\"failed ruleset test\" f=\"GlobaLeaks.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Global Footprint Network\" default_off=\"self-signed\" f=\"Global-Footprint-Network.xml\"><securecookie host=\"^www\\.footprintnetwork\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?footprintnetwork\\.org/\" to=\"https://www.footprintnetwork.org/\"/></ruleset>", "<ruleset name=\"Global Investor Relations\" default_off=\"refused\" f=\"Global-Investor-Relations.xml\"><securecookie host=\"^ww7\\.investorrelations\\.co\\.uk$\" name=\".*\"/><rule from=\"^http://(?:(?:www\\.)g-ir\\.com|ww7\\.investorrelations\\.co\\.uk)/\" to=\"https://ww7.investorrelations.co.uk/\"/></ruleset>", "<ruleset name=\"Global Marine Networks (partial)\" default_off=\"failed ruleset test\" f=\"Global-Marine-Networks.xml\"><securecookie host=\"^\\.www\\.globalmarinenet\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Global Marketing Strategies (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Global-Marketing-Strategies.xml\"><securecookie host=\"^www\\.(?:free|professional)privacypolicy\\.com$\" name=\".+\"/><securecookie host=\"^(?:www\\.)?howtowriteabookasap\\.com$\" name=\".+\"/><securecookie host=\"^www\\.termsofservicegenerator\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?fanpagegeneratorpro\\.com/\" to=\"https://$1fanpagegeneratorpro.com/\"/><rule from=\"^http://(www\\.)?(free|professional)privacypolicy\\.com/\" to=\"https://$1$2privacypolicy.com/\"/><rule from=\"^http://(www\\.)?howtowriteabookasap\\.com/\" to=\"https://$1howtowriteabookasap.com/\"/><rule from=\"^http://(www\\.)?termsofservicegenerator\\.com/\" to=\"https://$1termsofservicegenerator.com/\"/><rule from=\"^http://(www\\.)?whatsuccesstakes\\.com/\" to=\"https://$1whatsuccesstakes.com/\"/></ruleset>", "<ruleset name=\"Global Witness\" f=\"Global-Witness.xml\"><securecookie host=\"^.*\\.globalwitness\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?globalwitness\\.org/\" to=\"https://www.globalwitness.org/\"/></ruleset>", "<ruleset name=\"GlobalSign\" f=\"GlobalSign.xml\"><securecookie host=\"^(?:.*\\.)?globalsign\\.(?:com|co\\.uk|eu)$\" name=\".+\"/><rule from=\"^http://((?:archive|cn|dev|e-sign|eu|hk|dev\\.hk|jp|profile|revoked|seal|ssif1|sslcheck|static\\d|status|system(?:eu|us)?|th|dev\\.th|www)\\.)?globalsign\\.com/\" to=\"https://$1globalsign.com/\"/><rule from=\"^http://apac\\.globalsign\\.com/\" to=\"https://www.globalsign.com.sg/\"/><rule from=\"^http://blog\\.globalsign\\.com/\" to=\"https://www.globalsign.com/blog\"/><rule from=\"^http://(www\\.)?globalsign\\.(co(?:\\.in|\\.uk|m\\.au|m\\.sg)|de|es|eu|fr|net|nl)/\" to=\"https://$1globalsign.$2/\"/><rule from=\"^http://m\\.globalsign\\.eu/\" to=\"https://m.globalsign.eu/\"/></ruleset>", "<ruleset name=\"Globaltestsupply.com\" f=\"GlobalTestSupply.com.xml\"><rule from=\"^http://(www\\.)?globaltestsupply\\.com/\" to=\"https://www.globaltestsupply.com/\"/></ruleset>", "<ruleset name=\"Global 2000.at\" f=\"Global_2000.at.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Global Bersih\" f=\"Global_Bersih.xml\"><securecookie host=\"^(?:w*\\.)?globalbersih.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Global Capacity.com (partial)\" f=\"Global_Capacity.com.xml\"><securecookie host=\"^(?:clm|myaccount)\\.globalcapacity\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Global Cloud Xchange.com (partial)\" default_off=\"failed ruleset test\" f=\"Global_Cloud_Xchange.com.xml\"><rule from=\"^http://cdn\\.globalcloudxchange\\.com/\" to=\"https://d6v3rabjzlopt.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Global HIV Me Info.org\" default_off=\"mismatched\" f=\"Global_HIV_Me_Info.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Global Human Rights.org (partial)\" f=\"Global_Human_Rights.org.xml\"><exclusion pattern=\"^http://(?:www\\.)?globalhumanrights\\.org/+(?!act-now/donate-now/|wp-content/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Global Network.pl\" default_off=\"failed ruleset test\" f=\"Global_Network.pl.xml\"><rule from=\"^http://www\\.globalnetwork\\.pl/\" to=\"https://globalnetwork.pl/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Global Network Initiative.org\" default_off=\"missing certificate chain\" f=\"Global_Network_Initiative.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Global Perspectives Canada\" f=\"Global_Perspectives_Canada.xml\"><securecookie host=\"^\\.globalperspectivescanada.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Global Policy Forum\" f=\"Global_Policy_Forum.xml\"><securecookie host=\"^www\\.globalpolicy\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?globalpolicy\\.org/\" to=\"https://www.globalpolicy.org/\"/></ruleset>", "<ruleset name=\"Global Promote\" default_off=\"mismatched\" f=\"Global_Promote.xml\"><rule from=\"^http://(?:www\\.)?globalpromote\\.com/\" to=\"https://globalpromote.com/\"/></ruleset>", "<ruleset name=\"Global Research.ca (partial)\" f=\"Global_Research.ca.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Global Sources (partial)\" default_off=\"failed ruleset test\" f=\"Global_Sources.xml\"><securecookie host=\"^w*\\.globalsources\\.com$\" name=\".+\"/><rule from=\"^http://(?:s\\.|www\\.)?globalsources\\.com/\" to=\"https://www.globalsources.com/\"/><rule from=\"^http://login\\.globalsources\\.com/\" to=\"https://login.globalsources.com/\"/></ruleset>", "<ruleset name=\"Global Trade Day.org\" default_off=\"failed ruleset test\" f=\"Global_Trade_Day.org.xml\"><securecookie host=\"^www\\.globaltradeday\\.org$\" name=\".+\"/><rule from=\"^http://globaltradeday\\.org/\" to=\"https://www.globaltradeday.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Global Voices Online.org (partial)\" f=\"Global_Voices_Online.org.xml\"><securecookie host=\"^\\.(?:\\w+\\.)?globalvoicesonline\\.org$\" name=\".+\"/><rule from=\"^http://((?:advocacy|ar|aym?|bn|books|da|de|el|es|fa|fr|hu|id|it|jp|ko|mg|mk|nl|pl|pt|rising|ru|s[rvw]|www|zh)\\.)?globalvoicesonline\\.org/\" to=\"https://$1globalvoicesonline.org/\"/></ruleset>", "<ruleset name=\"Global Web.co.uk\" f=\"Global_Web.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://globalweb\\.co\\.uk/\" to=\"https://www.globalweb.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Globalclimatemarch.org\" default_off=\"cert-invalid\" f=\"Globalclimatemarch.org.xml\"><securecookie host=\"^globalclimatemarch\\.org\" name=\".+\"/><rule from=\"^http://www\\.globalclimatemarch\\.org/\" to=\"https://globalclimatemarch.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"globaloneteam.com\" f=\"Globaloneteam.com.xml\"><securecookie host=\"^(?:dsso|sso|sso-qa)\\.globaloneteam\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?globaloneteam\\.com/(?=$|\\?)\" to=\"https://me2.ihgmerlin.com/web/merlin/home\"/><rule from=\"^http://(?:www\\.)?globaloneteam\\.com//[^?]*\" to=\"https://www.ihgmerlin.com/portal/server.pt?\"/><rule from=\"^http://(?:www\\.)?globaloneteam\\.com/\" to=\"https://me2.ihgmerlin.com/me2-vanity-url-portlet/redirect/\"/><rule from=\"^http://(dsso|sso|sso-qa)\\.globaloneteam\\.com/\" to=\"https://$1.globaloneteam.com/\"/></ruleset>", "<ruleset name=\"Global Scale Technologies\" f=\"Globalscaletechnologies.com.xml\"><securecookie host=\"^(?:.*\\.)?globalscaletechnologies\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Globaltap.com\" f=\"Globaltap.com.xml\"><securecookie host=\"^billing\\.globaltap\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Globalways.net\" f=\"Globalways.net.xml\"><securecookie host=\"^(?:www\\.)?globalways\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Globat\" f=\"Globat.xml\"><securecookie host=\"^\\.globat\\.com$\" name=\".*\"/><rule from=\"^http://(secure\\.|www\\.)?globat\\.com(?:443)?/\" to=\"https://$1globat.com/\"/></ruleset>", "<ruleset name=\"Globes (partial)\" f=\"Globes.xml\"><securecookie host=\"^www\\.globes\\.co\\.il$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?globes\\.co\\.il/\" to=\"https://www.globes.co.il/\"/></ruleset>", "<ruleset name=\"Globetrotter\" f=\"Globetrotter.xml\"><rule from=\"^http://(?:www\\.)?globetrotter\\.de/\" to=\"https://www.globetrotter.de/\"/></ruleset>", "<ruleset name=\"Globevestor.com\" f=\"Globevestor.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Globus Online\" f=\"Globus-Online.xml\"><securecookie host=\"^(?:.*\\.)?globusonline\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Globus (partial)\" default_off=\"self-signed\" f=\"Globus.xml\"><securecookie host=\"^dev\\.globus\\.org$\" name=\".*\"/><rule from=\"^http://dev\\.globus\\.org/\" to=\"https://dev.globus.org/\"/></ruleset>", "<ruleset name=\"Glose.com\" f=\"Glose.com.xml\"><rule from=\"^http://(?:www\\.)?glose\\.com/\" to=\"https://glose.com/\"/></ruleset>", "<ruleset name=\"Gloucestershire.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"Gloucestershire.gov.uk.xml\"><exclusion pattern=\"^http://(?:www\\.)?gloucestershire\\.gov\\.uk/(?!/*(?:\\w+/(?:css|images|scripts/.+\\.css|template/)|images/|media/))\"/><exclusion pattern=\"^http://my(?:temp)?jobs\\.gloucestershire\\.gov\\.uk/(?!/*(?:css/|js/.+\\.css|pages/))\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gloucestershire Constabulary\" f=\"GloucestershireConstabulary.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Glowing.com (partial)\" f=\"Glowing.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Glueckspost.ch\" f=\"Glueckspost.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gluster.org\" default_off=\"failed ruleset test\" f=\"Gluster.org.xml\"><securecookie host=\"^\\.forge\\.gluster\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Glype (partial)\" platform=\"mixedcontent\" f=\"Glype.xml\"><securecookie host=\"^www\\.glype\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"glyph.im\" default_off=\"failed ruleset test\" f=\"Glyph.im.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Glyphicons.com\" f=\"Glyphicons.com.xml\"><securecookie host=\"^(www\\.)?glyphicons\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"gmedianetworks.com\" f=\"Gmedianetworks.com.xml\"><rule from=\"^http://static\\.gmedianetworks\\.com/\" to=\"https://static.gmedianetworks.com/\"/><rule from=\"^http://staticcdn\\.gmedianetworks\\.com/\" to=\"https://dn6540p04s3vz.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Gymnázium Matyáše Lercha\" f=\"Gml.cz.xml\"><rule from=\"^http://gml\\.cz/\" to=\"https://www.gml.cz/\"/><rule from=\"^http://www\\.gml\\.cz/\" to=\"https://www.gml.cz/\"/></ruleset>", "<ruleset name=\"Gna.org (partial)\" default_off=\"missing certificate chain\" f=\"Gna.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"gngr.info\" f=\"Gngr.info.xml\"><rule from=\"^http://(?:(blog\\.)|www\\.)?gngr\\.info/\" to=\"https://$1gngr.info/\"/></ruleset>", "<ruleset name=\"Gnome-look.org\" f=\"Gnome-look.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GnuCash\" f=\"GnuCash.xml\"><securecookie host=\"(^|\\.)(lists|svn|wiki|www)\\.gnucash\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GnuPG.org\" f=\"GnuPG.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GnuTLS.org (partial)\" f=\"GnuTLS.org.xml\"><rule from=\"^http://lists\\.gnutls\\.org/\" to=\"https://lists.gnupg.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gnuheter.org\" default_off=\"mismatched\" f=\"Gnuheter.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gnumeric.org\" default_off=\"self-signed\" f=\"Gnumeric.org.xml\"><rule from=\"^http://(?:www\\.)?gnumeric\\.org/\" to=\"https://www.gnumeric.org/\"/></ruleset>", "<ruleset name=\"Gnumonks.org (CAcert, partial)\" platform=\"cacert\" default_off=\"refused\" f=\"Gnumonks.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Go2Arena.com\" f=\"Go2Arena.com.xml\"><securecookie host=\"^\\.(?:www\\.)?go2arena\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Go8.edu.au\" f=\"Go8.edu.au.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GoAbroad.com (partial)\" f=\"GoAbroad.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GoAruna.com (partial)\" default_off=\"expired\" f=\"GoAruna.com.xml\"><securecookie host=\"^\\.goaruna\\.com$\" name=\"^__utm\\w$\"/><rule from=\"^http://(?:www\\.)?goaruna\\.com/(?=account(?:$|[?/])|favicon\\.ico|images/|javascripts/|stylesheets/)\" to=\"https://goaruna.com/\"/></ruleset>", "<ruleset name=\"GoCoin.com\" f=\"GoCoin.com.xml\"><securecookie host=\"^(?:\\.|dashboard\\.|www\\.)?gocoin\\.com$\" name=\".+\"/><rule from=\"^http://help\\.gocoin\\.com/\" to=\"https://gocoin.tenderapp.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GoDaddy.net\" f=\"GoDaddy.net.xml\"><securecookie host=\"^(?:aboutus|investors|newsroom)\\.godaddy\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GoDaddy.com (partial)\" default_off=\"failed ruleset test\" f=\"GoDaddy.xml\"><securecookie host=\"^(?:.*\\.)?godaddy\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GoDaddy mobile.com (partial)\" default_off=\"failed ruleset test\" f=\"GoDaddy_mobile.com.xml\"><securecookie host=\"^\\.godaddymobile\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GoDoc.org\" f=\"GoDoc.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GoEmerchant.com\" f=\"GoEmerchant.xml\"><securecookie host=\"^(?:secure)\\.gomerchant\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GoExplore.net\" default_off=\"failed ruleset test\" f=\"GoExplore.net.xml\"><exclusion pattern=\"^http:\\/\\/www\\.goexplore\\.net\\/they-did-what\\/payments-evolution-sheep-to-smartphones\"/><securecookie host=\"^www\\.goexplore\\.net$\" name=\".+\"/><rule from=\"^http://goexplore\\.net/\" to=\"https://www.goexplore.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GoFrugal.com (partial)\" f=\"GoFrugal.xml\"><securecookie host=\"^mydiscussion\\.gofrugal\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GoFundMe.com\" f=\"GoFundMe.xml\"><securecookie host=\"^(?:funds)?\\.gofundme\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GoGetSSL.com\" f=\"GoGetSSL.com.xml\"><exclusion pattern=\"^http://dev\\.gogetssl\\.com/$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GoNewSoft.com\" f=\"GoNewSoft.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GoRails.com\" f=\"GoRails.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GoSoapBox.com\" f=\"GoSoapBox.xml\"><securecookie host=\"^\\.gosoapbox\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?gosoapbox\\.com/\" to=\"https://www.gosoapbox.com/\"/></ruleset>", "<ruleset name=\"GoSquared.com\" f=\"GoSquared.com.xml\"><securecookie host=\"^\\.gosquared\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GoStats (partial)\" default_off=\"failed ruleset test\" f=\"GoStats.xml\"><rule from=\"^http://(?:www\\.)?gostats\\.com/js/\" to=\"https://ssl.gostats.com/js/\"/><rule from=\"^http://(www\\.)?ssl\\.gostats\\.com/\" to=\"https://$1ssl.gostats.com/\"/><rule from=\"^http://cdn\\.gsstatic\\.com/\" to=\"https://gostats.cachefly.net/\"/></ruleset>", "<ruleset name=\"GoToAssist.com\" f=\"GoToAssist.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.gotoassist\\.com/remote_support/\" to=\"https://www.gotoassist.com/remote-support/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GoToMeeting.com\" f=\"GoToMeeting.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GoToTraining.com\" f=\"GoToTraining.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GoToWebinar.com (partial)\" f=\"GoToWebinar.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://gotowebinar\\.com/\" to=\"https://www.gotowebinar.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GoUrl.io\" f=\"GoUrl.io.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GoWork.pl (partial)\" f=\"GoWork.pl.xml\"><exclusion pattern=\"^http://(?:www\\.)?gowork\\.pl/+(?!css/|favicon\\.ico|images/|js/|logowanie(?:$|[?/])|xml/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Go Lang.org\" f=\"Go_Lang.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Go Lucid.co\" f=\"Go_Lucid.co.xml\"><rule from=\"^http://golucid\\.co/\" to=\"https://www.golucid.co/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Go Mohu.com (partial)\" f=\"Go_Mohu.com.xml\"><securecookie host=\"^\\.store\\.gomohu\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Go Rickshaw.com\" f=\"Go_Rickshaw.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Go Turkey.com\" default_off=\"failed ruleset test\" f=\"Go_Turkey.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"go Ubiquiti.com\" f=\"Go_Ubiquiti.com.xml\"><securecookie host=\"^www\\.goubiquiti\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Go Walker.org\" f=\"Go_Walker.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.gowalker\\.org/\" to=\"https://gowalker.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Go eShow.com\" f=\"Go_eShow.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GoalWorthy.com\" f=\"GoalWorthy.com.xml\"><securecookie host=\"^(?:w*\\.)?goalworthy\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Goaldet.com\" f=\"Goaldet.com.xml\"><securecookie host=\"^(?:w*\\.)?goaldet.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gobot.io\" f=\"Gobot.io.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GodPraksis.no\" default_off=\"failed ruleset test\" f=\"GodPraksis.no.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Goddard Group\" default_off=\"self-signed\" f=\"Goddard-Group.xml\"><securecookie host=\"^(?:.*\\.)?garygoddard\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?garygoddard\\.com/\" to=\"https://www.garygoddard.com/\"/></ruleset>", "<ruleset name=\"Godville game\" f=\"Godville.xml\"><rule from=\"^http://(?:www\\.)?godvillegame\\.com/\" to=\"https://godvillegame.com/\"/></ruleset>", "<ruleset name=\"goeswhere.com\" default_off=\"failed ruleset test\" f=\"Goeswhere.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GogoTraining.com (partial)\" f=\"GogoTraining.com.xml\"><rule from=\"^http://(?:www\\.)?gogotraining\\.com/(?=(?:blog|shop)(?:$|[?/])|css/|favicon\\.ico|images/|join/login\\.php|js/)\" to=\"https://gogotraining.com/\"/></ruleset>", "<ruleset name=\"Gogo\" f=\"Gogoair.xml\"><rule from=\"^http://(?:www\\.gogoair|(?:www\\.)?gogoinflight)\\.com/\" to=\"https://gogoair.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gogobot (partial)\" f=\"Gogobot.xml\"><securecookie host=\".*\\.g(?:bot\\.me|ogobot\\.com)$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"gogoyoko.com (partial)\" default_off=\"refused\" f=\"Gogoyoko.xml\"><securecookie host=\".*\\.gogoyoko\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GoingUp.com (partial)\" f=\"GoingUp.xml\"><securecookie host=\"^(?:counter|www)\\.goingup\\.com$\" name=\".*\"/><rule from=\"^http://goingup\\.com/\" to=\"https://www.goingup.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Goip.de\" f=\"Goip.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Goke.me\" f=\"Goke.me.xml\"><securecookie host=\"^\\.goke\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Golden Adventures.com\" default_off=\"failed ruleset test\" f=\"Golden_Adventures.xml\"><securecookie host=\"^\\.goldenadventures\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Golden Charter (partial)\" f=\"Golden_Charter.xml\"><securecookie host=\"^mygoldencharter\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(mail|webservices)\\.goldencharter\\.co\\.uk/\" to=\"https://$1.goldencharter.co.uk/\"/><rule from=\"^http://webservices\\.goldencharter\\.co\\.uk:8808/portal/([^?]*)(?:\\?.*)?\" to=\"https://mygoldencharter.co.uk/$1\"/><rule from=\"^http://(?:www\\.)?mygoldencharter\\.co\\.uk/\" to=\"https://mygoldencharter.co.uk/\"/></ruleset>", "<ruleset name=\"Golden Frog.com (partial)\" default_off=\"failed ruleset test\" f=\"Golden_Frog.com.xml\"><securecookie host=\"^www\\.goldenfrog\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Goldenline.pl\" f=\"Goldenline.pl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Goldkeys.net (partial)\" default_off=\"failed ruleset test\" f=\"Goldkeys.net.xml\"><securecookie host=\"^portal\\.goldkeys\\.net$\" name=\".+\"/><rule from=\"^http://(?:portal|www)\\.goldkeys\\.(net|org)/\" to=\"https://portal.goldkeys.$1/\"/></ruleset>", "<ruleset name=\"Goldmann.pl\" default_off=\"failed ruleset test\" f=\"Goldmann.pl.xml\"><rule from=\"^http://www\\.goldmann\\.pl/\" to=\"https://goldmann.pl/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Goldsboro Web Development.com\" default_off=\"failed ruleset test\" f=\"Goldsboro_Web_Development.xml\"><securecookie host=\"^\\.?goldsborowebdevelopment.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Goldstar (partial)\" f=\"Goldstar.xml\"><exclusion pattern=\"^http://(?:i\\.|www\\.)?goldstar\\.com/(?:company|help|my_tickets|series|weekendapp)(?:$|\\?|/)\"/><securecookie host=\"^(?:i|images|www)\\.goldstar\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?goldstar\\.com/\" to=\"https://www.goldstar.com/\"/><rule from=\"^http://gifts\\.goldstar\\.com/\" to=\"https://goldstar.myshopify.com/\"/><rule from=\"^http://i(mages)?\\.goldstar\\.com/\" to=\"https://i$1.goldstar.com/\"/></ruleset>", "<ruleset name=\"Golem.de\" default_off=\"failed ruleset test\" f=\"Golem.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GolfLink.com (partial)\" f=\"GolfLink.com.xml\"><rule from=\"^http://(?:(?:cdn-www\\.)?golflink\\.com|(?:www\\.)?golflink\\.net|u?i\\.glimg\\.net)/\" to=\"https://www.golflink.com/\"/></ruleset>", "<ruleset name=\"GolfRev.com\" f=\"GolfRev.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Golf Course Industry\" f=\"Golf_Course_Industry.xml\"><securecookie host=\"^www\\.golfcourseindustry\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?golfcourseindustry\\.com/\" to=\"https://www.golfcourseindustry.com/\"/></ruleset>", "<ruleset name=\"Gold Digest (partial)\" f=\"Golf_Digest.xml\"><securecookie host=\"^secure\\.golfdigest\\.com$\" name=\".+\"/><securecookie host=\"^(www\\.)?golfdigestinsiders.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Golfsuisse.ch (partial)\" platform=\"mixedcontent\" f=\"Golfsuisse.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GolosIslama\" f=\"GolosIslama.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Goo.im\" default_off=\"expired\" f=\"Goo.im.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Good Luck Trunk.com\" f=\"Good_Luck_Trunk.com.xml\"><securecookie host=\"^\\.goodlucktrunk\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Goodreads.com\" f=\"Goodreads.xml\"><rule from=\"^http://photo\\.goodreads\\.com/\" to=\"https://s3.amazonaws.com/photo.goodreads.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"goodsearch (partial)\" f=\"Goodsearch.xml\"><rule from=\"^http://(?:www\\.)?goodsearch\\.com/(_gfx/|assets/|favicon\\.ico|legacy/|register|Registration\\.aspx|ResourceHandler\\.ashx)\" to=\"https://www.goodsearch.com/$1\"/></ruleset>", "<ruleset name=\"Goodsie (partial)\" platform=\"mixedcontent\" f=\"Goodsie.xml\"><securecookie host=\"^goodsie\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?goodsie\\.com/\" to=\"https://goodsie.com/\"/></ruleset>", "<ruleset name=\"Goodzer.com\" f=\"Goodzer.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Google (mismatches)\" default_off=\"mismatched\" f=\"Google-mismatches.xml\"><rule from=\"^http://js\\.admeld\\.com/\" to=\"https://js.admeld.com/\"/><rule from=\"^http://(?:www\\.)?apture\\.com/\" to=\"https://apture.com/\"/><rule from=\"^http://(?:www\\.)?googleartproject\\.com/\" to=\"https://www.googleartproject.com/\"/></ruleset>", "<ruleset name=\"Google.com Subdomains\" default_off=\"failed ruleset test\" f=\"Google.com_Subdomains.xml\"><securecookie host=\"^(?:\\.code|login\\.corp|developers|docs|\\d\\.docs|fiber|mail|plus|\\.?productforums|support)\\.google\\.[\\w.]{2,6}$\" name=\".+\"/><rule from=\"^http://([\\w-]+)\\.corp\\.google\\.com/\" to=\"https://$1.corp.google.com/\"/><rule from=\"^http://(earth|trends)\\.google\\.com/\" to=\"https://www.google.com/$1\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Google.com Subdomains (Complex)\" f=\"Google.com_Subdomains_Complex.xml\"><rule from=\"^http://clients\\d\\.google\\.com/\" to=\"https://clients1.google.com/\"/><exclusion pattern=\"^http://clients\\d\\.google\\.com/ocsp\"/><exclusion pattern=\"^http://clients\\d\\.google\\.com/generate_204$\"/><rule from=\"^http://(docs\\d)\\.google\\.com/\" to=\"https://$1.google.com/\"/><rule from=\"^http://(\\d\\.docs)\\.google\\.com/\" to=\"https://$1.google.com/\"/><rule from=\"^http://(spreadsheets\\d)\\.google\\.com/\" to=\"https://$1.google.com/\"/><rule from=\"^http://(?:encrypted-)?tbn(\\d)\\.google\\.com/\" to=\"https://encrypted-tbn$1.google.com/\"/><rule from=\"^http://chart\\.apis\\.google\\.com/chart\" to=\"https://chart.googleapis.com/chart\"/><rule from=\"^http://([\\w-]+)\\.clients\\.google\\.com/\" to=\"https://$1.clients.google.com/\"/><rule from=\"^http://codesearch\\.google\\.com/\" to=\"https://www.google.com/codesearch/\"/></ruleset>", "<ruleset name=\"Google.org\" f=\"Google.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Google.tld Subdomains\" f=\"Google.tld_Subdomains.xml\"><securecookie host=\"^(accounts|adwords|m|picasaweb|translate)\\.google\\.[\\w.]{2,6}$\" name=\".+\"/><rule from=\"^http://news\\.google\\.((com?\\.)?\\w{2,3})/archivesearch\" to=\"https://news.google.$1/news/advanced_news_search\"/><rule from=\"^http://(accounts|adwords|finance|groups|id|lh\\d|m|news|picasaweb|scholar|translate)\\.google\\.((com?\\.)?\\w{2,3})/\" to=\"https://$1.google.$2/\"/></ruleset>", "<ruleset name=\"Google\" f=\"Google.xml\"><exclusion pattern=\"^http://(www\\.)?google\\.com/analytics/\"/><exclusion pattern=\"^http://(www\\.)?google\\.com/imgres/\"/><securecookie host=\"^www\\.google\\.com$\" name=\"^GoogleAccountsLocale_session$\"/><rule from=\"^http://(?:www\\.)?google\\.co/\" to=\"https://www.google.com/\"/><rule from=\"^http://(?:www\\.)?google\\.(?:co\\.)?(in|kr|ug)/\" to=\"https://www.google.co.$1/\"/><rule from=\"^http://(?:www\\.)?google\\.(?:com\\.)?(kz|lk)/\" to=\"https://www.google.$1/\"/><rule from=\"^http://(?:www\\.)?google\\.(?:com\\.)?(bo|ec|mx|sg|sl|vn)/\" to=\"https://www.google.com.$1/\"/><rule from=\"^https?://(?:www\\.)?google\\.((?:com?\\.)?\\w{2,3})/tisp(?=$|\\?)\" to=\"https://www.google.$1/tisp/\"/><rule from=\"^http://(?:www\\.)?google\\.(?:com?\\.)?\\w{2,3}/custom\" to=\"https://www.google.com/cse\"/><rule from=\"^https?://(?:www\\.)?google\\.(?:com?\\.)?\\w{2,3}/(?=calendar|dictionary|foobar|ideas|partners|powermeter|webdesigner)\" to=\"https://www.google.com/\"/><rule from=\"^http://(www\\.)?google\\.((?:com?\\.)?\\w{2,3})/(?=#|\\?|$)\" to=\"https://www.google.$2/\"/><rule from=\"^http://(?:www\\.)?google\\.((?:com?\\.)?\\w{2,3})/(?=about|accounts|admob|adplanner|ads|adsense|adwords|analytics|bookmarks|books|chrome|chromecast|contacts|coop|cse|css|culturalinstitute|doodles|doubleclick|earth|favicon.ico|finance|get|goodtoknow|googleblogs|grants|green|hangouts|help|hostednews|images|intl|js|landing|logos|mapmaker|mobile|newproducts|news|nexus|pacman|patents|policies|postini|prdhp|profiles|products|reader|s2|script|search|setprefs|settings|shopping|support|teapot|tools|transparencyreport|trends|urchin|url|webhp|webmasters)\" to=\"https://www.google.$1/\"/><rule from=\"^http://(www\\.)?google\\.com/(\\+|afsonline|appsstatus|buzz|chat|chart|chromeos|codesearch|extern_js|glass|googlebooks|ig|insights|jsapi|moderator|phone|recaptcha|registry|safebrowsing|uds|videotargetting|webfonts)\" to=\"https://www.google.com/$2\"/><exclusion pattern=\"^http://(www\\.)?google\\.com/search.*tbs=shop\"/><exclusion pattern=\"^http://(www\\.)?google\\.com/search.*tbm=isch.*\"/><rule from=\"^http://(www\\.)?google\\.((?:com?\\.)?\\w{2,3})/firefox/?\" to=\"https://www.google.$2/\"/></ruleset>", "<ruleset name=\"Google APIs\" f=\"GoogleAPIs.xml\"><exclusion pattern=\"^http://(www\\.)?gmodules\\.com/$\"/><exclusion pattern=\"^http://ajax\\.googleapis\\.com/$\"/><exclusion pattern=\"^http://chart\\.googleapis\\.com/$\"/><exclusion pattern=\"^http://www\\.gstatic\\.com/generate_204\"/><exclusion pattern=\"^http://gdata\\.youtube\\.com/crossdomain\\.xml\"/><exclusion pattern=\"^http://www\\.gstatic\\.com/ddos-viz/attacks\\.json\"/><securecookie host=\"^ssl\\.google-analytics\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?gmodules\\.com/ig/images/\" to=\"https://www.google.com/ig/images/\"/><rule from=\"^http://(click|ssl|www)\\.google-analytics\\.com/\" to=\"https://$1.google-analytics.com/\"/><rule from=\"^http://(ajax|chart|ct|fonts|imasdk|www)\\.googleapis\\.com/\" to=\"https://$1.googleapis.com/\"/><rule from=\"^http://([^@:\\./]+\\.)?(commondata)?storage\\.googleapis\\.com/\" to=\"https://$1$2storage.googleapis.com/\"/><rule from=\"^http://(www\\.)?gstatic\\.com/\" to=\"https://www.gstatic.com/\"/><rule from=\"^http://(csi|encrypted-tbn\\d|fonts|g0|[\\w-]+\\.metric|ssl|t\\d)\\.gstatic\\.com/\" to=\"https://$1.gstatic.com/\"/><rule from=\"^http://gdata\\.youtube\\.com/\" to=\"https://gdata.youtube.com/\"/></ruleset>", "<ruleset name=\"Google Images\" f=\"GoogleImages.xml\"><exclusion pattern=\"^http://google\\.com/\"/><exclusion pattern=\"^http://images\\.google\\.com/hosted/\"/><rule from=\"^http://images\\.google\\.((com?\\.)?\\w{2,3})/images\\?\" to=\"https://www.google.$1/images?\"/><rule from=\"^http://images\\.google\\.((?:com?\\.)?\\w{2,3})/\" to=\"https://images.google.$1/\"/><rule from=\"^http://(www\\.)?google\\.((?:com?\\.)?\\w{2,3})/(advanced_image_search|imghp|.*tb(?:m=isch|s=sbi))\" to=\"https://www.google.$2/$3\"/></ruleset>", "<ruleset name=\"Google Maps\" f=\"GoogleMaps.xml\"><exclusion pattern=\"^http://maps\\.google\\.com/local_url\"/><exclusion pattern=\"^http://maps\\.google\\.gr/transitathens\"/><exclusion pattern=\"^http://maps-api-ssl\\.google\\.com/$\"/><securecookie host=\"^maps\\.google\\.[\\w.]{2,6}$\" name=\".+\"/><securecookie host=\"^maps\\.g(?:oogle|oogleapis|static)\\.com$\" name=\".+\"/><securecookie host=\"^maps-api-ssl\\.google\\.com$\" name=\".+\"/><rule from=\"^http://maps\\.google\\.((?:com?\\.)?\\w{2,3})/\" to=\"https://maps.google.$1/\"/><rule from=\"^http://khms\\d?\\.google\\.com/+\\??$\" to=\"https://www.google.com/\"/><rule from=\"^http://(khms\\d?|maps-api-ssl|mw2)\\.google\\.com/\" to=\"https://$1.google.com/\"/><rule from=\"^http://maps\\.googleapis\\.com/\" to=\"https://maps.googleapis.com/\"/><rule from=\"^http://maps\\.gstatic\\.com/\" to=\"https://maps.gstatic.com/\"/></ruleset>", "<ruleset name=\"GoogleMelange\" default_off=\"failed ruleset test\" f=\"GoogleMelange.xml\"><rule from=\"^http://(?:www\\.)?google-melange\\.com/\" to=\"https://www.google-melange.com/\"/></ruleset>", "<ruleset name=\"Google Services Simple\" f=\"GoogleServices.xml\"><securecookie host=\"^gmail\\.com$\" name=\".+\"/><securecookie host=\"^www\\.gmail\\.com$\" name=\".+\"/><securecookie host=\"^googlemail\\.com$\" name=\".+\"/><securecookie host=\"^www\\.googlemail\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Google Services\" f=\"GoogleServices_Complex.xml\"><exclusion pattern=\"^http://cbks0\\.google\\.com/(?:$|\\?)\"/><exclusion pattern=\"^http://gg\\.google\\.com/(?!csi(?:$|\\?))\"/><exclusion pattern=\"^http://[\\w-]+-opensocial\\.googleusercontent\\.com\"/><securecookie host=\"^mail-attachment\\.googleusercontent\\.com$\" name=\".+\"/><rule from=\"^http://lh(\\d)\\.ggpht\\.com/\" to=\"https://lh$1.ggpht.com/\"/><rule from=\"^http://(www\\.)?goo\\.gl/\" to=\"https://goo.gl/\"/><rule from=\"^http://([\\w-]+)\\.googleusercontent\\.com/\" to=\"https://$1.googleusercontent.com/\"/><rule from=\"^http://([\\w-]+\\.)?googlecode\\.com/\" to=\"https://$1googlecode.com/\"/></ruleset>", "<ruleset name=\"Google Shopping\" f=\"GoogleShopping.xml\"><rule from=\"^http://encrypted\\.google\\.com/(prdhp|shopping)\" to=\"https://www.google.com/$1\"/><rule from=\"^http://shopping\\.google\\.com/\" to=\"https://shopping.google.com/\"/><rule from=\"^http://(?:encrypted|www)\\.google\\.com/(.*tbm=shop)\" to=\"https://www.google.com/$1\"/><rule from=\"^http://(?:www\\.)?google\\.((?:com?\\.)?(?:ae|ar|at|au|bg|bh|bo|br|ca|ch|cl|cr|co|cu|de|ec|eg|es|fi|fr|gh|gt|hr|id|ie|il|in|it|jm|jo|jp|ke|kr|kw|kz|lb|lk|ly|mx|my|na|ng|nl|no|nz|om|pa|pe|pk|pl|pt|py|qa|ro|ru|rw|sa|sg|sl|se|sv|th|tr|ug|uk|uy|ve|vn|za|zw))/(?=prdhp|shopping)\" to=\"https://www.google.com/$1\"/></ruleset>", "<ruleset name=\"Google Sorry\" f=\"GoogleSorry.xml\"><exclusion pattern=\"^http://(www\\.)?google.com/$\"/><rule from=\"^http://(www\\.)?google\\.com/sorry/\" to=\"https://sorry.google.com/sorry/\"/><rule from=\"^http://sorry\\.google\\.com/\" to=\"https://sorry.google.com/\"/></ruleset>", "<ruleset name=\"Google Videos\" default_off=\"Needs ruleset tests\" f=\"GoogleVideos.xml\"><rule from=\"^http://(?:www\\.)?google\\.com/videohp\" to=\"https://www.google.com/videohp\"/><rule from=\"^http://(?:www\\.)?google\\.(?:com?\\.)?(?:au|ca|gh|ie|in|jm|ke|lk|my|na|ng|nz|pk|rw|sl|sg|ug|uk|za|zw)/videohp\" to=\"https://www.google.com/videohp\"/><rule from=\"^http://(?:www\\.)?google\\.(?:com?\\.)?(?:ar|bo|cl|co|cu|cr|ec|es|gt|mx|pa|pe|py|sv|uy|ve)/videohp$\" to=\"https://www.google.com/videohp?hl=es\"/><rule from=\"^http://(?:www\\.)?google\\.(?:com\\.)?(?:ae|bh|eg|jo|kw|lb|ly|om|qa|sa)/videohp$\" to=\"https://www.google.com/videohp?hl=ar\"/><rule from=\"^http://(?:www\\.)?google\\.(?:at|ch|de)/videohp$\" to=\"https://www.google.com/videohp?hl=de\"/><rule from=\"^http://(?:www\\.)?google\\.(fr|nl|it|pl|ru|bg|pt|ro|hr|fi|no)/videohp$\" to=\"https://www.google.com/videohp?hl=$1\"/><rule from=\"^http://(?:www\\.)?google\\.com?\\.(id|th|tr)/videohp$\" to=\"https://www.google.com/videohp?hl=$1\"/><rule from=\"^http://(?:www\\.)?google\\.com\\.il/videohp$\" to=\"https://www.google.com/videohp?hl=he\"/><rule from=\"^http://(?:www\\.)?google\\.com\\.kr/videohp$\" to=\"https://www.google.com/videohp?hl=ko\"/><rule from=\"^http://(?:www\\.)?google\\.com\\.kz/videohp$\" to=\"https://www.google.com/videohp?hl=kk\"/><rule from=\"^http://(?:www\\.)?google\\.com\\.jp/videohp$\" to=\"https://www.google.com/videohp?hl=ja\"/><rule from=\"^http://(?:www\\.)?google\\.com\\.vn/videohp$\" to=\"https://www.google.com/videohp?hl=vi\"/><rule from=\"^http://(?:www\\.)?google\\.com\\.br/videohp$\" to=\"https://www.google.com/videohp?hl=pt-BR\"/><rule from=\"^http://(?:www\\.)?google\\.se/videohp$\" to=\"https://www.google.com/videohp?hl=sv\"/><rule from=\"^http://(?:www\\.)?google\\.(?:com?\\.)?(?:ar|bo|cl|co|cu|cr|ec|es|gt|mx|pa|pe|py|sv|uy|ve)/videohp\\?\" to=\"https://www.google.com/videohp?hl=es&\"/><rule from=\"^http://(?:www\\.)?google\\.(?:com\\.)?(?:ae|bh|eg|jo|kw|lb|ly|om|qa|sa)/videohp\\?\" to=\"https://www.google.com/videohp?hl=ar&\"/><rule from=\"^http://(?:www\\.)?google\\.(?:at|ch|de)/videohp\\?\" to=\"https://www.google.com/videohp?hl=de&\"/><rule from=\"^http://(?:www\\.)?google\\.(fr|nl|it|pl|ru|bg|pt|ro|hr|fi|no)/videohp\\?\" to=\"https://www.google.com/videohp?hl=$1&\"/><rule from=\"^http://(?:www\\.)?google\\.com?\\.(id|th|tr)/videohp\\?\" to=\"https://www.google.com/videohp?hl=$1&\"/><rule from=\"^http://(?:www\\.)?google\\.com\\.il/videohp\\?\" to=\"https://www.google.com/videohp?hl=he&\"/><rule from=\"^http://(?:www\\.)?google\\.com\\.kr/videohp\\?\" to=\"https://www.google.com/videohp?hl=ko&\"/><rule from=\"^http://(?:www\\.)?google\\.com\\.kz/videohp\\?\" to=\"https://www.google.com/videohp?hl=kk&\"/><rule from=\"^http://(?:www\\.)?google\\.com\\.jp/videohp\\?\" to=\"https://www.google.com/videohp?hl=ja&\"/><rule from=\"^http://(?:www\\.)?google\\.com\\.vn/videohp\\?\" to=\"https://www.google.com/videohp?hl=vi&\"/><rule from=\"^http://(?:www\\.)?google\\.com\\.br/videohp\\?\" to=\"https://www.google.com/videohp?hl=pt-BR&\"/><rule from=\"^http://(?:www\\.)?google\\.se/videohp\\?\" to=\"https://www.google.com/videohp?hl=sv&\"/><rule from=\"^http://video\\.google\\.com/ThumbnailServer2\" to=\"https://video.google.com/ThumbnailServer2\"/></ruleset>", "<ruleset name=\"GoogleWatchBlog.de\" f=\"GoogleWatchBlog.xml\"><securecookie host=\"^(?:www)?\\.googlewatchblog\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Google App Engine\" f=\"Google_App_Engine.xml\"><exclusion pattern=\"^http://photomunchers\\.appspot\\.com/\"/><exclusion pattern=\"^http://sbux-portal\\.appspot\\.com/\"/><exclusion pattern=\"^http://www\\.appspot\\.com/\"/><exclusion pattern=\"http://.+\\..+\\.appspot\\.com/\"/><securecookie host=\"^.+\\.appspot\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Google ad services.com\" f=\"Google_ad_services.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gosuslugi.ru\" f=\"Gosuslugi.ru.xml\"><securecookie host=\"^(?:esia|static|www)?\\.gosuslugi\\.ru$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GotFuturama.com\" default_off=\"self-signed\" f=\"GotFuturama.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Got Vape.net\" f=\"Got_Vape.net.xml\"><securecookie host=\"^\\.(?:m|www)\\.gotvape\\.net$\" name=\".+\"/><rule from=\"^http://m\\.gotvape\\.(?:com|net)/\" to=\"https://m.gotvape.net/\"/><rule from=\"^http://(images\\.|www\\.)?gotvape\\.(com|net)/\" to=\"https://$1gotvape.$2/\"/></ruleset>", "<ruleset name=\"Gotland Ring.com\" f=\"Gotland_Ring.com.xml\"><securecookie host=\"^\\.gotlandring\\.com$\" name=\".+\"/><rule from=\"^http://www\\.gotlandring\\.com/\" to=\"https://gotlandring.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gotmerchant.com (partial)\" f=\"Gotmerchant.com.xml\"><rule from=\"^http://(?:www\\.)?gotmerchant\\.com/apply($|[?/])\" to=\"https://www.gotmerchant.com/apply$1\"/></ruleset>", "<ruleset name=\"gotraffic.net (partial)\" f=\"Gotraffic.net.xml\"><rule from=\"^http://cdn\\.gotraffic\\.net/(?=v/\\d+_\\d+/images/)\" to=\"https://cdn.gotraffic.net/\"/></ruleset>", "<ruleset name=\"Gottman.com\" f=\"Gottman.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GourmetGiftBaskets.com (partial)\" f=\"GourmetGiftBaskets.com.xml\"><rule from=\"^http://(?:www\\.)?gourmetgiftbaskets\\.com/(App_Themes/|images/|login\\.aspx|scripts/)\" to=\"https://www.gourmetgiftbaskets.com/$1\"/><rule from=\"^http://search\\.gourmetgiftbaskets\\.com/\" to=\"https://gourmetgiftbaskets.resultspage.com/\"/></ruleset>", "<ruleset name=\"Gov.Wales (partial)\" f=\"Gov.Wales.xml\"><exclusion pattern=\"^http://(?:learning\\.|www\\.)?gov\\.wales/+(?!\\d+/(?:images|site_furniture)/|cbin/|homepage/megamenufmas/)\"/><securecookie host=\"^cssiw\\.gov\\.wales$\" name=\".\"/><rule from=\"^http://enterprisezones\\.gov\\.wales/+\" to=\"https://businesswales.gov.wales/enterprisezones/\"/><rule from=\"^http://www\\.gov\\.wales/\" to=\"https://gov.wales/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"gov1.info\" f=\"Gov1.info.xml\"><securecookie host=\"^\\.gov1\\.info$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GovDelivery.com (mismatches)\" default_off=\"mismatched\" f=\"GovDelivery-mismatches.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GovDelivery.com (partial)\" f=\"GovDelivery.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GovDex.gov.au\" f=\"GovDex.xml\"><rule from=\"^http://(?:www\\.)?govdex\\.gov\\.au/\" to=\"https://www.govdex.gov.au/\"/></ruleset>", "<ruleset name=\"GovHK\" f=\"GovHK.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GovHack.org\" f=\"GovHack.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:dev\\.www\\.)?govhack\\.org/\" to=\"https://www.govhack.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GovMetric.com\" f=\"GovMetric.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Govspace.gov.au\" f=\"GovSpace.xml\"><rule from=\"^http://govspace\\.gov\\.au/\" to=\"https://www.govspace.gov.au/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GovTrack.us\" f=\"GovTrack.us.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gov Waste.co.uk\" default_off=\"failed ruleset test\" f=\"Gov_Waste.co.uk.xml\"><securecookie host=\"^\\.govwaste\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GSN Magazine.com (partial)\" f=\"Government-Security-News.xml\"><exclusion pattern=\"^http://www\\.gsnmagazine\\.com/user/register(?:$|\\?)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GCHQ.gov.uk\" f=\"Government_Communications_Headquarters.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Governmentattic.org\" default_off=\"mismatched\" f=\"Governmentattic.org.xml\"><rule from=\"^http://(?:www\\.)?governmentattic\\.org/\" to=\"https://governmentattic.org/\"/></ruleset>", "<ruleset name=\"Governo Português\" default_off=\"mismatched\" f=\"GovernoPortugues-mismatches.xml\"><rule from=\"^http://portaldaempresa\\.pt/\" to=\"https://www.portaldaempresa.pt/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GG.gov.au\" f=\"Governor-GeneraloftheCommonwealthofAustralia.xml\"><rule from=\"^http://(?:www\\.)?gg\\.gov\\.au/\" to=\"https://www.gg.gov.au/\"/></ruleset>", "<ruleset name=\"Gpg4win.org\" f=\"Gpg4win.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"gpgAuth.org\" default_off=\"expired, missing certificate chain\" f=\"GpgAuth.org.xml\"><securecookie host=\"^forums\\.gpgauth\\.org$\" name=\".+\"/><rule from=\"^http://www\\.gpgauth\\.org/\" to=\"https://gpgauth.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gr-assets.com\" default_off=\"failed ruleset test\" f=\"Gr-assets.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"graasmilk.net\" default_off=\"failed ruleset test\" f=\"Graasmilk.net.xml\"><rule from=\"^http://(www\\.)?(webmail\\.)?graasmilk\\.net/\" to=\"https://$2graasmilk.net/\"/></ruleset>", "<ruleset name=\"GrabCAD\" f=\"GrabCAD.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Grab Media (partial)\" f=\"Grab_Media.xml\"><rule from=\"^http://images\\.grab-media\\.com/\" to=\"https://dg8ui1w5a5byc.cloudfront.net/\"/></ruleset>", "<ruleset name=\"GradImages\" f=\"GradImages.xml\"><securecookie host=\"^(?:www\\.)?gradimages\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gradescope.com\" f=\"Gradescope.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gradle.org (partial, false MCB)\" platform=\"mixedcontent\" f=\"Gradle.org.xml\"><securecookie host=\"^\\.gradle\\.org$\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gradwell.com (partial)\" f=\"Gradwell.com.xml\"><securecookie host=\".+\\.gradwell\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gradwell Cloud.com\" f=\"Gradwell_Cloud.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Graham Cluley.com\" f=\"Graham_Cluley.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Grains Research and Development Corporation\" f=\"GrainsResearchandDevelopmentCorporation.xml\"><rule from=\"^http://(?:www\\.)?grdc\\.com\\.au/\" to=\"https://www.grdc.com.au/\"/></ruleset>", "<ruleset name=\"Gran-Turismo.com (partial)\" f=\"Gran-Turismo.com.xml\"><rule from=\"^http://(www\\.)?gran-turismo\\.com/(?=common/|images/)\" to=\"https://$1gran-turismo.com/\"/></ruleset>", "<ruleset name=\"Grand Rapids Community Media Center\" platform=\"mixedcontent\" f=\"Grand-Rapids-Community-Media-Center.xml\"><securecookie host=\"^.*\\.grcmc\\.org$\" name=\".*\"/><rule from=\"^http://(client\\.|www\\.)?grcmc\\.org/\" to=\"https://$1grcmc.org/\"/><rule from=\"^http://(?:www\\.)?wealthytheatre\\.org/\" to=\"https://www.grcmc.org/theatre/\"/></ruleset>", "<ruleset name=\"Grand Margherita Hotel\" f=\"GrandMargherita.com.xml\"><securecookie host=\"^(www\\.)?grandmargherita\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Grand Haven Tribune (partial)\" f=\"Grand_Haven_Tribune.xml\"><rule from=\"^http://(?:www\\.)?grandhaventribune\\.com/(misc/|sites/|user(?:$|\\?|/))\" to=\"https://www.grandhaventribune.com/$1\"/></ruleset>", "<ruleset name=\"Grand Lodge of British Columbia\" default_off=\"failed ruleset test\" f=\"Grand_Lodge_of_British_Columbia.xml\"><rule from=\"^http://(?:www\\.)?(?:freemasonry\\.)?bcy\\.ca/\" to=\"https://www.freemasonry.bcy.ca/\"/></ruleset>", "<ruleset name=\"Graphene-lda.com\" default_off=\"failed ruleset test\" f=\"Graphene-lda.com.xml\"><securecookie host=\"^\\.graphene-lda\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Grassroots.org (mismatches)\" default_off=\"mismatched\" f=\"Grassroots.org-mismatches.xml\"><securecookie host=\"^tools\\.grassroots\\.org$\" name=\".*\"/><rule from=\"^http://tools\\.grassroots\\.org/\" to=\"https://tools.grassroots.org/\"/></ruleset>", "<ruleset name=\"Grassroots.org (partial)\" default_off=\"failed ruleset test\" f=\"Grassroots.org.xml\"><securecookie host=\"^.*\\.grassroots\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Grasswire.com\" f=\"Grasswire.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GratiSoft.us\" f=\"GratiSoft.us.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gratipay.com (partial)\" f=\"Gratipay.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gravatar\" f=\"Gravatar.xml\"><rule from=\"^http://((?:[012s]|en|secure|www)\\.)?gravatar\\.com/\" to=\"https://$1gravatar.com/\"/></ruleset>", "<ruleset name=\"Gravity.com\" f=\"Gravity.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gravity4.com\" f=\"Gravity4.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Grays of Westminster (partial)\" f=\"Grays-of-Westminster.xml\"><rule from=\"^http://(?:www\\.)?graysofwestminster\\.co\\.uk/(images/|pdf/|\\w+\\.css$)\" to=\"https://www.graysofwestminster.co.uk/$1\"/></ruleset>", "<ruleset name=\"GreaseSpot.net (partial)\" default_off=\"mismatched\" f=\"GreaseSpot.net.xml\"><securecookie host=\"^wiki\\.greasespot\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Greasy Fork.org\" f=\"Greasy_Fork.org.xml\"><securecookie host=\"^greasyfork\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?greasyfork\\.org/\" to=\"https://greasyfork.org/\"/></ruleset>", "<ruleset name=\"GreatDomains.com\" f=\"GreatDomains.com.xml\"><securecookie host=\"^\\.greatdomains\\.com$\" name=\".+\"/><rule from=\"^http://www\\.greatdomains\\.com/\" to=\"https://greatdomains.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Great American Office\" default_off=\"expired\" f=\"Great_American_Office.xml\"><securecookie host=\"^(?:www\\.)?gaos\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Greatnet.de (partial)\" f=\"Greatnet.de.xml\"><securecookie host=\"^www\\.greatnet\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Greatnonprofits.org\" f=\"Greatnonprofits.org.xml\"><securecookie host=\"^greatnonprofits\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Greek-banks\" default_off=\"failed ruleset test\" f=\"Greek-banks.xml\"><securecookie host=\"^www\\.nbg\\.gr$\" name=\".*\"/><securecookie host=\"^www\\.alpha\\.gr$\" name=\".*\"/><securecookie host=\"^www\\.alphabankcards\\.gr$\" name=\".*\"/><securecookie host=\"^www\\.probank\\.gr$\" name=\".*\"/><rule from=\"^http://www\\.nbg\\.gr/\" to=\"https://www.nbg.gr/\"/><rule from=\"^http://(?:www\\.)?alpha\\.gr/\" to=\"https://www.alpha.gr/\"/><rule from=\"^http://www\\.alphabankcards\\.gr/\" to=\"https://www.alphabankcards.gr/\"/><rule from=\"^http://(?:www\\.)?probank\\.gr/\" to=\"https://www.probank.gr/\"/></ruleset>", "<ruleset name=\"Greek-gov\" f=\"Greek-gov.xml\"><securecookie host=\"^(?:lists|noc|.*\\.noc)\\.grnet\\.gr$\" name=\".*\"/><securecookie host=\"^(?:.*\\.)?gsis\\.gr$\" name=\".*\"/><securecookie host=\"^service\\.eudoxus\\.gr$\" name=\".*\"/><rule from=\"^http://(lists|lists\\.noc|www\\.noc)\\.grnet\\.gr/\" to=\"https://$1.grnet.gr/\"/><rule from=\"^http://(www1|login)\\.gsis\\.gr/\" to=\"https://$1.gsis.gr/\"/><rule from=\"^http://service\\.eudoxus\\.gr/\" to=\"https://service.eudoxus.gr/\"/></ruleset>", "<ruleset name=\"Greek-media (partial)\" f=\"Greek-media.xml\"><securecookie host=\"^(?:.*\\.)?antenna\\.gr$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Greek-travel\" f=\"Greek-travel.xml\"><exclusion pattern=\"^http://en\\.aegeanair\\.com/sys/flights/\"/><exclusion pattern=\"^http://el\\.aegeanair\\.com/sys/flights/\"/><exclusion pattern=\"^http://de\\.aegeanair\\.com/sys/flights/\"/><exclusion pattern=\"^http://it\\.aegeanair\\.com/sys/flights/\"/><exclusion pattern=\"^http://fr\\.aegeanair\\.com/sys/flights/\"/><exclusion pattern=\"^http://es\\.aegeanair\\.com/sys/flights/\"/><exclusion pattern=\"^http://ru\\.aegeanair\\.com/sys/flights/\"/><exclusion pattern=\"^http://en\\.aegeanair\\.com/Css/fonts/\"/><exclusion pattern=\"^http://el\\.aegeanair\\.com/Css/fonts/\"/><exclusion pattern=\"^http://de\\.aegeanair\\.com/Css/fonts/\"/><exclusion pattern=\"^http://it\\.aegeanair\\.com/Css/fonts/\"/><exclusion pattern=\"^http://fr\\.aegeanair\\.com/Css/fonts/\"/><exclusion pattern=\"^http://es\\.aegeanair\\.com/Css/fonts/\"/><exclusion pattern=\"^http://ru\\.aegeanair\\.com/Css/fonts/\"/><exclusion pattern=\"^http://en\\.aegeanair\\.com/?$\"/><exclusion pattern=\"^http://el\\.aegeanair\\.com/?$\"/><exclusion pattern=\"^http://de\\.aegeanair\\.com/?$\"/><exclusion pattern=\"^http://it\\.aegeanair\\.com/?$\"/><exclusion pattern=\"^http://fr\\.aegeanair\\.com/?$\"/><exclusion pattern=\"^http://es\\.aegeanair\\.com/?$\"/><exclusion pattern=\"^http://ru\\.aegeanair\\.com/?$\"/><exclusion pattern=\"^http://en\\.aegeanair\\.com/?\\?\"/><exclusion pattern=\"^http://el\\.aegeanair\\.com/?\\?\"/><exclusion pattern=\"^http://de\\.aegeanair\\.com/?\\?\"/><exclusion pattern=\"^http://it\\.aegeanair\\.com/?\\?\"/><exclusion pattern=\"^http://fr\\.aegeanair\\.com/?\\?\"/><exclusion pattern=\"^http://es\\.aegeanair\\.com/?\\?\"/><exclusion pattern=\"^http://ru\\.aegeanair\\.com/?\\?\"/><exclusion pattern=\"^http://en\\.about\\.aegeanair\\.com/Css/fonts/\"/><exclusion pattern=\"^http://el\\.about\\.aegeanair\\.com/Css/fonts/\"/><exclusion pattern=\"^http://de\\.about\\.aegeanair\\.com/Css/fonts/\"/><exclusion pattern=\"^http://it\\.about\\.aegeanair\\.com/Css/fonts/\"/><exclusion pattern=\"^http://fr\\.about\\.aegeanair\\.com/Css/fonts/\"/><exclusion pattern=\"^http://en\\.about\\.aegeanair\\.com/?$\"/><exclusion pattern=\"^http://el\\.about\\.aegeanair\\.com/?$\"/><exclusion pattern=\"^http://de\\.about\\.aegeanair\\.com/?$\"/><exclusion pattern=\"^http://it\\.about\\.aegeanair\\.com/?$\"/><exclusion pattern=\"^http://fr\\.about\\.aegeanair\\.com/?$\"/><exclusion pattern=\"^http://en\\.about\\.aegeanair\\.com/?\\?\"/><exclusion pattern=\"^http://el\\.about\\.aegeanair\\.com/?\\?\"/><exclusion pattern=\"^http://de\\.about\\.aegeanair\\.com/?\\?\"/><exclusion pattern=\"^http://it\\.about\\.aegeanair\\.com/?\\?\"/><exclusion pattern=\"^http://fr\\.about\\.aegeanair\\.com/?\\?\"/><securecookie host=\"^(?:.*\\.)?aegeanair\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Greek-various\" default_off=\"failed ruleset test\" f=\"Greek-various.xml\"><securecookie host=\"^(?:.*\\.)?void\\.gr$\" name=\".*\"/><securecookie host=\"^(?:www\\.)?hackerspace\\.gr$\" name=\".*\"/><securecookie host=\"^(?:www\\.)?ellak\\.gr$\" name=\".*\"/><securecookie host=\"^www\\.dei\\.com\\.gr$\" name=\".*\"/><securecookie host=\"^www\\.eydap\\.gr$\" name=\".*\"/><securecookie host=\"^(?:www\\.)?eduroam\\.gr$\" name=\".*\"/><securecookie host=\"^(?:www\\.)?barikat\\.gr$\" name=\".*\"/><securecookie host=\"^(?:www\\.)?dionyziz\\.com$\" name=\".*\"/><rule from=\"^http://((www|webmail)\\.)?void\\.gr/\" to=\"https://$1void.gr/\"/><rule from=\"^http://pad\\.void\\.gr/\" to=\"https://pad.void.gr/\"/><rule from=\"^http://(www\\.)?hackerspace\\.gr/\" to=\"https://$1hackerspace.gr/\"/><rule from=\"^http://(?:www\\.)?ellak\\.gr/\" to=\"https://www.ellak.gr/\"/><rule from=\"^http://www\\.dei(?:\\.com)?\\.gr/\" to=\"https://www.dei.com.gr/\"/><rule from=\"^http://www\\.eydap\\.gr/\" to=\"https://www.eydap.gr/\"/><rule from=\"^http://(www\\.)?eduroam\\.gr/\" to=\"https://$1eduroam.gr/\"/><rule from=\"^http://(www\\.)?barikat\\.gr/\" to=\"https://$1barikat.gr/\"/><rule from=\"^http://(www\\.)?dionyziz\\.com/\" to=\"https://$1dionyziz.com/\"/></ruleset>", "<ruleset name=\"Green-Wood.com (partial)\" f=\"Green-Wood.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Green Chef\" f=\"GreenChef.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GreenIT-BB (mismatches)\" default_off=\"mismatched\" f=\"GreenIT-BB-mismatches.xml\"><securecookie host=\"^(?:.*\\.)?greenit-bb\\.de$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?greenit-bb\\.de/\" to=\"https://www.greenit-bb.de/\"/></ruleset>", "<ruleset name=\"GreenIT-BB (partial)\" default_off=\"failed ruleset test\" f=\"GreenIT-BB.xml\"><securecookie host=\"^benchmarking\\.greenit-bb\\.de$\" name=\".*\"/><rule from=\"^http://benchmarking\\.greenit-bb\\.de/\" to=\"https://benchmarking.greenit-bb.de/\"/></ruleset>", "<ruleset name=\"GreenQloud.com\" default_off=\"failed ruleset test\" f=\"GreenQloud.com.xml\"><securecookie host=\"^auth\\.greenqloud\\.com$\" name=\".+\"/><rule from=\"^http://status\\.greenqloud\\.com/\" to=\"https://greenqloud.statuspage.io/\"/><rule from=\"^http://support\\.greenqloud\\.com/\" to=\"https://greenqloud.zendesk.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GreenSky Credit.com (partial)\" f=\"GreenSky_Credit.com.xml\"><rule from=\"^http://(www\\.)?greensky\\.com/(images/|payment(?:$|\\?|/)|secure/)\" to=\"https://$1greensky.com/$2\"/><rule from=\"^http://(www\\.)?greensky\\.com/(favicon\\.ico|_media/|_ui/)\" to=\"https://$1greensky.com/secure/$2\"/></ruleset>", "<ruleset name=\"Green Vehicle Guide\" f=\"GreenVehicleGuide.xml\"><rule from=\"^http://(?:www\\.)?greenvehicleguide\\.gov\\.au/\" to=\"https://www.greenvehicleguide.gov.au/\"/></ruleset>", "<ruleset name=\"Green Billion.org\" default_off=\"expired, self-signed\" f=\"Green_Billion.org.xml\"><securecookie host=\"^(?:www\\.)?greenbillion\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Green Coffee Bean Extract\" f=\"Green_Coffee_Bean_Extract.xml\"><securecookie host=\"^(?:w*\\.)?mygreenbeanextract\\.com$\" name=\".+\"/><rule from=\"^http://www\\.mygreenbeanextract\\.com/(?=$|[^/])\" to=\"https://www.myultragreenbeansupplement.com/\"/></ruleset>", "<ruleset name=\"Green Left.org.au\" f=\"Green_Left.org.au.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://greenleft\\.org\\.au/\" to=\"https://www.greenleft.org.au/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Green Party.org.uk (partial)\" f=\"Green_Party.org.uk.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.(doncaster|hereford|kingston|northwest|salisbury|stroud|wyreforest)\\.greenparty\\.org\\.uk/\" to=\"https://$1.greenparty.org.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Green Party.org\" f=\"Green_Party.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Green PolkaDot Box\" f=\"Green_PolkaDot_Box.xml\"><securecookie host=\"^\\.(?:www\\.)?greenpolkadotbox\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Green Smoke (partial)\" f=\"Green_Smoke.xml\"><securecookie host=\"(?:^|\\.)greensmoke\\.co(?:\\.uk|m)$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Greenbone (partial)\" f=\"Greenbone.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Greenhost.nl\" f=\"Greenhost.xml\"><securecookie host=\"^(?:www\\.)?greenhost\\.nl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Greenhouse.io\" f=\"Greenhouse.io.xml\"><rule from=\"^http://(?:www\\.)?greenhouse\\.io/\" to=\"https://www.greenhouse.io/\"/><rule from=\"^http://(blog|boards|info)\\.greenhouse\\.io/\" to=\"https://$1.greenhouse.io/\"/></ruleset>", "<ruleset name=\"greenman gaming (partial)\" f=\"Greenmangaming.com.xml\"><rule from=\"^http://(?:www\\.)?greenmangaming\\.com/user/login\" to=\"https://www.greenmangaming.com/user/login\"/><rule from=\"^http://(?:www\\.)?greenmangaming\\.com/user/account\" to=\"https://www.greenmangaming.com/user/account\"/></ruleset>", "<ruleset name=\"Greenpeace-Energy.de\" f=\"Greenpeace-Energy.de.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Greenpeace-Jugend.de\" f=\"Greenpeace-Jugend.de.xml\"><securecookie host=\"^(www\\.)?greenpeace-jugend\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Greenpeace-Magazin.de\" f=\"Greenpeace-Magazin.de.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Greenpeace.de (partial)\" f=\"Greenpeace.de.xml\"><exclusion pattern=\"^http://gruppen\\.greenpeace\\.de/+(?!$|\\?)\"/><rule from=\"^http://greenpeace\\.de/\" to=\"https://www.greenpeace.de/\"/><rule from=\"^http://gruppen\\.greenpeace\\.de/+\" to=\"https://www.greenpeace.de/gruppen/uebersicht\"/><rule from=\"^http://www\\.kids\\.greenpeace\\.de/\" to=\"https://kids.greenpeace.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"greenpeace.org (partial)\" default_off=\"failed ruleset test\" f=\"Greenpeace.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Greentech Media\" f=\"Greentech-Media.xml\"><securecookie host=\"^www\\.greentechmedia\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GreenvilleOnline.com\" f=\"GreenvilleOnline.com.xml\"><rule from=\"^http://(?:cmsimg\\.|www\\.)?greenvilleonline\\.com/\" to=\"https://www.greenvilleonline.com/\"/></ruleset>", "<ruleset name=\"Greenwood.org\" default_off=\"expired\" f=\"Greenwood.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Grenet.fr (partial)\" f=\"Grenet.fr.xml\"><exclusion pattern=\"^http://(?:cicg|www)\\.grenet\\.fr/+(?!charte/|favicon\\.ico)\"/><rule from=\"^http://(cas-(?:inp|uds)|cicg|proxagalan|vpn\\d?|www)\\.grenet\\.fr/\" to=\"https://$1.grenet.fr/\"/></ruleset>", "<ruleset name=\"Grenoble-INP.fr (partial)\" f=\"Grenoble-INP.fr.xml\"><rule from=\"^http://(applicationform|edt|emploi-du-temps)\\.grenoble-inp\\.fr/\" to=\"https://$1.grenoble-inp.fr/\"/></ruleset>", "<ruleset name=\"GrepBugs.com\" f=\"GrepBugs.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gresille.org\" f=\"Gresille.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Greyhole.net\" f=\"Greyhole.net.xml\"><securecookie host=\"^\\.whitehathouston\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Greyhound\" f=\"Greyhound.com.xml\"><rule from=\"^http://greyhound\\.com\\.mx/\" to=\"https://www.greyhound.com.mx/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Greystripe.com\" default_off=\"akamai cert\" f=\"Greystripe.com.xml\"><rule from=\"^http://(?:www\\.)?greystripe\\.com/\" to=\"https://www.greystripe.com/\"/><rule from=\"^http://c\\.greystripe\\.com/\" to=\"https://c.greystripe.com/\"/></ruleset>", "<ruleset name=\"Grid5000.fr\" f=\"Grid5000.fr.xml\"><rule from=\"^http://(api|www)\\.grid5000\\.fr/\" to=\"https://$1.grid5000.fr/\"/></ruleset>", "<ruleset name=\"Gridcoin.us (partial)\" default_off=\"failed ruleset test\" f=\"Gridcoin.us.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gridserver.com\" default_off=\"Needs ruleset tests\" f=\"Gridserver.com.xml\"><rule from=\"^http://(s\\d+\\.)?gridserver\\.com/\" to=\"https://$1gridserver.com/\"/></ruleset>", "<ruleset name=\"Gridz Direct.com (false MCB)\" default_off=\"handshake failure\" platform=\"mixedcontent\" f=\"Gridz_Direct.com-falsemixed.xml\"><securecookie host=\"^\\.(?:www\\.)?gridzdirect\\.com$\" name=\".+\"/><rule from=\"^http://www\\.gridzdirect\\.com/\" to=\"https://www.gridzdirect.com/\"/></ruleset>", "<ruleset name=\"Gridz Direct.com (partial)\" default_off=\"handshake failure\" f=\"Gridz_Direct.com.xml\"><exclusion pattern=\"^http://www\\.gridzdirect.com/(?!favicon\\.ico|js/|media/|skin/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Griffin Technology.com (partial)\" f=\"Griffin_Technology.com.xml\"><securecookie host=\"^\\.store\\.griffintechnology\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Griffith University\" f=\"Griffith-University.xml\"><securecookie host=\"^www3\\.secure\\.griffith\\.edu\\.au$\" name=\".*\"/><rule from=\"^http://griffith\\.edu\\.au/\" to=\"https://www.griffith.edu.au/\"/><rule from=\"^http://www\\.griffith\\.edu\\.au/(__data/|intranet)\" to=\"https://www.griffith.edu.au/$1\"/><rule from=\"^http://(ias|learning|(?:intranet|learning|portal|www3)\\.secure)\\.griffith\\.edu\\.au/\" to=\"https://$1.griffith.edu.au/\"/><rule from=\"^http://intranet\\.griffith\\.edu\\.au/\" to=\"https://intranet.secure.griffith.edu.au/\"/><rule from=\"^http://www3\\.griffith\\.edu\\.au/(03/ertiki|schema)/\" to=\"https://www3.secure.griffith.edu.au/$1/\"/></ruleset>", "<ruleset name=\"Grinnell College (partial)\" f=\"Grinnell_College.xml\"><securecookie host=\"^(?:\\.?bookstore|db|\\.?digital|help|cat\\.lib|mail)\\.grinnell\\.edu$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?grinnell\\.edu/(files/|includes/|misc/|sites/)\" to=\"https://www.grinnell.edu/$1\"/><rule from=\"^http://(autodiscover|db|digital|help|imap|itwebapps|libweb|loggia|mail)\\.grinnell\\.edu/\" to=\"https://$1.grinnell.edu/\"/><rule from=\"^http://(?:www\\.)?cat\\.lib\\.grinnell\\.edu/\" to=\"https://cat.lib.grinnell.edu/\"/></ruleset>", "<ruleset name=\"Grit Digital.co.uk\" f=\"Grit_Digital.co.uk.xml\"><securecookie host=\"^(?:www\\.)?gritdigital\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Grnh.se\" default_off=\"mismatched\" f=\"Grnh.se.xml\"><securecookie host=\"^www\\.grnh\\.se$\" name=\".+\"/><rule from=\"^http://www\\.grnh\\.se/\" to=\"https://www.grnh.se/\"/></ruleset>", "<ruleset name=\"Grocery Server.com (partial)\" f=\"Grocery_Server.com.xml\"><securecookie host=\"^(?:www\\.)?groceryserver\\.com$\" name=\".+\"/><rule from=\"^http://(?:wanderful\\.|(www\\.))?groceryserver\\.com/\" to=\"https://$1groceryserver.com/\"/></ruleset>", "<ruleset name=\"GroenLinks.nl\" f=\"GroenLinks.nl.xml\"><securecookie host=\"^(?:.+\\.)?groenlinks\\.nl$\" name=\"\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"grok.org.uk (partial)\" default_off=\"self-signed\" f=\"Grok.org.uk.xml\"><rule from=\"^http://lists\\.grok\\.org\\.uk/\" to=\"https://lists.grok.org.uk/\"/></ruleset>", "<ruleset name=\"Grok Learning.com\" f=\"Grok_Learning.com.xml\"><securecookie host=\"^groklearning\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?groklearning(-cdn)?\\.com/\" to=\"https://$1groklearning$2.com/\"/></ruleset>", "<ruleset name=\"Grooveshark (broken)\" default_off=\"broken\" f=\"Grooveshark.xml\"><rule from=\"^http://(www\\.)?grooveshark\\.com/(about$|artists$|careers$|causes$|favicon\\.ico|help$|JSQueue\\.swf|legal$|press$|webincludes/)\" to=\"https://$1grooveshark.com/$2\"/><rule from=\"^http://help\\.grooveshark\\.com/favicon\\.(ico|png)\" to=\"https://deskcontent.s3.amazonaws.com/favicon.$1\"/><rule from=\"^http://(listen|staticweb)\\.grooveshark\\.com/\" to=\"https://$1.grooveshark.com/\"/><rule from=\"^http://static\\.a\\.gs-cdn\\.net/\" to=\"https://static.a.gs-cdn.net/\"/></ruleset>", "<ruleset name=\"Groton.org\" f=\"Groton.org.xml\"><rule from=\"^http://www\\.groton\\.org/\" to=\"https://www.groton.org/\"/><rule from=\"^http://groton\\.org/\" to=\"https://www.groton.org/\"/></ruleset>", "<ruleset name=\"Groundspeak.com (partial)\" f=\"Groundspeak.com.xml\"><securecookie host=\"^(?:forums|support)\\.groundspeak\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Group Commerce (partial)\" default_off=\"failed ruleset test\" f=\"Group-Commerce.xml\"><rule from=\"^http://admin\\.groupcommerce\\.com/\" to=\"https://admin.groupcommerce.com/\"/></ruleset>", "<ruleset name=\"GroupLogic (partial)\" platform=\"mixedcontent\" f=\"GroupLogic.xml\"><securecookie host=\"^www\\.grouplogic\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?grouplogic\\.com/\" to=\"https://www.grouplogic.com/\"/></ruleset>", "<ruleset name=\"Groupees.com\" f=\"Groupees.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Grouper Social Club.com\" default_off=\"failed ruleset test\" f=\"Grouper_Social_Club.com.xml\"><securecookie host=\"^(?:www)?\\.groupersocialclub\\.com(?:\\.au)?$\" name=\".+\"/><rule from=\"^http://(www\\.)?groupersocialclub\\.com(\\.au)?/\" to=\"https://$1groupersocialclub.com$2/\"/></ruleset>", "<ruleset name=\"Groupon.com.br\" default_off=\"failed ruleset test\" f=\"Groupon.com.br.xml\"><securecookie host=\"^(?:www)?\\.groupon\\.com\\.br$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Groupon.com (partial)\" default_off=\"failed ruleset test\" f=\"Groupon.com.xml\"><securecookie host=\"^(?:merchants|touch|www)\\.groupon\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Groupon.gr\" default_off=\"failed ruleset test\" f=\"Groupon.gr.xml\"><securecookie host=\"^(?:.*\\.)?groupon\\.gr$\" name=\".*\"/><rule from=\"^http://(\\w+\\.)?groupon\\.gr/\" to=\"https://$1groupon.gr/\"/></ruleset>", "<ruleset name=\"Groupon.se\" default_off=\"failed ruleset test\" f=\"Groupon.se.xml\"><rule from=\"^http://groupon\\.se/\" to=\"https://www.groupon.se/\"/><rule from=\"^http://www\\.groupon\\.se/\" to=\"https://www.groupon.se/\"/></ruleset>", "<ruleset name=\"Groupon DE/UK\" default_off=\"failed ruleset test\" f=\"Groupon.xml\"><exclusion pattern=\"^http://(?:news|jobs|blog)\\.groupon\\.co\\.uk/\"/><exclusion pattern=\"^http://action\\.groupon\\.de/\"/><rule from=\"^http://groupon\\.(de|co\\.uk)/\" to=\"https://www.groupon.$1/\"/><rule from=\"^http://([^/:@\\.]+)\\.groupon\\.(de|co\\.uk)/\" to=\"https://$1.groupon.$2/\"/></ruleset>", "<ruleset name=\"Groupon CDN.com\" f=\"Groupon_CDN.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Groupon Works.com\" default_off=\"failed ruleset test\" f=\"Groupon_Works.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Groups.io\" f=\"Groups.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Grove.io\" default_off=\"failed ruleset test\" f=\"Grove.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Grow HQ.com\" default_off=\"failed ruleset test\" f=\"Grow_HQ.com.xml\"><securecookie host=\"^\\.growhq\\.com$\" name=\".+\"/><rule from=\"^http://((?:app|s3|www)\\.)?growhq\\.com/\" to=\"https://$1growhq.com/\"/></ruleset>", "<ruleset name=\"Growery (partial)\" f=\"Growery.xml\"><rule from=\"^http://(www\\.)?growery\\.org/(bnr/|favicon\\.www\\.growery\\.org\\.ico|forum/(?:avatar|image|stylesheet)s/|images/|smarty/)\" to=\"https://$1growery.org/$2\"/></ruleset>", "<ruleset name=\"GrowthHackers.com (partial)\" f=\"GrowthHackers.com.xml\"><securecookie host=\"^growthhackers\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gruen-Digital.de\" f=\"GrunDigital.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Grupfoni\" f=\"Grupfoni.xml\"><securecookie host=\"^(?:.*\\.)?grupfoni\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Grupo Tritón\" default_off=\"mismatched\" f=\"Grupo-Triton.xml\"><securecookie host=\"^grupotriton\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?grupotriton\\.com/\" to=\"https://grupotriton.com/\"/></ruleset>", "<ruleset name=\"Grupo Avante.org\" default_off=\"expired\" f=\"Grupo_Avante.org.xml\"><securecookie host=\"^www\\.grupoavante\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?grupoavante\\.org/\" to=\"https://www.grupoavante.org/\"/></ruleset>", "<ruleset name=\"GrvCDN.com\" f=\"GrvCDN.com.xml\"><rule from=\"^http://b\\.grvcdn\\.com/\" to=\"https://b-ssl.grvcdn.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gsfacket.se\" f=\"Gsfacket.se.xml\"><rule from=\"^http://gsfacket\\.se/\" to=\"https://www.gsfacket.se/\"/><rule from=\"^http://www\\.gsfacket\\.se/\" to=\"https://www.gsfacket.se/\"/></ruleset>", "<ruleset name=\"gsfn.us\" f=\"Gsfn.us.xml\"><rule from=\"^http://gsfn\\.us/\" to=\"https://getsatisfaction.com/\"/><rule from=\"^http://loader\\.engage\\.gsfn\\.us/\" to=\"https://loader.engage.gsfn.us/\"/></ruleset>", "<ruleset name=\"Gslug.org\" f=\"Gslug.org.xml\"><rule from=\"^http://(www\\.)?gslug\\.org/\" to=\"https://gslug.org/\"/></ruleset>", "<ruleset name=\"Gsmhosting.com\" f=\"Gsmhosting.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gsspcln.jp\" f=\"Gsspcln.jp.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"gtimg.cn (partial)\" f=\"Gtimg.cn.xml\"><exclusion pattern=\"^http://i\\.gtimg\\.cn/$\"/><exclusion pattern=\"^http://imgcache\\.gtimg\\.cn/$\"/><rule from=\"^http://(i|imgcache|cm\\.imgcache|cn\\.imgcache|cnc\\.qzonestyle|ctc\\.qzonestyle|vm|y)\\.gtimg\\.cn/(.+)\\.(css|html|jpg|pdf|png|swf)\" to=\"https://$1.gtimg.cn/$2.$3\"/><exclusion pattern=\"^http://ctc\\.i\\.gtimg\\.cn/$\"/><rule from=\"^http://ctc\\.i\\.gtimg\\.cn/(.+)\\.swf\" to=\"https://ctc.i.gtimg.cn/$1.swf\"/><rule from=\"^http://(discuz|dzqun|game|midas|mqq-imgcache|pgdt)\\.gtimg\\.cn/\" to=\"https://$1.gtimg.cn/\"/><rule from=\"^http://pwg(\\d)?\\.gtimg\\.cn/\" to=\"https://pwg$1.gtimg.cn/\"/><exclusion pattern=\"^http://qzonestyle\\.gtimg\\.cn/$\"/><rule from=\"^http://qzonestyle\\.gtimg\\.cn/(.+)\\.(css|jpg|js|ico|png)\" to=\"https://qzonestyle.gtimg.cn/$1.$2\"/></ruleset>", "<ruleset name=\"Gtimg.com\" f=\"Gtimg.com.xml\"><exclusion pattern=\"^http://ra\\.gtimg\\.com/\\w+/\\d+/\\d+\\.html?\"/><exclusion pattern=\"^http://static\\.gtimg\\.com/.+\\.html\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gu.com\" f=\"Gu.com.xml\"><rule from=\"^http://gu\\.com/\" to=\"https://www.theguardian.com/\"/></ruleset>", "<ruleset name=\"Gruner+ Jahr AG + Co KG\" f=\"GuJ.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Guag.es (partial)\" f=\"Guag.es.xml\"><securecookie host=\"^(?:www\\.)?gaug\\.es$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Guaranibitcoin.com\" f=\"Guaranibitcoin.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Guarantorus Loans.co.uk\" default_off=\"missing certificate chain\" f=\"Guarantorus_Loans.co.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Guardian.co.tt (false MCB)\" platform=\"mixedcontent\" f=\"Guardian.co.tt.xml\"><securecookie host=\"^(?:www)?\\.guardian\\.co\\.tt$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Guardian.co.uk (partial)\" default_off=\"failed ruleset test\" f=\"Guardian.xml\"><securecookie host=\"^\\.\" name=\"^(?:NXCLICK2|OAX|s_.+s)$\"/><securecookie host=\"^(?:\\w|\\.witness\\.)\" name=\".\"/><rule from=\"^http://(?:download|image)\\.guardian\\.co\\.uk/\" to=\"https://image.guim.co.uk/\"/><rule from=\"^http://hits\\.guardian\\.co\\.uk/\" to=\"https://guardian.d1.sc.omtrdc.net/\"/><rule from=\"^http://oas\\.guardian\\.co\\.uk/\" to=\"https://oase00824.247realmedia.com/\"/><rule from=\"^http://(register|soulmates)\\.guardian\\.co\\.uk/\" to=\"https://$1.theguardian.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Guardian Project\" f=\"GuardianProject.xml\"><securecookie host=\"^dev\\.guardianproject\\.info$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Guardian Escapes.com\" f=\"Guardian_Escapes.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Guardian Offers.co.uk (partial)\" default_off=\"failed ruleset test\" f=\"Guardian_Offers.co.uk.xml\"><securecookie host=\"^e(?:ntertainment|ssentials)\\.guardianoffers\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Guardian Subscriptions.co.uk\" default_off=\"failed ruleset test\" f=\"Guardian_Subscriptions.co.uk.xml\"><securecookie host=\"^(?:www\\.)?guardiansubscriptions\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GuerrillaMail.com\" f=\"GuerrillaMail.com.xml\"><securecookie host=\"^www\\.guerrillamail\\.com$\" name=\".+\"/><securecookie host=\"^grr\\.la$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Guidance Software\" f=\"Guidance-Software.xml\"><securecookie host=\"^www\\.guidancesoftware\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GuideStar.org (partial)\" default_off=\"failed ruleset test\" f=\"GuideStar.xml\"><securecookie host=\"^(?:www)?\\.guidestar\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Guide FAQ.com\" default_off=\"mismatched\" f=\"Guide_FAQ.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Guidebook.com\" f=\"Guidebook.com.xml\"><securecookie host=\"^\\.guidebook\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Guifi.net (partial)\" f=\"Guifi.xml\"><securecookie host=\"\\.guifi\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Guild Wars 2 (partial)\" f=\"Guild-Wars-2.xml\"><securecookie host=\"^.+\\.guildwars\\.com$\" name=\".+\"/><rule from=\"^http://((?:account|buy|forum(?:-de|-e[ns]|-fr)?|register|support|www)\\.)?guildwars2\\.com/\" to=\"https://$1guildwars2.com/\"/></ruleset>", "<ruleset name=\"The Guild of Master Craftsmen\" default_off=\"refused\" f=\"Guild_of_Master_Craftsmen.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?guildmc\\.com/\" to=\"https://www.guildmc.com/\"/></ruleset>", "<ruleset name=\"Guillaume Dargaud's website\" default_off=\"expired\" f=\"Guillaume_Dargauds_website.xml\"><rule from=\"^http://(?:www\\.)?gdargaud\\.net/\" to=\"https://gdargaud.net/\"/></ruleset>", "<ruleset name=\"Guim.co.uk (partial)\" default_off=\"failed ruleset test\" f=\"Guim.co.uk.xml\"><exclusion pattern=\"^http://assets\\..+/(?:commercial|enhanced-vendor|main)\\.js$\"/><rule from=\"^http://id\\.guim\\.co\\.uk/\" to=\"https://id.guardian.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Guitar Center.com (partial)\" default_off=\"failed ruleset test\" f=\"Guitar_Center.com.xml\"><securecookie host=\"^(?:clearance|gc)\\.guitarcenter\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?guitarcenter\\.com/(?=Ajax/|favicon\\.ico|[iI]ncludes/)\" to=\"https://www.guitarcenter.com/\"/><rule from=\"^http://(clearance|gc|images|m|stores)\\.guitarcenter\\.com/\" to=\"https://$1.guitarcenter.com/\"/></ruleset>", "<ruleset name=\"Guldencoin.com\" default_off=\"failed ruleset test\" f=\"Guldencoin.com.xml\"><securecookie host=\"^\\.guldencoin\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gulesider\" platform=\"mixedcontent\" f=\"Gulesider.xml\"><exclusion pattern=\"^http://kundesider\\.gulesider\\.no/\"/><rule from=\"^http://(?:www\\.)?gulesider\\.no/\" to=\"https://www.gulesider.no/\"/></ruleset>", "<ruleset name=\"Gum.co\" f=\"Gum.co.xml\"><securecookie host=\"^(?:\\.|www\\.)?gum\\.co$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GumGum (partial)\" f=\"GumGum.xml\"><rule from=\"^http://(www\\.)?gumgum\\.com/(?=images/|(?:login|terms-of-service)(?:/?$|\\?))\" to=\"https://$1gumgum.com/\"/><rule from=\"^http://(ads|g2)\\.gumgum\\.com/\" to=\"https://$1.gumgum.com/\"/><rule from=\"^http://c\\.gumgum\\.com/\" to=\"https://d1u2cbczpt82kt.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Gumroad.com\" f=\"Gumroad.com.xml\"><securecookie host=\"^(?:\\.|api\\.|www\\.)?gumroad\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gumstix\" f=\"Gumstix.xml\"><securecookie host=\"^\\.gumstix\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gun.io (partial)\" f=\"GunIO.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gunosy.com\" f=\"Gunosy.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Guru3d.com\" f=\"Guru3d.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://guru3d\\.com/\" to=\"https://www.guru3d.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Guru Labs.com\" f=\"Guru_Labs.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gust (partial)\" f=\"Gust.xml\"><rule from=\"^http://(www\\.)?gust\\.com/(?!$)\" to=\"https://$1gust.com/\"/></ruleset>", "<ruleset name=\"Gustavus.edu (partial)\" f=\"Gustavus.edu.xml\"><securecookie host=\"^gustavus\\.edu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gusto.com\" f=\"Gusto.com.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gutefrage.net (partial)\" f=\"Gutefrage.net.xml\"><exclusion pattern=\"^http://www\\.gutefrage\\.net/(?!favicon\\.(ico|png)|images/|js/|login|nutzer_hinzufuegen)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gutenberg.org\" f=\"Gutenberg.org.xml\"><securecookie host=\"^\\.gutenberg\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?gutenberg\\.org/\" to=\"https://www.gutenberg.org/\"/></ruleset>", "<ruleset name=\"Guttmacher Institute\" f=\"Guttmacher_Institute.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://guttmacher\\.org/\" to=\"https://www.guttmacher.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GwDg.de\" f=\"GwDg.de.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GwR YMCA.org\" f=\"GwR_YMCA.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gweb.io\" default_off=\"failed ruleset test\" f=\"Gweb.io.xml\"><securecookie host=\"^(?:\\.)?(?:.+)?(?:\\.)?gweb\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gwent.police.uk\" f=\"Gwent.police.uk.xml\"><rule from=\"^http://(www\\.)?gwent\\.police\\.uk/\" to=\"https://www.gwent.police.uk/\"/></ruleset>", "<ruleset name=\"Gwinnett County.com\" f=\"Gwinnett_County.com.xml\"><securecookie host=\"^www\\.gwinnettcounty\\.com$\" name=\".+\"/><rule from=\"^http://gwinnettcounty\\.com/\" to=\"https://www.gwinnettcounty.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gyazo.com (partial)\" f=\"Gyazo.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gyft.com\" f=\"Gyft.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GymGlish (problematic)\" default_off=\"mismatched\" f=\"GymGlish-problematic.xml\"><exclusion pattern=\"^http://(?:www\\.)?gymglish\\.vn/\"/><securecookie host=\"^www\\.gymglish\\.(?:\\w\\w|com\\.br|co\\.uk)$\" name=\".+\"/><rule from=\"^http://faq\\.gymglish\\.com/\" to=\"https://faq.gymglish.com/\"/><rule from=\"^http://(?:www\\.)?gymglish\\.(\\w\\w|com\\.br|co\\.uk)/\" to=\"https://www.gymglish.$1/\"/></ruleset>", "<ruleset name=\"GymGlish (partial)\" f=\"GymGlish.xml\"><exclusion pattern=\"^http://(?:www\\.)?gymglish\\.(?:\\w\\w|com\\.br|co\\.uk)/(?!images/)\"/><exclusion pattern=\"^http://(?:www\\.)?gymglish\\.vn/\"/><exclusion pattern=\"^http://webservers6?\\.gymglish\\.com/(?!images/)\"/><securecookie host=\"^.+\\.gymglish\\.com$\" name=\".+\"/><rule from=\"^http://(?:webservers6?\\.|www\\.)?gymglish\\.(?:\\w\\w|com|com\\.br|co\\.uk)/\" to=\"https://www.gymglish.com/\"/></ruleset>", "<ruleset name=\"Gynecomastia.org\" f=\"Gynecomastia.org.xml\"><securecookie host=\"^(?:(?:www)?\\.)?gynecomastia\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?gynecomastia\\.org/\" to=\"https://www.gynecomastia.org/\"/></ruleset>", "<ruleset name=\"H-CDN.co\" default_off=\"mismatched\" f=\"H-CDN.co.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"H-T.co\" default_off=\"failed ruleset test\" f=\"H-T.co.xml\"><securecookie host=\"^(?:i\\.)?h-t\\.co$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"h-node.org\" f=\"H-node.org.xml\"><securecookie host=\"^(?:www\\.)?h-node\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"H2HC.com.br\" f=\"H2HC.com.br.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"h5n.us\" default_off=\"failed ruleset test\" f=\"H5n.us.xml\"><rule from=\"^http://(?:(virtual\\.)|www\\.)?h5n\\.us/\" to=\"https://$1h5n.us/\"/></ruleset>", "<ruleset name=\"HAProxy.com (partial)\" f=\"HAProxy.com.xml\"><exclusion pattern=\"^http://blog\\.haproxy\\.com/+(?!i/)\"/><securecookie host=\"^(?:www\\.)?haproxy\\.com$\" name=\".+\"/><rule from=\"^http://blog\\.haproxy\\.com/\" to=\"https://alohalb.wordpress.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HBAnet.org\" f=\"HBAnet.org.xml\"><securecookie host=\"^\\.hbanet\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?hbanet\\.org/\" to=\"https://www.hbanet.org/\"/></ruleset>", "<ruleset name=\"HBO.com (partial)\" default_off=\"failed ruleset test\" f=\"HBO.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HBR.org\" f=\"HBR.org.xml\"><securecookie host=\"^(?:\\.|ox-d\\.|www\\.)?hbr\\.org$\" name=\".+\"/><rule from=\"^http://(?:static\\.|((?:blogs|ox-d|www)\\.))?hbr\\.org/\" to=\"https://$1hbr.org/\"/><rule from=\"^http://web\\.hbr\\.org/\" to=\"https://hbdm.hbsp.harvard.edu/\"/></ruleset>", "<ruleset name=\"HCL Technologies (partial)\" default_off=\"failed ruleset test\" f=\"HCL_Technologies.xml\"><securecookie host=\"^(?:(?:chn|comnetweb|isd)?mail|\\.?meme|mpindia|mycampus|(?:as\\.|download\\.)?ocsweb|remedy)\\.hcl\\.com$\" name=\".+\"/><securecookie host=\"^hcltmail(?:-chn)?\\.hcl\\.in$\" name=\".+\"/><securecookie host=\"^webmail\\.hcltech\\.com$\" name=\".+\"/><rule from=\"^http://(autodiscover|(?:chn|comnetweb|isd)?mail|meme|mpindia|mycampus|(?:as\\.|download\\.)?ocsweb|remedy)\\.hcl\\.com/\" to=\"https://$1.hcl.com/\"/><rule from=\"^http://(autodiscover|hcltmail(?:-chn)?)\\.hcl\\.in/\" to=\"https://$1.hcl.in/\"/><rule from=\"^http://autodiscover\\.hcl-axon\\.com/\" to=\"https://autodiscover.hcl-axon.com/\"/><rule from=\"^http://webmail\\.hcltech\\.com/\" to=\"https://webmail.hcltech.com/\"/></ruleset>", "<ruleset name=\"hClippr.com (partial)\" f=\"HClippr.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HD.se\" f=\"HD.se.xml\"><rule from=\"^http://hd\\.se/\" to=\"https://hd.se/\"/><rule from=\"^http://www\\.hd\\.se/\" to=\"https://hd.se/\"/></ruleset>", "<ruleset name=\"HDFury.com\" f=\"HDFury.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Huntington's Disease Society of America\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"HDSA.xml\"><rule from=\"^http://hdsa\\.org/\" to=\"https://www.hdsa.org/\"/><rule from=\"^http://www\\.hdsa\\.org/\" to=\"https://www.hdsa.org/\"/></ruleset>", "<ruleset name=\"HDserviceproviders.com\" f=\"HDserviceproviders.com.xml\"><securecookie host=\"^www\\.hdserviceproviders\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HDtracks.com\" f=\"HDtracks.com.xml\"><securecookie host=\"^www\\.hdtracks\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?hdtracks\\.com/\" to=\"https://www.hdtracks.com/\"/></ruleset>", "<ruleset name=\"HEA.net\" f=\"HEA.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HFO Telecom AG\" default_off=\"failed ruleset test\" f=\"HFO-Telecom.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HGO.se\" default_off=\"failed ruleset test\" f=\"HGO.se.xml\"><rule from=\"^http://hgo\\.se/\" to=\"https://www.hgo.se/\"/><rule from=\"^http://www\\.hgo\\.se/\" to=\"https://www.hgo.se/\"/><rule from=\"^http://space\\.hgo\\.se/\" to=\"https://space.hgo.se/\"/></ruleset>", "<ruleset name=\"HGST.com (partial)\" f=\"HGST.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HH.ru\" f=\"HH.ru.xml\"><exclusion pattern=\"^http://(?:[^./]+\\.){2}hh\\.ru/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HH.se\" f=\"HH.se.xml\"><rule from=\"^http://hh\\.se/\" to=\"https://www.hh.se/\"/><rule from=\"^http://www\\.hh\\.se/\" to=\"https://www.hh.se/\"/></ruleset>", "<ruleset name=\"HH CDN.ru\" f=\"HH_CDN.ru.xml\"><rule from=\"^http://www\\.hhcdn\\.ru/\" to=\"https://hhcdn.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HHid.com\" default_off=\"failed ruleset test\" f=\"HHid.ru.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HI.is (false MCB)\" platform=\"mixedcontent\" f=\"HI.is-falsemixed.xml\"><securecookie host=\"^vefir\\.hi\\.is$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HI.is (partial)\" f=\"HI.is.xml\"><securecookie host=\"^(?:kennslumidstod|nemendafelog|ugla|uni|webmail)\\.hi\\.is$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HIG.se\" default_off=\"failed ruleset test\" f=\"HIG.se.xml\"><rule from=\"^http://hig\\.se/\" to=\"https://www.hig.se/\"/><rule from=\"^http://www\\.hig\\.se/\" to=\"https://www.hig.se/\"/></ruleset>", "<ruleset name=\"HIIG.de\" default_off=\"mismatched, self-signed\" f=\"HIIG.de.xml\"><securecookie host=\"^(?:www\\.)?hiig\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HIS.se\" platform=\"mixedcontent\" f=\"HIS.se.xml\"><rule from=\"^http://his\\.se/\" to=\"https://www.his.se/\"/><rule from=\"^http://www\\.his\\.se/\" to=\"https://www.his.se/\"/></ruleset>", "<ruleset name=\"HITBSecConf\" f=\"HITBSecConf.xml\"><securecookie host=\"^(?:conference|news)\\.hitb\\.org$\" name=\".+\"/><rule from=\"^http://(conference|news)\\.hitb\\.org/\" to=\"https://$1.hitb.org/\"/></ruleset>", "<ruleset name=\"HJCMS.de (CAcert)\" platform=\"cacert\" default_off=\"failed ruleset test\" f=\"HJCMS.xml\"><securecookie host=\"^(?:.*\\.)?hjcms\\.de$\" name=\".*\"/><rule from=\"^http://(\\w+\\.)?hjcms\\.de/\" to=\"https://$1hjcms.de/\"/></ruleset>", "<ruleset name=\"HJR-Verlag.de\" f=\"HJR-Verlag.de.xml\"><securecookie host=\"^(?:mediendb|www)\\.hjr-verlag\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?hjr-verlag\\.de/\" to=\"https://www.hjr-verlag.de/\"/><rule from=\"^http://mediendb\\.hjr-verlag\\.de/\" to=\"https://mediendb.hjr-verlag.de/\"/></ruleset>", "<ruleset name=\"HK01.com\" f=\"HK01.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HKEdCity (partial)\" f=\"HKEdCity.xml\"><rule from=\"^http://(?:www\\.)?hkedcity\\.net/\" to=\"https://www.hkedcity.net/\"/></ruleset>", "<ruleset name=\"HKGOLDEN.com\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"HKGOLDEN.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Agriculture, Fisheries and Conservation Department\" default_off=\"missing certificate chain\" f=\"HKGov-AFCD.xml\"><rule from=\"^http://(?:www\\.)?afcd\\.gov\\.hk/\" to=\"https://www.afcd.gov.hk/\"/></ruleset>", "<ruleset name=\"Architectural Services Department\" default_off=\"missing certificate chain\" f=\"HKGov-ArchSD.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Development Bureau (HKSARG)\" f=\"HKGov-DEVB.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hong Kong Monetary Authority (partial)\" f=\"HKGov-HKMA.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hyd.gov.hk\" f=\"HKGov-HYD.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hong Kong Housing Authority\" f=\"HKGov-HousingAuth.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Innovation and Technology Fund\" f=\"HKGov-ITF.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Legal Aid Department (partial)\" f=\"HKGov-LAD.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Leisure and Cultural Services Department\" f=\"HKGov-LCSD.xml\"><exclusion pattern=\"^http://www\\.lcsd\\.gov\\.hk/(en|tc|sc)/news\\.php\"/><exclusion pattern=\"^http://www\\.lcsd\\.gov\\.hk/(en|tc|sc)/contactus/(access|email)\\.php\"/><exclusion pattern=\"^http://www\\.lcsd\\.gov\\.hk/(en|tc|sc)/aboutlcsd/jobs\\.php\"/><rule from=\"^http://(www\\.)?lcsd\\.gov\\.hk/\" to=\"https://www.lcsd.gov.hk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"news.gov.hk\" f=\"HKGov-NEWS.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trade and Industry Department\" f=\"HKGov-TID.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HKK\" f=\"HKK.de.xml\"><rule from=\"^http://(?:www\\.)?hkk\\.de/\" to=\"https://www.hkk.de/\"/></ruleset>", "<ruleset name=\"HKN (partial)\" f=\"HKN.xml\"><securecookie host=\"^(?:www\\.)?hkn\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HKW.de\" f=\"HKW.de.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HK Yanto Yan.com (false MCB)\" platform=\"mixedcontent\" f=\"HK_Yanto_Yan.com-falsemixed.xml\"><securecookie host=\"^(?:\\.|www\\.)?hkyantoyan\\.com$\" name=\".+\"/><rule from=\"^http://www\\.hkyantoyan\\.com/\" to=\"https://www.hkyantoyan.com/\"/></ruleset>", "<ruleset name=\"HK Yanto Yan.com (partial)\" f=\"HK_Yanto_Yan.com.xml\"><exclusion pattern=\"http://www\\.hkyantoyan\\.com/+(?!favicon\\.ico|wp-content/|wp-includes/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hm.com\" platform=\"mixedcontent\" f=\"HM.com.xml\"><rule from=\"^http://www\\.hm\\.com/\" to=\"https://www.hm.com/\"/><rule from=\"^http://hm\\.com/\" to=\"https://www.hm.com/\"/></ruleset>", "<ruleset name=\"HMRC.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"HMRC.gov.uk.xml\"><exclusion pattern=\"^http://(?:aka\\.|www\\.)?hmrc\\.gov\\.uk/+(?!$|\\?|index\\.htm)\"/><securecookie host=\"^\\.\" name=\"^X_DEVICE_ID$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:aka\\.|www\\.)?hmrc\\.gov\\.uk/.*\" to=\"https://www.gov.uk/government/organisations/hm-revenue-customs\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HMV (partial)\" default_off=\"expired\" f=\"HMV.xml\"><rule from=\"^http://www3\\.hmv\\.co\\.uk/\" to=\"https://www3.hmv.co.uk/\"/><securecookie host=\"^hmv\\.com$\" name=\".*\"/></ruleset>", "<ruleset name=\"HMV Japan (partial)\" f=\"HMV_Japan.xml\"><securecookie host=\"^\\.hmv\\.co\\.jp$\" name=\"(?:s_\\w+|__utm)\\w$\"/><rule from=\"^http://(?:www\\.)?hmv\\.co\\.jp/(?=async/|favicon\\.ico|login/)\" to=\"https://www.hmv.co.jp/\"/><rule from=\"^http://img(-org)?\\.hmv\\.co\\.jp/\" to=\"https://img$1.hmv.co.jp/\"/></ruleset>", "<ruleset name=\"hMailServer.com (partial)\" f=\"HMailServer.com.xml\"><securecookie host=\"^(?:build)?\\.hmailserver\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HON.ch (Health On the Net)\" default_off=\"failed ruleset test\" f=\"HON.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HONcode.ch\" f=\"HONcode.xml\"><rule from=\"^http://honcode\\.ch/\" to=\"https://www.honcode.ch/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HPI.de\" f=\"HPI.de.xml\"><securecookie host=\"^(?:www\\.)?open\\.hpi\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HP Cloud.com (partial)\" default_off=\"failed ruleset test\" f=\"HP_Cloud.com.xml\"><exclusion pattern=\"http://www\\.hpcloud\\.com/(?!sites/)\"/><rule from=\"^http://((?:blog|marketplace|www)\\.)?hpcloud\\.com/\" to=\"https://$1hpcloud.com/\"/></ruleset>", "<ruleset name=\"H+: the Digital Series\" default_off=\"failed ruleset test\" f=\"HPlus_the_Digital_Series.xml\"><rule from=\"^http://(?:www\\.)?hplusdigitalseries\\.com/\" to=\"https://www.hplusdigitalseries.com/\"/></ruleset>", "<ruleset name=\"HR-Skyen.dk\" f=\"HR-Skyen.dk.xml\"><securecookie host=\"(www\\.)?hr-skyen\\.dk\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HRA-News.org\" f=\"HRA-News.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HR Solutions\" default_off=\"failed ruleset test\" f=\"HR_Solutions.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HRsmart\" platform=\"mixedcontent\" f=\"HRsmart.xml\"><securecookie host=\"^.*\\.hrdepartment\\.com$\" name=\".*\"/><securecookie host=\"^www\\.hrsmart\\.com$\" name=\".*\"/><rule from=\"^http://(\\w+)\\.(mua|tms)\\.hrdepartment\\.com/\" to=\"https://$1.$2.hrdepartment.com/\"/><rule from=\"^http://(www\\.)?hrsmart\\.com/\" to=\"https://$1hrsmart.com/\"/></ruleset>", "<ruleset name=\"HS-analytics.net\" f=\"HS-analytics.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HSBC.com (partial)\" default_off=\"testing\" f=\"HSBC.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://(assetmanagement|expat|ukbusiness|banking\\.us)\\.hsbc\\.com/\" to=\"https://www.$1.hsbc.com/\"/><rule from=\"^http://www\\.bd\\.hsbc\\.com/\" to=\"https://www.hsbc.com.bd/\"/><rule from=\"^http://www\\.(?:corporate|institutional)\\.hsbc\\.com/\" to=\"https://www.hsbcnet.com/\"/><rule from=\"^http://(?:www\\.ebanking\\.|www\\.)?kr\\.hsbc\\.com/\" to=\"https://www.hsbc.co.kr/\"/><rule from=\"^http://theopen\\.golf\\.hsbc\\.com/[^?]*\" to=\"https://financialplanning.hsbc.com.uk/\"/><rule from=\"^http://www\\.mefco\\.hsbc\\.com/[^?]*\" to=\"https://www.hsbc.ae/mefco\"/><rule from=\"^http://(?:www\\.)?vn\\.hsbc\\.com/\" to=\"https://www.hsbc.com.vn/\"/></ruleset>", "<ruleset name=\"Home School Legal Defense Association\" platform=\"mixedcontent\" f=\"HSLDA.xml\"><rule from=\"^http://(?:www\\.)?hslda\\.org/\" to=\"https://www.hslda.org/\"/><rule from=\"^http://secure\\.hslda\\.org/\" to=\"https://secure.hslda.org/\"/></ruleset>", "<ruleset name=\"HSV.se\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"HSV.se.xml\"><rule from=\"^http://hsv\\.se/\" to=\"https://www.hsv.se/\"/><rule from=\"^http://www\\.hsv\\.se/\" to=\"https://www.hsv.se/\"/></ruleset>", "<ruleset name=\"HSappstatic.net\" f=\"HSappstatic.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HSstatic.net\" f=\"HSstatic.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HTC.com (partial)\" f=\"HTC.com.xml\"><rule from=\"^http://htc\\.com/\" to=\"https://www.htc.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HTML5Sec.org (partial)\" f=\"HTML5Sec.org.xml\"><rule from=\"^http://www\\.html5sec\\.org/\" to=\"https://html5sec.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HTML5Video.org\" f=\"HTML5Video.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HTML5 Rocks\" f=\"HTML5rocks.com.xml\"><rule from=\"^http://(www\\.)?html5rocks\\.com/\" to=\"https://www.html5rocks.com/\"/><rule from=\"^http://updates\\.html5rocks\\.com/\" to=\"https://developers.google.com/web/updates/\"/></ruleset>", "<ruleset name=\"HTML5test.com\" f=\"HTML5test.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HTTP Status Cats\" f=\"HTTP.cat.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://(www\\.)?http\\.cat/\" to=\"https://http.cat/\"/></ruleset>", "<ruleset name=\"HTTPSWatch.nz\" f=\"HTTPSWatch.nz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HTTPwatch.com\" f=\"HTTPwatch.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HTW-Berlin.de (partial)\" default_off=\"failed ruleset test\" f=\"HTW-Berlin.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HTWG Konstanz\" f=\"HTWG-Konstanz.xml\"><rule from=\"^http://qisserver\\.htwg-konstanz\\.de/\" to=\"https://qisserver.htwg-konstanz.de/\"/><rule from=\"^http://lsf\\.htwg-konstanz\\.de/\" to=\"https://lsf.htwg-konstanz.de/\"/><rule from=\"^http://login\\.rz\\.htwg-konstanz\\.de/\" to=\"https://login.rz.htwg-konstanz.de/\"/><rule from=\"^http://webmail\\.htwg-konstanz\\.de/\" to=\"https://webmail.htwg-konstanz.de/\"/></ruleset>", "<ruleset name=\"HT Bridge.com\" f=\"HT_Bridge.com.xml\"><securecookie host=\"^\\.htbridge\\.com$\" name=\".+\"/><rule from=\"^http://htbridge\\.com/\" to=\"https://www.htbridge.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HUBzero.org\" f=\"HUBzero.xml\"><securecookie host=\"^hubzero\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HUK Coburg\" platform=\"mixedcontent\" f=\"HUK.de.xml\"><rule from=\"^http://(?:www\\.)?huk\\.de/\" to=\"https://www.huk.de/\"/></ruleset>", "<ruleset name=\"HUP\" f=\"HUP.hu.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HVG Kiadó Zrt.\" f=\"HVGKonyvek.xml\"><securecookie host=\"^www\\.hvgkonyvek\\.hu$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HWSW.hu\" default_off=\"expired\" f=\"HWSW.hu.xml\"><securecookie host=\"^\\.hwsw\\.hu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HaCoder.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"HaCoder.com.xml\"><securecookie host=\"^\\.hacoder\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Habbo.fi\" f=\"Habbo.fi.xml\"><rule from=\"^http://(?:www\\.)?habbo\\.fi/\" to=\"https://www.habbo.fi/\"/><rule from=\"^http://help\\.habbo\\.fi/\" to=\"https://help.habbo.fi/\"/></ruleset>", "<ruleset name=\"HabboLatino\" default_off=\"failed ruleset test\" f=\"HabboLatino.xml\"><securecookie host=\"^(?:w*\\.)?hlat\\.us$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Haber Vision (partial)\" f=\"Haber-Vision.xml\"><securecookie host=\"^(?:.*\\.)?habervision\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?habervision\\.com/(css/|images/|mainstreet/)\" to=\"https://www.habervision.com/$1\"/></ruleset>", "<ruleset name=\"Habets.pp.se\" f=\"Habets.pp.se.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Habets.se\" f=\"Habets.se.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://www\\.habets\\.se/\" to=\"https://habets.se/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"habpl.us\" default_off=\"failed ruleset test\" f=\"Habpl.us.xml\"><securecookie host=\"^\\.?habpl\\.us$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HabraCDN.net\" f=\"HabraCDN.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Habrahabr.ru (partial)\" default_off=\"failed ruleset test\" f=\"Habrahabr.ru.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"habrastorage.org\" f=\"Habrastorage.org.xml\"><rule from=\"^http://www\\.habrastorage\\.org/\" to=\"https://habrastorage.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HacDC.org (partial)\" platform=\"mixedcontent\" f=\"HacDC.org.xml\"><securecookie host=\"^wiki\\.hacdc\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HackHands.com\" f=\"HackHands.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HackLab.to\" f=\"HackLab.to.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HackRead.com\" f=\"HackRead.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hack In Paris.com\" f=\"Hack_In_Paris.com.xml\"><securecookie host=\"^\\.hackinparis\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hack This Site.org\" f=\"Hack_This_Site.org.xml\"><securecookie host=\"^www\\.hackthissite\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hackaday.io (partial)\" f=\"Hackaday.io.xml\"><securecookie host=\"^(?:dev\\.)?hackaday\\.io$\" name=\".+\"/><rule from=\"^http://www\\.hackaday\\.io/\" to=\"https://hackaday.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hackademix.net\" default_off=\"failed ruleset test\" f=\"Hackademix.net.xml\"><securecookie host=\"^www\\.hackademix\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Y Combinator.com\" f=\"HackerNews.xml\"><securecookie host=\"^(?:.*\\.)?ycombinator\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HackerRank.com\" f=\"HackerRank.com.xml\"><securecookie host=\"^www\\.hackerrank\\.com$\" name=\".+\"/><securecookie host=\"^\\.hrcdn\\.net$\" name=\".+\"/><rule from=\"^http://(www\\.)?hackerrank\\.com/\" to=\"https://$1hackerrank.com/\"/><rule from=\"^http://hrcdn\\.net/\" to=\"https://hrcdn.net/\"/></ruleset>", "<ruleset name=\"Hacker Experience.com\" f=\"Hacker_Experience.com.xml\"><securecookie host=\"^\\.hackerexperience\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hacker Target.com\" default_off=\"failed ruleset test\" f=\"Hacker_Target.com.xml\"><securecookie host=\"^(?:www\\.)?hackertarget\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hackerboard.de (partial)\" f=\"Hackerboard.de.xml\"><securecookie host=\"^\\.hackerboard\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hackers.fi\" default_off=\"failed ruleset test\" f=\"Hackers.fi.xml\"><rule from=\"^http://(?:(root\\.)|www\\.)?hackers\\.fi/\" to=\"https://$1hackers.fi/\"/></ruleset>", "<ruleset name=\"hackerschool.com\" f=\"Hackerschool.xml\"><securecookie host=\"^(?:.*\\.)?hackerschool\\.com$\" name=\".*\"/><rule from=\"^http://hackerschool\\.com/\" to=\"https://www.hackerschool.com/\"/><rule from=\"^http://(\\w+)\\.hackerschool\\.com/\" to=\"https://$1.hackerschool.com/\"/></ruleset>", "<ruleset name=\"Hackerspace.pl\" default_off=\"failed ruleset test\" f=\"Hackerspace.pl.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hackerspaces.nl\" f=\"Hackerspaces.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hackerspaces.org\" f=\"Hackerspaces.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hackforums.net\" f=\"Hackforums.net.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hacking.Ventures\" default_off=\"failed ruleset test\" f=\"Hacking.Ventures.xml\"><rule from=\"^http://(?:www\\.)?hacking\\.ventures/\" to=\"https://hacking.ventures/\"/></ruleset>", "<ruleset name=\"Hackinthebox.org\" default_off=\"failed ruleset test\" f=\"Hackinthebox.org.xml\"><rule from=\"^http://forum\\.hackinthebox\\.org/\" to=\"https://forum.hackinthebox.org/\"/><rule from=\"^http://(?:www\\.)?hackinthebox\\.org/\" to=\"https://www.hackinthebox.org/\"/></ruleset>", "<ruleset name=\"Hackney.gov.uk (MCB)\" platform=\"mixedcontent\" f=\"Hackney.gov.uk-mixedcontent.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hackney.gov.uk (partial)\" f=\"Hackney.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hackover.de\" f=\"Hackover.de.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hackpad\" f=\"Hackpad.xml\"><securecookie host=\".*\\.hackpad\\.com$\" name=\".+\"/><rule from=\"^http://([\\w-]+\\.)?hackpad\\.com/\" to=\"https://$1hackpad.com/\"/></ruleset>", "<ruleset name=\"hackthe.computer\" default_off=\"failed ruleset test\" f=\"Hackthe.computer.xml\"><rule from=\"^http://www\\.hackthe\\.computer/\" to=\"https://hackthe.computer/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HacktionLab.org\" default_off=\"failed ruleset test\" f=\"HacktionLab.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HadithAnswers.com\" f=\"HadithAnswers.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HadithBD.com\" f=\"HadithBD.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hadrons.org\" f=\"Hadrons.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hafner-ips.com\" f=\"Hafner-ips.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Haiku Project\" f=\"Haiku_Project.xml\"><securecookie host=\"^\\.haiku-os\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hail Protector\" default_off=\"failed ruleset test\" f=\"Hail_Protector.xml\"><securecookie host=\"^\\.myhailprotector\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?myhailprotector\\.com/\" to=\"https://www.myhailprotector.com/\"/></ruleset>", "<ruleset name=\"Hail Storm Products\" f=\"Hail_Storm_Products.xml\"><securecookie host=\"^\\.hailstormproducts\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)hailavenger(?:\\.hailguardian)\\.com/\" to=\"https://secure.bluehost.com/~hailguar/hailavenger/\"/><rule from=\"^http://(?:www\\.)?hailguardian\\.com/\" to=\"https://secure.bluehost.com/~hailguar/\"/><rule from=\"^http://(?:www\\.)?hailstormproducts\\.com/\" to=\"https://www.hailstormproducts.com/\"/></ruleset>", "<ruleset name=\"Hairsmize.com\" f=\"Hairsmize.com.xml\"><securecookie host=\"^\\.hairsmize\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hak5.org (false MCB)\" platform=\"mixedcontent\" f=\"Hak5.org-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hak5.org (partial)\" f=\"Hak5.org.xml\"><exclusion pattern=\"^http://(?:www\\.)?hak5\\.org/+(?!favicon\\.ico|wp-content/|wp-includes/)\"/><securecookie host=\"^\\.forums\\.hak5\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hakin9.org\" f=\"Hakin9.org.xml\"><securecookie host=\"^\\.hakin9\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hakka Labs.co\" f=\"Hakka_Labs.co.xml\"><securecookie host=\"^(?:www)?\\.hakkalabs\\.co$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hakko.com\" platform=\"mixedcontent\" f=\"Hakko.com.xml\"><rule from=\"^http://(?:www\\.)?hakko\\.com/\" to=\"https://www.hakko.com/\"/></ruleset>", "<ruleset name=\"Halcyon.sh\" f=\"Halcyon.sh.xml\"><rule from=\"^http://(?:www\\.)?halcyon\\.sh/\" to=\"https://halcyon.sh/\"/></ruleset>", "<ruleset name=\"Halebop.se\" platform=\"mixedcontent\" f=\"Halebop.se.xml\"><rule from=\"^http://halebop\\.se/\" to=\"https://www.halebop.se/\"/><rule from=\"^http://www\\.halebop\\.se/\" to=\"https://www.halebop.se/\"/></ruleset>", "<ruleset name=\"Halifax\" f=\"Halifax.xml\"><securecookie host=\"^\\.halifax(?:-online)?\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?halifax(-online)?\\.co\\.uk/\" to=\"https://www.halifax$1.co.uk/\"/></ruleset>", "<ruleset name=\"Hall Data.com\" f=\"Hall_Data.com.xml\"><securecookie host=\"^1105-sub\\.halldata\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Halo\" f=\"Halo.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://halowaypoint\\.com/\" to=\"https://www.halowaypoint.com/\"/><rule from=\"^http://download\\.halowaypoint\\.com/\" to=\"https://download-ssl.halowaypoint.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Halsnaes.dk\" f=\"Halsnaes.dk.xml\"><securecookie host=\"^\\.?(www\\.)?halsnaes\\.dk\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HamStudy.org (partial)\" f=\"HamStudy.org.xml\"><securecookie host=\"^(?:\\.|www\\.)?hamstudy\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ham Radio Science.com\" default_off=\"mismatched\" f=\"Ham_Radio_Science.com.xml\"><securecookie host=\"^\\.(?:www\\.)?hamradioscience\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?hamradioscience\\.com/\" to=\"https://www.hamradioscience.com/\"/></ruleset>", "<ruleset name=\"Hamburg\" f=\"Hamburg.de.xml\"><rule from=\"^http://(?:www\\.)?hamburg\\.de/\" to=\"https://www.hamburg.de/\"/></ruleset>", "<ruleset name=\"Hammacher Schlemmer (partial)\" platform=\"mixedcontent\" f=\"Hammacher-Schlemmer.xml\"><rule from=\"^http://(?:images\\.)?hammacher\\.com/\" to=\"https://www.hammacher.com/\"/><rule from=\"^http://www\\.hammacher\\.com/((?:(?:cs|[iI]mage)s30)/|favicon\\.ico)\" to=\"https://www.hammacher.com/$1\"/><rule from=\"^http://digital\\.hammacher\\.com/\" to=\"https://digital.hammacher.com/\"/></ruleset>", "<ruleset name=\"Hamppu.net (mismatches)\" default_off=\"mismatched\" f=\"Hamppu.net.xml\"><rule from=\"^http://(?:www\\.)?hamppu\\.net/\" to=\"https://hamppu.net/\"/></ruleset>", "<ruleset name=\"Hamradio.com\" default_off=\"failed ruleset test\" f=\"Hamradio.com.xml\"><rule from=\"^http://(?:www\\.)?hamradio\\.com/\" to=\"https://www.hamradio.com/\"/></ruleset>", "<ruleset name=\"Handbrake.fr\" f=\"Handbrake.fr.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://www\\.handbrake\\.fr/\" to=\"https://handbrake.fr/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"handelsbanken.fi (partial)\" default_off=\"failed ruleset test\" f=\"Handelsbanken.fi.xml\"><rule from=\"^http://(?:www\\.)?handelsbanken\\.fi/\" to=\"https://www.handelsbanken.fi/\"/><rule from=\"^http://(www1|www2|www9)\\.handelsbanken\\.fi/\" to=\"https://$1.handelsbanken.fi/\"/><rule from=\"^http://(?:www\\.)?aktiiviraha\\.fi/\" to=\"https://www.aktiiviraha.fi/\"/><rule from=\"^http://netsale\\.aktiiviraha\\.fi/\" to=\"https://netsale.aktiiviraha.fi/\"/></ruleset>", "<ruleset name=\"Handelsblatt (partial)\" f=\"Handelsblatt.xml\"><securecookie host=\"^abo\\.handelsblatt\\.com$\" name=\".+\"/><rule from=\"^http://handelsblatt\\.com/\" to=\"https://handelsblatt.com/\"/><rule from=\"^http://(abo|amp|angebot|archiv|award|epaper|global|global-auth|global-static|kaufhaus|morningbriefing|quiz|reiseauktion|signup|us-wahl|www)\\.handelsblatt\\.com/\" to=\"https://$1.handelsblatt.com/\"/><rule from=\"^http://staticef[12]\\.handelsblatt\\.com/\" to=\"https://d21rxpf5vn0rru.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Handelsregister.de\" default_off=\"failed ruleset test\" f=\"Handelsregister.de.xml\"><securecookie host=\"^(www\\.)?handelsregister\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Handmade Kultur.de (partial)\" f=\"Handmade_Kultur.de.xml\"><rule from=\"^http://(www\\.)?handmadekultur\\.de/(?!/*(?:$|\\?))\" to=\"https://$1handmadekultur.de/\"/></ruleset>", "<ruleset name=\"Hands.com (partial)\" platform=\"mixedcontent\" f=\"Hands.com.xml\"><securecookie host=\"^(www\\.)?hands\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Handsome Code.com\" default_off=\"mismatched\" f=\"Handsome_Code.com.xml\"><rule from=\"^http://(?:www\\.)?handsomecode\\.com/\" to=\"https://www.handsomecode.com/\"/></ruleset>", "<ruleset name=\"Handtekening.nl\" f=\"Handtekening.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"handy.de\" f=\"Handy.de.xml\"><rule from=\"^http://(?:www\\.)?handy\\.de/+[^?]*\\?(.*)\" to=\"https://www.etracker.de/lnkcnt.php?et=kbglnx&url=http://www.mondiamedia.com%3FL%3D0%26redirect_from%3Dhandy.de&lnkname=handy&$1\"/><rule from=\"^http://(?:www\\.)?handy\\.de/.*\" to=\"https://www.etracker.de/lnkcnt.php?et=kbglnx&url=http://www.mondiamedia.com%3FL%3D0%26redirect_from%3Dhandy.de&lnkname=handy\"/><rule from=\"^http://img\\.handy\\.de/\" to=\"https://i.arvm.de/\"/></ruleset>", "<ruleset name=\"Hanford.gov\" default_off=\"refused\" f=\"Hanford_Site.xml\"><securecookie host=\"^(?:www\\.)?hanford\\.gov$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hang Seng Bank\" f=\"HangSengBank.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hannover Messe.de (partial)\" f=\"Hannover_Messe.de.xml\"><exclusion pattern=\"^http://www\\.hannovermesse\\.de/(?!en/applikation/secure/|meinemesse/login|myfair-root/login)\"/><rule from=\"^http://hannovermesse\\.de/\" to=\"https://www.hannovermesse.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hants.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"Hants.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hao123.com (partial)\" f=\"Hao123.xml\"><securecookie host=\"^\\.topic\\.\" name=\".\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Haobtc.com\" f=\"Haobtc.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HappyHardcore.com\" f=\"HappyHardcore.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HappyKnowledge.com\" f=\"HappyKnowledge.com.xml\"><securecookie host=\"^(?:www)\\.happyknowledge\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?happyknowledge\\.com/\" to=\"https://www.happyknowledge.com/\"/></ruleset>", "<ruleset name=\"Happy Planet Index.org\" f=\"HappyPlanetIndex.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Happy Herbivore (partial)\" f=\"Happy_Herbivore.xml\"><rule from=\"^http://css\\.happyherbivore\\.com/\" to=\"https://d2vtfeon2ovn8e.cloudfront.net/\"/><rule from=\"^http://media\\.happyherbivore\\.com/\" to=\"https://d1go12qtky6pt0.cloudfront.net/\"/><rule from=\"^http://photos\\.happyherbivore\\.com/\" to=\"https://dmi4pvc5gbhhd.cloudfront.net/\"/><rule from=\"^http://store\\.happyherbivore\\.com/themes/\" to=\"https://www.storenvy.com/themes/\"/></ruleset>", "<ruleset name=\"happyassassin.net\" default_off=\"failed ruleset test\" f=\"Happyassassin.net.xml\"><securecookie host=\"^(?:mail\\.|www\\.)?happyassassin\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Happyfoto\" f=\"Happyfoto.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Harakahdaily (partial)\" f=\"Harakahdaily.xml\"><exclusion pattern=\"^http://arkib\\.harakahdaily\\.net/(?!resource/)\"/><securecookie host=\"^(?:en|m)\\.harakahdaily\\.net$\" name=\".+\"/><securecookie host=\"^\\.harakah\\.net\\.my$\" name=\".+\"/><rule from=\"^http://((?:arkib|bm|cdn-ads|en|m|www)\\.)?harakahdaily\\.net/\" to=\"https://$1harakahdaily.net/\"/><rule from=\"^http://(cdn\\.|www\\.)?harakah\\.net\\.my/\" to=\"https://$1harakah.net.my/\"/></ruleset>", "<ruleset name=\"Hardcore Teen Girls\" default_off=\"mismatch, self-signed\" f=\"Hardcore_Teen_Girls.xml\"><securecookie host=\"^hardcoreteengirls\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?hardcoreteengirls\\.com/\" to=\"https://hardcoreteengirls.com/\"/></ruleset>", "<ruleset name=\"HardenedBSD.org (partial)\" default_off=\"failed ruleset test\" f=\"HardenedBSD.org.xml\"><securecookie host=\"^\\.hardenedbsd\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hardwarebug\" default_off=\"self-signed\" f=\"Hardwarebug.xml\"><rule from=\"^http://(?:www\\.)?hardwarebug\\.org/\" to=\"https://hardwarebug.org/\"/></ruleset>", "<ruleset name=\"Hark\" default_off=\"failed ruleset test\" f=\"Hark.xml\"><securecookie host=\"^www\\.hark\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?hark\\.com/\" to=\"https://$1hark.com/\"/><rule from=\"^http://cdn\\d?\\.hark\\.com/\" to=\"https://d1qq3790ig6355.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Harland Clarke\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Harland-Clarke.xml\"><exclusion pattern=\"^http://(?:www\\.)?harlandclarke\\.com/businessshop(?:$|/)\"/><exclusion pattern=\"^http://(?:www\\.)?harlandclarke\\.com/bdocs2(?:$|/)\"/><securecookie host=\"(?:^|\\.)checksconnect\\.com$\" name=\".+\"/><securecookie host=\"^member\\.harland\\.com$\" name=\".+\"/><securecookie host=\"^(?:branchprod|vansso)\\.harland\\.net$\" name=\".+\"/><securecookie host=\"(?:^|\\.)(?:harlandclarke(?:giftcard|websmart)|harlandforms|ordermychecks)\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?checksconnect\\.com/\" to=\"https://www.checksconnect.com/\"/><rule from=\"^http://app3\\.checksconnect\\.com/\" to=\"https://app3.checksconnect.com/\"/><rule from=\"^http://member\\.harland\\.com/\" to=\"https://member.harland.com/\"/><rule from=\"^http://(?:www\\.)?harland\\.(?:com|net)/?$\" to=\"https://www.ordermychecks.com/\"/><rule from=\"^http://(branchprod|vansso)\\.harland\\.net/\" to=\"https://$1.harland.net/\"/><rule from=\"^http://(www\\.)?(harlandclarke(giftcard|websmart)?|harlandforms|ordermychecks)\\.com/\" to=\"https://www.$2.com/\"/></ruleset>", "<ruleset name=\"Harman International Industries (partial)\" default_off=\"failed ruleset test\" f=\"Harman-International-Industries.xml\"><exclusion pattern=\"http://www\\.akg\\.\"/><rule from=\"^http://(?:\\w+\\.(?:akg|infinitysystems)\\.com|(?:www\\.)?shop\\.harman\\.com|(?:www\\.)?harmankardon\\.nl)/(plugins|system|tl_files)/\" to=\"https://shop.harman.com/$1/\"/></ruleset>", "<ruleset name=\"Harper Reed.com\" f=\"Harper_Reed.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"harrenmedianetwork.com\" f=\"Harrenmedianetwork.com.xml\"><rule from=\"^http://ad\\.harrenmedianetwork\\.com/\" to=\"https://ad.yieldmanager.com/\"/></ruleset>", "<ruleset name=\"Harris Interactive (partial)\" f=\"Harris-Interactive.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Harris Computer.com (partial)\" f=\"Harris_Computer.com.xml\"><securecookie host=\"^webmail\\.harriscomputer\\.com$\" name=\".+\"/><rule from=\"^http://(bonaventure|mail|webmail)\\.harriscomputer\\.com/\" to=\"https://$1.harriscomputer.com/\"/></ruleset>", "<ruleset name=\"Harrow.io\" f=\"Harrow.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Harry S Truman Library and Museum\" f=\"Harry_S_Truman_Library_and_Museum.xml\"><rule from=\"^http://(?:www\\.)?trumanlibrary\\.org/\" to=\"https://www.trumanlibrary.org/\"/></ruleset>", "<ruleset name=\"Hart voor Internetvrijheid.nl\" f=\"Hart_voor_Internetvrijheid.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hartware.de\" f=\"Hartware.de.xml\"><rule from=\"^http://www\\.hartware\\.de/\" to=\"https://www.hartware.de/\"/></ruleset>", "<ruleset name=\"Hartwork.org\" f=\"Hartwork-Project.xml\"><securecookie host=\"^blog\\.hartwork\\.org$\" name=\".*\"/><rule from=\"^http://(www\\.)?binera\\.de/\" to=\"https://www.hartwork.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Harvard.edu (problematic)\" default_off=\"mismatched, cert-chain\" f=\"Harvard-University-expired.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Harvard.edu (partial)\" f=\"Harvard-University.xml\"><exclusion pattern=\"^http://(?:accessibility|cqh|economics|astronomy\\.fas|hr|huit|static\\.hwpi|(?:projects|static\\.projects|psr)\\.iq|onecampus|(?:computefest|iacs|robobees)\\.seas|shanghaicenter|trademark|(?:(?:programs|www)\\.)?wcfia)\\.harvard\\.edu/+(?!favicon\\.ico|files/|modules/|profiles/|sites/|user(?:$|\\?))\"/><exclusion pattern=\"^http://cbmi\\.catalyst\\.harvard\\.edu/(?!formsJsf/javax\\.faces\\.resource/|formsJsf/resources/)\"/><exclusion pattern=\"^http://www\\.cfa\\.harvard\\.edu/image_archive/\"/><exclusion pattern=\"^http://pearson\\.eps\\.harvard\\.edu/+(?!favicon\\.ico|misc/)\"/><exclusion pattern=\"^http://isites\\.harvard\\.edu/+(?!favicon\\.ico|[fj]s/|icb/calendar/themes/|icb/[\\w-]\\.css)\"/><securecookie host=\"^(?:community\\.alumni|connects\\.catalyst|rc\\.fas|\\w.*\\.rc\\.fas|login\\.icommons|.*\\.law|www\\|secure\\.post|www\\.seas)\\.harvard\\.edu$\" name=\".+\"/><rule from=\"^http://(berkman|hsph)\\.harvard\\.edu/\" to=\"https://www.$1.harvard.edu/\"/><rule from=\"^http://employment\\.harvard\\.edu/[^?]*\" to=\"https://hr.harvard.edu/jobs/\"/><rule from=\"^http://www\\.(rc\\.fas|trademark)\\.harvard\\.edu/\" to=\"https://$1.harvard.edu/\"/><rule from=\"^http://ksgexecprogram\\.harvard\\.edu/+\" to=\"https://exed.hks.harvard.edu/\"/><rule from=\"^http://(?:www\\.cyber|eon)\\.law\\.harvard\\.edu/\" to=\"https://cyber.law.harvard.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Harvard Pilgrim.org (partial)\" f=\"Harvard_Pilgrim.org.xml\"><rule from=\"^http://(?:www\\.)?harvardpilgrim\\.org/\" to=\"https://www.harvardpilgrim.org/\"/></ruleset>", "<ruleset name=\"HasGeek (partial)\" f=\"HasGeek.xml\"><rule from=\"^http://jobs\\.hasgeek\\.com/(new(?:/?$|\\?)|static/)\" to=\"https://jobs.hasgeek.com/$1\"/></ruleset>", "<ruleset name=\"HasOffers (partial)\" f=\"HasOffers.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\.signup\\.\" name=\".\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://support\\.hasoffers\\.com/+\" to=\"https://help.tune.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Haschek.at (partial)\" f=\"Haschek.at.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HashTalk.org\" default_off=\"refused\" f=\"HashTalk.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hashbang.ca\" default_off=\"failed ruleset test\" f=\"Hashbang.ca.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hashcat.net\" f=\"Hashcat.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hashnest.com\" f=\"Hashnest.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Haskell.org (partial)\" f=\"Haskell.org.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Haskell on Heroku.com\" f=\"Haskell_on_Heroku.com.xml\"><rule from=\"^http://(?:www\\.)?haskellonheroku\\.com/\" to=\"https://haskellonheroku.com/\"/></ruleset>", "<ruleset name=\"Haskoin.com\" f=\"Haskoin.com.xml\"><rule from=\"^http://(?:www\\.)?haskoin\\.com/+([^?]+)\" to=\"https://github.com/$1/haskoin\"/><rule from=\"^http://(?:www\\.)?haskoin\\.com/+\" to=\"https://github.com/haskoin\"/></ruleset>", "<ruleset name=\"Hass.de\" f=\"Hass.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hastexo.com\" f=\"Hastexo.com.xml\"><securecookie host=\"^(?:www)?\\.hastexo\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?hastexo\\.com/\" to=\"https://www.hastexo.com/\"/></ruleset>", "<ruleset name=\"Hastings.gov.uk (partial)\" f=\"Hastings.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hastrk1.com\" f=\"Hastrk1.com.xml\"><securecookie host=\"hastrk1\\.com\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hastrk3.com\" f=\"Hastrk3.com.xml\"><securecookie host=\"^hastrk3\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hatatorium\" default_off=\"failed ruleset test\" f=\"Hatatorium.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hatena (partial)\" f=\"Hatena.xml\"><rule from=\"^http://(www\\.)?hatena\\.ne\\.jp/(css/|images/|login($|\\?|/)|statics/)\" to=\"https://www.hatena.ne.jp/$2\"/><rule from=\"^http://(b|d)\\.st-hatena\\.com/images/\" to=\"https://$1.hatena.ne.jp/images/\"/><rule from=\"^http://(cdn\\.)?www\\.st-hatena\\.com/\" to=\"https://www.hatena.ne.jp/\"/><rule from=\"^http://cdn\\.api\\.b\\.hatena\\.ne\\.jp/\" to=\"https://cdn.api.b.hatena.ne.jp/\"/></ruleset>", "<ruleset name=\"HathiTrust Digital Library\" f=\"HathiTrust-Digital-Library.xml\"><securecookie host=\"^(analytics|babel|catalog|www)\\.hathitrust\\.org$\" name=\".+\"/><securecookie host=\"^(\\.)?m\\.hathitrust\\.org$\" name=\".+\"/><rule from=\"^http://hathitrust\\.org/\" to=\"https://www.hathitrust.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hauke-m.de\" f=\"Hauke-m.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HauteLook.com\" f=\"HauteLook.com.xml\"><securecookie host=\"^\\.hautelook\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HauteLook CDN.com\" f=\"HauteLook_CDN.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HaveProof.com\" default_off=\"failed ruleset test\" f=\"HaveProof.com.xml\"><rule from=\"^http://(?:www\\.)?haveproof\\.com/\" to=\"https://haveproof.com/\"/></ruleset>", "<ruleset name=\"Havelock Investments.com\" f=\"Havelock_Investments.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?havelockinvestments\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Havering.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"Havering.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hawaii.gov (partial)\" f=\"Hawaii.gov.xml\"><exclusion pattern=\"^http://portal\\.ehawaii\\.gov/landing/(?:\\?.*)?$\"/><securecookie host=\"^www\\.ehawaii\\.gov$\" name=\".+\"/><securecookie host=\"^stayconnected\\.hawaii\\.gov$\" name=\".+\"/><rule from=\"^http://(dlnr|hic|hidot|stayconnected)\\.hawaii\\.gov/\" to=\"https://$1.hawaii.gov/\"/><rule from=\"^http://(portal\\.|www\\.)?ehawaii\\.gov/\" to=\"https://$1ehawaii.gov/\"/></ruleset>", "<ruleset name=\"Hawaiian Airlines\" platform=\"mixedcontent\" f=\"HawaiianAirlines.xml\"><rule from=\"^http://hawaiianair\\.com/\" to=\"https://www.hawaiianair.com/\"/><rule from=\"^http://(emarket|ifs|www)\\.hawaiianair\\.com/\" to=\"https://$1.hawaiianair.com/\"/></ruleset>", "<ruleset name=\"Hawk Host.com (partial)\" f=\"Hawk_Host.com.xml\"><securecookie host=\"^(?:my|support|vps)?\\.hawkhost\\.com$\" name=\".+\"/><rule from=\"^http://((?:my|support|vps|www)\\.)?hawkhost\\.com/\" to=\"https://$1hawkhost.com/\"/></ruleset>", "<ruleset name=\"Haymarket (problematic)\" default_off=\"mismatched\" f=\"Haymarket-problematic.xml\"><securecookie host=\"^\\.careers\\.haymarket\\.com$\" name=\".+\"/><rule from=\"^http://careers\\.haymarket\\.com/\" to=\"https://careers.haymarket.com/\"/></ruleset>", "<ruleset name=\"Haymarket (partial)\" f=\"Haymarket.xml\"><securecookie host=\"^\\.haymarket\\.com$\" name=\"^utag_main$\"/><securecookie host=\"^(?:apac|\\.?shop)\\.haymarket\\.com$\" name=\".*\"/><securecookie host=\"^\\.?subscribe\\.haymarketmedia\\.com$\" name=\".+\"/><rule from=\"^http://(apac|shop)\\.haymarket\\.com/\" to=\"https://$1.haymarket.com/\"/><rule from=\"^http://subscribe\\.haymarketmedia\\.com/\" to=\"https://subscribe.haymarketmedia.com/\"/></ruleset>", "<ruleset name=\"Haystack Software\" f=\"HaystackSoftware.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hayward-Pool.com\" f=\"Hayward-Pool.com.xml\"><rule from=\"^http://(?:www\\.)?hayward-pool\\.com/\" to=\"https://www.hayward-pool.com/\"/></ruleset>", "<ruleset name=\"HbbTV\" f=\"HbbTV.xml\"><securecookie host=\"^(?:www\\.)?hbbtv\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hbz-nrw.de (partial)\" default_off=\"failed ruleset test\" f=\"Hbz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hckrnews.com\" f=\"Hckrnews.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hd-bits.com\" f=\"Hd-bits.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hdbits.org\" f=\"Hdbits.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hdfcbank.com\" f=\"Hdfcbank.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hdp.org.tr\" platform=\"mixedcontent\" f=\"Hdp.org.tr.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Head-Fi.org (partial)\" f=\"Head-Fi.org.xml\"><rule from=\"^http://cdn\\.head-fi\\.org/\" to=\"https://d1jesv1uvhg9i4.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Headphone.com\" f=\"Headphone.com.xml\"><securecookie host=\"^www\\.headphone\\.com$\" name=\".+\"/><rule from=\"^http://(?:media\\.)?headphone\\.com/\" to=\"https://www.headphone.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"headstrong.de\" f=\"Headstrong.de.xml\"><securecookie host=\"^www\\.headstrong\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?headstrong\\.de/\" to=\"https://www.headstrong.de/\"/></ruleset>", "<ruleset name=\"HealthCheckUSA\" default_off=\"failed ruleset test\" f=\"HealthCheckUSA.xml\"><securecookie host=\"^(?:\\.|secure\\.|www\\.)?healthcheckusa\\.com$\" name=\".+\"/><rule from=\"^(?:http://(?:www\\.)?|https://)healthcheckusa\\.com/\" to=\"https://www.healthcheckusa.com/\"/><rule from=\"^http://secure\\.healthcheckusa\\.com/\" to=\"https://secure.healthcheckusa.com/\"/></ruleset>", "<ruleset name=\"HealthDesigns\" default_off=\"failed ruleset test\" f=\"HealthDesigns.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HealthTap (partial)\" f=\"HealthTap.xml\"><securecookie host=\"^www\\.healthtap\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HealthUnlocked.com\" f=\"HealthUnlocked.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^_(?:_utm|gat?$)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Health On Net.org\" f=\"Health_On_Net.org.xml\"><rule from=\"^http://healthonnet\\.org/\" to=\"https://www.healthonnet.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Healthcare.gov\" default_off=\"failed ruleset test\" f=\"Healthcare.gov.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Healthcare Staff Benefits\" f=\"Healthcare_Staff_Benefits.xml\"><securecookie host=\"^(?:w*\\.)?healthcarestaffbenefits\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Healthdirect Australia\" f=\"HealthdirectAustralia.xml\"><rule from=\"^http://(?:www\\.)?healthdirect\\.gov\\.au/\" to=\"https://www.healthdirect.gov.au/\"/></ruleset>", "<ruleset name=\"Healthfuze.com\" default_off=\"expired\" f=\"Healthfuze.com.xml\"><securecookie host=\"^(?:.*\\.)?healthfuze\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Healths.Biz\" f=\"Healths.Biz.xml\"><rule from=\"^http://(www\\.)?healths\\.biz/(?=favicon\\.ico|my-account(?:$|[?/])|wp-content/|wp-includes/)\" to=\"https://$1healths.biz/\"/></ruleset>", "<ruleset name=\"Healthy Eater.com\" f=\"Healthy_Eater.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.healthyeater\\.com/\" to=\"https://healthyeater.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Healthy for Kids (partial)\" f=\"Healthy_for_Kids.xml\"><rule from=\"^http://healthyforkids\\.wpengine\\.netdna-cdn\\.com/\" to=\"https://healthyforkids.wpengine.com/\"/></ruleset>", "<ruleset name=\"Heanet.ie (false MCB)\" platform=\"mixedcontent\" f=\"Heanet.ie-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://heanet\\.ie/\" to=\"https://www.heanet.ie/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Heanet.ie (partial)\" f=\"Heanet.ie.xml\"><exclusion pattern=\"^http://ds\\.heanet\\.ie/$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Heap Analytics.com\" f=\"Heap_Analytics.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hearst Corporation (self-signed)\" default_off=\"expired, mismatch, self-signed\" f=\"Hearst-Corporation-self-signed.xml\"><securecookie host=\"^docuwiki\\.hearstdigitalnews\\.com$\" name=\".*\"/><rule from=\"^http://docuwiki\\.hearstdigitalnews\\.com/\" to=\"https://docuwiki.hearstdigitalnews.com/\"/><rule from=\"^http://(?:www\\.)?hdnux\\.com/\" to=\"https://hdnux.com/\"/><rule from=\"^http://(?:www\\.)?thedailygreen\\.com/\" to=\"https://www.thedailygreen.com/\"/></ruleset>", "<ruleset name=\"Hearst Corporation (partial)\" platform=\"mixedcontent\" f=\"Hearst-Corporation.xml\"><securecookie host=\"^(?:.*\\.)?myhearstnewspaper\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hearst Magazines\" f=\"Hearst_Magazines.xml\"><securecookie host=\"^\\.circules\\.com$\" name=\".+\"/><securecookie host=\"^(?:\\.subscribe)?\\.hearstmags\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Heart.org (partial)\" f=\"Heart.org.xml\"><securecookie host=\"^donate\\.heart\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?heart\\.org/\" to=\"https://www.heart.org/\"/><rule from=\"^http://(extranet|donate|static|volunteer)\\.heart\\.org/\" to=\"https://$1.heart.org/\"/><rule from=\"^http://my\\.heart\\.org/\" to=\"https://my.americanheart.org/\"/></ruleset>", "<ruleset name=\"Heartbleed.com\" default_off=\"mismatched\" f=\"Heartbleed.com.xml\"><rule from=\"^http://(?:www\\.)?heartbleed\\.com/\" to=\"https://heartbleed.com/\"/></ruleset>", "<ruleset name=\"Heat Street\" f=\"Heat_Street.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Heatball.de\" default_off=\"shows another domain\" f=\"Heatball.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Heathkit\" f=\"Heathkit.com.xml\"><rule from=\"^http://(?:www\\.)?heathkit\\.com/\" to=\"https://www.heathkit.com/\"/></ruleset>", "<ruleset name=\"Heatmap\" default_off=\"failed ruleset test\" f=\"Heatmap.xml\"><securecookie host=\"^heatmap\\.(me|it)$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Heavy.com (partial)\" f=\"Heavy.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"heckrath.net\" f=\"Heckrath.net.xml\"><securecookie host=\"^www\\.heckrath\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?heckrath\\.net/\" to=\"https://www.heckrath.net/\"/><rule from=\"^http://login\\.heckrath\\.net/\" to=\"https://www.heckrath.net/login/\"/></ruleset>", "<ruleset name=\"Hegerys.com (partial)\" f=\"Hegerys.com.xml\"><securecookie host=\"^cp\\.hegerys\\.com$\" name=\".+\"/><rule from=\"^http://(cp|store)\\.hegerys\\.com/\" to=\"https://$1.hegerys.com/\"/></ruleset>", "<ruleset name=\"Heide Park Resort\" f=\"Heide-Park.xml\"><securecookie host=\".*\\.heide-park\\.de$\" name=\".+\"/><rule from=\"^http://heide-park\\.de/\" to=\"https://www.heide-park.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Heidelberg.de\" default_off=\"failed ruleset test\" f=\"Heidelberg.de.xml\"><rule from=\"^http://heidelberg\\.de/\" to=\"https://www.heidelberg.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Heifer.org\" default_off=\"failed ruleset test\" f=\"Heifer.org.xml\"><exclusion pattern=\"^http://(?:www\\.)?heifer\\.org/+(?!favicon\\.ico|gift-catalog/donor-info\\.html|resources/)\"/><securecookie host=\"^\\.heifer\\.org$\" name=\"^__(?:qca|utm\\w+)$\"/><securecookie host=\"^(?:honorcards|shop)\\.heifer\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Heimatshop Bayern\" f=\"HeimatshopBayern.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Heimdal Security.com\" f=\"Heimdal_Security.com.xml\"><rule from=\"^http://((?:goz|support|www)\\.)?heimdalsecurity\\.com/\" to=\"https://$1heimdalsecurity.com/\"/></ruleset>", "<ruleset name=\"Heinlein-Support.de\" f=\"Heinlein-Support.de.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Heino-cykler\" f=\"Heino-cykler.dk.xml\"><rule from=\"^http://(www\\.)?heino-cykler\\.dk/\" to=\"https://www.heino-cykler.dk/\"/></ruleset>", "<ruleset name=\"Heise.de\" f=\"Heise.de.xml\"><rule from=\"^http://(www\\.)?heiseshop\\.de/\" to=\"https://shop.heise.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hekko.pl (partial)\" f=\"Hekko.pl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HeliNY.com\" f=\"HeliNY.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hell Hole Cheese Factory.org\" default_off=\"failed ruleset test\" f=\"Hell_Hole_Cheese_Factory.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Heller Information Services (partial)\" f=\"Heller-Information-Services.xml\"><securecookie host=\"^(?:.*\\.)?his\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hello Bar.com (partial)\" default_off=\"failed ruleset test\" f=\"Hello-Bar.xml\"><securecookie host=\"^www\\.hellobar\\.com$\" name=\"\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hello Neighbour\" default_off=\"failed ruleset test\" f=\"Hello-Neighbour.xml\"><securecookie host=\"^www\\.helloneighbour\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?helloneighbour\\.com/\" to=\"https://www.helloneighbour.com/\"/></ruleset>", "<ruleset name=\"hello.tokyo\" default_off=\"plaintext reply\" f=\"Hello.tokyo.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HelloLife.net\" f=\"HelloLife.net.xml\"><securecookie host=\"^www\\.hellolife\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HelloSign.com (partial)\" f=\"HelloSign.com.xml\"><securecookie host=\"^\\.www\\.hellosign\\.com$\" name=\"^hf_ref$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hello Bond.com\" default_off=\"failed ruleset test\" f=\"Hello_Bond.com.xml\"><securecookie host=\"^(?:dev\\.|staging\\.)?hellobond\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hello Web App.com (partial)\" f=\"Hello_Web_App.com.xml\"><securecookie host=\"^\\.?hellowebapp\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Helmet.fi\" f=\"Helmet.fi.xml\"><securecookie host=\"^(?:haku|luettelo|www)?\\.helmet\\.fi$\" name=\".+\"/><rule from=\"^http://(www|luettelo|haku)\\.helmet\\.fi/\" to=\"https://$1.helmet.fi/\"/></ruleset>", "<ruleset name=\"Helmholtz-Berlin.de\" f=\"Helmholtz-Zentrum-Berlin-for-Materials-and-Energy.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Helmich IT-Security\" f=\"Helmich_IT-Security.xml\"><securecookie host=\"^www\\.helmich\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"helpOcean\" default_off=\"failed ruleset test\" f=\"HelpOcean.xml\"><securecookie host=\"^\\.helpocean\\.com$\" name=\".+\"/><rule from=\"^http://([\\w\\-]+\\.)?helpocean\\.com/\" to=\"https://$1helpocean.com/\"/></ruleset>", "<ruleset name=\"HelpOnClick\" f=\"HelpOnClick.xml\"><securecookie host=\"^(?:.*\\.)?helponclick\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HelpSpot\" f=\"HelpSpot.xml\"><securecookie host=\"^(?:www)?\\.helpspot\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Help Scout.net (partial)\" f=\"Help_Scout.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"helpdocsonline.com\" f=\"Helpdocsonline.com.xml\"><securecookie host=\"^\\.helpdocsonline\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Helpjuice.com\" f=\"Helpjuice.xml\"><rule from=\"^http://www\\.billing\\.helpjuice\\.com/\" to=\"https://billing.helpjuice.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Helpshift.com\" f=\"Helpshift.com.xml\"><securecookie host=\".+\\.helpshift\\.com\" name=\".+\"/><rule from=\"^http://([\\w-]+\\.)?helpshift\\.com/\" to=\"https://$1helpshift.com/\"/></ruleset>", "<ruleset name=\"Helsingebilpleje.dk\" f=\"Helsingebilpleje.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Helsingin Sanomat (partial)\" f=\"Helsingin-Sanomat.xml\"><rule from=\"^http://(?:www\\.)?hs\\.fi/(webkuva|webstatic)/\" to=\"https://www.hs.fi/$1/\"/></ruleset>", "<ruleset name=\"Helsingor.dk\" f=\"Helsingor.dk.xml\"><securecookie host=\"\\.?(www)?\\.helsingor\\.dk\" name=\".*\"/><rule from=\"^http://(www\\.)?helsingor\\.dk/\" to=\"https://www.helsingor.dk/\"/></ruleset>", "<ruleset name=\"Helsinki (partial)\" f=\"Helsinki.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hemk.es (partial)\" default_off=\"untrusted root\" f=\"Hemk.es.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Heml.is\" default_off=\"failed ruleset test\" f=\"Heml.is.xml\"><securecookie host=\"^(?:www\\.)?heml\\.is$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hemmingway Marketing (partial)\" f=\"Hemmingway-Marketing.xml\"><rule from=\"^http://(?:www\\.)?voucherexpress\\.co\\.uk/([^/]+)/\" to=\"https://www.voucherexpress.co.uk/$1/\"/></ruleset>", "<ruleset name=\"Hendrik Luup\" default_off=\"failed ruleset test\" f=\"Hendrik.luup.info.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hepe.com\" f=\"Hepe.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hepo.fi\" f=\"Hepo.fi.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Herald Media (partial)\" f=\"Herald_Media.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Herald Times Reporter\" default_off=\"failed ruleset test\" f=\"Herald_Times_Reporter.xml\"><rule from=\"^http://(?:cmsimg\\.|www\\.)?htrnews\\.com/\" to=\"https://www.htrnews.com/\"/><rule from=\"^http://deals\\.htrnews\\.com/(?:$|\\?.*)\" to=\"https://manitow.planetdiscover.com/sp?aff=1180\"/><rule from=\"^http://deals\\.htrnews\\.com/\" to=\"https://manitow.planetdiscover.com/\"/></ruleset>", "<ruleset name=\"herbal-nutrition2.net\" default_off=\"failed ruleset test\" f=\"Herbal-nutrition2.net.xml\"><securecookie host=\"^\\.herbal-nutrition2\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"herdProtect.com\" f=\"HerdProtect.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Herdict\" f=\"Herdict.xml\"><securecookie host=\"^www\\.(?:herdic|nardik)t\\.org\" name=\".+\"/><rule from=\"^http://(?:www\\.)?(herdic|nardik)t\\.org/\" to=\"https://www.$1t.org/\"/><rule from=\"^http://dev\\.(herdic|nardik)t\\.org/\" to=\"https://dev.$1t.org/\"/></ruleset>", "<ruleset name=\"Here.com\" default_off=\"failed ruleset test\" f=\"Here.com.xml\"><securecookie host=\"^(.*\\.)?here\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Herefordshire.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"Herefordshire.gov.uk.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hereplus.me\" f=\"Hereplus.me.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://hereplus\\.me/\" to=\"https://www.hereplus.me/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Heritage.org (partial)\" f=\"Heritage.org.xml\"><rule from=\"^http://s(ecure|hop)\\.heritage\\.org/\" to=\"https://s$1.heritage.org/\"/></ruleset>", "<ruleset name=\"HeroX.com\" default_off=\"failed ruleset test\" f=\"HeroX.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hero Up.com\" default_off=\"failed ruleset test\" f=\"Hero_Up.com.xml\"><securecookie host=\"^(?:\\.?www)?\\.heroup\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Heroku\" f=\"Heroku.xml\"><exclusion pattern=\"^http://mc\\.heroku\\.com/\"/><securecookie host=\"^[\\w\\-]+\\.herokuapp\\.com$\" name=\".*\"/><rule from=\"^http://([^/:@\\.]+\\.)?heroku(app)?\\.com/\" to=\"https://$1heroku$2.com/\"/></ruleset>", "<ruleset name=\"Hertfordshire Constabulary\" f=\"HertfordshireConstabulary.xml\"><rule from=\"^http://(www\\.)?herts\\.police\\.uk/\" to=\"https://www.herts.police.uk/\"/></ruleset>", "<ruleset name=\"hertsdirect.org (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Hertsdirect.org-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hertsdirect.org (partial)\" default_off=\"failed ruleset test\" f=\"Hertsdirect.org.xml\"><exclusion pattern=\"^http://childcarejobs\\.hertsdirect\\.org/+(?!(?:[Ll]ogin|Resources)\\.aspx|css/|images/|younginherts/registration(?:$|[?/]))\"/><exclusion pattern=\"^http://cmis\\.hertsdirect\\.org/$\"/><exclusion pattern=\"^http://m\\.hertsdirect\\.org/+(?!css/|images/)\"/><exclusion pattern=\"^http://(?:www\\.)?hertsdirect\\.org/+(?!css/|droppedkerbs(?:$|[?/])|eservices/(?:analytics/|images/|scripts/.+\\.css|styles/)|favicon\\.ico|images/)\"/><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^(?!(?:childcarejobs|m|www)\\.)\\w\" name=\".\"/><rule from=\"^http://hertsdirect\\.org/\" to=\"https://www.hertsdirect.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Australia\" default_off=\"failed ruleset test\" f=\"Hertz-Australia.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Austria\" default_off=\"failed ruleset test\" f=\"Hertz-Austria.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Bahrain\" f=\"Hertz-Bahrain.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Belgium\" default_off=\"failed ruleset test\" f=\"Hertz-Belgium.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Brazil\" default_off=\"redirects to http\" f=\"Hertz-Brazil.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Canda\" default_off=\"failed ruleset test\" f=\"Hertz-Canada.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz China\" default_off=\"failed ruleset test\" f=\"Hertz-China.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Croatia\" default_off=\"failed ruleset test\" f=\"Hertz-Croatia.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Finland\" default_off=\"failed ruleset test\" f=\"Hertz-Finland.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz France\" f=\"Hertz-France.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Germany\" default_off=\"failed ruleset test\" f=\"Hertz-Germany.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Hong Kong\" default_off=\"failed ruleset test\" f=\"Hertz-Hong-Kong.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Hungary\" f=\"Hertz-Hungary.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Iceland\" f=\"Hertz-Iceland.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Indonesia\" default_off=\"failed ruleset test\" f=\"Hertz-Indonesia.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Ireland\" default_off=\"failed ruleset test\" f=\"Hertz-Ireland.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Italy\" default_off=\"failed ruleset test\" f=\"Hertz-Italy.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Jordan\" f=\"Hertz-Jordan.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Kuwait\" default_off=\"failed ruleset test\" f=\"Hertz-Kuwait.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Netherlands\" default_off=\"failed ruleset test\" f=\"Hertz-Netherlands.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz New Zealand\" default_off=\"failed ruleset test\" f=\"Hertz-New-Zealand.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Norway\" default_off=\"failed ruleset test\" f=\"Hertz-Norway.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Poland\" f=\"Hertz-Poland.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Portugal\" default_off=\"failed ruleset test\" f=\"Hertz-Portugal.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Qatar\" default_off=\"failed ruleset test\" f=\"Hertz-Qatar.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Saudi Arabia\" f=\"Hertz-Saudi-Arabia.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Slovenia\" f=\"Hertz-Slovenia.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz South Africa\" f=\"Hertz-South-Africa.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz South Korea\" default_off=\"failed ruleset test\" f=\"Hertz-South-Korea.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Spain\" default_off=\"failed ruleset test\" f=\"Hertz-Spain.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Sweden\" default_off=\"failed ruleset test\" f=\"Hertz-Sweden.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Switzerland\" default_off=\"failed ruleset test\" f=\"Hertz-Switzerland.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Taiwan\" default_off=\"failed ruleset test\" f=\"Hertz-Taiwan.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz Thailand\" f=\"Hertz-Thailand.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz UAE\" default_off=\"failed ruleset test\" f=\"Hertz-UAE.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz UK\" default_off=\"failed ruleset test\" f=\"Hertz-UK.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hertz US\" default_off=\"failed ruleset test\" f=\"Hertz-US.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hesapla Bakalim.com\" default_off=\"failed ruleset test\" f=\"Hesapla_Bakalim.com.xml\"><securecookie host=\"^\\.?hesaplabakalim\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hesecure.com\" f=\"Hesecure.com.xml\"><securecookie host=\".+\\.c13\\.hesecure\\.com$\" name=\".+\"/><rule from=\"^http://([\\w-]+)\\.c13\\.hesecure\\.com/\" to=\"https://$1.c13.hesecure.com/\"/></ruleset>", "<ruleset name=\"Hestore.hu\" f=\"Hestore.hu.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Heteml.jp\" f=\"Heteml.jp.xml\"><securecookie host=\"^secure\\.heteml\\.jp$\" name=\".+\"/><rule from=\"^http://(?:secure\\.)?heteml\\.jp/\" to=\"https://secure.heteml.jp/\"/><rule from=\"^http://www\\.heteml\\.jp/[^?]*\" to=\"https://secure.heteml.jp/\"/></ruleset>", "<ruleset name=\"Hetzner Online\" f=\"Hetzner-Online.xml\"><exclusion pattern=\"^http://wiki\\.hetzner\\.de\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http://(\\w+\\.)?(hetzner|your-server)\\.de/\" to=\"https://$1$2.de/\"/></ruleset>", "<ruleset name=\"Heureka.sk_cz\" f=\"Heureka.sk_cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hewlett-Packard Company (mismatches)\" default_off=\"mismatched\" f=\"Hewlett-Packard-mismatches.xml\"><rule from=\"^http://met1\\.hp\\.com/\" to=\"https://met1.hp.com/\"/></ruleset>", "<ruleset name=\"HP (buggy?)\" default_off=\"testing\" f=\"Hewlett-Packard.xml\"><exclusion pattern=\"^http://(?:h(?:22166|22207|30499|30507|50146|71000)\\.austin|(?:www\\.)?hpl|m|reimagine|welcome|h1(?:0060|7007|8004)\\.www1|h30(?:261|434)\\.www3)\\.hp\\.com\"/><exclusion pattern=\"^http://shopping1\\.hp\\.com/(?!is-bin/)\"/><exclusion pattern=\"^http://store\\.hp\\.com/webapp/wcs/stores/servlet(?:$|[?/])\"/><exclusion pattern=\"^http://www\\.hp\\.com/(?!img/)\"/><exclusion pattern=\"^http://h18000\\.www1\\.hp\\.com/products/servers/linux/documentation\\.html\"/><exclusion pattern=\"^http://welcome\\.hp-ww\\.com/+(?!(?:img/+)?favicon\\.ico)\"/><securecookie host=\"^protect724\\.arcsight\\.com$\" name=\".+\"/><securecookie host=\"^\\.hp\\.com$\" name=\"^s_vi$\"/><securecookie host=\"^(?:esca(?:2\\.americas|5\\.asiapac|3\\.europe)|community\\.dev|(?:uat\\.)?protect724|(?:www\\.)?register|shopping|h2(?:0141|2166)\\.www2|h30(?:434|499|507)\\.www3|h41183\\.www4|h71016\\.www7|ssl\\.www8)\\.hp\\.com$\" name=\".+\"/><rule from=\"^http://protect724\\.arcsight\\.com/\" to=\"https://protect724.arcsight.com/\"/><rule from=\"^http://(www(?:-mo)?\\.)?eds\\.com/\" to=\"https://$1eds.com/\"/><rule from=\"^http://([^/:@]+)\\.(americas|asiapac|austin|europe|www[1-7])\\.hp\\.com/\" to=\"https://$1.austin.hp.com/\"/><rule from=\"^http://(?:ssl\\.)?www8\\.hp\\.com/\" to=\"https://ssl.www8.hp.com/\"/><rule from=\"^http://([^/:@.]+|community\\.dev|v4nzproa\\.houston|(?:apps|uat|apps\\.uat)\\.protect724)\\.hp\\.com/\" to=\"https://$1.hp.com/\"/><rule from=\"^http://(?:secur|welcom)e\\.hp-ww\\.com/\" to=\"https://secure.hp-ww.com/\"/><rule from=\"^http://ssl-product-images\\.www8-hp\\.com/\" to=\"https://ssl-product-images.www8-hp.com/\"/></ruleset>", "<ruleset name=\"Hex-Rays.com\" f=\"Hex-Rays.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hexagon\" default_off=\"failed ruleset test\" f=\"Hexagon.xml\"><rule from=\"^http://(?:www\\.)?hexagon\\.cc/\" to=\"https://hexagon.cc/\"/></ruleset>", "<ruleset name=\"Hexonet\" f=\"Hexonet.xml\"><securecookie host=\".*\\.hexonet\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?hexonet\\.net/\" to=\"https://www.hexonet.net/\"/><rule from=\"^http://(cp-ote|wi)\\.hexonet\\.net/\" to=\"https://$1.hexonet.net/\"/><rule from=\"^http://demo\\.hexonet\\.net/(?:\\?.*)?$\" to=\"https://cp-ote.hexonet.net/cp2/index.php/domain/listing/?LOGIN_USER=test.user&LOGIN_PASSWORD=test.passw0rd\"/></ruleset>", "<ruleset name=\"Hexplo.it\" default_off=\"failed ruleset test\" f=\"Hexplo.it.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hexspoor WMS.nl\" f=\"Hexspoor_WMS.nl.xml\"><securecookie host=\"^\\.hexspoorwms\\.nl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hezenparastin.com\" platform=\"mixedcontent\" f=\"Hezenparastin.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hft-leipzig.de\" f=\"Hft-leipzig.de.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://hft-leipzig\\.de/\" to=\"https://www.hft-leipzig.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hi-eg\" default_off=\"self-signed\" f=\"Hi-eg.xml\"><securecookie host=\"^hi-eg\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?hi-eg\\.com/\" to=\"https://hi-eg.com/\"/></ruleset>", "<ruleset name=\"Hi\" f=\"Hi.nl.xml\"><rule from=\"^http://(?:www\\.)?hi\\.nl/\" to=\"https://www.hi.nl/\"/><rule from=\"^http://shop\\.(?:www\\.)?hi\\.nl/\" to=\"https://shop.www.hi.nl/\"/></ruleset>", "<ruleset name=\"HiConversion.com (partial)\" f=\"HiConversion.com.xml\"><securecookie host=\"^console\\.hiconversion\\.com$\" name=\".+\"/><rule from=\"^http://hiconversion\\.com/\" to=\"https://www.hiconversion.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HiFX\" f=\"HiFX.xml\"><securecookie host=\"^(?:postoffice|www)\\.hifx(?:online)?\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?hifx(online)?\\.co\\.uk/\" to=\"https://www.hifx$1.co.uk/\"/><rule from=\"^http://postoffice\\.hifxonline\\.co\\.uk/\" to=\"https://postoffice.hifxonline.co.uk/\"/></ruleset>", "<ruleset name=\"HiPEAC.net (partial)\" default_off=\"failed ruleset test\" f=\"HiPEAC.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HiPoint Inc.com\" f=\"HiPoint_Inc.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hiawatha-webserver.org\" f=\"Hiawatha-webserver.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hide.me\" f=\"Hide.me.xml\"><securecookie host=\"^(?:member\\.)?hide\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HideMe.ru\" f=\"HideMe.ru.xml\"><securecookie host=\"^hidemu\\.ru$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?hideme\\.ru/\" to=\"https://hideme.ru/\"/></ruleset>", "<ruleset name=\"Hideki Saito.com (partial)\" f=\"Hideki_Saito.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hideman.net\" f=\"Hideman.net.xml\"><securecookie host=\"^\\.hideman\\.net$\" name=\".+\"/><rule from=\"^http://((?:cdn|static|www)\\.)?hideman\\.net/\" to=\"https://$1hideman.net/\"/></ruleset>", "<ruleset name=\"hideme.today\" default_off=\"expired\" f=\"Hideme.today.xml\"><rule from=\"^http://www\\.hideme\\.today/\" to=\"https://hideme.today/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hide My Ass (partial)\" f=\"Hidemyass.xml\"><securecookie host=\"^(?:.*\\.)?hidemyass\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?hidemyass\\.com/\" to=\"https://hidemyass.com/\"/><rule from=\"^http://(\\d+)\\.hidemyass\\.com/\" to=\"https://$1.hidemyass.com/\"/><rule from=\"^http://affiliate\\.hidemyass\\.com/\" to=\"https://affiliate.hidemyass.com/\"/><rule from=\"^http://static\\.hidemyass\\.com/\" to=\"https://hidemyass.cachefly.net/\"/></ruleset>", "<ruleset name=\"Hidepay.net\" default_off=\"failed ruleset test\" f=\"Hidepay.net.xml\"><securecookie host=\"^\\.hidepay\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"High Gear Media (partial)\" f=\"High-Gear-Media.xml\"><rule from=\"^http://(static\\.hgmsites\\.net|images\\.thecarconnection\\.com)/\" to=\"https://s3.amazonaws.com/$1/\"/></ruleset>", "<ruleset name=\"HighOn.Coffee\" f=\"HighOn.Coffee.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HighQ Solutions\" default_off=\"self-signed\" f=\"HighQ_Solutions.xml\"><rule from=\"^http://(?:www\\.)?highqsolutions\\.com/\" to=\"https://highqsolutions.com/\"/><rule from=\"^http://support\\.highqsolutions\\.com/(generated|system)/\" to=\"https://assets.zendesk.com/$1/\"/></ruleset>", "<ruleset name=\"HighWire (partial)\" f=\"HighWire.xml\"><securecookie host=\"^shibboleth\\.highwire\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"High Fidelity.io\" f=\"High_Fidelity.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"High Seer.com\" f=\"High_Seer.com.xml\"><securecookie host=\"^\\.www\\.highseer\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Highcharts.com (MCB)\" platform=\"mixedcontent\" f=\"Highcharts.com-mixedcontent.xml\"><securecookie host=\"^\\.highcharts\\.com$\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Highcharts.com (partial)\" f=\"Highcharts.com.xml\"><rule from=\"^http://highcharts\\.com/\" to=\"https://www.highcharts.com/\"/><exclusion pattern=\"^http://code\\.highcharts\\.com/mapdata/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Higher Education Academy (partial)\" f=\"Higher_Education_Academy.xml\"><securecookie host=\"^.+\\.heacademy\\.ac\\.uk$\" name=\".+\"/><rule from=\"^http://(anywhere|autodiscover|groupspace|heagateway|heamysites|integra|my|o[mw]a|portaltest|servicedesk|vpn|webmail)\\.heacademy\\.ac\\.uk/\" to=\"https://$1.heacademy.ac.uk/\"/></ruleset>", "<ruleset name=\"Hightail.com (partial)\" f=\"Hightail.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://hightail\\.com/\" to=\"https://www.hightail.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"highwebmedia.com\" default_off=\"failed ruleset test\" f=\"Highwebmedia.com.xml\"><exclusion pattern=\"^http://ssl-ccstatic\\.highwebmedia\\.com/$\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hillary Clinton.com\" f=\"Hillary_Clinton.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hillingdon.gov.uk (partial)\" f=\"Hillingdon.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.young\\.hillingdon\\.gov\\.uk/\" to=\"https://young.hillingdon.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"himediadx.com\" f=\"Himediadx.com.xml\"><rule from=\"^http://ad\\.himediadx\\.com/\" to=\"https://ib.adnxs.com/\"/></ruleset>", "<ruleset name=\"Hinckley-Bosworth.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"Hinckley-Bosworth.gov.uk.xml\"><securecookie host=\"^(?!\\.hinckley-bosworth\\.gov\\.uk$).\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hinckley and Bosworth online.org.uk\" f=\"Hinckley_and_Bosworth_online.org.uk.xml\"><rule from=\"^http://(?:www\\.)?hinckleyandbosworthonline\\.org\\.uk/+\" to=\"https://www.hinckley-bosworth.gov.uk/\"/></ruleset>", "<ruleset name=\"HipChat.com\" f=\"HipChat.com.xml\"><securecookie host=\"^(?:help\\.|www\\.)?hipchat\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hipercor.es\" f=\"Hipercor.es.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hipmunk.com (false MCB)\" platform=\"mixedcontent\" f=\"Hipmunk.com-falsemixed.xml\"><securecookie host=\"^\\.blog\\.hipmunk\\.com$\" name=\".+\"/><rule from=\"^http://blog\\.hipmunk\\.com/\" to=\"https://blog.hipmunk.com/\"/></ruleset>", "<ruleset name=\"Hipmunk.com\" f=\"Hipmunk.com.xml\"><securecookie host=\"^(?:www)?\\.hipmunk\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Historical-look.org\" f=\"Historical-look.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"History.com\" f=\"History.com.xml\"><rule from=\"^http://history\\.com/\" to=\"https://www.history.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"History Today.com (partial)\" f=\"History_Today.xml\"><rule from=\"^http://historytoday\\.com/\" to=\"https://www.historytoday.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HitBTC.com\" f=\"HitBTC.com.xml\"><securecookie host=\"^(?:\\.|forum\\.)?hitbtc\\.com$\" name=\".+\"/><rule from=\"^http://((?:affiliate|auth|blog|demo|forum|www)\\.)?hitbtc\\.com/\" to=\"https://$1hitbtc.com/\"/></ruleset>", "<ruleset name=\"HitLeap.com\" f=\"HitLeap.com.xml\"><securecookie host=\"^\\.hitleap\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hitachi Data Systems (partial)\" f=\"Hitachi_Data_Systems.xml\"><securecookie host=\"^(?:blogs|portal|sdc)\\.hds\\.com$\" name=\".+\"/><rule from=\"^http://(blogs|portal|sdc)\\.hds\\.com/\" to=\"https://$1.hds.com/\"/></ruleset>", "<ruleset name=\"Hitbox.com\" f=\"Hitbox.com.xml\"><rule from=\"^http://(?:www\\.)?hitbox\\.com/(?:.*)\" to=\"https://www.omniture.com/\"/><rule from=\"^http://([\\w-])\\.hitbox\\.com/\" to=\"https://$1.hitbox.com/\"/></ruleset>", "<ruleset name=\"hitbox.tv\" default_off=\"broken\" f=\"Hitbox.tv.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hitchhq.com\" f=\"Hitchhq.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hitfarm\" default_off=\"self-signed\" f=\"Hitfarm.xml\"><securecookie host=\"^www\\.hitfarm.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?hitfarm\\.com/\" to=\"https://www.hitfarm.com/\"/></ruleset>", "<ruleset name=\"HitsLink.com\" f=\"HitsLink.xml\"><securecookie host=\"^(?:.*\\.)?hitslink\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hits processor.com\" default_off=\"failed ruleset test\" f=\"Hits_processor.com.xml\"><securecookie host=\"^loc1\\.hitsprocessor\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hiveage.com (partial)\" f=\"Hiveage.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hivelocity Hosting\" f=\"Hivelocity-Hosting.xml\"><securecookie host=\"^.*\\.hivelocity\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hivos.nl\" f=\"Hivos.nl.xml\"><securecookie host=\"^(?:www\\.)?hivos.nl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hivos.org\" default_off=\"failed ruleset test\" f=\"Hivos.org.xml\"><rule from=\"^http://m\\.hivos\\.org/\" to=\"https://hivos.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hızlı Saat\" default_off=\"failed ruleset test\" f=\"Hizli_Saat.xml\"><securecookie host=\"^(?:.*\\.)?hizlisaat\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hizliresim.com\" f=\"Hizliresim.com.xml\"><rule from=\"^http://gallery\\.hizliresim\\.com/\" to=\"https://hizliresim.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hizook.com\" default_off=\"mismatched\" f=\"Hizook.xml\"><securecookie host=\"^(?:.*\\.)?hizook\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?hizook\\.com/\" to=\"https://www.hizook.com/\"/></ruleset>", "<ruleset name=\"Hjv.dk (partial)\" f=\"Hjv.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hjv.kursuslogin.dk\" f=\"Hjv.kursuslogin.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hlmod.ru\" platform=\"mixedcontent\" f=\"Hlmod.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hmapps.net\" default_off=\"failed ruleset test\" f=\"Hmapps.net.xml\"><securecookie host=\"^(?:www\\.)?hmapps\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hn.premii.com\" f=\"Hn.premii.com.xml\"><rule from=\"^http://www\\.premii\\.com/\" to=\"https://premii.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hnonline.sk\" f=\"Hnonline.sk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hobbyking\" f=\"HobbyKing.xml\"><rule from=\"^http://www\\.hobbyking\\.com/\" to=\"https://www.hobbyking.com/\"/><rule from=\"^http://hobbyking\\.com/\" to=\"https://www.hobbyking.com/\"/></ruleset>", "<ruleset name=\"Hobocomp.com\" default_off=\"failed ruleset test\" f=\"Hobocomp.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hobsons EMT (partial)\" f=\"Hobsons-EMT.xml\"><securecookie host=\"^\\w.*\\.askadmissions\\.net$\" name=\".+\"/><rule from=\"^http://([\\w-]+)\\.askadmissions\\.net/\" to=\"https://$1.askadmissions.net/\"/></ruleset>", "<ruleset name=\"Hochschule Esslingen (partial)\" f=\"Hochschule-Esslingen.xml\"><rule from=\"^http://(ftp-stud|idp|webmail|www2)\\.hs-esslingen\\.de/\" to=\"https://$1.hs-esslingen.de/\"/><rule from=\"^http://(www\\.)?hs-esslingen\\.de/((de|en)/.+)\" to=\"https://www.hs-esslingen.de/$2\"/><exclusion pattern=\"^http://hs-esslingen.de/$\"/><exclusion pattern=\"^http://www.hs-esslingen.de/$\"/></ruleset>", "<ruleset name=\"Hochschule-Trier.de (partial)\" f=\"Hochschule-Trier.de.xml\"><rule from=\"^http://autodiscover\\.hochschule-trier\\.de/\" to=\"https://autodiscover.fh-trier.de/\"/><rule from=\"^http://((?:(?:www\\.)?asta|autodiscover|fht|fsi|lists|(?:www\\.)?protron|rft|rz|rzshop|www)\\.)?hochschule-trier\\.de/\" to=\"https://$1hochschule-trier.de/\"/></ruleset>", "<ruleset name=\"Hoeringsportalen.dk\" f=\"Hoeringsportalen.dk.xml\"><rule from=\"^http://(www\\.)?hoeringsportalen\\.dk/\" to=\"https://hoeringsportalen.dk/\"/></ruleset>", "<ruleset name=\"Hofstra University\" f=\"Hofstra-University.xml\"><rule from=\"^http://(?:www\\.)?hofstra\\.edu/\" to=\"https://www.hofstra.edu/\"/></ruleset>", "<ruleset name=\"Hola\" f=\"Hola.xml\"><securecookie host=\"^(?:www\\.)?hola\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Holarse-Linuxgaming.de\" f=\"Holarse-LinuxGaming.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Holba.ch\" f=\"Holba.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Holder.com.ua (partial)\" f=\"Holder.com.ua.xml\"><securecookie host=\"^\\.holder\\.com\\.ua$\" name=\"^U$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Holder de ord.no\" f=\"Holder_de_ord.no.xml\"><rule from=\"^http://(?:www\\.)?holderdeord\\.no/\" to=\"https://www.holderdeord.no/\"/></ruleset>", "<ruleset name=\"HolidayBullshit.com\" default_off=\"failed ruleset test\" f=\"HolidayBullshit.com.xml\"><rule from=\"^http://(?:www\\.)?holidaybullshit\\.com/\" to=\"https://www.holidaybullshit.com/\"/></ruleset>", "<ruleset name=\"HolidayExtras.com\" default_off=\"failed ruleset test\" f=\"HolidayExtras.com.xml\"><rule from=\"^http://holidayextras\\.com/\" to=\"https://www.holidayextras.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Holiday Break (mismathes)\" default_off=\"mismatched\" f=\"Holidaybreak-mismatches.xml\"><exclusion pattern=\"^http://(?:www\\.)?nachtjeweg\\.nl/$\"/><securecookie host=\"^(?:.*\\.)?nachtjeweg\\.nl$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?nachtjeweg\\.nl/\" to=\"https://www.nachtjeweg.nl/\"/></ruleset>", "<ruleset name=\"Holidaybreak (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Holidaybreak.xml\"><rule from=\"^http://(?:www\\.)?djoser(?:junior|wandelenfiets)\\.nl/(asset|cs|image)s/\" to=\"https://djoser.nl/assets/$1s/\"/><rule from=\"^http://(?:www\\.)?holidaybreak\\.co\\.uk/(?:holidaybreak/)?\" to=\"https://ww7.investorrelations.co.uk/holidaybreak/\"/><rule from=\"^http://(?:www\\.)?pgl\\.co\\.uk/\" to=\"https://www.pgl.co.uk/\"/><rule from=\"^http://(?:img1|static)\\.superbreak\\.net/\" to=\"https://www.superbreak.com/\"/></ruleset>", "<ruleset name=\"Holland.pk\" f=\"Holland.pk.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hollywood Reporter (mismatches)\" default_off=\"mismatched\" f=\"Hollywood-Reporter-mismatches.xml\"><rule from=\"^http://thr\\d\\.pgmcdn\\.net/\" to=\"https://www.hollywoodreporter.com/\"/></ruleset>", "<ruleset name=\"Hollywood Reporter (partial)\" default_off=\"failed ruleset test\" f=\"Hollywood-Reporter.xml\"><securecookie host=\"\\.\" name=\"^_gat?$\"/><securecookie host=\".\\.hollywoodreporter\\.com$\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hollywood Life.com\" f=\"Hollywood_Life.com.xml\"><rule from=\"^http://www\\.hollywoodlife\\.com/\" to=\"https://hollywoodlife.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hollywood Outlaws.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Hollywood_Outlaws.com-falsemixed.xml\"><securecookie host=\"^\\.hollywoodoutlaws\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?hollywoodoutlaws\\.com/(?!favicon\\.ico|wp-content/|wp-includes/)\" to=\"https://www.hollywoodoutlaws.com/\"/></ruleset>", "<ruleset name=\"Hollywood Outlaws.com\" default_off=\"plaintext reply\" f=\"Hollywood_Outlaws.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Holoscripter.org\" f=\"Holoscripter.org.xml\"><securecookie host=\"^(?:w*\\.)?holoscripter\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Holtstrom.com (false MCB)\" platform=\"mixedcontent\" f=\"Holtstrom.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Holtwick IT (mismatches)\" default_off=\"self-signed\" f=\"Holtwick-IT-mismatches.xml\"><rule from=\"^http://(?:www\\.)?holtwick\\.it/\" to=\"https://www.holtwick.it/\"/></ruleset>", "<ruleset name=\"Holtwick IT (partial)\" f=\"Holtwick-IT.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HolyTransaction.com\" f=\"HolyTransaction.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Home of the Sebijk.com\" default_off=\"failed ruleset test\" f=\"Home-of-the-Sebijk.com.xml\"><rule from=\"^http://(?:www\\.)?sebijk\\.com/\" to=\"https://www.sebijk.com/\"/><rule from=\"^http://(?:www\\.)?freemail\\.sebijk\\.com/\" to=\"https://freemail.sebijk.com/\"/></ruleset>", "<ruleset name=\"Home.ch (partial)\" f=\"Home.ch.xml\"><securecookie host=\"^www\\.home\\.ch$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?home\\.ch/\" to=\"https://www.home.ch/\"/></ruleset>", "<ruleset name=\"home.pl\" f=\"Home.pl.xml\"><securecookie host=\"^(?:.+\\.)?home\\.pl$\" name=\".+\"/><rule from=\"^http://((?:akcje|hq|m|panel|(?:m\\.)?poczta|pomoc|rozwijaj|www)\\.)?home\\.pl/\" to=\"https://$1home.pl/\"/></ruleset>", "<ruleset name=\"HomeBello (partial)\" f=\"HomeBello.xml\"><rule from=\"^http://(www\\.)?homebello\\.com/((?:checkout|contact|order-status)(?:$|\\?)|content/|css/|images/|photos/|Public/|store_image/|Styles/)\" to=\"https://$1homebello.com/$2\"/></ruleset>", "<ruleset name=\"HomeFinder.com (partial)\" f=\"HomeFinder.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?homefinder\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HomeInsurance.com\" f=\"HomeInsurance.com.xml\"><securecookie host=\"^\\.homeinsurance\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Home Depot (problematic)\" default_off=\"akamai cert\" f=\"Home_Depot.com-problematic.xml\"><exclusion pattern=\"^http://ir\\.homedepot\\.com/(?:client|WebSideStory)/\"/><securecookie host=\"^ir\\.homedepot\\.com$\" name=\".+\"/><rule from=\"^http://(ir|www)\\.homedepot\\.com/\" to=\"https://$1.homedepot.com/\"/></ruleset>", "<ruleset name=\"Home Depot.com (partial)\" f=\"Home_Depot.com.xml\"><securecookie host=\"^(?:hdapps|hdconnect|homedepotlink|thdfed)?\\.homedepot\\.com$\" name=\".+\"/><rule from=\"^http://secure2\\.homedepot\\.com/\" to=\"https://secure2.homedepot.com/\"/><rule from=\"^http://(?:www\\.)?community\\.homedepot\\.com/\" to=\"https://homedepot.i.lithium.com/\"/><rule from=\"^http://contractorservices\\.homedepot\\.com/(\\?.*)?$\" to=\"https://secure2.homedpot.com/pro$1\"/><rule from=\"^http://(corporate|hdapps|hdconnect|homedepotlink|swsac|thdfed)\\.homedepot\\.com/\" to=\"https://$1.homedepot.com/\"/><rule from=\"^http://ir\\.homedepot\\.com/(client|WebSideStory)/\" to=\"https://origin-phoenix.corporate-ir.net/$1/\"/></ruleset>", "<ruleset name=\"Home Depot Foundation.org\" default_off=\"mismatched\" f=\"Home_Depot_Foundation.org.xml\"><securecookie host=\"^homedepotfoundation.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?homedepotfoundation\\.org/\" to=\"https://homedepotfoundation.org/\"/></ruleset>", "<ruleset name=\"Home Mentors.com\" default_off=\"failed ruleset test\" f=\"Home_Mentors.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Home Theater Review.com (false MCB)\" platform=\"mixedcontent\" f=\"Home_Theater_Review.com-falsemixed.xml\"><rule from=\"^http://(?:www\\.)?hometheaterreview\\.com/(?!advertpro/|dev/|favicon\\.ico|htrads/|images/|images_news/|wp-content/|wp-includes/)\" to=\"https://hometheaterreview.com/\"/></ruleset>", "<ruleset name=\"Home Theater Review.com (partial)\" f=\"Home_Theater_Review.com.xml\"><securecookie host=\"^\\.hometheaterreview\\.com$\" name=\"^__utm\\w+$\"/><rule from=\"^http://(?:www\\.)?hometheaterreview\\.com/(?=advertpro/|dev/|favicon\\.ico|htrads/|images/|images_news/|wp-content/|wp-includes/)\" to=\"https://hometheaterreview.com/\"/></ruleset>", "<ruleset name=\"home buzz.co.uk\" default_off=\"503\" f=\"Home_buzz.co.uk.xml\"><securecookie host=\"^(?:www)?\\.homebuzz\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Homebase\" f=\"Homebase.xml\"><rule from=\"^http://homebase\\.co\\.uk/\" to=\"https://www.homebase.co.uk/\"/><rule from=\"^http://www\\.homebase\\.co\\.uk/\" to=\"https://www.homebase.co.uk/\"/><rule from=\"^http://www\\.homebase\\.com/\" to=\"https://www.homebase.co.uk/\"/><rule from=\"^http://homebase\\.com/\" to=\"https://www.homebase.co.uk/\"/></ruleset>", "<ruleset name=\"Homecomputing.fr\" f=\"Homecomputing.fr.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Homeless Veterans.co.uk (false MCB)\" platform=\"mixedcontent\" f=\"Homeless_Veterans.co.uk-falsemixed.xml\"><securecookie host=\"^\\.homelessveterans\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://www\\.homelessveterans\\.co\\.uk/\" to=\"https://www.homelessveterans.co.uk/\"/></ruleset>", "<ruleset name=\"Homeless Veterans.co.uk (partial)\" default_off=\"failed ruleset test\" f=\"Homeless_Veterans.co.uk.xml\"><exclusion pattern=\"^http://www\\.homelessveterans\\.co\\.uk/+(?!favicon\\.ico|wp-content/|wp-includes/)\"/><securecookie host=\"^donate\\.homelessveterans\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Homeless World Cup\" f=\"Homeless_World_Cup.xml\"><securecookie host=\"^(?:www)?\\.homelessworldcup\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Honest.com\" f=\"Honest.com.xml\"><securecookie host=\"^(?:www)?\\.honest\\.com$\" name=\".+\"/><rule from=\"^http://((?:blog|img|www)\\.)?honest\\.com/\" to=\"https://$1honest.com/\"/></ruleset>", "<ruleset name=\"Honest Policy\" f=\"Honest_Policy.xml\"><securecookie host=\"^\\.honestpolicy\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HoneyBeeLoans.com\" default_off=\"failed ruleset test\" f=\"HoneyBeeLoans.com.xml\"><securecookie host=\"^(?:w*\\.)?honeybeeloans\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Honolulu Star Advertiser\" default_off=\"failed ruleset test\" f=\"Honolulu_Star_Advertiser.xml\"><rule from=\"^http://(?:www\\.)?staradvertiser\\.com/\" to=\"https://www.staradvertiser.com/\"/><rule from=\"^http://media\\.staradvertiser\\.com/\" to=\"https://media.staradvertiser.com/\"/><rule from=\"^http://sa-cmedia01\\.staradvertiser\\.com/\" to=\"https://d392249hhaazk5.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Hoodline.com\" f=\"Hoodline.com.xml\"><rule from=\"^http://(www\\.)?hoodline\\.com/\" to=\"https://www.hoodline.com/\"/></ruleset>", "<ruleset name=\"HootSuite (mismatched)\" default_off=\"mismatched\" f=\"HootSuite-mismatches.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HootSuite\" f=\"HootSuite.xml\"><securecookie host=\"^(?:.*\\.)?hootsuite\\.com$\" name=\".+\"/><rule from=\"^http://(?:s7\\.)?static\\.hootsuite\\.com/\" to=\"https://d1ue63gpusfv5w.cloudfront.net/\"/><rule from=\"^http://s0\\.static\\.hootsuite\\.com/\" to=\"https://d2l6uygi1pgnys.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hoover Institution\" default_off=\"mismatched\" f=\"Hoover_Institution.xml\"><rule from=\"^http://(?:www\\.)?hoover\\.org/\" to=\"https://www.hoover.org/\"/><rule from=\"^http://media\\.hoover\\.org/\" to=\"https://media.hoover.org/\"/></ruleset>", "<ruleset name=\"Hoover's (partial)\" default_off=\"webmaster request\" f=\"Hoovers.xml\"><securecookie host=\"^subscriber\\.hoovers\\.com$\" name=\".+\"/><rule from=\"^http://s(ecure|ubscriber)\\.hoovers\\.com/\" to=\"https://s$1.hoovers.com/\"/></ruleset>", "<ruleset name=\"Hop Studios\" platform=\"mixedcontent\" f=\"Hop-Studios.xml\"><securecookie host=\"^(?:.*\\.)?hopstudios\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hope.net (partial)\" f=\"Hope.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hopkins-Interactive.com\" f=\"Hopkins-Interactive.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Horde (partial)\" default_off=\"failed ruleset test\" f=\"Horde.xml\"><rule from=\"^http://dev\\.horde\\.org/\" to=\"https://dev.horde.org/\"/><rule from=\"^http://(www\\.)?horde-llc\\.com/\" to=\"https://$1horde-llc.com/\"/></ruleset>", "<ruleset name=\"Hornbach\" f=\"Hornbach.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hornstra Farms.com\" default_off=\"failed ruleset test\" f=\"Hornstra_Farms.com.xml\"><rule from=\"^http://www\\.hornstrafarms\\.com/\" to=\"https://hornstrafarms.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Horyzon Media.com (partial)\" f=\"Horyzon_Media.xml\"><securecookie host=\"^ads\\.horyzon-media\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hosokawa-Alpine.com\" f=\"Hosokawa-Alpine.com.xml\"><securecookie host=\"^(?:www\\.)?hosokawa-alpine\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hospitality Leaders \" default_off=\"failed ruleset test\" f=\"Hospitality_Leaders.xml\"><securecookie host=\"^\\.?hospitalityleaders\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Host Creo\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Host-Creo.xml\"><rule from=\"^http://(?:hostcreo|creocommunico)\\.com/\" to=\"https://creocommunico.com/\"/><rule from=\"^http://(secure|www)\\.(hostcreo|creocommunico)\\.com/\" to=\"https://$1.creocommunico.com/\"/></ruleset>", "<ruleset name=\"Host Europe Group\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Host-Europe-Group.xml\"><rule from=\"^http://dev\\.heg\\.com/\" to=\"https://www.heg.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Host-Tracker.com\" f=\"Host-tracker.com.xml\"><securecookie host=\"^www\\.host-tracker\\.com$\" name=\".+\"/><rule from=\"^http://host-tracker\\.com/\" to=\"https://www.host-tracker.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Host.co.id\" default_off=\"failed ruleset test\" f=\"Host.co.id.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Host1Plus\" platform=\"mixedcontent\" f=\"Host1Plus.xml\"><securecookie host=\"^(?:.*\\.)?host1plus\\.com$\" name=\".*\"/><rule from=\"^http://(\\w+\\.)?host1plus\\.com/\" to=\"https://$1host1plus.com/\"/></ruleset>", "<ruleset name=\"host2.bg\" default_off=\"failed ruleset test\" f=\"Host2.bg.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HostBaby.com (partial)\" f=\"HostBaby.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HostBill (partial)\" f=\"HostBill.xml\"><rule from=\"^http://www\\.hostbillapp\\.com/\" to=\"https://hostbillapp.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HostCentric.com\" f=\"HostCentric.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://images\\.hostcentric\\.com/\" to=\"https://secure.hostcentric.com/images/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HostDime.com (partial)\" default_off=\"failed ruleset test\" f=\"HostDime.xml\"><securecookie host=\"^(?:.*\\.)?hostdime\\.com$\" name=\".*\"/><rule from=\"^http://jobs\\.hostdime\\.com/[^?]*\" to=\"https://www.hostdime.com/jobs/\"/><rule from=\"^http://status\\.hostdime\\.com/[^?]*\" to=\"https://www.hostdime.com/facilities/server-status/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HostGator.com (false MCB)\" platform=\"mixedcontent\" f=\"HostGator.com-falsemixed.xml\"><securecookie host=\"www\\.hostgator\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HostGator.com (partial)\" f=\"HostGator.xml\"><exclusion pattern=\"^http://(?:demo|forums|suspended)\\.hostgator\\.com/\"/><exclusion pattern=\"^http://templates\\.hostgator\\.com/+(?!favicon\\.ico|images/|thumbnails/|style\\.css|styles-gator\\.css)\"/><exclusion pattern=\"^http://www\\.hostgator\\.com/+blog(?!/~/tmp/|/wp-content/)\"/><securecookie host=\".+\\.hostgator\\.com$\" name=\".+\"/><rule from=\"^http://(\\w+\\.)?hostgator\\.com(:8443)?/\" to=\"https://$1hostgator.com$2/\"/></ruleset>", "<ruleset name=\"HostHorde.com\" f=\"HostHorde.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HostSearch (partial)\" default_off=\"failed ruleset test\" f=\"HostSearch.xml\"><rule from=\"^http://secure\\.hostsearch\\.com/\" to=\"https://secure.hostsearch.com/\"/></ruleset>", "<ruleset name=\"Host Analytics.com (partial)\" default_off=\"failed ruleset test\" f=\"Host_Analytics.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Host Europe.de\" f=\"Host_Europe.de.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Host One (partial)\" default_off=\"failed ruleset test\" f=\"Host_One.xml\"><securecookie host=\"^sugarcrm\\.hostone\\.com\\.au$\" name=\".+\"/><rule from=\"^http://sugarcrm\\.hostone\\.com\\.au/\" to=\"https://sugarcrm.hostone.com.au/\"/></ruleset>", "<ruleset name=\"Host Virtual.com\" f=\"Host_Virtual.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Host Voice.com\" default_off=\"failed ruleset test\" f=\"Host_Voice.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hostasaurus.com\" f=\"Hostasaurus.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hosterbox.com\" f=\"Hosterbox.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hostica.com\" f=\"Hostica.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hostican Web Hosting\" default_off=\"refused\" f=\"Hostican.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hosting Reviews (partial)\" default_off=\"mismatched\" f=\"Hosting-Reviews.xml\"><rule from=\"^http://(?:www\\.)?hostingreviews\\.com/wp-content/\" to=\"https://hostingreviews.com/wp-content/\"/></ruleset>", "<ruleset name=\"Hosting2GO.nl\" f=\"Hosting2GO.nl.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hosting90.cz\" f=\"Hosting90.cz.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hosting9000.com\" f=\"Hosting9000.com.xml\"><securecookie host=\"^(?:www\\.)?hosting9000\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HostingCon.com\" default_off=\"failed ruleset test\" f=\"HostingCon.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HostingLabs.pe (partial)\" f=\"HostingLabs.pe.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HostingSolutions s.r.o.\" default_off=\"failed ruleset test\" f=\"HostingSolutions.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HostingXtreme.com (partial)\" default_off=\"failed ruleset test\" f=\"HostingXtreme.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hosting Catalog.com (false MCB)\" platform=\"mixedcontent\" f=\"Hosting_Catalog.com-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hosting Catalog.com (partial)\" f=\"Hosting_Catalog.com.xml\"><exclusion pattern=\"^http://www\\.hostingcatalog\\.com/+(?!1x1s\\.gif|favicon\\.ico|images/|style\\.css)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hostingas.lt\" f=\"Hostingas.lt.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"23Vnet\" f=\"Hostit.xml\"><securecookie host=\"^\\.hostit\\.hu$\" name=\".+\"/><rule from=\"^http://www\\.hostit\\.hu/\" to=\"https://hostit.hu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hostmonster\" f=\"Hostmonster.xml\"><securecookie host=\"^(?:.*\\.)?hostmonster\\.com$\" name=\".+\"/><securecookie host=\"^\\.hostmonster-cdn\\.com$\" name=\".+\"/><rule from=\"^http://(\\w+\\.)?hostmonster\\.com/\" to=\"https://$1hostmonster.com/\"/><rule from=\"^http://(cf\\.)?hostmonster-cdn\\.com/\" to=\"https://$1hostmonster-cdn.com/\"/></ruleset>", "<ruleset name=\"hostname.sk (partial)\" f=\"Hostname.sk.xml\"><securecookie host=\"^blog\\.hostname\\.sk$\" name=\".+\"/><rule from=\"^http://(blog|sendxmpp|whatsmyip)\\.hostname\\.sk/\" to=\"https://$1.hostname.sk/\"/></ruleset>", "<ruleset name=\"Hostoople.com (false MCB)\" platform=\"mixedcontent\" f=\"Hostoople.com-falsemixed.xml\"><rule from=\"^http://(?:(?:www\\.)?hostoople|hostooplecms\\.hostooplecom\\.netdna-cdn)\\.com/\" to=\"https://www.hostoople.com/\"/></ruleset>", "<ruleset name=\"Hostoople.com (partial)\" f=\"Hostoople.com.xml\"><exclusion pattern=\"^http://(?:(?:www\\.)?hostoople|hostooplecms\\.hostooplecom\\.netdna-cdn)\\.com/+(?!favicon\\.ico|images/|wp-content/|wp-includes/)\"/><rule from=\"^http://(?:(?:www\\.)?hostoople|hostooplecms\\.hostooplecom\\.netdna-cdn)\\.com/\" to=\"https://www.hostoople.com/\"/><rule from=\"^http://(affiliate|customer)\\.hostoople\\.com/\" to=\"https://$1.hostoople.com/\"/></ruleset>", "<ruleset name=\"Hostpoint\" f=\"Hostpoint.xml\"><securecookie host=\"^(?:admin|support|www)\\.hostpoint\\.ch$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?hostpoint\\.ch/\" to=\"https://www.hostpoint.ch/\"/><rule from=\"^http://(?:www\\.)?14daytrial\\.hostpoint\\.ch/[^\\?]*(\\?.*)?\" to=\"https://www.hostpoint.ch/ms/promo/hostingtrial/index.php$1\"/><rule from=\"^http://(?:www\\.)?admin\\.hostpoint\\.ch/\" to=\"https://admin.hostpoint.ch/\"/><rule from=\"^http://(?:www\\.)?blog\\.hostpoint\\.ch/\" to=\"https://blog.hostpoint.ch/\"/><rule from=\"^http://support\\.hostpoint\\.ch/\" to=\"https://support.hostpoint.ch/\"/><rule from=\"^http://www\\.support\\.hostpoint\\.ch/[^\\?]*(\\?.*)?\" to=\"https://support.hostpoint.ch/$1\"/></ruleset>", "<ruleset name=\"Hostpointpartner.ch\" f=\"Hostpointpartner.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hostr.co\" f=\"Hostr.co.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hosts.co.uk (mismatched)\" default_off=\"mismatched\" f=\"Hosts.co.uk-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hosts.co.uk (partial)\" f=\"Hosts.xml\"><securecookie host=\"^(?:admin|webmail)\\.hosts\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://webmail4\\.hosts\\.co\\.uk/\" to=\"https://webmail4.names.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hot-Chilli.net (partial)\" f=\"Hot-Chilli.net.xml\"><securecookie host=\"^jabber\\.hot-chilli\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HotLog.ru (partial)\" default_off=\"missing certificate chain\" f=\"HotLog.ru.xml\"><securecookie host=\"^\\.hotlog\\.ru$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitterwallet.com\" f=\"HotUKDeals-mismatches.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HotUKDeals (partial)\" default_off=\"failed ruleset test\" f=\"HotUKDeals.xml\"><rule from=\"^http://(www\\.)?dealspwn\\.com/(clientscript/|css/|images/|login$|writer)\" to=\"https://www.dealspwn.com/$2\"/><rule from=\"^http://gamebase\\.dealspwn\\.com/((base|style_UK)\\.css$|images/)\" to=\"https://gamebase.dealspwn.com/$1\"/><rule from=\"^http://(www\\.)?hotukdeals\\.com/(about$|clientscript/|contact|custom-settings|favicon\\.ico$|help|hukd-badges|images/|login|newsletter|profile/|rest-api|stylesheets/|submit|top)\" to=\"https://www.hotukdeals.com/$2\"/><rule from=\"^http://m\\.hotukdeals\\.com/(favicon\\.ico$|images/|login/|newsletter|stylesheets/)\" to=\"https://m.hotukdeals.com/$2\"/><rule from=\"^http://(?:www\\.)?mobot\\.net/\" to=\"https://www.mobot.net/\"/><rule from=\"^http://m\\.mobot\\.net/(css/|images/|login$)\" to=\"https://m.mobot.net/$1\"/><rule from=\"^http://(?:www\\.)?statichukd\\.com/\" to=\"https://www.hotukdeals.com/\"/><securecookie host=\"^\\.mobot\\.net$\" name=\".*\"/></ruleset>", "<ruleset name=\"Hot Pics Amateur\" default_off=\"mismatched\" platform=\"mixedcontent\" f=\"Hot_Pics_Amateur.xml\"><securecookie host=\"^(?:www\\.)?hotpics-amateur\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?(collection\\.)?hotpics-amateur\\.com/\" to=\"https://$1hotpics-amateur.com/\"/></ruleset>", "<ruleset name=\"Hot Scripts.com\" f=\"Hot_Scripts.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hotel Mangaby.com\" default_off=\"expired\" f=\"Hotel_Managaby.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hotel Wifi.com (partial)\" default_off=\"failed ruleset test\" f=\"Hotel_Wifi.com.xml\"><securecookie host=\"^hiesorrentovalley\\.hotelwifi\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hotelplan.ch\" default_off=\"redirects to http\" f=\"Hotelplan.ch.xml\"><rule from=\"^http://(?:www\\.)?hotelplan\\.ch/\" to=\"https://www.hotelplan.ch/\"/><rule from=\"^http://(?:www\\.)?travelhouse\\.ch/\" to=\"https://www.travelhouse.ch/\"/></ruleset>", "<ruleset name=\"Hotels.com (partial)\" f=\"Hotels.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://hotels\\.com/\" to=\"https://ssl.hotels.com/\"/><rule from=\"^http://(\\w+)\\.cdn-hotels\\.com/\" to=\"https://$1.cdn-hotels.com/\"/><rule from=\"^http://(?:\\w\\w\\.|www\\.)?hotels\\.com/(external/|html/blank\\.html|static/)\" to=\"https://a1.cdn-hotels.com/$1\"/><rule from=\"^http://(?:www\\.)?hotels\\.com/((?:c[no]\\d+|customer_care|de\\d+|deals|ImageDisplay|site-index)(?:$|\\?|/)|selectors/|__ssobj/)\" to=\"https://ssl.hotels.com/$1\"/><rule from=\"^http://(\\w\\w)\\.hotels\\.com/((?:c[no]\\d+|customer_care|de\\d+|deals|ImageDisplay|site-index)(?:$|\\?|/)|selectors/|__ssobj/)\" to=\"https://ssl-$1.hotels.com/$2\"/><rule from=\"^http://(customercare|delivery|(?:\\w\\w\\.)?service|ssl(?:-\\w\\w)?)\\.hotels\\.com/\" to=\"https://$1.hotels.com/\"/></ruleset>", "<ruleset name=\"Hotmail.co.jp\" f=\"Hotmail.co.jp.xml\"><rule from=\"^http://www\\.hotmail\\.co\\.jp/\" to=\"https://hotmail.co.jp/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hotmail.co.uk\" f=\"Hotmail.co.uk.xml\"><rule from=\"^http://www\\.hotmail\\.co\\.uk/\" to=\"https://hotmail.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hotmail.com\" f=\"Hotmail.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hotspot Shield (partial)\" f=\"Hotspot_Shield.xml\"><exclusion pattern=\"^http://(?:www\\.)?hsselite\\.com/sign-in(?:$|[?/])\"/><rule from=\"^http://hotspotshield\\.com/\" to=\"https://hotspotshield.com/\"/><rule from=\"^http://(cdn\\.|www\\.)?hsselite\\.com/\" to=\"https://$1hsselite.com/\"/></ruleset>", "<ruleset name=\"Hotwire\" f=\"Hotwire.xml\"><rule from=\"^http://hotwire\\.com/\" to=\"https://www.hotwire.com/\"/><rule from=\"^http://(cruise|extranet|www)\\.hotwire\\.com/\" to=\"https://$1.hotwire.com/\"/></ruleset>", "<ruleset name=\"Hound CI.com\" f=\"Hound_CI.com.xml\"><securecookie host=\"^(?:www\\.)?houndci\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hounddog Central\" f=\"Hounddog_Central.xml\"><securecookie host=\"^(?:w*\\.)?hounddogcentral\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Houseoffraser.co.uk\" f=\"Houseoffraser.co.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HousingWire.com\" f=\"HousingWire.com.xml\"><rule from=\"^http://(?:www\\.)?housingwire\\.com/\" to=\"https://www.housingwire.com/\"/><rule from=\"^http://store\\.housingwire\\.com/[^\\?]*(\\?.*)?\" to=\"https://checkout.subscriptiongenius.com/housingwire.com/$1\"/></ruleset>", "<ruleset name=\"Houston Chronicle (partial)\" f=\"Houston_Chronicle.xml\"><exclusion pattern=\"^http://fangear\\.chron\\.com/(?!App_Themes|images)/\"/><securecookie host=\"^dailydeal\\.chron\\.com$\" name=\".+\"/><securecookie host=\"^myaccount\\.houstonchronicle\\.com$\" name=\".+\"/><rule from=\"^http://(dailydeal|fangear|file)\\.chron\\.com/\" to=\"https://$1.chron.com/\"/><rule from=\"^http://local\\.chron\\.com/static/\" to=\"https://www.localedge.com/static/\"/><rule from=\"^http://myaccount\\.houstonchronicle\\.com/\" to=\"https://myaccount.houstonchronicle.com/\"/></ruleset>", "<ruleset name=\"Hover.com (partial)\" f=\"Hover.com.xml\"><exclusion pattern=\"^http://www\\.hover\\.com/(?:blog|wp-content|wp-includes)(?:$|[?/])\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"How-Old.Net\" f=\"How-Old.net.xml\"><securecookie host=\"^.*\\.how-old\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HowTo.gov\" f=\"HowTo.gov.xml\"><rule from=\"^http://howto\\.gov/\" to=\"https://www.howto.gov/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"How-to-Box.com\" default_off=\"self-signed\" f=\"How_to_Box.xml\"><securecookie host=\"^\\.how-to-box\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Howard Hughes Medical Institute\" platform=\"mixedcontent\" f=\"Howard-Hughes-Medical-Institute.xml\"><securecookie host=\"^.*\\.hhmi\\.org$\" name=\".*\"/><rule from=\"^http://hhmi\\.org/\" to=\"https://www.hhmi.org/\"/><rule from=\"^http://([\\w\\-]+)\\.hhmi\\.org/\" to=\"https://$1.hhmi.org/\"/></ruleset>", "<ruleset name=\"Howinerd.com\" f=\"Howinerd.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HowtoForge.com\" f=\"HowtoForge.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HowtoForge.de\" f=\"HowtoForge.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hqcodeshop.fi (partial)\" f=\"Hqcodeshop.fi.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HrC.onl\" f=\"HrC.onl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"href.li\" f=\"Href.li.xml\"><rule from=\"^http://www\\.href\\.li/\" to=\"https://href.li/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hrkgame.com\" f=\"Hrkgame.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hs-rm.de\" f=\"Hs-rm.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HsI cloud.com (partial)\" default_off=\"failed ruleset test\" f=\"HsI_cloud.com.xml\"><rule from=\"^http://fb\\.hsicloud\\.com/\" to=\"https://fb.hsicloud.com/\"/></ruleset>", "<ruleset name=\"HsKA\" f=\"HsKA.xml\"><rule from=\"^http://hs-karlsruhe\\.de/\" to=\"https://www.hs-karlsruhe.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HsKAmpus\" f=\"HsKAmpus.xml\"><rule from=\"^http://app\\.hskampus\\.de/\" to=\"https://www.iwi.hs-karlsruhe.de/hskampus-web/app/\"/><rule from=\"^http://app-d\\.hskampus\\.de/\" to=\"https://www.iwi.hs-karlsruhe.de/hskampus-web-d/app/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hslu\" f=\"Hslu.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hsto.org\" f=\"Hsto.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hstor.org\" default_off=\"failed ruleset test\" f=\"Hstor.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ht.vc\" default_off=\"failed ruleset test\" f=\"Ht.vc.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"httpLab.it\" f=\"HttpLab.it.xml\"><securecookie host=\"^(?:www\\.)?httplab\\.it$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"httpbin\" f=\"Httpbin.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HTWK Leipzig (own domains)\" default_off=\"failed ruleset test\" f=\"Htwk-leipzig-owndomains.xml\"><securecookie host=\"^(cmw-leipzig\\.de|www\\.cmw-leipzig\\.de|structuralengineering\\.de|www\\.structuralengineering\\.de|www\\.htwk-alumni\\.de|htwk-alumni\\.de|www\\.verlagsherstellung\\.de|verlagsherstellung\\.de|www\\.publishing-technology\\.de|publishing-technology\\.de|streifband\\.de|www\\.validlab\\.de|validlab\\.de)\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HTWK-Leipzig.de\" default_off=\"failed ruleset test\" f=\"Htwk-leipzig.de.xml\"><securecookie host=\"^(antonius\\.imn\\.|webmail\\.|www\\.imn\\.|portal\\.imn\\.|www\\.|htwk-leipzig\\.de|bauwesen\\.|www\\.bauwesen\\.|www\\.fbm\\.|fbme\\.|www\\.fbme\\.|www\\.sozwes\\.|wiwi\\.|www\\.wiwi\\.|wi\\.|www\\.wi\\.|fsrwiwi\\.|www\\.fsrwiwi\\.|bmb\\.|www\\.bmb\\.|stura\\.|www\\.stura\\.|cmw\\.|fsrmedien\\.|www\\.architekturinstitut\\.|www\\.bauart\\.|www\\.energiedesign\\.|studclient\\.|www\\.veredelungslexikon\\.|veredelungslexikon\\.|www\\.velex\\.|velex\\.|fsras\\.|www\\.fsras\\.|kybernetes\\.|www\\.kybernetes\\.|frauen\\.|www\\.frauen\\.|studifit\\.|www\\.studifit\\.|ip3\\.|www\\.ip3\\.|sug\\.|www\\.sug\\.|www\\.fz\\.|fz\\.|www\\.ifb\\.|ifb\\.|www\\.ail\\.|ail\\.|www\\.stiftung\\.|stiftung\\.|lean-hochschulgruppe\\.|www\\.lean-hochschulgruppe\\.|lizard-cloud\\.|www\\.lizard-cloud\\.|genumedia\\.|www\\.genumedia\\.|www\\.iws\\.|iws\\.|www\\.fas\\.|turbo\\.|www\\.turbo\\.|pdwl\\.|msturm\\.|bsturm\\.|www\\.museumsarbeit\\.|www\\.labp\\.|labp\\.|architektur\\.|www\\.sozialwissenschaften\\.|bauwerksinformation\\.|sozialwissenschaften\\.|ihbb\\.|www\\.nachhaltigesbauen\\.|nachhaltigesbauen\\.|flex\\.|campusspiele\\.|studienwuerdig\\.|hr-innovation\\.|marketing\\.|www\\.marketing\\.|kongress-soziale-arbeit\\.)?htwk-leipzig\\.de\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Huawei.com (partial)\" default_off=\"failed ruleset test\" f=\"Huawei.com.xml\"><securecookie host=\"^(?:edoc|imail\\w\\w|imailind|uniportal)\\.huawei\\.com$\" name=\".+\"/><rule from=\"^http://imail(\\w\\w|ind)\\.huawei\\.com/(?:\\?.*)?$\" to=\"https://imail$1.huawei.com/OWA\"/><rule from=\"^http://(autodiscover|edoc|edoc-hk|imail\\w\\w|imailind|uniportal)\\.huawei\\.com/\" to=\"https://$1.huawei.com/\"/></ruleset>", "<ruleset name=\"HubSpot.net\" f=\"HubSpot.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HubSpot.com\" f=\"HubSpot.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://cdn\\.blog\\.hubspot\\.com/\" to=\"https://s3.amazonaws.com/cdn.hubspot.com/\"/><rule from=\"^http://cdn1\\.hubspot\\.com/\" to=\"https://s3.amazonaws.com/cdn1.hubspot.com/\"/><rule from=\"^http://forums\\.hubspot\\.com/\" to=\"https://community.hubspot.com/\"/><rule from=\"^http://jobs\\.hubspot\\.com/\" to=\"https://www.hubspot.com/jobs/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HubSpot QA.com (partial)\" f=\"HubSpot_QA.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hubic.com\" f=\"Hubic.com.xml\"><securecookie host=\"(?:^|\\.)hubic\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hudson Valley Host (partial)\" f=\"Hudson_Valley_Host.xml\"><rule from=\"^http://billing\\.hudsonvalleyhost\\.com/((?:cart|clientarea|submitticket)\\.php|favicon\\.ico|images/|includes/|modules/|templates/)\" to=\"https://billing.hudsonvalleyhost.com/$1\"/></ruleset>", "<ruleset name=\"Huffington Post (mismatches)\" default_off=\"mismatched\" f=\"Huffington-Post-mismatches.xml\"><rule from=\"^http://(?:www\\.)?huffingtonpost\\.ca/\" to=\"https://www.huffingtonpost.ca/\"/><rule from=\"^http://e\\.huffpost\\.com/\" to=\"https://e.huffpost.com/\"/></ruleset>", "<ruleset name=\"Huffington Post (partial)\" default_off=\"Breaks some images\" f=\"Huffington-Post.xml\"><exclusion pattern=\"^http://(?:www\\.)?huffingtonpost\\.com/+(?!favicon\\.ico|images/)\"/><exclusion pattern=\"^http://e\\.huffpost\\.com/+(?!\\w+/images/)\"/><rule from=\"^http://big\\.assets\\.huffingtonpost\\.com/\" to=\"https://s3.amazonaws.com/big.assets.huffingtonpost.com/\"/><rule from=\"^http://images\\.huffingtonpost\\.com/\" to=\"https://s-i.huffpost.com/\"/><rule from=\"^http://secure\\.huffingtonpost\\.com/\" to=\"https://secure.huffingtonpost.com/\"/><rule from=\"^http://s\\.huffpost\\.com/contributors/\" to=\"https://secure.huffingtonpost.com/contributors/\"/><rule from=\"^http://(?:s-)?([is])\\.huffpost\\.com/\" to=\"https://s-$1.huffpost.com/\"/><rule from=\"^http://s\\d\\.huffpost\\.com/\" to=\"https://s-s.huffpost.com/\"/></ruleset>", "<ruleset name=\"HugeDomains.com (partial)\" f=\"HugeDomains.com.xml\"><exclusion pattern=\"^http://www\\.hugedomains\\.com/domain_profile\\.cfm\"/><securecookie host=\"^hugedomains\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Huggies Australia (partial)\" f=\"Huggies_Australia.xml\"><securecookie host=\"^\\.huggies\\.com\\.au$\" name=\".+\"/><rule from=\"^http://(www\\.)?huggies\\.com\\.au/\" to=\"https://$1huggies.com.au/\"/><rule from=\"^http://assets\\.huggies-cdn\\.net/\" to=\"https://assets.huggies-cdn.net/\"/></ruleset>", "<ruleset name=\"HughesNet (partial)\" default_off=\"failed ruleset test\" f=\"HughesNet.xml\"><rule from=\"^http://s1\\.hughesnet\\.com/\" to=\"https://s1.hughesnet.com/\"/></ruleset>", "<ruleset name=\"Hugo Boss\" f=\"HugoBoss.xml\"><rule from=\"^http://hugoboss\\.com/\" to=\"https://www.hugoboss.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Human Rights Campaign\" f=\"Human-Rights-Campaign.xml\"><securecookie host=\"^(www|act|give|join|shop|stopthehate)\\.hrc\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Human Research Ethics Portal\" default_off=\"failed ruleset test\" f=\"HumanResearchEthicsPortal.xml\"><rule from=\"^http://(?:www\\.)?hrep\\.nhmrc\\.gov\\.au/\" to=\"https://hrep.nhmrc.gov.au/\"/></ruleset>", "<ruleset name=\"Human Action\" f=\"Human_Action.xml\"><securecookie host=\"^\\.humanaction\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Human Brain Project.eu\" f=\"Human_Brain_Project.eu.xml\"><securecookie host=\"^(?:collaboration|education|www)\\.humanbrainproject\\.eu$\" name=\".+\"/><rule from=\"^http://((?:collaboration|education|www)\\.)?humanbrainproject\\.eu/\" to=\"https://$1humanbrainproject.eu/\"/></ruleset>", "<ruleset name=\"Human Events (partial)\" default_off=\"failed ruleset test\" f=\"Human_Events.xml\"><exclusion pattern=\"^http://(?:www\\.)?humanevents\\.com/(?!t/)\"/><securecookie host=\"^order\\.humanevents\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Human Rights Defense Center.org\" f=\"Human_Rights_Defense_Center.org.xml\"><securecookie host=\"^www\\.humanrightsdefensecenter\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Human Rights First.org (partial)\" f=\"Human_Rights_First.org.xml\"><rule from=\"^http://(www\\.)?humanrightsfirst\\.org/(?=favicon\\.ico|sites/|uploads/|wp-content/|wp-includes/)\" to=\"https://$1humanrightsfirst.org/\"/></ruleset>", "<ruleset name=\"HRW.org (partial)\" default_off=\"failed ruleset test\" f=\"Human_Rights_Watch.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://(?:beta|multimedia)\\.hrw\\.org/\" to=\"https://features.hrw.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Humanism.org.uk\" f=\"Humanism.org.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Humanity+\" default_off=\"mismatched\" f=\"HumanityPlus.xml\"><rule from=\"^http://(?:www\\.)?humanityplus\\.org/\" to=\"https://humanityplus.org/\"/></ruleset>", "<ruleset name=\"Humble Bundle (partial)\" f=\"HumbleBundle.xml\"><securecookie host=\"^www\\.humblebundle\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hummingbird\" default_off=\"failed ruleset test\" f=\"Hummingbird.me.xml\"><securecookie host=\"^(\\.?forums)?\\.?hummingbird\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hunch (partial)\" default_off=\"failed ruleset test\" f=\"Hunch.xml\"><rule from=\"^http://(admin\\.|api\\.|www\\.)?hunch\\.com/\" to=\"https://$1hunch.com/\"/><rule from=\"^http://(?:aka-img-\\d\\.h-img|img-1\\.hunch)\\.com/\" to=\"https://hunch.com/\"/></ruleset>", "<ruleset name=\"HunchLab.com\" f=\"HunchLab.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hungerhost\" platform=\"mixedcontent\" f=\"Hungerhost.xml\"><rule from=\"^http://(?:www\\.)?hungerhost\\.com/\" to=\"https://hungerhost.com/\"/></ruleset>", "<ruleset name=\"Hungry for Change\" default_off=\"mismatched\" f=\"Hungry-for-Change.xml\"><securecookie host=\"^(?:.*\\.)?hungryforchange\\.tv$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?hungryforchange\\.tv/\" to=\"https://www.hungryforchange.tv/\"/></ruleset>", "<ruleset name=\"hungryhouse.co.uk\" f=\"Hungryhouse.co.uk.xml\"><securecookie host=\"^\\.\" name=\"^(?:_gat?$|dh_analytics_)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hunt Calendars\" platform=\"mixedcontent\" f=\"Hunt-Calendars.xml\"><securecookie host=\"^www\\.huntcal\\.com$\" name=\".+\"/><rule from=\"^(?:http://(?:www\\.)?|https://)huntcal\\.com/\" to=\"https://www.huntcal.com/\"/></ruleset>", "<ruleset name=\"Hunting Bears.nl\" default_off=\"failed ruleset test\" f=\"Hunting_Bears.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"huobi.com\" default_off=\"failed ruleset test\" f=\"Huobi.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://huobi\\.com/\" to=\"https://www.huobi.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hupso.com (partial)\" f=\"Hupso.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hupstream.com\" f=\"Hupstream.com.xml\"><securecookie host=\"^(?:www\\.)?hupstream\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Huque.com (partial)\" default_off=\"failed ruleset test\" f=\"Huque.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hurley Medical Center\" default_off=\"failed ruleset test\" f=\"Hurley_Medical_Center.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hurricane Electric\" f=\"HurricaneElectric.xml\"><securecookie host=\"^(?:.*\\.)?he\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?h(?:e\\.com|urricaneelectric\\.net)/\" to=\"https://www.he.net/\"/><rule from=\"^http://((?:admin|code|cust|dns|ipv6|www)\\.)?he\\.net/\" to=\"https://$1he.net/\"/></ruleset>", "<ruleset name=\"Hush-Hush (partial)\" f=\"Hush-Hush.xml\"><securecookie host=\"^secure\\.hush-hush\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?hush-hush\\.com/(cs|image)s/\" to=\"https://secure.hush-hush.com/$1s/\"/><rule from=\"^http://secure\\.hush-hush\\.com/\" to=\"https://secure.hush-hush.com/\"/></ruleset>", "<ruleset name=\"Hush.technology\" f=\"Hush.technology.xml\"><securecookie host=\"^hush\\.technology$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hushmail\" f=\"Hushmail.xml\"><securecookie host=\"^\\.\" name=\"^(?:incap_ses|visid_incap)_\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?hush\\.com/\" to=\"https://www.hushmail.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hustler\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Hustler.xml\"><rule from=\"^http://(?:www\\.)?hustlermagazine\\.com/\" to=\"https://www.hustlermagazine.com/\"/></ruleset>", "<ruleset name=\"Huxiu\" default_off=\"failed ruleset test\" f=\"Huxiu.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Huxo.co.uk\" default_off=\"self-signed\" f=\"Huxo.co.uk.xml\"><rule from=\"^http://(?:www\\.)?huxo\\.co\\.uk/\" to=\"https://huxo.co.uk/\"/></ruleset>", "<ruleset name=\"huzs.net\" f=\"Huzs.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hvidovre Kajakklub\" f=\"Hvidovrekajakklub.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hvosting.ua\" f=\"Hvosting.ua.xml\"><securecookie host=\"^(?:.*\\.)?hvosting\\.ua$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hwbot.org (partial)\" f=\"Hwbot.org.xml\"><rule from=\"^http://img\\.hwbot\\.org/\" to=\"https://d1ebmxcfh8bf9c.cloudfront.net/\"/><rule from=\"^http://static\\.hwbot\\.org/\" to=\"https://d3vp4utu9lbqmm.cloudfront.net/\"/></ruleset>", "<ruleset name=\"hwcdn.net (partial)\" f=\"Hwcdn.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hybrid-Analysis.com\" f=\"Hybrid-Analysis.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:_gat?$|_gat_|dtCookie$)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hynek.me\" f=\"Hynek.me.xml\"><rule from=\"^http://ox\\.cx/\" to=\"https://www.ox.cx/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hypanova.com\" default_off=\"failed ruleset test\" f=\"Hypanova.com.xml\"><securecookie host=\"^\\.hypanova\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HypeMachine (not supported)\" default_off=\"Full SSL not supported\" f=\"HypeMachine.xml\"><exclusion pattern=\"^http://(?:www\\.)?hypem\\.com/(?!favicon\\.ico|images/|inc/|js/)\"/><rule from=\"^http://([^/:@]+\\.)?hypem\\.com/\" to=\"https://$1hypem.com/\"/><rule from=\"^http://static-ak\\.hypem\\.net/\" to=\"https://static.hypem.com/\"/></ruleset>", "<ruleset name=\"Hyper.sh\" f=\"Hyper.sh.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hyper Elliptic.org\" f=\"Hyper_Elliptic.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hyperboria.net\" f=\"Hyperboria.net.xml\"><securecookie host=\"^\\.hyperboria\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hyperoptic.com\" f=\"Hyperoptic.com.xml\"><securecookie host=\"^(?:www\\.)?hyperoptic\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hyperspin (partial)\" f=\"Hyperspin.xml\"><rule from=\"^http://(?:www\\.)?hyperspin\\.com/(en/(?:captcha|controlpanel|uncacheable\\.gif)\\.php(?:$|\\?)|forum(?:$|[\\?/])|images/|themes/)\" to=\"https://www.hyperspin.com/$1\"/></ruleset>", "<ruleset name=\"Hypovereinsbank\" platform=\"mixedcontent\" f=\"Hypovereinsbank.de.xml\"><securecookie host=\"^(?:.*\\.)?hvb\\.de$\" name=\".*\"/><securecookie host=\"^(?:.*\\.)?hypovereinsbank\\.de$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?hypovereinsbank\\.de/\" to=\"https://www.hypovereinsbank.de/\"/><rule from=\"^http://(?:www\\.)?hvb\\.de/\" to=\"https://www.hypovereinsbank.de/\"/></ruleset>", "<ruleset name=\"I Do Foundation\" platform=\"mixedcontent\" f=\"I-Do-Foundation.xml\"><rule from=\"^http://(?:www\\.)?idofoundation\\.org/\" to=\"https://www.idofoundation.org/\"/></ruleset>", "<ruleset name=\"I-kiz.de\" f=\"I-kiz.de.xml\"><rule from=\"^http://www\\.i-kiz\\.de/\" to=\"https://www.i-kiz.de/\"/></ruleset>", "<ruleset name=\"I.CX\" f=\"I.CX.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"i.materialise.com\" f=\"I.materialise.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"I.ua (partial)\" f=\"I.ua.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"i0.cz\" f=\"I0.cz.xml\"><rule from=\"^http://(?:www\\.)?i0\\.cz/\" to=\"https://i0.cz/\"/></ruleset>", "<ruleset name=\"I12 GmbH\" f=\"I12.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"i2Coalition.com\" f=\"I2Coalition.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"I2P2.de (partial)\" default_off=\"failed ruleset test\" f=\"I2P.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?i2p2\\.de/+\" to=\"https://geti2p.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"i3D.net\" f=\"I3D.net.xml\"><rule from=\"^http://(?:customer\\.|www\\.)?i3d\\.net/\" to=\"https://customer.i3d.net/\"/></ruleset>", "<ruleset name=\"i3wm.org\" f=\"I3wm.org.xml\"><securecookie host=\"^faq\\.i3wm\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"International Association of Amusement Parks and Attractions\" default_off=\"failed ruleset test\" f=\"IAAPA.xml\"><securecookie host=\"^(?:.*\\.)?iaapa\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?iaapa\\.org/\" to=\"https://www.iaapa.org/\"/></ruleset>", "<ruleset name=\"IAATA.info\" f=\"IAATA.info.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IAB.org\" f=\"IAB.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The IABM.org\" f=\"IABM.xml\"><securecookie host=\".\\.theiabm\\.org$\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IAEA.org (partial)\" f=\"IAEA.org.xml\"><securecookie host=\"^\\.iaea\\.org$\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IANA.org\" f=\"IANA.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IAR.com\" f=\"IAR.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.www\\.\" name=\".\"/><rule from=\"^http://iar\\.com/\" to=\"https://www.iar.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IAS.edu (partial)\" default_off=\"failed ruleset test\" f=\"IAS.edu.xml\"><securecookie host=\"^(?:\\.math|\\.mail\\.math|\\.pcmi|sig|\\.sns|www)\\.ias\\.edu$\" name=\".+\"/><rule from=\"^http://(admin|hs|math|s[ns]s)\\.ias\\.edu/\" to=\"https://www.$1.ias.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iATS Payments.com (partial)\" f=\"IATS_Payments.com.xml\"><rule from=\"^http://(?:www\\.)?iatspayments\\.com/\" to=\"https://www.iatspayments.com/\"/></ruleset>", "<ruleset name=\"IA Japan.org (partial)\" f=\"IA_Japan.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iAmplify (partial)\" f=\"IAmplify.xml\"><securecookie host=\"^affiliates?\\.iamplify\\.com$\" name=\".*\"/><rule from=\"^http://affiliate(s)?\\.iamplify\\.com/\" to=\"https://affiliate$1.iamplify.com/\"/><rule from=\"^http://(\\w+\\.)?iamplify\\.com/(shared_|store/(shared_)?)?(css/|images/|password_forgotten|signin)\" to=\"https://$1iamplify.com/$1\"/></ruleset>", "<ruleset name=\"iAnonym.com\" default_off=\"mismatched\" f=\"IAnonym.com.xml\"><securecookie host=\"^ianonym\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ianonym\\.com/\" to=\"https://ianonym.com/\"/></ruleset>", "<ruleset name=\"IB-IBI.com (partial)\" default_off=\"failed ruleset test\" f=\"IB-IBI.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IBM.com (partial)\" f=\"IBM.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://(research\\.)?ibm\\.com/\" to=\"https://www.$1ibm.com/\"/><rule from=\"^http://researchweb\\.watson\\.ibm\\.com/\" to=\"https://www.research.ibm.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IBPhoenix.com\" default_off=\"failed ruleset test\" f=\"IBPhoenix.com.xml\"><securecookie host=\"^www\\.ibphoenix\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ibphoenix\\.com/\" to=\"https://www.ibphoenix.com/\"/></ruleset>", "<ruleset name=\"IBTimes.co.uk\" f=\"IBTimes.co.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iBario.com\" default_off=\"failed ruleset test\" f=\"IBario.com.xml\"><rule from=\"^http://(?:www\\.)?ibario\\.com/\" to=\"https://www.ibario.com/\"/></ruleset>", "<ruleset name=\"IBillBoard.com (partial)\" f=\"IBillBoard.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ICA.se\" f=\"ICA.se.xml\"><rule from=\"^http://ica\\.se/\" to=\"https://www.ica.se/\"/><rule from=\"^http://www\\.ica\\.se/\" to=\"https://www.ica.se/\"/></ruleset>", "<ruleset name=\"ICANN.org (false MCB)\" platform=\"mixedcontent\" f=\"ICANN.org-falsemixed.xml\"><rule from=\"^http://(newgtlds|whois)\\.icann\\.org/\" to=\"https://$1.icann.org/\"/></ruleset>", "<ruleset name=\"ICANN.org (partial)\" f=\"ICANN.xml\"><exclusion pattern=\"^http://nomcom\\.icann\\.org/+(?!$|\\?)\"/><exclusion pattern=\"^http://(?:newgtlds|whois)\\.icann\\.org/+(?!sites/)\"/><securecookie host=\"(?:.*\\.)?icann\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?atlarge\\.icann\\.org/\" to=\"https://atlarge.icann.org/\"/><rule from=\"^http://nomcom\\.icann\\.org/+(?=$|\\?)\" to=\"https://www.icann.org/en/groups/nomcom\"/><rule from=\"^http://((?:archive|(?:www\\.)?aso|atlarge-lists|atlas|blog|ccnso|charts|community|forms|forum|gac|mm\\.gac|gacweb|gnso|gtldresult|me|meetings|mm|new|newgtlds|prague44|public|whois|www)\\.)?icann\\.org/\" to=\"https://$1icann.org/\"/></ruleset>", "<ruleset name=\"ICBIT\" default_off=\"failed ruleset test\" f=\"ICBIT.xml\"><securecookie host=\"^\\.icbit\\.se$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ICC-CPI.int\" f=\"ICC-CPI.int.xml\"><rule from=\"^http://icc-cpi\\.int/\" to=\"https://www.icc-cpi.int/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ICIJ\" f=\"ICIJ.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ICIMS.com\" f=\"ICIMS.com.xml\"><securecookie host=\"^(?:cdn0\\d|images)?\\.icims\\.com$\" name=\".+\"/><rule from=\"^http://www2\\.icims\\.com/+(?:$|\\?.*)\" to=\"https://www.icims.com/\"/><rule from=\"^http://www2\\.icims\\.com/\" to=\"https://go.pardot.com/\"/><rule from=\"^http://([\\w.-]+\\.)?icims\\.com/\" to=\"https://$1icims.com/\"/></ruleset>", "<ruleset name=\"ICLN.org\" f=\"ICLN.org.xml\"><securecookie host=\"^(?:www)?\\.icln\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ICMail\" f=\"ICMail.xml\"><rule from=\"^http://(?:www\\.)?icmail\\.net/\" to=\"https://icmail.net/\"/></ruleset>", "<ruleset name=\"ICO.org.uk\" f=\"ICO.org.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ICPEN\" default_off=\"failed ruleset test\" f=\"ICPEN.xml\"><securecookie host=\"^icpen\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?icpen\\.org/\" to=\"https://icpen.org/\"/></ruleset>", "<ruleset name=\"ICQ.com\" f=\"ICQ.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ICSA Labs.com\" f=\"ICSA_Labs.com.xml\"><securecookie host=\"^\\.icsalabs\\.com$\" name=\".+\"/><rule from=\"^http://icsalabs\\.com/\" to=\"https://www.icsalabs.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ICTRecht\" f=\"ICTRecht.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ICTU.nl (partial)\" f=\"ICTU.nl.xml\"><rule from=\"^http://ictu\\.nl/\" to=\"https://www.ictu.nl/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ICUK\" f=\"ICUK.xml\"><rule from=\"^http://(?:www\\.)?icukhosting\\.co\\.uk/\" to=\"https://www.icukhosting.co.uk/\"/></ruleset>", "<ruleset name=\"ICanLocalize.com\" f=\"ICanLocalize.com.xml\"><securecookie host=\"^www\\.icanlocalize\\.com$\" name=\".+\"/><rule from=\"^http://icanlocalize\\.com/\" to=\"https://www.icanlocalize.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iCharts (partial)\" f=\"ICharts.xml\"><securecookie host=\"^accounts\\.icharts\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iClick Interactive (partial)\" f=\"IClick_Interactive.xml\"><securecookie host=\"^\\.optimix\\.asia$\" name=\"^opxPID$\"/><securecookie host=\"^e02\\.optimix\\.asia$\" name=\".+\"/><rule from=\"^http://e02\\.optimix\\.asia/\" to=\"https://e02.optimix.asia/\"/></ruleset>", "<ruleset name=\"iCommons (mismatches)\" default_off=\"mismatched\" f=\"ICommons-mismatches.xml\"><securecookie host=\"^archive\\.icommons\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?archive\\.icommons\\.org/\" to=\"https://archive.icommons.org/\"/></ruleset>", "<ruleset name=\"iCommons (partial)\" f=\"ICommons.xml\"><rule from=\"^http://(?:www\\.)?icommons\\.org/wp-content/\" to=\"https://s69107.gridserver.com/wp-content/\"/></ruleset>", "<ruleset name=\"iCommunity.fr\" default_off=\"failed ruleset test\" f=\"ICommunity.fr.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iCracked.com (partial)\" f=\"ICracked.com.xml\"><securecookie host=\"^\\.icracked\\.com$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IDC\" f=\"IDC.xml\"><securecookie host=\"^.+\\.idc\\.com$\" name=\".+\"/><rule from=\"^http://(?:cdn\\.|www\\.)?idc\\.com/\" to=\"https://www.idc.com/\"/><rule from=\"^http://cas\\.idc\\.com/\" to=\"https://cas.idc.com/\"/></ruleset>", "<ruleset name=\"IDG.com.au\" platform=\"mixedcontent\" f=\"IDG.com.au.xml\"><securecookie host=\"^(?:www)?\\.computerworld\\.com\\.au$\" name=\".*\"/><rule from=\"^http://(www\\.)?computerworld\\.com\\.au/\" to=\"https://$1computerworld.com.au/\"/><rule from=\"^http://demo\\.idg\\.com\\.au/\" to=\"https://d1i47h7pyjy1h0.cloudfront.net/\"/><rule from=\"^http://cdn\\.idg\\.com\\.au/\" to=\"https://dfwp37e65law8.cloudfront.net/\"/></ruleset>", "<ruleset name=\"IDG.se (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"IDG.se.xml\"><exclusion pattern=\"^http://(?:www\\.)?extreme\\.idg\\.se/$\"/><exclusion pattern=\"^http://(?:www\\.)?tjanster\\.idg\\.se/(?:dilbertimage|j|whitepaper)s/\"/><securecookie host=\"^(?:computersweden|idgmedia)\\.idg\\.se$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?idg\\.se/\" to=\"https://www.idg.se/\"/><rule from=\"^http://sifomedia\\.idg\\.se/\" to=\"https://ssl.sifomedia.se/\"/><rule from=\"^http://(?:www\\.)?([a-rt-v]\\w+|s[ahm]\\w+)\\.idg\\.se/\" to=\"https://$1.idg.se/\"/></ruleset>", "<ruleset name=\"IDNet\" f=\"IDNet.xml\"><rule from=\"^http://(?:www\\.)?idnet\\.net/\" to=\"https://www.idnet.net/\"/></ruleset>", "<ruleset name=\"IDRIX.fr (false MCB, mismatched)\" default_off=\"mismatched\" platform=\"mixedcontent\" f=\"IDRIX.fr-problematic.xml\"><securecookie host=\"^idrix\\.fr$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?idrix\\.fr/\" to=\"https://idrix.fr/\"/></ruleset>", "<ruleset name=\"IDRIX.fr (partial)\" default_off=\"failed ruleset test\" f=\"IDRIX.fr.xml\"><securecookie host=\"^prod\\.idrix\\.fr$\" name=\".+\"/><rule from=\"^http://prod\\.idrix\\.fr(:8443)?/\" to=\"https://prod.idrix.fr$1/\"/></ruleset>", "<ruleset name=\"IDR Solutions.com\" f=\"IDR_Solutions.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ID managed solutions.com\" f=\"ID_managed_solutions.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iDownloadBlog (partial)\" f=\"IDownloadBlog.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IED Industrieanlagen und Engineering\" default_off=\"self-signed\" f=\"IED-Industrieanlagen-und-Engineering.xml\"><securecookie host=\"^iedgmbh\\.de$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?iedgmbh\\.de/\" to=\"https://iedgmbh.de/\"/></ruleset>", "<ruleset name=\"IEEE.org (problematic)\" default_off=\"mismatch, missing certificate chain\" platform=\"mixedcontent\" f=\"IEEE-mismatches.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IEEE.org (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"IEEE.org-falsemixed.xml\"><securecookie host=\"^ieeexplore\\.ieee\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IEEE.org (needs testing)\" default_off=\"needs testing\" f=\"IEEE.xml\"><exclusion pattern=\"^http://ieeexplore\\.ieee\\.org/+(?!assets/|favicon\\.ico|xpl/statse\\.webtrendslive\\.com/)\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http://(?:www\\.)?ieee\\.org/go/renew/?$\" to=\"https://www.ieee.org/membership-application/public/renew.html\"/><rule from=\"^http://(?:www\\.)?ieee\\.org/go/shop/?$\" to=\"https://www.ieee.org/membership-catalog/index.html\"/><rule from=\"^http://ieee\\.org/\" to=\"https://www.ieee.org/\"/><rule from=\"^http://www\\.ewh\\.ieee\\.org/\" to=\"https://ewh.ieee.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IEEE USA.org (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"IEEE_USA.org-falsemixed.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IEEE USA.org (partial)\" f=\"IEEE_USA.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IEEE-eLearning.org\" f=\"IEEE_eLearning_Library.xml\"><securecookie host=\"^ieee-elearning\\.org$\" name=\".+\"/><rule from=\"^http://www\\.ieee-elearning\\.org/\" to=\"https://ieee-elearning.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IELTS\" platform=\"mixedcontent\" f=\"IELTS.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IET (partial)\" f=\"IET.xml\"><rule from=\"^http://(?:www\\.)?theiet\\.org/(?=help/passwordResetRequest\\.cfm|meganav/|my(?:$|[?/])|staticfiles/)\" to=\"https://www.theiet.org/\"/><rule from=\"^http://digital-library\\.theiet\\.org/(cart|css/|favicon\\.ico|files/|images/)\" to=\"https://digital-library.theiet.org/$1\"/></ruleset>", "<ruleset name=\"IETF.org\" f=\"IETF.org.xml\"><securecookie host=\"^\\.ietf\\.org$\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http://www\\.ops\\.ietf\\.org/\" to=\"https://trac.ietf.org/trac/ops/wiki/\"/><rule from=\"^http://edu\\.ietf\\.org/\" to=\"https://trac.ietf.org/trac/edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IFA.ch\" f=\"IFA.ch.xml\"><securecookie host=\"^(?:.*\\.)?ifa\\.ch$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IFEX.org\" f=\"IFEX.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IFPA.ie\" f=\"IFPA.ie.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IFTTT.com (partial)\" f=\"IFTTT.com.xml\"><securecookie host=\"^ifttt\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iFixit.net (partial)\" f=\"IFixit.net.xml\"><rule from=\"^http://ifixit-meta\\.dozuki\\.net/\" to=\"https://d225i93lhigkl1.cloudfront.net/\"/><rule from=\"^http://cart-products\\.ifixit\\.net/\" to=\"https://da2lh5cs8ikqj.cloudfront.net/\"/><rule from=\"^http://guide-images\\.ifixit\\.net/\" to=\"https://d3nevzfk7ii3be.cloudfront.net/\"/></ruleset>", "<ruleset name=\"iFixit.com (partial)\" f=\"IFixit.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iFriends (partial)\" f=\"IFriends.xml\"><securecookie host=\"^\\.ifriends\\.net$\" name=\".*\"/><rule from=\"^http://images\\.ifriends\\.net/\" to=\"https://images.ifriends.net/\"/></ruleset>", "<ruleset name=\"IGN (problematic)\" default_off=\"akamai certificate\" f=\"IGN-problematic.xml\"><securecookie host=\"^.*\\.ign\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ign\\.com/\" to=\"https://www.ign.com/\"/><rule from=\"^http://(au|ca|de|ie|maint|dia|redirect|uk|widgets)\\.ign\\.com/\" to=\"https://$1.ign.com/\"/></ruleset>", "<ruleset name=\"IGN (partial)\" default_off=\"failed ruleset test\" f=\"IGN.xml\"><exclusion pattern=\"^http://oystatic\\.ignimgs\\.com/cache/css/(?!35/70/3570337b77bc103506ad234873b09d3f\\.css)\"/><securecookie host=\"^s\\.ign\\.com$\" name=\".+\"/><rule from=\"^http://(mail|s)\\.ign\\.com/\" to=\"https://$1.ign.com/\"/></ruleset>", "<ruleset name=\"IGNUM.cz (partial)\" f=\"IGNUM.xml\"><securecookie host=\"^(?:www\\.)?ignum\\.cz$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iGaming (mismatches)\" default_off=\"mismatch, self-signed\" f=\"IGaming-mismatches.xml\"><securecookie host=\"^(?:best-pariuri-online|betclair|soccerpunt)\\.com$\" name=\".*\"/><securecookie host=\"^igaming\\.biz$\" name=\".*\"/><securecookie host=\"^pariuri\\.pariloto\\.net$\" name=\".*\"/><securecookie host=\"^tipseri\\.net$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?igaming\\.biz/\" to=\"https://igaming.biz/\"/><rule from=\"^http://(?:pariuri\\.|www\\.)?pariloto\\.net/\" to=\"https://pariuri.pariloto.net/\"/><rule from=\"^http://(?:www\\.)?(betclair|best-pariuri-online|pronosticuri-tenis|soccerpunt)\\.com/\" to=\"https://$1.com/\"/><rule from=\"^http://(?:www\\.)?tipseri\\.net/\" to=\"https://tipseri.net/\"/></ruleset>", "<ruleset name=\"iGaming (partial)\" platform=\"mixedcontent\" f=\"IGaming.xml\"><securecookie host=\"^(?:.*\\.)?(?:bwin|gambling-affiliation|itsfogo)\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?(bwin|gambling-affiliation)\\.com/\" to=\"https://www.$1.com/\"/><rule from=\"^http://casino\\.bwin\\.com/\" to=\"https://casino.bwin.com/\"/><rule from=\"^http://(adserver|mcf)\\.itsfogo\\.com/\" to=\"https://$1.itsfogo.com/\"/></ruleset>", "<ruleset name=\"iGoDigital.com\" f=\"IGoDigital.com.xml\"><rule from=\"^http://(?:www\\.)?igodigital\\.com/.*\" to=\"https://www.exacttarget.com/products/predictive-intelligence/\"/><rule from=\"^http://(\\w+)\\.collect\\.igodigital\\.com/\" to=\"https://$1.collect.igodigital.com/\"/></ruleset>", "<ruleset name=\"iGrasp\" f=\"IGrasp.xml\"><securecookie host=\"^.+\\.i-grasp\\.com$\" name=\".+\"/><rule from=\"^http://([\\w-]+)\\.i-grasp\\.com/\" to=\"https://$1.i-grasp.com/\"/></ruleset>", "<ruleset name=\"IHC.ru\" f=\"IHC.ru.xml\"><securecookie host=\"^(?:support)?\\.ihc\\.ru$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IHG Merlin.com (partial)\" f=\"IHG_Merlin.com.xml\"><securecookie host=\"^(?:qa\\.|www\\.)?ihgmerlin\\.com$\" name=\".+\"/><rule from=\"^http://((?:images|imagesqa|me2|me2qa|qa|www)\\.)?ihgmerlin\\.com/\" to=\"https://$1ihgmerlin.com/\"/></ruleset>", "<ruleset name=\"IHG PLC.com (partial)\" f=\"IHG_PLC.com.xml\"><exclusion pattern=\"^http://www\\.ihgplc\\.com/+index\\.asp\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iHeart.com (partial)\" f=\"IHeart.com.xml\"><securecookie host=\"^\\.iheart\\.com$\" name=\".+\"/><rule from=\"^http://((?:iscale|pylon|www)\\.)?iheart\\.com/\" to=\"https://$1iheart.com/\"/><rule from=\"^http://(?:secure)?static\\.iheart\\.com/\" to=\"https://securestatic.iheart.com/\"/></ruleset>", "<ruleset name=\"IIPVV.nl\" default_off=\"failed ruleset test\" f=\"IIPVV.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IIS.net\" default_off=\"failed ruleset test\" f=\"IIS.net.xml\"><securecookie host=\"^\\.?login\\.iis\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IIS.se (partial)\" f=\"IIS.se.xml\"><securecookie host=\"^(?:domainmanager|domanhanteraren)\\.iis\\.se$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IISP.org\" f=\"IISP.org.xml\"><rule from=\"^http://(?:www\\.)?iisp\\.org/\" to=\"https://www.iisp.org/\"/><rule from=\"^http://apply\\.iisp\\.org/\" to=\"https://apply.iisp.org/\"/></ruleset>", "<ruleset name=\"IITB.ac.in (partial)\" f=\"IITB.ac.in.xml\"><securecookie host=\"^(?:www\\.cse|gpo|portal)\\.iitb\\.ac\\.in$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IJM Freedom Maker (partial)\" f=\"IJM_Freedom_Maker.xml\"><rule from=\"^http://(www\\.)?ijmfreedommaker\\.org/(apps|boost)/\" to=\"https://$1ijmfreedommaker.org/$2/\"/></ruleset>", "<ruleset name=\"IJReview.com (false MCB)\" platform=\"mixedcontent\" f=\"IJReview.com-falsemixed.xml\"><securecookie host=\"^\\.ijreview\\.com$\" name=\".+\"/><rule from=\"^http://www\\.ijreview\\.com/\" to=\"https://www.ijreview.com/\"/></ruleset>", "<ruleset name=\"IJReview.com (partial)\" f=\"IJReview.com.xml\"><exclusion pattern=\"^http://www\\.ijreview\\.com/+(?!favicon\\.ico|wp-content/|wp-includes/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IKK-Gesundplus\" f=\"IKK-Gesundplus.xml\"><rule from=\"^http://(?:www\\.)?ikk-gesundplus\\.de/\" to=\"https://www.ikk-gesundplus.de/\"/></ruleset>", "<ruleset name=\"IKK-Suedwest\" f=\"IKK-Suedwest.xml\"><rule from=\"^http://(?:www\\.)?ikk-suedwest\\.de/\" to=\"https://www.ikk-suedwest.de/\"/></ruleset>", "<ruleset name=\"iKeepinCloud.com\" f=\"IKeepinCloud.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iKoruna\" default_off=\"failed ruleset test\" f=\"IKoruna.xml\"><securecookie host=\"^www\\.i-koruna\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ILO.org\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"ILO.org.xml\"><rule from=\"^http://ilo\\.org/\" to=\"https://www.ilo.org/\"/><rule from=\"^http://www\\.ilo\\.org/\" to=\"https://www.ilo.org/\"/></ruleset>", "<ruleset name=\"ILG Group.com (partial)\" f=\"ILX_Group.com.xml\"><exclusion pattern=\"^http://www2\\.ilxgroup\\.com/(?!/*(?:e/|$|\\?))\"/><securecookie host=\"^(?!www2\\.)\\w\" name=\".\"/><rule from=\"^http://www2\\.ilxgroup\\.com/(?=/*e/)\" to=\"https://go.pardot.com/\"/><rule from=\"^http://www2\\.ilxgroup\\.com/.*\" to=\"https://www.ilxgroup.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iLogo\" f=\"ILogo.xml\"><securecookie host=\"^(?:.*\\.)?ilogo\\.in$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IMANCentral.org\" f=\"IMANCentral.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IMDB (partial)\" f=\"IMDB.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IMF.org\" f=\"IMF.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IMGrind.com\" default_off=\"failed ruleset test\" f=\"IMGrind.com.xml\"><securecookie host=\"^(?:www)?\\.imgrind\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IMMI.is\" f=\"IMMI.is.xml\"><securecookie host=\"^(?:www\\.)?immi\\.is$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IMSSR.com\" f=\"IMSSR.com.xml\"><securecookie host=\"^(?:www\\.)?imssr\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iMedia Communications\" f=\"IMedia-Communications.xml\"><securecookie host=\"^www\\.imediaconnection\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?imediaconnection\\.com/\" to=\"https://www.imediaconnection.com/\"/></ruleset>", "<ruleset name=\"iModules.com (partial)\" f=\"IModules.xml\"><exclusion pattern=\"^http://go\\.imodules\\.com/(?!/*(?:$|\\?|[els]/|emailPreference/|unsubscribe/|webmail/))\"/><securecookie host=\"^(?!go\\.)\\w\" name=\".\"/><rule from=\"^http://imodules\\.com/\" to=\"https://www.imodules.com/\"/><rule from=\"^http://go\\.imodules\\.com/+(?:\\?.*)?$\" to=\"https://www.imodules.com/\"/><rule from=\"^http://go\\.imodules\\.com/\" to=\"https://go.pardot.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IMshopping.com (partial)\" f=\"IMshopping.com.xml\"><rule from=\"^http://product-images\\.imshopping\\.com/\" to=\"https://s3.amazonaws.com/product-images.imshopping.com/\"/></ruleset>", "<ruleset name=\"IN.com (partial)\" default_off=\"mismatched\" f=\"IN.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"INA.fr\" f=\"INA.fr.xml\"><rule from=\"^http://www\\.boutique\\.ina\\.fr/\" to=\"https://boutique.ina.fr/\"/><rule from=\"^http://edith-piaf\\.ina\\.fr/\" to=\"https://www.ina.fr/personnalites/edith-piaf/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"INDURE\" default_off=\"failed ruleset test\" f=\"INDURE.xml\"><securecookie host=\"^www\\.indure\\.org$\" name=\".+\"/><rule from=\"^http://www\\.indure\\.org/\" to=\"https://www.indure.org/\"/></ruleset>", "<ruleset name=\"INFN.it (partial)\" default_off=\"failed ruleset test\" f=\"INFN.it.xml\"><exclusion pattern=\"^http://www\\.lnf\\.infn\\.it/~\\w+\"/><rule from=\"^http://www\\.presid\\.infn\\.it/\" to=\"https://web2.infn.it/presidenza/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"INFOnline (partial)\" f=\"INFOnline.xml\"><rule from=\"^http://(?:www\\.)?infonline\\.de/\" to=\"https://www.infonline.de/\"/></ruleset>", "<ruleset name=\"ING Direct\" default_off=\"failed ruleset test\" f=\"ING-Direct.xml\"><securecookie host=\"^.*\\.ingdirect\\.com$\" name=\".*\"/><securecookie host=\"^www\\.ingdirect\\.com\\.au$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?ingdirect\\.com/\" to=\"https://www.ingdirect.com/\"/><rule from=\"^http://(helpcenter|home|secure|shop)\\.ingdirect\\.com/\" to=\"https://$1.ingdirect.com/\"/><rule from=\"^http://(?:www\\.)?ingdirect\\.com\\.au/\" to=\"https://www.ingdirect.com.au/\"/></ruleset>", "<ruleset name=\"ING.org\" f=\"ING.org.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ING\" f=\"ING.xml\"><rule from=\"^http://ing\\.com/\" to=\"https://www.ing.com/\"/><rule from=\"^http://ing\\.nl/\" to=\"https://www.ing.nl/\"/><rule from=\"^http://([^/:@]+)\\.ing\\.com/\" to=\"https://$1.ing.com/\"/><rule from=\"^http://([^/:@]+)\\.ing\\.nl/\" to=\"https://$1.ing.nl/\"/></ruleset>", "<ruleset name=\"INPS.it\" f=\"INPS.it.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"INSA-Lyon.fr (partial)\" f=\"INSA-Lyon.fr.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://insa-lyon\\.fr/\" to=\"https://www.insa-lyon.fr/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"INYT.com (partial)\" f=\"INYT.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iNaturalist.org\" f=\"INaturalist.org.xml\"><securecookie host=\"^www\\.inaturalist\\.org$\" name=\".+\"/><rule from=\"^http://inaturalist\\.org/\" to=\"https://www.inaturalist.org/\"/><rule from=\"^http://static\\.inaturalist\\.org/\" to=\"https://s3.amazonaws.com/static.inaturalist.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iNet Interactive (partial)\" default_off=\"failed ruleset test\" f=\"INet-Interactive.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IOCCC.org (partial)\" default_off=\"expired\" f=\"IOCCC.org.xml\"><rule from=\"^http://submit\\.ioccc\\.org/\" to=\"https://submit.ioccc.org/\"/></ruleset>", "<ruleset name=\"IOLProperty.co.za (partial)\" f=\"IOLProperty.co.za.xml\"><securecookie host=\"^www\\.iolproperty\\.co\\.za$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?iolproperty\\.co\\.za/\" to=\"https://www.iolproperty.co.za/\"/></ruleset>", "<ruleset name=\"ION Audio\" f=\"ION-Audio.xml\"><securecookie host=\"^\\.?www\\.ionaudio\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ionaudio\\.com/\" to=\"https://www.ionaudio.com/\"/></ruleset>", "<ruleset name=\"IOPLEX Software\" f=\"IOPLEX_Software.xml\"><securecookie host=\"^(?:www\\.)?ioplex\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IOSCO.org\" f=\"IOSCO.org.xml\"><securecookie host=\"^\\.\" name=\"^CF(?:ID|TOKEN)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iOS Dev Weekly.com\" f=\"IOS_Dev_Weekly.com.xml\"><securecookie host=\"^iosdevweekly\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IOam.de\" f=\"IOam.de.xml\"><rule from=\"^http://www\\.ioam\\.de/[^?]*\" to=\"https://www.infonline.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iOpus.com (partial)\" f=\"IOpus.com.xml\"><securecookie host=\"^support\\.iopus\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IP-Projects.de\" f=\"IP-Projects.de.xml\"><securecookie host=\"^www\\.ip-projects\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IP2Location.com\" f=\"IP2Location.com.xml\"><securecookie host=\"^(?:www\\.)?ip2location\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IPA.go.jp\" f=\"IPA.go.jp.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IPAddressLabs.com (partial)\" default_off=\"failed ruleset test\" f=\"IPAddressLabs.com.xml\"><rule from=\"^http://(www\\.)?ipaddresslabs\\.com/(cs|image)s/\" to=\"https://$1ipaddresslabs.com/$2s/\"/><rule from=\"^http://(?:https-)?services\\.ipaddresslabs\\.com/\" to=\"https://https-services.ipaddresslabs.com/\"/></ruleset>", "<ruleset name=\"IPCC.ch\" f=\"IPCC.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IPCdigital.co.uk (partial)\" f=\"IPCdigital.co.uk.xml\"><rule from=\"^http://([\\w-]+)(?:\\.secure)?\\.media\\.ipcdigital\\.co\\.uk/\" to=\"https://$1.secure.media.ipcdigital.co.uk/\"/></ruleset>", "<ruleset name=\"IPFS.com\" f=\"IPFS.com.xml\"><securecookie host=\"^(?:www\\.)?ipfs\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iPGMail.com\" f=\"IPGMail.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IPONWEB (partial)\" f=\"IPONWEB.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IPOWER\" f=\"IPOWER.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IPQualityScore.com\" f=\"IPQualityScore.com.xml\"><securecookie host=\"^(?:www\\.)?ipqualityscore\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iPR Software.com (partial)\" default_off=\"failed ruleset test\" f=\"IPR_Software.com.xml\"><securecookie host=\"^(?:www\\.)?cms\\.iprsoftware\\.com$\" name=\".+\"/><rule from=\"^http://cms\\.ipressroom\\.com\\.s3\\.amazonaws\\.com/\" to=\"https://s3.amazonaws.com/cms.ipressroom.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IPSE.co.uk\" f=\"IPSE.co.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IPTorrents\" f=\"IPTorrents.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IPVanish.com\" default_off=\"failed ruleset test\" f=\"IPVanish.com.xml\"><securecookie host=\"^.*\\.ipvanish\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iPXE.org (partial)\" f=\"IPXE.org.xml\"><exclusion pattern=\"^http://(?:www\\.)?ipxe\\.org/(?!.*\\?do=(?:login|resendpwd|register))\"/><rule from=\"^http://((?:boot|git|www)\\.)?ipxe\\.org/\" to=\"https://$1ipxe.org/\"/></ruleset>", "<ruleset name=\"IP check (partial)\" f=\"IP_check.xml\"><rule from=\"^http://(?:www\\.)?ip-check\\.info/(all\\.css|authAttack\\.php|(?:auth|cache)\\.css\\.php|images/|ip-check\\.png)\" to=\"https://ip-check.info/$1\"/></ruleset>", "<ruleset name=\"iPage\" f=\"IPage.xml\"><securecookie host=\".*\\.ipage\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ipage\\.com/\" to=\"https://www.ipage.com/\"/><rule from=\"^http://([\\w-]+)\\.ipage\\.com/\" to=\"https://$1.ipage.com/\"/></ruleset>", "<ruleset name=\"iPinYou.com (partial)\" f=\"IPinYou.com.xml\"><securecookie host=\"^(?:console|stats)\\.ipinyou\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IPredator.se (partial)\" default_off=\"failed ruleset test\" f=\"IPredator.xml\"><securecookie host=\"^(?:.*\\.)?ipredator\\.se$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IProduction\" default_off=\"failed ruleset test\" f=\"IProduction.xml\"><securecookie host=\"^(?:www)?\\.iproduction\\.com$\" name=\".+\"/><rule from=\"^http://(?:cdn\\.|www\\.)?iproduction\\.com/\" to=\"https://www.iproduction.com/\"/></ruleset>", "<ruleset name=\"iPwnAge.com\" f=\"IPwnAge.com.xml\"><securecookie host=\"^(?:www\\.)?ipwnage\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IPython.org\" f=\"IPython.org.xml\"><rule from=\"^http://nbviewer\\.ipython\\.org/\" to=\"https://nbviewer.jupyter.org/\"/><rule from=\"^http://(?:www\\.)?ipython\\.org/\" to=\"https://ipython.org/\"/></ruleset>", "<ruleset name=\"IQ Digital Media Marketing\" f=\"IQ-Media-Marketing.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IRAAA.org\" f=\"IRAAA.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IRCTC.co.in\" f=\"IRCTC.co.in.xml\"><rule from=\"^http://(ecatering|services)\\.irctc\\.co\\.in/\" to=\"https://www.$1.irctc.co.in/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IRC Reviews\" f=\"IRCreviews.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IRF.se\" platform=\"mixedcontent\" f=\"IRF.se.xml\"><rule from=\"^http://www\\.irf\\.se/\" to=\"https://www.irf.se/\"/><rule from=\"^http://irf\\.se/\" to=\"https://www.irf.se/\"/></ruleset>", "<ruleset name=\"IRILL.org\" default_off=\"missing certificate chain\" f=\"IRILL.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IRISA.fr (partial)\" f=\"IRISA.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IRON Search\" default_off=\"failed ruleset test\" f=\"IRON_Search.xml\"><rule from=\"^http://ironsearch\\.com/\" to=\"https://www.ironsearch.com/\"/><rule from=\"^http://(secure|www)\\.ironsearch\\.com/\" to=\"https://$1.ironsearch.com/\"/></ruleset>", "<ruleset name=\"IRON Solutions (partial)\" f=\"IRON_Solutions.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IRS.gov\" f=\"IRS.gov.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://irs\\.gov/\" to=\"https://www.irs.gov/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IRTF.org\" f=\"IRTF.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ISC.org\" default_off=\"failed ruleset test\" f=\"ISC.xml\"><securecookie host=\".\\.isc\\.org$\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ISC2.org (partial)\" f=\"ISC2.org.xml\"><securecookie host=\"^\\.isc2\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ISC2 Cares.org\" default_off=\"failed ruleset test\" f=\"ISC2_cares.org.xml\"><rule from=\"^http://(?:www\\.)?isc2cares\\.org/\" to=\"https://www.isc2cares.org/\"/></ruleset>", "<ruleset name=\"ISEAS.edu.sg (partial)\" f=\"ISEAS.edu.sg.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iSEC Partners\" default_off=\"failed ruleset test\" f=\"ISEC-Partners.xml\"><securecookie host=\"^(?:.*\\.)?isecpartners\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ISNIC.is\" f=\"ISNIC.is.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ISO.org (partial)\" f=\"ISO.org.xml\"><securecookie host=\"^connect\\.iso\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ISOC.org.br\" default_off=\"plaintext reply\" f=\"ISOC.org.br.xml\"><securecookie host=\"^(?:www\\.)?isoc\\.org\\.br$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ISOC.org\" default_off=\"failed ruleset test\" f=\"ISOC.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iSOC24.com\" f=\"ISOC24.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ISO Cpp.org\" f=\"ISO_Cpp.org.xml\"><securecookie host=\"^(?:www\\.)?isocpp\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ISPGids.com\" f=\"ISPGids.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ISPID.nl\" default_off=\"expired\" f=\"ISPID.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ISPam.nl\" f=\"ISPam.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ISPsystem (partial)\" f=\"ISPsystem.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ISS World (partial)\" f=\"ISS-World.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ISS Africa.org\" f=\"ISS_Africa.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IT:Agenten\" default_off=\"failed ruleset test\" f=\"IT-Agenten.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iT-Cube Systems\" default_off=\"mismatched\" f=\"IT-Cube_Systems.xml\"><securecookie host=\"^www\\.it-cube\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?it-cube\\.net/\" to=\"https://www.it-cube.net/\"/></ruleset>", "<ruleset name=\"IT-Offshore.co.uk\" f=\"IT-Offshore.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IT University of Copenhagen\" platform=\"mixedcontent\" f=\"IT-University-of-Copenhagen.xml\"><securecookie host=\"^.*\\.itu\\.dk$\" name=\".*\"/><rule from=\"^http://((?:intranet|mit|wayf|www1?)\\.)?itu\\.dk/\" to=\"https://$1itu.dk/\"/></ruleset>", "<ruleset name=\"IT2.nl\" f=\"IT2.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ITAlliance.com\" f=\"ITAlliance.com.xml\"><securecookie host=\"^(?:www\\.)?italliance\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ITC.mx (partial)\" f=\"ITC.mx.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ITCelaya.edu.mx (partial)\" f=\"ITCelaya.edu.mx.xml\"><securecookie host=\"^sii\\.itcelaya\\.edu\\.mx$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ITEA 3.org\" f=\"ITEA_3.org.xml\"><securecookie host=\"^itea3\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ITER.org\" f=\"ITER.org.xml\"><securecookie host=\"^portal\\.iter\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ITMB.nl\" f=\"ITMB.nl.xml\"><securecookie host=\"^\\.itmb\\.nl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IT Manie\" f=\"ITManie.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ITNOG.it\" f=\"ITNOG.it.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ITPC (partial)\" f=\"ITPC.xml\"><exclusion pattern=\"^http://www\\.iptc\\.org/gfxgen(?:$|\\?)\"/><securecookie host=\"^(?:.*\\.)?iptc\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?iptc\\.org/\" to=\"https://www.iptc.org/\"/></ruleset>", "<ruleset name=\"ITSPA.org.uk\" default_off=\"failed ruleset test\" f=\"ITSPA.org.uk.xml\"><securecookie host=\"^(?:www\\.)?itspa\\.org\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ITU (partial)\" f=\"ITU.xml\"><securecookie host=\"^(?:erecruit|itunews)\\.itu\\.int$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?itu\\.int/(CookieAuth\\.dll|favicon\\.ico|lib/|net/)\" to=\"https://www.itu.int/$1\"/><rule from=\"^http://(erecruit|itunews)\\.itu\\.int/\" to=\"https://$1.itu.int/\"/></ruleset>", "<ruleset name=\"ITV.com (partial)\" f=\"ITV.com.xml\"><rule from=\"^http://(?:www\\.)?itv\\.com/thestore(?:$|[?/].*)\" to=\"https://www.jmldirect.com/\"/><rule from=\"^http://(?:www\\.)?itv\\.com/(?=assets/|itvplayer(?:$|[?/])|mediaplayer/)\" to=\"https://www.itv.com/\"/><rule from=\"^http://(beta|i01-www)\\.itv\\.com/\" to=\"https://$1.itv.com/\"/><rule from=\"^http://www\\.itvstatic\\.com/\" to=\"https://www.itvstatic.com/\"/></ruleset>", "<ruleset name=\"ITWeb.co.za (partial)\" f=\"ITWeb.co.za.xml\"><securecookie host=\"^secure\\.itweb\\.co\\.za$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ITX.com\" f=\"ITX.com.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IT Toolbox.com (partial)\" f=\"IT_Toolbox.com.xml\"><rule from=\"^http://images\\.ittoolbox\\.com/\" to=\"https://images.ittoolbox.com/\"/><rule from=\"^http://userimages\\.ittoolbox\\.com/\" to=\"https://deh50at6yod5w.cloudfront.net/\"/></ruleset>", "<ruleset name=\"my IT Works.com\" f=\"IT_Works.xml\"><securecookie host=\"^(?:w*\\.)?myitworks\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IT bookshelf.com\" f=\"IT_bookshelf.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.itbookshelf\\.com/\" to=\"https://itbookshelf.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IT matrix.eu\" f=\"IT_matrix.eu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iTactic.com\" default_off=\"mismatched\" f=\"ITactic.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://itactic\\.com/\" to=\"https://www.itactic.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iTechnician.co.uk\" f=\"ITechnician.co.uk.xml\"><securecookie host=\"^\\.itechnician\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IUCNredlist.org (partial)\" f=\"IUCNredlist.org.xml\"><rule from=\"^http://i\\.iucnredlist\\.org/\" to=\"https://d17e9fs5g1pnhb.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Indiana University Health (partial)\" f=\"IUHealth.org.xml\"><securecookie host=\"^myiuhealth\\.org$\" name=\".+\"/><rule from=\"^http://www\\.myiuhealth\\.org/\" to=\"https://myiuhealth.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IUPUI.edu (partial)\" f=\"IUPUI.edu.xml\"><exclusion pattern=\"http://cs\\.iupui\\.edu/(?!~)\"/><rule from=\"^http://cs\\.iupui\\.edu/\" to=\"https://cs.iupui.edu/\"/></ruleset>", "<ruleset name=\"IVPN.net\" default_off=\"failed ruleset test\" f=\"IVPN.net.xml\"><securecookie host=\"^www\\.ivpn\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IVW (partial)\" f=\"IVW.xml\"><securecookie host=\"^heft\\.ivw\\.eu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iVoox.com\" f=\"IVoox.com.xml\"><securecookie host=\"^www\\.ivoox\\.com$\" name=\".+\"/><rule from=\"^http://images1\\.ivoox\\.com/\" to=\"https://d24j0spkseaxmc.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IWM Network.com\" default_off=\"self-signed\" f=\"IWM_Network.com.xml\"><rule from=\"^http://(?:www\\.)?iwmnetwork\\.com/\" to=\"https://iwmnetwork.com/\"/></ruleset>", "<ruleset name=\"iWOWCase.com\" f=\"IWOWCase.xml\"><securecookie host=\"^\\.iwowcase\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iWantClips.com\" f=\"IWantClips.com.xml\"><securecookie host=\"^iwantclips\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iWeb.com (partial)\" f=\"IWeb.com.xml\"><securecookie host=\"^\\.iweb\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iWebReader (partial)\" f=\"IWebReader.xml\"><rule from=\"^http://secure\\.iwebreader\\.com/\" to=\"https://secure.iwebreader.com/\"/><rule from=\"^http://static\\.iwebreader\\.com/\" to=\"https://du4ozcxd5zwr5.cloudfront.net/\"/></ruleset>", "<ruleset name=\"IWight.com\" f=\"IWight.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IWouldDo.It (partial)\" default_off=\"failed ruleset test\" f=\"IWouldDo.It.xml\"><rule from=\"^http://iwoulddo\\.it/\" to=\"https://www.iwoulddo.it/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IXI (mismatches)\" default_off=\"mismatched\" f=\"IXI-mismatches.xml\"><rule from=\"^http://(?:www\\.)?ixicorp\\.com/wp-content/\" to=\"https://www.ixicorp.com/wp-content/\"/></ruleset>", "<ruleset name=\"IXI (partial)\" default_off=\"failed ruleset test\" f=\"IXI.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IX Web Hosting.com (partial)\" f=\"IX_Web_Hosting.com.xml\"><exclusion pattern=\"^http://www\\.ixwebhosting\\.com/(?!(?:blog|support)/wp-content/|templates/)\"/><securecookie host=\"^\\.ixwebhosting\\.com$\" name=\"^uainfo$\"/><securecookie host=\"^m(?:anage|y)\\.ixwebhosting\\.com$\" name=\".+\"/><rule from=\"^http://email\\.ixwebhosting\\.com/\" to=\"https://webmail.opentransfer.com/horde/imp/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iXit.cz\" f=\"IXit.cz.xml\"><rule from=\"^http://(?:www\\.)?ixit\\.cz/\" to=\"https://ixit.cz/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iXsystems.com\" f=\"IXsystems.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iYouPort.com\" default_off=\"failed ruleset test\" f=\"IYouPort.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IZEA.com\" f=\"IZEA.com.xml\"><securecookie host=\"^izea\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"I Am The Cavalry.org\" f=\"I_Am_The_Cavalry.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"I Fight Surveillance.org\" f=\"I_Fight_Surveillance.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"I Give Online.com\" f=\"I_Give_Online.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"I Make Things Work\" f=\"I_Make_Things_Work.xml\"><securecookie host=\"^(?:www)?\\.imakethingswork\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"I Want U (partial)\" default_off=\"failed ruleset test\" f=\"I_Want_U.xml\"><rule from=\"^http://cdn\\.keepstat\\.com/(?!(?:\\?.*)?$)\" to=\"https://cdn.keepstat.com/\"/></ruleset>", "<ruleset name=\"I love Freegle.org (partial)\" default_off=\"failed ruleset test\" f=\"I_love_Freegle.org.xml\"><securecookie host=\"^directv2.ilovefreegle.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"i love blue sea.com\" default_off=\"failed ruleset test\" f=\"I_love_blue_sea.com.xml\"><securecookie host=\"^\\.(?:www\\.)?ilovebluesea\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iamnoone-solutions.net (partial)\" f=\"Iamnoone-solutions.net.xml\"><rule from=\"^http://analytics\\.iamnoone-solutions\\.net/\" to=\"https://analytics.iamnoone-solutions.net/\"/><rule from=\"^http://cdn\\.analytics\\.iamnoone-solutions\\.net/\" to=\"https://4014-iamnoonesolution.netdna-ssl.com/\"/></ruleset>", "<ruleset name=\"ian.com\" f=\"Ian.com.xml\"><securecookie host=\"^\\.ian\\.com$\" name=\".+\"/><rule from=\"^http://ian\\.com/\" to=\"https://www.ian.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IantheHenry.com\" f=\"IantheHenry.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Iberdrola (partial)\" f=\"Iberdrola.xml\"><securecookie host=\"^(?:www)?\\.iberdrola\\.es$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?iberdrola\\.es/\" to=\"https://www.iberdrola.es/\"/></ruleset>", "<ruleset name=\"Iberia\" default_off=\"failed ruleset test\" f=\"Iberia.xml\"><rule from=\"^http://iberia\\.com/\" to=\"https://iberia.com/\"/><rule from=\"^http://([^/:@\\.]+)\\.iberia\\.com/\" to=\"https://$1.iberia.com/\"/></ruleset>", "<ruleset name=\"Iberiabank\" f=\"Iberiabank.xml\"><securecookie host=\"^(?:w*\\.)?iberiabank\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ibibo.com (partial)\" default_off=\"failed ruleset test\" f=\"Ibibo.com.xml\"><rule from=\"^http://ads\\.ibibo\\.com/\" to=\"https://ads.ibibo.com/\"/></ruleset>", "<ruleset name=\"Ibiza Rocks (partial)\" default_off=\"failed ruleset test\" f=\"Ibiza-Rocks.xml\"><securecookie host=\"^.*\\.ibizarocks\\.com$\" name=\".*\"/><rule from=\"^http://(bookings|mrh)\\.ibizarocks\\.com/\" to=\"https://$1.ibizarocks.com/\"/></ruleset>", "<ruleset name=\"IBlocklist.com (partial)\" f=\"Iblocklist.com.xml\"><securecookie host=\"^www\\.iblocklist\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ibood.com\" f=\"Ibood.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ibqonline.com\" f=\"Ibqonline.com.xml\"><securecookie host=\"^www\\.ibqonline\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ibqonline\\.com/\" to=\"https://www.ibqonline.com/\"/></ruleset>", "<ruleset name=\"Ibs.sberbank.sk\" f=\"Ibs.sberbank.sk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ibtracking.com\" f=\"Ibtracking.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ic-live.com\" f=\"Ic-live.com.xml\"><securecookie host=\"^\\.ic-live\\.com$\" name=\".+\"/><rule from=\"^http://(c\\d+\\.|www\\.)?ic-live\\.com/\" to=\"https://$1ic-live.com/\"/></ruleset>", "<ruleset name=\"icanhazip.com\" f=\"Icanhazip.com.xml\"><rule from=\"^http://(www\\.)?icanhazip\\.com/\" to=\"https://icanhazip.com/\"/></ruleset>", "<ruleset name=\"Icculus.org\" f=\"Icculus.xml\"><rule from=\"^http://(([a-zA-Z0-9-]+\\.)?icculus\\.org)/\" to=\"https://$1/\"/></ruleset>", "<ruleset name=\"IceDivX.com\" f=\"IceDivX.com.xml\"><securecookie host=\"^\\.icedivx\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IceFilms.info\" f=\"IceFilms.info.xml\"><securecookie host=\"^\\.icefilms\\.info$\" name=\"(?:__cfduid|__utm\\w+|cf_clearance)$\"/><securecookie host=\"^(?:\\.forum\\.|www\\.)?icefilms\\.info$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ice Heberg.fr\" default_off=\"mismatched\" f=\"IceHerberg.xml\"><securecookie host=\"^(?:www\\.)?iceheberg\\.fr$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IceWarp.com (partial)\" default_off=\"failed ruleset test\" f=\"IceWarp.com.xml\"><securecookie host=\"^(?:server|www)\\.icewarp\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Icecat.biz (partial)\" default_off=\"broken\" f=\"Icecat.xml\"><exclusion pattern=\"^http://(?:(?:at|be|ch|cz|es|fr|it|nl|se|ua|uk|us|www)\\.)?icecat\\.biz/forum\\.cgi\"/><securecookie host=\"^((?:at|be|ch|cz|es|fr|it|nl|se|ua|uk|us|www)\\.)?icecat\\.biz$\" name=\"^(?:isMobile|showMobile)$\"/><securecookie host=\"^\\.icecat\\.biz$\" name=\"^icecat_bizULocation$\"/><securecookie host=\"^\\.(?:(?:at|be|ch|cz|es|fr|it|nl|se|ua|uk|us|www)\\.)?icecat\\.biz$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Icehost.is (partial)\" default_off=\"failed ruleset test\" f=\"Icehost.is.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Iceleads.com\" f=\"Iceleads.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"icez.net\" default_off=\"expired, missing certificate chain\" f=\"Icez.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ichkoche.at\" f=\"IchKoche.at.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Iciciprulife.com\" default_off=\"failed ruleset test\" f=\"Iciciprulife.com.xml\"><exclusion pattern=\"http://healthclaims\\.iciciprulife\\.com/$\"/><exclusion pattern=\"http://qlikview\\.iciciprulife\\.com/$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Icinga\" f=\"Icinga.xml\"><securecookie host=\"^(?:.*\\.)?icinga\\.org$\" name=\".*\"/><rule from=\"^http://((?:dev|translate|wiki|www)\\.)?icinga\\.org/\" to=\"https://$1icinga.org/\"/></ruleset>", "<ruleset name=\"icio.us\" default_off=\"failed ruleset test\" f=\"Icio.us.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://(www\\.)?icio\\.us/\" to=\"https://del.icio.us/\"/><rule from=\"^http://images\\.del\\.icio\\.us/\" to=\"https://api.del.icio.us/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Iconfinder.com (partial)\" f=\"Iconfinder.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Iconical.com\" f=\"Iconical.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Icontem.com (partial)\" f=\"Icontem.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ICONY\" default_off=\"failed ruleset test\" f=\"Icony.xml\"><rule from=\"^http://icony\\.com/\" to=\"https://www.icony.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"icsdelivery.com\" f=\"Icsdelivery.com.xml\"><securecookie host=\"^(?:enroll|www)\\.icsdelivery\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?icsdelivery\\.com/\" to=\"https://www.icsdelivery.com/\"/><rule from=\"^http://enroll\\.icsdelivery\\.com/\" to=\"https://enroll.icsdelivery.com/\"/></ruleset>", "<ruleset name=\"icstars.com\" f=\"Icstars.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IdQQimg.com\" f=\"IdQQimg.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"id Software\" f=\"IdSoftware.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Idea Fit.com (partial)\" f=\"Idea_Fit.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?ideafit\\.com/+(?!favicon\\.ico|files/|misc/|sites/)\"/><rule from=\"^http://(?:cdn[1-6]?\\.|www\\.)?ideafit\\.com/\" to=\"https://www.ideafit.com/\"/><rule from=\"^http://api\\.ideafit\\.com/\" to=\"https://api.ideafit.com/\"/></ruleset>", "<ruleset name=\"Idea Stations.org (partial)\" default_off=\"failed ruleset test\" f=\"Idea_Stations.org.xml\"><exclusion pattern=\"^http://ideastations\\.org/+(?!misc/|sites/)\"/><rule from=\"^http://cdn\\.ideastations\\.org\\.s3\\.amazonaws\\.com/\" to=\"https://s3.amazonaws.com/cdn.ideastations.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Idea Storm.com\" f=\"Idea_Storm.com.xml\"><rule from=\"^http://(?:www\\.)?ideastorm\\.com/\" to=\"https://dellideas.secure.force.com/\"/></ruleset>", "<ruleset name=\"Idealo.com (partial)\" f=\"Idealo.com.xml\"><securecookie host=\"^business\\.idealo\\.com$\" name=\"\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ideas on board.com\" default_off=\"self-signed\" f=\"Ideas_on_board.com.xml\"><rule from=\"^http://(?:www\\.)?ideasonboard\\.com/\" to=\"https://ideasonboard.com/\"/></ruleset>", "<ruleset name=\"Ideel.com (partial)\" default_off=\"failed ruleset test\" f=\"Ideel.com.xml\"><exclusion pattern=\"^http://www\\.ideel\\.com/+(?!favicon\\.ico|login(?:$|\\?))\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"idefi\" default_off=\"failed ruleset test\" f=\"Idefi.xml\"><securecookie host=\"^(?:www)?\\.idefimusic.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Idefix\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Idefix.xml\"><securecookie host=\"^www\\.idefix\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?idefix\\.com/\" to=\"https://www.idefix.com/\"/></ruleset>", "<ruleset name=\"IdenTrust.com\" f=\"IdenTrust.com.xml\"><rule from=\"^http://identrust\\.com/\" to=\"https://www.identrust.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IdenTrustSSL.com\" f=\"IdenTrustSSL.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Identica\" default_off=\"failed ruleset test\" f=\"Identica.xml\"><exclusion pattern=\"^http://identi\\.ca/main/openid\"/><rule from=\"^http://(?:www\\.)?identi\\.ca/\" to=\"https://identi.ca/\"/><rule from=\"^http://files\\.status\\.net/\" to=\"https://files.status.net/\"/><rule from=\"^http://(meteor\\d+\\.identi\\.ca)/\" to=\"https://$1/\"/><rule from=\"^http://avatar\\.identi\\.ca/\" to=\"https://avatar3.status.net/i/identica/\"/><securecookie host=\"^identi\\.ca$\" name=\".*\"/></ruleset>", "<ruleset name=\"Identity Stronghold\" platform=\"mixedcontent\" f=\"Identity-Stronghold.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IdentityTheft\" default_off=\"failed ruleset test\" f=\"IdentityTheft.xml\"><rule from=\"^http://(?:www\\.)?identitytheft\\.org\\.uk/\" to=\"https://www.identitytheft.org.uk/\"/></ruleset>", "<ruleset name=\"Identity Workshop.eu\" default_off=\"failed ruleset test\" f=\"Identity_Workshop.eu.xml\"><securecookie host=\"^(?:www\\.)?identityworkshop\\.eu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Idenyt.dk\" default_off=\"CN mismatch\" f=\"Idenyt.dk.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IdeoClick.com\" default_off=\"failed ruleset test\" f=\"IdeoClick.com.xml\"><securecookie host=\"^(?:www\\.)?ideoclick\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ideone.com\" default_off=\"failed ruleset test\" f=\"Ideone.com.xml\"><securecookie host=\"^(?:www\\.)?ideone\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Idevelop.ro\" f=\"Idevelop.ro.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Idg.de\" f=\"Idg.de.xml\"><rule from=\"^http://adserver\\.idg\\.de/\" to=\"https://adserver.idg.de/\"/></ruleset>", "<ruleset name=\"Idris-lang.org\" f=\"Idris-lang.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iesnare.com\" f=\"Iesnare.com.xml\"><securecookie host=\"^\\.\" name=\"^token$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ifortuna.sk\" f=\"Ifortuna.sk.xml\"><rule from=\"^http://(?:www\\.)?ifortuna\\.sk/\" to=\"https://www.ifortuna.sk/\"/></ruleset>", "<ruleset name=\"igHome.com\" f=\"IgHome.com.xml\"><securecookie host=\"^(?:rss|www)\\.ighome\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ighome\\.com/\" to=\"https://www.ighome.com/\"/><rule from=\"^http://rss\\.ighome\\.com/\" to=\"https://rss.ighome.com/\"/></ruleset>", "<ruleset name=\"igalia.com (self-signed)\" default_off=\"expired, self-signed\" f=\"Igalia-self-signed.xml\"><exclusion pattern=\"^http://www\\.igalia\\.com/(?!typo3(?:conf|temp)/)\"/><securecookie host=\"^blogs\\.igalia\\.com$\" name=\".*\"/><rule from=\"^http://(blogs|www)\\.igalia\\.com/\" to=\"https://$1.igalia.com/\"/></ruleset>", "<ruleset name=\"Igalia (partial)\" default_off=\"failed ruleset test\" f=\"Igalia.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"igcdn.com\" default_off=\"failed ruleset test\" f=\"Igcdn.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ignite Realtime.org\" f=\"Ignite_Realtime.org.xml\"><securecookie host=\"^(?:community\\.|www\\.)?igniterealtime\\.org$\" name=\".+\"/><rule from=\"^http://(community\\.|www\\.)?igniterealtime\\.org/\" to=\"https://$1igniterealtime.org/\"/><rule from=\"^http://issues\\.igniterealtime\\.org/+\" to=\"https://igniterealtime.org/issues/\"/></ruleset>", "<ruleset name=\"IgnitionDeck\" f=\"IgnitionDeck.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IGNOU.ac.in\" f=\"Ignou.ac.in.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Igolder.com\" f=\"Igolder.com.xml\"><rule from=\"^http://(?:www\\.)?igolder\\.com/\" to=\"https://www.igolder.com/\"/></ruleset>", "<ruleset name=\"igowild.com\" default_off=\"failed ruleset test\" f=\"Igowild.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ihug (partial)\" default_off=\"expired\" f=\"Ihug.xml\"><rule from=\"^http://homepages\\.ihug\\.co\\.nz/\" to=\"https://homepages.ihug.co.nz/\"/></ruleset>", "<ruleset name=\"iiBuy.com.au\" f=\"IiBuy.com.au.xml\"><securecookie host=\"^\\.?www\\.iibuy\\.com\\.au$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iiNet.net.au (partial)\" f=\"IiNet.net.au.xml\"><securecookie host=\"^mail\\.iinet\\.net\\.au$\" name=\"^atmail6$\"/><rule from=\"^http://((?:hostedmail|iihelp|mail|toolbox3?|www)\\.)?iinet\\.net\\.au/\" to=\"https://$1iinet.net.au/\"/><rule from=\"^http://hostedwebmail\\.iinet\\.net\\.au/$\" to=\"https://hostedmail.iinet.net.au/\"/></ruleset>", "<ruleset name=\"Ikea.com (partial)\" f=\"Ikea.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?ikea\\.com/(?!favicon\\.ico|img_dot_com/|ms/(?:css|img|js)/)\"/><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ikea\\.com/\" to=\"https://secure.ikea.com/\"/><rule from=\"^http://metrics\\.ikea\\.com/\" to=\"https://ikea-com.122.2o7.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ikgalekkerslapen.nl\" f=\"Ikgalekkerslapen.nl.xml\"><securecookie host=\"^www\\.ikgalekkerslapen\\.nl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Iki.fi\" default_off=\"failed ruleset test\" f=\"Iki.fi.xml\"><rule from=\"^http://(?:www\\.)?iki\\.fi/\" to=\"https://www.iki.fi/\"/><rule from=\"^http://ikiwiki\\.iki\\.fi/\" to=\"https://ikiwiki.iki.fi/\"/></ruleset>", "<ruleset name=\"ikiwiki.info\" f=\"Ikiwiki.info.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ikoula.com\" default_off=\"failed ruleset test\" f=\"Ikoula.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Iljmp.com\" default_off=\"failed ruleset test\" f=\"Iljmp.com.xml\"><securecookie host=\"(?:.*\\.)?iljmp\\.com$\" name=\".+\"/><rule from=\"^http://([\\w-]+\\.)?iljmp\\.com/\" to=\"https://$1iljmp.com/\"/></ruleset>", "<ruleset name=\"Illinois Department of Financial & Professional Regulation\" f=\"Illinois_Department_of_Financial_and_Professional_Regulation.xml\"><securecookie host=\"^www\\.idfpr\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?idfpr\\.com/\" to=\"https://www.idfpr.com/\"/></ruleset>", "<ruleset name=\"Illinois Law Review.org (false MCB)\" platform=\"mixedcontent\" f=\"Illinois_Law_Review.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Illinois Tech.org\" f=\"Illinois_Tech.org.xml\"><securecookie host=\"^www\\.illinoistech\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Illumina.com (partial)\" f=\"Illumina.com.xml\"><securecookie host=\"^my\\.illumina\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Illuminated Pots\" f=\"Illuminated_Pots.xml\"><securecookie host=\"^(?:\\.?www)?\\.illuminated-pots\\.com$\" name=\".+\"/><rule from=\"^http://www\\.illuminated-pots\\.com/\" to=\"https://www.illuminated-pots.com/\"/></ruleset>", "<ruleset name=\"illumos.org (partial)\" f=\"Illumos.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ilmasto-opas\" f=\"Ilmasto-opas.xml\"><securecookie host=\"^ilmasto-opas\\.fi$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"igvita.com (partial)\" f=\"Ilya_Grigorik.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"I'm a Bad Idea (partial)\" default_off=\"mismatched\" f=\"Im-a-Bad-Idea.xml\"><rule from=\"^http://vanessatorrivilla\\.com/\" to=\"https://www.vanessatorrivilla.com/\"/><rule from=\"^http://www\\.vanessatorrivilla\\.com/(display/|favicon\\.ico|storage/|universal/)\" to=\"https://www.vanessatorrivilla.com/$1\"/></ruleset>", "<ruleset name=\"Imag.fr (partial)\" f=\"Imag.fr.xml\"><exclusion pattern=\"^http://cmp\\.imag\\.fr/+(?!_img/|\\w+\\.jpg|favicon\\.ico|style\\.css)\"/><rule from=\"^http://msiam\\.imag\\.fr/\" to=\"https://iam.imag.fr/\"/><rule from=\"^http://(c-vpn-pub|cmp|forge|iam|mi2s|trombi-timc)\\.imag\\.fr/\" to=\"https://$1.imag.fr/\"/></ruleset>", "<ruleset name=\"Image-Maps.com\" f=\"Image-Maps.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ImageComics.com\" f=\"ImageComics.com.xml\"><securecookie host=\"^(?:www\\.)?imagecomics\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ImageMagick.org (partial)\" f=\"ImageMagick.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ImageOptim.com\" f=\"ImageOptim.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ImageRights.com\" f=\"ImageRights.com.xml\"><securecookie host=\"^(?:www\\.)?imagerights\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ImageShack\" f=\"ImageShack.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://(www\\.|api\\.|blog\\.)?imageshack\\.com/\" to=\"https://$1imageshack.com/\"/><rule from=\"^http://(www\\.|a\\.|imagizer\\.|post\\.)?imageshack\\.us/\" to=\"https://$1imageshack.us/\"/><rule from=\"^http://img(\\d+)\\.imageshack\\.us/\" to=\"https://img$1.imageshack.us/\"/></ruleset>", "<ruleset name=\"Imageforensic.org\" f=\"Imageforensic.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"images-CreateSpace.com\" f=\"Images-CreateSpace.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"imagesBN.com\" f=\"ImagesBN.com.xml\"><rule from=\"^http://s?img([12])\\.imagesbn\\.com/\" to=\"https://simg$1.imagesbn.com/\"/><rule from=\"^http://img3\\.imagesbn\\.com/\" to=\"https://img3.imagesbn.com/\"/></ruleset>", "<ruleset name=\"Imagestash\" default_off=\"failed ruleset test\" f=\"Imagestash.xml\"><securecookie host=\"^(?:www\\.)?imagestash\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Imation.com (partial)\" default_off=\"failed ruleset test\" f=\"Imation.com.xml\"><securecookie host=\"^(?:support\\.|www\\.)?imation\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"imeem.com\" f=\"Imeem.com.xml\"><rule from=\"^http://(?:www\\.)?imeem\\.com/\" to=\"https://www.myspace.com/music/\"/></ruleset>", "<ruleset name=\"Imensa.de\" f=\"Imensa.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Imerys.com\" default_off=\"failed ruleset test\" f=\"Imerys.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"imfimg.com\" f=\"Imfimg.com.xml\"><securecookie host=\"^(?:w*\\.)?imfimg\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"img.com.au (partial)\" f=\"Img.com.ua.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ImgDino\" default_off=\"expired, mismatched, self-signed\" f=\"ImgDino.xml\"><rule from=\"^http://(?:www\\.)?imgdino\\.com/\" to=\"https://imgdino.com/\"/></ruleset>", "<ruleset name=\"imgJam.com (partial)\" f=\"ImgJam.com.xml\"><rule from=\"^http://www\\.imgjam\\.com/\" to=\"https://imgjam.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"imgUOL.com (partial)\" default_off=\"404\" f=\"ImgUOL.com.xml\"><exclusion pattern=\"^http://imguol\\.com/(?:\\d{4}/\\d\\d/\\d\\d/|blogs/|c/|cursos-online/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"imgbox.com\" f=\"Imgbox.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Imgflip.com\" f=\"Imgflip.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?imgflip\\.com$\" name=\".+\"/><rule from=\"^http://((?:i|s|www)\\.)?imgflip\\.com/\" to=\"https://$1imgflip.com/\"/></ruleset>", "<ruleset name=\"imgix.net\" f=\"Imgix.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"imgrap.com (partial)\" f=\"Imgrap.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Imgrush.com\" default_off=\"failed ruleset test\" f=\"Imgrush.com.xml\"><securecookie host=\"^\\.imgrush\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"imgs Mail.ru (partial)\" f=\"Imgs_Mail.ru.xml\"><rule from=\"^http://(auto|cars|filapp1|go\\d*|hi-tech|img\\d*|limg|minigames|my\\d+|proxy|\\w+\\.radar)\\.imgsmail\\.ru/\" to=\"https://$1.imgsmail.ru/\"/></ruleset>", "<ruleset name=\"Imgur.com\" f=\"Imgur.xml\"><rule from=\"^http://img\\.imgur\\.com/\" to=\"https://i.imgur.com/\"/><rule from=\"^http://status\\.imgur\\.com/\" to=\"https://imgur.statuspage.io/\"/><rule from=\"^http://store\\.imgur\\.com/\" to=\"https://imgur-store.myshopify.com/\"/><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Imhd.sk\" f=\"Imhd.sk.xml\"><rule from=\"^http://m\\.(ba|bb|hc|ke|lm|nr|nz|pb|pd|po|rk|se|si|sn|tatry|tn|transport|tt|za|zv)\\.imhd\\.sk/\" to=\"https://m.imhd.sk/$1/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"imiclk.com\" f=\"Imiclk.com.xml\"><securecookie host=\"^\\.imiclk\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"imine.co\" f=\"Imine.co.xml\"><securecookie host=\"^\\.?imine\\.co$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Iminent.com (partial)\" f=\"Iminent.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ImmobilienScout24\" default_off=\"failed ruleset test\" f=\"ImmobilienScout24.xml\"><rule from=\"^http://(www\\.)?immobilienscout24\\.de/\" to=\"https://www.immobilienscout24.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"immoscout24.ch (partial)\" f=\"Immoscout24.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Immunicity.org\" f=\"Immunicity.org.xml\"><rule from=\"^http://(?:www\\.)?immunicity\\.org/\" to=\"https://immunicity.org/\"/></ruleset>", "<ruleset name=\"Immunityinc.com\" default_off=\"missing certificate chain\" f=\"Immunityinc.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"imo.im\" f=\"Imo.im.xml\"><securecookie host=\"^(?:www\\.)?imo\\.im$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"impAct (partial)\" f=\"ImpAct.xml\"><securecookie host=\"^(?:\\.dc|\\.?[my]\\.one)?\\.impact-ad\\.jp$\" name=\".+\"/><rule from=\"^http://as\\.(dc|ief|iy)\\.impact-ad\\.jp/\" to=\"https://as.$1.impact-ad.jp/\"/><rule from=\"^http://(img\\.ak|[my]\\.one)\\.impact-ad\\.jp/\" to=\"https://$1.impact-ad.jp/\"/></ruleset>", "<ruleset name=\"ImpSec.org\" default_off=\"expired\" f=\"ImpSec.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Impact Radius.com\" f=\"Impact-Radius.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://adn\\.impactradius\\.com/\" to=\"https://dyfw24whmn0ln.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Impact Software Company.com\" f=\"Impact_Software_Company.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Impactstory.org\" default_off=\"failed ruleset test\" f=\"Impactstory.org.xml\"><securecookie host=\"^.*\\.impactstory\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Imperative Ideas.com (partial)\" f=\"Imperative_Ideas.com.xml\"><rule from=\"^http://(www\\.)?imperativeideas\\.com/(?=favicon\\.ico|wp-content/|wp-includes/)\" to=\"https://$1imperativeideas.com/\"/></ruleset>", "<ruleset name=\"Imperial College London Union\" f=\"Imperial-College-London-Union.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Imperial College London (partial)\" default_off=\"failed ruleset test\" f=\"Imperial-College-London.xml\"><rule from=\"^http://www\\.doc\\.ic\\.ac\\.uk/\" to=\"https://www.doc.ic.ac.uk/\"/><rule from=\"^http://(?:www(3)?\\.)?imperial\\.ac\\.uk/\" to=\"https://www$1.imperial.ac.uk/\"/></ruleset>", "<ruleset name=\"ImperialViolet.org\" default_off=\"failed ruleset test\" f=\"ImperialViolet.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Impfen-info.de\" f=\"Impfen-info.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Improper Bostonian\" default_off=\"mismatch, self-signed\" f=\"Improper-Bostonian.xml\"><securecookie host=\"^www\\.improper\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?improper\\.com/\" to=\"https://www.improper.com/\"/></ruleset>", "<ruleset name=\"Improvely.com\" f=\"Improvely.com.xml\"><securecookie host=\"^www\\.improvely\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Impulse.net\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Impulse.net.xml\"><securecookie host=\"^(?:webmail|www)?\\.impulse\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"impulsedriven.com\" f=\"Impulsedriven.com.xml\"><securecookie host=\"^(?:www\\.)?impulsedriven\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IMR Worldwide.com\" f=\"ImrWorldwide.com.xml\"><exclusion pattern=\"^http://(?!secure-\\w+\\.imrworldwide\\.com/)\"/><securecookie host=\"^\\.imrworldwide\\.com$\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"in-Disguise.com\" default_off=\"failed ruleset test\" f=\"In-Disguise.com.xml\"><securecookie host=\"^(?:my)?\\.(?:in-disguise|vpn-income)\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"In-Q-Tel\" default_off=\"failed ruleset test\" f=\"In-Q-Tel.xml\"><rule from=\"^http://(?:www\\.)?iqt\\.org/\" to=\"https://www.iqt.org/\"/></ruleset>", "<ruleset name=\"In Stat.com\" default_off=\"refused\" f=\"In-Stat.xml\"><securecookie host=\"^www\\.instat\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?instat\\.com/\" to=\"https://www.instat.com/\"/></ruleset>", "<ruleset name=\"In-The-Sky.org\" f=\"In-The-Sky.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"in2code.de\" f=\"In2code.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"inCloak.com\" f=\"InCloak.com.xml\"><securecookie host=\"^incloak\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?incloak\\.com/\" to=\"https://incloak.com/\"/></ruleset>", "<ruleset name=\"inCloak.es\" default_off=\"mismatched\" f=\"InCloak.es.xml\"><rule from=\"^http://(?:www\\.)?incloak\\.es/\" to=\"https://incloak.es/\"/></ruleset>", "<ruleset name=\"InCommon\" default_off=\"failed ruleset test\" f=\"InCommon.xml\"><securecookie host=\"^\\.incommonfederation\\.org$\" name=\".+\"/><rule from=\"^http://(www\\.)?incommon\\.org/\" to=\"https://$1incommon.org/\"/><rule from=\"^http://(?:www\\.)?incommonfederation\\.org/\" to=\"https://incommonfederation.org/\"/><rule from=\"^http://wayf2?\\.incommonfederation\\.org/\" to=\"https://wayf.incommonfederation.org/\"/></ruleset>", "<ruleset name=\"InLinkz.com (partial)\" f=\"InLinkz.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"InMotion Hosting.com\" f=\"InMotion-Hosting.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://img0\\d\\.inmotionhosting\\.com/\" to=\"https://secure1.inmotionhosting.com/\"/><rule from=\"^http://((?:ad-srv1|(?:www\\.)?secure\\d{1,3}|www)\\.)?inmotionhosting\\.com/\" to=\"https://$1inmotionhosting.com/\"/></ruleset>", "<ruleset name=\"inSided (partial)\" default_off=\"failed ruleset test\" f=\"InSided.xml\"><rule from=\"^http://static\\.insided\\.nl/\" to=\"https://static.insided.nl/\"/></ruleset>", "<ruleset name=\"InTechnology.co.uk\" default_off=\"handshake failure\" f=\"InTechnology.co.uk.xml\"><securecookie host=\"^(?:www\\.)?intechnology\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Inapub.co.uk\" f=\"Inapub.co.uk.xml\"><securecookie host=\"^(?:w*\\.)?inapub\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Inbenta.com\" f=\"Inbenta.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Inbox.lv\" f=\"Inbox.lv.xml\"><securecookie host=\"^(?:polls-framed|shop|travel)\\.inbox\\.lv$\" name=\".+\"/><rule from=\"^http://((?:ads|b|dating|fun|games|help|labiedarbi|login|mail|meteo|money|polls|polls-framed|pricelist|purchase|search|search-framed|shop|smart|travel|www)\\.)?inbox\\.lv/\" to=\"https://$1inbox.lv/\"/></ruleset>", "<ruleset name=\"InboxApp.com\" default_off=\"failed ruleset test\" f=\"InboxApp.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"inburke.com\" f=\"Inburke.com.xml\"><rule from=\"^http://(?:www\\.)?(?:kev\\.)?inburke\\.com/\" to=\"https://kev.inburke.com/\"/></ruleset>", "<ruleset name=\"Inc.com (mixed content)\" platform=\"mixedcontent\" f=\"Inc.com-falsemixed.xml\"><rule from=\"^http://(?:www\\.)?inc\\.com/\" to=\"https://www.inc.com/\"/><rule from=\"^http://(conference|mediakit)\\.inc\\.com/\" to=\"https://$1.inc.com/\"/></ruleset>", "<ruleset name=\"Inc.com (partial)\" f=\"Inc.com.xml\"><exclusion pattern=\"^http://(?:conference|mediakit)\\.inc\\.com/+(?!wp-content/|wp-includes/)\"/><exclusion pattern=\"^http://(?:www\\.)?inc\\.com/+(?!favicon\\.ico|lib/|views/css/)\"/><securecookie host=\"^(?:magazine|\\.subscriptions)\\.inc\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?inc\\.com/\" to=\"https://www.inc.com/\"/><rule from=\"^http://(conference|mediakit|subscriptions|magazine)\\.inc\\.com/\" to=\"https://$1.inc.com/\"/></ruleset>", "<ruleset name=\"Incapsula.com\" f=\"Incapsula.xml\"><securecookie host=\"^(?:content|my|www)?\\.incapsula\\.com$\" name=\".+\"/><rule from=\"^http://support\\.incapsula\\.com/\" to=\"https://incapsula.zendesk.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Inch-ci.org\" f=\"Inch-ci.org.xml\"><securecookie host=\"^inch-ci\\.org\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Incisive Media\" default_off=\"failed ruleset test\" f=\"Incisive_Media.xml\"><securecookie host=\"^incmai\\.incisivemedia\\.com$\" name=\".+\"/><rule from=\"^http://(?:secure\\.|www\\.)?incisivemedia\\.com/\" to=\"https://secure.incisivemedia.com/\"/><rule from=\"^http://incmai\\.incisivemedia\\.com/\" to=\"https://incmai.incisivemedia.com/\"/><rule from=\"^http://db\\.riskwaters\\.com/global/\" to=\"https://secure.incisivemedia.com/global/\"/></ruleset>", "<ruleset name=\"incoin.io (partial)\" default_off=\"failed ruleset test\" f=\"Incoin.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"inconshreveable.com (partial)\" f=\"Inconshreveable.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ind.ie\" default_off=\"failed ruleset test\" f=\"Ind.ie.xml\"><securecookie host=\"^(?:pulse-forum|source)\\.ind\\.ie$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Indaba Music.com (false MCB)\" platform=\"mixedcontent\" f=\"Indaba_Music.com.xml\"><securecookie host=\"^\\.indabamusic\\.com$\" name=\".+\"/><rule from=\"^http://((?:beta|notifications|www)\\.)?indabamusic\\.com/\" to=\"https://$1indabamusic.com/\"/></ruleset>", "<ruleset name=\"indacoin.com\" f=\"Indacoin.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"indapass.hu\" f=\"Indapass.hu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Indeed.com (partial)\" f=\"Indeed.xml\"><securecookie host=\"^\\.\" name=\"^CTK$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Independent Centre for Privacy Protection Schleswig-Holstein\" f=\"Independent-Centre-for-Privacy-Protection-Schleswig-Holstein.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Independent.co.uk\" f=\"Independent.co.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Independent.gov.uk (partial)\" f=\"Independent.gov.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Independent Mail.com (partial)\" f=\"Independent_Mail.com.xml\"><securecookie host=\"^(?:login)?\\.independentmail\\.com$\" name=\".+\"/><rule from=\"^http://independentmail\\.com/\" to=\"https://www.independentmail.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Independent News (partial)\" f=\"Independent_News.xml\"><rule from=\"^http://(?:www\\.)?the-independent-news\\.com/(misc/|sites/|user(?:$|\\?|/))\" to=\"https://www.the-independent-news.com/$1\"/></ruleset>", "<ruleset name=\"Independent Voter Network\" f=\"Independent_Voter_Network.xml\"><exclusion pattern=\"^http://(?:www\\.)?ivn\\.us/(?:ca-election-center/wp-(?:content/plugins/(?:buddypress/bp-core/css|jquery-colorbox/themes)|includes/css)|wp-content/themes/ivn)/\"/><rule from=\"^http://(?:www\\.)?ivn\\.us/([\\w\\-]+/)?(files|wp-content|wp-includes)/\" to=\"https://i0.wp.com/ivn.us/$1$2/\"/><rule from=\"^http://cdn\\.ivn\\.us/\" to=\"https://d1tu8ib6d01hwk.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Indepnet.net (partial)\" default_off=\"failed ruleset test\" f=\"Indepnet.net.xml\"><securecookie host=\"^forge\\.indepnet\\.net$\" name=\".+\"/><rule from=\"^http://forge\\.indepnet\\.net/\" to=\"https://forge.indepnet.net/\"/></ruleset>", "<ruleset name=\"Index on Censorship.org\" default_off=\"failed ruleset test\" f=\"Index_on_Censorship.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"India.com (partial)\" default_off=\"mismatched\" f=\"India.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"India.gov.in\" f=\"India.gov.in.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IndiaMART (partial)\" f=\"IndiaMART.xml\"><rule from=\"^http://1\\.imgimg\\.com/\" to=\"https://d2y6cbvg1xh035.cloudfront.net/\"/><rule from=\"^http://2\\.imimg\\.com/\" to=\"https://d1raip7zazff6e.cloudfront.net/\"/><rule from=\"^http://3\\.imimg\\.com/\" to=\"https://dypmusfs8hvdw.cloudfront.net/\"/><rule from=\"^http://4\\.imimg\\.com/\" to=\"https://d3p8pcjf51nlqw.cloudfront.net/\"/><rule from=\"^http://im\\.gifbt\\.com/\" to=\"https://d1wd2icune084.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Indian Express.com (partial)\" f=\"Indian_Express.com.xml\"><rule from=\"^http://images\\.indianexpress\\.com/\" to=\"https://indianexpressonline.files.wordpress.com/\"/></ruleset>", "<ruleset name=\"IU.edu (partial)\" default_off=\"failed ruleset test\" f=\"Indiana-University.xml\"><exclusion pattern=\"^http://(?:www\\.)?iu\\.edu/(?!css/|img/|[\\w/-]+/_image/)\"/><exclusion pattern=\"^http://viewpoints\\.iu\\.edu/+(?!wp-content/)\"/><securecookie host=\"^\\w.*\\.iu\\.edu$\" name=\".\"/><securecookie host=\"^\\.(?:cloudtools\\.access|internal\\.pti)\\.iu\\.edu$\" name=\".\"/><rule from=\"^http://osl\\.iu\\.edu/\" to=\"https://www.osl.iu.edu/\"/><rule from=\"^http://www\\.pti\\.iu\\.edu/\" to=\"https://pti.iu.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Indiana.edu (partial)\" f=\"Indiana.edu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Indiana State University (partial)\" f=\"Indiana_State_University.xml\"><exclusion pattern=\"^http://(?:www\\.)?indstate\\.edu/(?!css/|favicon\\.ico|images/|js/)\"/><securecookie host=\"^isuportal\\.indstate\\.edu$\" name=\".+\"/><rule from=\"^http://((?:isuportal|www1?)\\.)?indstate\\.edu/\" to=\"https://$1indstate.edu/\"/></ruleset>", "<ruleset name=\"Indianapolis Star\" default_off=\"mismatched\" f=\"Indianapolis_Star.xml\"><securecookie host=\"^www\\.indystar\\.com$\" name=\".+\"/><rule from=\"^http://(?:cmsing\\.|www\\.)?indystar\\.com/\" to=\"https://www.indystar.com/\"/></ruleset>", "<ruleset name=\"IndieMerch (partial)\" f=\"IndieMerch.xml\"><securecookie host=\"^.+\\.indiemerch\\.com$\" name=\".+\"/><rule from=\"^http://indiemerch\\.com/\" to=\"https://www.indiemerch.com/\"/><rule from=\"^http://(cdn|pad|www)\\.indiemerch\\.com/\" to=\"https://$1.indiemerch.com/\"/></ruleset>", "<ruleset name=\"IndieMerchandising\" f=\"IndieMerchandising.xml\"><securecookie host=\"^(?:www\\.)?indiemerchandising\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IndieMerchstore\" f=\"IndieMerchstore.xml\"><securecookie host=\"^www\\.indiemerchstore\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?indiemerchstore\\.com/\" to=\"https://www.indiemerchstore.com/\"/></ruleset>", "<ruleset name=\"IndieWeb\" f=\"IndieWeb.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Indiegala\" f=\"Indiegala.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Indiegogo (partial)\" f=\"Indiegogo.xml\"><securecookie host=\"^\\.indiegogo\\.com$\" name=\"^(?:optimizely\\w+|__utm\\w)$\"/><rule from=\"^http://igg\\.me/\" to=\"https://www.indiegogo.com/\"/><rule from=\"^http://g(\\d)\\.iggcdn\\.com/\" to=\"https://g$1.iggcdn.com/\"/><rule from=\"^http://((?:images|web\\d|www)\\.)?indiegogo\\.com/\" to=\"https://$1indiegogo.com/\"/></ruleset>", "<ruleset name=\"Induction Solutions.com (false MCB)\" platform=\"mixedcontent\" f=\"Induction_Solutions.com-falsemixed.xml\"><securecookie host=\"^(?:w*\\.)?inductionsolutions\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?inductionsolutions\\.com/(?!favicon\\.ico|my-account(?:$|[?/])|wp-content/|wp-includes/)\" to=\"https://$1inductionsolutions.com/\"/></ruleset>", "<ruleset name=\"Induction Solutions.com (partial)\" f=\"Induction_Solutions.com.xml\"><rule from=\"^http://(www\\.)?inductionsolutions\\.com/(?=favicon\\.ico|my-account(?:$|[?/])|wp-content/|wp-includes/)\" to=\"https://$1inductionsolutions.com/\"/></ruleset>", "<ruleset name=\"IndusGuard (partial)\" f=\"IndusGuard.xml\"><securecookie host=\"^soc\\.indusguard\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Industry Botnet Group.org\" default_off=\"refused\" f=\"Industry-Botnet-Group.xml\"><securecookie host=\"^(?:www\\.)?industrybotnetgroup\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Industry Mailout.com (partial)\" default_off=\"failed ruleset test\" f=\"Industry_Mailout.com.xml\"><securecookie host=\"^industrymailout\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"industrybrains.com\" f=\"Industrybrains.com.xml\"><securecookie host=\"^\\.industrybrains\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Indy.im\" f=\"Indy.im.xml\"><securecookie host=\"^indy\\.im$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IndyReader.org\" f=\"IndyReader.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Indybay.org\" f=\"Indybay.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Indymedia.nl\" f=\"Indymedia.nl.xml\"><exclusion pattern=\"^http://irc\\.indymedia\\.nl/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Indymedia.org.uk (partial)\" f=\"Indymedia.org.uk.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Indymedia.org (partial)\" default_off=\"failed ruleset test\" f=\"Indymedia.xml\"><exclusion pattern=\"http://(?:[^./]+\\.){2,}(?:belgium|brussels|bruxelles|bxl|grenoble|nantes)\\.indymedia\\.org/\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.belgium\\.indymedia\\.org/\" to=\"https://belgium.indymedia.org/\"/><rule from=\"^http://netherlands\\.indymedia\\.org/\" to=\"https://www.indymedia.nl/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"InfNX.com\" f=\"InfNX.xml\"><rule from=\"^http://(idn|static)\\.infnx\\.com/\" to=\"https://s3.amazonaws.com/$1.infnx.com/\"/></ruleset>", "<ruleset name=\"Infamous\" default_off=\"refused\" f=\"Infamous.xml\"><securecookie host=\"^(?:w*\\.)?foreverinfamous\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Infektionsschutz.de\" f=\"Infektionsschutz.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Infile\" default_off=\"self-signed\" f=\"Infile.xml\"><securecookie host=\"^\\.infile\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?infile\\.com/\" to=\"https://infile.com/\"/></ruleset>", "<ruleset name=\"Infinet.com.au (false MCB)\" platform=\"mixedcontent\" f=\"Infinet.com.au-falsemixed.xml\"><securecookie host=\"^(?:w*\\.)?infinet\\.com\\.au$\" name=\".+\"/><rule from=\"^http://(www\\.)?infinet\\.com\\.au/(?!favicon\\.ico|wp-content/|wp-includes/)\" to=\"https://$1infinet.com.au/\"/></ruleset>", "<ruleset name=\"Infinet.com.au (partial)\" f=\"Infinet.com.au.xml\"><exclusion pattern=\"^http://(?:www\\.)?shop\\.infinet\\.com\\.au/+(?!epages/shop\\.sf/en_AU/\\?ObjectPath=/Shops/infinet&ViewAction=ViewRegistration|WebRoot/)\"/><exclusion pattern=\"^http://(?:www\\.)?infinet.com.au/(?!favicon\\.ico|wp-content/|wp-includes/)\"/><securecookie host=\"^support\\.infinet\\.com\\.au$\" name=\".+\"/><rule from=\"^http://(support\\.|www\\.(?:shop\\.)?)?infinet\\.com\\.au/\" to=\"https://$1infinet.com.au/\"/></ruleset>", "<ruleset name=\"InfinityDev.org\" f=\"InfinityDev.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Infinity Tracking (partial)\" f=\"Infinity_Tracking.xml\"><rule from=\"^http://portal\\.infinity-tracking\\.com/\" to=\"https://portal.infinity-tracking.com/\"/><rule from=\"^http://a(pi|ssets)\\.infinity-tracking\\.net/\" to=\"https://a$1.infinity-tracking.net/\"/></ruleset>", "<ruleset name=\"Infinow.net\" f=\"Infinow.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"InfluAds (partial)\" f=\"InfluAds.xml\"><securecookie host=\"^dashboard\\.influads\\.com$\" name=\".+\"/><rule from=\"^http://(dashboard|engine)\\.influads\\.com/\" to=\"https://$1.influads.com/\"/></ruleset>", "<ruleset name=\"Influencers Conference\" f=\"Influencers_Conference.xml\"><securecookie host=\"^\\.influencersconference\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"InfoJobs.net (partial)\" f=\"InfoJobs.net.xml\"><securecookie host=\"^citrix\\.infojobs\\.net$\" name=\".+\"/><rule from=\"^http://((?:citrix|formacion|m|media|nosotros|www)\\.)?infojobs\\.net/\" to=\"https://$1infojobs.net/\"/><rule from=\"^http://static1\\.infojobs\\.net/\" to=\"https://es-static0.infojobs.com/\"/></ruleset>", "<ruleset name=\"InfoQ (partial)\" f=\"InfoQ.xml\"><rule from=\"^http://(www\\.)?infoq\\.com/((?:br|cn|jp)/?$|resource/)\" to=\"https://$1infoq.com/$2\"/></ruleset>", "<ruleset name=\"InfoSec Industry.com\" f=\"InfoSec_Industry.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^(?:__cfduid|__qca|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"InfoToday.com (partial)\" f=\"InfoToday.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"InfoTomb.com\" default_off=\"failed ruleset test\" f=\"InfoTomb.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"InfoWar.com\" default_off=\"missing certificate chain\" f=\"InfoWar.com.xml\"><securecookie host=\"^(?:www)?\\.infowar\\.com$\" name=\".+\"/><rule from=\"^http://infowar\\.com/\" to=\"https://www.infowar.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Infoblox.com\" f=\"Infoblox.com.xml\"><securecookie host=\"^\\.\" name=\"^_ga\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Infobox.ru\" f=\"Infobox.ru.xml\"><securecookie host=\"^(?:helpdesk)?\\.infobox\\.ru$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Infocube (partial)\" default_off=\"failed ruleset test\" f=\"Infocube.xml\"><rule from=\"^http://(a[35]\\.|www\\.)?ogt\\.jp/\" to=\"https://$1ogt.jp/\"/></ruleset>", "<ruleset name=\"Infogr.am (partial)\" f=\"Infogr.am.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Infogroup (partial)\" default_off=\"failed ruleset test\" f=\"Infogroup.xml\"><exclusion pattern=\"^http://link\\.p0\\.com/u\\.d\\?\"/><securecookie host=\"^(?:.*\\.)?infousa\\.com$\" name=\".*\"/><securecookie host=\"^link\\.p0\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Infolinks (partial)\" f=\"Infolinks.xml\"><exclusion pattern=\"^http://ls\\.infolinks\\.com/(?!images/)\"/><securecookie host=\"^advertisers\\.infolinks\\.com$\" name=\".+\"/><rule from=\"^http://((?:advertisers|blog|c1|indnf|internalindn|ls|metrics|p1105|publishers|resources|www)\\.)?infolinks\\.com/\" to=\"https://$1infolinks.com/\"/></ruleset>", "<ruleset name=\"Infomaniak Network\" f=\"Infomaniak-Network.xml\"><securecookie host=\"^\\.infomaniak\\.ch$\" name=\".+\"/><securecookie host=\"^(?:.*\\.)?infomaniak\\.com$\" name=\".*\"/><rule from=\"^http://(str05\\.|www\\.)?infomaniak\\.ch/\" to=\"https://$1infomaniak.ch/\"/><rule from=\"^http://(\\w+\\.)?infomaniak\\.com/\" to=\"https://$1infomaniak.com/\"/></ruleset>", "<ruleset name=\"Infopackets (partial)\" default_off=\"Certificate mismatch\" f=\"Infopackets.xml\"><rule from=\"^http://(?:www\\.)?infopackets\\.com/\" to=\"https://infopackets.com/\"/><exclusion pattern=\"^http://(?:www\\.)?infopackets\\.com.*(?:/|\\.htm)$\"/></ruleset>", "<ruleset name=\"Infopáginas\" f=\"Infopaginas.xml\"><securecookie host=\"^w*\\.infopaginas\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?infopaginas\\.com/\" to=\"https://www.infopaginas.com/\"/></ruleset>", "<ruleset name=\"Infopankki.fi\" default_off=\"404\" f=\"Infopankki.xml\"><securecookie host=\"^www\\.infopankki\\.fi$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"InforME.org\" f=\"InforME.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"InformIT (partial)\" platform=\"mixedcontent\" f=\"InformIT.xml\"><rule from=\"^http://informit\\.com/\" to=\"https://www.informit.com/\"/><rule from=\"^http://(memberservices|www)\\.informit\\.com/\" to=\"https://$1.informit.com/\"/></ruleset>", "<ruleset name=\"Informa (partial)\" default_off=\"failed ruleset test\" f=\"Informa.xml\"><rule from=\"^http://(crcpress|garlandscience|routledgeweb|tandfonline|taylorandfrancis)\\.com/\" to=\"https://www.$1.com/\"/><rule from=\"^http://www\\.(crcpress|garlandscience|tandfonline)\\.com/(_?res|a4j/|action/(clickThrough|mobileDevicePairingLogin|registration|resources|show(Cart|Login))|content|(css|img)Jawr/|coverimage/|favicon|na101/|sda/|(templat|userimag)es/|twitter\\.html|[\\w\\-]+/\\w+_signin\\.jsf)\" to=\"https://www.$1.com/$2\"/><rule from=\"^http://(files|img|lib)\\.routledgeweb\\.com/\" to=\"https://$1.routledgeweb.com/\"/><rule from=\"^http://www\\.(routledgeweb|taylorandfrancis)\\.com/(account/|favicon)\" to=\"https://www.$1.com/$2\"/><rule from=\"^http://www\\.taylorandfrancis\\.com/(account/|favicon)\" to=\"https://www.taylorandfrancis.com/$1\"/></ruleset>", "<ruleset name=\"Informa Healthcare (problematic)\" default_off=\"mismatched\" f=\"Informa_Healthcare-problematic.xml\"><securecookie host=\"^comms\\.informahealthcare\\.com$\" name=\".+\"/><rule from=\"^http://co(mms|ntact)\\.informahealthcare\\.com/\" to=\"https://co$1.informahealthcare.com/\"/></ruleset>", "<ruleset name=\"Informa Healthcare (partial)\" default_off=\"failed ruleset test\" f=\"Informa_Healthcare.xml\"><exclusion pattern=\"^http://(?:www\\.)?informahealthcare\\.com/$\"/><securecookie host=\"^\\.(?:www\\.)?informahealthcarestore\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?informahealthcare\\.com/(action/(?:clickThrough|doLogin|registration)|cssJawr/|favicon\\.ico|na101/|sda/|templates/|userimages/)\" to=\"https://informahealthcare.com/$1\"/><rule from=\"^http://(www\\.)?informahealthcarestore\\.com/\" to=\"https://www.informahealthcarestore.com/\"/></ruleset>", "<ruleset name=\"Informaction.com (partial)\" f=\"Informaction.com.xml\"><securecookie host=\"^\\.forums\\.informaction\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"informatick.net (partial)\" default_off=\"failed ruleset test\" f=\"Informatick.net.xml\"><exclusion pattern=\"^http://www\\.informatick\\.net/+(?!images/|lib/)\"/><securecookie host=\"^paste\\.informatick\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Information.dk\" f=\"Information.dk.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"InformationWeek\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"InformationWeek.xml\"><securecookie host=\"^\\.\" name=\"^(?:_ga|s_v)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?byte\\.com/\" to=\"https://www.informationweek.com/\"/><rule from=\"^http://informationweek\\.com/\" to=\"https://www.informationweek.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"informationactivism.org\" f=\"Informationactivism.org.xml\"><securecookie host=\"^\\.archive\\.informationactivism\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Informer.com (partial)\" f=\"Informer.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Infosec Island (partial)\" f=\"Infosec-Island.xml\"><rule from=\"^http://(www\\.)?infosecisland\\.com/((?:ajax|css|images|js|sfCombine|system|uploads)/|favicon\\.ico|(?:login|register|suggestlink)\\.html)\" to=\"https://$1infosecisland.com/$2/\"/></ruleset>", "<ruleset name=\"Infoseek\" platform=\"mixedcontent\" f=\"Infoseek.co.jp.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Infospyware.com (partial)\" f=\"Infospyware.com.xml\"><rule from=\"^http://(?:www\\.)?infospyware\\.com/\" to=\"https://www.infospyware.com/\"/></ruleset>", "<ruleset name=\"Infowars.com (partial)\" f=\"Infowars.com.xml\"><exclusion pattern=\"^http://tv\\.infowars\\.com/+(?!amember(?:$|[?/]))\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"InfoWorld.com\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Infoworld.com.xml\"><securecookie host=\"^\\.infoworld\\.com$\" name=\"^(?:s_\\w+|__utm)\\w$\"/><rule from=\"^http://(?:www\\.)?infoworld\\.com/\" to=\"https://www.infoworld.com/\"/><rule from=\"^http://m\\.infoworld\\.com/(mobify/|static/)\" to=\"https://infoworld.mobify.com/$1\"/></ruleset>", "<ruleset name=\"Infra Fürth\" f=\"Infra-Furth.xml\"><rule from=\"^http://www\\.infra-fuerth\\.de/\" to=\"https://www.infra-fuerth.de/\"/></ruleset>", "<ruleset name=\"Infradead.org (partial)\" default_off=\"failed ruleset test\" f=\"Infradead.org.xml\"><securecookie host=\"^www\\.infradead\\.org$\" name=\".+\"/><securecookie host=\"^lists\\.infradead\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Infragard.net\" platform=\"mixedcontent\" f=\"Infragard.xml\"><rule from=\"^http://(?:www\\.)?infragard\\.net/\" to=\"https://www.infragard.net/\"/></ruleset>", "<ruleset name=\"Infrequently.org\" f=\"Infrequently.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Infused Systems (expired)\" default_off=\"expired\" f=\"Infused-Systems-mismatches.xml\"><rule from=\"^http://(?:www\\.)?infusedsystems\\.com/\" to=\"https://www.infusedsystems.com/\"/><rule from=\"^http://(?:cdn\\.infusionso|[ab]\\.ins)ft\\.com/\" to=\"https://a.insft.com/\"/></ruleset>", "<ruleset name=\"Infusionsoft (partial)\" platform=\"mixedcontent\" f=\"Infused-Systems.xml\"><exclusion pattern=\"^http://(?:help|kb|www)\\.customerhub\\.\"/><exclusion pattern=\"^http://(?:help(?:center)?|marketplace)\\.infusionsoft\\.\"/><securecookie host=\"^(?:.*\\.)?customerhub\\.net$\" name=\".*\"/><securecookie host=\"^(?:.*\\.)?infusionsoft\\.com$\" name=\".*\"/><rule from=\"^http://customerhub\\.net/$\" to=\"https://customerhub.net/\"/><rule from=\"^http://([\\w\\-]+)\\.customerhub\\.net/\" to=\"https://$1.customerhub.net/\"/><rule from=\"^http://(crm\\.|www\\.)?infusionsoft\\.com/\" to=\"https://$1infusionsoft.com/\"/></ruleset>", "<ruleset name=\"ING DIRECT\" platform=\"mixedcontent\" f=\"Ingdirect.es.xml\"><rule from=\"^http://(?:www\\.)?ingdirect\\.es/\" to=\"https://www.ingdirect.es/\"/></ruleset>", "<ruleset name=\"Ingenico.com (partial)\" f=\"Ingenico_Group.xml\"><securecookie host=\"^library\\.ingenico\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ingentaconnect (partial)\" f=\"Ingentaconnect.xml\"><rule from=\"^http://(www\\.)?ingentaconnect\\.com/(css|images|(?:journal|provider)-logos|session)/\" to=\"https://$1ingentaconnect.com/$2/\"/></ruleset>", "<ruleset name=\"Ingenuity Hosting\" f=\"Ingenuity_Hosting.xml\"><rule from=\"^http://(?:secure1\\.|www\\.)?ingenuity\\.net\\.au/\" to=\"https://secure1.ingenuity.net.au/\"/></ruleset>", "<ruleset name=\"Ingress\" f=\"Ingress.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"inhumanity.com\" f=\"Inhumanity.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Init7\" platform=\"cacert\" f=\"Init7.xml\"><rule from=\"^http://init7\\.net/\" to=\"https://www.init7.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"init Lab.org\" f=\"Init_Lab.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Initex.com\" f=\"Initex.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"inkFrog.com (expired)\" default_off=\"expired\" f=\"InkFrog.com-problematic.xml\"><rule from=\"^http://(img|thmb)\\.inkfrog\\.com/\" to=\"https://$1.inkfrog.com/\"/></ruleset>", "<ruleset name=\"inkFrog.com (partial)\" f=\"InkFrog.com.xml\"><securecookie host=\"^(?:www\\.)?inkfrog\\.com$\" name=\".+\"/><rule from=\"^http://imgs\\.inkfrog\\.com/\" to=\"https://d29h7ql7qnxkqx.cloudfront.net/\"/><rule from=\"^https?://thumbnails\\.inkfrog\\.com/\" to=\"https://d33oiwhbojapjx.cloudfront.net/\"/><rule from=\"^http://(www\\.)?inkfrog\\.com/\" to=\"https://$1inkfrog.com/\"/></ruleset>", "<ruleset name=\"Inkbunny\" f=\"Inkbunny.xml\"><securecookie host=\"^inkbunny\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?inkbunny\\.net/\" to=\"https://inkbunny.net/\"/></ruleset>", "<ruleset name=\"Inkscape.org (partial)\" f=\"Inkscape.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Innocence Project (partial)\" f=\"Innocence_Project.xml\"><securecookie host=\"^secure\\.innocenceproject\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Innometrics.com (partial)\" default_off=\"failed ruleset test\" f=\"Innometrics.com.xml\"><securecookie host=\"^customer\\.innometrics\\.com$\" name=\".+\"/><rule from=\"^http://customer\\.innometrics\\.com/\" to=\"https://customer.innometrics.com/\"/></ruleset>", "<ruleset name=\"Innovate UK.org (partial)\" f=\"Innovate_UK.org.xml\"><rule from=\"^http://(?:www\\.)?innovateuk\\.org/+([^?]*)(?:\\?.*)?\" to=\"https://www.gov.uk/government/organisations/innovate-uk$1\"/><rule from=\"^http://(connect|interact|login|projects|reports|vouchers)\\.innovateuk\\.org/\" to=\"https://$1.innovateuk.org/\"/></ruleset>", "<ruleset name=\"Innovation Interactive (partial)\" f=\"Innovation-Interactive.xml\"><securecookie host=\"^\\.netmng\\.com$\" name=\"^evo5$\"/><securecookie host=\"^[\\w-]+\\.netmng\\.com$\" name=\"^evo5_[\\w-]+$\"/><rule from=\"^http://([\\w-]+)\\.netmng\\.com/\" to=\"https://$1.netmng.com/\"/></ruleset>", "<ruleset name=\"Innovative Food Concepts (partial)\" f=\"Innovative_Food_Concepts.xml\"><rule from=\"^http://common\\.restaurantfurnitureresource\\.com/\" to=\"https://d19a6ww13xgzf3.cloudfront.net/\"/></ruleset>", "<ruleset name=\"InoReader.com\" f=\"InoReader.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Inphi\" default_off=\"expired, mismatch, self-signed\" f=\"Inphi.xml\"><securecookie host=\"^www\\.inphi\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?inphi\\.com/\" to=\"https://www.inphi.com/\"/></ruleset>", "<ruleset name=\"inpros.net\" default_off=\"self-signed\" f=\"Inpros.net.xml\"><securecookie host=\"^\\.?inpros\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?inpros\\.net/\" to=\"https://inpros.net/\"/></ruleset>", "<ruleset name=\"Inria.fr (partial)\" default_off=\"failed ruleset test\" f=\"Inria.fr.xml\"><securecookie host=\"^(?!\\.inria\\.fr$).\" name=\".\"/><rule from=\"^http://en\\.inria\\.fr/\" to=\"https://www.inria.fr/en/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Inrialpes.fr (partial)\" f=\"Inrialpes.fr.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Inschrijven.nl\" f=\"Inschrijven.xml\"><rule from=\"^http://(?:www\\.)?inschrijven\\.nl/\" to=\"https://www.inschrijven.nl/\"/></ruleset>", "<ruleset name=\"Insecure.ws\" f=\"Insecure.ws.xml\"><securecookie host=\"^www\\.insecure\\.ws$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Inside Higher Ed.com\" f=\"Inside-Higher-Ed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Inside.com\" f=\"Inside.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?inside\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Inside Illinois.info\" default_off=\"failed ruleset test\" f=\"Inside_Illinois.info.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Inside Science.org\" f=\"Inside_Science.xml\"><rule from=\"^http://insidescience\\.org/\" to=\"https://www.insidescience.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"insidecelebs.com\" f=\"Insidecelebs.com.xml\"><securecookie host=\"^\\.insidecelebs\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"insideygs.com\" default_off=\"failed ruleset test\" f=\"Insideygs.com.xml\"><securecookie host=\"^adintegration\\.insideygs\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Insight\" f=\"Insight.xml\"><securecookie host=\"^(?:.+\\.)?insight\\.com$\" name=\".*\"/><rule from=\"^http://insight\\.com/\" to=\"https://www.insight.com/\"/><rule from=\"^http://(www|uk)\\.insight\\.com/\" to=\"https://$1.insight.com/\"/><rule from=\"^http://(i|img|images|imagesqa)(\\d+)\\.insight\\.com/\" to=\"https://$1$2.insight.com/\"/></ruleset>", "<ruleset name=\"InsightExpress.com\" f=\"InsightExpress.com.xml\"><securecookie host=\"^(?:www\\.)?insightexpress\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"InsightExpressai.com\" default_off=\"failed ruleset test\" f=\"InsightExpressai.com.xml\"><securecookie host=\"^\\.insightexpressai\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Insinuator.net\" f=\"Insinuator.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://insinuator\\.net/\" to=\"https://www.insinuator.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Insnw.net\" f=\"Insnw.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Inspectlet\" default_off=\"failed ruleset test\" f=\"Inspectlet.com.xml\"><exclusion pattern=\"^http://blog\\.inspectlet\\.com/(?!favicon\\.ico|wp-content/|wp-includes/)\"/><rule from=\"^http:\" to=\"https:\"/><securecookie host=\"^(?:.*\\.)?inspectlet\\.com$\" name=\".+\"/></ruleset>", "<ruleset name=\"Inspiration Green\" f=\"Inspiration_Green.xml\"><securecookie host=\"^(?:www\\.)?inspirationgreen\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Inspire HEP.net\" f=\"Inspire_HEP.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Instacom Inc.com\" f=\"Instacom_Inc.com.xml\"><securecookie host=\"^\\.instacominc\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Instaemail.net\" f=\"Instaemail.net.xml\"><rule from=\"^http://cdn\\.instaemail\\.net/\" to=\"https://s3.amazonaws.com/cdn.instaemail.net/\"/></ruleset>", "<ruleset name=\"Instagr.am (partial)\" default_off=\"Needs ruleset tests\" f=\"Instagr.am.xml\"><rule from=\"^http://instagr\\.am/static/images/\" to=\"https://s3.amazonaws.com/instagram-static/images/\"/><rule from=\"^http://instagr\\.am/(?=p/|static/)\" to=\"https://instagram.com/\"/></ruleset>", "<ruleset name=\"Instagram.com (partial)\" f=\"Instagram.xml\"><securecookie host=\"^(?:badges\\.|\\.help\\.)?instagram\\.com$\" name=\".+\"/><rule from=\"^http://images\\.instagram\\.com/\" to=\"https://d18txuuu339yuz.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Instagrampartners.com\" f=\"Instagrampartners.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IM Freedom.org\" f=\"Instant-Messaging-Freedom.xml\"><securecookie host=\"^(?:www\\.)?imfreedom\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"InstantChat.io\" f=\"InstantChat.io.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^__utm\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"InstantSSL\" f=\"InstantSSL.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Instantbird.org (partial)\" default_off=\"failed ruleset test\" f=\"Instantbird.org.xml\"><securecookie host=\"^bugzilla\\.instantbird\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Instantpage.me\" f=\"Instantpage.me.xml\"><rule from=\"^http://instantpage\\.me/\" to=\"https://www.godaddy.com/default.aspx\"/><rule from=\"^http://www\\.instantpage\\.me/\" to=\"https://admin.instantpage.me/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Instapanel.com\" f=\"Instapanel.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Instapaper.com\" f=\"Instapaper.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Instart Logic.com (partial)\" f=\"Instart_Logic.com.xml\"><securecookie host=\"^(?:\\.customer\\.|www\\.)?instartlogic\\.com$\" name=\".+\"/><rule from=\"^http://go\\.instartlogic\\.com/+(?:$|\\?.*)\" to=\"https://www.instartlogic.com/\"/><rule from=\"^http://go\\.instartlogic\\.com/(?=css/|images/|js/|rs/)\" to=\"https://na-sj07.marketo.com/\"/><rule from=\"^http://status\\.instartlogic\\.com/\" to=\"https://instartlogic.statuspage.io/\"/><rule from=\"^http://(customer\\.|www\\.)?instartlogic\\.com/\" to=\"https://$1instartlogic.com/\"/></ruleset>", "<ruleset name=\"Instella Platform (partial)\" f=\"Instella_Platform.xml\"><securecookie host=\"^.+\\.instellaplatform\\.com$\" name=\".+\"/><rule from=\"^http://(?!www)\\.instellaplatform\\.com/\" to=\"https://$1.instellaplatform.com/\"/></ruleset>", "<ruleset name=\"Institut National des Sciences Appliquées (partial)\" f=\"Institut-National-des-Sciences-Appliquees.xml\"><securecookie host=\"^www\\.insa-strasbourg\\.fr$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?insa-strasbourg\\.fr/\" to=\"https://www.insa-strasbourg.fr/\"/></ruleset>", "<ruleset name=\"Institut für Internet-Sicherheit\" f=\"Institut_fur_Internet-Sicherheit.xml\"><securecookie host=\"^www\\.it-sicherheit\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?it-sicherheit\\.de/\" to=\"https://www.it-sicherheit.de/\"/></ruleset>", "<ruleset name=\"IoP.org (mismatched)\" default_off=\"mismatched\" f=\"Institute-of-Physics-mismatches.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IoP.org (partial)\" default_off=\"failed ruleset test\" f=\"Institute-of-Physics.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.iopscience\\.\" name=\".\"/><rule from=\"^http://iop\\.org/\" to=\"https://www.iop.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Instra\" f=\"Instra.xml\"><securecookie host=\"^(?:www\\.)?instra\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"instraffic.com\" f=\"Instraffic.com.xml\"><securecookie host=\"^(?:www\\.)?instraffic\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Instructables\" f=\"Instructables.com.xml\"><securecookie host=\"^\\.instructables\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Int Gov Forum.org (partial)\" f=\"Int_Gov_Forum.org.xml\"><rule from=\"^http://(www\\.)?intgovforum\\.org/(?=cms/(?:components|images|media|modules|templates)/)\" to=\"https://$1intgovforum.org/\"/></ruleset>", "<ruleset name=\"intan.net\" f=\"Intan.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Intego.com\" f=\"Intego.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\.fp\\.\" name=\".\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://assets\\.intego\\.com/\" to=\"https://d2peew1v0y8u0k.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Integral-Marketing.com (partial)\" f=\"Integral-Marketing.com.xml\"><rule from=\"^http://ads\\.integral-marketing\\.com/\" to=\"https://saxp.zedo.com/\"/></ruleset>", "<ruleset name=\"Integris Credit Union\" f=\"Integris-Credit-Union.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Integrity.pt\" f=\"Integrity.pt.xml\"><securecookie host=\"^\\.integrity\\.pt$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Integrity.st\" f=\"Integrity.st.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Intel (mismatches)\" default_off=\"mismatched\" f=\"Intel-mismatches.xml\"><rule from=\"^http://failover\\.intel\\.com/\" to=\"https://failover.intel.com/\"/><rule from=\"^http://(?:www\\.)?intel\\.co\\.uk/\" to=\"https://www.intel.co.uk/\"/><rule from=\"^http://itcommunity\\.intel\\.co\\.uk/\" to=\"https://www.intel.co.uk/content/www/uk/en/it-management/intel-it/it-managers.html\"/></ruleset>", "<ruleset name=\"Intel.co.jp\" f=\"Intel.co.jp.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Intel.co.uk (partial)\" f=\"Intel.co.uk.xml\"><exclusion pattern=\"^http://iq\\.intel\\.co\\.uk/+(?!favicon\\.ico|wp-content/|wp-includes/)\"/><rule from=\"^http://iq\\.intel\\.co\\.uk/\" to=\"https://iq.intel.co.uk/\"/></ruleset>", "<ruleset name=\"Intel.com (false MCB)\" platform=\"mixedcontent\" f=\"Intel.com-falsemixed.xml\"><securecookie host=\"^newsroom\\.intel\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Intel.com (partial)\" f=\"Intel.xml\"><exclusion pattern=\"^http://(?:www\\.)?intel\\.com/(?!content/|etc/|favicon\\.ico|newsroom/assets/(?!bio/)|sites/)\"/><exclusion pattern=\"^http://newsroom\\.intel\\.com/+(?!favicon\\.ico|(?:\\d\\.\\d\\.\\d/)?(?:images/|plugins/|styles/|themes?/)|people/\\w+/avatar/)\"/><securecookie host=\".+\\.intel\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?intel\\.com/\" to=\"https://www-ssl.intel.com/\"/><rule from=\"^http://embedded\\.edc\\.intel\\.com/+(?:$|\\?.*)\" to=\"https://embedded.communities.intel.com/\"/><rule from=\"^http://xdk\\.intel\\.com/$\" to=\"https://software.intel.com/en-us/intel-xdk\"/><rule from=\"^http://xdk\\.intel\\.com/\\?$\" to=\"https://software.intel.com/en-us/intel-xdk/\"/><rule from=\"^http://xdk\\.intel\\.com/\" to=\"https://software.intel.com/en-us/intel-xdk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Intel Free Press.com\" default_off=\"mismatched\" f=\"Intel_Free_Press.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Intelexit.org\" f=\"Intelexit.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Intelish.com\" f=\"Intelish.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"intelli-direct.com\" f=\"Intelli-direct.com.xml\"><securecookie host=\"^\\.intelli-direct\\.com$\" name=\".+\"/><rule from=\"^http://([\\w-]+\\.)?intelli-direct\\.com/\" to=\"https://$1intelli-direct.com/\"/></ruleset>", "<ruleset name=\"Intelligence.org\" f=\"Intelligence.org.xml\"><rule from=\"^http://(?:www\\.)?intelligence\\.org/\" to=\"https://intelligence.org/\"/></ruleset>", "<ruleset name=\"Intelligent Exploit.com\" f=\"Intelligent_Exploit.com.xml\"><securecookie host=\"^\\.\" name=\".\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"intelliot.com\" f=\"Intelliot.com.xml\"><securecookie host=\"^\\.intelliot\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"intelliserver.net\" default_off=\"failed ruleset test\" f=\"Intelliserver.net.xml\"><rule from=\"^http://(?:www\\.)?intelliserver\\.net/\" to=\"https://www.intelliserver.net/\"/></ruleset>", "<ruleset name=\"intelliwebservices.com\" f=\"Intelliwebservices.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Intelliworks Chat.com\" f=\"Intelliworks_Chat.com.xml\"><rule from=\"^http://intelliworkschat\\.com/.*\" to=\"https://www.intelliworkschat.com/\"/><rule from=\"^http://www\\.intelliworkschat\\.com/\" to=\"https://www.intelliworkschat.com/\"/><rule from=\"^https?://(?:www\\.)?poll\\.intelliworkschat\\.com/\" to=\"https://poll.intelliworkschat.com/\"/></ruleset>", "<ruleset name=\"Intelrad.com\" default_off=\"failed ruleset test\" f=\"Intelrad.com.xml\"><securecookie host=\"^\\.intelrad\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Intense School\" default_off=\"expired\" f=\"Intense_School.xml\"><rule from=\"^http://(?:www\\.)?intenseschool\\.com/\" to=\"https://www.intenseschool.com/\"/></ruleset>", "<ruleset name=\"IntensityLab.com\" f=\"IntensityLab.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Intent Media (problematic)\" default_off=\"expired, mismatched, self-signed\" f=\"Intent-Media-mismatches.xml\"><rule from=\"^http://(audioprointernational|licensing|mcvpacific)\\.(biz|com|co\\.uk)/\" to=\"https://www.$1.$2/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Intent Media.co.uk\" f=\"Intent-Media.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"intentmedia.net (partial)\" f=\"Intentmedia.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Inter.net (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Inter.net.xml\"><securecookie host=\"^www\\.br\\.inter\\.net$\" name=\".*\"/><rule from=\"^http://((?:www\\.)?br|hosting\\.de)\\.inter\\.net/\" to=\"https://$1.inter.net/\"/><rule from=\"^http://central\\.br\\.inter\\.net/\" to=\"https://www.br.inter.net/central-assinante\"/></ruleset>", "<ruleset name=\"InterContinental Hotels Group\" default_off=\"failed ruleset test\" f=\"InterContinental_Hotels_Group.xml\"><exclusion pattern=\"^http://(?:contact|qa\\.contact|development)\\.ihg\\.com/\"/><securecookie host=\"^(?:.*\\.)?ihg\\.com$\" name=\".+\"/><rule from=\"^http://ihg\\.com/\" to=\"https://www.ihg.com/\"/><rule from=\"^http://([^/:@]+)?\\.ihg\\.com/\" to=\"https://$1.ihg.com/\"/><rule from=\"^http://ihgagent\\.com/\" to=\"https://www.ihgagent.com/\"/><rule from=\"^http://([^/:@]+)?\\.ihgagent\\.com/\" to=\"https://$1.ihgagent.com/\"/></ruleset>", "<ruleset name=\"InterNetworX\" f=\"InterNetworX.xml\"><securecookie host=\"^(?:.*\\.)?inwx\\.(?:at|ch|com|de|es|net)$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?inwx\\.(at|ch|de|es)/\" to=\"https://www.inwx.$1/\"/><rule from=\"^http://(?:www\\.)?inwx\\.(?:com|net)/\" to=\"https://www.inwx.com/\"/></ruleset>", "<ruleset name=\"InterQ.or.jp (partial)\" f=\"InterQ.or.jp.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"InterWorx (partial)\" default_off=\"failed ruleset test\" f=\"InterWorx.xml\"><securecookie host=\"^(?:my|support)?\\.interworx\\.com$\" name=\".*\"/><rule from=\"^http://((my|support|www)\\.)?interworx\\.com/\" to=\"https://$1interworx.com/\"/></ruleset>", "<ruleset name=\"Interac.ca\" f=\"Interac.ca.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Interac PoS Centre.ca\" f=\"Interac_PoS_Centre.ca.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IAB.net\" platform=\"mixedcontent\" f=\"Interactive-Advertising-Bureau.xml\"><securecookie host=\"^(?:www)?\\.iab\\.net$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Interactive Marketing Solutions\" f=\"Interactive-Marketing-Solutions.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Interactive Media Awards\" f=\"Interactive-Media-Awards.xml\"><rule from=\"^http://(?:www\\.)?interactivemediaawards\\.com/\" to=\"https://www.interactivemediaawards.com/\"/><securecookie host=\"^www\\.interactivemediaawards\\.com$\" name=\".*\"/></ruleset>", "<ruleset name=\"Interactive Media in Retail Group (partial)\" default_off=\"handshake failure\" f=\"Interactive-Media-in-Retail-Group.xml\"><securecookie host=\"^isisaccreditation\\.imrg\\.org$\" name=\".*\"/><rule from=\"^http://isisaccreditation\\.imrg\\.org/\" to=\"https://isisaccreditation.imrg.org/\"/></ruleset>", "<ruleset name=\"Interactive Data Corporation (partial)\" f=\"Interactive_Data_Corporation.xml\"><securecookie host=\"^(?:services|vantage)\\.interactivedata\\.com$\" name=\".+\"/><rule from=\"^http://chartbigchart\\.gtm\\.idmanagedsolutions\\.com/\" to=\"https://chartbigchart.gtm.idmanagedsolutions.com/\"/><rule from=\"^http://(fundrun|pool|services|vantage)\\.interactivedata\\.com/\" to=\"https://$1.interactivedata.com/\"/><rule from=\"^http://go\\.interactivedata\\.com/(cs|image|r)s/\" to=\"https://na-o.marketo.com/$1s/\"/></ruleset>", "<ruleset name=\"Interactive Online\" f=\"Interactive_Online.xml\"><securecookie host=\"^interactiveonline\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?interactiveonline\\.com/\" to=\"https://interactiveonline.com/\"/><rule from=\"^http://cpanel(8|9|1[012])\\.primary001\\.net/\" to=\"https://cpanel$1.primary001.net/\"/></ruleset>", "<ruleset name=\"Intercom.io\" default_off=\"failed ruleset test\" f=\"Intercom.io.xml\"><securecookie host=\"^webinars\\.intercom\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Intercom CDN.com\" f=\"Intercom_CDN.com.xml\"><securecookie host=\"^\\.intercomcdn\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Interface Ecology Lab\" default_off=\"mismatched\" f=\"Interface-Ecology-Lab.xml\"><rule from=\"^http://(?:www\\.)?ecologylab\\.net/\" to=\"https://ecologylab.net/\"/></ruleset>", "<ruleset name=\"Interfacelift.com\" f=\"Interfacelift.xml\"><securecookie host=\"^(?:www\\.)?interfacelift\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?interfacelift\\.com/\" to=\"https://interfacelift.com/\"/></ruleset>", "<ruleset name=\"Interference.cc\" f=\"Interference.cc.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Intergi.com (partial)\" default_off=\"failed ruleset test\" f=\"Intergi.xml\"><securecookie host=\"^\\.intergi\\.com$\" name=\"^CfP$\"/><securecookie host=\"^app\\.intergi\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Interhome.ch\" f=\"Interhome.ch.xml\"><rule from=\"^http://interhome\\.ch/\" to=\"https://www.interhome.ch/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Interhyp.de\" f=\"Interhyp.de.xml\"><rule from=\"^http://(?:www\\.)?interhyp\\.de/\" to=\"https://www.interhyp.de/\"/></ruleset>", "<ruleset name=\"Interior Savings Credit Union\" f=\"Interior-Savings-Credit-Union.xml\"><securecookie host=\"^(www\\.)?interiorsavings\\.com$\" name=\".+\"/><securecookie host=\"^(community\\.|feedback\\.|forms\\.|mdws\\.|mailer\\.|promotion\\.)?myinteriorsavings\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Interkassa.com\" f=\"Interkassa.xml\"><securecookie host=\"^(?:.+\\.)?interkassa\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Interlan.se\" f=\"Interlan.se.xml\"><rule from=\"^http://(www2?\\.)?interlan\\.se/\" to=\"https://$1interlan.se/\"/></ruleset>", "<ruleset name=\"Intermundo Media.com\" default_off=\"failed ruleset test\" f=\"Intermundo_Media.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Internap Network Services (partial)\" default_off=\"failed ruleset test\" f=\"Internap.xml\"><securecookie host=\"^www\\.internap\\.com$\" name=\".+\"/><rule from=\"^http://http\\.cdnlayer\\.com/\" to=\"https://sslcdce.internapcdn.net/\"/><rule from=\"^http://www\\.internap\\.co\\.jp/\" to=\"https://www.internap.co.jp/\"/><rule from=\"^http://(customers\\.|www\\.)?internap\\.com/\" to=\"https://$1internap.com/\"/><rule from=\"^http://promo\\.internap\\.com/ImgHost/\" to=\"https://app.manticoretechnolgy.com/ImgHost/\"/><rule from=\"^http://sslcdce\\.internapcdn\\.net/\" to=\"https://sslcdce.internapcdn.net/\"/></ruleset>", "<ruleset name=\"IACR.org\" f=\"International-Association-for-Cryptologic-Research.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://iacr\\.org/\" to=\"https://www.iacr.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"International Business Times (partial)\" f=\"International-Business-Times.xml\"><rule from=\"^http://markets\\.ibtimes\\.com/$\" to=\"https://studio-5.financialcontent.com/ibtimes\"/><rule from=\"^http://markets\\.ibtimes\\.com/\" to=\"https://studio-5.financialcontent.com/\"/><rule from=\"^http://ssl\\.ibtimes\\.com/\" to=\"https://ssl.ibtimes.com/\"/></ruleset>", "<ruleset name=\"ICU-Project.org (partial)\" f=\"International-Components-for-Unicode.xml\"><exclusion pattern=\"^http://(?:(?:apps|bugs|demo|source|www)\\.)?icu-project\\.org/$\"/><securecookie host=\"^ssl\\.icu-project\\.org$\" name=\".+\"/><rule from=\"^http://(?:(?:apps|bugs|demo|source|ssl|www)\\.)?icu-project\\.org/\" to=\"https://ssl.icu-project.org/\"/></ruleset>", "<ruleset name=\"International Finance Corporation (mismatches)\" default_off=\"expired, mismatch\" f=\"International-Finance-Corporation-mismatches.xml\"><securecookie host=\"^(?:ifcext|www1)\\.ifc\\.org$\" name=\".*\"/><rule from=\"^http://ifcext\\.ifc\\.org/\" to=\"https://ifcext.ifc.org/\"/><rule from=\"^http://(?:www1?\\.)?ifc\\.org/\" to=\"https://www1.ifc.org/\"/></ruleset>", "<ruleset name=\"International Finance Corporation (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"International-Finance-Corporation.xml\"><securecookie host=\"^www\\.(?:gefpmis|miga|wbginvestmentclimate)\\.org$\" name=\".*\"/><securecookie host=\"^smartlessons\\.ifc\\.org$\" name=\".*\"/><securecookie host=\"^openknowledge\\.worldbank\\.org$\" name=\".*\"/><rule from=\"^http://(www\\.)?gefpmis\\.org/\" to=\"https://$1gefpmis.org/\"/><rule from=\"^http://smartlessons\\.ifc\\.org/\" to=\"https://smartlessons.ifc.org/\"/><rule from=\"^http://(?:www\\.)?miga\\.org/\" to=\"https://www.miga.org/\"/><rule from=\"^http://thegef\\.org/\" to=\"https://thegef.org/\"/><rule from=\"^http://(www\\.)?thegef\\.org/gef/(misc/|sites/|user)/\" to=\"https://$1thegef.org/gef/$2\"/><rule from=\"^http://(?:www\\.)?wbginvestmentclimate\\.org/\" to=\"https://www.wbginvestmentclimate.org/\"/><rule from=\"^http://openknowledge\\.worldbank\\.org/\" to=\"https://openknowledge.worldbank.org/\"/></ruleset>", "<ruleset name=\"International Free and Open Source Software Law Review\" default_off=\"expired\" f=\"International-Free-and-Open-Source-Software-Law-Review.xml\"><securecookie host=\"^www\\.ifosslr\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?ifosslr\\.org/\" to=\"https://www.ifosslr.org/\"/></ruleset>", "<ruleset name=\"International Supercomputing Conference\" default_off=\"failed ruleset test\" f=\"International-Supercomputing-Conference.xml\"><securecookie host=\"^(?:www\\.)?isc-events\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"InternationalMan\" default_off=\"failed ruleset test\" f=\"InternationalMan.xml\"><securecookie host=\"^\\.www\\.internationalman\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Privacy Association.org\" default_off=\"failed ruleset test\" f=\"International_Association_of_Privacy_Professionals.xml\"><securecookie host=\"^(?:www\\.)?privacyassociation\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"International Energy Agency\" f=\"International_Energy_Agency.xml\"><rule from=\"^http://(?:www\\.)?iea\\.org/\" to=\"https://www.iea.org/\"/></ruleset>", "<ruleset name=\"International Financial Cryptography Association (partial)\" default_off=\"failed ruleset test\" f=\"International_Financial_Cryptography_Association.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"International Payments.co.uk\" f=\"International_Payments.co.uk.xml\"><securecookie host=\"^www\\.internationalpayments\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?internationalpayments\\.co\\.uk/\" to=\"https://www.internationalpayments.co.uk/\"/></ruleset>", "<ruleset name=\"International SOS.org\" f=\"International_SOS.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Scene.org (partial)\" f=\"International_Scene_Organization.xml\"><securecookie host=\"^(?:id\\.|www\\.)?scene\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"International School of the Sacred Heart\" default_off=\"failed ruleset test\" f=\"International_School_of_the_Sacred_Heart.xml\"><securecookie host=\"^(?:www)?\\.issh.ac.jp$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Archive.org\" f=\"Internet-Archive.xml\"><securecookie host=\"^(www|analytics|bt[12]|builds|developers|store)\\.archive\\.org$\" name=\".+\"/><exclusion pattern=\"^http://gmeta[0-7]\\.us\\.archive\\.org/\"/><exclusion pattern=\"^http://(graphite|lending)\\.us\\.archive\\.org/\"/><exclusion pattern=\"^http://([\\w-]+\\.)+s3dns\\.us\\.archive\\.org/\"/><exclusion pattern=\"^http://www\\d\\d\\.us\\.archive\\.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Internet Governance Project\" default_off=\"self-signed\" f=\"Internet-Governance-Project.xml\"><rule from=\"^http://(?:www\\.)?internetgovernance\\.org/\" to=\"https://www.internetgovernance.org/\"/></ruleset>", "<ruleset name=\"Internet-Radio.com\" f=\"Internet-Radio.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Internet Safety Project\" f=\"Internet-Safety-Project.xml\"><securecookie host=\"^www\\.internetsafetyproject\\.org$\" name=\".+\"/><rule from=\"^http://internetsafetyproject\\.org/\" to=\"https://www.internetsafetyproject.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Internet Society.org (partial)\" f=\"Internet-Society.xml\"><exclusion pattern=\"^http://www\\.internetsociety\\.org/+(?!$|\\?|favicon\\.ico|(?:form/donation|who-we-are/contact-us)(?:$|[?/])|misc/|modules/|sites/)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Internet.bs\" f=\"Internet.bs.xml\"><securecookie host=\"^\\.internetbs\\.net$\" name=\".+\"/><rule from=\"^http://(?:(chat\\.)|www\\.)?internet\\.bs/\" to=\"https://$1internet.bs/\"/><rule from=\"^http://(?:www\\.)?internetbs\\.net/\" to=\"https://internetbs.net/\"/></ruleset>", "<ruleset name=\"Internet.org.nz\" default_off=\"failed ruleset test\" f=\"Internet.org.nz.xml\"><securecookie host=\"^\\.internet\\.org\\.nz$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Internet.org\" f=\"Internet.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Internet2.edu (partial)\" default_off=\"failed ruleset test\" f=\"Internet2.xml\"><exclusion pattern=\"^http://middleware\\.internet2\\.edu/(?!$|\\?)\"/><securecookie host=\"^(?:\\.lists|service1|spaces|wiki|www)\\.internet2\\.edu$\" name=\".+\"/><rule from=\"^http://internet2\\.edu/\" to=\"https://www.internet2.edu/\"/><rule from=\"^http://middleware\\.internet2\\.edu/(?:\\?.*)?$\" to=\"https://www.internet2.edu/middleware/index.cfm\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Internet Votes.org\" f=\"InternetVotes.org.xml\"><rule from=\"^http://(www\\.)?internetvotes\\.org/\" to=\"https://internetvotes.herokuapp.com/\"/></ruleset>", "<ruleset name=\"Internet Brands\" f=\"Internet_Brands.xml\"><rule from=\"^http://pxlssl\\.ibpxl\\.com/\" to=\"https://pxlssl.ibpxl.com/\"/><rule from=\"^http://(?:cdc|cdcssl|mms)\\.ibsrv\\.net/\" to=\"https://cdcssl.ibsrv.net/modelmayhem/\"/><rule from=\"^http://static(?:ssl)?\\.ibsrv\\.net/\" to=\"https://staticssl.ibsrv.net/\"/><rule from=\"^http://(?:www\\.)?internetbrands\\.com/mt-static/\" to=\"https://cdcssl.ibsrv.net/ibcom/mt-static/\"/></ruleset>", "<ruleset name=\"Internet Coup.org\" default_off=\"mismatched\" f=\"Internet_Coup.org.xml\"><securecookie host=\"^www\\.internetcoup\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?internetcoup\\.org/\" to=\"https://www.internetcoup.org/\"/></ruleset>", "<ruleset name=\"Internet Defense League.org\" f=\"Internet_Defense_League.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Internet Live Stats.com\" platform=\"mixedcontent\" f=\"Internet_Live_Stats.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Internet Protection Lab.net\" f=\"Internet_Protection_Lab.net.xml\"><securecookie host=\"^\\.internetprotectionlab\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Internet Video Archive.com (partial)\" f=\"Internet_Video_Archive.com.xml\"><rule from=\"^http://content\\.internetvideoarchive\\.com/\" to=\"https://d2nebe8lbbiml.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Internet Week.jp\" f=\"Internet_Week.jp.xml\"><rule from=\"^http://(?:www\\.)?internetweek\\.jp/\" to=\"https://internetweek.jp/\"/></ruleset>", "<ruleset name=\"Internetfonden.se\" f=\"Internetfonden.se.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"internetsuccess.at\" default_off=\"failed ruleset test\" f=\"Internetsuccess.at.xml\"><rule from=\"^http://(?:(p42\\.|second\\.)|www\\.)?internetsuccess\\.at/\" to=\"https://$1internetsuccess.at/\"/></ruleset>", "<ruleset name=\"Internews\" f=\"Internews.org.xml\"><rule from=\"^http://(?:www\\.)?internews\\.org/\" to=\"https://www.internews.org/\"/></ruleset>", "<ruleset name=\"Internot.info (partial)\" f=\"Internot.info.xml\"><securecookie host=\"^\\.internot\\.info$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Interpol\" f=\"Interpol.int.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Intersect Alliance.com\" f=\"Intersect_Alliance.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Interstices.info\" f=\"Interstices.info.xml\"><rule from=\"^http://(?:www\\.)?interstices\\.info/\" to=\"https://interstices.info/\"/></ruleset>", "<ruleset name=\"Intevation GmbH\" f=\"Intevation-GmbH.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Into Higher.com\" default_off=\"failed ruleset test\" f=\"Into_Higher.com.xml\"><securecookie host=\"^\\.\" name=\"^__utm\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Intrepid Museum\" f=\"Intrepid_Museum.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Intrepidus Group.com\" default_off=\"failed ruleset test\" f=\"Intrepidus_Group.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Introversion Software (partial)\" f=\"Introversion-Software.xml\"><rule from=\"^http://(www\\.)?introversion\\.co\\.uk/(blog/|darwinia/(?:purchase(?:$|/)|sharedresources/))\" to=\"https://$1introversion.co.uk/$2\"/></ruleset>", "<ruleset name=\"Introweb Kft.\" f=\"Introweb.xml\"><securecookie host=\"^www\\.introweb\\.hu$\" name=\".+\"/><rule from=\"^http://([^@:/]*)\\.introweb\\.hu/\" to=\"https://$1.introweb.hu/\"/></ruleset>", "<ruleset name=\"Intuit (problematic)\" default_off=\"mismatched\" f=\"Intuit-problematic.xml\"><rule from=\"^http://(?:www\\.)?/intuitpayments\\.com/(favicon\\.ico|Global/|KeyGrip\\.ashx|Templates/)\" to=\"https://intuitpayments.com/$1\"/></ruleset>", "<ruleset name=\"Intuit (partial)\" default_off=\"failed ruleset test\" f=\"Intuit.xml\"><securecookie host=\"^.+\\.intuit\\.com$\" name=\".+\"/><securecookie host=\"^billscenter\\.paytrust\\.com$\" name=\".+\"/><rule from=\"^http://quicken\\.intuit\\.com/(\\?.*)?$\" to=\"https://quicken.intuit.com/index.jsp$1\"/><rule from=\"^http://((?:about|academy|(?:blog\\.)?accountants|accounts|(?:css\\.|images\\.)?appcenter|business|community|developer|enterprisesuite|(?:www\\.)?fi|healthcards?|healthcare|http-download|ifs|insurance|intuitmarket|ipn|quickbooks\\.lc|qbosg\\.lcp|learn|marketplace|paymentnetwork|payments|payroll|paytrust|pointofsale|privacy|proadvisor|psswprod3lb|support\\.quickbooks\\.qdc|quickbase|quickbase-community-e2e|(?:support\\.)?quickbooks|quickbooksonline|quicken|sci|security|smallbusiness|ttlc|ttlcprd|(?:images\\.)?turbotax|turbotaxcpaselect|websites|www)\\.)?intuit\\.com/\" to=\"https://$1intuit.com/\"/><rule from=\"^http://a\\d*\\.quickbase\\.intuit\\.com/\" to=\"https://quickbase.intuit.com/\"/><rule from=\"^http://media\\.turbotaxcpaselect\\.intuit\\.com/\" to=\"https://s3.amazonaws.com/media.turbotaxcpaselect.intuit.com/\"/><rule from=\"^http://(\\w+)\\.intuitcdn\\.net/\" to=\"https://$1.intuitcdn.net/\"/><rule from=\"^http://(payments-s3|s[123])\\.intuitstatic\\.com/\" to=\"https://$1.intuitstatic.com/\"/><rule from=\"^http://billscenter\\.paytrust\\.com/\" to=\"https://billscenter.paytrust.com/\"/><rule from=\"^http://(?:www\\.)?quickbase\\.com/\" to=\"https://www.quickbase.com/\"/><rule from=\"^http://intuitcorp\\.quickbase\\.com/\" to=\"https://intuitcorp.quickbase.com/\"/><rule from=\"^http://(www\\.)?turbotax\\.com/\" to=\"https://$1turbotax.com/\"/></ruleset>", "<ruleset name=\"Intuit Labs.com\" f=\"Intuit_Labs.com.xml\"><securecookie host=\"^\\.intuitlabs\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Intuitiv (partial)\" f=\"Intuitiv.xml\"><exclusion pattern=\"^http://www\\.csmres\\.co\\.uk/\"/><rule from=\"^http://(\\w+)\\.csmres\\.co\\.uk/\" to=\"https://$1.csmres.co.uk/\"/></ruleset>", "<ruleset name=\"Intuitive Password.com (partial)\" f=\"Intuitive_Password.com.xml\"><securecookie host=\"^(?:www)?\\.intuitivepassword\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?intuitivepassword\\.com/\" to=\"https://www.intuitivepassword.com/\"/></ruleset>", "<ruleset name=\"intux.de\" f=\"Intux.de.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Inuits.eu\" f=\"Inuits.eu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"InvenSense.com (partial)\" f=\"InvenSense.com.xml\"><securecookie host=\"^store\\.invensense\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Invenio-software.org\" default_off=\"failed ruleset test\" f=\"Invenio-software.org.xml\"><securecookie host=\"^invenio-software\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"InventHelp\" f=\"InventHelp.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Inventive Designers.com\" default_off=\"failed ruleset test\" f=\"Inventive_Designers.com.xml\"><securecookie host=\"^(?:www\\.)?inventivedesigners.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Inverse\" f=\"Inverse.xml\"><securecookie host=\"^inverse\\.ca$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?inverse\\.ca/\" to=\"https://inverse.ca/\"/></ruleset>", "<ruleset name=\"InvestSMART (partial)\" platform=\"mixedcontent\" f=\"InvestSMART.xml\"><rule from=\"^http://investsmart\\.com\\.au/\" to=\"https://www.investsmart.com.au/\"/><rule from=\"^http://www\\.investsmart\\.com\\.au/(banner_ads|images|membership|share_trading|style)/\" to=\"https://www.investsmart.com.au/$1/\"/></ruleset>", "<ruleset name=\"Investigative News Network (partial)\" default_off=\"mismatched\" f=\"Investigative-News-Network.xml\"><rule from=\"^http://(?:www\\.)?npjhub\\.org/favicon\\.ico\" to=\"https://www.npjhub.org/favicon.ico\"/><rule from=\"^http://(?:www\\.)?npjhub\\.org/wp-(admin/|content/|login\\.php)\" to=\"https://www.npjhub.org/~npjhubor/wp-$1\"/></ruleset>", "<ruleset name=\"Investigative Dashboard.org\" f=\"Investigative_Dashboard.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Investing Channel (partial)\" f=\"Investing-Channel.xml\"><rule from=\"^http://ads\\.investingchannel\\.com/\" to=\"https://ads.investingchannel.com/\"/><rule from=\"^http://cdn\\.investingchannel\\.com/\" to=\"https://s3.amazonaws.com/cdn.investingchannel.com/\"/></ruleset>", "<ruleset name=\"Investis.com (partial)\" f=\"Investis.com.xml\"><rule from=\"^http://miranda\\.hemscott\\.com/\" to=\"https://hsprod.investis.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Investors in People.co.uk\" f=\"Investors-in-People.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Investors.com (partial)\" default_off=\"Breaks site\" f=\"Investors.com.xml\"><exclusion pattern=\"http://news\\.investors\\.com/(?![\\w-]+/|ClientScriptCombiner\\.aspx|favicon\\.ico|(?:Script|Web)Resource\\.axd)\"/><securecookie host=\"^(?:www\\.)?investors\\.com$\" name=\".+\"/><rule from=\"^http://(?:www1\\.ibdcd|news\\.investors)\\.com/\" to=\"https://www.investors.com/\"/><rule from=\"^http://(www\\.)?investors\\.com/\" to=\"https://$1investors.com/\"/></ruleset>", "<ruleset name=\"Invincea.com (partial)\" f=\"Invincea.com.xml\"><rule from=\"^http://(www\\.)?invincea\\.com/(?=support(?:$|[?/])|wp-content/|wp-includes/)\" to=\"https://$1invincea.com/\"/><rule from=\"^http://info\\.invincea\\.com/(?=css/|images/|js/|rs/)\" to=\"https://na-sjn.marketo.com/\"/></ruleset>", "<ruleset name=\"Invision Power.com\" f=\"Invision-Power-Services.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Invite Media (partial)\" f=\"Invite_Media.xml\"><securecookie host=\"^\\.invitemedia\\.com$\" name=\"^(?:segments_p1|uid)$\"/><rule from=\"^http://(?:www\\.)?invitemedia\\.com/([\\w-]+\\.(?:css|png))\" to=\"https://www.invitemedia.com/$1\"/><rule from=\"^http://bub\\.px\\.invitemedia\\.com/\" to=\"https://pixel.invitemedia.com/\"/><rule from=\"^http://(?:dashboard(?:-cdn)?|g-pixel|pixel|segment-pixel)\\.invitemedia\\.com/\" to=\"https://$1.invitemedia.com/\"/></ruleset>", "<ruleset name=\"Invitel (partial)\" f=\"Invitel.xml\"><securecookie host=\"^(?:mail\\.invitel|webmail\\.eol)\\.hu$\" name=\".+\"/><rule from=\"^http://mail\\.invitel\\.hu/\" to=\"https://mail.invitel.hu/\"/></ruleset>", "<ruleset name=\"InvizBox.io\" f=\"InvizBox.io.xml\"><securecookie host=\"^(?:www\\.)?invizbox\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Invoca.com (partial)\" f=\"Invoca.com.xml\"><rule from=\"^http://(www\\.)?invoca\\.com/(?=favicon\\.ico|wp-content/|wp-includes/)\" to=\"https://$1invoca.com/\"/></ruleset>", "<ruleset name=\"Invoca.net\" f=\"Invoca.net.xml\"><securecookie host=\"^\\.invoca\\.net$\" name=\".+\"/><rule from=\"^http://(www2?\\.)?invoca\\.net/\" to=\"https://$1invoca.net/\"/></ruleset>", "<ruleset name=\"Invodo (partial)\" f=\"Invodo.xml\"><rule from=\"^http://(www\\.)?invodo\\.com/register/\" to=\"https://$1invodo.com/register/\"/><rule from=\"^http://e\\.invodo\\.com/\" to=\"https://e.invodo.com/\"/><rule from=\"^http://www2\\.invodo\\.com/l/\" to=\"https://go.pardot.com/l/\"/></ruleset>", "<ruleset name=\"Invoice Ocean\" f=\"Invoice_Ocean.xml\"><securecookie host=\"^\\.invoiceocean\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Involver\" default_off=\"failed ruleset test\" f=\"Involver.xml\"><securecookie host=\"^.*\\.involver\\.com$\" name=\".*\"/><rule from=\"^http://((?:amp|docs|embednr|facebook|status|www)\\.)?involver\\.com/\" to=\"https://$1involver.com/\"/><rule from=\"^http://support\\.involver\\.com/(assets|generated|images|registration|system|widgets)/\" to=\"https://involver.zendesk.com/$1/\"/></ruleset>", "<ruleset name=\"Inxpo.com (partial)\" f=\"Inxpo.com.xml\"><securecookie host=\"^www\\.inxpo\\.com$\" name=\".+\"/><rule from=\"^http://inxpo\\.com/\" to=\"https://www.inxpo.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"io9.com (partial)\" f=\"Io9.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://(www\\.)?io9\\.com/\" to=\"https://io9.gizmodo.com/\"/></ruleset>", "<ruleset name=\"IoMTT.com (partial)\" f=\"IoMTT.com.xml\"><exclusion pattern=\"^http://(?:shop\\.|www\\.)?iomtt\\.com/(?!~/|(?:Basket|My-Account)(?:$|[?/])|css/|favicon\\.ico|images/|js/)\"/><rule from=\"^http://(?:www\\.)?iomtt\\.com/\" to=\"https://www.iomtt.com/\"/><rule from=\"^http://shop\\.iomtt\\.com/\" to=\"https://shop.iomtt.com/\"/></ruleset>", "<ruleset name=\"ioSafe.com\" f=\"IoSafe.com.xml\"><securecookie host=\"^(?:www\\.)?iosafe\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iojs.org\" f=\"Iojs.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ionic Framework.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Ionic_Framework.com-falsemixed.xml\"><securecookie host=\"^\\.ionicframework\\.com$\" name=\"^__cfduid$\"/><rule from=\"^http://ionicframework\\.com/\" to=\"https://www.ionicframework.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ionic Framework.com (partial)\" default_off=\"failed ruleset test\" f=\"Ionic_Framework.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?ionicframework\\.com/+(?!css/|favicon\\.ico|img/)\"/><securecookie host=\"^\\.ionicframework\\.com$\" name=\"^__cfduid$\"/><rule from=\"^http://ionicframework\\.com/\" to=\"https://www.ionicframework.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Iono.fm\" f=\"Iono.fm.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://static\\.iono\\.fm/\" to=\"https://d1pbkbr0pcz1zy.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iovation\" f=\"Iovation.xml\"><securecookie host=\"^(?:.+\\.)?iovation\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ipfs.io\" f=\"Ipfs.io.xml\"><securecookie host=\"^(gateway\\.)?ipfs\\.io\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ipfs.pics\" default_off=\"failed ruleset test\" f=\"Ipfs.pics.xml\"><securecookie host=\"^(www\\.)?ipfs\\.pics\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Iphoneblog\" f=\"Iphoneblog.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Iphoneincanada\" default_off=\"failed ruleset test\" f=\"Iphoneincanada.ca.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Iphonelife\" f=\"Iphonelife.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Iplay.com (partial)\" f=\"Iplay.com.xml\"><rule from=\"^http://(?:www\\.)?iplay\\.com/(?=favicon\\.ico|page/secure/)\" to=\"https://www.iplay.com/\"/><rule from=\"^http://client\\.iplay\\.com/\" to=\"https://client.iplay.com/\"/></ruleset>", "<ruleset name=\"Ippen-Digital\" f=\"IppenDigital.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ipredictive.com (partial)\" f=\"Ipredictive.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ipsidixit.net\" default_off=\"failed ruleset test\" f=\"Ipsidixit.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ipsos-MORI.com\" f=\"Ipsos-MORI.com.xml\"><securecookie host=\"^(?:www\\.)?ipsos-mori\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ipsos-NA.com\" f=\"Ipsos.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ipswich.gov.uk (partial)\" f=\"Ipswich.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iqualita.link\" f=\"Iqualita.link.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.iqualita\\.link/\" to=\"https://iqualita.link/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iRaiser.eu\" f=\"Iraiser.eu.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IRCCloud\" f=\"Irccloud.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ireeco.com\" default_off=\"plaintext reply\" f=\"Ireeco.com.xml\"><securecookie host=\"^\\.ireeco\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Irish Broadband\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"IrishBroadband.xml\"><rule from=\"^http://irishbroadband\\.ie/\" to=\"https://www.irishbroadband.ie/\"/><rule from=\"^http://([^/:@\\.]+)\\.irishbroadband\\.ie/\" to=\"https://$1.irishbroadband.ie/\"/></ruleset>", "<ruleset name=\"Ironwhale.com\" f=\"Ironwhale.com.xml\"><securecookie host=\"^www\\.ironwhale\\.com$\" name=\".+\"/><rule from=\"^http://(mail|www)\\.ironwhale\\.com/\" to=\"https://$1.ironwhale.com/\"/></ruleset>", "<ruleset name=\"Irssi (partial)\" f=\"Irssi.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Irwin Law\" f=\"Irwin-Law.xml\"><securecookie host=\"^www\\.irwinlaw\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?irwinlaw\\.com/\" to=\"https://www.irwinlaw.com/\"/></ruleset>", "<ruleset name=\"Is-its.org\" f=\"Is-its.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Is Leaked.com\" f=\"Is_Leaked.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Is TLS Fast Yet.com\" f=\"Is_TLS_Fast_Yet.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Isalo.org (partial)\" default_off=\"failed ruleset test\" f=\"Isalo.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Iseclab.org (partial)\" default_off=\"failed ruleset test\" f=\"Iseclab.org.xml\"><securecookie host=\"^anubis\\.iseclab\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"isen.com\" default_off=\"mismatched\" f=\"Isen.com.xml\"><rule from=\"^http://(?:www\\.)?isen\\.com/\" to=\"https://isen.com/\"/></ruleset>", "<ruleset name=\"Ishares.com\" f=\"Ishares.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Islam-Guide.com\" f=\"Islam-Guide.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Islam4u.com\" f=\"Islam4u.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IslamAcademy.net\" default_off=\"failed ruleset test\" f=\"IslamAcademy.net.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://www\\.(benaa|forum)\\.islamacademy\\.net/\" to=\"https://$1.islamacademy.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IslamDownload.net (partial)\" f=\"IslamDownload.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IslamHouse.com\" default_off=\"failed ruleset test\" f=\"IslamHouse.com.xml\"><securecookie host=\"^(www|api|balagh|d1|d2|d3|down1|quran|ramadan|s1|torrent)\\.islamhouse\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IslamInSpanish.org\" f=\"IslamInSpanish.org.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IslamQA.info\" f=\"IslamQA.info.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IslamReligion.com\" f=\"IslamReligion.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IslamToday.net\" default_off=\"failed ruleset test\" f=\"IslamToday.net.xml\"><securecookie host=\"^(www|azzawiah|ch|dev|download|en|fr|hklive|jawal|magazine)\\.islamtoday\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IslamWeb.net\" f=\"IslamWeb.net.xml\"><securecookie host=\"^(www|articles|audio|audio3|consult|deaf|fatwa|global|library|live|live1|m|main|mobile|sms)\\.islamweb\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Islambook.com\" f=\"Islambook.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Islamedia.id\" f=\"Islamedia.id.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Islamic Center of Pittsburgh\" f=\"Islamic-Center-of-Pittsburgh.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Islamic Relief (partial)\" platform=\"mixedcontent\" f=\"Islamic-Relief.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IslamicBoard.com\" f=\"IslamicBoard.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IslamicFinder.org\" f=\"IslamicFinder.org.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IslamicTech.com\" default_off=\"failed ruleset test\" f=\"IslamicTech.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Island Savings\" default_off=\"failed ruleset test\" f=\"Island-Savings.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Isle.jp\" f=\"Isle.jp.xml\"><rule from=\"^http://(?:www\\.)?isle\\.jp/+\" to=\"https://shared.gmocloud.com/\"/><rule from=\"^http://(home|set)\\.isle\\.jp/\" to=\"https://$1.isle.jp/\"/></ruleset>", "<ruleset name=\"Islenzka.net\" default_off=\"missing certificate chain\" f=\"Islenzka.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Islington.gov.uk\" f=\"Islington.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://islington\\.gov\\.uk/\" to=\"https://www.islington.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"isoHunt.to (partial)\" f=\"IsoHunt.to.xml\"><securecookie host=\"^isohunt\\.to$\" name=\".+\"/><securecookie host=\"^\\.isohunt\\.to$\" name=\"^__cfduid$\"/><rule from=\"^http://www\\.isohunt\\.to/\" to=\"https://isohunt.to/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IsoHunt\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"IsoHunt.xml\"><securecookie host=\"^(?:.*\\.)?isohunt\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ads by isocket.com\" default_off=\"failed ruleset test\" f=\"Isocket.xml\"><securecookie host=\".*\\.adsbyisocket\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Isomorphic Software (partial)\" default_off=\"failed ruleset test\" f=\"Isomorphic_Software.xml\"><securecookie host=\"^www\\.isomorphic\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?isomorphic\\.com/\" to=\"https://www.isomorphic.com/\"/></ruleset>", "<ruleset name=\"Isorno.com\" default_off=\"self-signed\" f=\"Isorno.com.xml\"><securecookie host=\"^\\.isorno\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?isorno\\.com/\" to=\"https://www.isorno.com/\"/></ruleset>", "<ruleset name=\"ispgateway.de (partial)\" f=\"Ispgateway.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IssHub.com\" f=\"IssHub.io.xml\"><securecookie host=\"^\\.isshub\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Issuu.com (partial)\" f=\"Issuu_Aps.xml\"><exclusion pattern=\"^http://help\\.issuu\\.com/(?!/*(?:favicon\\.ico|images/|system/))\"/><rule from=\"^http://(feed|sidebar)\\.issuu\\.com/\" to=\"https://s3.amazonaws.com/$1.issuu.com/\"/><rule from=\"^http://help\\.issuu\\.com/\" to=\"https://issuu.zendesk.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ist-track.com\" f=\"Ist-track.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"istanbul hs.org\" default_off=\"failed ruleset test\" f=\"Istanbul_hs.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"istella.it (partial)\" f=\"Istella.it.xml\"><rule from=\"^http://istella\\.it/\" to=\"https://www.istella.it/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Isu.pub\" f=\"Isu.pub.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"isyVmon (partial)\" f=\"IsyVmon.xml\"><rule from=\"^http://(?:www\\.)?isyvmon\\.com/(fileadmin/|index\\.php\\?eID=sr_freecap_captcha|(?:de/)?login\\.html|typo3(?:conf|temp)?/)\" to=\"https://www.isyvmon.com/$1\"/></ruleset>", "<ruleset name=\"itBit.com\" f=\"ItBit.com.xml\"><securecookie host=\"^www\\.itbit\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?itbit\\.com/\" to=\"https://www.itbit.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Itau.com.br\" f=\"Itau.com.br.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"itbiz.cz\" default_off=\"expired\" f=\"Itbiz.cz.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://itbiz\\.cz/\" to=\"https://www.itbiz.cz/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Itc.cn\" f=\"Itc.cn.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Itch.io (partial)\" f=\"Itch.io.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Itex\" platform=\"mixedcontent\" f=\"Itex.xml\"><securecookie host=\"^(?:.*\\.)?itex\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?itex\\.com/\" to=\"https://www.itex.com/\"/></ruleset>", "<ruleset name=\"Ithaca College\" f=\"IthicaCollege.xml\"><rule from=\"^http://(?:www\\.)?ithaca\\.edu/\" to=\"https://ithaca.edu/\"/></ruleset>", "<ruleset name=\"Itpol.dk\" f=\"Itpol.dk.xml\"><rule from=\"^http://(www\\.)?it-?pol\\.dk/\" to=\"https://$1itpol.dk/\"/></ruleset>", "<ruleset name=\"itrust.org.cn\" default_off=\"expired\" f=\"Itrust.org.cn.xml\"><securecookie host=\"^(?:www\\.)?itrust\\.org\\.cn$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"It's an Honour\" f=\"ItsAnHonour.xml\"><rule from=\"^http://(?:www\\.)?itsanhonour\\.gov\\.au/\" to=\"https://www.itsanhonour.gov.au/\"/></ruleset>", "<ruleset name=\"ItsLearning\" platform=\"mixedcontent\" f=\"ItsLearning.com.xml\"><rule from=\"^http://(?:www\\.)?itslearning\\.com/\" to=\"https://www.itslearning.com/\"/></ruleset>", "<ruleset name=\"iubenda.com\" f=\"Iubenda.com.xml\"><securecookie host=\"^\\.iubenda\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Iv.lt (partial)\" f=\"Iv.lt.xml\"><exclusion pattern=\"^http://pagalba\\.iv\\.lt/(?!images/)\"/><securecookie host=\"^klientams\\.iv\\.lt$\" name=\".+\"/><rule from=\"^http://((?:gedimai|grafika|klientams|pagalba|sutartys|www)\\.)?iv\\.lt/\" to=\"https://$1iv.lt/\"/></ruleset>", "<ruleset name=\"Ivacy.com (partial)\" f=\"Ivacy.xml\"><exclusion pattern=\"^http://(?:www\\.)?ivacy\\.com/+(?!wp-content/)\"/><securecookie host=\"^billing\\.ivacy\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ivarch.com\" f=\"Ivarch.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ive Got Kids.com (false MCB)\" platform=\"mixedcontent\" f=\"Ive_Got_Kids.com-falsemixed.xml\"><securecookie host=\"^\\.?(?:ivegotkids|togevi)\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?(ivegotkids|togevi)\\.com/(?!cdn-cgi/|community/(?:forum/session\\.php|user/(?:media|modules|plugins|templates)/)|favicon\\.ico|script/|wp-content/|wp-includes/)\" to=\"https://$1$2.com/\"/></ruleset>", "<ruleset name=\"Ive Got Kids.com (partial)\" f=\"Ive_Got_Kids.com.xml\"><rule from=\"^http://(www\\.)?(ivegotkids|togevi)\\.com/(?!cdn-cgi/|community/(?:forum/session\\.php|user/(?:media|modules|plugins|templates)/)|favicon\\.ico|script/|wp-content/|wp-includes/)\" to=\"https://$1$2.com/\"/></ruleset>", "<ruleset name=\"ivorde.com\" f=\"Ivorde.com.xml\"><rule from=\"^http://www\\.ivorde\\.com/\" to=\"https://ivorde.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ivwbox.de (partial)\" f=\"Ivwbox.de.xml\"><exclusion pattern=\"^http://(?:pro|www)\\.\"/><securecookie host=\"^\\.ivwbox\\.de$\" name=\"^i00$\"/><securecookie host=\".+\\.ivwbox\\.de$\" name=\".+\"/><rule from=\"^http://([\\w-]+)\\.ivwbox\\.de/\" to=\"https://$1.ivwbox.de/\"/></ruleset>", "<ruleset name=\"ix.de\" default_off=\"failed ruleset test\" f=\"Ix.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Izquierda-unida.es\" default_off=\"Cert warning\" f=\"Izquierda-unida.es.xml\"><rule from=\"^http://(?:www\\.)?izquierda-unida\\.es/\" to=\"https://www.izquierda-unida.es/\"/></ruleset>", "<ruleset name=\"izvestia.ru\" default_off=\"failed ruleset test\" f=\"Izvestia.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"j-schmitz.net\" f=\"J-schmitz.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"j.mp (partial)\" f=\"J.mp.xml\"><securecookie host=\"^\\.j\\.mp$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"j2global.com\" f=\"J2global.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JAMA Network (partial)\" f=\"JAMA-Network.xml\"><securecookie host=\"^(?:.*\\.)?jamanetwork\\.com$\" name=\".+\"/><rule from=\"^http://((?:arch(?:derm|faci|inte|neur|neurpsyc|opht|otol|neurpsyc|pedi|surg)|jama|store|www)\\.)?jamanetwork\\.com/\" to=\"https://$1jamanetwork.com/\"/></ruleset>", "<ruleset name=\"JAMF Software.com (partial)\" f=\"JAMF_Software.com.xml\"><rule from=\"^http://(jamfnation|my|support|store)\\.jamfsoftware\\.com/\" to=\"https://$1.jamfsoftware.com/\"/></ruleset>", "<ruleset name=\"JAMSTEC.go.jp\" f=\"JAMSTEC.go.jp.xml\"><securecookie host=\"^www\\.jamstec\\.go\\.jp$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JA.NET (partial)\" f=\"JANET.xml\"><rule from=\"^http://(?:www\\.)?ja\\.net/\" to=\"https://www.ja.net/\"/><rule from=\"^http://(community|networkshop)\\.ja\\.net/\" to=\"https://$1.ja.net/\"/></ruleset>", "<ruleset name=\"JBeekman.nl\" f=\"JBeekman.nl.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.jbeekman\\.nl/\" to=\"https://jbeekman.nl/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JBoss.com (partial)\" f=\"JBoss.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JBoss.org\" default_off=\"failed ruleset test\" f=\"JBoss.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JCB USA.com\" f=\"JCB_USA.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JCP.org\" f=\"JCP.org.xml\"><securecookie host=\"^(?:www\\.)?jcp\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"jCore.fr\" default_off=\"mismatched\" f=\"JCore.fr.xml\"><securecookie host=\"^www\\.jcore\\.fr$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JCrosoft.com\" default_off=\"expired, mismatched\" f=\"JCrosoft.com.xml\"><securecookie host=\"^(?:www\\.)?jcrosoft\\.com$\" name=\".+\"/><rule from=\"^http://jcrosoft\\.com/\" to=\"https://www.jcrosoft.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JD.com-Cities\" f=\"JD.com-CIties.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JD.com-Problematic\" f=\"JD.com-Problematic.xml\"><rule from=\"^http://myjd\\.crm\\.jd\\.com/\" to=\"https://myjd-crm.jd.com/\"/><rule from=\"^http://(www\\.)?jd\\.com/\" to=\"https://www.jd.com/\"/><exclusion pattern=\"^http://channel.jd.com/$\"/><rule from=\"^http://channel\\.jd\\.com/(.+)\\.html\" to=\"https://channel.jd.com/$1.html\"/><exclusion pattern=\"^http://acsten.jd.com/$\"/><rule from=\"^http://acsten\\.jd\\.com/\" to=\"https://acsten.jd.com/\"/><exclusion pattern=\"^http://authcode.jd.com/$\"/><rule from=\"^http://authcode\\.jd\\.com/verify/image\" to=\"https://authcode.jd.com/verify/image\"/><exclusion pattern=\"^http://c-nfa.jd.com/$\"/><rule from=\"^http://c-nfa\\.jd\\.com/.+&url=//(.+)/\" to=\"https://$1/\"/><exclusion pattern=\"^http://ccc.jd.com/$\"/><rule from=\"^http://ccc\\.jd\\.com/\" to=\"https://ccc.jd.com/\"/><exclusion pattern=\"^http://item.jd.com/$\"/><rule from=\"^http://item\\.jd\\.com/(.+)\\.html\" to=\"https://item.jd.com/$1.html\"/><exclusion pattern=\"^http://list.jd.com/$\"/><rule from=\"^http://list\\.jd\\.com/(\\d+)-(\\d+)-(\\d+)\\.html\" to=\"https://list.jd.com/list.html?cat=$1,$2,$3\"/><rule from=\"^http://list\\.jd\\.com/list\\.html\\?cat=\" to=\"https://list.jd.com/list.html\"/><exclusion pattern=\"^http://passport.jd.com/$\"/><rule from=\"^http://passport\\.jd\\.com/(relay|new|paipai|uc)/\" to=\"https://passport.jd.com/$1/\"/><exclusion pattern=\"^http://sale.jd.com/$\"/><rule from=\"^http://sale\\.jd\\.com/(act|app\\/act|m\\/act|wq\\/act|mall)/(\\w+)\\.html\" to=\"https://sale.jd.com/$1/$2.html\"/></ruleset>", "<ruleset name=\"JD.com\" f=\"JD.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JD.hk (partial)\" f=\"JD.hk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JDI Dating (partial)\" default_off=\"refused\" f=\"JDI-Dating.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JD Kasten.com\" default_off=\"failed ruleset test\" f=\"JD_Kasten.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JD Supra\" f=\"JD_Supra.xml\"><securecookie host=\"^www\\.jdsupra\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?jdsupra\\.com/\" to=\"https://www.jdsupra.com/\"/></ruleset>", "<ruleset name=\"JDpay.com (partial)\" f=\"JDpay.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JEDEC.com\" default_off=\"failed ruleset test\" f=\"JEDEC.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"J.F. Shea Co. (partial)\" default_off=\"expired\" f=\"JF-Shea-Co.xml\"><securecookie host=\"^www\\.bluestargolf\\.com$\" name=\".*\"/><securecookie host=\"^www\\.sheamortgage\\.com$\" name=\".*\"/><securecookie host=\"^www\\.trilogygolfclub\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?bluestargolf\\.com/\" to=\"https://www.bluestargolf.com/\"/><rule from=\"^http://(?:www\\.)?sheamortgage\\.com/\" to=\"https://www.sheamortgage.com/\"/><rule from=\"^http://(?:www\\.)?trilogygolfclub\\.com/\" to=\"https://www.trilogygolfclub.com/\"/></ruleset>", "<ruleset name=\"JFK library.org (partial)\" f=\"JFK_Library.org.xml\"><securecookie host=\"^store\\.jfklibrary\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JFrog.com\" f=\"JFrog.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JGuitar.com\" default_off=\"self-signed\" f=\"JGuitar.com.xml\"><rule from=\"^http://(?:www\\.)?jguitar\\.com/\" to=\"https://www.jguitar.com/\"/></ruleset>", "<ruleset name=\"JH.edu (partial)\" f=\"JH.edu.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JHMI.edu (partial)\" f=\"JHMI.edu.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JHU.edu (false MCB)\" platform=\"mixedcontent\" f=\"JHU.edu-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JIDE.com\" default_off=\"failed ruleset test\" f=\"JIDE.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JISCMail.ac.uk\" default_off=\"failed ruleset test\" f=\"JISCMail.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JJC.edu (partial)\" f=\"JJC.edu.xml\"><exclusion pattern=\"^http://www\\.jjc\\.edu/(?!_catalogs/|_layouts/|[\\w-]+/PublishingImages/|[Pp]ublishing[Ii]mages/|about/|admissions/pages/apply-now\\.aspx|Style%20Library/|publishingimages/)\"/><securecookie host=\"^(?:employment|eresources)\\.jjc\\.edu$\" name=\".+\"/><rule from=\"^http://jjc\\.edu/\" to=\"https://www.jjc.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JK ry.org\" f=\"JK_ry.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JList.com (partial)\" default_off=\"failed ruleset test\" f=\"JList.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^(?:affiliateplus_account_code_1|affiliateplus_map_index|frontend)$\"/><rule from=\"^http://images3\\.jlist\\.com/\" to=\"https://s3.amazonaws.com/images3.jlist.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JML Direct.com\" default_off=\"failed ruleset test\" f=\"JML_Direct.com.xml\"><securecookie host=\"^(?:\\.?www)?\\.jmldirect\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?jmldirect\\.com/\" to=\"https://$1jmldirect.com/\"/><rule from=\"^http://jmldirect\\.uat\\.venda\\.com/content/\" to=\"https://www.jmldirect.com/content/\"/></ruleset>", "<ruleset name=\"jMod\" default_off=\"expired\" f=\"JMod.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JP Pol.dk (partial)\" f=\"JP-Politikens_Hus.xml\"><securecookie host=\"^polid\\.jppol\\.dk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JPBerlin.de\" f=\"JPBerlin.de.xml\"><rule from=\"^http://(?:www\\.)?jpberlin\\.de/\" to=\"https://www.jpberlin.de/\"/></ruleset>", "<ruleset name=\"JP-CERT\" f=\"JPCERT.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JPGmag.com\" f=\"JPGmag.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JPackage.org\" default_off=\"self-signed\" f=\"JPackage.org.xml\"><rule from=\"^http://(?:www\\.)?jpackage\\.org/\" to=\"https://www.jpackage.org/\"/></ruleset>", "<ruleset name=\"jQuery.org\" f=\"JQuery.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"jQuery.com (partial)\" f=\"JQuery.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"jQuery Mobile.com (partial)\" f=\"JQuery_Mobile.com.xml\"><rule from=\"^http://www\\.jquerymobile\\.com/\" to=\"https://jquerymobile.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"jQuery UI.com (mismatches)\" default_off=\"expired, mismatched, self-signed\" f=\"JQuery_UI.com-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"jQuery UI.com (partial)\" f=\"JQuery_UI.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JRES.org\" default_off=\"failed ruleset test\" f=\"JRES.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JSBi.org\" default_off=\"missing certificate chain\" f=\"JSBi.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VTB.ru (partial)\" f=\"JSC-VTB-Bank.xml\"><securecookie host=\".*\\.vtb\\.ru$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JSConf.us (partial)\" f=\"JSConf.us.xml\"><rule from=\"^http://static\\.jsconf\\.us/\" to=\"https://d3g6x5wbd1mc2t.cloudfront.net/\"/></ruleset>", "<ruleset name=\"JSON Resume.org\" f=\"JSON_Resume.org.xml\"><securecookie host=\"^\\.jsonresume\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JSTOR (partial)\" f=\"JSTOR.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JSaO.io\" f=\"JSaO.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JUA.com\" default_off=\"failed ruleset test\" f=\"JUA.com.xml\"><securecookie host=\"^www\\.jua\\.com$\" name=\".+\"/><rule from=\"^http://jua\\.com/\" to=\"https://www.jua.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JUCY New Zealand\" default_off=\"failed ruleset test\" f=\"JUCY-New-Zealand.xml\"><securecookie host=\"^.*\\.jucy(cruize)?\\.co\\.nz$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JUKI\" f=\"JUKI.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JVN.jp\" f=\"JVN.jp.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JWChat.org\" default_off=\"missing certificate chain\" f=\"JWChat.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JW Platform.com (partial)\" f=\"JW_Platform.com.xml\"><exclusion pattern=\"^http://dashboard\\.jwplatform\\.com/+(?!payments/|static/)\"/><exclusion pattern=\"^http://content\\.jwplatform\\.com/jw6/[\\w-]+\\.xml\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JXT.net.au (partial)\" f=\"JXT.net.au.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"J Deslippe.com\" default_off=\"failed ruleset test\" f=\"J_Deslippe.com.xml\"><rule from=\"^http://(?:www\\.)?jdeslippe\\.com/\" to=\"https://www.jdeslippe.com/\"/></ruleset>", "<ruleset name=\"JabJab.de\" f=\"JabJab.de.xml\"><securecookie host=\"^www\\.jabjab\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JabbR.net\" default_off=\"failed ruleset test\" f=\"JabbR.net.xml\"><securecookie host=\"^\\.?jabbr\\.net$\" name=\".+\"/><rule from=\"^http://jabbr\\.net/\" to=\"https://jabbr.net/\"/></ruleset>", "<ruleset name=\"Jabber.dk\" f=\"Jabber.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jabber.no\" f=\"Jabber.no.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"jabber.org.uk\" default_off=\"failed ruleset test\" f=\"Jabber.org.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jabber.ru (partial)\" f=\"Jabber.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JabberES.org (partial)\" f=\"JabberES.org.xml\"><securecookie host=\"^\\.jabberes\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"jabberd.org\" platform=\"cacert\" default_off=\"failed ruleset test\" f=\"Jabberd.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jabbi.pl\" default_off=\"expired, missing certificate chain\" f=\"Jabbi.pl.xml\"><securecookie host=\"^(?:client\\.|www\\.)?jabbi\\.pl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Jack and Jill Children's Foundation Charity\" f=\"Jack-and-Jill-Childrens-Foundation.xml\"><rule from=\"^http://(?:www\\.)?jackandjill\\.ie/\" to=\"https://www.jackandjill.ie/\"/><rule from=\"^http://(?:www\\.)?jackandjillraffle\\.org/\" to=\"https://www.jackandjillraffle.org/\"/><rule from=\"^http://(?:www\\.)?jackandjillraffle\\.com/\" to=\"https://www.jackandjillraffle.org/\"/></ruleset>", "<ruleset name=\"Jack Imaging.com\" f=\"Jack_Imaging.com.xml\"><rule from=\"^http://(?:beta\\.|www\\.)?jackimaging\\.com/\" to=\"https://beta.jackimaging.com/\"/><rule from=\"^http://cdn\\.jackimaging\\.com/\" to=\"https://d2si6vzga8sezn.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Jackpot Millions.com\" f=\"Jackpot_Millions.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://jackpotmillions\\.com/\" to=\"https://www.jackpotmillions.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jacks Fetish Tube\" f=\"Jacks_Fetish_Tube.xml\"><securecookie host=\"^\\.?jacksfetishtube\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jackson-IT.de\" f=\"Jackson-IT.de.xml\"><securecookie host=\"^jackson-it\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Jackson Sun (partial)\" f=\"Jackson_Sun.xml\"><rule from=\"^http://(?:cmsimg\\.|www\\.)?jacksonsun\\.com/\" to=\"https://www.jacksonsun.com/\"/></ruleset>", "<ruleset name=\"Jacksonville.com (partial)\" f=\"Jacksonville.com.xml\"><securecookie host=\"^\\.jacksonville\\.com$\" name=\"(?:_chartbeat2|cX_\\w|ppRef|ppThirdPartyCookieFound|s_\\w+|utag_main)\"/><rule from=\"^http://sec\\.jacksonville\\.com/\" to=\"https://sec.jacksonville.com/\"/></ruleset>", "<ruleset name=\"Jacob Langvad Nilsson\" default_off=\"failed ruleset test\" f=\"Jacob_Langvad_Nilsson.xml\"><securecookie host=\"^\\.jacoblangvad\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jacobin Mag.com\" f=\"Jacobin_Mag.com.xml\"><rule from=\"^http://(auth\\.|www\\.)?jacobinmag\\.com/\" to=\"https://$1jacobinmag.com/\"/><rule from=\"^http://store\\.jacobinmag\\.com/[^?]*\" to=\"https://jacobinmag.com/subscribe/\"/></ruleset>", "<ruleset name=\"Jacqueline Gold\" default_off=\"mismatched\" f=\"Jacqueline_Gold.xml\"><rule from=\"^http://(?:www\\.)?jacquelinegold\\.com/\" to=\"https://www.jacquelinegold.com/\"/></ruleset>", "<ruleset name=\"Jadi.net\" f=\"Jadi.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jadu.net\" f=\"Jadu.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^(?:_gat?|TestCookie)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jailbreaking Is Not a Crime.org\" f=\"Jailbreaking_Is_Not_a_Crime.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jaim.at\" default_off=\"failed ruleset test\" f=\"Jaim.at.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JakeArchibald.com\" f=\"JakeArchibald.com.xml\"><securecookie host=\"^\\.jakearchibald\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JAKO-O\" default_off=\"failed ruleset test\" f=\"Jako-O.xml\"><rule from=\"^http://(?:www\\.)?jako-o\\.(at|com|de|eu|lu)/\" to=\"https://www.jako-o.$1/\"/></ruleset>", "<ruleset name=\"Jalopnik.com\" f=\"Jalopnik.com.xml\"><exclusion pattern=\"^http://(?:[^./]+\\.){2,}jalopnik\\.com/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http://cache\\.jalopnik\\.com/\" to=\"https://cache.gawkerassets.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JamPlay\" f=\"JamPlay.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jamtrackcentral\" f=\"JamTrackCentral.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"jambit\" f=\"Jambit.xml\"><securecookie host=\"^(?:www\\.)?jambit\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jameco\" f=\"Jameco.xml\"><securecookie host=\"^www\\.jameco\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?jameco\\.com/\" to=\"https://www.jameco.com/\"/></ruleset>", "<ruleset name=\"Jamendo.com (partial)\" f=\"Jamendo.com.xml\"><securecookie host=\"^\\.?(?:(?:artists|developer|devportal|licensing|widgets|www)\\.)?jamendo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jamendo (partial)\" f=\"Jamendo.xml\"><rule from=\"^http://cdn\\.imgjam\\.com/\" to=\"https://s3.amazonaws.com/imgcdn.jamendo.com/\"/></ruleset>", "<ruleset name=\"jamesthebard.net\" f=\"Jamesthebard.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jamie Oliver\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Jamie-Oliver.xml\"><securecookie host=\"^www\\.jamieoliver\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?jamieoliver\\.com/\" to=\"https://www.jamieoliver.com/\"/></ruleset>", "<ruleset name=\"Jammerbugt.dk (mixed content)\" platform=\"mixedcontent\" f=\"Jammerbugt.dk-mixedcontent.xml\"><rule from=\"^http://(www\\.)?jammerbugt\\.dk/\" to=\"https://www.jammerbugt.dk/\"/></ruleset>", "<ruleset name=\"Jammerbugt.dk\" f=\"Jammerbugt.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JanDan.net\" default_off=\"incomplete certificate chain\" f=\"JanDan.net.xml\"><rule from=\"^http://www\\.jandan\\.net/\" to=\"https://jandan.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JanRain (partial)\" f=\"JanRain.xml\"><securecookie host=\"^(?:community|support)\\.janrain\\.com$\" name=\".+\"/><securecookie host=\"^dashboard-login\\.janraincapture\\.com$\" name=\".+\"/><rule from=\"^http://(community|(?:dashboard-)?login|support)\\.janrain\\.com/\" to=\"https://$1.janrain.com/\"/><rule from=\"^http://info\\.janrain\\.com/\" to=\"https://actonsoftware.com/\"/><rule from=\"^http://cdn\\.quilt\\.janrain\\.com/\" to=\"https://s3.amazonaws.com/janrain.quilt/\"/><rule from=\"^http://(dashboard-login\\.|www\\.)?janraincapture\\.com/\" to=\"https://$1janraincapture.com/\"/></ruleset>", "<ruleset name=\"Jan Hendrik Peters.de\" f=\"Jan_Hendrik_Peters.de.xml\"><securecookie host=\"^www\\.janhendrikpeters\\.de$\" name=\".+\"/><rule from=\"^http://janhendrikpeters\\.de/\" to=\"https://www.janhendrikpeters.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Janalta.com\" f=\"Janalta.com.xml\"><securecookie host=\"^(?:ftp\\.amazonweb1|www)\\.janalta\\.com$\" name=\".+\"/><rule from=\"^http://(ftp\\.amazonweb1|www)\\.janalta\\.com/\" to=\"https://$1.janalta.com/\"/><rule from=\"^http://cdn2\\.janalta\\.com/\" to=\"https://d2hcl8anv7xxg0.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Jane Street.com\" f=\"Jane_Street.com.xml\"><securecookie host=\"^\\.ocaml\\.janestreet\\.com$\" name=\".+\"/><rule from=\"^http://janestreet\\.com/+\" to=\"https://www.janestreet.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TheJH.net\" f=\"Jann_Horn.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"D.S.V. Sint Jansbrug\" f=\"Jansbrug.xml\"><rule from=\"^http://www\\.(?:sint)?jansbrug\\.nl/\" to=\"https://www.sintjansbrug.nl/\"/></ruleset>", "<ruleset name=\"Japan Airlines\" f=\"JapanAirlines.xml\"><rule from=\"^http://(?:www\\.)?jal\\.co\\.jp/\" to=\"https://www.jal.co.jp/\"/></ruleset>", "<ruleset name=\"The Japan Times (partial)\" default_off=\"failed ruleset test\" f=\"JapanTimes.co.jp.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Japanese government (partial)\" default_off=\"failed ruleset test\" f=\"Japanese-government.xml\"><rule from=\"^http://(?:www\\.)?challenge25\\.go\\.jp/\" to=\"https://www.challenge25.go.jp/\"/></ruleset>", "<ruleset name=\"Japhub.com\" f=\"Japhub.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Japias.jp (partial)\" f=\"Japias.jp.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jappix.org\" default_off=\"failed ruleset test\" f=\"Jappix.org.xml\"><securecookie host=\"^jappix\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jappix (partial)\" default_off=\"failed ruleset test\" f=\"Jappix.xml\"><rule from=\"^http://(\\w+\\.)?jappix\\.com/\" to=\"https://$1jappix.com/\"/></ruleset>", "<ruleset name=\"Jaqpot.net\" default_off=\"self-signed\" f=\"Jaqpot.net.xml\"><securecookie host=\"^www\\.jaqpot\\.net$\" name=\".+\"/><rule from=\"^http://www\\.jaqpot\\.net/\" to=\"https://www.jaqpot.net/\"/></ruleset>", "<ruleset name=\"Jarian Gibson.com (false MCB)\" platform=\"mixedcontent\" f=\"Jarian_Gibson.com-falsemixed.xml\"><securecookie host=\"^\\.jariangibson.com$\" name=\".+\"/><rule from=\"^http://www\\.jariangibson\\.com/(?!\\?custom-css=1|favicon\\.ico)\" to=\"https://www.jariangibson.com/\"/></ruleset>", "<ruleset name=\"Jarian Gibson.com (partial)\" default_off=\"failed ruleset test\" f=\"Jarian_Gibson.com.xml\"><exclusion pattern=\"http://www\\.jariangibson\\.com/(?!\\?custom-css=1|favicon\\.ico)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jasig.org\" f=\"Jasig.org.xml\"><securecookie host=\"^(?:issues|wiki)?\\.jasig\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ja-?sig\\.org/[^?]*\" to=\"https://www.apereo.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jason Davies.com\" f=\"Jason_Davies.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jaspan.com (partial)\" default_off=\"failed ruleset test\" f=\"Jaspan.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?jaspan\\.com/+(?!sites/|themes/)\"/><rule from=\"^http://www\\.jaspan\\.com/\" to=\"https://jaspan.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Java.net (partial)\" default_off=\"failed ruleset test\" f=\"Java.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Java\" f=\"Java.xml\"><securecookie host=\"^(www\\.)?java\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JavaScriptKicks.com\" f=\"JavaScriptKicks.com.xml\"><rule from=\"^http://(?:www\\.)?javascriptkicks\\.com/\" to=\"https://javascriptkicks.com/\"/></ruleset>", "<ruleset name=\"JavaScriptMVC (partial)\" f=\"JavaScriptMVC.xml\"><securecookie host=\"^forum\\.javascriptmvc\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?javascriptmvc\\.com/(documentjs|imvc)/\" to=\"https://d3tkw0zqe07qze.cloudfront.net/$1/\"/><rule from=\"^http://forum\\.javascriptmvc\\.com/\" to=\"https://forum.javascriptmvc.com/\"/></ruleset>", "<ruleset name=\"Javacoolsoftware.com\" default_off=\"failed ruleset test\" f=\"Javacoolsoftware.com.xml\"><rule from=\"^http://(?:www\\.)?javacoolsoftware\\.com/\" to=\"https://www.javacoolsoftware.com/\"/><rule from=\"^http://licenses\\.javacoolsoftware\\.com/\" to=\"https://licenses.javacoolsoftware.com/\"/></ruleset>", "<ruleset name=\"Javadoc.io\" f=\"Javadoc.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Javelin Strategy.com\" f=\"Javelin_Strategy.com.xml\"><securecookie host=\"^(?:store|www)\\.javelinstrategy\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?javelinstrategy\\.com/\" to=\"https://www.javelinstrategy.com/\"/><rule from=\"^http://store\\.javelinstrategy\\.com/\" to=\"https://store.javelinstrategy.com/\"/></ruleset>", "<ruleset name=\"Javvin.com (partial)\" default_off=\"failed ruleset test\" f=\"Javvin.com.xml\"><rule from=\"^http://(www\\.)?javvin\\.com/(?=affiliate(?:$|[?/])|contact\\.(?:html|php)|favicon\\.ico|images/|(?:functions/verify_code|login|shopping_cart|submitterm|top_iframe)\\.php|pics/|stylesheet\\.css)\" to=\"https://$1javvin.com/\"/></ruleset>", "<ruleset name=\"Jawbone.com (partial)\" f=\"Jawbone.com.xml\"><exclusion pattern=\"^http://store\\.jawbone\\.com/(?!Admin/|DRHM/)\"/><securecookie host=\"^(?!store\\.).*\\.jawbone\\.com$\" name=\".+\"/><rule from=\"^http://((?:eu|forums|mytalk|store|thoughts|up|www)\\.)?jawbone\\.com/\" to=\"https://$1jawbone.com/\"/><rule from=\"^http://content\\.jawbone\\.com/\" to=\"https://d3osil7svxrrgt.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Jay Is Games.com (partial)\" f=\"Jay_Is_Games.com.xml\"><rule from=\"^http://(www\\.)?jayisgames\\.com/mt4/\" to=\"https://$1jayisgames.com/mt4/\"/></ruleset>", "<ruleset name=\"Jaymart.co.th\" f=\"Jaymart.co.th.xml\"><rule from=\"^http://(?:www\\.)?jaymart\\.co\\.th/\" to=\"https://www.jaymart.co.th/\"/></ruleset>", "<ruleset name=\"Jazz.co (partial)\" f=\"Jazz.co.xml\"><exclusion pattern=\"^http://careers\\.jazz\\.co/+(?!css/)\"/><securecookie host=\"^\\.?jazz\\.co$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"jazzy.id.au\" f=\"Jazzy.id.au.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"jba.io\" f=\"Jba.io.xml\"><rule from=\"^http://(?:www\\.)?jba\\.io/\" to=\"https://jba.io/\"/></ruleset>", "<ruleset name=\"Jbfavre.org\" f=\"Jbfavre.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"jbp.io\" f=\"Jbp.io.xml\"><securecookie host=\"^\\.jbp\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"jcea.es (partial)\" f=\"Jcea.es.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jcloud.com (partial)\" default_off=\"failed ruleset test\" f=\"Jcloud.com.xml\"><exclusion pattern=\"^http://i.jcloud.com/$\"/><exclusion pattern=\"^http://i.jcloud.com/(?!css|js)\"/><exclusion pattern=\"^http://jfs.jcloud.com/$\"/><rule from=\"^http://jfs\\.jcloud\\.com/(/assets|console|css|image|js)\" to=\"https://jfs.jcloud.com/$1\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JeKKT.com\" f=\"JeKKT.com.xml\"><securecookie host=\"^(?:www\\.)?jekkt\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"jeena.net\" f=\"Jeena.net.xml\"><securecookie host=\"^jeena\\.net$\" name=\".+\"/><rule from=\"^http://(?:(m\\.)|www\\.)?jeena\\.net/\" to=\"https://$1jeena.net/\"/></ruleset>", "<ruleset name=\"Jeep Tops Direct.com\" f=\"Jeep_Tops_Direct.com.xml\"><securecookie host=\"^\\.(?:www\\.)?jeeptopsdirect\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jeff Mitchell.me\" default_off=\"failed ruleset test\" f=\"Jeff_Mitchell.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jeff Nabers.com (false MCB)\" platform=\"mixedcontent\" f=\"Jeff_Nabers.com-falsemixed.xml\"><securecookie host=\"^\\.jeffnabers\\.com$\" name=\".+\"/><rule from=\"^http://www\\.jeffnabers\\.com/\" to=\"https://www.jeffnabers.com/\"/></ruleset>", "<ruleset name=\"Jeff Nabers.com (partial)\" f=\"Jeff_Nabers.com.xml\"><exclusion pattern=\"^http://www\\.jeffnabers\\.com/+(?!favicon\\.ico|wp-content/|wp-includes/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jeff Reifman.com (partial)\" f=\"Jeff_Reifman.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jeja.pl \" default_off=\"self-signed\" f=\"Jeja.pl.xml\"><securecookie host=\"^\\.jeja\\.pl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jellynote.com\" f=\"Jellynote.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jenkins-CI.org\" default_off=\"failed ruleset test\" f=\"Jenkins-CI.org.xml\"><securecookie host=\"^(?:ci|issues|svn|update|usage|wiki)?\\.jenkins-ci\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jenner.ac.uk\" f=\"Jenner.ac.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"jensge.org\" platform=\"cacert\" default_off=\"failed ruleset test\" f=\"Jensge.org.xml\"><rule from=\"^http://www\\.jensge\\.org/\" to=\"https://jensge.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jepso.com\" f=\"Jepso.com.xml\"><securecookie host=\"^\\.jepso\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JessFraz.com\" f=\"JessFraz.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jesse Ruderma\" f=\"JesseRuderman.xml\"><rule from=\"^http://([^/:@]*)\\.squarefree\\.com/\" to=\"https://$1.squarefree.com/\"/></ruleset>", "<ruleset name=\"Jet2.com\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Jet2.com.xml\"><rule from=\"^http://jet2\\.com/\" to=\"https://www.jet2.com/\"/><rule from=\"^http://(intranet|reservations|www)\\.jet2\\.com/\" to=\"https://$1.jet2.com/\"/></ruleset>", "<ruleset name=\"JetBrains.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"JetBrains.com-falsemixed.xml\"><exclusion pattern=\"^http://blogs\\.jetbrains\\.com/+(?!$|\\?)\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http://blogs\\.jetbrains\\.com/+\" to=\"https://blog.jetbrains.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JetBrains.com (partial)\" default_off=\"failed ruleset test\" f=\"JetBrains.xml\"><exclusion pattern=\"^http://info\\.jetbrains\\.com/+(?!css/|images/|rs/)\"/><exclusion pattern=\"^http://(?:dotnettools|resharper)-support\\.jetbrains\\.com/+(?!favicon\\.ico|images/|system/)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(dotnettools|resharper)-support\\.jetbrains\\.com/\" to=\"https://$1.zendesk.com/\"/><rule from=\"^http://info\\.jetbrains\\.com/\" to=\"https://na-lon02.marketo.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jethro Carr.com\" f=\"Jethro_Carr.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jetico.com\" default_off=\"failed ruleset test\" f=\"Jetico.com.xml\"><securecookie host=\"^\\.?www\\.jetico\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jewel Osco.com\" default_off=\"failed ruleset test\" f=\"Jewel_Osco.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JewishPress.com\" default_off=\"failed ruleset test\" f=\"JewishPress.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jezebel.com\" f=\"Jezebel.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JiWire (partial)\" default_off=\"failed ruleset test\" f=\"JiWire.xml\"><securecookie host=\"^v4\\.jiwire\\.com$\" name=\".+\"/><rule from=\"^http://(?:cms\\.|www\\.)?jiwire\\.com/\" to=\"https://www.jiwire.com/\"/><rule from=\"^http://(ads|api|tags|v4|wi-fi)\\.jiwire\\.com/\" to=\"https://$1.jiwire.com/\"/></ruleset>", "<ruleset name=\"JianGuoYun (partial)\" f=\"JianGuoYun.xml\"><exclusion pattern=\"^http://bbs\\.jianguoyun\\.com/(?!my-templates/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"jiasule.com\" f=\"Jiasule.com.xml\"><securecookie host=\"^(?:static|www)\\.jiasule\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jiffy Free Score.com\" f=\"Jiffy_Free_Score.com.xml\"><securecookie host=\"^(?:[w.]*\\.)?jiffyfreescore\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"jifo.co\" f=\"Jifo.co.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jigsaw (partial)\" f=\"Jigsaw.xml\"><securecookie host=\"^(?:www)?\\.jigsaw\\.com$\" name=\".+\"/><rule from=\"^http://((?:about|email|enterprise|static|www)\\.)?jigsaw\\.com/\" to=\"https://$1jigsaw.com/\"/><rule from=\"^http://community\\.jigsaw\\.com/\" to=\"https://jigsaw.i.lithium.com/\"/></ruleset>", "<ruleset name=\"Jim static.com\" default_off=\"failed ruleset test\" f=\"Jim_static.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jimdo.com (partial)\" default_off=\"failed ruleset test\" f=\"Jimdo.xml\"><securecookie host=\"^(?:a|webmail|www51)\\.jimdo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jimg.dk\" default_off=\"failed ruleset test\" f=\"Jimg.dk.xml\"><rule from=\"^http://((?:i[123]|www|z)\\.)?jimg\\.dk/\" to=\"https://$1jimg.dk/\"/></ruleset>", "<ruleset name=\"Jingwei.com (partial)\" default_off=\"expired\" f=\"Jingwei.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jino.ru\" f=\"Jino.ru.xml\"><securecookie host=\"^\\.jino\\.ru$\" name=\"^(?:csrftoken|sid)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jinx.com (partial)\" platform=\"mixedcontent\" f=\"Jinx.com.xml\"><exclusion pattern=\"^http://www\\.jinx\\.com/(?!create\\.|design_contest(?:_info)?\\.|log(?:in|out)\\.).+\\.aspx\"/><rule from=\"^http://(www\\.)?jinx\\.com/home\\.aspx($|\\?.*)\" to=\"https://$1jinx.com/$2\"/><rule from=\"^http://(www\\.)?jinx\\.com/\" to=\"https://$1jinx.com/\"/></ruleset>", "<ruleset name=\"Jisc.ac.uk\" f=\"Jisc.ac.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"jit.su\" default_off=\"failed ruleset test\" f=\"Jit.su.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jitbit.com\" f=\"Jitbit.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jitscale.com (false MCB)\" platform=\"mixedcontent\" f=\"Jitscale.com-falsemixed.xml\"><securecookie host=\".*\\.jitscale\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jitscale.com (partial)\" f=\"Jitscale.com.xml\"><rule from=\"^http://cdn3\\.jitscale\\.com/\" to=\"https://d2ve2fyg0zf8xm.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Jitsi.org\" f=\"Jitsi.org.xml\"><securecookie host=\"^(?:download\\.)?jitsi\\.org$\" name=\".*\"/><securecookie host=\"^(?:meet)?(?:\\.)?jit\\.si$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jive.com\" default_off=\"missing certificate chain\" f=\"Jive.com.xml\"><rule from=\"^http://(?:www\\.)?(?:get)?jive\\.com/\" to=\"https://jive.com/\"/></ruleset>", "<ruleset name=\"Jive Software.com\" f=\"Jive_Software.com.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://feeds\\.jivesoftware\\.com/$\" to=\"https://feedburner.google.com/fb/a/home\"/><rule from=\"^http://feeds\\.jivesoftware\\.com/\" to=\"https://feeds.feedburner.com/\"/><rule from=\"^http://trust\\.jivesoftware\\.com/[^?]*\" to=\"https://www.jivesoftware.com/trust-security/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jiveon.com\" f=\"Jiveon.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://jiveon\\.com/+\" to=\"https://login.jiveon.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"jslinterrors.com\" default_off=\"failed ruleset test\" f=\"Jjslinterrors.com.xml\"><securecookie host=\"^(www\\.)?jslinterrors\\.com\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"jms1.net\" f=\"Jms1.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JoCo Cruise.com\" f=\"JoCo_Cruise.com.xml\"><securecookie host=\"^(?:www\\.)?jococruise\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JobMatch (partial)\" f=\"JobMatch.xml\"><exclusion pattern=\"^http://www\\.\"/><rule from=\"^http://([^\\.]+)\\.iapplicants\\.com/i(mag|nclud)es/\" to=\"https://$1.iapplicants.com/i$2es/\"/></ruleset>", "<ruleset name=\"jobScore.com (partial)\" f=\"JobScore.xml\"><securecookie host=\"^(?:www\\.)?jobscore\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jobscout24\" platform=\"mixedcontent\" f=\"JobScout24.xml\"><rule from=\"^http://(?:www\\.)?jobscout24\\.de/\" to=\"https://www.jobscout24.de/\"/></ruleset>", "<ruleset name=\"JobThread clients\" default_off=\"mismatched\" f=\"JobThread-clients.xml\"><exclusion pattern=\"^http://jobs\\.linux\\.com/(?:image|file|partner)s/\"/><rule from=\"^http://jobs\\.linux\\.com/\" to=\"https://jobs.linux.com/\"/></ruleset>", "<ruleset name=\"JobThread\" f=\"JobThread.xml\"><exclusion pattern=\"^http://static\\.jobthread\\.com/(?!partners/jobthread/images/)\"/><rule from=\"^http://(?:static\\.|(www\\.))?jobthread\\.com/\" to=\"https://$1jobthread.com/\"/></ruleset>", "<ruleset name=\"Job a matic.com\" default_off=\"failed ruleset test\" f=\"Job_a_matic.com.xml\"><securecookie host=\"^\\.jobamatic\\.com$\" name=\"^__qca$\"/><securecookie host=\"^www\\.jobamatic\\.com$\" name=\".*\"/><rule from=\"^http://([\\w-]+\\.)?jobamatic\\.com/\" to=\"https://$1jobamatic.com/\"/></ruleset>", "<ruleset name=\"Jobbik (partial)\" f=\"Jobbik.xml\"><rule from=\"^http://(?:www\\.)?jobbik\\.hu/sites/\" to=\"https://jobbik.hu/sites/\"/></ruleset>", "<ruleset name=\"Jobfinder.dk\" f=\"Jobfinder.dk.xml\"><rule from=\"^http://(www\\.)?jobfinder\\.dk/\" to=\"https://www.jobfinder.dk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jobindex.dk\" f=\"Jobindex.dk.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jobs2Web\" default_off=\"failed ruleset test\" f=\"Jobs2Web.xml\"><securecookie host=\"^(?:.*\\.)?jobs2web\\.com$\" name=\".+\"/><rule from=\"^http://([\\w-]+\\.)?jobs2web\\.com/\" to=\"https://$1jobs2web.com/\"/></ruleset>", "<ruleset name=\"Jobs at OSU.com\" f=\"Jobs_at_OSU.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://jobsatosu\\.com/\" to=\"https://www.jobsatosu.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"jobsgopublic.com (partial)\" f=\"Jobsgopublic.com.xml\"><rule from=\"^http://(poweredby\\.|www\\.)?jobsgopublic\\.com/(account(?:$|\\?|/)|assets/|icons/|javascripts/|sites/)\" to=\"https://$1jobsgopublic.com/$2\"/></ruleset>", "<ruleset name=\"Jobsite.com\" default_off=\"failed ruleset test\" f=\"Jobsite.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jobvite (partial)\" default_off=\"failed ruleset test\" f=\"Jobvite.xml\"><exclusion pattern=\"^http://app\\.jobvite\\.com/CompanyJobs/Careers\\.aspx\"/><exclusion pattern=\"^http://web\\.jobvite\\.com/(?!css/|images/|rs/)\"/><securecookie host=\"^\\.\" name=\"^(?:_ga|optimizely)\"/><securecookie host=\"^(?!web\\.)\\w\" name=\".\"/><rule from=\"^http://web\\.jobvite\\.com/\" to=\"https://na-aba.marketo.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jobware.de\" f=\"Jobware.de.xml\"><rule from=\"^http://www\\.jobware\\.de/\" to=\"https://www.jobware.de/\"/></ruleset>", "<ruleset name=\"Jobzonen (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Jobzonen.xml\"><rule from=\"^http://(www\\.)?jobzonen\\.dk/\" to=\"https://www.jobzonen.dk/\"/><rule from=\"^http://arbejdsgiver\\.jobzonen\\.dk/\" to=\"https://arbejdsgiver.jobzonen.dk/\"/></ruleset>", "<ruleset name=\"Jochen-Hoenicke.de\" f=\"Jochen-Hoenicke.de.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jodel-app.com\" default_off=\"expired certificate\" f=\"Jodel-app.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JodoHost (partial)\" f=\"JodoHost.xml\"><securecookie host=\"^(?:www\\.)?support\\.jodohost\\.com$\" name=\".+\"/><securecookie host=\"^lcsrv1\\.myhsphere\\.biz$\" name=\".+\"/><rule from=\"^http://cp\\.gohsphere\\.com/\" to=\"https://cp.gohsphere.com/\"/><rule from=\"^http://(www\\.)?support\\.jodohost\\.com/\" to=\"https://$1support.jodohost.com/\"/><rule from=\"^http://lcsrv1\\.myhsphere\\.biz/\" to=\"https://lcsrv1.myhsphere.biz/\"/></ruleset>", "<ruleset name=\"JoeyH.name\" f=\"JoeyH.name.xml\"><securecookie host=\"^joeyh\\.name$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jogorama.com.br\" f=\"Jogorama.com.br.xml\"><securecookie host=\"^jogorama\\.com\\.br$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"John Rennie.net\" f=\"JohnRennie.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"johnlewis.ie\" f=\"Johnlewis.ie.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Johns Hopkins.edu (partial)\" f=\"Johns_Hopkins.edu.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^(?!\\.johnshopkins\\.edu$).\" name=\".\"/><rule from=\"^http://www\\.it\\.johnshopkins\\.edu/\" to=\"https://it.johnshopkins.edu/\"/><rule from=\"^http://www\\.johnshopkins\\.edu/.*\" to=\"https://www.jhu.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Johnson King\" default_off=\"mismatched\" f=\"Johnson-King.xml\"><securecookie host=\"^(?:.*\\.)?johnsonking\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?johnsonking\\.com/\" to=\"https://www.johnsonking.com/\"/></ruleset>", "<ruleset name=\"Johnson Press (partial)\" default_off=\"failed ruleset test\" f=\"Johnson_Press.xml\"><securecookie host=\"^mobilecontrol\\.jpress\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://secure\\.johnstonpress\\.co\\.uk/\" to=\"https://secure.johnstonpress.co.uk/\"/><rule from=\"^http://remote\\.jpress\\.co\\.uk/\" to=\"https://remote.jpress.co.uk/\"/></ruleset>", "<ruleset name=\"Johoobuy.com\" default_off=\"failed ruleset test\" f=\"Johoobuy.com.xml\"><securecookie host=\"^www\\.johoobuy\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?johoobuy\\.com/\" to=\"https://www.johoobuy.com/\"/></ruleset>", "<ruleset name=\"Join.TV\" f=\"Join.TV.xml\"><securecookie host=\"^(?:www)?\\.join\\.tv$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"join.me (partial)\" f=\"Join.me.xml\"><securecookie host=\"^(?:secure\\.)?join\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JoinUs.Today\" default_off=\"failed ruleset test\" f=\"JoinUs.Today.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Joinos.com\" default_off=\"failed ruleset test\" f=\"Joinos.com.xml\"><securecookie host=\"^my\\.joinos\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Joker\" f=\"Joker.xml\"><rule from=\"^http://([^/:@]*\\.)?joker\\.com/\" to=\"https://$1joker.com/\"/></ruleset>", "<ruleset name=\"jolexa.net\" f=\"Jolexa.net.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jolla.com\" f=\"Jolla.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JonDos\" default_off=\"failed ruleset test\" f=\"JonDos.xml\"><securecookie host=\"^(?:.*\\.)?anonym(?:ous-proxy-servers\\.net|-surfen\\.de)$\" name=\".*\"/><rule from=\"^http://(www\\.)?anonym-surfen\\.de/\" to=\"https://$1anonym-surfen.de/\"/><rule from=\"^http://(\\w+\\.)?anonymous-proxy-servers\\.net/\" to=\"https://$1anonymous-proxy-servers.net/\"/><rule from=\"^http://(www\\.)?jondos\\.org/\" to=\"https://$1jondos.org/\"/></ruleset>", "<ruleset name=\"Jonathan Mayer.org\" f=\"Jonathan_Mayer.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Joomag.com (partial)\" f=\"Joomag.com.xml\"><securecookie host=\"^\\.joomag\\.com$\" name=\".+\"/><rule from=\"^http://(s1\\.|www\\.)?joomag\\.com/\" to=\"https://$1joomag.com/\"/><rule from=\"^http://static\\.joomag\\.com/\" to=\"https://d25ow0ysq5ykrj.cloudfront.net/\"/></ruleset>", "<ruleset name=\"JoomlArt.com (partial)\" f=\"JoomlArt.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?joomlart\\.com/(?!favicon\\.ico|images/|media/|member(?:$|[?/])|modules/|plugins/|t3-assets/|templates/)\"/><rule from=\"^http://(?:asset\\.|(www\\.))?joomlart\\.com/\" to=\"https://$1joomlart.com/\"/></ruleset>", "<ruleset name=\"Joomla.org (partial)\" f=\"Joomla.xml\"><exclusion pattern=\"^http://extensions\\.joomla\\.org/+(?!components/|favicon\\.ico|images/|modules/|templates/)\"/><exclusion pattern=\"^http://ideas\\.joomla\\.org/(?!track\\.gif)\"/><securecookie host=\"(?:community|events|magazine|resources|shop|vel|www)\\.joomla\\.org$\" name=\".+\"/><rule from=\"^http://ideas\\.joomla\\.org/\" to=\"https://joomla.uservoice.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JoomlaCode.org\" default_off=\"expired, self-signed\" f=\"JoomlaCode.org.xml\"><securecookie host=\"^joomlacode\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?joomlacode\\.org/\" to=\"https://joomlacode.org/\"/></ruleset>", "<ruleset name=\"Joomlancers.com\" default_off=\"expired, self-signed\" f=\"Joomlancers.com.xml\"><securecookie host=\"^www\\.joomlancers\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?joomlancers\\.com/\" to=\"https://www.joomlancers.com/\"/></ruleset>", "<ruleset name=\"Josefsson.org\" f=\"Josefsson.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Joseph Rowntree Reform Trust (mismatches)\" default_off=\"mismatched\" f=\"Joseph-Rowntree-Reform-Trust-mismatches.xml\"><exclusion pattern=\"^http://(?:www\\.)?jrrt\\.org\\.uk/sites/\"/><securecookie host=\"^\\.jrrt\\.org\\.uk$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?jrrt\\.org\\.uk/\" to=\"https://jrrt.org.uk/\"/></ruleset>", "<ruleset name=\"Joseph Rowntree Reform Trust (partial)\" f=\"Joseph-Rowntree-Reform-Trust.xml\"><rule from=\"^http://(?:www\\.)?jrrt\\.org\\.uk/sites/\" to=\"https://bigchangeuk.co.uk/sites/\"/></ruleset>", "<ruleset name=\"Josh Begley.com\" f=\"Josh_Begley.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Joslin Diabetes Center\" platform=\"mixedcontent\" f=\"Joslin-Diabetes-Center.xml\"><rule from=\"^http://(?:www\\.)?joslin\\.org/\" to=\"https://www.joslin.org/\"/></ruleset>", "<ruleset name=\"JotForm\" f=\"JotForm.xml\"><securecookie host=\"^(?:w*\\.)?jotform\\.com$\" name=\".+\"/><rule from=\"^http://max\\.jotfor\\.ms/\" to=\"https://static-interlogyllc.netdna-ssl.com/\"/><rule from=\"^http://(?:www\\.)?jotform\\.com/\" to=\"https://www.jotform.com/\"/><rule from=\"^http://(secure\\.|www\\.)?jotformpro\\.com/\" to=\"https://$1jotformpro.com/\"/></ruleset>", "<ruleset name=\"Jotform.us\" f=\"Jotform.us.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jottit\" f=\"Jottit.com.xml\"><rule from=\"^http://jottit\\.com/\" to=\"https://www.jottit.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Journal-News.net (mismatched)\" default_off=\"mismatched\" f=\"Journal-News.net-problematic.xml\"><securecookie host=\"^mobile\\.journal-news\\.net$\" name=\".+\"/><rule from=\"^http://(cu|mobile)\\.journal-news\\.net/\" to=\"https://$1.journal-news.net/\"/></ruleset>", "<ruleset name=\"Journal-News.net (partial)\" f=\"Journal-News.net.xml\"><securecookie host=\"^www\\.journal-news\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?journal-news\\.net/\" to=\"https://www.journal-news.net/\"/></ruleset>", "<ruleset name=\"Journal of Bodywork and Movement Therapies\" default_off=\"mismatched\" f=\"Journal-of-Bodywork-and-Movement-Therapies.xml\"><securecookie host=\"\\.bodyworkmovementtherapies\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?bodyworkmovementtherapies\\.com/\" to=\"https://bodyworkmovementtherapies.com/\"/></ruleset>", "<ruleset name=\"Journal of Neurosurgery (partial)\" f=\"Journal-of-Neurosurgery.xml\"><rule from=\"^http://(?:www\\.)?thejns\\.org/(action/(?:clickThrough|registration)|templates/|userimages/)\" to=\"https://thejns.org/$1\"/></ruleset>", "<ruleset name=\"JournalXtra.com\" f=\"JournalXtra.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Journal of Affective Disorders\" default_off=\"mismatched\" f=\"Journal_of_Affective_Disorders.xml\"><securecookie host=\"^\\.jad-journal\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?jad-journal\\.com/\" to=\"https://jad-journal.com/\"/></ruleset>", "<ruleset name=\"Journal of Clinical Investigation (partial)\" f=\"Journal_of_Clinical_Investigation.xml\"><securecookie host=\"^\\.jci\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"journalism.co.uk\" f=\"Journalism.co.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Journalistforbundet.dk\" f=\"Journalistforbundet.dk.xml\"><securecookie host=\"\\.?journalistforbundet\\.dk\" name=\".+\"/><rule from=\"^http://(www\\.)?journalistforbundet\\.dk/\" to=\"https://journalistforbundet.dk/\"/></ruleset>", "<ruleset name=\"Journeyed\" f=\"Journeyed.com.xml\"><rule from=\"^http://(?:www\\.)?journeyed\\.com/\" to=\"https://www.journeyed.com/\"/></ruleset>", "<ruleset name=\"Joyclub.de\" f=\"Joyclub.de.xml\"><rule from=\"^http://(?:www\\.)?joyclub\\.de/\" to=\"https://www.joyclub.de/\"/></ruleset>", "<ruleset name=\"Joyent.com (partial)\" f=\"Joyent.xml\"><exclusion pattern=\"^http://lpage\\.joyent\\.com/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http://([\\w-]+\\.)?joyent\\.com/\" to=\"https://$1joyent.com/\"/></ruleset>", "<ruleset name=\"Joyent Cloud.com (partial)\" default_off=\"failed ruleset test\" f=\"Joyent_Cloud.com.xml\"><rule from=\"^http://www\\.joyentcloud\\.com/+\" to=\"https://www.joyent.com/\"/><rule from=\"^http://((?:[\\w-]+\\.)?api|my)\\.joyentcloud\\.com/\" to=\"https://$1.joyentcloud.com/\"/></ruleset>", "<ruleset name=\"jpfox.fr (partial)\" f=\"Jpfox.fr.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jpopsuki.eu\" f=\"Jpopsuki.eu.xml\"><rule from=\"^http:\" to=\"https:\"/><securecookie host=\"^\\.?jpopsuki\\.eu$\" name=\".+\"/></ruleset>", "<ruleset name=\"Jpost.com (partial)\" f=\"Jpost.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"jsDelivr.net\" default_off=\"failed ruleset test\" f=\"JsDelivr.net.xml\"><securecookie host=\"^\\.jsdelivr\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"jsPerf.com\" f=\"JsPerf.com.xml\"><securecookie host=\"^\\.?jsperf\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"jsUOL.com.br\" f=\"JsUOL.com.br.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jsclasses.org\" platform=\"mixedcontent\" f=\"Jsclasses.org.xml\"><rule from=\"^http://(www\\.)?jsclasses\\.net/\" to=\"https://$1jsclasses.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"jtlebi.fr\" f=\"Jtlebi.fr.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://jtlebi\\.fr/\" to=\"https://www.jtlebi.fr/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jubii.dk (problematic)\" default_off=\"mismatched\" f=\"Jubii.dk-problematic.xml\"><securecookie host=\"^www\\.jubii\\.dk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?jubii\\.dk/\" to=\"https://www.jubii.dk/\"/></ruleset>", "<ruleset name=\"Jubii.dk (partial)\" f=\"Jubii.dk.xml\"><rule from=\"^http://konto\\.jubii\\.dk/\" to=\"https://konto.jubii.dk/\"/><rule from=\"^http://support\\.jubii\\.dk/(?=favicon\\.ico|generated/|images/|system/)\" to=\"https://jubii.zendesk.com/\"/></ruleset>", "<ruleset name=\"Judge.me\" default_off=\"mismatched\" f=\"Judge.me.xml\"><securecookie host=\"^www\\.judge\\.me$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?judge\\.me/\" to=\"https://www.judge.me/\"/></ruleset>", "<ruleset name=\"Judici\" f=\"Judici.xml\"><securecookie host=\"^(?:www\\.)?judici\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Judicial Watch\" default_off=\"failed ruleset test\" f=\"Judicial_Watch.xml\"><securecookie host=\"^\\.judicialwatch\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Judiciary of England and Wales (partial)\" f=\"Judiciary_of_England_and_Wales.xml\"><securecookie host=\"^www\\.judiciary\\.gov\\.uk$\" name=\".+\"/><rule from=\"^http://(ojc|www)\\.judiciary\\.gov\\.uk/\" to=\"https://$1.judiciary.gov.uk/\"/></ruleset>", "<ruleset name=\"Jugendschutzprogramm.de\" f=\"Jugendschutzprogramm.de.xml\"><rule from=\"^http://www\\.jugendschutzprogramm\\.de/\" to=\"https://www.jugendschutzprogramm.de/\"/></ruleset>", "<ruleset name=\"Jugger.ru\" f=\"Jugger.ru.xml\"><securecookie host=\"^(?:www\\.)?jugger\\.ru$\" name=\".+\"/><rule from=\"^http://(s[12]\\.|www\\.)?jugger\\.ru/\" to=\"https://$1jugger.ru/\"/></ruleset>", "<ruleset name=\"Juicer.io (partial)\" f=\"Juicer.io.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JuicyAds.com (partial)\" f=\"JuicyAds.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JuicyCanvas.com\" default_off=\"failed ruleset test\" f=\"JuicyCanvas.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Juju charms.com\" f=\"Juju_charms.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Julia Reda.eu\" f=\"Julia_Reda.eu.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"juliar\" f=\"Juliar.xml\"><rule from=\"^http:\" to=\"https:\"/><securecookie host=\"^juliar\\.org$\" name=\".+\"/></ruleset>", "<ruleset name=\"Julieannenoying\" f=\"Julieannenoying.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jumio\" default_off=\"failed ruleset test\" f=\"Jumio.xml\"><securecookie host=\"^(?:.+\\.)?(?:jumio|netswipe)\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?(?:jumio|netswipe)\\.com/\" to=\"https://netswipe.com/\"/><rule from=\"^http://(pay|static)\\.(jumio|netswipe)\\.com/\" to=\"https://$1.$2.com/\"/></ruleset>", "<ruleset name=\"JumpTime.com (partial)\" f=\"JumpTime.com.xml\"><rule from=\"^http://beacon\\.jumptime\\.com/\" to=\"https://d70783jehyk3d.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Jumpeye Components.com (partial)\" f=\"Jumpeye_Components.com.xml\"><exclusion pattern=\"^http://www\\.jumpeyecomponents\\.com/+(?!css/|favicon\\.ico|images/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JumpingJack\" default_off=\"failed ruleset test\" f=\"JumpingJack.xml\"><securecookie host=\"^jumpingjack\\.com$\" name=\".+\"/><rule from=\"^http://images\\.jitsmart\\.com/\" to=\"https://images.jitsmart.com/\"/><rule from=\"^http://(media\\.|www\\.)?jumpingjack\\.com/\" to=\"https://$1jumpingjack.com/\"/></ruleset>", "<ruleset name=\"Jumpline.com (partial)\" f=\"Jumpline.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jumptap\" f=\"Jumptap.xml\"><exclusion pattern=\"^http://(?:db02|dine|reporting).jumptap.com\"/><rule from=\"^http://([^@:/]*)\\.jumptap\\.com/\" to=\"https://$1.jumptap.com/\"/></ruleset>", "<ruleset name=\"June oven.com (partial)\" f=\"June_oven.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Junge-Piraten.de\" default_off=\"failed ruleset test\" f=\"Junge-Piraten.de.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Junglee.com (partial)\" f=\"Junglee.com.xml\"><exclusion pattern=\"^http://www\\.junglee\\.com/+(?!favicon\\.ico|mn/search/uedata/)\"/><securecookie host=\"^\\.junglee\\.com$\" name=\"^cpa-blogs-(?:session-id|session-id-time|ubid-main)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Juniper Research\" default_off=\"failed ruleset test\" f=\"Juniper-Research.xml\"><securecookie host=\"^(?:www\\.)?juniperresearch\\.com$\" name=\".*\"/><rule from=\"^http://(www\\.)?juniperresearch\\.com/\" to=\"https://$1junipersearch.com/\"/></ruleset>", "<ruleset name=\"Juniper.net (partial)\" f=\"JuniperNetworks.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://juniper\\.net/\" to=\"https://www.juniper.net/\"/><rule from=\"^http://advisory\\.juniper\\.net/.*\" to=\"https://kb.juniper.net/InfoCenter/index?page=content&channel=SECURITY_ADVISORIES\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Juno.com\" f=\"Juno.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JunoDownload\" f=\"JunoDownload.xml\"><rule from=\"^http://(?:www\\.)?junodownload\\.com/\" to=\"https://www.junodownload.com/\"/><rule from=\"^http://secure\\.junodownload\\.com/\" to=\"https://secure.junodownload.com/\"/><exclusion pattern=\"^http://www\\.junodownload\\.com/crossdomain\\.xml$\"/><exclusion pattern=\"^http://www\\.junodownload\\.com/api/.+/track/dostream\"/><exclusion pattern=\"^http://(?:www\\.)?junodownload\\.com/plus/\"/><exclusion pattern=\"^http://(?:www\\.)?junodownload\\.com/search/\"/></ruleset>", "<ruleset name=\"JunoRecords\" f=\"JunoRecords.xml\"><exclusion pattern=\"^http://www\\.juno\\.co\\.uk/crossdomain\\.xml$\"/><rule from=\"^http://(www\\.|secure\\.)?juno\\.co\\.uk/\" to=\"https://$1juno.co.uk/\"/><rule from=\"^http://(?:www\\.)?junostatic\\.com/\" to=\"https://static.juno.co.uk/\"/><rule from=\"^http://(?:image|cm)s\\.junostatic\\.com/\" to=\"https://images.juno.co.uk/\"/></ruleset>", "<ruleset name=\"Jupiter Artland.org\" default_off=\"failed ruleset test\" f=\"Jupiter_Artland.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jupyter.org\" f=\"Jupyter.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jusek.se\" f=\"Jusek.se.xml\"><rule from=\"^http://jusek\\.se/\" to=\"https://www.jusek.se/\"/><rule from=\"^http://www\\.jusek\\.se/\" to=\"https://www.jusek.se/\"/></ruleset>", "<ruleset name=\"Jussieu.fr (self-signed)\" default_off=\"self-signed\" f=\"Jussieu.fr-problematic.xml\"><rule from=\"^http://distrib-coffee\\.ipsl\\.jussieu\\.fr/\" to=\"https://distrib-coffee.ipsl.jussieu.fr/\"/></ruleset>", "<ruleset name=\"Jussieu.fr (partial)\" default_off=\"failed ruleset test\" f=\"Jussieu.fr.xml\"><rule from=\"^http://forge\\.ipsl\\.jussieu\\.fr/\" to=\"https://forge.ipsl.jussieu.fr/\"/></ruleset>", "<ruleset name=\"Just Develop It (partial)\" default_off=\"failed ruleset test\" f=\"Just-Develop-It.xml\"><exclusion pattern=\"^http://reviews\\.justhost\\.\"/><securecookie host=\"^(?:.*\\.)?intellichat\\.com$\" name=\".*\"/><securecookie host=\"^(?:.*\\.)?justhost\\.com$\" name=\".*\"/><securecookie host=\"^(?:.*\\.)?my(?:chatagent|pcbackup)\\.com$\" name=\".*\"/><securecookie host=\"^(?:.*\\.)?zipcloud\\.com$\" name=\".*\"/><rule from=\"^http://(\\w+\\.)?intellichat\\.com/\" to=\"https://$1intellchat.com/\"/><rule from=\"^http://(\\w+\\.)?zipcloud\\.com/\" to=\"https://$1zipcloud.com/\"/><rule from=\"^http://(\\w+\\.)?justhost\\.com/\" to=\"https://$1justhost.com/\"/><rule from=\"^http://(\\w+\\.)?my(chatagent|pcbackup)\\.com/\" to=\"https://$1my$2.com/\"/><rule from=\"^http://mymerchantguard\\.com/\" to=\"https://mymerchantguard.com/\"/></ruleset>", "<ruleset name=\"JustApple.com\" f=\"JustApple.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JustGive\" f=\"JustGive.org.xml\"><securecookie host=\"^amex\\.justgive\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JustGiving.com (partial)\" default_off=\"failed ruleset test\" f=\"JustGiving.xml\"><exclusion pattern=\"^http://marketo\\.justgiving\\.com/css/marketo-2\\.css\"/><exclusion pattern=\"^http://pages\\.justgiving\\.com/(?!/*(?:$|\\?|css/|images/|rs/))\"/><securecookie host=\"^(?!pages\\.).\" name=\".\"/><rule from=\"^http://marketo\\.justgiving\\.com/\" to=\"https://s3-eu-west-1.amazonaws.com/marketo.justgiving.com/\"/><rule from=\"^http://pages\\.justgiving\\.com/+(?:\\?.*)?$\" to=\"https://justgiving.com/\"/><rule from=\"^http://pages\\.justgiving\\.com/\" to=\"https://na-lon02.marketo.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JustTomatoes.com\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"JustTomatoes.com.xml\"><rule from=\"^http://(?:www\\.)?justtomatoes\\.com/\" to=\"https://www.justtomatoes.com/\"/></ruleset>", "<ruleset name=\"Just Security.org\" f=\"Just_Security.org.xml\"><rule from=\"^http://justsecurity\\.org/\" to=\"https://www.justsecurity.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Justaguy.pw\" default_off=\"failed ruleset test\" f=\"Justaguy.pw.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Justia (partial)\" platform=\"mixedcontent\" f=\"Justia.xml\"><securecookie host=\"^.*\\.justia\\.com$\" name=\".*\"/><rule from=\"^http://((?:accounts|answers|blawgsearch|blawgsfm|daily|dockets|docs|law|lawyers|marketing|supreme|www)\\.)?justia\\.com/\" to=\"https://$1justia.com/\"/><rule from=\"^http://(?:www\\.)?blogs\\.justia\\.com/\" to=\"https://marketing.justia.com/content-lawyer-blogs.html\"/><rule from=\"^http://(clientvideos|profile-images|statecasefiles|static)\\.justia\\.com/\" to=\"https://s3.amazonaws.com/$1.justia.com/\"/></ruleset>", "<ruleset name=\"mail.justice.com\" default_off=\"failed ruleset test\" f=\"JusticeMail.xml\"><securecookie host=\"^(?:.+\\.)?justice\\.com$\" name=\".*\"/><rule from=\"^http://mail\\.justice\\.com/\" to=\"https://mail.justice.com/\"/></ruleset>", "<ruleset name=\"Justmoon.net\" f=\"Justmoon.net.xml\"><rule from=\"^http://(?:www\\.)?justmoon\\.net/\" to=\"https://justmoon.net/\"/></ruleset>", "<ruleset name=\"JWPsrv.com\" f=\"Jwpsrv.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"jxself.org\" f=\"Jxself.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jyllands-Posten.dk\" f=\"Jyllands-Posten.dk.xml\"><exclusion pattern=\"^http://jyllands-posten\\.dk/proxy/cdb/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"K2s.cc\" f=\"K2s.cc.xml\"><rule from=\"^http://(?:www\\.)?k2s\\.cc/\" to=\"https://k2s.cc/\"/><rule from=\"^http://(?:www\\.)?keep2share\\.cc/\" to=\"https://k2s.cc/\"/></ruleset>", "<ruleset name=\"KAKAO\" default_off=\"failed ruleset test\" f=\"KAKAO.xml\"><rule from=\"^http://(?:www\\.)?kakao\\.com/\" to=\"https://www.kakao.com/\"/></ruleset>", "<ruleset name=\"KASserver.com\" f=\"KASserver.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KAU.se (problematic)\" default_off=\"mismatched, self-signed\" platform=\"mixedcontent\" f=\"KAU.se-problematic.xml\"><securecookie host=\"^\\.narvi\\.sae\\.kau\\.se$\" name=\".+\"/><rule from=\"^http://(itsakhandbok\\.irt|narvi\\.sae)\\.kau\\.se/\" to=\"https://$1.kau.se/\"/></ruleset>", "<ruleset name=\"KAU.se\" f=\"KAU.se.xml\"><securecookie host=\"^(?:cas|\\.film|sp)\\.kau\\.se$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?kau\\.se/\" to=\"https://www.kau.se/\"/><rule from=\"^http://www\\.bib\\.kau\\.se/(?:\\?.*)?$\" to=\"https://www.kau.se/bibliotek\"/><rule from=\"^http://(cas|film|sycorax\\.(?:sae|web)|sp|www3)\\.kau\\.se/\" to=\"https://$1.kau.se/\"/><rule from=\"^http://www\\.cs\\.kau\\.se/(\\?.*)?$\" to=\"https://www.kau.se/$1\"/><rule from=\"^http://www\\.nxt\\.kau\\.se/[^\\?]*(\\?.*)?$\" to=\"https://www.kau.se/nxt$1\"/></ruleset>", "<ruleset name=\"KBC.com\" f=\"KBC.com.xml\"><rule from=\"^http://(?:www\\.)?kbc\\.com/\" to=\"https://www.kbc.com/\"/></ruleset>", "<ruleset name=\"KBPublisher.com (false MCB)\" platform=\"mixedcontent\" f=\"KBPublisher.com-falsemixed.xml\"><securecookie host=\"^www\\.kbpublisher\\.com$\" name=\".+\"/><rule from=\"^http://www\\.kbpublisher\\.com/(?!captcha\\.php|client/|css/|favicon\\.ico|images/|(?:login|password|signup)(?:$|[?/])|site/)\" to=\"https://www.kbpublisher.com/\"/></ruleset>", "<ruleset name=\"KBPublisher.com (partial)\" f=\"KBPublisher.com.xml\"><exclusion pattern=\"^http://www\\.kbpublisher\\.com/(?!captcha\\.php|client/|css/|favicon\\.ico|images/|(?:login|password|signup)(?:$|[?/])|site/)\"/><securecookie host=\"^\\.kbpublisher\\.com$\" name=\"^__utm\\w+$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KCC.digital\" f=\"KCC.digital.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KCC Media Hub.net\" f=\"KCC_Media_Hub.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KCVids\" default_off=\"failed ruleset test\" f=\"KCVids.xml\"><securecookie host=\"^\\.?kcvids\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KD2.us\" default_off=\"failed ruleset test\" f=\"KD2.us.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KDAB\" f=\"KDAB.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KDE-Look.org\" f=\"KDE-Look.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KDE-apps.org\" f=\"KDE-apps.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KDE.org (partial)\" default_off=\"failed ruleset test\" f=\"KDE.xml\"><exclusion pattern=\"^http://files\\.kde\\.org/(?:$|.+/$|.+\\.(?:btih|magnet|md5|meta4|metalink|mirrorlist|sha1|sha256|torrent)$)\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KEMI.se\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"KEMI.se.xml\"><rule from=\"^http://www\\.kemi\\.se/\" to=\"https://www.kemi.se/\"/><rule from=\"^http://kemi\\.se/\" to=\"https://kemi.se/\"/></ruleset>", "<ruleset name=\"KF Webs.net\" default_off=\"self-signed\" f=\"KF_Webs.net.xml\"><securecookie host=\"^www\\.kfwebs\\.net$\" name=\".+\"/><rule from=\"^http://(?:www2?\\.)?kfwebs\\.net/\" to=\"https://www.kfwebs.net/\"/></ruleset>", "<ruleset name=\"KGNB.am\" f=\"KGNB.am.xml\"><securecookie host=\"^\\.kgnb\\.am$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"K&H Bank (HU)\" default_off=\"failed ruleset test\" f=\"KH.hu.xml\"><rule from=\"^http://www\\.szepkartya\\.kh\\.hu/\" to=\"https://szepkartya.kh.hu/\"/><rule from=\"^http://khb\\.hu/\" to=\"https://www.khb.hu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KHN.nl (partial)\" f=\"KHN.nl.xml\"><securecookie host=\"^ox\\.khn\\.nl$\" name=\".+\"/><rule from=\"^http://ox\\.khn\\.nl/\" to=\"https://ox.khn.nl/\"/></ruleset>", "<ruleset name=\"KHOC.co\" default_off=\"failed ruleset test\" f=\"KHOC.co.xml\"><securecookie host=\"^\\.khoc\\.co$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?khoc\\.co/\" to=\"https://www.khoc.co/\"/></ruleset>", "<ruleset name=\"KHub.net\" f=\"KHub.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KI.se\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"KI.se.xml\"><rule from=\"^http://bibliometrics\\.ki\\.se/\" to=\"https://bibliometrics.ki.se/\"/><rule from=\"^http://cas\\.ki\\.se/\" to=\"https://cas.ki.se/\"/><rule from=\"^http://cwaa\\.ki\\.se/\" to=\"https://cwaa.ki.se/\"/><rule from=\"^http://child3\\.ki\\.se/\" to=\"https://child3.ki.se/\"/><rule from=\"^http://exjobb\\.meb\\.ki\\.se/\" to=\"https://exjobb.meb.ki.se/\"/><rule from=\"^http://fonder\\.ki\\.se/\" to=\"https://fonder.ki.se/\"/><rule from=\"^http://kib\\.ki\\.se/\" to=\"https://kib.ki.se/\"/><rule from=\"^http://metasearch\\.kib\\.ki\\.se/\" to=\"https://metasearch.kib.ki.se/\"/></ruleset>", "<ruleset name=\"KISSinsights.com\" default_off=\"failed ruleset test\" f=\"KISSinsights.xml\"><securecookie host=\"^(?:.*\\.)?kissinsights\\.com$\" name=\".*\"/><rule from=\"^http://([jr])\\.kissinsights\\.com/\" to=\"https://s3.amazonaws.com/$1.kissinsights.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KISSmetrics.com (partial)\" f=\"KISSmetrics.xml\"><securecookie host=\"^.*\\.kissmetrics\\.com$\" name=\".*\"/><rule from=\"^http://scripts\\.kissmetrics\\.com/\" to=\"https://s3.amazonaws.com/scripts.kissmetrics.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KIT digital\" default_off=\"failed ruleset test\" f=\"KIT_digital.xml\"><securecookie host=\"^(?:www\\.)?kitd\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KIXEYE (partial)\" f=\"KIXEYE.xml\"><rule from=\"^http://cdn\\.casualcollective\\.com/\" to=\"https://s3.amazonaws.com/cdn.casualcollective.com/\"/><rule from=\"^http://(bym-vx4-s|b(?:p|ym)-fb4-s\\.cdn|d[di]-fb-cdn4|gp-fb-cdn4-s|wc-fb4-s(?:\\.cdn)?)\\.kixeye\\.com/\" to=\"https://$1.kixeye.com/\"/></ruleset>", "<ruleset name=\"KK.dk (partial)\" default_off=\"failed ruleset test\" f=\"KK.dk.xml\"><securecookie host=\"(\\.|2200kultur|bibliotek|blaagaarden|borgerservice|dansekapellet|feriecamp|grondalmulticenter|halc|international|karensmindekulturhus|kvarterhuset|kulturhusetislandsbrygge|kulturstationen|medarbejder|pilegaarden|vkc|www)?\\.?kk\\.dk\" name=\".*\"/><rule from=\"^http://(borgerservice\\.|www\\.)?kk\\.dk/\" to=\"https://www.kk.dk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KKBOX.com\" f=\"KKBOX.com.xml\"><securecookie host=\"^www\\.kkbox\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KKH.de\" default_off=\"failed ruleset test\" f=\"KKH.de.xml\"><rule from=\"^http://kkh\\.de/\" to=\"https://www.kkh.de/\"/><rule from=\"^https?://(www\\.)?kkh-allianz\\.de/\" to=\"https://www.kkh.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KKH.se\" platform=\"mixedcontent\" f=\"KKH.se.xml\"><rule from=\"^http://kkh\\.se/\" to=\"https://kkh.se/\"/><rule from=\"^http://www\\.kkh\\.se/\" to=\"https://www.kkh.se/\"/></ruleset>", "<ruleset name=\"KLDP.net\" default_off=\"failed ruleset test\" f=\"KLDP.net.xml\"><rule from=\"^http://([\\w-]+\\.)?kldp\\.net/\" to=\"https://$1kldp.net/\"/></ruleset>", "<ruleset name=\"KLDP.org\" default_off=\"failed ruleset test\" f=\"KLDP.org.xml\"><rule from=\"^http://([\\w-]+\\.)?kldp\\.org/\" to=\"https://$1kldp.org/\"/></ruleset>", "<ruleset name=\"KLM\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"KLM.xml\"><rule from=\"^http://klm\\.com/\" to=\"https://www.klm.com/\"/><rule from=\"^http://(mobile|www)\\.klm\\.com/\" to=\"https://$1.klm.com/\"/></ruleset>", "<ruleset name=\"KMH.se\" platform=\"mixedcontent\" f=\"KMH.se.xml\"><rule from=\"^http://kmh\\.se/\" to=\"https://www.kmh.se/\"/><rule from=\"^http://www\\.kmh\\.se/\" to=\"https://www.kmh.se/\"/></ruleset>", "<ruleset name=\"KMyMoney.org\" f=\"KMyMoney.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KNET.cn (partial)\" default_off=\"failed ruleset test\" f=\"KNET.cn.xml\"><securecookie host=\"^ss\\.knet\\.cn$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KOP11.com\" default_off=\"self-signed\" f=\"KOP11.com.xml\"><rule from=\"^http://(?:www\\.)?kop11\\.com/\" to=\"https://kop11.com/\"/></ruleset>", "<ruleset name=\"KOSMAS.cz\" f=\"KOSMAS.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KPN (expired)\" default_off=\"expired\" f=\"KPN-expired.xml\"><rule from=\"^http://csc\\.hetnet\\.nl/\" to=\"https://csc.hetnet.nl/\"/></ruleset>", "<ruleset name=\"KPN\" f=\"KPN.com.xml\"><securecookie host=\"^.*\\.hetnet\\.nl$\" name=\".*\"/><securecookie host=\"^webmail\\.kpnmail\\.nl$\" name=\".*\"/><rule from=\"^http://netmail\\.hetnet\\.nl/\" to=\"https://netmail.hetnet.nl/\"/><rule from=\"^http://(?:www\\.)?kpn\\.(?:com|nl)/\" to=\"https://www.kpn.com/\"/><rule from=\"^http://home\\.kpn\\.nl/\" to=\"https://home.kpn.nl/\"/><rule from=\"^http://www\\.kpnmail\\.nl/\" to=\"https://www.kpn.nl/\"/><rule from=\"^http://webmail\\.kpnmail\\.nl/\" to=\"https://webmail.kpnmail.nl/\"/></ruleset>", "<ruleset name=\"KPT.ch\" f=\"KPT.ch.xml\"><securecookie host=\"^(?:.*\\.)?kpt\\.ch$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?kpt\\.ch/\" to=\"https://www.kpt.ch/\"/></ruleset>", "<ruleset name=\"KProxy.com\" f=\"KProxy.xml\"><securecookie host=\"^(?:.*\\.)?kproxy\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KQED.org (partial)\" default_off=\"failed ruleset test\" f=\"KQED.org.xml\"><securecookie host=\"^\\.kqed\\.org$\" name=\"^_(?:chartbeat2|_qca|_utm\\w)$\"/><rule from=\"^http://u\\.s\\.kqed\\.org/\" to=\"https://u.s.kqed.net/\"/><rule from=\"^http://www\\.kqed\\.org/\" to=\"https://kqed.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KRL Media.nl\" f=\"KRL_Media.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Központi Statisztikai Hivatal\" f=\"KSH.xml\"><rule from=\"^http://(?:www\\.)?ksh\\.hu/\" to=\"https://www.ksh.hu/\"/><rule from=\"^http://(statinfo|elektra)\\.ksh\\.hu/\" to=\"https://$1.ksh.hu/\"/></ruleset>", "<ruleset name=\"KSL\" f=\"KSL.xml\"><securecookie host=\"^\\.ksl\\.com$\" name=\".+\"/><rule from=\"^http://((?:img|local|static|www)\\.)?ksl\\.com/\" to=\"https://$1ksl.com/\"/></ruleset>", "<ruleset name=\"KTH.se\" f=\"KTH.se.xml\"><securecookie host=\"^www\\.kth\\.se$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KTk.de\" f=\"KTk.de.xml\"><rule from=\"^http://(?:www\\.)?ktk\\.de/+\" to=\"https://www.kevag-telekom.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KUTV.com\" default_off=\"redirects to http\" f=\"KUTV.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KVM-VPS.com\" f=\"KVM-VPS.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KYM-CDN.com (partial)\" default_off=\"mismatched\" f=\"KYM-CDN.com.xml\"><rule from=\"^http://i([0-3])\\.kym-cdn\\.com/\" to=\"https://i$1.kym-cdn.com/\"/></ruleset>", "<ruleset name=\"Kaazing.com (false MCB)\" platform=\"mixedcontent\" f=\"Kaazing.com-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kaazing.com (partial)\" default_off=\"failed ruleset test\" f=\"Kaazing.com.xml\"><exclusion pattern=\"^http://developer\\.kaazing\\.com/+(?!wordpress/wp-content/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kabel Deutschland\" default_off=\"failed ruleset test\" f=\"KabelDeutschland.xml\"><securecookie host=\"^(newsletter\\.|sso\\.|static\\.|www\\.)?kabelmail\\.de$\" name=\".+\"/><rule from=\"^http://(www\\.)?kabeldeutschland\\.de/\" to=\"https://www.kabeldeutschland.de/\"/><rule from=\"^http://(www\\.)?kabeldeutschland\\.com/\" to=\"https://www.kabeldeutschland.com/\"/><rule from=\"^http://(www\\.)?kabelmail\\.de/\" to=\"https://www.kabelmail.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kabelkiosk.de\" platform=\"mixedcontent\" f=\"Kabelkiosk.de.xml\"><rule from=\"^http://(?:www\\.)?kabelkiosk\\.de/\" to=\"https://www.kabelkiosk.de/\"/></ruleset>", "<ruleset name=\"Kable Media Services (partial)\" default_off=\"failed ruleset test\" f=\"Kable_Media_Services.xml\"><securecookie host=\"^secure2\\.insideknc\\.com$\" name=\".+\"/><rule from=\"^http://secure2\\.insideknc\\.com/\" to=\"https://secure2.insideknc.com/\"/><rule from=\"^http://(?:www\\.)?kable\\.com/\" to=\"https://www.kable.com/\"/></ruleset>", "<ruleset name=\"Kable Packaging and Fulfillment Services\" default_off=\"mismatched\" f=\"Kable_Packaging_and_Fulfillment_Services.xml\"><securecookie host=\"^kablepackaging\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?kablepackaging\\.com/\" to=\"https://kablepackaging.com/\"/></ruleset>", "<ruleset name=\"Kachingle\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Kachingle.xml\"><securecookie host=\"^(?:.+\\.)?kachingle\\.com$\" name=\".*\"/><rule from=\"^http://kachingle\\.com/\" to=\"https://kachingle.com/\"/><rule from=\"^http://(www|downloads|assets|medallion)\\.kachingle\\.com/\" to=\"https://$1.kachingle.com/\"/></ruleset>", "<ruleset name=\"Kaggle.com\" f=\"Kaggle.com.xml\"><securecookie host=\"^(\\.|\\.?www\\.)?kaggle\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kagi.com (partial)\" default_off=\"failed ruleset test\" f=\"Kagi.xml\"><securecookie host=\"^(?:order|pq|secure|shop|shopkeeper|store|suppliersignup|support|www)\\.kagi\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KaiRo\" default_off=\"failed ruleset test\" f=\"KaiRo.xml\"><securecookie host=\"^owncloud\\.kairo\\.at$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"kaiseki.me\" f=\"Kaiseki.me.xml\"><securecookie host=\"^(?:www\\.)?kaiseki\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kaiser Systeme (partial)\" f=\"Kaiser_Systeme.xml\"><rule from=\"^http://(www\\.)?kaisersysteme\\.com/(.+/image|.+/stylesheet)s/\" to=\"https://$1kaisersysteme.com/$2s/\"/></ruleset>", "<ruleset name=\"Kaiserslautern.de (partial)\" default_off=\"expired\" f=\"Kaiserslautern.de.xml\"><securecookie host=\"^kaiserslautern\\.de$\" name=\".+\"/><rule from=\"^http://(?:(web2\\.)|www\\.)?kaiserslautern\\.de/\" to=\"https://$1kaiserslautern.de/\"/></ruleset>", "<ruleset name=\"Kali.org (partial)\" f=\"Kali.org.xml\"><securecookie host=\"^forums\\.kali\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kallithea-SCM.org\" f=\"Kallithea-SCM.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kalooga.com (partial)\" f=\"Kalooga.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kaltura.com (false MCB)\" platform=\"mixedcontent\" f=\"Kaltura.com-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kaltura.com (partial)\" default_off=\"Breaks abc.go.com\" f=\"Kaltura.xml\"><exclusion pattern=\"^http://site\\.kaltura\\.com/+(?!$|\\?|css/|images/|rs/)\"/><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http://(?:akamai|cdnb?|cdnbakmi)\\.kaltura\\.com/\" to=\"https://www.kaltura.com/\"/><rule from=\"^http://cdnakmi\\.kaltura\\.com/\" to=\"https://cdnsecakmi.kaltura.com/\"/><rule from=\"^http://cdnapi\\.kaltura\\.com/\" to=\"https://cdnapisec.kaltura.com/\"/><rule from=\"^http://site\\.kaltura\\.com/+(?:\\?.*)?$\" to=\"https://corp.marketo.com/\"/><rule from=\"^http://site\\.kaltura\\.com/\" to=\"https://na-sjg.marketo.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kameleoon.com\" f=\"Kameleoon.com.xml\"><securecookie host=\"^(?:www)?\\.kameleoon\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kammeratadam.dk\" f=\"Kammeratadam.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kampyle (partial)\" platform=\"mixedcontent\" f=\"Kampyle.xml\"><securecookie host=\"^www\\.kampyle\\.com$\" name=\"^FF_\\w+$\"/><rule from=\"^http://kampyle\\.com/\" to=\"https://www.kampyle.com/\"/><rule from=\"^http://www\\.kampyle\\.com/(feedback_form/|images/|login|logos/|min/|static/|test/)\" to=\"https://www.kampyle.com/$1\"/></ruleset>", "<ruleset name=\"Kanbox.com (partial)\" f=\"Kanbox.com.xml\"><securecookie host=\"^kanbox\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kaneva (partial)\" f=\"Kaneva.xml\"><rule from=\"^http://(www\\.)?kaneva\\.com/(css/|images/|jscript/|(?:loginSecure|register/kaneva/registerInfo)\\.aspx)\" to=\"https://$1kaneva.com/$2\"/></ruleset>", "<ruleset name=\"Kangurum\" default_off=\"failed ruleset test\" f=\"Kangurum.xml\"><securecookie host=\"^www\\.kangurum\\.com\\.tr$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?kangurum\\.com\\.tr/\" to=\"https://www.kangurum.com.tr/\"/></ruleset>", "<ruleset name=\"Kanotix\" f=\"Kanotix.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kansas.com (partial)\" default_off=\"failed ruleset test\" f=\"Kansas.com.xml\"><securecookie host=\"^customercare\\.kansas\\.com$\" name=\".+\"/><rule from=\"^http://customercare\\.kansas\\.com/\" to=\"https://customercare.kansas.com/\"/></ruleset>", "<ruleset name=\"Kanshoo\" default_off=\"self-signed\" f=\"Kanshoo.xml\"><rule from=\"^http://(?:www\\.)?kenshoo\\.com/\" to=\"https://www.kenshoo.com/\"/></ruleset>", "<ruleset name=\"Kantar Latam Portal\" default_off=\"failed ruleset test\" f=\"Kantar-Latam-Portal.xml\"><securecookie host=\"^.*\\.kantarlatam\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?kantarlatam\\.com/\" to=\"https://www.kantarlatam.com/\"/></ruleset>", "<ruleset name=\"Kantar Worldpanel\" default_off=\"expired, self-signed\" f=\"Kantar-Worldpanel.xml\"><rule from=\"^http://(?:www\\.)?kantarworldpanel\\.com/\" to=\"https://www.kantarworldpanel.com/\"/></ruleset>", "<ruleset name=\"Kantara Initiative.org\" f=\"Kantara_Initiative.org.xml\"><securecookie host=\"^(?:idp\\.|www\\.)?kantarainitiative.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"kaos.theory\" default_off=\"expired\" f=\"Kaos.theory.xml\"><securecookie host=\"^kaos.to$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?kaos\\.to/\" to=\"https://kaos.to/\"/></ruleset>", "<ruleset name=\"Kapiton.se\" default_off=\"failed ruleset test\" f=\"Kapiton.se.xml\"><securecookie host=\"^\\.?kapiton\\.se$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kaply.com (partial)\" default_off=\"failed ruleset test\" f=\"Kaply.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kapsi.fi (very partial)\" default_off=\"failed ruleset test\" f=\"Kapsi.fi.xml\"><exclusion pattern=\"^http://koti\\.kapsi\\.fi/+~\"/><rule from=\"^http://(?:www\\.)?kapsi\\.fi/\" to=\"https://www.kapsi.fi/\"/><rule from=\"^http://(koti|tuki|blog|forum|admin)\\.kapsi\\.fi/\" to=\"https://$1.kapsi.fi/\"/></ruleset>", "<ruleset name=\"kapsobor.de (partial)\" default_off=\"expired, self-signed\" f=\"Kapsobor.de.xml\"><rule from=\"^http://([\\w\\.]+)\\.kapsobor\\.de/\" to=\"https://$1.kapsobor.de/\"/></ruleset>", "<ruleset name=\"Kapt Cha\" f=\"Kapt-Cha.xml\"><securecookie host=\"^\\.kaptcha\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Karger.com\" f=\"Karger.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:incap_ses_\\d+|visid_incap)_\\d+$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://karger\\.com/\" to=\"https://www.karger.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kargo.com\" default_off=\"mismatched\" f=\"Kargo.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kariera.gr\" f=\"Kariera.gr.xml\"><securecookie host=\"^(?:.*\\.)?kariera\\.gr$\" name=\".*\"/><rule from=\"^http://(\\w+\\.)?kariera\\.gr/\" to=\"https://$1kariera.gr/\"/></ruleset>", "<ruleset name=\"Karlsruhe Institute of Technology (partial)\" f=\"Karlsruhe_Institute_of_Technology.xml\"><rule from=\"^http://alumni\\.kit\\.edu/\" to=\"https://www.rsm.kit.edu/\"/><rule from=\"^http://pst\\.kit\\.edu/\" to=\"https://www.pst.kit.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Karma.mg (partial)\" f=\"Karma.mg.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kart Fighter.com (partial)\" default_off=\"failed ruleset test\" f=\"Kart_Fighter.com.xml\"><securecookie host=\"^(?:files|redbullracingadmin|worldtour)\\.kartfighter\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Karwansaray Publishers.com\" f=\"KarwansarayPublishers.xml\"><securecookie host=\"^\\.www\\.karwansaraypublishers\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kaseya.com\" f=\"Kaseya.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kaseya.net (partial)\" default_off=\"failed ruleset test\" f=\"Kaseya.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kasimp3\" default_off=\"self-signed\" f=\"Kasimp3.xml\"><securecookie host=\"^kasimp3\\.co\\.za$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?kasimp3\\.co\\.za/\" to=\"https://www.kasimp3.co.za/\"/></ruleset>", "<ruleset name=\"Kaspersky-cyberstat.com\" default_off=\"failed ruleset test\" f=\"Kaspersky-cyberstat.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kaspersky.com (partial)\" default_off=\"failed ruleset test\" f=\"Kaspersky.com.xml\"><exclusion pattern=\"^http://www\\.kaspersky\\.com/(?!/*(?:downloads/keys|vpnhelp(?:$|[?/])))\"/><securecookie host=\"^\\.\" name=\"^s_\\w+$\"/><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.(?:anti-theft|eugene|my|support|usa|virusdesk)\\.kaspersky\\.com$\" name=\".\"/><rule from=\"^http://www\\.(academy|blog|business|eugene|sas)\\.kaspersky\\.com/\" to=\"https://$1.kaspersky.com/\"/><rule from=\"^http://tr1\\.kaspersky\\.com/\" to=\"https://kaspersky.d2.sc.omtrdc.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kaspersky.ru (partial)\" f=\"Kaspersky.ru.xml\"><securecookie host=\"^\\.\" name=\"^s_vi$\"/><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.(?:newvirus|support|virusdesk)\\.kaspersky\\.ru$\" name=\".\"/><rule from=\"^http://www\\.blog\\.kaspersky\\.ru/\" to=\"https://blog.kaspersky.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kaspersky.ua (partial)\" f=\"Kaspersky.ua.xml\"><securecookie host=\"^partners\\.kaspersky\\.ua$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kaspersky Club.ru\" f=\"Kaspersky_Club.ru.xml\"><securecookie host=\"^\\.kasperskyclub\\.ru$\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^forum\\.kasperskyclub\\.ru$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kaspersky Partners.com\" f=\"Kaspersky_Partners.com.xml\"><securecookie host=\"^www\\.kasperskypartners\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kaspersky Partners.ru\" f=\"Kaspersky_Partners.ru.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"kasperskycontenthub.com\" default_off=\"failed ruleset test\" f=\"Kasperskycontenthub.com.xml\"><securecookie host=\"^kasperskycontenthub\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kat.am\" f=\"Kat.am.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kat.how\" f=\"Kat.how.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kat-de-Paris.fr (partial)\" f=\"Kat_de_Paris.xml\"><exclusion pattern=\"^http://kat-de-paris\\.fr/+(?!\\d+-home_default/|favicon\\.ico|modules/|themes/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kate Heddleston.com\" f=\"Kate_Heddleston.com.xml\"><securecookie host=\"^(?:www\\.)?kateheddleston\\.com$\" name=\"^session$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kates Comment.com\" f=\"Kates_Comment.com.xml\"><securecookie host=\"^(?:.*\\.)?katescomment\\.com$\" name=\".*\"/><rule from=\"^http://cdn\\.katescomment\\.com/\" to=\"https://www.katescomment.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KU Leuven.be (partial)\" default_off=\"failed ruleset test\" f=\"Katholieke-Universiteit-Leuven.xml\"><exclusion pattern=\"^http://(?:www\\.)?esat\\.kuleuven\\.be/+cosic(?!/wp-content/)(?:$|[?/])\"/><exclusion pattern=\"^http://(?:www\\.)?kuleuven\\.be/+wieiswie(?:$|[?/])\"/><securecookie host=\".+\\.kuleuven\\.be$\" name=\".+\"/><rule from=\"^http://alumni\\.kuleuven\\.be/[^?]*\" to=\"https://alum.kuleuven.be/portaal/\"/><rule from=\"^http://kuleuven\\.ezproxy\\.kuleuven\\.be/\" to=\"https://www.kuleuven.ezproxy.kuleuven.be/\"/><rule from=\"^http://services\\.libis\\.kuleuven\\.be/\" to=\"https://services.libis.be/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kathrein\" f=\"Kathrein.xml\"><securecookie host=\"^www\\.kathrein\\.de$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?kathrein\\.de/\" to=\"https://www.kathrein.de/\"/></ruleset>", "<ruleset name=\"Kattare.com\" platform=\"mixedcontent\" f=\"Kattare.com.xml\"><securecookie host=\"^(?:\\.?www\\.)?kattare\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Katylee.com\" f=\"Katylee.com.xml\"><securecookie host=\"^\\.katylee\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KatzPorn\" default_off=\"expired, mismatch, self-signed\" f=\"KatzPorn.xml\"><securecookie host=\"^(?:katzporn\\.in|pro-xy\\.com)$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?katzporn\\.in/\" to=\"https://katzporn.in/\"/><rule from=\"^http://(?:www\\.)?pro-xy\\.com/\" to=\"https://pro-xy.com/\"/></ruleset>", "<ruleset name=\"Kaufdown.de (partial)\" f=\"Kaufdown.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kaufland.cz\" default_off=\"failed ruleset test\" f=\"Kaufland.cz.xml\"><rule from=\"^http://kaufland\\.cz/\" to=\"https://www.kaufland.cz/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kayak\" f=\"Kayak.xml\"><rule from=\"^http://(?:www\\.)?kayak\\.com/\" to=\"https://www.kayak.com/\"/><rule from=\"^http://(?:www\\.)?kayak\\.co\\.uk/\" to=\"https://www.kayak.co.uk/\"/></ruleset>", "<ruleset name=\"Kayako clients\" default_off=\"mismatched\" f=\"Kayako-clients.xml\"><securecookie host=\"^.*\\.helpserve\\.com$\" name=\".*\"/><rule from=\"^http://([\\w\\-]+)\\.helpserve\\.com/\" to=\"https://$1.helpserve.com/\"/></ruleset>", "<ruleset name=\"Kayako (partial)\" f=\"Kayako.xml\"><exclusion pattern=\"^http://(?:blog|forge|forums|wiki|www)\\.\"/><securecookie host=\".+\\.kayako\\.com$\" name=\".+\"/><rule from=\"^http://media\\.kayako\\.com/\" to=\"https://d13f94alzxkv7n.cloudfront.net/\"/><rule from=\"^http://([\\w-]+)\\.kayako\\.com/\" to=\"https://$1.kayako.com/\"/></ruleset>", "<ruleset name=\"Kaywa (problematic)\" default_off=\"mismatched, untrusted root\" f=\"Kaywa-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kaywa.com (partial)\" default_off=\"failed ruleset test\" f=\"Kaywa.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://tee\\.kaywa\\.com/+\" to=\"https://www.charen.ch/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"kb8ojh.net\" default_off=\"failed ruleset test\" f=\"Kb8ojh.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"kbia-gmbh.de (partial)\" default_off=\"missing certificate chain\" f=\"Kbia-gmbh.de.xml\"><securecookie host=\"^cloud\\.kbia-gmbh\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kdelive.org\" default_off=\"failed ruleset test\" f=\"Kdelive.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kdenlive.org\" f=\"Kdenlive.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"kdoes.nl\" default_off=\"mismatch, self-signed\" f=\"Kdoes.nl.xml\"><rule from=\"^http://(?:www\\.)?kdoes\\.nl/\" to=\"https://kdoes.nl/\"/></ruleset>", "<ruleset name=\"KeePass.info\" default_off=\"mismatched, self-signed\" f=\"KeePass.info.xml\"><rule from=\"^http://(?:www\\.)?keepass\\.info/\" to=\"https://keepass.info/\"/></ruleset>", "<ruleset name=\"Keepassx\" f=\"KeePassX.xml\"><rule from=\"^http://(?:www\\.)?keepassx\\.org/\" to=\"https://www.keepassx.org/\"/></ruleset>", "<ruleset name=\"Keelog.com\" f=\"Keelog.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Keen.IO\" f=\"Keen.IO.xml\"><rule from=\"^http://status\\.keen\\.io/\" to=\"https://z3mvdbpvy7yh.statuspage.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"keepTempo.com (partial)\" default_off=\"failed ruleset test\" f=\"KeepTempo.com.xml\"><securecookie host=\"^app\\.keeptempo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Keep all the things.com\" default_off=\"failed ruleset test\" f=\"Keep_all_the_things.com.xml\"><rule from=\"^http://((?:assets|control|www)\\.)?keepallthethings\\.com/\" to=\"https://$1keepallthethings.com/\"/></ruleset>", "<ruleset name=\"Kei.pl (mismatches)\" default_off=\"expired, mismatch, self-signed\" f=\"Kei.pl-mismatches.xml\"><rule from=\"^http://(default|kreator)\\.kei\\.pl/\" to=\"https://$1.kei.pl/\"/><securecookie host=\"^kreator\\.kei\\.pl$\" name=\".*\"/></ruleset>", "<ruleset name=\"Kei.pl (partial)\" f=\"Kei.pl.xml\"><rule from=\"^http://(www\\.)?kei\\.pl/(favicon\\.ico$|css/|gfx/|swf/)\" to=\"https://www.kei.pl/$2\"/><rule from=\"^http://panel\\.kei\\.pl/\" to=\"https://panel.kei.pl/\"/><securecookie host=\"^panel\\.kei\\.pl$\" name=\".*\"/></ruleset>", "<ruleset name=\"keksbude.net (partial)\" default_off=\"failed ruleset test\" f=\"Keksbude.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kelco Maine.com\" f=\"Kelco_Maine.com.xml\"><securecookie host=\"^(?:www\\.)?kelcomaine\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kelley Blue Book Co.\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Kelley-Blue-Book.xml\"><securecookie host=\"^(?:.*\\.)?kbb\\.com$\" name=\".*\"/><rule from=\"^http://(s1\\.|www\\.)?kbb\\.com/\" to=\"https://$1kbb.com/\"/><rule from=\"^http://file\\.k(?:bb|elleybluebookimages)\\.com/\" to=\"https://file.kbb.com/\"/></ruleset>", "<ruleset name=\"Kelly Tarltons\" f=\"Kelly-Tarltons.xml\"><securecookie host=\".*\\.kellytarltons\\.co\\.nz$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kenai.com\" f=\"Kenai.com.xml\"><securecookie host=\"^(?:asset-\\d\\.)?kenai\\.com$\" name=\".+\"/><rule from=\"^http://(asset-\\d\\.|www\\.)?kenai\\.com/\" to=\"https://$1kenai.com/\"/></ruleset>", "<ruleset name=\"Kenengba.com\" f=\"Kenengba.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kenexa (mismatches)\" default_off=\"mismatched\" f=\"Kenexa-mismatches.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.kenexa\\.jobs/\" to=\"https://kenexa.jobs/\"/><rule from=\"^http://www\\.kenexa(governmentsolution|pod)s\\.com/\" to=\"https://kenexa$1s.com/\"/><rule from=\"^http://www\\.khpi\\.com/\" to=\"https://khpi.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kenexa.com (partial)\" f=\"Kenexa.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kenneth.io\" f=\"Kenneth.io.xml\"><securecookie host=\"^\\.kenneth\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kensington.com (partial)\" f=\"Kensington.xml\"><securecookie host=\"(?:www\\.)?eshop\\.kensington\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kent.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"Kent.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://consult\\.kent\\.gov\\.uk/\" to=\"https://kent-consult.objective.co.uk/\"/><rule from=\"^http://digital\\.kent\\.gov\\.uk/+\" to=\"https://www.youtube.com/KentCountyCouncil\"/><rule from=\"^http://www\\.eis\\.kent\\.gov\\.uk/\" to=\"https://www.eiskent.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kent Backman.com (partial)\" default_off=\"failed ruleset test\" f=\"Kent_Backman.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kentico\" f=\"Kentico.xml\"><securecookie host=\"^.+\\.kentico\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KentuckyOne Health\" default_off=\"failed ruleset test\" f=\"KentuckyOneHealth.org.xml\"><securecookie host=\"^((www)?\\.)?kentuckyonehealth\\.org$\" name=\".+\"/><securecookie host=\"^www\\.jhsmh\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kerbal Space Program.com (partial)\" f=\"Kerbal_Space_Program.xml\"><securecookie host=\"^(?:www\\.)?kerbalspaceprogram\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kernel-Recipes.org\" f=\"Kernel-Recipes.org.xml\"><rule from=\"^http://www\\.kernel-recipes\\.org/\" to=\"https://kernel-recipes.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kernel.org (partial)\" f=\"KernelOrg.xml\"><exclusion pattern=\"^http://(?:ftp|oops|planet|vger|wireless)\\.\"/><securecookie host=\".*\\.kernel\\.org$\" name=\".+\"/><rule from=\"^http://mirrors\\.\\w\\w\\.kernel\\.org/\" to=\"https://mirrors.kernel.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"kernel concepts (partial)\" platform=\"cacert\" f=\"Kernel_concepts.xml\"><securecookie host=\"^\\.shop\\.kernelconcepts\\.de$\" name=\".+\"/><rule from=\"^http://shop\\.kernelconcepts\\.de/\" to=\"https://shop.kernelconcepts.de/\"/></ruleset>", "<ruleset name=\"Kernl.us\" f=\"Kernl.us.xml\"><securecookie host=\"^kernl\\.us$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ketchum.com (partial)\" f=\"Ketchum.com.xml\"><securecookie host=\"^\\.?facebook\\.ketchum\\.com$\" name=\".+\"/><rule from=\"^http://facebook\\.ketchum\\.com/\" to=\"https://facebook.ketchum.com/\"/></ruleset>", "<ruleset name=\"Kettering.gov.uk\" f=\"Kettering.gov.uk.xml\"><securecookie host=\"^\\.\" name=\"^TestCookie$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://kettering\\.gov\\.uk/\" to=\"https://secure.kettering.gov.uk/\"/><rule from=\"^http://consult\\.kettering\\.gov\\.uk/\" to=\"https://kettering-consult.objective.co.uk/\"/><rule from=\"^https?://www\\.kettering\\.gov\\.uk/\" to=\"https://secure.kettering.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kevag-Telekom.de\" f=\"Kevag-Telekom.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"kevinajacobs.com\" default_off=\"mismatched\" f=\"Kevinajacobs.com.xml\"><rule from=\"^http://(?:www\\.)?kevinajacobs\\.com/\" to=\"https://kevinajacobs.com/\"/></ruleset>", "<ruleset name=\"KeyDrive (partial)\" f=\"KeyDrive.xml\"><rule from=\"^http://domainauctions\\.moniker\\.com/\" to=\"https://www.moniker.com/moniker/customer-support\"/><rule from=\"^http://help\\.moniker\\.com/\" to=\"https://wiki.moniker.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KeyGhost.com (partial)\" f=\"KeyGhost.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Keygens.nl\" default_off=\"missing certificate chain\" f=\"Keygens.nl.xml\"><rule from=\"^http://www\\.keygens\\.nl/\" to=\"https://keygens.nl/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Keymile.com (partial)\" f=\"Keymile.com.xml\"><securecookie host=\"^extranet\\.keymile\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?keymile\\.com/(\\?.*)?$\" to=\"https://extranet.keymile.com/en/\"/><rule from=\"^http://(?:www\\.)?keymile\\.com/en/\" to=\"https://extranet.keymile.com/en/\"/><rule from=\"^http://extranet\\.keymile\\.com/\" to=\"https://extranet.keymile.com/\"/></ruleset>", "<ruleset name=\"Keyword Discovery\" default_off=\"mismatched\" f=\"Keyword_Discovery.xml\"><securecookie host=\"^keyworddiscovery\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?keyworddiscovery\\.com/\" to=\"https://keyworddiscovery.com/\"/></ruleset>", "<ruleset name=\"kfs.io\" f=\"Kfs.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KhalifaofIslam.com\" f=\"KhalifaofIslam.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://khalifaofislam\\.com/\" to=\"https://www.khalifaofislam.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Khalsa Credit Union\" f=\"Khalsa-Credit-Union.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^https?://khalsacreditunion\\.ca/\" to=\"https://www.khalsacreditunion.ca/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Khan Academy\" f=\"Khan-Academy.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Khronos Group (partial)\" f=\"Khronos.xml\"><securecookie host=\"^www\\.khronos\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?khronos\\.org/\" to=\"https://www.khronos.org/\"/><rule from=\"^http://\\w\\w\\.khronos\\.org/assets/\" to=\"https://www.khronos.org/assets/\"/></ruleset>", "<ruleset name=\"Kick Ass\" f=\"Kick-Ass.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KickApps (partial)\" default_off=\"failed ruleset test\" f=\"KickApps.xml\"><securecookie host=\"^(?:affiliate|community)\\.kickapps\\.com$\" name=\".+\"/><rule from=\"^http://(affiliate|community)\\.kickapps\\.com/\" to=\"https://$1.kickapps.com/\"/><rule from=\"^http://media\\.kickstatic\\.com/\" to=\"https://media.kickstatic.com/\"/></ruleset>", "<ruleset name=\"KickAssVPS.com (partial)\" f=\"KickAssVPS.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KickNews\" f=\"KickNews.xml\"><securecookie host=\"^(?:.*\\.)?(?:arsenal|kick)news\\.(?:com|net)$\" name=\".+\"/><rule from=\"^http://(www\\.)?(arsenal|kick)news\\.net/\" to=\"https://$1$2news.net/\"/><rule from=\"^http://(?:www\\.)?kicknews\\.co(?:\\.uk|com)/\" to=\"https://www.kicknews.com/\"/></ruleset>", "<ruleset name=\"KickassTorrents\" f=\"KickassTorrents.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kicker.de (partial)\" f=\"Kicker.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kickflip.io\" f=\"Kickflip.io.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kickstarter.com (partial)\" f=\"Kickstarter.xml\"><securecookie host=\"^api\\.kickstarter\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kicktraq\" f=\"Kicktraq.xml\"><securecookie host=\"^www\\.kicktraq\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KidsHealth/TeensHealth\" default_off=\"failed ruleset test\" f=\"KidsHealth.xml\"><securecookie host=\"^(?:secure02|websrv01)\\.kidshealth\\.org$\" name=\".+\"/><rule from=\"^http://(secure02|websrv01)\\.kidshealth\\.org/\" to=\"https://$1.kidshealth.org/\"/><rule from=\"^http://(?:www\\.)?kidshealth\\.org/\" to=\"https://secure02.kidshealth.org/\"/><rule from=\"^http://(?:www\\.)?teenshealth\\.org/?$\" to=\"https://secure02.kidshealth.org/teen/\"/><rule from=\"^http://(www\\.)?teenshealth\\.org/([^?]+)\" to=\"https://secure02.kidshealth.org/$2\"/></ruleset>", "<ruleset name=\"Kids Foot Locker\" f=\"Kids_Foot_Locker.xml\"><securecookie host=\"^.*\\.kidsfootlocker\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?kidsfootlocker\\.com/\" to=\"https://www.kidsfootlocker.com/\"/><rule from=\"^http://m\\.kidsfootlocker\\.com/\" to=\"https://m.kidsfootlocker.com/\"/></ruleset>", "<ruleset name=\"Kikatek.com\" f=\"Kikatek.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KildareStreet.com\" f=\"KildareStreet.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kill Screen.com\" f=\"Kill_Screen.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kilometrikisa.fi\" f=\"Kilometrikisa.fi.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kimberly-Clark (partial)\" default_off=\"failed ruleset test\" f=\"Kimberly-Clark.xml\"><securecookie host=\"^www\\.kimberly-clark\\.com(?:\\.au|\\.cn)?$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?kimberly-clark\\.com(\\.au|\\.cn)?/\" to=\"https://www.kimberly-clark.com$1/\"/></ruleset>", "<ruleset name=\"Kimono Labs.com\" default_off=\"failed ruleset test\" f=\"Kimono_Labs.com.xml\"><securecookie host=\"^\\.kimonolabs\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"kimpluscraig.com\" f=\"Kimpluscraig.com.xml\"><securecookie host=\"^\\.kimpluscraig\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kimsufi.com\" f=\"Kimsufi.com.xml\"><securecookie host=\"(?:^|\\.)kimsufi\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kindful.com (partial)\" f=\"Kindful.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kinesis-Ergo.com\" f=\"Kinesis-Ergo.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kinfolk.com\" f=\"Kinfolk.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"King.com (partial)\" f=\"King.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?king\\.com/(?!(?:login|signup)\\.jsp)\"/><securecookie host=\"^adtrack\\.king\\.com$\" name=\".+\"/><rule from=\"^http://(adtrack\\.|www\\.)?king\\.com/\" to=\"https://$1king.com/\"/><rule from=\"^http://i\\d\\.midasplayer\\.com/\" to=\"https://king.pantherssl.com/\"/></ruleset>", "<ruleset name=\"KingHost (partial)\" f=\"KingHost.xml\"><securecookie host=\"^\\.kinghost\\.com\\.br$\" name=\".+\"/><securecookie host=\"^(?:painel2?|webftp|webmail)\\.kinghost\\.net$\" name=\".+\"/><rule from=\"^http://(www\\.)?kinghost\\.com\\.br/\" to=\"https://$1kinghost.com.br/\"/><rule from=\"^http://(live|painel2?|web\\d{3}|webftp|webmail)\\.kinghost\\.net/\" to=\"https://$1.kinghost.net/\"/><rule from=\"^http://live\\.kinghost\\.(?:com\\.br|net)/\" to=\"https://live.kinghost.net/\"/></ruleset>", "<ruleset name=\"King's College London (partial)\" default_off=\"failed ruleset test\" f=\"Kings-College-London.xml\"><securecookie host=\"^\\w.*\\.kcl\\.ac\\.uk$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kings Road Merch\" f=\"Kings_Road_Merch.xml\"><securecookie host=\"^(?:secure)?\\.kingsroadmerch\\.com$\" name=\".+\"/><rule from=\"^http://(?:secure\\.|www\\.)?kingsroadmerch\\.com/\" to=\"https://secure.kingsroadmerch.com/\"/></ruleset>", "<ruleset name=\"Kingston.com (partial)\" f=\"Kingston.com.xml\"><securecookie host=\"^legacy\\.kingston\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kinguin.net\" f=\"Kinguin.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kinja-img.com\" f=\"Kinja-img.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kinja-static.com\" f=\"Kinja-static.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kinja.com (partial)\" f=\"Kinja.xml\"><exclusion pattern=\"^http://(?:[^./]+\\.){2,}kinja\\.com/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KinkLink.me\" default_off=\"failed ruleset test\" f=\"KinkLink.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kink On Tap.com (partial)\" f=\"Kink_On_Tap.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kinko.me\" default_off=\"failed ruleset test\" f=\"Kinko.me.xml\"><securecookie host=\"^(?:www)?\\.kinko\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kinotehnik\" f=\"Kinotehnik.xml\"><securecookie host=\"^www\\.kinotehnik\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?kinotehnik\\.com/\" to=\"https://www.kinotehnik.com/\"/></ruleset>", "<ruleset name=\"Kinsta.com (partial)\" f=\"Kinsta.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kintera Network\" f=\"Kintera-Network.xml\"><rule from=\"^http://(?:www\\.)?kintera\\.(com|org)/\" to=\"https://www.kintera.$1/\"/><rule from=\"^http://(?:[\\w-]+\\.){1,2}kintera\\.org/(?=[^/]+/[^/])\" to=\"https://www.kintera.org/\"/></ruleset>", "<ruleset name=\"Kipoint.it\" f=\"Kipoint.it.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kirjoitusalusta\" f=\"Kirjoitusalusta.xml\"><securecookie host=\"^(?:.*\\.)?kirjoitusalusta\\.fi\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kirklees.gov.uk (partial)\" f=\"Kirklees.gov.uk.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://consult\\.kirklees\\.gov\\.uk/\" to=\"https://kirklees-consult.objective.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kirkus Reviews.com\" f=\"Kirkus_Reviews.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://kirkusreviews\\.com/\" to=\"https://www.kirkusreviews.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kirsle.net\" f=\"Kirsle.net.xml\"><securecookie host=\"^(?:www\\.)?kirsle\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kismetwireless.net\" f=\"Kismetwireless.net.xml\"><rule from=\"^http://(?:www\\.)?kismetwireless\\.net/\" to=\"https://kismetwireless.net/\"/></ruleset>", "<ruleset name=\"KissAnime.to\" default_off=\"http redirect\" f=\"KissAnime.to.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kitapyurdu\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Kitapyurdu.xml\"><securecookie host=\"^www\\.kitapyurdu\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?kitapyurdu\\.com/\" to=\"https://www.kitapyurdu.com/\"/></ruleset>", "<ruleset name=\"Kite Packaging.co.uk\" f=\"Kite_Packaging.co.uk.xml\"><rule from=\"^http://(www\\.)?kitepackaging\\.co\\.uk/(?=[cC]atapult/|favicon\\.ico|images/|stylesandscripts/)\" to=\"https://$1kitepackaging.co.uk/\"/></ruleset>", "<ruleset name=\"Kitematic.com (partial)\" f=\"Kitematic.com.xml\"><securecookie host=\"^\\.kitematic\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"kitenet.net (partial)\" f=\"Kitenet.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kitsu\" f=\"Kitsu.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kiva.org (partial)\" default_off=\"failed ruleset test\" f=\"Kiva.org.xml\"><exclusion pattern=\"^http://(www\\.)?kiva\\.org/$\"/><rule from=\"^http://(www\\.)?kiva\\.org/(?=favicon\\.ico|images/|img/|js/|js-lib/|(?:community/teams/my-teams|help/forgot-password|login|oauth/authorize|profile|register)(?:$|\\?|/)|rgit\\w{40}-\\d/)\" to=\"https://$1.kiva.org/\"/><securecookie host=\"^(?:\\.?pages|zip)\\.kiva\\.org$\" name=\".+\"/><rule from=\"^https?://cms\\.kiva\\.org\\.s3\\.amazonaws\\.com/\" to=\"https://s3-us-west-1.amazonaws.com/cms.kiva.org.s3.amazonaws.com/\"/><rule from=\"^http://(fellowsblog\\.|pages\\.)kiva\\.org/\" to=\"https://$1kiva.org/\"/><rule from=\"^http://(l3-[12]|level3cdn|zip)\\.kiva\\.org/\" to=\"https://www.kiva.org/\"/><rule from=\"^http://mail\\.kiva\\.org/\" to=\"https://mail.google.com/a/kiva.org\"/><rule from=\"^http://s3(-[12])?\\.kiva\\.org/\" to=\"https://s3.amazonaws.com/s3.kiva.org/\"/></ruleset>", "<ruleset name=\"Kivo.com\" default_off=\"failed ruleset test\" f=\"Kivo.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kiwi FM\" default_off=\"mismatched\" f=\"Kiwi-FM.xml\"><rule from=\"^http://(?:www\\.)?wammo\\.co\\.uk/\" to=\"https://www.wammo.co.uk/\"/></ruleset>", "<ruleset name=\"Kiwicon.org\" f=\"Kiwicon.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KiwiIRC.com\" default_off=\"failed ruleset test\" f=\"Kiwiirc.com.xml\"><securecookie host=\"^\\.?kiwiirc\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kkk.com\" default_off=\"failed ruleset test\" f=\"Kkk.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Klibert.pl\" f=\"Klibert.pl.xml\"><securecookie host=\"^\\.klibert\\.pl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KlimaSchutzPartner Berlin\" f=\"KlimaSchutzPartner-Berlin.xml\"><securecookie host=\"^www\\.klimaschutzpartner-berlin\\.de$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?klimaschutzpartner-berlin\\.de/\" to=\"https://www.klimaschutzpartner-berlin.de/\"/></ruleset>", "<ruleset name=\"Klinika.zdravie.sk\" default_off=\"failed ruleset test\" f=\"Klinika.zdravie.sk.xml\"><rule from=\"^http://klinika\\.zdravie\\.sk/\" to=\"https://klinika.zdravie.sk/\"/></ruleset>", "<ruleset name=\"klub.com.pl\" default_off=\"expired, self-signed\" f=\"Klub.com.pl.xml\"><rule from=\"^http://(?:www\\.)?klub\\.com\\.pl/\" to=\"https://klub.com.pl/\"/></ruleset>", "<ruleset name=\"Klubitus.org\" f=\"Klubitus.org.xml\"><securecookie host=\"^klubitus\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kmart.com (partial)\" f=\"Kmart.com.xml\"><securecookie host=\"^\\.kmart\\.com$\" name=\"^s_vi$\"/><securecookie host=\"^\\.?(?:playdateplace|stylesipblog)\\.kmart\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?kmart\\.com/(?=favicon\\.ico|ue/|\\d+/ue/)\" to=\"https://www.kmart.com/\"/><rule from=\"^http://(birthdayclub|c|fashionclub|playdateplace|stylesipblog)\\.kmart\\.com/\" to=\"https://$1.kmart.com/\"/><rule from=\"^http://om\\.kmart\\.com/\" to=\"https://kmart-com.d1.sc.omtrdc.net/\"/></ruleset>", "<ruleset name=\"KnCMiner.com (partial)\" default_off=\"failed ruleset test\" f=\"KnCMiner.com.xml\"><securecookie host=\"^\\.kncminer\\.com$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Knab.nl\" f=\"Knab.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Knappschaft-Bahn-See.de\" f=\"Knappschaft-Bahn-See.xml\"><rule from=\"^http://kbs\\.de/\" to=\"https://www.kbs.de/\"/><rule from=\"^https?://(www\\.)?knappschaft-bahn-see\\.de/\" to=\"https://www.kbs.de/\"/><rule from=\"^https?://knappschaft\\.de/\" to=\"https://www.knappschaft.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kneon.com (problematic)\" default_off=\"mismatched\" f=\"Kneon.com-problematic.xml\"><securecookie host=\"^\\.kneon\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?kneon\\.com/\" to=\"https://kneon.com/\"/></ruleset>", "<ruleset name=\"Kneon.com (partial)\" default_off=\"failed ruleset test\" f=\"Kneon.com.xml\"><rule from=\"^http://beta\\.kneon\\.com/\" to=\"https://beta.kneon.com/\"/></ruleset>", "<ruleset name=\"KnewOne.com\" f=\"KnewOne.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KnightSwarm.com (partial)\" default_off=\"failed ruleset test\" f=\"KnightSwarm.xml\"><securecookie host=\"^(?:.*\\.)?knightswarm\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Knight Lab.com\" f=\"Knight_Lab.com.xml\"><securecookie host=\"^\\.knightlab\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Knopper.Net\" default_off=\"self-signed\" f=\"Knopper.net.xml\"><rule from=\"^http://(?:www\\.)?knopper\\.net/\" to=\"https://knopper.net/\"/></ruleset>", "<ruleset name=\"Knot-DNS.cz\" f=\"Knot-DNS.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Knowledge Blog.org\" default_off=\"missing certificate chain\" f=\"Knowledge_Blog.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kobo (partial)\" f=\"Kobo.xml\"><exclusion pattern=\"^http://(?:www\\.)?kobobooks\\.com/(?!Etc/frameresize\\.htm)\"/><exclusion pattern=\"^http://(?:securestage[24]|stage[36])\\.kobobooks\\.pt/\"/><securecookie host=\"^\\.(?:ptbr|www)\\.kobo\\.com$\" name=\".+\"/><securecookie host=\"^\\.kobobooks\\.com$\" name=\"^(?:tracking|__utm\\w)$\"/><securecookie host=\"^(?!ptbr\\.|wwwt?\\.)\\w+\\.kobobooks\\.com$\" name=\".+\"/><securecookie host=\"^\\.kobobooks\\.\\w\\w$\" name=\"^tracking$\"/><securecookie host=\"^s(?:ecure(?:stage\\d?|t)|tage[36]?)\\.kobobooks\\.\\w\\w$\" name=\".+\"/><rule from=\"^http://kobo\\.com/\" to=\"https://www.kobo.com/\"/><rule from=\"^http://(assets|ptbr|www)\\.kobo\\.com/\" to=\"https://$1.kobo.com/\"/><rule from=\"^http://((?:akimagest?|assets|ecimagest|merch|(?:ptbr)?secure|securestage\\d?|stage)\\.)?kobobooks\\.com/\" to=\"https://$1kobobooks.com/\"/><rule from=\"^http://(?:ec)?images\\.kobobooks\\.com/\" to=\"https://images.kobobooks.com/\"/><rule from=\"^http://s(ecure(?:stage[2456]?|t)?|tage[36]?)\\.kobobooks\\.(\\w\\w)/\" to=\"https://s$1.kobobooks.$2/\"/><rule from=\"^http://stage2\\.kobobooks\\.(fr|es)/(default\\.aspx)?(\\?.*)?$\" to=\"https://stage2.kobobooks.$1/$2$3\"/></ruleset>", "<ruleset name=\"Kochava.com (partial)\" f=\"Kochava.com.xml\"><securecookie host=\"^(?:www)?\\.kochava\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KodeRoot.net\" default_off=\"failed ruleset test\" f=\"KodeRoot.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kodi.tv (partial)\" f=\"Kodi.tv.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Koding\" f=\"Koding.xml\"><securecookie host=\"^(?:.+\\.)?koding\\.com$\" name=\".+\"/><rule from=\"^http://(\\w+\\.)?koding\\.com/\" to=\"https://$1koding.com/\"/></ruleset>", "<ruleset name=\"Koen Rouwhorst.nl\" f=\"Koen_Rouwhorst.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kohls.com\" f=\"Kohls.xml\"><rule from=\"^http://kohls\\.com/\" to=\"https://www.kohls.com/\"/><rule from=\"^http://www\\.kohls\\.com/\" to=\"https://www.kohls.com/\"/></ruleset>", "<ruleset name=\"Koinify.com\" default_off=\"failed ruleset test\" f=\"Koinify.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kolab.org (partial)\" f=\"Kolab.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KolabSys.com\" f=\"KolabSys.com.xml\"><securecookie host=\"^\\.kolabsys\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kolab Now.com\" f=\"Kolab_Now.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Koldfront.dk\" f=\"Koldfront.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kolektiva.com\" default_off=\"failed ruleset test\" f=\"Kolektiva.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kollegorna.se\" f=\"Kollegorna.se.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kommaer.dk\" f=\"Kommaer.dk.xml\"><rule from=\"^http://(www\\.)?kommaer\\.dk/\" to=\"https://kommaer.dk/\"/></ruleset>", "<ruleset name=\"Komments.net\" default_off=\"failed ruleset test\" f=\"Komments.net.xml\"><securecookie host=\"^(?:www\\.)?komments\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kommunal.se\" f=\"Kommunal.se.xml\"><rule from=\"^http://kommunal\\.se/\" to=\"https://www.kommunal.se/\"/><rule from=\"^http://www\\.kommunal\\.se/\" to=\"https://www.kommunal.se/\"/></ruleset>", "<ruleset name=\"Komoona.com (partial)\" f=\"Komoona.com.xml\"><exclusion pattern=\"^http://www\\.komoona\\.com/+(?!favicon\\.ico|new/css/|new/images/)\"/><securecookie host=\"^(?:a|stat)\\.komoona\\.com$\" name=\".+\"/><rule from=\"^http://((?:a|admin|stat|www)\\.)?komoona\\.com/\" to=\"https://$1komoona.com/\"/><rule from=\"^http://cdn\\.komoona\\.com/\" to=\"https://dimrh7ecexr02.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Kompany.com\" f=\"Kompany.com.xml\"><securecookie host=\"^www\\.kompany\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Komplett.no\" f=\"Komplett.xml\"><rule from=\"^http://(?:www\\.)?komplett\\.no/\" to=\"https://www.komplett.no/\"/></ruleset>", "<ruleset name=\"Kabel Rosenheim\" f=\"Komro.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Konachan.com\" f=\"Konachan.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Konami-Korea.kr\" default_off=\"failed ruleset test\" f=\"Konami-Korea.kr.xml\"><securecookie host=\"^(?:www\\.)?konami-korea\\.kr$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?konami-korea\\.kr/\" to=\"https://www.konami-korea.kr/\"/></ruleset>", "<ruleset name=\"Konami.com\" f=\"Konami.com.xml\"><rule from=\"^http://konami\\.com/\" to=\"https://www.konami.com/\"/><rule from=\"^http://www\\.konami\\.com/\" to=\"https://www.konami.com/\"/></ruleset>", "<ruleset name=\"Kondor.co.uk (partial)\" f=\"Kondor.co.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KongCDN.com\" f=\"KongCDN.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kongregate.com (partial)\" f=\"Kongregate.com.xml\"><exclusion pattern=\"^http://developers\\.kongregate.com/+(?!favicon\\.ico|images/)\"/><exclusion pattern=\"^http://www\\.kongregate.com/+(?!favicon\\.ico|forums/\\d+-[\\w-]+|images/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Konstfack.se\" platform=\"mixedcontent\" f=\"Konstfack.se.xml\"><rule from=\"^http://konstfack\\.se/\" to=\"https://www.konstfack.se/\"/><rule from=\"^http://www\\.konstfack\\.se/\" to=\"https://www.konstfack.se/\"/></ruleset>", "<ruleset name=\"Kontalk\" f=\"Kontalk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kontera (partial)\" default_off=\"failed ruleset test\" f=\"Kontera.xml\"><securecookie host=\"^(?:\\.?publishers)?\\.kona\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Konto API\" f=\"Konto_API.xml\"><securecookie host=\"^(?:www)?\\.kontoapi\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kootenay Savings Credit Union\" f=\"Kootenay-Savings-Credit-Union.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kopiosto\" f=\"Kopiosto.xml\"><rule from=\"^http://(?:www\\.)?kopiosto\\.fi/\" to=\"https://www.kopiosto.fi/\"/><rule from=\"^http://serv3\\.kopiosto\\.fi/\" to=\"https://serv3.kopiosto.fi/\"/></ruleset>", "<ruleset name=\"Korbit.co.kr\" f=\"Korbit.co.kr.xml\"><securecookie host=\"^\\.korbit\\.co\\.kr$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kore.io\" f=\"Kore.io.xml\"><rule from=\"^http://(?:www\\.)?kore\\.io/\" to=\"https://kore.io/\"/></ruleset>", "<ruleset name=\"KoreLogic.com\" f=\"KoreLogic-Security.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Koreatimes\" default_off=\"Certificate expired\" f=\"Koreatimes.co.kr.xml\"><rule from=\"^http://www\\.koreatimes\\.co\\.kr/\" to=\"https://www.koreatimes.co.kr/\"/></ruleset>", "<ruleset name=\"Korn Design\" default_off=\"mismatched\" f=\"Korn-Design.xml\"><rule from=\"^http://(?:www\\.)?korndesign\\.com/\" to=\"https://korndesign.com/\"/></ruleset>", "<ruleset name=\"Kornerstone Admin.com\" default_off=\"failed ruleset test\" f=\"Kornerstone_Admin.com.xml\"><securecookie host=\"^kornerstoneadmin\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?kornerstoneadmin\\.com/\" to=\"https://kornerstoneadmin.com/\"/></ruleset>", "<ruleset name=\"Korora Project.org\" default_off=\"failed ruleset test\" f=\"Korora_Project.org.xml\"><rule from=\"^http://www\\.kororaproject\\.org/\" to=\"https://kororaproject.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Korruption.dk\" f=\"Korruption.dk.xml\"><rule from=\"^http://(www\\.)?korruption\\.dk/\" to=\"https://korruption.dk/\"/></ruleset>", "<ruleset name=\"Kosimak.com\" default_off=\"self-signed\" f=\"Kosimak.com.xml\"><securecookie host=\"^www\\.kosimak\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?kosimak\\.com/\" to=\"https://www.kosimak.com/\"/></ruleset>", "<ruleset name=\"Kotaku.com\" f=\"Kotaku.com.xml\"><exclusion pattern=\"^http://(?:[^./]+\\.){2,}kotaku\\.com/\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://cache\\.kotaku\\.com/\" to=\"https://cache.gawkerassets.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kotex\" default_off=\"failed ruleset test\" f=\"Kotex.xml\"><rule from=\"^http://(?:www\\.)?kotex\\.com/\" to=\"https://www.kotex.com/\"/><rule from=\"^http://dare\\.kotex\\.com/\" to=\"https://dare.kotex.com/\"/></ruleset>", "<ruleset name=\"Kotte-zeller.de\" f=\"Kotte-zeller.de.xml\"><rule from=\"^http://(?:www\\.)?kotte-zeller\\.de/\" to=\"https://www.kotte-zeller.de/\"/></ruleset>", "<ruleset name=\"Kotulas.com\" f=\"Kotulas.com.xml\"><securecookie host=\"^www\\.kotulas\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?kotulas\\.com/\" to=\"https://www.kotulas.com/\"/></ruleset>", "<ruleset name=\"Kouio.com\" f=\"Kouio.com.xml\"><securecookie host=\"^kouio\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?kouio\\.com/\" to=\"https://kouio.com/\"/></ruleset>", "<ruleset name=\"Koumbit.net\" f=\"Koumbit.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://(?:www\\.)?koumbit\\.net/+\" to=\"https://www.koumbit.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Koumbit.org\" f=\"Koumbit.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"kovidgoyal.net\" default_off=\"self-signed\" f=\"Kovidgoyal.net.xml\"><rule from=\"^http://(?:www\\.)?kovidgoyal\\.net/\" to=\"https://www.kovidgoyal.net/\"/></ruleset>", "<ruleset name=\"Koz.io\" f=\"Koz.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"kpopstage.co\" f=\"Kpopstage.co.xml\"><rule from=\"^http://kpopstage\\.co/\" to=\"https://www.attictv.com/\"/></ruleset>", "<ruleset name=\"kr36.co\" default_off=\"failed ruleset test\" f=\"Kr36.co.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kraken.com\" f=\"Kraken.com.xml\"><securecookie host=\"^\\.kraken\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KralenStart.nl\" default_off=\"failed ruleset test\" f=\"KralenStart.nl.xml\"><securecookie host=\"^\\.kralenstart\\.nl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Krautchan\" default_off=\"self-signed\" f=\"Krautchan.xml\"><rule from=\"^http://(?:www\\.)?krautchan\\.net/\" to=\"https://krautchan.net/\"/></ruleset>", "<ruleset name=\"Krawlly.com\" f=\"Krawlly.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"kraxel.org\" f=\"Kraxel.org.xml\"><rule from=\"^http://(?:www\\.)?kraxel\\.org/\" to=\"https://www.kraxel.org/\"/></ruleset>", "<ruleset name=\"Kreativ Media (partial)\" f=\"Kreativ_Media.xml\"><securecookie host=\"^secure\\.kreativmedia\\.ch$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kreatív Vonalak\" f=\"Kreativvonalak.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Krebs on Security.com\" f=\"KrebsOnSecurity.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Krebsdaten.de\" f=\"Krebsdaten.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KriminalVarden.se\" platform=\"mixedcontent\" f=\"Kriminalvarden.se.xml\"><rule from=\"^http://www\\.kriminalvarden\\.se/\" to=\"https://www.kriminalvarden.se/\"/><rule from=\"^http://kriminalvarden\\.se/\" to=\"https://www.kriminalvarden.se/\"/></ruleset>", "<ruleset name=\"Krisostomus\" f=\"Krisostomus.xml\"><securecookie host=\"^m?\\.kriso\\.ee$\" name=\".+\"/><rule from=\"^http://(m\\.|www\\.)?kriso\\.ee/\" to=\"https://$1kriso.ee/\"/><rule from=\"^http://(?:www\\.)?kriso\\.lv/\" to=\"https://www.kriso.lv/\"/><rule from=\"^http://m\\.kriso\\.l(t|v)/\" to=\"https://m.kriso.l$1/\"/></ruleset>", "<ruleset name=\"Krita.org\" f=\"Krita.org.xml\"><securecookie host=\"^krita\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Krux Digital.com\" f=\"Krux-Digital.xml\"><securecookie host=\"^dataconsole\\.kruxdigital\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KrxD.net\" f=\"KrxD.net.xml\"><securecookie host=\"^\\.krxd\\.net$\" name=\"(?:_kuid_|ServedBy)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"kryo.se (partial)\" default_off=\"expired, self-signed\" f=\"Kryo.se.xml\"><securecookie host=\"^dev\\.kryo\\.se$\" name=\".+\"/><rule from=\"^http://(?:(dev\\.)|www\\.)?kryo\\.se/\" to=\"https://$1kryo.se/\"/><rule from=\"^http://mail\\.kryo\\.se/.*\" to=\"https://mail.google.com/a/kryo.se\"/></ruleset>", "<ruleset name=\"Kryptnostic.com\" default_off=\"failed ruleset test\" f=\"Kryptnostic.com.xml\"><securecookie host=\"^\\.kryptnostic\\.com$\" name=\".+\"/><rule from=\"^http://blog\\.kryptnostic\\.com/\" to=\"https://www.kryptnostic.com/blog/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kryptologika.com\" default_off=\"failed ruleset test\" f=\"Kryptologika.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kryptos.sh\" f=\"Kryptos.sh.xml\"><securecookie host=\"^kryptos\\.sh$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kryptosfera.pl\" f=\"Kryptosfera.pl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kryptronic (mismatches)\" default_off=\"mismatched\" f=\"Kryptronic-mismatches.xml\"><securecookie host=\"^forum\\.kryptronic\\.com$\" name=\".*\"/><rule from=\"^http://forum\\.kryptronic\\.com/\" to=\"https://forum.kryptronic.com/\"/></ruleset>", "<ruleset name=\"Kryptronic (partial)\" f=\"Kryptronic.xml\"><exclusion pattern=\"^http://(?:forum|wiki)\\.\"/><securecookie host=\"^(?:.*\\.)?kryptronic\\.com$\" name=\".*\"/><rule from=\"^http://(\\w+\\.)?kryptronic\\.com/\" to=\"https://$1kryptronic.com/\"/></ruleset>", "<ruleset name=\"Krystal Status\" f=\"KrystalStatus.co.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Krystal.co.uk\" f=\"Krystal_Hosting.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KsięgarniaWarszawa.pl\" default_off=\"failed ruleset test\" f=\"KsiegarniaWarszawa.pl.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ksplice (partial)\" f=\"Ksplice.xml\"><securecookie host=\"^.*\\.ksplice\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kuantokusta.pt\" platform=\"mixedcontent\" default_off=\"mismatch\" f=\"Kuantokusta.pt.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kubieziel.de\" f=\"Kubieziel.de.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kubuntu.org (partial)\" f=\"Kubuntu.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://bugs\\.kubuntu\\.org/[^?]*\" to=\"https://launchpad.net/distros/ubuntu/+bugs/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kubuntu Forums.net\" f=\"Kubuntu_Forums.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kudelski Security.com\" f=\"Kudelski_Security.xml\"><securecookie host=\"^\\.kudelskisecurity\\.com$\" name=\".+\"/><rule from=\"^http://kudelskisecurity\\.com/\" to=\"https://www.kudelskisecurity.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kuix.de\" f=\"Kuix.de.xml\"><securecookie host=\"^(?:www\\.)?kuix\\.de$\" name=\".+\"/><rule from=\"^http://sha2\\.kuix\\.de/+(?:\\?.*)?$\" to=\"https://kuix.de/abi90/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kulcs-soft.hu\" f=\"Kulcs-soft.hu.xml\"><rule from=\"^http://(?:www\\.)?kulcs-soft\\.hu/\" to=\"https://www.kulcs-soft.hu/\"/></ruleset>", "<ruleset name=\"KU Leuven.be (false MCB)\" platform=\"mixedcontent\" f=\"Kuleuven.be-falsemixed.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kum.com\" f=\"Kum.com.xml\"><securecookie host=\"^(?:www\\.)?kum\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kumapon.jp\" f=\"Kumapon.jp.xml\"><exclusion pattern=\"^http://f\\.kumapon\\.jp/$\"/><exclusion pattern=\"^http://i\\.kumapon\\.jp/$\"/><exclusion pattern=\"^http://kumapon\\.jp/$\"/><exclusion pattern=\"^http://s\\.kumapon\\.jp/$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kumu.io (partial)\" f=\"Kumu.io.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kung Fu Nation.com\" default_off=\"mismatched\" f=\"Kung-Fu-Store.xml\"><securecookie host=\"^www\\.kungfunation\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"kununu (partial)\" f=\"Kununu.xml\"><rule from=\"^http://(www\\.)?kununu\\.com/(?=(?:bewerten|info|login|meinkununu|register|user/(?:login|logout))(?:$|[?/])|css/|favicon\\.ico|index/captcha/|sc\\.css)\" to=\"https://$1kununu.com/\"/><rule from=\"^http://cf\\.kununu\\.com/\" to=\"https://dt75rt3oyihg4.cloudfront.net/\"/></ruleset>", "<ruleset name=\"KuppingerCole.com\" f=\"KuppingerCole.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kura.io\" default_off=\"refused\" f=\"Kura.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kurier.at\" f=\"Kurier.at.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"kuro5hin.org\" default_off=\"failed ruleset test\" f=\"Kuro5hin.xml\"><rule from=\"^http://kuro5hin\\.org/\" to=\"https://www.kuro5hin.org/\"/><rule from=\"^http://www\\.kuro5hin\\.org/\" to=\"https://www.kuro5hin.org/\"/></ruleset>", "<ruleset name=\"Kursbuero.de (partial)\" f=\"Kursbuero.de.xml\"><rule from=\"^http://medienberufe-sde\\.kursbuero\\.de/\" to=\"https://medienberufe-sde.kursbuero.de/\"/></ruleset>", "<ruleset name=\"Kuruc.info\" f=\"Kuruc.info.xml\"><rule from=\"^http://(m\\.)?(?:kuruc\\.info|w\\.kuruc\\.org)/\" to=\"https://$1kuruc.info/\"/></ruleset>", "<ruleset name=\"Kuther.net\" f=\"Kuther.net.xml\"><rule from=\"^http://(?:www\\.)?kuther\\.net/\" to=\"https://kuther.net/\"/></ruleset>", "<ruleset name=\"Kvack.org\" default_off=\"expired, self-signed\" f=\"Kvack.org.xml\"><rule from=\"^http://(?:www\\.)?kvack\\.org/\" to=\"https://kvack.org/\"/></ruleset>", "<ruleset name=\"Kvasir.no\" f=\"Kvasir.no.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KwikSurveys\" f=\"KwikSurveys.xml\"><securecookie host=\"^www\\.kwiksurveys\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kyani.net\" f=\"Kyani.net.xml\"><securecookie host=\"^\\.kyani\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?kyani\\.net/\\??$\" to=\"https://eu.kyani.net/public/eu/en/main\"/><rule from=\"^http://(?:www\\.)?kyani\\.net/\\?(.+)\" to=\"https://eu.kyani.net/public/eu/en/main?$1=\"/><rule from=\"^http://(?:www\\.)?kyani\\.net/([^?]+)\\??$\" to=\"https://eu.kyani.net/$1\"/><rule from=\"^http://(?:www\\.)?kyani\\.net/([^?]+\\?.+)\" to=\"https://eu.kyani.net/$1=\"/><rule from=\"^http://eu\\.kyani\\.net/\" to=\"https://eu.kyani.net/\"/></ruleset>", "<ruleset name=\"Kyberia.sk\" f=\"Kyberia.sk.xml\"><rule from=\"^http://(?:www\\.)?kyberia\\.sk/\" to=\"https://kyberia.sk/\"/></ruleset>", "<ruleset name=\"Kyhwana.org\" f=\"Kyhwana.org.xml\"><rule from=\"^http://(?:www\\.)?kyhwana\\.org/\" to=\"https://kyhwana.org/\"/></ruleset>", "<ruleset name=\"Kyiv Post.com (partial)\" f=\"Kyiv_Post.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"kyivstar.ua\" f=\"Kyivstar.ua.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kyle Isom.net\" f=\"Kyle_Isom.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kyn.me\" default_off=\"failed ruleset test\" f=\"Kyn.me.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kyoto-U.ac.jp (partial)\" f=\"Kyoto-U.ac.jp.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"L-auto-entrepreneur.org\" f=\"L-auto-entrepreneur.org.xml\"><securecookie host=\"^(?:w*\\.)?l-auto-entrepreneur\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"L.de\" f=\"L.de.xml\"><securecookie host=\"^(www\\.|gruensparshop\\.)?l\\.de\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"l0cal.com\" f=\"L0cal.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"l0g.us\" default_off=\"failed ruleset test\" f=\"L0g.us.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Local 20/20\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"L2020.xml\"><rule from=\"^http://(?:www\\.)?l2020\\.org/\" to=\"https://l2020.org/\"/></ruleset>", "<ruleset name=\"L2C\" default_off=\"failed ruleset test\" f=\"L2C.xml\"><securecookie host=\"^(?:www\\.)?l2c\\.co\\.kr$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LANsquared\" default_off=\"expired, mismatch\" f=\"LANsquared.xml\"><securecookie host=\"^webmail\\.lansquared\\.com$\" name=\".*\"/><rule from=\"^http://(?:(webmail\\.)|www\\.)?lansquared\\.com/\" to=\"https://$1lansquared.com/\"/></ruleset>", "<ruleset name=\"LBHF.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"LBHF.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LBL.gov (partial)\" f=\"LBL.gov.xml\"><securecookie host=\"^\\.\" name=\"^__qca$\"/><rule from=\"^http://wwwdev\\.lbl\\.gov/\" to=\"https://www.lbl.gov/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LCHost\" default_off=\"failed ruleset test\" f=\"LCHost.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LEAP.se\" f=\"LEAP.se.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LEGO.com (partial)\" default_off=\"failed ruleset test\" f=\"LEGO.xml\"><exclusion pattern=\"^http://club\\.lego\\.com/(?!en-us/join/magazinesubscription)\"/><exclusion pattern=\"^http://education\\.lego\\.com/(?!\\w\\w-\\w\\w/[\\w-]+/|Design/|WebResource\\.axd)\"/><exclusion pattern=\"^http://shop.lego.com/(?!VIP/modal/vipLearnMoreModal\\.jsp)\"/><securecookie host=\"^(?:aboutus|account2?|services\\.account|assets|rebrick)\\.lego\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LESS\" default_off=\"mismatched\" f=\"LESS.xml\"><rule from=\"^http://(?:www\\.)?lesscss\\.org/\" to=\"https://lesscss.org/\"/></ruleset>", "<ruleset name=\"LEspace client.fr\" default_off=\"failed ruleset test\" f=\"LEspace_client.fr.xml\"><securecookie host=\"^(?:www\\.)?lespaceclient\\.fr$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LExpress.fr (partial)\" f=\"LExpress.fr.xml\"><securecookie host=\"^\\.boutique\\.lexpress\\.fr$\" name=\".+\"/><rule from=\"^http://(media-|skin-)?boutique\\.lexpress\\.fr/\" to=\"https://$1boutique.lexpress.fr/\"/></ruleset>", "<ruleset name=\"LFAIT.com\" f=\"LFAIT.com.xml\"><securecookie host=\"^lfait\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?lfait\\.com/\" to=\"https://lfait.com/\"/></ruleset>", "<ruleset name=\"LFC Hosting\" default_off=\"failed ruleset test\" f=\"LFC-Hosting.xml\"><securecookie host=\"^.+\\.lfchosting\\.com$\" name=\".+\"/><rule from=\"^http://(?:208\\.68\\.106\\.8|webmail\\.lfchosting\\.com)/\" to=\"https://208.68.106.8/\"/><rule from=\"^http://(?:((?:account|cp|demo)\\.)|www\\.)?lfchosting\\.com/\" to=\"https://$1lfchosting.com/\"/></ruleset>", "<ruleset name=\"LF Hair.com (partial)\" f=\"LF_Hair.com.xml\"><securecookie host=\"^\\.www\\.lfhair\\.com$\" name=\"^RefererCookie$\"/><rule from=\"^http://(www\\.)?lfhair\\.com/(?=assets/|cdn-cgi/|favicon\\.ico|html/|xcart/customer/(?:cart|register)\\.php|xcart_images/)\" to=\"https://$1lfhair.com/\"/></ruleset>", "<ruleset name=\"LFov.net\" default_off=\"failed ruleset test\" f=\"LFov.net.xml\"><securecookie host=\"^(?:www\\.)?lfov\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LG.com (partial)\" f=\"LG.com.xml\"><exclusion pattern=\"^http://www(?:stg)?\\.lg\\.com/(?!\\w\\w/(?:css|foresee|images|js)/|favicon\\.ico|lg3-common(?:-v2)?/)\"/><securecookie host=\"^\\.lg\\.com$\" name=\"^(?:s_\\w+|__utm)\\w$\"/><securecookie host=\"^admin\\.cms\\.lg\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LINBIT (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"LINBIT.com-falsemixed.xml\"><securecookie host=\"^(?:.*\\.)?linbit\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LINBIT (partial)\" f=\"LINBIT.xml\"><exclusion pattern=\"^http://(?:www\\.)?linbit\\.com/+(?!components/|favicon\\.ico|images/|libraries/|modules/|plugins/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LINCS.fr\" f=\"LINCS.fr.xml\"><rule from=\"^http://(?:www\\.)?lincs\\.fr/\" to=\"https://www.lincs.fr/\"/></ruleset>", "<ruleset name=\"LINGUIST List (partial)\" f=\"LINGUIST-List.xml\"><securecookie host=\"^linguistlist\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?linguistlist\\.org/\" to=\"https://linguistlist.org/\"/></ruleset>", "<ruleset name=\"LIS.gov\" default_off=\"failed ruleset test\" f=\"LIS.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LIU.se (false MCB)\" platform=\"mixedcontent\" f=\"LIU.se-falsemixed.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www3\\.bibl\\.liu\\.se/\" to=\"https://www2.bibl.liu.se/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LIU.se (partial)\" default_off=\"failed ruleset test\" f=\"LIU.se.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:www\\.moviii\\.isy|moviii)\\.liu\\.se/\" to=\"https://moviii.isy.liu.se/\"/><rule from=\"^http://www\\.vehicular\\.isy\\.liu\\.se/\" to=\"https://www.fs.isy.liu.se/\"/><rule from=\"^http://planet\\.lysator\\.liu\\.se/+\" to=\"https://www.lysator.liu.se/planet/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LI CDN.com (partial)\" f=\"LI_CDN.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LKD.org.tr (partial)\" default_off=\"expired, self-signed\" f=\"LKD.org.tr.xml\"><rule from=\"^http://(?:www\\.)?lkd\\.org\\.tr/\" to=\"https://www.lkd.org.tr/\"/></ruleset>", "<ruleset name=\"LKML.org\" f=\"LKML.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LK Mart\" default_off=\"expired\" f=\"LK_Mart.xml\"><securecookie host=\"^\\.lkmart\\.com\\.au$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?lkmart\\.com\\.au/\" to=\"https://www.lkmart.com.au/\"/></ruleset>", "<ruleset name=\"LLS.org (partial)\" default_off=\"failed ruleset test\" f=\"LLS.org.xml\"><securecookie host=\"^(?:community|donate|www)\\.lls\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LLVM.org (partial)\" f=\"LLVM.org.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LM Uni Muenchen\" f=\"LMU-Muenchen.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LNTECC.com\" f=\"LNTECC.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LONAP\" f=\"LONAP.xml\"><rule from=\"^http://lonap\\.net/\" to=\"https://www.lonap.net/\"/><rule from=\"^http://([^/:@]+)?\\.lonap\\.net/\" to=\"https://$1.lonap.net/\"/></ruleset>", "<ruleset name=\"LPAC.co.uk\" f=\"LPAC.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LPI.org\" f=\"LPI.org.xml\"><securecookie host=\"^cs\\.lpi\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LPICE.eu\" f=\"LPICE.eu.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LPO.org.uk (partial)\" f=\"LPO.org.uk.xml\"><rule from=\"^http://(www\\.)?lpo\\.org\\.uk/(?=components/|images/|register/create-new-account\\.html|sign-in\\.html|templates/)\" to=\"https://$1lpo.org.uk/\"/></ruleset>", "<ruleset name=\"LSBU.ac.uk (partial)\" default_off=\"failed ruleset test\" f=\"LSBU.ac.uk.xml\"><securecookie host=\"^\\.lsbu\\.ac\\.uk$\" name=\"^(?:III_EXPT_FILE|III_SESSION_ID|SESSION_LANGUAGE)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://lsbu\\.ac\\.uk/\" to=\"https://www.lsbu.ac.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LSE.ac.uk (partial)\" f=\"LSE.ac.uk.xml\"><rule from=\"^http://(?:www\\.)?lse\\.ac\\.uk/(?=corporatePromotions/|favicon\\.ico|ImagesForExternalHomepage/|intranet/images/|(?:Script|Web)Resource\\.axd|SiteElements/|v4global/)\" to=\"https://www.lse.ac.uk/\"/></ruleset>", "<ruleset name=\"LSI.com (bad cert)\" default_off=\"Expired certificate\" f=\"LSI.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lone Star Overnight\" f=\"LSO.com.xml\"><rule from=\"^http://(?:www\\.)?lso\\.com/\" to=\"https://www.lso.com/\"/></ruleset>", "<ruleset name=\"LS CDN.net\" f=\"LS_CDN.net.xml\"><rule from=\"^http://a\\.lscdn\\.net/\" to=\"https://a0.lscdn.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LTER\" f=\"LTER.xml\"><exclusion pattern=\"^http://intranet2\\.lternet\\.edu/(?!misc/|modules/|sites/|(?:track|us)er(?:$|\\?|/))\"/><securecookie host=\"^metacat\\.lternet\\.edu$\" name=\".+\"/><rule from=\"^http://lternet\\.edu/\" to=\"https://www.lternet.edu/\"/><rule from=\"^http://intranet2?\\.lternet\\.edu/\" to=\"https://intranet2.lternet.edu/\"/><rule from=\"^http://(metacat|www)\\.lternet\\.edu/\" to=\"https://$1.lternet.edu/\"/></ruleset>", "<ruleset name=\"LTH.se (partial)\" default_off=\"failed ruleset test\" f=\"LTH.se.xml\"><rule from=\"^http://lth\\.se/\" to=\"https://www.lth.se/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LTRADIO.com\" default_off=\"mismatched\" f=\"LTRADIO.com.xml\"><rule from=\"^http://(?:www\\.)?ltradio\\.com/\" to=\"https://www.ltradio.com/\"/></ruleset>", "<ruleset name=\"LTTng.org\" f=\"LTTng_Project.xml\"><securecookie host=\"^(?:bugs)?\\.lttng\\.org$\" name=\".+\"/><rule from=\"^http://((?:bugs|ci|git|lists|www)\\.)?lttng\\.org/\" to=\"https://$1lttng.org/\"/></ruleset>", "<ruleset name=\"LU.se (partial)\" f=\"LU.se.xml\"><rule from=\"^http://(?:lucs\\.ht|(?:www\\.)?lucs)\\.lu\\.se/\" to=\"https://www.lucs.lu.se/\"/><rule from=\"^http://calendar\\.student\\.lu\\.se/.*\" to=\"https://www.google.com/calendar/hosted/student.lu.se\"/><rule from=\"^http://webmail\\.student\\.lu\\.se/.*\" to=\"https://mail.google.com/a/student.lu.se\"/><rule from=\"^http://webmail\\.lu\\.se/\" to=\"https://webmail.lu.se/\"/></ruleset>", "<ruleset name=\"LUGoNS.org\" default_off=\"failed ruleset test\" f=\"LUGoNS.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LUU.org.uk\" f=\"LUU.org.uk.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LUV.asn.au (partial)\" default_off=\"expired, mismatched\" f=\"LUV.asn.au.xml\"><securecookie host=\"^(?:www)?\\.linux\\.org\\.au$\" name=\".+\"/><rule from=\"^http://(?:(wiki\\.)|www\\.)?luv\\.asn\\.au/\" to=\"https://$1luv.asn.au/\"/></ruleset>", "<ruleset name=\"LVOC.org\" default_off=\"missing certificate chain\" f=\"LVOC.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LWN.net\" f=\"LWN.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"La Quadrature du Net\" f=\"La-Quadrature-du-Net.xml\"><securecookie host=\"^\\.laquadrature\\.net$\" name=\".*\"/><securecookie host=\"^piphone\\.lqdn\\.fr$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"La Caixa\" f=\"LaCaixa.xml\"><securecookie host=\"^(?:.*\\.)?lacaixa\\.es$\" name=\".+\"/><rule from=\"^http://lacaixa\\.es/\" to=\"https://www.lacaixa.es/\"/><rule from=\"^http://([^/:@\\.]+)\\.lacaixa\\.es/\" to=\"https://$1.lacaixa.es/\"/></ruleset>", "<ruleset name=\"LaDepeche.fr\" f=\"LaDepeche.fr.xml\"><rule from=\"^http://ejournal\\.ladepeche\\.fr/\" to=\"https://www.ladepeche.fr/a-la-une/filnews/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"La Editorial UPR.com\" f=\"LaEditorialUPR.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LaPatilla.com\" f=\"LaPatilla.com.xml\"><securecookie host=\"^(?:www\\.)?lapatilla\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?lapatilla\\.com/\" to=\"https://$1lapatilla.com/\"/><rule from=\"^http://cdn\\.lapatilla\\.com/imagenes\\.lapatilla/\" to=\"https://www.lapatilla.com/\"/></ruleset>", "<ruleset name=\"La Rotative.info\" f=\"LaRotative.info.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LaTeX project\" f=\"LaTeX.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LaTeX Templates.com\" f=\"LaTeXTemplates.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"La Cie.com\" default_off=\"failed ruleset test\" f=\"La_Cie.com.xml\"><securecookie host=\"^(?:www)?\\.lacie\\.com$\" name=\".+\"/><rule from=\"^http://lacie\\.com/\" to=\"https://www.lacie.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"La Crosse Alerts.com\" default_off=\"failed ruleset test\" f=\"La_Crosse_Alerts.com.xml\"><securecookie host=\"^www\\.lacrossealerts\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?lacrossealerts\\.com/\" to=\"https://www.lacrossealerts.com/\"/></ruleset>", "<ruleset name=\"La Crosse Technology.com\" default_off=\"failed ruleset test\" f=\"La_Crosse_Technology.com.xml\"><securecookie host=\"^\\.store\\.lacrossetechnology\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"La Naya Chocolate\" f=\"La_Naya_Chocolate.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lab-Nation.com (partial)\" f=\"Lab-Nation.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LabCorp.com\" default_off=\"failed ruleset test\" f=\"LabCorp.xml\"><securecookie host=\"^(?:datalink2|hypersend|www[3-4]?)\\.labcorp\\.com$\" name=\".+\"/><rule from=\"^http://labcorp\\.com/\" to=\"https://www.labcorp.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LabCorp solutions.com\" f=\"LabCorp_solutions.com.xml\"><securecookie host=\"^(?:www)?\\.labcorpsolutions\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"labaia.ws (partial)\" default_off=\"failed ruleset test\" f=\"Labaia.xml\"><rule from=\"^http://(\\w+\\.)?labaia\\.ws/\" to=\"https://$1labaia.ws/\"/></ruleset>", "<ruleset name=\"Labels IG.com\" f=\"Labels_IG.com.xml\"><securecookie host=\"^\\.(?:www\\.)?labelsig\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Labels by the Sheet.com (partial)\" f=\"Labels_by_the_Sheet.com.xml\"><rule from=\"^http://(www\\.)?labelsbythesheet\\.com/(?=favicon\\.ico|images/|include/)\" to=\"https://$1labelsbythesheet.com/\"/></ruleset>", "<ruleset name=\"Chevronwp7 Labs\" default_off=\"failed ruleset test\" f=\"Labs.Chevronwp7.com.xml\"><rule from=\"^http://labs\\.chevronwp7\\.com/\" to=\"https://labs.chevronwp7.com/\"/><securecookie host=\"^labs\\.chevronwp7\\.com\" name=\".*\"/></ruleset>", "<ruleset name=\"Lady Foot Locker\" f=\"Lady_Foot_Locker.xml\"><securecookie host=\"^.*\\.ladyfootlocker\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ladyfootlocker\\.com/\" to=\"https://www.ladyfootlocker.com/\"/><rule from=\"^http://m\\.ladyfootlocker\\.com/\" to=\"https://m.ladyfootlocker.com/\"/></ruleset>", "<ruleset name=\"Ladysmith District Credit Union\" default_off=\"failed ruleset test\" f=\"Ladysmith-District-Credit-Union.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lagardère Publicité (partial)\" default_off=\"failed ruleset test\" f=\"Lagardere_Publicite.xml\"><rule from=\"^http://fb\\.lagardere-pub\\.com/\" to=\"https://fb.lagardere-pub.com/\"/></ruleset>", "<ruleset name=\"Lagen.nu\" f=\"Lagen.nu.xml\"><rule from=\"^http://(?:www\\.)?lagen\\.nu/\" to=\"https://lagen.nu/\"/></ruleset>", "<ruleset name=\"LakeBTC.com\" f=\"LakeBTC.com.xml\"><securecookie host=\"^(?:www)?\\.lakebtc\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lambda-Linux.io\" f=\"Lambda-Linux.io.xml\"><rule from=\"^http://www\\.lambda-linux\\.io/\" to=\"https://lambda-linux.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LambdaTek\" f=\"LambdaTek.xml\"><securecookie host=\"^(?:www\\.)?lambda-tek\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"lambdaops.com\" f=\"Lambdaops.com.xml\"><securecookie host=\"^\\.lambdaops\\.com$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Land-der-Ideen.de\" f=\"Land-der-Ideen.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lands End.com\" f=\"Lands_End.com.xml\"><securecookie host=\"^\\.landsend\\.com$\" name=\".+\"/><exclusion pattern=\"^http://www\\.landsend\\.com/.*/_apps/index/app/.*\\.html$\"/><rule from=\"^http://(?:www\\.)?landsend\\.com/\" to=\"https://www.landsend.com/\"/><rule from=\"^http://business\\.landsend\\.com/\" to=\"https://business.landsend.com/\"/></ruleset>", "<ruleset name=\"Landscape.io (partial)\" f=\"Landscape.io.xml\"><securecookie host=\"^landscape\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Landscape Photography Magazine\" f=\"LandscapePhotographyMagazine.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Landslide.com\" default_off=\"failed ruleset test\" f=\"Landslide.com.xml\"><securecookie host=\"^landslide\\.landslide\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?landslide\\.com/\" to=\"https://www.campaignercrm.com/\"/><rule from=\"^http://landslide\\.landslide\\.com/\" to=\"https://landslide.landslide.com/\"/></ruleset>", "<ruleset name=\"Landure.fr\" default_off=\"failed ruleset test\" f=\"Landure.fr.xml\"><securecookie host=\"^howto\\.landure\\.fr$\" name=\".+\"/><rule from=\"^http://howto\\.landure\\.fr/\" to=\"https://howto.landure.fr/\"/></ruleset>", "<ruleset name=\"Langille.org (partial)\" default_off=\"failed ruleset test\" f=\"Langille.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Language Perfect (partial)\" f=\"Language_Perfect.xml\"><rule from=\"^http://(?:www\\.)?languageperfect\\.co\\.nz/(.+\\.(?:jp|pn))g\" to=\"https://d1qtf3qy24bms5.cloudfront.net/$1g\"/><rule from=\"^http://(?:www\\.)?languageperfect\\.com/(.+\\.(?:jp|pn))g\" to=\"https://d177cien2ijyro.cloudfront.net/$1g\"/></ruleset>", "<ruleset name=\"langui.sh\" default_off=\"failed ruleset test\" f=\"Langui.sh.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lanik.us\" f=\"Lanik.us.xml\"><rule from=\"^http:\" to=\"https:\"/><securecookie host=\"^forums\\.lanik\\.us$\" name=\".+\"/><securecookie host=\"^\\.lanik\\.us$\" name=\"^__cfduid$\"/></ruleset>", "<ruleset name=\"lanistaads.com (partial)\" f=\"Lanistaads.com.xml\"><rule from=\"^http://ads\\.lanistaads\\.com/\" to=\"https://d2tbmvllb55wxq.cloudfront.net/\"/><rule from=\"^http://api\\.lanistaads\\.com/ServeAd\\?AdSize=(\\d+)&SiteID=(\\w+)&Zone=(\\w+)$\" to=\"https://ads.lanistaads.com/$2/$2_$1_$3.html\"/></ruleset>", "<ruleset name=\"Lansforsakringar.se\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Lansforsakringar.se.xml\"><rule from=\"^http://www\\.lansforsakringar\\.se/\" to=\"https://www.lansforsakringar.se/\"/><rule from=\"^http://www1\\.lansforsakringar\\.se/\" to=\"https://www1.lansforsakringar.se/\"/><rule from=\"^http://lansforsakringar\\.se/\" to=\"https://www.lansforsakringar.se/\"/></ruleset>", "<ruleset name=\"Lantmateriet.se\" platform=\"mixedcontent\" f=\"Lantmateriet.se.xml\"><rule from=\"^http://www\\.lantmateriet\\.se/\" to=\"https://www.lantmateriet.se/\"/><rule from=\"^http://lantmateriet\\.se/\" to=\"https://www.lantmateriet.se/\"/></ruleset>", "<ruleset name=\"Lanyrd\" f=\"Lanyrd.xml\"><rule from=\"^http://(www\\.)?lanyrd\\.com/s(ignin|tatic/)\" to=\"https://$1lanyrd.com/$2\"/><rule from=\"^http://static\\.lanyrd\\.net/\" to=\"https://s3.amazonaws.com/static.lanyrd.net/\"/></ruleset>", "<ruleset name=\"Laptop.hu\" default_off=\"failed ruleset test\" f=\"Laptop.hu.xml\"><securecookie host=\"^laptop\\.hu$\" name=\".+\"/><rule from=\"^http://(?:www\\.|regi\\.)?(?:l[ae]ptop(?:online|lap)?|notebook(?:nagy|\\-?kis)ker|onlinenotebook|palmshop)\\.hu/\" to=\"https://laptop.hu/\"/><rule from=\"^http://gfxpro\\.hu/\" to=\"https://gfxpro.hu/\"/></ruleset>", "<ruleset name=\"Laravel-News.com\" f=\"Laravel-News.com.xml\"><securecookie host=\"^www\\.laravel-news\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Laravel.com\" f=\"Laravel.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Larry Salibra.com\" f=\"Larry_Salibra.com.xml\"><securecookie host=\"^\\.larrysalibra\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Las Vegas Management\" default_off=\"expired\" f=\"Las-Vegas-Management.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Las Vegas Review-Journal (partial)\" default_off=\"failed ruleset test\" f=\"Las_Vegas_Review-Journal.xml\"><securecookie host=\"^\\.reviewjournal\\.com$\" name=\"^UnicaNIODID$\"/><securecookie host=\"^(?:myrjnewsstand|www)\\.reviewjournal\\.com$\" name=\".+\"/><rule from=\"^http://oneday\\.lvrj\\.com/\" to=\"https://oneday.lvrj.com/\"/><rule from=\"^http://(?:www\\.)?reviewjournal\\.com/\" to=\"https://www.reviewjournal.com/\"/><rule from=\"^http://myrjnewsstand\\.reviewjournal\\.com/\" to=\"https://myrjnewsstand.reviewjournal.com/\"/><rule from=\"^http://obits\\.reviewjournal\\.com/(favicon\\.ico|Obituaries/(?:AffiliateAdvertisement\\.axd|AffiliateArtwork\\.axd|_(?:cs|j)s/)|obituaries/lvrj/(?:Images/|ObitsTileCorner\\.axd|scripts/)|sites/)\" to=\"https://www.legacy.com/$1\"/></ruleset>", "<ruleset name=\"lasallehs.net\" f=\"Lasallehs.net.xml\"><securecookie host=\".*\\.lasallehs\\.net\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Last.fm (partial)\" default_off=\"testing\" f=\"Last.fm.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LastPass.com\" f=\"LastPass.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://lastpass\\.com/\" to=\"https://lastpass.com/\"/><rule from=\"^http://(do|lp-push-server)-(\\d+)\\.lastpass\\.com/\" to=\"https://$1-$2.lastpass.com/\"/><rule from=\"^http://(www|0|accounts?|blog|download|enterprise|forums|helpdesk|localvault|m|manda|pollserver|portable|rodan|service|teams|uber|vaul)\\.lastpass\\.com/\" to=\"https://$1.lastpass.com/\"/></ruleset>", "<ruleset name=\"lastlog.de\" default_off=\"failed ruleset test\" f=\"Lastlog.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lastminute.com (partial)\" default_off=\"failed ruleset test\" f=\"Lastminute.xml\"><securecookie host=\"^(?:car-hire|\\.www\\.(?:es|fr|it)|holidays|\\.www)?\\.lastminute\\.com$\" name=\".+\"/><rule from=\"^http://(es\\.|fr\\.|it\\.)?lastminute\\.com/\" to=\"https://www.$1lastminute.com/\"/><rule from=\"^http://www\\.carhire\\.lastminute\\.com/+\" to=\"https://car-hire.lastminute.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Laughing Squid (partial)\" f=\"Laughing-Squid.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.laughingsquid\\.us/\" to=\"https://laughingsquid.us/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LaunchKit.io (partial)\" f=\"LaunchKit.io.xml\"><securecookie host=\"^launchkit\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LaunchRock (partial)\" f=\"LaunchRock.xml\"><exclusion pattern=\"^http://(?:app|hbtrk|hummingbird|support|www)\\.\"/><securecookie host=\"^app\\.launchrock\\.com$\" name=\".+\"/><rule from=\"^http://blog\\.launchrock\\.com/\" to=\"https://launchrock.wpengine.com/\"/><rule from=\"^http://(\\w+)\\.launchrock\\.com/\" to=\"https://$1.launchrock.com/\"/></ruleset>", "<ruleset name=\"Launchclasses.com\" f=\"Launchclasses.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Launchpad\" f=\"Launchpad.xml\"><exclusion pattern=\"^http://feeds\\.launchpad\\.net/(?!$)\"/><exclusion pattern=\"^http://ppa\\.launchpad\\.net/\"/><securecookie host=\"^(?:.*\\.)?launchpad\\.net$\" name=\".+\"/><securecookie host=\"^(?:.*\\.)?launchpadlibrarian\\.net$\" name=\".+\"/><exclusion pattern=\"^http://blog\\.launchpad\\.net/\"/><exclusion pattern=\"^http://news\\.launchpad\\.net/\"/><rule from=\"^http://bazaar\\.launchpad\\.net/$\" to=\"https://launchpad.net/\"/><rule from=\"^http://feeds\\.launchpad\\.net/$\" to=\"https://help.launchpad.net/Feeds\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Laup\" f=\"Laup.xml\"><securecookie host=\"^\\.laup\\.nu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lautre.net admin and webmail area\" f=\"Lautre.net.xml\"><rule from=\"^http://admin\\.lautre\\.net/(admin|rc)/\" to=\"https://admin.lautre.net/$1/\"/></ruleset>", "<ruleset name=\"Lavabit\" default_off=\"failed ruleset test\" f=\"Lavabit.xml\"><securecookie host=\"^(?:.+\\.)?lavabit\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lavaboom.com\" default_off=\"failed ruleset test\" f=\"Lavaboom.com.xml\"><securecookie host=\"^technical\\.lavaboom\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Laverna\" f=\"Laverna.xml\"><rule from=\"^http://(?:www\\.)?laverna\\.cc/\" to=\"https://laverna.cc/\"/></ruleset>", "<ruleset name=\"LawGeex.com (partial)\" f=\"LawGeex.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Law Business Research CDN (partial)\" f=\"Law_Business_Research_CDN.xml\"><rule from=\"^http://s3\\.lbrcdn\\.net(?:\\.s3-external-3\\.amazonaws\\.com)?/\" to=\"https://s3-eu-west-1.amazonaws.com/s3.lbrcdn.net/\"/></ruleset>", "<ruleset name=\"Law School Admission Council (partial)\" f=\"Law_School_Admission_Council.xml\"><securecookie host=\"^.+\\.lsac\\.org$\" name=\".+\"/><rule from=\"^http://(llm|lsaclookup|os)\\.lsac\\.org/\" to=\"https://$1.lsac.org/\"/></ruleset>", "<ruleset name=\"LawBlog.de\" f=\"Lawblog.de.xml\"><rule from=\"^http://(?:www\\.)?lawblog\\.de/\" to=\"https://www.lawblog.de/\"/></ruleset>", "<ruleset name=\"Lawn & Landscape\" f=\"Lawn_and_Landscape.xml\"><securecookie host=\"^www\\.lawnandlandscape\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?lawnandlandscape\\.com/\" to=\"https://www.lawnandlandscape.com/\"/></ruleset>", "<ruleset name=\"LLNL.gov\" default_off=\"failed ruleset test\" f=\"Lawrence-Livermore-National-Laboratory.xml\"><exclusion pattern=\"^http://(?:careers-ext|computation|frontrange|hpcinnovationcenter|rzlc|students)\\.llnl\\.gov/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LayerBNC.org\" f=\"LayerBNC.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Layne Publications\" f=\"Layne_Publications.xml\"><securecookie host=\"^\\.www\\.laynepublications\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LazyCoins.com\" default_off=\"failed ruleset test\" f=\"LazyCoins.com.xml\"><securecookie host=\"^\\.lazycoins\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lazy Kush\" f=\"Lazy_Kush.xml\"><securecookie host=\"^(?:w*\\.)?lazykush\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"lb.ca\" f=\"Lb.ca.xml\"><securecookie host=\"^(?:www\\.)?lb\\.ca$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LboroAcUk\" f=\"LboroAcUk.xml\"><exclusion pattern=\"^http://lumen\\.lboro\\.ac\\.uk/+(?!css/|favicon\\.ico|images/)\"/><securecookie host=\"^(?:alumni|bestmaths|cash-plus|dspace|email(?:admin)?|engskills|epay|lists|luis|lorls|oss|pdwww|wfa)\\.lboro\\.ac\\.uk$\" name=\".+\"/><rule from=\"^http://(alumni|availability|bestmaths|booklab|campuslife|cash-plus|castrovalva|domains|dspace|easimap|email(?:admin)?|engskills|epay|lists|luis|lorls|lumen|mec|mondas|oss|pdwww|pma|prospectus|rapid|vacancies|webdiss|wfa)\\.lboro\\.ac\\.uk/\" to=\"https://$1.lboro.ac.uk/\"/><rule from=\"^http://(?:mooc|moochost|skaro)\\.lboro\\.ac\\.uk/+\" to=\"https://easimap.lboro.ac.uk/\"/></ruleset>", "<ruleset name=\"ldpreload.com\" f=\"Ldpreload.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Le Monde diplomatique (deutsch)\" f=\"Le-Monde-diplomatique.de.xml\"><securecookie host=\"^\\.monde-diplomatique\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Le-VPN.com (false MCB)\" platform=\"mixedcontent\" f=\"Le-VPN.com.xml\"><securecookie host=\"^\\.le-vpn\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LeFebvre.org\" default_off=\"failed ruleset test\" f=\"LeFebvre.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LeMonde.fr\" platform=\"mixedcontent\" f=\"LeMonde.fr.xml\"><securecookie host=\"^\\.?(?:abo|boutique)\\.lemonde\\.fr$\" name=\".+\"/><rule from=\"^http://actu-golf\\.lemonde\\.fr/\" to=\"https://www.lemonde.fr/golf/\"/><rule from=\"^http://(athletisme|auto-moto|basket|blogs|campus|cyclisme|faq|football|handball|judo|natation|rugby|ski|sport|tennis|voile|volley)\\.lemonde\\.fr/\" to=\"https://www.lemonde.fr/$1/\"/><rule from=\"^http://(basket-nba|football-nfl|hockey-nhl|sports-us)\\.lemonde\\.fr/\" to=\"https://www.lemonde.fr/sports-us/\"/><rule from=\"^http://(contact|info)\\.lemonde\\.fr/\" to=\"https://www.lemonde.fr/service/qui_sommes_nous.html\"/><rule from=\"^http://formule1\\.lemonde\\.fr/\" to=\"https://www.lemonde.fr/formule-1/\"/><rule from=\"^http://mondial\\.lemonde\\.fr/\" to=\"https://www.lemonde.fr/coupe-du-monde/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LeRelais.org\" f=\"LeRelais.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Le Loop.org\" platform=\"cacert\" default_off=\"failed ruleset test\" f=\"Le_Loop.org.xml\"><securecookie host=\"^(?:git|links)\\.leloop\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LeadFormix.com\" f=\"LeadFormix.xml\"><securecookie host=\"^www\\.leadformix\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LeadLander (partial)\" f=\"LeadLander.xml\"><rule from=\"^http://(?:www\\.)?leadlander\\.com/([\\w\\-]+\\.css|images/)\" to=\"https://ssl.leadlander.com/$1\"/><rule from=\"^http://ssl\\.leadlander\\.com/\" to=\"https://ssl.leadlander.com/\"/></ruleset>", "<ruleset name=\"LeadPages.net\" f=\"LeadPages.net.xml\"><securecookie host=\"^\\.leadpages\\.net$\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^my\\.leadpages\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LeadSpend.com (partial)\" default_off=\"failed ruleset test\" f=\"LeadSpend.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?leadspend\\.com/(?:blog|images/\\S+\\.[0-9a-zA-Z]{10}\\.png)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lead Forensics.com (partial)\" f=\"Lead_Forensics.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://tracker\\.leadforensics\\.com/\" to=\"https://secure.leadforensics.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Leader-Manager.com\" f=\"Leader-Manager.com.xml\"><securecookie host=\"^leader-manager\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?leader-manager\\.com/\" to=\"https://leader-manager.com/\"/></ruleset>", "<ruleset name=\"Leader Technologies\" default_off=\"failed ruleset test\" f=\"Leader-Technologies.xml\"><securecookie host=\"^www\\.leadertech\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?leadertech\\.com/\" to=\"https://www.leadertech.com/\"/></ruleset>", "<ruleset name=\"The Leader (partial)\" f=\"Leader.xml\"><rule from=\"^http://(?:www\\.)?leaderlandnews\\.com/(misc/|sites/|user(?:$|\\?|/))\" to=\"https://www.leaderlandnews.com/$1\"/></ruleset>", "<ruleset name=\"Leadnow\" default_off=\"mismatched\" f=\"Leadnow.xml\"><securecookie host=\"^(?:.*\\.)?leadnow\\.ca$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?leadnow\\.ca/\" to=\"https://leadnow.ca/\"/></ruleset>", "<ruleset name=\"Leadwerks.com (partial)\" f=\"Leadwerks.com.xml\"><rule from=\"^http://(www\\.)?leadwerks\\.com/(favicon\\.ico|files/|img/|scripts/|/?werkspace/(?:cache/|cometchat/|index\\.php|/?public/|uploads/))\" to=\"https://$1leadwerks.com/$2\"/></ruleset>", "<ruleset name=\"Leaflet JS.com\" f=\"Leaflet_JS.com.xml\"><rule from=\"^http://cdn\\.leafletjs\\.com/\" to=\"https://d19vzq90twjlae.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Leafly.com (partial)\" f=\"Leafly.com.xml\"><rule from=\"^http://leafly\\.com/\" to=\"https://www.leafly.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"League of Legends.com (mismatched)\" default_off=\"mismatched\" f=\"League_of_Legends.com-problematic.xml\"><rule from=\"^http://(gameinfo\\.(?:euw|na)|prized\\.na)\\.leagueoflegends\\.com/\" to=\"https://$1.leagueoflegends.com/\"/></ruleset>", "<ruleset name=\"League of Legends.com (partial)\" f=\"League_of_Legends.com.xml\"><rule from=\"^http://cdn\\.leagueoflegends\\.com/\" to=\"https://dx0wf1fepagqw.cloudfront.net/\"/><rule from=\"^http://support\\.leagueoflegends\\.com/\" to=\"https://support.riotgames.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LeahScape.com\" f=\"LeahScape.com.xml\"><securecookie host=\"^support\\.leahscape.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LeakedSource.com\" default_off=\"failed ruleset test\" f=\"Leakedsource.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Leanpub.com (partial)\" f=\"Leanpub.com.xml\"><securecookie host=\"^(?:www\\.)?leanpub\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?leanpub\\.com/\" to=\"https://$1leanpub.com/\"/><rule from=\"^http://samples\\.leanpub\\.com/\" to=\"https://s3.amazonaws.com/samples.leanpub.com/\"/></ruleset>", "<ruleset name=\"Leap Motion\" f=\"Leap_Motion.xml\"><securecookie host=\"^(?:www\\.)?leapmotion\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LearnShare.com\" f=\"LearnShare.com.xml\"><securecookie host=\"(?:.+\\.)?learnshare\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Learn my way.com\" f=\"Learn_my_way.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LearningCast.jp\" f=\"LearningCast.jp.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LeaseRig.net\" default_off=\"failed ruleset test\" f=\"LeaseRig.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LeaseWeb.com (partial)\" f=\"LeaseWeb.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Least Authority.com (partial)\" f=\"Least_Authority.com.xml\"><rule from=\"^http://www\\.leastauthority\\.com/\" to=\"https://leastauthority.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Least Fixed.com\" f=\"Least_Fixed.com.xml\"><rule from=\"^http://(?:www\\.)?leastfixed\\.com/\" to=\"https://leastfixed.com/\"/></ruleset>", "<ruleset name=\"LebLibrary.com\" f=\"LebLibrary.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ledger.co\" f=\"Ledger.co.xml\"><securecookie host=\"^\\.ledger\\.co$\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^www\\.ledger\\.co$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ledger Wallet.com (partial)\" f=\"Ledger_Wallet.com.xml\"><securecookie host=\"^\\.ledgerwallet\\.com$\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^www\\.ledgerwallet\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ledgerscope\" default_off=\"failed ruleset test\" f=\"Ledgerscope.xml\"><securecookie host=\"^ledgerscope\\.net$\" name=\".+\"/><securecookie host=\"^www\\.ledgerscope\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Leeds.ac.uk (false MCB)\" platform=\"mixedcontent\" f=\"Leeds.ac.uk-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Leeds Building Society.co.uk (partial)\" f=\"Leeds_Building_Society.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^_gat?$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Leet Media.com\" default_off=\"failed ruleset test\" f=\"Leet_Media.com.xml\"><securecookie host=\"^(?:w*\\.)?leetmedia\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Leetway.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Leetway.com.xml\"><securecookie host=\"^\\.leetway\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Life Extension Magazine\" f=\"Lef.org.xml\"><rule from=\"^http://(?:www\\.)?lef\\.org/\" to=\"https://www.lef.org/\"/></ruleset>", "<ruleset name=\"LegTux.org (partial)\" f=\"LegTux.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Legacy.com (partial)\" default_off=\"failed ruleset test\" f=\"Legacy.com.xml\"><exclusion pattern=\"^http://memorialwebsites\\.legacy\\.com/(?:.*/)?InvalidPage\\.aspx\"/><securecookie host=\".\" name=\"^optimizely\"/><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"legacy.vg\" f=\"Legacy.vg.xml\"><securecookie host=\"^www\\.legacy\\.vg$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Legal Directories\" f=\"Legal_Directores.xml\"><securecookie host=\"^www\\.legaldirectories\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LegiScan.com\" default_off=\"failed ruleset test\" f=\"LegiScan.com.xml\"><securecookie host=\"^\\.legiscan\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"legislationsurveys.com\" f=\"Legislationsurveys.com.xml\"><rule from=\"^http://(?:www\\.)?legislationsurveys\\.com/\" to=\"https://www.legislationsurveys.com/\"/></ruleset>", "<ruleset name=\"LegitScript\" f=\"LegitScript.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Legit BS.net\" f=\"Legit_BS.net.xml\"><securecookie host=\"^\\.legitbs\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LEGOLAND Discovery Centre\" default_off=\"failed ruleset test\" f=\"Legolanddiscoverycenter.xml\"><securecookie host=\"www\\.legolanddiscoverycentre\\.(ca|co\\.uk|de)$\" name=\".+\"/><securecookie host=\"www\\.legolanddiscoverycenter\\.(cn|com|jp)$\" name=\".+\"/><rule from=\"^http://legolanddiscoverycentre\\.(ca|co\\.uk|de)/\" to=\"https://www.legolanddiscoverycentre.$1/\"/><rule from=\"^http://legolanddiscoverycenter\\.(cn|com|jp)/\" to=\"https://www.legolanddiscoverycenter.$1/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Legolas Media (mismatches)\" default_off=\"mismatched\" f=\"Legolas-Media-mismatches.xml\"><rule from=\"^http://(?:www\\.)?legolas-media\\.com/\" to=\"https://legolas-media.com/~triathl9/\"/></ruleset>", "<ruleset name=\"Legolas Media (partial)\" f=\"Legolas-Media.xml\"><securecookie host=\"^\\.legolas-media\\.com$\" name=\"^uid$\"/><rule from=\"^http://rt\\.legolas-media\\.com/\" to=\"https://rt.legolas-media.com/\"/></ruleset>", "<ruleset name=\"Leia Jung.org\" default_off=\"expired, self-signed\" f=\"Leia_Jung.org.xml\"><rule from=\"^http://(?:www\\.)?leiajung\\.org/\" to=\"https://leiajung.org/\"/></ruleset>", "<ruleset name=\"Leibniz Supercomputing Centre\" default_off=\"failed ruleset test\" f=\"Leibniz_Supercomputing_Centre.xml\"><securecookie host=\"^servicedesk\\.lrz\\.de$\" name=\"^PHPSESSID$\"/><securecookie host=\"^(?:idportal|servicedesk)\\.lrz\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Leicestershire.gov.uk\" default_off=\"mismatched\" f=\"Leicestershire.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Leics.Police.uk\" f=\"LeicestershirePolice.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Leiden Univ.nl (partial)\" f=\"Leiden_Univ.nl.xml\"><exclusion pattern=\"^http://biosyn\\.lic\\.leidenuniv\\.nl/+(?!files/|modules/|sites/)\"/><rule from=\"^http://((?:www\\.)?beeldbank|blackboard|(?:www\\.)?disc|lic|biosyn\\.lic|www\\.math|media|nepo|openaccess|socrates|lcserver\\.strw|studiegids|(?:login\\.)?uaccess|usis|weblog|webmail)\\.leidenuniv\\.nl/\" to=\"https://$1.leidenuniv.nl/\"/><rule from=\"^http://(?:www\\.)?physics\\.leidenuniv\\.nl/\" to=\"https://www.physics.leidenuniv.nl/\"/></ruleset>", "<ruleset name=\"Lektorium.tv\" f=\"Lektorium.tv.xml\"><rule from=\"^http://(?:www\\.)?lektorium\\.tv/\" to=\"https://www.lektorium.tv/\"/></ruleset>", "<ruleset name=\"Lelo.com\" f=\"Lelo.com.xml\"><exclusion pattern=\"^http://(?:[^./]+\\.){2,}lelo\\.com/\"/><securecookie host=\"^\\.\" name=\"^(?:_gat?$|_gat_|PHPSESSID$)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lemde.fr\" default_off=\"other\" f=\"Lemde.fr.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lendeavor.com\" f=\"Lendeavor.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lending Club (partial)\" f=\"Lending-Club.xml\"><securecookie host=\"^www\\.lendingclub\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lendo.se (partial)\" f=\"Lendo.se.xml\"><securecookie host=\"^\\.lendo\\.se$\" name=\"^tracking_partner$\"/><securecookie host=\"^www\\.lendo\\.se$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?lendo\\.se/\" to=\"https://www.lendo.se/\"/></ruleset>", "<ruleset name=\"lengow.com\" f=\"Lengow.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lenos Softwarse (partial)\" f=\"Lenos-Software.xml\"><securecookie host=\"^secure\\.lenos\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lenovo.com-Problematic\" f=\"Lenovo.com-Problematic.xml\"><rule from=\"^http://www\\.lenovo\\.com/\" to=\"https://www.lenovo.com/\"/><exclusion pattern=\"^http://www\\.lenovo\\.com/(depotstatus|friendsandfamily|lenovorecovery|support)\"/><exclusion pattern=\"^http://www3\\.lenovo\\.com/$\"/><rule from=\"^http://www3\\.lenovo\\.com/(_ui|maintenance|medias)/\" to=\"https://www3.lenovo.com/$1/\"/><rule from=\"^http://www3\\.lenovo\\.com/(\\S+)?dtagent_ICA23hjprx_6000500091501\\.js\" to=\"https://www3.lenovo.com/$1dtagent_ICA23hjprx_6000500091501.js\"/><exclusion pattern=\"^http://outlet\\.lenovo\\.com/$\"/><rule from=\"^http://outlet\\.lenovo\\.com/(ISS_Static|SEUILibrary)/\" to=\"https://outlet.lenovo.com/$1/\"/><exclusion pattern=\"^http://pcsupport\\.lenovo\\.com/$\"/><rule from=\"^http://pcsupport\\.lenovo\\.com/(~|App|dist)/\" to=\"https://pcsupport.lenovo.com/$1/\"/></ruleset>", "<ruleset name=\"lenovo.com.cn\" default_off=\"failed ruleset test\" f=\"Lenovo.com.cn.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lenovo.com\" f=\"Lenovo.com.xml\"><exclusion pattern=\"^http://support\\.lenovo\\.com/$\"/><rule from=\"^http://forum\\.lenovo\\.com/\" to=\"https://forums.lenovo.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lens.io\" f=\"Lens.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LensRentals.com\" platform=\"mixedcontent\" f=\"LensRentals.xml\"><rule from=\"^http://(?:www\\.)?lensrentals\\.com/\" to=\"https://www.lensrentals.com/\"/></ruleset>", "<ruleset name=\"Leo.org (partial)\" f=\"Leo.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Leroy Farmer City Press (partial)\" f=\"Leroy_Farmer_City_Press.xml\"><rule from=\"^http://(?:www\\.)?leroyfcpress\\.com/(misc/|sites/|user(?:$|\\?|/))\" to=\"https://www.leroyfcpress.com/$1\"/></ruleset>", "<ruleset name=\"LesFurets.com (partial)\" f=\"LesFurets.com.xml\"><rule from=\"^http://cdn\\.lesfurets\\.com/\" to=\"https://d2f59t599bk8ak.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Les Inrocks.com\" platform=\"mixedcontent\" f=\"LesInrocks.com.xml\"><rule from=\"^http://lesinrocks\\.com/\" to=\"https://www.lesinrocks.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LessThan3\" default_off=\"mismatched\" f=\"LessThan3.xml\"><rule from=\"^http://(?:www\\.)?lessthan3\\.com/\" to=\"https://www.lessthan3.com/\"/><rule from=\"^http://media\\.lessthan3\\.com/\" to=\"https://media.lessthan3.com/\"/></ruleset>", "<ruleset name=\"Lessig 2016.us\" f=\"Lessig_2016.us.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lessig for president.com\" default_off=\"failed ruleset test\" f=\"Lessig_for_president.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lester Chan.net\" f=\"Lester_Chan.net.xml\"><securecookie host=\"^lesterchan\\.net$\" name=\".+\"/><rule from=\"^http://l(?:c2\\.lcstatic\\.net|esterchan\\.lesterchan\\.netdna-cdn\\.com)/\" to=\"https://lesterchan-lesterchan.netdna-ssl.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LetsSingIt (partial)\" f=\"LetsSingIt.xml\"><rule from=\"^http://cdn\\.lsistatic\\.com/\" to=\"https://lsi.cachefly.net/\"/></ruleset>", "<ruleset name=\"Lets Encrypt.org\" f=\"Lets_Encrypt.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lets Talk Bitcoin.com\" default_off=\"failed ruleset test\" f=\"Lets_Talk_Bitcoin.com.xml\"><securecookie host=\"^\\.letstalkbitcoin\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Letterboxd.com\" f=\"Letterboxd.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lettre-de-motivation-facile.com\" f=\"Lettre-de-motivation-facile.com.xml\"><securecookie host=\"^(?:w*\\.)?lettre-de-motivation-facile\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Level 3.com (partial)\" f=\"Level_3.com.xml\"><securecookie host=\"^account\\.level3\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"levels.io\" f=\"Levels.io.xml\"><rule from=\"^http://www\\.levels\\.io/\" to=\"https://levels.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lever.co\" f=\"Lever.co.xml\"><securecookie host=\"^jobs\\.lever\\.co$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Leveson Inquiry\" default_off=\"failed ruleset test\" f=\"Leveson_Inquiry.xml\"><rule from=\"^http://(?:www\\.)?levesoninquiry\\.org\\.uk/\" to=\"https://www.levesoninquiry.org.uk/\"/></ruleset>", "<ruleset name=\"Levexis.com (partial)\" f=\"Levexis.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://res\\.levexis\\.com/\" to=\"https://sec.levexis.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Leviathan Security.com\" f=\"Leviathan_Security.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf-clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Levny-hosting.cz\" f=\"Levny-hosting.cz.xml\"><securecookie host=\"^www\\.levny-hosting\\.cz$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Levo.com\" f=\"Levo.com.xml\"><securecookie host=\"^(?:pages)?\\.levo\\.com$\" name=\".+\"/><rule from=\"^http://levo\\.com/\" to=\"https://www.levo.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Levo League.com (partial)\" f=\"Levo_League.com.xml\"><rule from=\"^http://(?:www\\.)?levoleague\\.com/\" to=\"https://www.levo.com/\"/><rule from=\"^http://assets\\.levoleague\\.com/\" to=\"https://d1liz66zbw1f5h.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Levonline.com\" f=\"Levonline.com.xml\"><securecookie host=\"^(?:www\\.)?levonline\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LewRockwell.com\" f=\"LewRockwell.com.xml\"><securecookie host=\"^(?:beta|www)\\.lewrockwell.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lex Machina.com (partial)\" f=\"Lex_Machina.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lexity.com\" f=\"Lexity.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?lexity\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LezloveVideo.com\" f=\"LezloveVideo.com.xml\"><securecookie host=\"^www\\.lezlovevideo\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?lezlovevideo\\.com/\" to=\"https://www.lezlovevideo.com/\"/></ruleset>", "<ruleset name=\"Lfrs.sl\" f=\"Lfrs.sl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lh.co.th\" default_off=\"failed ruleset test\" f=\"Lh.co.th.xml\"><rule from=\"^http://(?:www\\.)?lh\\.co\\.th/\" to=\"https://www.lh.co.th/\"/></ruleset>", "<ruleset name=\"LiLux.lu\" f=\"LiLux.lu.xml\"><securecookie host=\"^(?:mail|www)\\.lilux\\.lu$\" name=\".+\"/><rule from=\"^http://((?:lists|mail|www)\\.)?lilux\\.lu/\" to=\"https://$1lilux.lu/\"/></ruleset>", "<ruleset name=\"Lib.rus.ec\" f=\"Lib.rus.ec.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LibAnswers.com\" f=\"LibAnswers.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LibApps.com\" f=\"LibApps.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LibCal.com\" f=\"LibCal.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LibGuides\" default_off=\"failed ruleset test\" f=\"LibGuides.xml\"><rule from=\"^http://(\\w+\\.)?libguides\\.com/\" to=\"https://$1libguides.com/\"/></ruleset>", "<ruleset name=\"libSDL.org (partial)\" f=\"LibSDL.org.xml\"><securecookie host=\"^(?:\\.bugzilla|forums)\\.libsdl\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"libav\" f=\"Libav.xml\"><securecookie host=\"^.*\\.libav\\.org$\" name=\".*\"/><rule from=\"^http://((?:bugzilla|fate|git|samples|www)\\.)?libav\\.org/\" to=\"https://$1libav.org/\"/></ruleset>", "<ruleset name=\"Libdems.org.uk (partial)\" f=\"Libdems.org.uk.xml\"><securecookie host=\"^(?:www\\.)?libdems\\.org\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?libdems\\.org\\.uk/(app/|favicon\\.ico|make_a_donation\\.aspx|siteFiles/)\" to=\"https://www.libdems.org.uk/$1\"/><rule from=\"^http://pdd\\.libdems\\.org\\.uk/\" to=\"https://pdd.libdems.org.uk/\"/></ruleset>", "<ruleset name=\"libdrc.org\" default_off=\"mismatched\" f=\"Libdrc.org.xml\"><rule from=\"^http://(?:www\\.)?libdrc\\.org/\" to=\"https://libdrc.org/\"/></ruleset>", "<ruleset name=\"Liberal Party of Canada (partial)\" f=\"Liberal.ca.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Liberal America.org (false MCB)\" platform=\"mixedcontent\" f=\"Liberal_America.org-falsemixed.xml\"><securecookie host=\"^\\.liberalamerica\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?liberalamerica\\.org/\" to=\"https://www.liberalamerica.org/\"/></ruleset>", "<ruleset name=\"Liberal America.org (partial)\" f=\"Liberal_America.org.xml\"><rule from=\"^http://(?:www\\.)?liberalamerica\\.org/(?=wp-content/|wp-includes/)\" to=\"https://www.liberalamerica.org/\"/></ruleset>", "<ruleset name=\"Liberdade.Digital\" default_off=\"failed ruleset test\" f=\"Liberdade.Digital.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Liberian Geek.net\" f=\"Liberian_Geek.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Liberty.me\" f=\"Liberty.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Liberty\" f=\"Liberty.xml\"><securecookie host=\"^(?:www\\.)?liberty-human-rights\\.org\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Liberty Flail Mowers.com (partial)\" default_off=\"failed ruleset test\" f=\"Liberty_Flail_Mowers.com.xml\"><rule from=\"^http://(www\\.)?libertyflailmowers\\.com/(?!/*(?:$|\\?))\" to=\"https://$1libertyflailmowers.com/\"/></ruleset>", "<ruleset name=\"Libgen\" f=\"Libgen.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Libis.be (partial)\" f=\"Libis.be.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Libraries.io\" f=\"Libraries.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LibAnywhere.com\" f=\"LibraryAnywhere.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LibraryThing.com\" f=\"LibraryThing.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Library Freedom Project.org\" default_off=\"failed ruleset test\" f=\"Library_Freedom_Project.org.xml\"><securecookie host=\"^\\.libraryfreedomproject\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Library License.org\" default_off=\"mismatched\" f=\"Library_License.org.xml\"><rule from=\"^http://(?:www\\.)?librarylicense\\.org/\" to=\"https://librarylicense.org/\"/></ruleset>", "<ruleset name=\"Librato.com\" f=\"Librato.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Libravatar.org\" f=\"Libravatar.org.xml\"><rule from=\"^http://(www\\.)?libravatar\\.org/\" to=\"https://$1libravatar.org/\"/><rule from=\"^http://(?:sec)?cdn\\.libravatar\\.org/\" to=\"https://seccdn.libravatar.org/\"/></ruleset>", "<ruleset name=\"LibreOffice-from-Collabora.com\" f=\"LibreOffice-from-Collabora.com.xml\"><securecookie host=\"^www\\.libreoffice-from-collabora\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LibreOffice.org\" f=\"LibreOffice.org.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LibreOffice-Box\" f=\"LibreOfficeBox.xml\"><rule from=\"^http://(?:www\\.)?libreofficebox\\.org/\" to=\"https://www.libreofficebox.org/\"/></ruleset>", "<ruleset name=\"LibrePlanet.org\" f=\"LibrePlanet.org.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LibreSSL.org\" f=\"LibreSSL.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Libre Graphics World.org (false MCB)\" default_off=\"self-signed\" platform=\"mixedcontent\" f=\"Libre_Graphics_World.org.xml\"><securecookie host=\"^libregraphicsworld\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?libregraphicsworld\\.org/\" to=\"https://libregraphicsworld.org/\"/></ruleset>", "<ruleset name=\"Libreswan.org\" f=\"Libreswan.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Libri.de\" f=\"Libri.de.xml\"><securecookie host=\"^www\\.libri\\.de$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?libri\\.de/\" to=\"https://www.libri.de/\"/><rule from=\"^http://media\\.libri\\.de/\" to=\"https://media.libri.de/\"/></ruleset>", "<ruleset name=\"LibriVox (partial)\" f=\"LibriVox.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"libssh.org (partial)\" f=\"Libssh.org.xml\"><securecookie host=\"^www\\.libssh\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"libsyn.com (partial)\" f=\"Libsyn.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://(ec|hwcdn)\\.libsyn\\.com/\" to=\"https://secure-$1.libsyn.com/\"/><rule from=\"^http://static\\.libsyn\\.com/\" to=\"https://ssl-static.libsyn.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"libtoxcore.so (partial)\" default_off=\"failed ruleset test\" f=\"Libtoxcore.so.xml\"><rule from=\"^http://www\\.libtoxcore\\.so/\" to=\"https://libtoxcore.so/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"libvirt.org (partial)\" f=\"Libvirt.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"license buttons.net\" f=\"License_buttons.net.xml\"><securecookie host=\"^\\.licensebuttons\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lichtblick.de\" f=\"Lichtblick.de.xml\"><rule from=\"^http://(?:www\\.)?lichtblick\\.de/\" to=\"https://www.lichtblick.de/\"/></ruleset>", "<ruleset name=\"Lidé.cz\" f=\"Lide.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lidl.com (partial)\" f=\"Lidl.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lifars.com (partial)\" f=\"Lifars.com.xml\"><securecookie host=\"^(?:www\\.)?lifars\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Life in the Fast Lane (partial)\" f=\"Life-in-the-Fast-Lane.xml\"><rule from=\"^http://(?:www\\.)?lifeinthefastlane\\.ca/(favicon\\.ico|wp-content/)\" to=\"https://www.lifeinthefastlane.ca/$1\"/></ruleset>", "<ruleset name=\"LifeReimagined.org\" default_off=\"missing certificate chain\" f=\"LifeReimagined.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lifehacker.com\" f=\"Lifehacker.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://cache\\.lifehacker\\.com/\" to=\"https://cache.gawkerassets.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lifeline Australia\" f=\"Lifeline-Australia.xml\"><securecookie host=\"^www\\.lifeline\\.org\\.au$\" name=\".+\"/><rule from=\"^(?:http://(?:www\\.)?|https://)lifeline\\.org\\.au/\" to=\"https://www.lifeline.org.au/\"/></ruleset>", "<ruleset name=\"Liferay.com\" f=\"Liferay.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lifesaving Resources\" f=\"Lifesaving-Resources.xml\"><securecookie host=\"^\\.lifesaving\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lift conference\" default_off=\"mismatch, self-signed\" f=\"Lift-conference.xml\"><securecookie host=\"^.*\\.liftconference\\.com$\" name=\".*\"/><rule from=\"^http://(?:(videos\\.)|www\\.)?liftconference\\.com/\" to=\"https://$1liftconference.com/\"/></ruleset>", "<ruleset name=\"LiftShare\" f=\"LiftShare.xml\"><securecookie host=\"^(?:.+\\.)?liftshare\\.com$\" name=\".*\"/><rule from=\"^http://liftshare\\.com/\" to=\"https://liftshare.com/\"/><rule from=\"^http://(images|www|scripts)\\.liftshare\\.com/\" to=\"https://$1.liftshare.com/\"/></ruleset>", "<ruleset name=\"Lift Security.io\" f=\"Lift_Security.io.xml\"><rule from=\"^http://(?:(blog\\.)|www\\.)?liftsecurity\\.io/\" to=\"https://$1liftsecurity.io/\"/></ruleset>", "<ruleset name=\"Liftdna.com (problematic)\" default_off=\"mismatched\" f=\"Liftdna.com-problematic.xml\"><rule from=\"^http://(?:www\\.)?liftdna\\.com/(?!\\w+\\.js|css/|images/|js/)\" to=\"https://www.liftdna.com/\"/></ruleset>", "<ruleset name=\"Liftdna.com (partial)\" f=\"Liftdna.com.xml\"><rule from=\"^http://(hosted|static)\\.liftdna\\.com/\" to=\"https://$1.liftdna.com/\"/><rule from=\"^http://marketing\\.liftdna\\.com/\" to=\"https://www.actonsoftware.com/\"/><rule from=\"^http://reporting\\.liftdna\\.com/(users)?(?:\\?.*)?$\" to=\"https://lift.openx.com/$1\"/><rule from=\"^http://reporting\\.liftdna\\.com/users/([^?]*)(?:$\\?.*)?\" to=\"https://lift.openx.com/users/$1\"/></ruleset>", "<ruleset name=\"Liftware\" f=\"Liftware.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ligatus (partial)\" f=\"Ligatus.xml\"><securecookie host=\"^\\.ligatus\\.com$\" name=\"^LIG_Y$\"/><securecookie host=\"^\\.ret01\\.ligatus\\.com$\" name=\".+\"/><rule from=\"^http://(a|e|h|i|t)\\.ligatus\\.com/\" to=\"https://$1-ssl.ligatus.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Light-Paint.com\" f=\"Light-Paint.com.xml\"><securecookie host=\"^light-paint\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Light Blue Touchpaper.org\" f=\"Light_Blue_Touchpaper.org.xml\"><rule from=\"^http://lightbluetouchpaper\\.org/\" to=\"https://www.lightbluetouchpaper.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Light the Night.org\" default_off=\"mismatched\" f=\"Light_the_Night.org.xml\"><securecookie host=\"^www\\.lightthenight\\.org\" name=\".+\"/><rule from=\"^http://(?:www\\.)?lightthenight\\.org/\" to=\"https://www.lightthenight.org/\"/></ruleset>", "<ruleset name=\"Lighthouse app.com (partial)\" f=\"Lighthouse_app.com.xml\"><exclusion pattern=\"^http://help\\.lighthouseapp\\.com/\"/><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LightningMaps.org\" f=\"LightningMaps.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"lighttpd.net\" f=\"Lighttpd.net.xml\"><securecookie host=\".*\\.lighttpd\\.net$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"lihm.net\" f=\"Lihm.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Liikenneturva\" f=\"Liikenneturva.fi.xml\"><securecookie host=\"^(?:www\\.)liikenneturva\\.fi$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lijit.com\" f=\"Lijit.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Likes\" f=\"Likes.xml\"><securecookie host=\"^\\.likes\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?likes\\.com/\" to=\"https://$1likes.com/\"/><rule from=\"^http://i\\d\\.likes-media\\.com/\" to=\"https://d1qfo1bk8s78mq.cloudfront.net/\"/></ruleset>", "<ruleset name=\"likeyed.com\" f=\"Likeyed.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Liliani\" f=\"Liliani.xml\"><securecookie host=\"^www\\.liliani\\.com\\.br$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?liliani\\.com\\.br/\" to=\"https://www.liliani.com.br/\"/></ruleset>", "<ruleset name=\"lilliputti.com\" platform=\"mixedcontent\" f=\"Lilliputti.com.xml\"><rule from=\"^http://(?:www\\.)?lilliputti\\.com/\" to=\"https://lilliputti.com/\"/></ruleset>", "<ruleset name=\"limango\" default_off=\"failed ruleset test\" f=\"Limango.xml\"><securecookie host=\"^(?:.*\\.)?limango\\.de$\" name=\".+\"/><rule from=\"^http://(checkout\\.|www\\.)?limango\\.de/\" to=\"https://$1limango.de/\"/><rule from=\"^http://img\\.limango-media\\.de/\" to=\"https://img.limango-media.de/\"/></ruleset>", "<ruleset name=\"LimeService.com\" f=\"LimeService.xml\"><securecookie host=\"^www\\.limeservice\\.com$\" name=\".+\"/><rule from=\"^http://limeservice\\.com/\" to=\"https://www.limeservice.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LimeSurvey.org\" f=\"LimeSurvey.xml\"><securecookie host=\"^www\\.limesurvey\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Limelight Networks (partial)\" f=\"Limelight-Networks.xml\"><rule from=\"^http://([\\w\\-]+)\\.hs\\.llnwd\\.net/\" to=\"https://$1.hs.llnwd.net/\"/></ruleset>", "<ruleset name=\"Limited 2 Art.com (partial)\" f=\"Limited_2_Art.com.xml\"><rule from=\"^http://(www\\.)?limited2art\\.com/(?=content/|default\\.asp\\?template=l2art_checkout\\d\\.htm|favicon\\.ico|statics/|templates/)\" to=\"https://$1limited2art.com/\"/></ruleset>", "<ruleset name=\"limun.org\" default_off=\"failed ruleset test\" f=\"Limun.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lin Shung Huang.com\" f=\"Lin_Shung_Huang.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Linaro.org (partial)\" default_off=\"webmaster request\" f=\"Linaro.xml\"><securecookie host=\"^\\.linaro\\.org$\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\".+\\.linaro\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lincoln.gov.uk (partial)\" f=\"Lincoln.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lincolnshire.gov.uk (false MCB)\" platform=\"mixedcontent\" f=\"Lincolnshire.gov.uk-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lincolnshire.gov.uk (partial)\" f=\"Lincolnshire.gov.uk.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://lincolnshire\\.gov\\.uk/\" to=\"https://www.lincolnshire.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lincs to the Past.com\" default_off=\"missing certificate chain\" f=\"Lincs_to_the_Past.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lindt USA\" platform=\"mixedcontent\" f=\"LindtUSA.xml\"><rule from=\"^http://(?:www\\.)?lindtusa\\.com/\" to=\"https://www.lindtusa.com/\"/></ruleset>", "<ruleset name=\"Lindy.com\" default_off=\"expired\" f=\"Lindy.com.xml\"><securecookie host=\"^www\\.lindy\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?lindy\\.com/\" to=\"https://www.lindy.com/\"/></ruleset>", "<ruleset name=\"LineageOS.org\" f=\"LineageOS.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Linear.com (partial)\" f=\"Linear.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?linear\\.com/+(?!assets/|mylinear(?:$|[?/])|_ui/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Linear Collider Collaboration\" f=\"Linear_Collider_Collaboration.xml\"><securecookie host=\"^\\.linearcollider\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Linerunner (mismatches)\" default_off=\"mismatched\" f=\"Linerunner-mismatches.xml\"><rule from=\"^http://(blog|developer)\\.getcloudapp\\.com/\" to=\"https://$1.getcloudapp.com/\"/></ruleset>", "<ruleset name=\"Linerunner (partial)\" f=\"Linerunner.xml\"><rule from=\"^http://(api\\.|www\\.)?getcloudapp\\.com/\" to=\"https://$1getcloudapp.com/\"/><rule from=\"^http://store\\.getcloudapp\\.com//+([^?]+)\" to=\"https://my.cl.ly/plans/$1\"/><rule from=\"^http://store\\.getcloudapp\\.com//+\\?.*\" to=\"https://my.cl.ly/plans\"/><rule from=\"^http://store\\.getcloudapp\\.com/\" to=\"https://my.cl.ly/plans\"/></ruleset>", "<ruleset name=\"Lingospot.com (partial)\" default_off=\"failed ruleset test\" f=\"Lingospot.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Linguee\" f=\"Linguee.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LinkShare\" default_off=\"failed ruleset test\" f=\"LinkShare.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Linkbucks\" f=\"Linkbucks.xml\"><securecookie host=\"^(?:www\\.)?linkbucks\\.com$\" name=\".+\"/><rule from=\"^http://(?:static\\.|(www\\.))?linkbucks\\.com/\" to=\"https://$1linkbucks.com/\"/></ruleset>", "<ruleset name=\"LinkedIn.com (partial)\" f=\"LinkedIn.xml\"><exclusion pattern=\"^http://help-enterprise\\.linkedin\\.com/\"/><exclusion pattern=\"^http://ja\\.linkedin\\.com/\"/><securecookie host=\"^(?:\\.ads|aide|a[jy]uda|asistenta|(?:in|ms)\\.bantuan|business|gsk|guida|help|\\w\\w\\.help|\\w\\w-\\w\\w\\.help|hilfe|hj[ae]lp|hjaelp|hulp|linkedinforgood|mobile|pomoc|press|www|yardim)?\\.linkedin\\.com$\" name=\".+\"/><rule from=\"^http://marketing\\.linkedin\\.com/$\" to=\"https://business.linkedin.com/marketing-solutions\"/><rule from=\"^http://sales\\.linkedin\\.com/$\" to=\"https://business.linkedin.com/sales-solutions\"/><rule from=\"^http://((?:\\w\\w|dc\\.ads|[\\w-]+\\.dc\\.ads|imp2\\.ads|aide|a[jy]uda|asistenta|(?:in|ms)\\.bantuan|cms|content|developers?|e|economicgraph|engineering|forms|guida|help|(?:\\w\\w|\\w\\w-\\w\\w)\\.help|help-(?:enterprise|internal|test2?)|hilfe|hj[ae]lp|hjaelp|hulp|lms|(?:dev|dev-signin|sandbox|signin)\\.lms|marketing|napoveda|nonprofits|ourstory|platform|polls|pomoc|press|security|specialedition|talent|tulong|volunteers|www|touch\\.www|yardim)\\.)?linkedin\\.com/\" to=\"https://$1linkedin.com/\"/><rule from=\"^http://(www\\.)?(brand|bringinyourparents|business|certification|commsconnect|financeconnect|gsk|imagine|lifg|linkedinforgood|live|members|mobile|nonprofit|premium|purchasing|salesconnect|smallbusiness|students|studentcareers|university|veterans|volunteer)\\.linkedin\\.com/\" to=\"https://$1$2.linkedin.com/\"/></ruleset>", "<ruleset name=\"Linkomanija\" default_off=\"self-signed\" f=\"Linkomanija.xml\"><rule from=\"^http://(?:www\\.)?linkomanija\\.net/\" to=\"https://www.linkomanija.net/\"/></ruleset>", "<ruleset name=\"LinksAlpha.com (partial)\" default_off=\"failed ruleset test\" f=\"LinksAlpha.com.xml\"><securecookie host=\".+\\.linksalpha\\.com$\" name=\".+\"/><rule from=\"^http://linksalpha\\.com/\" to=\"https://www.linksalpha.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Linksmail.de\" f=\"Linksmail.de.xml\"><rule from=\"^http://(?:www\\.)?linksmail\\.de/\" to=\"https://mail.dielinke-sachsen.de/\"/></ruleset>", "<ruleset name=\"linksynergy.com (partial)\" f=\"Linksynergy.com.xml\"><securecookie host=\"^(?:\\.?cli|signup)\\.linksynergy\\.com$\" name=\".+\"/><rule from=\"^http://m\\.www\\.linksynergy\\.com/\" to=\"https://www.linkshare.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Linksys.com (partial)\" default_off=\"failed ruleset test\" f=\"Linksys.xml\"><exclusion pattern=\"^http://www\\.linksys\\.com/+(?!.+\\.(?:jpg|png|svg)(?:$|\\?))\"/><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^(?!www\\.linksys\\.com$)\\w\" name=\".\"/><rule from=\"^http://cache-www\\.linksys\\.com/\" to=\"https://cache-www.linksys.com.s3.amazonaws.com/cache-www.linksys.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Linn Records.com (partial)\" f=\"Linn_Records.com.xml\"><rule from=\"^http://(?:www\\.)?linnrecords\\.com/(?=(?:account|forgotten|login)\\.aspx|css/|images/|img/|img\\\\comment\\.gif|js/|linn\\.ico|WebResource\\.axd)\" to=\"https://www.linnrecords.com/\"/><rule from=\"^http://small\\.linncdn\\.com/\" to=\"https://gp1.wac.edgecastcdn.net/0043E0/\"/></ruleset>", "<ruleset name=\"linneanet.fi\" f=\"Linneanet.fi.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Linode.com\" default_off=\"failed ruleset test\" f=\"Linode.xml\"><securecookie host=\"^(?:.*\\.)?linode\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Linotype.com (partial)\" f=\"Linotype.com.xml\"><exclusion pattern=\"^http://www\\.linotype\\.com/+(?!(?:account|cart)(?:$|[?/])|css/|favicon\\.ico|gif/|images/|min/|redir/sampler\\.php)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Linphone\" f=\"Linphone.xml\"><rule from=\"^http://(?:www\\.)?linphone\\.org/\" to=\"https://www.linphone.org/\"/></ruleset>", "<ruleset name=\"linutronix\" f=\"Linutronix.xml\"><securecookie host=\"^(?:.*\\.)?linutronix\\.de$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Linux Counter Trac\" default_off=\"Certificate mismatch\" f=\"Linux-Counter-Trac.xml\"><rule from=\"^http://trac\\.linuxcounter\\.net/\" to=\"https://trac.linuxcounter.net/\"/></ruleset>", "<ruleset name=\"Linux Counter\" f=\"Linux-Counter.xml\"><securecookie host=\"^linuxcounter.net$\" name=\".+\"/><rule from=\"^http://counter\\.li\\.org/\" to=\"https://linuxcounter.net/\"/><rule from=\"^http://(www\\.)?linuxcounter\\.net/\" to=\"https://$1linuxcounter.net/\"/></ruleset>", "<ruleset name=\"Linux-Magazin.de (partial)\" default_off=\"failed ruleset test\" f=\"Linux-Magazin-Online.xml\"><exclusion pattern=\"^http://shop.linux-magazin.de/+(?!favicon\\.ico|media/|skin/)\"/><exclusion pattern=\"^http://www\\.linux-magazin\\.de/(?!extension/|var/)\"/><rule from=\"^http://linux-magazin\\.de/\" to=\"https://www.linux-magazin.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Linux Magazine (partial)\" f=\"Linux-Magazine.xml\"><rule from=\"^http://linux-magazine\\.com/\" to=\"https://www.linux-magazine.com/\"/><rule from=\"^http://www\\.linux-magazine\\.com/(design/|extension/|lnmshop/|static/|Subscribe/|var/)\" to=\"https://www.linux-magazine.com/$1\"/></ruleset>", "<ruleset name=\"Linux New Media (mismatches)\" default_off=\"mismatched\" f=\"Linux-New-Media-mismatches.xml\"><rule from=\"^http://(?:www\\.)?linuxnewmedia\\.de/\" to=\"https://www.linuxnewmedia.de/\"/></ruleset>", "<ruleset name=\"Linux New Media (partial)\" f=\"Linux-New-Media.xml\"><securecookie host=\"^.*\\.linuxnewmedia\\.(?:com|de)$\" name=\".*\"/><rule from=\"^http://rotation\\.linuxnewmedia\\.com/\" to=\"https://rotation.linuxnewmedia.com/\"/><rule from=\"^http://shop\\.linuxnewmedia\\.(com|de)/\" to=\"https://shop.linuxnewmedia.$1/\"/></ruleset>", "<ruleset name=\"Linux Plumbers Conference (partial)\" f=\"Linux-Plumbers-Conference.xml\"><rule from=\"^http://(?:www\\.)?linuxplumbersconf\\.net/\" to=\"https://linuxplumbersconf.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Linux-Tage.de\" f=\"Linux-Tage.de.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?linux-tage\\.de/+\" to=\"https://chemnitzer.linux-tage.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Linux-Tips.org\" f=\"Linux-Tips.org.xml\"><securecookie host=\"^(?:www)?\\.linux-tips\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Linux-apps.com\" f=\"Linux-apps.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"linux-dev.org\" f=\"Linux-dev.org.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"linux-sunxi.org\" f=\"Linux-sunxi.org.xml\"><securecookie host=\"^(?:linux-)?sunxi\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Linux.com\" f=\"Linux.com.xml\"><exclusion pattern=\"^http://jobs\\.linux\\.com/+(?!files/|partners/)\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http://jobs\\.linux\\.com/\" to=\"https://www.jobthread.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"linux.conf.au\" f=\"Linux.conf.au.xml\"><rule from=\"^http://(?:www\\.)?linux\\.conf\\.au/\" to=\"https://linux.conf.au/\"/></ruleset>", "<ruleset name=\"Linux.it\" f=\"Linux.it.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Linux.lu (partial)\" f=\"Linux.lu.xml\"><rule from=\"^http://(?:www\\.)?linux\\.lu/\" to=\"https://www.lilux.lu/\"/><rule from=\"^http://(www\\.)?udpcast\\.linux\\.lu/\" to=\"https://$1udpcast.linux.lu/\"/></ruleset>", "<ruleset name=\"Linux.org.au (problematic)\" default_off=\"expired, self-signed\" f=\"Linux.org.au-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Linux.org.au\" f=\"Linux.org.au.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://linux\\.org\\.au/\" to=\"https://www.linux.org.au/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Linux.org.ru\" f=\"Linux.org.ru.xml\"><securecookie host=\"^www\\.linux\\.org\\.ru$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LinuxDays.cz\" f=\"LinuxDays.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LinuxFR.org\" f=\"LinuxFR.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LinuxFound.info\" f=\"LinuxFound.info.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Linux Foundation.org (partial)\" default_off=\"failed ruleset test\" f=\"LinuxFoundation.xml\"><exclusion pattern=\"^http://events\\.linuxfoundation\\.org/((events/|\\?).*)?$\"/><exclusion pattern=\"^http://go\\.linuxfoundation\\.org/$\"/><securecookie host=\"^(?!collabprojects\\.|events\\.).\" name=\".\"/><rule from=\"^http://go\\.linuxfoundation\\.org/([el])/\" to=\"https://go.pardot.com/$1/\"/><rule from=\"^http://linuxfoundation\\.org/\" to=\"https://linuxfoundation.org/\"/><rule from=\"^http://(www|admin|automotive|collabprojects|developerbugs|events|identity|ldn|lists|lsbbugs|training)\\.linuxfoundation\\.org/\" to=\"https://$1.linuxfoundation.org/\"/><rule from=\"^http://lists\\.linux-foundation\\.org/\" to=\"https://lists.linux-foundation.org/\"/></ruleset>", "<ruleset name=\"Linux-MIPS.org (partial)\" default_off=\"missing certificate chain\" f=\"LinuxMIPS.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LinuxMusicians.com\" f=\"LinuxMusicians.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LinuxQuestions.org (partial)\" f=\"LinuxQuestions.xml\"><securecookie host=\"^www\\.linuxquestions\\.org$\" name=\".+\"/><rule from=\"^http://(www\\.)?linuxquestions\\.org/\" to=\"https://$1linuxquestions.org/\"/><rule from=\"^http://static\\.linuxquestions\\.org/\" to=\"https://lqo-thequestionsnetw.netdna-ssl.com/\"/></ruleset>", "<ruleset name=\"LinuxTV.org\" f=\"LinuxTV.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LinuxTag.org\" platform=\"cacert\" default_off=\"failed ruleset test\" f=\"LinuxTag.org.xml\"><securecookie host=\"^www\\.linuxtag\\.org$\" name=\".+\"/><rule from=\"^http://linuxtag\\.org/\" to=\"https://www.linuxtag.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Linux Academy.com\" f=\"Linux_Academy.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Linux Cloud VPS.com\" f=\"Linux_Cloud_VPS.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Linux Containers.org\" default_off=\"failed ruleset test\" f=\"Linux_Containers.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Linux Distro Community.com\" f=\"Linux_Distro_Community.com.xml\"><securecookie host=\"^\\.bbs\\.\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Linux Forums (partial)\" default_off=\"expired\" f=\"Linux_Forums.xml\"><securecookie host=\"^(?:w*\\.)?linuxforums\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Linux Game Publishing (partial)\" default_off=\"failed ruleset test\" f=\"Linux_Game_Publishing.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Linux Luddites.com\" f=\"Linux_Luddites.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.linuxluddites\\.com/\" to=\"https://linuxluddites.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Linux Voice.com\" f=\"Linux_Voice.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Linux control panel.co.uk\" f=\"Linux_control_panel.co.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Linuxaria.com\" f=\"Linuxaria.com.xml\"><securecookie host=\"^(?:\\.|\\.?www\\.)?linuxaria\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?linuxaria\\.com/\" to=\"https://$1linuxaria.com/\"/><rule from=\"^https?://cdn\\.linuxaria\\.com/\" to=\"https://d2lwstdywzrz5c.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Linuaudio.org (partial)\" default_off=\"self-signed\" f=\"Linuxaudio.org.xml\"><securecookie host=\"^\\.linuxaudio\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?linuxaudio\\.org/\" to=\"https://linuxaudio.org/\"/></ruleset>", "<ruleset name=\"Linuxjournal.com\" f=\"Linuxjournal.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Linuxlovers.at (false MCB)\" platform=\"mixedcontent\" f=\"Linuxlovers.at-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Linuxlovers.at (partial)\" default_off=\"failed ruleset test\" f=\"Linuxlovers.at.xml\"><exclusion pattern=\"^http://wiki\\.linuxlovers\\.at/+(?!lib/)\"/><securecookie host=\"^git\\.linuxlovers\\.at$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"linuxmonk.ch\" f=\"Linuxmonk.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Linuxpl.com (partial)\" f=\"Linuxpl.com.xml\"><securecookie host=\"^(?:(?:support|webftp|www)\\.)?linuxpl\\.com$\" name=\".+\"/><rule from=\"^http://((?:blog|support|webftp|www)\\.)?linuxpl\\.com/\" to=\"https://$1linuxpl.com/\"/></ruleset>", "<ruleset name=\"Linuxserver.io\" f=\"Linuxserver.io.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"linuxslut.net\" default_off=\"failed ruleset test\" f=\"Linuxslut.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"linuxwall.info (partial)\" f=\"Linuxwall.info.xml\"><rule from=\"^http://www\\.linuxwall\\.info/\" to=\"https://linuxwall.info/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lippincott Williams & Wilkins (partial)\" f=\"Lippincott_Williams_and_Wilkins.xml\"><securecookie host=\"^www\\.lww\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?lww\\.com/\" to=\"https://www.lww.com/\"/><rule from=\"^http://journals\\.lww\\.com/(?=_LAYOUTS/|_layouts/|WebResource\\.axd|\\w+/(?:_layouts|PublishingImages|Style\\ Library)/)\" to=\"https://journals.lww.com/\"/></ruleset>", "<ruleset name=\"Lippincott Williams & Wilkins (problematic)\" default_off=\"mismatched\" f=\"Lippincott_Williams_and_Wilkins_problematic.xml\"><securecookie host=\"^images\\.journals\\.lww\\.com$\" name=\".+\"/><rule from=\"^http://images\\.journals\\.lww\\.com/\" to=\"https://images.journals.lww.com/\"/></ruleset>", "<ruleset name=\"Lippupiste Oy\" default_off=\"failed ruleset test\" f=\"Lippupiste_Oy.xml\"><securecookie host=\"^.*\\.lippu\\.fi$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?(?:eventim|lippu)\\.fi/\" to=\"https://www.lippu.fi/\"/><rule from=\"^http://secure\\.lippu\\.fi/\" to=\"https://secure.lippu.fi/\"/></ruleset>", "<ruleset name=\"Lipreading.org\" f=\"Lipreading.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LiqD.net\" f=\"LiqD.net.xml\"><securecookie host=\"^\\.liqd\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Liquid Web\" f=\"Liquid-Web.xml\"><securecookie host=\"^(?:.*\\.)?liquidweb\\.com$\" name=\".*\"/><rule from=\"^http://(moya\\.|www\\.)?liquidweb\\.com/\" to=\"https://$1liquidweb.com/\"/><rule from=\"^http://media(?:\\.cdn)?\\.liquidweb\\.com/\" to=\"https://media.liquidweb.com/\"/></ruleset>", "<ruleset name=\"Liquid Light.co.uk\" f=\"Liquid_Light.co.uk.xml\"><securecookie host=\"^www\\.liquidlight\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Liquidmatrix.org\" f=\"Liquidmatrix.org.xml\"><securecookie host=\"^\\.liquidmatrix\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"list-manage.com\" f=\"List-manage.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://([\\w-]+)\\.us(\\d+)\\.list-manage\\.com/\" to=\"https://$1.us$2.list-manage.com/\"/></ruleset>", "<ruleset name=\"list-manage2.com\" f=\"List-manage2.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://([\\w-]+)\\.us(\\d+)\\.list-manage2\\.com/\" to=\"https://$1.us$2.list-manage.com/\"/></ruleset>", "<ruleset name=\"List.ru\" f=\"List.ru.xml\"><rule from=\"^http://(?:\\w\\w\\.){0,4}top\\.list\\.ru/\" to=\"https://top-fwz1.mail.ru/\"/></ruleset>", "<ruleset name=\"Listbox\" f=\"Listbox.xml\"><securecookie host=\"^\\.listbox\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Listener.co.nz\" default_off=\"failed ruleset test\" f=\"Listener.co.nz.xml\"><securecookie host=\"^www\\.listener\\.co\\.nz$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?listener\\.co\\.nz/\" to=\"https://www.listener.co.nz/\"/></ruleset>", "<ruleset name=\"Listener Approved\" default_off=\"failed ruleset test\" f=\"Listener_Approved.xml\"><securecookie host=\"^\\.listenerapproved.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Listonic (partial)\" f=\"Listonic.xml\"><rule from=\"^http://(www\\.)?listonic\\.com/(en-us/WebResource\\.axd|(?:en-us/)?login(?:$|\\?))\" to=\"https://www.listonic.com/$1\"/><rule from=\"^http://static\\.listonic\\.com/contentv2/\" to=\"https://www.listonic.com/Static/\"/></ruleset>", "<ruleset name=\"ListrakBI.com\" f=\"ListrakBI.com.xml\"><securecookie host=\".*\\.listrakbi\\.com$\" name=\".+\"/><rule from=\"^http://((?:a[lt]|s|sca)\\d*|www)\\.listrakbi\\.com/\" to=\"https://$1.listrakbi.com/\"/></ruleset>", "<ruleset name=\"LitHive.com\" f=\"LitHive.com.xml\"><securecookie host=\"^\\.lithive\\.com$\" name=\"^__cfduid$\"/><rule from=\"^http://(?:www\\.)?lithive\\.com/\" to=\"https://lithive.com/\"/></ruleset>", "<ruleset name=\"LiteBit.eu\" f=\"LiteBit.eu.xml\"><securecookie host=\"^(?:\\.|www\\.)?litebit\\.eu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LiteHosting.org (partial)\" default_off=\"refused\" f=\"LiteHosting.org.xml\"><rule from=\"^http://(www\\.)?litehosting\\.org/(API/|(?:cart|clientarea|serverstatus)\\.php|images/|sitemap\\.xml|templates/)\" to=\"https://$1litehosting.org/$2\"/></ruleset>", "<ruleset name=\"LiteSpeed Technologies (mismatches)\" default_off=\"mismatched\" f=\"LiteSpeed-Technologies-mismatches.xml\"><securecookie host=\"^(?:.*\\.)?litespeedtech\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?litespeedtech\\.com/\" to=\"https://www.litespeedtech.com/\"/></ruleset>", "<ruleset name=\"LiteSpeed Technologies (partial)\" f=\"LiteSpeed-Technologies.xml\"><securecookie host=\"^store\\.litespeedtech\\.com$\" name=\".+\"/><rule from=\"^http://blog\\.litespeedtech\\.com/wp-content/themes/litespeed/litespeed/\" to=\"https://store.litespeedtech.com/store/templates/litespeedv4/images/\"/><rule from=\"^http://store\\.litespeedtech\\.com/\" to=\"https://store.litespeedtech.com/\"/></ruleset>", "<ruleset name=\"liteaddress.org\" f=\"Liteaddress.org.xml\"><securecookie host=\"^\\.liteaddress\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Litecoin.info\" f=\"Litecoin.info.xml\"><securecookie host=\"^\\.?litecoin\\.info$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?litecoin\\.info/\" to=\"https://litecoin.info/\"/></ruleset>", "<ruleset name=\"Litecoin.org\" f=\"Litecoin.org.xml\"><securecookie host=\"^\\.litecoin\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LitecoinTalk.org\" f=\"LitecoinTalk.org.xml\"><securecookie host=\"^\\.?litecointalk\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Litecoinlocal.net\" f=\"Litecoinlocal.net.xml\"><securecookie host=\"^(?:www)?\\.litecoinlocal\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Literature and Latte.com\" f=\"Literature_and_Latte.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Literotica.com (partial)\" f=\"Literotica.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lithium clients\" default_off=\"mismatched\" f=\"Lithium-clients.xml\"><exclusion pattern=\"^http://discussions\\.nokia\\.co\\.uk/html/images/\"/><exclusion pattern=\"^http://businessforums\\.verizon\\.net/html/\"/><securecookie host=\"^discussions\\.nokia\\.co\\.uk$\" name=\".+\"/><securecookie host=\"^businessforums\\.verizon\\.net$\" name=\".+\"/><rule from=\"^http://discussions\\.nokia\\.co\\.uk/\" to=\"https://discussions.nokia.co.uk/\"/><rule from=\"^http://businessforums\\.verizon\\.net/\" to=\"https://businessforums.verizon.net/\"/></ruleset>", "<ruleset name=\"Lithium.com (partial)\" f=\"Lithium.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://spark\\.lithium\\.com/[^?]*\" to=\"https://www.lithium.com/lithium-social-media-monitoring\"/><rule from=\"^http://((?:community|\\w+\\.i|lithosphere|www)\\.)?lithium\\.com/\" to=\"https://$1lithium.com/\"/></ruleset>", "<ruleset name=\"Litle.com (partial)\" f=\"Litle.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Litmus.com\" f=\"Litmus.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LitmusCDN.com\" f=\"LitmusCDN.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Littler.com (partial)\" f=\"Litter.com.xml\"><rule from=\"^http://(?:www\\.)?littler\\.com/(favicon\\.ico|files/|sites/)\" to=\"https://www.littler.com/$1\"/></ruleset>", "<ruleset name=\"Little Hotelier (partial)\" f=\"Little-Hotelier.xml\"><securecookie host=\"^(apac|app|emea)\\.littlehotelier\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"little.my\" f=\"Little.my.xml\"><securecookie host=\"^\\.little\\.my$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LittleSis.org\" default_off=\"failed ruleset test\" f=\"LittleSis.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Little CMS.com\" default_off=\"mismatched\" f=\"Little_CMS.com.xml\"><rule from=\"^http://(?:www\\.)?littlecms\\.com/\" to=\"https://www.littlecms.com/\"/></ruleset>", "<ruleset name=\"littlesvr.ca\" default_off=\"self-signed\" f=\"Littlesvr.ca.xml\"><rule from=\"^http://(?:www\\.)?littlesvr\\.ca/\" to=\"https://littlesvr.ca/\"/></ruleset>", "<ruleset name=\"Liv.ac.uk (partial)\" f=\"Liv.ac.uk.xml\"><exclusion pattern=\"^http://(?:www\\.)?liv\\.ac\\.uk/+~\"/><rule from=\"^http://(?:www\\.)?liv\\.ac\\.uk/\" to=\"https://www.liv.ac.uk/\"/><rule from=\"^http://(people|staff|student)\\.liv\\.ac\\.uk/\" to=\"https://$1.liv.ac.uk/\"/></ruleset>", "<ruleset name=\"LiveChat Inc.com (partial)\" f=\"Live-Chat.xml\"><exclusion pattern=\"^http://www\\.livechatinc\\.com/(?!signup/|wp-content/)\"/><securecookie host=\".+\\.livechatinc\\.com$\" name=\".*\"/><rule from=\"^http://status\\.livechatinc\\.com/\" to=\"https://livechat.statuspage.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Live Nation Entertainment (partial)\" platform=\"mixedcontent\" f=\"Live-Nation.xml\"><securecookie host=\"^(?:.*\\.)?getmein\\.com$\" name=\".+\"/><securecookie host=\"^\\.ticketmaster\\.com$\" name=\"^s_v\\w$\"/><securecookie host=\"^www1?\\.(?:fr\\.|nl\\.)?livenation\\.(?:\\w\\w|co\\.jp|co\\.uk|com\\.au)\" name=\".+\"/><rule from=\"^http://(?:www\\.)?getmein\\.com/\" to=\"https://www.getmein.com/\"/><rule from=\"^http://secure\\.getmein\\.com/\" to=\"https://secure.getmein.com/\"/><rule from=\"^http://(?:www(1)?\\.)?livenation\\.(ae|asia|co\\.jp|co\\.uk|com\\.au|cz|dk|es|fi|fr|hu|it|kr|nl|no|pl|se)/\" to=\"https://www$1.livenation.$2/\"/><rule from=\"^http://(www1\\.)?(fr|nl)\\.livenation\\.be/\" to=\"https://$1$2.livenation.be/\"/><rule from=\"^http://(?:www\\.)?livenation\\.com/(favicon-ln\\.ico|ln/)\" to=\"https://www.livenation.com/$1\"/><rule from=\"^http://ads\\.livenation\\.com/\" to=\"https://de.livenation.com/\"/><rule from=\"^http://concerts\\.livenation\\.com/(?!$|concerts)\" to=\"https://concerts.livenation.com/\"/></ruleset>", "<ruleset name=\"Live.net\" default_off=\"failed ruleset test\" f=\"Live.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Live.com\" f=\"Live.xml\"><securecookie host=\"^\\.?(?:account|people\\.directory|(?:login\\.)?domains|mail|messenger|postmaster|profile|signup)\\.live\\.com$\" name=\".+\"/><rule from=\"^http://live\\.com/\" to=\"https://www.live.com/\"/><rule from=\"^http://sc[34]\\.maps\\.live\\.com/\" to=\"https://sc1.maps.live.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LAdesk.com\" f=\"LiveAgent.xml\"><securecookie host=\"^(?:www\\.)?ladesk\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LiveChat Inc.net\" f=\"LiveChat_Inc.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LiveCorp.com.au (partial)\" default_off=\"failed ruleset test\" f=\"LiveCorp.xml\"><exclusion pattern=\"^http://www\\.livecorp\\.com\\.au/+(?!App_Themes/|favicon\\.ico|LC/|getmedia/|(?:sp/)?register(?:$|\\?))\"/><rule from=\"^http://livecorp\\.com\\.au/\" to=\"https://www.livecorp.com.au/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LI.ru (partial)\" f=\"LiveInternet-falsemixed.xml\"><rule from=\"^http://(?:i\\.|www\\.)?li\\.ru/\" to=\"https://www.liveinternet.ru/\"/></ruleset>", "<ruleset name=\"LiveInternet.ru (partial)\" f=\"LiveInternet.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LiveJasmin (partial)\" f=\"LiveJasmin.xml\"><exclusion pattern=\"^http://new\\.livejasmin\\.com/(?!/*(?:favicon\\.ico|[a-z]{2}/auth/))\"/><exclusion pattern=\"^http://(?!static\\d\\.new\\.livejasmincdn\\.com/).+\\.new\\.livejasmincdn\\.com/\"/><rule from=\"^http://static\\d\\.new\\.livejasmincdn\\.com/\" to=\"https://new.livejasmin.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LiveJournal (buggy)\" default_off=\"breaks for non-logged-in users\" f=\"LiveJournal-problematic.xml\"><rule from=\"^http://(?:www\\.)?livejournal\\.com/\" to=\"https://www.livejournal.com/\"/></ruleset>", "<ruleset name=\"LiveJournal (partial)\" f=\"LiveJournal.xml\"><rule from=\"^http://(www\\.)?livejournal\\.com/(?=(?:changepassword|create|login)\\.html|manage/|shop/)\" to=\"https://$1livejournal.com/\"/><rule from=\"^http://status\\.livejournal\\.com/img/\" to=\"https://s3.amazonaws.com/status-livejournal/img/\"/><rule from=\"^http://(?:l-)stat\\.livejournal\\.com/img/error-pages/(?=bg-error-page\\.jpg|bullet-round-grey\\.gif|frank\\.png|logo-lj\\.png|rule-grey\\.gif)\" to=\"https://s3.amazonaws.com/status-livejournal/img/\"/><rule from=\"^http://(?:l-)?stat\\.livejournal\\.com/\" to=\"https://stat.livejournal.com/\"/></ruleset>", "<ruleset name=\"LiveMeme (partial)\" default_off=\"failed ruleset test\" f=\"LiveMeme.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LivePerson.net\" default_off=\"failed ruleset test\" f=\"LivePerson.net.xml\"><securecookie host=\".*\\.liveperson\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LivePerson (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"LivePerson.xml\"><securecookie host=\"^hc2\\.humanclick\\.com$\" name=\".+\"/><securecookie host=\".*\\.liveperson\\.com$\" name=\".+\"/><rule from=\"^http://liveperson\\.hosted\\.jivesoftware\\.com/\" to=\"https://community.liveperson.net/\"/><rule from=\"^http://liveperson\\.com/\" to=\"https://www.liveperson.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LiveRail (problematic)\" default_off=\"mismatched\" f=\"LiveRail-problematic.xml\"><rule from=\"^http://(?:cdn-)?static\\.liverail\\.com/\" to=\"https://cdn-static.liverail.com/\"/></ruleset>", "<ruleset name=\"LiveRail.com (partial) \" default_off=\"failed ruleset test\" f=\"LiveRail.xml\"><exclusion pattern=\"^http://lp\\.liverail\\.com/+(?!css/|images/|rs/)\"/><securecookie host=\"^(?:platform4)?\\.liverail\\.com$\" name=\".+\"/><rule from=\"^http://lp\\.liverail\\.com/\" to=\"https://na-n.marketo.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LiveRamp.com (partial)\" f=\"LiveRamp.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Live Strong.com (partial)\" f=\"LiveStrong.com.xml\"><securecookie host=\"^(?:.*\\.)?livestrong\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LiveWyer.com\" default_off=\"failed ruleset test\" f=\"LiveWyer.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LiveZilla.net (partial)\" default_off=\"failed ruleset test\" f=\"LiveZilla.net.xml\"><securecookie host=\"^www\\.livezilla\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Live Business Chat.com\" f=\"Live_Business_Chat.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Live Lingua.com\" f=\"Live_Lingua.com.xml\"><securecookie host=\"^www\\.livelingua\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Live filestore.com\" f=\"Live_filestore.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Liveclicker.com\" f=\"Liveclicker.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Liveclicker.net\" f=\"Liveclicker.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Livecoding.tv (partial)\" f=\"Livecoding.tv.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Livefyre (mismatches)\" default_off=\"mismatched\" f=\"Livefyre-mismatches.xml\"><exclusion pattern=\"^http://press\\.livefyre\\.com/$\"/><rule from=\"^http://blog\\.livefyre\\.com/wp-content/\" to=\"https://blog.livefyre.com/wp-content/\"/><rule from=\"^http://press\\.livefyre\\.com/\" to=\"https://press.livefyre.com/\"/></ruleset>", "<ruleset name=\"Livefyre.com (partial)\" f=\"Livefyre.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Livefyre (partial)\" default_off=\"Breaks comments\" f=\"Livefyre.xml\"><securecookie host=\"^\\.livefyre\\.co$\" name=\".+\"/><rule from=\"^http://avatars\\.fyre\\.co/\" to=\"https://dpstvy7p9whsy.cloudfront.net/\"/><rule from=\"^http://(?:zor\\.fyre\\.co|(?:www\\.|zor\\.)?livefyre\\.com)/\" to=\"https://d584h2bjreb1u.cloudfront.net/\"/><rule from=\"^http://3d88duefqgf2d7l2p18hja4194m\\.wpengine\\.netdna-cdn\\.com/\" to=\"https://livefyre.wpengine.com/\"/></ruleset>", "<ruleset name=\"Livelib.ru\" f=\"Livelib.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Livermore's Centennial Light Live Cam\" default_off=\"expired, self-signed\" f=\"Livermores-Centennial-Light-Live-Cam.xml\"><rule from=\"^http://(?:www\\.)?centennialbulb\\.org/\" to=\"https://centennialbulb.org/\"/></ruleset>", "<ruleset name=\"Liverpool Victoria (partial)\" f=\"Liverpool_Victoria.xml\"><securecookie host=\"^www\\.lv\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?lv\\.com/\" to=\"https://www.lv.com/\"/></ruleset>", "<ruleset name=\"livechatserver.com\" f=\"Livestatserver.com.xml\"><rule from=\"^http://(?:noc|ssl|staging|w1)\\.livechatserver\\.com/\" to=\"https://ssl.livechatserver.com/\"/></ruleset>", "<ruleset name=\"Livestock Transport\" default_off=\"failed ruleset test\" f=\"Livestock-Transport.xml\"><securecookie host=\"^(?:www\\.)?livestock-transport\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Livestream.com\" f=\"Livestream.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Livestrong (partial)\" default_off=\"redirect loop\" f=\"Livestrong.xml\"><securecookie host=\"^(?:.*\\.)?livestrong\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LivingSocial.co.uk\" default_off=\"failed ruleset test\" f=\"LivingSocial.co.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LivingSocial.com (partial)\" default_off=\"failed ruleset test\" f=\"LivingSocial.xml\"><securecookie host=\"^(?:mailtracker|merchant|pipeline|sherlock|www)?\\.livingsocial\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Living Routes.org (false MCB)\" platform=\"mixedcontent\" f=\"Living_Routes.org.xml\"><securecookie host=\"^(?:www)?\\.livingroutes\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"liwenhaosuper.com\" default_off=\"expired, mismatched, self-signed\" f=\"Liwenhaosuper.com.xml\"><securecookie host=\"^(?:www\\.)?liwenhaosuper\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?liwenhaosuper\\.com/\" to=\"https://liwenhaosuper.com/\"/></ruleset>", "<ruleset name=\"liz denys.com\" f=\"Liz_denys.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lizard Wrangler.com (partial)\" f=\"Lizard_Wrangler.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LJR\" f=\"Lj.Rossia.Org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lloyds TSB Offshore\" default_off=\"failed ruleset test\" f=\"Lloyds_TSB_Offshore.xml\"><securecookie host=\"^www\\.lloydstsb-offshore\\.com$\" name=\".+\"/><rule from=\"^http://online-offshore\\.lloydstsb\\.com/\" to=\"https://online-offshore.lloydstsb.com/\"/><rule from=\"^http://(?:www\\.)?lloydstsb-offshore\\.com/\" to=\"https://www.lloydstsb-offshore.com/\"/></ruleset>", "<ruleset name=\"Lloydsbank.com (partial)\" default_off=\"failed ruleset test\" f=\"Lloydsbank.com.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://infotools\\.lloydsbank\\.com/\" to=\"https://international.lloydsbank.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LmnCDN.com\" f=\"LmnCDN.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lnked.In\" f=\"Lnkd.In.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LoA.org\" f=\"LoA.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LoC.gov (partial)\" f=\"LoC.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LoadImpact.com\" f=\"LoadImpact.com.xml\"><securecookie host=\"^loadimpact\\.com$\" name=\".+\"/><rule from=\"^http://www\\.loadimpact\\.com/\" to=\"https://loadimpact.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Load Average.org\" f=\"Load_Average.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Loan Science\" f=\"Loan_Science.xml\"><securecookie host=\"^\\.loanscience\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?loanscience\\.com/\" to=\"https://www.loanscience.com/\"/></ruleset>", "<ruleset name=\"Loanliner.com\" f=\"Loanliner.com.xml\"><securecookie host=\"^(?:www\\.)?loanliner\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?loanliner\\.com/\" to=\"https://www.loanliner.com/\"/></ruleset>", "<ruleset name=\"Lob.com\" f=\"Lob.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Locaid\" f=\"Locaid.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?loc-aid\\.com/[^?]*\" to=\"https://www.locationsmart.com/\"/></ruleset>", "<ruleset name=\"Local.ch\" f=\"Local.ch.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Local.com\" f=\"Local.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LocalEdge (partial)\" platform=\"mixedcontent\" f=\"LocalEdge.xml\"><securecookie host=\"^.*\\.localedge\\.com$\" name=\".*\"/><rule from=\"^http://((?:extranet|sso|static|www)\\.)?localedge\\.com/\" to=\"https://$1localedge.com/\"/><rule from=\"^http://(?:images\\.|www\\.)?talkingphonebook\\.com/\" to=\"https://www.localedge.com/\"/></ruleset>", "<ruleset name=\"LocalWiki.org\" f=\"LocalWiki.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Local Media.org\" f=\"Local_Media.org.xml\"><securecookie host=\"^www\\.localmedia\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Localist.com (partial)\" f=\"Localist.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://images-www\\.localist\\.com/\" to=\"https://d3o66cj8sacbos.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Localsearch.ch\" default_off=\"failed ruleset test\" f=\"Localsearch.ch.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Locaweb (partial)\" f=\"Locaweb.xml\"><securecookie host=\"^.+\\.locaweb\\.com\\.br$\" name=\".+\"/><rule from=\"^http://(blog|developer|forum|painel|press|site|statusblog)\\.locaweb\\.com\\.br/\" to=\"https://$1.locaweb.com.br/\"/></ruleset>", "<ruleset name=\"LockerDome.com\" f=\"LockerDome.com.xml\"><rule from=\"^http://(cdn2?\\.|www\\.)?lockerdome\\.com/\" to=\"https://$1lockerdome.com/\"/></ruleset>", "<ruleset name=\"LogMe.In (partial)\" f=\"LogMe.In.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LogMeIn (mismatches)\" default_off=\"mismatched\" f=\"LogMeIn-mismatches.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LogMeIn.com (partial)\" f=\"LogMeIn.xml\"><securecookie host=\"^(?:content|\\.?investor|secure)?\\.logmein\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LogMeIn Inc.com (partial)\" f=\"LogMeIn_Inc.com.xml\"><securecookie host=\"^investor\\.logmeininc\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LogMeIn Rescue.com (partial)\" f=\"LogMeIn_Rescue.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LoganCIJ\" f=\"LoganCIJ.com.xml\"><rule from=\"^http://www\\.logancij\\.com/\" to=\"https://logancij.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Logentries.com (partial)\" f=\"Logentries.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Loggly.com\" f=\"Loggly.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"loggn.de\" f=\"Loggn.de.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LogicBox Software\" f=\"LogicBox_Software.xml\"><securecookie host=\".+\\.logicboxsoftware\\.com$\" name=\".+\"/><rule from=\"^http://([\\w-]+\\.)?logicboxsoftware\\.com/\" to=\"https://$1logicboxsoftware.com/\"/></ruleset>", "<ruleset name=\"Logika.net\" f=\"Logika.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Logilab.fr\" f=\"Logilab.fr.xml\"><securecookie host=\"^(?:.*\\.)?logilab\\.fr$\" name=\".*\"/><rule from=\"^http://bagu\\.logilab\\.fr/\" to=\"https://astroid.org/\"/><rule from=\"^http://logilab\\.fr/\" to=\"https://www.logilab.fr/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Logilab.org\" f=\"Logilab.org.xml\"><rule from=\"^http://lax\\.logilab\\.org/\" to=\"https://www.cubicweb.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Loginza.ru\" f=\"Loginza.ru.xml\"><securecookie host=\"^(?:www\\.)?loginza\\.ru$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Logitech.com (partial)\" f=\"Logitech.com.xml\"><exclusion pattern=\"^http://(?:origin2\\.|www\\.)?logitech\\.com/+(?!\\w\\w-\\w+(?:$|[?/])||assets/|images/|js/|styles/)\"/><securecookie host=\"^(?:buy|forums|secure)\\.logitech\\.com$\" name=\".+\"/><rule from=\"^http://(?:(?:origin2|secure|www)\\.)?logitech\\.com/\" to=\"https://secure.logitech.com/\"/><rule from=\"^http://(alert|buy|forums|register)\\.logitech\\.com/\" to=\"https://$1.logitech.com/\"/></ruleset>", "<ruleset name=\"LogoYes\" f=\"LogoYes.xml\"><securecookie host=\"^logoyes\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?logoyes\\.com/\" to=\"https://logoyes.com/\"/></ruleset>", "<ruleset name=\"Logotype.se\" f=\"Logotype.se.xml\"><securecookie host=\"^logotype\\.se$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Logout.hu\" f=\"Logout.hu.xml\"><rule from=\"^http://www\\.logout\\.hu/\" to=\"https://logout.hu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"lohud.com (partial)\" platform=\"mixedcontent\" f=\"Lohud.com.xml\"><securecookie host=\"^(?:www)?\\.lohud\\.com$\" name=\".+\"/><rule from=\"^http://(?:cmsimg\\.|www\\.)?lohud\\.com/\" to=\"https://www.lohud.com/\"/></ruleset>", "<ruleset name=\"Lokun.is\" default_off=\"failed ruleset test\" f=\"Lokun.is.xml\"><securecookie host=\"^(?:www\\.)?lokun\\.is$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"lokus.no\" f=\"Lokus.no.xml\"><securecookie host=\"^www\\.lokus\\.no$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?lokus\\.no/\" to=\"https://www.lokus.no/\"/></ruleset>", "<ruleset name=\"Lokus.se (partial)\" f=\"Lokus.se.xml\"><securecookie host=\"^\\.lokus\\.se$\" name=\"^(?:NXCLICK2|OAX)\"/><securecookie host=\"^secure\\.lokus\\.se$\" name=\".+\"/><rule from=\"^http://secure\\.lokus\\.se/\" to=\"https://secure.lokus.se/\"/><rule from=\"^http://sifomedia\\.lokus\\.se/\" to=\"https://oasc07.247realmedia.com/\"/></ruleset>", "<ruleset name=\"Lolagrove.com\" f=\"Lolagrove.com.xml\"><securecookie host=\"^v3\\.lolagrove\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"lolnet.org\" platform=\"cacert\" default_off=\"failed ruleset test\" f=\"Lolnet.org.xml\"><rule from=\"^http://lolnet\\.org/\" to=\"https://www.lolnet.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lolware.net\" f=\"Lolware.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"londit.com (partial)\" f=\"Londit.com.xml\"><securecookie host=\"^manager\\.londit\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"London 2012 (mismatches)\" default_off=\"mismatched\" f=\"London-2012-mismatches.xml\"><securecookie host=\"^(?:.*\\.)?londonpreparesseries\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?londonpreparesseries\\.com/\" to=\"https://www.londonpreparesseries.com/\"/></ruleset>", "<ruleset name=\"London 2012\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"London-2012.xml\"><exclusion pattern=\"^http://getset\\.london2012\\.com/(?:(?:cy|en)/(?:home)?)?$\"/><securecookie host=\"^(?:(?:festival|www)?\\.)?london2012\\.com$\" name=\".*\"/><rule from=\"^http://london2012\\.com/\" to=\"https://www.london2012.com/\"/><rule from=\"^http://getset\\.london2012\\.com/\" to=\"https://getset.london2012.com/\"/><rule from=\"^http://www\\.festival\\.london2012\\.com/\" to=\"https://festival.london2002.com/\"/><rule from=\"^http://(shop|www)\\.london2012\\.com/\" to=\"https://$1.london2012.com/\"/><rule from=\"^http://tickets\\.london2012\\.com/\" to=\"https://www.tickets.london2012.com/\"/><rule from=\"^http://www\\.tickets\\.london2012\\.com/member\" to=\"https://www.tickets.london2012.com/member\"/></ruleset>", "<ruleset name=\"London Eye\" f=\"London-Eye.xml\"><securecookie host=\"www\\.londoneye\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"London-Nano.com\" f=\"London-Nano.com.xml\"><rule from=\"^http://(?:www\\.)?london-nano\\.com/\" to=\"https://www.london-nano.com/\"/></ruleset>", "<ruleset name=\"London School of Economics (partial)\" f=\"London-School-of-Economics.xml\"><rule from=\"^http://www2\\.lse\\.ac\\.uk/(ImagesForExternalHomepage|SiteElements|v4global)/\" to=\"https://www2.lse.ac.uk/$1/\"/></ruleset>", "<ruleset name=\"London School of Hygiene & Tropical Medicine\" default_off=\"failed ruleset test\" f=\"London-School-of-Hygiene-and-Tropical-Medicine.xml\"><rule from=\"^http://lshtm\\.ac\\.uk/\" to=\"https://www.lshtm.ac.uk/\"/><rule from=\"^http://(www|jobs|intra|blogs|forums)\\.lshtm\\.ac\\.uk/\" to=\"https://$1.lshtm.ac.uk/\"/><exclusion pattern=\"^http://blogs\\.lshtm\\.ac\\.uk/(?:spring|csm|crash3|tbsymposium|bcges|pathways|crises|disabilitycentre|itservices|ucu|ghlc|hme|same|genderviolence)/\"/></ruleset>", "<ruleset name=\"London Stock Exchange.com (partial)\" default_off=\"failed ruleset test\" f=\"London-Stock-Exchange.xml\"><exclusion pattern=\"^http://(?:www\\.)?londonstockexchange\\.com/+(?!exchange/user/|global/|media/)\"/><rule from=\"^http://londonstockexchange\\.com/\" to=\"https://www.londonstockexchange.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"London.gov.uk\" default_off=\"failed ruleset test\" f=\"London.gov.uk.xml\"><exclusion pattern=\"^http://talklondon\\.london\\.gov\\.uk/+(?!(?:london-survey|user)(?:$|\\?)|misc/|profiles/|sites/)\"/><securecookie host=\"^\\.\" name=\"^(?:_gat|(?:incap_ses_\\d+|nlbi|visid_incap)_\\d+)$\"/><securecookie host=\"^(?!talklondon\\.)\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"London Drugs\" f=\"LondonDrugs.com.xml\"><securecookie host=\"^(?:www)?(?:\\.)?londondrugs\\.com$\" name=\".+\"/><securecookie host=\"^(?:www)?(?:\\.)?customworks\\.ca$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"London City Airport\" f=\"London_City_Airport.xml\"><securecookie host=\"^(?:.*\\.)?londoncityairport\\.com$\" name=\".+\"/><rule from=\"^http://londoncityairport\\.com/\" to=\"https://www.londoncityairport.com/\"/><rule from=\"^http://([^/:@]+)?\\.londoncityairport\\.com/\" to=\"https://$1.londoncityairport.com/\"/></ruleset>", "<ruleset name=\"London Hackspace\" f=\"London_Hackspace.xml\"><rule from=\"^http://london\\.hackspace\\.org\\.uk/\" to=\"https://london.hackspace.org.uk/\"/><rule from=\"^http://([^/:@]+)?\\.london\\.hackspace\\.org\\.uk/\" to=\"https://$1.london.hackspace.org.uk/\"/></ruleset>", "<ruleset name=\"London Review of Books (partial)\" f=\"London_Review_of_Books.xml\"><rule from=\"^http://(?:www\\.)?lrb\\.co\\.uk/(activate/?(?:$|\\?)|assets/|Shibboleth\\.sso)\" to=\"https://www.lrb.co.uk/$1\"/><rule from=\"^http://cdn\\.lrb\\.co\\.uk/\" to=\"https://d7mx03fbraf30.cloudfront.net/\"/></ruleset>", "<ruleset name=\"London Sock Company.com\" default_off=\"missing certificate chain\" f=\"London_Sock_Company.com.xml\"><rule from=\"^http://londonsockcompany\\.com/\" to=\"https://www.londonsockcompany.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Londonist.com (partial)\" f=\"Londonist.com.xml\"><securecookie host=\"^\\.londonist\\.com$\" name=\"^__qca$\"/><rule from=\"^http://(www\\.)?londonist\\.com/(?=favicon\\.ico|wp-content/|wp-includes/)\" to=\"https://$1londonist.com/\"/><rule from=\"^http://cdn\\.londonist\\.com/\" to=\"https://londonist.wpengine.com/\"/></ruleset>", "<ruleset name=\"Lone Survivor.co.uk\" default_off=\"shows default page\" f=\"Lone-Survivor.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lone Sysadmin.net\" f=\"Lone_Sysadmin.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lonelyplanet.com\" f=\"Lonelyplanet.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LongDate.pl (partial)\" default_off=\"failed ruleset test\" f=\"LongDate.pl.xml\"><securecookie host=\"^(?:www\\.)?longdate\\.pl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LongTail (partial)\" default_off=\"failed ruleset test\" f=\"LongTail.xml\"><securecookie host=\"^\\w\\.jwpltx\\.com$\" name=\".+\"/><securecookie host=\"^.+\\.longtailvideo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Long Access.com (partial)\" default_off=\"failed ruleset test\" f=\"Long_Access.com.xml\"><securecookie host=\"^www\\.longaccess\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?longaccess\\.com/\" to=\"https://www.longaccess.com/\"/><rule from=\"^http://the\\.longaccess\\.com/(?=assets/|blog/2\\d{3}/\\d\\d/\\d\\d/[\\w-]+/\\w+\\.(?:jpe?|pn)g)\" to=\"https://s3.amazonaws.com/the.longaccess.com/\"/></ruleset>", "<ruleset name=\"Long Now.org (partial)\" f=\"Long_Now.org.xml\"><rule from=\"^http://(?:www\\.)?longnow\\.org/(?=media/|membership(?:$|[?/])|static/)\" to=\"https://longnow.org/\"/></ruleset>", "<ruleset name=\"Longform.org\" f=\"Longform.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Look.co.uk (mixed content)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Look.co.uk-mixed.xml\"><exclusion pattern=\"^http://shop\\.look\\.co\\.uk/(?:[\\w-]+\\.css|favicon\\.ico|images/|javascript/)\"/><rule from=\"^http://shop\\.look\\.co\\.uk/\" to=\"https://shop.look.co.uk/\"/></ruleset>", "<ruleset name=\"Look.co.uk (partial)\" f=\"Look.co.uk.xml\"><exclusion pattern=\"^http://comps\\.look\\.co\\.uk/(?!css/|login/embedded/https/)\"/><exclusion pattern=\"^http://shop\\.look\\.co\\.uk/(?![\\w-]+\\.css|favicon\\.ico|images/|javascript/)\"/><securecookie host=\"^\\.(?:comps\\.)?look\\.co\\.uk$\" name=\"^__utm\\w$\"/><rule from=\"^http://(comps|shop)\\.look\\.co\\.uk/\" to=\"https://$1.look.co.uk/\"/></ruleset>", "<ruleset name=\"Look Dumbass (partial)\" default_off=\"mismatched\" f=\"Look_Dumbass.xml\"><rule from=\"^http://cdn0(0|1)\\.lookdumbass\\.com/\" to=\"https://cdn0$1.lookdumbass.com/\"/></ruleset>", "<ruleset name=\"Lookback.io\" default_off=\"failed ruleset test\" f=\"Lookback.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LookingGlass.email\" default_off=\"failed ruleset test\" f=\"LookingGlass.email.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Looking Local.gov.uk\" f=\"Looking_Local.xml\"><securecookie host=\"^(?:www\\.)?lookinglocal\\.gov\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lookingglass\" f=\"Lookingglass.xml\"><securecookie host=\"^\\.lgscout\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lookout.com\" f=\"Lookout.com.xml\"><securecookie host=\"^\\.\" name=\"^__utm\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"looloo.com\" default_off=\"failed ruleset test\" f=\"Looloo.com.xml\"><securecookie host=\"^\\.?looloo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Loomio.org\" f=\"Loomio.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LoopPay\" default_off=\"failed ruleset test\" f=\"LoopPay.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://looppay\\.com/\" to=\"https://www.looppay.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Loopia\" f=\"Loopia.xml\"><exclusion pattern=\"^http://blogg\\.\"/><securecookie host=\"^(?:.*\\.)?loopia\\.se$\" name=\".*\"/><rule from=\"^http://((static|support|webmail|www)\\.)?loopia\\.se/\" to=\"https://$1loopia.se/\"/><rule from=\"^http://loopiasecure\\.com/\" to=\"https://www.loopia.se/\"/></ruleset>", "<ruleset name=\"Loopia secure.com\" f=\"Loopia_secure.com.xml\"><rule from=\"^http://([\\w-]+)\\.loopiasecure\\.com/\" to=\"https://$1.loopiasecure.com/\"/></ruleset>", "<ruleset name=\"Loopt\" default_off=\"failed ruleset test\" f=\"Loopt.xml\"><rule from=\"^http://(?:www\\.)?loopt\\.com/\" to=\"https://www.loopt.com/\"/></ruleset>", "<ruleset name=\"Lords of the Blog\" default_off=\"self-signed\" f=\"Lords-of-the-Blog.xml\"><securecookie host=\"^lordsoftheblog\\.net$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?lordsoftheblog\\.net/\" to=\"https://lordsoftheblog.net/\"/></ruleset>", "<ruleset name=\"Lorentz Center.nl\" f=\"Lorentz_Center.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Los Angeles Times (partial)\" f=\"Los_Angeles_Times.xml\"><exclusion pattern=\"^http://(?:www\\.)?latimes\\.com/media/photo/\"/><securecookie host=\"^\\.latimes\\.com$\" name=\"^(?:gpv_p\\w|metrics_id|s_\\w+|tribanalyticscookie)$\"/><securecookie host=\"^.+\\.latimes\\.com$\" name=\".+\"/><rule from=\"^http://(?:(?:origin-)?www\\.)?latimes\\.com/(favicon\\.ico|hive/|images/|includes/|media/|stylesheets/)\" to=\"https://secure.latimes.com/$1\"/><rule from=\"^http://(membership|myaccount2|secure)\\.latimes\\.com/\" to=\"https://$1.latimes.com/\"/><rule from=\"^http://circulars\\.latimes\\.com/(assets/|dist_stage/|favicon\\.ico|images/)\" to=\"https://www.flyertown.ca/$1\"/></ruleset>", "<ruleset name=\"Lotame\" f=\"Lotame.xml\"><securecookie host=\"^(?:ad|bcp|meez|multiply|tags)?\\.crwdcntrl\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lotto.de\" f=\"Lotto.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lotus Cars (mismatches)\" default_off=\"mismatched\" f=\"Lotus-Cars-mismatches.xml\"><rule from=\"^http://(?:www\\.)?lotuscars\\.com/\" to=\"https://lotuscars.com/\"/></ruleset>", "<ruleset name=\"Lotus Cars (partial)\" default_off=\"refused\" platform=\"mixedcontent\" f=\"Lotus-Cars.xml\"><rule from=\"^http://(?:www\\.)?lotusoriginals\\.com/\" to=\"https://www.lotusoriginals.com/\"/></ruleset>", "<ruleset name=\"Lotus.com (partial)\" f=\"Lotus.xml\"><exclusion pattern=\"^http://www-10\\.lotus\\.com/ldd/(?:ei|lc|ss|st|nd6|nd8|nd85|mc|protector)forum\\.nsf\"/><securecookie host=\"^(?:greenhouse|www-10)\\.lotus\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Louder Than War.com\" default_off=\"expired, self-signed\" f=\"Louder_Than_War.com.xml\"><securecookie host=\"^\\.?louderthanwar\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?louderthanwar\\.com/\" to=\"https://louderthanwar.com/\"/></ruleset>", "<ruleset name=\"Louhi.net (partial)\" f=\"Louhi.net.xml\"><securecookie host=\"^(?:oma|webmail)\\.louhi\\.fi$\" name=\".+\"/><rule from=\"^http://(oma|webmail|whm\\d\\d)\\.louhi\\.net/\" to=\"https://$1.louhi.net/\"/></ruleset>", "<ruleset name=\"Louise Harrison Couture.com\" default_off=\"failed ruleset test\" f=\"Louise_Harrison_Couture.com.xml\"><securecookie host=\"^(?:w*\\.)?louiseharrisoncouture\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Louisiana State University (problematic)\" default_off=\"mismatched\" f=\"Louisiana_State_University-problematic.xml\"><securecookie host=\"^my\\.lsu\\.edu$\" name=\".+\"/><rule from=\"^http://my\\.lsu\\.edu/\" to=\"https://my.lsu.edu/\"/></ruleset>", "<ruleset name=\"Louisiana State University (partial)\" f=\"Louisiana_State_University.xml\"><exclusion pattern=\"^http://(?:careercenter|(?:www\\.)?(?:bengalbound|cas|deanofstudents|disability|families|family|fye|greeks|sg|sfmc|studentlife))\\.lsu\\.edu/(?!favicon\\.ico|misc/|sites/)\"/><securecookie host=\"^(?:(?:calendar|mylsu|myproxy|web)\\.apps|\\.complaints|courses|\\.grok|sso\\.paws|photo-management|photos|\\.saa|sites01)\\.lsu\\.edu$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?lsu\\.edu/\" to=\"https://www.lsu.edu/\"/><rule from=\"^http://appl0(08|37)(?:\\.ocs)?\\.lsu\\.edu/\" to=\"https://appl0$1.lsu.edu/\"/><rule from=\"^http://((?:calendar|careercenter|mylsu|myproxy|web)\\.apps|courses|(?:connect|moodle2|networking)\\.grok|housing|itservice|sso\\.paws|photo-management|photos|jlee\\.saa|sites01|lsumvs\\.sncc|studlife-web1|piwik\\.uss)\\.lsu\\.edu/\" to=\"https://$1.lsu.edu/\"/><rule from=\"^http://(www\\.)?(as|bengalbound|cas|complaints|deanofstudents|disability|fye|greeks|groksaa|sfmc|studentlife)\\.lsu\\.edu/\" to=\"https://$1$2.lsu.edu/\"/><rule from=\"^http://(?:www\\.)?families\\.lsu\\.edu/\" to=\"https://studlife-web1.lsu.edu/\"/><rule from=\"^http://(?:www\\.)?(family|sg)\\.lsu\\.edu/\" to=\"https://$1.lsu.edu/\"/><rule from=\"^http://(?:www\\.)?tigercard\\.lsu\\.edu/\" to=\"https://as.lsu.edu/tigercard\"/></ruleset>", "<ruleset name=\"Lourdas.name\" default_off=\"failed ruleset test\" f=\"Lourdas.name.xml\"><rule from=\"^http://(?:www\\.)?lourdas\\.name/\" to=\"https://www.lourdas.name/\"/></ruleset>", "<ruleset name=\"LoveFilm\" f=\"LoveFilm.xml\"><securecookie host=\"^\\.lovefilm\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?lovefilm\\.co\\.uk/\" to=\"https://www.lovefilm.com/\"/><rule from=\"^http://(?:www\\.)?lovefilm\\.(com|de|dk|no|se)/\" to=\"https://www.lovefilm.$1/\"/><rule from=\"^http://static\\.lovefilm\\.(com|de|dk|no|se)/\" to=\"https://static.lovefilm.$1/\"/></ruleset>", "<ruleset name=\"LoveHoney (partial)\" f=\"LoveHoney.xml\"><rule from=\"^http://(?:www\\.)?lovehoney\\.co\\.uk/(help/contact-us|your-account)\" to=\"https://www.lovehoney.co.uk/$1\"/></ruleset>", "<ruleset name=\"LovePlanet.ru (partial)\" default_off=\"failed ruleset test\" f=\"LovePlanet.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Love 2D.org\" f=\"Love_2D.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Love Our Local Business\" default_off=\"failed ruleset test\" f=\"Love_Our_Local_Business.xml\"><securecookie host=\"^www\\.loveourlocalbusiness\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?loveourlocalbusiness\\.com/\" to=\"https://www.loveourlocalbusiness.com/\"/></ruleset>", "<ruleset name=\"Lovelens\" f=\"Lovelens.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lovemoney.com (partial)\" platform=\"mixedcontent\" f=\"Lovemoney.xml\"><rule from=\"^http://(?:www\\.)?love(food|money)\\.com/(css|favicon\\.ico|[iI]mages/|login/)\" to=\"https://www.love$1.com/$2\"/><rule from=\"^http://energy\\.lovemoney\\.com/Branding/\" to=\"https://energy.lovemoney.com/Branding/\"/><rule from=\"^http://sanalytics\\.lovemoney\\.com/\" to=\"https://sanalytics.lovemoney.com/\"/></ruleset>", "<ruleset name=\"Loverpi.com\" default_off=\"failed ruleset test\" f=\"Loverpi.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Loverslab.com\" f=\"Loverslab.com.xml\"><securecookie host=\"^(?:www\\.)?loverslab\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lovett Publishing House.com\" default_off=\"failed ruleset test\" f=\"Lovett_Publishing_House.com.xml\"><securecookie host=\"^(?:w*\\.)?lovettpublishinghouse\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lovtidende.dk\" default_off=\"failed ruleset test\" f=\"Lovtidende.dk.xml\"><securecookie host=\"^www\\.lovtidende\\.dk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LowPowerLab.com\" f=\"LowPowerLab.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lowes.com (partial)\" default_off=\"failed ruleset test\" f=\"Lowes.com.xml\"><exclusion pattern=\"^http://m\\.lowes\\.com/+(?!favicon\\.ico)\"/><exclusion pattern=\"^http://www\\.lowes\\.com/(?!css/|favicon\\.ico|(?:espot/.+/)?images/|etc/|img_savings/|pdf/|UserAccountLanding(?:$|[?/])|wcstore/|webapp/wcs/stores/servlet/UserRegistrationForm)\"/><securecookie host=\"^(?:lwssvcs|pplwssvcs|ppm|www7)\\.lowes\\.com$\" name=\".+\"/><rule from=\"^http://metrics\\.lowes\\.com/\" to=\"https://lowes.d2.sc.omtrdc.net/\"/><rule from=\"^http://lowes\\.com/\" to=\"https://www.lowes.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lowyat.NET (partial)\" f=\"Lowyat.NET.xml\"><securecookie host=\"^\\.forum\\.lowyat\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Loyal Forex\" default_off=\"failed ruleset test\" f=\"Loyal_Forex.xml\"><securecookie host=\"^\\.loyalforex\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"lp0.eu\" f=\"Lp0.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lubin 1982\" default_off=\"mismatched\" f=\"Lubin-1982.xml\"><rule from=\"^http://(?:www\\.)?lubin82\\.pl/\" to=\"https://lubin82.pl/\"/></ruleset>", "<ruleset name=\"Lucaspetter.com\" f=\"Lucaspetter.com.xml\"><securecookie host=\"^(?:www)?(?:\\.)?lucaspetter\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lucid Reverie\" default_off=\"failed ruleset test\" f=\"Lucid-Reverie.xml\"><securecookie host=\"^lrcd\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?lrcd\\.com/\" to=\"https://lrcd.com/\"/></ruleset>", "<ruleset name=\"Lucid Media.com (partial)\" f=\"Lucid_Media.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lucid Solutions.co.nz\" f=\"Lucid_Solutions.co.nz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lucidchart.com (partial)\" f=\"Lucidchart.com.xml\"><exclusion pattern=\"^http://support\\.lucidchart\\.com/+(?!favicon\\.ico|generated/|images/|system/)\"/><rule from=\"^http://support\\.lucidchart\\.com/\" to=\"https://lucidchart.zendesk.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lucidpress.com (partial)\" f=\"Lucidpress.com.xml\"><exclusion pattern=\"^http://support\\.lucidpress\\.com/+(?!favicon\\.ico|generated/|images/|system/)\"/><securecookie host=\"^www\\.lucidpress\\.com$\" name=\"^.+\"/><rule from=\"^http://support\\.lucidpress\\.com/\" to=\"https://lucidpress.zendesk.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lucina.net\" f=\"Lucina.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lucio's Gold\" default_off=\"failed ruleset test\" f=\"Lucios_Gold.xml\"><securecookie host=\"^(?:www)?\\.luciosgold\\.ca$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lucky2u.net\" default_off=\"mismatched\" f=\"Lucky2u.net.xml\"><rule from=\"^http://(?:www\\.)?lucky2u\\.net/\" to=\"https://lucky2u.net/\"/></ruleset>", "<ruleset name=\"LuckyMarmot.com (partial)\" f=\"LuckyMarmot.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LuckyShare.net\" f=\"LuckyShare.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ludialudom.sk\" default_off=\"failed ruleset test\" f=\"Ludialudom.sk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ludios.org\" f=\"Ludios.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ludis Media.com\" default_off=\"404\" f=\"Ludis_Media.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lufthansa\" default_off=\"failed ruleset test\" f=\"Lufthansa.xml\"><rule from=\"^http://lufthansa\\.com/\" to=\"https://www.lufthansa.com/\"/><rule from=\"^http://([^/:@]+)?\\.lufthansa\\.com/\" to=\"https://$1.lufthansa.com/\"/></ruleset>", "<ruleset name=\"Luleå Municipality\" f=\"Lulea_Municipality.xml\"><securecookie host=\"^(?:www\\.)?lulea\\.se$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Luleå University of Technology (partial)\" f=\"Lulea_University_of_Technology.xml\"><securecookie host=\"^weblogon\\.ltu\\.se$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ltu\\.se/(cms_fs/|css/|easyrec-web/|(?:Header-LTU-7\\.2502|internt)(?:$|\\?|/)|image/|img/|js/)\" to=\"https://www.ltu.se/$1\"/><rule from=\"^http://weblogon\\.ltu\\.se/\" to=\"https://weblogon.ltu.se/\"/></ruleset>", "<ruleset name=\"Lullabot.com\" f=\"Lullabot.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lulu (partial)\" f=\"Lulu.xml\"><rule from=\"^http://(www\\.)?lulu\\.com/(login|register)\\.php\" to=\"https://$1lulu.com/$2.php\"/><rule from=\"^http://static\\.lulu\\.com/\" to=\"https://static.lulu.com/\"/></ruleset>", "<ruleset name=\"LulzBot.com\" f=\"LulzBot.com.xml\"><securecookie host=\"\\.lulzbot\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lumen\" f=\"Lumen.xml\"><securecookie host=\"(^|\\.)lumendatabase\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lumension.com (partial)\" f=\"Lumension.com.xml\"><exclusion pattern=\"^http://leic\\.lumensions\\.com/+(?!css/|images/)\"/><securecookie host=\"^\\.lumension\\.com$\" name=\"^_mkto_trk$\"/><rule from=\"^http://((?:portal|sftp|support|www)\\.)?lumension\\.com/\" to=\"https://$1lumension.com/\"/><rule from=\"^http://blog\\.lumension\\.com/favicon\\.ico\" to=\"https://secure.bluehost.com/~lumensio/blog_prod/favicon.ico\"/><rule from=\"^http://blog\\.lumension\\.com/wp-content/\" to=\"https://secure.bluehost.com/~lumensio/blog_prod/wp-content/\"/><rule from=\"^http://my\\.lumension\\.com/+(?:\\?.*)?$\" to=\"https://www.lumension.com/mylumension/mylumension.aspx\"/><rule from=\"^http://my\\.lumension\\.com/+partner_request_form\\.jsp(?:\\??$|(\\?.+))\" to=\"https://www.lumension.com/Partners/Become-A-Lumension-Partner.aspx$1\"/></ruleset>", "<ruleset name=\"Lumesse.com (partial)\" default_off=\"failed ruleset test\" f=\"Lumesse.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lumiblade\" default_off=\"failed ruleset test\" f=\"Lumiblade.xml\"><securecookie host=\"^\\.www\\.lumiblade-shop\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lumigon.com\" f=\"Lumigon.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LuminoWorld.com (partial)\" f=\"LuminoWorld.com.xml\"><rule from=\"^http://(www\\.)?luminoworld\\.com/(images/|Portals/|scripts/|show(?:Category|Product)Image\\.aspx)\" to=\"https://$1luminoworld.com/$2\"/></ruleset>", "<ruleset name=\"Lumo\" f=\"Lumo.xml\"><securecookie host=\"^lumo\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lumosity (partial)\" f=\"Lumosity.xml\"><rule from=\"^http://(www\\.)?lumosity\\.com/((?:contact/billing|gift|login|sign_up)(?:$|[\\?/])|compiled/|favicon\\.ico|images/|stylesheets/)\" to=\"https://$1lumosity.com/$2\"/><rule from=\"^http://static(?:\\.sl)?\\.lumosity\\.com/\" to=\"https://www.lumosity.com/\"/></ruleset>", "<ruleset name=\"Lumovies.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Lumovies.com.xml\"><securecookie host=\"^www\\.lumovies\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Luna Nivius\" default_off=\"failed ruleset test\" f=\"Luna-Nivius.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lunarline.com\" f=\"Lunarline.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"lundi.am\" f=\"Lundi.am.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lurkmore.net\" f=\"Lurkmore.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lurkmore.to\" default_off=\"failed ruleset test\" f=\"Lurkmore.to.xml\"><securecookie host=\"^\\.?lurkmo(?:\\.re|re\\.[st]o)$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Luvit.io\" f=\"Luvit.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LuxSci\" platform=\"mixedcontent\" f=\"LuxSci.xml\"><rule from=\"^http://(?:www\\.)?luxhv\\.com/\" to=\"https://luxsci.com/extranet/hvmain.html\"/><rule from=\"^http://(?:www\\.)?luxsci\\.mobi/\" to=\"https://luxsci.mobi/\"/></ruleset>", "<ruleset name=\"Luxomo.com\" default_off=\"failed ruleset test\" f=\"Luxomo.com.xml\"><securecookie host=\"^\\.www\\.luxomo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Luxury Custom Wheels\" default_off=\"failed ruleset test\" f=\"Luxury_Custom_Wheels.xml\"><securecookie host=\"^(?:.*\\.)?luxurycustomwheels\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Luxury Replica\" default_off=\"failed ruleset test\" f=\"Luxury_Replica.xml\"><securecookie host=\"^\\.luxuryreplica.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LxCenter (partial)\" default_off=\"self-signed\" f=\"LxCenter.xml\"><rule from=\"^http://(?:www\\.)?lxcenter\\.org/\" to=\"https://lxcenter.org/\"/></ruleset>", "<ruleset name=\"Lyft\" default_off=\"mismatched\" f=\"Lyft.xml\"><securecookie host=\"^lyft\\.me$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?lyft\\.me/\" to=\"https://lyft.me/\"/></ruleset>", "<ruleset name=\"Lynch Interactive.com\" default_off=\"failed ruleset test\" f=\"Lynch_Interactive.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lynda.com (partial)\" platform=\"mixedcontent\" f=\"Lynda.com.xml\"><exclusion pattern=\"^http://www\\.lynda\\.com/+(?!(?:plans/renewal/select|promo/activatekey|registration/account)(?:$|[?/])|user/login/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lynku.com (partial)\" default_off=\"failed ruleset test\" f=\"Lynku.com.xml\"><rule from=\"^http://images\\.lynku\\.com/\" to=\"https://shop.look.co.uk/\"/></ruleset>", "<ruleset name=\"Lynxtech\" default_off=\"expired, self-signed\" f=\"Lynxtech.xml\"><rule from=\"^http://(?:www\\.)?lynxtech\\.no/\" to=\"https://lynxtech.no/\"/></ruleset>", "<ruleset name=\"Lyris (mismatches)\" default_off=\"mismatched\" f=\"Lyris-mismatches.xml\"><rule from=\"^http://landing\\.lyris\\.com/\" to=\"https://landing.lyris.com/\"/></ruleset>", "<ruleset name=\"Lyris (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Lyris.xml\"><securecookie host=\"^(?:.*\\.)?lyris\\.com$\" name=\".*\"/><rule from=\"^http://clicktracks\\.com/\" to=\"https://www.clicktracks.com/\"/><rule from=\"^http://(stats1|www)\\.clicktracks\\.com/\" to=\"https://$1.clicktracks.com/\"/><rule from=\"^http://lyris\\.com/\" to=\"https://www.lyris.com/\"/><rule from=\"^http://(landing|www)\\.lyris\\.com/\" to=\"https://$1.lyris.com/\"/><rule from=\"^http://(?:www\\.)?lyrishq\\.com/\" to=\"https://www.lyris.com/blog\"/></ruleset>", "<ruleset name=\"Lyrk.de\" f=\"Lyrk.de.xml\"><securecookie host=\"^geodienste\\.lyrk\\.de$\" name=\".+\"/><rule from=\"^http://(?:(geodienste\\.)|www\\.)?lyrk\\.de/\" to=\"https://$1lyrk.de/\"/></ruleset>", "<ruleset name=\"M-Fanshop.ch\" f=\"M-Fanshop.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"M-VG.de\" f=\"M-VG.de.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"M-W.co.uk (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"M-W.co.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"M&T Bank (partial)\" f=\"M-and-T_Bank.xml\"><securecookie host=\"^onlinebanking\\.mandtbank\\.com$\" name=\".+\"/><securecookie host=\"^.*\\.mtb\\.com$\" name=\".+\"/><rule from=\"^http://onlinebanking\\.mandtbank\\.com/\" to=\"https://onlinebanking.mandtbank.com/\"/><rule from=\"^http://(?:www\\.)?mtb\\.com/\" to=\"https://www.mtb.com/\"/><rule from=\"^http://(applynow|services|webmail)\\.mtb\\.com/\" to=\"https://$1.mtb.com/\"/><rule from=\"^http://mandtbank\\.spatialpoint\\.com/\" to=\"https://mandtbank.spatialpoint.com/\"/></ruleset>", "<ruleset name=\"M-net Telekommunikations GmbH\" default_off=\"broken\" f=\"M-net.de.xml\"><rule from=\"^http://www\\.m\\-net\\.de/\" to=\"https://www.m-net.de/\"/></ruleset>", "<ruleset name=\"m-pathy (partial)\" f=\"M-pathy.xml\"><rule from=\"^http://(?:www\\.)?m-pathy\\.com/(css/|favicon\\.ico|images/|questionnaire/|sf/|user/)\" to=\"https://www.m-pathy.com/$1\"/><rule from=\"^http://cdn\\.m-pathy\\.com/\" to=\"https://cdn.m-pathy.com/\"/></ruleset>", "<ruleset name=\"m-privacy\" f=\"M-privacy.xml\"><securecookie host=\"^(?:rsbac|www)\\.m-privacy\\.de$\" name=\".*\"/><rule from=\"^http://((?:git|rsbac|www)\\.)?m-privacy\\.de/\" to=\"https://$1m-privacy.de/\"/></ruleset>", "<ruleset name=\"M01.eu\" f=\"M01.eu.xml\"><securecookie host=\"^(?:me\\.)?m01\\.eu$\" name=\".+\"/><rule from=\"^http://(?:(me\\.)|www\\.)?m01\\.eu/\" to=\"https://$1m01.eu/\"/></ruleset>", "<ruleset name=\"M2pub.com\" f=\"M2pub.com.xml\"><rule from=\"^http://creative\\.m2pub\\.com/\" to=\"https://d3vg9hiogk70qz.cloudfront.net/\"/><rule from=\"^http://s\\.m2pub\\.com/\" to=\"https://ads.adk2.com/\"/></ruleset>", "<ruleset name=\"M3Server.com (partial)\" f=\"M3Server.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"M3xs.net\" f=\"M3xs.net.xml\"><securecookie host=\"^my\\.m3xs\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"M6R.com\" f=\"M6R.fr.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"m6r.eu\" f=\"M6r.eu.xml\"><securecookie host=\"^\\.m6r\\.eu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"M86security\" f=\"M86security.xml\"><rule from=\"^http://(?:www\\.)?m86security\\.com/\" to=\"https://www.m86security.com/\"/></ruleset>", "<ruleset name=\"Massachusetts General Hospital OCD & Related Disorders Program\" f=\"MA-General-Hospital-OCD.xml\"><rule from=\"^http://(?:www\\.)?mghocd\\.org/\" to=\"https://mghocd.org/\"/></ruleset>", "<ruleset name=\"MAAWG\" f=\"MAAWG.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MAC Paper.com (partial)\" default_off=\"failed ruleset test\" f=\"MAC_Paper.com.xml\"><securecookie host=\"^secure\\.macpaper\\.com$\" name=\".+\"/><rule from=\"^http://(?:secure\\.|www\\.)?macpaper\\.com/\" to=\"https://secure.macpaper.com/\"/></ruleset>", "<ruleset name=\"MADD California\" default_off=\"failed ruleset test\" f=\"MADD-California.xml\"><rule from=\"^http://(?:www\\.)?maddcalifornia\\.org/\" to=\"https://www.maddcalifornia.org/\"/></ruleset>", "<ruleset name=\"MAGIX-Online.com (partial)\" f=\"MAGIX-Online.com.xml\"><exclusion pattern=\"^http://www\\.magix-online\\.com/+(?!themes/|uploads/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MAGIX.info\" f=\"MAGIX.info.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MAGIX.com (partial)\" f=\"MAGIX.xml\"><exclusion pattern=\"^http://magazine\\.magix\\.com/+(?!\\w\\w/+wp-content/)\"/><exclusion pattern=\"^http://(?:www\\.)?magix\\.com/+(?!clear\\.gif|fileadmin/|typo3temp/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MAH.se\" platform=\"mixedcontent\" f=\"MAH.se.xml\"><rule from=\"^http://mah\\.se/\" to=\"https://www.mah.se/\"/><rule from=\"^http://www\\.mah\\.se/\" to=\"https://www.mah.se/\"/></ruleset>", "<ruleset name=\"MAPS\" platform=\"mixedcontent\" f=\"MAPS.xml\"><rule from=\"^http://(www\\.)?maps\\.org/\" to=\"https://$1maps.org/\"/><rule from=\"^http://store\\.maps\\.org/\" to=\"https://store.maps.org/\"/></ruleset>", "<ruleset name=\"MARC.info\" f=\"MARC.info.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MARE-system.de\" default_off=\"failed ruleset test\" f=\"MARE-system.de.xml\"><rule from=\"^http://mare-system\\.de/\" to=\"https://www.mare-system.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MARSocial.com\" default_off=\"failed ruleset test\" f=\"MARSocial.com.xml\"><securecookie host=\"^\\.?marsocial\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MASSPIRG\" default_off=\"mismatched\" f=\"MASSPIRG.xml\"><rule from=\"^http://(?:www\\.)?masspirg\\.org/\" to=\"https://masspirg.org/\"/></ruleset>", "<ruleset name=\"MASSPIRG Education Fund\" default_off=\"mismatched\" f=\"MASSPIRG_Education_Fund.xml\"><rule from=\"^http://(?:www\\.)?masspirgedfund\\.org/\" to=\"https://masspirgedfund.org/\"/></ruleset>", "<ruleset name=\"MASSPIRG Students\" default_off=\"mismatched\" f=\"MASSPIRG_Students.xml\"><rule from=\"^http://(?:www\\.)?masspirgstudents\\.org/\" to=\"https://masspirgstudents.org/\"/></ruleset>", "<ruleset name=\"MATE Desktop\" f=\"MATE-Desktop.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MAXROAM (partial)\" f=\"MAXROAM.xml\"><rule from=\"^http://(www\\.)?maxroam\\.com/(App_Themes/|images/|shared/|Shop/OnePageCheckout\\.aspx)\" to=\"https://$1maxroam.com/$2\"/><rule from=\"^http://hostels\\.maxroam\\.com/(App_Themes/|css/|favicon\\.ico|images/|shared/|Shop/Checkout\\.aspx)\" to=\"https://hostels.maxroam.com/$1\"/></ruleset>", "<ruleset name=\"MAZDA Web Members\" default_off=\"failed ruleset test\" f=\"MAZDA_Web_Members.xml\"><rule from=\"^http://www\\.m-wm\\.com/\" to=\"https://www.m-wm.com/\"/></ruleset>", "<ruleset name=\"MA Legislature.gov\" f=\"MA_Legislature.gov.xml\"><rule from=\"^http://www\\.malegislature\\.gov/\" to=\"https://malegislature.gov/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MB Detox\" f=\"MB-Detox.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MBSportsWeb (partial)\" f=\"MBSportsWeb.xml\"><securecookie host=\"^\\.mbsportsweb\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?mbsportsweb\\.c(?:a|om)/\" to=\"https://$1mbsportsweb.com/\"/></ruleset>", "<ruleset name=\"mBank (partial)\" default_off=\"failed ruleset test\" f=\"MBank.xml\"><securecookie host=\"^(?:cz|sk)\\.mbank\\.eu$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MBnet.fi (partial)\" default_off=\"failed ruleset test\" f=\"MBnet.xml\"><exclusion pattern=\"^http://www\\.mbnet\\.fi/+(?!images/)\"/><securecookie host=\"^(?:mbi|webmail)\\.mbnet\\.fi$\" name=\".+\"/><rule from=\"^http://mbnet\\.fi/\" to=\"https://www.mbnet.fi/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MBusa.com\" f=\"MBusa.com.xml\"><securecookie host=\"^(?:stage|www)?\\.mbusa\\.com$\" name=\".+\"/><rule from=\"^http://mbusa\\.com/\" to=\"https://www.mbusa.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MBuy.com (partial)\" default_off=\"failed ruleset test\" f=\"MBuy.com.xml\"><securecookie host=\"^app\\.mbuy\\.com$\" name=\".+\"/><rule from=\"^http://app\\.mbuy\\.com/\" to=\"https://app.mbuy.com/\"/></ruleset>", "<ruleset name=\"MCA-Marines.org\" f=\"MCA-Marines.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Maine Civil Liberties Union\" default_off=\"failed ruleset test\" f=\"MCLU.xml\"><rule from=\"^http://(?:www\\.)?mclu\\.org/\" to=\"https://www.mclu.org/\"/></ruleset>", "<ruleset name=\"MCM Electronics.com (partial)\" f=\"MCM_Electronics.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?mcmelectronics\\.com/(?!(?:basket|FreeShipping)\\.aspx|browse/|css/|favicon\\.ico|images/|login/|rss/|scripts/|services/|WebResource\\.axd)\"/><securecookie host=\"^\\.mcmelectronics\\.com$\" name=\"^(?:gpv_p\\w|s_\\w\\w)$\"/><rule from=\"^http://(?:www\\.)?mcmelectronics\\.com/\" to=\"https://www.mcmelectronics.com/\"/></ruleset>", "<ruleset name=\"MCPmag.com\" f=\"MCPmag.com.xml\"><securecookie host=\"^mcpmag\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MDC US.com\" f=\"MDC_US.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MDGx.com\" default_off=\"mismatched\" f=\"MDGx.com.xml\"><rule from=\"^http://(?:www\\.)?mdgx\\.com/\" to=\"https://mdgx.com/\"/></ruleset>", "<ruleset name=\"MDH.se\" platform=\"mixedcontent\" f=\"MDH.se.xml\"><rule from=\"^http://mdh\\.se/\" to=\"https://www.mdh.se/\"/><rule from=\"^http://www\\.mdh\\.se/\" to=\"https://www.mdh.se/\"/></ruleset>", "<ruleset name=\"MDNX (partial)\" f=\"MDNX.xml\"><rule from=\"^http://(\\w+)\\.stcllctrs\\.com/\" to=\"https://$1.stcllctrs.com/\"/></ruleset>", "<ruleset name=\"MDTS\" f=\"MDTS.xml\"><securecookie host=\"^mdts\\.uk\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MDapplicants.com\" f=\"MDapplicants.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ME.com\" f=\"ME.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MEBank\" f=\"MEBank.xml\"><rule from=\"^http://mebank\\.com\\.au/\" to=\"https://www.mebank.com.au/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MERY.jp\" default_off=\"failed ruleset test\" f=\"MERY.jp.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MESO-Rx\" default_off=\"failed ruleset test\" f=\"MESO-Rx.xml\"><securecookie host=\"^(?:.*\\.)?thinksteroids\\.com$\" name=\".+\"/><rule from=\"^http://cdn\\.thinksteroids\\.com/\" to=\"https://d1uxx6tvzy89fj.cloudfront.net/\"/><rule from=\"^http://cdn-ru\\.thinksteroids\\.com/\" to=\"https://ru.thinksteroids.com/\"/><rule from=\"^http://js-fr\\.thinksteroids\\.com/\" to=\"https://fr.thinksteroids.com/\"/><rule from=\"^http://static\\.thinksteroids\\.com/\" to=\"https://thinksteroids.com/forum/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MFi.re\" f=\"MFi.re.xml\"><rule from=\"^http://(www\\.)?mfi\\.re/\" to=\"https://$1mediafire.com/\"/></ruleset>", "<ruleset name=\"MGID.com (partial)\" f=\"MGID.com.xml\"><exclusion pattern=\"^http://imgn\\.dt00\\.\"/><securecookie host=\"^admin4\\.dt07\\.net$\" name=\".+\"/><securecookie host=\"^(?:dashboard|my)?\\.mgid\\.com$\" name=\".+\"/><rule from=\"^http://(imgn?|jsc|oth)\\.(?:dt0[07]\\.net|mgid\\.com)/\" to=\"https://$1.mgid.com/\"/><rule from=\"^http://admin(4)?\\.dt07\\.net/\" to=\"https://admin$1.dt07.net/\"/><rule from=\"^http://((?:dashboard|freelance|my|usr|www)\\.)?mgid\\.com/\" to=\"https://$1mgid.com/\"/></ruleset>", "<ruleset name=\"MI5.gov.uk\" f=\"MI5.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MI6.ua\" default_off=\"refused\" f=\"MI6.ua.xml\"><securecookie host=\"^(?:www.)?mi6\\.ua$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"M.I.C. Gadget (partial)\" f=\"MIC-Gadget.xml\"><securecookie host=\"^\\.store\\.micgadget\\.com$\" name=\".+\"/><rule from=\"^http://images\\.micgadget\\.com/\" to=\"https://s3.amazonaws.com/images.micgadget.com/\"/><rule from=\"^http://store\\.micgadget\\.com/\" to=\"https://store.micgadget.com/\"/></ruleset>", "<ruleset name=\"MIMS (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"MIMS.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MIMuslimCouncil.org\" f=\"MIMuslimCouncil.org.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://mimuslimcouncil\\.org/\" to=\"https://www.mimuslimcouncil.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MIN_Commsy\" platform=\"mixedcontent\" f=\"MIN-Commsy.xml\"><rule from=\"^http://(?:www\\.)?mincommsy\\.uni-hamburg\\.de/\" to=\"https://www.mincommsy.uni-hamburg.de/\"/></ruleset>", "<ruleset name=\"MIPS.com\" f=\"MIPS-Technologies.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://(?:www\\.)?mips\\.com/.*\" to=\"https://imgtec.com/mips\"/></ruleset>", "<ruleset name=\"mIRC (partial)\" f=\"MIRC.xml\"><rule from=\"^http://(www\\.)?mirc\\.com/(imag|styl)es/\" to=\"https://$1mirc.com/$2es/\"/></ruleset>", "<ruleset name=\"Massachusetts Institute of Technology (problematic)\" default_off=\"expired, mismatched, missing certificate chain, self-signed\" f=\"MIT-mismatches.xml\"><exclusion pattern=\"^http://people\\.mit\\.edu/(?:$|\\?)\"/><exclusion pattern=\"^http://tmg-tracker\\.media\\.mit\\.edu/(?!$|\\?)\"/><exclusion pattern=\"^http://techtime\\.mit\\.edu/(?!$|\\?)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://advancedligo\\.mit\\.edu/\" to=\"https://www.advancedligo.mit.edu/\"/><rule from=\"^http://techtime\\.mit\\.edu/(?:$|\\?.*)\" to=\"https://calendar.mit.edu/techtime/index.shtml\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MIT.edu (false MCB)\" platform=\"mixedcontent\" f=\"MIT.edu-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MIT.edu (partial)\" default_off=\"failed ruleset test\" f=\"MIT.xml\"><exclusion pattern=\"^http://calendars\\.mit\\.edu/+(?:$|\\?)\"/><securecookie host=\"^(?!calendars\\.mit\\.edu$)\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^__utm\"/><rule from=\"^http://csail\\.mit\\.edu/\" to=\"https://www.csail.mit.edu/\"/><rule from=\"^http://people\\.csail\\.mit\\.edu/+(?:\\?.*)?$\" to=\"https://www.csail.mit.edu/peoplesearch\"/><rule from=\"^http://eecscal\\.mit\\.edu/.*\" to=\"https://calendars.mit.edu/eecs\"/><rule from=\"^http://cdn\\.executive\\.mit\\.edu/\" to=\"https://d3f3qxt87iw6id.cloudfront.net/\"/><rule from=\"^http://ideabank\\.mit\\.edu/\" to=\"https://future.mit.edu/\"/><rule from=\"^http://www\\.mitpress\\.mit\\.edu/\" to=\"https://mitpress.mit.edu/\"/><rule from=\"^http://media\\.mit\\.edu/\" to=\"https://www.media.mit.edu/\"/><rule from=\"^http://scripts\\.mit\\.edu:444/\" to=\"https://scripts.mit.edu:444/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MIT Press Journals.org (partial)\" f=\"MIT_Press_Journals.org.xml\"><rule from=\"^http://(?:www\\.)?mitpressjournals\\.org/(?=(?:entityImage|na101|sda|templates|userimages)/|action/(?:registration|showLogin)$)\" to=\"https://www.mitpressjournals.org/\"/></ruleset>", "<ruleset name=\"MIUI.com\" f=\"MIUI.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MIUN.se\" f=\"MIUN.se.xml\"><rule from=\"^http://miun\\.se/\" to=\"https://www.miun.se/\"/><rule from=\"^http://www\\.miun\\.se/\" to=\"https://www.miun.se/\"/><rule from=\"^http://portal\\.miun\\.se/\" to=\"https://portal.miun.se/\"/></ruleset>", "<ruleset name=\"MIX-Computer.de\" f=\"MIX-Computer.de.xml\"><rule from=\"^http://(?:www\\.)?mix-computer\\.de/\" to=\"https://www.mix-computer.de/\"/></ruleset>", "<ruleset name=\"MJG International\" default_off=\"failed ruleset test\" f=\"MJG_International.xml\"><securecookie host=\"^(?:www\\.)?mjg\\.in$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MK2 (partial)\" f=\"MK2.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MKK.com.tr\" f=\"MKK.com.tr.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MKS Software.com\" f=\"MKS_Software.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ML314.com\" f=\"ML314.com.xml\"><securecookie host=\"^www\\.ml314\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MLFA.org\" f=\"MLFA.org.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MLP Forums\" f=\"MLP_Forums.xml\"><securecookie host=\"^\\.mlpforums\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?mlpforums\\.com/(\\?.*)?$\" to=\"https://$1mlpforums.com/index.php$2\"/><rule from=\"^http://(www\\.)?mlpforums\\.com/\" to=\"https://$1mlpforums.com/\"/><rule from=\"^http://s\\.mlpforums\\.com/\" to=\"https://mlpforums-feld0.netdna-ssl.com/\"/></ruleset>", "<ruleset name=\"MLPchan.net\" f=\"MLPchan.net.xml\"><securecookie host=\"^\\.mlpchan\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MLSec Project.org (partial)\" default_off=\"failed ruleset test\" f=\"MLSec_Project.org.xml\"><securecookie host=\"^(?:www)?\\.mlsecproject\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MLive.com (partial)\" f=\"MLive.com.xml\"><exclusion pattern=\"^http://businessfinder\\.mlive\\.com/+(?!favicon\\.ico)\"/><securecookie host=\"^members\\.mlive\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MLno6.com\" default_off=\"failed ruleset test\" f=\"MLno6.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MMAHQ\" f=\"MMAHQ.xml\"><securecookie host=\"^(?:www)?\\.mmahq\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?mmahq\\.com/\" to=\"https://www.mmahq.com/\"/></ruleset>", "<ruleset name=\"MMOGA\" f=\"MMOGA.xml\"><securecookie host=\"^\\.mmoga\\.(?:com|de)$\" name=\".+\"/><rule from=\"^http://(blog\\.|www\\.)?mmoga\\.(com|de)/\" to=\"https://$1mmoga.$2/\"/></ruleset>", "<ruleset name=\"MMO Culture\" f=\"MMO_Culture.xml\"><securecookie host=\"^\\.mmoculture\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MND CDN.com\" f=\"MND_CDN.com.xml\"><rule from=\"^http://a\\d\\.mndcdn\\.com/\" to=\"https://d20tdhwx2i89n1.cloudfront.net/\"/></ruleset>", "<ruleset name=\"MNN.com (partial)\" f=\"MNN.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MOBIUS\" default_off=\"expired\" f=\"MOBIUS.xml\"><rule from=\"^http://(?:www\\.)?mobiusconsortium\\.org/\" to=\"https://mobiusconsortium.org/\"/></ruleset>", "<ruleset name=\"MOBIUS Catalog\" f=\"MOBIUS_Catalog.xml\"><securecookie host=\"^\\.?searchmobius\\.org$\" name=\".+\"/><rule from=\"^http://searchmobius\\.org/\" to=\"https://searchmobius.org/\"/></ruleset>", "<ruleset name=\"MODX (partial)\" platform=\"mixedcontent\" f=\"MODX.xml\"><exclusion pattern=\"^http://services\\.modx\\.com/(?!stylesheets/|user(?:$|\\?|/))\"/><rule from=\"^http?://(?:pta|services)\\.modx\\.com/\" to=\"https://services.modx.com/$1\"/></ruleset>", "<ruleset name=\"MODX Cloud\" f=\"MODX_Cloud.xml\"><rule from=\"^http://(?:www\\.)?modxcloud\\.com/\" to=\"https://modxcloud.com/\"/></ruleset>", "<ruleset name=\"MOG.com\" default_off=\"refused\" f=\"MOG.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MOJANG.com\" f=\"MOJANG.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MOLPay\" f=\"MOLPay.xml\"><securecookie host=\"^(www\\.)?onlinepayment\\.com\\.my$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MOOC-List.com (false MCB)\" platform=\"mixedcontent\" f=\"MOOC-List.com-falsemixed.xml\"><securecookie host=\"^\\.mooc-list\\.com$\" name=\".+\"/><rule from=\"^http://www\\.mooc-list\\.com/(?!favicon\\.ico|sites/)\" to=\"https://www.mooc-list.com/\"/></ruleset>", "<ruleset name=\"MOOC-List.com (partial)\" f=\"MOOC-List.com.xml\"><exclusion pattern=\"^http://www\\.mooc-list.com/(?!favicon\\.ico|sites/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MOSIS.com\" f=\"MOSIS.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MPG.de\" f=\"MPG.de.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MPI web.org (partial)\" f=\"MPI_web.org.xml\"><exclusion pattern=\"^http://(?:www\\.)?mpiweb\\.org/+(?![aA]pp_[mM]aster/|favicon\\.ico|Libraries/|Scripts/|SignIn\\.aspx|sitefinity(?:$|[?/]))\"/><exclusion pattern=\"^http://m\\.mpiweb\\.org/+(?!Content/)\"/><rule from=\"^http://((?:m|sts|www)\\.)?mpiweb\\.org/\" to=\"https://$1mpiweb.org/\"/></ruleset>", "<ruleset name=\"MPNewMedia\" f=\"MPNewMedia.xml\"><rule from=\"^http://www1\\.mpnrs\\.com/\" to=\"https://www1.mpnrs.com/\"/></ruleset>", "<ruleset name=\"MP Bio.com\" f=\"MP_Bio.com.xml\"><securecookie host=\"^\\.mpbio\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MPlayer\" default_off=\"failed ruleset test\" f=\"MPlayer.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MPort.ua\" default_off=\"refused\" f=\"MPort.ua.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MRMCD.net\" f=\"MRMCD.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MR PORTER\" default_off=\"failed ruleset test\" f=\"MR_PORTER.xml\"><securecookie host=\"^\\.?www\\.mrporter\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?mrporter\\.com/\" to=\"https://www.mrporter.com/\"/><rule from=\"^http://(cache|www-lt)\\.mrporter\\.com/\" to=\"https://$1.mrporter.com/\"/></ruleset>", "<ruleset name=\"MSDN.com (partial)\" default_off=\"failed ruleset test\" f=\"MSDN.xml\"><exclusion pattern=\"^http://public\\.create\\.msdn\\.com/(?!assets/)\"/><securecookie host=\"^.+\\.msdn\\.com$\" name=\".+\"/><rule from=\"^http://i1\\.blogs\\.msdn\\.com/\" to=\"https://blogs.msdn.com/\"/><rule from=\"^http://public\\.create\\.msdn\\.com/\" to=\"https://www.create.msdn.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MSF.org.uk (partial)\" f=\"MSF.org.uk.xml\"><exclusion pattern=\"^http://www\\.msf\\.org\\.uk/+(?!favicon\\.ico|sites/)\"/><rule from=\"^http://(?:cdn\\.)?msf\\.org\\.uk/\" to=\"https://www.msf.org.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MSFN.org\" f=\"MSFN.org.xml\"><securecookie host=\"^(www\\.)?msfn\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MSI-Shop.de\" default_off=\"shows another domain\" f=\"MSI-Shop.de.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MSI.com (partial)\" f=\"MSI.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.gaming\\.msi\\.com$\" name=\".\"/><rule from=\"^http://dragoonarmy\\.msi\\.com/$\" to=\"https://gaming.msi.com/\"/><rule from=\"^http://support\\.msi\\.com/[^?]*\" to=\"https://register.msi.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MSI Computer.com (partial)\" f=\"MSI_Computer.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MSN (mismatches)\" default_off=\"expired, mismatch\" f=\"MSN-mismatches.xml\"><exclusion pattern=\"^http://www\\.msnbc\\.msn\\.com/id/\"/><rule from=\"^http://(?:www\\.)?msnbc\\.msn\\.com/\" to=\"https://msnbc.msn.com/\"/><rule from=\"^http://(behindthewall|bodyodd|bottomline|cartoonblog|cosmiclog|ed|dailynightly|entertainment|firstread|hardballblog|insidedateline|itineraries|maddowblog|mojoe|openchannel|overheadbin|photoblog|presspass|redtape|scoop|thelastword|(?:animaltracks|bites|celebrate|digitallife|lifeinc|moms|rockcenter|scoop|theclicker|thelook|today(?:entertainment|health|hiringourheroes|onthetrail|travel)|windsorknot)\\.today|travelkit|usnews(?:first)?|vitals|world(?:blog|news|newsfirst))\\.msnbc\\.msn\\.com/\" to=\"https://$1.msnbc.msn.com/\"/><rule from=\"^http://(economywatch|marketday|nbcpolitics)(?:\\.today)?\\.msnbc\\.msn\\.com/\" to=\"https://$1.msnbc.msn.com/\"/><rule from=\"^http://fieldnotes\\.msnbc\\.msn\\.com/\" to=\"https://usnews.msnbc.msn.com/\"/><rule from=\"^http://allday(?:\\.today)\\.msnbc\\.com/\" to=\"https://allday.today.msnbc.com/\"/><rule from=\"^http://(?:www\\.)?today\\.msnbc\\.msn\\.com/\" to=\"https://today.msnbc.msn.com/\"/><rule from=\"^http://(msndata\\.jp|my|eb\\.my|realestate|wonderwall)\\.msn\\.com/\" to=\"https://$1.msn.com/\"/><rule from=\"^http://img1\\.video\\.s-msn\\.com/\" to=\"https://img1.video.s-msn.com/\"/></ruleset>", "<ruleset name=\"MSN.co.jp (partial)\" f=\"MSN.co.jp.xml\"><securecookie host=\"^\\.msn\\.co\\.jp$\" name=\"^MUID$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MSN.com (partial)\" f=\"MSN.xml\"><securecookie host=\"^\\.msn\\.com$\" name=\"^(?:MUID|s_\\w+)$\"/><securecookie host=\"^(?:\\.c|now|preview|\\.bat\\.r)\\.msn\\.com$\" name=\".\"/><rule from=\"^http://c\\.jp\\.msn\\.com/\" to=\"https://c.msn.co.jp/\"/><rule from=\"^http://h\\.msn\\.com/\" to=\"https://h.live.com/\"/><rule from=\"^http://static\\.stratosphere\\.msn\\.com/\" to=\"https://az29590.vo.msecnd.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MSNBC.com (partial)\" default_off=\"broken\" f=\"MSNBC.com.xml\"><exclusion pattern=\"^http://www\\.msnbc\\.com/+(?!favicon\\.ico|sites/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MT-CDN.net\" f=\"MT-CDN.net.xml\"><rule from=\"^http://(?:origin|s\\d)\\.mt-cdn\\.net/\" to=\"https://mediatemple.net/\"/></ruleset>", "<ruleset name=\"Music Teachers' Association of California\" f=\"MTAC.xml\"><rule from=\"^http://(?:www\\.)?mtac\\.org/\" to=\"https://www.mtac.org/\"/></ruleset>", "<ruleset name=\"MTNA\" default_off=\"mismatched\" f=\"MTNA-mismatches.xml\"><rule from=\"^http://(?:www\\.)?mtna(certification)?\\.org/\" to=\"https://www.mtna$1.org/\"/></ruleset>", "<ruleset name=\"MTNA (partial)\" f=\"MTNA.xml\"><rule from=\"^http://members\\.mtna\\.org/\" to=\"https://members.mtna.org/\"/><rule from=\"^http://(www\\.)?mtnafoundation\\.org/\" to=\"https://$1mtnafoundation.org/\"/></ruleset>", "<ruleset name=\"MTU.edu\" f=\"MTU.edu.xml\"><rule from=\"^http://(?:www\\.)?mtu\\.edu/\" to=\"https://www.mtu.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MTVN images.com (partial)\" default_off=\"mismatched\" f=\"MTVN-images.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MTailor.com\" f=\"MTailor.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MTurk.com\" f=\"MTurk.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://mturk\\.com/\" to=\"https://www.mturk.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MVG-mobil.de\" f=\"MVG-mobil.de.xml\"><securecookie host=\"^www\\.mvg-mobil\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?mvg-mobile\\.de/\" to=\"https://www.mvg-mobile.de/\"/></ruleset>", "<ruleset name=\"MVP National Title\" f=\"MVP_National_Title.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MVPs.org (partial)\" f=\"MVPs.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Münchner Verkehrsverbund\" f=\"MVV.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MWR InfoSecurity.com\" f=\"MWR_InfoSecurity.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MXGM.org\" f=\"MXGM.org.xml\"><securecookie host=\"^(?:\\.|www\\.)?mxgm\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MXGuarddog (partial)\" f=\"MXGuarddog.xml\"><exclusion pattern=\"^http://(?:www\\.)?mxguarddog\\.com/faq(?:$|[/\\.\\?])\"/><securecookie host=\"^(?:www\\.)?mxguarddog\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MXToolBox.com (partial)\" f=\"MXToolBox.xml\"><securecookie host=\"^(?:www\\.)?mxtoolbox\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MX Cursos.com\" f=\"MX_Cursos.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MYEDDEBT.com\" default_off=\"failed ruleset test\" f=\"MYEDDEBT.com.xml\"><securecookie host=\"(?:^|\\.)myeddebt\\.com$\" name=\".+\"/><rule from=\"^(?:http://(?:www\\.)?|https://)myeddebt\\.com/\" to=\"https://www.myeddebt.com/\"/></ruleset>", "<ruleset name=\"MYOB.com\" default_off=\"failed ruleset test\" f=\"MYOB.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ma.ttias.be\" f=\"Ma.ttias.be.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MaaS360.com (partial)\" f=\"MaaS360.com.xml\"><securecookie host=\"^(?:de|portal|trials|www)?\\.maas360\\.com$\" name=\".+\"/><rule from=\"^http://((?:portal|maasters|trials|www2?)\\.)?maas360\\.com/\" to=\"https://$1maas360.com/\"/><rule from=\"^http://content\\.maas360\\.com/\" to=\"https://content.fiberlink.com/\"/><rule from=\"^http://links\\.maas360\\.com/demoRequest\\?(?=.+=)\" to=\"https://trials.maas360.com/forms/register_service_m.php?I=INFO_REQUEST_DEMO&\"/><rule from=\"^http://links\\.maas360\\.com/demoRequest/*$\" to=\"https://trials.maas360.com/forms/register_service_m.php?I=INFO_REQUEST_DEMO\"/><rule from=\"^http://links\\.maas360\\.com/getStartedNow\\?(?=.+=)\" to=\"https://trials.maas360.com/forms/register_service_m.php?A=YouTube&O=SM&\"/><rule from=\"^http://links\\.maas360\\.com/getStartedNow/*$\" to=\"https://trials.maas360.com/forms/register_service_m.php?A=YouTube&O=SM\"/><rule from=\"^http://links\\.maas360\\.com/legal\\?(?=.+=)\" to=\"https://www.maas360.com/about/privacy-and-legal/?\"/><rule from=\"^http://links\\.maas360\\.com/legal/*$\" to=\"https://www.maas360.com/about/privacy-and-legal/\"/><rule from=\"^http://links\\.maas360\\.com/(?:mdm_glossary|trialGeneric)\\?(?=.+=)\" to=\"https://trials.maas360.com/forms/register_service_m.php?\"/><rule from=\"^http://links\\.maas360\\.com/(?:mdm_glossary|trialGeneric)/*$\" to=\"https://trials.maas360.com/forms/register_service_m.php\"/><rule from=\"^http://links\\.maas360\\.com/mobileAppManagement\\?(?=.+=)\" to=\"https://www.maas360.com/products/mobile-application-management?\"/><rule from=\"^http://links\\.maas360\\.com/mobileAppManagement/*$\" to=\"https://www.maas360.com/products/mobile-application-management\"/><rule from=\"^http://links\\.maas360\\.com/webinars(?:/+|\\?.*)?$\" to=\"https://maasters.maas360.com/forum/?forum=all&value=webinar&type=1&include=4&search=1\"/></ruleset>", "<ruleset name=\"MacFound.org (partial)\" default_off=\"failed ruleset test\" f=\"MacArthur_Foundation.xml\"><securecookie host=\".+\\.macfound\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MacKeeper.com\" f=\"MacKeeper.com.xml\"><securecookie host=\"^\\.\" name=\"^lang$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MacOSForge.org\" f=\"MacOSForge.org.xml\"><rule from=\"^http://macosforge\\.org/\" to=\"https://www.macosforge.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MacPorts.org\" f=\"MacPorts.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MacRuby\" default_off=\"failed ruleset test\" f=\"MacRuby.org.xml\"><rule from=\"^http://(?:www\\.)?macruby\\.org/\" to=\"https://www.macruby.org/\"/><securecookie host=\"^(?:www)?\\.macruby\\.org\" name=\".*\"/></ruleset>", "<ruleset name=\"Macworld.com.au (partial)\" f=\"MacWorld.com.au.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MacWorld.com (partial)\" default_off=\"mismatched\" platform=\"mixedcontent\" f=\"MacWorld.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MacaInfo.org\" default_off=\"mismatch\" f=\"MacaInfo.org.xml\"><securecookie host=\"^\\.macainfo\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?macainfo\\.org/\" to=\"https://www.macainfo.org/\"/></ruleset>", "<ruleset name=\"Macfarlane Packaging.com\" f=\"Macfarlane_Packaging.com.xml\"><securecookie host=\"^(?:[.w]*\\.)?macfarlanepackaging\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?macfarlanepackaging\\.com/\" to=\"https://www.macfarlanepackaging.com/\"/></ruleset>", "<ruleset name=\"Macgamestore.com\" default_off=\"failed ruleset test\" f=\"Macgamestore.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mach Comedy Fest.co.uk\" default_off=\"self-signed\" f=\"Mach_Comedy_Fest.co.uk.xml\"><rule from=\"^http://(?:www\\.)?machcomedyfest\\.co\\.uk/\" to=\"https://machcomedyfest.co.uk/\"/></ruleset>", "<ruleset name=\"Machine Guns Vegas.com\" f=\"Machine_Guns_Vegas.com.xml\"><securecookie host=\"^\\.machinegunsvegas\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Machines Like Us\" default_off=\"failed ruleset test\" f=\"Machines_Like_Us.xml\"><rule from=\"^http://(?:www\\.)?machineslikeus\\.com/\" to=\"https://machineslikeus.com/\"/></ruleset>", "<ruleset name=\"Macmillan (partial)\" default_off=\"self-signed\" f=\"Macmillan.xml\"><rule from=\"^http://(?:www\\.)?tor\\.com/images/\" to=\"https://www.tor.com/images/\"/></ruleset>", "<ruleset name=\"Macmillan Dictionary.com\" f=\"Macmillan_Dictionary.com.xml\"><securecookie host=\"^www\\.macmillandictionary\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?macmillandictionary\\.com/\" to=\"https://www.macmillandictionary.com/\"/></ruleset>", "<ruleset name=\"Macobserver\" f=\"Macobserver.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Macromates.com\" f=\"Macromates.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Macromedia.com\" f=\"Macromedia.com.xml\"><rule from=\"^http://macromedia\\.com/\" to=\"https://www.macromedia.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Macular.org\" f=\"Macular.org.xml\"><rule from=\"^http://(?:www\\.)?macular\\.org/\" to=\"https://www.macular.org/\"/></ruleset>", "<ruleset name=\"Mad Mimi.com (partial)\" f=\"Mad_Mimi.com.xml\"><securecookie host=\"^(?:api|billing)?\\.madmimi\\.com$\" name=\".+\"/><rule from=\"^http://((?:api|billing|go|www)\\.)?madmimi\\.com/\" to=\"https://$1madmimi.com/\"/></ruleset>", "<ruleset name=\"Madame Tussauds\" default_off=\"failed ruleset test\" f=\"Madame-Tussauds.xml\"><securecookie host=\".*\\.madametussauds\\.com$\" name=\".+\"/><rule from=\"^http://madametussauds\\.com/\" to=\"https://www.madametussauds.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"madboa.com\" f=\"Madboa.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Made In a Free World.com (false MCB)\" platform=\"mixedcontent\" f=\"Made_In_a_Free_World.com.xml\"><securecookie host=\"^\\.madeinafreeworld\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Made with Code.com\" f=\"Made_with_Code.com.xml\"><rule from=\"^http://madewithcode\\.com/\" to=\"https://www.madewithcode.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Madetech.com\" f=\"Madetech.com.xml\"><securecookie host=\"^(?:www)?\\.madetech\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MadgexJB.com\" default_off=\"failed ruleset test\" f=\"MadgexJB.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Madison Logic (partial)\" f=\"Madison-Logic.xml\"><securecookie host=\"^\\.madisonlogic\\.com$\" name=\"^__(?:utm\\w|zlcid)$\"/><rule from=\"^http://(?:www\\.)?dinclinx\\.com/\" to=\"https://clk.madisonlogic.com/\"/><rule from=\"^http://www\\.madisonlogic\\.com/images/(arrow|bg|headBg|linkbutton_background|mainNav)\\.gif$\" to=\"https://www.madisonlogic.com/images/$2.gif\"/><rule from=\"^http://(blog|clk|js-agent|jsc|st)\\.madisonlogic\\.com/\" to=\"https://$1.madisonlogic.com/\"/></ruleset>", "<ruleset name=\"Madstein.at\" f=\"Madstein.at.xml\"><rule from=\"^http://(?:www\\.)?madstein\\.at/\" to=\"https://secure.madstein.at/\"/></ruleset>", "<ruleset name=\"Mael Soucaze.com\" f=\"Mael_Soucaze.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Maemo.org (partial)\" default_off=\"failed ruleset test\" f=\"Maemo.xml\"><exclusion pattern=\"^http://(?:www\\.)?maemo\\.org/(?!(?:midcom-)?static/)\"/><rule from=\"^http://www\\.maemo\\.org/\" to=\"https://maemo.org/\"/><rule from=\"^http://static\\.maemo\\.org/\" to=\"https://maemo.org/midcom-static/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Magazin.io\" default_off=\"failed ruleset test\" f=\"Magazin.io.xml\"><rule from=\"^http://www\\.magazin\\.io/\" to=\"https://magazin.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"magazinesdirect.com\" f=\"Magazinesdirect.com.xml\"><securecookie host=\"^www\\.magazinesdirect\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mageia.org\" default_off=\"failed ruleset test\" f=\"Mageia.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://svn\\.mageia\\.org/\" to=\"https://svnweb.mageia.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Magellan Models.com\" f=\"Magellan_Models.com.xml\"><securecookie host=\"^(www)?\\.magellanmodels\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Magento.co.uk (partial)\" default_off=\"mismatched\" f=\"Magento.co.uk.xml\"><exclusion pattern=\"^http://go\\.magento\\.co\\.uk/(?!ee/sso/|skin/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Magento.com\" f=\"Magento.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Magento Commerce.com\" f=\"Magento_Commerce.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Magento Go images\" f=\"Magento_Go_images.xml\"><rule from=\"^http://(\\w+\\.)?img\\.gostorego\\.com/\" to=\"https://$1img.gostorego.com/\"/></ruleset>", "<ruleset name=\"Magentohotel.dk (partial)\" default_off=\"self-signed\" f=\"Magentohotel.dk.xml\"><securecookie host=\"^prod6\\.magentohotel\\.dk$\" name=\".+\"/><rule from=\"^http://prod6\\.magentohotel\\.dk/\" to=\"https://prod6.magentohotel.dk/\"/></ruleset>", "<ruleset name=\"Magic.fr\" f=\"Magic.fr.xml\"><securecookie host=\"^(?:www\\.)?magic\\.fr$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Magic Affiliate plugin.com\" f=\"Magic_Affiliate_plugin.com.xml\"><securecookie host=\"^(?:w*\\.)?magicaffiliateplugin\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Magic Members.com\" f=\"Magic_Members.com.xml\"><securecookie host=\"^(?:w*\\.)?magicmembers\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MagicalButter (partial)\" f=\"MagicalButter.xml\"><securecookie host=\"^(store\\.)?magicalbutter\\.com$\" name=\".+\"/><rule from=\"^http://www\\.magicalbutter\\.com(\\.au)?/\" to=\"https://magicalbutter.com$1/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"magictouch.com\" default_off=\"mismatched\" f=\"Magictouch.com.xml\"><rule from=\"^http://(?:www\\.)?magictouch\\.com/\" to=\"https://magictouch.com/\"/></ruleset>", "<ruleset name=\"Magnatune (partial)\" platform=\"mixedcontent\" f=\"Magnatune.xml\"><securecookie host=\"^(?:.*\\.)magnatune\\.com$\" name=\".*\"/><rule from=\"^http://(?:he3\\.|(www\\.))?magnatune\\.com/\" to=\"https://$1magnatune.com/\"/></ruleset>", "<ruleset name=\"Magnet.ie\" f=\"Magnet.ie.xml\"><securecookie host=\"^(?:www)?\\.magnet\\.ie$\" name=\"\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Magnetise Media.com (partial)\" f=\"Magnetise_Media.com.xml\"><securecookie host=\"^(?:adcentre|console)\\.magnetisemedia\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"magserv.com\" f=\"Magserv.com.xml\"><rule from=\"^http://([\\w-]+\\.)?magserv\\.com/\" to=\"https://$1magserv.com/\"/></ruleset>", "<ruleset name=\"Magyar Telekom (partial)\" default_off=\"failed ruleset test\" f=\"Magyar_Telekom.xml\"><rule from=\"^http://(www|pool)\\.telekom\\.hu/\" to=\"https://$1.telekom.hu/\"/></ruleset>", "<ruleset name=\"Mahan Consulting\" default_off=\"expired\" f=\"Mahan-Consulting.xml\"><rule from=\"^http://(?:www\\.)?consultmahan\\.com/\" to=\"https://consultmahan.com/\"/></ruleset>", "<ruleset name=\"Mahomet Citizen (partial)\" f=\"Mahomet_Citizen.xml\"><rule from=\"^http://(?:www\\.)?mcitizen\\.com/(misc/|sites/|user(?:$|\\?|/))\" to=\"https://www.mcitizen.com/$1\"/></ruleset>", "<ruleset name=\"maidsafe.org\" f=\"Maidsafe.org.xml\"><securecookie host=\"^www\\.maidsafe\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Maidstone.gov.uk (partial)\" f=\"Maidstone.gov.uk.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://consult\\.maidstone\\.gov\\.uk/\" to=\"https://maidstone-consult.objective.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mail-Archive.com\" f=\"Mail-archive.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mail-tester.com\" f=\"Mail-tester.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mail.be\" f=\"Mail.be.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mail.bg\" f=\"Mail.bg.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mail.com\" default_off=\"failed ruleset test\" f=\"Mail.com.xml\"><securecookie host=\".*\\.mail\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mail.ru (partial)\" f=\"Mail.ru.xml\"><exclusion pattern=\"^http://ad\\.mail\\.ru/crossdomain.xml\"/><exclusion pattern=\"^http://go\\.mail\\.ru/(?!/*(?:favicon\\.ico|static/))\"/><securecookie host=\"^\\.mail\\.ru$\" name=\"^(?:FTID|VID|searchuid)$\"/><securecookie host=\"^(?:1link|allods|\\.bb|cfire|\\.dn|hi-tech|it|\\.jd|parapa|pw)\\.mail\\.ru$\" name=\".+\"/><rule from=\"^http://blogs\\.mail\\.ru/.*\" to=\"https://my.mail.ru/\"/><rule from=\"^http://cdn\\.connect\\.mail\\.ru/\" to=\"https://connect.mail.ru/\"/><rule from=\"^http://content\\.foto\\.mail\\.ru/\" to=\"https://content.foto.my.mail.ru/\"/><rule from=\"^http://stat\\.my\\.mail\\.ru/\" to=\"https://my.mail.ru/\"/><rule from=\"^http://img\\.pre\\.realty\\.mail\\.ru/\" to=\"https://img.realty.mail.ru/\"/><rule from=\"^http://(?:\\w\\w\\.){4}top\\.mail\\.ru/\" to=\"https://top-fwz1.mail.ru/\"/><rule from=\"^http://wap\\.mail\\.ru/[^?]*\" to=\"https://tel.mail.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mail4kidz.eu\" f=\"Mail4kidz.eu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MailChimp (partial)\" f=\"MailChimp.xml\"><exclusion pattern=\"^http://(?:[^./]+\\.){2,}admin\\.mailchimp\\.com/\"/><securecookie host=\"^\\.\" name=\"^_ga\"/><securecookie host=\".\\.mailchimp\\.com$\" name=\".\"/><rule from=\"^http://downloads\\.mailchimp\\.com/\" to=\"https://d1zgderxoe1a.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MailLift.com\" f=\"MailLift.com.xml\"><securecookie host=\"^maillift\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MailNull.com\" default_off=\"missing certificate chain\" f=\"MailNull.com.xml\"><rule from=\"^http://www\\.mailnull\\.com/\" to=\"https://mailnull.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MailPoet.com\" f=\"MailPoet.com.xml\"><securecookie host=\"^support\\.mailpoet\\.com$\" name=\".+\"/><rule from=\"^http://mailpoet\\.com/\" to=\"https://www.mailpoet.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mailerlite.com\" f=\"Mailerlite.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|_gat?$|cf_clearance|mailerlite:language)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mailgun.com (partial)\" f=\"Mailgun.com.xml\"><securecookie host=\"^\\.\" name=\"^_ga\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://status\\.mailgun\\.com/\" to=\"https://mailgun.statuspage.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mailgun.net (mismatched)\" default_off=\"mismatched\" f=\"Mailgun.net-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mailgun.net (partial)\" f=\"Mailgun.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mailigen.com (partial)\" default_off=\"failed ruleset test\" f=\"Mailigen.xml\"><securecookie host=\".+\\.mailigen\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mailinator.com\" f=\"Mailinator.com.xml\"><securecookie host=\"^(?:www\\.)?mailinator\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mailoo.org\" f=\"Mailoo.xml\"><rule from=\"^http://mailoo\\.org/\" to=\"https://www.mailoo.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mailout Interactive.com (partial)\" default_off=\"failed ruleset test\" f=\"Mailout_Interactive.com.xml\"><securecookie host=\"^(?:www\\.)?mailoutinteractive\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?mailoutinteractive\\.com/\" to=\"https://mailoutinteractive.com/\"/></ruleset>", "<ruleset name=\"Mailpile.is\" f=\"Mailpile.is.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mailstation.de\" f=\"Mailstation.de.xml\"><rule from=\"^http://(?:galileo\\.|www\\.)?mailstation\\.de/\" to=\"https://galileo.mailstation.de/\"/></ruleset>", "<ruleset name=\"Mailvelope.com\" f=\"Mailvelope.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Maine.gov (partial)\" default_off=\"failed ruleset test\" f=\"Maine.gov.xml\"><exclusion pattern=\"^http://www1\\.maine\\.gov/governor/lepage/(?!css/|images/)\"/><rule from=\"^http://legislature\\.maine\\.gov/\" to=\"https://mainelegislature.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Maine Legislature.org\" f=\"Maine_Legislature.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.mainelegislature\\.org/\" to=\"https://mainelegislature.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mainline Hobby.net\" f=\"Mainline_Hobby.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mainstrat.com\" f=\"Mainstrat.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Majestic-12 (partial)\" f=\"Majestic-12.xml\"><rule from=\"^http://(www\\.)?majestic12\\.co\\.uk/\" to=\"https://$1majestic12.co.uk/\"/><rule from=\"^http://majesticseo\\.com/\" to=\"https://www.majesticseo.com/\"/><rule from=\"^http://www\\.majesticseo\\.com/(account|static)/\" to=\"https://www.majesticseo.com/$1/\"/></ruleset>", "<ruleset name=\"major.io\" f=\"Major.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Majordomo.ru\" f=\"Majordomo.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Make-A-Wish Foundation of Michigan\" default_off=\"failed ruleset test\" f=\"Make-A-Wish-Foundation-MI.xml\"><rule from=\"^http://(?:www\\.)?wishmich\\.org/\" to=\"https://www.wishmich.org/\"/></ruleset>", "<ruleset name=\"Make Projects.org\" f=\"Make-Projects.xml\"><rule from=\"^http://guide-images\\.makeprojects\\.org/\" to=\"https://d1c7nyv5gwvh6t.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Make My Trip\" platform=\"mixedcontent\" f=\"MakeMyTrip.xml\"><rule from=\"^http://makemytrip\\.com/\" to=\"https://www.makemytrip.com/\"/><rule from=\"^http://(cheapfaresindia|image4|image5|m|railtourism|support|us|www)\\.makemytrip\\.com/\" to=\"https://$1.makemytrip.com/\"/></ruleset>", "<ruleset name=\"MakeShop.jp (partial)\" f=\"MakeShop.jp.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MakeUseOf (partial)\" f=\"MakeUseOf.xml\"><rule from=\"^http://(www\\.)?makeuseof\\.com/(favicon\\.ico|wp-content/|wp-includes/)\" to=\"https://$1makeuseof.com/$2\"/><rule from=\"^http://(?:cdn\\.makeuseof|main\\.makeuseoflimited\\.netdna-cdn)\\.com/\" to=\"https://makeuseof.com/\"/></ruleset>", "<ruleset name=\"make Loveland.com\" f=\"Make_Loveland.com.xml\"><securecookie host=\"^\\.makeloveland\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Make Tech Easier.com\" f=\"Make_Tech_Easier.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Maker.tv\" default_off=\"breaks videos\" f=\"Maker.tv.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Maker Shed\" f=\"Maker_Shed.xml\"><securecookie host=\"^(?:www\\.)?makershed\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Makerble\" f=\"Makerble.xml\"><rule from=\"^http://makerble\\.com/\" to=\"https://www.makerble.com/\"/><rule from=\"^http://([^/:@]+)\\.makerble\\.com/\" to=\"https://$1.makerble.com/\"/></ruleset>", "<ruleset name=\"Makerbot\" f=\"Makerbot.xml\"><securecookie host=\"^(?:accounts|\\.digitalstore|\\.store)?\\.makerbot\\.com$\" name=\".+\"/><rule from=\"^http://((?:accounts|digitalstore|www)\\.)?makerbot\\.com/\" to=\"https://$1makerbot.com/\"/><rule from=\"^http://(?:www\\.)?store\\.makerbot\\.com/\" to=\"https://store.makerbot.com/\"/></ruleset>", "<ruleset name=\"Makes.org\" default_off=\"failed ruleset test\" f=\"Makes.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Makewebeasy.com\" default_off=\"refused\" f=\"Makewebeasy.com.xml\"><rule from=\"^http://(?:www\\.)?makewebeasy\\.com/\" to=\"https://www.makewebeasy.com/\"/></ruleset>", "<ruleset name=\"Makezine.com (partial)\" f=\"Makezine.com.xml\"><securecookie host=\"^\\.makezine\\.com$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MakiBox\" default_off=\"failed ruleset test\" f=\"MakiBox.xml\"><securecookie host=\"^(?:www\\.)?makibox\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Makrotex.hu\" default_off=\"missing certificate chain\" f=\"Makrotex.hu.xml\"><securecookie host=\"^\\.makrotex\\.hu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Malcontents Gambit.com\" default_off=\"mismatched\" f=\"Malcontents_Gambit.com.xml\"><securecookie host=\"^(?:www\\.)?malcontentsgambit\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?malcontentsgambit\\.com/\" to=\"https://www.malcontentsgambit.com/\"/></ruleset>", "<ruleset name=\"Malcovery.com (partial)\" default_off=\"failed ruleset test\" f=\"Malcovery.com.xml\"><securecookie host=\"^(?:blog|www)\\.malcovery\\.com$\" name=\".+\"/><rule from=\"^http://malcovery\\.com/\" to=\"https://www.malcovery.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Maliit.org (partial)\" f=\"Maliit.org.xml\"><exclusion pattern=\"^http://(?:www\\.)?maliit\\.org/+(?!\\?)\"/><securecookie host=\"^wiki\\.maliit\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?(?:wiki\\.)?maliit\\.org/\" to=\"https://wiki.maliit.org/\"/></ruleset>", "<ruleset name=\"Mall.cz_sk_pl\" f=\"Mall.cz_sk_pl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"maltris.org\" f=\"Maltris.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.maltris\\.org/\" to=\"https://maltris.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Malvern Diabetic Foot.org\" f=\"Malvern_Diabetic_Foot.org.xml\"><securecookie host=\"^www\\.malverndiabeticfoot\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"malware-research.org\" default_off=\"failed ruleset test\" f=\"Malware-research.org.xml\"><securecookie host=\"^\\.malware-research\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MalwareTech.net\" default_off=\"failed ruleset test\" f=\"MalwareTech.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Malware Tracker.com (partial)\" f=\"Malware_Tracker.com.xml\"><rule from=\"^http://(app\\.|www\\.)?malwaretracker\\.com/\" to=\"https://$1malwaretracker.com/\"/><rule from=\"^http://(?:www\\.)?malware-tracker\\.com/\" to=\"https://www.malware-tracker.com/\"/></ruleset>", "<ruleset name=\"Malwarebytes.com\" f=\"Malwarebytes.com.xml\"><securecookie host=\"^\\.store\\.malwarebytes\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Malwarebytes (partial)\" default_off=\"failed ruleset test\" f=\"Malwarebytes.xml\"><securecookie host=\"^(?:helpdesk|\\.?store)?\\.malwarebytes\\.org$\" name=\".+\"/><rule from=\"^http://static-cdn\\.malwarebytes\\.org/\" to=\"https://static.malwarebytes.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Malwaredomainlist.com\" default_off=\"failed ruleset test\" f=\"Malwaredomainlist.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Malwr.com (partial)\" f=\"Malwr.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mamba.ru (partial)\" f=\"Mamba.xml\"><rule from=\"^http://(?:www\\.)?corp\\.mamba\\.ru/+\" to=\"https://corp.wamba.com/ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mammut\" default_off=\"failed ruleset test\" f=\"Mammut.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ManISec\" default_off=\"expired, self-signed\" f=\"ManISec.xml\"><rule from=\"^http://(?:www\\.)?manisec\\.com/\" to=\"https://www.manisec.com/\"/></ruleset>", "<ruleset name=\"Man Group\" f=\"Man_Group.xml\"><securecookie host=\"^(?:.*\\.)?man\\.com$\" name=\".+\"/><rule from=\"^http://man\\.com/\" to=\"https://www.man.com/\"/><rule from=\"^http://([^/:@]+)?\\.man\\.com/\" to=\"https://$1.man.com/\"/></ruleset>", "<ruleset name=\"Man in the Mirror.org\" f=\"Man_in_the_Mirror.org.xml\"><securecookie host=\"^(?:w*\\.)?maninthemirror\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ManaBalss.lv\" f=\"ManaBalss.lv.xml\"><rule from=\"^http://(?:www\\.)?manabalss\\.lv/\" to=\"https://manabalss.lv/\"/></ruleset>", "<ruleset name=\"ManageEngine.jp\" f=\"ManageEngine.jp.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://manageengine\\.jp/\" to=\"https://www.manageengine.jp/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ManageEngine.com (partial)\" f=\"ManageEngine.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Managed Forex Program.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Managed_Forex_Program.com.xml\"><securecookie host=\"^(?:www\\.)?managedforexprogram\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"manasource.org\" default_off=\"mismatched\" f=\"Manasource.org.xml\"><rule from=\"^http://(?:www\\.)?manasource\\.org/\" to=\"https://www.manasource.org/\"/></ruleset>", "<ruleset name=\"Manchester.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"Manchester.gov.uk.xml\"><exclusion pattern=\"^http://open\\.manchester\\.gov\\.uk/(?!/*(?:favicon\\.ico|open(?:$|[?/])))\"/><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^(?!open\\.)\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?manchester\\.gov\\.uk/\" to=\"https://cms.manchester.gov.uk/\"/><rule from=\"^http://b3\\.manchester\\.gov\\.uk/\" to=\"https://www.b3.manchester.gov.uk/\"/><rule from=\"^http://consult\\.manchester\\.gov\\.uk/\" to=\"https://manchester-consult.objective.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Marks & Spencer\" platform=\"mixedcontent\" f=\"MandS.xml\"><securecookie host=\"^(?:.*\\.)?marksandspencer\\.com$\" name=\".+\"/><rule from=\"^http://(?:www(7|10|11)?\\.)?marksandspencer\\.com/\" to=\"https://www$1.marksandspencer.com/\"/><rule from=\"^http://(asset[12]|help|m|plana)\\.marksandspencer\\.com/\" to=\"https://$1.marksandspencer.com/\"/></ruleset>", "<ruleset name=\"Mandrillapp.com\" f=\"Mandrillapp.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Manga (partial)\" default_off=\"failed ruleset test\" f=\"Manga.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mangaupdates.com\" f=\"Mangaupdates.com.xml\"><rule from=\"^http://(?:www\\.)?mangaupdates\\.com/\" to=\"https://www.mangaupdates.com/\"/></ruleset>", "<ruleset name=\"Mango (partial)\" f=\"Mango.xml\"><securecookie host=\"^s(?:hop|ssl)\\.mango\\.com$\" name=\".+\"/><rule from=\"^http://s(hop|sl)\\.mango\\.com/\" to=\"https://s$1.mango.com/\"/></ruleset>", "<ruleset name=\"Mango Languages.com\" f=\"Mango_Languages.com.xml\"><securecookie host=\"^org\\.mangolanguages\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Manhattan-Institute.org\" f=\"Manhattan-Institute.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Manhattanite\" f=\"Manhattanite.xml\"><securecookie host=\"^\\.www\\.shopmanhattanite\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Manhattanville College (partial)\" f=\"Manhattanville_College.xml\"><exclusion pattern=\"^http://(?:www\\.)?mville\\.edu/(?!/?images/|favicon\\.ico|modules/|plugins/|templates/)\"/><securecookie host=\"^(?:community|selfservice)\\.mville\\.edu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Manila Principles.org\" f=\"Manila_Principles.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"manitu.de\" f=\"Manitu.de.xml\"><rule from=\"^http://(status\\.|www\\.)?manitu\\.de/\" to=\"https://$1manitu.de/\"/><rule from=\"^http://(?:www\\.)?manitu\\.net/\" to=\"https://www.manitu.net/\"/></ruleset>", "<ruleset name=\"Manjaro.org (partial)\" f=\"Manjaro.org.xml\"><securecookie host=\"^(?:de|forum)\\.manjaro\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mankier.com\" f=\"Mankier.com.xml\"><securecookie host=\"^\\.mankier\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Manly SEA LIFE Sanctuary\" default_off=\"failed ruleset test\" f=\"Manlysealifesanctuary.com.au.xml\"><securecookie host=\".*\\.manlysealifesanctuary\\.com\\.au$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Manta (partial)\" default_off=\"failed ruleset test\" f=\"Manta.xml\"><securecookie host=\"^w*\\.manta\\.com$\" name=\".+\"/><rule from=\"^http://(?:llnw\\.|(www\\.))?manta\\.com/\" to=\"https://$1manta.com/\"/><rule from=\"^http://m\\d\\.manta-r1\\.com/\" to=\"https://www.mata.com/\"/></ruleset>", "<ruleset name=\"Manticore (partial)\" f=\"Manticore.xml\"><securecookie host=\"^stats\\.manticoretechnology\\.com$\" name=\".*\"/><rule from=\"^http://(?:app|purl)\\.manticoretechnology\\.com/\" to=\"https://app.manticoretechnology.com/\"/><rule from=\"^http://stats\\.manticoretechnology\\.com/\" to=\"https://stats.manticoretechnology.com/\"/></ruleset>", "<ruleset name=\"Mantis Ad Network.com (partial)\" f=\"Mantis_Ad_Network.com.xml\"><securecookie host=\"^\\.mantisadnetwork\\.com$\" name=\"^uuid$\"/><securecookie host=\"^admin\\.mantisadnetwork\\.com$\" name=\".+\"/><rule from=\"^http://status\\.mantisadnetwork\\.com/\" to=\"https://mantisadnetwork.statuspage.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mantor.org\" f=\"Mantor.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ManuFrog Webbhotell (partial)\" platform=\"mixedcontent\" f=\"ManuFrog-Webbhotell.xml\"><securecookie host=\"^webmail\\.manufrog\\.com$\" name=\".*\"/><rule from=\"^http://((?:manu\\d\\d?|webmail|www)\\.)?manufrog\\.com/\" to=\"https://$1manufrog.com/\"/></ruleset>", "<ruleset name=\"Manutan.fr\" f=\"Manutan.fr.xml\"><securecookie host=\"^www\\.manutan\\.fr$\" name=\".+\"/><rule from=\"^http://manutan\\.fr/\" to=\"https://www.manutan.fr/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Manx Computer Bureau\" default_off=\"failed ruleset test\" f=\"Manx_Computer_Bureau.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ManyVids.com (partial)\" f=\"ManyVids.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MapBox.com\" f=\"MapBox.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://support\\.mapbox\\.com/.*\" to=\"https://www.mapbox.com/help/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MapLight\" f=\"MapLight.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MapQuest (questionable)\" default_off=\"reported broken\" f=\"MapQuest.xml\"><rule from=\"^http://(?:www\\.)?mapquest\\.com/\" to=\"https://www.mapquest.com/\"/><rule from=\"^http://developer\\.mapquest\\.com/\" to=\"https://developer.mapquest.com/\"/><rule from=\"^http://(?:www\\.)?mapquestapi\\.com/\" to=\"https://www.mapquestapi.com/\"/><rule from=\"^http://(?:www\\.)?mapquesthelp\\.com/\" to=\"https://www.mapquesthelp.com/\"/></ruleset>", "<ruleset name=\"Mapillary.com\" default_off=\"failed ruleset test\" f=\"Mapillary.com.xml\"><rule from=\"^http://mapillary\\.com/\" to=\"https://www.mapillary.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Maplesoft.com\" f=\"Maplesoft.com.xml\"><rule from=\"^http://(?:www\\.)?maplesoft\\.com/\" to=\"https://www.maplesoft.com/\"/></ruleset>", "<ruleset name=\"Mapped in Israel.com\" f=\"Mapped_in_Israel.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mapping media freedom.org\" f=\"Mapping_Media_Freedom.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.mappingmediafreedom\\.org/\" to=\"https://mappingmediafreedom.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mapraider.com (partial)\" f=\"Mapraider.com.xml\"><rule from=\"^http://(www\\.)?mapraider\\.com/+(login|register)(?=$|\\?)\" to=\"https://$1mapraider.com/$2/\"/><rule from=\"^http://(www\\.)?mapraider\\.com/(?=_css/|_images/|_js/|login/|register/)\" to=\"https://$1mapraider.com/\"/><rule from=\"^http://static\\.mapraider\\.com/\" to=\"https://www.mapraider.com/\"/></ruleset>", "<ruleset name=\"Maps.me\" f=\"Maps.me.xml\"><securecookie host=\"^(www\\.)?maps\\.me\" name=\".+\"/><rule from=\"^http://fb\\.maps\\.me/\" to=\"https://www.facebook.com/MapsWithMe/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mapy.cz\" f=\"Mapy.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mapzen.com\" f=\"Mapzen.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Marathon Bet.com (partial)\" platform=\"mixedcontent\" f=\"Marathon_Bet.com.xml\"><securecookie host=\"^(?:www)?\\.marathonbet\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?marathonbet\\.com/\" to=\"https://www.marathonbet.com/\"/><rule from=\"^http://static\\.marathonbet\\.com/\" to=\"https://static.marathonbet.com/\"/></ruleset>", "<ruleset name=\"Marc-Stevens.nl\" f=\"Marc-Stevens.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Marc Rogers.org\" f=\"Marc_Rogers.org.xml\"><securecookie host=\"^\\.marcrogers\\.org$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"marcan.st\" f=\"Marcan.st.xml\"><rule from=\"^http://(www\\.)?marcan(\\.st|soft\\.com)/\" to=\"https://$1marcan$2/\"/></ruleset>", "<ruleset name=\"March for Babies.org (partial)\" f=\"March_for_Babies.org.xml\"><securecookie host=\"^(?:www)?\\.marchforbabies\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?marchforbabies\\.org/\" to=\"https://www.marchforbabies.org/\"/><rule from=\"^http://m\\.marchforbabies\\.org/\" to=\"https://m.marchforbabies.org/\"/></ruleset>", "<ruleset name=\"Marchex (partial)\" default_off=\"failed ruleset test\" f=\"Marchex.xml\"><exclusion pattern=\"^http://www\\.industrybrains\\.com/(?:$|\\?)\"/><securecookie host=\"^www\\.industrybrains\\.com$\" name=\".+\"/><securecookie host=\"^ppc\\.adhere\\.marchex\\.com$\" name=\".+\"/><securecookie host=\"^(?:dcm|www)\\.marchex\\.com$\" name=\".+\"/><rule from=\"^http://c\\.enhance\\.com/\" to=\"https://c.enhance.com/\"/><rule from=\"^http://(?:www\\.)?industrybrains\\.com/\" to=\"https://www.industrybrains.com/\"/><rule from=\"^http://(image|jlink|shlink)s\\.industrybrains\\.com/\" to=\"https://$1s.industrybrains.com/\"/><rule from=\"^http://((?:dcm|ppc\\.adhere|www)\\.)?marchex\\.com/\" to=\"https://$1marchex.com/\"/><rule from=\"^http://(?:www\\.)?voicestar\\.com/[^?]*\" to=\"https://www.marchex.com/call-tracking/analytics/\"/></ruleset>", "<ruleset name=\"Marhab (partial)\" f=\"Marhab.xml\"><securecookie host=\"^fb1\\.marhab\\.com$\" name=\".+\"/><rule from=\"^http://(cdn4|fb1|static)\\.marhab\\.com/\" to=\"https://$1.marhab.com/\"/></ruleset>", "<ruleset name=\"MariaDB.com (partial)\" f=\"MariaDB.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MariaDB.org\" f=\"MariaDB.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Maricopa Community Colleges (self-signed)\" default_off=\"expired, mismatch, self-signed\" f=\"Maricopa-Community-Colleges-self-signed.xml\"><securecookie host=\"^webcal\\.maricopa\\.edu$\" name=\".*\"/><rule from=\"^http://((?:www\\.mcli|web1)\\.dist|my|webcal)\\.maricopa\\.edu/\" to=\"https://$1.maricopa.edu/\"/></ruleset>", "<ruleset name=\"Maricopa Community Colleges (partial)\" f=\"Maricopa-Community-Colleges.xml\"><securecookie host=\"^ecourses\\.maricopa\\.edu$\" name=\".*\"/><securecookie host=\"^\\.sis\\.maricopa\\.edu$\" name=\"^PSJSESSIONID$\"/><rule from=\"^http://(?:www\\.)?maricopa\\.edu/\" to=\"https://www.maricopa.edu/\"/><rule from=\"^http://(ecourses|eims|google|memo[23]?|student\\.sis)\\.maricopa\\.edu/\" to=\"https://$1.maricopa.edu/\"/></ruleset>", "<ruleset name=\"Marie Isabelle & Associates\" default_off=\"mismatched\" f=\"Marie-Isabelle-and-Associates.xml\"><rule from=\"^http://(?:www\\.)?mi-ms\\.com/$\" to=\"https://mi-ms.com/~mimscom/atemporium.html\"/><rule from=\"^http://(?:www\\.)?mi-ms\\.com/\" to=\"https://mi-ms.com/~mimscom/\"/></ruleset>", "<ruleset name=\"Marie Stopes International Australia\" platform=\"mixedcontent\" f=\"Marie-Stopes-Intl-Australia.xml\"><securecookie host=\"^(?:giveto|www)\\.mariestopes\\.org\\.au$\" name=\".+\"/><rule from=\"^http://giveto\\.mariestopes\\.org\\.au/\" to=\"https://giveto.mariestopes.org.au/\"/><rule from=\"^http://(www\\.)?mariestopes\\.org\\.au/cms/donate\\.html($|#|\\?)\" to=\"https://giveto.mariestopes.org.au/$2\"/><rule from=\"^http://(www\\.)?mariestopes\\.org\\.au/cms/sex-appeal\\.html($|#|\\?)\" to=\"https://www.mariestopes.org.au/how-we-help$2\"/><rule from=\"^http://(www\\.)?mariestopes\\.org\\.au/cms/Film-Night-Amelia\\.html($|#|\\?)\" to=\"https://www.mariestopes.org.au/how-you-can-help/campaigns-and-appeals/film-nights$2\"/><rule from=\"^http://(www\\.)?mariestopes\\.org\\.au/cms/abortion-aid\\.html($|#|\\?)\" to=\"https://www.mariestopes.org.au/news-room/international-programs/media-releases/item/389-abortion-aid-why-is-rudd-the-last-man-standing$2\"/><rule from=\"^http://(www\\.)?mariestopes\\.org\\.au/cms/Country-Programs\\.html($|#|\\?)\" to=\"https://www.mariestopes.org.au/how-we-help/where-we-work$2\"/><rule from=\"^http://(www\\.)?mariestopes\\.org\\.au/cms/contact-us\\.html($|#|\\?)\" to=\"https://www.mariestopes.org.au/contact-us$2\"/><rule from=\"^http://(?:www\\.)?mariestopes\\.org\\.au/\" to=\"https://www.mariestopes.org.au/\"/></ruleset>", "<ruleset name=\"Marie Claire.co.uk (partial)\" f=\"Marie_Claire.co.uk.xml\"><rule from=\"^http://(?:www\\.)?marieclaire\\.co\\.uk/(css/|favicon\\.ico|images/|js/)\" to=\"https://marieclaire.ipcmediasecure.com/$1\"/></ruleset>", "<ruleset name=\"Marijauana Majority\" f=\"Marijuana_Majority.xml\"><securecookie host=\"^\\.marijuanamajority\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MarinSm.com (partial)\" f=\"MarinSm.com.xml\"><securecookie host=\"^\\.marinsm\\.com$\" name=\"^_msuuid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Marin Software (problematic)\" default_off=\"mismatched\" f=\"Marin_Software-problematic.xml\"><rule from=\"^http://(?:www\\.)?marinsoftware\\.de/\" to=\"https://www.marinsoftware.de/\"/></ruleset>", "<ruleset name=\"Marin Software.com (partial)\" default_off=\"failed ruleset test\" f=\"Marin_Software.xml\"><securecookie host=\"^(?:app|lvw4|pro|rt)\\.marinsoftware\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Marine Depot.com (partial)\" f=\"Marine_Depot.com.xml\"><rule from=\"^http://(?:www\\.)?marinedepot\\.com/(?=App_Themes/|favicon\\.ico)\" to=\"https://www.marinedepot.com/\"/><rule from=\"^http://shop\\.marinedepot\\.com/\" to=\"https://shop.marinedepot.com/\"/></ruleset>", "<ruleset name=\"Marine Shop.net\" f=\"Marine_Shop.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MarinellaRose.com\" default_off=\"failed ruleset test\" f=\"MarinellaRose.com.xml\"><securecookie host=\"^(?:w*\\.)?(?:bellareed|marinellarose)\\.com\" name=\".+\"/><rule from=\"^http://(www\\.)?(bellareed|marinellarose)\\.com/\" to=\"https://$1$2.com/\"/></ruleset>", "<ruleset name=\"The Marion Star\" f=\"Marion_Star.xml\"><rule from=\"^http://(?:cmsimg\\.|www\\.)?marionstar\\.com/\" to=\"https://www.marionstar.com/\"/></ruleset>", "<ruleset name=\"Mark Meyer Photography\" default_off=\"mismatched\" f=\"Mark-Meyer-Photography.xml\"><securecookie host=\"^www\\.photo-mark\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?photo-mark\\.com/\" to=\"https://www.photo-mark.com/\"/></ruleset>", "<ruleset name=\"Mark Monitor\" f=\"Mark-Monitor.xml\"><securecookie host=\"^corp\\.markmonitor\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?markmonitor\\.com/\" to=\"https://www.markmonitor.com/\"/><rule from=\"^http://corp\\.markmonitor\\.com/\" to=\"https://corp.markmonitor.com/\"/></ruleset>", "<ruleset name=\"MarkMail\" default_off=\"mismatched, self-signed\" f=\"MarkMail.xml\"><rule from=\"^http://(?:www\\.)?markmail\\.biz/\" to=\"https://markmail.biz/\"/></ruleset>", "<ruleset name=\"MarkRuler (partial)\" f=\"MarkRuler.xml\"><securecookie host=\"^(?:.*\\.)?conversionruler\\.com$\" name=\".+\"/><rule from=\"^http://(\\w+\\.)?conversionruler\\.com/\" to=\"https://$1conversionruler.com/\"/></ruleset>", "<ruleset name=\"Mark NG.co.uk\" default_off=\"failed ruleset test\" f=\"Mark_NG.co.uk.xml\"><securecookie host=\"^(?:www)?\\.markng\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Markee Dragon\" default_off=\"failed ruleset test\" f=\"Markee_Dragon.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Market-ticker.org\" f=\"Market-ticker.org.xml\"><rule from=\"^http:\" to=\"https:\"/><securecookie host=\".+\" name=\".+\"/></ruleset>", "<ruleset name=\"MarketGid.com (partial)\" f=\"MarketGid.com.xml\"><securecookie host=\"^(?:\\.www)?\\.marketgid\\.com$\" name=\"^httpsReferer$\"/><securecookie host=\"^(?:dashboard|tools)\\.marketgid\\.com$\" name=\".+\"/><rule from=\"^http://(a|dashboard|my|tools|usr)\\.marketgid\\.com/\" to=\"https://$1.marketgid.com/\"/></ruleset>", "<ruleset name=\"MarketPress.com\" f=\"MarketPress.com.xml\"><securecookie host=\"^\\.?marketpress\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Market Dojo\" default_off=\"failed ruleset test\" f=\"Market_Dojo.xml\"><securecookie host=\"^(?:.*\\.)?marketdojo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Marketing G2\" f=\"Marketing_G2.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Marketing Matters\" f=\"Marketing_Matters.xml\"><securecookie host=\"^(?:www\\.)?meeting-reg\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Marketing Research.org (partial)\" default_off=\"mismatched\" f=\"Marketing_Research.org.xml\"><securecookie host=\"^\\.marketingresearch\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?marketingresearch\\.org/\" to=\"https://www.marketingresearch.org/\"/></ruleset>", "<ruleset name=\"Marketingoops.com\" f=\"Marketingoops.com.xml\"><rule from=\"^http://(?:www\\.)?marketingoops\\.com/\" to=\"https://www.marketingoops.com/\"/></ruleset>", "<ruleset name=\"Marketo.net\" f=\"Marketo.net.xml\"><securecookie host=\".*\\.marketo\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?marketo\\.net/\" to=\"https://www.marketo.com/\"/><rule from=\"^http://app\\.marketo\\.net/\" to=\"https://app-a.marketo.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Marketo.com (partial)\" f=\"Marketo.xml\"><securecookie host=\".\" name=\"^(?!rememberUserId$).+\"/><rule from=\"^http://pages2\\.marketo\\.com/+(?:\\?.*)?$\" to=\"https://www.marketo.com/\"/><rule from=\"^http://pages2\\.marketo\\.com/(?=css/|images/|js/|rs/)\" to=\"https://pages2.marketo.com/\"/><rule from=\"^http://((?:app|app-\\w+|b2c-mlm|b2c-msm|community|fr|micro|na-\\w+|nation|(?:app-)?www\\.nation|summit|support|www)\\.)?marketo\\.com/\" to=\"https://$1marketo.com/\"/></ruleset>", "<ruleset name=\"Marketplace.org (partial)\" f=\"Marketplace.org.xml\"><securecookie host=\"^(www\\.)?marketplace\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Marketplace Used (partial)\" f=\"Marketplace_Used.xml\"><rule from=\"^http://(www\\.)?marketplace-used\\.com/(addons/|geo_templates/|index\\.php\\?a=10|user_images/)\" to=\"https://$1marketplace-used.com/$2\"/></ruleset>", "<ruleset name=\"marketstudio.net\" f=\"Marketstudio.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Marketwatch.com\" f=\"Marketwatch.com.xml\"><securecookie host=\"secure\\.marketwatch\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Marketwire\" f=\"Marketwire.com.xml\"><rule from=\"^http://(?:www\\.)?marketwire\\.com/\" to=\"https://marketwire.com/\"/><rule from=\"^http://media\\.marketwire\\.com/\" to=\"https://media.marketwire.com/\"/></ruleset>", "<ruleset name=\"Markit (partial)\" f=\"Markit.xml\"><securecookie host=\"^.*\\.markit\\.com$\" name=\".+\"/><rule from=\"^http://markit\\.com/\" to=\"https://www.markit.com/\"/><rule from=\"^http://(web\\.apps|www)\\.markit\\.com/\" to=\"https://$1.markit.com/\"/><rule from=\"^http://(?:www\\.)?feedback\\.markit\\.com/dashboard/(?:\\w+\\.(?:cs|j)s|org/)\" to=\"https://www.clicktools.com/dashboard/$1\"/></ruleset>", "<ruleset name=\"Markit On Demand\" f=\"Markit_On_Demand.xml\"><securecookie host=\"^(?:www\\.)?wallst\\.com$\" name=\".+\"/><securecookie host=\".*\\.wsod\\.com$\" name=\".+\"/><rule from=\"^http://((?:cdn\\.markit|media\\.scottrade|www)\\.)?wallst\\.com/\" to=\"https://$1wallst.com/\"/><rule from=\"^http://([\\w-]+)\\.wsod\\.com/\" to=\"https://$1.wsod.com/\"/><rule from=\"^http://(ad|media)\\.wsodcdn\\.com/\" to=\"https://$1.wsodcdn.com/\"/></ruleset>", "<ruleset name=\"markonefoods.com\" default_off=\"handshake fails\" f=\"Markonefoods.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?markonefoods\\.com/\" to=\"https://markonefoods.com/\"/></ruleset>", "<ruleset name=\"Marktplaats\" f=\"Marktplaats.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Markup\" default_off=\"mismatched\" f=\"Markup.xml\"><rule from=\"^http://(?:www\\.)?markup\\.io/\" to=\"https://markup.io/\"/></ruleset>", "<ruleset name=\"marmotte.net (partial)\" platform=\"cacert\" default_off=\"failed ruleset test\" f=\"Marmotte.net.xml\"><securecookie host=\"^mail\\.marmotte\\.net$\" name=\".+\"/><rule from=\"^http://marmotte\\.net/\" to=\"https://www.marmotte.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MarsHut.net\" f=\"MarsHut.net.xml\"><rule from=\"^http://(www\\.)?marsnet\\.net/\" to=\"https://$1marshut.net/\"/></ruleset>", "<ruleset name=\"Mars One (partial)\" f=\"Mars_One.xml\"><rule from=\"^http://cdn\\.mars-one\\.com/\" to=\"https://d1qhvyunt8f5y3.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Marsupi.org (partial)\" default_off=\"self-signed\" f=\"Marsupi.org.xml\"><securecookie host=\"^\\.(?:www\\.)?marsupi\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?marsupi\\.org/\" to=\"https://marsupi.org/\"/></ruleset>", "<ruleset name=\"Martha Stewart (mismatches)\" default_off=\"expired, mismatch, self-signed\" f=\"Martha-Stewart-mismatches.xml\"><securecookie host=\"^\\.community\\.wholeliving\\.com$\" name=\".*\"/><rule from=\"^http://shop\\.marthastewart\\.com/\" to=\"https://shop.marthastewart.com/\"/><rule from=\"^http://community\\.wholeliving\\.com/\" to=\"https://community.wholeliving.com/\"/><rule from=\"^http://wholelivingdaily\\.wholeliving\\.com/\" to=\"https://wholelivingdaily.wholeliving.com/\"/></ruleset>", "<ruleset name=\"Martha Stewart (partial)\" f=\"Martha-Stewart.xml\"><securecookie host=\"^my\\.marthastewart(?:weddings)?\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?marthastewart(?:weddings)?\\.com/images//?\" to=\"https://images.marthastewart.com/images/\"/><rule from=\"^http://images\\.(?:marthastewart(?:weddings)?|wholeliving)\\.com/\" to=\"https://images.marthastewart.com/\"/><rule from=\"^http://my\\.(marthastewart(?:weddings)?|wholeliving)\\.com/\" to=\"https://my.$1.com/\"/><rule from=\"^http://metric\\.marthastewart\\.com/\" to=\"https://marthacom-marthacomglobal.122.2o7.net/\"/></ruleset>", "<ruleset name=\"Martin Eve.com\" f=\"Martin_Eve.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"piware.de (partial)\" f=\"Martin_Pitt.xml\"><rule from=\"^http://mh21\\.piware\\.de/\" to=\"https://mh21.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Martinus.cz_sk\" f=\"Martinus.cz_sk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Martus\" f=\"Martus.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Marum.de\" f=\"Marum.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Marvel.com\" f=\"Marvel.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Marvel Heroes.com (partial)\" f=\"Marvel_Heroes.com.xml\"><securecookie host=\"^(?:login|\\.store)\\.marvelheroes\\.com$\" name=\".+\"/><rule from=\"^http://((?:forums|login|store|www)\\.)?marvelheroes\\.com/\" to=\"https://$1marvelheroes.com/\"/></ruleset>", "<ruleset name=\"Marvel Store.com\" default_off=\"failed ruleset test\" f=\"Marvel_Store.xml\"><exclusion pattern=\"^http://www\\.marvelstore\\.com/(?!marvel/store/(?:DSIAjaxOrderItemAdd|DSIProcessWidget)(?:$|\\?)|static/)\"/><securecookie host=\"^\\.marvelstore\\.com$\" name=\"s_(?:per|ses)s$\"/><rule from=\"^http://cdn\\.static1\\.marvelstore\\.com/static/\\?\\?css/\" to=\"https://static1.marvelstore.com/static/??css/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Marvell\" f=\"Marvell.xml\"><securecookie host=\"^origin-www\\.marvell\\.com$\" name=\".*\"/><rule from=\"^http://(?:(?:origin-)?www\\.)?marvell\\.com/\" to=\"https://origin-www.marvell.com/\"/><rule from=\"^http://extranet\\.marvell\\.com/\" to=\"https://extranet.marvell.com/\"/></ruleset>", "<ruleset name=\"Marxists Internet Archive \" f=\"Marxists.xml\"><rule from=\"^http://(www\\.)?marx\\.org/\" to=\"https://www.marxists.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Maryland Shooters\" f=\"Maryland_Shooters.xml\"><securecookie host=\"^(?:www\\.)?mdshooters\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mashape.com (partial)\" default_off=\"failed ruleset test\" f=\"Mashape.com.xml\"><securecookie host=\"^(?:id|www)\\.mashape\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mashery clients\" f=\"Mashery-clients.xml\"><rule from=\"^http://dev(?:eloper\\.netflix\\.|\\.pipl\\.com)/public/Mashery/\" to=\"https://secure.mashery.com/public/Mashery/\"/></ruleset>", "<ruleset name=\"Mashery.com (partial)\" default_off=\"failed ruleset test\" f=\"Mashery.xml\"><exclusion pattern=\"^http://(?:dev|developer|support)\\.mashery\\.com/(?!files/|public/)\"/><securecookie host=\"^(?:secure|visit)\\.mashery\\.com$\" name=\".*\"/><rule from=\"^http://mashery\\.com/\" to=\"https://www.mashery.com/\"/><rule from=\"^http://content\\.developer\\.mashery\\.com/\" to=\"https://s3.amazonaws.com/content.developer.mashery.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MassLive.com (partial)\" default_off=\"failed ruleset test\" f=\"MassLive.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mass Relevance\" f=\"Mass_Relevance.xml\"><rule from=\"^http://(api\\.|secure-up\\.)?massrelevance\\.com/\" to=\"https://$1massrelevance.com/\"/><rule from=\"^http://up\\.massrelevance\\.com/\" to=\"https://d1rts87l9itzp2.cloudfront.net/\"/><rule from=\"^http://(?:www\\.)?tweetriver\\.com/\" to=\"https://tweetriver.com/\"/><rule from=\"^http://proxy\\.tweetriver\\.com/\" to=\"https://proxy.tweetriver.com/\"/></ruleset>", "<ruleset name=\"Massage Magazine\" platform=\"mixedcontent\" f=\"MassageMagazine.xml\"><securecookie host=\"^(?:.*\\.)?massagemag\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?massagemag\\.com/\" to=\"https://www.massagemag.com/\"/></ruleset>", "<ruleset name=\"Massrel.io\" f=\"Massrel.io.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MasterCard\" default_off=\"failed ruleset test\" f=\"MasterCard.xml\"><securecookie host=\"\\.mastercard\\.com$\" name=\".\"/><securecookie host=\"^www\\.securecode\\.com$\" name=\".\"/><rule from=\"^http://(mastercard|securecode)\\.com/\" to=\"https://www.$1.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MasterChan.org\" default_off=\"failed ruleset test\" f=\"MasterChan.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MasterNet\" f=\"MasterNet.xml\"><securecookie host=\"^(?:www)?\\.masternet\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MasterXchange.com\" default_off=\"failed ruleset test\" f=\"MasterXchange.com.xml\"><securecookie host=\"^(?:www\\.)?masterxchange.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Master Spas WI.com\" f=\"Master_Spas_WI.com.xml\"><securecookie host=\"^\\.?masterspaswi\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mastercard.ru\" f=\"Mastercard.ru.xml\"><rule from=\"^http://mastercard\\.ru/\" to=\"https://www.mastercard.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mastering Emacs.org\" f=\"Mastering_Emacs.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mastermind\" default_off=\"failed ruleset test\" f=\"Mastermind.xml\"><securecookie host=\"^www\\.mastermindpro\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Masterminds Digital.com (partial)\" default_off=\"failed ruleset test\" f=\"Masterminds_Digital.com.xml\"><securecookie host=\"^(?:emailmarketing\\.|support\\.)?mastermindsdigital\\.com$\" name=\".+\"/><rule from=\"^http://www\\.mastermindsdigital\\.com/\" to=\"https://mastermindsdigital.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mastodon.social\" f=\"Mastodon.social.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mastozytose-Schweiz.org\" f=\"Mastozytose-Schweiz.org.xml\"><securecookie host=\"^\\.?mastozytose-schweiz\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Masty.nl\" f=\"Masty.nl.xml\"><securecookie host=\"^\\.masty\\.nl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Matalan.co.uk (partial)\" f=\"Matalan.co.uk.xml\"><exclusion pattern=\"^http://www\\.matalan\\.co\\.uk/+(?!asset/|favicon\\.ico)\"/><rule from=\"^http://(?:www\\.)?matalan\\.co\\.uk/\" to=\"https://www.matalan.co.uk/\"/></ruleset>", "<ruleset name=\"Matatall.com (partial)\" f=\"Matatall.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Match.com (partial)\" f=\"Match.com.xml\"><securecookie host=\"^secure2\\.intl\\.match\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mate-look.org\" f=\"Mate-look.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Materiel.net (partial)\" f=\"Materiel.net.xml\"><exclusion pattern=\"^http://www\\.materiel\\.net/+(?!assets/|css/|favicon\\.ico|images/|pm/client/(?:login|register|sendpass)\\.html)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MathWorks.com\" f=\"MathWorks.com.xml\"><rule from=\"^http://(?:www\\.)?mathworks\\.com/\" to=\"https://www.mathworks.com/\"/></ruleset>", "<ruleset name=\"Mathbuntu.org\" default_off=\"expired\" f=\"Mathbuntu.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mathias-Kettner.de\" f=\"Mathias-Kettner.de.xml\"><rule from=\"^http://(?:www\\.)?mathias-kettner\\.de/\" to=\"https://mathias-kettner.de/\"/></ruleset>", "<ruleset name=\"Mathias Bynens.be\" f=\"Mathias_Bynens.be.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MathJobs.org\" f=\"Mathjobs.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mathsisfun.com\" f=\"Mathsisfun.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mathtag.com\" f=\"Mathtag.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Matilda Jane Clothing.com\" f=\"Matilda_Jane_Clothing.com.xml\"><securecookie host=\"^\\.matildajaneclothing\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Matilda Jane Platinum.com\" f=\"Matilda_Jane_Platinum.com.xml\"><securecookie host=\"^\\.?matildajaneplatinum\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Matkahuolto\" f=\"Matkahuolto.xml\"><securecookie host=\"^www\\.matkahuolto\\.info$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?matkahuolto\\.info/\" to=\"https://www.matkahuolto.info/\"/></ruleset>", "<ruleset name=\"Matomy Media\" default_off=\"expired\" f=\"Matomy-Media.xml\"><rule from=\"^http://(?:www\\.)?matomymedia\\.com/\" to=\"https://www.matomymedia.com/\"/></ruleset>", "<ruleset name=\"Matomy Market\" f=\"Matomy_Market.xml\"><securecookie host=\"^\\.?network\\.adsmarket\\.com$\" name=\".+\"/><rule from=\"^http://network\\.adsmarket\\.com/\" to=\"https://network.adsmarket.com/\"/></ruleset>", "<ruleset name=\"Matrix.org\" f=\"Matrix.org.xml\"><securecookie host=\"^(www\\.)?matrix\\.org$\" name=\"^PHPSESSID$\"/><securecookie host=\"^(?:www\\.)?matrix\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Matrix Group\" f=\"Matrix_Group.xml\"><securecookie host=\"^www\\.matrixgroup\\.net$\" name=\".+\"/><rule from=\"^http://matrixgroup\\.net/.*\" to=\"https://www.matrixgroup.net/\"/><rule from=\"^http://(clients|www)\\.matrixgroup\\.net/\" to=\"https://$1.matrixgroup.net/\"/></ruleset>", "<ruleset name=\"Matrox (partial)\" f=\"Matrox.xml\"><rule from=\"^http://(www\\.)?matrox\\.com/video/media/\" to=\"https://$1matrox.com/video/media/\"/></ruleset>", "<ruleset name=\"Matt Drollette\" f=\"Matt_Drollette.xml\"><securecookie host=\"^\\.drollette\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Matt Wilcox.net\" f=\"Matt_Wilcox.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Matthews Marking.com (partial)\" f=\"Matthews_Marking.com.xml\"><rule from=\"^http://(www\\.)?matthewsmarking\\.com/(?=css/|distributors(?:$|[?/])|favicon\\.ico|images/|images_old/|wp-content/|wp-includes/)\" to=\"https://$1matthewsmarking.com/\"/></ruleset>", "<ruleset name=\"MauivaAirCruise.com (partial)\" f=\"MauivaAirCruise.com.xml\"><rule from=\"^http://(www\\.)?mauivaaircruise\\.com/(misc|modules|profiles|sites)/\" to=\"https://$1mauivaaircruise.com/$2/\"/></ruleset>", "<ruleset name=\"Mauras.ch (partial)\" f=\"Mauras.ch.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"maurus.net\" f=\"Maurus.net.xml\"><securecookie host=\"^maurus\\.net$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?maurus\\.net/\" to=\"https://maurus.net/\"/></ruleset>", "<ruleset name=\"Maven.co (partial)\" default_off=\"failed ruleset test\" f=\"Maven.co.xml\"><exclusion pattern=\"^http://(?:www\\.)?maven\\.co/(?!signup(?:$|[?/])|wp-content/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Maven.org (partial)\" f=\"Maven.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Max Planck Institute for Software Systems\" default_off=\"self-signed\" f=\"Max-Planck-Institute-for-Software-Systems.xml\"><rule from=\"^http://(?:www\\.)?mpi-soft\\.mpg\\.de/\" to=\"https://www.mpi-soft.mpg.de/\"/><rule from=\"^http://((?:adresearch|broadband|bftsim|bgp|bugassist|ceal|cloud|concurrency|courses|dependability|friendlist-manager|imprs|mg|monarch|peerreview|peerspective|popl|psn|robust-fpga|satellitelab|simna2011|socialnetworks|twitter|wiki|www)\\.)?mpi-sws\\.org/\" to=\"https://$1mpi-sws.org/\"/></ruleset>", "<ruleset name=\"Max Hamburgare\" f=\"Max.se.xml\"><rule from=\"^http://(?:www\\.)?max\\.se/\" to=\"https://www.max.se/\"/></ruleset>", "<ruleset name=\"MaxCDN.com (partial)\" f=\"MaxCDN.com.xml\"><securecookie host=\"^\\.\" name=\"^optimizely\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://blog\\.maxcdn\\.com/+\" to=\"https://www.maxcdn.com/blog/\"/><rule from=\"^http://pages\\.maxcdn\\.com/\" to=\"https://vault.stackpath.com/\"/><rule from=\"^http://support\\.maxcdn\\.com/+\" to=\"https://www.maxcdn.com/one/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MaxServ.com\" f=\"MaxServ.com.xml\"><securecookie host=\"^www\\.maxserv\\.com$\" name=\".+\"/><rule from=\"^http://maxserv\\.com/\" to=\"https://www.maxserv.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MaxSpeed CDN.com\" f=\"MaxSpeed_CDN.com.xml\"><securecookie host=\"^\\.maxspeedcdn\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Max Kitap.com\" default_off=\"failed ruleset test\" f=\"Max_Kitap.com.xml\"><securecookie host=\"^(?:www)?\\.maxkitap\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Maxdome.de\" f=\"Maxdome.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Maxim-IC.com\" default_off=\"failed ruleset test\" f=\"Maxim-IC.com.xml\"><rule from=\"^http://maxim-ic\\.com/\" to=\"https://www.maxim-ic.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Maxim Integrated.com (partial)\" default_off=\"failed ruleset test\" f=\"Maxim_Integrated.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MaxMind (partial)\" f=\"Maxmind.xml\"><securecookie host=\"^www\\.maxmind\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Maxon.net\" default_off=\"failed ruleset test\" f=\"Maxon.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Maxymiser (partial)\" default_off=\"failed ruleset test\" f=\"Maxymiser.xml\"><securecookie host=\"^.*\\.maxymiser\\.com$\" name=\".+\"/><rule from=\"^http://(cg-global\\.|hub\\.|www\\.)?maxymiser\\.com/\" to=\"https://$1maxymiser.com/\"/><rule from=\"^http://service\\.maxymiser\\.net/\" to=\"https://service.maxymiser.net/\"/></ruleset>", "<ruleset name=\"May First.org (mismatches)\" default_off=\"mismatched\" f=\"MayFirstPeopleLink-mismatches.xml\"><securecookie host=\"^didier\\.mayfirst\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"May First.org (partial)\" f=\"MayFirstPeopleLink.xml\"><securecookie host=\"^(?:.*\\.)?mayfirst\\.org$\" name=\".*\"/><rule from=\"^http://www\\.mayfirst\\.org/\" to=\"https://mayfirst.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MayFlower Software (mismatches)\" default_off=\"mismatched\" f=\"MayFlower-Software-mismatches.xml\"><rule from=\"^http://(?:www\\.)?justfordomino\\.com/\" to=\"https://justfordomino.com/\"/></ruleset>", "<ruleset name=\"MayFlower Software (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"MayFlower-Software.xml\"><rule from=\"^http://(?:www\\.)?maysoft\\.com/\" to=\"https://maysoft.com/\"/><rule from=\"^http://(?:www\\.)?notesappstore\\.com/\" to=\"https://www.notesappstore.com/\"/></ruleset>", "<ruleset name=\"Maybe Maimed.com (partial)\" f=\"Maybe_Maimed.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mayday.us\" default_off=\"failed ruleset test\" f=\"Mayday.us.xml\"><securecookie host=\"^\\.mayday\\.us$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"maymay.net\" f=\"Maymay.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mayo Clinic (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Mayo-Clinic.xml\"><securecookie host=\"^(?:.*\\.)?mayoclinic\\.(?:com|org)$\" name=\".+\"/><rule from=\"^http://mayoclinic\\.com/\" to=\"https://www.mayoclinic.com/\"/><rule from=\"^http://(healthletter|(?:book)?store|www)\\.mayoclinic\\.com/\" to=\"https://$1.mayoclinic.com/\"/><rule from=\"^http://(www\\.)?mayoclinic\\.org/\" to=\"https://$1mayoclinic.org/\"/></ruleset>", "<ruleset name=\"MazaCoin.org\" default_off=\"failed ruleset test\" f=\"MazaCoin.org.xml\"><securecookie host=\"^(?:www\\.)?mazacoin\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mazacha.in\" default_off=\"failed ruleset test\" f=\"Mazacha.in.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mbed.org\" f=\"Mbed.org.xml\"><securecookie host=\"^mbed\\.org$\" name=\".+\"/><rule from=\"^http://www\\.mbed\\.org/+\" to=\"https://mbed.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mbl.is (partial)\" f=\"Mbl.is.xml\"><exclusion pattern=\"^http://(secure\\.|www\\.)?mbl\\.is/fasteignir/\"/><rule from=\"^http://(?:secure\\.|www\\.)?mbl\\.is/\" to=\"https://secure.mbl.is/\"/><rule from=\"^http://mbl\\.teljari\\.is/\" to=\"https://secure.teljari.is/\"/></ruleset>", "<ruleset name=\"Mbnet.pt\" f=\"Mbnet.pt.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mbsy.co\" f=\"Mbsy.co.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MX Logic.com\" f=\"McAfee-MX-Logic.xml\"><exclusion pattern=\"^http://(?:[^./]+\\.){2,}(?:console|portal)\\.mxlogic\\.com/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http://(?:www\\.)?mxlogic\\.com/.*\" to=\"https://partnerfocus.mcafee.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"McAffee Mobile Security\" f=\"McAfee-Mobile-Security.xml\"><securecookie host=\"^www\\.mcafeemobilesecurity\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?mcafeemobilesecurity\\.com/\" to=\"https://www.mcafeemobilesecurity.com/\"/></ruleset>", "<ruleset name=\"McAfeeSECURE.com\" default_off=\"failed ruleset test\" f=\"McAfee-SECURE.xml\"><securecookie host=\"^(support\\.|www\\.|www2\\.)?mcafeesecure\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"McAfee.com (partial)\" default_off=\"failed ruleset test\" f=\"McAfee.xml\"><exclusion pattern=\"^http://(www\\.)?mcafee\\.com/($|\\w+/index\\.html)\"/><exclusion pattern=\"^http://(www\\.)?mcafee\\.com/(?!whitelisting|apps/about/website-feedback).*\\.aspx\"/><rule from=\"^http://(www\\.)?mcafee\\.com/\" to=\"https://www.mcafee.com/\"/><rule from=\"^http://(www\\.)?blogs\\.mcafee\\.com/\" to=\"https://blogs.mcafee.com/\"/><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"McClatchy.com (partial)\" default_off=\"failed ruleset test\" f=\"McClatchy.com.xml\"><securecookie host=\"^subscriberservices\\.mcclatchy\\.com$\" name=\".+\"/><rule from=\"^http://subscriberservices\\.mcclatchy\\.com/\" to=\"https://subscriberservices.mcclatchy.com/\"/></ruleset>", "<ruleset name=\"McClatchy Interactive.com (partial)\" f=\"McClatchy_Interactive.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"McDelivery Malaysia\" default_off=\"failed ruleset test\" f=\"McDelivery-Malaysia.xml\"><securecookie host=\"^(www\\.)?mcdelivery\\.com\\.my$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"McEvoy Group (partial)\" platform=\"mixedcontent\" f=\"McEvoy-Group.xml\"><securecookie host=\"^(?:.*\\.)?chroniclebooks.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"McGrhill Warez\" default_off=\"expired, mismatch, self-signed\" f=\"McGrhill-Warez.xml\"><securecookie host=\"^www\\.mcgrhill-warez\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?speeddl\\.com/\" to=\"https://speeddl.com/\"/><rule from=\"^http://(?:www\\.)?mcgrhill-warez\\.com/\" to=\"https://www.mcgrhill-warez.com/\"/></ruleset>", "<ruleset name=\"McMaster University\" default_off=\"failed ruleset test\" f=\"McMaster_University.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"McWhirter.com.au\" f=\"McWhirter.com.au.xml\"><rule from=\"^http://(?:www\\.)?mcwhirter\\.com\\.au/\" to=\"https://mcwhirter.com.au/\"/></ruleset>", "<ruleset name=\"mcdee.com.au\" default_off=\"failed ruleset test\" f=\"Mcdee.com.au.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mci.edu\" f=\"Mci.edu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mci4me.at\" f=\"Mci4me.at.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mcssl.com\" f=\"Mcssl.com.xml\"><securecookie host=\"^www\\.mcssl\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?mcssl\\.com/\" to=\"https://www.mcssl.com/\"/></ruleset>", "<ruleset name=\"mcxNOW.com\" default_off=\"refused\" f=\"McxNOW.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mdgms.com\" f=\"Mdgms.com.xml\"><securecookie host=\"^gateway\\.mdgms\\.com$\" name=\".+\"/><rule from=\"^http://(\\w+)\\.mdgms\\.com/\" to=\"https://$1.mdgms.com/\"/></ruleset>", "<ruleset name=\"Mdm.ru\" default_off=\"failed ruleset test\" f=\"Mdm.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mdosche.de\" default_off=\"failed ruleset test\" f=\"Mdosch.de.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.mdosche\\.de/\" to=\"https://mdosche.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"meCoffee.nl\" f=\"MeCoffee.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MeXBT.com\" default_off=\"failed ruleset test\" f=\"MeXBT.com.xml\"><securecookie host=\"\\.mexbt\\.com$\" name=\"\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mean Stinks\" default_off=\"failed ruleset test\" f=\"Mean_Stinks.xml\"><securecookie host=\"^\\.meanstinks\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Meat and Livestock Australia\" f=\"MeatandLivestockAustralia.xml\"><rule from=\"^http://(?:www\\.)?mla\\.com\\.au/\" to=\"https://www.mla.com.au/\"/></ruleset>", "<ruleset name=\"MechBunny.com\" default_off=\"needs clearnet testing\" f=\"MechBunny.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mechon-Mamre.org\" default_off=\"expired, self-signed\" f=\"Mechon-Mamre.org.xml\"><rule from=\"^http://(?:www\\.)?mechon-mamre\\.org/\" to=\"https://mechon-mamre.org/\"/></ruleset>", "<ruleset name=\"medConfidential.org\" f=\"MedConfidential.org.xml\"><securecookie host=\"^\\.medconfidential\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Medwatch (mixed content)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"MedWatch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"medarbejdersignatur.dk\" f=\"Medarbejdersignatur.dk.xml\"><rule from=\"^http://medarbejdersignatur\\.dk/\" to=\"https://www.medarbejdersignatur.dk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mederra Group (partial)\" default_off=\"failed ruleset test\" f=\"Mederra-Group.xml\"><securecookie host=\"^www\\.digipaper\\.fi$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?digipaper\\.fi/\" to=\"https://www.digipaper.fi/\"/></ruleset>", "<ruleset name=\"Medgadget\" f=\"Medgadget.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MediPreis.de\" f=\"MediPreis.de.xml\"><securecookie host=\"^www\\.medipreis\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MediStack.com\" f=\"MediStack.com.xml\"><securecookie host=\"^\\.medistack\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Media Democracy Fund\" default_off=\"mismatched\" f=\"Media-Democracy-Fund.xml\"><rule from=\"^http://(?:www\\.)?mediademocracyfund\\.org/\" to=\"https://mediademocracyfund.org/\"/></ruleset>", "<ruleset name=\"Media-Proweb.de (partial)\" default_off=\"expired\" f=\"Media-Proweb.de.xml\"><securecookie host=\"^www\\.media-proweb\\.de$\" name=\"^PIWIK_SESSID$\"/><rule from=\"^http://(?:www\\.)?media-proweb\\.de/(?=favicon\\.ico|public/|statistik(?:$|[?/]))\" to=\"https://www.media-proweb.de/\"/></ruleset>", "<ruleset name=\"Media Storehouse (partial)\" f=\"Media-Storehouse.xml\"><securecookie host=\"^secure\\.mediastorehouse\\.com$\" name=\".*\"/><rule from=\"^http://(?:static|www)\\.mediastorehouse\\.com/\" to=\"https://secure.mediastorehouse.com/\"/><rule from=\"^http://(?:www\\.)?mediastorehouse\\.net/\" to=\"https://secure.mediastorehouse.com/\"/></ruleset>", "<ruleset name=\"media-clic.com\" f=\"Media-clic.com.xml\"><securecookie host=\"^pub9\\.media-clic\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"media.net (partial)\" f=\"Media.net.xml\"><securecookie host=\"^\\.media\\.net$\" name=\"^(?:__utm\\w|wooTracker)$\"/><securecookie host=\"^\\.www\\.media\\.net$\" name=\"^(?:__ar_v4|_te_)$\"/><rule from=\"^http://cdn\\.media\\.net/\" to=\"https://mycdn-a.akamaihd.net/\"/><rule from=\"^http://(?:contextual|qsearch)\\.media\\.net/\" to=\"https://qsearch-a.akamaihd.net/\"/><rule from=\"^http://static\\.media\\.net/\" to=\"https://log-a.akamaihd.net/\"/></ruleset>", "<ruleset name=\"media6degrees (partial)\" f=\"Media6degrees.xml\"><securecookie host=\"^\\.media6degrees\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?m(?:6d|edia6degrees)\\.com/\" to=\"https://m6d.wpengine.com/\"/><rule from=\"^http://(?:action|secure)\\.media6degrees\\.com/\" to=\"https://secure.media6degrees.com/\"/></ruleset>", "<ruleset name=\"MediaDelivery.io\" f=\"MediaDelivery.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MediaEd.org\" default_off=\"failed ruleset test\" f=\"MediaEd.org.xml\"><securecookie host=\"^www\\.mediaed\\.org$\" name=\".+\"/><rule from=\"^http://mediaed\\.org/\" to=\"https://www.mediaed.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MediaFire.com\" f=\"MediaFire.com.xml\"><rule from=\"^http://staticcdn\\.mediafire\\.com/\" to=\"https://static-cdn.mediafire.com/\"/><exclusion pattern=\"^http://www(1|2)?\\.mediafire\\.com/file/\"/><exclusion pattern=\"^http://www(1|2)?\\.mediafire\\.com/\\S+\\.php\"/><exclusion pattern=\"^http://blog\\.mediafire\\.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MediaGoblin.org (partial)\" f=\"MediaGoblin.org.xml\"><securecookie host=\"(^|\\.)(issues|wiki)\\.mediagoblin\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MediaHub (partial)\" f=\"MediaHub.xml\"><rule from=\"^http://mail\\.mediahub\\.com/(?:.*)\" to=\"https://mail.google.com/a/mediahub.com\"/><rule from=\"^http://my\\.mediahub\\.com/\" to=\"https://my.mediahub.com/\"/></ruleset>", "<ruleset name=\"MediaMath.com\" f=\"MediaMath.xml\"><securecookie host=\"^(?:.*\\.)?mediamath\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MediaMatters.org (partial)\" f=\"MediaMatters.org.xml\"><exclusion pattern=\"^http://mediamatters\\.org/static/stylesheets/\"/><rule from=\"^http://(?:www\\.)?mediamatters\\.org/static/\" to=\"https://dnqv4na4axyak.cloudfront.net/static/\"/><rule from=\"^http://cloudfront\\.mediamatters\\.org/\" to=\"https://dnqv4na4axyak.cloudfront.net/\"/><rule from=\"^http://s3\\.mediamatters\\.org/\" to=\"https://s3.amazonaws.com/s3.mediamatters.org/\"/></ruleset>", "<ruleset name=\"MediaMind (partial)\" f=\"MediaMind.xml\"><securecookie host=\"^(?:creativezone|platform)\\.mediamind\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?eyeblasterwiz\\.com/\" to=\"https://www.eyeblasterwiz.com/\"/><rule from=\"^http://(creativezone|demo|origin\\.demo|platform|sandbox)\\.mediamind\\.com/\" to=\"https://$1.mediamind.com/\"/><rule from=\"^http://a\\.pgtb\\.me/\" to=\"https://a.pgtb.me/\"/></ruleset>", "<ruleset name=\"MediaNet\" f=\"MediaNet.xml\"><securecookie host=\"^www\\.mndigital\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MediaNews Group (partial)\" default_off=\"failed ruleset test\" f=\"MediaNews-Group.xml\"><rule from=\"^http://weather\\.mercurynews\\.com/\" to=\"https://www.weatherunderground.com/\"/></ruleset>", "<ruleset name=\"MediaPost (partial)\" f=\"MediaPost.xml\"><rule from=\"^http://(www\\.)?mediapost\\.com/(favicon\\.ico|register(?:/?$|\\?))\" to=\"https://$1mediapost.com/$2\"/><rule from=\"^http://media\\.mediapost\\.com/\" to=\"https://s3.amazonaws.com/media.mediapost.com/\"/></ruleset>", "<ruleset name=\"MediaSpan (partial)\" default_off=\"failed ruleset test\" f=\"MediaSpan.xml\"><securecookie host=\"^(?:.+\\.)?mediaspanonline\\.com$\" name=\".+\"/><rule from=\"^http://(assets\\.|www\\.)?(?:fimc\\.net|mediaspanonline\\.com)/\" to=\"https://$1mediaspanonline.com/\"/></ruleset>", "<ruleset name=\"MediaTakeOut.com\" default_off=\"expired, self-signed\" platform=\"mixedcontent\" f=\"MediaTakeOut.com.xml\"><rule from=\"^http://(?:i2\\.|www\\.)?mediatakeout\\.com/\" to=\"https://mediatakeout.com/\"/></ruleset>", "<ruleset name=\"Media Temple.net (partial)\" f=\"MediaTemple.xml\"><exclusion pattern=\"^http://mediatemple\\.net/blog(?:$|[?/])\"/><securecookie host=\".*\\.mediatemple\\.net$\" name=\".+\"/><rule from=\"^http://status\\.mediatemple\\.net/\" to=\"https://mtmediatemple.statuspage.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MediaWatch (mixed content)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"MediaWatch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MediaWorks (partial)\" f=\"MediaWorks.xml\"><securecookie host=\"^(?:cdn|static)\\.mediaworks\\.co\\.nz$\" name=\".+\"/><rule from=\"^http://cdn\\.mediaworks\\.co\\.nz/\" to=\"https://cdn.mediaworks.nz/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Media Factory\" f=\"Media_Factory.xml\"><securecookie host=\"^(?:www\\.)?mediafactory\\.fm$\" name=\".+\"/><rule from=\"^http://(\\w+\\.)?mediafactory\\.fm/\" to=\"https://$1mediafactory.fm/\"/></ruleset>", "<ruleset name=\"mediaarts-db.jp\" f=\"Mediaarts-db.jp.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mediabistro.com\" default_off=\"failed ruleset test\" f=\"Mediabistro.xml\"><securecookie host=\"^(?:.*\\.)?mediabistro\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mediacru.sh\" default_off=\"mismatched, self-signed\" f=\"Mediacru.sh.xml\"><securecookie host=\"^mediacru\\.sh$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mediaite (partial)\" default_off=\"mismatched\" f=\"Mediaite.xml\"><rule from=\"^http://(media|videos)\\.mediaite\\.com/\" to=\"https://$1.mediaite.com/\"/></ruleset>", "<ruleset name=\"Medialand.ru (partial)\" default_off=\"failed ruleset test\" f=\"Medialand.ru.xml\"><securecookie host=\"^mediamir\\.medialand\\.ru$\" name=\".+\"/><rule from=\"^http://mediamir\\.medialand\\.ru/\" to=\"https://mediamir.medialand.ru/\"/></ruleset>", "<ruleset name=\"Medialinx Academy.de (partial)\" f=\"Medialinx-Academy.de.xml\"><rule from=\"^http://(?:www\\.)?medialinx-academy\\.de/sites/\" to=\"https://www.medialinx-academy.de/sites/\"/></ruleset>", "<ruleset name=\"Medialoot.com\" f=\"Medialoot.com.xml\"><securecookie host=\"^\\.?medialoot\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mediamarkt.ru\" f=\"Mediamarkt.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mediamarkt.se\" f=\"Mediamarkt.se.xml\"><rule from=\"^http://(?:www\\.)?mediamarkt\\.se/\" to=\"https://www.mediamarkt.se/\"/></ruleset>", "<ruleset name=\"Médiamétrie-eStat (partial)\" f=\"Mediametrie-eStat.xml\"><securecookie host=\"\\.estat\\.com$\" name=\".*\"/><rule from=\"^http://(prof|w)\\.estat\\.com/\" to=\"https://$1.estat.com/\"/></ruleset>", "<ruleset name=\"Median.hu (partial)\" default_off=\"failed ruleset test\" f=\"Median.xml\"><securecookie host=\"^audit\\.median\\.hu$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Medianova.com (partial)\" f=\"Medianova.com.xml\"><securecookie host=\"^(?:cdn|oyy)\\.medianova\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mediant\" default_off=\"failed ruleset test\" f=\"Mediant.xml\"><securecookie host=\"^(?:w*\\.)?mandiant\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mediapart.fr\" f=\"Mediapart.fr.xml\"><rule from=\"^http:\" to=\"https:\"/><securecookie host=\"^mediapart\\.fr$\" name=\".+\"/></ruleset>", "<ruleset name=\"Mediaquest Corp.com\" f=\"Mediaquest_Corp.com.xml\"><securecookie host=\"^(?:www)?\\.mediaquestcorp\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mediate.com\" platform=\"mixedcontent\" f=\"Mediate.com.xml\"><securecookie host=\"^(?:.*\\.)mediate\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?mediate\\.com/\" to=\"https://www.mediate.com/\"/></ruleset>", "<ruleset name=\"Mediaxus.com\" f=\"Mediaxus.com.xml\"><securecookie host=\"^\\.mediaxus\\.com4\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Medibank Health Solutions\" f=\"MedibankHealthSolutions.xml\"><rule from=\"^http://(?:www\\.)?medibankhealth\\.com\\.au/\" to=\"https://www.medibankhealth.com.au/\"/></ruleset>", "<ruleset name=\"MedicAlert.org (partial)\" f=\"MedicAlert.xml\"><exclusion pattern=\"^http://www\\.medicalert\\.org/+(?!misc/|sites/|user(?:$|[?/]))\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Medical Xpress.com\" f=\"Medical_Express.xml\"><securecookie host=\"^\\.\" name=\"^__qca\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Medical Jane\" default_off=\"failed ruleset test\" f=\"Medical_Jane.xml\"><securecookie host=\"^\\.medicaljane\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Medical Treatments Management\" f=\"Medical_Treatments_Management.xml\"><securecookie host=\"^(?:.*\\.)?m(?:edical-treatments-management|tmweb)\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?m(?:edical-treatments-management|tmweb)\\.com/\" to=\"https://$1medical-treatments-management.com/\"/><rule from=\"^http://(www\\.)?mtmweb\\.biz/\" to=\"https://$1mtmweb.biz/\"/></ruleset>", "<ruleset name=\"Medici-manager.com\" default_off=\"failed ruleset test\" f=\"Medici-manager.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MediciGlobal.com (false MCB)\" platform=\"mixedcontent\" f=\"MediciGlobal.com-falsemixed.xml\"><securecookie host=\"^mediciglobal\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MediciGlobal.com (partial)\" default_off=\"failed ruleset test\" f=\"MediciGlobal.com.xml\"><exclusion pattern=\"^http://mediciglobal\\.com/+(?!css/|favicon\\.ico|images/|js/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MedicineNet.com (partial)\" f=\"MedicineNet.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MedicinesComplete.com\" f=\"MedicinesComplete.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mediekompaniet.com (partial)\" default_off=\"failed ruleset test\" f=\"Mediekompaniet.com.xml\"><rule from=\"^http://nysk\\.mediekompaniet\\.com/\" to=\"https://nysk.mediekompaniet.com/\"/></ruleset>", "<ruleset name=\"Medienstiftung-hsh.de\" f=\"Medienstiftung-hsh.de.xml\"><securecookie host=\"^(www\\.)?medienstiftung-hsh\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Medikamente-Per-Klick\" platform=\"mixedcontent\" f=\"Medikamente-Per-Klick.xml\"><rule from=\"^http://(?:www\\.|shop\\.)?medikamente-per-klick\\.de/\" to=\"https://www.medikamente-per-klick.de/\"/><rule from=\"^http://(?:www\\.)?kosmetik-per-klick\\.de/\" to=\"https://www.kosmetik-per-klick.de/\"/><rule from=\"^http://(?:www\\.)?ernaehrung-per-klick\\.de/\" to=\"https://www.ernaehrung-per-klick.de/\"/></ruleset>", "<ruleset name=\"Medius Corp.com (partial)\" f=\"Medius_Corp.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Medius Viewer.com\" f=\"Medius_Viewer.com.xml\"><rule from=\"^http://services-sj\\.mediusviewer\\.com/\" to=\"https://services-sj.mediuscorp.com/\"/></ruleset>", "<ruleset name=\"medleyads.com\" f=\"Medleyads.com.xml\"><securecookie host=\"^\\.medleyads\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"medocmall.co.uk\" f=\"Medocmall.co.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Medscape (partial)\" f=\"Medscape.xml\"><securecookie host=\"^(?:login|profreg)\\.medscape\\.com$\" name=\".*\"/><rule from=\"^http://images\\.medscape\\.com/\" to=\"https://img.medscape.com/\"/><rule from=\"^http://(img|login|profreg)\\.medscape\\.com/\" to=\"https://$1.medscape.com/\"/></ruleset>", "<ruleset name=\"Medstop.se (partial)\" f=\"Medstop.se.xml\"><exclusion pattern=\"^http://(?:www\\.)?medstop\\.se/+(?!$|\\?)\"/><rule from=\"^http://(?:www\\.)?medstop\\.se/\" to=\"https://kronansapotek.se/\"/></ruleset>", "<ruleset name=\"Meduza.io\" f=\"Meduza.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Meebey.net\" f=\"Meebey.net.xml\"><securecookie host=\"^www\\.meebey\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?meebey\\.net/\" to=\"https://www.meebey.net/\"/></ruleset>", "<ruleset name=\"Meebo\" default_off=\"failed ruleset test\" f=\"Meebo.xml\"><securecookie host=\"^\\.meebo\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?meebo\\.com/\" to=\"https://www.meebo.com/\"/><rule from=\"^http://(cim|dashboard)\\.meebo\\.com/\" to=\"https://$1.meebo.com/\"/></ruleset>", "<ruleset name=\"Meego\" default_off=\"failed ruleset test\" f=\"Meego.xml\"><securecookie host=\"^\\.meego\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Meet.fm\" default_off=\"failed ruleset test\" f=\"Meet.fm.xml\"><securecookie host=\"^\\.meet\\.fm$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MeetBSD.com\" f=\"MeetBSD.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MeetInLeeds\" f=\"MeetInLeeds.xml\"><rule from=\"^http://(?:www\\.)?meetinleeds\\.co\\.uk/\" to=\"https://www.meetinleeds.co.uk/\"/></ruleset>", "<ruleset name=\"MeetMe\" default_off=\"failed ruleset test\" f=\"MeetMe.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://games\\.meetme\\.com/.*\" to=\"https://www.myyearbook.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MeetMe Corp\" default_off=\"mismatched\" f=\"MeetMe_Corp.xml\"><rule from=\"^http://(?:www\\.)?meetmecorp\\.com/\" to=\"https://www.meetmecorp.com/\"/></ruleset>", "<ruleset name=\"Meetic (problematic)\" default_off=\"mismatched\" f=\"Meetic-problematic.xml\"><exclusion pattern=\"^http://stda\\.ilius\\.net/(?!css/(?!components/core/forgot\\.css))\"/><rule from=\"^http://(k|stda)\\.ilius\\.net/\" to=\"https://$1.ilius.net/\"/><rule from=\"^http://p(?:ictures\\.meetic\\.com|hotos\\.meetic\\.fr)/\" to=\"https://photos.meetic.fr/\"/><rule from=\"^http://statics\\.meetic-affinity\\.com/\" to=\"https://statics.meetic-affinity.com/\"/></ruleset>", "<ruleset name=\"Meetic.pt\" f=\"Meetic.pt.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Meetic (partial)\" f=\"Meetic.xml\"><securecookie host=\"^tk\\.ilius\\.net$\" name=\".+\"/><rule from=\"^http://stda\\.ilius\\.net/\" to=\"https://iliusstda-a.akamaihd.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Meetings.io (partial)\" default_off=\"failed ruleset test\" f=\"Meetings.io.xml\"><securecookie host=\"^(?:w*\\.)?meetings\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Meetrics\" f=\"Meetrics.xml\"><rule from=\"^http://(s\\d+)\\.research\\.de\\.com/\" to=\"https://$1.research.de.com/\"/><rule from=\"^http://((dc\\d+\\.)?s\\d+)\\.meetrics\\.net/\" to=\"https://$1.meetrics.net/\"/><rule from=\"^http://(s\\d+)\\.mxcdn\\.net/\" to=\"https://$1.mxcdn.net/\"/></ruleset>", "<ruleset name=\"Meetup\" f=\"Meetup.xml\"><securecookie host=\"^\\.meetup\\.com$\" name=\"^MEETUP_(?:AFFIL|TRACK)$\"/><rule from=\"^http://(photos|static)[1-4]\\.meetupstatic\\.com/\" to=\"https://secure.meetupstatic.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MegWorld\" default_off=\"failed ruleset test\" f=\"MegWorld.xml\"><securecookie host=\"^pump\\.megworld\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(?:(pump\\.|webchat\\.)|www\\.)?megworld\\.co\\.uk/\" to=\"https://$1megworld.co.uk/\"/></ruleset>", "<ruleset name=\"Mega.com (problematic)\" default_off=\"mismatched\" f=\"Mega.com-problematic.xml\"><rule from=\"^http://(?:www\\.)?mega\\.com/\" to=\"https://mega.com/\"/></ruleset>", "<ruleset name=\"Mega.com (partial)\" f=\"Mega.com.xml\"><securecookie host=\"^community\\.mega\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mega\" f=\"Mega.xml\"><securecookie host=\"^mega\\.(co\\.)?nz$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MegaBigPower.com\" default_off=\"failed ruleset test\" f=\"MegaBigPower.com.xml\"><securecookie host=\"^(?:www\\.)?megabigpower\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MegaFon (partial)\" f=\"MegaFon.xml\"><securecookie host=\"^.+\\.megafon\\.ru$\" name=\".+\"/><rule from=\"^http://megafon\\.ru/\" to=\"https://www.megafon.ru/\"/><rule from=\"^http://(cdnmf11|corp|english|m|sg|static\\d|www)\\.megafon\\.ru/\" to=\"https://$1.megafon.ru/\"/></ruleset>", "<ruleset name=\"MegaGlest.org (false MCB)\" platform=\"mixedcontent\" f=\"MegaGlest.org-falsemixed.xml\"><securecookie host=\"^megaglest\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?megaglest\\.org/\" to=\"https://megaglest.org/\"/></ruleset>", "<ruleset name=\"MegaGlest.org (partial)\" f=\"MegaGlest.org.xml\"><exclusion pattern=\"^http://(?:www\\.)?megaglest\\.org/+(?!megaglest\\.ico|tmp/|uploads/)\"/><rule from=\"^http://(?:(docs\\.|forum\\.)|www\\.)?megaglest\\.org/\" to=\"https://$1megaglest.org/\"/><rule from=\"^http://faq\\.megaglest\\.org/\" to=\"https://docs.megaglest.org/MG/FAQ\"/><rule from=\"^http://readme\\.megaglest\\.org/\" to=\"https://raw.github.com/MegaGlest/megaglest-source/master/docs/README.txt\"/><rule from=\"^http://wiki\\.megaglest\\.org/\" to=\"https://docs.megaglest.org/MG\"/></ruleset>", "<ruleset name=\"MegaPath.com (partial)\" default_off=\"failed ruleset test\" f=\"MegaPath.xml\"><exclusion pattern=\"^http://voice\\.megapath\\.com/(?!Login/)\"/><exclusion pattern=\"^http://vp1-voiceportal\\.megapath\\.com/(?!Login/)\"/><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^(?:events|my|www)\\.megapath\\.com$\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MegaPath Wholesale.com (partial)\" f=\"MegaPath_Wholesale.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MegaShare.im\" default_off=\"failed ruleset test\" f=\"MegaShare.im.xml\"><securecookie host=\"^\\.megashare\\.im$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MegaStock.ru (partial)\" default_off=\"self-signed\" f=\"MegaStock.xml\"><rule from=\"^http://(?:www\\.)?megastock\\.ru/(css/|[Dd]oc/|icon.ashx|Images/|img/|scripts/|WebResource\\.axd)\" to=\"https://www.megastock.ru/$1\"/></ruleset>", "<ruleset name=\"Megabus\" default_off=\"failed ruleset test\" f=\"Megabus.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MegiTeam.pl (false MCB)\" platform=\"mixedcontent\" f=\"MegiTeam.pl.xml\"><securecookie host=\"^www\\.megiteam\\.pl$\" name=\".+\"/><rule from=\"^http://megiteam\\.pl/\" to=\"https://www.megiteam.pl/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mehring.com\" default_off=\"needs clearnet testing\" f=\"Mehring.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MeiPian (partial)\" f=\"MeiPian.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MeiTuan.com\" f=\"MeiTuan.com.xml\"><exclusion pattern=\"^http://i\\.meituan\\.com/mobile/\"/><exclusion pattern=\"^http://waimai\\.meituan\\.com/(?!static/)\"/><rule from=\"^http://kaidian\\.waimai\\.meituan\\.com/\" to=\"https://kaidian.waimai.meituan.com/\"/><exclusion pattern=\"^http://tech\\.meituan\\.com/\"/><exclusion pattern=\"^http://union\\.meituan\\.com/\"/><exclusion pattern=\"^http://zhao\\.meituan\\.com/\"/><rule from=\"^http://(\\w+)\\.meituan\\.com/\" to=\"https://$1.meituan.com/\"/></ruleset>", "<ruleset name=\"MeiTuan.net\" default_off=\"failed ruleset test\" f=\"MeiTuan.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Meinfernbus.de (partial)\" f=\"MeinFernbus.xml\"><exclusion pattern=\"^http://meinfernbus\\.de/(((kundenservice|ueber-uns|presse|staedte)/)|((agb|datenschutz|impressum|nutzungsbedingungen)\\.html)|seitenuebersicht)\"/><exclusion pattern=\"^http://meinfernbus\\.de/en(?!/rebooking)\"/><rule from=\"^http://(?:www\\.)?meinfernbus\\.de/\" to=\"https://meinfernbus.de/\"/></ruleset>", "<ruleset name=\"meinVZ\" default_off=\"Certificate mismatch\" f=\"MeinVZ.xml\"><rule from=\"^http://www\\.meinvz\\.net/\" to=\"https://www.meinvz.net/\"/></ruleset>", "<ruleset name=\"Mekanist\" default_off=\"failed ruleset test\" f=\"Mekanist.xml\"><securecookie host=\"^www\\.mekanist\\.net$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?mekanist\\.net/\" to=\"https://www.mekanist.net/\"/></ruleset>", "<ruleset name=\"Melbourne Aquarium\" f=\"Melbourne-Aquarium.xml\"><securecookie host=\".*\\.melbourneaquarium\\.com\\.au$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Meldium.com\" f=\"Meldium.com.xml\"><rule from=\"^http://meldium\\.com/\" to=\"https://www.meldium.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Melectronics.ch\" f=\"Melectronics.ch.xml\"><rule from=\"^http://melectronics\\.ch/\" to=\"https://www.melectronics.ch/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mellanox (problematic)\" default_off=\"expired, self-signed\" f=\"Mellanox-problematic.xml\"><exclusion pattern=\"^http://calc\\.mellanox\\.com/(?:$|\\?)\"/><securecookie host=\"^calc\\.mellanox\\.com$\" name=\".*\"/><rule from=\"^http://calc\\.mellanox\\.com/\" to=\"https://calc.mellanox.com/\"/></ruleset>", "<ruleset name=\"Mellanox (partial)\" f=\"Mellanox.xml\"><securecookie host=\"^(?:(?:www\\.)?partners\\.|www\\.)?mellanox\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?mellanox\\.com/\" to=\"https://www.mellanox.com/\"/><rule from=\"^http://calc\\.mellanox\\.com/(?:\\?.*)?$\" to=\"https://www.mellanox.com/\"/><rule from=\"^http://(www\\.)?partners\\.mellanox\\.com/\" to=\"https://$1partners.mellanox.com/\"/></ruleset>", "<ruleset name=\"Melonbooks.co.jp\" f=\"Melonbooks.co.jp.xml\"><securecookie host=\"melonbooks\\.co\\.jp$\" name=\".+\"/><rule from=\"^http://melonbooks\\.co\\.jp/\" to=\"https://www.melonbooks.co.jp/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"melpa.org\" f=\"Melpa.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Meltin.net (partial)\" f=\"Meltin.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Meltwater News\" f=\"Meltwater-News.xml\"><securecookie host=\"^(?:.*\\.)?meltwaternews\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MemberCentral\" f=\"MemberCentral.xml\"><securecookie host=\"^(?:www\\.)?membercentral\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MemberClicks.com (partial)\" f=\"MemberClicks.com.xml\"><rule from=\"^http://(data|help)\\.memberclicks\\.com/\" to=\"https://$1.memberclicks.com/\"/></ruleset>", "<ruleset name=\"MemberClicks.net\" f=\"MemberClicks.net.xml\"><securecookie host=\"^[\\w-]+\\.memberclicks\\.net$\" name=\".+\"/><rule from=\"^http://([\\w-]+\\.)?memberclicks\\.net/\" to=\"https://$1memberclicks.net/\"/></ruleset>", "<ruleset name=\"Memberdirect.net\" f=\"Memberdirect.net.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Memberful.com\" default_off=\"failed ruleset test\" f=\"Memberful.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Membership Rewards.com\" f=\"Membership_Rewards.com.xml\"><securecookie host=\"^www\\.membershiprewards\\.com$\" name=\".+\"/><rule from=\"^http://membershiprewards\\.com/\" to=\"https://www.membershiprewards.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Memcached.org\" f=\"Memcached.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Meme Center (partial)\" f=\"Meme_Center.xml\"><securecookie host=\"^\\.memecenter\\.com$\" name=\".+\"/><rule from=\"^http://(global3|scdn)\\.memecdn\\.com/\" to=\"https://$1.memecdn.com/\"/><rule from=\"^http://((?:ovh|red|rn|www|yntmeme)\\.)?memecenter\\.com/\" to=\"https://$1memecenter.com/\"/></ruleset>", "<ruleset name=\"Memorial University\" default_off=\"failed ruleset test\" f=\"Memorial-University.xml\"><exclusion pattern=\"^http://www.ucs.mun.ca/\"/><securecookie host=\"^online\\.mun\\.ca$\" name=\".+\"/><rule from=\"^http://www\\.([\\w.-]+)?mun\\.ca/\" to=\"https://www.$1mun.ca/\"/><rule from=\"^http://online\\.mun\\.ca/\" to=\"https://online.mun.ca/\"/><rule from=\"^http://([\\w.-]+)?delts\\.mun\\.ca/\" to=\"https://$1delts.mun.ca/\"/></ruleset>", "<ruleset name=\"Memory Alpha\" default_off=\"mismatched\" f=\"Memory-Alpha.xml\"><securecookie host=\"^(?:en)?\\.memory-alpha\\.org$\" name=\".*\"/><rule from=\"^http://en\\.memory-alpha\\.org/\" to=\"https://en.memory-alpha.org/\"/></ruleset>", "<ruleset name=\"Memorydealers\" platform=\"mixedcontent\" f=\"Memorydealers.xml\"><securecookie host=\"^\\.memorydealers\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Memrise.com (partial)\" f=\"Memrise.xml\"><exclusion pattern=\"^http://www\\.memrise\\.com/+(?!$|\\?|(?:join|login)(?:$|[?/]))\"/><securecookie host=\"^\\.memrise\\.com$\" name=\"^__cfduid$\"/><rule from=\"^http://(?:media|static)\\.memrise\\.com/\" to=\"https://d107cgb5lgj7br.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Memset.com\" f=\"Memset.xml\"><securecookie host=\"^(?:.*\\.)?memset\\.com$\" name=\".*\"/><rule from=\"^http://(\\w+\\.)?memset\\.com/\" to=\"https://$1memset.com/\"/></ruleset>", "<ruleset name=\"Mencap.org.uk\" default_off=\"failed ruleset test\" f=\"Mencap.org.uk.xml\"><exclusion pattern=\"^http://(?:(?!donate\\.|www\\.|yournetwork\\.)(?:[^./]+\\.){2,}|(?:[^./]+\\.)+(?:donate|www|yournetwork)\\.|mylife\\.|snap\\.|tributefunds\\.)mencap\\.org\\.uk/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mendeley.com (partial)\" default_off=\"failed ruleset test\" f=\"Mendeley.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mendiant.com (partial)\" f=\"Mendiant.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?mandiant\\.com$\" name=\".+\"/><rule from=\"^http://(forums\\.|www\\.)?mandiant\\.com/\" to=\"https://$1mandiant.com/\"/><rule from=\"^http://images\\.connect\\.mandiant\\.com/\" to=\"https://secure.eloqua.com/\"/></ruleset>", "<ruleset name=\"Meningitus Trust (partial)\" f=\"Meningitis_Trust.xml\"><rule from=\"^http://www\\.meningitis-trust\\.org/(blocks/|concrete/|favicon\\.ico|files/|packages/|themes/)\" to=\"https://www.meningitis-trust.org/$1\"/></ruleset>", "<ruleset name=\"Mensa.org.uk\" f=\"Mensa.org.uk.xml\"><rule from=\"^http:\" to=\"https:\"/><securecookie host=\"^mensa\\.org\\.uk$\" name=\".+\"/><securecookie host=\"^www\\.mensa\\.org\\.uk$\" name=\".+\"/></ruleset>", "<ruleset name=\"Mensaplan.de\" f=\"Mensaplan.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Menshealth.de\" platform=\"mixedcontent\" f=\"Menshealth.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mental health services in Australia\" f=\"MentalHealthServicesinAustralia.xml\"><rule from=\"^http://(?:www\\.)?mhsa\\.aihw\\.gov\\.au/\" to=\"https://mhsa.aihw.gov.au/\"/></ruleset>", "<ruleset name=\"Mentalhealth.asn.au\" f=\"Mentalhealth.asn.au.xml\"><rule from=\"^http://(www\\.)?mentalhealth\\.asn\\.au/\" to=\"https://www.mentalhealth.asn.au/\"/></ruleset>", "<ruleset name=\"Mentor Graphics (partial)\" f=\"Mentor-Graphics.xml\"><securecookie host=\"^\\.store1\\.mentor\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?codesourcery\\.com/\" to=\"https://www.mentor.com/embedded-software/codesourcery\"/><rule from=\"^http://mentor\\.com/\" to=\"https://www.mentor.com/\"/><rule from=\"^http://(accounts|store1?|supportnet)\\.mentor\\.com/\" to=\"https://$1.mentor.com/\"/><rule from=\"^http://cache\\.mentor\\.com/\" to=\"https://d30fqqf2omcq1k.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Mentoring Central\" default_off=\"failed ruleset test\" f=\"Mentoring_Central.xml\"><securecookie host=\"^(?:.*\\.)?mentoringcentral\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Meo.pt\" default_off=\"failed ruleset test\" f=\"Meo.pt.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MEPhI.ru (mismatched)\" default_off=\"mismatched\" f=\"Mephi.ru-problematic.xml\"><securecookie host=\"^voip\\.mephi\\.ru$\" name=\".+\"/><rule from=\"^http://voip\\.mephi\\.ru/\" to=\"https://voip.mephi.ru/\"/></ruleset>", "<ruleset name=\"MEPhI.ru (partial)\" f=\"Mephi.ru.xml\"><securecookie host=\"^(?:oir|ut|\\.mail\\.ut)\\.mephi\\.ru$\" name=\".+\"/><rule from=\"^http://(ca|eis|oir|ut|mail\\.ut)\\.mephi\\.ru/\" to=\"https://$1.mephi.ru/\"/></ruleset>", "<ruleset name=\"Mequoda.com (partial)\" default_off=\"failed ruleset test\" f=\"Mequoda.com.xml\"><securecookie host=\"^www\\.mequoda\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?mequoda\\.com/\" to=\"https://www.mequoda.com/\"/></ruleset>", "<ruleset name=\"Mer Project (partial)\" f=\"Mer-Project.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mer.io\" f=\"Mer.io.xml\"><securecookie host=\"^(?:w*\\.)?mer\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MerNetwork\" f=\"MerNetwork.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mer Project.org (partial)\" f=\"Mer_Project.org.xml\"><securecookie host=\"^(?:bugs|build|wiki)\\.merproject\\.org$\" name=\".+\"/><rule from=\"^http://(bugs|build|wiki)\\.merproject\\.org/\" to=\"https://$1.merproject.org/\"/><rule from=\"^http://review\\.merproject\\.org/(?:\\?.*)?$\" to=\"https://code.google.com/p/gerrit/\"/></ruleset>", "<ruleset name=\"Meraki\" f=\"Meraki.xml\"><securecookie host=\".*\\.meraki\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Merca2.0\" default_off=\"self-signed\" f=\"Merca20.xml\"><securecookie host=\"^www\\.merca20\\.com$\" name=\".+\"/><rule from=\"^http://(?:cdn\\.|www\\.)?merca20\\.com/\" to=\"https://www.merca20.com/\"/></ruleset>", "<ruleset name=\"Mercatus Center (partial)\" f=\"Mercatus-Center.xml\"><securecookie host=\"^(www\\.)?mercatus\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MerchDirect (partial)\" default_off=\"failed ruleset test\" f=\"MerchDirect.xml\"><rule from=\"^http://(?:www\\.)?merchdirect\\.com/($|\\?|home(?:$|\\?|/)|stores/(?:account_login\\.php|images/|skins/))\" to=\"https://www.merchdirect.com/$1\"/></ruleset>", "<ruleset name=\"Merchant City Music (partial)\" f=\"Merchant_City_Music.xml\"><rule from=\"^http://(?:www\\.)?guitar\\.co\\.uk/(asset|image|stylesheet)s/\" to=\"https://www.guitar.co.uk/$1s/\"/></ruleset>", "<ruleset name=\"merchantquest.net\" f=\"Merchantquest.net.xml\"><exclusion pattern=\"^http://www\\.\"/><securecookie host=\".+\\.merchantquest\\.net$\" name=\".+\"/><rule from=\"^http://([\\w-]+)\\.merchantquest\\.net/\" to=\"https://$1.merchantquest.net/\"/></ruleset>", "<ruleset name=\"Mercurial SCM\" default_off=\"failed ruleset test\" f=\"Mercurial_SCM.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mercury News.com (partial)\" default_off=\"expired\" platform=\"mixedcontent\" f=\"Mercury_News.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?mercurynews\\.com/(?:\\w+/ci_\\d+(?:$|[?/]))\"/><rule from=\"^http://(?:www\\.)?mercurynews\\.com/\" to=\"https://secure.www.mercurynews.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mercury News\" f=\"Mercury_News.xml\"><securecookie host=\"^(?:.*\\.)?mmedia\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mercy Ships (partial)\" default_off=\"failed ruleset test\" f=\"Mercy_Ships.xml\"><securecookie host=\"^(?:w*\\.)?mercyships\\.org$\" name=\".+\"/><rule from=\"^http://www\\.mercyships\\.org\\.s3-us-west-1\\.amazonaws\\.com/\" to=\"https://s3-us-west-1.amazonaws.com/www.mercyships.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MereThis.com\" default_off=\"failed ruleset test\" f=\"MereThis.com.xml\"><securecookie host=\"^(?:cdn-www\\.|www\\.)?merethis\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Meritrust CU.org\" f=\"Meritrust_CU.org.xml\"><securecookie host=\"^(?:www)?\\.meritrustcu\\org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?meritrustcu\\.org/\" to=\"https://www.meritrustcu.org/\"/><rule from=\"^http://xenapp\\.meritrustcu\\.org/\" to=\"https://xenapp.meritrustcu.org/\"/></ruleset>", "<ruleset name=\"Merkur.de\" f=\"Merkur.de.xml\"><rule from=\"^http://www\\.trauer\\.merkur\\.de/\" to=\"https://trauer.merkur.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Merlin Entertainments Group (partial)\" f=\"Merlin-Entertainments.xml\"><securecookie host=\"secure\\.merlinentertainmentsgroup\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Merlinbreaks.co.uk\" f=\"Merlinbreaks.co.uk.xml\"><exclusion pattern=\"^http://www.merlinbreaks\\.co\\.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Merlinux\" default_off=\"self-signed\" f=\"Merlinux.xml\"><securecookie host=\"^(?:.*\\.)?pypy\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?merlinux\\.eu/\" to=\"https://merlinux.eu/\"/><rule from=\"^http://(?:www\\.)?pypy\\.org/\" to=\"https://pypy.org/\"/><rule from=\"^http://bugs\\.pypy\\.org/\" to=\"https://bugs.pypy.org/\"/></ruleset>", "<ruleset name=\"Mersenne.org\" f=\"Mersenne.org.xml\"><securecookie host=\"^(www\\.)?mersenne\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Merton.gov.uk (partial)\" f=\"Merton.gov.uk.xml\"><exclusion pattern=\"http://fsd\\.merton\\.gov\\.uk/+(?!kb5/merton/directory/(?:assets/|(?:contact|register|sign_in)\\.page))\"/><exclusion pattern=\"http://www.merton.gov.uk/(?:$|\\?)\"/><securecookie host=\"^(?!fsd\\.|www\\.)\\w\" name=\".\"/><rule from=\"^http://merton\\.gov\\.uk/\" to=\"https://www.merton.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mesamatrix.net\" f=\"Mesamatrix.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mesh Internet (partial)\" f=\"Mesh-Internet.xml\"><securecookie host=\"^\\w+\\.mesh-internet\\.co\\.uk$\" name=\".*\"/><rule from=\"^http://(my|secure)\\.mesh-internet\\.co\\.uk/\" to=\"https://$1.mesh-internet.co.uk/\"/></ruleset>", "<ruleset name=\"Mesosphere.com\" f=\"Mesosphere.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"messagingengine.com\" f=\"Messagingengine.com.xml\"><rule from=\"^http://(?:www\\.)?messagingengine\\.com/+([^?]*)(?:\\?.*)?\" to=\"https://www.fastmail.com/$1\"/><rule from=\"^http://mail\\.messagingengine\\.com/\" to=\"https://mail.messagingengine.com/\"/></ruleset>", "<ruleset name=\"Messenger.com\" f=\"Messenger.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Messer Financial\" f=\"Messer_Financial.xml\"><securecookie host=\"^(?:.*\\.)?messerfinancial\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Met-Art.com (partial)\" platform=\"mixedcontent\" f=\"Met-Art.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Met Office\" default_off=\"mismatched\" f=\"Met-Office.xml\"><rule from=\"^http://(?:www\\.)?metoffice\\.gov\\.uk/\" to=\"https://www.metoffice.gov.uk/\"/></ruleset>", "<ruleset name=\"MetArt Network.com (partial)\" f=\"MetArt_Network.com.xml\"><securecookie host=\"^(?:account|billing)\\.metartnetwork\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MetaCPAN.org\" f=\"MetaCPAN.xml\"><securecookie host=\"^(?:.*\\.)?metacpan\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Metaebene\" f=\"MetaEbene.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MetaGer.de\" f=\"MetaGer.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Metapress (partial)\" f=\"MetaPress.com.xml\"><securecookie host=\"^s(?:hibboleth|pringerlink3)\\.metapress\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?metapress\\.com/(account/|dynamic-file\\.axd|identities/(?:help|me)/|images/|personalization/)\" to=\"https://www.metapress.com/$1\"/><rule from=\"^http://ons\\.metapress\\.com/(dynamic-file\\.axd|identities(?:$|[\\?/])|images/)\" to=\"https://ons.metapress.com/$1\"/><rule from=\"^http://(psycontent|shibboleth|springerlink3)\\.metapress\\.com/\" to=\"https://$1.metapress.com/\"/></ruleset>", "<ruleset name=\"MetaProducts.com\" f=\"MetaProducts.com.xml\"><securecookie host=\"^(?:www\\.)?metaproducts\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Metaboli.co.uk\" default_off=\"missing certificate chain\" f=\"Metaboli.co.uk.xml\"><securecookie host=\"^\\.?www\\.metaboli\\.co\\.uk$\" name=\"\"/><rule from=\"^http://metaboli\\.co\\.uk/\" to=\"https://www.metaboli.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Metaboli.fr (partial)\" f=\"Metaboli.fr.xml\"><rule from=\"^http://img\\.metaboli\\.fr/\" to=\"https://d10svsm0gnverk.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Metabunk.org\" f=\"Metabunk.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Metafetish.com\" f=\"Metafetish.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Metal-Detector-Town.com\" default_off=\"failed ruleset test\" f=\"Metal-Detector-Town.com.xml\"><securecookie host=\"^\\.(?:www\\.)?metal-detector-town\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"metalab.at\" f=\"Metalab.at.xml\"><securecookie host=\"^metalab\\.at$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Metallica.com (partial)\" f=\"Metallica.xml\"><securecookie host=\"^(?:w*\\.)?metallica\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"metalyzer.com\" f=\"Metalyzer.com.xml\"><securecookie host=\"^\\.metalyzer\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Metanet.ch (partial)\" f=\"Metanet.ch.xml\"><securecookie host=\"^www\\.metanet\\.ch$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Metasploit.com\" default_off=\"failed ruleset test\" f=\"Metasploit.xml\"><securecookie host=\"^\\.metasploit\\.com$\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^dev\\.metasploit\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"metcombank.ru\" default_off=\"failed ruleset test\" f=\"Metcombank.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MeteoNews (partial)\" f=\"MeteoNews.xml\"><rule from=\"^http://(js|static-media)\\.meteonews\\.net/\" to=\"https://$1.meteonews.net/\"/></ruleset>", "<ruleset name=\"Meteoprog.kz\" f=\"Meteoprog.kz.xml\"><securecookie host=\"^www\\.meteoprog\\.kz$\" name=\".+\"/><rule from=\"^http://meteoprog\\.kz/\" to=\"https://www.meteoprog.kz/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Meteor.com\" f=\"Meteor.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MeteorHacks.com\" default_off=\"failed ruleset test\" f=\"MeteorHacks.com.xml\"><securecookie host=\"^\\.meteorhacks\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Method Acting Strasberg.com\" f=\"Method_Acting_Strasberg.com.xml\"><securecookie host=\"^(?:w*\\.)?methodactingstrasberg.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Metin2.co.nz\" f=\"Metin2.co.nz.xml\"><securecookie host=\"^\\.?metin2\\.co\\.nz$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Metooo.io\" default_off=\"failed ruleset test\" f=\"Metooo.io.xml\"><securecookie host=\"^\\.\" name=\"^PHPSESSID$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"metrics34.com (partial)\" f=\"Metrics34.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Metrix.net\" default_off=\"mismatched\" f=\"Metrix.xml\"><securecookie host=\"^(?:www)?\\.metrix\\.net$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Metro.co.uk\" default_off=\"failed ruleset test\" f=\"Metro.co.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Metro (partial)\" default_off=\"akamai certificate\" f=\"Metro.xml\"><rule from=\"^http://(f|img|s)\\.metro\\.co\\.uk/\" to=\"https://$1.metro.co.uk/\"/></ruleset>", "<ruleset name=\"MetroLyrics (partial)\" default_off=\"mismatched\" f=\"MetroLyrics.xml\"><rule from=\"^http://netstorage\\.metrolyrics\\.com/\" to=\"https://netstorage.metrolyrics.com/\"/></ruleset>", "<ruleset name=\"Metro Ethernet Forum.com (partial)\" f=\"Metro_Ethernet_Forum.com.xml\"><securecookie host=\"^(?:.*\\.)?metroethernetforum\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"metrogroup.de\" f=\"Metrogroup.de.xml\"><rule from=\"^http://metrogroup\\.de/\" to=\"https://www.metrogroup.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Metropolia University of Applied Sciences\" f=\"Metropolia.fi.xml\"><rule from=\"^http://(moodle|metropooli)\\.metropolia\\.fi/\" to=\"https://$1.metropolia.fi/\"/></ruleset>", "<ruleset name=\"Metro Transit\" f=\"Metrotransit.org.xml\"><rule from=\"^http://(?:www\\.)?metrotransit\\.org/\" to=\"https://www.metrotransit.org/\"/></ruleset>", "<ruleset name=\"Mew\" f=\"Mew.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mexicoleaks.mx\" f=\"Mexicoleaks.mx.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MeynConnect\" default_off=\"failed ruleset test\" f=\"MeynConnect.xml\"><securecookie host=\"^www\\.meynconnect\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?meynconnect\\.com/\" to=\"https://www.meynconnect.com/\"/></ruleset>", "<ruleset name=\"Mg2 mobile.com\" f=\"Mg2_mobile.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mh21.de (partial)\" f=\"Mh21.de.xml\"><rule from=\"^http://www\\.mh21\\.de/\" to=\"https://mh21.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MyHeritage Cache\" f=\"Mhcache.com.xml\"><securecookie host=\"^(www\\.|d\\.)?mhcache.com\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mi ACLU\" f=\"Mi-ACLU.xml\"><securecookie host=\"^www\\.miaclu\\.org$\" name=\".+\"/><rule from=\"^http://miaclu\\.org/\" to=\"https://www.miaclu.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mi-img.com\" f=\"Mi-img.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mi.com (partial)\" f=\"Mi.com.xml\"><exclusion pattern=\"^http://item\\.mi\\.com/$\"/><exclusion pattern=\"^http://order\\.mi\\.com/$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"miApple.me (partial)\" f=\"MiApple.me.xml\"><securecookie host=\"^miapple\\.me$\" name=\".+\"/><rule from=\"^http://www\\.miapple\\.me/\" to=\"https://miapple.me/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"miTLS.org\" f=\"MiTLS.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mi file.cn (partial)\" f=\"Mi_file.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Miamire.com (partial)\" f=\"Miamire.com.xml\"><rule from=\"^http://(www\\.)?miamire\\.com/(?=(?:[pP]ortal/)?[aA]pp_[tT]hemes/|docs/|favicon\\.ico|images/|js/|portal/(?:Authentication/SAML/)?Login\\.aspx|(?:portal/)?Script(?:Resource|Web)\\.axd|Telerik\\.Web\\.UI\\.WebResource\\.axd|Widgets/)\" to=\"https://$1miamire.com/\"/></ruleset>", "<ruleset name=\"miaozhen.com\" f=\"Miaozhen.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mibbit.com\" f=\"Mibbit.xml\"><securecookie host=\"^(?:.*\\.)?mibbit.com$\" name=\".+\"/><rule from=\"^http://((?:chat|(?:02|client0\\d)\\.chat|search|widget(?:0\\d|manager)?|wiki|www)\\.)?mibbit\\.com/\" to=\"https://$1mibbit.com/\"/></ruleset>", "<ruleset name=\"Mibew.org\" f=\"Mibew.org.xml\"><securecookie host=\"^(?:\\.|\\.www\\.)?mibew\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Micah F Lee.com\" f=\"Micah_F_Lee.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Micasa.ch (partial)\" f=\"Micasa.ch.xml\"><exclusion pattern=\"^http://www\\.micasa\\.ch/$\"/><rule from=\"^http://www\\.micasa\\.ch/([\\.\\-/%\\w]+)\\.(css|jpg|js|json|png|svg|woff)$\" to=\"https://www.micasa.ch/$1.$2\"/><rule from=\"^http://cdn([1-4])\\.micasa\\.ch/\" to=\"https://cdn$1.micasa.ch/\"/></ruleset>", "<ruleset name=\"Michael W Lucas.com\" f=\"Michael_W_Lucas.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Michal Hrušecký\" platform=\"cacert\" default_off=\"failed ruleset test\" f=\"Michal_Hrusecky.xml\"><rule from=\"^http://(?:www\\.)?hrusecky\\.net/\" to=\"https://www.hrusecky.net/\"/><rule from=\"^http://michal\\.hrusecky\\.net/\" to=\"https://michal.hrusecky.net/\"/></ruleset>", "<ruleset name=\"Michelle Bridges 12 Week Body Transformation (partial)\" f=\"Michelle-Bridges-12-Week-Body-Transformation.xml\"><exclusion pattern=\"^http://(?:www\\.)?12wbt\\.com/(?!assets/|(?:login|sign-up)(?:$|[\\?/]))\"/><exclusion pattern=\"^http://shop\\.12wbt\\.com/(?!assets/|spree/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Michigan Campus Compact\" default_off=\"mismatched\" f=\"Michigan_Campus_Compact.xml\"><securecookie host=\"^micampuscompact\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?micampuscompact\\.org/\" to=\"https://micampuscompact.org/\"/></ruleset>", "<ruleset name=\"Michigan Nonprofit Association (partial)\" f=\"Michigan_Nonprofit_Association.xml\"><securecookie host=\"^(?:www\\.)?mnaonline\\.org$\" name=\".+\"/><rule from=\"^http://(www\\.)?mnaonline\\.org/\" to=\"https://$1mnaonline.org/\"/><rule from=\"^http://mnaadmin\\.mnaonline\\.org/(cmi|CMI)mages/\" to=\"https://www.mnaonline.org/$1mages/\"/></ruleset>", "<ruleset name=\"MicroAd.co.jp\" default_off=\"failed ruleset test\" f=\"MicroAd.co.jp.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MicroAd.jp\" f=\"MicroAd.jp.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MicroAd.net\" f=\"MicroAd.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MicroAd.vn\" f=\"MicroAd.vn.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MicroAdInc.com\" f=\"MicroAdInc.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MicroSTER.pl\" default_off=\"self-signed\" f=\"MicroSTER.pl.xml\"><securecookie host=\"^www\\.microster\\.pl$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?microster\\.pl/\" to=\"https://www.microster.pl/\"/></ruleset>", "<ruleset name=\"Micro Focus.com (partial)\" f=\"Micro_Focus.com.xml\"><securecookie host=\"^www\\.microfocus\\.com$\" name=\".+\"/><rule from=\"^http://microfocus\\.com/\" to=\"https://www.microfocus.com/\"/><rule from=\"^http://images\\.online\\.microfocus\\.com/\" to=\"https://secure.eloqua.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Micro Polia.com (partial)\" platform=\"cacert\" default_off=\"failed ruleset test\" f=\"Micro_Polia.xml\"><securecookie host=\"^idp\\.micropolia\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Micro Python.org (partial)\" f=\"Micro_Python.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"microblink.com\" f=\"Microblink.com.xml\"><securecookie host=\"^\\.microblink\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Microchip.com\" f=\"Microchip.com.xml\"><rule from=\"^http://(?:www\\.)?microchip\\.com/\" to=\"https://www.microchip.com/\"/></ruleset>", "<ruleset name=\"Microchip Direct.com\" f=\"Microchip_Direct.com.xml\"><securecookie host=\"^www\\.microchipdirect\\.com$$\" name=\".+\"/><rule from=\"^http://microchipdirect\\.com/.*\" to=\"https://www.microchipdirect.com/\"/><rule from=\"^http://www\\.microchipdirect\\.com/\" to=\"https://www.microchipdirect.com/\"/></ruleset>", "<ruleset name=\"microcorruption.com\" f=\"Microcorruption.com.xml\"><securecookie host=\"^(?:www\\.)?microcorruption\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Microgaming\" f=\"Microgaming.xml\"><securecookie host=\"^www\\.tickerassist\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Micron (partial)\" f=\"Micron.xml\"><rule from=\"^http://(www\\.)?micron\\.com/(~|my|ui)/\" to=\"https://$1micron.com/$2/\"/></ruleset>", "<ruleset name=\"MicropartsUSA\" default_off=\"failed ruleset test\" f=\"MicropartsUSA.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Microsec\" f=\"Microsec.xml\"><rule from=\"^http://([^@:/]*)\\.microsec\\.hu/\" to=\"https://$1.microsec.hu/\"/></ruleset>", "<ruleset name=\"Atdmt.com\" default_off=\"failed ruleset test\" f=\"Microsoft-Atlas.xml\"><exclusion pattern=\"^http://view\\.atdmt\\.com/action/windows_downloads_Upgrade\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http://cdn\\.atdmt\\.com/\" to=\"https://atlasdmt.vo.msecnd.net/\"/><rule from=\"^http://exch-eu\\.atdmt\\.com/\" to=\"https://view.atdmt.com/\"/><rule from=\"^http://h\\.atdmt\\.com/\" to=\"https://h.bing.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Microsoft.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Microsoft.com-falsemixed.xml\"><securecookie host=\"^onlinehelp\\.microsoft\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Microsoft.com (untrusted root)\" default_off=\"expired, mismatched, untrusted root\" f=\"Microsoft.com-problematic.xml\"><rule from=\"^http://(?:(?:[45]\\.)?windows)?update\\.microsoft\\.com/\" to=\"https://www.update.microsoft.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Microsoft.com (partial)\" f=\"Microsoft.xml\"><exclusion pattern=\"^http://www\\.microsoft\\.com/en-us/software-recovery\"/><exclusion pattern=\"^http://learning\\.microsoft\\.com/+(?!Resources/)\"/><exclusion pattern=\"^http://search\\.microsoft\\.com/(?!global/oneMscomSettings/|shared/)\"/><exclusion pattern=\"^http://careers\\.microsoft\\.com/careers/\\w\\w/\\w\\w/\"/><exclusion pattern=\"^http://snackbox\\.microsoft\\.com/(?!$|\\?)\"/><exclusion pattern=\"http://social\\.technet\\.microsoft\\.com/+wiki(?!/CustomWidgets/|/themes/|/Utility/)\"/><exclusion pattern=\"^http://go\\.microsoft\\.com/fwlink/\\?LinkID=219472(.*)\"/><securecookie host=\"^\\.microsoft\\.com$\" name=\"^(?:A|GsfxStatsLog|MC1|MS0|OnlineTrackingV2\\.0|R|RioTracking\\..+|s_.+)$\"/><securecookie host=\"^(account|advertising|advertise\\.bingads|choice|commerce|connect|\\.?developer|download|ieonline|info|m|mbs|msdn|(\\.?apisandbox|lab|visualstudiogallery)\\.msdn|mspartner|(logobuilder|mspartnerlp)\\.mspartner|\\.?news|\\.?office|office(15client|2010|preview|redir)|training\\.partner|corp\\.sts|\\.?support|support2|sxp|gallery\\.technet|\\.?www)\\.microsoft\\.com$\" name=\".+\"/><securecookie host=\"^social\\.technet\\.microsoft\\.com$\" name=\"^CSExtendedAnalytics(?:Session)?$\"/><rule from=\"^http://(?:s(?:cache|earch|pcache)\\.)?microsoft\\.com/\" to=\"https://www.microsoft.com/\"/><rule from=\"^http://feedback\\.adcenter\\.microsoft\\.com/.*\" to=\"https://bingads.uservoice.com/\"/><rule from=\"^http://fp\\.advertising\\.microsoft\\.com/\" to=\"https://advertising.microsoft.com/\"/><rule from=\"^http://i\\d?\\.(answers|msdn|social|technet)\\.microsoft\\.com/\" to=\"https://$1.microsoft.com/\"/><rule from=\"^http://wscont\\d\\.apps\\.microsoft\\.com/\" to=\"https://wscont.apps.microsoft.com/\"/><rule from=\"^http://go2\\.microsoft\\.com/\" to=\"https://go.microsoft.com/\"/><rule from=\"^http://i\\d\\.microsoft\\.com/\" to=\"https://i.microsoft.com/\"/><rule from=\"^http://i\\d\\.(code\\.msdn|gallery\\.technet)\\.microsoft\\.com/\" to=\"https://i1.$1.s-msft.com/\"/><rule from=\"^http://office365\\.microsoft\\.com/.*\" to=\"https://www.microsoft.com/en-us/office365/\"/><rule from=\"^http://snackbox\\.microsoft\\.com/.*\" to=\"https://learning.microsoft.com/\"/><rule from=\"^http://img3\\.store\\.microsoft\\.com/\" to=\"https://msstore.vo.msecnd.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Microsoft Online-p.com\" f=\"Microsoft_Online-p.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Microsoft Online-p.net (partial)\" f=\"Microsoft_Online-p.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Microsoft Online.com\" f=\"Microsoft_Online_Services.xml\"><securecookie host=\"^(?:\\.?login|loginex|portal)\\.microsoftonline\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Microsoft Store (partial)\" f=\"Microsoft_Store.xml\"><exclusion pattern=\"^http://(?:www\\.)?microsoftstore\\.com/(?!DRHM|sstore(?:$|[?/]))\"/><rule from=\"^http://microsoftstore\\.com/\" to=\"https://www.microsoftstore.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Microsoft Studios.com\" default_off=\"failed ruleset test\" f=\"Microsoft_Studios.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.microsoftstudios\\.com/\" to=\"https://microsoftstudios.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Microsoft Translator\" f=\"Microsoft_Translator.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Microsoft Ventures.com\" f=\"Microsoft_Ventures.com.xml\"><securecookie host=\"^\\.www\\.microsoftventures\\.com$\" name=\".+\"/><rule from=\"^http://microsoftventures\\.com/\" to=\"https://www.microsoftventures.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Microtech (partial)\" platform=\"mixedcontent\" f=\"Microtech.xml\"><securecookie host=\"^(?:.*\\.)?mtgsy\\.com$\" name=\".*\"/><rule from=\"^http://my\\.cloudfloordns\\.com/\" to=\"https://www.mtgsy.net/myaccount.php\"/><rule from=\"^http://(?:images\\d\\.|www\\.)mtgsy\\.net/\" to=\"https://www.mtgsy.net/\"/></ruleset>", "<ruleset name=\"Microtronix (partial)\" f=\"Microtronix.xml\"><rule from=\"^http://clients\\.microtronix-tech\\.com/((?:affiliates|clientarea|contact|pwreset|register|submitticket)\\.php|(?:imag|includ|templat)es/)\" to=\"https://clients.microtronix-tech.com/$1\"/></ruleset>", "<ruleset name=\"Middle East Monitor.com\" f=\"Middle_East_Monitor.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Midlothian.gov.uk (partial)\" f=\"Midlothian.gov.uk.xml\"><securecookie host=\"^(?!\\.modlothian\\.gov\\.uk$).\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Midnight Commander\" f=\"Midnight-Commander.org.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Midphase (partial)\" f=\"Midphase.xml\"><securecookie host=\"^www\\.midphase\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mietek.io\" f=\"Mietek.io.xml\"><rule from=\"^http://(?:(bashmenot\\.|cannot\\.)|www\\.)?mietek\\.io/\" to=\"https://$1mietek.io/\"/></ruleset>", "<ruleset name=\"Mifile.cn (partial)\" f=\"Mifile.cn.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mightyupload.com\" default_off=\"failed ruleset test\" f=\"Mightyupload.com.xml\"><securecookie host=\"^\\.?mightyupload\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Migrol.ch\" f=\"Migrol.ch.xml\"><securecookie host=\"^b2b\\.migrol\\.ch\" name=\".+\"/><rule from=\"^http://migrol\\.ch/\" to=\"https://www.migrol.ch/\"/><rule from=\"^http://migrolcard\\.ch/\" to=\"https://www.migrolcard.ch/\"/><rule from=\"^http://migrol-heizoel\\.ch/\" to=\"https://www.migrol-heizoel.ch/\"/><rule from=\"^http://migrol-olio-combustibile\\.ch/\" to=\"https://www.migrol-olio-combustibile.ch/\"/><rule from=\"^http://mazout-migrol\\.ch/\" to=\"https://www.mazout-migrol.ch/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Migros Bank\" f=\"Migros-Bank.xml\"><rule from=\"^http://migrosbank\\.ch/\" to=\"https://www.migrosbank.ch/\"/><rule from=\"^http://bancamigros\\.ch/\" to=\"https://www.bancamigros.ch/\"/><rule from=\"^http://banquemigros\\.ch/\" to=\"https://www.banquemigros.ch/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Migros Ferien\" f=\"Migros-Ferien.ch.xml\"><rule from=\"^http://migros-ferien\\.ch/\" to=\"https://www.migros-ferien.ch/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Migros Kulturprozent (partial)\" default_off=\"failed ruleset test\" f=\"Migros-Kulturprozent.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Migros\" default_off=\"failed ruleset test\" f=\"Migros.xml\"><rule from=\"^http://migipedia\\.ch/\" to=\"https://www.migipedia.ch/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Migrosmagazine\" f=\"Migrosmagazine.xml\"><rule from=\"^http://www\\.brueckenbauer\\.ch/\" to=\"https://www.migrosmagazin.ch/\"/><rule from=\"^http://migrosmagazin\\.ch/\" to=\"https://www.migrosmagazin.ch/\"/><rule from=\"^http://migrosmagazine\\.ch/\" to=\"https://www.migrosmagazine.ch/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mijn D66.nl\" f=\"Mijn_D66.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mike Ash.com\" f=\"Mike_Ash.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mike Conley.ca\" f=\"Mike_Conley.ca.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mike Masin.com\" f=\"Mike_Masin.xml\"><rule from=\"^http://(?:www\\.)?mikemasin\\.com/[^?]*\" to=\"https://medium.com/@mikemasin\"/></ruleset>", "<ruleset name=\"Mikle.com (partial)\" f=\"Mikle.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MikroTik.com (partial)\" f=\"MikroTik.com.xml\"><exclusion pattern=\"^http://www\\.mikrotik\\.com/+(?!client(?:$|[?/])|css/|favicon\\.ico|img/)\"/><rule from=\"^http://download2\\.mikrotik\\.com/\" to=\"https://d355q2xs8kb5oj.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mikrocontroller.net\" f=\"Mikrocontroller.net.xml\"><rule from=\"^http://(?:www\\.)?mikrocontroller\\.net/\" to=\"https://www.mikrocontroller.net/\"/></ruleset>", "<ruleset name=\"MilAnuncios.com\" f=\"MilAnuncios.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MilbenCheck.at\" f=\"MilbenCheck.at.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"milchkind.net\" default_off=\"expired, self-signed\" f=\"Milchkind.net.xml\"><securecookie host=\"^zwischenwelt\\.milchkind\\.net$\" name=\".*\"/><rule from=\"^http://zwischenwelt\\.milchkind\\.net/\" to=\"https://zwischenwelt.milchkind.net/\"/></ruleset>", "<ruleset name=\"MileIQ.com (partial)\" f=\"MileIQ.com.xml\"><securecookie host=\"^\\.dashboard\\.mileiq\\.com$\" name=\".+\"/><rule from=\"^http://mileiq\\.com/+\" to=\"https://www.mileiq.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Milepoint.com\" f=\"Milepoint.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Miles-and-more.com\" f=\"Miles-and-more.xml\"><securecookie host=\"^(?:.*\\.)?miles-and-more.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?miles-and-more\\.com/\" to=\"https://www.miles-and-more.com/\"/><rule from=\"^http://meilenrechner\\.de/\" to=\"https://www.meilenrechner.de/\"/><rule from=\"^http://([^/:@]+)?\\.meilenrechner\\.de/\" to=\"https://$1.meilenrechner.de/\"/><rule from=\"^http://miles-and-more-kreditkarte\\.com/\" to=\"https://www.miles-and-more-kreditkarte.com/\"/><rule from=\"^http://([^/:@]+)?\\.miles-and-more-kreditkarte\\.com/\" to=\"https://$1.miles-and-more-kreditkarte.com/\"/></ruleset>", "<ruleset name=\"Military Super\" f=\"MilitarySuper.xml\"><rule from=\"^http://(?:www\\.)?militarysuper\\.gov\\.au/\" to=\"https://www.militarysuper.gov.au/\"/></ruleset>", "<ruleset name=\"MilkAndMore\" f=\"MilkAndMore.xml\"><securecookie host=\"^(?:[^@:/]+\\.)?milkandmore\\.co\\.uk$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?milkandmore\\.co\\.uk/\" to=\"https://www.milkandmore.co.uk/\"/></ruleset>", "<ruleset name=\"Millennium Seating (partial)\" f=\"Millennium_Seating.xml\"><rule from=\"^http://(www\\.)?millenniumseating\\.com/(buttons/|favicon\\.ico|images/|[sS]tore/(?:i/|inc/|login\\.aspx|[tT]emplates/))\" to=\"https://$1millenniumseating.com/$2\"/><rule from=\"^http://static\\.millenniumseating\\.com/\" to=\"https://d2oplcg29czvvo.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Millward Brown\" f=\"Millward-Brown.xml\"><securecookie host=\"^www\\.millwardbrown\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?millwardbrown\\.com/\" to=\"https://www.millwardbrown.com/\"/></ruleset>", "<ruleset name=\"Milonic (partial)\" f=\"Milonic.xml\"><rule from=\"^http://(www\\.)?milonic\\.com/(cbuy\\.php(?:$|\\?)|images/|templates/)\" to=\"https://$1milonic.com/$2\"/></ruleset>", "<ruleset name=\"Milton-Keynes.gov.uk (partial)\" f=\"Milton-Keynes.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Milwaukee Makerspace\" default_off=\"self-signed\" f=\"Milwaukee-Makerspace.xml\"><securecookie host=\"^milwaukeemakerspace\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?milwaukeemakerspace\\.org/\" to=\"https://milwaukeemakerspace.org/\"/></ruleset>", "<ruleset name=\"MinFil.org\" f=\"MinFil.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Minacs.com\" f=\"Minacs.com.xml\"><securecookie host=\"^clientchat\\.minacs\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Minalyzer.com (partial)\" f=\"Minalyzer.com.xml\"><rule from=\"^http://images\\.minalyzer\\.com/\" to=\"https://s3.amazonaws.com/images.minalyzer.com/\"/></ruleset>", "<ruleset name=\"minbank.ru\" f=\"Minbank.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mind.org.uk (partial)\" f=\"Mind.org.uk.xml\"><securecookie host=\"^(?:www\\.|shop\\.)?mind\\.org\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MindModeling.org\" f=\"MindModeling.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MindTouch.com\" default_off=\"failed ruleset test\" f=\"MindTouch.com.xml\"><securecookie host=\"^\\.mindtouch\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MindTouch.us\" default_off=\"failed ruleset test\" f=\"MindTouch.us.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mind Tools.com\" f=\"Mind_Tools.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mindfactory.de\" default_off=\"failed ruleset test\" f=\"Mindfactory.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mindhealthconnect\" f=\"Mindhealthconnect.xml\"><rule from=\"^http://(?:www\\.)?mindhealthconnect\\.org\\.au/\" to=\"https://www.mindhealthconnect.org.au/\"/></ruleset>", "<ruleset name=\"mindrot.org (partial)\" f=\"Mindrot.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mindshare Technologies\" f=\"Mindshare-Technologies.xml\"><securecookie host=\"^(?:www\\.)?mshare\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?mshare\\.net/\" to=\"https://www.mshare.net/\"/></ruleset>", "<ruleset name=\"Minecraft\" f=\"Minecraft.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Minecraft Server Lijst.NL\" f=\"Minecraft_Server_Lijst.NL.xml\"><securecookie host=\"^\\.?minecraftserverlijst\\.nl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Minetest.ru (partial)\" default_off=\"failed ruleset test\" f=\"Minetest.ru.xml\"><securecookie host=\"^minetest\\.ru$\" name=\".+\"/><rule from=\"^http://minetest\\.ru/\" to=\"https://minetest.ru/\"/></ruleset>", "<ruleset name=\"MiniJuegos gratis.com (partial)\" f=\"MiniJuegos_gratis.com.xml\"><rule from=\"^http://(?:ssl|www)\\.minijuegosgratis\\.com/\" to=\"https://$1.minijuegosgratis.com/\"/></ruleset>", "<ruleset name=\"miniLock.io\" default_off=\"failed ruleset test\" f=\"MiniLock.io.xml\"><securecookie host=\"^\\.minilock\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MiniMundos online.com\" default_off=\"failed ruleset test\" f=\"MiniMundos_online.com.xml\"><rule from=\"^http://content\\.minimundosonline\\.com/\" to=\"https://s3.amazonaws.com/content.minimundosonline.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Miniand Tech (partial)\" default_off=\"failed ruleset test\" f=\"Miniand-Tech.xml\"><securecookie host=\"^(?:www)?\\.miniand\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Miniatur Wunderland\" platform=\"mixedcontent\" f=\"Miniatur-Wunderland.xml\"><rule from=\"^http://(?:www\\.)?miniatur-wunderland\\.de/\" to=\"https://www.miniatur-wunderland.de/\"/></ruleset>", "<ruleset name=\"Miniclip.com (partial)\" f=\"Miniclip.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MiniclipCDN.com\" f=\"Miniclip_CDN.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Minijob-Zentrale.de\" f=\"Minijob-zentrale.de.xml\"><rule from=\"^https?://(?:www\\.)?minijob-zentrale\\.de/\" to=\"https://www.minijob-zentrale.de/\"/></ruleset>", "<ruleset name=\"Mining.Bitcoin.cz\" f=\"Mining.Bitcoin.cz.xml\"><rule from=\"^http://beta\\.mining\\.bitcoin\\.cz/\" to=\"https://mining.bitcoin.cz/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ministerialtidende.dk\" f=\"Ministerialtidende.dk.xml\"><securecookie host=\"^www\\.ministerialtidende\\.dk$\" name=\".+\"/><rule from=\"^http://ministerialtidende\\.dk/\" to=\"https://www.ministerialtidende.dk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Justice.gov.uk (partial)\" f=\"Ministry_of_Justice.xml\"><securecookie host=\"^\\.www\\.\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Minix3.org\" default_off=\"mismatched\" f=\"Minix3.org.xml\"><rule from=\"^http://(?:www\\.)?minix3\\.org/\" to=\"https://www.minix3.org/\"/></ruleset>", "<ruleset name=\"Minnesota Public Radio (partial)\" f=\"Minnesota-Public-Radio.xml\"><securecookie host=\"^\\.publicradio\\.org$\" name=\"^WT_FPC$\"/><securecookie host=\"^\\.contribute\\.publicradio\\.org$\" name=\".+\"/><rule from=\"^http://(contribute|www)\\.publicradio\\.org/\" to=\"https://$1.publicradio.org/\"/><rule from=\"^http://minnesota\\.publicradio\\.org/www_publicradio/\" to=\"https://www.publicradio.org/www_publicradio/\"/></ruleset>", "<ruleset name=\"MinoHubs.com\" default_off=\"failed ruleset test\" f=\"MinoHubs.com.xml\"><rule from=\"^http://minohubs\\.com/\" to=\"https://www.minohubs.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mint.ca (partial)\" f=\"Mint.ca.xml\"><exclusion pattern=\"^http://www\\.mint\\.ca/(?!store/template/default/(?:image|cs)s/|registration/)\"/><rule from=\"^http://mint\\.ca/\" to=\"https://www.mint.ca/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mint\" platform=\"mixedcontent\" f=\"Mint.xml\"><rule from=\"^http://(?:www\\.)?mint\\.com/\" to=\"https://www.mint.com/\"/></ruleset>", "<ruleset name=\"MintGuide.org (partial)\" f=\"MintGuide.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Minted (partial)\" f=\"Minted.xml\"><rule from=\"^http://(?:www\\.)?minted\\.com/(__\\w+__/|(?:forgot|login|register)(?:$|\\?)|modules/|static/|themes/)\" to=\"https://www.minted.com/$1\"/><rule from=\"^http://cdn[012]\\.(?:minted\\.com|live1\\.mintedcdn\\.net)/\" to=\"https://www.minted.com/\"/><rule from=\"^http://cdn3\\.minted\\.com/\" to=\"https://d2bhls43bg90ow.cloudfront.net/\"/><rule from=\"^http://cdn4\\.minted\\.com/\" to=\"https://d27r269iws82ha.cloudfront.net/\"/><rule from=\"^http://cdn5\\.minted\\.com/\" to=\"https://dyx88w6kx3fik.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Mipay.com\" f=\"Mipay.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MirBSD.org\" f=\"MirBSD.xml\"><rule from=\"^http://mirbsd\\.org/\" to=\"https://www.mirbsd.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mirage.io\" f=\"Mirage.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mirakar.com\" default_off=\"failed ruleset test\" f=\"Mirakar.com.xml\"><rule from=\"^http://(?:www\\.)?mirakar\\.com/\" to=\"https://www.mirakar.com/\"/></ruleset>", "<ruleset name=\"Miramax.com\" default_off=\"failed ruleset test\" f=\"Miramax.com.xml\"><securecookie host=\"^(?:www\\.)?miramax\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Miranda IM (partial)\" f=\"Miranda-IM.xml\"><securecookie host=\"^.*\\.miranda-im\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?miranda-im\\.org/wp-content/themes/miranda/images/\" to=\"https://addons.miranda-im.org/images/\"/><rule from=\"^http://addons\\.miranda-im\\.org/\" to=\"https://addons.miranda-im.org/\"/></ruleset>", "<ruleset name=\"Mirantis.com\" f=\"Mirantis.com.xml\"><securecookie host=\"^training\\.mirantis\\.com$\" name=\".+\"/><rule from=\"^http://((?:software|training|www)\\.)?mirantis\\.com/\" to=\"https://$1mirantis.com/\"/></ruleset>", "<ruleset name=\"miretail.com\" f=\"Miretail.com.xml\"><rule from=\"^http://images\\.miretail\\.com/\" to=\"https://images.miretail.com/\"/></ruleset>", "<ruleset name=\"Mirror Bingo.com (false MCB)\" platform=\"mixedcontent\" f=\"Mirror_Bingo.com-falsemixed.xml\"><securecookie host=\"^\\.mirrorbingo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mirror Bingo.com (partial)\" f=\"Mirror_Bingo.com.xml\"><exclusion pattern=\"^http://(?:games\\.|www\\.)?mirrorbingo\\.com/+(?!favicon\\.ico|getcss/|html/|image/|library/|mirror-theme/)\"/><rule from=\"^http://cache(games|www)\\.mirrorbingo\\.com/+(?!(?!getcss/bingo\\.css|html/css/main\\.css|html/portlet/journal_content/css/main\\.css).+\\.css(?:$|\\?))\" to=\"https://$1.mirrorbingo.com/\"/><rule from=\"^http://(games\\.|www\\.)?mirrorbingo\\.com/\" to=\"https://$1mirrorbingo.com/\"/></ruleset>", "<ruleset name=\"Mirror Image Internet (partial)\" f=\"Mirror_Image_Internet.xml\"><rule from=\"^http://(\\w+)\\.service\\.mirror-image\\.net/\" to=\"https://$1.service.mirror-image.net/\"/></ruleset>", "<ruleset name=\"Mirror Reader Offers.co.uk\" f=\"Mirror_Reader_Offers.co.uk.xml\"><securecookie host=\"^www\\.mirrorreaderoffers\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?mirrorreaderoffers\\.co\\.uk/\" to=\"https://www.mirrorreaderoffers.co.uk/\"/></ruleset>", "<ruleset name=\"Mirrorservice.org\" f=\"Mirrorservice.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mirt.net (partial)\" f=\"Mirt.net.xml\"><securecookie host=\"^(www\\.)?mirt\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Misadventures with Andi (problematic)\" default_off=\"expired, self-signed\" f=\"Misadventures_with_Andi-problematic.xml\"><exclusion pattern=\"^http://(?:www\\.)?misadventureswithandi.com/(?:\\?drawer-css=|favicon\\.ico|wp-content/)\"/><rule from=\"^http://(?:www\\.)?misadventureswithandi\\.com/\" to=\"https://misadventureswithandi.com/\"/></ruleset>", "<ruleset name=\"Misadventures with Andi (partial)\" f=\"Misadventures_with_Andi.xml\"><exclusion pattern=\"^http://(?:www\\.)?misadventureswithandi.com/(?!\\?drawer-css=|favicon\\.ico|wp-content/)\"/><rule from=\"^http://(?:www\\.)?misadventureswithandi\\.com/\" to=\"https://www.misadventureswithandi.com/\"/></ruleset>", "<ruleset name=\"Misco.co.uk (partial)\" f=\"Misco.co.uk.xml\"><securecookie host=\"^\\.misco\\.co\\.uk$\" name=\"^__utm\\w+$\"/><rule from=\"^http://(?:www\\.)?misco\\.co\\.uk/(?=[aA]ccount/|(?:Basket|Order)(?:$|[?/])|bundles/|Content/|favicon\\.ico|[iI]mages/|Scripts/)\" to=\"https://www.misco.co.uk/\"/></ruleset>", "<ruleset name=\"Mises.org\" f=\"Mises.org.xml\"><exclusion pattern=\"^http://mises\\.org/store/\"/><securecookie host=\"^\\.?mises\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mispy.me\" f=\"Mispy.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Missing Link Electronics.com\" f=\"Missing_Link_Electronics.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MissionIslam.com\" f=\"MissionIslam.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mit-dem-rad-zur-arbeit.de\" f=\"Mit-dem-rad-zur-arbeit.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mitmproxy.org\" f=\"Mitmproxy.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mito.hu (partial)\" f=\"Mito.hu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mitre.org (partial)\" default_off=\"failed ruleset test\" f=\"Mitre.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mitro.co\" default_off=\"failed ruleset test\" f=\"Mitro.co.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mitsubishi.com\" f=\"Mitsubishi.com.xml\"><rule from=\"^http://(?:www\\.)?mitsubishi\\.com/\" to=\"https://www.mitsubishi.com/\"/></ruleset>", "<ruleset name=\"MivaCentral\" f=\"MivaCentral.xml\"><securecookie host=\"^www\\.mivacentral\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?mivacentral\\.com/\" to=\"https://www.mivacentral.com/\"/></ruleset>", "<ruleset name=\"Miva Merchant\" default_off=\"failed ruleset test\" f=\"Miva_Merchant.xml\"><securecookie host=\"^www\\.mivamerchant\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MixBit.com\" default_off=\"failed ruleset test\" f=\"MixBit.com.xml\"><securecookie host=\"^\\.mixbit\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mixcloud.com (partial)\" f=\"Mixcloud.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance|csrftoken|s)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mixér.cz\" f=\"Mixer.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mixi (partial)\" f=\"Mixi.xml\"><exclusion pattern=\"^http://mixi\\.jp/+(?!$|\\?|appli_|comm/|favicon\\.ico|photo/)\"/><rule from=\"^http://(?:www\\.)?mixi\\.(co\\.)?jp/\" to=\"https://mixi.$1jp/\"/><rule from=\"^http://(plugins|static)\\.mixi\\.jp/\" to=\"https://$1.mixi.jp/\"/><rule from=\"^http://img\\.mixi\\.net/\" to=\"https://img.mixi.net/\"/></ruleset>", "<ruleset name=\"Mixpanel.com\" f=\"Mixpanel.xml\"><securecookie host=\"^(?:.*\\.)?mixpanel\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MixtapeLeak\" default_off=\"refused\" f=\"MixtapeLeak.xml\"><securecookie host=\"^\\.?mixtapeleak\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mixx.com\" default_off=\"failed ruleset test\" f=\"Mixx.com.xml\"><rule from=\"^http://mixx\\.com/\" to=\"https://mixx.com/\"/><rule from=\"^http://www\\.mixx\\.com/\" to=\"https://www.mixx.com/\"/></ruleset>", "<ruleset name=\"Mixxx.org\" f=\"Mixxx.org.xml\"><securecookie host=\"^(?:\\.|www\\.)?mixxx\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mjam\" f=\"Mjam.xml\"><rule from=\"^http://(?:www\\.)?mjam\\.net/\" to=\"https://www.mjam.net/\"/></ruleset>", "<ruleset name=\"Mkateb.com\" default_off=\"plaintext reply\" f=\"Mkateb.com.xml\"><securecookie host=\"^\\.mkateb\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mkb.ru\" f=\"Mkb.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mktoresp.com\" f=\"Mktoresp.com.xml\"><securecookie host=\".+\\.mktoresp\\.com$\" name=\".+\"/><rule from=\"^http://(\\d{3}-\\w{3}-\\d{3})\\.mktoresp\\.com/\" to=\"https://$1.mktoresp.com/\"/></ruleset>", "<ruleset name=\"mmixr.com\" default_off=\"failed ruleset test\" f=\"Mmixr.com.xml\"><securecookie host=\"^\\.mmixr\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?mmixr\\.com/\" to=\"https://www.mmixr.com/\"/><rule from=\"^http://app\\.mmixr\\.com/\" to=\"https://app.mmixr.com/\"/></ruleset>", "<ruleset name=\"mmstat.com\" f=\"Mmstat.com.xml\"><securecookie host=\"^\\.mmstat\\.com$\" name=\"^(?:atpsida|cna|sca)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MnCDN.com\" f=\"MnCDN.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mnet-Ad.net\" f=\"MnetAd.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mnot.net\" f=\"Mnot.net.xml\"><rule from=\"^http://mnot\\.net/\" to=\"https://www.mnot.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MoAF.org (expired)\" default_off=\"expired\" f=\"MoAF.org-problematic.xml\"><securecookie host=\"^www\\.moaf\\.org$\" name=\".+\"/><rule from=\"^http://moaf\\.org/\" to=\"https://www.moaf.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MoAF.org (partial)\" f=\"MoAF.org.xml\"><securecookie host=\"^\\.?shop\\.moaf\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Map of Life\" f=\"MoL.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Museum of Science\" f=\"MoS.org.xml\"><securecookie host=\"^\\.mos\\.org$\" name=\"^MOS_store$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Moana Surfrider (partial)\" f=\"Moana_Surfrider.xml\"><rule from=\"^http://(?:www\\.)?moana-surfrider\\.com/images/\" to=\"https://www.moana-surfrider.com/images/\"/></ruleset>", "<ruleset name=\"Moat.com\" f=\"Moat.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Moat ads.com (partial)\" f=\"Moat_ads.com.xml\"><exclusion pattern=\"^http://(?!(?:dbg\\d+|v\\d+|www)\\.moatads\\.com/)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?moatads\\.com/\" to=\"https://www.moat.com/\"/><exclusion pattern=\"^http://(?:www\\.)?moatads\\.com/(?!$)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Moava\" f=\"Moava.xml\"><securecookie host=\"^.*\\.moava\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MobStac (partial)\" f=\"MobStac.xml\"><rule from=\"^http://(www\\.)?mobstac\\.com/a/(login|password/reset)(/)?\" to=\"https://$1mobstac.com/a/login$2$3\"/><rule from=\"^http://cdn\\.mobstac\\.com/\" to=\"https://d9ic2hg1x4ep8.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Mobclix.com (partial)\" default_off=\"expired\" f=\"Mobclix.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MobiGum.com\" default_off=\"failed ruleset test\" f=\"MobiGum.com.xml\"><securecookie host=\"^\\.mobigum\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mobify.me\" f=\"Mobify.me.xml\"><rule from=\"^http://(?:www\\.)?mobify\\.me/+\" to=\"https://mobify.com/\"/><rule from=\"^http://community\\.mobify\\.me/[^?]*\" to=\"https://support.mobify.com/\"/></ruleset>", "<ruleset name=\"Mobify.net\" f=\"Mobify.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mobify.com (partial)\" f=\"Mobify.xml\"><securecookie host=\".*\\.mobify\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mobile01.com\" default_off=\"failed ruleset test\" f=\"Mobile01.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MobileCore.com\" f=\"MobileCore.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MobilePay.dk\" f=\"MobilePay.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mobile Asia Expo (partial)\" f=\"Mobile_Asia_Expo.xml\"><rule from=\"^http://content\\.mobileasiaexpo\\.com/\" to=\"https://d1cu38qo94v965.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Mobile Enterprise 360.com\" default_off=\"expired, mismatched, self-signed\" f=\"Mobile_Enterprise_360.com.xml\"><securecookie host=\"^(?:www)?\\.mobileenterprise360\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?mobileenterprise360\\.com/\" to=\"https://www.mobileenterprise360.com/\"/></ruleset>", "<ruleset name=\"Mobile Nations (partial)\" f=\"Mobile_Nations.xml\"><exclusion pattern=\"^http://shop\\.mobilenations\\.com/+(?!images/|store_images/|v3_templates/)\"/><rule from=\"^http://(passport|shop)\\.mobilenations\\.com/\" to=\"https://$1.mobilenations.com/\"/><rule from=\"^http://(?:cdn\\.passport|passport-cdn)\\.mobilenations\\.com/\" to=\"https://passport-cdn.mobilenations.com/\"/></ruleset>", "<ruleset name=\"Mobile Vikings (partial)\" f=\"Mobile_Vikings.xml\"><securecookie host=\"^(?:www\\.)?mobilevikings\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mobilepki.org\" f=\"Mobilepki.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mobio INsider\" default_off=\"failed ruleset test\" f=\"Mobio_INsider.xml\"><securecookie host=\"^(?:w*\\.)?(?:stage-)?mobioinsider\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mobygames.com\" f=\"MobyGames.xml\"><securecookie host=\"^\\.mobygames\\.com$\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mobypicture\" default_off=\"failed ruleset test\" f=\"Mobypicture.xml\"><rule from=\"^http://(?:\\w+\\.)?media\\.mobyhub\\.com/\" to=\"https://d1u33j8blhxgzy.cloudfront.net/\"/><rule from=\"^http://((?:www\\.)?api\\.|www\\.)?mobypicture\\.com/\" to=\"https://$1mobypicture.com/\"/><rule from=\"^http://secure\\.mobypicture\\.com/\" to=\"https://www.mobypicture.com/\"/><rule from=\"^http://(?:a\\d\\.)?img\\.mobypicture\\.com/\" to=\"https://d2d8v8ddwfpkhk.cloudfront.net/\"/><rule from=\"^http://layout\\.mobypicture\\.com/\" to=\"https://dq8u4hkdxtrwa.cloudfront.net/\"/><rule from=\"^http://static\\.mobypicture\\.com/\" to=\"https://d3l076gtvxuom7.cloudfront.net/\"/><rule from=\"^http://vid\\.mobypicture\\.com/\" to=\"https://dxujr96dorra9.cloudfront.net/\"/></ruleset>", "<ruleset name=\"MochaHost\" platform=\"mixedcontent\" f=\"MochaHost.xml\"><securecookie host=\"^(?:www\\.)?mochahost\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mochajs.org\" f=\"Mochajs.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mochimedia (partial)\" f=\"Mochimedia.xml\"><exclusion pattern=\"^http://(?:games|wiki)\\.mochimedia\\.com/\"/><rule from=\"^http://([^@:/]*)\\.mochimedia\\.com/\" to=\"https://$1.mochimedia.com/\"/></ruleset>", "<ruleset name=\"mochtu.de\" default_off=\"failed ruleset test\" f=\"Mochtu.de.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.mochtu\\.de/\" to=\"https://mochtu.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ModCloth.com (partial)\" f=\"ModCloth.com.xml\"><securecookie host=\"^\\.modcloth\\.com$\" name=\"^s_\\w+$\"/><rule from=\"^http://(?:www\\.)?modcloth\\.com/(?=favicon\\.ico|customers/(?:account|login)s/create\\.json|personalization\\.json|storefront/(?:latest/(?:\\w+_image_url|header_links)|modal_windows/sign_in_or_join)(?:$|[?/]))\" to=\"https://www.modcloth.com/\"/><rule from=\"^http://cdn0\\.modcloth\\.com/\" to=\"https://cdn0.modcloth.com/\"/><rule from=\"^http://(cdn1\\d|productshots\\d)\\.modcloth\\.net/\" to=\"https://$1.modcloth.net/\"/></ruleset>", "<ruleset name=\"ModMyPi\" f=\"ModMyPi.xml\"><securecookie host=\"^\\.?www\\.modmypi\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ModMyi.com\" f=\"ModMyi.xml\"><securecookie host=\"^\\.?modmyi\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ModSecurity.org\" f=\"ModSecurity.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mod DB.com (partial)\" f=\"Mod_DB.com.xml\"><rule from=\"^http://s(?:ecure|tatic)\\.moddb\\.com/\" to=\"https://secure.moddb.com/\"/></ruleset>", "<ruleset name=\"Model Mayhem (problematic)\" default_off=\"mismatched\" f=\"Model_Mayhem-problematic.xml\"><rule from=\"^http://photos\\.modelmayhem\\.com/\" to=\"https://photos.modelmayhem.com/\"/></ruleset>", "<ruleset name=\"Model Mayhem (partial)\" platform=\"mixedcontent\" f=\"Model_Mayhem.xml\"><securecookie host=\"^.*\\.modelmayhem\\.com$\" name=\".+\"/><rule from=\"^http://(?:secure\\.|www\\.)?modelmayhem\\.com/\" to=\"https://secure.modelmayhem.com/\"/></ruleset>", "<ruleset name=\"Model View Culture.com\" f=\"Model_View_Culture.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"modern.IE\" default_off=\"failed ruleset test\" f=\"Modern.IE.xml\"><securecookie host=\"^(?:\\.devchannel|\\.?remote|\\.status|\\.www)?\\.modern\\.ie$\" name=\".+\"/><rule from=\"^http://www\\.modern\\.ie/\" to=\"https://modern.ie/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Modern Crypto.org\" f=\"Modern_Crypto.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Modern Giver\" f=\"Modern_Giver.xml\"><securecookie host=\"^\\.moderngiver\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?moderngiver\\.com/\" to=\"https://moderngiver.com/\"/><rule from=\"^http://(?:www\\.)?simplegiver\\.com/\" to=\"https://www.moderngiver.com/\"/></ruleset>", "<ruleset name=\"Modernpgp.org\" default_off=\"mismatched\" f=\"Modernpgp.org.xml\"><securecookie host=\"^(www\\.)?modernpgp\\.org\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Modernrepo.com (missing certificate chain)\" default_off=\"missing certificate chain\" f=\"Modernrepo.com-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Modernrepo.com (partial)\" default_off=\"failed ruleset test\" f=\"Modernrepo.com.xml\"><securecookie host=\"^dev\\.modernrepo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Modernus\" f=\"Modernus.xml\"><rule from=\"^http://login\\.modernus\\.is/\" to=\"https://login.modernus.is/\"/><rule from=\"^http://secure\\.teljari\\.is/\" to=\"https://secure.teljari.is/\"/></ruleset>", "<ruleset name=\"Modulus.io (partial)\" default_off=\"failed ruleset test\" f=\"Modulus.io.xml\"><securecookie host=\"^\\.modulus\\.io$\" name=\"^modulus\\.sid$\"/><rule from=\"^http://www\\.modulus\\.io/\" to=\"https://modulus.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Moelleken.org\" f=\"Moelleken.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Moevideo\" f=\"Moevideo.xml\"><securecookie host=\"^(?:www\\.)?moevideo\\.net$\" name=\".+\"/><exclusion pattern=\"^http://(?:www\\.)?moevideo\\.net/geocode\\.php(?:\\?|$)\"/><exclusion pattern=\"^http://(?:www\\.)?moevideo\\.net/(?:crossdomain\\.xml|geocode\\.php)(?:\\?|$)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mofobian.com (partial)\" f=\"Mofobian.com.xml\"><rule from=\"^http://(?:www\\.)?mofobian\\.com/(favicon\\.ico|wp-content/|wp-includes/)\" to=\"https://secure.bluehost.com/~mofobian/$1\"/></ruleset>", "<ruleset name=\"Moikrug.ru (partial)\" f=\"Moikrug.ru.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://([\\w-]+\\.)?moikrug\\.ru/\" to=\"https://$1moikrug.ru/\"/></ruleset>", "<ruleset name=\"MoinMoin\" f=\"MoinMoin.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Moja.tatrabanka.sk\" f=\"Moja.tatrabanka.sk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mojandroid.sk\" f=\"Mojandroid.sk.xml\"><rule from=\"^http://(?:www\\.)?mojandroid\\.sk/\" to=\"https://www.mojandroid.sk/\"/></ruleset>", "<ruleset name=\"MojeDatovaSchranka.cz\" f=\"MojeDatovaSchranka.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mojeID.cz\" f=\"MojeID.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mollom.com\" default_off=\"failed ruleset test\" f=\"Mollom.xml\"><securecookie host=\"^\\.mollom\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MomentusMedia.com\" f=\"MomentusMedia.xml\"><securecookie host=\"^(?:.+\\.)?momentusmedia\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?momentusmedia\\.com/\" to=\"https://secure.momentusmedia.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mommys Little Sunshine.com (partial)\" f=\"Mommys_Little_Sunshine.com.xml\"><rule from=\"^http://(www\\.)?mommyslittlesunshine\\.com/(?=favicon\\.ico|images/|my-account(?:$|[?/])|wp-content/|wp-includes/)\" to=\"https://$1mommyslittlesunshine.com/\"/></ruleset>", "<ruleset name=\"Monarch.co.uk\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Monarch.co.uk.xml\"><rule from=\"^http://(?:www\\.)?monarch\\.co\\.uk/\" to=\"https://www.monarch.co.uk/\"/></ruleset>", "<ruleset name=\"Monash.edu (partial)\" default_off=\"failed ruleset test\" f=\"Monash.edu.xml\"><exclusion pattern=\"^http://www\\.monash\\.edu/(?:$|\\?)\"/><securecookie host=\"^community\\.monash\\.edu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MondeDiplo.com\" f=\"MondeDiplo.com.xml\"><rule from=\"^http://www\\.eo\\.mondediplo\\.com/\" to=\"https://eo.mondediplo.com/\"/><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MondeDiplo.net (partial)\" f=\"MondeDiplo.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mondemp3.com\" default_off=\"failed ruleset test\" f=\"Mondemp3.com.xml\"><securecookie host=\"^\\.mondemp3\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mondo 2000\" default_off=\"mismatched\" f=\"Mondo-2000.xml\"><rule from=\"^http://(?:www\\.)?mondo2000\\.net/\" to=\"https://mondo2000.net/\"/></ruleset>", "<ruleset name=\"Monetate (partial)\" f=\"Monetate.xml\"><securecookie host=\"^.+\\.monetate\\.net$\" name=\".+\"/><rule from=\"^http://(b|d|e|f)\\.monetate\\.net/\" to=\"https://s$1.monetate.net/\"/><rule from=\"^http://(marketer|sb|sd|se|sf)\\.monetate\\.net/\" to=\"https://$1.monetate.net/\"/></ruleset>", "<ruleset name=\"Monex.co.jp\" default_off=\"failed ruleset test\" f=\"Monex.co.jp.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Money.pl (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Money.pl-falsemixed.xml\"><securecookie host=\".\\.money\\.pl$\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Money.pl (partial)\" default_off=\"failed ruleset test\" f=\"Money.pl.xml\"><exclusion pattern=\"^http://direct\\.money\\.pl/+(?![do]/)\"/><exclusion pattern=\"^http://(?:fundusze-(?:emerytal|inwestycyj)ne|karty-kredytowe|kredyty-(?:gotowk|mieszkaniosamochod|samochod)owe|lokaty-bankowe)\\.money\\.pl/(?![ijs]/)\"/><securecookie host=\"^\\.\" name=\"^usertrack$\"/><securecookie host=\"^\\.direct\\.\" name=\"^directtrack$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Money Advice Service (UK)\" f=\"Money_Advice_Service_UK.xml\"><rule from=\"^http://moneyadviceservice\\.org\\.uk/\" to=\"https://www.moneyadviceservice.org.uk/\"/><rule from=\"^http://([^/:@]+)?\\.moneyadviceservice\\.org\\.uk/\" to=\"https://$1.moneyadviceservice.org.uk/\"/></ruleset>", "<ruleset name=\"Money Saving Expert.com (partial)\" f=\"Money_Saving_Expert.com.xml\"><rule from=\"^http://images\\d?\\.moneysavingexpert\\.com/\" to=\"https://c95735.ssl.cf3.rackcdn.com/\"/><rule from=\"^http://static\\d?\\.moneysavingexpert\\.com/\" to=\"https://c950035.ssl.cf3.rackcdn.com/\"/></ruleset>", "<ruleset name=\"Moneybookers\" f=\"Moneybookers.xml\"><securecookie host=\"^(?:.*\\.)?moneybookers\\.com$\" name=\".+\"/><rule from=\"^http://i(1|2)\\.mbsvr\\.net/\" to=\"https://i$1.mbsvr.net/\"/><rule from=\"^http://(www\\.)?moneybookers\\.com/\" to=\"https://$1moneybookers.com/\"/></ruleset>", "<ruleset name=\"Mongabay.com (mismatches)\" default_off=\"mismatched\" f=\"Mongabay.com-problematic.xml\"><rule from=\"^http://travel\\.mongabay\\.com/\" to=\"https://travel.mongabay.com/\"/></ruleset>", "<ruleset name=\"Mongabay.com (partial)\" f=\"Mongabay.com.xml\"><securecookie host=\"^(?:news|supporter)\\.mongabay\\.com$\" name=\".+\"/><rule from=\"^http://(news|supporter)\\.mongabay\\.com/\" to=\"https://$1.mongabay.com/\"/><rule from=\"^http://www\\.supporter\\.mongabay\\.com/(?:\\?.*)?$\" to=\"https://news.mongabay.com/\"/></ruleset>", "<ruleset name=\"MongoDB.com (partial)\" f=\"MongoDB.com.xml\"><securecookie host=\"^(?:education|university)\\.mongodb\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mongoDB.org (partial)\" f=\"MongoDB.org.xml\"><securecookie host=\"^(?:jira|www)\\.mongodb\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"monitis.com (partial)\" default_off=\"failed ruleset test\" f=\"Monitis.com.xml\"><securecookie host=\"^(?:dashboard|portal|www)\\.monitis\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?monitis\\.com/\" to=\"https://www.monitis.com/\"/><rule from=\"^http://(dashboard|portal)\\.monitis\\.com/\" to=\"https://$1.monitis.com/\"/></ruleset>", "<ruleset name=\"Monitoring-Plugins.org\" f=\"Monitoring-Plugins.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MonkeyGuts.com\" default_off=\"expired\" f=\"MonkeyGuts.com.xml\"><securecookie host=\"^monkeyguts\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Monkeybrains.net\" f=\"Monkeybrains.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Monkey’s Audio\" default_off=\"mismatched\" f=\"Monkeys-Audio.xml\"><rule from=\"^http://(?:www\\.)?ashlands\\.net/\" to=\"https://ashlands.net/~monkeys6/\"/><rule from=\"^http://audio\\.ashlands\\.net/\" to=\"https://audio.ashlands.net/~monkeys6/monkeysaudio/\"/><rule from=\"^http://(?:www\\.)monkeysaudio\\.com/\" to=\"https://audio.ashlands.net/~monkeys6/monkeysaudio/\"/></ruleset>", "<ruleset name=\"Monmouthshire.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"Monmouthshire.gov.uk.xml\"><securecookie host=\"^\\.\" name=\"^_icl_current_language$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Monoprice\" f=\"Monoprice.xml\"><securecookie host=\"^(?:www)?\\.monoprice\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?monoprice\\.com/\" to=\"https://www.monoprice.com/\"/><rule from=\"^http://images\\.monoprice\\.com/\" to=\"https://images.monoprice.com/\"/></ruleset>", "<ruleset name=\"Monotype Imaging.com (partial)\" f=\"Monotype-Imaging.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Monsoon (partial)\" f=\"Monsoon.xml\"><rule from=\"^http://media\\.monsoon\\.co\\.uk/\" to=\"https://uk.monsoon.co.uk/\"/><rule from=\"^http://uk\\.monsoon\\.co\\.uk/(medias/|monsoon/|registerSession\\.gif|static/)\" to=\"https://uk.monsoon.co.uk/$1\"/></ruleset>", "<ruleset name=\"Monster.com (partial)\" f=\"Monster.xml\"><exclusion pattern=\"^http://hiring\\.(?:[\\w-]+\\.)?monster\\.com/(?!$|\\?|favicon\\.ico|images/|(?:Script|Web)Resource\\.axd|login\\.aspx|[sS]ervices/|SharedUI/)\"/><securecookie host=\"^\\.monster\\.com$\" name=\"^(?:OAX|v1st|WT_FPC)$\"/><securecookie host=\"^(?:cookie|login|oas)\\.monster\\.com$\" name=\".+\"/><rule from=\"^http://media\\.monster\\.com/\" to=\"https://securemedia.newjobs.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MonsterDivx.com (partial)\" f=\"MonsterDivx.com.xml\"><securecookie host=\"^monsterdivx\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Monster WoW\" default_off=\"failed ruleset test\" f=\"Monster_WoW.xml\"><securecookie host=\"^(?:.*\\.)?monster-wow\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Montazar.net\" f=\"Montazar.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Monterey Bay Aquarium\" f=\"Monterey_Bay_Aquarium.xml\"><securecookie host=\"^(www|affiliate|m|mobile|newsroom|tickets)\\.montereybayaquarium\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Monthly Review.org\" default_off=\"failed ruleset test\" f=\"Monthly_Review.org.xml\"><securecookie host=\"^monthlyreview\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Montpellier.fr\" f=\"Montpellier.fr.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Montpellier Méditerranée Métropole\" f=\"Montpellier3M.fr.xml\"><rule from=\"^http://www\\.(marches|regiedeseaux)\\.montpellier3m\\.fr/\" to=\"https://$1.montpellier3m.fr/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Monty Program.com\" f=\"Monty_Program.xml\"><rule from=\"^http://(?:www\\.)?montyprogram\\.com/+\" to=\"https://mariadb.com/\"/><rule from=\"^http://blog\\.montyprogram\\.com/+\" to=\"https://mariadb.com/blog/\"/></ruleset>", "<ruleset name=\"MoodSmith.com\" f=\"MoodSmith.com.xml\"><securecookie host=\"^(?:w*\\.)?moodsmith\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mood Disorders.ca\" f=\"Mood_Disorders.ca.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Moodle.com\" f=\"Moodle.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Moodle.net (missing certificate chain)\" default_off=\"missing certificate chain\" f=\"Moodle.net-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Moodle.net (partial)\" f=\"Moodle.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Moodle.org (partial)\" f=\"Moodle.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mookie1.com\" default_off=\"failed ruleset test\" f=\"Mookie1.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Moon-ray.com (partial)\" f=\"Moon-ray.com.xml\"><exclusion pattern=\"^http://(?:forms\\.|www\\.)?moon-ray\\.com/+(?:$|\\?)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MoonPig\" f=\"MoonPig.xml\"><securecookie host=\"^(?:.+\\.)?moonpig\\.com(?:\\.au)?$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?moonpig\\.com/\" to=\"https://moonpig.com/\"/><rule from=\"^http://(?:www\\.)?moonpig\\.com\\.au/\" to=\"https://www.moonpig.com.au/\"/></ruleset>", "<ruleset name=\"Moonfruit.com (partial)\" f=\"Moonfruit.com.xml\"><rule from=\"^http://(?:www\\.)?moonfruit\\.com/\" to=\"https://www.moonfruit.com/\"/><rule from=\"^http://secure\\.moonfruit\\.com/\" to=\"https://secure.moonfruit.com/\"/></ruleset>", "<ruleset name=\"Mooshi.com.au (partial)\" f=\"Mooshi.com.au.xml\"><rule from=\"^http://(www\\.)?mooshi\\.com\\.au/(\\?ai1ec_render_css=|(?:my-account|pay)(?:$|\\?|/)|wp-content/)\" to=\"https://$1mooshi.com.au/$1\"/></ruleset>", "<ruleset name=\"Moot.it\" f=\"Moot.it.xml\"><securecookie host=\"^moot\\.it$\" name=\".+\"/><rule from=\"^http://(?:(api\\.)|www\\.)?moot\\.it/\" to=\"https://$1moot.it/\"/><rule from=\"^http://(?:cd|origi)n\\.moot\\.it/\" to=\"https://cdn.moot.it/\"/></ruleset>", "<ruleset name=\"MootiPass.com\" f=\"MootiPass.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Moovweb (partial)\" f=\"Moovweb.xml\"><securecookie host=\"^(?:help)?\\.moovweb\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?moovweb\\.com/\" to=\"https://www.moovweb.com/\"/><rule from=\"^http://(console|help)\\.moovweb\\.com/\" to=\"https://$1.moovweb.com/\"/><rule from=\"^http://(assets|cloud)\\.moovweb\\.net/\" to=\"https://$1.moovweb.net/\"/></ruleset>", "<ruleset name=\"Mopidy.com (partial)\" f=\"Mopidy.com.xml\"><securecookie host=\"^\\.mopidy\\.com$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"More-IP-event.net\" f=\"More-IP-event.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"more-onion.com\" f=\"More-onion.com.xml\"><securecookie host=\"^\\.more-onion.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"More Than Two.com\" f=\"More_Than_Two.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Moreal.co\" f=\"Moreal.co.xml\"><securecookie host=\"^(?:crypteia|www)?\\.moreal\\.co$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"moreinterop.com\" default_off=\"refused\" f=\"Moreinterop.com.xml\"><rule from=\"^http://moreinterop\\.com/\" to=\"https://www.moreinterop.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Moreover Technologies (partial)\" f=\"Moreover-Technologies.xml\"><securecookie host=\"^newsdesk4\\.moreover\\.com$\" name=\".+\"/><rule from=\"^http://(c|newsdesk4)\\.moreover\\.com/\" to=\"https://$1.moreover.com/\"/></ruleset>", "<ruleset name=\"Morgenweb.de\" f=\"Morgenweb.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mork.no\" default_off=\"403\" f=\"Mork.xml\"><rule from=\"^http://(?:www\\.)?mork\\.no/\" to=\"https://www.mork.no/\"/></ruleset>", "<ruleset name=\"Morning Star Online.co.uk\" default_off=\"failed ruleset test\" f=\"Morning_Star_Online.co.uk.xml\"><securecookie host=\"^(?:\\.|www\\.)?morningstaronline\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Morningstar.co.uk (partial)\" f=\"Morningstar.co.uk.xml\"><rule from=\"^http://(?:www\\.)?morningstar\\.co\\.uk/(?=.+/css/|favicon\\.ico|includes/|static/)\" to=\"https://www.morningstar.co.uk/\"/></ruleset>", "<ruleset name=\"Morningstar (partial)\" f=\"Morningstar.xml\"><securecookie host=\"^corporate\\.morningstar\\.com$\" name=\".+\"/><rule from=\"^http://(corporate|media|video)\\.morningstar\\.com/\" to=\"https://$1.morningstar.com/\"/></ruleset>", "<ruleset name=\"Moroccan Bazaar\" f=\"Moroccan-Bazaar.xml\"><securecookie host=\"^(?:.*\\.)?moroccanbazaar\\.co\\.uk$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Morphis.com\" default_off=\"failed ruleset test\" f=\"Morphis.com.xml\"><rule from=\"^http://www\\.morphis\\.com/\" to=\"https://morphis.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Morpho.hu\" default_off=\"expired, missing certificate chain\" f=\"Morpho.hu.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.morpho\\.hu/\" to=\"https://morpho.hu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Morrisons-Corporate.com\" default_off=\"mismatched\" f=\"Morrisons-Corporate.com.xml\"><securecookie host=\"^www\\.morrisons-corporate\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?morrisons-corporate\\.com/\" to=\"https://www.morrisons-corporate.com/\"/></ruleset>", "<ruleset name=\"Morrisons\" f=\"Morrisons.xml\"><securecookie host=\"^(?:\\.?groceries|\\.?your)?\\.morrisons\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?morrisons\\.co\\.uk/\" to=\"https://your.morrisons.com/\"/><rule from=\"^http://(admin|groceries|your)\\.morrisons\\.co(?:\\.uk|m)/\" to=\"https://$1.morrisons.com/\"/><rule from=\"^http://(www\\.)?morrisons\\.com/\" to=\"https://$1morrisons.com/\"/></ruleset>", "<ruleset name=\"Morrisons Cellar.com\" default_off=\"failed ruleset test\" f=\"Morrisons_Cellar.com.xml\"><securecookie host=\"^www\\.morrisonscellar\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?morrisonscellar\\.com/+(?:\\?(.+))?$\" to=\"https://$1morrisonscellar.com/webapp/wcs/stores/servlet/TopCategoriesDisplay?storeId=10701&$2\"/><rule from=\"^http://(www\\.)?morrisonscellar\\.com/+(?:\\?)?$\" to=\"https://$1morrisonscellar.com/webapp/wcs/stores/servlet/TopCategoriesDisplay?storeId=10701\"/><rule from=\"^http://(img\\.|www\\.)?morrisonscellar\\.com/\" to=\"https://$1morrisonscellar.com/\"/></ruleset>", "<ruleset name=\"Mosaic Science.com (partial)\" f=\"Mosaic_Science.com.xml\"><rule from=\"^http://(?:www\\.)?mosaicscience\\.com/(?=sites/)\" to=\"https://mosaicscience.com/\"/></ruleset>", "<ruleset name=\"MosqueeDeParis.net\" f=\"MosqueeDeParis.net.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mosso.com (partial)\" f=\"Mosso.com.xml\"><exclusion pattern=\"^http://cdn\\.cloudfiles\\.mosso\\.com/(?!\\w+/)\"/><rule from=\"^http://cdn\\.cloudfiles\\.mosso\\.com/(\\w+)/\" to=\"https://$1.ssl.cf0.rackcdn.com/\"/></ruleset>", "<ruleset name=\"Motesplatsen.se\" f=\"Motesplatsen.se.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MotherJones.com (partial)\" f=\"MotherJones.com.xml\"><rule from=\"^http://(www\\.)?motherjones\\.com/(files|misc|sites|transition)/\" to=\"https://$1motherjones.com/$2/\"/><rule from=\"^http://(?:(assets)|mj(cdn))\\.motherjones\\.com/\" to=\"https://mj$1$2.s3.amazonaws.com/\"/><rule from=\"^http://oascentral\\.motherjones\\.com/\" to=\"https://oasc11a.247realmedia.com/\"/><rule from=\"^http://secure\\.motherjones\\.com/\" to=\"https://secure.motherjones.com/\"/></ruleset>", "<ruleset name=\"Motherboard.tv\" f=\"Motherboard.tv.xml\"><rule from=\"^http://(?:www\\.)?motherboard\\.tv/\" to=\"https://motherboard.vice.com/\"/><rule from=\"^http://assets\\.motherboard\\.tv/\" to=\"https://dz6snzmhpcl6f.cloudfront.net/\"/><rule from=\"^http://assets2\\.motherboard\\.tv/\" to=\"https://d7qfuicnb8zug.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Motherless media (partial)\" default_off=\"Certificate mismatch\" f=\"Motherless-media.xml\"><rule from=\"^http://(?:www\\.)?motherlessmedia\\.com/\" to=\"https://motherlessmedia.com/\"/><rule from=\"^http://(avatars|thumbs)\\.motherlessmedia\\.com/\" to=\"https://$1.motherlessmedia.com/\"/></ruleset>", "<ruleset name=\"Motherless (partial)\" f=\"Motherless.xml\"><rule from=\"^http://(?:www\\.)?motherless\\.com/(favicon\\.ico|images/|login|scripts/|styles/)\" to=\"https://motherless.com/$1\"/></ruleset>", "<ruleset name=\"Motherpipe.co.uk\" default_off=\"failed ruleset test\" f=\"Motherpipe.co.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Motherpipe.com (partial)\" default_off=\"failed ruleset test\" f=\"Motherpipe.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Motigo (partial)\" default_off=\"expired\" f=\"Motigo.xml\"><rule from=\"^http://(?:www\\.)?motigo\\.com/(cs|image)s/\" to=\"https://motigo.com/$1s/\"/></ruleset>", "<ruleset name=\"The Motley Fool (partial)\" default_off=\"breaks images\" f=\"Motley-Fool.xml\"><exclusion pattern=\"^http://wiki\\.fool\\.com/+(?!wiki/(?:extension|skin)s/)\"/><securecookie host=\"\\.foolcdn\\.com$\" name=\"^(?:incap_ses_\\d+|visid_incap)_\\d+$\"/><securecookie host=\"^s\\.foolcdn\\.com$\" name=\".+\"/><rule from=\"^http://fool\\.com/\" to=\"https://www.fool.com/\"/><rule from=\"^http://www\\.fool\\.co(m|m\\.au|\\.uk)/(ads/|author/|Foolwatch/|help/|img/|Landing/|marketing/|PopUps/|press/|Scripts/|secure/|shop/|tracking/)\" to=\"https://www.fool.co$1/$2\"/><rule from=\"^http://boards\\.fool\\.com/(Css/|\\w+\\.aspx$)\" to=\"https://boards.fool.com/$1\"/><rule from=\"^http://caps\\.fool\\.com/(Blogs|Ticker/)\" to=\"https://caps.fool.com/$1\"/><rule from=\"^http://my\\.fool\\.com/\" to=\"https://my.fool.com/\"/><rule from=\"^http://[gs]\\.fool(?:cdn)?\\.co(m|m\\.au|\\.uk)/\" to=\"https://s.foolcdn.co$1/\"/><rule from=\"^http://wiki\\.fool\\.com/\" to=\"https://wiki.fool.com/\"/></ruleset>", "<ruleset name=\"Moto-G.com\" default_off=\"failed ruleset test\" f=\"Moto-G.com.xml\"><rule from=\"^http://(?:www\\.)?moto-g\\.com/\" to=\"https://www.moto-g.com/\"/></ruleset>", "<ruleset name=\"Motorola (partial)\" default_off=\"failed ruleset test\" f=\"Motorola.xml\"><exclusion pattern=\"^http://(?:www\\.)?motorola\\.com/(?:Business|staticfiles)/\"/><securecookie host=\"^(?:globalrepairtools|mediacenter|membership)\\.motorola\\.com$\" name=\".+\"/><securecookie host=\"^mediacenter\\.motorolasolutions\\.com$\" name=\".+\"/><rule from=\"^http://motorolasolutions\\.com/\" to=\"https://www.motorolasolutions.com/\"/><rule from=\"^http://motorola\\.com/\" to=\"https://www.motorola.com/\"/><rule from=\"^http:\" to=\"https:\"/><rule from=\"^http://(?:www\\.)?motorolasolutions\\.com/web/\" to=\"https://www.motorolasolutions.com/web/\"/></ruleset>", "<ruleset name=\"Motorola Trade Up\" default_off=\"failed ruleset test\" f=\"Motorola_Trade_Up.xml\"><securecookie host=\"^\\.mototradeup\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?mototradeup\\.com/\" to=\"https://www.mototradeup.com/\"/></ruleset>", "<ruleset name=\"Motricity (partial)\" default_off=\"failed ruleset test\" f=\"Motricity.xml\"><rule from=\"^http://(alltel\\.web|webshared)\\.mcore\\.com/\" to=\"https://$1.mcore.com/\"/></ruleset>", "<ruleset name=\"Mount Sinai.org\" f=\"Mount_Sinai.org.xml\"><securecookie host=\"^(?:(?:mychart|philanthropy|www)\\.)?mountsinai\\.org$\" name=\".+\"/><rule from=\"^http://((?:mychart|philanthropy|www)\\.)?mountsinai\\.org/\" to=\"https://$1mountsinai.org/\"/></ruleset>", "<ruleset name=\"Mountain Reservations (partial)\" default_off=\"mismatched\" f=\"Mountain_Reservations.xml\"><securecookie host=\"^www\\.mountainreservations\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?mountainreservations\\.com/\" to=\"https://www.mountainreservations.com/\"/></ruleset>", "<ruleset name=\"Mountspace.com\" default_off=\"failed ruleset test\" f=\"Mountspace.com.xml\"><rule from=\"^http://(?:www\\.)?mountspace\\.com/\" to=\"https://www.mountspace.com/\"/></ruleset>", "<ruleset name=\"Mountyhall\" default_off=\"self-signed\" f=\"Mountyhall.com.xml\"><rule from=\"^http://games\\.mountyhall\\.com/\" to=\"https://games.mountyhall.com/\"/></ruleset>", "<ruleset name=\"Mouse Blocker.com\" f=\"Mouse_Blocker.com.xml\"><securecookie host=\"^(?:w*\\.)?mouseblocker\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mouseflow\" default_off=\"failed ruleset test\" f=\"Mouseflow.xml\"><rule from=\"^http://de\\.mouseflow\\.com/\" to=\"https://mouseflow.de/\"/><rule from=\"^http://nl\\.mouseflow\\.com/\" to=\"https://mouseflow.nl/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mov.ad\" default_off=\"failed ruleset test\" f=\"Mov.ad.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MovableType.org\" f=\"MovableType.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Movable Ink.com (partial)\" f=\"Movable_Ink.com.xml\"><exclusion pattern=\"^http://info\\.movableink\\.com/+(?!$|\\?|css/)\"/><securecookie host=\"^movableink\\.com$\" name=\".+\"/><rule from=\"^http://info\\.movableink\\.com/(?=/*css/)\" to=\"https://go.pardot.com/\"/><rule from=\"^http://info\\.movableink\\.com/.*\" to=\"https://movableink.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Movable Type.com\" f=\"Movable_Type.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MoveOn.org (false MCB)\" platform=\"mixedcontent\" f=\"MoveOn.org-falsemixed.xml\"><securecookie host=\"^petitions\\.moveon\\.org$\" name=\".+\"/><securecookie host=\"^\\.signon\\.org$\" name=\".+\"/><rule from=\"^http://petitions\\.moveon\\.org/\" to=\"https://petitions.moveon.org/\"/><rule from=\"^http://(www\\.)?signon\\.org/\" to=\"https://$1signon.org/\"/></ruleset>", "<ruleset name=\"MoveOn.org (partial)\" f=\"MoveOn.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://s3\\.moveon\\.org/\" to=\"https://s3.amazonaws.com/s3.moveon.org/\"/><rule from=\"^https?://static\\.petitions\\.moveon\\.org/\" to=\"https://d83190g0d3lhr.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Movelia.es\" f=\"Movelia.xml\"><rule from=\"^http://movelia\\.es/\" to=\"https://www.movelia.es/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Moverall\" default_off=\"failed ruleset test\" f=\"Moverall.com.xml\"><rule from=\"^http://(www\\.)?moverall\\.com/\" to=\"https://www.moverall.com/\"/><rule from=\"^http://az698912\\.vo\\.msecnd\\.net/\" to=\"https://az698912.vo.msecnd.net/\"/><rule from=\"^http://cdn\\.moverall\\.com/\" to=\"https://az698912.vo.msecnd.net/\"/></ruleset>", "<ruleset name=\"Movian.tv\" f=\"Movian.tv.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Movie2k.tv\" default_off=\"failed ruleset test\" f=\"Movie2k.tv.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Movie4k.to\" f=\"Movie4k.to.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MovieMaps.org\" f=\"MovieMaps.org.xml\"><securecookie host=\"^moviemaps\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MovieTH.com\" f=\"MovieTH.com.xml\"><securecookie host=\"^\\.movieth\\.com$\" name=\".+\"/><rule from=\"^http://(sexy\\.|www2?\\.)?movieth\\.com/\" to=\"https://$1movieth.com/\"/></ruleset>", "<ruleset name=\"MovieTickets.com\" default_off=\"failed ruleset test\" f=\"MovieTickets.com.xml\"><securecookie host=\"^(?:www\\.)?movietickets\\.com$\" name=\".+\"/><securecookie host=\"^\\.movietickets\\.com$\" name=\"^s_\\w\\w$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"moviease.com\" f=\"Moviease.com.xml\"><securecookie host=\"^(?:w*\\.)?moviease\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Moviefone.com\" default_off=\"redirects to http\" f=\"Moviefone.xml\"><exclusion pattern=\"^http://www\\.moviefone\\.com/(?:$|cache/)\"/><rule from=\"^http://(?:www\\.blogsmithmedia\\.com/)?(?:www\\.)?moviefone\\.com/\" to=\"https://www.moviefone.com/\"/></ruleset>", "<ruleset name=\"Moviemagnet.net\" default_off=\"failed ruleset test\" f=\"Moviemagnet.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"movienewsletters.net\" f=\"Movienewsletters.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Movieposter.com\" f=\"Movieposter.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Movim\" f=\"Movim.eu.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://www\\.movim\\.eu/\" to=\"https://movim.eu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Moxie Soft.com\" default_off=\"failed ruleset test\" f=\"Moxie_Soft.com.xml\"><securecookie host=\"^(?:www\\.)?(?:gomoxie|moxiesoft)\\.com$\" name=\".+\"/><securecookie host=\"^support\\.gomoxie\\.com$\" name=\"^$\"/><rule from=\"^http://(support\\.|www\\.)?gomoxie\\.com/\" to=\"https://$1gomoxie.com/\"/><rule from=\"^http://(www\\.)?moxiesoft\\.com/\" to=\"https://$1moxiesoft.com/\"/><rule from=\"^http://resources\\.moxiesoft\\.com/(?=css/|images/|js/|rs/)\" to=\"https://na-sjg.marketo.com/\"/></ruleset>", "<ruleset name=\"Mozdev (mismatches)\" default_off=\"mismatched\" f=\"Mozdev-mismatches.xml\"><exclusion pattern=\"^http://(?:bugzilla\\.|hg\\.|www\\.)?mozdev\\.org/\"/><securecookie host=\"^.*\\.mozdev\\.org$\" name=\".*\"/><rule from=\"^http://([\\w\\-]+)\\.mozdev\\.org/\" to=\"https://$1.mozdev.org/\"/></ruleset>", "<ruleset name=\"Mozdev (expired cert)\" default_off=\"cert expired\" f=\"Mozdev.xml\"><securecookie host=\"^(?:.*\\.)?mozdev\\.org$\" name=\".*\"/><rule from=\"^http://(hg\\.|svn\\.|www\\.)?mozdev\\.org/\" to=\"https://$1mozdev.org/\"/><rule from=\"^http://bugzilla\\.mozdev\\.org/+\" to=\"https://www.mozdev.org/bugs/\"/></ruleset>", "<ruleset name=\"Mozdev Group.com (partial)\" f=\"Mozdev_Group.com.xml\"><securecookie host=\"^(?:air|emory|fresenius|ipcache|measurement|okcd|vantage)\\.mozdevgroup\\.com$\" name=\".+\"/><rule from=\"^http://((?:air|emory|fresenius|ipcache|measurement|okcd|vantage|www)\\.)?mozdevgroup\\.com/\" to=\"https://$1mozdevgroup.com/\"/></ruleset>", "<ruleset name=\"Mozilla-Community.org\" f=\"Mozilla-Community.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mozilla-Russia.org (partial)\" f=\"Mozilla-Russia.org.xml\"><securecookie host=\"^(?:bugzilla|forum)\\.mozilla-russia\\.org$\" name=\".+\"/><rule from=\"^http://(?:(bugzilla\\.|forum\\.)|www\\.)?mozilla-russia\\.org/\" to=\"https://$1mozilla-russia.org/\"/></ruleset>", "<ruleset name=\"Mozilla (self-signed)\" default_off=\"mismatched\" f=\"Mozilla-self-signed.xml\"><rule from=\"^http://krakenbenchmark\\.mozilla\\.org/\" to=\"https://krakenbenchmark.mozilla.org/\"/></ruleset>", "<ruleset name=\"Mozilla.com.tw\" f=\"Mozilla.com.tw.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mozilla.com (partial)\" default_off=\"failed ruleset test\" f=\"Mozilla.com.xml\"><exclusion pattern=\"^http://(?:www\\.authstage|fxfeeds|identity|.+\\.malware-error|www-trunk\\.stage)\\.mozilla\\.com/\"/><exclusion pattern=\"^http://(?:[\\w.-]+\\.)?phish-report\\.mozilla\\.com/\"/><securecookie host=\".*\\.mozilla\\.com$\" name=\".+\"/><rule from=\"^http://labs\\.mozilla\\.com/+\" to=\"https://mozillalabs.com/\"/><rule from=\"^http://status\\.mozilla\\.com/+\" to=\"https://status.mozilla.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mozilla.jp (partial)\" default_off=\"failed ruleset test\" f=\"Mozilla.jp.xml\"><securecookie host=\"^(?:addons|secure)\\.mozilla\\.jp$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mozilla.net (partial)\" f=\"Mozilla.net.xml\"><exclusion pattern=\"^http://hardhat\\.mozilla\\.net/\"/><rule from=\"^http://download\\.cdn\\.mozilla\\.net/\" to=\"https://ftp.mozilla.org/\"/><rule from=\"^http://www\\.mozilla\\.net/\" to=\"https://www.mozilla.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mozilla.org\" f=\"Mozilla.xml\"><exclusion pattern=\"^http://(europe|bonsai|browserquest|trychooser\\.pub\\.build|bzr|(?!image)\\w+\\.e|graphs|iot|krakenbenchmark|mig|release|sfx-images|symbolapi|symbols|alerts\\.telemetry|w(ebsite|ww)-archive)\\.mozilla\\.org/\"/><securecookie host=\".*\\.mozilla\\.org$\" name=\".+\"/><rule from=\"^http://affiliates-cdn\\.mozilla\\.org/\" to=\"https://affiliates.mozilla.org/\"/><rule from=\"^http://talkback-public\\.mozilla\\.org/\" to=\"https://crash-stats.mozilla.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mozilla Demos.org\" f=\"Mozilla_Demos.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mozilla Ignite.org (partial)\" default_off=\"failed ruleset test\" f=\"Mozilla_Ignite.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mozilla Labs.com (partial)\" default_off=\"failed ruleset test\" f=\"Mozilla_Labs.com.xml\"><exclusion pattern=\"^http://(?:bespin|bespinplugins|jetpackgallery)\\.mozillalabs\\.com/\"/><securecookie host=\"^mozillalabs\\.com$\" name=\".+\"/><rule from=\"^http://(\\w+\\.)?mozillalabs\\.com/\" to=\"https://$1mozillalabs.com/\"/></ruleset>", "<ruleset name=\"Mozilla Messaging.com (partial)\" f=\"Mozilla_Messaging.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Webmaker.org\" default_off=\"failed ruleset test\" f=\"Mozilla_Webmaker.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mozillians.org\" f=\"Mozillians.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mozo.com.au\" f=\"Mozo.com.au.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Moztw.org\" f=\"Moztw.org.xml\"><rule from=\"^http://(www\\.)?moztw\\.org/\" to=\"https://moztw.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mozy\" platform=\"mixedcontent\" f=\"Mozy.xml\"><securecookie host=\"^(?:.+\\.)?mozy\\.com$\" name=\".*\"/><securecookie host=\"^(?:.+\\.)?mozy\\.co\\.uk$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?mozy\\.com/\" to=\"https://mozy.com/\"/><rule from=\"^http://(?:www\\.)?mozy\\.co\\.uk/\" to=\"https://mozy.co.uk/\"/></ruleset>", "<ruleset name=\"Mp3-Juices.com\" f=\"Mp3-Juices.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.mp3-juices\\.com/\" to=\"https://mp3-juices.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mpagano.com\" f=\"Mpagano.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mpornpass.com (partial)\" default_off=\"expired\" f=\"Mpornpass.com.xml\"><securecookie host=\"\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mpv.io\" f=\"Mpv.io.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mpx\" platform=\"mixedcontent\" f=\"Mpx.xml\"><rule from=\"^http://(?:www\\.)?mpx\\.no/\" to=\"https://www.mpx.no/\"/></ruleset>", "<ruleset name=\"Mr File.me\" default_off=\"expired, self-signed\" platform=\"mixedcontent\" f=\"Mr_File.me.xml\"><securecookie host=\"^\\.mrfile\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mr cote.info\" default_off=\"failed ruleset test\" f=\"Mr_cote.info.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mradx.net\" f=\"Mradx.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mrs. McNasty's\" default_off=\"failed ruleset test\" f=\"Mrs_McNastys.xml\"><securecookie host=\"^(?:.*\\.)?mrsmcnastys\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"msecnd.net (partial)\" f=\"Msecnd.net.xml\"><exclusion pattern=\"^http://(?:az(?!83882\\.|94986\\.|623152\\.)\\d+|msnchansea|msrvideo)\\.vo\\.msecnd\\.net/\"/><rule from=\"^http://(\\w+)\\.vo\\.msecnd\\.net/\" to=\"https://$1.vo.msecnd.net/\"/></ruleset>", "<ruleset name=\"Mstar.com (partial)\" f=\"Mstar.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mt.Gox\" default_off=\"failed ruleset test\" f=\"MtGox.xml\"><securecookie host=\"^(?:.*\\.)?mtgox\\.com$\" name=\".+\"/><rule from=\"^http://((?:bitcoind|data|m|support|www|yubikey)\\.)?mtgox\\.com/\" to=\"https://$1mtgox.com/\"/></ruleset>", "<ruleset name=\"mtSystems.ch\" default_off=\"failed ruleset test\" f=\"MtSystems.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mtekk.us\" f=\"Mtekk.us.xml\"><securecookie host=\"^(?:www\\.)?mtekk\\.us$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mtsbank.ru (partial)\" f=\"Mtsbank.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mtstatic.com\" f=\"Mtstatic.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Muckrock\" f=\"Muckrock.xml\"><securecookie host=\"^www\\.muckrock\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mudgum.net\" f=\"Mudgum.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Muenchen.de\" f=\"Muenchen.de.xml\"><rule from=\"^http://www\\.muenchen\\.de/\" to=\"https://www.muenchen.de/\"/></ruleset>", "<ruleset name=\"Muenchen.tv\" f=\"Muenchen.tv.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mufin.com\" f=\"Mufin.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MugenMonkey.com (partial)\" f=\"MugenMonkey.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MujBiz.cz\" default_off=\"mismatched\" f=\"MujBiz.cz.xml\"><securecookie host=\"^www\\.mujbiz\\.cz$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?mujbiz\\.cz/\" to=\"https://www.mujbiz.cz/\"/></ruleset>", "<ruleset name=\"MuleSoft.com (partial)\" f=\"MuleSoft.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mullet.se\" f=\"Mullet.se.xml\"><rule from=\"^http://www\\.mullet\\.se/\" to=\"https://www.mullet.se/\"/><rule from=\"^http://mullet\\.se/\" to=\"https://mullet.se/\"/></ruleset>", "<ruleset name=\"Mullvad.net\" f=\"Mullvad.net.xml\"><securecookie host=\"^(?:www\\.)?mullvad\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MultiBit.org (partial)\" f=\"MultiBit.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MultiSeek.net\" default_off=\"failed ruleset test\" f=\"MultiSeek.xml\"><rule from=\"^http://www\\.multiseek\\.net/\" to=\"https://multiseek.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MultiSoft (partial)\" f=\"MultiSoft.xml\"><rule from=\"^http://(www\\.)?multisoft\\.com/([aA]pp_[tT]hemes/|jssrc/|moduleskins/|[mM]ulti[sS]oft[cC]orporation/|[rR]ad[sS]kins/|[sS]kinning/|[wW]eb[rR]esource\\.axd)\" to=\"https://$1multisoft.com/$2\"/></ruleset>", "<ruleset name=\"MultiVPN.biz (partial)\" f=\"MultiVPN.xml\"><securecookie host=\"^cabinet\\.multi-vpn\\.biz$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Multicast Media\" default_off=\"failed ruleset test\" f=\"Multicast_Media.xml\"><securecookie host=\"^vidego\\.multicastmedia\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?multicastmedia\\.com/[^\\?]*(\\?.*)?\" to=\"https://www.kitd.com/multicast/$1\"/><rule from=\"^http://(static\\.|vidego\\.)?multicastmedia\\.com/\" to=\"https://$1multicastmedia.com/\"/></ruleset>", "<ruleset name=\"Multicore-DevCon.com\" default_off=\"failed ruleset test\" f=\"Multicore-DevCon.com.xml\"><securecookie host=\"^(?:www\\.)?multicore-devcon\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Multiply (partial)\" default_off=\"failed ruleset test\" f=\"Multiply.xml\"><securecookie host=\"^\\.multiply\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mumble.info\" f=\"Mumble.info.xml\"><securecookie host=\"^(www\\.|wiki\\.|forums\\.)?mumble\\.info\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mumzworld.com\" f=\"Mumzworld.com.xml\"><securecookie host=\"^\\.mumzworld\\.com$\" name=\".+\"/><rule from=\"^http://(?:media\\.|(www\\.))?mumzworld\\.com/\" to=\"https://$1mumzworld.com/\"/></ruleset>", "<ruleset name=\"Muni.cz (partial)\" f=\"Muni.cz.xml\"><exclusion pattern=\"^http://isc\\.muni\\.cz/+(?!\\w+\\.css|favicon\\.(?:ico|png)|images/)\"/><exclusion pattern=\"^http://(?:www\\.)?kite\\.muni\\.cz/+(?!css/|favicon\\.ico|img/|online-application/public/login(?:$|[?/]))\"/><securecookie host=\"^(?:czs|(?:www\\.)?em2il|inet\\.dis\\.ics|inet|is|isois\\.ois|www\\.online|intranet\\.skm|www)\\.muni\\.cz$\" name=\".+\"/><rule from=\"^http://((?:(?:www\\.)?em2il|ezdroje|fadmin\\.fi|(?:(?:dior|inet\\.dis|idp2|marach|webserver|www)\\.)?ics|inet|isc?|(?:www\\.)?kite|knihovna|knihovna-tst|library|mailman|isois\\.ois|intranet\\.skm|www)\\.)?muni\\.cz/\" to=\"https://$1muni.cz/\"/><rule from=\"^http://(?:www\\.)?(cz|oi)s\\.muni\\.cz/\" to=\"https://$1s.muni.cz/\"/><rule from=\"^http://discovery\\.muni\\.cz/+([^?]).*\" to=\"https://search.ebscohost.com/login.aspx?authtype=cookie,ip,guest&profile=eds&groupid=infolib&custid=s8431878$1\"/><rule from=\"^http://(?:www\\.)?(fi|online|skm)\\.muni\\.cz/\" to=\"https://www.$1.muni.cz/\"/><rule from=\"^http://scb\\.ics\\.muni\\.cz/[^?]*\" to=\"https://www.cerit.cz/cs/cerit-sc/\"/><rule from=\"^http://(?:www\\.)?info\\.muni\\.cz/+\" to=\"https://www.online.muni.cz/\"/></ruleset>", "<ruleset name=\"Municode.com\" f=\"Municode.com.xml\"><securecookie host=\"^\\.?www\\.municode\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Munzinger.de\" f=\"Munzinger.de.xml\"><securecookie host=\"^www\\.munzinger\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?munzinger\\.de/\" to=\"https://www.munzinger.de/\"/></ruleset>", "<ruleset name=\"Musalbas.com\" f=\"Musalbas.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.musalbas\\.com/\" to=\"https://musalbas.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Muscle and Strength.com\" f=\"Muscle_and_Strength.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Muse.mu (partial)\" default_off=\"failed ruleset test\" f=\"Muse.mu.xml\"><exclusion pattern=\"^http://(?:www\\.)?muse\\.mu/(?!/*(?:(?:_handlers|_iiwm|_popup|_static|_widgets|siteimg|ugc_1)/|(?:Script|Web)Resource\\.axd(?:$|\\?)|favicon\\.ico))\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Muselive.com (partial)\" default_off=\"failed ruleset test\" f=\"Muselive.com.xml\"><securecookie host=\"^community\\.muselive\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MuseoDelPrado.es\" default_off=\"failed ruleset test\" f=\"Museodelprado.es.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Museter.com (self-signed)\" default_off=\"self-signed\" f=\"Museter.com-problematic.xml\"><rule from=\"^http://streams\\.museter\\.com:2199/\" to=\"https://streams.museter.com:2199/\"/></ruleset>", "<ruleset name=\"Museter.com (partial)\" f=\"Museter.com.xml\"><securecookie host=\"^client\\.museter\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Music Week\" f=\"Music-Week.xml\"><securecookie host=\"^www\\.musicweek\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?musicweek\\.com/\" to=\"https://www.musicweek.com/\"/></ruleset>", "<ruleset name=\"MusicBrainz.org (partial)\" f=\"MusicBrainz.xml\"><securecookie host=\"^(?:.*\\.)?musicbrainz\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Musician's Friend (partial)\" default_off=\"failed ruleset test\" f=\"Musicians_Friend.xml\"><securecookie host=\"^origin-static\\.musiciansfriend\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?musiciansfriend\\.com/(checkout|mediaCenter/feeds/)\" to=\"https://www.musiciansfriend.com/$1\"/><rule from=\"^http://(origin-)?static\\.musiciansfriend\\.com/\" to=\"https://$1static.musiciansfriend.com/\"/></ruleset>", "<ruleset name=\"Musicmetric.com (partial)\" default_off=\"failed ruleset test\" f=\"Musicmetric.xml\"><securecookie host=\".+\\.musicmetric\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Musicnotes.com (partial)\" f=\"Musicnotes.xml\"><securecookie host=\"^(?:origin-www|stage|www)?\\.musicnotes\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?musicnotes\\.com/\" to=\"https://www.musicnotes.com/\"/><rule from=\"^http://(help|origin-www|sheetmusic|stage|tx)\\.musicnotes\\.com/\" to=\"https://$1.musicnotes.com/\"/></ruleset>", "<ruleset name=\"Musikerforbundet.se\" platform=\"mixedcontent\" f=\"Musikerforbundet.se.xml\"><rule from=\"^http://musikerforbundet\\.se/\" to=\"https://www.musikerforbundet.se/\"/><rule from=\"^http://www\\.musikerforbundet\\.se/\" to=\"https://www.musikerforbundet.se/\"/></ruleset>", "<ruleset name=\"Musikskole-tilmelding.dk\" f=\"Musikskole-tilmelding.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Musixmatch.com\" f=\"Musixmatch.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"musl-libc.org (partial)\" default_off=\"self-signed\" f=\"Musl-libc.org.xml\"><securecookie host=\"^wiki\\.musl-libc\\.org$\" name=\".+\"/><rule from=\"^http://wiki\\.musl-libc\\.org/\" to=\"https://wiki.musl-libc.org/\"/></ruleset>", "<ruleset name=\"MuslimAdvocates.org\" f=\"MuslimAdvocates.org.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MuslimAmericanSociety.org\" f=\"MuslimAmericanSociety.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MuslimInstitute.org\" f=\"MuslimInstitute.org.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MuslimIssues.com\" f=\"MuslimIssues.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MuslimPro.com\" f=\"MuslimPro.com.xml\"><securecookie host=\"^(www|support)\\.muslimpro\\.com$\" name=\".+\"/><rule from=\"^http://muslimpro\\.com/\" to=\"https://www.muslimpro.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MuslimVillage.com\" f=\"MuslimVillage.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MuslimsCondemn.com\" f=\"MuslimsCondemn.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MuslimsDiscuss.com\" f=\"MuslimsDiscuss.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://muslimsdiscuss\\.com/\" to=\"https://www.muslimsdiscuss.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MuslimsFacingTomorrow.com\" f=\"MuslimsFacingTomorrow.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Musopen (partial)\" f=\"Musopen.xml\"><securecookie host=\"^musopen\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?musopen\\.org/\" to=\"https://musopen.org/\"/></ruleset>", "<ruleset name=\"muspy\" f=\"Muspy.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mutantbrains.com (partial)\" default_off=\"self-signed\" f=\"Mutantbrains.com.xml\"><rule from=\"^http://piwik\\.mutantbrains\\.com/\" to=\"https://piwik.mutantbrains.com/\"/></ruleset>", "<ruleset name=\"Mutelight.org\" f=\"Mutelight.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mutt.org (partial)\" f=\"Mutt.org.xml\"><securecookie host=\"^dev\\.mutt\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mutterschaftsgeld.de\" default_off=\"failed ruleset test\" f=\"Mutterschaftsgeld.de.xml\"><rule from=\"^https?://(?:www\\.)?mutterschaftsgeld\\.de/\" to=\"https://www.mutterschaftsgeld.de/\"/></ruleset>", "<ruleset name=\"Muttscomics.com\" default_off=\"failed ruleset test\" f=\"Muttscomics.com.xml\"><securecookie host=\"^\\.muttscomics\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MutualArt.com\" f=\"MutualArt.com.xml\"><securecookie host=\"^www\\.mutualart\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?mutualart\\.com/\" to=\"https://www.mutualart.com/\"/></ruleset>", "<ruleset name=\"Mutual of America.com\" f=\"Mutual_of_America.xml\"><securecookie host=\".+\\.mutualofamerica\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Muut.com\" f=\"Muut.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Muwazna.org\" f=\"Muwazna.org.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Branchenbuch München\" default_off=\"failed ruleset test\" f=\"Mux.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mwave Australia (partial)\" f=\"Mwave.xml\"><rule from=\"^http://(?:www\\.)?mwave\\.com\\.au/((?:businesscorp|checkout|help|myaccount|privacy-policy|terms-and-conditions)(?:$|\\?|/)|catalog/emailsubscribe|[cC]ontent/|favicon\\.ico|images/|[sS]ecure/)\" to=\"https://www.mwave.com.au/$1\"/></ruleset>", "<ruleset name=\"mwellner.de (false MCB)\" platform=\"mixedcontent\" f=\"Mwellner.de.xml\"><securecookie host=\"^(?:www\\.)?mwellner\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mwop.net\" f=\"Mwop.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MxmCDN.net\" f=\"MxmCDN.net.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mxpnl.com\" f=\"Mxpnl.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mxptint.net\" f=\"Mxptint.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"My-files.de\" default_off=\"failed ruleset test\" f=\"My-Files.xml\"><rule from=\"^http://w01\\.my-files\\.de/\" to=\"https://w01.my-files.de/\"/></ruleset>", "<ruleset name=\"My.com (partial)\" f=\"My.com.xml\"><securecookie host=\"^(.*\\.)?my\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MyAJC.com (partial)\" f=\"MyAJC.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MyBB Central\" f=\"MyBB_Central.xml\"><securecookie host=\"^\\.mybbcentral\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MyBenefits CalWIN\" f=\"MyBenefits-CalWIN.xml\"><securecookie host=\"^www\\.mybenefitscalwin\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?mybenefitscalwin\\.(?:com|net|org)/\" to=\"https://www.mybenefitscalwin.org/\"/></ruleset>", "<ruleset name=\"MyBetter.com\" default_off=\"failed ruleset test\" f=\"MyBetter.com.xml\"><securecookie host=\"^server2\\.mybetter\\.com$\" name=\".+\"/><rule from=\"^http://(server2\\.|www\\.)?mybetter\\.com/\" to=\"https://$1mybetter.com/\"/><rule from=\"^http://server2\\.mybetter\\.com:2222/\" to=\"https://server2.mybetter.com:2222/\"/></ruleset>", "<ruleset name=\"MyBuys (partial)\" f=\"MyBuys.xml\"><securecookie host=\".*\\.mybuys\\.com$\" name=\".+\"/><rule from=\"^http://((?:(?:bi5|portal|t|w)\\.p|www)\\.)?mybuys\\.com/\" to=\"https://$1mybuys.com/\"/><rule from=\"^http://www2\\.mybuys\\.com/(?=css/|js/|images/|rs/)\" to=\"https://na-sjh.marketo.com/\"/></ruleset>", "<ruleset name=\"MyCalendar\" f=\"MyCalendar.xml\"><rule from=\"^http://(?:www\\.)?mycalendarbook\\.com/\" to=\"https://mycalendarbook.com/\"/></ruleset>", "<ruleset name=\"MyCanvas.com\" f=\"MyCanvas.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MyCharity.ie\" default_off=\"failed ruleset test\" f=\"MyCharity.ie.xml\"><rule from=\"^http://(?:www\\.)?mycharity\\.ie/\" to=\"https://www.mycharity.ie/\"/></ruleset>", "<ruleset name=\"MyChart\" platform=\"mixedcontent\" f=\"MyChart.xml\"><securecookie host=\"^(?:.*\\.)?viewmychart\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?viewmychart\\.com/\" to=\"https://www.viewmychart.com/\"/></ruleset>", "<ruleset name=\"MyCommerce.com\" f=\"MyCommerce.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MyComputer.com\" f=\"MyComputer.com.xml\"><rule from=\"^http://(?:www\\.)?mycomputer\\.com/\" to=\"https://www.mycomputer.com/\"/><rule from=\"^http://watchdog\\.mycomputer\\.com/\" to=\"https://watchdog.mycomputer.com/\"/></ruleset>", "<ruleset name=\"MyDealz.de\" f=\"MyDealz.de.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MyEdAccount.Com\" default_off=\"failed ruleset test\" f=\"MyEdAccount.Com.xml\"><securecookie host=\"(?:^|\\.)myedaccount\\.com$\" name=\".+\"/><rule from=\"^(?:http://(?:www\\.)?|https://)myedaccount\\.com/\" to=\"https://www.myedaccount.com/\"/></ruleset>", "<ruleset name=\"MyFBO\" f=\"MyFBO.com.xml\"><securecookie host=\"^(?:.*\\.)?myfbo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MyFitnessPal\" f=\"MyFitnessPal.xml\"><securecookie host=\"^www\\.myfitnesspal\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MyFonts.com (partial)\" f=\"MyFonts.com.xml\"><securecookie host=\"^www\\.myfonts\\.com$\" name=\".+\"/><rule from=\"^http://cdn\\.myfonts\\.com/\" to=\"https://cdn.myfonts.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MyFonts.net\" f=\"MyFonts.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MyFreeCopyright.com (problematic)\" default_off=\"expired\" f=\"MyFreeCopyright.com-problematic.xml\"><securecookie host=\"^myfreecopyright\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?myfreecopyright\\.com/\" to=\"https://myfreecopyright.com/\"/></ruleset>", "<ruleset name=\"MyFreeCopyright.com (partial)\" f=\"MyFreeCopyright.com.xml\"><rule from=\"^http://storage\\.myfreecopyright\\.com/\" to=\"https://myfreecopyright.s3.amazonaws.com/\"/></ruleset>", "<ruleset name=\"MyGurlFund\" f=\"MyGirlFund.xml\"><securecookie host=\"^\\.mygirlfund\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MyGoxClaim.com\" f=\"MyGoxClaim.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MyInteriorDecorator.com\" default_off=\"failed ruleset test\" f=\"MyInteriorDecorator.com.xml\"><securecookie host=\"^(?:w*\\.)?myinteriordecorator\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MyKolab.com\" f=\"MyKolab.com.xml\"><securecookie host=\"^(?:cockpit)?\\.mykolab\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MyLeague\" f=\"MyLeague.xml\"><securecookie host=\"^\\.myleague\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?myleague\\.com/\" to=\"https://www.myleague.com/\"/></ruleset>", "<ruleset name=\"myLifetime.com (partial)\" default_off=\"failed ruleset test\" f=\"MyLifetime.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MyLikes\" default_off=\"failed ruleset test\" f=\"MyLikes.xml\"><securecookie host=\"^\\.longurl\\.it$\" name=\".+\"/><securecookie host=\"^(?:ads\\.|www\\.)?mylikes\\.com$\" name=\".+\"/><rule from=\"^http://(clnk\\.me|longurl\\.it)/\" to=\"https://$1/\"/><rule from=\"^http://mlv-cdn\\.com/\" to=\"https://mylikes.com/\"/><rule from=\"^http://w\\.mlv-cdn\\.com/\" to=\"https://d1t8hc7w4sf1nn.cloudfront.net/\"/><rule from=\"^http://(ads\\.|www\\.)?mylikes\\.com/\" to=\"https://$1mylikes.com/\"/></ruleset>", "<ruleset name=\"myLoc.de\" f=\"MyLoc.de.xml\"><securecookie host=\"^www\\.myloc\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MyMoustache.net\" f=\"MyMoustache.net.xml\"><securecookie host=\"^.*\\.mymoustache\\.net$\" name=\".+\"/><rule from=\"^http://mymoustache\\.net/\" to=\"https://www.mymoustache.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"myNXT.info\" f=\"MyNXT.info.xml\"><securecookie host=\"^(?:\\.|www\\.)?mynxt\\.info$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"myPass.de (partial)\" f=\"MyPass.de.xml\"><exclusion pattern=\"^http://secure\\.mypass\\.de/$\"/><securecookie host=\"^secure\\.mypass\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MyPlayDirect\" default_off=\"failed ruleset test\" f=\"MyPlayDirect.xml\"><securecookie host=\"^(?:.+\\.)?myplaydirect\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?myplaydirect\\.com/\" to=\"https://www.myplaydirect.com/\"/></ruleset>", "<ruleset name=\"MyPoints.com\" f=\"MyPoints.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\.www\\.\" name=\".\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"myPortal.im\" f=\"MyPortal.im.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MyPreferences.com (partial)\" f=\"MyPreferences.com.xml\"><securecookie host=\"^pc2\\.mypreferences\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"myRA.gov\" f=\"MyRA.gov.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"myResumeAgent.com (partial)\" f=\"MyResumeAgent.com.xml\"><securecookie host=\"^(?:www)?\\.myresumeagent\\.com$\" name=\".*\"/><rule from=\"^http://myresumeagent\\.com/\" to=\"https://www.myresumeagent.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MySQL\" f=\"MySQL.xml\"><exclusion pattern=\"^http://downloads\\.mysql\\.com/[^\\n]\"/><securecookie host=\"^\\.mysql\\.\\w{2,3}$\" name=\"^MySQL_S$\"/><rule from=\"^http://downloads\\.mysql\\.com/$\" to=\"https://dev.mysql.com/downloads/\"/><rule from=\"^http://forge\\.mysql\\.com/\" to=\"https://www.mysql.com/\"/><rule from=\"^http://wb\\.mysql\\.com/\" to=\"https://www.mysql.com/products/workbench/\"/><rule from=\"^http://mysql\\.(\\w\\w)/\" to=\"https://www.mysql.$1/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MyScienceWork.com\" f=\"MyScienceWork.com.xml\"><securecookie host=\"^(?:www\\.)?\\.mysciencework\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MyScore180.com\" f=\"MyScore180.com.xml\"><securecookie host=\"^(?:[w.]*\\.)?myscore180\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mySecureConnect\" f=\"MySecureConnect.com.xml\"><securecookie host=\"^(?:order\\.|www\\.)?mysecureconnect\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mySkreen.com (partial)\" default_off=\"failed ruleset test\" f=\"MySkreen.com.xml\"><rule from=\"^http://medias\\.myskreen\\.com/\" to=\"https://medias.myskreen.com/\"/></ruleset>", "<ruleset name=\"mySociety.co.uk\" f=\"MySociety.co.uk.xml\"><securecookie host=\"^(?:www\\.)?mysociety\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mySociety.org\" default_off=\"failed ruleset test\" f=\"MySociety.org.xml\"><securecookie host=\"^www\\.mysociety\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"myStockOptions.com\" f=\"MyStockOptions.com.xml\"><securecookie host=\"^(?:www)?\\.mystockoptions\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?mystockoptions\\.com/\" to=\"https://www.mystockoptions.com/\"/></ruleset>", "<ruleset name=\"MyTUM.de\" f=\"MyTUM.de.xml\"><securecookie host=\"portal.mytum\\.de$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"myTemp.email (partial)\" f=\"MyTemp.email.xml\"><securecookie host=\"^\\.?mytemp\\.email$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MyTextGraphics.com (partial)\" f=\"MyTextGraphics.com.xml\"><rule from=\"^http://img(?:\\d|10)\\.mytextgraphics\\.com/\" to=\"https://d7gjtd9kdx0w5.cloudfront.net/\"/><rule from=\"^http://img(?:1[1-9]|20)\\.mytextgraphics\\.com/\" to=\"https://d1qy5u3l21z5db.cloudfront.net/\"/><rule from=\"^http://img(?:2[1-9]|30)\\.mytextgraphics\\.com/\" to=\"https://d2y5xryjzuetvr.cloudfront.net/\"/><rule from=\"^http://img702\\.mytextgraphics\\.com/\" to=\"https://d2cmody3lz4pfa.cloudfront.net/\"/><rule from=\"^http://img-s3-01\\.mytextgraphics\\.com/\" to=\"https://dn7bb6u52b8om.cloudfront.net/\"/></ruleset>", "<ruleset name=\"MyTime.com\" f=\"MyTime.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|_gat?|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MyUHC\" f=\"MyUHC.xml\"><rule from=\"^http://(?:www\\.)?myuhc\\.com/\" to=\"https://www.myuhc.com/\"/></ruleset>", "<ruleset name=\"MyUS.com (partial)\" f=\"MyUS.com.xml\"><rule from=\"^http://(account)?myus\\.com/\" to=\"https://$1myus.com/\"/><rule from=\"^http://www\\.myus\\.com/([aA]pp_[tT]hemes/|CMSPages/|en/(?:blog|customer-reviews|global-commerce|home|my-account|news-press|our-services|our-story|personal-shopper|price-register|register|ship-globally|shop-smarter|top-usa-stores|whichmembership|why-myus)/|favicon\\.ico|MyUs/)\" to=\"https://www.myus.com/$1\"/><rule from=\"^http://www\\.myus\\.com/en/login$\" to=\"https://www.myus.com/en/login/\"/></ruleset>", "<ruleset name=\"myVPS.jp\" f=\"MyVPS.jp.xml\"><securecookie host=\"^cp(?:-hv)?\\.myvps\\.jp$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MyVarian.com\" f=\"MyVarian.com.xml\"><securecookie host=\"^\\.myvarian\\.com$\" name=\".+\"/><rule from=\"^http://myvarian\\.com/\" to=\"https://www.myvarian.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MyWOT\" default_off=\"failed ruleset test\" f=\"MyWOT.xml\"><securecookie host=\"^(?:search\\.|www\\.)?mywot\\.com\" name=\".*\"/><securecookie host=\"^\\.mywot\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MyWell-Being.com\" default_off=\"failed ruleset test\" f=\"MyWell-Being.com.xml\"><rule from=\"^http://(?:www\\.)?mywell-being\\.com/\" to=\"https://www.mywell-being.com/\"/></ruleset>", "<ruleset name=\"My Aloe Cleanse.com\" f=\"My_Aloe_Cleanse.com.xml\"><securecookie host=\"^\\.(?:myaloe|trypto)cleanse\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?(myaloe|trypto)cleanse\\.com/\" to=\"https://$1$2cleanse.com/\"/></ruleset>", "<ruleset name=\"my Bluemix.net\" f=\"My_Bluemix.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"My Care In Birmingham.org.uk\" f=\"My_Care_In_Birmingham.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"My Datapipe.com\" f=\"My_Datapipe.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"My Datapipe.net\" f=\"My_Datapipe.net.xml\"><rule from=\"^http://(?:www\\.)?mydatapipe\\.net/\" to=\"https://www.mydatapipe.com/\"/></ruleset>", "<ruleset name=\"My Healthcare Contacts\" f=\"My_Healthcare_Contacts.xml\"><securecookie host=\"^kontakt\\.minavardkontakter\\.se$\" name=\".+\"/><rule from=\"^http://(?:kontakt\\.|www\\.)?minavardkontakter\\.se/\" to=\"https://minavardkontakter.se/\"/></ruleset>", "<ruleset name=\"My IP.ms\" f=\"My_IP.ms.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"my IT Works Events.com\" default_off=\"mismatched\" f=\"My_IT_Works_Events.com.xml\"><securecookie host=\"^(?:w*\\.)?myitworksevents\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"My IU.org\" f=\"My_IU.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"my InMon.com\" f=\"My_InMon.com.xml\"><securecookie host=\"^\\.www\\.myinmon\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?myinmon\\.com/\" to=\"https://www.myinmon.com/\"/></ruleset>", "<ruleset name=\"My LiveChat.com (partial)\" f=\"My_LiveChat.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"My Media Magnet.com\" default_off=\"expired, mismatched, self-signed\" f=\"My_Media_Magnet.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.mymediamagnet\\.com/\" to=\"https://mymediamagnet.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"My OptPlus secure.com\" default_off=\"failed ruleset test\" f=\"My_OptPlus_secure.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"My OptimizerPlus.com\" default_off=\"failed ruleset test\" f=\"My_OptimizerPlus.com.xml\"><securecookie host=\"^www\\.myoptimizerplus\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"My Portable World.com\" f=\"My_Portable_World.com.xml\"><securecookie host=\"^\\.?myportableworld\\.com$\" name=\".+\"/><rule from=\"^http://myportableworld\\.com/\" to=\"https://www.myportableworld.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"My Radio Creative\" default_off=\"failed ruleset test\" f=\"My_Radio_Creative.xml\"><securecookie host=\"^\\.myradiocreative\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"My Shadow.com\" f=\"My_Shadow.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"My Shazam.com\" default_off=\"missing certificate chain\" f=\"My_Shazam.com.xml\"><securecookie host=\"^myshazam\\.com$\" name=\".+\"/><rule from=\"^http://www\\.myshazam\\.com/\" to=\"https://www.shazam.com/\"/><rule from=\"^http://myshazam\\.com/\" to=\"https://myshazam.com/\"/></ruleset>", "<ruleset name=\"My SlideRule.com\" f=\"My_SlideRule.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?mysliderule\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"My Sullivan News.com (partial)\" f=\"My_Sullivan_News.com.xml\"><rule from=\"^http://(?:www\\.)?mysullivannews\\.com/(?=wp-content/|wp-includes/)\" to=\"https://secure.hostmonster.com/~mysulliv/\"/></ruleset>", "<ruleset name=\"My Virtual Paper (partial)\" f=\"My_Virtual_Paper.xml\"><securecookie host=\"^secure\\.admin\\.myvirtualpaper\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"My Year Book.com\" f=\"My_Year_Book.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"my phone.coop\" f=\"My_phone.coop.xml\"><rule from=\"^http://myphone\\.coop/+([^?]*).*\" to=\"https://www.thephone.coop/$1\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mycdn.me\" f=\"Mycdn.me.xml\"><rule from=\"^http://gic7\\.mycdn\\.me/\" to=\"https://groupava1.mycdn.me/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"My Cliplister.com\" f=\"Mycliplister.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mycotopia.net\" f=\"Mycotopia.net.xml\"><securecookie host=\"^mycotopia\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?mycotopia\\.net/\" to=\"https://mycotopia.net/\"/></ruleset>", "<ruleset name=\"Mydigipass.com\" f=\"Mydigipass.com.xml\"><securecookie host=\"^(\\w+\\.)?mydigipass\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mydrive\" f=\"Mydrive.xml\"><securecookie host=\"^(?:.*\\.)?mydrive\\.ch$\" name=\".*\"/><rule from=\"^http://(www|static|webdav)\\.?mydrive\\.ch/\" to=\"https://$1.mydrive.ch/\"/></ruleset>", "<ruleset name=\"myfolder (partial)\" default_off=\"failed ruleset test\" f=\"Myfolder.xml\"><securecookie host=\"^(?:www\\.)?myfolder\\.net$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Myftp.utechsoft.com\" f=\"Myftp.utechsoft.com.xml\"><rule from=\"^http://(?:www\\.)?myftp\\.utechsoft\\.com/\" to=\"https://myftp.utechsoft.com/\"/></ruleset>", "<ruleset name=\"Mygoya.de\" default_off=\"refused\" f=\"Mygoya.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Myhappyoffice.com\" default_off=\"Some parts of the sites don't work\" f=\"Myhappyoffice.com.xml\"><rule from=\"^http://(?:www\\.)?myhappyoffice\\.com/\" to=\"https://www.myhappyoffice.com/\"/></ruleset>", "<ruleset name=\"MyHeritage\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Myheritage.xml\"><exclusion pattern=\"^http://(blog|helpcenter)\\.myheritage\\.(com\\.br|co\\.il|no|nl|de|dk|se|fr|fi|es|pl)\"/><securecookie host=\"^(?!blog|helpcenter)(\\w*\\.)?myheritage\\.(com\\.br|co\\.il|com|no|nl|de|dk|se|fr|fi|es|pl)\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MyHeritageImages.com\" f=\"Myheritageimages.com.xml\"><securecookie host=\"^(www\\.)?myheritageimages.com\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"myinterfase.com\" f=\"Myinterfase.com.xml\"><securecookie host=\"^(?:www\\.)?myinterfase\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"myitcv.org.uk (partial)\" default_off=\"failed ruleset test\" f=\"Myitcv.org.uk.xml\"><securecookie host=\"^(?:www\\.)?myitcv\\.org\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?myitcv\\.org\\.uk/\" to=\"https://www.myitcv.org.uk/\"/></ruleset>", "<ruleset name=\"myjobscotland.gov.uk (partial)\" f=\"Myjobscotland.gov.uk.xml\"><exclusion pattern=\"^http://old\\.myjobscotland\\.gov\\.uk/\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mylevel3.net\" f=\"Mylevel3.net.xml\"><securecookie host=\"^mylevel3\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mynaweb.com (partial)\" default_off=\"failed ruleset test\" f=\"Mynaweb.com.xml\"><securecookie host=\"^mynaweb\\.com$\" name=\".+\"/><rule from=\"^http://(api\\.|www\\.)?mynaweb\\.com/\" to=\"https://$1mynaweb.com/\"/><rule from=\"^http://cdn\\.mynaweb\\.com/\" to=\"https://ddnxkh4q55q4m.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Mynewsdesk.com (partial)\" default_off=\"failed ruleset test\" f=\"Mynewsdesk.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"myregisteredsite.com\" f=\"Myregisteredsite.com.xml\"><securecookie host=\"^.+\\.myregisteredsite\\.com$\" name=\".+\"/><rule from=\"^http://(iscorecard|\\d+\\.sites)\\.myregisteredsite\\.com/\" to=\"https://$1.myregisteredsite.com/\"/></ruleset>", "<ruleset name=\"Myricom.com\" default_off=\"failed ruleset test\" f=\"Myricom.com.xml\"><securecookie host=\"^(?:www\\.)?myricom\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mysitemyway\" default_off=\"failed ruleset test\" f=\"Mysitemyway.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Myskai.ch\" f=\"Myskai.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mysn.de\" f=\"Mysn.de.xml\"><rule from=\"^http://(?:www\\.)?mysn\\.de/\" to=\"https://www.mysn.de/\"/></ruleset>", "<ruleset name=\"Myspace.com\" f=\"Myspace.xml\"><securecookie host=\"^\\.\" name=\".\"/><rule from=\"^http://(b\\d+\\.|www\\.)?myspace\\.com/\" to=\"https://$1myspace.com/\"/></ruleset>", "<ruleset name=\"Myspace CDN.com\" f=\"Myspace_CDN.com.xml\"><rule from=\"^http://a(\\d)\\.ec-images\\.myspacecdn\\.com/\" to=\"https://a$1-images.myspacecdn.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MythTV.org\" f=\"MythTV.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mythic Beasts\" f=\"Mythic-Beasts.xml\"><securecookie host=\"^\\w+\\.mythic-beasts\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mythical Creatures List\" default_off=\"expired, self-signed\" f=\"Mythical_Creatures_List.xml\"><rule from=\"^http://(?:www\\.)?mythicalcreatureslist\\.com/\" to=\"https://mythicalcreatureslist.com/\"/></ruleset>", "<ruleset name=\"Mzstatic.com (partial)\" f=\"Mzstatic.com.xml\"><rule from=\"^http://a(\\d)\\.mzstatic\\.com/\" to=\"https://s$1.mzstatic.com/\"/><rule from=\"^http://r\\.mzstatic\\.com/\" to=\"https://s.mzstatic.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"N-2.org\" default_off=\"failed ruleset test\" f=\"N-2.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"N-ERGIE Aktiengesellschaft\" f=\"N-ERGIE.xml\"><rule from=\"^http://www\\.n-ergie\\.de/\" to=\"https://www.n-ergie.de/\"/></ruleset>", "<ruleset name=\"N-JOY.de\" f=\"N-JOY.de.xml\"><securecookie host=\"^(www\\.)?n-joy\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"N-Kesteven.gov.uk (partial)\" f=\"N-Kesteven.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"N-Somerset.gov.uk\" default_off=\"failed ruleset test\" f=\"N-Somerset.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://n-somerset\\.gov\\.uk/\" to=\"https://www.n-somerset.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"N-able.com (partial)\" f=\"N-able.com.xml\"><securecookie host=\"^secure\\.n-able\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"n0where.org\" f=\"N0where.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NAACP.org\" f=\"NAACP.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NAACPCompanyStore.org\" f=\"NAACP_Company_Store.org.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NAACPImageAwards.net\" f=\"NAACP_Image_Awards.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NAB.org\" f=\"NAB.org.xml\"><securecookie host=\"^www\\.nab\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?nab\\.org/\" to=\"https://www.nab.org/\"/></ruleset>", "<ruleset name=\"National Australia Bank\" default_off=\"failed ruleset test\" f=\"NAB.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NACL.org\" f=\"NACL.org.xml\"><securecookie host=\"^(?:www\\.)?nacdl\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NADAguides\" f=\"NADAguides.xml\"><securecookie host=\"^.*\\.nadaguides(?:store)?\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?nadaguides(store)?\\.com/\" to=\"https://www.nadaguides$1.com/\"/><rule from=\"^http://images(?:-ssl)?\\.nadaguides\\.com/\" to=\"https://images-ssl.nadaguides.com/\"/></ruleset>", "<ruleset name=\"NASA.gov (false MCB)\" platform=\"mixedcontent\" f=\"NASA.gov-falsemixed.xml\"><exclusion pattern=\"^http://reverb\\.echo\\.nasa\\.gov/(?!/*assets/)\"/><exclusion pattern=\"^http://smap\\.jpl\\.nasa\\.gov/(?!/*(?:assets|system)/)\"/><securecookie host=\"^\\.?[jw]\" name=\".\"/><rule from=\"^http://jwst\\.nasa\\.gov/\" to=\"https://jwst.gsfc.nasa.gov/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NASA.gov (partial)\" default_off=\"failed ruleset test\" f=\"NASA.gov.xml\"><exclusion pattern=\"^http://(?:[^./]+\\.){2,}(?:towerfts\\.[cn]sbf|nasasearch)\\.nasa\\.gov/\"/><exclusion pattern=\"^http://reverb\\.echo\\.nasa\\.gov/(?!/*reverb/(?:(?:orders|shopping_cart)(?:$|[?/])))\"/><securecookie host=\"^(?!reverb\\.echo\\.).\" name=\".\"/><rule from=\"^http://www\\.data\\.nasa\\.gov/\" to=\"https://data.nasa.gov/\"/><rule from=\"^http://helios\\.gsfc\\.nasa\\.gov/\" to=\"https://cosmicopia.gsfc.nasa.gov/\"/><rule from=\"^http://dsm\\.gsfc\\.nasa\\.gov/+([^?]*).*\" to=\"https://decadal.gsfc.nasa.gov/\"/><rule from=\"^http://www\\.gsfc\\.nasa\\.gov/\" to=\"https://www.nasa.gov/centers/goddard/home/\"/><rule from=\"^http://heasarc\\.nasa\\.gov/\" to=\"https://heasarc.gsfc.nasa.gov/\"/><rule from=\"^http://itsecurity\\.nasa\\.gov/[^?]*\" to=\"https://www.nasa.gov/offices/ocio/itsecurity/index.html\"/><rule from=\"^http://marsstaticcdn\\.jpl\\.nasa\\.gov/\" to=\"https://d3r05mwudimf00.cloudfront.net/\"/><rule from=\"^http://metrics\\.jpl\\.nasa\\.gov/\" to=\"https://jpl-nasa-gov.122.2o7.net/\"/><rule from=\"^http://sse\\.jpl\\.nasa\\.gov/\" to=\"https://solarsystem.nasa.gov/\"/><rule from=\"^http://mars\\.nasa\\.gov/\" to=\"https://mars.jpl.nasa.gov/\"/><rule from=\"^http://www\\.msfc\\.nasa\\.gov/\" to=\"https://www.nasa.gov/centers/marshall/home/\"/><rule from=\"^http://(nccs|nssc)\\.nasa\\.gov/\" to=\"https://www.$1.nasa.gov/\"/><rule from=\"^http://nscs\\.nasa\\.gov/.*\" to=\"https://nasapeople.nasa.gov/redirect.htm\"/><rule from=\"^http://search\\.nasa\\.gov/+\" to=\"https://nasasearch.nasa.gov/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NASASpaceFlight.com\" f=\"NASASpaceFlight.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NASDAQ (partial)\" platform=\"mixedcontent\" f=\"NASDAQ.xml\"><securecookie host=\"^(?:secure\\.|www\\.)?directorsdesk\\.com$\" name=\".+\"/><securecookie host=\"^community\\.nasdaq\\.com$\" name=\".+\"/><securecookie host=\"^corporateintelligence\\.nasdaqomx\\.com$\" name=\".+\"/><securecookie host=\"^dialogue\\.openboard\\.info$\" name=\".+\"/><rule from=\"^http://secure\\.directorsdesk\\.com/\" to=\"https://secure.directorsdesk.com/\"/><rule from=\"^http://community\\.nasdaq\\.com/\" to=\"https://community.nasdaq.com/\"/><rule from=\"^http://(corporateintelligence|listingcenter)\\.nasdaqomx\\.com/\" to=\"https://$1.nasdaqomx.com/\"/><rule from=\"^http://dialogue\\.openboard\\.info/\" to=\"https://dialogue.openboard.info/\"/></ruleset>", "<ruleset name=\"Nemzeti Adó- és Vámhivatal\" f=\"NAV.gov.hu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NAVTEQ (problematic)\" default_off=\"mismatched\" f=\"NAVTEQ-problematic.xml\"><rule from=\"^http://corporate\\.navteq\\.com/\" to=\"https://corporate.navteq.com/\"/></ruleset>", "<ruleset name=\"NAVTEQ (partial)\" default_off=\"failed ruleset test\" f=\"NAVTEQ.xml\"><securecookie host=\"^mapreporter\\.navteq\\.com$\" name=\".+\"/><rule from=\"^http://(?:www(?:2-test)?\\.)?navteq\\.com/\" to=\"https://www.navteq.com/\"/><rule from=\"^http://(?:css\\.)?mapreporter\\.navteq\\.com/\" to=\"https://mapreporter.navteq.com/\"/><rule from=\"^http://(?:www\\.)?navteqmedia\\.com/\" to=\"https://primeplace.nokia.com/\"/></ruleset>", "<ruleset name=\"NAY.sk\" f=\"NAY.sk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NBC News (partial)\" default_off=\"mismatched\" f=\"NBC-News.xml\"><rule from=\"^http://(?:www\\.)?nbcnews\\.com/\" to=\"https://www.nbcnews.com/\"/><rule from=\"^http://(cosmiclog|redtape)\\.nbcnews\\.com/\" to=\"https://$1.nbcnews.com/\"/></ruleset>", "<ruleset name=\"NBCUniversal Media (partial)\" default_off=\"failed ruleset test\" f=\"NBCUniversal_Media.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://nbcudigitaladops\\.com/\" to=\"https://www.nbcudigitaladops.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NBN Co.com.au\" default_off=\"failed ruleset test\" f=\"NBN_Co.com.au.xml\"><securecookie host=\"^(?:www\\d?)?\\.nbnco\\.com\\.au$\" name=\".+\"/><rule from=\"^http://(?:www1?\\.)?nbnco\\.com\\.au/\" to=\"https://www1.nbnco.com.au/\"/><rule from=\"^http://(autodiscover|exch-cas-[12]|outlook\\d?|www2)\\.nbnco\\.com\\.au/\" to=\"https://$1.nbnco.com.au/\"/></ruleset>", "<ruleset name=\"Notebooks Wie Neu\" f=\"NBWN.xml\"><rule from=\"^http://(?:www\\.)?nbwn\\.de/\" to=\"https://www.nbwn.de/\"/></ruleset>", "<ruleset name=\"NC.me\" f=\"NC.me.xml\"><rule from=\"^http://nc\\.me/\" to=\"https://www.nc.me/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NCC Group.com\" f=\"NCC_Group.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NCC Group.trust\" f=\"NCC_Group.trust.xml\"><securecookie host=\"^(?:www\\.)?nccgroup\\.trust$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NCC Group Domain Services.com\" f=\"NCC_Group_Domain_Services.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NCISF.org\" default_off=\"failed ruleset test\" f=\"NCISF.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NCJS.gov\" default_off=\"failed ruleset test\" f=\"NCJRS.gov.xml\"><securecookie host=\"^(?:puborder\\.|www\\.)?ncjrs\\.gov$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NCL.ac.uk (partial)\" default_off=\"failed ruleset test\" f=\"NCL.ac.uk.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NCRIC\" f=\"NCRIC.xml\"><securecookie host=\"^ncric\\.org$\" name=\".+\"/><rule from=\"^http://ncric\\.org/\" to=\"https://ncric.org/\"/><rule from=\"^http://www\\.ncric\\.org/.*\" to=\"https://ncric.org/\"/></ruleset>", "<ruleset name=\"NCSC.nl\" f=\"NCSC.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NCSI.com\" f=\"NCSI.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NCTA.com\" f=\"NCTA.com.xml\"><rule from=\"^http://(?:www\\.)?ncta\\.com/\" to=\"https://www.ncta.com/\"/></ruleset>", "<ruleset name=\"NCWIT.org\" f=\"NCWIT.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NC Bar.org\" f=\"NC_Bar.org.xml\"><securecookie host=\"^(?:\\.|www\\.)?ncbar\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NCsoft.com\" default_off=\"failed ruleset test\" f=\"NCsoft.com.xml\"><rule from=\"^http://((?:help|secure|static|us|www)\\.)?ncsoft\\.com/\" to=\"https://$1ncsoft.com/\"/></ruleset>", "<ruleset name=\"NDCHost.com\" f=\"NDCHost.com.xml\"><securecookie host=\"^(?:customer|helpdesk|www)\\.ndchost\\.com$\" name=\".+\"/><rule from=\"^http://((?:customer|helpdesk|www)\\.)?ndchost\\.com/\" to=\"https://$1ndchost.com/\"/></ruleset>", "<ruleset name=\"NDI.org\" f=\"NDI.org.xml\"><rule from=\"^http://(?:www\\.)?ndi\\.org/\" to=\"https://www.ndi.org/\"/><rule from=\"^http://(contribute|idp|portal)\\.ndi\\.org/\" to=\"https://$1.ndi.org/\"/></ruleset>", "<ruleset name=\"NDN media services.com\" f=\"NDN_media_services.com.xml\"><rule from=\"^http://vault\\.studio\\.ndnmediaservices\\.com/\" to=\"https://dithr9x6satds.cloudfront.net/\"/></ruleset>", "<ruleset name=\"NEC Display.com (partial)\" f=\"NEC_Display.com.xml\"><securecookie host=\"^partners\\.necdisplay\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?necdisplay\\.com/(?=App_Themes/|favicon\\.ico|flash/assets/(?:image|j)s/|(?:Script|Web)Resource\\.axd|NECHandler\\.ashx|Scripts/|Services/|ShoppingCart/Cart\\.aspx|sifr/|style-css/|style-images/)\" to=\"https://www.necdisplay.com/\"/><rule from=\"^http://partners\\.necdisplay\\.com/\" to=\"https://partners.necdisplay.com/\"/></ruleset>", "<ruleset name=\"NEDCC.org\" f=\"NEDCC.org.xml\"><rule from=\"^http://(?:www\\.)?nedcc\\.org/\" to=\"https://www.nedcc.org/\"/></ruleset>", "<ruleset name=\"NEK Vapor.com\" f=\"NEK_Vapor.com.xml\"><securecookie host=\"^\\.nekvapor\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NEO Direct\" default_off=\"failed ruleset test\" f=\"NEO-Direct.xml\"><securecookie host=\"^www\\.neo-direct\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?neo-direct\\.com/\" to=\"https://www.neo-direct.com/\"/></ruleset>", "<ruleset name=\"NEOS.eu (partial)\" f=\"NEOS.eu.xml\"><securecookie host=\"^(?:.*\\.)?neos\\.eu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NESEA\" default_off=\"http redirect\" f=\"NESEA.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NESL.edu\" f=\"NESL.edu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NEU.edu (partial)\" f=\"NEU.edu.xml\"><securecookie host=\"^(?:laweval|myneu|prod-web)\\.neu\\.edu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Next INpact.com (partial)\" f=\"NEXTINpact.com.xml\"><securecookie host=\"^compte\\.nextinpact\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NFrance (partial)\" f=\"NFrance.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NGP VAN\" f=\"NGP_VAN.xml\"><rule from=\"^http://(?:www\\.)?ngpvan\\.com/\" to=\"https://ngpvan.ngpvanhost.com/\"/><rule from=\"^http://(\\w+)\\.ngpvanhost\\.com/\" to=\"https://$1.ngpvanhost.com/\"/></ruleset>", "<ruleset name=\"NHM.ac.uk (partial)\" f=\"NHM.ac.uk.xml\"><securecookie host=\"^wpymedia\\.nhm\\.ac\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NHN Corporation\" f=\"NHN-Corporation.xml\"><securecookie host=\"^www\\.nhncorp\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?nhn(?:corp)?\\.com/\" to=\"https://www.nhncorp.com/\"/></ruleset>", "<ruleset name=\"NHN Next.org\" f=\"NHN_Next.org.xml\"><rule from=\"^http://(?:www\\.)?nhnnext\\.org/\" to=\"https://www.nhnnext.org/\"/></ruleset>", "<ruleset name=\"NHS Direct (partial)\" default_off=\"failed ruleset test\" f=\"NHS-Direct.xml\"><rule from=\"^http://nhsdirect\\.nhs\\.uk/\" to=\"https://www.nhsdirect.nhs.uk/\"/><rule from=\"^http://(mobile|www)\\.nhsdirect\\.nhs\\.uk/(CheckSymptoms/|fc\\.axd|images/|sitecore/|(?:\\w+/)*~/)\" to=\"https://$1.nhsdirect.nhs.uk/$1\"/></ruleset>", "<ruleset name=\"NHS.uk (false MCB)\" platform=\"mixedcontent\" f=\"NHS.uk-falsemixed.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NHS.uk (partial)\" default_off=\"failed ruleset test\" f=\"NHS.xml\"><exclusion pattern=\"http://(?:www\\.)?bhamcommunity\\.nhs\\.uk/(?!/*(?:[Ee]asy[Ss]ite[Ww]eb/))\"/><exclusion pattern=\"^http://(?:www\\.)?nhs\\.uk/(?!/*(?:_layouts/\\d\\d\\d\\d/|(?:10-minute-shake-up|change4life-beta/campaigns/sugar-smart/home|[Ss]ervice-[Ss]earch/performance/search|start4life/signups/new)(?:$|\\?)|Personalisation/(?:Login|Registration|ResetPassword)\\.aspx|(?:[\\w/-]+/)?PublishingImages/|[Ss]ervice-[Ss]earch/[Cc]ontent/(?:css|img)/|Tools/Documents/|aboutNHSChoices/aboutnhschoices/e-newsletters/Pages/newsletters-home\\.aspx|ipgcontrols/(?:css|image)s/|ipgmedia/|css/|img/))\"/><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^(?!(?:www\\.)?bhamcommunity\\.|www\\.)\\w\" name=\".\"/><rule from=\"^http://nhs\\.uk/\" to=\"https://www.nhs.uk/\"/><rule from=\"^http://(elft|healthcareers|healthiernorthwestlondon|healthystart|neas)\\.nhs\\.uk/\" to=\"https://www.$1.nhs.uk/\"/><rule from=\"^http://kentsexualhealth\\.nhs\\.uk/[^?]*\" to=\"https://www.kent.gov.uk/sexualhealth\"/><rule from=\"^http://www\\.nhscareers\\.nhs\\.uk/.*\" to=\"https://www.healthcareers.nhs.uk/\"/><rule from=\"^http://www\\.n(ice|oo)\\.nhs\\.uk/+\" to=\"https://www.n$1.org.uk/\"/><rule from=\"^http://helpdesk\\.pcc\\.nhs\\.uk/.*\" to=\"https://helpdesk.pcc-cic.org.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NHS ePortfolios.org (partial)\" f=\"NHS_ePortfolios.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.www\\.nhseportfolios\\.org$\" name=\".\"/><rule from=\"^http://nhseportfolios\\.org/\" to=\"https://www.nhseportfolios.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NIAP-CCEVS.org\" f=\"NIAP-CCEVS.org.xml\"><securecookie host=\"^www\\.niap-ccevs\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NIBC Direct.nl\" f=\"NIBC_Direct.nl.xml\"><securecookie host=\".+\\.nibcdirect\\.nl$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?nibcdirect\\.nl/\" to=\"https://www.nibcdirect.nl/\"/><rule from=\"^http://s(ervice|paren)\\.nibcdirect\\.nl/\" to=\"https://s$1.nibcdirect.nl/\"/></ruleset>", "<ruleset name=\"NIC.Ar\" f=\"NIC.Ar.xml\"><securecookie host=\"^nic\\.ar$\" name=\".+\"/><rule from=\"^http://www\\.nic\\.ar/\" to=\"https://nic.ar/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NIC.ad.jp\" f=\"NIC.ad.jp.xml\"><rule from=\"^http://(?:www\\.)?nic\\.ad\\.jp/\" to=\"https://www.nic.ad.jp/\"/></ruleset>", "<ruleset name=\"NIC.br (partial)\" f=\"NIC.br.xml\"><securecookie host=\"^(?:eventos|gter|www\\.gter)\\.nic\\.br$\" name=\".+\"/><rule from=\"^http://((?:eventos|gter|www\\.gter|www)\\.)?nic\\.br/\" to=\"https://$1nic.br/\"/></ruleset>", "<ruleset name=\"NIC.ch\" f=\"NIC.ch.xml\"><securecookie host=\"^www\\.nic\\.ch$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?nic\\.ch/\" to=\"https://www.nic.ch/\"/></ruleset>", "<ruleset name=\"NICE.org.uk (partial)\" default_off=\"failed ruleset test\" f=\"NICE.org.uk.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://nice\\.org\\.uk/\" to=\"https://www.nice.org.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NICTA.com.au (expired)\" default_off=\"expired\" f=\"NICTA.com.au-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NICTA (partial)\" f=\"NICTA.xml\"><rule from=\"^http://((?:owa|ssrg|webmail|www)\\.)?nicta\\.com\\.au/\" to=\"https://$1nicta.com.au/\"/></ruleset>", "<ruleset name=\"NIFC.gov (partial)\" default_off=\"missing certificate chain\" f=\"NIFC.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://nifc\\.gov/\" to=\"https://www.nifc.gov/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NIFTY (buggy)\" default_off=\"https://trac.torproject.org/projects/tor/ticket/7107\" f=\"NIFTY.xml\"><exclusion pattern=\"^http://www\\.nifty\\.com/(?:\\w+$|[^fi]|f[^/]+\\.\\w+$|i[^m].*/|\\w{1,5}/|\\w{7,}/)\"/><exclusion pattern=\"^http://(?:btm|clip)\\.\"/><securecookie host=\"^.*\\.nifty\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?nifty\\.com/(favicon\\.ico|images/)\" to=\"https://www.nifty.com/$1\"/><rule from=\"^http://([\\w\\-]+)\\.nifty\\.com/\" to=\"https://$1.nifty.com/\"/></ruleset>", "<ruleset name=\"NIH.gov (false MCB)\" platform=\"mixedcontent\" f=\"NIH.gov-falsemixed.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NII.ac.jp (mixed content)\" platform=\"mixedcontent\" f=\"NII.ac.jp-mixedcontent.xml\"><securecookie host=\"^www\\.nii\\.ac\\.jp$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NII.ac.jp (partial)\" f=\"NII.ac.jp.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NIIF Intézet (partial)\" default_off=\"failed ruleset test\" f=\"NIIF.xml\"><rule from=\"^http://www\\.hboneplus\\.hu/\" to=\"https://www.hboneplus.hu/\"/><rule from=\"^http://([^@:/]*)\\.niif\\.hu/\" to=\"https://$1.niif.hu/\"/></ruleset>", "<ruleset name=\"NIPS.cc (partial)\" f=\"NIPS.cc.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.nips\\.cc/\" to=\"https://nips.cc/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NJ.com (partial)\" default_off=\"failed ruleset test\" f=\"NJ.com.xml\"><rule from=\"^http://findnsave\\.nj\\.com/(?=static/)\" to=\"https://njcom.findnsave.com/\"/><rule from=\"^http://signup\\.nj\\.com/\" to=\"https://signup.nj.com/\"/></ruleset>", "<ruleset name=\"NJIT.edu (partial)\" f=\"NJIT.edu.xml\"><exclusion pattern=\"^http://(?:www\\.)?njit\\.edu/+(?!.+\\.(?:css|jpg|gif|ico|png)(?:$|\\?)|calendar(?:$|\\?)|cp/login\\.php|uws/feeds/thumb\\.php|uws/ldapimage\\.php)\"/><exclusion pattern=\"^http://r25livepr1\\.njit\\.edu/+(?!.+\\.jpg(?:$|\\?))\"/><exclusion pattern=\"^http://cp4\\.njit\\.edu/+(?!favicon\\.ico|misc/|cp/content/|cps/images/|custom/|site/)\"/><securecookie host=\"^(?:directory|njit-connect)\\.njit\\.edu$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?njit\\.edu/\" to=\"https://www.njit.edu/\"/><rule from=\"^http://(courseschedules|cp4|directory|ist|njit-connect|r25livepr1|webmail)\\.njit\\.edu/\" to=\"https://$1.njit.edu/\"/><rule from=\"^http://mail\\.g\\.njit\\.edu/.*\" to=\"https://mail.google.com/a/njit.edu\"/><rule from=\"^http://my\\.njit\\.edu/[^?]*\" to=\"https://www.njit.edu/cp/login.php\"/></ruleset>", "<ruleset name=\"NJ Edge.Net (partial)\" f=\"NJ_Edge.Net.xml\"><rule from=\"^http://(federation|lists)\\.njedge\\.net/\" to=\"https://$1.njedge.net/\"/></ruleset>", "<ruleset name=\"NK News.org (partial)\" f=\"NK_News.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CDA.nl (partial)\" f=\"NL-Politiek.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NLG.org\" f=\"NLG.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NLLGG.nl\" f=\"NLLGG.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NLUUG.nl (partial)\" f=\"NLUUG.nl.xml\"><rule from=\"^http://(?:www\\.)?nluug\\.nl/\" to=\"https://www.nluug.nl/\"/></ruleset>", "<ruleset name=\"nLayer Communications (partial)\" default_off=\"failed ruleset test\" f=\"NLayer-Communications.xml\"><rule from=\"^http://(?:www\\.)?nlayer\\.net/\" to=\"https://nlayer.cachefly.net/\"/></ruleset>", "<ruleset name=\"NLnet Labs.nl (partial)\" f=\"NLnet_Labs.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NMU\" f=\"NMU.xml\"><securecookie host=\"^(?:.*\\.)?nmugroup\\.com$\" name=\".+\"/><rule from=\"^http://((?:mail|portal|webmail|www)\\.)?nmugroup\\.com/\" to=\"https://$1nmugroup.com/\"/></ruleset>", "<ruleset name=\"NNM-Club\" default_off=\"failed ruleset test\" f=\"NNM-Club.xml\"><exclusion pattern=\"^http://assets-ssl.nnm-club.ws/?$\"/><exclusion pattern=\"^http://assets-ssl.nnm-club.ws/?\\?\"/><exclusion pattern=\"^http://assets-ssl.nnm-club.ws/?#\"/><securecookie host=\"^(?:.*\\.)?nnm-club\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NOO.org.uk\" default_off=\"failed ruleset test\" f=\"NOO.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://noo\\.org\\.uk/\" to=\"https://www.noo.org.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NOS (partial)\" f=\"NOS.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NPAC.com\" default_off=\"missing certificate chain\" f=\"NPAC.com.xml\"><securecookie host=\"^www\\.npac\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NPD Group\" f=\"NPD_Group.xml\"><securecookie host=\"^.+\\.npd\\.com$\" name=\".+\"/><rule from=\"^http://(autodiscover\\.|webmail\\.|www0?\\.)?npd\\.com/\" to=\"https://$1npd.com/\"/><rule from=\"^http://(www\\.)?npdgroup\\.com/\" to=\"https://$1npdgroup.com/\"/></ruleset>", "<ruleset name=\"NPI.org.uk\" default_off=\"expired, mismatched, self-signed\" f=\"NPI.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NPO.nl (partial)\" f=\"NPO.nl.xml\"><securecookie host=\"^(?:help|mijn)\\.npo\\.nl$\" name=\".+\"/><rule from=\"^http://(help|mijn|assets\\.www)\\.npo\\.nl/\" to=\"https://$1.npo.nl/\"/></ruleset>", "<ruleset name=\"NPR.org (partial)\" f=\"NPR.org.xml\"><securecookie host=\"^support\\.kunc\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?kunk\\.org/\" to=\"https://kunc.drupal.publicbroadcasting.net/\"/><rule from=\"^http://support\\.kunc\\.org/\" to=\"https://support.kunc.org/\"/><rule from=\"^http://help\\.npr\\.org/$\" to=\"https://www.fuzeqna.com/npr/consumer/search.asp\"/><rule from=\"^http://help\\.npr\\.org/npr/\" to=\"https://www.fuzeqna.com/npr/\"/><rule from=\"^http://shop\\.npr\\.org/\" to=\"https://shop.npr.org/\"/></ruleset>", "<ruleset name=\"NPTEd.org\" f=\"NPTEd.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nPario (partial)\" f=\"NPario.xml\"><securecookie host=\"^\\.?audiencediscovery\\.npario\\.com$\" name=\".+\"/><securecookie host=\"^\\.npario-inc\\.net$\" name=\"^(?:andata|C\\d{3}_seg|npidl?|npst)$\"/><rule from=\"^http://audiencediscovery\\.npario\\.com/\" to=\"https://audiencediscovery.npario.com/\"/><rule from=\"^http://eu\\.npario-inc\\.net/\" to=\"https://eu.npario-inc.net/\"/></ruleset>", "<ruleset name=\"NR-assets.net\" f=\"NR-assets.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NR-data.net\" f=\"NR-data.net.xml\"><securecookie host=\"^bam\\.nr-data\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NRAO.edu (partial)\" f=\"NRAO.edu.xml\"><securecookie host=\"^(?:bugs|www)?\\.nrao\\.edu$\" name=\".+\"/><rule from=\"^http://((?:svn\\.aoc|archive|blogs|bugs|svn\\.cv|www\\.cv|inside|my|public|safe|science|search|staff|www)\\.)?nrao\\.edu/\" to=\"https://$1nrao.edu/\"/><rule from=\"^http://rsync\\.aoc\\.nrao\\.edu/+\" to=\"https://svn.aoc.nrao.edu/\"/><rule from=\"^http://www\\.vla\\.nrao\\.edu/genpub/tours(?=$|\\?)\" to=\"https://public.nrao.edu/tours/visitvla\"/></ruleset>", "<ruleset name=\"NRC\" f=\"NRC.xml\"><exclusion pattern=\"^http://www\\.nrc\\.nl/next/\"/><securecookie host=\"^\\.nrc\\.nl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nomura Research Institute\" f=\"NRI.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NRKbeta.no\" f=\"NRKbeta.no.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NSRC.org\" f=\"NSRC.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NSS Labs.com\" default_off=\"failed ruleset test\" f=\"NSS_Labs.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NTC Hosting\" platform=\"mixedcontent\" f=\"NTC-Hosting.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NTI.org (partial)\" f=\"NTI.org.xml\"><rule from=\"^http://(?:www\\.)?nti\\.org/(?=get-involved(?:$|[?/])|media/|static/)\" to=\"https://www.nti.org/\"/></ruleset>", "<ruleset name=\"nTLDStats.com\" f=\"NTLDStats.com.xml\"><securecookie host=\"^(?:x)?\\.ntldstats\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NTNU.edu\" f=\"NTNU.edu.xml\"><rule from=\"^http://ntnu\\.edu/\" to=\"https://www.ntnu.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NTNU.no\" default_off=\"failed ruleset test\" f=\"NTNU.no.xml\"><rule from=\"^http://ntnu\\.no/\" to=\"https://www.ntnu.no/\"/><rule from=\"^http://idi\\.ntnu\\.no/\" to=\"https://www.idi.ntnu.no/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NTP.org (partial)\" default_off=\"failed ruleset test\" f=\"NTP.org.xml\"><securecookie host=\"^lists\\.ntp\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NTT.com\" default_off=\"failed ruleset test\" f=\"NTT.com.xml\"><securecookie host=\"^(?:support|www)\\.ntt\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ntt\\.com/\" to=\"https://www.ntt.com/\"/><rule from=\"^http://support\\.ntt\\.com/\" to=\"https://support.ntt.com/\"/></ruleset>", "<ruleset name=\"NTTCom\" default_off=\"failed ruleset test\" f=\"NTTCom.xml\"><securecookie host=\"^www\\.nttcoms\\.com$\" name=\".+\"/><rule from=\"^http://www\\.digitalforest\\.co\\.jp/\" to=\"https://www.digitalforest.co.jp/\"/><rule from=\"^http://(?:www\\.)?nttcoms\\.com/\" to=\"https://www.nttcoms.com/\"/><rule from=\"^http://www01\\.tracer\\.jp/\" to=\"https://www01.tracer.jp/\"/></ruleset>", "<ruleset name=\"NTT Docomo.co.jp\" f=\"NTT_Docomo.co.jp.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NTU.edu.tw (false MCB)\" platform=\"mixedcontent\" f=\"NTU.edu.tw-falsemixed.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NTU.edu.tw (partial)\" default_off=\"failed ruleset test\" f=\"NTU.edu.tw.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.wmail1\\.cc\\.ntu\\.edu\\.tw$\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NTU\" platform=\"mixedcontent\" f=\"NTU.xml\"><rule from=\"^http://(?:www\\.)?ntu\\.ac\\.uk/\" to=\"https://www.ntu.ac.uk/\"/><rule from=\"^http://(?:www\\.)?ntualumni\\.org\\.uk/\" to=\"https://www.ntualumni.org.uk/\"/></ruleset>", "<ruleset name=\"NTVB Media (partial)\" f=\"NTVB-Media.xml\"><securecookie host=\".*\\.iwantmytvmagazine\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NTVSpor\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"NTVSpor.xml\"><securecookie host=\"^(?:www\\.)?ntvspor\\.net$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?ntvspor\\.net/\" to=\"https://www.ntvspor.net/\"/></ruleset>", "<ruleset name=\"NTpandp.com\" default_off=\"failed ruleset test\" f=\"NTpandp.com.xml\"><securecookie host=\"^(?:w*\\.)?ntpandp\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NURD.space\" f=\"NURD.space.xml\"><exclusion pattern=\"^http://(?:www\\.)?nurd\\.space/+(?!$|\\?)\"/><rule from=\"^http://(?:www\\.)?nurd\\.space/.*\" to=\"https://nurdspace.nl/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NURDspace.nl (partial)\" f=\"NURDspace.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NUUG.no\" f=\"NUUG.no.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NV Energy.com\" f=\"NV_Energy.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nVidia (mismatches)\" default_off=\"mismatched\" f=\"NVidia-mismatches.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nVidia.co.uk (partial)\" default_off=\"failed ruleset test\" f=\"NVidia.co.uk.xml\"><rule from=\"^http://nvidia\\.co\\.uk/\" to=\"https://www.nvidia.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nVidia.eu (partial)\" default_off=\"failed ruleset test\" f=\"NVidia.eu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nVidia.com (partial)\" default_off=\"failed ruleset test\" f=\"NVidia.xml\"><exclusion pattern=\"^http://store\\.nvidia\\.com/(?!DRHM/|store\\?Action=(?:DisplayEditProfilePage|DisplayHelpPage)(?:$|&)|sstore\\?)\"/><exclusion pattern=\"^http://www\\.nvidia\\.com/(download|content)/\"/><securecookie host=\"^\\.\" name=\"^(?:incap_ses_\\d+_\\d+|s_\\w+|visid_incap_\\d+)$\"/><securecookie host=\"^(?!shop\\.)\\w\" name=\".\"/><rule from=\"^http://nvidia\\.com/\" to=\"https://www.nvidia.com/\"/><rule from=\"^http://careers\\.nvidia\\.com/.*\" to=\"https://www.nvidia.com/object/careers.html\"/><rule from=\"^http://forums\\.nvidia\\.com/\" to=\"https://forums.geforce.com/\"/><rule from=\"^http://(?:ns)?omniture\\.nvidia\\.com/\" to=\"https://nvidia.122.2o7.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NVisium.com\" default_off=\"failed ruleset test\" f=\"NVisium.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NXTblocks.info\" f=\"NXTblocks.info.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NY Tech Meetup (partial)\" default_off=\"mismatched\" f=\"NY-Tech-Meetup.xml\"><rule from=\"^http://(?:www\\.)?nytm\\.org/made/\" to=\"https://nytm.org/made/\"/></ruleset>", "<ruleset name=\"NYAquarium\" f=\"NYAquarium.com.xml\"><securecookie host=\"^(transform\\.)?nyaquarium\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NYCLA.org\" f=\"NYCLA.org.xml\"><securecookie host=\"^(?:www\\.)?nycla\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NYDailyNews (false MCB)\" platform=\"mixedcontent\" f=\"NYDailyNews.com-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NYDailyNews (partial)\" f=\"NYDailyNews.xml\"><exclusion pattern=\"^http://classifieds\\.nydailynews\\.com/+(?!resource/)\"/><exclusion pattern=\"^http://www\\.nydailynews\\.com/+(?!cmlink/|nydn/|polopoly_fs/)\"/><securecookie host=\"^[^@:/]*\\.nydailynews\\.com$\" name=\".+\"/><rule from=\"^http://(?:assets|static\\d|www)\\.nydailynews\\.com/\" to=\"https://www.nydailynews.com/\"/><rule from=\"^http://(classifiedads|homedelivery|webport1?)\\.nydailynews\\.com(:8443)?/\" to=\"https://$1.nydailynews.com$2/\"/><rule from=\"^http://classifieds\\.nydailynews\\.com/resource/\" to=\"https://casmp.adperfect.com/resource/\"/></ruleset>", "<ruleset name=\"NYI.net (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"NYI.net-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NYI.net (partial)\" default_off=\"failed ruleset test\" f=\"NYI.net.xml\"><exclusion pattern=\"^http://webmail\\.nyi\\.net/+(?!webmailimages/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NYK Europe.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"NYK_Europe.com-falsemixed.xml\"><securecookie host=\"^(?:w*\\.)?nykeurope\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?nykeurope\\.com/(?!favicon\\.ico|images/|media/|modules/|templates/)\" to=\"https://$1nykeurope.com/\"/></ruleset>", "<ruleset name=\"NYK Europe.com (partial)\" f=\"NYK_Europe.com.xml\"><rule from=\"^http://(www\\.)?nykeurope\\.com/(?=favicon\\.ico|images/|media/|modules/|templates/)\" to=\"https://$1nykeurope.com/\"/></ruleset>", "<ruleset name=\"NYSE Euronext\" default_off=\"failed ruleset test\" f=\"NYSE_Euronext.xml\"><securecookie host=\"^(?:bonds|connect|etp|euconsumer|europeanequities|exchanges|globalderivatives|indices|markets|nyse|nysetechnologies|usequities|www)\\.nyx\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?nyx\\.com/\" to=\"https://www.nyx.com/\"/><rule from=\"^http://(bonds|connect|corporate|etp|euconsumer|europeanequities|exchanges|globalderivatives|indices|markets|nyse|nysetechnologies|usequities)\\.nyx\\.com/\" to=\"https://$1.nyx.com/\"/></ruleset>", "<ruleset name=\"NYT.com\" f=\"NYT.com.xml\"><rule from=\"^http://(www\\.)?nyt\\.com/\" to=\"https://www.nytimes.com/\"/><rule from=\"^http://m\\.nyt\\.com/\" to=\"https://mobile.nytimes.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NYT_Co.com (partial)\" default_off=\"failed ruleset test\" f=\"NYT_Co.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NYT_Style.com\" f=\"NYT_Style.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NYT_cn.me\" f=\"NYT_cn.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NYT_eXaminer.com\" f=\"NYT_eXaminer.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NYTimes-Problematic\" f=\"NYTimes-Problematic.xml\"><rule from=\"^http://([\\w-]+)\\.blogs\\.nytimes\\.com/\" to=\"https://$1.blogs.nytimes.com/\"/><rule from=\"^http://documents\\.nytimes\\.com/+([^?]*)\" to=\"https://www.nytimes.com/interactive/projects/documents/$1\"/><rule from=\"^http://www\\.global\\.nytimes\\.com/\" to=\"https://www.nytimes.com/\"/><rule from=\"^http://jobmarket\\.nytimes\\.com/[^?]*\" to=\"https://www.nytimes.com/section/jobs\"/><rule from=\"^http://pimage\\.timespeople\\.nytimes\\.com/\" to=\"https://s3.amazonaws.com/pimage.timespeople.nytimes.com/\"/><rule from=\"^http://regilite\\.nytimes\\.com/regilite\\?product=\" to=\"https://www.nytimes.com/newsletters/regilite/button?product=\"/><rule from=\"^http://regilite\\.nytimes\\.com/$\" to=\"https://www.nytimes.com/\"/><rule from=\"^http://travel\\.nytimes\\.com/(?:$|\\?.*)\" to=\"https://www.nytimes.com/section/travel\"/><rule from=\"^http://travel\\.nytimes\\.com/\" to=\"https://www.nytimes.com/\"/><rule from=\"^http://www\\.nytimes\\.com/twitter\" to=\"https://twitter.com/nytimes\"/><rule from=\"^http://www\\.nytimes\\.com/\" to=\"https://www.nytimes.com/\"/><exclusion pattern=\"^http://www\\.nytimes\\.com/(alweekend|books/|citiesfortomorrow|content/help/contact/directory\\.html|css/|edu-|educationleftnav|elections|events|favicon\\.ico|js/|leadership|marketing/|mem/|membercenter|mostpopular|newsletters|newwork|pages/|ref/|roomfordebate|rss|search/|services/|share|tpnav|vrlpsublink)\"/></ruleset>", "<ruleset name=\"NYTimes\" f=\"NYTimes.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NZBIndex\" f=\"NZBIndex.xml\"><securecookie host=\"^(?:www\\.)?nzbindex\\.com$\" name=\".*\"/><rule from=\"^http://www\\.nzbindex\\.nl/\" to=\"https://www.nzbindex.com/\"/><rule from=\"^http://nzbindex\\.nl/\" to=\"https://nzbindex.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nzbmatrix\" f=\"NZBMatrix.xml\"><securecookie host=\"^(?:. .)nzbmatrix\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?nzbmatrix\\.com/\" to=\"https://nzbmatrix.com/\"/><rule from=\"^http://(search|static)\\.nzbmatrix\\.com/\" to=\"https://$1.nzbmatrix.com/\"/></ruleset>", "<ruleset name=\"NZQA.govt.nz\" f=\"NZQA.govt.nz.xml\"><exclusion pattern=\"^http://(www\\.)?nzqa\\.govt\\.nz/$\"/><rule from=\"^http://(www\\.)?nzqa\\.govt\\.nz/(.+)\\.(jpg|gif)$\" to=\"https://www.nzqa.govt.nz/$2.$3\"/><rule from=\"^http://(api-store|api-test|api-test-store|careers|external-moderation|lms|secure)\\.nzqa\\.govt\\.nz/\" to=\"https://$1.nzqa.govt.nz/\"/><securecookie host=\"^(api-store|careers|secure)\\.nzqa\\.govt\\.nz$\" name=\".+\"/></ruleset>", "<ruleset name=\"NZ Herald.co.nz (problematic)\" default_off=\"mismatched\" f=\"NZ_Herald.co.nz-problematic.xml\"><securecookie host=\"^www\\.nzherald\\.co\\.nz$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?nzherald\\.co\\.nz/\" to=\"https://www.nzherald.co.nz/\"/></ruleset>", "<ruleset name=\"Na VUT.cz\" f=\"Na_VUT.cz.xml\"><securecookie host=\"^(?:www\\.)?navut\\.cz$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nabers.com (partial)\" f=\"Nabers.com.xml\"><exclusion pattern=\"^http://www\\.nabers\\.com/+(?!wp-content/)\"/><securecookie host=\"^\\.nabers\\.com$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nadim.computer\" default_off=\"failed ruleset test\" f=\"Nadim.computer.xml\"><securecookie host=\"^\\.nadim\\.computer$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nadir.org (partial)\" f=\"Nadir.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nagano.cz\" default_off=\"expired, mismatch, self-signed\" f=\"Nagano.cz.xml\"><rule from=\"^http://(?:www\\.)?nagano\\.cz/\" to=\"https://nagano.cz/\"/><rule from=\"^http://([^w]\\w*|w[^w]\\w*)\\.nagano\\.cz/\" to=\"https://$1.nagano.cz/\"/></ruleset>", "<ruleset name=\"Nagra.com\" f=\"Nagra.com.xml\"><rule from=\"^http://(?:www\\.)?nagra\\.com/\" to=\"https://www.nagra.com/\"/><rule from=\"^http://(careers|www2014)\\.nagra\\.com/\" to=\"https://$1.nagra.com/\"/></ruleset>", "<ruleset name=\"naiadsystems.com (partial)\" f=\"Naiadsystems.com.xml\"><securecookie host=\"^\\.naiadsystems\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Naiin.com\" f=\"Naiin.com.xml\"><rule from=\"^http://(?:www\\.)?naiin\\.com/\" to=\"https://www.naiin.com/\"/></ruleset>", "<ruleset name=\"NakedCitizens.eu\" f=\"NakedCitizens.eu.xml\"><securecookie host=\"^(?:www\\.)?nakedcitizens\\.eu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Näkövammaisten keskusliitto\" f=\"Nakovammaisten-Keskusliitto.xml\"><securecookie host=\"^www\\.nkl\\.fi$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?nkl\\.fi/\" to=\"https://www.nkl.fi/\"/></ruleset>", "<ruleset name=\"Name.com\" f=\"Name.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NameBright.com\" f=\"NameBright.com.xml\"><securecookie host=\"^(?:www\\.)?namebright\\.com$\" name=\"^v$\"/><securecookie host=\"^\\.namebright\\.com$\" name=\"^(?:NBSession|icart)$\"/><securecookie host=\"^(?:\\.|www\\.)?namebright\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NameBright static.com\" f=\"NameBright_static.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NameCentr.al\" default_off=\"failed ruleset test\" f=\"NameCentr.al.xml\"><securecookie host=\"^\\.namecentr(?:\\.al|al\\.com)$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?namecentr(\\.al|al\\.com)/\" to=\"https://namecentr$1/\"/></ruleset>", "<ruleset name=\"NameCheap.com\" f=\"NameCheap.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NameMedia (partial)\" f=\"NameMedia.xml\"><securecookie host=\"^partners\\.smartname\\.com$\" name=\".*\"/><rule from=\"^http://(?:origin-)?images\\.sitesense-oo\\.com/\" to=\"https://origin-images.sitesense-oo.com/\"/><rule from=\"^http://partners\\.smartname\\.com/\" to=\"https://partners.smartname.com/\"/></ruleset>", "<ruleset name=\"Namecoin.info\" f=\"Namecoin.info.xml\"><securecookie host=\"^wiki\\.namecoin\\.info$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"namei.org\" f=\"Namei.org.xml\"><rule from=\"^http://namei\\.org/\" to=\"https://blog.namei.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Names.co.uk\" f=\"Names.xml\"><securecookie host=\"^(?:.*\\.)?names\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nancys Gone Green.com\" f=\"Nancys_Gone_Green.com.xml\"><securecookie host=\"^(?:www)?\\.nancysgonegreen\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nandos.com (partial)\" f=\"Nandos.com.xml\"><rule from=\"^http://(?:www\\.)?nandos\\.com/(?=faq(?:$|[?/])|favicon\\.ico|sites/)\" to=\"https://www.nandos.com/\"/></ruleset>", "<ruleset name=\"Nanigans.com (partial)\" default_off=\"failed ruleset test\" f=\"Nanigans.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NanoHUB\" f=\"NanoHUB.xml\"><rule from=\"^http://(?:www\\.)?nanohub\\.org/\" to=\"https://nanohub.org/\"/></ruleset>", "<ruleset name=\"Nanopool\" f=\"Nanopool.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nanorep.com (false MCB)\" platform=\"mixedcontent\" f=\"Nanorep.com-falsemixed.xml\"><securecookie host=\"^\\.support\\.nanorep\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nanorep.com (partial)\" f=\"Nanorep.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NTU.edu.sg (partial)\" f=\"Nanyang-Technological-University.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Naples News.com (partial)\" f=\"Naples_News.com.xml\"><securecookie host=\"^(?:login)?\\.naplesnews\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Napoleon Makeup Academy.com\" default_off=\"failed ruleset test\" f=\"Napoleon_Makeup_Academy.com.xml\"><securecookie host=\"^\\.napoleonmakeupacademy\\.com(?:\\.au)?$\" name=\".+\"/><rule from=\"^http://(www\\.)?napoleonmakeupacademy\\.com(\\.au)?/\" to=\"https://$1napoleonmakeupacademy.com$2/\"/></ruleset>", "<ruleset name=\"Naqshbandi.org\" f=\"Naqshbandi.org.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Naromax\" default_off=\"failed ruleset test\" f=\"Naromax.xml\"><securecookie host=\"^(?:w*\\.)?naromax\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nartac.com\" default_off=\"failed ruleset test\" f=\"Nartac.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nasjonal Sikkerhetsmyndighet (NSM) (partial)\" f=\"Nasjonal_Sikkerhetsmyndighet.xml\"><exclusion pattern=\"^http://blogg?\\.nsm\\.stat\\.no/\"/><securecookie host=\"^(?:.*\\.)?nsm\\.stat\\.no$\" name=\".+\"/><rule from=\"^http://([^/:@]+\\.)?nsm\\.stat\\.no/\" to=\"https://$1nsm.stat.no/\"/></ruleset>", "<ruleset name=\"Nasuni.com (partial)\" f=\"Nasuni.com.xml\"><rule from=\"^http://(www\\.)?nasuni\\.com/(account|evaluate|fonts/|img/|writable/)\" to=\"https://www.nasuni.com/$2\"/><rule from=\"^http://account\\.nasuni\\.com/\" to=\"https://account.nasuni.com/\"/><securecookie host=\"^account\\.nasuni\\.com$\" name=\".*\"/></ruleset>", "<ruleset name=\"nat.ms\" f=\"Nat.ms.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NatMonitor.com\" default_off=\"expired, self-signed\" f=\"NatMonitor.com.xml\"><securecookie host=\"^natmonitor\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?natmonitor\\.com/\" to=\"https://natmonitor.com/\"/></ruleset>", "<ruleset name=\"NationBuilder.com (partial)\" f=\"NationBuilder.xml\"><exclusion pattern=\"^http://status\\.nationbuilder\\.com/\"/><exclusion pattern=\"^http://nationbuilder\\.com/+(?!assets/|(?:create|login)(?:$|\\?)|themes/)\"/><securecookie host=\"^\\.nationbuilder\\.com$\" name=\"^(?:__cfduid|__qca|cf_clearance)$\"/><securecookie host=\"^3dna\\.nationbuilder\\.com$\" name=\".+\"/><rule from=\"^http://www\\.nationbuilder\\.com/\" to=\"https://nationbuilder.com/\"/><rule from=\"^http://([\\w-]+\\.)?nationbuilder\\.com/\" to=\"https://$1nationbuilder.com/\"/></ruleset>", "<ruleset name=\"NationStates.net\" f=\"NationStates.net.xml\"><securecookie host=\"^\\.(?:forum\\.)?nationstates\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The National Academies (partial)\" platform=\"mixedcontent\" f=\"National-Academies.xml\"><securecookie host=\"^www[78]\\.nationalacademies\\.org$\" name=\".+\"/><rule from=\"^http://www(7|8)\\.nationalacademies\\.org/\" to=\"https://www$1.nationalacademies.org/\"/></ruleset>", "<ruleset name=\"National Arbitration Forum (partial)\" f=\"National-Arbitration-Forum.xml\"><securecookie host=\"^secure\\.arb-forum\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"National Broadcasting Company\" default_off=\"mismatched\" f=\"National-Broadcasting-Company.xml\"><securecookie host=\"^(?:www)?\\.nbc\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?nbc\\.com/\" to=\"https://www.nbc.com/\"/></ruleset>", "<ruleset name=\"National Defense Industrial Association (partial)\" f=\"National-Defense-Industrial-Association.xml\"><rule from=\"^http://(www\\.)?n(ationaldefensemagazine|dia)\\.org/(_layouts/|banman/|Divisions/|favicon\\.ico|flash/|images/|(Publishing|SiteCollection)Images/|Style%20Library/|WebResource\\.axd)\" to=\"https://$1n$2.org/$3\"/></ruleset>", "<ruleset name=\"National Express (partial)\" f=\"National-Express.xml\"><securecookie host=\"^(?:coach|help)\\.nationalexpress\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?nationalexpress\\.com/(coach_(?:cs|im)s|im)/\" to=\"https://$1nationalexpress.com/$2/\"/><rule from=\"^http://(coach|help)\\.nationalexpress\\.com/\" to=\"https://$1.nationalexpress.com/\"/><rule from=\"^http://(www\\.)?nationalexpress\\.jobs/\" to=\"https://$1nationalexpress.jobs/\"/></ruleset>", "<ruleset name=\"NIST.gov (partial)\" f=\"National-Institute-of-Standards-and-Technology.xml\"><exclusion pattern=\"^http://web\\.nvd\\.nist\\.gov/$\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NIH.gov (partial)\" default_off=\"failed ruleset test\" f=\"National-Institutes-of-Health.xml\"><exclusion pattern=\"^http://catalog\\.nhlbi\\.nih\\.gov/(?!/*(?:catalog/a4j/s/|favicon\\.ico|pubstatic/|static_includes/|webstatic/))\"/><securecookie host=\"^\\.\" name=\"^s_vi\"/><securecookie host=\"^(?!catalog\\.nhlbi\\.)\\w\" name=\".\"/><rule from=\"^http://((?:nia|niehs|nlm|training)\\.)?nih\\.gov/\" to=\"https://www.$1nih.gov/\"/><rule from=\"^http://www\\.(ncats|lhncbc\\.nlm|sis\\.nlm)\\.nih\\.gov/\" to=\"https://$1.nih.gov/\"/><rule from=\"^http://www\\.chtn\\.nci\\.nih\\.gov/+\" to=\"https://www.chtn.org/\"/><rule from=\"^http://www\\.dtp\\.nci\\.nih\\.gov/+\" to=\"https://dtp.cancer.gov/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"National Optical Astronomy Observatory (partial)\" f=\"National-Optical-Astronomy-Observatory.xml\"><rule from=\"^http://(?:www\\.)?noao\\.edu/\" to=\"https://www.noao.edu/\"/></ruleset>", "<ruleset name=\"National Press Photographers Association\" f=\"National-Press-Photographers-Assoc.xml\"><rule from=\"^http://(?:www\\.)?nppa\\.org/\" to=\"https://www.nppa.org/\"/></ruleset>", "<ruleset name=\"National Rail Enquiries (mismatches)\" default_off=\"mismatched\" f=\"National-Rail-Enquiries-mismatches.xml\"><securecookie host=\"^\\.hotels\\.nationalrail\\.co\\.uk$\" name=\".*\"/><rule from=\"^http://hotels\\.nationalrail\\.co\\.uk/\" to=\"https://hotels.nationalrail.co.uk/\"/></ruleset>", "<ruleset name=\"National Rail Enquiries (partial)\" f=\"National-Rail-Enquiries.xml\"><exclusion pattern=\"^http://ojp\\.nationalrail\\.co\\.uk/service/\"/><rule from=\"^http://(?:www\\.)?nationalrail\\.co\\.uk/images/\" to=\"https://ojp.nationalrail.co.uk/redesign/default/images/\"/><rule from=\"^http://img\\.nationalrail\\.co\\.uk/\" to=\"https://d7cizd44vlm94.cloudfront.net/\"/><rule from=\"^http://js\\.nationalrail\\.co\\.uk/\" to=\"https://d2uncb19xzxhzx.cloudfront.net/\"/><rule from=\"^http://ojp\\.nationalrail\\.co\\.uk/\" to=\"https://ojp.nationalrail.co.uk/\"/></ruleset>", "<ruleset name=\"National Renewable Energy Laboratory (partial)\" f=\"National-Renewable-Energy-Laboratory.xml\"><rule from=\"^http://(www\\.)?nrel\\.gov/(?:((?:news/features/|sustainable_nrel/)?images)1?|((?:data/pix/)?includes|includes_tableless))/\" to=\"https://$1nrel.gov/$2$3/\"/><rule from=\"^http://rredc\\.nrel\\.gov/gifs/\" to=\"https://rredc.nrel.gov/gifs/\"/></ruleset>", "<ruleset name=\"National Research Council Canada\" default_off=\"failed ruleset test\" f=\"National-Research-Council-Canada.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"National Retail Federation (partial)\" platform=\"mixedcontent\" f=\"National-Retail-Federation.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NSF.gov (partial)\" f=\"National-Science-Foundation.xml\"><exclusion pattern=\"^http://www\\.nsf\\.gov/(?:$|\\?|awardsearch|index\\.jsp|statistics)\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http://(fastlane|fldemo)\\.nsf\\.gov/\" to=\"https://www.$1.nsf.gov/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"National Security Agency\" f=\"National-Security-Agency.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"National Snow and Ice Data Center\" f=\"National-Snow-and-Ice-Data-Center.xml\"><securecookie host=\"((daacdata|smap_op)\\.apps|(staging\\.)?extranet|igloo|integration|qa|staging|support)\\.nsidc.org\" name=\".+\"/><exclusion pattern=\"^http://nsidc\\.org/arcticseaicenews/charctic-interactive-sea-ice-graph/\"/><rule from=\"^http://www\\.nsidc\\.org/\" to=\"https://nsidc.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"National University of Ireland (mismatches)\" default_off=\"self-signed\" f=\"National-University-of-Ireland-mismatches.xml\"><rule from=\"^http://www\\.library\\.nuigalway\\.ie/\" to=\"https://www.library.nuigalway.ie/\"/></ruleset>", "<ruleset name=\"National University of Ireland (partial)\" default_off=\"failed ruleset test\" f=\"National-University-of-Ireland.xml\"><securecookie host=\"^(?:www\\.)?deri\\.ie$\" name=\".*\"/><rule from=\"^http://nuigalway\\.ie/\" to=\"https://www.nuigalway.ie/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"National Archives.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"NationalArchivesGovUK.xml\"><exclusion pattern=\"^http://discovery\\.nationalarchives\\.gov\\.uk/(?!/*(?:Content/compiled-css/|Content/[Ii]mages/|SearchUI/Content/|favicon\\.ico|register$|sign-in$))\"/><securecookie host=\".\\.nationalarchives\\.gov\\.uk$\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"National Capital Authority\" f=\"NationalCapitalAuthority.xml\"><rule from=\"^http://(?:www\\.)?nationalcapital\\.gov\\.au/\" to=\"https://www.nationalcapital.gov.au/\"/></ruleset>", "<ruleset name=\"National E-Health Transition Authority\" f=\"NationalE-HealthTransitionAuthority.xml\"><rule from=\"^http://(?:www\\.)?nehta\\.gov\\.au/\" to=\"https://www.nehta.gov.au/\"/></ruleset>", "<ruleset name=\"National Eating Disorders Association\" f=\"NationalEatingDisorders.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"National Ethics Application Form\" f=\"NationalEthicsApplicationForm.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"National Health and Medical Research Council\" f=\"NationalHealthandMedicalResearchCouncil.xml\"><rule from=\"^http://(?:www\\.)?nhmrc\\.gov\\.au/\" to=\"https://www.nhmrc.gov.au/\"/></ruleset>", "<ruleset name=\"National Library of Australia\" f=\"NationalLibraryofAustralia.xml\"><rule from=\"^http://(?:www\\.)?nla\\.gov\\.au/\" to=\"https://www.nla.gov.au/\"/></ruleset>", "<ruleset name=\"NationalLottery\" f=\"NationalLottery.xml\"><securecookie host=\"^(?:.+\\.)?national-lottery\\.co\\.uk$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?national-lottery\\.co\\.uk/\" to=\"https://www.national-lottery.co.uk/\"/></ruleset>", "<ruleset name=\"Portrait.gov.au (partial)\" f=\"NationalPortraitGallery.xml\"><exclusion pattern=\"^http://(?:www\\.)?portrait\\.gov\\.au/+(?!css/|favicon\\.ico|files/|images/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NationalReview.com (partial)\" default_off=\"failed ruleset test\" f=\"NationalReview.com.xml\"><rule from=\"^http://(nr-media-01|www2)\\.nationalreview\\.com/\" to=\"https://$1.nationalreview.com/\"/><rule from=\"^http://(www\\.)?nationalreview\\.com/(images|sites)/\" to=\"https://www.nationalreview.com/$2/\"/></ruleset>", "<ruleset name=\"Pro Choice.org (partial)\" f=\"National_Abortion_Federation.xml\"><exclusion pattern=\"^http://prochoice\\.org/+(?!wp-content/)\"/><securecookie host=\"^\\.prochoice\\.org$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"National Academy of Engineering\" f=\"National_Academy_of_Engineering.xml\"><securecookie host=\"^(?:.*\\.)?nae\\.edu$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?nae\\.edu/\" to=\"https://www.nae.edu/\"/></ruleset>", "<ruleset name=\"National Archives.gov.uk (problematic)\" default_off=\"expired, untrusted root\" f=\"National_Archives.gov.uk-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"National Bureau of Economic Research\" f=\"National_Bureau_of_Economic_Research.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"National Geographic.com (mismatched)\" default_off=\"mismatched\" f=\"National_Geographic.com-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"National Geographic (partial)\" f=\"National_Geographic.xml\"><exclusion pattern=\"^http://m?shop\\.nationalgeographic\\.com/(?!css/|favicon\\.ico|html/|images/|javascript/|ngs/(?:m/)?myaccount/login\\.jsp|omniture/|pwr/)\"/><securecookie host=\"^\\.nationalgeographic\\.com$\" name=\"^(?:gpv_p\\d+|s_\\w+|__utm)\\w$\"/><securecookie host=\"^donate\\.nationalgeographic\\.com$\" name=\".+\"/><rule from=\"^https?://(?:www\\.)?nationalgeographic\\.com/($|\\?|leaderboard/quiz/)\" to=\"https://www-s.nationalgeographic.com/$1\"/><rule from=\"^http://(channel|donate|genographic|media-(?:channel|members|mmdb|yourshot)|members|metrics|mmdb|m?shop|(?:stage\\.)?natgeotv|www-s)\\.nationalgeographic\\.com/\" to=\"https://$1.nationalgeographic.com/\"/><rule from=\"^http://metric\\.nationalgeographic\\.com/\" to=\"https://nationalgeographic-com.112.2o7.net/\"/></ruleset>", "<ruleset name=\"National Grid (partial)\" f=\"National_Grid.xml\"><rule from=\"^http://nationalgrid\\.com/\" to=\"https://www.nationalgrid.com/\"/><rule from=\"^http://beforeyoudig\\.nationalgrid\\.com/\" to=\"https://www.beforeyoudig.nationalgrid.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"National Institute for Social Media\" f=\"National_Institute_for_Social_Media.xml\"><securecookie host=\"^(?:w*\\.)?nismonline\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NOAA.gov (partial)\" default_off=\"failed ruleset test\" f=\"National_Oceanic_and_Atmospheric_Administration.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://ncdc\\.noaa\\.gov/\" to=\"https://www.ncdc.noaa.gov/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NPS.gov (partial)\" default_off=\"failed ruleset test\" f=\"National_Park_Service.xml\"><exclusion pattern=\"^http://(?![^.]+\\.science\\.nature\\.nps\\.gov/)(?:[^.]+\\.){2,}nature\\.nps\\.gov/\"/><exclusion pattern=\"^http://(?:[^.]+\\.){2,}npssa\\.nps\\.gov/\"/><securecookie host=\"^\\.(?:nature\\.)?nps\\.gov$\" name=\"^def_cookie_id$\"/><securecookie host=\"^science\\.nature\\.nps\\.gov$\" name=\"^CF(?:GLOBALS|ID|TOKEN)$\"/><securecookie host=\".\\.nps\\.gov$\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"National Priorities.org\" f=\"National_Priorities.org.xml\"><rule from=\"^http://((?:media|static|www)\\.)?nationalpriorities\\.org/\" to=\"https://$1nationalpriorities.org/\"/></ruleset>", "<ruleset name=\"NTSB.gov (partial)\" f=\"National_Transport_Safety_Board.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"National Travel Health Network and Centre (NaTHNaC)\" default_off=\"failed ruleset test\" f=\"National_Travel_Health_Network_and_Centre.xml\"><rule from=\"^http://nathnac\\.org/\" to=\"https://www.nathnac.org/\"/><rule from=\"^http://([^/:@]+)?\\.nathnac\\.org/\" to=\"https://$1.nathnac.org/\"/></ruleset>", "<ruleset name=\"National Wildlife Foundation\" f=\"National_Wildlife_Foundation.xml\"><securecookie host=\"^www\\.nwf\\.org$\" name=\".+\"/><rule from=\"^http://affiliates\\.nwf\\.org/\" to=\"https://www.nwf.org/Who-We-Are/Affiliate-Partnership.aspx\"/><rule from=\"^http://cardshop\\.nwf\\.org/\" to=\"https://www.cardshopnwf.org/\"/><rule from=\"^http://legacy\\.nwf\\.org/\" to=\"https://www.nwf.org/Legacy.aspx\"/><rule from=\"^http://photos\\.nwf\\.org/\" to=\"https://www.nwf.org/News-and-Magazines/National-Wildlife/PhotoZone.aspx\"/><rule from=\"^http://wildlifeacre\\.nwf\\.org/\" to=\"https://www.nwf.org/Wildlife/Adopt-a-Wildlife-Acre.aspx\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nationale-IT-Security-Monitor.nl\" default_off=\"self-signed\" f=\"Nationale-IT-Security-Monitor.nl.xml\"><rule from=\"^http://(?:www\\.)?nationale-it-security-monitor\\.nl/\" to=\"https://nationale-it-security-monitor.nl/\"/></ruleset>", "<ruleset name=\"nationalserviceresources.org\" default_off=\"failed ruleset test\" f=\"Nationalserviceresources.org.xml\"><rule from=\"^http://(?:www\\.)?(americorpsconnect|nationalserviceresources)\\.org/\" to=\"https://www.$1.org/\"/></ruleset>", "<ruleset name=\"Nationwide Building Society (partial)\" default_off=\"failed ruleset test\" f=\"Nationwide.xml\"><securecookie host=\"^olb2\\.nationet\\.com$\" name=\".+\"/><securecookie host=\"^\\.nationwide\\.co\\.uk$\" name=\"^s_\\w\\w$\"/><securecookie host=\"^(?:\\.?onlinebanking|savings|securemail)\\.nationwide\\.co\\.uk$\" name=\".+\"/><securecookie host=\"^www\\.nationwide-jobs\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://olb2\\.nationet\\.com/\" to=\"https://olb2.nationet.com/\"/><rule from=\"^http://metrics\\.nationwide\\.co\\.uk/\" to=\"https://nationwide-co-uk.d2.sc.omtrdc.net/\"/><rule from=\"^http://(onlinebanking|savings|securemail)\\.nationwide\\.co\\.uk/\" to=\"https://$1.nationwide.co.uk/\"/><rule from=\"^http://(?:www\\.)?nationwide-jobs\\.co\\.uk/\" to=\"https://www.nationwide-jobs.co.uk/\"/><rule from=\"^http://olb\\.nationwide(international\\.com|uk\\.ie)/\" to=\"https://olb.nationwide$1/\"/></ruleset>", "<ruleset name=\"Nativo.net (partial)\" default_off=\"failed ruleset test\" f=\"Nativo.net.xml\"><securecookie host=\"^(?:admin|beta)\\.nativo\\.net$\" name=\".+\"/><rule from=\"^http://(www\\.)?nativo\\.net/\" to=\"https://$1nativo.net/\"/><rule from=\"^http://(admin|beta)\\.nativo\\.net/\" to=\"https://$1.nativo.net/\"/></ruleset>", "<ruleset name=\"National American Arab Nursing Association\" default_off=\"failed ruleset test\" f=\"Natl-American-Arab-Nursing-Assn.xml\"><rule from=\"^(?:http://(?:www\\.)?|https://www\\.)n-aana\\.org/\" to=\"https://n-aana.org/\"/></ruleset>", "<ruleset name=\"National Children's Leukemia Foundation\" default_off=\"failed ruleset test\" f=\"Natl-Childrens-Leukemia-Foundation.xml\"><rule from=\"^http://(?:www\\.)?leukemiafoundation\\.org/\" to=\"https://www.leukemiafoundation.org/\"/></ruleset>", "<ruleset name=\"National Federation of the Blind (partial)\" f=\"Natl-Federation-of-the-Blind.xml\"><rule from=\"^http://(?:www\\.)?nfb\\.org/\" to=\"https://nfb.org/\"/></ruleset>", "<ruleset name=\"National Vulvodynia Association\" f=\"Natl-Vulvodynia-Association.xml\"><rule from=\"^(?:http://(?:www\\.)?|https://)nva\\.org/\" to=\"https://www.nva.org/\"/></ruleset>", "<ruleset name=\"Nattstad.se\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Nattstad.se.xml\"><rule from=\"^http://www\\.nattstad\\.se/\" to=\"https://www.nattstad.se/\"/><rule from=\"^http://nattstad\\.se/\" to=\"https://www.nattstad.se/\"/></ruleset>", "<ruleset name=\"Natural Environment Research Council (partial)\" f=\"Natural-Environment-Research-Council.xml\"><securecookie host=\"^hds\\.nerc\\.ac\\.uk$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Natural Message.com\" default_off=\"failed ruleset test\" f=\"Natural_Message.com.xml\"><rule from=\"^http://www\\.naturalmessage\\.com/\" to=\"https://naturalmessage.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Natural Resources.Wales\" f=\"Natural_Resources.Wales.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Natural Skin Shop\" default_off=\"failed ruleset test\" f=\"Natural_Skin_Shop.xml\"><securecookie host=\"^.*\\.naturalskinshop\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nature.com\" f=\"Nature.com.xml\"><securecookie host=\"^secure\\.nature\\.com$\" name=\".*\"/><rule from=\"^http://(deutsche\\.)?nature\\.com/\" to=\"https://www.nature.com/\"/><rule from=\"^http://(biotech|genetics|materials|medicalresearch|neurosci|physics)\\.nature\\.com/\" to=\"https://www.nature.com/$1//index.html\"/><rule from=\"^http://(cellbio|structbio)\\.nature\\.com/\" to=\"https://www.nature.com/molcellbio//index.html\"/><rule from=\"^http://(www\\.)?guide\\.nature\\.com/\" to=\"https://www.nature.com/nbt/index.html\"/><rule from=\"^http://(www\\.)?immunology\\.nature\\.com/\" to=\"https://www.nature.com/subjects/immunology\"/><rule from=\"^http://(www\\.)?medicine\\.nature\\.com/\" to=\"https://www.nature.com/medicalresearch//index.html\"/><rule from=\"^http://(www\\.)?naturejobs\\.nature\\.com/\" to=\"https://www.nature.com/naturejobs/science/\"/><rule from=\"^http://protocols\\.nature\\.com/\" to=\"https://www.nature.com/protocolexchange/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Nature Conservancy (partial)\" f=\"Nature.org.xml\"><securecookie host=\"^shop\\.nature\\.org$\" name=\".*\"/><rule from=\"^http://adopt\\.nature\\.org/\" to=\"https://www.nature.org/membership-giving/adopt-an-acre/\"/><rule from=\"^http://(blog|change)\\.nature\\.org/\" to=\"https://www.nature.org/blog/index.htm\"/><rule from=\"^http://earthday\\.nature\\.org/\" to=\"https://www.nature.org/photos-and-video/photography/photo-contest/index.htm?src=r.earthday.whatsyournature\"/><rule from=\"^http://(www\\.)?giftplanning\\.nature\\.org/\" to=\"https://www.nature.org/gift-planning/\"/><rule from=\"^http://help\\.nature\\.org/\" to=\"https://www.nature.org/member-care/\"/><rule from=\"^http://my\\.nature\\.org/\" to=\"https://support.nature.org/site/SPageNavigator/supporter/login_main.html\"/><rule from=\"^http://(support\\.)?nature\\.org/\" to=\"https://www.nature.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nature Shop (partial)\" f=\"Nature_Shop.xml\"><rule from=\"^http://(www\\.)?natureshop\\.com/(cart/|Content/|s/|secure/|Support/index|upload/)\" to=\"https://$1natureshop.com/$2\"/></ruleset>", "<ruleset name=\"Naturvardsverket.se\" f=\"Naturvardsverket.se.xml\"><rule from=\"^http://www\\.naturvardsverket\\.se/\" to=\"https://www.naturvardsverket.se/\"/><rule from=\"^http://naturvardsverket\\.se/\" to=\"https://naturvardsverket.se/\"/></ruleset>", "<ruleset name=\"Naughty Dog\" f=\"NaughtyDog.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://naughtydog\\.com/\" to=\"https://www.naughtydog.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Naughty Show Reviews.com (partial)\" default_off=\"broken\" f=\"Naughty_Show_Reviews.com.xml\"><securecookie host=\"^\\.naughtyshowreviews\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Naukri.com (partial)\" default_off=\"failed ruleset test\" f=\"Naukri.xml\"><securecookie host=\"^\\.\" name=\"^_ga\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://naukri\\.com/\" to=\"https://www.naukri.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nautil.us (partial)\" f=\"Nautil.us.xml\"><rule from=\"^http://shop\\.nautil\\.us/\" to=\"https://shop.nautil.us/\"/><rule from=\"^http://static\\.nautil\\.us/\" to=\"https://d3chnh8fr629l6.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Navalny.com\" f=\"Navalny.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Navdem.com\" default_off=\"failed ruleset test\" f=\"Navdem.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Naver.com (partial)\" f=\"Naver.com.xml\"><exclusion pattern=\"^http://crossmedia\\.naver\\.com/+(?!css/|favicon\\.ico|renewal_\\d+/)\"/><exclusion pattern=\"^http://help\\.checkout\\.naver\\.com/+(?!fpsfiles/|static/)\"/><exclusion pattern=\"^http://partners\\.naver\\.com/+(?!css/|img/)\"/><exclusion pattern=\"^http://ips\\.storefarm\\.naver\\.com/+(?!css/)\"/><securecookie host=\"^(?:(?:admin\\.|order\\.)?checkout|sell\\.storefarm)\\.naver\\.com$\" name=\".+\"/><rule from=\"^http://(calendar|(?:(?:admin|help|order)\\.)?checkout|crossmedia|happybean|help|(?:m\\.)?mail[12]?|ssl\\.mileage|nid|static\\.nid|partners|img\\.searchad|sell\\.shop|(?:ips|sell)\\.storefarm|submit)\\.naver\\.com/\" to=\"https://$1.naver.com/\"/><rule from=\"^http://(?:ssl\\.)?mileage\\.naver\\.com/\" to=\"https://ssl.mileage.naver.com/\"/></ruleset>", "<ruleset name=\"Naver.net (partial)\" f=\"Naver.net.xml\"><rule from=\"^http://img\\.calendar\\.naver\\.net/\" to=\"https://img.calendar.naver.net/\"/><rule from=\"^http://(static\\.checkout|static\\.mileage)\\.naver\\.net/\" to=\"https://ssl.pstatic.net/$1/\"/></ruleset>", "<ruleset name=\"Naver Corp.com\" f=\"Naver_Corp.com.xml\"><rule from=\"^http://(?:www\\.)?navercorp\\.com/\" to=\"https://www.navercorp.com/\"/></ruleset>", "<ruleset name=\"Navigant Research.com (partial)\" f=\"Navigant_Research.com.xml\"><rule from=\"^http://(www\\.)?navigantresearch\\.com/(?=favicon\\.ico|wordpress/wp-content/|wordpress/wp-login\\.php|wp-assets/|wp-content/)\" to=\"https://$1navigantresearch.com/\"/></ruleset>", "<ruleset name=\"Nawaat\" f=\"Nawaat.xml\"><securecookie host=\"^nawaat\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Naytev.com (partial)\" f=\"Naytev.com.xml\"><rule from=\"^http://naytev\\.com/\" to=\"https://www.naytev.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nazwa.pl (partial)\" f=\"Nazwa.pl.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^_gat?$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ncloud.dk\" default_off=\"failed ruleset test\" f=\"Ncloud.dk.xml\"><rule from=\"^http://partner\\.ncloud\\.dk/\" to=\"https://partner.ncloud.dk/\"/></ruleset>", "<ruleset name=\"Norwegian Digital Learning Arena\" f=\"Ndla.no.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ndr.de\" f=\"Ndr.de.xml\"><securecookie host=\"^(www\\.|static\\.|hbbtv\\.|ard\\.|daserste\\.)?ndr\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Neal Poole\" f=\"Neal_Poole.xml\"><rule from=\"^http://(?:www\\.)?nealpoole\\.com/\" to=\"https://nealpoole.com/\"/></ruleset>", "<ruleset name=\"Nearbuysystems.com\" default_off=\"failed ruleset test\" f=\"Nearbuysystems.com.xml\"><securecookie host=\"^luneta\\.nearbuysystems\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NearlyFreeSpeech.NET\" f=\"NearlyFreeSpeech.NET.xml\"><securecookie host=\"^\\.members\\.nearlyfreespeech\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NeatoShop.com\" f=\"NeatoShop.xml\"><securecookie host=\"^\\.neatoshop\\.com$\" name=\".*\"/><rule from=\"^http://(?:static\\.|(www\\.))?neatoshop\\.com/\" to=\"https://$1neatoshop.com/\"/></ruleset>", "<ruleset name=\"Nebelwelt.net\" f=\"Nebelwelt.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Neběží.cz\" default_off=\"failed ruleset test\" f=\"Nebezi.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nebrija.com\" default_off=\"failed ruleset test\" f=\"Nebrija.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nebula\" default_off=\"failed ruleset test\" f=\"Nebula.xml\"><securecookie host=\"^(?:www)?\\.nebula\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Necessary and Proportionate.org\" f=\"Necessary_and_Proportionate.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Neck2Neck\" f=\"Neck2Neck.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Northeast Credit Union\" platform=\"mixedcontent\" f=\"Necuhb.xml\"><rule from=\"^http://([^/:@]*)\\.necuhb\\.org/\" to=\"https://$1.necuhb.org/\"/><rule from=\"^https://(www\\.)?necu\\.org/\" to=\"https://$1necu.org/\"/></ruleset>", "<ruleset name=\"NedLinux.com\" f=\"NedLinux.com.xml\"><rule from=\"^http://(?:www\\.)?nccc\\.nl/\" to=\"https://www.nccc.nl/\"/><rule from=\"^http://(?:www\\.)?nedlinux\\.com/\" to=\"https://nedlinux.com/\"/><rule from=\"^http://webmail\\.nedlinux\\.com/\" to=\"https://webmail.nedlinux.com/\"/><securecookie host=\"^www\\.nccc\\.nl$\" name=\".*\"/><securecookie host=\"^(?:www\\.)?nedlinux\\.com$\" name=\".*\"/></ruleset>", "<ruleset name=\"NL Overheid\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Nederland.xml\"><rule from=\"^http://(?:www\\.)?([\\w-]+)\\.nl/\" to=\"https://www.$1.nl/\"/></ruleset>", "<ruleset name=\"NeedMoreHits.com\" default_off=\"mismatched\" f=\"NeedMoreHits.com.xml\"><securecookie host=\"^www\\.needmorehits\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?needmorehits\\.com/\" to=\"https://www.needmorehits.com/\"/></ruleset>", "<ruleset name=\"Neelwafurat.com\" platform=\"mixedcontent\" f=\"Neelwafurat.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NegativeSum.net\" default_off=\"expired\" f=\"NegativeSum.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NegotiatingSalary.com\" default_off=\"failed ruleset test\" f=\"NegotiatingSalary.com.xml\"><securecookie host=\"^\\.negotiatingsalary.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nehnutelnosti.sk\" f=\"Nehnutelnosti.sk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Neko.im\" f=\"Neko.im.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nelly.com\" f=\"Nelly.com.xml\"><rule from=\"^http://www\\.nelly\\.com/\" to=\"https://nelly.com/\"/><rule from=\"^http://nelly\\.com/\" to=\"https://nelly.com/\"/></ruleset>", "<ruleset name=\"Nelonen.fi (mixed videos)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Nelonen.fi-mixedvideo.xml\"><exclusion pattern=\"^http://(?:www\\.)?nelonen\\.fi/(?:crossdomain\\.xml|utils/video_config/geoblock\\.php)\"/><exclusion pattern=\"^http://(?:www\\.)?nelonen\\.fi/utils/virheenmaaritys/(?:\\w+\\.jpg|css/|img/|js/|save\\.php)\"/><securecookie host=\"^www\\.nelonen\\.fi$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nelonen.fi (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Nelonen.fi.xml\"><exclusion pattern=\"^http://(?:www\\.)?nelonen\\.fi/crossdomain\\.xml\"/><exclusion pattern=\"^http://(?:www\\.)?nelonen\\.fi/utils/(?!virheenmaaritys/(?:\\w+\\.jpg|css/|img/|js/|save\\.php))\"/><securecookie host=\"^\\.nelonen\\.fi$\" name=\"^(?:adptset|enzgd|evid1st|evid(?:_ref|_set)?|__utm\\w)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nelonmedia.fi (partial)\" f=\"Nelonenmedia.fi.xml\"><exclusion pattern=\"^http://sso\\.nelonenmedia\\.fi/logout(?:$|[?/])\"/><securecookie host=\"^crossbow\\.nelonenmedia\\.fi$\" name=\".+\"/><rule from=\"^http://(crossbow|sso)\\.nelonenmedia\\.fi/\" to=\"https://$1.nelonenmedia.fi/\"/></ruleset>", "<ruleset name=\"NemID.nu\" f=\"NemID.xml\"><securecookie host=\"^(?:www)?\\.nemid\\.nu$\" name=\".*\"/><rule from=\"^http://nemid\\.nu/\" to=\"https://www.nemid.nu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NemLog-in.dk\" f=\"NemLog-in.dk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nemertes.com\" f=\"Nemertes.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Neo-interactive.hu\" default_off=\"failed ruleset test\" f=\"Neo-interactive.hu.xml\"><securecookie host=\"neo-interactive\\.hu$\" name=\".+\"/><rule from=\"^http://([^@:/]*)(\\.?)neo-interactive\\.hu/\" to=\"https://$1$2neo-interactive.hu/\"/></ruleset>", "<ruleset name=\"Neo900.org (partial)\" f=\"Neo900.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NeoBux.com (partial)\" default_off=\"failed ruleset test\" f=\"NeoBux.com.xml\"><exclusion pattern=\"^http://www\\.neobux\\.com/+(?!favicon\\.ico|m/(?:l|r|rpp|run)(?:$|[?/]))\"/><securecookie host=\"^\\.neobux\\.com$\" name=\"^incap_ses_[\\d_]+$\"/><securecookie host=\"^www\\.neobux\\.com$\" name=\"^___utm\\w+$\"/><rule from=\"^http://(img\\.|www\\.)?neobux\\.com/\" to=\"https://$1neobux.com/\"/><rule from=\"^http://cache1\\.neodevlda\\.netdna-cdn\\.com/\" to=\"https://cache1-neodevlda.netdna-ssl.com/\"/></ruleset>", "<ruleset name=\"NeoDrive.co\" default_off=\"expired\" f=\"NeoDrive.co.xml\"><rule from=\"^http://www\\.neodrive\\.co/\" to=\"https://neodrive.co/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NeoOffice.org\" f=\"NeoOffice.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NeoSmart.net\" f=\"NeoSmart.com.xml\"><securecookie host=\"^\\.?(?:secure\\.)?neosmart\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?neosmart\\.net/\" to=\"https://neosmart.net/\"/><rule from=\"^http://secure\\.neosmart\\.net/\" to=\"https://secure.neosmart.net/\"/></ruleset>", "<ruleset name=\"Neobits (partial)\" f=\"Neobits.xml\"><rule from=\"^http://(www\\.)?neobits\\.com/(css|images|img)/\" to=\"https://$1neobits.com/$1/\"/></ruleset>", "<ruleset name=\"neobookings\" f=\"Neobookings.xml\"><rule from=\"^http://((?:admin|secure|webservices|www)\\.)?neobookings\\.com/\" to=\"https://$1neobookings.com/\"/><rule from=\"^http://demo\\.neobookings\\.com/\" to=\"https://secure.neobookings.com/es/step-1\"/></ruleset>", "<ruleset name=\"neomailbox\" f=\"Neomailbox.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://www\\.neomailbox\\.net/\" to=\"https://www.neomailbox.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NeonMob.com\" f=\"NeonMob.com.xml\"><securecookie host=\"^(?:www)?\\.neonmob\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?neonmob\\.com/\" to=\"https://www.neonmob.com/\"/></ruleset>", "<ruleset name=\"Neos.io (partial)\" default_off=\"failed ruleset test\" f=\"Neos.io.xml\"><securecookie host=\"\\.neos\\.io$\" name=\"^(?:__cfduid|cf_clearance)\"/><securecookie host=\"discuss\\.neos\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Neoseeker\" default_off=\"failed ruleset test\" f=\"Neoseeker.xml\"><securecookie host=\"^\\.neoseeker\\.com$\" name=\".+\"/><rule from=\"^http://i(?:mg)?\\.neoseeker\\.com/\" to=\"https://img.neoseeker.com/\"/><rule from=\"^http://cdn\\.staticneo\\.com/\" to=\"https://cdn.staticneo.com/\"/><rule from=\"^http://(\\w+\\.)?neoseeker\\.com/\" to=\"https://$1neoseeker.com/\"/></ruleset>", "<ruleset name=\"neowin\" f=\"Neowin.net.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nerds Nook.com\" default_off=\"failed ruleset test\" f=\"Nerds_Nook.com.xml\"><securecookie host=\"^\\.nerdsnook\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nerf NOW\" f=\"Nerf_NOW.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nero.com (partial)\" default_off=\"failed ruleset test\" f=\"Nero.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nervous.io\" f=\"Nervous.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nervous Systems.org\" f=\"Nervous_Systems.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nessus.org (partial)\" f=\"Nessus.org.xml\"><securecookie host=\"^discussions\\.nessus\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nest.com\" f=\"Nest.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nesterov.pw\" f=\"Nesterov.pw.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nestlé (partial)\" f=\"Nestle.xml\"><exclusion pattern=\"^http://(?:www\\.)?nestle\\.com/(?![aA]sset-library/|skin-engine-shared/|staticlocal/)\"/><securecookie host=\"^hosting\\.nestle\\.com$\" name=\".+\"/><rule from=\"^http://((?:eur-tools|hosting|www)\\.)?nestle\\.com/\" to=\"https://$1nestle.com/\"/><rule from=\"^http://(?:www\\.)?nestle\\.de/(_layouts/|DownloadPDF\\.ashx|Helper/|MetaNavigation/|Style Library/)\" to=\"https://www.nestle.de/$1\"/></ruleset>", "<ruleset name=\"Nestle Purina Careers.com\" f=\"Nestle_Purina_Careers.com.xml\"><securecookie host=\"^(?:www)?\\.nestlepurinacareers\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nestlé Schöller (partial)\" f=\"Nestle_Scholler.xml\"><rule from=\"^http://(?:www\\.)?schoeller\\.de/(NR|schoeller/Images)/\" to=\"https://www.schoeller.de/$1/\"/></ruleset>", "<ruleset name=\"Net-A-Porter.com (partial)\" default_off=\"failed ruleset test\" f=\"Net-A-Porter.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://net-a-porter\\.com/\" to=\"https://www.net-a-porter.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Net Applications.com (partial)\" f=\"Net-Applications.xml\"><securecookie host=\".*\\.netapplications\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Net-Backup.com\" default_off=\"failed ruleset test\" f=\"Net-Backup.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Net Communities.com (partial)\" f=\"Net-Communities.xml\"><rule from=\"^http://ad\\.netcommunities\\.com/\" to=\"https://id.adnxs.com/\"/></ruleset>", "<ruleset name=\"Net Competition.org\" default_off=\"mismatched, self-signed\" f=\"Net-Competition.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"P3P Wiz.com\" default_off=\"expired\" f=\"Net-Dynamics.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Net-Housting.de (partial)\" default_off=\"failed ruleset test\" f=\"Net-Housting.de.xml\"><securecookie host=\"^(?:www\\.)?net-housting\\.de$\" name=\".+\"/><rule from=\"^http://(www\\.)?(?:net-)?housting\\.de/\" to=\"https://$1net-housting.de/\"/></ruleset>", "<ruleset name=\"Net-Mobile.com (false MCB)\" default_off=\"self-signed\" platform=\"mixedcontent\" f=\"Net-Mobile.com.xml\"><securecookie host=\"^www\\.net-mobile\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Net-Results (partial)\" f=\"Net-Results.xml\"><securecookie host=\"^\\.net-results\\.com$\" name=\"^__utm\\w$\"/><securecookie host=\"^(?:apps|\\.?secure)\\.net-results\\.com$\" name=\".+\"/><rule from=\"^http://(sc\\.)?cdnma\\.com/\" to=\"https://$1cdnma.com/\"/><rule from=\"^http://(apps|secure)\\.net-results\\.com/\" to=\"https://$1.net-results.com/\"/><rule from=\"^http://nr7\\.us/\" to=\"https://nr7.us/\"/></ruleset>", "<ruleset name=\"net-security.org\" default_off=\"broken\" f=\"Net-security.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NetApp.com (mismatches)\" default_off=\"mismatched\" f=\"NetApp-mismatches.xml\"><securecookie host=\"^\\.netapp\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NetApp.com (partial)\" default_off=\"failed ruleset test\" f=\"NetApp.xml\"><securecookie host=\"^\\.netapp\\.com$\" name=\"^VISITORID$\"/><securecookie host=\"^\\w+\\.netapp\\.com$\" name=\".+\"/><rule from=\"^http://netapp\\.com/\" to=\"https://www.netapp.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NetBSD.org (partial)\" f=\"NetBSD.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NetBeans.org (partial)\" f=\"NetBeans.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.netbeans\\.org/\" to=\"https://netbeans.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NetBet\" default_off=\"failed ruleset test\" f=\"NetBet.xml\"><securecookie host=\"^betnet\\.fr$\" name=\".+\"/><securecookie host=\"^www\\.betnet\\.fr$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NetClean.com (partial)\" default_off=\"failed ruleset test\" f=\"NetClean.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NetCologne.de (partial)\" default_off=\"failed ruleset test\" f=\"NetCologne.xml\"><securecookie host=\"^tracking\\.netcologne\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NetDNA (partial)\" default_off=\"failed ruleset test\" f=\"NetDNA.xml\"><securecookie host=\"^login\\.hddn\\.com$\" name=\".\"/><securecookie host=\".\\.netdna\\.com$\" name=\".\"/><rule from=\"^http://(login\\.|www\\.)?hddn\\.com/\" to=\"https://$1hddn.com/\"/><rule from=\"^http://(?:www\\.)?netdna\\.com/[^?]*\\??$\" to=\"https://www.maxcdn.com/?ref=netdna\"/><rule from=\"^http://(?:www\\.)?netdna\\.com/[^?]*\\?\" to=\"https://www.maxcdn.com/?ref=netdna&\"/><rule from=\"^http://netdnasite\\.wpengine\\.netdna-cdn\\.com/\" to=\"https://www.maxcdn.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NetEase.com\" f=\"NetEase.com.xml\"><rule from=\"^http://f\\.mgame\\.netease\\.com/\" to=\"https://mgame-f.netease.com/\"/><rule from=\"^http://f\\.my\\.netease\\.com/\" to=\"https://my-f.netease.com/\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NetEase.im (partial)\" f=\"NetEase.im.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"netFORUMpro.com\" f=\"NetFORUMpro.com.xml\"><securecookie host=\"^(?:prous01\\.|www\\.)?netforumpro\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NetFronts (mismatches)\" default_off=\"mismatched\" f=\"NetFronts-mismatches.xml\"><securecookie host=\"^.*\\.netfronts\\.com$\" name=\".*\"/><rule from=\"^http://(?:(support\\.)|www\\.)?netfronts\\.com/\" to=\"https://$1netfronts.com/\"/></ruleset>", "<ruleset name=\"NetFronts (partial)\" default_off=\"failed ruleset test\" f=\"NetFronts.xml\"><securecookie host=\"^order\\.hosting-advantage\\.com$\" name=\".*\"/><rule from=\"^http://(\\w+\\.)?hosting-advantage\\.com/\" to=\"https://$1hosting-advantage.com/\"/></ruleset>", "<ruleset name=\"NetGo.hu\" f=\"NetGo.hu.xml\"><securecookie host=\"^www\\.netgo\\.hu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NetIQ.com (partial)\" f=\"NetIQ.xml\"><securecookie host=\"^(?:www)?\\.netiq\\.com$\" name=\".+\"/><rule from=\"^http://netiq\\.com/\" to=\"https://www.netiq.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NetLib.re\" f=\"NetLib.re.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NetLock (partial)\" f=\"NetLock.xml\"><rule from=\"^http://(www\\.)?netlock\\.hu/(\\S+)\" to=\"https://$1netlock.hu/$2\"/></ruleset>", "<ruleset name=\"NetMarketShare.com\" f=\"NetMarketShare.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NetMediaEurope\" default_off=\"expired, mismatch\" f=\"NetMediaEurope.xml\"><securecookie host=\"^quiz\\.itespresso\\.fr$\" name=\".*\"/><securecookie host=\"^resourcecentre\\.techweekeurope\\.co\\.uk$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?(itespresso|silicon|theinquirer)\\.fr/(favicon\\.ico|wp-(?:content|includes)/)\" to=\"https://$1.fr/$2\"/><rule from=\"^http://quiz\\.itespresso\\.fr/\" to=\"https://quiz.itespresso.fr/\"/><rule from=\"^http://(?:www\\.)?netmediaeurope\\.co\\.uk/\" to=\"https://www.netmediaeurope.co.uk/\"/><rule from=\"^http://(?:www\\.)?netmediaeurope\\.fr/\" to=\"https://netmediaeurope.fr/\"/><rule from=\"^http://resourcecentre\\.techweekeurope\\.co\\.uk/\" to=\"https://resourcecentre.techweekeurope.co.uk/\"/><rule from=\"^http://(?:www\\.)?techweekeurope\\.fr/\" to=\"https://techweekeurope.fr/\"/></ruleset>", "<ruleset name=\"NetMile.co.jp\" default_off=\"failed ruleset test\" f=\"NetMile.co.jp.xml\"><securecookie host=\"^www\\.netmile\\.co\\.jp$\" name=\".+\"/><rule from=\"^http://www\\.netmile\\.co\\.jp/\" to=\"https://www.netmile.co.jp/\"/></ruleset>", "<ruleset name=\"NetNewsCheck.com (partial)\" f=\"NetNewsCheck.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?netnewscheck\\.com/+(?!images/|resource/)\"/><rule from=\"^http://netnewscheck\\.com/\" to=\"https://www.netnewscheck.com/\"/><rule from=\"^http://assets\\.netnewscheck\\.com/\" to=\"https://secure.newscheckmedia.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NetNow.co (false MCB)\" f=\"NetNow.co-falsemixed.xml\"><securecookie host=\"^(?:www\\.)?netnow\\.co$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NetNow.co (partial)\" f=\"NetNow.co.xml\"><exclusion pattern=\"^http://(?:www\\.)?netnow\\.co/+(?!favicon\\.ico|wp-content/|wp-login\\.php)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"netPR (partial)\" f=\"NetPR.xml\"><securecookie host=\"^secure\\.netpr\\.pl$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NetS.ec\" f=\"NetS.ec.xml\"><securecookie host=\"^\\.nets\\.ec$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NetSPI.com\" f=\"NetSPI.com.xml\"><securecookie host=\"^(?:www\\.)?netspi\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NetSeer\" f=\"NetSeer.xml\"><securecookie host=\"^\\.netseer\\.com$\" name=\"^netseer_v3_(?:gp|vi)$\"/><securecookie host=\"^pixel\\.netseer\\.com$\" name=\".+\"/><rule from=\"^http://(cmi|pixel)\\.netseer\\.com/\" to=\"https://$1.netseer.com/\"/><rule from=\"^http://(?:cl|contextlinks|leadback|media|staging)\\.netseer\\.com/\" to=\"https://leadback.netseer.com/\"/></ruleset>", "<ruleset name=\"NetShelter (partial)\" default_off=\"failed ruleset test\" f=\"NetShelter.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NetSuite.com (partial)\" f=\"NetSuite.com.xml\"><securecookie host=\"^\\.?(?:checkout|forms|system)\\.netsuite\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NetWorks Group.com\" f=\"NetWorks_Group.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ookla\" default_off=\"mismatched\" f=\"Net_Index.xml\"><rule from=\"^http://(?:cdn\\.|www\\.)?netindex\\.com/\" to=\"https://netindex.com/\"/></ruleset>", "<ruleset name=\"Net Mobile\" f=\"Net_Mobile.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Net Mundial.net\" default_off=\"failed ruleset test\" f=\"Net_Mundial.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Net Nanny.com\" f=\"Net_Nanny.xml\"><securecookie host=\"^\\.\" name=\"_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Net Semi.com\" default_off=\"404\" f=\"Net_Semi.xml\"><securecookie host=\"^\\.?netsemi\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?netsemi\\.com/\" to=\"https://netsemi.com/\"/></ruleset>", "<ruleset name=\"netbank.de\" f=\"Netbank.de.xml\"><securecookie host=\"^(?:www\\.)?netbank\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Netbeat.de\" f=\"Netbeat-Webmail.xml\"><securecookie host=\"^(?:www\\.)?netbeat\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Netbynet.ru (partial)\" f=\"Netbynet.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Netcloude.cz\" default_off=\"failed ruleset test\" f=\"Netcloude.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Netcraft.com (partial)\" f=\"Netcraft.com.xml\"><rule from=\"^http://uptime\\.netcraft\\.com/(?=css/|images/|js/)\" to=\"https://d2ybgbvpmfimch.cloudfront.net/\"/></ruleset>", "<ruleset name=\"netdev01.org\" default_off=\"expired\" f=\"Netdev01.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Netdialog.se (partial)\" f=\"Netdialog.se.xml\"><rule from=\"^http://s3\\.netdialog\\.se/\" to=\"https://s3-eu-west-1.amazonaws.com/s3.netdialog.se/\"/></ruleset>", "<ruleset name=\"NetDNA-SSL.com (CDN)\" f=\"Netdna-ssl.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Netdoktor.se (false MCB)\" default_off=\"expired, missing certificate chain\" platform=\"mixedcontent\" f=\"Netdoktor.se.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Netelligent.ca (partial)\" default_off=\"failed ruleset test\" f=\"Netelligent.xml\"><securecookie host=\"^(?:\\w+\\.)?netelligent\\.ca$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Netfilter.org (partial)\" f=\"Netfilter.org.xml\"><exclusion pattern=\"^http://patchwork\\.netfilter\\.org/+(?!$|\\?)\"/><securecookie host=\".+\\.netfilter\\.org$\" name=\".+\"/><rule from=\"^http://patchwork\\.netfilter\\.org/.*\" to=\"https://patchwork.ozlabs.org/project/netfilter-devel/list/\"/><rule from=\"^http://(?:svn|vishnu)\\.netfilter\\.org/\" to=\"https://bugzilla.netfilter.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Netfirms\" f=\"Netfirms.xml\"><securecookie host=\"^\\.netfirms\\.com$\" name=\".*\"/><rule from=\"^http://(images\\.|secure\\.|www2?\\.)?netfirms\\.com/\" to=\"https://$1netfirms.com/\"/></ruleset>", "<ruleset name=\"netflame.cc\" default_off=\"failed ruleset test\" f=\"Netflame.cc.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Netflix.com (buggy)\" default_off=\"various things break\" f=\"Netflix.com-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Netflix.com (partial)\" f=\"Netflix.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NetflixCanada\" default_off=\"Certificate mismatch\" f=\"NetflixCanada.xml\"><rule from=\"^http://([^/:@]*)\\.movies\\.netflix\\.com/\" to=\"https://$1.movies.netflix.com/\"/></ruleset>", "<ruleset name=\"Netfox.ru\" f=\"Netfox.ru.xml\"><rule from=\"^http://www\\.netfox\\.ru/\" to=\"https://netfox.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Netgate.com\" f=\"Netgate.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Netgear (partial)\" f=\"Netgear.xml\"><securecookie host=\"^my\\.netgear\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?netgear\\.com/css/img/(?:(backgrounds/(?:body|nav)_bg\\.jpg)|logos/(logo-netgear\\.gif))\" to=\"https://my.netgear.com/myNETGEAR/includes/images/$1$2\"/><rule from=\"^http://my\\.netgear\\.com/\" to=\"https://my.netgear.com/\"/></ruleset>", "<ruleset name=\"Netgroup.dk\" f=\"Netgroup.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Netguava (partial)\" f=\"Netguava.xml\"><rule from=\"^http://(www\\.)?netguava\\.com/(app/|contact(?:$|\\?)|c[ms]s/|favicon\\.ico|images/|js/|scripts/)\" to=\"https://$1netguava.com/$2\"/></ruleset>", "<ruleset name=\"Nether\" f=\"Nether.xml\"><securecookie host=\"^puck\\.nether\\.net$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Netim.com\" f=\"Netim.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Netistrar.com (expired)\" default_off=\"expired\" f=\"Netistrar.com-problematic.xml\"><securecookie host=\"^www\\.netistrar\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Netistrar.com (partial)\" default_off=\"failed ruleset test\" f=\"Netistrar.com.xml\"><securecookie host=\"^secure\\.netistrar\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Netlify.com\" f=\"Netlify.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"netline.com (partial)\" f=\"Netline.com.xml\"><rule from=\"^http://my\\.netline\\.com/\" to=\"https://my.netline.com/\"/><rule from=\"^http://ox-d\\.netline\\.com/w/1\\.0/afr\\?cc=1&auid=(\\d+)&cb=\" to=\"https://u.openx.net/w/1.0/sc?r=https%3A%2F%2Fox-d.netline.com%2Fw%2F1.0%2Fafr%3Fcc%3D1%26auid%3D$1%26cb%3D\"/></ruleset>", "<ruleset name=\"Netload\" default_off=\"failed ruleset test\" f=\"Netload.xml\"><securecookie host=\"^(?:w*\\.)?netload\\.in$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Netmarble (partial)\" f=\"Netmarble.xml\"><securecookie host=\"^(?:auth|www)\\.netmarble\\.com$\" name=\".+\"/><rule from=\"^http://netmarble\\.com/\" to=\"https://www.netmarble.com/\"/><rule from=\"^http://(auth|n?bill|s?img|member|www)\\.netmarble\\.com/\" to=\"https://$1.netmarble.com/\"/><rule from=\"^http://img\\.cdn\\.global\\.netmarble\\.com/\" to=\"https://simg.netmarble.com/\"/></ruleset>", "<ruleset name=\"netmeister.org\" f=\"Netmeister.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"netnea.com\" default_off=\"failed ruleset test\" f=\"Netnea.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Netnod.se\" f=\"Netnod.se.xml\"><securecookie host=\"^(?:www)?\\.netnod.se$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?netnod\\.se/\" to=\"https://www.netnod.se/\"/></ruleset>", "<ruleset name=\"Netpol.org\" f=\"Netpol.org.xml\"><securecookie host=\"^(?:www\\.)?netpol\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nets-DanID.dk\" f=\"Nets-DanID.xml\"><securecookie host=\"^www\\.nets-danid\\.dk$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Netscape.com\" default_off=\"failed ruleset test\" f=\"Netscape.com.xml\"><rule from=\"^http://(?:home\\.|www\\.)?netscape\\.com/\" to=\"https://netscape.aol.com/\"/><rule from=\"^http://(?:web)?mail\\.netscape\\.com/\" to=\"https://my.screenname.aol.com/_cqr/login/login.psp?sitedomain=sns.webmail.aol.com\"/></ruleset>", "<ruleset name=\"netsekure.org\" default_off=\"failed ruleset test\" f=\"Netsekure.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Netsparker.com\" f=\"Netsparker.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Netswarm.net\" default_off=\"self-signed\" f=\"Netswarm.net.xml\"><rule from=\"^http://(?:www\\.)?netswarm\\.net/\" to=\"https://www.netswarm.net/\"/></ruleset>", "<ruleset name=\"Nettica\" default_off=\"failed ruleset test\" f=\"Nettica.xml\"><rule from=\"^http://(?:www\\.)?nettica\\.com/\" to=\"https://www.nettica.com/\"/></ruleset>", "<ruleset name=\"Nettitude.co.uk\" f=\"Nettitude.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nettitude.com\" f=\"Nettitude.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Netveano\" f=\"Netveano.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Netverify\" f=\"Netverify.xml\"><securecookie host=\"^(?:pay\\.)?netverify\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Netvibes.com\" f=\"Netvibes.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Netviewer.com\" default_off=\"failed ruleset test\" f=\"Netviewer.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Netways.de\" f=\"Netways.de.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://jobs\\.netways\\.de/[^?]*\" to=\"https://www.netways.de/ueber_netways/arbeiten_bei_netways/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Network Depot (partial)\" f=\"Network-Depot.xml\"><securecookie host=\"^.+\\.networkdepot\\.com$\" name=\".+\"/><rule from=\"^http://(onestepahead|support|tips)\\.networkdepot\\.com/\" to=\"https://$1.networkdepot.com/\"/></ruleset>", "<ruleset name=\"Network Redux\" default_off=\"broken\" f=\"Network-Redux.xml\"><rule from=\"^http://(?:www\\.)?networkredux\\.com/\" to=\"https://networkredux.com/\"/></ruleset>", "<ruleset name=\"Network Solutions (false MCB)\" platform=\"mixedcontent\" f=\"Network-Solutions.xml\"><securecookie host=\"^\\.networksolutions\\.com$\" name=\"^s_\\w+$\"/><securecookie host=\"^www\\.networksolutions\\.com$\" name=\".*\"/><rule from=\"^http://(?:cms\\.|www\\.)?networksolutions\\.com(:443)?/\" to=\"https://www.networksolutions.com$1/\"/><rule from=\"^http://(about|seal)\\.networksolutions\\.com/\" to=\"https://$1.networksolutions.com/\"/><rule from=\"^http://amp\\.networksolutions\\.com/$\" to=\"https://www.networksolutions.com/\"/><rule from=\"^http://amp\\.networksolutions\\.com/landing\\?code=(\\w+)$\" to=\"https://www.networksolutions.com/affiliates/select-unknown.jsp?siteid=100&channelid=$1\"/></ruleset>", "<ruleset name=\"Network for Good.org\" f=\"Network-for-Good.xml\"><exclusion pattern=\"^http://www1\\.\"/><securecookie host=\"^\\w+\\.networkforgood\\.org$\" name=\".+\"/><rule from=\"^http://(\\w+\\.)?networkforgood\\.org/\" to=\"https://$1networkforgood.org/\"/></ruleset>", "<ruleset name=\"network23.org\" f=\"Network23.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.network23\\.org/\" to=\"https://network23.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Network Time Foundation.org\" f=\"NetworkTimeFoundation.org.xml\"><securecookie host=\"^rt\\.nwtime\\.org$\" name=\".+\"/><rule from=\"^http://(linuxptp|ntp)\\.nwtime\\.org/\" to=\"https://nwtime.org/projects/$1/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NetworkWorld (mismatches)\" default_off=\"mismatched\" platform=\"mixedcontent\" f=\"NetworkWorld-mismatches.xml\"><rule from=\"^http://events\\.networkworld\\.com/\" to=\"https://events.networkworld.com/\"/></ruleset>", "<ruleset name=\"NetworkWorld (partial)\" default_off=\"failed ruleset test\" f=\"NetworkWorld.xml\"><securecookie host=\"^(?:.*\\.)?(?:networkworld|subscribenww)\\.com$\" name=\".+\"/><rule from=\"^http://(?:edge\\.|www\\.)?networkworld\\.com/\" to=\"https://www.networkworld.com/\"/><rule from=\"^http://m\\.networkworld\\.com/(mobify|static)/\" to=\"https://networkworld.mobify.com/$1/\"/><rule from=\"^http://(www\\.)?subscribenww\\.com/\" to=\"https://$1subscribenww.com/\"/></ruleset>", "<ruleset name=\"Network Advertising.org\" f=\"Network_Advertising_Initiative.xml\"><securecookie host=\"^(?:w*\\.)?networkadvertising\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Network Computing\" default_off=\"mismatched, self-signed\" f=\"Network_Computing.xml\"><securecookie host=\"^(?:www)?\\.networkcomputing\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?networkcomputing\\.com/\" to=\"https://www.networkcomputing.com/\"/></ruleset>", "<ruleset name=\"Network Maker (partial)\" f=\"Network_Maker.xml\"><securecookie host=\"^signup\\.network-maker\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NetworkedBlogs\" f=\"NetworkedBlogs.xml\"><securecookie host=\"^www\\.networkedblogs\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?networkedblogs\\.com/\" to=\"https://www.networkedblogs.com/\"/><rule from=\"^http://nwidget\\.networkedblogs\\.com/getnetworkwidget\" to=\"https://www.networkedblogs.com/getnetworkwidget\"/><exclusion pattern=\"^http://networkedblogs\\.com/\\w{5}$\"/></ruleset>", "<ruleset name=\"networkhm.com\" f=\"Networkhm.com.xml\"><rule from=\"^http://ads\\.networkhm\\.com/\" to=\"https://ib.adnxs.com/\"/></ruleset>", "<ruleset name=\"Networking4all.com\" f=\"Networking4all.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Netzfreiheit.org\" f=\"Netzfreiheit.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"netzguerilla.net\" f=\"Netzguerilla.net.xml\"><rule from=\"^http://(?:(lists\\.|webmail\\.)|www\\.)?netzguerilla\\.net/\" to=\"https://$1netzguerilla.net/\"/></ruleset>", "<ruleset name=\"Netzob.org (partial)\" f=\"Netzob.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Netzpolitik.org\" f=\"Netzpolitik.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"die netztaucher (partial)\" f=\"Netztaucher.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Neustar.biz (partial)\" default_off=\"failed ruleset test\" f=\"NeuStar.xml\"><securecookie host=\"^(?:(?:hello|leap|registry|siteprotect|\\w+\\.wpm|www)\\.)?neustar\\.biz$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Neudesic Media Group (partial)\" default_off=\"failed ruleset test\" f=\"Neudesic-Media-Group.xml\"><securecookie host=\"^(?:.*\\.)?ads\\.neudesicmediagroup\\.com$\" name=\".*\"/><rule from=\"^http://ads\\.neudesicmediagroup\\.com/\" to=\"https://ads.neudesicmediagroup.com/\"/></ruleset>", "<ruleset name=\"Neustar.com\" default_off=\"failed ruleset test\" f=\"Neustar.com.xml\"><securecookie host=\"^payment\\.neustar\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?neustar\\.com/\" to=\"https://www.neustar.biz/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Neustar Localeze.biz\" default_off=\"failed ruleset test\" f=\"Neustar_Localeze.biz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Neuweb.biz\" f=\"Neuweb.biz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NeverDDoS.com\" f=\"NeverDDoS.com.xml\"><securecookie host=\"^(?:w*\\.)?neverddos\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nevill Holt Opera\" default_off=\"failed ruleset test\" f=\"Nevill_Holt_Opera.xml\"><securecookie host=\"^w*\\.nevillholtopera\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?nevillholtopera\\.net/\" to=\"https://www.nevillholtopera.net/\"/></ruleset>", "<ruleset name=\"Nevistas Health.com\" default_off=\"failed ruleset test\" f=\"Nevistas_Health.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"New Dream Network\" default_off=\"failed ruleset test\" f=\"New-Dream-Network.xml\"><rule from=\"^http://(?:(secure\\.)|www\\.)?newdream\\.net/\" to=\"https://$1newdream.net/\"/></ruleset>", "<ruleset name=\"New Matilda.com\" f=\"New-Matilda.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"New Moon Girls Online\" default_off=\"failed ruleset test\" f=\"New-Moon-Girls-Online.xml\"><rule from=\"^http://(?:www\\.)?newmoon\\.com/\" to=\"https://www.newmoon.com/\"/></ruleset>", "<ruleset name=\"New Relic.com\" f=\"New-Relic.xml\"><exclusion pattern=\"^http://get\\.newrelic\\.com\"/><exclusion pattern=\"^http://(?:[^./]+\\.){2,}newrelic\\.com/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http://blog-assets\\.newrelic\\.com/\" to=\"https://blog.newrelic.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NYC.gov (partial)\" default_off=\"failed ruleset test\" f=\"New-York-City.xml\"><exclusion pattern=\"^http://(?:www\\.)?nyc\\.gov/(?!$|portal/(?:apps/threeoneone/site_launch/(?:css|img)|css|images)/)\"/><exclusion pattern=\"http://www1\\.nyc.gov/+(?!assets/(?:home/css/(?:includ|modul|pag)es|home/images/global|olr/css/|olr/images/content)/)\"/><securecookie host=\"^(?:a127-ess|comptroller)\\.nyc\\.gov$\" name=\".\"/><rule from=\"^http://www\\.comptroller\\.nyc\\.gov/\" to=\"https://comptroller.nyc.gov/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NYU.edu (mismatches)\" default_off=\"mismatched\" f=\"New-York-University-mismatches.xml\"><rule from=\"^http://events\\.nyu\\.edu/\" to=\"https://events.nyu.edu/\"/></ruleset>", "<ruleset name=\"NYU.edu (partial)\" platform=\"mixedcontent\" f=\"New-York-University.xml\"><exclusion pattern=\"^http://engineering\\.nyu\\.edu/+(?!crissp/(?:module|site|theme)s/|favicon\\.ico|files/|sites/)\"/><securecookie host=\"^\\w+[\\w.]+\\.nyu\\.edu$\" name=\".*\"/><rule from=\"^http://(www\\.)?nyu\\.edu/\" to=\"https://$1nyu.edu/\"/><rule from=\"^http://(?:www\\.)?bookstores\\.nyu\\.edu/\" to=\"https://www.bookstores.nyu.edu/\"/><rule from=\"^http://admissions\\.nyu\\.edu/\" to=\"https://www.nyu.edu/admissions/undergraduate-admissions.html\"/><rule from=\"^http://(?:www\\.)?(cims|cs|g4li|home|math|mrl|steinhardt)\\.nyu\\.edu/\" to=\"https://$1.nyu.edu/\"/><rule from=\"^http://(vlg\\.cs|engineering|its\\.law|(?:(?:arch|getit|login)\\.)?library|login|(?:frms\\.|orientation\\.)?nursing|admin\\.portal|shibboleth|sis|start|steinhardt|(?:testhome|web)\\.home\\.syr|wikis)\\.nyu\\.edu/\" to=\"https://$1.nyu.edu/\"/></ruleset>", "<ruleset name=\"new-nations.net\" default_off=\"self-signed\" f=\"New-nations.net.xml\"><rule from=\"^http://(?:www\\.)?new-nations\\.net/\" to=\"https://new-nations.net/\"/></ruleset>", "<ruleset name=\"NewIT\" f=\"NewIT.xml\"><securecookie host=\"^(?:.+\\.)?newit\\.co\\.uk$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?newit\\.co\\.uk/\" to=\"https://newit.co.uk/\"/></ruleset>", "<ruleset name=\"NewInt.org (partial)\" f=\"NewInt.org.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|__qca|_gat?|cf_clearance)$\"/><securecookie host=\"^\\.?shop\\.\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NewScientist.com (partial)\" f=\"NewScientist.com.xml\"><securecookie host=\"^\\.newscientist\\.com$\" name=\"^(?:__qca|incap_ses_\\d+_\\d+|s_\\w+|nlbi_\\d+|visid_incap_\\d+)$\"/><securecookie host=\"^(?:jobs|recruiters|subscribe|www)\\.newscientist\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NewScientist Subscriptions.com\" default_off=\"failed ruleset test\" f=\"NewScientist_Subscriptions.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NewYorkTimes.com\" f=\"NewYorkTimes.com.xml\"><rule from=\"^http://(www\\.)?newyorktimes\\.com/\" to=\"https://www.nytimes.com/\"/></ruleset>", "<ruleset name=\"NewYorkVocalCoaching\" default_off=\"failed ruleset test\" f=\"NewYorkVocalCoaching.xml\"><securecookie host=\"^(?:www\\.|\\.)?newyorkvocalcoaching\\.com$\" name=\".+\"/><securecookie host=\"^(?:www\\.|\\.)?voiceteachertraining\\.com$\" name=\".+\"/><securecookie host=\"^(?:www\\.|\\.)?voicelessonstotheworld\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"New America.org\" f=\"New_America.org.xml\"><rule from=\"^http://newamerica\\.org/\" to=\"https://www.newamerica.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"New Climate for Peace.org\" f=\"New_Climate_for_Peace.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"New England Journal of Medicine (problematic)\" default_off=\"mismatched\" f=\"New_England_Journal_of_Medicine-problematic.xml\"><rule from=\"^http://cdn\\.nejm\\.org/(?!5\\.0/)\" to=\"https://cdn.nejm.org/\"/></ruleset>", "<ruleset name=\"New England Journal of Medicine (partial)\" f=\"New_England_Journal_of_Medicine.xml\"><securecookie host=\"^cdf\\.nejm\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?nejm\\.org/(action/s(?:howCDFLogin|so)|favicon\\.ico|na101/|sda/)\" to=\"https://www.nejm.org/$1\"/><rule from=\"^http://cdf\\.nejm\\.org/\" to=\"https://cdf.nejm.org/\"/><rule from=\"^http://cdn\\.nejm\\.org/5\\.0/\" to=\"https://cdf.nejm.org/files/\"/></ruleset>", "<ruleset name=\"New Flag\" f=\"New_Flag.xml\"><securecookie host=\"^\\.mynewflag\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NHCLU.org (partial)\" default_off=\"self-signed\" f=\"New_Hampshire_Civil_Liberties_Union.xml\"><securecookie host=\"^remote\\.nhclu\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"New Look (partial)\" f=\"New_Look.xml\"><rule from=\"^http://(?:www\\.)?newlook\\.com/(css|images|MEDIA_\\w+|secure)/\" to=\"https://www.newlook.com/$1/\"/></ruleset>", "<ruleset name=\"New Republic.com (problematic)\" default_off=\"mismatched\" f=\"New_Republic.com-problematic.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"New Republic.com (partial)\" f=\"New_Republic.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|__qca|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"New Statesman.com (problematic)\" default_off=\"mismatched\" f=\"New_Statesman.com-problematic.xml\"><securecookie host=\"^\\.newstatesman\\.com$\" name=\"^__utm\\w+$\"/><securecookie host=\"^www\\.newstatesman\\.com$\" name=\".+\"/><rule from=\"^http://newstatesman\\.com/\" to=\"https://www.newstatesman.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"New Statesman.com (partial)\" f=\"New_Statesman.com.xml\"><securecookie host=\"^\\.newstatesman\\.com$\" name=\"^__utm\\w+$\"/><securecookie host=\"^subscribe\\.newstatesman\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"New York Needs You.com\" default_off=\"failed ruleset test\" f=\"New_York_Needs_You.com.xml\"><securecookie host=\"^www\\.newyorkneedsyou\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NZ Herald.co.nz (partial)\" f=\"New_Zealand_Herald.xml\"><securecookie host=\"^\\.nzherald\\.co\\.nz$\" name=\"^s_\\w+$\"/><securecookie host=\"^.+\\.nzherald\\.co\\.nz$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Newcastle.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"Newcastle.gov.uk.xml\"><exclusion pattern=\"http://buslanepayments\\.newcastle\\.gov\\.uk/$\"/><securecookie host=\"^(?!\\.newcastle\\.gov\\.uk$).\" name=\".\"/><rule from=\"^http://newcastle\\.gov\\.uk/\" to=\"https://www.newcastle.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Newegg.com (partial)\" f=\"Newegg.com.xml\"><securecookie host=\"^newegg\\.com$\" name=\".+\"/><securecookie host=\"^www\\.newegg\\.com$\" name=\".+\"/><securecookie host=\"^secure\\.newegg\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Newgrounds (partial, broken)\" default_off=\"reported broken\" f=\"Newgrounds.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"newjobs.com\" f=\"Newjobs.com.xml\"><rule from=\"^http://media\\.newjobs\\.com/\" to=\"https://securemedia.newjobs.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Newport Motorsports\" default_off=\"failed ruleset test\" f=\"Newport_Motorsports.xml\"><securecookie host=\"^(?:.*\\.)?newportmotorsports\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"News Corporation (mismatches)\" default_off=\"mismatched\" f=\"News-Corporation-mismatches.xml\"><exclusion pattern=\"^http://ureport\\.foxnews\\.com/services/\"/><exclusion pattern=\"^http://charts\\.smartmoney\\.com/gifbuilder/\"/><securecookie host=\"^ureport\\.foxnews\\.com$\" name=\".+\"/><securecookie host=\"^(?:.*\\.)?wsjpro\\.com$\" name=\".*\"/><rule from=\"^http://404\\.foxnews\\.com\\.edgesuite\\.net/\" to=\"https://404.foxnews.com.edgesuite.net/\"/><rule from=\"^http://(?:www\\.)?dowjones\\.com/(carousel_files|(?:chart/)?css|factiva|images)/\" to=\"https://wsjpro.com/$1/\"/><rule from=\"^http://(?:www\\.)?dowjones\\.com/\" to=\"https://www.dowjones.com/\"/><rule from=\"^http://ureport\\.foxnews\\.com/\" to=\"https://ureport.foxnews.com/\"/><rule from=\"^http://(?:www\\.)?myfoxdetroit\\.com/\" to=\"https://www.myfoxdetroit.com/\"/><rule from=\"^http://charts\\.smartmoney\\.com/\" to=\"https://charts.smartmoney.com/\"/><rule from=\"^http://(?:www\\.)?wsjpro\\.com/\" to=\"https://wsjpro.com/\"/></ruleset>", "<ruleset name=\"News Corporation (partial)\" default_off=\"failed ruleset test\" f=\"News-Corporation.xml\"><securecookie host=\"^.*\\.factiva\\.com$\" name=\".*\"/><securecookie host=\"^secure\\.smartmoney\\.com$\" name=\".*\"/><securecookie host=\"^services\\.wsje\\.com$\" name=\".*\"/><securecookie host=\"^(?:.*\\.)?wsj(?:eurosubs|safehouse)\\.com$\" name=\".*\"/><rule from=\"^http://om\\.dowjoneson\\.com/\" to=\"https://djglobal.122.2o7.net/\"/><rule from=\"^http://djrc\\.portal\\.dowjones\\.com/\" to=\"https://djrc.portal.dowjones.com/\"/><rule from=\"^http://(www\\.)?efinancialnews\\.com/(about-us/tour/|css/|img/|js/|login/|forgot-password|register)\" to=\"https://$1efinancialnews.com/$2\"/><rule from=\"^http://factiva\\.com/\" to=\"https://www.factiva.com/\"/><rule from=\"^http://(customer|global|www)\\.factiva\\.com/\" to=\"https://$1.factiva.com/\"/><rule from=\"^http://(?:www\\.)?fins\\.com/Finance/(cs|Image)s/\" to=\"https://www.fins.com/Finance/$1s/\"/><rule from=\"^http://j(?:tools|secure)?\\.smartmoney\\.com/\" to=\"https://jsecure.smartmoney.com/\"/><rule from=\"^http://services\\.wsje\\.com/\" to=\"https://services.wsje.com/\"/><rule from=\"^http://(www\\.)?wsjeuropesubs\\.com/\" to=\"https://$1wsjeuropesubs.com/\"/><rule from=\"^http://(?:www\\.)?wsjsafehouse\\.com/\" to=\"https://www.wsjsafehouse.com/\"/></ruleset>", "<ruleset name=\"The News-Gazette (partial)\" f=\"News-Gazette.xml\"><rule from=\"^http://(?:assets\\.|static\\.|www\\.)?news-gazette\\.com/(misc/|sites/|user(?:$|\\?|/))\" to=\"https://www.news-gazette.com/$1\"/><rule from=\"^http://digital\\.news-gazette\\.com/(misc|sites)/\" to=\"https://digital.news-gazette.com/$1/\"/></ruleset>", "<ruleset name=\"News Registry (partial)\" default_off=\"failed ruleset test\" f=\"News-Registry.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"News.dk\" default_off=\"mismatched\" f=\"News.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"news9daily.org\" f=\"News9daily.org.xml\"><securecookie host=\"^(?:w*\\.)?news9daily\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NewsBlur.com\" f=\"NewsBlur.com.xml\"><rule from=\"^http://(icons|pages)\\.newsblur\\.com/\" to=\"https://s3.amazonaws.com/$1.newsblur.com/\"/><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NewsCred.com (partial)\" f=\"NewsCred.com.xml\"><rule from=\"^http://static\\.cms\\.newscred\\.com/\" to=\"https://d35o6c6ifjoa8g.cloudfront.net/\"/><rule from=\"^http://(newsdaily\\.cms|images)\\.newscred\\.com/\" to=\"https://$1.newscred.com/\"/><rule from=\"^http://daylifeimages\\.newscred\\.com/\" to=\"https://ds9y5y40x6zaj.cloudfront.net/\"/><rule from=\"^http://info\\.newscred\\.com/(?=css/|images/|js/|rs/)\" to=\"https://na-sjn.marketo.com/\"/></ruleset>", "<ruleset name=\"NewsDaily.com\" default_off=\"failed ruleset test\" f=\"NewsDaily.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NewsGator\" default_off=\"failed ruleset test\" f=\"NewsGator.xml\"><securecookie host=\"^www\\.newsgator\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?newsgator\\.com/\" to=\"https://www.newsgator.com/\"/></ruleset>", "<ruleset name=\"NewsLook (partial)\" f=\"NewsLook.xml\"><rule from=\"^http://(www\\.)?newslook\\.com/assets/\" to=\"https://$1newslook.com/assets/\"/><rule from=\"^http://cdn\\.newslook\\.com/\" to=\"https://d2nj14si6cadzm.cloudfront.net/\"/><rule from=\"^http://img[0-3]\\.newslook\\.com/\" to=\"https://d24y7pjjfar7k.cloudfront.net/\"/><rule from=\"^http://sta[0-3]\\.newslook\\.com/\" to=\"https://d24lblqer3jbtz.cloudfront.net/\"/></ruleset>", "<ruleset name=\"NewsNetz.ch\" f=\"NewsNetz.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NewsNow (partial)\" f=\"NewsNow.xml\"><securecookie host=\"^delivery\\.ad\\.newsnow\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NewsWhip.com (mismatched)\" default_off=\"mismatched\" f=\"NewsWhip-mismatches.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NewsWhip.com (partial)\" f=\"NewsWhip.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"News Challenge.org\" f=\"News_Challenge.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"News Distribution Network (partial)\" default_off=\"failed ruleset test\" f=\"News_Distribution_Network.xml\"><securecookie host=\"^mail(?:fire)?\\.newsinc\\.com$\" name=\".+\"/><rule from=\"^http://(assets|landing|widget)\\.newsinc\\.com/\" to=\"https://s3.amazonaws.com/$1.newsinc.com/\"/><rule from=\"^http://autodiscover\\.newsinc\\.com/\" to=\"https://autodiscover-s.outlook.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The News Funnel (partial)\" f=\"News_Funnel.xml\"><rule from=\"^http://(www\\.)?thenewsfunnel\\.com/(modules/|(?:register-tnf|user/register)(?:$|\\?|/)|sites/)\" to=\"https://$1thenewsfunnel.com/$2\"/></ruleset>", "<ruleset name=\"News Limited (problematic)\" default_off=\"Akamai\" f=\"News_Limited-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"News Limited (partial)\" default_off=\"failed ruleset test\" f=\"News_Limited.xml\"><securecookie host=\"^myaccount\\.news\\.com\\.au$\" name=\".+\"/><rule from=\"^http://connect\\.news\\.com\\.au/\" to=\"https://newsportal.pureprofile.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"News Review.com (partial)\" f=\"News_Review.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"newscheckmedia.com\" f=\"Newscheckmedia.com.xml\"><rule from=\"^http://assets\\.newscheckmedia\\.com/\" to=\"https://secure.newscheckmedia.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Newsday.com (partial)\" f=\"Newsday.com.xml\"><rule from=\"^http://(?:www\\.)?newsday\\.com/\" to=\"https://www.newsday.com/\"/><rule from=\"^http://long-island\\.newsday\\.com/\" to=\"https://long-island.newsday.com/\"/></ruleset>", "<ruleset name=\"Newsmax.com (partial)\" f=\"Newsmax.com.xml\"><securecookie host=\"^\\.\" name=\"^__utm\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://newsmax\\.com/\" to=\"https://www.newsmax.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Newsmax Health.com\" default_off=\"failed ruleset test\" f=\"Newsmax_Health.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://newsmaxhealth\\.com/\" to=\"https://www.newsmaxhealth.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"newsnet5.com (partial)\" f=\"Newsnet5.com.xml\"><rule from=\"^http://contests\\.newsnet5\\.com/shared/\" to=\"https://newsnet5.upickem.net/shared/\"/></ruleset>", "<ruleset name=\"NewspaperDirect (mismatches)\" default_off=\"mismatched\" f=\"NewspaperDirect-mismatches.xml\"><exclusion pattern=\"^http://(?:www\\.)?pressdisplay/viewer\\.aspx\"/><rule from=\"^http://cache2?-s(cripts|style)s\\.pressdisplay\\.com/\" to=\"https://cache-s$1s.pressdisplay.com/\"/></ruleset>", "<ruleset name=\"NewspaperDirect (partial)\" f=\"NewspaperDirect.xml\"><securecookie host=\"^\\w\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Newsru.com (partial)\" f=\"Newsru.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Newstral.com (partial)\" f=\"Newstral.com.xml\"><securecookie host=\"\\.?newstral\\.com\" name=\".*\"/><rule from=\"^http://www\\.newstral\\.com/\" to=\"https://newstral.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"newsvine.com (partial)\" default_off=\"Needs ruleset tests\" f=\"Newsvine.com.xml\"><exclusion pattern=\"^http://onesearch4-2\\.newsvine\\.com/+(?!_vine/)\"/><exclusion pattern=\"^http://(?:www\\.)?polls\\.newsvine\\.com/(?!_static/|_vine/)\"/><exclusion pattern=\"^http://www\\.newsvine\\.com/(?!_static/|_vine/)\"/><rule from=\"^http://cdn\\.bonosrama\\.newsvine\\.com/\" to=\"https://bonosrama.newsvine.com/\"/><rule from=\"^http://(?:www\\.cdn|i)\\.newsvine\\.com/\" to=\"https://www.newsvine.com/\"/><rule from=\"^http://(?:www\\.)?polls\\.newsvine\\.com/\" to=\"https://www.newsvine.com/\"/><rule from=\"^http://m\\.static\\.newsvine\\.com/\" to=\"https://m.newsvine.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Newyorkcasual.com\" f=\"Newyorkcasual.com.xml\"><securecookie host=\"^\\.newyorkcasual\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?newyorkcasual\\.com/\" to=\"https://www.newyorkcasual.com/\"/></ruleset>", "<ruleset name=\"Newzbin\" default_off=\"failed ruleset test\" f=\"Newzbin.xml\"><rule from=\"^http://(?:www\\.)?newzbin(?:\\.com|2\\.es)/?\" to=\"https://www.newzbin2.es/\"/><rule from=\"^http://docs\\.newzbin2\\.es/?\" to=\"https://docs.newzbin2.es/\"/></ruleset>", "<ruleset name=\"newzsec.com (partial)\" default_off=\"failed ruleset test\" f=\"Newzsec.com.xml\"><rule from=\"^http://(?:www\\.)?newzsec\\.com/+\" to=\"https://saltysailor.github.io/\"/><exclusion pattern=\"^http://(?:www\\.)?newzsec\\.com/(?!/*(?:$|\\?))\"/></ruleset>", "<ruleset name=\"nexac.com (partial)\" default_off=\"failed ruleset test\" f=\"Nexac.com.xml\"><securecookie host=\"^\\.nexac\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?nexac\\.com/+(?:alpha(?:/|/index\\.html)?|index\\.html)?(?:\\?.*)?$\" to=\"https://www.datalogix.com/index.php?id=19\"/><rule from=\"^http://([efhpr])\\.nexac\\.com/\" to=\"https://$1.nexac.com/\"/></ruleset>", "<ruleset name=\"Nexaway (partial)\" f=\"Nexaway.xml\"><rule from=\"^http://(www\\.)?nexaway\\.com/\" to=\"https://$1nexaway.com/\"/></ruleset>", "<ruleset name=\"Nexcess.net (partial)\" f=\"Nexcess.xml\"><securecookie host=\".*\\.nexcess\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nexcess CDN.net\" f=\"Nexcess_CDN.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Next Update (partial)\" f=\"Next-Update.xml\"><exclusion pattern=\"^http://(?:journal|status)\\.\"/><rule from=\"^http://(\\w+\\.)?sifterapp\\.com/\" to=\"https://$1sifterapp.com/\"/></ruleset>", "<ruleset name=\"Next.co.uk (partial)\" default_off=\"failed ruleset test\" f=\"Next.xml\"><exclusion pattern=\"^http://(?:www\\.)?next\\.co\\.uk/(?!/*(?:[Cc][Ss][Ss]/|[Ii]mages/|content/common/|favicon\\.ico|secure/))\"/><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\.help\\.\" name=\".\"/><securecookie host=\"^(?!www\\.)\\w\" name=\".\"/><rule from=\"^http://next\\.co\\.uk/\" to=\"https://www.next.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NextBus\" f=\"NextBus.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NextRegister.com\" default_off=\"mismatched\" f=\"NextRegister.com.xml\"><rule from=\"^http://(?:www\\.)?nextregister\\.com/\" to=\"https://nextregister.com/\"/></ruleset>", "<ruleset name=\"Nextag.com\" f=\"Nextag.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://img\\.nextag\\.com/\" to=\"https://imgsrv.nextag.com/\"/><rule from=\"^http://img0(1|2|3|4|5)\\.static-nextag\\.com/\" to=\"https://imgsrv.nextag.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nextbit.com\" f=\"Nextbit.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nexternal clients\" default_off=\"mismatched\" f=\"Nexternal-clients.xml\"><rule from=\"^http://(?:shop\\.blazingthyme\\.com|appmarket\\.nexternal\\.net)/Net/StoreFront/\" to=\"https://maxcdn.nexternal.com/Net/StoreFront/\"/></ruleset>", "<ruleset name=\"Nexternal\" f=\"Nexternal.xml\"><securecookie host=\"^.*\\.nexternal\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?nexternal\\.com/\" to=\"https://www.nexternal.com/\"/><rule from=\"^http://(max)?cdn\\.nexternal\\.com/\" to=\"https://$1cdn.nexternal.com/\"/></ruleset>", "<ruleset name=\"Nextgen-Gallery.com (partial)\" f=\"Nextgen-Gallery.com.xml\"><exclusion pattern=\"^http://www\\.nextgen-gallery\\.com/+(?!(?:account|checkout|checkout-plus|help)(?:$|[?/])|favicon\\.ico|no-access/|wp-content/|wp-includes/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Next Gen Auto Parts.com (partial)\" f=\"Nextgen_Auto_Parts.com.xml\"><rule from=\"^http://(www\\.)?nextgenautoparts\\.com/(?=favicon\\.ico|files/|images/|Portals/(?:\\d+/portal\\.css|\\d+/theme\\d/|_default/)|scripts/)\" to=\"https://$1nextgenautoparts.com/\"/></ruleset>", "<ruleset name=\"Nextiva\" f=\"Nextiva.xml\"><securecookie host=\"^\\.nextiva\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nextpowerup.com\" f=\"Nextpowerup.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ng-book.com\" f=\"Ng-book.com.xml\"><securecookie host=\"^\\.ng-book\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ngage ICS (partial)\" f=\"Ngage_ICS.xml\"><securecookie host=\"^messenger\\.ngageics\\.com$\" name=\".+\"/><rule from=\"^http://messenger\\.ngageics\\.com/\" to=\"https://messenger.ngageics.com/\"/><rule from=\"^http://secure\\.ngagelive\\.com/\" to=\"https://secure.ngagelive.com/\"/></ruleset>", "<ruleset name=\"nghttp2.org\" f=\"Nghttp2.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nginx.org\" f=\"Nginx.org.xml\"><rule from=\"^http://wiki\\.nginx\\.org/[^?]*\" to=\"https://www.nginx.com/resources/wiki/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ngrok.com\" default_off=\"failed ruleset test\" f=\"Ngrok.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ngx.cc\" default_off=\"failed ruleset test\" f=\"Ngx.cc.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nhat tao.com\" f=\"Nhat_tao.com.xml\"><securecookie host=\"^\\.nhattao\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NiKec Solutions\" default_off=\"mismatched\" f=\"NiKec_Solutions.xml\"><securecookie host=\"^nikecsolutions\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?nikecsolutions\\.com/\" to=\"https://nikecsolutions.com/\"/></ruleset>", "<ruleset name=\"CZ.NIC\" f=\"Nic.cz.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nic.ru\" f=\"Nic.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NicAc\" f=\"NicAc.xml\"><securecookie host=\"^(?:.+\\.)?nic\\.ac$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?nic\\.ac/\" to=\"https://www.nic.ac/\"/></ruleset>", "<ruleset name=\"NicIo\" platform=\"mixedcontent\" f=\"NicIo.xml\"><securecookie host=\"^(?:.+\\.)?nic\\.io$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?nic\\.io/\" to=\"https://www.nic.io/\"/></ruleset>", "<ruleset name=\"Nice 264\" f=\"Nice264.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NiceHash.com\" f=\"NiceHash.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?nicehash\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NiceKicks.com (partial)\" f=\"NiceKicks.com.xml\"><rule from=\"^http://\\d\\.nicekicks\\.com/\" to=\"https://d34jsf1j24280j.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Nice 'n' Naughty\" f=\"Nice_n_Naughty.xml\"><securecookie host=\"^\\.www\\.nicennaughty\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nicereply.com\" f=\"Nicereply.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nicholas Ranallo (partial)\" f=\"Nicholas_Ranallo.xml\"><rule from=\"^http://(?:www\\.)?ranallolawoffice\\.com/(?:favicon\\.ico|wp-content/|wp-includes/)\" to=\"https://secure.bluehost.com/~ranallol/$1\"/></ruleset>", "<ruleset name=\"Nicky Hager (partial)\" f=\"Nicky_Hager.xml\"><rule from=\"^http://(?:www\\.)?nickyhager\\.info/wp-content/\" to=\"https://secure.bluehost.com/~nickyhag/wp-content/\"/></ruleset>", "<ruleset name=\"Nicotine Anonymous\" f=\"Nicotine-Anonymous.xml\"><securecookie host=\"^(?:w*\\.)?nicotine-anonymous\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nicovideo.jp (partial)\" f=\"Nicovideo.jp.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"niden.net\" f=\"Niden.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nie-wieder-VDS.de\" default_off=\"failed ruleset test\" f=\"Nie-wieder-VDS.de.xml\"><securecookie host=\"^nie-wieder-vds\\.de$\" name=\".+\"/><rule from=\"^http://www\\.nie-wieder-vds\\.de/\" to=\"https://nie-wieder-vds.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NightDev.com\" f=\"NightDev.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NightLove\" default_off=\"failed ruleset test\" f=\"NightLove.xml\"><securecookie host=\"^\\.nightlove\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nightcode.info\" default_off=\"failed ruleset test\" f=\"Nightcode.info.xml\"><rule from=\"^http://nightcode\\.info/\" to=\"https://nightcode.info/\"/></ruleset>", "<ruleset name=\"Nightweb.net\" default_off=\"failed ruleset test\" f=\"Nightweb.net.xml\"><rule from=\"^http://nightweb\\.net/\" to=\"https://nightweb.net/\"/></ruleset>", "<ruleset name=\"Nijyuyon-Bimuunzu\" f=\"Nijyuyon-Bimuunzu.xml\"><rule from=\"^http://(?:www\\.)?e-nls\\.com/\" to=\"https://www.e-nls.com/\"/><rule from=\"^http://img\\.e-nls\\.com/\" to=\"https://img.e-nls.com/\"/></ruleset>", "<ruleset name=\"Nik Cub.com\" default_off=\"failed ruleset test\" f=\"Nik_Cub.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nik Software (partial)\" default_off=\"failed ruleset test\" f=\"Nik_Software.xml\"><securecookie host=\"^shop\\.niksoftware\\.com$\" name=\".+\"/><rule from=\"^http://shop\\.niksoftware\\.com/\" to=\"https://shop.niksoftware.com/\"/></ruleset>", "<ruleset name=\"Nike.com (partial)\" default_off=\"failed ruleset test\" f=\"Nike.com.xml\"><securecookie host=\"^\\.nike\\.com$\" name=\"^(?:AnalysisUserId|ResonanceSegment|RES_TRACKINGID|s_\\w+|utag_main)$\"/><securecookie host=\"^(?:help-[\\w-]+|secure-store)\\.nike\\.com$\" name=\".+\"/><rule from=\"^http://nike\\.com/\" to=\"https://www.nike.com/\"/><rule from=\"^http://modus\\.nike\\.com/\" to=\"https://nike-com.112.2o7.net/\"/><rule from=\"^http://nikeplus\\.nike\\.com/\" to=\"https://secure-nikeplus.nike.com/\"/><rule from=\"^http://store\\.nike\\.com/\" to=\"https://secure-store.nike.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nikhef.nl\" default_off=\"failed ruleset test\" f=\"Nikhef.nl.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nikkei.com\" default_off=\"failed ruleset test\" f=\"Nikkei.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nikon-Lenswear.com (false MCB)\" platform=\"mixedcontent\" f=\"Nikon-Lenswear.com.xml\"><securecookie host=\"^nikon-lenswear\\.com$\" name=\".+\"/><rule from=\"^http://www\\.nikon-lenswear\\.com/\" to=\"https://nikon-lenswear.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nikos Dano.com\" default_off=\"failed ruleset test\" f=\"Nikos_Dano.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nildram.net\" default_off=\"expired\" f=\"Nildram.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nileshgr.com\" f=\"Nileshgr.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nimbledeals.com\" f=\"Nimbledeals.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nimbus Hosting (partial)\" f=\"Nimbus_Hosting.xml\"><exclusion pattern=\"^http://youraccount\\.nimbushosting\\.co\\.uk/index\\.php\"/><securecookie host=\"^www\\.nimbushosting\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?nimbushosting\\.co\\.uk/\" to=\"https://www.nimbushosting.co.uk/\"/><rule from=\"^http://youraccount\\.nimbushosting\\.co\\.uk/\" to=\"https://youtaccount.nimbushosting.co.uk/\"/></ruleset>", "<ruleset name=\"Nimenhuuto.com\" f=\"Nimenhuuto.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nimg.jp\" f=\"Nimg.jp.xml\"><exclusion pattern=\"^http://nicovideo\\.cdn\\.nimg\\.jp/web/swf/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nimzone.com\" default_off=\"mismatched\" f=\"Nimzone.com.xml\"><rule from=\"^http://server1\\.nimzone\\.com/\" to=\"https://server1.nimzone.com/\"/></ruleset>", "<ruleset name=\"Nine\" f=\"Nine.xml\"><securecookie host=\"^\\.?webmail\\.nine\\.ch$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nines.nl\" f=\"Nines.nl.xml\"><securecookie host=\"^www\\.nines\\.nl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ning (false MCB)\" platform=\"mixedcontent\" f=\"Ning-falsemixed.xml\"><exclusion pattern=\"^http://creators\\.ning\\.com/(?:activity/|(?:[\\w-]+/)?(?:cs|image)s/|favicon\\.ico)\"/><exclusion pattern=\"^http://makemodules\\.ning\\.com/(?:activity/|colorbox/|(?:[\\w-]+/)?(?:css|error|images)/|favicon\\.ico|js/|xn/)\"/><rule from=\"^http://(creator|makemodule)s\\.ning\\.com/\" to=\"https://$1s.ning.com/\"/></ruleset>", "<ruleset name=\"Ning (partial)\" f=\"Ning.xml\"><exclusion pattern=\"^http://creators\\.ning\\.com/(?!activity/|(?:[\\w-]+/)?(?:cs|image)s/|favicon\\.ico)\"/><exclusion pattern=\"^http://makemodules\\.ning\\.com/(?!activity/|colorbox/|(?:[\\w-]+/)?(?:css|error|images)/|favicon\\.ico|js/|xn/)\"/><securecookie host=\".*\\.ning\\.com$\" name=\".+\"/><rule from=\"^http://((?:about|build|creators|developer|go|help|makemodules|socialnetworkmain|uk|www)\\.)?ning\\.com/\" to=\"https://$1ning.com/\"/><rule from=\"^http://static\\.ning\\.com/([^/]+)/\" to=\"https://$1.ning.com/xn_resources/\"/></ruleset>", "<ruleset name=\"Ninite.com\" f=\"Ninite.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nintendo.com (partial) \" f=\"Nintendo.com.xml\"><securecookie host=\"^.*\\.nintendo\\.com$\" name=\".+\"/><rule from=\"^http://((?:club|happyholidays|iwataasks|share|smetrics|store|www)\\.)?nintendo\\.com/\" to=\"https://$1nintendo.com/\"/><rule from=\"^http://support\\.nintento\\.com/(?:\\?.*)?$\" to=\"https://www.nintendo.com/consumer/assets/region_select.jsp\"/></ruleset>", "<ruleset name=\"Nintendo.de\" f=\"Nintendo.de.xml\"><rule from=\"^http://nintendo\\.de/\" to=\"https://www.nintendo.de/\"/><securecookie host=\"(?:www|jobs)\\.nintendo\\.de\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nintendo World Report\" f=\"Nintendo_World_Report.xml\"><securecookie host=\"^(?:www\\.)?nintendoworldreport\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NinthDecimal.com\" f=\"NinthDecimal.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance|ndat)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ninux.org (partial)\" default_off=\"self-signed\" f=\"Ninux.org.xml\"><rule from=\"^http://svn\\.ninux\\.org/\" to=\"https://svn.ninux.org/\"/><securecookie host=\"^svn\\.ninux\\.org$\" name=\".*\"/></ruleset>", "<ruleset name=\"nisit69.com\" f=\"Nisit69.com.xml\"><securecookie host=\"^(?:w*\\.)?nisit69\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Niskanen Center.org\" f=\"Niskanen_Center.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NiteFlirt.com (partial)\" f=\"NiteFlirt.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NiteTimeToys.com\" default_off=\"failed ruleset test\" f=\"NiteTimeToys.com.xml\"><securecookie host=\"^(?:affiliates|\\.www)?\\.nitetimetoys\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nitro.dk (partial)\" default_off=\"self-signed\" f=\"Nitro.dk.xml\"><securecookie host=\"^webmail\\.nitro\\.dk$\" name=\".*\"/><rule from=\"^http://webmail\\.nitro\\.dk/\" to=\"https://webmail.nitro.dk/\"/></ruleset>", "<ruleset name=\"NitroSell.com (partial)\" f=\"NitroSell.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nitro Cloud.com\" f=\"Nitro_Cloud.com.xml\"><securecookie host=\"^\\.nitrocloud\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NixOS.org\" f=\"NixOS.org.xml\"><rule from=\"^http://www\\.nixos\\.org/\" to=\"https://nixos.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nixsrv.com\" default_off=\"failed ruleset test\" f=\"Nixsrv.com.xml\"><securecookie host=\"^\\.nixsrv\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nlgcdn.com\" default_off=\"failed ruleset test\" f=\"Nlgcdn.com.xml\"><rule from=\"^http://nlgcdn\\.com/\" to=\"https://nlgcdn.com/\"/></ruleset>", "<ruleset name=\"Nmap.org\" f=\"Nmap.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nnetworks\" f=\"Nnetworks.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"No Deep Packet Inspection campaign\" f=\"No-DPI-campaign.xml\"><securecookie host=\"^(?:www\\.)?nodpi\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"noHold (partial)\" f=\"NoHold.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NoMachine.com\" f=\"NoMachine.com.xml\"><securecookie host=\"^www\\.nomachine\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?nomachine\\.com/\" to=\"https://www.nomachine.com/\"/></ruleset>", "<ruleset name=\"NoScript.net\" f=\"NoScript.net.xml\"><securecookie host=\"^noscript\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NoTex\" f=\"NoTex.xml\"><securecookie host=\"^\\.?notex\\.ch$\" name=\".+\"/><rule from=\"^http://notex\\.ch/\" to=\"https://notex.ch/\"/></ruleset>", "<ruleset name=\"NoVA Infosec.com\" f=\"NoVA_Infosec.xml\"><securecookie host=\"^\\.novainfosec\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"No 1366.org\" default_off=\"failed ruleset test\" f=\"No_1366.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"No Bitcoin License.org\" f=\"No_Bitcoin_License.org.xml\"><securecookie host=\"^\\.nobitcoinlicense\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"No IP.com\" f=\"No_IP.com.xml\"><securecookie host=\"^(?:www)?\\.noip\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"No Starch Press (partial)\" f=\"No_Starch_Press.xml\"><securecookie host=\"^\\.nostarch\\.com$\" name=\"^__utm\\w$\"/><rule from=\"^http://(www\\.)?nostarch\\.com/(?=(?:about|catalog|media|writeforus)\\.htm|cart(?:$|[?/])|downloads/|favicon\\.ico|images/|misc/|modules/|sites/)\" to=\"https://$1nostarch.com/\"/><rule from=\"^http://mail\\.nostarch\\.com/(?=$|\\?)\" to=\"https://mail.google.com/a/nostarch.com\"/><rule from=\"^http://media\\.nostarch\\.com/\" to=\"https://d19tnq0ilrg6a.cloudfront.net/\"/></ruleset>", "<ruleset name=\"no added sugar\" f=\"No_added_sugar.xml\"><securecookie host=\"^\\.noaddedsugar\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NobleHour.com\" f=\"NobleHour.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nocdirect.com\" f=\"Nocdirect.com.xml\"><securecookie host=\"^(?:ninja|radium)\\.nocdirect\\.com$\" name=\".+\"/><rule from=\"^http://(ninja|radium)\\.nocdirect\\.com/\" to=\"https://$1.nocdirect.com/\"/></ruleset>", "<ruleset name=\"NodeJS Modules.org\" default_off=\"expired, missing certificate chain\" f=\"NodeJS_Modules.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NodeServ.com\" default_off=\"failed ruleset test\" f=\"NodeServ.com.xml\"><securecookie host=\"^(?:billing|manage)\\.nodeserv\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NodeSource.com\" f=\"NodeSource.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Node Security.io\" f=\"Node_Security.io.xml\"><rule from=\"^http://(?:www\\.)?nodesecurity\\.io/\" to=\"https://nodesecurity.io/\"/></ruleset>", "<ruleset name=\"Nodejitsu.com\" default_off=\"failed ruleset test\" f=\"Nodejitsu.com.xml\"><securecookie host=\"^\\.nodejitsu\\.com$\" name=\".\"/><rule from=\"^http://www\\.(blog|legal|versions)\\.nodejitsu\\.com/\" to=\"https://$1.nodejitsu.com/\"/><rule from=\"^http://status\\.nodejitsu\\.com/\" to=\"https://nodejitsu.statuspage.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nodejs.org (partial)\" f=\"Nodejs.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://blog\\.nodejs\\.org/[^?]*\" to=\"https://nodejs.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nodes.dk\" f=\"Nodes.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Noelia\" default_off=\"failed ruleset test\" f=\"Noelia.xml\"><securecookie host=\"^noelia\\.fi$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Noembed.com\" default_off=\"failed ruleset test\" f=\"Noembed.com.xml\"><securecookie host=\"^\\.noembed\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Noisebridge.net\" f=\"Noisebridge.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Noisey.com\" f=\"Noisey.com.xml\"><rule from=\"^http://(?:www\\.)?noisey\\.com/\" to=\"https://noisey.vice.com/\"/><rule from=\"^http://assets\\.noisey\\.com/\" to=\"https://d2d9cnk8doncvf.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Nokia (partial)\" default_off=\"failed ruleset test\" f=\"Nokia.xml\"><exclusion pattern=\"^http://www\\.developer\\.nokia\\.com/(?:$|De(?:sign|velop|vices)/|Distribute/|info/)\"/><securecookie host=\"^(?:.*\\.)?nokia\\.(?:com|co\\.uk|de|fr)$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?nokia\\.ca/\" to=\"https://www.nokia.com/ca-en/\"/><rule from=\"^http://(?:www\\.)?nokia\\.(co\\.uk|de|fr)/\" to=\"https://www.nokia.$1/\"/><rule from=\"^http://advertising\\.nokia\\.com/\" to=\"https://primeplace.nokia.com/\"/><rule from=\"^http://((?:account|(?:(?:analytics|projects|sso|www)\\.)?developer|discussions\\.europe|[ir](?:\\.prod)?|maps\\.nlp|api\\.maps|\\d\\.maps\\.nlp|primeplace|www)\\.)?nokia\\.com/\" to=\"https://$1nokia.com/\"/><rule from=\"^http://developer\\.nokia\\.com/\" to=\"https://qt-project.org/\"/><rule from=\"^http://(?:www\\.)?maps\\.nokia\\.com/+\" to=\"https://here.com/\"/><rule from=\"^http://qt\\.nokia\\.com/\" to=\"https://qt.digia.com/\"/><rule from=\"^http://(?:blog|labs)\\.qt\\.nokia\\.com/\" to=\"https://blog.qt.digia.com/\"/><rule from=\"^http://discussions\\.nokia\\.co\\.uk/html/images/\" to=\"https://discussions.europe.nokia.com/html/images/\"/><rule from=\"^http://(?:www\\.)?nokiausa\\.com/\" to=\"https://www.nokiausa.com/\"/></ruleset>", "<ruleset name=\"Nokia Siemens Networks (partial)\" f=\"Nokia_Siemens_Networks.xml\"><securecookie host=\"^\\.nokiasiemensnetworks\\.com$\" name=\"^(?:s_\\w{1,3}|__utm)\\w$\"/><securecookie host=\"^(?:supplier)?\\.portal\\.nokiasiemensnetworks\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?nokiasiemensnetworks\\.com/(?=jwbox/|sites/)\" to=\"https://www.nokiasiemensnetworks.com/\"/><rule from=\"^http://(blogs|industryanalyst|(?:online|supplier)\\.portal)\\.nokiasiemensnetworks\\.com/\" to=\"https://$1.nokiasiemensnetworks.com/\"/><rule from=\"^http://(www\\.)?nsn\\.com/(?=jwbox/|sites/)\" to=\"https://$1nsn.com/\"/></ruleset>", "<ruleset name=\"Nomadesk (partial)\" f=\"Nomadesk.xml\"><securecookie host=\"^secure\\.nomadesk\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?mynomadesk\\.com/\" to=\"https://mynomadesk.com/\"/><rule from=\"^http://(?:www\\.)?nomadesk\\.com/\" to=\"https://www.nomadesk.com/\"/><rule from=\"^http://secure\\.nomadesk\\.com/\" to=\"https://secure.nomadesk.com/\"/></ruleset>", "<ruleset name=\"Nomensa.com (partial)\" f=\"Nomensa.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nomovok.com (partial)\" f=\"Nomovok.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Non Profit Soapbox.com (partial)\" f=\"Non_Profit_Soapbox.com.xml\"><securecookie host=\"^\\w+\\.secure\\.nonprofitsoapbox\\.com$\" name=\".+\"/><rule from=\"^http://(\\w+)\\.secure\\.nonprofitsoapbox\\.com/\" to=\"https://$1.secure.nonprofitsoapbox.com/\"/></ruleset>", "<ruleset name=\"nonexiste.net (partial)\" f=\"Nonexiste.net.xml\"><rule from=\"^http://(?:www\\.)?images\\.nonexiste\\.net/\" to=\"https://images.nonexiste.net/\"/></ruleset>", "<ruleset name=\"NooElec.com\" f=\"NooElec.com.xml\"><securecookie host=\"^\\.(?:www\\.)?nooelec\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Noodleremover.news\" f=\"Noodleremover.news.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nootriment\" f=\"Nootriment.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nordea\" f=\"Nordea.xml\"><rule from=\"^http://(?:www\\.)?nordea\\.(com|dk|ee|fi|lv|no|se)/\" to=\"https://www.nordea.$1/\"/></ruleset>", "<ruleset name=\"Norden.org\" f=\"Norden.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NordicHardware (mismatches)\" default_off=\"Certificate mismatch\" platform=\"mixedcontent\" f=\"NordicHardware-mismatches.xml\"><rule from=\"^http://images\\.nordichardware\\.com/\" to=\"https://images.nordichardware.com/\"/></ruleset>", "<ruleset name=\"NordicHardware\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"NordicHardware.xml\"><securecookie host=\"^www\\.nordichardware\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?nhw\\.se/\" to=\"https://www.nordichardware.se/\"/><rule from=\"^http://(www\\.)?nordichardware\\.(com|se)/\" to=\"https://www.nordichardware.$2/\"/></ruleset>", "<ruleset name=\"Nordic Academy.no (partial)\" default_off=\"failed ruleset test\" f=\"Nordic_Academy.no.xml\"><securecookie host=\"^vpn\\.nordicacademy\\.no$\" name=\".+\"/><rule from=\"^http://vpn\\.nordicacademy\\.no/\" to=\"https://vpn.nordicacademy.no/\"/></ruleset>", "<ruleset name=\"Nordic Hosting.com\" f=\"Nordic_Hosting.com.xml\"><securecookie host=\"^www\\.nordichosting\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nordic Semiconductor\" f=\"Nordic_Semiconductor.xml\"><securecookie host=\"^www\\.nordicsemi\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?nordicsemi\\.com/\" to=\"https://www.nordicsemi.com/\"/></ruleset>", "<ruleset name=\"NordkappNett.no\" f=\"NordkappNett.no.xml\"><securecookie host=\"^(?:www\\.)?nordkappnett\\.no$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?nordkapp\\.net/\" to=\"https://nordkappnett.no/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nordnet.se\" platform=\"mixedcontent\" f=\"Nordnet.se.xml\"><rule from=\"^http://www\\.nordnet\\.se/\" to=\"https://www.nordnet.se/\"/><rule from=\"^http://nordnet\\.se/\" to=\"https://www.nordnet.se/\"/></ruleset>", "<ruleset name=\"Nordstrom Rack.com\" f=\"Nordstrom_Rack.com.xml\"><rule from=\"^http://nordstromrack\\.com/\" to=\"https://www.nordstromrack.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nordu.net\" f=\"Nordu.net.xml\"><rule from=\"^http://www\\.nordu\\.net/\" to=\"https://www.nordu.net/\"/><rule from=\"^http://nordu\\.net/\" to=\"https://www.nordu.net/\"/></ruleset>", "<ruleset name=\"Nordvpn.com\" f=\"Nordvpn.com.xml\"><securecookie host=\"^(?:www\\.)?nordvpn\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Noreplied.com\" f=\"Noreplied.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Norge.no\" f=\"Norge.no.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Norid.no\" f=\"Norid.no.xml\"><rule from=\"^http://(?:www\\.)?norid\\.no/\" to=\"https://www.norid.no/\"/><rule from=\"^http://pid\\.norid\\.no/\" to=\"https://pid.norid.no/\"/></ruleset>", "<ruleset name=\"noris.net\" platform=\"mixedcontent\" f=\"Noris.org.xml\"><rule from=\"^http://(?:((?:mail|monitor|service)\\.)|www\\.)?noris\\.net/\" to=\"https://$1noris.net/\"/></ruleset>", "<ruleset name=\"normalesup.org\" f=\"Normalesup.org.xml\"><rule from=\"^http://(phare\\.)?normalesup\\.org/\" to=\"https://www.normalesup.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Norman.com (problematic)\" default_off=\"mismatched\" f=\"Norman.com-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Norman.com (partial)\" default_off=\"failed ruleset test\" f=\"Norman.com.xml\"><securecookie host=\"^(?:www\\.)?norman\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Normation.com\" f=\"Normation.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Norrgruppen.se (partial)\" f=\"Norrgruppen.se.xml\"><securecookie host=\"^\\.norrgruppen\\.se$\" name=\"^(?:NXCLICK2|OAX)$\"/><rule from=\"^http://sifomedia\\.norrgruppen\\.se/\" to=\"https://oasc07.247realmedia.com/\"/></ruleset>", "<ruleset name=\"NANOG.org (partial)\" default_off=\"failed ruleset test\" f=\"North-American-Network-Operators-Group.xml\"><exclusion pattern=\"^http://bcop\\.nanog\\.org/+(?!images/|skins/)\"/><rule from=\"^http://mailtest\\.nanog\\.org/\" to=\"https://mailman.nanog.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NCSU.edu (problematic)\" default_off=\"missing certificate chain\" f=\"North-Carolina-State-University-problematic.xml\"><rule from=\"^http://(?:www\\.cs|csc)\\.ncsu\\.edu/\" to=\"https://www.csc.ncsu.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NCSU.edu (partial)\" default_off=\"failed ruleset test\" f=\"North-Carolina-State-University.xml\"><exclusion pattern=\"^http://libraryh3lp\\.com/(?:chat/|follow/)\"/><securecookie host=\"^libraryh3lp\\.com$\" name=\".*\"/><securecookie host=\"^(?:.*\\.)?ncsu\\.edu$\" name=\".*\"/><rule from=\"^http://gmail\\.ncsu\\.edu/[^?]*\" to=\"https://mail.google.com/a/ncsu.edu\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"North-Herts.gov.uk (partial)\" f=\"North-Herts.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"North Peace Savings Credit Union\" f=\"North-Peace-Savings-Credit-Union.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NorthClicks\" f=\"NorthClicks.xml\"><securecookie host=\"^(?:www)?\\.northclicks\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?northclicks\\.com/\" to=\"https://www.northclicks.com/\"/></ruleset>", "<ruleset name=\"North Devon Theatres\" f=\"North_Devon_Theatres.org.uk.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"North Korea Tech.org\" f=\"North_Korea_Tech.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"North Norfolk.org\" f=\"North_Norfolk.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://northnorfolk\\.org/\" to=\"https://www.northnorfolk.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"North Warks.gov.uk\" f=\"North_Warks.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.www\\.\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Northeastern.edu (partial)\" f=\"Northeastern.edu.xml\"><securecookie host=\"^(?:calendar|laweval|www)\\.northeastern\\.edu$\" name=\".+\"/><rule from=\"^http://northeastern\\.edu/\" to=\"https://www.northeastern.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Northern-Indymedia.org (partial)\" default_off=\"expired\" platform=\"cacert\" f=\"Northern-Indymedia.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Northern Tool.com (partial)\" f=\"Northern_Tool.com.xml\"><securecookie host=\"^m\\.northerntool\\.com$\" name=\".+\"/><rule from=\"^http://(?:northerntool\\.ugc\\.bazaarvoice|(?:answer|review)s\\.northerntool)\\.com/\" to=\"https://northerntool.ugc.bazaarvoice.com/\"/><rule from=\"^http://(?:www\\.)?northerntool\\.com/(?=css/|favicon\\.ico|images/|s(?:hop|tores)(?:$|[?/])|wcsstore/)\" to=\"https://www.northerntool.com/\"/><rule from=\"^http://m\\.northerntool\\.com/\" to=\"https://m.northerntool.com/\"/></ruleset>", "<ruleset name=\"Northpole.fi\" f=\"Northpole.fi.xml\"><securecookie host=\"^(?:.*\\.)northpole\\.fi$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?northpole\\.fi/\" to=\"https://northpole.fi/\"/></ruleset>", "<ruleset name=\"Northwest Swim Shop\" f=\"Northwest_Swim_Shop.xml\"><rule from=\"^http://(?:www\\.)?nwswimshop\\.com/\" to=\"https://nwswimshop.myshopify.com/\"/></ruleset>", "<ruleset name=\"Northwestern.edu (partial)\" f=\"Northwestern_University.xml\"><exclusion pattern=\"^http://www\\.library\\.northwestern\\.edu/(?!misc/|modules/|sites/)\"/><securecookie host=\"^(?:blog\\.nuamps\\.at|autodiscover|bfmf|carlsmith|mail\\.(?:chicago|evanston)|(?:www\\.)?collaborate(?:\\.qatar)?|courses|cscdc|(?:validate|websso)\\.it|blogs\\.kellogg|(?:www\\.)?law|mail|chitrec\\.nubic|nuhr|blog\\.oncofertility|umail|blog\\.undergradresearch|blog\\.womenshealth)\\.northwestern\\.edu$\" name=\".+\"/><securecookie host=\"^\\.undergradresearch\\.northwestern\\.edu$\" name=\"^SESS\\w{32}$\"/><rule from=\"^http://((?:blog\\.nuamps|websecurity)\\.at|autodiscover|bfmf|carlsmith|mail\\.(?:chicago|evanston)|(?:www\\.)?collaborate|courses|directory|blog\\.ipd|(?:fed|validate|websso)\\.it|(?:careerspace\\.|www\\.)?law|www\\.library|mail|(?:www\\.)?math|chitrec\\.nubic|nuhr|blog\\.oncofertility|(?:autodiscover|(?:www\\.)?collaborate|mail|webmail)\\.qatar|(?:www\\.)?research|blog\\.scienceinsociety|(?:www\\.)?scs|tss|umail|blog\\.undergradresearch|(?:blog\\.)?womenshealth)\\.northwestern\\.edu/\" to=\"https://$1.northwestern.edu/\"/><rule from=\"^http://(?:www\\.)?(cafe|ses|undergradresearch)\\.northwestern\\.edu/\" to=\"https://$1.northwestern.edu/\"/><rule from=\"^http://u\\.northwestern\\.edu/\" to=\"https://mail.google.com/a/u.northwestern.edu/\"/><rule from=\"^http://(?:www\\.)?wcas\\.northwestern\\.edu/\" to=\"https://www.wcas.northwestern.edu/\"/></ruleset>", "<ruleset name=\"Norton (partial)\" f=\"Norton.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://arabic\\.norton\\.com/.*\" to=\"https://uk.norton.com/\"/><rule from=\"^http://asia\\.norton\\.com/.*\" to=\"https://sg.norton.com/\"/><rule from=\"^http://lu\\.norton\\.com/.*\" to=\"https://fr.norton.com/\"/><rule from=\"^http://store\\.norton\\.com/+(.*)\\.html\" to=\"https://buy.norton.com/en-us/$1\"/><rule from=\"^http://store\\.norton\\.com/[^?]*\" to=\"https://buy.norton.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Norton Online Backup\" f=\"Norton_Online_Backup.xml\"><securecookie host=\"^.+\\.backup\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?backup\\.com/\" to=\"https://www.backup.com/\"/><rule from=\"^http://(?:secure-)?assets\\.backup\\.com/\" to=\"https://secure-assets.backup.com/\"/><rule from=\"^http://(centurylink|delldatasafe|[dn]obu|nis|nobu-nis|vipprotection)\\.backup\\.com/\" to=\"https://$1.backup.com/\"/></ruleset>", "<ruleset name=\"Norwalk Reflector (partial)\" f=\"Norwalk_Reflector.xml\"><rule from=\"^http://(?:www\\.)?norwalkreflector\\.com/(misc/|sites/|user(?:$|\\?|/))\" to=\"https://www.norwalkreflector.com/$1\"/></ruleset>", "<ruleset name=\"Norwegian.com\" f=\"Norwegian.com.xml\"><securecookie host=\"^(www\\.)?norwegian.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NorwegianClass101.com\" f=\"NorwegianClass101.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://norwegianclass101\\.com/\" to=\"https://www.norwegianclass101.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"norx.io\" f=\"Norx.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nos-oignons.net\" f=\"Nos-oignons.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nos.pt\" f=\"Nos.pt.xml\"><rule from=\"^http://(?:www\\.)?nos\\.pt/\" to=\"https://www.nos.pt/\"/></ruleset>", "<ruleset name=\"not-your-server.de (partial)\" f=\"Not-your-server.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Not Alone.gov\" f=\"Not_Alone.gov.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Not Enough Shaders.com\" default_off=\"failed ruleset test\" f=\"Not_Enough_Shaders.com.xml\"><securecookie host=\"^(?:www\\.)?notenoughshaders\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Not Even Past.org\" f=\"Not_Even_Past.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NotaNet.com.br\" default_off=\"failed ruleset test\" f=\"NotaNet.com.br.xml\"><rule from=\"^http://(?:www\\.)?notanet\\.com\\.br/\" to=\"https://www.notanet.com.br/\"/></ruleset>", "<ruleset name=\"Notacon.org\" default_off=\"failed ruleset test\" f=\"Notacon.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NoteFly\" f=\"NoteFly.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NoteApp.com\" default_off=\"failed ruleset test\" f=\"Noteapp.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Notebook Italia\" default_off=\"redirects to http\" f=\"Notebook_Italia.xml\"><securecookie host=\"^notebookitalia\\.it$\" name=\".+\"/><rule from=\"^http://(www\\.)?notebookitalia\\.it/\" to=\"https://notebookitalia.it/\"/></ruleset>", "<ruleset name=\"Notebooksbilliger.de\" f=\"Notebooksbilliger.xml\"><rule from=\"^http://(blog|img|www)\\.notebooksbilliger\\.de/\" to=\"https://$1.notebooksbilliger.de/\"/></ruleset>", "<ruleset name=\"Noted Code.com\" f=\"Noted_Code.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Notepad-plus-plus.org\" f=\"Notepad++.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nothing.ch\" f=\"Nothing.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nottingham.ac.uk (false MCB)\" platform=\"mixedcontent\" f=\"Nottingham.ac.uk-falsemixed.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NottinghamAC\" default_off=\"failed ruleset test\" f=\"NottinghamAC.xml\"><securecookie host=\"^(?:.+\\.)?nottingham\\.ac\\.uk$\" name=\".\"/><rule from=\"^http://ssbcpib01\\.nottingham\\.ac\\.uk/\" to=\"https://www.cpib.ac.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"novartisart.com\" default_off=\"expired\" f=\"Novartisart.com.xml\"><rule from=\"^http://(?:www\\.)?novartisart\\.com/\" to=\"https://novartisart.com/\"/></ruleset>", "<ruleset name=\"Novell.com (partial)\" default_off=\"failed ruleset test\" f=\"Novell.xml\"><securecookie host=\"^\\.novell\\.com$\" name=\"^bb_(?:sessionhash|lastactivity|lastvisit)$\"/><securecookie host=\"^(?:shop|(?:c2c\\.|eservice\\.)?websupport|wiki|www)\\.novell\\.com$\" name=\".+\"/><rule from=\"^http://novell\\.com/\" to=\"https://www.novell.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NovoEd.com\" f=\"NovoEd.com.xml\"><securecookie host=\"^novoed\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Novosoft.net\" default_off=\"failed ruleset test\" f=\"Novosoft.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Now.com\" f=\"Now.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NowSecure.com\" f=\"NowSecure.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nowness.com\" f=\"Nowness.com.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://nowness\\.com/\" to=\"https://www.nowness.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nowy BIP\" default_off=\"mismatched\" f=\"Nowy_BIP.xml\"><securecookie host=\"^\\.nowybip\\.pl$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?nowybip\\.pl/\" to=\"https://nowybip.pl/\"/></ruleset>", "<ruleset name=\"np-Edv.at (partial)\" f=\"Np-Edv.at.xml\"><rule from=\"^http://(hosting|it|kawas|mail|stats|wiki)\\.np-edv\\.at/\" to=\"https://$1.np-edv.at/\"/></ruleset>", "<ruleset name=\"nplusonemag.com (partial)\" f=\"Nplusonemag.com.xml\"><securecookie host=\"^(?:www\\.)?nplusonemag\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"npm.im\" default_off=\"expired\" f=\"Npm.im.xml\"><rule from=\"^http://(?:www\\.)?npm\\.im/\" to=\"https://www.npm.im/\"/></ruleset>", "<ruleset name=\"npm js.com\" f=\"Npm_js.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"npm js.org (partial)\" f=\"Npm_js.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://status\\.npmjs\\.org/\" to=\"https://npmjs.statuspage.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"npmawesome.com (false MCB)\" platform=\"mixedcontent\" f=\"Npmawesome.com-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"npmawesome.com (partial)\" f=\"Npmawesome.com.xml\"><exclusion pattern=\"^http://npawesome\\.com/+(?!favicon\\.ico|wp-content/|wp-includes/)\"/><securecookie host=\"^\\.npmawesome\\.com$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"npower (partial)\" f=\"Npower.xml\"><rule from=\"^http://(?:www\\.)?npower\\.com/(Medium-)?Business/(.+)/(?:index\\.htm)?\" to=\"https://www.npower.com/$1Business/$2/\"/><rule from=\"^http://(?:www\\.)?npower\\.com/([aA]t_[hH]ome/[aA]pplications/|favicon\\.ico|idc/groups/wcms_|In_Business/)\" to=\"https://www.npower.com/$1\"/></ruleset>", "<ruleset name=\"nqsb.io\" f=\"Nqsb.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nrelate (partial)\" f=\"Nrelate.xml\"><securecookie host=\"^partners\\.nrelate\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?nrelate\\.com/wp-content/uploads/2010/10/favicon\\.ico\" to=\"https://partners.nrelate.com/wp-content/themes/partners-main/images/favicon.ico\"/><rule from=\"^http://(?:www\\.)?nrelate\\.com/wp-content/uploads/2012/01/nrelate\\.png\" to=\"https://partners.nrelate.com/wp-content/themes/partners-main/images/logo2.png\"/><rule from=\"^http://partners\\.nrelate\\.com/\" to=\"https://partners.nrelate.com/\"/></ruleset>", "<ruleset name=\"NRK.no (partial)\" default_off=\"failed ruleset test\" f=\"Nrk.no.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nruns.com\" f=\"Nruns.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nserver.Ru\" default_off=\"failed ruleset test\" f=\"Nserver.Ru.xml\"><securecookie host=\"^\\.gpt\\.nserver\\.ru$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nsfwcorp.com (partial)\" f=\"Nsfwcorp.com.xml\"><securecookie host=\"^www\\.nsfwcorp\\.com$\" name=\".+\"/><rule from=\"^http://nsfwcorp\\.com/\" to=\"https://www.nsfwcorp.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nsimg.net\" f=\"Nsimg.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nsnam.org\" f=\"Nsnam.org.xml\"><rule from=\"^http://code\\.nsnam\\.org/$\" to=\"https://code.nsnam.org/\"/><rule from=\"^http://code\\.nsnam\\.org/\" to=\"https://code.nsnam.org/index.cgi/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nsupdate.info\" f=\"Nsupdate.info.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ntk.me\" f=\"Ntk.me.xml\"><securecookie host=\"^\\.ntk\\.me$\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ntmx.de\" default_off=\"failed ruleset test\" f=\"Ntmx.de.xml\"><rule from=\"^http://www\\.ntmx\\.de/\" to=\"https://ntmx.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ntop.org (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Ntop.org.xml\"><rule from=\"^http://(?:svn\\.|www\\.)?ntop\\.org/\" to=\"https://svn.ntop.org/\"/><rule from=\"^https://www\\.ntop\\.org/\" to=\"https://svn.ntop.org/\"/></ruleset>", "<ruleset name=\"Nttxstore\" f=\"Nttxstore.xml\"><rule from=\"^http://(?:www\\.)?nttxstore\\.jp/\" to=\"https://nttxstore.jp/\"/></ruleset>", "<ruleset name=\"ntv.io (partial)\" default_off=\"failed ruleset test\" f=\"Ntv.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ntwk45.com\" f=\"Ntwk45.xml\"><rule from=\"^http://(\\w+)\\.ntwk45\\.com/\" to=\"https://$1.ntwk45.com/\"/></ruleset>", "<ruleset name=\"NuBlue\" f=\"NuBlue.xml\"><securecookie host=\"^\\.nublue\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NuBits.com\" f=\"NuButs.com.xml\"><securecookie host=\"^(?:discuss)?\\.nubits\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NuGet.org (partial)\" f=\"NuGet.xml\"><securecookie host=\"^\\.(?:doc|statu)s\\.\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NuStarz.com (false MCB)\" platform=\"mixedcontent\" f=\"NuStarz.com-falsemixed.xml\"><securecookie host=\"^\\.nustarz\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NuStarz.com (partial)\" default_off=\"failed ruleset test\" f=\"NuStarz.com.xml\"><securecookie host=\"^customz\\.nustarz\\.com$\" name=\".+\"/><rule from=\"^http://customz\\.nustarz\\.com/\" to=\"https://customz.nustarz.com/\"/></ruleset>", "<ruleset name=\"Nu Image Medical (partial)\" f=\"Nu_Image_Medical.xml\"><rule from=\"^http://(www\\.)?nuimagemedical\\.com/(order-hgh(?:$|\\?|/)|wp-content/)\" to=\"https://$1nuimagemedical.com/$2\"/></ruleset>", "<ruleset name=\"Nuand.com\" f=\"Nuand.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nuclear Blast (partial)\" f=\"Nuclear-Blast.xml\"><rule from=\"^http://(?:www\\.)?nuclearblast\\.de/(css|en/(?:data|shop/(?:order|registration)|system)|images|static)/\" to=\"https://www.nuclearblast.de/$1/\"/></ruleset>", "<ruleset name=\"NuclearCat.com\" f=\"NuclearCat.com.xml\"><rule from=\"^http://www\\.nuclearcat\\.com/\" to=\"https://nuclearcat.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nudevista.com (partial)\" default_off=\"mismatched\" f=\"Nudevista.com.xml\"><rule from=\"^http://a9[789]\\.nudevista\\.com/\" to=\"https://a97-nudevista.clients.cdn13.com/\"/></ruleset>", "<ruleset name=\"NuevaSync (partial)\" platform=\"mixedcontent\" f=\"NuevaSync.xml\"><rule from=\"^http://(?:www\\.)?nuevasync\\.com/\" to=\"https://www.nuevasync.com/\"/></ruleset>", "<ruleset name=\"nugg.ad\" default_off=\"failed ruleset test\" f=\"Nugg.ad.xml\"><securecookie host=\"^\\.nuggad\\.net$\" name=\"^d$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nulab-Inc.com\" f=\"Nulab-Inc.com.xml\"><rule from=\"^http://(?:(developer\\.)|www\\.)?nulab-inc\\.com/\" to=\"https://$1nulab-inc.com/\"/></ruleset>", "<ruleset name=\"NullRefer.com (false MCB)\" platform=\"mixedcontent\" f=\"NullRefer.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nullday.de\" f=\"Nullday.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Numa.paris (partial)\" default_off=\"failed ruleset test\" f=\"Numa.paris.xml\"><securecookie host=\"^www\\.numa\\.paris$\" name=\".+\"/><rule from=\"^http://numa\\.paris/\" to=\"https://www.numa.paris/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Numato.com (partial)\" f=\"Numato.com.xml\"><rule from=\"^http://(www\\.)?numato\\.com/(?=[\\w-]+\\.(?:gif|jpg|png)|cart/checkout(?:$|\\?.*|/\\??$)|misc/|sites/)\" to=\"https://$1numato.com/\"/></ruleset>", "<ruleset name=\"NRO.net\" f=\"Number-Resource-Organization.xml\"><securecookie host=\"^(?:.*\\.)nro\\.net$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NumbersUSA\" f=\"NumbersUSA.xml\"><securecookie host=\"^\\.numbersusa\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Numergy.com\" default_off=\"failed ruleset test\" f=\"Numergy.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^https://login\\.numergy\\.com:80/\" to=\"https://login.numergy.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"numsys.eu\" default_off=\"mismatched\" f=\"Numsys.eu.xml\"><securecookie host=\"^numsys\\.eu$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?numsys\\.eu/\" to=\"https://numsys.eu/\"/></ruleset>", "<ruleset name=\"Nurago\" f=\"Nurago.xml\"><rule from=\"^http://sensic\\.net/\" to=\"https://www.sensic.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NutriCentre\" default_off=\"failed ruleset test\" f=\"NutriCentre.xml\"><securecookie host=\"^(?:.*\\.)?nutricentre\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?nutricentre\\.com/\" to=\"https://www.nutricentre.com/\"/></ruleset>", "<ruleset name=\"Nutrition.gov\" f=\"Nutrition.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nutritiondata.self.com\" default_off=\"failed ruleset test\" f=\"Nutritiondata.self.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nuuvem.com\" f=\"Nuuvem.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nuwear\" default_off=\"failed ruleset test\" f=\"Nuwear.xml\"><securecookie host=\"^(?:w*\\.)?nuwear\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nuxx.net\" f=\"Nuxx.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NVCC\" default_off=\"failed ruleset test\" f=\"Nvcc.edu.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nvr.de\" f=\"Nvr.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NwProgressive.org (partial)\" f=\"NwProgressive.org.xml\"><securecookie host=\"^(?:www\\.)?nwprogressive\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NxJimg.com\" f=\"NxJimg.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nxt Forum.org\" f=\"Nxt_Forum.org.xml\"><securecookie host=\"^nxtforum\\.org$\" name=\".+\"/><rule from=\"^http://www\\.nxtforum\\.org/+\" to=\"https://nxtforum.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nxtck.com\" f=\"Nxtck.com.xml\"><securecookie host=\"^nxtck\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nxtgn.org\" default_off=\"failed ruleset test\" f=\"Nxtgn.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nyaa.eu\" default_off=\"failed ruleset test\" f=\"Nyaa.eu.xml\"><securecookie host=\"^\\.nyaa\\.eu$\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nyaa.se\" default_off=\"failed ruleset test\" f=\"Nyaa.se.xml\"><securecookie host=\"^(sukebei|www)?\\.nyaa\\.se$\" name=\".+\"/><rule from=\"^http://nyaa\\.se/\" to=\"https://www.nyaa.se/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nylas.com (partial)\" f=\"Nylas.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nymity.ch (partial)\" f=\"Nymity.ch.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nyx.cz\" f=\"Nyx.cz.xml\"><rule from=\"^http://nyx\\.cz/\" to=\"https://www.nyx.cz/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nzbplanet.net\" f=\"Nzbplanet.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"o2 online.de (partial)\" f=\"O2_online.de.xml\"><securecookie host=\"^(?:.*\\.)?o2online\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?o2online\\.de/\" to=\"https://www.o2online.de/\"/><rule from=\"^http://(cct2?|dsl|email|hilfe|login|portal|track)\\.o2online\\.de/\" to=\"https://$1.o2online.de/\"/><rule from=\"^http://mobilefun\\.o2online\\.de/\" to=\"https://o2-liv.mondiamedia.com/\"/></ruleset>", "<ruleset name=\"OAG.com (false MCB)\" platform=\"mixedcontent\" f=\"OAG.com-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OAG (partial)\" f=\"OAG.xml\"><exclusion pattern=\"^http://(?:www\\.)?oag\\.com/+(?!favicon\\.ico|misc/|modules/|sites/)\"/><securecookie host=\"^tppro\\.oag\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OASIS Open.org (false MCB)\" platform=\"mixedcontent\" f=\"OASIS_Open.org-falsemixed.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OASIS Open.org (partial)\" default_off=\"failed ruleset test\" f=\"OASIS_Open.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OAuth.net\" f=\"OAuth.net.xml\"><rule from=\"^http://(www|blog|oauthwiki|tokens|tumble)\\.oauth\\.net/\" to=\"https://oauth.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OBLIC.com\" f=\"OBLIC.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OC-static.com\" f=\"OC-static.com.xml\"><securecookie host=\"^\\.oc-static\\.com$\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OCCRP.org\" default_off=\"failed ruleset test\" f=\"OCCRP.org.xml\"><securecookie host=\"^(?:www\\.)?occrp\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OCaml.org (partial)\" default_off=\"failed ruleset test\" f=\"OCaml.xml\"><rule from=\"^http://www\\.ocaml\\.org/\" to=\"https://ocaml.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OCamlCore.org (partial)\" default_off=\"failed ruleset test\" f=\"OCamlCore.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OCharles.org.uk\" f=\"OCharles.org.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OD.org\" f=\"OD.org.xml\"><securecookie host=\"^shared\\.od\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ODMWheels\" default_off=\"failed ruleset test\" f=\"ODMWheels.xml\"><securecookie host=\"^(?:.*\\.)?odmwheels\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OECD\" f=\"OECD.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OECD iLibrary (partial)\" default_off=\"expired, mismatched\" f=\"OECD_iLibrary.xml\"><rule from=\"^http://www\\.oecd-?ilibrary\\.org/(cs|image)s/\" to=\"https://www.oecd-ilibrary.org/$1s/\"/></ruleset>", "<ruleset name=\"OEIS.org\" f=\"OEIS.org.xml\"><rule from=\"^http://(?:www\\.)?oeis\\.org/\" to=\"https://oeis.org/\"/></ruleset>", "<ruleset name=\"OFB (partial)\" default_off=\"failed ruleset test\" f=\"OFB.xml\"><securecookie host=\"^ofb\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ofb\\.net/\" to=\"https://ofb.net/\"/><rule from=\"^http://mail\\.ofb\\.net/\" to=\"https://ofb.net:441/squirrelmail-apache2/\"/></ruleset>", "<ruleset name=\"OFFLINE.ee (partial)\" default_off=\"expired, self-signed\" f=\"OFFLINE.ee.xml\"><securecookie host=\"^mail\\.offline\\.ee$\" name=\".+\"/><rule from=\"^http://mail\\.offline\\.ee/\" to=\"https://mail.offline.ee/\"/></ruleset>", "<ruleset name=\"OFTC.net\" f=\"OFTC.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OH-Tech.org\" f=\"OH-Tech.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OHM2013.org\" default_off=\"expired\" f=\"OHM2013.org.xml\"><rule from=\"^http://(?:www\\.)?ohm2013\\.org/\" to=\"https://ohm2013.org/\"/></ruleset>", "<ruleset name=\"O’Heffernan\" f=\"OHeffernan.xml\"><rule from=\"^http://(?:www\\.)?inchinashop\\.com/\" to=\"https://pingplanet.squarespace.com/\"/></ruleset>", "<ruleset name=\"OK.de\" f=\"OK.de.xml\"><securecookie host=\"^(?:www\\.)?ok\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ok\\.de/\" to=\"https://www.ok.de/\"/></ruleset>", "<ruleset name=\"OKCoin.cn\" default_off=\"failed ruleset test\" f=\"OKCoin.cn.xml\"><securecookie host=\"^www\\.okcoin\\.cn$\" name=\".+\"/><rule from=\"^http://okcoin\\.cn/\" to=\"https://www.okcoin.cn/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OKCoin.com\" default_off=\"failed ruleset test\" f=\"OKCoin.com.xml\"><securecookie host=\"^(?:www)?\\.okcoin\\.com$\" name=\".+\"/><rule from=\"^http://okcoin\\.com/\" to=\"https://www.okcoin.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OKPAY.com\" f=\"OKPAY.com.xml\"><securecookie host=\"^(?:support|www)\\.okpay\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?okpay\\.com/\" to=\"https://www.okpay.com/\"/><rule from=\"^http://support\\.okpay\\.com/\" to=\"https://support.okay.com/\"/></ruleset>", "<ruleset name=\"OLPC (partial)\" default_off=\"failed ruleset test\" f=\"OLPC.xml\"><rule from=\"^http://dev\\.laptop\\.org/\" to=\"https://dev.laptop.org/\"/><securecookie host=\"^dev\\.laptop\\.org$\" name=\".*\"/></ruleset>", "<ruleset name=\"OLX.com.br (partial)\" f=\"OLX.com.br.xml\"><securecookie host=\"^\\.olx\\.com\\.br$\" name=\"^(?:customer_chat|md|sq|s)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OMG! Ubuntu! (partial)\" f=\"OMG-Ubuntu.xml\"><rule from=\"^http://cloudfront\\.omgubuntu\\.co\\.uk/\" to=\"https://omgubuntu.s3-eu-west-1.amazonaws.com/\"/></ruleset>", "<ruleset name=\"OMG uk.com\" f=\"OMG_uk.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.omguk\\.com/.*\" to=\"https://www.optimisemedia.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OMICRON (partial)\" f=\"OMICRON.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OMNeTpp.org\" f=\"OMNeTpp.org.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OMS Vermarktungs GmbH\" default_off=\"failed ruleset test\" f=\"OMS.eu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ON24 (mismatches)\" default_off=\"mismatched\" platform=\"mixedcontent\" f=\"ON24-mismatches.xml\"><rule from=\"^http://communication\\.on24\\.com/\" to=\"https://communication.on24.com/\"/></ruleset>", "<ruleset name=\"ON24.com (partial)\" f=\"ON24.xml\"><securecookie host=\"^(?:event\\.|eventprd10b\\.|www\\.)?on24\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?on24\\.com/\" to=\"https://www.on24.com/\"/><rule from=\"^http://(event|eventprd10b|w)\\.on24\\.com/\" to=\"https://$1.on24.com/\"/></ruleset>", "<ruleset name=\"ONE.org\" f=\"ONE.org.xml\"><securecookie host=\"^one\\.actionkit\\.com\" name=\".+\"/><rule from=\"^http://(www\\.)?one\\.org/\" to=\"https://$1one.org/\"/><rule from=\"^http://(?:one\\.actionkit\\.com|give\\.one\\.org)/\" to=\"https://one.actionkit.com/\"/></ruleset>", "<ruleset name=\"ONEadmin.cz (partial)\" f=\"ONEadmin.xml\"><securecookie host=\"^www\\.oneadmin\\.cz$\" name=\".+\"/><rule from=\"^http://oneadmin\\.cz/[^?]*\" to=\"https://www.oneadmin.cz/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ONEbit.cz\" f=\"ONEbit.xml\"><securecookie host=\"^w(?:ebmail|ww)\\.onebit\\.cz$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ONEhelp\" f=\"ONEhelp.xml\"><securecookie host=\"^www\\.onehelp\\.cz$\" name=\".+\"/><rule from=\"^http://onehelp\\.cz/(?:\\?.*)?$\" to=\"https://www.onehelp.cz/onebit/\"/><rule from=\"^http://onehelp\\.cz/onebit/(?:\\?.*)?$\" to=\"https://www.onehelp.cz/\"/><rule from=\"^http://www\\.onehelp\\.cz/\" to=\"https://www.onehelp.cz/\"/></ruleset>", "<ruleset name=\"ONEnews\" default_off=\"mismatched\" f=\"ONEnews.xml\"><rule from=\"^http://onenews\\.cz/[^\\?](\\?.*)\" to=\"https://www.onenews.cz/$1\"/><rule from=\"^http://www\\.onenews\\.cz/\" to=\"https://www.onenews.cz/\"/></ruleset>", "<ruleset name=\"ONEserver.cz\" f=\"ONEserver.cz.xml\"><rule from=\"^http://oneserver\\.cz/\" to=\"https://www.oneserver.cz/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ONEsite (partial)\" f=\"ONEsite.xml\"><securecookie host=\"^\\.admin\\.onesite\\.com$\" name=\".+\"/><rule from=\"^http://admin\\.onesite\\.com/\" to=\"https://admin.onesite.com/\"/><rule from=\"^http://(?:fast1|images)\\.onesite\\.com/\" to=\"https://images.onesite.com/\"/></ruleset>", "<ruleset name=\"ONEsolution.cz\" f=\"ONEsolution.xml\"><securecookie host=\"^www\\.onesolution\\.cz$\" name=\".+\"/><rule from=\"^http://onesolution\\.cz/\" to=\"https://www.onesolution.cz/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ONEweb (partial)\" f=\"ONEweb.xml\"><securecookie host=\"^www\\.oneweb\\.cz$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?oneweb\\.cz/\" to=\"https://www.oneweb.cz/\"/></ruleset>", "<ruleset name=\"ONOS Project.org (partial)\" f=\"ONOS_Project.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ONOrobot.org\" default_off=\"failed ruleset test\" f=\"ONOrobot.org.xml\"><securecookie host=\"^\\.onorobot\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OODA.com\" f=\"OODA.com.xml\"><rule from=\"^http://(?:www\\.)?ooda\\.com/\" to=\"https://www.ooda.com/\"/></ruleset>", "<ruleset name=\"OODA Loop.com\" f=\"OODA_Loop.com.xml\"><securecookie host=\"^www\\.oodaloop\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?oodaloop\\.com/\" to=\"https://www.oodaloop.com/\"/></ruleset>", "<ruleset name=\"OPCW.org\" f=\"OPCW.org.xml\"><rule from=\"^http://opcw\\.org/\" to=\"https://www.opcw.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OPM.gov\" default_off=\"failed ruleset test\" f=\"OPM.gov.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://servicesonline\\.opm\\.gov/\" to=\"https://www.servicesonline.opm.gov/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OPML (partial)\" f=\"OPML.xml\"><rule from=\"^http://static\\.opml\\.org/\" to=\"https://s3.amazonaws.com/static.opml.org/\"/></ruleset>", "<ruleset name=\"OPNsense.org\" f=\"OPNsense.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OPSWAT.com\" f=\"OPSWAT.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ORA\" default_off=\"failed ruleset test\" f=\"ORA.xml\"><securecookie host=\"^\\.orafarm\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ORB-International.com\" f=\"ORB-International.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ORCID.org\" f=\"ORCID.org.xml\"><exclusion pattern=\"^http://qrcode\\.orcid\\.org/\"/><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"O’Reilly Media (mismatches)\" default_off=\"mismatched\" f=\"OReilly-Media-mismatches.xml\"><rule from=\"^http://akamaicovers\\.oreilly\\.com/\" to=\"https://akamaicovers.oreilly.com/\"/></ruleset>", "<ruleset name=\"O’Reilly Media (partial)\" f=\"OReilly-Media.xml\"><exclusion pattern=\"^http://examples\\.oreilly\\.com/+(?!$)\"/><exclusion pattern=\"^http://shop\\.oreilly\\.com/(?!images/|includes/|mod/|text/)\"/><rule from=\"^http://(examples|members|shop)\\.oreilly\\.com/\" to=\"https://$1.oreilly.com/\"/><rule from=\"^http://cdn\\.oreillystatic\\.com/\" to=\"https://cdn.oreillystatic.com/\"/></ruleset>", "<ruleset name=\"OS.uk\" f=\"OS.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OS3.nl\" f=\"OS3.nl.xml\"><securecookie host=\"^(?:www\\.)?os3\\.nl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OSADL.org\" f=\"OSADL.org.xml\"><securecookie host=\"^\\.osadl\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OSChina.net (partial)\" f=\"OSChina.net.xml\"><rule from=\"^http://oschina\\.net/\" to=\"https://www.oschina.net/\"/><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OSDC.com.au\" default_off=\"failed ruleset test\" f=\"OSDC.com.au.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?osdc\\.com\\.au/+\" to=\"https://2015.osdc.com.au/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OSDV.org (problematic)\" default_off=\"mismatched\" f=\"OSDV.org-problematic.xml\"><exclusion pattern=\"^http://(?:www\\.)?osdv\\.org/wp-(?:content|includes)/\"/><rule from=\"^http://(?:www\\.)?osdv\\.org/\" to=\"https://www.osdv.org/\"/></ruleset>", "<ruleset name=\"OSDV.org (partial)\" f=\"OSDV.org.xml\"><exclusion pattern=\"^http://(?:www\\.)?osdv\\.org/(?!wp-content/|wp-includes/)\"/><securecookie host=\"^\\.osdv\\.org$\" name=\"^__utm\\w$\"/><rule from=\"^http://(?:www\\.)?osdv\\.org/\" to=\"https://wordpress2.trustthevote.org/\"/></ruleset>", "<ruleset name=\"OSDir.com\" f=\"OSDir.com.xml\"><securecookie host=\"^\\.osdir\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OSGeo.org (partial)\" f=\"OSGeo.org.xml\"><exclusion pattern=\"^http://(?:www\\.)?osgeo\\.org/+(?!favicon\\.ico|files/|images/|misc/|modules/|sites/)\"/><securecookie host=\"^\\.fdo\\.osgeo\\.org$\" name=\".\"/><securecookie host=\"^(?!www\\.)\\w\" name=\".\"/><rule from=\"^http://osgeo4w\\.osgeo\\.org/[^?]*\" to=\"https://trac.osgeo.org/osgeo4w/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"US OSHA.gov (partial)\" f=\"OSHA.gov.xml\"><rule from=\"^http://osha\\.gov/\" to=\"https://www.osha.gov/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OSI Codes\" default_off=\"failed ruleset test\" f=\"OSI_Codes.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenStreetMap Foundation\" f=\"OSM_Foundation.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OSM Group\" default_off=\"failed ruleset test\" f=\"OSM_Group.xml\"><securecookie host=\"^www\\.osmglobal\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?osmglobal\\.com/\" to=\"https://www.osmglobal.com/\"/></ruleset>", "<ruleset name=\"OSR Foundation.org (expired)\" default_off=\"expired\" f=\"OSR_Foundation.org-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OSU.edu (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"OSU.edu-falsemixed.xml\"><securecookie host=\"^\\.\" name=\"^_(?:gat?$|_utm)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.(fod|investments|ppcw|tobaccofree|trustees)\\.osu\\.edu/\" to=\"https://$1.osu.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OSUMC.edu (partial)\" f=\"OSUMC.edu.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OSVDB.org (partial)\" f=\"OSVDB.org.xml\"><securecookie host=\"^\\.osvdb\\.org$\" name=\"^__utm\\w$\"/><rule from=\"^http://(www\\.)?osvdb\\.org/account/?(?:\\?.*)$\" to=\"https://$1osvdb.org/account/login\"/><rule from=\"^http://(www\\.)?osvdb\\.org/(account/(?:login|signup)(?:$|\\?)|images/|javascripts/|stylesheets/)\" to=\"https://$1osvdb.org/$2\"/></ruleset>", "<ruleset name=\"O.S. Systems (partial)\" f=\"OS_Systems.xml\"><securecookie host=\"^projetos\\.ossystems\\.com\\.br$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OSwatch.net\" default_off=\"failed ruleset test\" f=\"OSwatch.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OTAlliance.org\" f=\"OTAlliance.org.xml\"><rule from=\"^http://(?:www\\.)?otalliance\\.org/\" to=\"https://otalliance.org/\"/></ruleset>", "<ruleset name=\"OTR.im (partial)\" f=\"OTR.im.xml\"><securecookie host=\"^bugs\\.otr\\.im$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OTR.to\" f=\"OTR.to.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OU.edu (partial)\" f=\"OU.edu.xml\"><securecookie host=\"^(?:account|hr|apps\\.hr|janux|ozone)\\.ou\\.edu$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ou\\.edu/\" to=\"https://www.ou.edu/\"/><rule from=\"^http://(account|benefitsenrollment|checksheets|financialaid|forms|apps\\.hr|janux|jobs|learn|market|ozone|platform)\\.ou\\.edu/\" to=\"https://$1.ou.edu/\"/><rule from=\"^http://(?:www\\.)?hr\\.ou\\.edu/\" to=\"https://hr.ou.edu/\"/></ruleset>", "<ruleset name=\"OUYA (partial)\" f=\"OUYA.xml\"><exclusion pattern=\"^http://(?:www\\.)?ouya\\.tv/(?!favicon\\.ico|wp-content/)\"/><securecookie host=\"^devs\\.ouya\\.tv$\" name=\".+\"/><rule from=\"^http://(devs\\.|www\\.)?ouya\\.tv/\" to=\"https://$1ouya.tv/\"/><rule from=\"^http://shop\\.ouya\\.tv/\" to=\"https://ouya.myshopify.com/\"/></ruleset>", "<ruleset name=\"OVH.biz\" f=\"OVH.biz.xml\"><securecookie host=\"^(?:www\\.)?ovh\\.biz$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OVH.us\" default_off=\"failed ruleset test\" f=\"OVH.us.xml\"><securecookie host=\"^forum\\.ovh\\.us$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ovh\\.us/+\" to=\"https://www.ovh.com/us/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OVH Telecom.fr\" f=\"OVH_Telecom.fr.xml\"><securecookie host=\"^(?:www\\.)?ovhtelecom\\.fr$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OVPN.se\" f=\"OVPN.se.xml\"><securecookie host=\"^(?:www\\.)?ovpn\\.se$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"oVPN.to (partial)\" f=\"OVPN.xml\"><exclusion pattern=\"^http://www\\.\"/><securecookie host=\"^.*\\.ovpn\\.to$\" name=\".*\"/><rule from=\"^http://(\\w+)\\.ovpn\\.to/\" to=\"https://$1.ovpn.to/\"/></ruleset>", "<ruleset name=\"oVirt.org\" default_off=\"failed ruleset test\" f=\"OVirt.org.xml\"><securecookie host=\"^www\\.ovirt\\.org$\" name=\".+\"/><rule from=\"^http://ovirt\\.org/\" to=\"https://www.ovirt.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OWASP.org\" f=\"OWASP.xml\"><securecookie host=\"^(?:www\\.)?owasp\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ORNL.gov (partial)\" default_off=\"failed ruleset test\" f=\"Oak-Ridge-National-Laboratory.xml\"><rule from=\"^http://olcf\\.ornl\\.gov/\" to=\"https://www.olcf.ornl.gov/\"/><rule from=\"^http://sustainability-ornl\\.org/\" to=\"https://sustainability-ornl.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Oaklandish\" f=\"Oaklandish.xml\"><securecookie host=\"^\\.oaklandish\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ObDev.at\" f=\"ObDev.at.xml\"><securecookie host=\"^(?:.+\\.)?obdev\\.at$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Obedovat.sk\" f=\"Obedovat.sk.xml\"><rule from=\"^http://(?:www\\.)?obedovat\\.sk/\" to=\"https://www.obedovat.sk/\"/></ruleset>", "<ruleset name=\"Oberheide.org\" default_off=\"missing certificate chain\" f=\"Oberheide.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Oberlin College (partial)\" default_off=\"failed ruleset test\" f=\"Oberlin_College.xml\"><securecookie host=\"^.+\\.oberlin\\.edu$\" name=\".+\"/><rule from=\"^http://(blackboard|classifieds|new|oncampus(?:\\.csr)?)\\.oberlin\\.edu/\" to=\"https://$1.oberlin.edu/\"/><rule from=\"^http://(?:occs\\.|www\\.)?cs\\.oberlin\\.edu/\" to=\"https://occs.cs.oberlin.edu/\"/></ruleset>", "<ruleset name=\"Obermassing.at\" f=\"Obermassing.at.xml\"><rule from=\"^http://(?:www\\.)?obermassing\\.at/\" to=\"https://www.obermassing.at/\"/></ruleset>", "<ruleset name=\"Object Management Group (partial)\" f=\"Object-Management-Group.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Object Security\" default_off=\"mismatched\" f=\"Object_Security.xml\"><rule from=\"^http://(?:www\\.)?objectsecurity\\.com/\" to=\"https://objectsecurity.com/\"/></ruleset>", "<ruleset name=\"Objectif-Securite.ch\" f=\"Objectif-Securite.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Objective-See.com\" f=\"Objective-See.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"oblivia.vc\" default_off=\"failed ruleset test\" f=\"Oblivia.vc.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"obnox.de (CAcert, partial)\" platform=\"cacert\" default_off=\"failed ruleset test\" f=\"Obnox.de.xml\"><rule from=\"^http://blog\\.obnox\\.de/\" to=\"https://blog.obnox.de/\"/></ruleset>", "<ruleset name=\"Observium.org (partial)\" f=\"Observium.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"obsoleet.org\" default_off=\"expired\" platform=\"cacert\" f=\"Obsoleet.org.xml\"><rule from=\"^http://(?:www\\.)?obsoleet\\.org/\" to=\"https://obsoleet.org/\"/></ruleset>", "<ruleset name=\"Occupy Corporatism.com\" f=\"Occupy_Corporatism.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Occupywallst.org\" f=\"Occupywallst.org.xml\"><rule from=\"^http://(?:www\\.)?occupywallst\\.org/\" to=\"https://occupywallst.org/\"/></ruleset>", "<ruleset name=\"Ocelot.li\" default_off=\"failed ruleset test\" f=\"Ocelot.li.xml\"><securecookie host=\"^\\.ocelot\\.li$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"oclaserver.com\" f=\"Oclaserver.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ocrete.ca\" f=\"Ocrete.ca.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ocron USA.net\" default_off=\"mismatched\" f=\"Ocron_USA.net.xml\"><securecookie host=\"^ocronusa\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ocronusa\\.net/\" to=\"https://ocronusa.net/\"/></ruleset>", "<ruleset name=\"Octopart.com\" f=\"Octopart.com.xml\"><securecookie host=\"^\\.?octopart\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Octopoos.com\" f=\"Octopoos.com.xml\"><securecookie host=\"^www\\.octopoos\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Octopuce.fr\" f=\"Octopuce.fr.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"octopuspop.com\" default_off=\"failed ruleset test\" f=\"Octopuspop.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Octorate\" f=\"Octorate.xml\"><securecookie host=\"^(www\\.)?octorate\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Octoshape\" f=\"Octoshape.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Octostatic.com\" f=\"Octostatic.com.xml\"><securecookie host=\"^\\.octostatic\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Oculu.com (partial)\" f=\"Oculu.com.xml\"><securecookie host=\"^(?:www\\.)?oculu\\.com$\" name=\".+\"/><rule from=\"^http://(?:(www\\.)|zinc\\.)?oculu\\.com/\" to=\"https://$1oculu.com/\"/></ruleset>", "<ruleset name=\"Oculus.com\" default_off=\"failed ruleset test\" f=\"Oculus.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Oculus VR\" default_off=\"failed ruleset test\" f=\"Oculus_VR.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:answers|forums|storystudio|www1)\\.oculusvr\\.com/+\" to=\"https://www.oculus.com/\"/><rule from=\"^http://static\\.oculusvr\\.com/\" to=\"https://d11g5bl75h7gks.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Oderland.se\" f=\"Oderland.se.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"odesk.by\" default_off=\"failed ruleset test\" f=\"Odesk.by.xml\"><securecookie host=\"^odesk\\.by$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?odesk\\.by/\" to=\"https://odesk.by/\"/></ruleset>", "<ruleset name=\"Odevzdej.cz\" f=\"Odevzdej.cz.xml\"><securecookie host=\"^odevzdej\\.cz$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?odevzdej\\.cz/\" to=\"https://odevzdej.cz/\"/></ruleset>", "<ruleset name=\"Odnoklassniki.ru (partial)\" f=\"Odnoklassniki.ru.xml\"><exclusion pattern=\"^http://(?:www\\.)?odnoklassniki\\.ru/(?!dk\\?st\\.cmd=updateAuthCode)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Odoo.com (partial)\" default_off=\"failed ruleset test\" f=\"Odoo.com.xml\"><securecookie host=\"^(?:demo1|master|www)\\.odoo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"oe24.at\" default_off=\"mismatch, self-signed\" f=\"Oe24.xml\"><securecookie host=\"^(?:.*\\.)?(?:oe24|wetter)\\.at$\" name=\".*\"/><rule from=\"^http://oe24\\.at/\" to=\"https://www.oe24.at/\"/><rule from=\"^http://(\\w+)\\.oe24\\.at/\" to=\"https://$1.oe24.at/\"/><rule from=\"^http://images\\d\\d\\.oe24\\.at/\" to=\"https://images01.oe24.at/\"/><rule from=\"^http://spunq\\.oe24\\.strgstatic\\.com/\" to=\"https://spunq.oe24.strgstatic.com/\"/><rule from=\"^http://wetter\\.at/\" to=\"https://www.wetter.at/\"/><rule from=\"^http://(\\w+)\\.wetter\\.at/\" to=\"https://$1.wetter.at/\"/></ruleset>", "<ruleset name=\"Oeffentliche-it.de\" f=\"Oeffentliche-it.de.xml\"><rule from=\"^http://(?:www\\.)?oeffentliche-it\\.de/\" to=\"https://www.oeffentliche-it.de/\"/></ruleset>", "<ruleset name=\"Oeffentliche.de\" f=\"Oeffentliche.de.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"oeticket (partial)\" default_off=\"failed ruleset test\" f=\"Oeticket.xml\"><rule from=\"^http://(?:www\\.)?oeticket\\.com/de/(my_account|sign-in)/\" to=\"https://www.oeticket.com/de/$1/\"/></ruleset>", "<ruleset name=\"Ofcom.org.uk (false MCB)\" platform=\"mixedcontent\" f=\"Ofcom.org.uk-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ofcom.org.uk (partial)\" f=\"Ofcom.org.uk.xml\"><exclusion pattern=\"^http://stakeholders\\.ofcom\\.org\\.uk/(?!tell-us/contact-the-webmaster(?:$|\\?))\"/><exclusion pattern=\"^http://(?:licensing|styles)\\.ofcom\\.org\\.uk/(?!/*(?:acm/css/|favicon\\.ico|html5/|images/|styles/))\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Offcloud.com\" f=\"Offcloud.com.xml\"><securecookie host=\"^(www\\.)?offcloud\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Offensive-Security.com\" default_off=\"failed ruleset test\" f=\"Offensive-Security.com.xml\"><securecookie host=\"^\\.offensive-security\\.com$\" name=\"^__utm\\w$\"/><securecookie host=\"^forums\\.offensive-security\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Offensive Bits.com\" default_off=\"failed ruleset test\" f=\"Offensive_Bits.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"offermatica.com\" f=\"Offermatica.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Offerpop.com\" default_off=\"failed ruleset test\" f=\"Offerpop.com.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://images\\.offerpop\\.com/\" to=\"https://d3nxc88n0lpo37.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Offers CDN.net\" f=\"Offers_CDN.net.xml\"><rule from=\"^http://assets\\.offerscdn\\.net/\" to=\"https://assets.offerscdn.net/\"/><rule from=\"^http://0\\.i\\.offerscdn\\.net/\" to=\"https://d3uc8eo6m5ta05.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Office of the Commissioner of Lobbying of Canada\" default_off=\"failed ruleset test\" f=\"Office-of-the-Commissioner-of-Lobbying-of-Canada.xml\"><securecookie host=\"^ocl-cal\\.gc\\.ca$\" name=\".*\"/><rule from=\"^http://ocl-cal\\.gc\\.ca/\" to=\"https://ocl-cal.gc.ca/eic/site/012.nsf/Intro\"/><rule from=\"^http://ocl-cal\\.gc\\.ca/\" to=\"https://ocl-cal.gc.ca/\"/></ruleset>", "<ruleset name=\"Office.co.uk (partial)\" default_off=\"failed ruleset test\" f=\"Office.co.uk.xml\"><exclusion pattern=\"^http://m\\.office\\.co\\.uk/+(?!assets/|favicon\\.ico)\"/><exclusion pattern=\"^http://www\\.office\\.co\\.uk/+(?!assets/|favicon\\.ico|img/|images/|javascript/|scripts/|office/styles/|styles/|view/secured/)\"/><rule from=\"^http://office\\.co\\.uk/\" to=\"https://www.office.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Office.com\" f=\"Office.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.dev\\.office\\.com$\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Office.net\" f=\"Office.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Office365.com (partial)\" f=\"Office365.com.xml\"><exclusion pattern=\"^http://community\\.office365\\.com/+(?![Tt]hemes/|cfs-filesystemfile\\.ashx/|favicon\\.ico|resized-image\\.ashx/)\"/><securecookie host=\"^(?:www\\.)?office365\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OfficeLeaks.com (partial)\" default_off=\"failed ruleset test\" f=\"OfficeLeaks.com.xml\"><rule from=\"^http://secure\\.officeleaks\\.com/\" to=\"https://secure.officeleaks.com/\"/></ruleset>", "<ruleset name=\"Office Depot (partial)\" f=\"Office_Depot.xml\"><securecookie host=\"^www18\\.officedepot\\.com$\" name=\".+\"/><rule from=\"^http://s(?:ecure|tatic)\\.www\\.odcdn\\.com/\" to=\"https://secure.www.odcdn.com/\"/><rule from=\"^http://(?:www\\.)?officedepot\\.com/(account/|cart/checkout\\.do|favicon\\.ico|images/|links/(?!links)|orderhistory(?:$|\\?|/))\" to=\"https://www.officedepot.com/$1\"/><rule from=\"^http://storelocator\\.officedepot\\.com/(images|javascript)/\" to=\"https://hosted.where2getit.com/officedepot/$1/\"/><rule from=\"^http://storelocator\\.officedepot\\.com/w2gi/images/\" to=\"https://hosted.where2getit.com/w2gi/images/\"/><rule from=\"^http://www18\\.officedepot\\.com/\" to=\"https://www18.officedepot.com/\"/></ruleset>", "<ruleset name=\"Office of National Assessments\" f=\"OfficeofNationalAssessments.xml\"><rule from=\"^http://(?:www\\.)?ona\\.gov\\.au/\" to=\"https://www.ona.gov.au/\"/></ruleset>", "<ruleset name=\"Office of Parliamentary Counsel\" default_off=\"failed ruleset test\" f=\"OfficeofParliamentaryCounsel.xml\"><rule from=\"^http://(?:www\\.)?opc\\.gov\\.au/\" to=\"https://www.opc.gov.au/\"/></ruleset>", "<ruleset name=\"Office of the Migration Agents Registration Authority\" f=\"OfficeoftheMigrationAgentsRegistrationAuthority.xml\"><rule from=\"^http://(?:www\\.)?mara\\.gov\\.au/\" to=\"https://www.mara.gov.au/\"/></ruleset>", "<ruleset name=\"Officer Down Memorial Page (partial)\" f=\"Officer_Down_Memorial_Page.xml\"><securecookie host=\"^(?:www)?\\.odmp\\.org$\" name=\".+\"/><rule from=\"^http://(www\\.)?odmp\\.org/\" to=\"https://$1odmp.org/\"/><rule from=\"^http://store\\.odmp\\.org/lib/\" to=\"https://lib.store.yahoo.net/lib/\"/></ruleset>", "<ruleset name=\"Officersforbundet.se\" f=\"Officersforbundet.se.xml\"><rule from=\"^http://officersforbundet\\.se/\" to=\"https://www.officersforbundet.se/\"/><rule from=\"^http://www\\.officersforbundet\\.se/\" to=\"https://www.officersforbundet.se/\"/></ruleset>", "<ruleset name=\"Officeworks.com.au\" f=\"Officeworks.xml\"><securecookie host=\"^(?:www\\.)?officeworks.com.au$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?officeworks\\.com\\.au/\" to=\"https://www.officeworks.com.au/\"/></ruleset>", "<ruleset name=\"Officiel-des-Vacances.com (false MCB)\" platform=\"mixedcontent\" f=\"Officiel-des-Vacances.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://cdn\\.officiel-des-vacances\\.com/\" to=\"https://www.officiel-des-vacances.com/sites/default/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"offlinemode.org\" f=\"Offlinemode.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Offog.org (partial)\" f=\"Offog.org.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ofo.so (partial)\" f=\"Ofo.so.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ogone.com (partial)\" f=\"Ogone.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ohio-State.edu (problematic)\" default_off=\"mismatched, self-signed\" f=\"Ohio-State-University-self-signed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OSU.edu (partial)\" default_off=\"failed ruleset test\" f=\"Ohio-State-University.xml\"><exclusion pattern=\"^http://research\\.bpcrc\\.osu\\.edu/+(?!assets/|data/)\"/><exclusion pattern=\"^http://cartoons\\.osu\\.edu/+(?!wp-content/)\"/><exclusion pattern=\"^http://wexnermedical\\.osu\\.edu/+(?!_Images/|stylesbundle(?:$|[?/])|~/)\"/><securecookie host=\"^\\.\" name=\"^_(?:gat?$|_utm)\"/><securecookie host=\"^(?!(?:research\\.bpcrc|cartoons|wexnermedical)\\.)\\w\" name=\".\"/><securecookie host=\"^\\.blogs\\.nursing\\.\" name=\".\"/><rule from=\"^http://www\\.(ada|advancement|artsandsciences|asc|box|bprc|brand|buckeyemail|buckeyevoices|car|carmen|cgs|changingclimate|classes|code|courses|cse|degreeaudit|dentistry|dimauro|disabilitystudies|ece|eleave|ercnsm|fml|fye|hhg|housing|marionlibrary|mooculus|my|news|oaa|oesar|ohiounion|offcampus|online|osumarion|osutravel|physics|president|recsports|registrar|researchnews|rf|shakespeare|slfacilities|slts|smileexperts|ssc|studentlife|tco|ucat|undergraduateresearch|yp4h)\\.osu\\.edu/\" to=\"https://$1.osu.edu/\"/><rule from=\"^http://autodiscover\\.osu\\.edu/+\" to=\"https://email.osu.edu/\"/><rule from=\"^http://food\\.osu\\.edu/\" to=\"https://dining.osu.edu/\"/><rule from=\"^http://gradadmissions\\.osu\\.edu/+(?:\\?.*)?$\" to=\"https://gpadmissions.osu.edu/\"/><rule from=\"^http://gradadmissions\\.osu\\.edu/\" to=\"https://gpadmissions.osu.edu/\"/><rule from=\"^http://(?:www\\.)?gradsch\\.osu\\.edu/\" to=\"https://www.gradsch.ohio-state.edu/\"/><rule from=\"^http://itunes\\.osu\\.edu/[^?]*\" to=\"https://odee.osu.edu/itunes-u\"/><rule from=\"^http://jobs\\.osu\\.edu/\" to=\"https://hr.osu.edu/jobs\"/><rule from=\"^http://lt\\.osu\\.edu/[^?]*\" to=\"https://ocio.osu.edu/elearning\"/><rule from=\"^http://mybenefitsplan\\.osu\\.edu/.*\" to=\"https://hr.osu.edu/oe\"/><rule from=\"^http://osucentralreceiving\\.osu\\.edu/+(?:\\?.*)?$\" to=\"https://osu.sclintra.com/Enterprise/SCLIntraOmni/etix7f/search\"/><rule from=\"^http://osucentralreceiving\\.osu\\.edu/\" to=\"https://osu.sclintra.edu/\"/><rule from=\"^http://streaming\\.osu\\.edu/\" to=\"https://streamwww.classroom.ohio-state.edu/\"/><rule from=\"^http://wiredout\\.osu\\.edu/.*\" to=\"https://techhub.osu.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ohio-State.edu (partial)\" default_off=\"failed ruleset test\" f=\"Ohio-State.edu.xml\"><exclusion pattern=\"http://panopto\\.con\\.ohio-state\\.edu/+(?!Panopto/Cache/|Panopto/Pages/Viewer\\.aspx)\"/><exclusion pattern=\"^http://www\\.ohio-state\\.edu/(?!$|\\?)\"/><securecookie host=\"^\\.\" name=\"^__utm\"/><securecookie host=\"^(?!panopto\\.)\\w\" name=\".\"/><securecookie host=\"^\\.intranet\\.\" name=\".\"/><rule from=\"^http://proxy\\.lib\\.ohio-state\\.edu/\" to=\"https://login.proxy.lib.ohio-state.edu/\"/><rule from=\"^http://my\\.newark\\.ohio-state\\.edu:444/\" to=\"https://my.newark.ohio-state.edu:444/\"/><rule from=\"^http://newman\\.uts\\.ohio-state\\.edu/\" to=\"https://upem.it.ohio-state.edu/\"/><rule from=\"^http://www\\.ohio-state\\.edu/\" to=\"https://www.osu.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OhioLINK.edu (partial)\" default_off=\"failed ruleset test\" f=\"OhioLINK.edu.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://proxy\\.ohiolink\\.edu:9099/\" to=\"https://proxy.ohiolink.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ohio Bar.org\" f=\"Ohio_Bar.org.xml\"><securecookie host=\"^connect\\.ohiobar\\.org$\" name=\".+\"/><rule from=\"^http://ohiobar\\.org/\" to=\"https://www.ohiobar.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ohio State Alumni.org (partial)\" f=\"Ohio_State_Alumni.org.xml\"><exclusion pattern=\"^http://(?:www\\.)?ohiostatealumni\\.org/(?!$|\\?)\"/><rule from=\"^http://(?:www\\.)?ohiostatealumni\\.org/\" to=\"https://www.osu.edu/alumni/\"/></ruleset>", "<ruleset name=\"Ohling.com\" default_off=\"failed ruleset test\" f=\"Ohling.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ohloh\" f=\"Ohloh.xml\"><securecookie host=\"^(?:.+\\.)?ohloh\\.(?:net|com|org)$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?ohloh\\.(?:net|com|org)/\" to=\"https://www.ohloh.net/\"/><rule from=\"^http://meta\\.ohloh\\.net/\" to=\"https://meta.ohloh.net/\"/></ruleset>", "<ruleset name=\"Ohnward.com (partial)\" default_off=\"failed ruleset test\" f=\"Ohnward.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ojrq.net\" f=\"Ojrq.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ok.ru\" f=\"Ok.ru.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OkC CDN.com (partial)\" f=\"OkCDN.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OkCimg.com (partial)\" default_off=\"failed ruleset test\" f=\"OkCimg.com.xml\"><exclusion pattern=\"^http://cdn\\.okcimg\\.com/(?!media/)\"/><securecookie host=\"^\\.okcimg\\.com$\" name=\".+\"/><rule from=\"^http://cdn\\.okcimg\\.com/\" to=\"https://www.okcupid.com/flat/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OkCupid.com (partial)\" f=\"OkCupid.xml\"><securecookie host=\"^(www\\.)?okcupid\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"okTurtles.com\" f=\"OkTurtles.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.okturtles\\.com/\" to=\"https://okturtles.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"okTurtles.org\" f=\"OkTurtles.org.xml\"><rule from=\"^http://(?:www\\.)?okturtles\\.org/\" to=\"https://okturtles.com/\"/></ruleset>", "<ruleset name=\"Okopnik.com\" default_off=\"refused\" f=\"Okopnik.xml\"><rule from=\"^http://(?:www\\.)?okopnik\\.com/\" to=\"https://okopnik.com/\"/></ruleset>", "<ruleset name=\"Okoun.cz\" f=\"Okoun.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Okta.com (partial)\" default_off=\"failed ruleset test\" f=\"Okta.com.xml\"><securecookie host=\"^(?:advent-hub|community|support|www)\\.okta\\.com$\" name=\".+\"/><rule from=\"^http://okta\\.com/\" to=\"https://www.okta.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Oktatási Hivatal\" platform=\"mixedcontent\" f=\"Oktatas.hu.xml\"><rule from=\"^http://(?:www\\.)?(oktatas|kir)\\.hu/\" to=\"https://www.$1.hu/\"/></ruleset>", "<ruleset name=\"Okura.nl\" f=\"Okura.nl.xml\"><securecookie host=\"^www\\.okura\\.nl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Olark.com (partial)\" f=\"Olark.xml\"><securecookie host=\"^(?:.+\\.)?olark\\.com$\" name=\".+\"/><rule from=\"^http://((?:assets|chat2?|dyn|static|\\w+-async|testcdn|www)\\.)?olark\\.com/\" to=\"https://$1olark.com/\"/></ruleset>", "<ruleset name=\"Olasagasti.info\" f=\"Olasagasti.info.xml\"><securecookie host=\"^(www\\.)olasagasti\\.info$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Olimex.com\" f=\"Olimex.com.xml\"><securecookie host=\"^www\\.olimex\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Olioboard.com\" f=\"Olioboard.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ology.com (problematic)\" default_off=\"mismatched\" f=\"Ology.com-problematic.xml\"><securecookie host=\"^\\.ology\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ology\\.com/\" to=\"https://www.ology.com/\"/></ruleset>", "<ruleset name=\"Ology.com (partial)\" f=\"Ology.com.xml\"><rule from=\"^http://cdn\\.ology\\.com/\" to=\"https://d2hddv4f3m6vd2.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Olvi.fi\" f=\"Olvi.fi.xml\"><rule from=\"^http://olvi\\.fi/\" to=\"https://www.olvi.fi/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Olx.pt\" f=\"Olx.pt.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"omNovia Technologies\" f=\"OmNovia-Technologies.xml\"><securecookie host=\"^(?:.*\\.)omnovia\\.com$\" name=\".*\"/><rule from=\"^http://omnovia\\.com/\" to=\"https://www.omnovia.com/\"/><rule from=\"^http://([\\w\\-]+)\\.omnovia\\.com/\" to=\"https://$1.omnovia.com/\"/></ruleset>", "<ruleset name=\"OmakaseWeb.com\" default_off=\"failed ruleset test\" f=\"OmakaseWeb.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Omar and Will.com\" default_off=\"expired\" f=\"Omar_and_Will.com.xml\"><rule from=\"^http://(?:www\\.)?omarandwill\\.com/\" to=\"https://omarandwill.com/\"/></ruleset>", "<ruleset name=\"Omaze.com (partial)\" f=\"Omaze.com.xml\"><rule from=\"^http://(www\\.)?omaze\\.com/(?=favicon\\.ico|wp-content/|wp-includes)\" to=\"https://$1omaze.com/\"/></ruleset>", "<ruleset name=\"Omaze.info\" f=\"Omaze.info.xml\"><securecookie host=\"^\\.omaze\\.info$\" name=\"^__cfduid$\"/><rule from=\"^http://(\\d\\.)?omaze\\.info/\" to=\"https://$1omaze.info/\"/></ruleset>", "<ruleset name=\"Omeda (partial)\" f=\"Omeda.xml\"><exclusion pattern=\"^http://www\\.\"/><securecookie host=\"^.*\\.omeda\\.com$\" name=\".*\"/><rule from=\"^http://(\\w+)\\.omeda\\.com/\" to=\"https://$1.omeda.com/\"/></ruleset>", "<ruleset name=\"omegaUp.com (partial)\" f=\"OmegaUp.com.xml\"><securecookie host=\"^(?:www\\.)?omegaup\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Omni Group.com (partial)\" f=\"OmniGroup.com.xml\"><securecookie host=\"^(?:store|www)\\.omnigroup\\.com$\" name=\".+\"/><rule from=\"^http://omnigroup\\.com/+\" to=\"https://www.omnigroup.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OmniTI.com (false MCB)\" platform=\"mixedcontent\" f=\"OmniTI.com-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OmniTI.com (partial)\" f=\"OmniTI.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OmniTI.net\" f=\"OmniTI.net.xml\"><securecookie host=\"^s\\.omniti\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OmniUpdate.com\" f=\"OmniUpdate.com.xml\"><securecookie host=\"^www\\.omniupdate\\.com$\" name=\".+\"/><rule from=\"^http://((?:apps|commons|support|www)\\.)?omniupdate\\.com/\" to=\"https://$1omniupdate.com/\"/></ruleset>", "<ruleset name=\"Omniref.com\" default_off=\"failed ruleset test\" f=\"Omniref.com.xml\"><securecookie host=\"^www\\.omniref\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Omnirom.org\" f=\"Omnirom.org.xml\"><rule from=\"^http://(?:www\\.)?omnirom\\.org/\" to=\"https://omnirom.org/\"/></ruleset>", "<ruleset name=\"Omnitec\" default_off=\"failed ruleset test\" f=\"Omnitec.xml\"><securecookie host=\"^(?:.*\\.)?omnitec\\.com$\" name=\".*\"/><rule from=\"^http://omnitec\\.com/\" to=\"https://www.omnitec.com/\"/><rule from=\"^http://(\\w+)\\.omnitec\\.com/\" to=\"https://$1.omnitec.com/\"/></ruleset>", "<ruleset name=\"Omnitec Inc.com\" f=\"Omnitec_Inc.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Omniture-static.com\" f=\"Omniture-static.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Omniture.com\" f=\"Omniture.com.xml\"><securecookie host=\"^(?:.*\\.)?omniture\\.com\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Omron.com\" platform=\"mixedcontent\" f=\"Omron.com.xml\"><rule from=\"^http://(?:www\\.)?omron\\.com/\" to=\"https://www.omron.com/\"/></ruleset>", "<ruleset name=\"omtrdc.net\" f=\"Omtrdc.net.xml\"><securecookie host=\"^(?:.*\\.)?omtrdc\\.net$\" name=\".+\"/><rule from=\"^http://(\\w+)\\.(\\w+)\\.d([1-3])\\.sc\\.omtrdc\\.net/\" to=\"https://$1-$2.d$3.sc.omtrdc.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"On-Disk.com\" default_off=\"failed ruleset test\" f=\"On-Disk.com.xml\"><securecookie host=\"^\\.on-disk\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?on-disk\\.com/\" to=\"https://on-disk.com/\"/></ruleset>", "<ruleset name=\"on-web.fr\" f=\"On-web.fr.xml\"><securecookie host=\".+\\.on-web\\.fr$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?on-web\\.fr/\" to=\"https://www.planet-work.com/\"/><rule from=\"^http://([\\w-]+)\\.on-web\\.fr/\" to=\"https://$1.on-web.fr/\"/></ruleset>", "<ruleset name=\"OnApp.com\" f=\"OnApp.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OnBeing.org\" f=\"OnBeing.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"onJive.com\" f=\"OnJive.com.xml\"><securecookie host=\"^www\\.onjive\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OnLive.com (partial)\" default_off=\"failed ruleset test\" f=\"OnLive.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OnScroll.com (partial)\" f=\"OnScroll.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OnSecure\" f=\"OnSecure.xml\"><rule from=\"^http://(?:www\\.)?onsecure\\.gov\\.au/\" to=\"https://www.onsecure.gov.au/\"/></ruleset>", "<ruleset name=\"OnSugar\" f=\"OnSugar.xml\"><exclusion pattern=\"^http://www\\.onsugar\\.com/(?:$|\\?)\"/><securecookie host=\"^.*\\.onsugar\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?onsugar\\.com/\" to=\"https://secure.onsugar.com/\"/><rule from=\"^http://media(?:\\d|[12]\\d|3[1-5])?\\.onsugar\\.com/\" to=\"https://sugarinc-a.akamaihd.net/\"/><rule from=\"^http://(?:secure\\.|www\\.)?(dev[123567]|local)\\.onsugar\\.com/\" to=\"https://secure.$1.onsugar.com/\"/><rule from=\"^http://(www\\.)?secure\\.onsugar\\.com/\" to=\"https://$1secure.onsugar.com/\"/><rule from=\"^http://(?:www\\.)?shopsense\\.onsugar\\.com/\" to=\"https://shopsense.shopstyle.com/\"/></ruleset>", "<ruleset name=\"OnSwitch IT.ca\" f=\"OnSwitch_IT.ca.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"On Landscape.co.uk\" f=\"On_Landscape.co.uk.xml\"><securecookie host=\"^(?:\\.|www\\.)?onlandscape\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"On the Media.org\" default_off=\"mismatched\" f=\"On_the_Media.org.xml\"><securecookie host=\"^\\.onthemedia\\.org$\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"On the Wire.io\" f=\"On_the_Wire.io.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Onamae-server.com (partial)\" f=\"Onamae-server.com.xml\"><securecookie host=\"^\\.(?:www\\.)?onamae-server\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Onamae.com (partial)\" f=\"Onamae.com.xml\"><exclusion pattern=\"http://www\\.onamae\\.com/+(?!common/|dd_menu/|favicon\\.ico|images/|navi(?:$|[?/]))\"/><securecookie host=\"^www\\.onamae\\.com$\" name=\"^adsense$\"/><securecookie host=\"^help\\.onamae\\.com$\" name=\".+\"/><rule from=\"^http://((?:help|jp|www)\\.)?onamae\\.com/\" to=\"https://$1onamae.com/\"/></ruleset>", "<ruleset name=\"Onarbor.com\" default_off=\"failed ruleset test\" f=\"Onarbor.com.xml\"><securecookie host=\"^(?:www\\.)?onarbor\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OnboardKit.com\" f=\"OnboardKit.com.xml\"><securecookie host=\"^onboardkit\\.com$\" name=\".+\"/><rule from=\"^http://www\\.onboardkit\\.com/\" to=\"https://onboardkit.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"onclickads.net (partial)\" f=\"Onclickads.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OndaRossa.info\" platform=\"cacert\" default_off=\"failed ruleset test\" f=\"Ondarossa.info.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"One Good Driver.com\" f=\"One-Good-Driver.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?onegooddriver\\.com/\" to=\"https://www.cheapandspeedytrafficschool.com/\"/></ruleset>", "<ruleset name=\"one.com\" f=\"One.com.xml\"><rule from=\"^http://(?:www\\.)?one\\.com/\" to=\"https://www.one.com/\"/></ruleset>", "<ruleset name=\"One2Buy (partial)\" f=\"One2Buy.xml\"><rule from=\"^http://(www\\.)?one2buy\\.com/(media|skin)/\" to=\"https://$1one2buy.com/$2/\"/></ruleset>", "<ruleset name=\"OneBookShelf\" default_off=\"failed ruleset test\" f=\"OneBookShelf.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OneCloudSecurity.com\" default_off=\"failed ruleset test\" f=\"OneCloudSecurity.com.xml\"><securecookie host=\"^(?:w*\\.)?onecloudsecurity\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OneDrive.com\" f=\"OneDrive.com.xml\"><securecookie host=\"^(?:\\.?blog|\\.dev)\\.onedrive\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OneExchange\" f=\"OneExchange.xml\"><securecookie host=\"(^|([\\w-]*)\\.)oneexchange\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"One Green Planet.org\" platform=\"mixedcontent\" f=\"OneGreenPlanet.org.xml\"><securecookie host=\"^\\.onegreenplanet\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OneHockey.com\" f=\"OneHockey.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Onehub.com\" f=\"OneHub.xml\"><rule from=\"^http://(?:www\\.)?onehub\\.com/\" to=\"https://onehub.com/\"/></ruleset>", "<ruleset name=\"OneLogin.com (partial)\" f=\"OneLogin.com.xml\"><securecookie host=\"^(?:www)?\\.onelogin\\.com$\" name=\".+\"/><rule from=\"^http://support\\.onelogin\\.com/.*\" to=\"https://onelogin.zendesk.com/hc\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OneName.com\" f=\"OneName.com.xml\"><securecookie host=\"^(?:www\\.)?onename\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OneName.io\" f=\"OneName.io.xml\"><securecookie host=\"^\\.onename\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"oneNetworkDirect\" f=\"OneNetworkDirect.xml\"><securecookie host=\"^(?:aff)?\\.onenetworkdirect\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OneNote.com\" f=\"OneNote.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OneNote.net\" f=\"OneNote.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OnePlus.net\" f=\"OnePlus.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OneScreen (partial)\" default_off=\"mismatched\" f=\"OneScreen.xml\"><rule from=\"^http://(?:cdn\\.|www\\.)?onescreen\\.com/wp-content/\" to=\"https://www.onescreen.com/wp-content/\"/><rule from=\"^http://images\\.1sfx\\.net/\" to=\"https://images.1sfx.net/\"/></ruleset>", "<ruleset name=\"OneSignal.com\" f=\"OneSignal.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OneStat.com (partial)\" f=\"OneStat.xml\"><securecookie host=\"^(?:www\\.)?stat\\.onestat\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OneTaste.us (partial)\" f=\"OneTaste.us.xml\"><exclusion pattern=\"^http://onetaste\\.us/+(?!favicon\\.ico|om-essentials(?:$|[?/])|wp-content/|wp-includes/)\"/><rule from=\"^http://(?:www\\.)?onetaste\\.us/\" to=\"https://onetaste.us/\"/></ruleset>", "<ruleset name=\"One Eyed Man.net\" f=\"One_Eyed_Man.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"One Health Talk.org (partial)\" default_off=\"404\" f=\"One_Health_Talk.org.xml\"><exclusion pattern=\"^http://(?:www\\.)?onehealthtalk\\.org/(?!1/(?:assets|cache|css|includes|js)/|favicon\\.ico|images/|_Incapsula_Resource(?:$|\\?)|member(?:$|[?/]))\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"One Man Can\" default_off=\"failed ruleset test\" f=\"One_Man_Can.xml\"><securecookie host=\"^(?:\\.?www\\.)?\\.onemancan\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"One Month.com (partial)\" default_off=\"failed ruleset test\" f=\"One_Month.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"One Time Secret.com (partial)\" f=\"One_Time_Secret.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"One in 3 Campaign\" f=\"One_in_3_Campaign.xml\"><rule from=\"^http://(?:www\\.)?1in3campaign\\.org/\" to=\"https://onein3.wpengine.com/\"/></ruleset>", "<ruleset name=\"onebillion.org.uk\" default_off=\"failed ruleset test\" f=\"Onebillion.org.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"onebitbug.me\" default_off=\"failed ruleset test\" f=\"Onebitbug.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Onefeed.co.uk (partial)\" f=\"Onefeed.co.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Onepager (partial)\" f=\"Onepager.xml\"><rule from=\"^http://(www\\.)?onepagerapp\\.com/(assets/|errors/|signin(?:$|\\?|/))\" to=\"https://$1onepagerapp.com/$2\"/></ruleset>", "<ruleset name=\"onestore.ms\" f=\"Onestore.ms.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Onfleet.com (partial)\" f=\"Onfleet.com.xml\"><securecookie host=\"^\\.onfleet\\.com$\" name=\".+\"/><rule from=\"^http://status\\.onfleet\\.com/\" to=\"https://onfleet.statuspage.io/\"/><rule from=\"^http://www\\.onfleet\\.com/\" to=\"https://onfleet.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"onion.to\" f=\"Onion.to.xml\"><rule from=\"^http://(\\w+\\.)?onion\\.to/\" to=\"https://$1onion.to/\"/></ruleset>", "<ruleset name=\"The Onion (partial)\" f=\"Onion.xml\"><securecookie host=\"^store\\.theonion\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OnionCat.org\" default_off=\"missing certificate chain\" f=\"OnionCat.org.xml\"><rule from=\"^http://onioncat\\.org/\" to=\"https://www.onioncat.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OnionShare.org\" f=\"OnionShare.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OnionTip.com\" default_off=\"failed ruleset test\" f=\"OnionTip.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"onlime.ru (partial)\" f=\"Onlime.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Online-Mahnantrag.de\" f=\"Online-Mahnantrag.de.xml\"><rule from=\"^http://online-mahnantrag\\.de/\" to=\"https://www.online-mahnantrag.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Online Register\" f=\"Online-Register.xml\"><securecookie host=\"^www\\.onlineregister\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?onlineregister\\.com/\" to=\"https://www.onlineregister.com/\"/></ruleset>", "<ruleset name=\"online-convert.com (partial)\" f=\"Online-convert.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?online-convert\\.com/(?!favicon\\.ico|login|password-recovery|register)\"/><exclusion pattern=\"^http://(?:archive|audio|document|ebook|hash|image|video)\\.online-convert\\.com/(?!favicon\\.ico)\"/><rule from=\"^http://((?:archive|audio|document|ebook|hash|image|static|video|www)\\.)?online-convert\\.com/\" to=\"https://$1online-convert.com/\"/></ruleset>", "<ruleset name=\"online-go.com\" f=\"Online-go.com.xml\"><rule from=\"^http://(?:www\\.)?online-go\\.com/\" to=\"https://online-go.com/\"/></ruleset>", "<ruleset name=\"online-metrix.net\" f=\"Online-metrix.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Online.net (partial)\" f=\"Online.net.xml\"><securecookie host=\"^(?:console|status)\\.online\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Online.nl\" f=\"Online.nl.xml\"><rule from=\"^http://(?:www\\.)?online\\.nl/\" to=\"https://www.online.nl/\"/><rule from=\"^http://registratie\\.online\\.nl/\" to=\"https://registratie.online.nl/\"/></ruleset>", "<ruleset name=\"Online2pdf.com\" f=\"Online2pdf.com.xml\"><securecookie host=\"^(s1\\.)?online2pdf\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OnlineSBI.com\" default_off=\"failed ruleset test\" f=\"OnlineSBI.com.xml\"><securecookie host=\"^\\.onlinesbi\\.com$\" name=\".+\"/><rule from=\"^http://onlinesbi\\.com/\" to=\"https://www.onlinesbi.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OnlineShoes.com\" default_off=\"failed ruleset test\" f=\"OnlineShoes.com.xml\"><securecookie host=\"^(?:static|www)\\.onlineshoes\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?onlineshoes\\.com/\" to=\"https://www.onlineshoes.com/\"/><rule from=\"^http://static\\.onlineshoes\\.com/\" to=\"https://static.onlineshoes.com/\"/></ruleset>", "<ruleset name=\"Online EMR\" f=\"Online_EMR.xml\"><securecookie host=\"^\\.online-emr\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Online Registration Center.com\" f=\"Online_Registration_Center.com.xml\"><securecookie host=\"^www\\.onlineregistrationcenter\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?onlineregistrationcenter\\.com/\" to=\"https://www.onlineregistrationcenter.com/\"/></ruleset>", "<ruleset name=\"Online Threat Alerts.com\" f=\"Online_Threat_Alerts.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Online Wellness Association\" f=\"Online_Wellness_Association.xml\"><securecookie host=\"^(?:w*\\.)?onlinewellnessassociation\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"onlinecreditcenter6.com\" f=\"Onlinecreditcenter6.com.xml\"><rule from=\"^http://www(2)?\\.onlinecreditcenter6\\.com/\" to=\"https://www$1.onlinecreditcenter6.com/\"/></ruleset>", "<ruleset name=\"Onlychange.com\" default_off=\"self-signed\" f=\"Onlychange.com.xml\"><rule from=\"^http://(?:www\\.)?onlychange\\.com/\" to=\"https://onlychange.com/\"/></ruleset>", "<ruleset name=\"Ono\" f=\"Ono.xml\"><securecookie host=\"^www\\.ono\\.es$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ono\\.es/\" to=\"https://www.ono.es/\"/></ruleset>", "<ruleset name=\"Onsalesit.com\" f=\"Onsalesit.com.xml\"><securecookie host=\"^(?:www)?\\.onsalesit\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Onstream Media (partial)\" default_off=\"mismatched\" f=\"Onstream-Media.xml\"><rule from=\"^http://sas-origin\\.onstreammedia\\.com/\" to=\"https://sas-origin.onstreammedia.com/\"/></ruleset>", "<ruleset name=\"Onstream secure.com\" f=\"Onstream_secure.com.xml\"><rule from=\"^http://([\\w-]+)\\.onstreamsecure\\.com/\" to=\"https://$1.onstreamsecure.com/\"/></ruleset>", "<ruleset name=\"Onswipe\" f=\"Onswipe.xml\"><rule from=\"^http://static\\.onswipe\\.com/synapse/\" to=\"https://s3.amazonaws.com/cdn.onswipe.com/synapse/\"/><rule from=\"^http://(cdn|plug)\\.onswipe\\.com/\" to=\"https://s3.amazonaws.com/$1.onswipe.com/\"/></ruleset>", "<ruleset name=\"Ontario Lung Association\" platform=\"mixedcontent\" f=\"Ontario-Lung-Assoc.xml\"><rule from=\"^http://(?:www\\.)?on\\.lung\\.ca/\" to=\"https://www.on.lung.ca/\"/></ruleset>", "<ruleset name=\"Ontario Minor Hockey Association\" default_off=\"failed ruleset test\" f=\"Ontario_Minor_Hockey_Association.xml\"><securecookie host=\"^(?:w*\\.)?omha\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"onthe.io\" f=\"Onthe.io.xml\"><securecookie host=\"(?:.+\\.)?onthe\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ontology.co\" f=\"Ontology.co.xml\"><securecookie host=\"^\\.ontology\\.co$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OnTrac\" f=\"Ontrac.com.xml\"><rule from=\"^http://(?:www\\.)?ontrac\\.com/\" to=\"https://www.ontrac.com/\"/></ruleset>", "<ruleset name=\"OO-Software.com\" default_off=\"failed ruleset test\" f=\"Oo-software.com.xml\"><securecookie host=\"^(www\\.|shop\\.|blog\\.|partners\\.)?oo-software\\.com\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ookla (mismatches)\" default_off=\"mismatched\" f=\"Ookla-mismatches.xml\"><rule from=\"^http://(cdn\\.)?ads\\.ookla\\.com/\" to=\"https://$1ads.ookla.com/\"/><rule from=\"^http://(?:cdn\\.|www\\.)?pingtest\\.net/\" to=\"https://pingtest.net/\"/></ruleset>", "<ruleset name=\"Ookla (partial)\" f=\"Ookla.xml\"><securecookie host=\"^.*\\.ookla\\.com$\" name=\".*\"/><rule from=\"^http://ookla\\.com/\" to=\"https://www.ookla.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OomphMe\" default_off=\"refused\" f=\"Oomphme.xml\"><rule from=\"^http://(?:www\\.)?oomphme\\.com/\" to=\"https://www.oomphme.com/\"/></ruleset>", "<ruleset name=\"oops.org\" default_off=\"failed ruleset test\" f=\"Oops.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ooshirts.com (partial)\" f=\"Ooshirts.com.xml\"><rule from=\"^http://(www\\.|i[12]\\.)?ooshirts\\.com/(css|images)/\" to=\"https://www.ooshirts.com/$2/\"/></ruleset>", "<ruleset name=\"Ooyala (mismatches)\" default_off=\"mismatched\" platform=\"mixedcontent\" f=\"Ooyala-mismatches.xml\"><rule from=\"^http://ooyala\\.jp/\" to=\"https://www.ooyala.jp/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ooyala.com (partial)\" platform=\"mixedcontent\" f=\"Ooyala.xml\"><exclusion pattern=\"crossdomain\\.xml$\"/><securecookie host=\"^(?:.*\\.)?ooyala\\.com$\" name=\".+\"/><rule from=\"^http://(?:ak\\.)?c\\.ooyala\\.com/\" to=\"https://ak-c.ooyala.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Op-co.de\" f=\"Op-co.de.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Op5.com\" f=\"Op5.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Opa (partial)\" default_off=\"failed ruleset test\" f=\"Opa.xml\"><securecookie host=\"^(?:www.)?opalang\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Opal Card\" f=\"Opal.xml\"><rule from=\"^http://(www\\.)?opal\\.com\\.au/\" to=\"https://www.opal.com.au/\"/></ruleset>", "<ruleset name=\"Open Invention Network.com\" f=\"Open-Invention-Network.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Open MPI\" f=\"Open-MPI.xml\"><rule from=\"^http://(?:www\\.)?open-mpi\\.org/\" to=\"https://www.open-mpi.org/\"/></ruleset>", "<ruleset name=\"Open-Mesh.com\" f=\"Open-Mesh.xml\"><securecookie host=\"^\\.www\\.open-mesh\\.com$\" name=\".+\"/><rule from=\"^http://dashboard\\.open-mesh\\.com/\" to=\"https://cloudtrax.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Open Society Foundations\" default_off=\"mismatched\" f=\"Open-Society-Foundations.xml\"><rule from=\"^http://(?:www\\.)?soros\\.org/\" to=\"https://www.soros.org/\"/></ruleset>", "<ruleset name=\"OSEC.pl\" f=\"Open-Source-Education-Center.xml\"><securecookie host=\"^\\.osec\\.pl$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OSR Foundation.org (partial)\" f=\"Open-Source-Robotics-Foundation.xml\"><securecookie host=\"^events\\.osrfoundation\\.org$\" name=\"^PHPSESSID$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Open.ac.uk (partial)\" f=\"Open.ac.uk.xml\"><securecookie host=\"^open\\.ac\\.uk$\" name=\".+\"/><securecookie host=\"^www\\.open\\.ac\\.uk$\" name=\".+\"/><securecookie host=\"^msds\\.open\\.ac\\.uk$\" name=\".+\"/><rule from=\"^http://open\\.ac\\.uk/\" to=\"https://www.open.ac.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Open.com.au\" f=\"Open.com.au.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenAFS.org (partial)\" f=\"OpenAFS.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenAI.com\" f=\"OpenAI.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenAccessButton.org\" f=\"OpenAccessButton.org.xml\"><securecookie host=\"^(?:www\\.)?openaccessbutton\\.org$\" name=\".+\"/><rule from=\"^http://(www|data)\\.openaccessbutton\\.org/\" to=\"https://openaccessbutton.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenAdultDirectory.com (partial)\" f=\"OpenAdultDirectory.com.xml\"><rule from=\"^http://(www\\.)?openadultdirectory\\.com/(banner-img/|favicon\\.ico|oad_html/images/)\" to=\"https://$1openadultdirectory.com/$2\"/></ruleset>", "<ruleset name=\"OpenAthens (partial)\" f=\"OpenAthens.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenBL.org\" f=\"OpenBL.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenBSD.org (partial)\" f=\"OpenBSD.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenBSD Europe\" f=\"OpenBSDEurope.com.xml\"><rule from=\"^http://(?:shop\\.)?openbsdeurope\\.com/\" to=\"https://shop.openbsdeurope.com/\"/></ruleset>", "<ruleset name=\"OpenBSD Store.com\" f=\"OpenBSD_Store.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenBenchmarking.org\" f=\"OpenBenchmarking.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenBitTorrent.com\" f=\"OpenBitTorrent.com.xml\"><rule from=\"^http://www\\.openbittorrent\\.com/\" to=\"https://openbittorrent.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenCCC\" f=\"OpenCCC.xml\"><securecookie host=\"(^|\\.)(admin|test\\.admin|ci|ci\\.control|www)\\.openccc\\.net$\" name=\".+\"/><exclusion pattern=\"^http://((ci|www)\\.)?openccc\\.net/$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenCPU.org\" f=\"OpenCPU.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenCSW.org (partial)\" default_off=\"failed ruleset test\" f=\"OpenCSW.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenCart.com (partial)\" f=\"OpenCart.com.xml\"><securecookie host=\"^\\.opencart\\.com$\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\.?www\\.opencart\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenClassrooms.com\" f=\"OpenClassrooms.xml\"><securecookie host=\"^(?:\\.|www\\.)?openclassrooms\\.com$\" name=\"\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Open Clipart.org\" f=\"OpenClipart.org.xml\"><securecookie host=\"^\\.openclipart\\.org$\" name=\".+\"/><rule from=\"^http://(www\\.)?openclipart\\.org/\" to=\"https://openclipart.org/\"/></ruleset>", "<ruleset name=\"OpenContrail.org (partial)\" f=\"OpenContrail.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenCorporates.com (partial)\" default_off=\"failed ruleset test\" f=\"OpenCorporates.com.xml\"><securecookie host=\"^(?:www\\.)?opencorporates\\.com$\" name=\".+\"/><securecookie host=\"^\\.opencorporates\\.com$\" name=\"^_openc_turbot_session$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenCycleMap.org\" f=\"OpenCycleMap.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenDNS (partial)\" f=\"OpenDNS.xml\"><rule from=\"^http://cdn-blog\\.opendns\\.com/\" to=\"https://d1c21ex135qvy3.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenDNSSEC.org (partial)\" f=\"OpenDNSSEC.org.xml\"><securecookie host=\"^www\\.opendnssec\\.org$\" name=\".+\"/><securecookie host=\"^lists\\.opendnssec\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenDZ\" default_off=\"self-signed\" f=\"OpenDZ.xml\"><securecookie host=\"^opendz\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?opendz\\.org/\" to=\"https://opendz.org/\"/></ruleset>", "<ruleset name=\"OpenDaylight.org (partial)\" f=\"OpenDaylight.xml\"><exclusion pattern=\"^http://www\\.opendaylight\\.org/+(?!misc/|sites/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenF2.org (partial)\" f=\"OpenF2.org.xml\"><securecookie host=\"^developer\\.openf2\\.com$\" name=\".+\"/><securecookie host=\"^(?:.*\\.)?openf2\\.org$\" name=\".+\"/><rule from=\"^http://www\\.openf2\\.com/\" to=\"https://www.openf2.org/\"/><rule from=\"^http://developer\\.openf2\\.com/\" to=\"https://developer.openf2.com/\"/><rule from=\"^http://((?:cdn|developer(?:\\.[bl]tc)?|services|www)\\.)?openf2\\.org/\" to=\"https://$1openf2.org/\"/></ruleset>", "<ruleset name=\"OpenFabrics.org (partial)\" f=\"OpenFabrics-Alliance.xml\"><securecookie host=\"^(?:www\\.)?openfabrics\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenFoundry.org\" f=\"OpenFoundry.org.xml\"><securecookie host=\"^www\\.openfoundry\\.org$\" name=\".+\"/><rule from=\"^http://openfoundry\\.org/.*\" to=\"https://www.openfoundry.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenGL.org\" f=\"OpenGL.xml\"><securecookie host=\"^(?:www\\.)?opengl\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"openHPI.de\" f=\"OpenHPI.xml\"><securecookie host=\"^(?:blog\\.|www\\.)?openhpi\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenHatch.org (problematic)\" default_off=\"mismatched\" f=\"OpenHatch.org-problematic.xml\"><securecookie host=\"^forum\\.openhatch\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenHatch.org (partial)\" f=\"OpenHatch.org.xml\"><securecookie host=\"^\\.?openhatch\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenID.net\" f=\"OpenID.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenIDEO.com (partial)\" default_off=\"mismatched\" f=\"OpenIDEO.com.xml\"><securecookie host=\"^www\\.openideo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenIT\" default_off=\"failed ruleset test\" f=\"OpenIT.xml\"><securecookie host=\"^www\\.openit\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?openit\\.de/\" to=\"https://www.openit.de/\"/></ruleset>", "<ruleset name=\"OpenITC.co.uk (partial)\" default_off=\"failed ruleset test\" f=\"OpenITC.co.uk.xml\"><securecookie host=\"^forums\\.openitc\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenITP.org (partial)\" default_off=\"failed ruleset test\" f=\"OpenITP.org.xml\"><securecookie host=\"^(?:.+\\.)?openitp\\.org$\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenLeaks\" default_off=\"shows default page\" f=\"OpenLeaks.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenLinksys.info\" f=\"OpenLinksys.info.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenMPT\" f=\"OpenMPT.xml\"><rule from=\"^http://(www\\.)?openmpt\\.org/\" to=\"https://openmpt.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenMRS.org (mismatched)\" default_off=\"mismatched\" f=\"OpenMRS.org-problematic.xml\"><securecookie host=\"^(?:events\\.)?openmrs\\.org$\" name=\".+\"/><rule from=\"^http://www\\.openmrs\\.org/\" to=\"https://openmrs.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenMRS.org (partial)\" f=\"OpenMRS.xml\"><securecookie host=\"^(?:ci|id|talk|wiki)\\.openmrs\\.org$\" name=\".+\"/><rule from=\"^http://answers\\.openmrs\\.org/[^?]*\" to=\"https://wiki.openmrs.org/display/ask/Home\"/><rule from=\"^http://ask\\.openmrs\\.org/([^?]*)(?:\\?.*)?\" to=\"https://wiki.openmrs.org/display/ask$1\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenMW.org\" f=\"OpenMW.xml\"><securecookie host=\"^(?:.*\\.)?openmw\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenMailBox.org\" f=\"OpenMailBox.org.xml\"><securecookie host=\"^www\\.openmailbox\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenMandriva.org\" default_off=\"failed ruleset test\" f=\"OpenMandriva.org.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenMarket.org\" default_off=\"expired, mismatched, self-signed\" f=\"OpenMarket.org.xml\"><securecookie host=\"^www\\.openmarket\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenMedia.ca\" f=\"OpenMedia.ca.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenMedia.org\" f=\"OpenMedia.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenMedia now.net\" f=\"OpenMedia_now.net.xml\"><rule from=\"^http://(?:www\\.)?openmedianow\\.net/+\" to=\"https://openmedia.org/\"/></ruleset>", "<ruleset name=\"OpenNET.ru (partial)\" f=\"OpenNET.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenNet.net (partial)\" f=\"OpenNet.net.xml\"><securecookie host=\"^\\.opennet\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenNews.org (partial)\" f=\"OpenNews.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PGP RU.com\" f=\"OpenPGP-in-Russia.xml\"><securecookie host=\"^(?:www\\.)?pgpru\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenPGPjs.org\" f=\"OpenPGPjs.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Openpetition.de\" f=\"OpenPetition.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenRCE.org\" default_off=\"expired, missing certificate chain\" f=\"OpenRCE.xml\"><securecookie host=\"^www\\.openrce\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenSC-Project.org\" default_off=\"missing certificate chain\" f=\"OpenSC-Project.xml\"><securecookie host=\"^(?:www\\.)?opensc-project\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenSRS.com (partial)\" f=\"OpenSRS.com.xml\"><exclusion pattern=\"^http://www\\.opensrs\\.com/blog[\\w/-]*/$\"/><securecookie host=\"^(?:signup\\.)?opensrs\\.com$\" name=\".+\"/><rule from=\"^http://(?:(signup\\.)|www\\.)?opensrs\\.(?:com|net)/\" to=\"https://$1opensrs.com/\"/><rule from=\"^http://rr-n1-tor\\.opensrs\\.net/\" to=\"https://rr-n1-tor.opensrs.net/\"/></ruleset>", "<ruleset name=\"OpenSSH.com\" f=\"OpenSSH.com.xml\"><rule from=\"^http://ftp\\.openssh\\.com/\" to=\"https://ftp.openbsd.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"openSUSE.org (partial)\" f=\"OpenSUSE.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://opensuse\\.org/\" to=\"https://www.opensuse.org/\"/><rule from=\"^http://(\\w\\w|activedoc|beans|bugs|bugzilla|build|connect|count(?:down|er)|doc|features|forums|lizards|news|openqa|shop|software|static|wiki|www)\\.opensuse\\.org/\" to=\"https://$1.opensuse.org/\"/></ruleset>", "<ruleset name=\"OpenSVC.com (partial)\" f=\"OpenSVC.xml\"><securecookie host=\"^\\w+\\.opensvc\\.com$\" name=\".*\"/><rule from=\"^http://opensvc\\.com/\" to=\"https://www.opensvc.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenShift.com\" f=\"OpenShift.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenSignal.com\" default_off=\"failed ruleset test\" f=\"OpenSignal.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenStack.org (partial)\" f=\"OpenStack.xml\"><securecookie host=\"^(?:(?:ask|wiki|www)\\.)?openstack\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenStat.net\" f=\"OpenStat.net.xml\"><securecookie host=\"^\\.openstat\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenStat.ru (partial)\" f=\"OpenStat.ru.xml\"><securecookie host=\"^\\.openstat\\.ru$\" name=\".+\"/><rule from=\"^http://openstat\\.ru/\" to=\"https://www.openstat.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenStreetMap.de\" f=\"OpenStreetMap.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenStreetMap.org\" f=\"OpenStreetMap.org.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenTPX.org\" f=\"OpenTPX.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenTTD (expired)\" default_off=\"expired\" f=\"OpenTTD-expired.xml\"><securecookie host=\"^wiki\\.openttdcoop\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenTTD (partial)\" platform=\"mixedcontent\" f=\"OpenTTD.xml\"><exclusion pattern=\"^http://(?:devs|media)\\.openttd\\.org/\"/><securecookie host=\"^secure\\.openttd\\.org$\" name=\".*\"/><securecookie host=\"^(?:.*\\.)?openttdcoop\\.org$\" name=\".*\"/><rule from=\"^http://(\\w+\\.)?openttd\\.org/\" to=\"https://$1openttd.org/\"/><rule from=\"^http://((?:blog|dev|paste|www)\\.)?openttdcoop\\.org/\" to=\"https://$1openttdcoop.org/\"/></ruleset>", "<ruleset name=\"OpenTechFund\" f=\"OpenTechFund.xml\"><securecookie host=\"^\\.opentechfund\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?opentechfund\\.com/\" to=\"https://www.opentechfund.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenText (partial)\" f=\"OpenText.xml\"><exclusion pattern=\"^http://mimage\\.opentext\\.com/alt_content/binary/ot/newmedia/ot_html5/ot_slider/(?:ot_banner_system/default/rs-default|preview-assets/css/smoothness/jquery-ui-1\\.8\\.22\\.custom)\\.css\"/><securecookie host=\"^www\\.opentext\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenTok.com (partial)\" f=\"OpenTok.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenUserJS.org\" f=\"OpenUserJS.org.xml\"><securecookie host=\"^openuserjs\\.org$\" name=\".+\"/><rule from=\"^http://www\\.openuserjs\\.org/\" to=\"https://openuserjs.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenVAS.org (partial)\" f=\"OpenVAS.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenVPN.net\" f=\"OpenVPN.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenWRT.org\" f=\"OpenWRT.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenX.net (partial)\" f=\"OpenX.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenX.org (partial)\" default_off=\"mismatched\" f=\"OpenX.org.xml\"><securecookie host=\"^adserver\\.openx\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenX.com (partial)\" default_off=\"failed ruleset test\" f=\"OpenX.xml\"><exclusion pattern=\"^http://(?:www\\.)?openx\\.com/(?!/*(?:blog|documentation)(?:$|[?/]))\"/><exclusion pattern=\"^http://welcome\\.openx\\.com/(?!/*rs/.+\\.pdf(?:$|\\?))\"/><securecookie host=\"^(?:i-cdn|lift|sso|d\\.tradex)?\\.openx\\.com$\" name=\".\"/><rule from=\"^http://welcome\\.openx\\.com/\" to=\"https://na-sjl.marketo.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenXMPP.com\" default_off=\"failed ruleset test\" f=\"OpenXMPP.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenXMarket.jp\" f=\"OpenXMarket.jp.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenX Enterprise.com\" f=\"OpenX_Enterprise.com.xml\"><securecookie host=\"^\\w+-d\\.openxenterprise\\.com$\" name=\".+\"/><rule from=\"^http://(\\w+)-d\\.openxenterprise\\.com/\" to=\"https://$1-d.openxenterprise.com/\"/></ruleset>", "<ruleset name=\"OpenX ad exchange.com\" f=\"OpenX_ad_exchange.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Open Archives.org\" f=\"Open_Archives.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Open Badges.org (partial)\" f=\"Open_Badges.xml\"><securecookie host=\".+\\.openbadges\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Open Book Publishers.com (false MCB)\" platform=\"mixedcontent\" f=\"Open_Book_Publishers.com.xml\"><securecookie host=\"^www\\.openbookpublishers\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Open Containers.org\" f=\"Open_Containers.org.xml\"><securecookie host=\"^\\.(?:www\\.)?opencontainers\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Open Crypto Audit.org\" f=\"Open_Crypto_Audit.org.xml\"><securecookie host=\"^\\.opencryptoaudit\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Open Culture.com (missing certificate chain)\" default_off=\"missing certificate chain\" f=\"Open_Culture.com-problematic.xml\"><securecookie host=\"^\\.\" name=\"^__qca$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Open Culture.com (partial)\" f=\"Open_Culture.com.xml\"><securecookie host=\"^\\.\" name=\"^__qca$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ODir.org\" default_off=\"plaintext reply\" f=\"Open_Directory.xml\"><securecookie host=\"^\\.odir\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Open Door.com\" f=\"Open_Door.com.xml\"><securecookie host=\".*\\.opendoor\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Open Doors.org\" f=\"Open_Doors.org.xml\"><securecookie host=\"^www\\.opendoors\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Open Garden.com (mismatched)\" default_off=\"mismatched\" f=\"Open_Garden.com-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Open Hub.net (false MCB)\" platform=\"mixedcontent\" f=\"Open_Hub.net-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Open Hub.net (partial)\" f=\"Open_Hub.net.xml\"><exclusion pattern=\"^http://blog\\.openhub\\.net/+(?!favicon\\.ico|wp-content/|wp-includes/)\"/><securecookie host=\"^(?:code\\.|www\\.)?openhub\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Open Hunt.co\" default_off=\"failed ruleset test\" f=\"Open_Hunt.co.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Open InfoSec Foundation.org (missing certificate chain)\" default_off=\"missing certificate chain\" f=\"Open_InfoSec_Foundation.org-problematic.xml\"><securecookie host=\"^(?:www\\.)?openinfosecfoundation\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Open InfoSec Foundation.org (partial)\" f=\"Open_InfoSec_Foundation.org.xml\"><securecookie host=\"^redmine\\.openinfosecfoundation\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OKFn.org (partial)\" f=\"Open_Knowledge_Foundation.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.okfn\\.org/\" to=\"https://okfn.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Open Library.org\" f=\"Open_Library.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Open Listings.co\" f=\"Open_Listings.co.xml\"><securecookie host=\"^www\\.openlistings\\.co$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Open Microscopy.org (partial)\" f=\"Open_Microscopy.org.xml\"><rule from=\"^http://openmicroscopy\\.org/\" to=\"https://www.openmicroscopy.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Open Objects.com (partial)\" default_off=\"failed ruleset test\" f=\"Open_Objects.com.xml\"><exclusion pattern=\"^http://search3\\.openobjects\\.com/+(?!cdn/|kb5/\\d+/directory/assets/|mediamanager/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Open Rights Group.org\" f=\"Open_Rights_Group.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Open Source.org (problematic)\" default_off=\"missing certificate chain\" f=\"Open_Source.org-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Open Source.org (partial)\" f=\"Open_Source.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Open Source Hacker.com\" f=\"Open_Source_Hacker.com.xml\"><securecookie host=\"^\\.opensourcehacker\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Open Virtualization Alliance.org\" f=\"Open_Virtualization_Alliance.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Open Web.or.kr\" f=\"Open_Web.or.kr.xml\"><securecookie host=\"^(?:www\\.)?openweb\\.or\\.kr$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Open WebMail.org\" f=\"Open_WebMail.org.xml\"><securecookie host=\"^(www\\.)?openwebmail\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Openas.org\" default_off=\"failed ruleset test\" f=\"Openas.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Openbaar Ministerie (partial)\" f=\"Openbaar_Ministerie.xml\"><rule from=\"^http://(www\\.)?om\\.nl/(\\?xdl=|publish|views)/\" to=\"https://$1om.nl/$2/\"/></ruleset>", "<ruleset name=\"openDemocracy.net\" f=\"Opendemocracy.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenfMRI.org\" default_off=\"failed ruleset test\" f=\"OpenfMRI.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"openfiler.com\" default_off=\"failed ruleset test\" f=\"Openfiler.xml\"><securecookie host=\"^.*\\.openfiler\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Open Garden.com (partial)\" default_off=\"failed ruleset test\" f=\"Opengarden.com.xml\"><rule from=\"^http://www\\.opengarden\\.com/\" to=\"https://opengarden.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Openhost\" default_off=\"failed ruleset test\" f=\"Openhost.xml\"><securecookie host=\"^hspc\\.openhost\\.net\\.nz$\" name=\".*\"/><securecookie host=\"^support\\.openhost\\.co\\.nz$\" name=\".*\"/><securecookie host=\"^store\\.openhost\\.net\\.nz$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?mycp\\.co\\.nz/\" to=\"https://hspc.openhost.net.nz/sign_in.php\"/><rule from=\"^http://support\\.webhost\\.co\\.nz/\" to=\"https://support.webhost.co.nz/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"openingscience.org\" default_off=\"mismatched, self-signed\" f=\"Openingscience.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Openkeychain.org\" f=\"Openkeychain.org.xml\"><securecookie host=\"^(www\\.)?openkeychain\\.org\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Openload.co\" f=\"Openload.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Openmoko.org\" default_off=\"expired\" f=\"Openmoko.xml\"><securecookie host=\"^wiki\\.openmoko\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?openmoko\\.org/\" to=\"https://wiki.openmoko.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Openpgpkey.info\" default_off=\"failed ruleset test\" f=\"Openpgpkey.info.xml\"><securecookie host=\"^(www\\.)?openpgpkey\\.info\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenPrinting.org (partial)\" f=\"Openprinting.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Openprovider.ru\" f=\"Openprovider.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Openreach.co.uk\" f=\"Openreach.co.uk.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://openreach\\.co\\.uk/\" to=\"https://www.openreach.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Openresty.org\" f=\"Openresty.org.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Openrussia.org\" f=\"Openrussia.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"opensource.com\" f=\"Opensource.com.xml\"><securecookie host=\"^\\.opensource\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Openstreetmap.fr\" default_off=\"failed ruleset test\" f=\"Openstreetmap.fr.xml\"><securecookie host=\"^(www\\.|umap\\.|trac\\.|listes\\.|forum\\.|adherents\\.|export\\.|bano\\.|cadastre\\.|osm13\\.|suivi\\.|munin\\.|nomino\\.)?openstreetmap\\.fr\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Openswan.org\" f=\"Openswan.xml\"><securecookie host=\"^www\\.openswan\\.org$\" name=\".+\"/><rule from=\"^http://openswan\\.org/\" to=\"https://www.openswan.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Opentabs.net\" default_off=\"mismatched\" f=\"Opentabs.net.xml\"><rule from=\"^http://(?:www\\.)?opentabs\\.net/\" to=\"https://opentabs.net/\"/></ruleset>", "<ruleset name=\"Opentrackers.org\" f=\"Opentrackers.org.xml\"><securecookie host=\"^\\.opentrackers\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"opentransfer.com\" f=\"Opentransfer.com.xml\"><securecookie host=\"^\\.webmail\\.opentransfer\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?opentransfer\\.com/+\" to=\"https://www.ecommerce.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Openuni.io\" f=\"Openuni.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Audiofingerprint.openwpm.com\" f=\"Openwpm.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Opera (partial)\" default_off=\"failed ruleset test\" f=\"Opera.xml\"><exclusion pattern=\"^http://apps\\.opera\\.com/(?!/*(?:$|\\?))\"/><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^(?:addons|bugs|idp|mail|\\.micropage|ssl)\\.opera\\.com$\" name=\".+\"/><rule from=\"^http://(ar|de|fr|in|ru|tw)\\.opera\\.com/+([^?]*)\\??$\" to=\"https://www.opera.com/$1/$2\"/><rule from=\"^http://(ar|de|fr|in|ru|tw)\\.opera\\.com/+([^?]*)(.*)\" to=\"https://www.opera.com/$1/$2$3$3\"/><rule from=\"^http://blogs\\.opera\\.com/+\" to=\"https://www.opera.com/blogs/\"/><rule from=\"^http://cn\\.opera\\.com/+([^?]*)\\??$\" to=\"https://www.opera.com/zh-cn/$1\"/><rule from=\"^http://cn\\.opera\\.com/+([^?]*)(.*)\" to=\"https://www.opera.com/zh-cn/$1$2$2\"/><rule from=\"^http://jp\\.opera\\.com/+([^?]*)\\??$\" to=\"https://www.opera.com/ja/$1\"/><rule from=\"^http://jp\\.opera\\.com/+([^?]*)(.*)\" to=\"https://www.opera.com/ja/$1$2$2\"/><rule from=\"^http://m(?:ini)?\\.opera\\.com/.*\" to=\"https://www.opera.com/mobile\"/><rule from=\"^http://portal\\.opera\\.com/.*\" to=\"https://www.opera.com/o/news-portal\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Operating Systems.io\" default_off=\"refused\" f=\"Operating_Systems.io.xml\"><securecookie host=\"^\\.operatingsystems\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Operation Fabulous\" default_off=\"failed ruleset test\" f=\"Operation-Fabulous.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ophan.co.uk (partial)\" f=\"Ophan.co.uk.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://s\\.ophan\\.co\\.uk/\" to=\"https://d2n6o0n31iqeta.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpinionLab.com (partial)\" f=\"OpinionLab.xml\"><exclusion pattern=\"^http://www\\.opinionlab\\.com/+(?!images/|wp-content/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Opinionmeter (partial)\" f=\"Opinionmeter.xml\"><rule from=\"^http://opinionmeter\\.com/(cdn-cgi|wp-content)/\" to=\"https://opinionmeter.com/$1/\"/><rule from=\"^http://www\\.opinionmeter\\.com/OVM2($|\\?|/)\" to=\"https://www.opinionmeter.com/OVM2$1\"/></ruleset>", "<ruleset name=\"Opintoluotsi\" default_off=\"failed ruleset test\" f=\"Opintoluotsi.xml\"><securecookie host=\"^(?:www\\.)?opintoluotsi\\.fi$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"opkode.com (partial)\" f=\"Opkode.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Oplata.info\" f=\"Oplata.info.xml\"><securecookie host=\"^www\\.oplata\\.info$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?oplata\\.info/\" to=\"https://www.oplata.info/\"/></ruleset>", "<ruleset name=\"Oppelt.com\" default_off=\"failed ruleset test\" f=\"Oppelt.com.xml\"><securecookie host=\"^piwik\\.oppelt\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Oppo.com (partial)\" f=\"Oppo.com.xml\"><securecookie host=\"^en\\.oppo\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?oppo\\.com/+$\" to=\"https://en.oppo.com/\"/><rule from=\"^http://(account|en)\\.oppo\\.com/\" to=\"https://$1.oppo.com/\"/></ruleset>", "<ruleset name=\"Opscode.com (partial)\" f=\"Opscode.com.xml\"><rule from=\"^http://((?:manage|learnchef|tickets|wiki|www)\\.)?opscode\\.com/\" to=\"https://$1opscode.com/\"/></ruleset>", "<ruleset name=\"Opsmate\" f=\"Opsmate.xml\"><rule from=\"^http://opsmate\\.com/\" to=\"https://opsmate.com/\"/><rule from=\"^http://www\\.opsmate\\.com/\" to=\"https://www.opsmate.com/\"/></ruleset>", "<ruleset name=\"OptMD.com (partial)\" f=\"OptMD.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OptOutPrescreen.com\" f=\"OptOutPrescreen.com.xml\"><securecookie host=\"^www\\.optoutprescreen\\.com$\" name=\".+\"/><rule from=\"^http://optoutprescreen\\.com/\" to=\"https://www.optoutprescreen.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Optagelse.dk\" f=\"Optagelse.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Optical Society of America (partial)\" default_off=\"failed ruleset test\" f=\"Optical-Society-of-America.xml\"><exclusion pattern=\"^http://www\\.osa\\.org/(?:en-us|video_library)/\"/><securecookie host=\"^www\\.opticsinfobase\\.org$\" name=\".*\"/><securecookie host=\"^.*\\.osa\\.org$\" name=\".*\"/><rule from=\"^http://o(pticsinfobase|sa)\\.org/\" to=\"https://www.o$1.org/\"/><rule from=\"^http://www\\.opticsinfobase\\.org/\" to=\"https://www.opticsinfobase.org/\"/><rule from=\"^http://(account|eweb2|www)\\.osa\\.org/\" to=\"https://$1.osa.org/\"/></ruleset>", "<ruleset name=\"Optimal Payments (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Optimal-Payments.xml\"><securecookie host=\"^(?:.*\\.)?neteller\\.com$\" name=\".*\"/><rule from=\"^http://(help\\.|member\\.|merchant\\.|www\\.)?neteller\\.com/\" to=\"https://$1neteller.com/\"/><rule from=\"^http://(?:(www\\.)?neteller-group|optimalpayments)\\.com/\" to=\"https://www.optimalpayments.com/\"/><rule from=\"^http://www\\.optimalpayments\\.com/wp-content/\" to=\"https://www.optimalpayments.com/wp-content/\"/></ruleset>", "<ruleset name=\"Optimise.com.br\" f=\"Optimise.com.br.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://optimise\\.com\\.br/\" to=\"https://www.optimise.com.br/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Optimise Media.com\" f=\"Optimise_Media.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OptimizeGoogle\" default_off=\"Certificate mismatch\" f=\"OptimizeGoogle.xml\"><rule from=\"^http://(?:www\\.)?optimizegoogle\\.com/\" to=\"https://www.optimizegoogle.com/\"/></ruleset>", "<ruleset name=\"Optimizely (partial)\" default_off=\"failed ruleset test\" f=\"Optimizely.xml\"><exclusion pattern=\"^http://(?:[^./]+\\.){2,}log\\.optimizely\\.com/\"/><exclusion pattern=\"^http://pages\\.optimizely\\.com/(?!/*(?:$|\\?|rs/.+\\.pdf(?:$|\\?)))\"/><securecookie host=\"^(?!pages\\.).\" name=\".\"/><rule from=\"^http://log3\\.optimizely\\.com/\" to=\"https://3.log.optimizely.com/\"/><rule from=\"^http://pages\\.optimizely\\.com/+(?:\\?.*)?$\" to=\"https://www.optimizely.com/\"/><rule from=\"^http://pages\\.optimizely\\.com/\" to=\"https://na-sjn.marketo.com/\"/><rule from=\"^http://support\\.optimizely\\.com/[^?]*\" to=\"https://help.optimizely.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Optimost (partial) \" f=\"Optimost.xml\"><rule from=\"^http://(?:es|by\\.essl)\\.optimost\\.com/\" to=\"https://by.essl.optimost.com/\"/></ruleset>", "<ruleset name=\"OptionBit\" f=\"OptionBit.xml\"><securecookie host=\"^(?:w*\\.)?optionbit\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OptionsAnimal.com\" default_off=\"failed ruleset test\" f=\"OptionsAnimal.com.xml\"><securecookie host=\"^\\.optionsanimal\\.com$\" name=\".+\"/><rule from=\"^http://optionsanimal\\.com/\" to=\"https://optionsanimal.com/\"/><rule from=\"^http://(?:fast|www)\\.optionsanimal\\.com/\" to=\"https://www.optionsanimal.com/\"/></ruleset>", "<ruleset name=\"optorb.com\" f=\"Optorb.com.xml\"><securecookie host=\"^\\.optorb\\.com$\" name=\".+\"/><rule from=\"^http://u\\.optorb\\.com/\" to=\"https://u.optorb.com/\"/></ruleset>", "<ruleset name=\"Opus-codec.org\" f=\"Opus-codec.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"orWall.org\" f=\"OrWall.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Oracle-Base.com\" f=\"Oracle-Base.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Oracle (mismatches)\" default_off=\"mismatched\" f=\"Oracle-mismatches.xml\"><securecookie host=\"^\\.forge\\.mysql\\.com$\" name=\".+\"/><rule from=\"^http://(\\w+)\\.mysql\\.com/\" to=\"https://$1.mysql.com/\"/><rule from=\"^http://events\\.oracle\\.com/\" to=\"https://events.oracle.com/\"/><rule from=\"^http://(?:www\\.)?planetnetbeans\\.org/\" to=\"https://planetnetbeans.org/\"/></ruleset>", "<ruleset name=\"Oracle (partial)\" default_off=\"failed ruleset test\" f=\"Oracle.xml\"><exclusion pattern=\"^http://www\\.oracle(?:img)?\\.com/(?!(?:\\w+/)?assets/|\\w+/[^/]+\\.(?:css|gif|jpg|js|png)$|(?:communities|corporate/careers|javaone|marketingcloud|rightnow)(?:$|[?/]))\"/><securecookie host=\"^(?:\\w+|\\.edelivery)\\.oracle\\.com$\" name=\".+\"/><securecookie host=\"^\\.\" name=\"^(?:Order_Marketing(?:CampaignSuccess|Trigger)|gpw_e24|s_(?:cc|nr|sq))$\"/><rule from=\"^http://(?:www\\.)?oracle(img)?\\.com/us/(?=[^/]+\\.(?:css|gif|jpg|js|png)$)\" to=\"https://www.oracle$1.com/us/assets/\"/><rule from=\"^http://oracleimg\\.com/\" to=\"https://www.oracleimg.com/\"/><rule from=\"^http://appsconnect\\.oracle\\.com/\" to=\"https://appsconnect.custhelp.com/\"/><rule from=\"^http://crmondemand\\.oracle\\.com/\" to=\"https://www.oracle.com/us/products/applications/crmondemand/index.html\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Oracle outsourcing.com (partial)\" f=\"Oracle_outsourcing.com.xml\"><rule from=\"^http://(bi|crm|fin|fs|[hs]cm|ic|pr[cj])-(\\w+)\\.oracleoutsourcing\\.com/\" to=\"https://$1-$2.oracleoutsourcing.com/\"/></ruleset>", "<ruleset name=\"Oralb-blendamed.de\" f=\"Oralb-blendamed.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Orange.Jobs (false MCB)\" platform=\"mixedcontent\" f=\"Orange.Jobs-falsemixed.xml\"><rule from=\"^http://(?:www\\.)?orange\\.jobs/\" to=\"https://orange.jobs/\"/></ruleset>", "<ruleset name=\"Orange.Jobs (partial)\" f=\"Orange.Jobs.xml\"><exclusion pattern=\"http://(?:www\\.)?orange\\.jobs/+(?!css/|favicon\\.ico|images/|media/)\"/><rule from=\"^http://(?:(jobsmap\\.)|www\\.)?orange\\.jobs/\" to=\"https://$1orange.jobs/\"/></ruleset>", "<ruleset name=\"Orange.sk\" f=\"Orange.sk.xml\"><rule from=\"^http://(?:www\\.)?orange\\.sk/\" to=\"https://www.orange.sk/\"/></ruleset>", "<ruleset name=\"Orange\" default_off=\"failed ruleset test\" f=\"Orange.xml\"><securecookie host=\"^(?:kareena|shop)\\.orange\\.co\\.uk$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?orange\\.co\\.il/\" to=\"https://www.orange.co.il/\"/><rule from=\"^http://(kareena|services|shop|wassup|web)\\.orange\\.co\\.uk/\" to=\"https://$1.orange.co.uk/\"/><rule from=\"^http://(?:www\\.)?orange\\.ch/\" to=\"https://www.orange.ch/\"/><rule from=\"^http://(apps|community|mobilesettings|my|rbt|shop)\\.orange\\.ch/\" to=\"https://$1.orange.ch/\"/></ruleset>", "<ruleset name=\"OrangeWebsite.com (partial)\" f=\"OrangeWebsite.com.xml\"><securecookie host=\"^secure\\.orangewebsite\\.com$\" name=\".+\"/><rule from=\"^http://(jolnir|secure)\\.orangewebsite\\.com/\" to=\"https://$1.orangewebsite.com/\"/></ruleset>", "<ruleset name=\"Orange Geek\" f=\"Orange_Geek.xml\"><securecookie host=\"^\\.orangegeek\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Orange Static.com\" default_off=\"expired\" f=\"Orange_Static.com.xml\"><rule from=\"^http://(?:www\\.)?orangestatic\\.com/\" to=\"https://www.orangestatic.com/\"/></ruleset>", "<ruleset name=\"Orbital-apps.com\" f=\"Orbital-apps.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Orbital ATK.com\" f=\"Orbital_ATK.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Orbital Sciences\" default_off=\"failed ruleset test\" f=\"Orbital_Sciences.xml\"><securecookie host=\"^(?:www\\.)?orbital\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Orchid Diva\" f=\"Orchid_Diva.xml\"><securecookie host=\"^\\.(?:www\\.)?orchiddiva\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ordbogen.com\" f=\"Ordbogen.com.xml\"><rule from=\"^http://(?:www\\.)?ordbogen\\.com/\" to=\"https://www.ordbogen.com/\"/></ruleset>", "<ruleset name=\"OrderBook.net\" default_off=\"failed ruleset test\" f=\"OrderBook.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ordnance Survey.co.uk\" f=\"Ordnance_Survey.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Oregon State University (mismatches)\" default_off=\"mismatched\" f=\"Oregon-State-University-mismatches.xml\"><rule from=\"^http://(?:www\\.)?campaignforosu\\.org/\" to=\"https://campaignforosu.org/\"/></ruleset>", "<ruleset name=\"Oregon State.edu (partial)\" default_off=\"failed ruleset test\" f=\"Oregon-State-University.xml\"><rule from=\"^http://www\\.oregonstate\\.edu/\" to=\"https://oregonstate.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Oregon Live.com (partial)\" f=\"Oregon_Live.com.xml\"><securecookie host=\"^member\\.oregonlive\\.com$\" name=\".+\"/><rule from=\"^http://member\\.oregonlive\\.com/\" to=\"https://member.oregonlive.com/\"/><rule from=\"^http://findnsave\\.oregonlive\\.com/(?=(?:join|login)(?:$|[?/])|static/)\" to=\"https://oregonlive.findnsave.com/\"/></ruleset>", "<ruleset name=\"Orez Praw.com (partial)\" f=\"Orez_Praw.com.xml\"><securecookie host=\"^orezpraw\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OrgSync.com (partial)\" f=\"OrgSync.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Organic Consumers.org\" f=\"Organic_Consumers.org.xml\"><rule from=\"^http://organicconsumers\\.org/\" to=\"https://www.organicconsumers.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Organization of American States\" f=\"Organization_of_American_States.xml\"><securecookie host=\"^www\\.(?:cidh\\.)?oas\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?(cidh\\.)?oas\\.org/\" to=\"https://www.$1oas.org/\"/></ruleset>", "<ruleset name=\"Orgreen Optics.com\" default_off=\"failed ruleset test\" f=\"Orgreen_Optics.com.xml\"><rule from=\"^http://(?:www\\.)?orgreenoptics\\.com/\" to=\"https://orgreenoptics.com/\"/></ruleset>", "<ruleset name=\"Origin.com (partial)\" default_off=\"Needs ruleset tests\" f=\"Origin.com.xml\"><exclusion pattern=\"^http://store\\.origin\\.com/(?!DRHM/Storefront/Site/)\"/><exclusion pattern=\"^http://www\\.origin\\.com/(?!favicon\\.ico)\"/><securecookie host=\"^sso\\.origin\\.com$\" name=\".*\"/><rule from=\"^http://origin\\.com/\" to=\"https://www.origin.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Orion\" f=\"Orion.xml\"><rule from=\"^http://(?:www\\.)?orionhub\\.org/\" to=\"https://orionhub.org/\"/></ruleset>", "<ruleset name=\"Orion Magazine.com\" f=\"Orion_Magazine.org.xml\"><rule from=\"^http://(www\\.)?orionmagazine\\.com/\" to=\"https://$1orionmagazine.com/\"/></ruleset>", "<ruleset name=\"Orion Systems Integrators\" default_off=\"failed ruleset test\" f=\"Orion_Systems_Integrators.xml\"><securecookie host=\"^(?:time)?\\.orioninc\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Orkut (partial)\" default_off=\"failed ruleset test\" f=\"Orkut.xml\"><securecookie host=\"^www\\.orkut\\.co(?:\\.in|m|m\\.br)$\" name=\".+\"/><rule from=\"^http://a\\.orkut\\.gmodules\\.com/\" to=\"https://a.orkut.gmodules.com/\"/><rule from=\"^http://((?:demo|img\\d|staging|www)\\.)?orkut\\.co(\\.in|m|m\\.br)/\" to=\"https://$1orkut.co$2/\"/></ruleset>", "<ruleset name=\"Orkz.net (partial)\" f=\"Orkz.net.xml\"><rule from=\"^http://webmail\\.orkz\\.net/.*\" to=\"https://mail.google.com/a/orkz.net\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Oron (partial)\" default_off=\"failed ruleset test\" f=\"Oron.xml\"><rule from=\"^http://(www\\.)?oron\\.com/(favicon\\.ico$|images/|.+\\.(css|js($|\\?\\d?$))|\\?op=)\" to=\"https://secure.oron.com/$2\"/><rule from=\"^http://secure\\.oron\\.com/\" to=\"https://secure.oron.com/\"/></ruleset>", "<ruleset name=\"Ortolo.eu (false MCB)\" platform=\"cacert mixedcontent\" f=\"Ortolo.eu.xml\"><securecookie host=\"^tanguy\\.ortolo\\.eu$\" name=\".+\"/><rule from=\"^http://(tanguy|www)\\.ortolo\\.eu/\" to=\"https://$1.ortolo.eu/\"/></ruleset>", "<ruleset name=\"orxrdr.com\" f=\"Orxrdr.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"os-cillation.de (partial)\" default_off=\"missing certificate chain\" f=\"Os-cillation-mismatches.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"os-cillation (partial)\" default_off=\"failed ruleset test\" f=\"Os-cillation.xml\"><rule from=\"^http://(?:www\\.)?schweissgut\\.net/\" to=\"https://schweissgut.net/\"/></ruleset>", "<ruleset name=\"osCommerce\" default_off=\"expired, mismatch, self-signed\" f=\"OsCommerce.xml\"><exclusion pattern=\"^http://forums\\.\"/><securecookie host=\"^(?:.*\\.)?oscommerce\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)oscommerce\\.com/\" to=\"https://www.oscommerce.com/\"/><rule from=\"^http://(addon|shop)s\\.oscommerce\\.com/\" to=\"https://$1.oscommerce.com/\"/></ruleset>", "<ruleset name=\"osdimg.com\" f=\"Osdimg.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Oseems.com\" default_off=\"failed ruleset test\" f=\"Oseems.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OshKosh.com\" f=\"OshKosh.com.xml\"><securecookie host=\"^www\\.oshkosh\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OsmAnd.CZ\" f=\"OsmAnd.CZ.xml\"><securecookie host=\"^osmand\\.cz$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?osmand\\.cz/\" to=\"https://osmand.cz/\"/></ruleset>", "<ruleset name=\"OsmAnd.net (partial)\" default_off=\"self-signed\" f=\"OsmAnd.net.xml\"><securecookie host=\"^jenkins\\.osmand\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Osmo (partial)\" f=\"Osmo.xml\"><securecookie host=\"^.*\\.?playosmo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Osmocom.org\" f=\"Osmocom.org.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ostagram.ru\" f=\"Ostagram.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ostel.co\" f=\"Ostel.co.xml\"><securecookie host=\"^(?:www\\.)?ostel\\.co$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ostel\\.co/\" to=\"https://ostel.co/\"/></ruleset>", "<ruleset name=\"Otaku Mode.com (partial)\" f=\"Otaku_Mode.com.xml\"><exclusion pattern=\"^http://otakumode\\.com/+(?!css/|favicon\\.ico|images/|(?:login|signup)(?:$|[?/]))\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Otavamedia (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Otavamedia.xml\"><securecookie host=\"^www\\.plazakauppa\\.fi$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?(?:kuvalehdet|otavamedia)\\.fi/\" to=\"https://www.otavamedia.fi/\"/><rule from=\"^http://aulis\\.plaza\\.fi/\" to=\"https://aulis.plaza.fi/\"/><rule from=\"^http://(?:www\\.)plazakauppa\\.fi/\" to=\"https://www.plazakauppa.fi/\"/></ruleset>", "<ruleset name=\"OTE\" default_off=\"failed ruleset test\" f=\"Ote.xml\"><securecookie host=\"^(?:.*\\.)?otenet\\.gr$\" name=\".*\"/><securecookie host=\"^(?:.*\\.)?ote\\.gr$\" name=\".*\"/><rule from=\"^http://((adman|corpmail|ps|domainmanager|managedservices|tools|my)\\.)?otenet\\.gr/\" to=\"https://$1otenet.gr/\"/><rule from=\"^http://((www|11888)\\.)?ote\\.gr/\" to=\"https://$1ote.gr/\"/></ruleset>", "<ruleset name=\"otpbank.ru\" f=\"Otpbank.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Otpdirekt.sk\" default_off=\"failed ruleset test\" f=\"Otpdirekt.sk.xml\"><rule from=\"^http://(?:www\\.)?otpdirekt\\.sk/\" to=\"https://www.otpdirekt.sk/\"/></ruleset>", "<ruleset name=\"Otsuka-shokai.co.jp\" f=\"Otsuka-shokai.co.jp.xml\"><rule from=\"^http://(?:www\\.)?otsuka-shokai\\.co\\.jp/\" to=\"https://www.otsuka-shokai.co.jp/\"/><rule from=\"^http://(campaign|sdc)\\.otsuka-shokai\\.co\\.jp/\" to=\"https://$1.otsuka-shokai.co.jp/\"/></ruleset>", "<ruleset name=\"Otto.de\" default_off=\"failed ruleset test\" f=\"Otto.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Otumm.com\" default_off=\"failed ruleset test\" f=\"Otumm.com.xml\"><securecookie host=\"^otumm\\.com$\" name=\".+\"/><rule from=\"^http://www\\.otumm\\.com/\" to=\"https://otumm.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ouaza.com\" f=\"Ouaza.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OÜI FM\" f=\"OuiFM.fr.xml\"><securecookie host=\"^www\\.ouifm\\.fr$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OU Medicine\" f=\"Oumedicine.com.xml\"><securecookie host=\"^www\\.oumedicine\\.com$\" name=\".+\"/><rule from=\"^http://oumedicine\\.com/\" to=\"https://www.oumedicine.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Oumedicine.staywellsolutionsonline.com\" f=\"Oumedicine.staywellsolutionsonline.com.xml\"><rule from=\"^http://www\\.oumedicine\\.staywellsolutionsonline\\.com/\" to=\"https://oumedicine.staywellsolutionsonline.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Our Hometown\" default_off=\"failed ruleset test\" f=\"Our-Hometown.xml\"><securecookie host=\"^\\.our-hometown\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?our-hometown\\.com/\" to=\"https://www.our-hometown.com/\"/></ruleset>", "<ruleset name=\"OurCommonPlace.com\" default_off=\"failed ruleset test\" f=\"OurCommonPlace.xml\"><securecookie host=\"^\\.ourcommonplace.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Our Tesco.com\" f=\"Our_Tesco.com.xml\"><rule from=\"^http://(?:www\\.)?ourtesco\\.com/\" to=\"https://www.ourtesco.com/\"/></ruleset>", "<ruleset name=\"ourlocality.org\" f=\"Ourlocality.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ourneighborhoodmilf.com\" f=\"Ourneighborhoodmilf.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Out-Law.com\" f=\"Out-Law.com.xml\"><rule from=\"^http://(?:www\\.)?out-law\\.com/\" to=\"https://www.out-law.com/\"/><rule from=\"^http://www\\.pinsentmasons\\.com/(?=mediafiles/)\" to=\"https://www.out-law.com/\"/></ruleset>", "<ruleset name=\"Out of Control\" f=\"Out-of-Control.xml\"><securecookie host=\"^outofcontrol\\.ca$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?outofcontrol\\.ca/\" to=\"https://outofcontrol.ca/\"/></ruleset>", "<ruleset name=\"OutWit.com (partial)\" f=\"OutWit.com.xml\"><securecookie host=\"^\\.outwit\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?outwit\\.com/\" to=\"https://www.outwit.com/\"/></ruleset>", "<ruleset name=\"Outbrain.com (partial)\" f=\"Outbrain.com.xml\"><exclusion pattern=\"^http://www\\.outbrain\\.com/(?!/*(?:assets/|favicon\\.ico|images/|wp-content/|wp-includes/))\"/><securecookie host=\"^\\.\" name=\"^ubvt$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:wp\\.)?outbrain\\.com/\" to=\"https://www.outbrain.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Outernet\" f=\"Outernet.is.xml\"><securecookie host=\"^(?:.*\\.)?outernet\\.is$\" name=\".+\"/><rule from=\"^http://outernet\\.is/\" to=\"https://www.outernet.is/\"/><rule from=\"^http://([^/:@]+)?\\.outernet\\.is/\" to=\"https://$1.outernet.is/\"/></ruleset>", "<ruleset name=\"outflux.net\" f=\"Outflux.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Outlook.com\" f=\"Outlook_Live.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Outspark.com (partial)\" default_off=\"refused\" f=\"Outspark.xml\"><securecookie host=\"^(?:.*\\.)?outspark\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ouvaton\" f=\"Ouvaton.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Over-blog.com (partial)\" f=\"Over-blog.com.xml\"><securecookie host=\"^connect\\.over-blog\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"over-yonder.net\" f=\"Over-yonder.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OverClockers.co.uk (partial)\" f=\"OverClockers.xml\"><securecookie host=\".*\\.overclockers\\.co\\.uk\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OverDrive.com (false MCB)\" platform=\"mixedcontent\" f=\"OverDrive.com-falsemixed.xml\"><securecookie host=\"^\\.\" name=\"^(?:_gat?$|s_v)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OverDrive.com (partial)\" f=\"OverDrive.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:_gat?$|_gat_|s_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://ox-i\\.overdrive\\.com/\" to=\"https://ssl-i.cdn.openx.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Overcast\" f=\"OvercastFM.xml\"><rule from=\"^http://(?:www\\.)?overcast\\.fm/\" to=\"https://overcast.fm/\"/></ruleset>", "<ruleset name=\"overclock.net (mismatched)\" default_off=\"mismatched\" f=\"Overclock.net-problematic.xml\"><rule from=\"^http://(?:www\\.)?overclock\\.net/\" to=\"https://www.overclock.net/\"/></ruleset>", "<ruleset name=\"overclock.net (partial)\" f=\"Overclock.net.xml\"><rule from=\"^http://cdn\\.overclock\\.net/\" to=\"https://d1rktuf34l9h2g.cloudfront.net/\"/></ruleset>", "<ruleset name=\"overclockers.at\" default_off=\"failed ruleset test\" f=\"Overclockers.at.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Overclockers.com (partial)\" default_off=\"expired\" platform=\"mixedcontent\" f=\"Overclockers.com.xml\"><securecookie host=\"^\\.overclockers\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)ocforums\\.com/\" to=\"https://www.overclockers.com/forums/\"/><rule from=\"^http://(www\\.)?overclockers\\.com/\" to=\"https://$1overclockers.com/\"/></ruleset>", "<ruleset name=\"Overlake Hospital Medical Center\" platform=\"mixedcontent\" f=\"Overlake-Hospital.xml\"><securecookie host=\"^(?:.*\\.)?overlakehospital\\.org\" name=\".+\"/><rule from=\"^http://(?:www\\.)?overlakehospital\\.org/\" to=\"https://www.overlakehospital.org/\"/></ruleset>", "<ruleset name=\"Overleaf.com\" f=\"Overleaf.com.xml\"><exclusion pattern=\"^http://email\\.overleaf\\.com/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Oversee.net (mismatches)\" default_off=\"expired, mismatch, self-signed\" f=\"Oversee-mismatches.xml\"><rule from=\"^http://(?:www\\.)?weightlossplans\\.net/\" to=\"https://weightlossplans.net/\"/></ruleset>", "<ruleset name=\"Oversee.net (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Oversee.xml\"><securecookie host=\".*\\.aboutairportparking\\.com$\" name=\".+\"/><securecookie host=\"^(?:.*\\.)?domainfest\\.com$\" name=\".+\"/><securecookie host=\"^(?:.*\\.)?oversee\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?aboutairportparking\\.com/\" to=\"https://www.aboutairportparking.com/\"/><rule from=\"^http://static\\.couponfinder\\.com/\" to=\"https://d2q7dxlbtbvkph.cloudfront.net/\"/><rule from=\"^http://(www\\.)?domainfest\\.com/\" to=\"https://$1domainfest.com/\"/><rule from=\"^http://(support\\.|www\\.)?oversee\\.net/\" to=\"https://$1oversee.net/\"/></ruleset>", "<ruleset name=\"Overstock.com (partial)\" f=\"Overstock.com.xml\"><securecookie host=\"^\\.newcars\\.overstock\\.com$\" name=\".+\"/><rule from=\"^http://ak(?:1|2|-s)\\.ostkcdn\\.com/\" to=\"https://ak-s.ostkcdn.com/\"/><rule from=\"^http://(?:www\\.)?overstock\\.com/(?=css/|(?:dlp|intlcheckout)(?:$|[?/])|favicon\\.ico|img/)\" to=\"https://www.overstock.com/\"/><rule from=\"^http://help\\.overstock\\.com/\" to=\"https://help.overstock.com/\"/><rule from=\"^http://(?:secure\\.)?newcars\\.overstock\\.com/\" to=\"https://secure.newcars.overstock.com/\"/></ruleset>", "<ruleset name=\"Overview Project.org\" default_off=\"failed ruleset test\" f=\"Overview_Project.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OVH (self-signed)\" default_off=\"self-signed\" f=\"Ovh-mismatches.xml\"><rule from=\"^http://(ns\\d+|ssl4)\\.ovh\\.net/\" to=\"https://$1.ovh.net/\"/></ruleset>", "<ruleset name=\"OVH\" default_off=\"failed ruleset test\" f=\"Ovh.xml\"><securecookie host=\"^(?:.*\\.)?ovh(?:-hosting)?\\.(?:co\\.uk|com|de|es|fi|ie|it|lt|net|nl|pl|pt|sn)$\" name=\".+\"/><rule from=\"^http://(?:imp|webmail)\\.ovh\\.net/\" to=\"https://ssl0.ovh.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ovi.com (partial)\" f=\"Ovi.com.xml\"><securecookie host=\"^\\.store\\.ovi\\.com$\" name=\".+\"/><rule from=\"^http://(p\\.d|publish|store|static\\.store)\\.ovi\\.com/\" to=\"https://$1.ovi.com/\"/></ruleset>", "<ruleset name=\"Ovid (partial)\" f=\"Ovid.xml\"><rule from=\"^http://(e-bea|gateway|ovidsp(?:\\.tx)?|shibboleth)\\.ovid\\.com/\" to=\"https://$1.ovid.com/\"/></ruleset>", "<ruleset name=\"Ow.ly (partial)\" f=\"Ow.ly.xml\"><rule from=\"^http://static\\.ow\\.ly/\" to=\"https://d2jhuj1whasmze.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Owen Services.com\" f=\"Owen_Services.com.xml\"><securecookie host=\"^\\.?owenservices\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Purdue OWL\" f=\"Owl.English.Purdue.edu.xml\"><rule from=\"^http://(?:www\\.)?owl\\.english\\.purdue\\.edu/\" to=\"https://owl.english.purdue.edu/\"/></ruleset>", "<ruleset name=\"Owlfolio.org\" f=\"Owlfolio.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Owlverkehr.de\" f=\"Owlverkehr.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Own-Mailbox.com\" f=\"Own-Mailbox.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ownCloud.com\" default_off=\"failed ruleset test\" f=\"OwnCloud.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://static\\.owncloud\\.com/\" to=\"https://opendesktop.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ownCloud.org\" default_off=\"failed ruleset test\" f=\"OwnCloud.xml\"><securecookie host=\"^\\.owncloud\\.org$\" name=\".+\"/><rule from=\"^http://docs\\.owncloud\\.org/+\" to=\"https://owncloud.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OwnCube\" f=\"OwnCube.xml\"><securecookie host=\"^(?:billing\\.|www\\.)?owncube\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OwnedCore.com (mixed content)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"OwnedCore.com.xml\"><securecookie host=\"^www\\.ownedcore\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Owner.io\" f=\"Owner.io.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.owner\\.io/\" to=\"https://owner.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OwnerIQ.net (partial)\" f=\"OwnerIQ.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ox.ac.uk (false MCB)\" platform=\"mixedcontent\" f=\"Ox.ac.uk-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://medieval\\.history\\.ox\\.ac\\.uk/[^?]*\" to=\"https://www.history.ox.ac.uk/research/centre/medieval-history.html\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Oxfam.org.uk (partial)\" f=\"Oxfam.org.uk.xml\"><securecookie host=\"^\\.\" name=\"^(?:_gat?$|_gat_|o_cs_referrer|s_v)\"/><securecookie host=\"^(?!\\.oxfam\\.org\\.uk$).\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Oxford Journals\" f=\"OxfordJournals.org.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Oxford Dictionaries\" f=\"Oxford_Dictionaries.xml\"><rule from=\"^http://oxforddictionaries\\.com/\" to=\"https://www.oxforddictionaries.com/\"/><rule from=\"^http://oxfordlearnersdictionaries\\.com/\" to=\"https://www.oxfordlearnersdictionaries.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OUP.com (partial)\" f=\"Oxford_University_Press.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"oyunhizmetleri.com\" default_off=\"expired\" f=\"Oyunhizmetleri.com.xml\"><securecookie host=\"^www\\.oyunhizmetleri\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?oyunhizmetleri\\.com/\" to=\"https://www.oyunhizmetleri.com/\"/></ruleset>", "<ruleset name=\"Oz-affiliate.com\" f=\"Oz-affiliate.com.xml\"><rule from=\"^http://www\\.oz-affiliate\\.com/\" to=\"https://oz-affiliate.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OzBargain\" default_off=\"failed ruleset test\" f=\"OzBargain.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OzLabs.org (partial)\" f=\"OzLabs.org.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ozi-ru.org\" f=\"Ozi-ru.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ozon.Travel\" f=\"Ozon.Travel.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ozon.ru (partial)\" default_off=\"failed ruleset test\" f=\"Ozon.ru.xml\"><securecookie host=\"^(?:www)?\\.ozon\\.ru$\" name=\".+\"/><rule from=\"^http://ozon\\.ru/\" to=\"https://www.ozon.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"P-tano.com\" f=\"P-tano.com.xml\"><rule from=\"^http://(?:www\\.)?p-tano\\.com/\" to=\"https://www.p-tano.com/\"/></ruleset>", "<ruleset name=\"P2P Foundation.net (partial)\" f=\"P2P_Foundation.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"P6R.com\" f=\"P6R.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PACW.org\" f=\"PACW.org.xml\"><rule from=\"^http://(?:www\\.)?pacw\\.org/\" to=\"https://www.pacw.org/\"/></ruleset>", "<ruleset name=\"PAETEC.com (partial)\" default_off=\"mismatched\" f=\"PAETEC.xml\"><rule from=\"^http://(?:www\\.)?paetec\\.com/\" to=\"https://www.paetec.com/\"/></ruleset>", "<ruleset name=\"PAL cdn.com\" f=\"PAL_cdn.com.xml\"><rule from=\"^http://(image|cs)s\\.palcdn\\.com/\" to=\"https://$1s.palcdn.com/\"/></ruleset>", "<ruleset name=\"PANGAEA (partial)\" f=\"PANGAEA.xml\"><rule from=\"^http://(?:www\\.)?secure\\.pangaea\\.de/\" to=\"https://secure.pangaea.de/\"/></ruleset>", "<ruleset name=\"PAPPP.net\" f=\"PAPPP.net.xml\"><rule from=\"^http://www\\.pappp\\.net/\" to=\"https://pappp.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PBA Galleries (mismatches)\" default_off=\"mismatched\" f=\"PBAGalleries.xml\"><rule from=\"^http://(?:www\\.)?pbagalleries\\.com/\" to=\"https://www.pbagalleries.com/\"/></ruleset>", "<ruleset name=\"PBHS (partial)\" f=\"PBHS.xml\"><securecookie host=\"^www\\.pbhs\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Public Broadcasting Service (partial)\" platform=\"mixedcontent\" f=\"PBS.xml\"><securecookie host=\"^www\\.shoppbs\\.org$\" name=\".+\"/><rule from=\"^http://newshour-tc\\.pbs\\.org/\" to=\"https://d3i6fh83elv35t.cloudfront.net/\"/><rule from=\"^http://www-tc\\.pbs\\.org/s3/pbs\\.(?=merlin\\.cdn\\.prod/|pbsorg-prod\\.mediafiles/)\" to=\"https://s3.amazonaws.com/pbs.\"/><rule from=\"^http://gchrome\\.cdn\\.pbs\\.org/\" to=\"https://d2nu96cf2r9spk.cloudfront.net/\"/><rule from=\"^http://(www\\.)?shoppbs\\.org/\" to=\"https://$1shoppbs.org/\"/></ruleset>", "<ruleset name=\"PB Web Dev.com\" f=\"PB_Web_Dev.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PBase (partial)\" f=\"PBase.xml\"><rule from=\"^http://(?:secure2\\.|www\\.)?pbase\\.com/\" to=\"https://secure2.pbase.com/\"/><rule from=\"^http://ap1\\.pbase\\.com/\" to=\"https://d1lvd91299t0s2.cloudfront.net/\"/></ruleset>", "<ruleset name=\"PBwiki (partial)\" f=\"PBwiki.xml\"><rule from=\"^http://(files|my|(pb-api)?docs|secure|vs1|www)\\.pbworks\\.com/\" to=\"https://$1.pbworks.com/\"/><rule from=\"^http://usermanual\\.pbworks\\.com/([fw]/|theme_image\\.php)\" to=\"https://usermanual.pbworks.com/$1\"/></ruleset>", "<ruleset name=\"PBworks (partial)\" f=\"PBworks.xml\"><securecookie host=\"^(?:.*\\.)?pbworks\\.com$\" name=\".*\"/><rule from=\"^http://(files|vs1)\\.pbworks\\.com/\" to=\"https://$1.pbworks.com/\"/><rule from=\"^http://([\\w\\-]+)\\.pbworks\\.com/f/(\\d+)/\" to=\"https://$1.pbworks.com/f/$2/\"/></ruleset>", "<ruleset name=\"PC BSD.org (partial)\" default_off=\"failed ruleset test\" f=\"PC-BSD.xml\"><exclusion pattern=\"^http://www\\.pcbsd\\.org/(?!favicon\\.ico|wp-content/|wp-includes/)\"/><securecookie host=\"^(bugs|forums)\\.pcbsd\\.org$\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PC-Ostschweiz.ch\" f=\"PC-Ostschweiz.ch.xml\"><securecookie host=\"^www\\.pc-ostschweiz\\.ch$\" name=\".+\"/><rule from=\"^http://pc-ostschweiz\\.ch/\" to=\"https://www.pc-ostschweiz.ch/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PCC-CIC.org.uk\" f=\"PCC-CIC.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PCCU.edu.tw (partial)\" f=\"PCCU.edu.tw.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://pccu\\.edu\\.tw/\" to=\"https://www.pccu.edu.tw/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PC Case Gear\" f=\"PCCaseGear.xml\"><rule from=\"^http://(?:www\\.)?pccasegear\\.com\\.au/\" to=\"https://www.pccasegear.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PCI ID Repository\" f=\"PCI-ID-Repository.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PCI Security Standards.org\" f=\"PCI-Security-Standards-Council.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^(?:incap_ses_\\d+|visid_incap)_\\d+$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PCI Compliance Guide.org\" f=\"PCI_Compliance_Guide.org.xml\"><securecookie host=\"^(?:www)?\\.pcicomplianceguide\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PCP.com\" f=\"PCP.com.xml\"><rule from=\"^http://pcp\\.com/\" to=\"https://www.pcp.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PCPro.co.uk (partial)\" default_off=\"failed ruleset test\" f=\"PCPro.co.uk.xml\"><rule from=\"^http://(?:photo|sprite)s\\.pcpro\\.co\\.uk/\" to=\"https://desawk404a9v3.cloudfront.net/\"/></ruleset>", "<ruleset name=\"PCRE.org\" default_off=\"broken\" f=\"PCRE.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PCS.com (false MCB)\" default_off=\"self-signed\" platform=\"mixedcontent\" f=\"PCS.com.xml\"><securecookie host=\"^(?:partner-support|www)\\.pcs\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?pcs\\.com/\" to=\"https://www.pcs.com/\"/><rule from=\"^http://partner-support\\.pcs\\.com/\" to=\"https://partner-support.pcs.com/\"/></ruleset>", "<ruleset name=\"PCSpublink.com (partial)\" f=\"PCSpublink.com.xml\"><securecookie host=\"^subscribe\\.pcspublink\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PCUG.org.au (partial)\" f=\"PCUG.org.au.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PCWorld.com (partial)\" f=\"PCWorld.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PC Booster\" f=\"PC_Booster.xml\"><securecookie host=\"^\\.?pcbooster\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?pcbooster\\.com/\" to=\"https://$1pcbooster.com/\"/><rule from=\"^http://files\\.pcbooster\\.com/\" to=\"https://d1xmanv2p9uj30.cloudfront.net/\"/></ruleset>", "<ruleset name=\"PConline (partial)\" f=\"PConline.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PDDOC.com\" default_off=\"mismatched\" f=\"PDDOC.com.xml\"><rule from=\"^http://(?:www\\.)?pddoc\\.com/\" to=\"https://pddoc.com/\"/></ruleset>", "<ruleset name=\"PDFMerge.com\" f=\"PDFMerge.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PDF Labs.com\" f=\"PDF_Labs.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PDF to Word.com\" f=\"PDF_to_Word.com.xml\"><securecookie host=\"^www\\.pdftoword\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?pdftoword\\.com/\" to=\"https://www.pdftoword.com/\"/></ruleset>", "<ruleset name=\"PEN.org\" f=\"PEN.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PERFORM Group (partial)\" default_off=\"mismatched\" f=\"PERFORM-Group.xml\"><rule from=\"^http://(?:origin|www)\\.eplayer\\.performgroup\\.com/\" to=\"https://www.eplayer.performgroup.com/\"/></ruleset>", "<ruleset name=\"PET-Portal.eu (partial)\" default_off=\"mismatched\" f=\"PET-Portal.eu.xml\"><securecookie host=\"^pet-portal\\.eu$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?pet-portal\\.eu/\" to=\"https://pet-portal.eu/\"/></ruleset>", "<ruleset name=\"PETA Kills Animals.com\" f=\"PETA_Kills_Animals.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?petakillsanimals\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PET Symposium.org\" f=\"PET_Symposium.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PFLAG-Parents, Families, & Friends of Lesbians and Gays (partial)\" f=\"PFLAG.xml\"><rule from=\"^http://((?:community|www)\\.)?pflag\\.org/\" to=\"https://$1pflag.org/\"/></ruleset>", "<ruleset name=\"PGCon.org (partial)\" default_off=\"failed ruleset test\" f=\"PGCon.xml\"><securecookie host=\"^(?:www\\.)?pgcon\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PGP.com\" f=\"PGP.xml\"><rule from=\"^http://pgp\\.com/\" to=\"https://www.pgp.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PG CDN.com (partial)\" default_off=\"failed ruleset test\" f=\"PG_CDN.com.xml\"><rule from=\"^http://cfsi\\.pgcdn\\.com/\" to=\"https://d2iz0h6pqiasve.cloudfront.net/\"/></ruleset>", "<ruleset name=\"PGi (problematic)\" default_off=\"expired, mismatched\" f=\"PGi-problematic.xml\"><securecookie host=\"^experts\\.pgi\\.com$\" name=\".+\"/><rule from=\"^http://(blog|experts|admin\\.support)\\.pgi\\.com/\" to=\"https://$1.pgi.com/\"/></ruleset>", "<ruleset name=\"PGi (partial)\" f=\"PGi.xml\"><securecookie host=\"^webmail\\.pgi\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?pgi\\.com/\" to=\"https://www.pgi.com/\"/><rule from=\"^http://(legacy|webmail)\\.pgi\\.com/\" to=\"https://$1.pgi.com/\"/></ruleset>", "<ruleset name=\"PHP-Fusion.co.uk (partial)\" f=\"PHP-Fusion.co.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PHP.net (partial)\" default_off=\"failed ruleset test\" f=\"PHP.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PHPNET.org (partial)\" f=\"PHPNET.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PHP magazin (partial)\" f=\"PHP_magazin.xml\"><rule from=\"^http://(www\\.)?phpmagazin\\.de/((?:cart|user)(?:$|\\?|/)|modules/|sites/)\" to=\"https://$1phpmagazin.de/$2\"/></ruleset>", "<ruleset name=\"PHPartners.org\" f=\"PHPartners.org.xml\"><rule from=\"^http://www\\.phpartners\\.org/\" to=\"https://phpartners.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PH Cheats\" default_off=\"failed ruleset test\" f=\"PH_Cheats.xml\"><securecookie host=\"^(?:w*\\.)?phcheats\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PICMET.org\" default_off=\"failed ruleset test\" f=\"PICMET.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PIERS (partial)\" f=\"PIERS.xml\"><securecookie host=\"^directories\\.piers\\.com$\" name=\".*\"/><rule from=\"^http://directories\\.piers\\.com/Portals/\" to=\"https://directories.piers.com/Portals/\"/></ruleset>", "<ruleset name=\"PIPNI.cz\" default_off=\"failed ruleset test\" f=\"PIPNI.cz.xml\"><securecookie host=\"^pipni\\.cz$\" name=\".+\"/><securecookie host=\"^\\.pipni\\.cz$\" name=\".+\"/><securecookie host=\"^fbsql\\.pipni\\.cz$\" name=\".+\"/><securecookie host=\"^manual\\.pipni\\.cz$\" name=\"^PHPSESSID$\"/><securecookie host=\"^pgsql\\.pipni\\.cz$\" name=\".+\"/><securecookie host=\"^support\\.pipni\\.cz$\" name=\"^PHPSESSID$\"/><securecookie host=\"^vserver\\.pipni\\.cz$\" name=\"^sid$\"/><securecookie host=\"^webftp\\.pipni\\.cz$\" name=\"^PHPSESSID$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PIXinsight.com.tw (partial)\" f=\"PIXinsight.com.tw.xml\"><securecookie host=\"^\\.pixinsight\\.com\\.tw$\" name=\".+\"/><rule from=\"^http://www\\.pixinsight\\.com\\.tw/\" to=\"https://www.pixinsight.com.tw/\"/></ruleset>", "<ruleset name=\"PI CERT.it\" f=\"PI_CERT.it.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PJM.com (partial)\" f=\"PJM.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?pjm\\.com/+(?!assets/|(?:[\\w/-]+/)?~/media/|(?:Script|Web)Resource\\.axd)\"/><securecookie host=\"^esuite.pjm.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PJRC.com\" f=\"PJRC.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PJTV.com\" f=\"PJTV.com.xml\"><securecookie host=\"^(?:www)?\\.pjtv\\.com$\" name=\".+\"/><rule from=\"^http://pjtv\\.com/([^?]*)(?:\\?.*)?$\" to=\"https://www.pjtv.com/$1\"/><rule from=\"^http://(?:cdn[1-3]|www)\\.pjtv\\.com/\" to=\"https://www.pjtv.com/\"/></ruleset>", "<ruleset name=\"PJ Media\" default_off=\"Webmaster request\" f=\"PJ_Media.xml\"><exclusion pattern=\"^http://pjmedia\\.com/instapundit/\"/><securecookie host=\"^\\.?pjmedia\\.com$\" name=\".+\"/><rule from=\"^http://(?:cdn\\.|www\\.)?pjmedia\\.com/\" to=\"https://pjmedia.com/\"/></ruleset>", "<ruleset name=\"PKC Security.com\" f=\"PKC_Security.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PKWARE.com (partial)\" f=\"PKWARE.com.xml\"><securecookie host=\"^(?:www)?\\.pkware\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?pkware\\.com/\" to=\"https://$1pkware.com/\"/><rule from=\"^http://comm\\.pkware\\.com/(cs|image|j|r)s/\" to=\"https://na-k.marketo.com/$1s/\"/></ruleset>", "<ruleset name=\"PKimber.net\" f=\"PKimber.net.xml\"><rule from=\"^http://(www\\.)?pkimber\\.net/\" to=\"https://www.pkimber.net/\"/></ruleset>", "<ruleset name=\"PL Casual Dating (partial)\" default_off=\"self-signed\" f=\"PL-Casual-Dating.xml\"><securecookie host=\"^(?:.*\\.)?fckme\\.org$\" name=\".*\"/><securecookie host=\"^(?:.*\\.)?pullingladies\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?fckme\\.org/\" to=\"https://fckme.org/\"/><rule from=\"^http://(?:www\\.)?pullingladies\\.com/\" to=\"https://pullingladies.com/\"/></ruleset>", "<ruleset name=\"PLD-Linux.org (problematic)\" default_off=\"expired, mismatched, self-signed\" f=\"PLD-Linux.org-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PLD-Linux.org (partial)\" f=\"PLD-Linux.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://docs\\.pld-linux\\.org/\" to=\"https://www.pld-linux.org/Docs/man\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PLE.com.au\" f=\"PLE.com.au.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PLYmedia.com (partial)\" f=\"PLYmedia.com.xml\"><rule from=\"^http://static\\.plymedia\\.com/\" to=\"https://d13y8ya6dr17ji.cloudfront.net/\"/></ruleset>", "<ruleset name=\"PMC (partial)\" default_off=\"Akamai certificate\" f=\"PMC.xml\"><exclusion pattern=\"^http://www\\.\"/><rule from=\"^http://([\\w\\-]+)\\.vimg\\.net/\" to=\"https://$1.vimg.net/\"/></ruleset>", "<ruleset name=\"PNAS First Look (partial)\" default_off=\"failed ruleset test\" f=\"PNAS_First_Look.xml\"><rule from=\"^http://(?:firstlook\\.pnas|(?:www\\.)?pnasfirstlook)\\.org/wp-(admin|content)/\" to=\"https://secure.bluehost.com/~pnasfirs/wp-$1/\"/></ruleset>", "<ruleset name=\"PNC\" f=\"PNC.xml\"><rule from=\"^http://pnc\\.com/\" to=\"https://www.pnc.com/\"/><rule from=\"^http://(ra|www|www\\.ilink|www\\.recognition)\\.pnc\\.com/\" to=\"https://$1.pnc.com/\"/></ruleset>", "<ruleset name=\"PNP4Nagios.org\" f=\"PNP4Nagios.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"POLi Payments.com\" default_off=\"failed ruleset test\" f=\"POLi_Payments.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"POODLE.io\" f=\"POODLE.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"POODLE Test.com\" default_off=\"failed ruleset test\" f=\"POODLE_Test.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"POP (partial)\" default_off=\"failed ruleset test\" f=\"POP.xml\"><rule from=\"^http://pop\\.com\\.br/\" to=\"https://pop.com.br/\"/><rule from=\"^http://www\\.pop\\.com\\.br/_(css|fonts|imagens|swf)/\" to=\"https://www.pop.com.br/_$1/\"/></ruleset>", "<ruleset name=\"PORTAL Masq.com\" default_off=\"failed ruleset test\" f=\"PORTAL_Masq.com.xml\"><securecookie host=\"^\\.portalmasq\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"POS Portal.com (partial)\" f=\"POS_Portal.com.xml\"><securecookie host=\"^\\.buy\\.posportal\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?posportal\\.com/(cam|mmc|omc)(?=$|[?/])\" to=\"https://www.posportal.com/$1\"/><rule from=\"^http://buy\\.posportal\\.com/\" to=\"https://buy.posportal.com/\"/></ruleset>", "<ruleset name=\"PPCoin (partial)\" f=\"PPCoin.xml\"><exclusion pattern=\"^http://(?:www\\.)?ppcoin\\.org/(?!static/)\"/><rule from=\"^http://(?:www\\.)?ppcoin\\.org/\" to=\"https://electric-day-4087.herokuapp.com/\"/></ruleset>", "<ruleset name=\"PPL CZ s.r.o.\" f=\"PPL.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PPS\" default_off=\"failed ruleset test\" f=\"PPS.xml\"><exclusion pattern=\"^http://(?:info|projects)\\.p(?:artipirate|artitopirata|irateparty)\\.ch/\"/><rule from=\"^http://([^/]+\\.)?parti-pirate\\.ch/\" to=\"https://$1partipirate.ch/\"/><rule from=\"^http://winterthur\\.zh\\.p(?:artipirate|artitopirata|irateparty)\\.ch/\" to=\"https://winterthur.zh.piratenpartei.ch/\"/><rule from=\"^http://([^/]+\\.)?partito-pirata\\.ch/\" to=\"https://$1partitopirata.ch/\"/><rule from=\"^http://([^/]+\\.)?pirate-party\\.ch/\" to=\"https://$1pirateparty.ch/\"/><rule from=\"^http://([^/]+\\.)?piraten-partei\\.ch/\" to=\"https://$1piratenpartei.ch/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PQCrypto.org\" f=\"PQCrypto.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PQ Archiver.com\" f=\"PQ_Archiver.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PR Newswire (partial)\" default_off=\"failed ruleset test\" f=\"PR-Newswire.xml\"><securecookie host=\"^p\\w+\\.prnewswire\\.com$\" name=\".*\"/><rule from=\"^http://filecache\\.drivetheweb\\.com/\" to=\"https://s3.amazonaws.com/filecache.drivetheweb.com/\"/><rule from=\"^http://content\\.prnewswire\\.com/designimages/l(ine-horz|ogo-prn)-01_PRN\\.gif\" to=\"https://portal.prnewswire.com/images/l$1-01.gif\"/><rule from=\"^http://p(hotos|ortal)\\.prnewswire\\.com/\" to=\"https://p$1.prnewswire.com/\"/></ruleset>", "<ruleset name=\"PRISM Break.org\" f=\"PRISM-Break.org.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://(www\\.)?prism-break\\.org/\" to=\"https://prism-break.org/\"/></ruleset>", "<ruleset name=\"PRO ISP.no\" f=\"PRO_ISP.no.xml\"><securecookie host=\"^\\.?www\\.proisp\\.no$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"prq.se\" default_off=\"expired\" f=\"PRQ.se.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PRV.se\" platform=\"mixedcontent\" f=\"PRV.se.xml\"><rule from=\"^http://www\\.prv\\.se/\" to=\"https://www.prv.se/\"/><rule from=\"^http://prv\\.se/\" to=\"https://www.prv.se/\"/></ruleset>", "<ruleset name=\"PRWeb (partial)\" f=\"PRWeb.xml\"><rule from=\"^http://app\\.prweb\\.com/\" to=\"https://app.prweb.com/\"/><rule from=\"^http://service\\.prweb\\.com/_res/images/common/(carousel-(?:next|prev)\\.png|logo\\.gif|rss\\.gif)\" to=\"https://app.prweb.com/prweb/images/$1\"/><rule from=\"^http://service\\.prweb\\.com/_res/images/awards/(best-search|codie|upshot-50)\\.gif\" to=\"https://app.prweb.com/images/$1.gif\"/><rule from=\"^http://service\\.prweb\\.com/_res/images/bg/(counter-(?:left|right)|header-main|image-frame-big|main-content|section-bottom|shadow-lighter|usernav-on)\\.gif\" to=\"https://app.prweb.com/prweb/images/$1.gif\"/><rule from=\"^http://service\\.prweb\\.com/_res/images/bg/(create-account\\.jpg|(?:dotted-divider|footer-divided|mainnav|navigation|usernav)\\.gif)\" to=\"https://app.prweb.com/prweb/images/bg/$1\"/><rule from=\"^http://service\\.prweb\\.com/_res/images/common/us-flag\\.gif\" to=\"https://app.prweb.com/prweb/images/bg/us-flag.gif\"/><rule from=\"^http://service\\.prweb\\.com/_res/images/bullets/breadcrumb-arrow\\.gif\" to=\"https://app.prweb.com/prweb/images/bullets/breadcrumb-arrow.gif\"/><rule from=\"^http://service\\.prweb\\.com/_res/images/common/((?:facebook|linkedin|twitter)-icon\\|medallion|search-go-smaller|vocus-logo)\\.gif\" to=\"https://app.prweb.com/prweb/images/common/$1.gif\"/><rule from=\"^http://service\\.prweb\\.com/_res/images/headers/(call|here-to-help)\\.gif\" to=\"https://app.prweb.com/prweb/images/headers/$1.gif\"/><rule from=\"^http://service\\.prweb\\.com/_res/images/bullets/more\\.gif\" to=\"https://app.prweb.com/prweb/images/more.gif\"/></ruleset>", "<ruleset name=\"PRX (partial)\" f=\"PRX.xml\"><securecookie host=\"^\\.prx\\.org$\" name=\".+\"/><rule from=\"^http://(www\\.)?prx\\.org/\" to=\"https://$1prx.org/\"/><rule from=\"^http://assets1\\.prx\\.org/\" to=\"https://d11pcyef3meeu9.cloudfront.net/\"/></ruleset>", "<ruleset name=\"PR SA.pl (partial)\" f=\"PR_SA.pl.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PRstatics.com\" f=\"PRstatics.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PS-Webhosting Webmail\" f=\"PS-Webhosting-Webmail.xml\"><securecookie host=\"^webmail\\.planet-school\\.de$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PS3Crunch\" default_off=\"expired, mismatched\" f=\"PS3Crunch.xml\"><securecookie host=\"^ps3crunch\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ps3crunch\\.net/\" to=\"https://ps3crunch.net/\"/></ruleset>", "<ruleset name=\"PSA Rips.com\" f=\"PSA_Rips.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PSC.edu\" default_off=\"failed ruleset test\" f=\"PSC.edu.xml\"><securecookie host=\"^(?:.+\\.)?psc\\.edu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PSSL.com\" f=\"PSSL.com.xml\"><securecookie host=\".+\\.pssl\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?pssl\\.com/\" to=\"https://www.pssl.com/\"/><rule from=\"^http://espanol\\.pssl\\.com/\" to=\"https://espanol.pssl.com/\"/></ruleset>", "<ruleset name=\"PSX Extreme (partial)\" f=\"PSX-Extreme.xml\"><rule from=\"^http://images\\.psxextreme\\.com/\" to=\"https://dhtxsuc4vsorr.cloudfront.net/\"/></ruleset>", "<ruleset name=\"PSZÁF\" f=\"PSZAF.xml\"><rule from=\"^http://([^/:@]*)\\.pszaf\\.hu/\" to=\"https://$1.pszaf.hu/\"/></ruleset>", "<ruleset name=\"Pécsi Tudományegyetem\" f=\"PTE.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PTT.br\" default_off=\"failed ruleset test\" f=\"PTT.br.xml\"><securecookie host=\"^\\.ptt\\.br$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PULP\" default_off=\"refused\" f=\"PULP.xml\"><securecookie host=\"^ssl\\.pulpcentral\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pabo (partial)\" f=\"Pabo.xml\"><rule from=\"^http://(www\\.)?pabo\\.nl/(/?assets_bu-hard/|data/|product/images/|selfhelp/(?:login|password_recover/))\" to=\"https://$1pabo.nl/$2\"/></ruleset>", "<ruleset name=\"PacBSD.org\" default_off=\"failed ruleset test\" f=\"PacBSD.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PacSec.jp\" f=\"PacSec.jp.xml\"><rule from=\"^http://(?:www\\.)?pacsec\\.jp/\" to=\"https://pacsec.jp/\"/></ruleset>", "<ruleset name=\"Pace.com (partial)\" f=\"Pace.com.xml\"><rule from=\"^http://(?:www\\.)?pace\\.com/(?=css/|Global/Images/|images/|(?:Script|Web)Resource\\.axd)\" to=\"https://www.pace.com/\"/></ruleset>", "<ruleset name=\"Pace2Race (partial)\" f=\"Pace2Race.xml\"><rule from=\"^http://(www\\.)?pace2race\\.com/(wp-content/|wp-includes/|online-store(?:$|\\?|/))\" to=\"https://$1pace2race.com/$2\"/></ruleset>", "<ruleset name=\"Pace Bus.com (partial)\" f=\"Pace_Bus.com.xml\"><securecookie host=\"^www\\.pacebus\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?pacebus\\.com/\" to=\"https://www.pacebus.com/\"/></ruleset>", "<ruleset name=\"Pachube.com\" f=\"Pachube.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Package Control.io\" f=\"Package_Control.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Package Lab.com\" default_off=\"failed ruleset test\" f=\"Package_Lab.com.xml\"><securecookie host=\"^www\\.packagelab\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Packet.net\" f=\"Packet.net.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Packet Storm Security.com\" default_off=\"failed ruleset test\" f=\"Packet_Storm_Security.com.xml\"><rule from=\"^http://www\\.packetstatic\\.com/\" to=\"https://packetstormsecurity.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Packetwerk.com\" f=\"Packetwerk.com.xml\"><securecookie host=\"^packetwerk\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?packetwerk\\.com/\" to=\"https://packetwerk.com/\"/></ruleset>", "<ruleset name=\"Packt Publishing (problematic)\" default_off=\"mismatched\" f=\"Packt_Publishing-problematic.xml\"><rule from=\"^http://link\\.packtpub\\.com/\" to=\"https://link.packtpub.com/\"/></ruleset>", "<ruleset name=\"Packt Publishing (partial)\" f=\"Packt_Publishing.xml\"><securecookie host=\".*\\.packtpub\\.com$\" name=\".+\"/><rule from=\"^http://((?:careers|packtlib|salesdb|www)\\.)?packtpub\\.com/\" to=\"https://$1packtpub.com/\"/></ruleset>", "<ruleset name=\"Pacnet (partial)\" f=\"Pacnet.xml\"><securecookie host=\"^wm4\\.pacific\\.net\\.au$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PadLister.com (partial)\" f=\"PadLister.com.xml\"><exclusion pattern=\"^http://www\\.padlister\\.com/+(?!assets/|images/|users/login(?:$|\\?))\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PadMapper.com (partial)\" f=\"PadMapper.xml\"><exclusion pattern=\"^http://www\\.padmapper\\.com/+(?!favicon\\.ico|images/|pad(?:$|[?/])|static/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Paddle.com\" f=\"Paddle.com.xml\"><securecookie host=\"^(?:www)?\\.paddle(?:api)?\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Padlet.com (partial)\" f=\"Padlet.com.xml\"><securecookie host=\"^\\.padlet\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"padsdel.com\" f=\"Padsdel.com.xml\"><securecookie host=\"^go\\.padsdel\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"padstm.com\" f=\"Padstm.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PagPop\" default_off=\"failed ruleset test\" f=\"PagPop.xml\"><securecookie host=\"^(?:.*\\.)?(?:pagpop|vitalcred)\\.com\\.br$\" name=\".+\"/><rule from=\"^http://(www\\.)?(pagpop|vitalcred)\\.com\\.br/\" to=\"https://$1$2.com.br/\"/></ruleset>", "<ruleset name=\"PageFair.com\" f=\"PageFair.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PageKite.net\" default_off=\"failed ruleset test\" f=\"PageKite.xml\"><securecookie host=\"^pagekite\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pagely\" f=\"Pagely.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PagerDuty.com (partial)\" f=\"PagerDuty.com.xml\"><securecookie host=\"^(?:www)?\\.pagerduty\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pages05.net\" f=\"Pages05.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Página Zero\" default_off=\"failed ruleset test\" f=\"Pagina_Zero.xml\"><securecookie host=\"^(?:w*\\.)?paginazero\\.com\\.br$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pagoda Box\" default_off=\"failed ruleset test\" f=\"Pagoda_Box.xml\"><securecookie host=\"^(?:dashboard\\.)?pagodabox\\.com$\" name=\".+\"/><rule from=\"^http://((?:assistly-assets|blog|dashboard|www)\\.)?pagodabox\\.com/\" to=\"https://$1pagodabox.com/\"/></ruleset>", "<ruleset name=\"pair Networks (partial)\" f=\"Pair-Networks.xml\"><exclusion pattern=\"http://(?:cpan|whois)\\.pairnic\\.\"/><securecookie host=\"^(?:.*\\.)?pairnic\\.com$\" name=\".*\"/><rule from=\"^https://(?:www\\.)?eliminatejunkemail\\.com/\" to=\"https://www.pairnic.com/\"/><rule from=\"^http://(www\\.)?pair\\.com/(assets|static)/\" to=\"https://$1pair.com/$2/\"/><rule from=\"^http://(my|promote|static|(?:(?:[as]m|my|rc|sm)\\.)?webmail)\\.pair\\.com/\" to=\"https://$1.pair.com/\"/><rule from=\"^http://(www\\.)?pairlite\\.com/(images/|signup/|styles01\\.css)\" to=\"https://$1pairlite.com/$2\"/><rule from=\"^http://(my|webmail)\\.pairlite\\.com/\" to=\"https://$1.pairlite.com/\"/><rule from=\"^http://(www\\.)?pairnic\\.com/\" to=\"https://$1pairnic.com/\"/></ruleset>", "<ruleset name=\"Paket.de\" f=\"Paket_de.xml\"><rule from=\"^http://(?:www\\.)?paket\\.de/\" to=\"https://www.paket.de/\"/></ruleset>", "<ruleset name=\"PalSolidarity.org\" platform=\"mixedcontent\" f=\"PalSolidarity.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Palantir.com\" f=\"Palantir.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Palbin.com\" f=\"Palbin.com.xml\"><securecookie host=\"^(?:www)?\\.palbin\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?palbin\\.com/\" to=\"https://www.palbin.com/\"/><rule from=\"^http://cdn\\.palbin\\.com/\" to=\"https://cdn.palbin.com/\"/></ruleset>", "<ruleset name=\"Pale Moon.org (partial)\" f=\"Pale_Moon.org.xml\"><securecookie host=\"^\\.palemoon\\.org$\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^(?:addons|\\.forum)\\.palemoon\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"palfrader.org\" f=\"Palfrader.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Palgrave.com\" f=\"Palgrave.com.xml\"><securecookie host=\"^www\\.palgrave\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?palgrave\\.com/\" to=\"https://www.palgrave.com/\"/></ruleset>", "<ruleset name=\"Palm.com (partial)\" default_off=\"failed ruleset test\" f=\"Palm.com.xml\"><securecookie host=\"^developer\\.palm\\.com$\" name=\".+\"/><rule from=\"^http://developer\\.palm\\.com/\" to=\"https://developer.palm.com/\"/></ruleset>", "<ruleset name=\"Palm Coast Data (problematic)\" default_off=\"self-signed\" f=\"Palm_Coast_Data-problematic.xml\"><securecookie host=\"^\\.palmcoastdata\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Palm Coast Data (partial)\" default_off=\"failed ruleset test\" f=\"Palm_Coast_Data.xml\"><securecookie host=\"^\\.palmcoastd\\.com$\" name=\"^:xCOOKIEx:$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Palmetto.com\" f=\"Palmetto.com.xml\"><securecookie host=\"^www\\.palmetto\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Palms.com (partial)\" f=\"Palms_Casino_Resort.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Palo Alto Networks.com (partial)\" default_off=\"failed ruleset test\" f=\"Palo_Alto_Networks.com.xml\"><securecookie host=\"^urlfiltering\\.paloaltonetworks\\.com$\" name=\"^ASP\\.NET_SessionId$\"/><securecookie host=\"^portal3\\.wildfire\\.paloaltonetworks\\.com$\" name=\"^PHPSESSID$\"/><securecookie host=\"^(?:live|securityadvisories|urlfiltering|portal3\\.wildfire)?\\.paloaltonetworks\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Palo Alto Research Center\" f=\"Palo_Alto_Research_Center.xml\"><securecookie host=\"^blogs\\.parc\\.com$\" name=\".+\"/><rule from=\"^http://(blogs|www)\\.parc\\.com/\" to=\"https://$1.parc.com/\"/></ruleset>", "<ruleset name=\"PamConsult (mismatches)\" default_off=\"Certificate mismatch\" f=\"PamConsult-mismatches.xml\"><rule from=\"^http://(www\\.)?(jaast|pamnews|tapirex)\\.(com|net)/\" to=\"https://www.$2.$3/\"/><rule from=\"^http://s\\.tapirex\\.com/\" to=\"https://s.tapirex.com/\"/></ruleset>", "<ruleset name=\"PamConsult\" platform=\"mixedcontent\" f=\"PamConsult.xml\"><rule from=\"^http://(www\\.)?(pamconsult|pamela|pamfax)\\.(biz|com)/\" to=\"https://www.$2.$3/\"/><rule from=\"^http://s\\.pamfax\\.biz/\" to=\"https://s.pamfax.biz/\"/></ruleset>", "<ruleset name=\"Pan-Islamic Malaysian Party\" f=\"Pan-Islamic_Malaysian_Party.xml\"><securecookie host=\"^\\.pas.org.my$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Panasonic.com (partial)\" f=\"Panasonic.com.xml\"><securecookie host=\".*\\.panasonic\\.com$\" name=\".+\"/><rule from=\"^http://metrics\\.panasonic\\.com/\" to=\"https://merpanasonicprod.122.2o7.net/\"/><rule from=\"^http://www2\\.panasonic\\.com/\" to=\"https://www2.panasonic.com/\"/><rule from=\"^http://www-images\\.panasonic\\.com/\" to=\"https://www.panasonic.com/\"/></ruleset>", "<ruleset name=\"Panax\" f=\"Panax.xml\"><securecookie host=\"^\\.panax\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Panda Express (partial)\" f=\"Panda-Express.xml\"><securecookie host=\"(^|\\.)(shop|www)\\.orangechickenlove\\.com$\" name=\".+\"/><securecookie host=\"(^|\\.)(orders|shop|www)\\.pandaexpress\\.com$\" name=\".+\"/><rule from=\"^http://pandaexpress\\.com/\" to=\"https://www.pandaexpress.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PandaWhale\" default_off=\"failed ruleset test\" f=\"PandaWhale.xml\"><securecookie host=\"^\\.pandawhale\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?pandawhale\\.com/\" to=\"https://pandawhale.com/\"/></ruleset>", "<ruleset name=\"Pando.com\" f=\"Pando.xml\"><securecookie host=\"^(?:.*\\.)?pando\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pandoblog.com\" default_off=\"expired, mismatched, self-signed\" f=\"Pandoblog.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pandora\" f=\"Pandora.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pangora (partial)\" f=\"Pangora.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Panic.com\" f=\"Panic.xml\"><securecookie host=\"^\\.www\\.\" name=\".\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Panic Button.io\" f=\"Panic_Button.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Panopticlick.com\" default_off=\"failed ruleset test\" f=\"Panopticlick.com.xml\"><securecookie host=\"^www\\.panopticlick\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Panopto.com (partial)\" default_off=\"failed ruleset test\" f=\"Panopto.com.xml\"><exclusion pattern=\"^http://get\\.panopto\\.com/+(?!css/|images/|rs/)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://get\\.panopto\\.com/\" to=\"https://na-ab15.marketo.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Panoptykon.org\" default_off=\"failed ruleset test\" f=\"Panoptykon.org.xml\"><rule from=\"^http://www\\.panoptykon\\.org/\" to=\"https://panoptykon.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Panoramio.com (partial)\" f=\"Panoramio.com.xml\"><rule from=\"^http://panoramio\\.com/\" to=\"https://www.panoramio.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Panovski.me\" f=\"Panovski.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"panstwomiasto.pl\" default_off=\"mismatched\" f=\"Panstwomiasto.xml\"><rule from=\"^http://(?:www\\.)?panstwomiasto\\.pl/\" to=\"https://panstwomiasto.pl/\"/></ruleset>", "<ruleset name=\"Pantarhei.sk\" platform=\"mixedcontent\" f=\"Pantarhei.sk.xml\"><rule from=\"^http://(?:www\\.)?pantarhei\\.sk/\" to=\"https://www.pantarhei.sk/\"/></ruleset>", "<ruleset name=\"Pantelligent.com\" f=\"Pantelligent.com.xml\"><securecookie host=\"^\\.pantelligent\\.com$\" name=\".+\"/><rule from=\"^http://pantelligent\\.com/\" to=\"https://www.pantelligent.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pantheon.io\" f=\"Pantheon.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"got Pantheon.com (partial)\" f=\"Pantheon.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://gotpantheon\\.com/\" to=\"https://www.gotpantheon.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pantheos (partial)\" default_off=\"refused\" f=\"Pantheos.xml\"><rule from=\"^http://(?:www\\.)?pantheos\\.com/images/\" to=\"https://www.pantheos.com/images/\"/></ruleset>", "<ruleset name=\"Pantz.org\" f=\"Pantz.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pao-pao.net\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Pao-pao.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PãoDelícia.com\" default_off=\"failed ruleset test\" f=\"PaoDelicia.com.xml\"><securecookie host=\"^(?:w*\\.)?paodelicia\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Papakaya.com\" default_off=\"expired\" f=\"Papakaya.com.xml\"><securecookie host=\"^papakaya\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?papakaya\\.com/\" to=\"https://papakaya.com/\"/></ruleset>", "<ruleset name=\"Paper.li (partial)\" f=\"Paper.li.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Paper Mart.com (partial)\" f=\"Paper_Mart.com.xml\"><rule from=\"^http://(?:www\\.)?papermart\\.com/(?=App_Themes/|favicon\\.ico|Images/|IMAGES/|[jJ]ava[sS]cript/|Secure/|(?:Script|Web)Resource\\.axd|WebService/)\" to=\"https://www.papermart.com/\"/></ruleset>", "<ruleset name=\"Paperspace.io (partial)\" f=\"Paperspace.io.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ParaPoupar.com\" default_off=\"failed ruleset test\" f=\"ParaPoupar.com.xml\"><securecookie host=\"^(?:www)?\\.parapoupar\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Parabola.nu\" f=\"Parabola.nu.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Parabola GNULinux.org\" f=\"Parabola_GNULinux.org.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Paradox Plaza.com\" f=\"Paradox-Interactive.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Paradux Media.com\" f=\"Paradux_Media.com.xml\"><securecookie host=\"^paraduxmedia\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Paradysz\" f=\"Paradysz.xml\"><securecookie host=\"^(?:.*\\.)?offeredby\\.net\" name=\".+\"/><rule from=\"^http://(ssl\\.analytics\\.|www\\.)?offeredby\\.net/\" to=\"https://$1offeredby.net/\"/></ruleset>", "<ruleset name=\"Paragon IE.com\" default_off=\"failed ruleset test\" f=\"Paragon_IE.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Parallax.com (partial)\" f=\"Parallax.com.xml\"><rule from=\"^http://(www\\.)?parallax\\.com/(?=favicon\\.ico|files/|sites/)\" to=\"https://$1parallax.com/\"/></ruleset>", "<ruleset name=\"Parallella.org\" f=\"Parallella.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Parallels.com (partial)\" f=\"Parallels.xml\"><securecookie host=\"^\\.parallels\\.com$\" name=\"^s_\\w+$\"/><securecookie host=\"^store\\.parallels\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Parameter Security.com\" f=\"Parameter_Security.com.xml\"><securecookie host=\"^(?:www)?\\.parametersecurity\\.com$\" name=\".+\"/><rule from=\"^http://parametersecurity\\.com/\" to=\"https://www.parametersecurity.com/\"/><rule from=\"^http://showmecon\\.parametersecurity\\.com/\" to=\"https://showmecon.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ParamountMovies.com\" f=\"Paramount-Pictures.xml\"><securecookie host=\"^www\\.paramountmovies\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?paramountmovies\\.com/\" to=\"https://www.paramountmovies.com/\"/><rule from=\"^http://vod\\.super8-movie\\.com/(?:.*)\" to=\"https://www.paramountmovies.com/productdetail.html?productId=11506\"/><rule from=\"^http://vod\\.transformersmovie\\.com/(?:.*)\" to=\"https://www.paramountmovies.com/\"/></ruleset>", "<ruleset name=\"Paranoidsecurity.nl\" f=\"Paranoidsecurity.nl.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"parastorage.com\" f=\"Parastorage.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Parature.com (partial)\" default_off=\"failed ruleset test\" f=\"Parature.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Parcelforce (partial)\" platform=\"mixedcontent\" f=\"Parcelforce.xml\"><rule from=\"^http://parcelforce\\.com/\" to=\"https://www.parcelforce.com/\"/><rule from=\"^http://www\\.parcelforce\\.com/((?:become-account-customer-today|user)(?:/?$|\\?)|sites/)\" to=\"https://www.parcelforce.com/$1\"/><rule from=\"^http://www\\.parcelforce\\.com/my-account/?$\" to=\"https://www.parcelforce.com/user\"/></ruleset>", "<ruleset name=\"Pardot (mismatches)\" default_off=\"mismatched\" platform=\"mixedcontent\" f=\"Pardot-mismatches.xml\"><rule from=\"^http://ideas\\.pardot\\.com/\" to=\"https://ideas.pardot.com/\"/></ruleset>", "<ruleset name=\"Pardot.com\" default_off=\"failed ruleset test\" f=\"Pardot.xml\"><securecookie host=\"^\\.\" name=\"^(?:visitor_id\\d+|__utm\\w)$\"/><securecookie host=\"^(?:go|pi|www)\\.pardot\\.com$\" name=\".+\"/><rule from=\"^http://(?:form-)?cdn\\.pardot\\.com/\" to=\"https://pi.pardot.com/\"/><rule from=\"^http://storage\\.pardot\\.com/\" to=\"https://s3.amazonaws.com/storage.pardot.com/\"/><rule from=\"^http://www-cdn\\d?\\.pardot\\.com/\" to=\"https://www.pardot.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pardus.org.tr (partial)\" default_off=\"self-signed\" f=\"Pardus.org.tr.xml\"><securecookie host=\"^www\\.pardus\\.org\\.tr$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?pardus\\.org\\.tr/\" to=\"https://www.pardus.org.tr/\"/></ruleset>", "<ruleset name=\"Paris-luttes.info\" f=\"Paris-luttes.info.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Paris Diderot University (partial)\" f=\"Paris_Diderot_University.xml\"><securecookie host=\"^auth\\.univ-paris-diderot\\.fr$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Paris School of Economics.eu\" default_off=\"mismatched\" f=\"Paris_School_of_Economics.eu.xml\"><securecookie host=\"^www\\.parisschoolofeconomics\\.eu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Park Models Direct\" f=\"Park_Models_Direct.xml\"><securecookie host=\"^(?:.*\\.)?parkmodelsdirect\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Parker Soft.co.uk\" f=\"Parker_Soft.co.uk.xml\"><rule from=\"^http://(gateway2?|www)\\.parkersoft\\.co\\.uk/\" to=\"https://$1.parkersoft.co.uk/\"/></ruleset>", "<ruleset name=\"parkerpen.com\" f=\"Parkerpen.com.xml\"><rule from=\"^https?://(www\\.)?parkerpen\\.com/\" to=\"https://www.parkerpen.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ParkingCrew.com\" f=\"ParkingCrew.com.xml\"><rule from=\"^http://(?:www\\.)?parkingcrew\\.com/\" to=\"https://www.parkingcrew.com/\"/></ruleset>", "<ruleset name=\"ParkingEye.co.uk\" f=\"ParkingEye.co.uk.xml\"><securecookie host=\"^(?:\\w*\\.)?parkingeye.co.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"parkrun.com\" f=\"Parkrun.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"parkrun.org.uk\" default_off=\"failed ruleset test\" f=\"Parkrun.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Parnasparty.ru\" f=\"Parnasparty.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Parrable.com\" f=\"Parrable.com.xml\"><rule from=\"^http://(?:www\\.)?parrable\\.com/\" to=\"https://www.parrable.com/\"/><rule from=\"^http://cdn\\.parrable\\.com/\" to=\"https://cdn.parrable.com/\"/></ruleset>", "<ruleset name=\"Parrot.com (mismatched)\" default_off=\"mismatched\" platform=\"mixedcontent\" f=\"Parrot.com-problematic.xml\"><securecookie host=\"^www\\.parrot\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Parrot.com (partial)\" default_off=\"failed ruleset test\" f=\"Parrot.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Parrot (partial)\" default_off=\"expired\" f=\"Parrot.xml\"><rule from=\"^http://(?:www\\.)?parrot\\.org/\" to=\"https://www.parrot.org/\"/></ruleset>", "<ruleset name=\"Parse.com (partial)\" f=\"Parse.com.xml\"><rule from=\"^http://status\\.parse\\.com/\" to=\"https://parse.statuspage.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Parse.ly (mismatches)\" default_off=\"mismatched\" f=\"Parse.ly-mismatches.xml\"><rule from=\"^http://(press|status)\\.parsely\\.com/\" to=\"https://$1.parsely.com/\"/></ruleset>", "<ruleset name=\"Parse.ly (partial)\" f=\"Parse.ly.xml\"><securecookie host=\"^config\\.parsely\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?parse\\.ly/\" to=\"https://www.parsely.com/\"/><rule from=\"^http://((?:api|config|[\\w-]+\\.config|dash|pixel|[\\w-]+\\.pixel|www)\\.)?parsely\\.com/\" to=\"https://$1parsely.com/\"/><rule from=\"^http://static\\.parsely\\.com/\" to=\"https://d1z2jf7jlzjs58.cloudfront.net/\"/></ruleset>", "<ruleset name=\"ParseCDN.com\" default_off=\"failed ruleset test\" f=\"ParseCDN.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Parship.nl\" f=\"Parship.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Part Spider.com\" default_off=\"failed ruleset test\" f=\"Part_Spider.com.xml\"><securecookie host=\"^partspider\\.com$\" name=\".+\"/><rule from=\"^http://www\\.partspider\\.com/\" to=\"https://partspider.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Particle.io\" f=\"Particle.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PartnerNet program.com\" f=\"PartnerNet_program.com.xml\"><securecookie host=\"^\\.partnernetprogram\\.com$\" name=\".+\"/><rule from=\"^http://partnernetprogram\\.com/[^?]*\" to=\"https://www.partnernetprogram.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Partnernaurovni.sk\" f=\"Partnernaurovni.sk.xml\"><rule from=\"^http://(?:www\\.)?partnernaurovni\\.sk/\" to=\"https://www.partnernaurovni.sk/\"/></ruleset>", "<ruleset name=\"partypoker\" platform=\"mixedcontent\" f=\"Partypoker.com.xml\"><rule from=\"^http://partypoker\\.com/\" to=\"https://www.partypoker.com/\"/><rule from=\"^http://www\\.partypoker\\.com/\" to=\"https://www.partypoker.com/\"/><rule from=\"^http://p\\.iivt\\.com/\" to=\"https://p.iivt.com/\"/></ruleset>", "<ruleset name=\"Partyprogress.org\" f=\"Partyprogress.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pashm.com\" default_off=\"failed ruleset test\" f=\"Pashm.com.xml\"><securecookie host=\"^(?:www\\.)?pashm\\.com$\" name=\".+\"/><rule from=\"^http://www\\.pashm\\.com/\" to=\"https://pashm.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pasportaservo.org\" f=\"PasportaServo.org.xml\"><rule from=\"^http://www\\.pasportaservo\\.org/\" to=\"https://pasportaservo.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PassMark.com (false MCB)\" platform=\"mixedcontent\" f=\"PassMark.com-falsemixed.xml\"><securecookie host=\"^www\\.passmark\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PassMark.com (partial)\" f=\"PassMark.com.xml\"><rule from=\"^http://(www\\.)?passmark\\.com/(?!forum(?!/cron\\.php|/css\\.php|/favicon\\.ico|/images/))\" to=\"https://$1passmark.com/\"/></ruleset>", "<ruleset name=\"PassSource\" f=\"PassSource.xml\"><securecookie host=\"^(?:www\\.)?passsource\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PassageBank (partial)\" f=\"PassageBank.xml\"><rule from=\"^http://(www\\.)?passagebank\\.com/img/\" to=\"https://$1passagebank.com/img/\"/></ruleset>", "<ruleset name=\"Passed.cc\" default_off=\"failed ruleset test\" f=\"Passed.cc.xml\"><securecookie host=\"^(?:w*\\.)?passed\\.cc$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Passion-Radio.com (partial)\" f=\"Passion-Radio.com.xml\"><rule from=\"^http://(uk\\.|www\\.)?passion-radio\\.com/(?=\\d+-(?:home|medium)_default/|(?:fr/authentification|fr/mon-compte|gb/authentification|gb/contact-us)(?:$|[?/])|img/|js/|modules/|themes/)\" to=\"https://$1passion-radio.com/\"/></ruleset>", "<ruleset name=\"Passionfruit Ads.com (partial)\" default_off=\"failed ruleset test\" f=\"Passionfruit_Ads.com.xml\"><securecookie host=\"^app\\.passionfruitads\\.com$\" name=\".+\"/><rule from=\"^http://(?:app\\.|www\\.)?passionfruitads\\.com/\" to=\"https://app.passionfruitads.com/\"/><rule from=\"^http://load\\.passionfruitads\\.com/\" to=\"https://passionfruit.herokuapp.com/\"/></ruleset>", "<ruleset name=\"Passkey.com (partial)\" f=\"Passkey.com.xml\"><securecookie host=\"^(?:aws|manage|resweb)\\.passkey\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Passwd.hu\" default_off=\"self-signed\" f=\"Passwd.hu.xml\"><rule from=\"^http://(?:www\\.)?passwd\\.hu/\" to=\"https://www.passwd.hu/\"/></ruleset>", "<ruleset name=\"Password-Hashing.net\" f=\"Password-Hashing.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Password Safe\" f=\"Password-Safe.xml\"><securecookie host=\"^www\\.pwsafe\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PasswordBox.com\" default_off=\"failed ruleset test\" f=\"PasswordBox.com.xml\"><securecookie host=\"^\\.passwordbox.com$\" name=\".+\"/><securecookie host=\"^\\.psswrdbx\\.com$\" name=\".+\"/><rule from=\"^http://(blog\\.|www\\.)?passwordbox\\.com/\" to=\"https://$1passwordbox.com/\"/><rule from=\"^http://((?:assets-production|extensions|www)\\.)?psswrdbx\\.com/\" to=\"https://$1psswrdbx.com/\"/></ruleset>", "<ruleset name=\"PasswordCard\" f=\"Passwordcard.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Passwort-generator.com\" f=\"Passwort-generator.com.xml\"><securecookie host=\"^(www\\.)?passwort-generator\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Paste.ee\" default_off=\"failed ruleset test\" f=\"Paste.ee.xml\"><securecookie host=\"^(?:www\\.)?paste\\.ee$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"paste.sh\" f=\"Paste.sh.xml\"><rule from=\"^http://(?:www\\.)?paste\\.sh/\" to=\"https://paste.sh/\"/></ruleset>", "<ruleset name=\"Paste2.org\" f=\"Paste2.org.xml\"><securecookie host=\"^\\.paste2\\.org$\" name=\"^(__cfduid|__qca|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PasteMonitor.com\" f=\"PasteMonitor.com.xml\"><securecookie host=\"^\\.?www\\.pastemonitor\\.com$\" name=\".+\"/><rule from=\"^http://pastemonitor\\.com/+\" to=\"https://www.pastemonitor.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PasteVault.com\" default_off=\"failed ruleset test\" f=\"PasteVault.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pastebin.ca\" f=\"Pastebin.ca.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pastebin.com\" f=\"Pastebin.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pastee.org\" f=\"Pastee.org.xml\"><rule from=\"^http://(?:www\\.)?pastee\\.org/\" to=\"https://pastee.org/\"/></ruleset>", "<ruleset name=\"Pasteur.fr (partial)\" f=\"Pasteur.fr.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Patch of Land.com\" f=\"Patch_of_Land.com.xml\"><securecookie host=\"^patchofland\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?patchofland\\.com/\" to=\"https://patchofland.com/\"/></ruleset>", "<ruleset name=\"Patent Baristas\" default_off=\"mismatched\" f=\"Patent-Baristas.xml\"><securecookie host=\"^www\\.patentbaristas\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?patentbaristas\\.com/\" to=\"https://www.patentbaristas.com/\"/></ruleset>", "<ruleset name=\"Paxetia (partial)\" f=\"Patexia.xml\"><rule from=\"^http://patexia\\.com/\" to=\"https://patexia.com/\"/><rule from=\"^http://www\\.patexia\\.com/(css|data|fonts|images|users?)/\" to=\"https://www.patexia.com/$1/\"/></ruleset>", "<ruleset name=\"Path-follower.com\" f=\"Path-follower.com.xml\"><rule from=\"^http://(?:www\\.)?path-follower\\.com/\" to=\"https://secure.leadforensics.com/\"/></ruleset>", "<ruleset name=\"Path.com (partial)\" f=\"Path.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PathDefender.com\" f=\"PathDefender.com.xml\"><securecookie host=\"^www\\.pathdefender\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Path of Exile.com\" f=\"Path_of_Exile.com.xml\"><securecookie host=\"^www\\.pathofexile\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?pathofexile\\.com/\" to=\"https://$1pathofexile.com/\"/><rule from=\"^http://webcdn\\.pathofexile\\.com/\" to=\"https://p7p4m6s5.ssl.hwcdn.net/\"/></ruleset>", "<ruleset name=\"pathways2gsfa.org\" default_off=\"failed ruleset test\" f=\"Pathways2gsfa.org.xml\"><rule from=\"^http://(?:www\\.)?pathways2gsfa\\.org/\" to=\"https://www.pathways2gsfa.org/\"/></ruleset>", "<ruleset name=\"PatientsLikeMe.com (partial)\" f=\"PatientsLikeMe.com.xml\"><rule from=\"^http://news\\.patientslikeme\\.com/(?=sites/)\" to=\"https://patientslikeme.newshq.businesswire.com/\"/><rule from=\"^http://(support\\.|www\\.)?patientslikeme\\.com/\" to=\"https://$1patientslikeme.com/\"/></ruleset>", "<ruleset name=\"Patreon.com (partial)\" f=\"Patreon.com.xml\"><exclusion pattern=\"^http://www\\.patreon\\.com/+(?!_generated/|bePatronConfirm\\?|css/|favicon\\.ico|images/|scripts/)\"/><rule from=\"^http://(?:www\\.)?patreon\\.com/\" to=\"https://www.patreon.com/\"/></ruleset>", "<ruleset name=\"patriotssuperbowl.us\" default_off=\"expired, mismatched\" f=\"Patriotsuperbowl.us.xml\"><securecookie host=\"^\\.www\\.patriotssuperbowl\\.us$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?(?:boxus\\.com|patriotssuperbowl\\.us)/\" to=\"https://www.patriotssuperbowl.us/\"/></ruleset>", "<ruleset name=\"PatternsInTheVoid.net\" f=\"PatternsInTheVoid.net.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PaulDotCom.com (partial, false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"PaulDotCom.com.xml\"><securecookie host=\"^(?:www\\.)?pauldotcom\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PaulDreik.se\" f=\"PaulDreik.se.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pavpan Chekha.com\" f=\"Pavpan_Chekha.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pawoo.net\" f=\"Pawoo.net.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Paxton Record (partial)\" f=\"Paxton_Record.xml\"><rule from=\"^http://(?:www\\.)?paxtonrecord\\.net/(misc/|sites/|user(?:$|\\?|/))\" to=\"https://www.paxtonrecord.net/$1\"/></ruleset>", "<ruleset name=\"Pay.gov\" f=\"Pay.gov.xml\"><securecookie host=\"^\\.?pay\\.gov$\" name=\".+\"/><rule from=\"^http://([\\w\\-]+\\.)?pay\\.gov/\" to=\"https://$1pay.gov/\"/></ruleset>", "<ruleset name=\"Pay4Bugs.com\" f=\"Pay4Bugs.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PayPal\" f=\"PayPal.xml\"><securecookie host=\"^\\.\" name=\"^s_\\w+$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PayPal | Forward\" default_off=\"failed ruleset test\" f=\"PayPal_Forward.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PayPerPost.com\" f=\"PayPerPost.com.xml\"><securecookie host=\"^(?:www\\.)?payperpost\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"payQuake (partial)\" default_off=\"failed ruleset test\" f=\"PayQuake.xml\"><securecookie host=\"^www\\.mypayquake\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?mypayquake\\.com/\" to=\"https://www.mypayquake.com/\"/></ruleset>", "<ruleset name=\"Pay Dirt Gold.com\" default_off=\"mismatched\" f=\"Pay_Dirt_Gold.com.xml\"><securecookie host=\"^\\.?paydirtgold\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Paycheckrecords.com\" f=\"Paycheckrecords.com.xml\"><securecookie host=\"^www\\.paycheckrecords\\.com$\" name=\".+\"/><rule from=\"^http://paycheckrecords\\.com/\" to=\"https://www.paycheckrecords.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Paydirekt.de\" f=\"Paydirekt.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Payeer.com\" f=\"Payeer.com.xml\"><securecookie host=\"^payeer\\.com$\" name=\".+\"/><rule from=\"^http://www\\.payeer\\.com/\" to=\"https://payeer.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Payhip.com\" f=\"Payhip.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Paymentech.com (partial)\" f=\"Paymentech.com.xml\"><securecookie host=\"^secure\\.paymentech\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?paymentech\\.com/(?:$|\\?.*)\" to=\"https://www.chasepaymentech.com/\"/><rule from=\"^http://secure\\.paymentech\\.com/\" to=\"https://secure.paymentech.com/\"/></ruleset>", "<ruleset name=\"PaymentsSource.com\" default_off=\"mismatched\" f=\"PaymentsSource.com.xml\"><rule from=\"^http://(?:cdn\\.|www\\.)?paymentssource\\.com/\" to=\"https://www.paymentssource.com/\"/></ruleset>", "<ruleset name=\"Paymentwall.com\" f=\"Paymentwall.com.xml\"><securecookie host=\"^(?:\\w*\\.)?paymentwall\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Paymium.com\" f=\"Paymium.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Paymo.biz\" f=\"Paymo.xml\"><rule from=\"^http://app\\.paymo\\.biz/+\" to=\"https://app.paymoapp.com/\"/></ruleset>", "<ruleset name=\"Paymo App.com\" f=\"Paymo_App.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Payoneer.com\" default_off=\"failed ruleset test\" f=\"Payoneer.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Payonline.ru\" f=\"Payonline.ru.xml\"><rule from=\"^http://www\\.payonline\\.ru/\" to=\"https://payonline.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Paypal Giving Fund.org (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Paypal_Giving_Fund.org.xml\"><securecookie host=\"^www\\.paypalgivingfund\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"paysafecard.com\" f=\"Paysafecard.com.xml\"><securecookie host=\"^(?:mypins|static|www)?\\.paysafecard\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?paysafecard\\.com/\" to=\"https://www.paysafecard.com/\"/><rule from=\"^http://(mypins|static)\\.paysafecard\\.com/\" to=\"https://$1.paysafecard.com/\"/></ruleset>", "<ruleset name=\"Paysol.se\" default_off=\"failed ruleset test\" f=\"Paysol.se.xml\"><rule from=\"^http://secure\\.paysol\\.se/\" to=\"https://secure.paysol.se/\"/><securecookie host=\"^secure\\.paysol\\.se$\" name=\".*\"/></ruleset>", "<ruleset name=\"Payson\" f=\"Payson.xml\"><securecookie host=\"^(?:www)?\\.payson\\.se$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?payson\\.se/\" to=\"https://www.payson.se/\"/></ruleset>", "<ruleset name=\"Paytoll\" default_off=\"failed ruleset test\" f=\"Paytoll.xml\"><securecookie host=\"^secure\\.paytoll\\.eu$\" name=\".+\"/><rule from=\"^http://secure\\.paytoll\\.eu/\" to=\"https://secure.paytoll.eu/\"/></ruleset>", "<ruleset name=\"Payu.ru\" f=\"Payu.ru.xml\"><rule from=\"^http://payu\\.ru/\" to=\"https://www.payu.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Payza\" f=\"Payza.xml\"><securecookie host=\".+\\.payza\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?payza\\.com/\" to=\"https://www.payza.com/\"/><rule from=\"^http://secure\\.payza\\.com/\" to=\"https://secure.payza.com/\"/></ruleset>", "<ruleset name=\"Pazaruvaj.com\" f=\"Pazaruvaj.com.xml\"><securecookie host=\".*\\.pazaruvaj\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PbGrd.com (partial)\" f=\"Pbgrd.com.xml\"><securecookie host=\"^delivery\\.pbgrd\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pbs-erhverv.dk\" f=\"Pbs-erhverv.dk.xml\"><rule from=\"^http://www\\.pbs-erhverv\\.dk/\" to=\"https://pbs-erhverv.dk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pbsrc.com (partial)\" f=\"Pbsrc.com.xml\"><exclusion pattern=\"^http://pic2\\.pbsrc\\.com/flash/ZeroClipboardFV3\\.swf\"/><exclusion pattern=\"^http://static2\\.pbsrc\\.com/$\"/><rule from=\"^http://pic\\.pbsrc\\.com/\" to=\"https://pbsrc.com/\"/><rule from=\"^http://(pic|static)2\\.pbsrc\\.com/\" to=\"https://o$12.pbsrc.com/\"/><rule from=\"^http://((?:opic2|ostatic2|rs\\d+|www)\\.)?pbsrc\\.com/\" to=\"https://$1pbsrc.com/\"/></ruleset>", "<ruleset name=\"PCP.ch\" f=\"Pcp.ch.xml\"><securecookie host=\"^www\\.pcp\\.ch$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pcpartpicker.com\" f=\"Pcpartpicker.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pcwelt.de\" platform=\"mixedcontent\" f=\"Pcwelt.de.xml\"><rule from=\"^http://(mobil|www)\\.pcwelt\\.de/\" to=\"https://$1.pcwelt.de/\"/></ruleset>", "<ruleset name=\"Pdadb.net\" default_off=\"invalid certificate\" f=\"Pdadb.net.xml\"><rule from=\"^http://(?:www\\.)?pdadb\\.net/\" to=\"https://www.pdadb.net/\"/></ruleset>", "<ruleset name=\"pdfcrowd.com (partial)\" f=\"Pdfcrowd.com.xml\"><exclusion pattern=\"^http://pdfcrowd\\.com/+(?!(?:blog|user/sign_in)(?:$|[?/])|favicon\\.ico|forums/templates/|static/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pdfreaders.org\" f=\"Pdfreaders.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PeKwm.org\" f=\"PeKwm.org.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pretty Easy privacy.com\" f=\"PeP.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Peace Center for the Performing Arts (partial)\" f=\"Peace_Center_for_the_Performing_Arts.xml\"><exclusion pattern=\"^http://(?:www\\.)?peacecenter\\.org/(?:index\\.php)?(?:\\?.*)?$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"peacefire.org\" default_off=\"self-signed\" f=\"Peacefire.org.xml\"><rule from=\"^http://(?:www\\.)?peacefire\\.org/\" to=\"https://peacefire.org/\"/></ruleset>", "<ruleset name=\"Pearson (mismatches)\" default_off=\"mismatched\" f=\"Pearson-mismatches.xml\"><rule from=\"^http://ptgmedia\\.pearsoncmg\\.com/\" to=\"https://ptgmedia.pearsoncmg.com/\"/></ruleset>", "<ruleset name=\"Pearson (partial)\" platform=\"mixedcontent\" f=\"Pearson.xml\"><securecookie host=\"^\\.?(?:developer|neo)\\.pearson\\.com$\" name=\".+\"/><securecookie host=\"^register\\.pearsoncmg\\.com$\" name=\".+\"/><securecookie host=\"^www8\\.pearsonvue\\.com$\" name=\".+\"/><rule from=\"^http://(developer|neo)\\.pearson\\.com/\" to=\"https://$1.pearson.com/\"/><rule from=\"^http://register\\.pearsoncmg\\.com/\" to=\"https://register.pearsoncmg.com/\"/><rule from=\"^http://(?:www8?\\.)?(?:pearson)?vue\\.com/\" to=\"https://www8.pearsonvue.com/\"/></ruleset>", "<ruleset name=\"Pearson Computing.net\" default_off=\"self-signed\" f=\"Pearson_Computing.net.xml\"><securecookie host=\"^(?:www\\.)?pearsoncomputing\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?pearsoncomputing\\.net/\" to=\"https://www.pearsoncomputing.net/\"/></ruleset>", "<ruleset name=\"Pebble (partial)\" f=\"Pebble.xml\"><securecookie host=\"^account\\.getpebble\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?getpebble\\.com/global/\" to=\"https://pebble.myshopify.com/global/\"/><rule from=\"^http://(account|developer)\\.getpebble\\.com/\" to=\"https://$1.getpebble.com/\"/><rule from=\"^http://forums\\.getpebble\\.com/\" to=\"https://pebble.vanillaforums.com/\"/></ruleset>", "<ruleset name=\"PebblePad.co.uk\" f=\"PebblePad.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Regional Municipality of Peel, Canada\" f=\"Peel-Region-of-Canada.xml\"><rule from=\"^http://(?:www\\.)?peelregion\\.ca/\" to=\"https://www.peelregion.ca/\"/></ruleset>", "<ruleset name=\"Peepd.com (partial)\" f=\"Peepd.xml\"><rule from=\"^http://www\\.peepd\\.com/\" to=\"https://peepd.com/\"/><rule from=\"^http://peepd\\.com/(images/|index\\.php|skins/)\" to=\"https://peepd.com/$1\"/></ruleset>", "<ruleset name=\"Peer1.ca (partial)\" f=\"Peer1.ca.xml\"><securecookie host=\"^(?:www\\.)?partners\\.peer1\\.ca$\" name=\".+\"/><rule from=\"^http://(www\\.)?partners\\.peer1\\.ca/\" to=\"https://$1partners.peer1.ca/\"/></ruleset>", "<ruleset name=\"Peer39\" default_off=\"mismatched\" f=\"Peer39.xml\"><rule from=\"^http://(catrg|stags)\\.peer39\\.net/\" to=\"https://$1.peer39.net/\"/></ruleset>", "<ruleset name=\"Peer5.com\" f=\"Peer5.com.xml\"><securecookie host=\"^\\.peer5\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PeerJ.com\" f=\"PeerJ.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://blog\\.peerj\\.com/+\" to=\"https://peerj.com/blog/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PeerLibrary.org (partial)\" default_off=\"failed ruleset test\" f=\"PeerLibrary.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PeerReach.com (partial)\" f=\"PeerReach.com.xml\"><securecookie host=\"^peerreach\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"peerTransfer.com (partial)\" default_off=\"failed ruleset test\" f=\"PeerTransfer.com.xml\"><exclusion pattern=\"^http://info\\.peertransfer\\.com/+(?!css/|images/|rs/)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://info\\.peertransfer\\.com/\" to=\"https://na-abm.marketo.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Peere.org\" platform=\"mixedcontent\" f=\"Peere.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PeeringDB.com\" f=\"PeeringDB.xml\"><securecookie host=\"^(?:www\\.)?peeringdb\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Peerio.com\" f=\"Peerio.com.xml\"><securecookie host=\"^\\.peerio\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Peerius.com (problematic)\" default_off=\"expired, self-signed\" f=\"Peerius.com-problematic.xml\"><securecookie host=\"^www\\.deutsch\\.peerius\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?deutsch\\.peerius\\.com/\" to=\"https://www.deutsch.peerius.com/\"/></ruleset>", "<ruleset name=\"Peerius.com (partial)\" f=\"Peerius.com.xml\"><rule from=\"^http://(?!deutsch\\.|www\\.)([\\w-]+)\\.peerius\\.com/\" to=\"https://$1.peerius.com/\"/></ruleset>", "<ruleset name=\"Peersm.com\" default_off=\"mismatched\" f=\"Peersm.com.xml\"><securecookie host=\"^www\\.peersm\\.com$\" name=\".+\"/><rule from=\"^http://peersm\\.com/\" to=\"https://www.peersm.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Peerstudio.org\" f=\"Peerstudio.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"peertech.org\" default_off=\"failed ruleset test\" f=\"Peertech.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pega (partial)\" f=\"Pega.xml\"><rule from=\"^http://(?:www\\.)?pega\\.com/(misc/|sites/|user(?:$|\\?|/))\" to=\"https://www.pega.com/$1\"/><rule from=\"^http://staging\\.pega\\.com/(sites/|user(?:$|\\?|/))\" to=\"https://staging.pega.com/$1\"/></ruleset>", "<ruleset name=\"Pegaz Hosting.com (partial)\" f=\"Pegaz_Hosting.com.xml\"><securecookie host=\"^secure\\.pegazhosting\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pegelf.de\" f=\"Pegelf.de.xml\"><exclusion pattern=\"^http://blog\\.pegelf\\.de/\"/><rule from=\"^http://(?:www\\.)?pegelf\\.de/\" to=\"https://pegelf.de/\"/></ruleset>", "<ruleset name=\"Pen Test Partners.com\" f=\"Pen_Test_Partners.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Penango (partial)\" f=\"Penango.xml\"><securecookie host=\"^.+\\.penango\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pendle.gov.uk\" default_off=\"missing certificate chain\" f=\"Pendle.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.www\\.\" name=\".\"/><rule from=\"^http://pendle\\.gov\\.uk/\" to=\"https://www.pendle.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Penfold Golf\" f=\"Penfold_Golf.xml\"><securecookie host=\"^(?:\\.?www)?\\.penfoldgolf\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PengPod.com\" default_off=\"refused\" f=\"PengPod.com.xml\"><securecookie host=\"^(?:.*\\.)?pengpod\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PenguinWebHosting (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"PenguinWebHosting.xml\"><rule from=\"^http://(www\\.)?pcicomplianthosting\\.com/\" to=\"https://$1pcicomplianthosting.com/\"/><rule from=\"^http://ssl134\\.penguinhost\\.net/\" to=\"https://ssl134.penguinhost.net/\"/><rule from=\"^http://(?:www\\.)?penguinwebhosting\\.com/\" to=\"https://www.pcicomplianthosting.com/\"/><rule from=\"^http://secure\\.penguinwebhosting\\.com/\" to=\"https://secure.penguinwebhosting.com/\"/></ruleset>", "<ruleset name=\"Peninsula College of Medicine & Dentistry (partial)\" default_off=\"refused\" f=\"Peninsula-College-of-Medicine-and-Dentistry.xml\"><exclusion pattern=\"^http://pdsdef\\.\"/><securecookie host=\"^(?:.*\\.)?pcmd\\.ac\\.uk$\" name=\".*\"/><rule from=\"^http://(\\w+\\.)?pcmd\\.ac\\.uk/\" to=\"https://$1pcmd.ac.uk/\"/></ruleset>", "<ruleset name=\"Peninsula Library System (partial)\" platform=\"mixedcontent\" f=\"Peninsula-Lib-Sys.xml\"><securecookie host=\"^(?:catalog|ezproxy)\\.plsinfo\\.org$\" name=\".+\"/><rule from=\"^http://(catalog|ezproxy)\\.plsinfo\\.org/\" to=\"https://$1.plsinfo.org/\"/><rule from=\"^http://plsiii\\.plsinfo\\.org/\" to=\"https://catalog.plsinfo.org/\"/></ruleset>", "<ruleset name=\"PSU.edu (partial)\" f=\"Pennsylvania-State-University.xml\"><exclusion pattern=\"^http://blogs\\.psu\\.edu/(?!mt4/)\"/><exclusion pattern=\"^http://www\\.cse\\.psu\\.edu/~\"/><exclusion pattern=\"^http://citeseerx\\.ist\\.psu\\.edu/(?!mcsutils/newAccount|myciteseer/login)\"/><securecookie host=\"^(?:cms|\\.e-education|elion(?:facadv\\.oas)?|secureapps\\.libraries|appnew\\.outreach|webaccess)\\.psu\\.edu$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?(e-education|libraries|worldcampus)\\.psu\\.edu/\" to=\"https://www.$1.psu.edu/\"/><rule from=\"^http://(?:secure)?apps\\.libraries\\.psu\\.edu/\" to=\"https://secureapps.libraries.psu/\"/><rule from=\"^http://(alumni|blogs|cms|www\\.cse|elion|citeseerx\\.ist|(?:cat|ill)\\.libraries|elionfacadv\\.oas|(?:(?:appnew|www)\\.)?outreach|portal|webaccess|webmail)\\.psu\\.edu/\" to=\"https://$1.psu.edu/\"/></ruleset>", "<ruleset name=\"Pennsylvania Association for Justice\" default_off=\"mismatched\" f=\"Pennsylvania_Association_for_Justice.xml\"><securecookie host=\"^.+\\.pajustice\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PensionsMyndigheten.se\" f=\"Pensionsmyndigheten.se.xml\"><rule from=\"^http://www\\.pensionsmyndigheten\\.se/\" to=\"https://secure.pensionsmyndigheten.se/\"/><rule from=\"^http://pensionsmyndigheten\\.se/\" to=\"https://secure.pensionsmyndigheten.se/\"/></ruleset>", "<ruleset name=\"Pentest Geek.com\" default_off=\"failed ruleset test\" f=\"Pentest_Geek.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pentestit.ru\" f=\"Pentestit.ru.xml\"><securecookie host=\"^www\\.pentestit\\.ru$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pentestmag.com\" f=\"Pentestmag.com.xml\"><securecookie host=\"^\\.pentestmag\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Penton Media (partial)\" f=\"Penton_Media.xml\"><exclusion pattern=\"^http://tech\\.pentontech\\.com/(?!eloquaimages/)\"/><securecookie host=\"^\\.penton\\.com$\" name=\"^s_vi$\"/><rule from=\"^http://metrics\\.(?:pisces-)?penton\\.com/\" to=\"https://pentonmedia.122.2o7.net/\"/><rule from=\"^http://(?:images\\.)?tech\\.pentontech\\.com/\" to=\"https://secure.eloqua.com/\"/></ruleset>", "<ruleset name=\"People.com (mismatched)\" default_off=\"mismatched\" platform=\"mixedcontent\" f=\"People.com-problematic.xml\"><rule from=\"^http://(?:www\\.)?people\\.com/\" to=\"https://www.people.com/\"/><rule from=\"^http://celebritybabies\\.people\\.com/\" to=\"https://celebritybabies.people.com/\"/></ruleset>", "<ruleset name=\"People.com (partial)\" f=\"People.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PeopleFluent.com (partial)\" f=\"PeopleFluent.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PeopleStrategy.com (partial)\" f=\"PeopleStrategy.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Peopleclick.com (false MCB)\" platform=\"mixedcontent\" f=\"Peopleclick.com-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Peopleclick.com (partial)\" f=\"Peopleclick.com.xml\"><exclusion pattern=\"^http://careers\\.peopleclick\\.com/+(?!content/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"People's Choice Credit Union\" f=\"PeoplesChoiceCU.com.au.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"People's Choice Awards\" f=\"Peoples_Choice_Awards.xml\"><exclusion pattern=\"^http://(?:cdn\\.|www\\.)?peopleschoice\\.com/(?!pca/(?:css/|img/|login\\.jsp|register\\.jsp))\"/><rule from=\"^http://(?:cdn\\.|(www\\.))?peopleschoice\\.com/\" to=\"https://$1peopleschoice.com/\"/></ruleset>", "<ruleset name=\"PepperJam Exchange (partial)\" f=\"PepperJam_Exchange.xml\"><securecookie host=\"^www\\.pepperjamnetwork\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?pepperjamnetwork\\.com/\" to=\"https://$1pepperjamnetwork.com/\"/><rule from=\"^http://media\\.pepperjamnetwork\\.com/\" to=\"https://s3.amazonaws.com/media.pepperjamnetwork.com/\"/></ruleset>", "<ruleset name=\"Pepperfish (partial)\" default_off=\"failed ruleset test\" f=\"Pepperfish.xml\"><rule from=\"^http://secure\\.pepperfish\\.net/\" to=\"https://secure.pepperfish.net/\"/></ruleset>", "<ruleset name=\"Perceptive Pixel\" default_off=\"mismatched\" f=\"Perceptive-Pixel.xml\"><securecookie host=\"^.*\\.perceptivepixel\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?perceptivepixel\\.com/\" to=\"https://www.perceptivepixel.com/\"/></ruleset>", "<ruleset name=\"Percona.com (partial)\" default_off=\"failed ruleset test\" f=\"Percona.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://forum\\.percona\\.com/[^?]*\" to=\"https://www.percona.com/forums/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Perfect-Privacy.com\" f=\"Perfect-Privacy.com.xml\"><securecookie host=\"^board\\.perfect-privacy\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Perfect Audience.com\" f=\"Perfect_Audience.xml\"><securecookie host=\"^www\\.perfectaudience\\.com$\" name=\".+\"/><rule from=\"^http://ads\\.perfectaudience\\.com/\" to=\"https://ib.adnxs.com/\"/><rule from=\"^https?://blog\\.perfectaudience\\.com/\" to=\"https://perfectaudienc.wpengine.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Perfect Market.com (problematic)\" default_off=\"mismatched\" f=\"Perfect_Market.com-problematic.xml\"><rule from=\"^http://(?:www\\.)?perfectmarket\\.com/\" to=\"https://perfectmarket.com/\"/></ruleset>", "<ruleset name=\"Perfect Market.com (partial)\" f=\"Perfect_Market.com.xml\"><rule from=\"^http://(vault|widget)\\.perfectmarket\\.com/\" to=\"https://$1.perfectmarket.com/\"/></ruleset>", "<ruleset name=\"Perfect Money.is\" f=\"Perfect_Money.is.xml\"><securecookie host=\"^(?:www\\.)?perfectmoney\\.is$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Perfect Money\" f=\"Perfect_Money.xml\"><securecookie host=\"^(?:www\\.)?perfectmoney\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Perfect Sense Digital (partial)\" f=\"Perfect_Sense_Digital.xml\"><rule from=\"^http://cdn\\.psddev\\.com/\" to=\"https://d1xlwtusml8gh6.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Perform (partial)\" f=\"Perform.xml\"><rule from=\"^http://(autodiscover|cms|legacy|webmail)\\.performgroup\\.com/\" to=\"https://$1.performgroup.com/\"/></ruleset>", "<ruleset name=\"Performable.com\" default_off=\"failed ruleset test\" f=\"Performable.com.xml\"><rule from=\"^http://analytics\\.performable\\.com/\" to=\"https://analytics.performable.com/\"/></ruleset>", "<ruleset name=\"Performance Horizon Group\" platform=\"mixedcontent\" f=\"Performance-Horizon-Group.xml\"><securecookie host=\"^\\.prf\\.hn$\" name=\".*\"/><rule from=\"^http://(www\\.)?performancehorizon\\.com/\" to=\"https://$1performancehorizon.com/\"/><rule from=\"^http://(?:www\\.)?prf\\.hn/\" to=\"https://prf.hn/\"/></ruleset>", "<ruleset name=\"Performance.gov (partial)\" f=\"Performance.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://permits\\.performance\\.gov/\" to=\"https://www.permits.performance.gov/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Performance Alley Racing (partial)\" default_off=\"failed ruleset test\" f=\"Performance_Alley_Racing.xml\"><securecookie host=\"^(?:.*\\.)?performancealley\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Performance Wheel & Tire Warehouse\" default_off=\"failed ruleset test\" f=\"Performance_Wheel_and_Tire_Warehouse.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Performancing (partial)\" f=\"Performancing.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Periscope.io\" f=\"Periscope.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pearl Foundation (partial)\" platform=\"mixedcontent\" f=\"Perl-Foundation.xml\"><securecookie host=\"^donate\\.perlfoundation\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Perl.org (partial)\" f=\"Perl.org.xml\"><securecookie host=\"^rt\\.perl\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?perl\\.org/\" to=\"https://www.perl.org/\"/><rule from=\"^http://log\\.perl\\.org/favicon\\.ico\" to=\"https://www.blogger.com/favicon.ico\"/><rule from=\"^http://(pause|rt)\\.perl\\.org/\" to=\"https://$1.perl.org/\"/></ruleset>", "<ruleset name=\"Perle.com (partial)\" f=\"Perle.com.xml\"><exclusion pattern=\"^http://estore\\.perle\\.com/+(?!images/|scripts/|styles/|themes/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Perlentaucher.de\" f=\"Perlentaucher.de.xml\"><securecookie host=\"^\\.perlentaucher\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Perry Ellis.com (partial)\" f=\"Perry_Ellis.com.xml\"><exclusion pattern=\"^http://es-us\\.perryellis\\.com/+(?!_onelink_/|(?:account|orderhistory)(?:$|[?/])|favicon\\.ico|on/|pAckAgEs/)\"/><securecookie host=\"^www\\.perryellis\\.com$\" name=\".+\"/><rule from=\"^http://perryellis\\.com/\" to=\"https://www.perryellis.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PersecutionOfAhmadis.org\" f=\"PersecutionOfAhmadis.org.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Personal Data Ecosystem Consortium (partial)\" f=\"Personal_Data_Ecosystem_Consortium.xml\"><rule from=\"^http://(?:www\\.)?p(?:de\\.cc|ersonaldataecosystem\\.org)/(\\?custom-css=|favicon\\.ico|wp-content/)\" to=\"https://secure.bluehost.com/~pdecc/$1\"/></ruleset>", "<ruleset name=\"Personal Democracy Forum\" f=\"Personal_Democracy_Forum.xml\"><securecookie host=\"^\\.personaldemocracy\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Personalausweisportal.de\" f=\"Personalausweisportal.de.xml\"><securecookie host=\"^(www\\.)?personalausweisportal\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Personality Page\" default_off=\"failed ruleset test\" f=\"PersonalityPage.xml\"><securecookie host=\"^(?:.*\\.)?personalitypage\\.com$\" name=\".+\"/><rule from=\"^http://personalitypage\\.com/\" to=\"https://www.personalitypage.com/\"/><rule from=\"^http://([^/:@]+)?\\.personalitypage\\.com/\" to=\"https://$1.personalitypage.com/\"/></ruleset>", "<ruleset name=\"Personforce clients\" default_off=\"mismatched\" f=\"Personforce-clients.xml\"><exclusion pattern=\"^http://(?:www\\.)?crunchboard\\.com/(?:build|images3?|include)/\"/><securecookie host=\"^www\\.crunchboard\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?crunchboard\\.com/\" to=\"https://www.crunchboard.com/\"/></ruleset>", "<ruleset name=\"Personforce (partial)\" platform=\"mixedcontent\" f=\"Personforce.xml\"><rule from=\"^http://(?:www\\.)?personforce\\.com/images/pencil_(add|go)\\.png$\" to=\"https://secure.personforce.com/images/pencil_$1.png\"/><rule from=\"^http://secure\\.personforce\\.com/\" to=\"https://secure.personforce.com/\"/></ruleset>", "<ruleset name=\"Perspectives Project\" f=\"Perspectives-Project.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pet Nanny\" f=\"Pet_Nanny.xml\"><securecookie host=\"^(?:www\\.)?pet-nanny\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pete Keen.net\" f=\"Pete_Keen.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Peter Broderick\" default_off=\"mismatched\" f=\"Peter-Broderick.xml\"><rule from=\"^http://(?:www\\.)?peterbroderick\\.com/\" to=\"https://peterbroderick.com/~peterbro/\"/></ruleset>", "<ruleset name=\"Peter Caprioli\" f=\"Peter-Caprioli.xml\"><securecookie host=\"^(?:www\\.)?caprioli\\.se$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Peter Aba.com\" default_off=\"failed ruleset test\" f=\"Peter_Aba.com.xml\"><rule from=\"^http://www\\.peteraba\\.com/\" to=\"https://peteraba.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Peter Molnar.eu\" f=\"Peter_Molnar.eu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Peter Odding.com\" f=\"Peter_Odding.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Peterborough.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"Peterborough.gov.uk.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://consult\\.peterborough\\.gov\\.uk/+(?:\\?.*)?$\" to=\"https://peterborough.objective.gov.uk/portal\"/><rule from=\"^http://consult\\.peterborough\\.gov\\.uk/\" to=\"https://peterborough.objective.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PetFinder.com (partial)\" f=\"Petfinder.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Petri.com\" f=\"Petri.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Petridish (mismatches)\" default_off=\"mismatched\" f=\"Petridish-mismatches.xml\"><rule from=\"^http://(?:www\\.)?petridish\\.org/\" to=\"https://www.petridish.org/\"/></ruleset>", "<ruleset name=\"Petridish (partial)\" f=\"Petridish.xml\"><rule from=\"^http://media\\.petridish\\.org/\" to=\"https://s3.amazonaws.com/media.petridish.org/\"/></ruleset>", "<ruleset name=\"Petrogen.com\" default_off=\"plaintext reply\" f=\"Petrogen.com.xml\"><securecookie host=\"^www\\.petrogen\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pets at Home\" platform=\"mixedcontent\" f=\"PetsatHome.com.xml\"><rule from=\"^http://(?:www\\.)?petsathome\\.com/\" to=\"https://www.petsathome.com/\"/></ruleset>", "<ruleset name=\"Petstore.com\" default_off=\"failed ruleset test\" f=\"Petstore.com.xml\"><securecookie host=\"^\\.petstore\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?petstore\\.com/\" to=\"https://www.petstore.com/\"/></ruleset>", "<ruleset name=\"Petteri Räty (mismatches)\" default_off=\"mismatched\" f=\"Petteri-Raty-mismatches.xml\"><rule from=\"^http://gentoo\\.petteriraty\\.eu/\" to=\"https://gentoo.petteriraty.eu/\"/></ruleset>", "<ruleset name=\"Petteri Räty (partial)\" f=\"Petteri-Raty.xml\"><rule from=\"^http://(?:(mail\\.)|www\\.)?petteriraty\\.eu/\" to=\"https://$1petteriraty.eu/\"/></ruleset>", "<ruleset name=\"PewDiePie.net\" f=\"PewDiePie.net.xml\"><securecookie host=\"^(?:w*\\.)?pewdiepie\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Peytz.dk\" f=\"Peytz.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pfSense.org (partial)\" default_off=\"failed ruleset test\" f=\"PfSense.org.xml\"><securecookie host=\".+\\.pfsense\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pfefferkoerner.de\" default_off=\"failed ruleset test\" f=\"Pfefferkoerner.de.xml\"><securecookie host=\"^(www\\.)?pfefferkoerner\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pfennigparade\" f=\"Pfennigparade.xml\"><rule from=\"^http://pfennigparade\\.de/\" to=\"https://www.pfennigparade.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pfizer.com (partial)\" f=\"Pfizer.xml\"><exclusion pattern=\"^http://www\\.pfizer\\.com/+(?!misc/|sites/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pfizer helpful answers.com\" default_off=\"mismatched\" f=\"Pfizer_helpful_answers.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PfizerPro.com\" f=\"Pfizer_pro.com.xml\"><securecookie host=\"^(?:.*\\.)?pfizerpro\\.com$\" name=\".*\"/><rule from=\"^http://pfizerpro\\.com/\" to=\"https://www.pfizerpro.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pform.net\" f=\"Pform.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Phabricator.com (partial)\" f=\"Phabricator.com.xml\"><securecookie host=\"^\\.secure\\.phabricator\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PhantomPeer.com\" f=\"PhantomPeer.com.xml\"><securecookie host=\"^(?:www\\.)?phantompeer\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Phaser.io\" f=\"Phaser.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pheedcontent.com\" f=\"Pheedcontent.com.xml\"><rule from=\"^http://www\\.pheedcontent\\.com/\" to=\"https://www.pheedo.com/\"/></ruleset>", "<ruleset name=\"Pheedo.com (partial)\" f=\"Pheedo.com.xml\"><securecookie host=\"^\\.pheedo\\.com$\" name=\"^phdo$\"/><rule from=\"^http://(www\\.)?pheedo\\.com/\" to=\"https://$1pheedo.com/\"/><rule from=\"^http://(?:ad|image)s\\.pheedo\\.com/\" to=\"https://www.pheedo.com/\"/><rule from=\"^http://(?:cforigin\\.)?feeds\\.pheedo\\.com/\" to=\"https://d2m3yj20rqnr65.cloudfront.net/\"/></ruleset>", "<ruleset name=\"PhiHOLD.be\" default_off=\"expired\" f=\"PhiHOLD.be.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Phil Zimmermann.com\" f=\"Phil_Zimmermann.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Philadelphia Bar Association\" f=\"Philadelphia_Bar_Association.xml\"><securecookie host=\"^(?:www\\.)?philadelphiabar\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"my Philanthropedia.org (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Philanthropedia.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Phillips Academy\" default_off=\"failed ruleset test\" f=\"Phillips_Academy_Andover.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://andover\\.edu/\" to=\"https://www.andover.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Philosophers Guild.com (partial)\" f=\"Philosophers_Guild.com.xml\"><exclusion pattern=\"^http://www\\.philosophersguild\\.com/+(?!blank\\.gif|favicon\\.ico|image\\.php|images/|login\\.php|register\\.php|skin/|var/)\"/><rule from=\"^http://(?:www\\.)?philosophersguild\\.com/\" to=\"https://www.philosophersguild.com/\"/></ruleset>", "<ruleset name=\"PDCnet.org (expired)\" default_off=\"expired\" f=\"Philosophy-Documentation-Center-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PDCnet.org (partial)\" default_off=\"failed ruleset test\" f=\"Philosophy-Documentation-Center.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Philosophy Now.org\" f=\"Philosophy_Now.org.xml\"><securecookie host=\"^philosophynow\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Phils Hobby Shop.com\" f=\"Phils_Hobby_Shop.xml\"><rule from=\"^http://(?:www\\.)?philshobbyshop\\.com/\" to=\"https://www.philshobbyshop.com/\"/></ruleset>", "<ruleset name=\"PhishTank\" f=\"PhishTank.xml\"><rule from=\"^http://(?:www\\.)?phishtank\\.com/\" to=\"https://www.phishtank.com/\"/><rule from=\"^http://(?:www\\.)?data\\.phishtank\\.com/\" to=\"https://data.phishtank.com/\"/></ruleset>", "<ruleset name=\"phishd.com\" f=\"Phishd.com.xml\"><securecookie host=\"^www\\.phishd\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"phncdn.com\" f=\"Phncdn.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Phoenix Media Group (partial)\" f=\"Phoenix-Media-Group.xml\"><securecookie host=\"^www\\.dealchicken\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Phoenix.com\" f=\"Phoenix.com.xml\"><rule from=\"^http://(?:www\\.)?phoenix\\.com/\" to=\"https://www.phoenix.com/\"/></ruleset>", "<ruleset name=\"Phoenix.edu (partial)\" f=\"Phoenix.edu.xml\"><securecookie host=\"^(?:assets|ecampus)\\.phoenix\\.edu$\" name=\".+\"/><rule from=\"^http://cdn\\.assets-phoenix\\.net/\" to=\"https://cdn.assets-phoenix.net/\"/><rule from=\"^http://((?:alumni|assets|content|ecampus|portal|sso|www)\\.)?phoenix\\.edu/\" to=\"https://$1phoenix.edu/\"/><rule from=\"^http://metrics\\.phoenix\\.edu/\" to=\"https://phoenix-edu.d1.sc.omtrdc.net/\"/><rule from=\"^http://assetscdn\\.students\\.uophx\\.edu/\" to=\"https://assetscdn.students.uophx.edu/\"/></ruleset>", "<ruleset name=\"phone-analytics.com\" default_off=\"failed ruleset test\" f=\"Phone-analytics.com.xml\"><rule from=\"^http://(?:ssl\\.|www\\.)?phone-analytics\\.com/\" to=\"https://ssl.phone-analytics.com/\"/><rule from=\"^http://cdn\\.phone-analytics\\.com/\" to=\"https://cdn.phone-analytics.com/\"/></ruleset>", "<ruleset name=\"phone.coop\" f=\"Phone.coop.xml\"><securecookie host=\"^my\\.phone\\.coop$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?phone\\.coop/+([^?]*).*\" to=\"https://www.thephone.coop/$1\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Phone House.com\" f=\"Phone_House.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Phoronix\" f=\"Phoronix-Media.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PhotoBTC.com\" f=\"PhotoBTC.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?photobtc\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PhotoBlab\" default_off=\"failed ruleset test\" f=\"PhotoBlab.xml\"><rule from=\"^http://(?:www\\.)?photoblab\\.com/\" to=\"https://photoblab.herokuapp.com/\"/></ruleset>", "<ruleset name=\"PhotoMath.net\" f=\"PhotoMath.net.xml\"><securecookie host=\"^\\.photomath\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PhotoPay.net\" f=\"PhotoPay.net.xml\"><securecookie host=\"^\\.photopay\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PhotoShelter (partial)\" f=\"PhotoShelter.xml\"><exclusion pattern=\"^http://blog\\.\"/><exclusion pattern=\"^http://(?:www\\.)?photoshelter\\.com/(?:about/|mkt/research/)?index(?:$|\\?)\"/><rule from=\"^http://c(?:dn|ss)\\.c\\.photoshelter\\.com/\" to=\"https://c.photoshelter.com/\"/><rule from=\"^http://(\\w+\\.)?photoshelter\\.com/\" to=\"https://$1photoshelter.com/\"/></ruleset>", "<ruleset name=\"PhotoSugar.com\" f=\"PhotoSugar.com.xml\"><securecookie host=\"^(?:www)?\\.photosugar\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?photosugar\\.com/\" to=\"https://$1photosugar.com/\"/><rule from=\"^http://assets\\d?\\.photosugar\\.com/\" to=\"https://d1bcrgpvrd4eqj.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Photobucket.com (partial)\" f=\"Photobucket.xml\"><exclusion pattern=\"^http://s\\d+\\.beta\\.photobucket\\.com/(?!action/|component/)\"/><exclusion pattern=\"^http://s\\d+\\.photobucket\\.com/+(?!albums/w\\d+/\\w+/pbprofilepics/)\"/><securecookie host=\"^\\.photobucket\\.com$\" name=\"^(External|Hint|puid)$\"/><rule from=\"^http://s\\d+\\.beta\\.photobucket\\.com/\" to=\"https://secure-beta.photobucket.com/\"/><rule from=\"^http://pic\\.photobucket\\.com/\" to=\"https://pbsrc.com/\"/><rule from=\"^http://s\\d+\\.photobucket\\.com/\" to=\"https://secure.photobucket.com/\"/><rule from=\"^http://(b|i\\d+|secure|secure-beta)\\.photobucket\\.com/\" to=\"https://$1.photobucket.com/\"/></ruleset>", "<ruleset name=\"Photographer.io (partial)\" default_off=\"failed ruleset test\" f=\"Photographer.io.xml\"><securecookie host=\"^(?:www)?\\.photographer\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PhotographyTalk.com\" f=\"PhotographyTalk.com.xml\"><securecookie host=\"^(?:www)?\\.photographytalk\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Photonconsulting.com\" f=\"PhotonConsulting.xml\"><rule from=\"^http://(?:www\\.)?photonconsulting\\.com/\" to=\"https://www.photonconsulting.com/\"/></ruleset>", "<ruleset name=\"photoprintit.com\" f=\"Photoprintit.com.xml\"><securecookie host=\"^\\.photoprintit\\.com$\" name=\"^s_\\w+$\"/><securecookie host=\"^as\\.photoprintit\\.com$\" name=\".+\"/><rule from=\"^http://(a|c)s\\.photoprintit\\.com/\" to=\"https://$1s.photoprintit.com/\"/></ruleset>", "<ruleset name=\"Photosynth.net\" default_off=\"failed ruleset test\" f=\"Photosynth.xml\"><securecookie host=\"^(?:www\\.)?photosynth\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"phpBB (partial)\" f=\"PhpBB.xml\"><exclusion pattern=\"^http://tracker\\.phpbb\\.com/plugins/servlet/gadgets/dashboard-diagnostics\"/><securecookie host=\"^(?:bamboo|wiki)?\\.phpbb\\.com$\" name=\".+\"/><rule from=\"^http://((?:area51|bamboo|blog|camo|download|tracker|wiki|www)\\.)?phpbb\\.com/\" to=\"https://$1phpbb.com/\"/></ruleset>", "<ruleset name=\"php[architect] (partial)\" f=\"Phparchitect.xml\"><exclusion pattern=\"^http://(?:codeworks\\.|www\\.)?phparch\\.com/(?!favicon\\.ico|wp-content/)\"/><securecookie host=\"^tek13\\.phparch\\.com$\" name=\".+\"/><rule from=\"^http://((?:codeworks|summits|tek13|www)\\.)?phparch\\.com/\" to=\"https://$1phparch.com/\"/><rule from=\"^http://tek\\.phparch\\.com/wp-content/\" to=\"https://tek13.phparch.com/wp-content/\"/></ruleset>", "<ruleset name=\"Phpclasses.org\" platform=\"mixedcontent\" f=\"Phpclasses.org.xml\"><rule from=\"^http://(www\\.)?phpclasses\\.net/\" to=\"https://$1phpclasses.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PhpDocumentor\" default_off=\"failed ruleset test\" f=\"Phpdoc.org.xml\"><securecookie host=\"^(www\\.|demo\\.|manual\\.|pear\\.|qa\\.)?phpdoc\\.org\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Phusion Passenger.com\" f=\"Phusion_Passenger.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Phygee.com\" f=\"Phygee.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Physics Forums.com\" f=\"Physics_Forums.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Piatnik Deutschland\" f=\"Piatnik.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Piatt County Journal-Republican (partial)\" f=\"Piatt_County_Journal-Republican.xml\"><rule from=\"^http://(?:www\\.)?journal-republican\\.com/(misc/|sites/|user(?:$|\\?|/))\" to=\"https://www.journal-republican.com/$1\"/></ruleset>", "<ruleset name=\"Piazza.com\" f=\"Piazza.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^_gat?$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Picatcha (partial)\" default_off=\"failed ruleset test\" f=\"Picatcha.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pickaweb (partial)\" f=\"Pickaweb.xml\"><rule from=\"^http://(www\\.)?pickaweb\\.co\\.uk/(.+\\.htm|billing/(?!index).+\\.php|css/|favicon\\.ico|images/|js/)\" to=\"https://$1pickaweb.co.uk/$2\"/><rule from=\"^http://support\\.pickaweb\\.co\\.uk/(assets/)\" to=\"https://app.sirportly.com/$2\"/></ruleset>", "<ruleset name=\"picload.org\" f=\"Picload.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PicnicHealth.com\" f=\"PicnicHealth.com.xml\"><securecookie host=\"^\\.?picnichealth\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PicoMoney\" default_off=\"failed ruleset test\" f=\"PicoMoney.xml\"><securecookie host=\"^\\.?picomoney\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PicoStocks.com (partial)\" f=\"PicoStocks.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Picoville.com\" f=\"Picoville.com.xml\"><securecookie host=\"^\\.?picoville\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Picsity.com (partial)\" default_off=\"failed ruleset test\" f=\"Picsity.com.xml\"><securecookie host=\"^picsity\\.com$\" name=\".+\"/><securecookie host=\"^\\.picsity\\.com$\" name=\"^_ga$\"/><rule from=\"^http://(?:ps-assets\\.|(www\\.))?picsity\\.com/\" to=\"https://$1picsity.com/\"/></ruleset>", "<ruleset name=\"Pictomania\" default_off=\"expired, mismatched, self-signed\" platform=\"mixedcontent\" f=\"Pictomania.xml\"><exclusion pattern=\"^http://(?:www\\.)?pic(?:shareunit|tomania)\\.com/env/.+\\.(?:gif|jpe?g|png)(?:$|\\?)\"/><securecookie host=\"^pic(?:shareunit|tomania)\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?pic(shareunit|tomania)\\.com/\" to=\"https://pic$1.com/\"/></ruleset>", "<ruleset name=\"Pictos.cc (partial)\" f=\"Pictos.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pictshare.net\" f=\"Pictshare.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pidg.in\" default_off=\"failed ruleset test\" f=\"Pidg.in.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pidgin.im\" default_off=\"failed ruleset test\" f=\"Pidgin.xml\"><securecookie host=\"^developer\\.pidgin\\.im$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PikPok.com\" f=\"PikPok.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pilgrimage Software.com\" default_off=\"missing certificate chain\" f=\"Pilgrimage_Software.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Piliapp.com\" f=\"Piliapp.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pillow\" f=\"Pillow.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pimg.net\" f=\"Pimg.net.xml\"><rule from=\"^http://([\\w-]+)\\.pimg\\.net/\" to=\"https://$1.pimg.net/\"/></ruleset>", "<ruleset name=\"pimg.tw\" f=\"Pimg.tw.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pinboard.in\" default_off=\"failed ruleset test\" f=\"Pinboard.xml\"><securecookie host=\"^(?:www\\.)?pinboard\\.in$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pine64.com\" default_off=\"failed ruleset test\" f=\"Pine64.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pinescharter.net (partial)\" f=\"Pinescharter.net.xml\"><rule from=\"^http://(www\\.)?pinescharter\\.net/(DesktopModules/|favicon\\.ico|images/|js/|[pP]ortals/|Resources/|SiteLogin(?:$|\\?|/)|(?:Telerik\\.Web\\.UI\\.)?WebResource\\.axd)\" to=\"https://$1pinescharter.net/$2\"/></ruleset>", "<ruleset name=\"Ping-Fast.com\" default_off=\"mismatched\" f=\"Ping-Fast.com.xml\"><securecookie host=\"^www\\.ping-fast\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ping-fast\\.com/\" to=\"https://www.ping-fast.com/\"/></ruleset>", "<ruleset name=\"ping.gg\" f=\"Ping.gg.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PingOne.com\" f=\"PingOne.xml\"><securecookie host=\"^(?:admin|www)\\.pingone\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ping Identity\" f=\"Ping_Identity.xml\"><securecookie host=\"^(?:connect|www)\\.pingidentity\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?pingidentity\\.com/\" to=\"https://www.pingidentity.com/\"/><rule from=\"^http://connect\\.pingidentity\\.com/\" to=\"https://connect.pingidentity.com/\"/></ruleset>", "<ruleset name=\"Pingability.com\" f=\"Pingability.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://www\\.pingability\\.com/\" to=\"https://pingability.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pingdom.net\" f=\"Pingdom.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pingdom.com (partial)\" default_off=\"failed ruleset test\" f=\"Pingdom.xml\"><securecookie host=\"^(?:support)?\\.pingdom\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pingless (partial)\" f=\"Pingless.xml\"><rule from=\"^http://(www\\.)?pingless\\.co\\.il/(agent_login|css/|default\\.php\\?(?:agent_login|make_money|order|support)|epanel2|favicon\\.ico|framestats|images/|make_money|\\?order|support)\" to=\"https://$1pingless.co.uk/$2\"/></ruleset>", "<ruleset name=\"pingupod.de\" f=\"Pingupod.de.xml\"><rule from=\"^http://www\\.pingupod\\.de/\" to=\"https://pingupod.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pingvinbolt.hu\" f=\"Pingvinbolt.hu.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pingxx.com (partial)\" f=\"Pingxx.com.xml\"><securecookie host=\"^(?:^|\\.)pingxx\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pinimg.com\" f=\"Pinimg.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PinkNews.co.uk\" default_off=\"failed ruleset test\" f=\"PinkNews.co.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pink Paislee.com\" default_off=\"mismatched\" f=\"Pink_Paislee.xml\"><securecookie host=\"^(?:\\.|www\\.)?pinkpaislee\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pinme.ru (partial)\" f=\"Pinme.ru.xml\"><rule from=\"^http://cdn-pus-\\d\\.pinme\\.ru/\" to=\"https://d2jjq1r8l0rsro.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Pinocc.io (partial)\" default_off=\"failed ruleset test\" f=\"Pinocc.io.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.pinocc\\.io/\" to=\"https://pinocc.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pinsent Masons (partial)\" default_off=\"failed ruleset test\" f=\"Pinsent_Masons.xml\"><rule from=\"^http://extranets\\.pinsentmasons\\.com/\" to=\"https://extranets.pinsentmasons.com/\"/></ruleset>", "<ruleset name=\"Pinta-Outlet.fi\" default_off=\"failed ruleset test\" f=\"Pinta-Outlet.fi.xml\"><rule from=\"^http://(?:www\\.)?pinta-outlet\\.fi/\" to=\"https://pinta-outlet.fi/\"/></ruleset>", "<ruleset name=\"Pinterest.com (partial)\" f=\"Pinterest.xml\"><securecookie host=\"^\\.pinterest\\.com$\" name=\"^(?:__utm\\w|_zendesk_session|_zendesk_shared_session)$\"/><securecookie host=\"^(?:\\w\\w\\.)?help\\.pinterest\\.com$\" name=\".+\"/><rule from=\"^http://media-cache-ec[01]\\.pinterest\\.com/\" to=\"https://s-media-cache-ec0.pinimg.com/\"/><rule from=\"^http://passets-(?:ak|lt)\\.pinterest\\.com/\" to=\"https://s-passets-cache-ak0.pinimg.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pipedot.org\" default_off=\"failed ruleset test\" f=\"Pipedot.org.xml\"><securecookie host=\"^\\.?pipedot\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pipl (partial)\" f=\"Pipl.xml\"><securecookie host=\"^\\.pipl\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pipping.org\" default_off=\"mismatch, self-signed\" f=\"Pipping.org.xml\"><rule from=\"^http://(?:www\\.)?pipping\\.org/\" to=\"https://pipping.org/\"/></ruleset>", "<ruleset name=\"Piquadro\" default_off=\"breaks images\" f=\"Piquadro.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pirate-party.ru\" f=\"Pirate-party.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PirateHD.com\" default_off=\"failed ruleset test\" f=\"PirateHD.com.xml\"><securecookie host=\"^\\.?piratehd\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PirateLeaks.cz (partial)\" f=\"PirateLeaks.xml\"><exclusion pattern=\"^http://web\\.pirateleaks\\.cz/+(?!$|\\?)\"/><rule from=\"^http://web\\.pirateleaks\\.cz/.*\" to=\"https://pirati.cz/\"/></ruleset>", "<ruleset name=\"PiratePad.ca\" default_off=\"expired\" f=\"PiratePad.ca.xml\"><securecookie host=\"^(?:www\\.)?piratepad\\.ca$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pirate Party (mismatches)\" default_off=\"mismatch, self-signed\" f=\"PirateParty-mismatches.xml\"><rule from=\"^http://(?:www\\.)?piraten-mfr\\.de/\" to=\"https://piraten-mfr.de/\"/></ruleset>", "<ruleset name=\"Pirate Party\" f=\"PirateParty.xml\"><rule from=\"^http://(?:www\\.)?remixdepolitiek\\.nl/\" to=\"https://www.piratenpartij.nl/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PirateTimes.net\" default_off=\"mismatched\" f=\"PirateTimes.xml\"><securecookie host=\"^(?:www\\.)?piratetimes\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pirate IRC.net (partial)\" f=\"Pirate_IRC.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PirateLinux.org\" default_off=\"failed ruleset test\" f=\"Pirate_Linux.org.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pirate Party.ca\" f=\"Pirate_Party.ca.xml\"><securecookie host=\"^www\\.pirateparty\\.ca$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pirate Party.org.au (partial)\" f=\"Pirate_Party.org.au.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pirate Party.org.uk\" default_off=\"failed ruleset test\" f=\"Pirate_Party.org.uk.xml\"><securecookie host=\"^(?:.*\\.)?pirateparty\\.org\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Piratemedia.net\" f=\"Piratemedia.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Piraten-Oberpfalz.de\" default_off=\"mismatched\" f=\"Piraten-Oberpfalz.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Piraten-Schwaben.de\" default_off=\"mismatched\" f=\"Piraten-Schwaben.de.xml\"><securecookie host=\"^(?:.*\\.)?piraten-schwaben\\.de$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Piraten-Ufr.de\" default_off=\"failed ruleset test\" f=\"Piraten-Ufr.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Piratenlogin.de\" default_off=\"expired\" f=\"Piratenlogin.de.xml\"><securecookie host=\"^(?:www\\.)?piratenlogin\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Piratenpartei-bayern.de (partial)\" f=\"Piratenpartei-bayern.de.xml\"><securecookie host=\"^(?:.*\\.)?piratenpartei-bayern\\.de$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Piratenpartei.at\" default_off=\"failed ruleset test\" f=\"Piratenpartei.at.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Piratenpartei.de (partial)\" default_off=\"failed ruleset test\" f=\"Piratenpartei.de.xml\"><securecookie host=\"^(?:.*\\.)?piratenpartei\\.de$\" name=\".*\"/><rule from=\"^http://oberbayern\\.piratenpartei\\.de/\" to=\"https://oberbayern.piratenpartei-bayern.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pirati.cz\" default_off=\"failed ruleset test\" f=\"Pirati.cz.xml\"><exclusion pattern=\"^http://(?:(?![^.]+\\.(?:irc|piwik|redmine|shop|www)\\.pirati\\.cz/)(?:[^./]+\\.){2,}|(?:[^./]+\\.){3,})pirati\\.cz/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Piratpartiet.se (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Piratpartiet.se.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Piratpartiet\" default_off=\"failed ruleset test\" f=\"Piratpartiet.xml\"><securecookie host=\"^(arbeidskontoret|wiki|www)\\.piratpartiet\\.no$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Piriform (partial)\" f=\"Piriform.xml\"><securecookie host=\"^\\.secure\\.piriform\\.com$\" name=\".+\"/><rule from=\"^http://s1\\.pir\\.fm/\" to=\"https://d3sg17i8imdw59.cloudfront.net/\"/><rule from=\"^http://(?:www\\.)?piriform\\.com/\" to=\"https://www.piriform.com/\"/><rule from=\"^http://download\\.piriform\\.com/\" to=\"https://d1k4dgg08m176h.cloudfront.net/\"/><rule from=\"^http://secure\\.piriform\\.com/\" to=\"https://secure.piriform.com/\"/><rule from=\"^http://static\\.piriform\\.com/\" to=\"https://d3sg17i8imdw59.cloudfront.net/\"/><rule from=\"^http://support\\.piriform\\.com/(?=generated/|images/|system/)\" to=\"https://piriform.zendesk.com/\"/></ruleset>", "<ruleset name=\"Piscatus.se\" default_off=\"failed ruleset test\" f=\"Piscatus.se.xml\"><rule from=\"^http://www\\.piscatus\\.se/\" to=\"https://www.piscatus.se/\"/><rule from=\"^http://piscatus\\.se/\" to=\"https://piscatus.se/\"/></ruleset>", "<ruleset name=\"Piston Cloud Computing\" default_off=\"failed ruleset test\" f=\"Piston_Cloud_Computing.xml\"><rule from=\"^http://(?:www\\.)?pistoncloud\\.com/\" to=\"https://www.pistoncloud.com/\"/></ruleset>", "<ruleset name=\"Post-Gazette.com (partial)\" f=\"Pittsburgh-Post-Gazette.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://oascentral\\.post-gazette\\.com/\" to=\"https://oasc17.247realmedia.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pittsburgh Zoo\" default_off=\"failed ruleset test\" f=\"PittsburghZoo.org.xml\"><securecookie host=\"^(www\\.)?pittsburgzoo\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pittsburgh Massage and Wellness.com\" f=\"Pittsburgh_Massage_and_Wellness.com.xml\"><securecookie host=\"^\\.pittsburghmassageandwellness\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pivotal.io (partial)\" f=\"Pivotal.xml\"><exclusion pattern=\"^http://blog\\.pivotal\\.io/+(?!feed$|external/|wp-content/|wp-includes/)\"/><securecookie host=\"^(?:console|login)\\.run\\.pivotal\\.io$\" name=\".+\"/><rule from=\"^http://docs\\.pivotal\\.io/\" to=\"https://cf-p1-docs-prod.cfapps.io/\"/><rule from=\"^http://docs\\.run\\.pivotal\\.io/\" to=\"https://docs-runpivotal-production.cfapps.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pivotal Labs (partial)\" f=\"Pivotal_Labs.xml\"><rule from=\"^http://(www\\.)?pivotallabs\\.com/(image|stylesheet)s/\" to=\"https://$1pivotallabs.com/$2s/\"/><rule from=\"^http://assets\\.pivotallabs\\.com/\" to=\"https://s3.amazonaws.com/assets.pivotallabs.com/\"/></ruleset>", "<ruleset name=\"Pivotal Tracker.com (partial)\" f=\"Pivotaltracker.xml\"><exclusion pattern=\"^http://www\\.pivotaltracker\\.com/+(?!assets/|favicon\\.ico|(?:help|signin)(?:$|[?/])|images/|n/|signup/)\"/><rule from=\"^http://status\\.pivotaltracker\\.com/\" to=\"https://pivotaltracker.statuspage.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"piwik.org (partial)\" f=\"Piwik.org.xml\"><securecookie host=\"^(?:.+\\.)?piwik\\.org$\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PixFuture (partial)\" f=\"PixFuture.xml\"><rule from=\"^http://ax-d\\.pixfuture\\.net/\" to=\"https://pixfuture-d3.openxenterprise.com/\"/><rule from=\"^http://portal\\.pixfuture\\.net/\" to=\"https://pixfuture-ui3.openxenterprise.com/\"/></ruleset>", "<ruleset name=\"pixcept.de\" f=\"Pixcept.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PixelX.de (partial)\" f=\"PixelX.de.xml\"><exclusion pattern=\"^http://(?:blog|piwik)\\.pixelx\\.de/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pixel Exit.com\" f=\"Pixel_Exit.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pixelated-Project.org (partial)\" f=\"Pixelated-Project.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pixelh8\" default_off=\"failed ruleset test\" f=\"Pixelh8.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pixeline.be\" f=\"Pixeline.be.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pixfs.net\" f=\"Pixfs.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pixiq (partial)\" f=\"Pixiq.xml\"><rule from=\"^http://woofie[1-4]\\.pixiq\\.com/\" to=\"https://d1xlgqsil28g2u.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Pixiv (partial)\" f=\"Pixiv.xml\"><exclusion pattern=\"^http://www\\.pixiv\\.net/(?!favicon\\.ico|login\\.php)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pixlr (partial)\" platform=\"mixedcontent\" f=\"Pixlr.xml\"><securecookie host=\"^(?:.*\\.)?pixlr\\.com$\" name=\".*\"/><rule from=\"^http://i\\.imm\\.io/\" to=\"https://s3.amazonaws.com/i.imm.io/\"/><rule from=\"^http://(?:cdn\\.|(www\\.))?pixlr\\.com/\" to=\"https://$1pixlr.com/\"/><rule from=\"^http://blog\\.pixlr\\.com/favicon\\.ico\" to=\"https://www.blogger.com/favicon.ico\"/><rule from=\"^http://support\\.pixlr\\.com/(assets/|favicon\\.png)\" to=\"https://getsatisfaction.com/$1\"/></ruleset>", "<ruleset name=\"pixnet.cc\" f=\"Pixnet.cc.xml\"><securecookie host=\"^\\.panel\\.pixnet\\.cc$\" name=\".+\"/><rule from=\"^http://panel\\.pixnet\\.cc/\" to=\"https://panel.pixnet.cc/\"/></ruleset>", "<ruleset name=\"Pixnet.net (partial)\" f=\"Pixnet.net.xml\"><exclusion pattern=\"^http://www\\.pixnet\\.net/(?!favicon\\.ico)\"/><rule from=\"^http://pixnet\\.net/.*\" to=\"https://www.pixnet.net/\"/><rule from=\"^http://(channel|seven-in-one-elections\\.events|www)\\.pixnet\\.net/\" to=\"https://$1.pixnet.net/\"/></ruleset>", "<ruleset name=\"Pixoto\" f=\"Pixoto.xml\"><securecookie host=\"^www\\.pixoto\\.com$\" name=\".+\"/><rule from=\"^http://pixoto\\.com/\" to=\"https://www.pixoto.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pizza.de\" f=\"Pizza.de.xml\"><securecookie host=\"^\\.pizza\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pizza.fr\" f=\"Pizza.fr.xml\"><securecookie host=\"^(?:w*\\.)?pizza\\.fr$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pizza Charts.com\" default_off=\"failed ruleset test\" f=\"Pizza_Charts.com.xml\"><securecookie host=\"^\\.?pizzacharts\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pizzahut UK\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Pizzahut.xml\"><rule from=\"^http://(?:www\\.)?pizzahut\\.co\\.uk/\" to=\"https://www.pizzahut.co.uk/\"/><rule from=\"^http://(delivery)\\.pizzahut\\.co\\.uk/\" to=\"https://$1.pizzahut.co.uk/\"/></ruleset>", "<ruleset name=\"Pjak.eu\" platform=\"mixedcontent\" f=\"Pjak.eu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pkgs.org\" f=\"Pkgs.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pkr.com\" default_off=\"failed ruleset test\" f=\"Pkr.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pl.vc\" f=\"Pl.vc.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PlaceIMG.com\" f=\"PlaceIMG.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Placehold.it\" f=\"Placehold.it.xml\"><securecookie host=\"^\\.placehold\\.it$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PlacesOnline.com (partial)\" f=\"PlacesOnline.com.xml\"><exclusion pattern=\"^http://www\\.placesonline\\.com/+(?!favicon\\.ico|images/)\"/><rule from=\"^http://placesonline\\.com/\" to=\"https://www.placesonline.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Planboard app.com\" f=\"Planboard_app.com.xml\"><securecookie host=\"^\\.planboardapp\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Planet-Source-Code.com\" f=\"Planet-Source-Code.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Planet-Work\" f=\"Planet-Work.xml\"><securecookie host=\"^webmail\\.planet-work\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?planet-work\\.(?:com|fr)/\" to=\"https://www.planet-work.com/\"/><rule from=\"^http://(clients|css|webmail|www3)\\.planet-work\\.com/\" to=\"https://$1.planet-work.com/\"/></ruleset>", "<ruleset name=\"Planet-energy.de\" f=\"Planet-energy.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Planet.com\" f=\"Planet.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Planet3dnow.\" f=\"Planet3dnow.de.xml\"><rule from=\"^http://www\\.planet3dnow\\.de/\" to=\"https://www.planet3dnow.de/\"/></ruleset>", "<ruleset name=\"PlanetLab (mismatches)\" default_off=\"mismatched\" f=\"PlanetLab-mismatches.org.xml\"><rule from=\"^http://monitor\\.planet-lab\\.org/\" to=\"https://monitor.planet-lab.org/\"/></ruleset>", "<ruleset name=\"PlanetLab (partial)\" default_off=\"failed ruleset test\" f=\"PlanetLab.org.xml\"><securecookie host=\"^.*\\.planet-lab\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PlanetRomeo\" f=\"PlanetRomeo.xml\"><rule from=\"^http://(?:www\\.)?(?:gay|planet)romeo\\.com/\" to=\"https://www.planetromeo.com/\"/></ruleset>", "<ruleset name=\"Planet Emu.net\" default_off=\"expired, mismatched, self-signed\" f=\"Planet_Emu.net.xml\"><securecookie host=\"^forums\\.planetemu\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?planetemu\\.net/\" to=\"https://www.planetemu.net/\"/><rule from=\"^http://forums\\.planetemu\\.net/\" to=\"https://forums.planetemu.net/\"/></ruleset>", "<ruleset name=\"Gnuheter.com\" f=\"Planet_Gnuheter.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Planet KDE.org\" f=\"Planet_KDE.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Planet Minecraft.com (mismatched)\" default_off=\"mismatched\" f=\"Planet_Minecraft.com-problematic.xml\"><rule from=\"^http://cdn2?\\.planetminecraft\\.com/\" to=\"https://834783812.r.cdn77.net/\"/></ruleset>", "<ruleset name=\"Planet Minecraft.com (partial)\" f=\"Planet_Minecraft.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"planetlan.com (partial)\" f=\"Planetlan.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Planned Parenthood.org\" f=\"Planned-Parenthood.xml\"><securecookie host=\"^\\.\" name=\"^(?:_gat?$|_gat_|optimizely)\"/><securecookie host=\"^(?!\\.plannedparenthood\\.org$).\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PlannedGiving.com\" f=\"PlannedGiving.com.xml\"><securecookie host=\"^\\.www\\.plannedgiving\\.com$\" name=\".+\"/><rule from=\"^http://plannedgiving\\.com/\" to=\"https://www.plannedgiving.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Plant-World-Seeds.com (partial)\" f=\"Plant-World-Seeds.com.xml\"><rule from=\"^http://(?:www\\.)?plant-world-seeds\\.com/(?=favicon\\.ico|images/|store/checkout(?:$|[?/])|stylesheets/)\" to=\"https://www.plant-world-seeds.com/\"/></ruleset>", "<ruleset name=\"PlantCommunity.de\" default_off=\"failed ruleset test\" f=\"PlantCommunity.de.xml\"><securecookie host=\"^(?:www\\.)?plantcommunity\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PlantSolution.de (false MCB)\" platform=\"mixedcontent\" default_off=\"plaintext reply\" f=\"PlantSolution.de-falsemixed.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PlantSolution.de (partial)\" f=\"PlantSolution.de.xml\"><rule from=\"^http://ecustomer\\.plantsolution\\.de/.*\" to=\"https://plantsolution.od1.vtiger.com/portal\"/></ruleset>", "<ruleset name=\"Plantronics\" f=\"Plantronics.xml\"><securecookie host=\"^(?:www)?\\.plantronics\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?plantronics\\.com/\" to=\"https://www.plantronics.com/\"/></ruleset>", "<ruleset name=\"Plastc.com\" f=\"Plastc.com.xml\"><securecookie host=\"^(?:www)?\\.plastc\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Plasti Dip Uruguay.com\" default_off=\"failed ruleset test\" f=\"Plasti_Dip_Uruguay.com.xml\"><securecookie host=\"^\\.plastidipuruguay\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Plastic-Bin.com\" f=\"Plastic-Bin.com.xml\"><securecookie host=\"^\\.plastic-bin\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?(secure\\.)?plastic-bin\\.com/\" to=\"https://$1$2plastic-bin.com/\"/></ruleset>", "<ruleset name=\"Platform.sh\" f=\"Platform.sh.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Platform Admin.com\" f=\"Platform_Admin.com.xml\"><rule from=\"^http://www\\.platformadmin\\.com/\" to=\"https://platformadmin.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Plati.ru\" default_off=\"self-signed\" f=\"Plati.ru.xml\"><securecookie host=\"^www\\.plati\\.ru$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?(?:exaccess|plati)\\.ru/\" to=\"https://www.plati.ru/\"/></ruleset>", "<ruleset name=\"Platina.ru\" f=\"Platina.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Platinum Performance.com\" f=\"Platinum_Performance.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://platinumperformance\\.com/\" to=\"https://www.platinumperformance.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Platinum Skin Care.com (partial)\" f=\"Platinum_Skin_Care.com.xml\"><rule from=\"^http://(www\\.)?platinumskincare\\.com/(?=(?:account|checkout|custom\\.css|login|register|send-password)\\.aspx|downlds/|favicon\\.ico|img/|mts/|scripts/|themes/)\" to=\"https://$1platinumskincare.com/\"/></ruleset>", "<ruleset name=\"Platt.com\" f=\"Platt.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Platt static.com\" f=\"Platt_static.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Plausible.coop\" f=\"Plausible.coop.xml\"><securecookie host=\"^(?:www\\.)?plausible\\.coop$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Play-asia.com\" f=\"Play-asia.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Play0ad.com\" f=\"Play0ad.com.xml\"><securecookie host=\"^(www\\.)?play0ad\\.com\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PlayOnLinux.com\" f=\"PlayOnLinux.com.xml\"><securecookie host=\"^(www\\.)?playonlinux\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PlayStation.net\" default_off=\"failed ruleset test\" f=\"PlayStation.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PlayStation.com (partial)\" default_off=\"failed ruleset test\" f=\"PlayStation.xml\"><exclusion pattern=\"^http://blog\\.us\\.playstation\\.com/(?!/*wp-content/)\"/><securecookie host=\"^\\.\" name=\"^s_v\"/><securecookie host=\"^(?!blog\\.us\\.)\\w\" name=\".\"/><rule from=\"^http://metrics\\.aem\\.playstation\\.com/\" to=\"https://smetrics.aem.playstation.com/\"/><rule from=\"^http://static\\.blog\\.playstation\\.com/\" to=\"https://blog.us.playstation.com/\"/><rule from=\"^http://(?:www\\.)?us\\.playstation\\.com/$\" to=\"https://www.playstation.com/en-us/home/\"/><rule from=\"^http://(?:www\\.)?us\\.playstation\\.com/support/?\" to=\"https://support.us.playstation.com/\"/><exclusion pattern=\"^http://(?:www\\.)?us\\.playstation\\.com/(?!$|support/?(\\?.*)?$)\"/><rule from=\"^http://cdn\\.us\\.playstation\\.com/\" to=\"https://secure.cdn.us.playstation.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PlayStation Network.com\" f=\"PlayStation_Network.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PlayVid.com (partial)\" f=\"PlayVid.com.xml\"><exclusion pattern=\"^http://www\\.playvid\\.com/+(?!css/|images/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Play Framework.com\" f=\"Play_Framework.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Playboy.com (partial)\" f=\"Playboy.com.xml\"><securecookie host=\"^\\.playboy\\.com$\" name=\"^__qca$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Playboy Store.com\" default_off=\"missing certificate chain\" f=\"Playboy_Store.com.xml\"><securecookie host=\"^\\.www\\.playboystore\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Player Attack (partial)\" f=\"Player-Attack.xml\"><rule from=\"^http://(www\\.)?playerattack\\.com/(wp-content/)\" to=\"https://$1playerattack.com/$2\"/></ruleset>", "<ruleset name=\"Player.FM (partial)\" f=\"Player.FM.xml\"><exclusion pattern=\"^http://blog\\.player\\.fm/+(?!favicon\\.ico|wp-content/|wp-includes/)\"/><securecookie host=\"^\\.player\\.fm$\" name=\".+\"/><rule from=\"^http://((?:a\\d|blog|suggest)\\.)?player\\.fm/\" to=\"https://$1player.fm/\"/></ruleset>", "<ruleset name=\"PlayerAuctions.com\" default_off=\"failed ruleset test\" f=\"PlayerAuctions.com.xml\"><securecookie host=\"^www\\.playerauctions\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PlayerIO.com\" f=\"PlayerIO.com.xml\"><securecookie host=\"^(?:www\\.)?playerio\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?player\\.io/([^?]*)(?:\\?.*)?\" to=\"https://playerio.com/$1\"/><rule from=\"^http://(www\\.)?playerio\\.com/\" to=\"https://$1playerio.com/\"/></ruleset>", "<ruleset name=\"Playfire (partial)\" default_off=\"failed ruleset test\" f=\"Playfire.com.xml\"><rule from=\"^http://(?:www\\.)?forums\\.playfire\\.com/\" to=\"https://www.forums.playfire.com/\"/><rule from=\"^http://(?:www\\.)?playfire\\.com/\" to=\"https://www.playfire.com/\"/></ruleset>", "<ruleset name=\"playgrub.com (partial)\" f=\"Playgrub.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Playkey.net\" f=\"Playkey.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Playlists.net\" default_off=\"expired, mismatched\" f=\"Playlists.net.xml\"><securecookie host=\"^(?:www\\.)?playlists\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?playlists\\.net/\" to=\"https://playlists.net/\"/></ruleset>", "<ruleset name=\"Playmates.com\" default_off=\"mismatched\" platform=\"mixedcontent\" f=\"Playmates.com.xml\"><rule from=\"^http://playmates\\.com/\" to=\"https://www.playmates.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Plays.TV\" f=\"Plays.tv.xml\"><securecookie host=\"^\\.\" name=\"^(?:__qca|cohorttrack)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Playwire.com (partial)\" default_off=\"failed ruleset test\" f=\"Playwire.xml\"><rule from=\"^http://support\\.playwire\\.com/\" to=\"https://www.playwiresupport.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Please Ignore.com\" f=\"Please_Ignore.com.xml\"><securecookie host=\"^\\w*\\.pleaseignore\\.com$\" name=\".+\"/><rule from=\"^http://((?:auth|wiki|www|zkb)\\.)?pleaseignore\\.com/\" to=\"https://$1pleaseignore.com/\"/></ruleset>", "<ruleset name=\"Pleasuredome\" default_off=\"self-signed\" f=\"Pleasuredome.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://pleasuredome\\.org\\.uk/$\" to=\"https://www.pleasuredome.org.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pledgie.com (partial)\" f=\"Pledgie.xml\"><rule from=\"^http://(?:www\\.)?pledgie\\.com/\" to=\"https://pledgie.com/\"/><securecookie host=\"^pledgie\\.com$\" name=\".*\"/></ruleset>", "<ruleset name=\"Plenti.com\" f=\"Plenti.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PlentyOfFish (partial)\" default_off=\"needs testing\" f=\"PlentyOfFish.xml\"><exclusion pattern=\"^http://(?:pics\\d?|www)\\.pof\\.com/(?:$|.*\\.aspx(?:$|\\?)|thumbnails/)\"/><rule from=\"^http://(?:pics\\d?\\.|www\\.)?pof\\.com/\" to=\"https://www.pof.com/\"/><rule from=\"^http://secure\\.pof\\.com/\" to=\"https://secure.pof.com/\"/></ruleset>", "<ruleset name=\"Plex.tv\" default_off=\"failed ruleset test\" f=\"Plex.tv.xml\"><securecookie host=\"^\\.plex\\.tv$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Plexapp.com (partial)\" f=\"Plexapp.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pliktverket.se\" default_off=\"failed ruleset test\" f=\"Pliktverket.se.xml\"><rule from=\"^http://www\\.pliktverket\\.se/\" to=\"https://www.pliktverket.se/\"/><rule from=\"^http://pliktverket\\.se/\" to=\"https://pliktverket.se/\"/></ruleset>", "<ruleset name=\"Plimus.com\" f=\"Plimus.com.xml\"><securecookie host=\"^(?:www)?\\.plimus\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?plimus\\.com/\" to=\"https://www.plimus.com/\"/></ruleset>", "<ruleset name=\"plista (partial)\" f=\"Plista.xml\"><rule from=\"^http://(?:www\\.)?plista\\.com/((?:\\w\\w/)?a(?:ccount/(?:login|forgot_pw)|dvertiser/registrations)(?:$|\\?)|ccss/|img/)\" to=\"https://www.plista.com/$1\"/><rule from=\"^http://static\\.plista\\.com/\" to=\"https://static.plista.com/\"/></ruleset>", "<ruleset name=\"Plone.org (partial)\" f=\"Plone.org.xml\"><securecookie host=\"^(?:dev\\.|\\.)?plone\\.org$\" name=\".+\"/><rule from=\"^http://((?:dev|staging|svn|www)\\.)?plone\\.org/\" to=\"https://$1plone.org/\"/></ruleset>", "<ruleset name=\"Plot.ly\" f=\"Plot.ly.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ploum.net\" f=\"Ploum.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"plug.dj (partial)\" default_off=\"failed ruleset test\" f=\"Plug.dj.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PlugRush.com (problematic)\" default_off=\"mismatched\" f=\"PlugRush.com-problematic.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PlugRush.com (partial)\" f=\"PlugRush.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Plug Unplug.net\" f=\"Plug_Unplug.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Plumbr.eu\" f=\"Plumbr.eu.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"plurk (partial)\" f=\"Plurk.xml\"><securecookie host=\"^\\.plurk\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Plus.net\" f=\"Plus.xml\"><securecookie host=\"^(?:.+\\.)?plus\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?plus\\.net/\" to=\"https://www.plus.net/\"/><rule from=\"^http://(portal|webmail|community|webstats)\\.plus\\.net/\" to=\"https://$1.plus.net/\"/></ruleset>", "<ruleset name=\"Plusgirot.se\" default_off=\"failed ruleset test\" f=\"Plusgirot.se.xml\"><rule from=\"^http://www\\.plusgirot\\.se/\" to=\"https://www.plusgirot.se/\"/><rule from=\"^http://plusgirot\\.se/\" to=\"https://www.plusgirot.se/\"/></ruleset>", "<ruleset name=\"Pluska.sk\" f=\"Pluska.sk.xml\"><rule from=\"^http://polovnictvo\\.pluska\\.sk/\" to=\"https://www.pluska.sk/polovnictvo-rybarstvo/\"/><rule from=\"^http://tv\\.pluska\\.sk/\" to=\"https://www.pluska.sk/port/tv/\"/><rule from=\"^http://byvanie\\.pluska\\.sk/\" to=\"https://www.pluska.sk/ipeknebyvanie/\"/><rule from=\"^http://emma\\.pluska\\.sk/\" to=\"https://www.pluska.sk/emma/\"/><rule from=\"^http://zdravie\\.pluska\\.sk/\" to=\"https://www.pluska.sk/izdravie/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"plusme.net (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Plusme.net-falsemixed.xml\"><securecookie host=\"^(?:w*\\.)?plusme\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"plusme.net (partial)\" default_off=\"failed ruleset test\" f=\"Plusme.net.xml\"><rule from=\"^http://(www\\.)?plusme\\.net/(?=catalog/view/(?:javascript|theme)/|favicon\\.ico|image/)\" to=\"https://$1plusme.net/\"/></ruleset>", "<ruleset name=\"Plymouth.ac.uk (partial)\" default_off=\"failed ruleset test\" f=\"Plymouth-University.xml\"><securecookie host=\"^\\.plymouth\\.ac\\.uk$\" name=\"^SSOUOPISA$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://cognition\\.plymouth\\.ac\\.uk/\" to=\"https://psylin.plymouth.ac.uk/\"/><rule from=\"^https?://psychology\\.plymouth\\.ac\\.uk/\" to=\"https://psylin.plymouth.ac.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Po.st (partial)\" f=\"Po.st.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://i\\.po\\.st/\" to=\"https://s.po.st/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pobox\" f=\"Pobox.xml\"><securecookie host=\"^\\.pobox\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pochtabank.ru\" f=\"Pochtabank.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PocketMatrix.com\" default_off=\"expired, self-signed\" f=\"PocketMatrix.com.xml\"><securecookie host=\"^\\.pocketmatrix\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?pocketmatrix\\.com/\" to=\"https://pocketmatrix.com/\"/></ruleset>", "<ruleset name=\"Pocket Casts.com (partial)\" f=\"Pocket_Casts.com.xml\"><rule from=\"^http://(play|social)\\.pocketcasts\\.com/\" to=\"https://$1.pocketcasts.com/\"/></ruleset>", "<ruleset name=\"Pocketbook\" f=\"Pocketbook.xml\"><rule from=\"^http://(?:www\\.)?getpocketbook\\.com/\" to=\"https://getpocketbook.com/\"/></ruleset>", "<ruleset name=\"Pocketgamer.biz\" f=\"Pocketgamer.biz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pocketgamer\" platform=\"mixedcontent\" f=\"Pocketgamer.co.uk.xml\"><securecookie host=\"^hubs\\.pocketgamer\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PodOmatic.com\" platform=\"mixedcontent\" f=\"PodOmatic.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PodVertise online.com\" default_off=\"mismatch, self-signed\" f=\"PodVertise.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pod Upti.me\" f=\"Pod_Upti.me.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Podbean.com (partial)\" f=\"Podbean.com.xml\"><exclusion pattern=\"^http://(?:[^./]+\\.){2,}podbean\\.com/\"/><exclusion pattern=\"^http://(?:img|imglogo|support)\\.podbean\\.com/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http://fs1\\.podbean\\.com/\" to=\"https://d8g345wuhgd7e.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"podcast.at (partial)\" default_off=\"plaintext reply\" f=\"Podcast.at.xml\"><rule from=\"^http://(?:www\\.)?(?:feedarea\\.de|podcast\\.at)/(?=favicon\\.ico|images/)\" to=\"https://www.podcast.at/\"/></ruleset>", "<ruleset name=\"Poddery.com (partial)\" f=\"Poddery.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PoderPDA\" default_off=\"failed ruleset test\" f=\"PoderPDA.xml\"><securecookie host=\"^.*\\.poderpda\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Podio.com (partial)\" f=\"Podio.com.xml\"><exclusion pattern=\"^http://blog\\.podio\\.com/+(?!wp-content/)\"/><rule from=\"^http://status\\.podio\\.com/\" to=\"https://podio.statuspage.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Podnapisi.NET\" f=\"Podnapisi.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Podseed.org\" default_off=\"failed ruleset test\" f=\"Podseed.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"poets.org\" f=\"Poets.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pogo\" platform=\"mixedcontent\" f=\"Pogo.xml\"><exclusion pattern=\"http://www.pogo.com/avatar/edit.do\"/><rule from=\"^http://(?:www\\.)?pogo\\.com/\" to=\"https://www.pogo.com/\"/><rule from=\"^http://help\\.pogo\\.com/\" to=\"https://help.pogo.com/\"/><rule from=\"^http://cdn\\.pogo\\.com/\" to=\"https://www.pogo.com/\"/></ruleset>", "<ruleset name=\"Pogoplug.com (partial)\" f=\"Pogoplug.com.xml\"><exclusion pattern=\"^http://support\\.pogoplug\\.com/(?!favicon\\.ico|images/|static/)\"/><rule from=\"^http://support\\.pogoplug\\.com/\" to=\"https://pogoplug.zendesk.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Point.im\" f=\"Point.im.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pointroll\" default_off=\"failed ruleset test\" f=\"Pointroll.xml\"><securecookie host=\"^\\.pointroll\\.com$\" name=\"^PR(?:bu|go)$\"/><securecookie host=\"^(?:adportal|\\.ads)\\.pointroll\\.com$\" name=\".+\"/><rule from=\"^http://((?:adportal|ads|blogs|onpoint|spd-s|t|www)\\.)?pointroll\\.com/\" to=\"https://$1pointroll.com/\"/></ruleset>", "<ruleset name=\"PointsHound (partial)\" f=\"PointsHound.xml\"><securecookie host=\"^(?:w*\\.)?pointshound\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Poivy.com\" f=\"Poivy.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pokemon.com (partial)\" f=\"Pokemon.com.xml\"><rule from=\"^http://www\\.pokemon\\.co\\.jp/(.+/resources/|common/|images/|_personalize/\\w+/scripts/|scripts/|_sys/)\" to=\"https://www.pokemon.co.jp/$1\"/><rule from=\"^http://assets\\d*\\.pokemon\\.com/\" to=\"https://assets.pokemon.com/\"/><rule from=\"^http://sso\\.pokemon\\.com/\" to=\"https://sso.pokemon.com/\"/></ruleset>", "<ruleset name=\"Pokémon World Online\" default_off=\"failed ruleset test\" f=\"Pokemon_World_Online.xml\"><securecookie host=\"^\\.(?:forum\\.)?pokemon-world-online\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pokémon Showdown (partial)\" f=\"Pokemonshowdown.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Poky\" default_off=\"failed ruleset test\" f=\"Poky.xml\"><rule from=\"^http://((?:bugzilla|git|lists|wiki|www)\\.)?pokylinux\\.org/\" to=\"https://$1pokylinux.org/\"/></ruleset>", "<ruleset name=\"Pol.dk (broken)\" default_off=\"refused\" f=\"Pol.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Polar Mobile\" f=\"Polar.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PolarSSL\" f=\"PolarSSL.xml\"><securecookie host=\"^polarssl\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PolarnoPyret.se\" f=\"PolarnoPyret.se.xml\"><rule from=\"^http://www\\.polarnopyret\\.se/\" to=\"https://www.polarnopyret.se/\"/><rule from=\"^http://polarnopyret\\.se/\" to=\"https://www.polarnopyret.se/\"/></ruleset>", "<ruleset name=\"Police UK\" f=\"PoliceUK.xml\"><rule from=\"^http://(www\\.)?police\\.uk/\" to=\"https://www.police.uk/\"/></ruleset>", "<ruleset name=\"Police Mutual (partial)\" f=\"Police_Mutual.xml\"><securecookie host=\"^survey\\.policemutual\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?policemutual\\.co\\.uk/(applications/|css/|images/|js/|media/|WebResource\\.axd)\" to=\"https://www.policemutual.co.uk/$1\"/><rule from=\"^http://survey\\.policemutual\\.co\\.uk/\" to=\"https://survey.policemutual.co.uk/\"/></ruleset>", "<ruleset name=\"Policia.es\" default_off=\"Cert warning\" f=\"Policia.es.xml\"><rule from=\"^http://(?:www\\.)?policia\\.es/\" to=\"https://www.policia.es/\"/></ruleset>", "<ruleset name=\"PolicyMic\" default_off=\"failed ruleset test\" f=\"PolicyMic.xml\"><securecookie host=\"^\\.policymic\\.com$\" name=\".+\"/><rule from=\"^http://((?:static|thumbs|www)\\.)?policymic\\.com/\" to=\"https://$1policymic.com/\"/><rule from=\"^http://media1\\.policymic\\.com/\" to=\"https://d12x6n4r5ixux3.cloudfront.net/\"/><rule from=\"^http://media2\\.policymic\\.com/\" to=\"https://d3hpe7wwfhob7t.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Policy Review.info\" f=\"Policy_Review.info.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Poliisi.fi\" platform=\"mixedcontent\" f=\"Poliisi.fi.xml\"><rule from=\"^http://(?:www\\.)?poliisi\\.fi/\" to=\"https://poliisi.fi/\"/></ruleset>", "<ruleset name=\"Polisforbundet.se\" platform=\"mixedcontent\" f=\"Polisforbundet.se.xml\"><rule from=\"^http://polisforbundet\\.se/\" to=\"https://www.polisforbundet.se/\"/><rule from=\"^http://www\\.polisforbundet\\.se/\" to=\"https://www.polisforbundet.se/\"/></ruleset>", "<ruleset name=\"Polit.ru\" default_off=\"failed ruleset test\" f=\"Polit.ru.xml\"><rule from=\"^http://www\\.polit\\.ru/\" to=\"https://polit.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PolitiFact (partial)\" f=\"PolitiFact.xml\"><securecookie host=\"^\\.politifact\\.com$\" name=\"^s_vi$\"/><rule from=\"^http://metric\\.politifact\\.com/\" to=\"https://stpetersburgtimes.122.2o7.net/\"/><rule from=\"^http://static\\.politifact\\.com/\" to=\"https://s3.amazonaws.com/static.politifact.com/\"/></ruleset>", "<ruleset name=\"Political TV Ad Archive\" f=\"Political-TV-Ad-Archive.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Political Compass.org\" f=\"Political_Compass.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Political Wire.com\" default_off=\"mismatched\" f=\"Political_Wire.com.xml\"><rule from=\"^http://(?:www\\.)?politicalwire\\.com/\" to=\"https://politicalwire.com/\"/></ruleset>", "<ruleset name=\"Politico.com (partial)\" default_off=\"webmaster request\" f=\"Politico.xml\"><securecookie host=\"^\\.\" name=\"^(?:_ga|optimizely)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?politico\\.com/\" to=\"https://secure.politico.com/\"/><rule from=\"^http://static\\.politico\\.com/\" to=\"https://static3.politico.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Politico Pro.com\" default_off=\"webmaster request\" f=\"Politico_Pro.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PoliticsHome.com\" f=\"PoliticsHome.com.xml\"><securecookie host=\"^\\.\" name=\"^_ga\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Politiken.dk (mixed content)\" default_off=\"failed ruleset test\" f=\"Politiken.dk.xml\"><exclusion pattern=\"^http://(?:plus|shop)\\.politiken\\.dk/(?!Css/|[iI]mages/|Uploaded/|favicon\\.ico)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Polity.co.uk\" default_off=\"failed ruleset test\" f=\"Polity.co.uk.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Polk\" default_off=\"failed ruleset test\" f=\"Polk.xml\"><securecookie host=\"^(?:.*\\.)?polk\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?polk\\.com/\" to=\"https://www.polk.com/\"/></ruleset>", "<ruleset name=\"Poll Everywhere.com\" default_off=\"failed ruleset test\" f=\"Poll_Everywhere.com.xml\"><securecookie host=\"^www\\.polleverywhere\\.com$\" name=\".+\"/><rule from=\"^http://blog\\.polleverywhere\\.com/\" to=\"https://polleverywhere.com/blog/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Polldaddy\" f=\"Polldaddy.xml\"><exclusion pattern=\"^http://(?:i|support)\\.polldaddy\\.com/\"/><securecookie host=\".*\\.polldaddy\\.com$\" name=\"^__utm\\w$\"/><securecookie host=\"^polls\\.polldaddy\\.com$\" name=\".+\"/><rule from=\"^http://i0\\.poll\\.fm/\" to=\"https://polldaddy.com/\"/><rule from=\"^http://(?:www\\.)?polldaddy\\.com/\" to=\"https://polldaddy.com/\"/><rule from=\"^http://static\\.polldaddy\\.com/\" to=\"https://secure.polldaddy.com/\"/><rule from=\"^http://([^@:\\./]+)\\.polldaddy\\.com/\" to=\"https://$1.polldaddy.com/\"/></ruleset>", "<ruleset name=\"Pollen Diary.com\" f=\"Pollen_Diary.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"polleninfo.org (partial)\" f=\"Polleninfo.org.xml\"><securecookie host=\"^www\\.polleninfo\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pollenwarndienst.at\" f=\"Pollenwarndienst.at.xml\"><securecookie host=\"^www\\.pollenwarndienst\\.at$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Poloniex.com\" f=\"Poloniex.com.xml\"><securecookie host=\"^\\.poloniex\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Polskie Radio.pl (mixed content)\" platform=\"mixedcontent\" f=\"Polskie_Radio.pl-mixedcontent.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Polskie Radio.pl (partial)\" f=\"Polskie_Radio.pl.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Poly.edu (partial)\" default_off=\"broken\" f=\"Poly.edu.xml\"><securecookie host=\"^csawctf\\.poly\\.edu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PolyBrowser.com\" default_off=\"failed ruleset test\" f=\"PolyBrowser.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PolyGrant.com\" default_off=\"failed ruleset test\" f=\"PolyGrant.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PolyU HK\" f=\"PolyU.edu.hk.xml\"><rule from=\"^http://lib\\.polyu\\.edu\\.hk/\" to=\"https://www.lib.polyu.edu.hk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Polygon.com (partial)\" f=\"Polygon.com.xml\"><exclusion pattern=\"^http://www\\.polygon\\.com/(?:$|\\?)\"/><exclusion pattern=\"^http://www\\.polygon\\.com/comments/load_comments/\"/><exclusion pattern=\"/\\d{4}/(?:\\d\\d?/){2}\\d+/[\\w-]\"/><exclusion pattern=\"http://www\\.polygon\\.com/chorus_page/optimally_sized_images\"/><securecookie host=\"^\\.polygon\\.com$\" name=\"^__[qu].*\"/><rule from=\"^http://polygon\\.com/\" to=\"https://www.polygon.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Polymer-Project.org\" f=\"Polymer-Project.org.xml\"><rule from=\"^http://(?:www\\.)?polymer-project\\.org/\" to=\"https://www.polymer-project.org/\"/></ruleset>", "<ruleset name=\"Polytechnic University of Catalonia (mismatches)\" default_off=\"mismatched\" f=\"Polytechnic-University-of-Catalonia-mismatches.xml\"><rule from=\"^http://gentoo-euetib\\.upc\\.es/\" to=\"https://gentoo-euetib.upc.es/\"/></ruleset>", "<ruleset name=\"Polytechnic University of Catalonia (partial)\" f=\"Polytechnic-University-of-Catalonia.xml\"><securecookie host=\"^(?:.*\\.)upc\\.edu$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?upc\\.(?:es|edu)/\" to=\"https://www.upc.edu/\"/><rule from=\"^http://australis\\.upc\\.es/\" to=\"https://australis.upc.es/\"/><rule from=\"^http://(\\w+\\.blog|peguera|tv)\\.upc\\.edu/\" to=\"https://$1.upc.edu/\"/></ruleset>", "<ruleset name=\"Ponemon (partial)\" default_off=\"failed ruleset test\" f=\"Ponemon.xml\"><securecookie host=\"^rim\\.ponemon\\.org$\" name=\".+\"/><rule from=\"^http://rim\\.ponemon\\.org/\" to=\"https://rim.ponemon.org/\"/></ruleset>", "<ruleset name=\"Pony.fm\" default_off=\"failed ruleset test\" f=\"Pony.fm.xml\"><securecookie host=\"^\\.pony\\.fm$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PonyChat.net\" f=\"PonyChat.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Poo.solutions\" f=\"Poo.solutions.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"poopl.org\" f=\"Poolp.org.xml\"><securecookie host=\"^\\.poolp\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Poopjournal.rocks\" f=\"Poopjournal.rocks.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Poor Man Motorsports\" f=\"Poor_Man_Motorsports.xml\"><securecookie host=\"^(?:.*\\.)?poormanmotorsports\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pop6.com\" f=\"Pop6.com.xml\"><rule from=\"^http://(?:www\\.)?pop6\\.com/\" to=\"https://secure.friendfinder.com/\"/><rule from=\"^http://graphics\\.pop6\\.com/\" to=\"https://secureimage.securedataimages.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PopAds.net\" f=\"PopAds.xml\"><securecookie host=\".*\\.popads\\.net$\" name=\".+\"/><rule from=\"^http://c2\\.popads\\.net/\" to=\"https://static.popads.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PopAds CDN.net\" f=\"PopAds_CDN.net.xml\"><rule from=\"^http://world\\.popadscdn\\.net/\" to=\"https://www.popads.net/\"/></ruleset>", "<ruleset name=\"PopAtomic\" f=\"PopAtomic.xml\"><securecookie host=\"^(?:www\\.)?popatomic\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PopCash.net\" default_off=\"failed ruleset test\" f=\"PopCash.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PopCrunch.com (partial)\" f=\"PopCrunch.com.xml\"><rule from=\"^http://(assets|pc[123]|social)\\.popcrunch\\.com/\" to=\"https://$1.popcrunch.com/\"/></ruleset>", "<ruleset name=\"PopIn.cc (partial)\" f=\"PopIn.cc.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PopInCDN.com\" f=\"PopInCDN.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PopSci.com (partial)\" platform=\"mixedcontent\" f=\"PopSci.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PopSugar-assets.com\" f=\"PopSugar-assets.com.xml\"><rule from=\"^http://media\\d\\.popsugar-assets\\.com/(?=/*v\\d+/)\" to=\"https://sugarinc-a.akamaihd.net/\"/></ruleset>", "<ruleset name=\"PopSugar.com (partial)\" f=\"PopSugar.com.xml\"><rule from=\"^http://(?:www\\.)?popsugar\\.com/(?=v\\d+/static/)\" to=\"https://sugarinc-a.akamaihd.net/\"/></ruleset>", "<ruleset name=\"PopVote.hk\" f=\"PopVote.hk.xml\"><securecookie host=\"^(?:w*\\.)?popvote\\.hk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pop Goes the Week\" f=\"Pop_Goes_the_Week.xml\"><securecookie host=\"^(?:www\\.)?popgoestheweek\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Popcorn-Time.se (partial)\" f=\"Popcorn-Time.se.xml\"><exclusion pattern=\"^http://blog\\.popcorn-time\\.se/+(?!favicon\\.ico|wp-content/|wp-includes/)\"/><securecookie host=\"^\\.popcorn-time\\.se$\" name=\"^__cfduid$\"/><securecookie host=\"^\\.forum\\.popcorn-time\\.se$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Popehat.com\" default_off=\"failed ruleset test\" f=\"Popehat.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Poppy Sports\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Poppy-Sports.xml\"><rule from=\"^http://(?:www\\.)?poppysports\\.com/\" to=\"https://www.poppysports.com/\"/><securecookie host=\"^\\.www\\.poppysports\\.com$\" name=\".*\"/></ruleset>", "<ruleset name=\"Poppy UK\" default_off=\"expired\" f=\"Poppy_UK.xml\"><securecookie host=\"^\\.poppyuk\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?poppyuk\\.com/\" to=\"https://poppyuk.com/\"/></ruleset>", "<ruleset name=\"Popular.com.tw\" f=\"Popular.com.tw.xml\"><rule from=\"^http://(?:www\\.)?popular\\.com\\.tw/\" to=\"https://www.popular.com.tw/\"/></ruleset>", "<ruleset name=\"PopularResistance.org\" f=\"PopularResistance.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Popular Mechanics (problematic)\" default_off=\"mismatched\" f=\"Popular_Mechanics.com-problematic.xml\"><rule from=\"^http://(?:www\\.)?popularmechanics\\.com/(?!ams/|api_static/|cm/(?!popularmechanics/styles/(?:article|comments|flipbook3|global|promo_player)\\.css)|favicon\\.ico)\" to=\"https://www.popularmechanics.com/\"/></ruleset>", "<ruleset name=\"Popular Photography\" f=\"Popular_Photography.xml\"><rule from=\"^http://(?:www\\.)?popphoto\\.com/\" to=\"https://www.popphoto.com/\"/><rule from=\"^http://videostore\\.popphoto\\.com/(store/checkout(?:$|\\?|/)|wp-content/)\" to=\"https://videostore.popphoto.com/$1\"/></ruleset>", "<ruleset name=\"Populis Engage.com\" f=\"Populis_Engage.com.xml\"><securecookie host=\"^\\.populisengage\\.com$\" name=\"^OAX$\"/><securecookie host=\"^oas\\.populisengage\\.com$\" name=\".+\"/><rule from=\"^http://oas\\.populisengage\\.com/\" to=\"https://oas.populisengage.com/\"/></ruleset>", "<ruleset name=\"Porlaputa.com (partial)\" default_off=\"mismatched\" f=\"Porlaputa.com.xml\"><securecookie host=\"^\\.porlaputa\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?porlaputa\\.com/\" to=\"https://porlaputa.com/\"/></ruleset>", "<ruleset name=\"porn-W\" default_off=\"mismatched\" f=\"Porn-W.xml\"><securecookie host=\"^\\.porn-w\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?porn-w\\.org/\" to=\"https://porn-w.org/\"/></ruleset>", "<ruleset name=\"PornHub.com\" f=\"PornHub.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PornHubLive.com\" f=\"PornHubLive.com.xml\"><securecookie host=\"^\\.pornhublive\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?pornhublive\\.com/\" to=\"https://secure.pornhublive.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Porn Worms.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Porn_Worms.com-falsemixed.xml\"><securecookie host=\"^(?:de|es|fr|it|jp|nl|pt|ru|www)?\\.pornworms\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Porn Worms.com (partial)\" default_off=\"failed ruleset test\" f=\"Porn_Worms.com.xml\"><securecookie host=\"^cams\\.pornworms\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pornel.net\" f=\"Pornel.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PortForward.com (partial)\" f=\"PortForward.com.xml\"><rule from=\"^http://(?:www\\.)?portforward\\.com/build/\" to=\"https://secure.portforward.com/build/\"/><rule from=\"^http://secure\\.portforward\\.com/\" to=\"https://secure.portforward.com/\"/></ruleset>", "<ruleset name=\"PortMorgan.com\" f=\"PortMorgan.com.xml\"><rule from=\"^http://(www\\.)?portmorgan\\.com/\" to=\"https://$1portmorgan.com//\"/></ruleset>", "<ruleset name=\"Porta.codes\" f=\"Porta.codes.xml\"><securecookie host=\"^\\.porta\\.codes$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Portadi.com (partial)\" f=\"Portadi.com.xml\"><rule from=\"^http://portadi\\.com/\" to=\"https://www.portadi.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Porter.io\" f=\"Porter.io.xml\"><securecookie host=\"^\\.porter\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Porteus-Kiosk.org\" default_off=\"self-signed\" f=\"Porteus-Kiosk.org.xml\"><rule from=\"^http://(?:www\\.)?porteus-kiosk\\.org/\" to=\"https://porteus-kiosk.org/\"/></ruleset>", "<ruleset name=\"Porteus.org (partial)\" f=\"Porteus.xml\"><securecookie host=\"^\\.forum\\.porteus\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Portland Mercury.com (partial)\" f=\"Portland_Mercury.com.xml\"><exclusion pattern=\"^http://(?:blogtown|m|post)\\.portlandmercury\\.com/(?!binary/|captcha/|favicon\\.ico|foundation/|images/|styles/)\"/><rule from=\"^http://((?:blogtown|classifieds|m|post|www)\\.)?portlandmercury\\.com/\" to=\"https://$1portlandmercury.com/\"/></ruleset>", "<ruleset name=\"Portland State University (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Portland_State_University-falsemixed.xml\"><exclusion pattern=\"^http://(?:webdev\\.|www\\.)?pdu\\.edu/(?:css/|favicon\\.ico|images/|js/|(?:\\w+/)?(?:misc|sites)/|syndication/)\"/><securecookie host=\"^www\\.pdu\\.edu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Portland State University (partial)\" f=\"Portland_State_University.xml\"><exclusion pattern=\"^http://(?:webdev\\.|www\\.)?pdu\\.edu/(?!css/|favicon\\.ico|images/|js/|(?:\\w+/)?(?:misc|sites)/|syndication/)\"/><securecookie host=\"^(?:banweb|sso|vikat)\\.pdu\\.edu$\" name=\".+\"/><rule from=\"^http://((?:banweb|d2l|sso|vikat|webdev|www)\\.)?pdu\\.edu/\" to=\"https://$1pdu.edu/\"/><rule from=\"^http://cal\\.pdu\\.edu/.*\" to=\"https://www.google.com/calendar/hosted/pdx.edu\"/><rule from=\"^http://(?:www\\.)?library\\.pdu\\.edu/\" to=\"https://library.pdu.edu/\"/><rule from=\"^http://guides\\.library\\.pdx\\.edu/(?=css\\d*/|favicon\\.ico|include/|js\\d*/)\" to=\"https://libguides.com/\"/><rule from=\"^http://mail\\.pdu\\.edu/.*\" to=\"https://mail.google.com/a/pdu.edu\"/><rule from=\"^http://(?:www\\.)?sa\\.pdu\\.edu/\" to=\"https://www.sa.pdu.edu/\"/><rule from=\"^http://(?:www\\.)?summer\\.pdu\\.edu/.*\" to=\"https://pdu.edu/summer\"/></ruleset>", "<ruleset name=\"Portner Press.com.au\" default_off=\"expired, self-signed\" f=\"Portner_Press.com.au.xml\"><rule from=\"^http://(?:www\\.)?portnerpress\\.com\\.au/\" to=\"https://www.portnerpress.com.au/\"/></ruleset>", "<ruleset name=\"Porton CV.gov.cv\" default_off=\"failed ruleset test\" f=\"Porton_CV.gov.cv.xml\"><rule from=\"^http://portoncv\\.gov\\.cv/\" to=\"https://portoncv.gov.cv/\"/></ruleset>", "<ruleset name=\"Portugal.gov.pt\" default_off=\"mismatched\" f=\"Portugal.gov.pt.xml\"><exclusion pattern=\"^http://www\\.portugal\\.gov\\.pt/PortalMovel/\"/><rule from=\"^http://portugal\\.gov\\.pt/.*\" to=\"https://www.portugal.gov.pt/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PoshLiving\" f=\"PoshLiving.xml\"><securecookie host=\"^(?:www)?\\.poshliving\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PSoft.net (partial)\" default_off=\"failed ruleset test\" f=\"Positive-Software.xml\"><rule from=\"^http://my\\.psoft\\.net/.*\" to=\"https://www.odin.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PositiveSSL.com\" f=\"PositiveSSL.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Post Click Marketing.com (partial)\" f=\"Post-Click-Marketing.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Post-Gazette.com (false MCB)\" platform=\"mixedcontent\" f=\"Post-Gazette.com-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://post-gazette\\.com/\" to=\"https://www.post-gazette.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Post.at\" f=\"Post.at.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Post.ch\" default_off=\"failed ruleset test\" f=\"Post.ch.xml\"><securecookie host=\"^(?:.*\\.)?post.*\\.ch$\" name=\".+\"/><securecookie host=\"^(?:.*\\.)?swisspost\\.ch$\" name=\".+\"/><securecookie host=\"^(?:.*\\.)?swisspost\\.com$\" name=\".+\"/><securecookie host=\"^(?:.*\\.)?postfinance\\.ch$\" name=\".+\"/><securecookie host=\"^(?:.*\\.)?postsuisseid\\.ch$\" name=\".+\"/><securecookie host=\"^(?:.*\\.)?swisssign\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?post\\.ch/\" to=\"https://www.post.ch/\"/><rule from=\"^http://(?:www\\.)?posta\\.ch/\" to=\"https://www.posta.ch/\"/><rule from=\"^http://(?:www\\.)?poste\\.ch/\" to=\"https://www.poste.ch/\"/><rule from=\"^http://(?:www\\.)?swisspost\\.com/\" to=\"https://www.swisspost.com/\"/><rule from=\"^http://(?:www\\.)?swisspost\\.ch/\" to=\"https://www.swisspost.ch/\"/><rule from=\"^http://secure\\.swisspostbox\\.com/\" to=\"https://secure.swisspostbox.com/\"/><rule from=\"^http://im\\.post\\.ch/\" to=\"https://im.post.ch/\"/><rule from=\"^http://(?:www\\.)?postauto\\.ch/\" to=\"https://www.postauto.ch/\"/><rule from=\"^http://postbus\\.ch/\" to=\"https://www.postbus.ch/\"/><rule from=\"^http://(?:www\\.)?mypostbusiness\\.ch/\" to=\"https://www.mypostbusiness.ch/\"/><rule from=\"^http://(?:www\\.)?postfinance\\.ch/\" to=\"https://www.postfinance.ch/\"/><rule from=\"^http://(?:www\\.)?postsuisseid\\.ch/\" to=\"https://postsuisseid.ch/\"/><rule from=\"^http://(?:www\\.)?swisssign\\.com/\" to=\"https://swisssign.com/\"/><rule from=\"^http://admin\\.omgpm\\.com/\" to=\"https://admin.omgpm.com/\"/></ruleset>", "<ruleset name=\"Post852.com (partial)\" f=\"Post852.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PostNord.se\" default_off=\"Causes redirect loop\" f=\"PostNord.se.xml\"><securecookie host=\"^www\\.postnord\\.se$\" name=\".+\"/><rule from=\"^http://postnord\\.se/\" to=\"https://www.postnord.se/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PostPoints Rewards.com\" f=\"PostPoints_Rewards.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Post Affiliate Network.com\" f=\"Post_Affiliate_Network.com.xml\"><securecookie host=\"^(?:www\\.)?postaffiliatenetwork\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Post Affiliate Pro.com\" f=\"Post_Affiliate_Pro.com.xml\"><securecookie host=\"^(?:www\\.)?postaffiliatepro\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Post Office (partial)\" f=\"Post_Office.xml\"><securecookie host=\"^postoffice\\.insure-systems\\.co\\.uk$\" name=\".+\"/><securecookie host=\"^account\\.mypostoffice\\.co\\.uk$\" name=\".+\"/><securecookie host=\"^www\\.pofssavecredit\\.co\\.uk$\" name=\".+\"/><securecookie host=\"^www\\.postoffice\\.travelmoneycard\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://postoffice\\.insure-systems\\.co\\.uk/\" to=\"https://postoffice.insure-systems.co.uk/\"/><rule from=\"^http://account\\.mypostoffice\\.co\\.uk/\" to=\"https://account.mypostoffice.co.uk/\"/><rule from=\"^http://www\\.pofssavecredit\\.co\\.uk/\" to=\"https://www.pofssavecredit.co.uk/\"/><rule from=\"^http://(?:www\\.)?postoffice\\.co\\.uk/(sites/|user(?:$|\\?|/))\" to=\"https://www.postoffice.co.uk/$1\"/><rule from=\"^http://www\\.postoffice\\.travelmoneycard\\.co\\.uk/\" to=\"https://www.postoffice.travelmoneycard.co.uk/\"/></ruleset>", "<ruleset name=\"Post Office Shop (partial)\" f=\"Post_Office_Shop.xml\"><securecookie host=\"^www\\.postofficeshop\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?postofficeshop\\.co\\.uk/\" to=\"https://www.postofficeshop.co.uk/\"/></ruleset>", "<ruleset name=\"Post to.Me\" f=\"Post_to.Me.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://cat\\.postto\\.me/\" to=\"https://postto.me/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Posta-Online.it\" f=\"Posta-Online.it.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Postal Heritage.org.uk (partial)\" default_off=\"failed ruleset test\" f=\"Postal_Heritage.org.uk.xml\"><exclusion pattern=\"^http://(?:www\\.)?postalheritage\\.org\\.uk/+(?!imgs/|lib/|uploads/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Postbank.de\" default_off=\"failed ruleset test\" f=\"Postbank.xml\"><securecookie host=\"^(?:.*\\.)?postbank\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Postbox-Inc.com (partial)\" f=\"Postbox-Inc.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PostbyDNX.com\" platform=\"mixedcontent\" f=\"PostbyDNX.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?postbydnx\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Postdanmark.dk (partial)\" f=\"Postdanmark.dk.xml\"><securecookie host=\"^\\w\" name=\".\"/><exclusion pattern=\"http://www2\\.postdanmark\\.dk/iis2-findos2/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Poste-Impresa.it\" f=\"Poste-Impresa.it.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://poste-impresa\\.it/\" to=\"https://www.poste-impresa.it/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Poste.io\" f=\"Poste.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Poste.it (partial)\" default_off=\"failed ruleset test\" f=\"Poste.it.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PosteShop.it\" default_off=\"failed ruleset test\" f=\"PosteShop.it.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://posteshop\\.it/\" to=\"https://www.posteshop.it/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Postel.it\" f=\"Postel.it.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://postel\\.it/\" to=\"https://www.postel.it/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Posteo.de\" default_off=\"failed ruleset test\" f=\"Posteo.xml\"><securecookie host=\"^(www\\.|m\\.|lists\\.|autodiscover\\.|api\\.|cdn\\.)?posteo\\.de\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Poster Store UK\" default_off=\"refused\" f=\"Poster_Store_UK.xml\"><securecookie host=\"^\\.(?:www\\.)?posterstoreuk\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Posterous clients\" default_off=\"mismatched\" f=\"Posterous-clients.xml\"><rule from=\"^http://blog\\.bethcodes\\.com/\" to=\"https://blog.bethcodes.com/\"/><rule from=\"^http://(?:www\\.)?codebutler\\.com/\" to=\"https://codebutler.com/\"/></ruleset>", "<ruleset name=\"Posterous\" default_off=\"failed ruleset test\" f=\"Posterous.xml\"><securecookie host=\"^(?:.*\\.)?posterous\\.com$\" name=\".*\"/><rule from=\"^http://files\\.posterous\\.com/\" to=\"https://s3.amazonaws.com/files.posterous.com/\"/><rule from=\"^http://(?:www\\.)?posterous\\.com/\" to=\"https://posterous.com/\"/><rule from=\"^http://([^@:\\./]+)\\.posterous\\.com/\" to=\"https://$1.posterous.com/\"/></ruleset>", "<ruleset name=\"PostgreSQL (self-signed)\" default_off=\"self-signed\" f=\"PostgreSQL-self-signed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PostgreSQL\" f=\"PostgreSQL.xml\"><securecookie host=\"^\\.postgresql\\.org$\" name=\"^__utm\\w$\"/><securecookie host=\"^wiki\\.postgresql\\.org$\" name=\".+\"/><securecookie host=\"^\\.postgresql.us$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?postgresql\\.eu/\" to=\"https://www.postgresql.eu/\"/><rule from=\"^http://(?:www\\.)?postgresql\\.org/(account|media)/\" to=\"https://www.postgresql.org/$1/\"/><rule from=\"^http://(commitfest|nagios|planet|redmine|wiki)\\.postgresql\\.org/\" to=\"https://$1.postgresql.org/\"/><rule from=\"^http://(www\\.)?postgresql\\.us/\" to=\"https://$1postgresql.us/\"/></ruleset>", "<ruleset name=\"Posthaven.com (problematic)\" default_off=\"mismatched\" f=\"Posthaven.com-problematic.xml\"><securecookie host=\"^(?!www\\.).+\\.posthaven\\.com$\" name=\".+\"/><rule from=\"^http://(?!www\\.)(\\w+)\\.posthaven\\.com/\" to=\"https://$1.posthaven.com/\"/></ruleset>", "<ruleset name=\"Posthaven.com (partial)\" f=\"Posthaven.com.xml\"><securecookie host=\"^posthaven\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Postimage\" f=\"Postimage.xml\"><rule from=\"^http://(?:www\\.)?postimg\\.io/\" to=\"https://postimage.io/\"/><rule from=\"^http://(adult|beta)\\.postimage\\.org/\" to=\"https://postimage.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Postini.com (partial)\" f=\"Postini.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Postlapsaria (partial)\" f=\"Postlapsaria.xml\"><exclusion pattern=\"^http://(?:www\\.)?postlapsaria\\.com/(?!favicon\\.ico|images/|~postlapsaria/|~sponsors/|style\\.css|supersized/)\"/><rule from=\"^http://(?:www\\.)?postlapsaria\\.com/\" to=\"https://secure.hostmonster.com/~postlaps/\"/></ruleset>", "<ruleset name=\"postnewsads.com\" default_off=\"failed ruleset test\" f=\"Postnewsads.com.xml\"><rule from=\"^http://www\\.postnewsads\\.com/\" to=\"https://postnewsads.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Postovabanka.sk\" f=\"Postovabanka.sk.xml\"><rule from=\"^http://postovabanka\\.sk/\" to=\"https://www.postovabanka.sk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Postscapes.com\" f=\"Postscapes.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Postwire.com\" f=\"Postwire.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"potager.org\" f=\"Potager.org.xml\"><securecookie host=\"^mail\\.potager\\.org$\" name=\".+\"/><rule from=\"^http://([^/:@\\.]+\\.)?pimienta\\.org/\" to=\"https://$1pimienta.org/\"/><rule from=\"^http://([^/:@\\.]+\\.)?poivron\\.org/\" to=\"https://$1poivron.org/\"/><rule from=\"^http://([^/:@\\.]+\\.)?potager\\.org/\" to=\"https://$1potager.org/\"/><rule from=\"^http://([^/:@\\.]+\\.)?sweetpepper\\.org/\" to=\"https://$1sweetpepper.org/\"/></ruleset>", "<ruleset name=\"PowNed (partial)\" default_off=\"failed ruleset test\" f=\"PowNed.xml\"><rule from=\"^http://registratie\\.powned\\.tv/\" to=\"https://registratie.powned.tv/\"/></ruleset>", "<ruleset name=\"PowWeb\" f=\"PowWeb.xml\"><securecookie host=\"^\\.powweb\\.com$\" name=\".+\"/><rule from=\"^http://((?:blog|forums|partners|secure|www)\\.)?powweb\\.com/\" to=\"https://$1powweb.com/\"/></ruleset>", "<ruleset name=\"Powells.com\" default_off=\"failed ruleset test\" f=\"Powells.com.xml\"><securecookie host=\"^\\.powells\\.com$\" name=\"^(?:lastlocation|preferences|p_session|trail_id)$\"/><rule from=\"^http://(?:content-\\d\\.|www\\.)?powells\\.com/\" to=\"https://www.powells.com/\"/></ruleset>", "<ruleset name=\"Power.org\" default_off=\"failed ruleset test\" f=\"Power.org.xml\"><securecookie host=\"^www\\.power\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?power\\.org/\" to=\"https://www.power.org/\"/></ruleset>", "<ruleset name=\"PowerDNS.com\" default_off=\"failed ruleset test\" f=\"PowerDNS.com.xml\"><securecookie host=\"^rt\\.powerdns\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PowerDNS.net\" f=\"PowerDNS.net.xml\"><rule from=\"^http://(?:www\\.)?powerdns\\.net/\" to=\"https://www.powerdns.net/\"/></ruleset>", "<ruleset name=\"PowerPay.biz (partial)\" f=\"PowerPay.biz.xml\"><rule from=\"^http://(app|merchantcenter|secure)\\.powerpay\\.biz/\" to=\"https://$1.powerpay.biz/\"/></ruleset>", "<ruleset name=\"PowerShell Gallery.com\" f=\"PowerShell_Gallery.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PowerTech.no (missing certificate chain)\" default_off=\"missing certificate chain\" f=\"PowerTech.no-problematic.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PowerTech.no (partial)\" f=\"PowerTech.no.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Power Speaking.com\" f=\"Power_Speaking.com.xml\"><securecookie host=\"^\\.powerspeaking\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?powerspeaking\\.com/\" to=\"https://www.powerspeaking.com/\"/></ruleset>", "<ruleset name=\"Power to the Pooch\" default_off=\"failed ruleset test\" f=\"Power_to_the_Pooch.xml\"><securecookie host=\"^(?:w*\\.)?powertothepooch\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Powerbuy.co.th\" f=\"Powerbuy.co.th.xml\"><rule from=\"^http://(?:www\\.)?powerbuy\\.co\\.th/\" to=\"https://www.powerbuy.co.th/\"/></ruleset>", "<ruleset name=\"Powered by Paquin\" default_off=\"failed ruleset test\" f=\"Powered_by_Paquin.xml\"><securecookie host=\"^\\.poweredbypaquin\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Powerhosting.dk (partial)\" f=\"Powerhosting.dk.xml\"><rule from=\"^http://(?:(webadmin\\.)|www\\.)?powerhosting\\.dk/\" to=\"https://$1powerhosting.dk/\"/><rule from=\"^http://blog\\.powerhosting\\.dk/\" to=\"https://powerhosting.dk/blog/\"/></ruleset>", "<ruleset name=\"Powerhouse Museum.com (partial)\" f=\"Powerhouse_Museum.com.xml\"><rule from=\"^http://(www\\.)?powerhousemuseum\\.com/(?!/*(?:index\\.php)?(?:$|\\?))\" to=\"https://$1powerhousemuseum.com/\"/><rule from=\"^http://newsletters\\.powerhousemuseum\\.com/(?=contenteditor/formValidate\\.js|LiveAssets/|rp/Content/)\" to=\"https://ecm74.com/\"/></ruleset>", "<ruleset name=\"Powerlineman.com\" f=\"Powerlineman.com.xml\"><securecookie host=\"^(?:w*\\.)?powerlineman\\.com\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Powerlineman Magazine\" f=\"Powerlineman_Magazine.xml\"><securecookie host=\"^(?:www\\.)?powerlinemanmag\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Powernotebooks.com\" default_off=\"failed ruleset test\" f=\"Powernotebooks.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Powertraveller.com\" f=\"Powertraveller.com.xml\"><securecookie host=\"^\\.powertraveller\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Powervoip.com\" f=\"Powervoip.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pr.co (partial)\" f=\"Pr.co.xml\"><securecookie host=\"^(?:\\.|www\\.)?pr\\.co$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Prace.cz\" f=\"Prace.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Prad.de\" default_off=\"invalid certificate\" f=\"Prad.de.xml\"><rule from=\"^http://(?:www\\.)?prad\\.de/\" to=\"https://www.prad.de/\"/></ruleset>", "<ruleset name=\"praegnanz.de\" default_off=\"self-signed\" f=\"Praegnanz.de.xml\"><securecookie host=\"^praegnanz\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?praegnanz\\.de/\" to=\"https://praegnanz.de/\"/></ruleset>", "<ruleset name=\"Praetorian.com\" f=\"Praetorian.com.xml\"><securecookie host=\"^www\\.praetorian\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PragProg.com\" f=\"PragProg.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pragmatic Marketing.com (partial)\" f=\"Pragmatic_Marketing.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?pragmaticmarketing\\.com/(?![cC]ontent/|Scripts/)\"/><rule from=\"^http://(buy\\.|www\\.)?pragmaticmarketing\\.com/\" to=\"https://$1pragmaticmarketing.com/\"/><rule from=\"^http://mediafiles\\.pragmaticmarketing\\.com/\" to=\"https://d1qrnovf1k6d8a.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Pragmatic Studio.com\" default_off=\"failed ruleset test\" f=\"Pragmatic_Studio.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PravyDiplom.cz\" f=\"PravyDiplom.cz.xml\"><securecookie host=\"^pravydiplom\\.cz$\" name=\".+\"/><rule from=\"^http://www\\.pravydiplom\\.cz/\" to=\"https://pravydiplom.cz/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"preCharge.com\" default_off=\"failed ruleset test\" f=\"PreCharge.com.xml\"><securecookie host=\"^(?:affiliates)?\\.precharge\\.com$\" name=\".+\"/><rule from=\"^http://((?:affiliates|support|www)\\.)?precharge\\.com/\" to=\"https://$1precharge.com/\"/></ruleset>", "<ruleset name=\"preCharge.net (partial)\" f=\"PreCharge.net.xml\"><securecookie host=\"^secure\\.precharge\\.net$\" name=\".+\"/><rule from=\"^http://affiliates\\.precharge\\.net/\" to=\"https://affiliates.precharge.com/\"/><rule from=\"^http://secure\\.precharge\\.net/\" to=\"https://secure.precharge.net/\"/></ruleset>", "<ruleset name=\"PrecisionPros.com (mismatches)\" default_off=\"mismatched\" f=\"PrecisionPros.com-mismatches.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PrecisionPros.com (partial)\" f=\"PrecisionPros.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Precision Marine Tools\" default_off=\"failed ruleset test\" f=\"Precision_Marine_Tools.xml\"><securecookie host=\"^(?:.*\\.)?precisionmarinetools\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Precos.com.pt (partial)\" default_off=\"mismatched\" f=\"Precos.com.pt.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Precursor app.com\" f=\"Precursor_app.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Prediction.IO\" default_off=\"failed ruleset test\" f=\"Prediction.IO.xml\"><securecookie host=\"^(?:templates)?\\.prediction\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Preferred Reservations (partial)\" default_off=\"failed ruleset test\" f=\"Preferred_Reservations.xml\"><securecookie host=\"^vr\\.preferred-reservations\\.com$\" name=\".+\"/><rule from=\"^http://vr\\.preferred-reservations\\.com/\" to=\"https://vr.preferred-reservations.com/\"/></ruleset>", "<ruleset name=\"Preisvergleich Internet Services (mismatches)\" default_off=\"mismatched\" f=\"Preisvergleich-Internet-Services-mismatches.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Preisvergleich Internet Services (partial)\" f=\"Preisvergleich-Internet-Services.xml\"><rule from=\"^http://b\\.gzhls\\.at/\" to=\"https://gzhls.at/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Premier Tax Free\" default_off=\"self-signed\" f=\"Premier_Tax_Free.xml\"><securecookie host=\"^premiertaxfree\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?premiertaxfree\\.com/\" to=\"https://premiertaxfree.com/\"/></ruleset>", "<ruleset name=\"Premiumize.me\" f=\"Premiumize.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Preney.ca\" f=\"Preney.ca.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PressCoders\" f=\"PressCoders.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PressLabs (partial)\" f=\"PressLabs.xml\"><securecookie host=\"^o\\.presslabs\\.com$\" name=\".+\"/><rule from=\"^http://cdn\\.presslabs\\.com/\" to=\"https://presslabs.plssl.com/\"/><rule from=\"^http://o(-assets)?\\.presslabs\\.com/\" to=\"https://o$1.presslabs.com/\"/></ruleset>", "<ruleset name=\"PressLabs SSL\" default_off=\"failed ruleset test\" f=\"PressLabs_SSL.xml\"><rule from=\"^http://([\\w-]+\\.)?plssl\\.com/\" to=\"https://$1plssl.com/\"/></ruleset>", "<ruleset name=\"PressPage.com (partial)\" default_off=\"failed ruleset test\" f=\"PressPage.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Press+ (partial)\" f=\"PressPlus.xml\"><securecookie host=\"^h?\\.ppjol\\.com$\" name=\".+\"/><securecookie host=\"^accounts\\.mypressplus\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?mypressplus\\.com/themes/press_plus/img/header/(bg_green|bg_tan|logo)\\.png\" to=\"https://accounts.mypressplus.com/images/header/$1.png\"/><rule from=\"^http://accounts\\.mypressplus\\.com/\" to=\"https://accounts.mypressplus.com/\"/><rule from=\"^http://(h|ui)\\.ppjol\\.com/\" to=\"https://$1.ppjol.com/\"/><rule from=\"^http://s\\.ppjol\\.net/\" to=\"https://dsgvj67ifn3r0.cloudfront.net/\"/></ruleset>", "<ruleset name=\"PressReader.com (partial)\" default_off=\"failed ruleset test\" f=\"PressReader.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pressable.com (partial)\" default_off=\"failed ruleset test\" f=\"Pressable.com.xml\"><securecookie host=\"^help\\.pressable\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pressflex (self-signed)\" default_off=\"self-signed\" f=\"Pressflex-mismatches.xml\"><rule from=\"^http://(?:www\\.)?pressflex\\.com/\" to=\"https://pressflex.com/\"/></ruleset>", "<ruleset name=\"Pressflex (partial)\" default_off=\"failed ruleset test\" f=\"Pressflex.xml\"><rule from=\"^http://(?:web\\.|www\\.)?blogads\\.com/\" to=\"https://web.blogads.com/\"/></ruleset>", "<ruleset name=\"PrestaShop.com\" default_off=\"failed ruleset test\" f=\"Prestashop.com.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^(?!\\.prestashop\\.com$).\" name=\".\"/><rule from=\"^http://status\\.prestashop\\.com/\" to=\"https://prestashop.statuspage.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pretty in Cash (mismatches)\" default_off=\"mismatched\" f=\"Pretty-in-Cash-mismatches.xml\"><rule from=\"^http://join\\.(boozedgfs|exgf)\\.com/\" to=\"https://join.$1.com/\"/><rule from=\"^http://(?:www\\.)?prettyincash\\.com/\" to=\"https://prettyincash.com/\"/><rule from=\"^http://discount\\.teengfs\\.com/\" to=\"https://discount.teengfs.com/\"/></ruleset>", "<ruleset name=\"Pretty in Cash (partial)\" default_off=\"failed ruleset test\" f=\"Pretty-in-Cash.xml\"><rule from=\"^http://exgf\\.teenbff\\.com/\" to=\"https://exgf.teenbff.com/\"/></ruleset>", "<ruleset name=\"Pretty Lights Music\" platform=\"mixedcontent\" f=\"PrettyLightsMusic.xml\"><rule from=\"^http://(?:www\\.)?prettylightsmusic\\.com/\" to=\"https://prettylightsmusic.com/\"/></ruleset>", "<ruleset name=\"PrettyLittleThing.com\" f=\"PrettyLittleThing.com.xml\"><securecookie host=\"\\.(?:www\\.)?prettylittlething\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Previa.se\" f=\"Previa.se.xml\"><rule from=\"^http://(?:www\\.)?previa\\.se/\" to=\"https://www.previa.se/\"/></ruleset>", "<ruleset name=\"PreyProject.com\" f=\"PreyProject.com.xml\"><securecookie host=\"^.+\\.preyproject\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Prezi.com\" f=\"Prezi.com.xml\"><securecookie host=\"^\\.?prezi\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"prgmr.com (partial)\" f=\"Prgmr.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.prgmr\\.com/\" to=\"https://prgmr.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Priberam.pt\" platform=\"mixedcontent\" f=\"Priberam.pt.xml\"><rule from=\"^http://(?:www\\.)?priberam\\.pt/\" to=\"https://www.priberam.pt/\"/></ruleset>", "<ruleset name=\"Price.com.hk (partial)\" f=\"Price.com.hk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Price.ua (mismatched)\" default_off=\"mismatched\" f=\"Price.ua-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Price.ua (partial)\" default_off=\"connection reset\" f=\"Price.ua.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PriceGrabber clients\" default_off=\"failed ruleset test\" f=\"PriceGrabber-clients.xml\"><securecookie host=\"^hothardware\\.pricegrabber\\.com$\" name=\".*\"/><rule from=\"^http://hothardware\\.pricegrabber\\.com/\" to=\"https://hothardware.pricegrabber.com/\"/></ruleset>", "<ruleset name=\"PriceGrabber.com\" default_off=\"failed ruleset test\" f=\"PriceGrabber.xml\"><securecookie host=\".*\\.pricegrabber\\.com$\" name=\".+\"/><rule from=\"^http://ah\\.pricegrabber\\.com/\" to=\"https://d2xu6t5g41jmzy.cloudfront.net/\"/><rule from=\"^http://(?:ai\\.)?pricegrabber\\.com/\" to=\"https://www.pricegrabber.com/\"/><rule from=\"^http://partners\\.pricegrabber\\.com/\" to=\"https://partner.pricegrabber.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PriceRunner (partial)\" platform=\"mixedcontent\" f=\"PriceRunner.xml\"><securecookie host=\"^(?:partner|secure)\\.pricerunner\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?pricerunner\\.co(?:m|\\.uk)/favicon\\.ico\" to=\"https://secure.pricerunner.com/imgserver/images/v3/favicon.ico\"/><rule from=\"^http://(partner|secure)\\.pricerunner\\.com/\" to=\"https://$1.pricerunner.com/\"/></ruleset>", "<ruleset name=\"PriceZombie.com\" f=\"PriceZombie.com.xml\"><securecookie host=\"^\\.pricezombie\\.com$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Priceonomics.com (partial)\" f=\"Priceonomics.com.xml\"><rule from=\"^http://(www\\.)?priceonomics\\.com/static/\" to=\"https://$1priceonomics.com/static/\"/></ruleset>", "<ruleset name=\"Priceza.com\" f=\"Priceza.com.xml\"><rule from=\"^http://(?:www\\.)?priceza\\.com/\" to=\"https://www.priceza.com/\"/></ruleset>", "<ruleset name=\"Pridewatch.tw (partial)\" f=\"Pridewatch.tw.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Primabanka.sk\" f=\"Primabanka.sk.xml\"><rule from=\"^http://(?:www\\.)?primabanka\\.sk/\" to=\"https://www.primabanka.sk/\"/><rule from=\"^http://ib\\.primabanka\\.sk/\" to=\"https://ib.primabanka.sk/\"/></ruleset>", "<ruleset name=\"Primal Blueprint.com\" f=\"Primal_Blueprint.com.xml\"><securecookie host=\"^\\.www\\.primalblueprint\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Primbank.ru\" f=\"Primbank.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PrimeGrid.com\" f=\"PrimeGrid.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Primedice.com\" f=\"Primedice.com.xml\"><securecookie host=\"^\\.primedice\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Primes Eco Energie.com\" f=\"Primes_Eco_Energie.com.xml\"><securecookie host=\"^(?:w*\\.)?primesecoenergie\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Primus.com\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Primus.com.xml\"><securecookie host=\"^(?:.*\\.)?primus\\.com$\" name=\".*\"/><rule from=\"^http://primus\\.com/\" to=\"https://www.primus.com/\"/><rule from=\"^http://(home|ru|secure|www)\\.primus\\.com/\" to=\"https://$1.primus.com/\"/></ruleset>", "<ruleset name=\"Primus Canada (partial)\" default_off=\"failed ruleset test\" f=\"Primus_Canada.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://myaccount\\.primus\\.ca/\" to=\"https://myaccount.primustel.ca/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Princeton.edu (partial)\" f=\"Princeton.edu.xml\"><securecookie host=\"^(?:alumnicas|blogs|fed)\\.princeton\\.edu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"print.io\" f=\"Print.io.xml\"><rule from=\"^http://cdn\\.print\\.io/\" to=\"https://az412349.vo.msecnd.net/\"/></ruleset>", "<ruleset name=\"PrintFriendly.com (partial)\" default_off=\"webmaster request\" f=\"PrintFriendly.xml\"><rule from=\"^http://cdn\\.printfriendly\\.com/\" to=\"https://s3.amazonaws.com/cdn.printfriendly.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PrintMojo\" f=\"PrintMojo.xml\"><securecookie host=\"^www\\.printmojo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Print M3D.com (partial)\" f=\"Print_M3D.com.xml\"><securecookie host=\"^printm3d\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Printchomp.com\" f=\"Printchomp.com.xml\"><securecookie host=\"^(?:www)?\\.printchomp\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Printfection.com (partial)\" f=\"Printfection.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?printfection\\.com/(?!(?:account|css|images)(?:$|[?/])|assets/|css\\.php|skin1/|.+\\?store_page=cart$)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"printink.si\" default_off=\"redirects to http\" f=\"Printink.si.xml\"><exclusion pattern=\"^http://(?:www\\.)?printink\\.si/(?:$|[Cc]ontent/|Themes/)\"/><securecookie host=\"^(?:www)?\\.printint\\.si$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"printrbot (partial)\" f=\"Printrbot.xml\"><securecookie host=\"^(?:www\\.)?printrbot\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?printrbot\\.com/\" to=\"https://$1printrbot.com/\"/><rule from=\"^http://help\\.printrbot\\.com/favicon\\.ico\" to=\"https://printrbot.dozuki.com/favicon.ico\"/></ruleset>", "<ruleset name=\"PrioritySubmit.com\" default_off=\"mismatched\" f=\"PrioritySubmit.com.xml\"><securecookie host=\"^www\\.prioritysubmit\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Priory Group.com (partial)\" f=\"Priory_Group.com.xml\"><exclusion pattern=\"http://www\\.priorygroup\\.com/+(?!favicon\\.ico|images/|Sitefinity/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Prisma-IT.com\" f=\"Prisma-IT.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Prison Legal News.org\" f=\"Prison_Legal_News.org.xml\"><securecookie host=\"^www\\.prisonlegalnews\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Prison Phone Justice.org\" f=\"Prison_Phone_Justice.org.xml\"><securecookie host=\"^www\\.prisonphonejustice\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pritunl.com\" f=\"Pritunl.com.xml\"><securecookie host=\"^.*\\.?pritunl\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"priv.at (CAcert)\" platform=\"cacert\" default_off=\"failed ruleset test\" f=\"Priv.at.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Priv.gc.ca\" f=\"Priv.gc.ca.xml\"><securecookie host=\"^\\.priv\\.gc\\.ca$\" name=\".+\"/><rule from=\"^http://priv\\.gc\\.ca/\" to=\"https://www.priv.gc.ca/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Privacy-Handbuch.de\" f=\"Privacy-Handbuch.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Privacy SOS.org\" f=\"Privacy-SOS.xml\"><securecookie host=\"^\\.?privacysos\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"privacy-cd.org\" f=\"Privacy-cd.org.xml\"><securecookie host=\"^www\\.privacy-cd\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Australian Privacy Foundation\" f=\"Privacy.org.au.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PrivacyChoice (partial)\" default_off=\"failed ruleset test\" f=\"PrivacyChoice.xml\"><rule from=\"^http://(?:www\\.)?privacychoice\\.org/\" to=\"https://www.privacychoice.org/\"/></ruleset>", "<ruleset name=\"Privacy Enforcement.net\" f=\"Privacy_Enforcement.net.xml\"><rule from=\"^http://privacyenforcement\\.net/\" to=\"https://www.privacyenforcement.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Privacy Not Prism.org.uk\" f=\"Privacy_Not_Prism.org.xml\"><securecookie host=\"^www\\.privacynotprism\\.org\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?privacynotprism\\.org\\.uk/\" to=\"https://www.privacynotprism.org.uk/\"/></ruleset>", "<ruleset name=\"Privacy Solutions.no\" default_off=\"failed ruleset test\" f=\"Privacy_Solutions.no.xml\"><securecookie host=\"^track\\.privacysolutions\\.no$\" name=\"\"/><rule from=\"^http://((?:blog|track|www)\\.)?privacysolutions\\.no/\" to=\"https://$1privacysolutions.no/\"/></ruleset>", "<ruleset name=\"Privacy Tool.org\" f=\"Privacy_Tool.org.xml\"><securecookie host=\"^(?:www\\.)?privacytool\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"privacy tools.io\" f=\"Privacy_tools.io.xml\"><securecookie host=\"^\\.privacytools\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Privacyfix\" default_off=\"failed ruleset test\" f=\"Privacyfix.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Privacy Rights Clearinghouse\" f=\"Privacyrights.org.xml\"><rule from=\"^http://(?:www\\.)?privacyrights\\.org/\" to=\"https://www.privacyrights.org/\"/></ruleset>", "<ruleset name=\"Privacyscore\" default_off=\"mismatched\" f=\"Privacyscore.com.xml\"><securecookie host=\"^privacyscore\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?privacyscore\\.com/\" to=\"https://privacyscore.com/\"/></ruleset>", "<ruleset name=\"PrivatVPN\" f=\"PrivatVPN.xml\"><rule from=\"^http://(?:www\\.)privatevpn\\.com/\" to=\"https://www.privatevpn.com/\"/></ruleset>", "<ruleset name=\"Privatbanka.sk\" f=\"Privatbanka.sk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Private Internet Access.com\" f=\"Private-Internet-Access.xml\"><securecookie host=\"^www\\.privateinternetaccess\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Private Layer\" default_off=\"failed ruleset test\" f=\"Private-Layer.xml\"><securecookie host=\"^.*\\.privatelayer\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Private Tunnel.com\" f=\"Private-Tunnel.xml\"><securecookie host=\"^www\\.privatetunnel\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Private-names.ru\" f=\"Private-names.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PrivateCore.com\" f=\"PrivateCore.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PrivatePaste.com\" default_off=\"failed ruleset test\" f=\"PrivatePaste.xml\"><rule from=\"^http://([\\w-]+\\.)?privatepaste\\.com/\" to=\"https://$1privatepaste.com/\"/></ruleset>", "<ruleset name=\"PrivateWifi.com\" platform=\"mixedcontent\" f=\"PrivateWifi.xml\"><securecookie host=\"^(?:.*\\.)?privatewifi\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Privatelee.com\" f=\"Privatelee.com.xml\"><securecookie host=\"^\\.privatelee\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"privatesearch.io\" default_off=\"failed ruleset test\" f=\"Privatesearch.io.xml\"><securecookie host=\"^\\.privatesearch\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Privnote.com\" f=\"Privnote.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pro-Linux.de\" f=\"Pro-Linux.de.xml\"><securecookie host=\"^(www\\.)?pro-linux\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pro-Managed\" f=\"Pro-Managed.xml\"><rule from=\"^http://(?:www\\.)?pro-managed\\.com/\" to=\"https://pro-managed.com/\"/></ruleset>", "<ruleset name=\"Pro-market.net\" default_off=\"failed ruleset test\" f=\"Pro-market.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ProBoards (partial)\" f=\"ProBoards.xml\"><exclusion pattern=\"http://help\\.proboards\\.com/+(?!$|\\?)\"/><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http://d\\.prbrds\\.com/\" to=\"https://ss.prbrds.com/\"/><rule from=\"^http://help\\.proboards\\.com/.*\" to=\"https://www.proboards.com/forum-help-guide\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ProPublica.org\" f=\"ProPublica.org.xml\"><securecookie host=\"^(?:.*\\.)?propublica\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?propublica\\.net/+\" to=\"https://www.propublica.org/\"/><rule from=\"^http://cdn\\.propublica\\.net/\" to=\"https://s3.amazonaws.com/cdn.propublica.net/\"/><rule from=\"^http://(www\\.|mail\\.|projects\\.|static\\.|securedrop\\.)?propublica\\.org/\" to=\"https://$1propublica.org/\"/><rule from=\"^http://tiles-[abcd]\\.propublica\\.org/\" to=\"https://d3i4wq2ul46tvd.cloudfront.net/\"/></ruleset>", "<ruleset name=\"ProQuest.com (partial)\" default_off=\"failed ruleset test\" f=\"ProQuest.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ProVenue.net\" f=\"ProVenue.net.xml\"><securecookie host=\"^\\.provenue\\.net$\" name=\".+\"/><rule from=\"^http://www\\.provenue\\.net/\" to=\"https://www.provenue.net/\"/></ruleset>", "<ruleset name=\"ProWebSector.gr (partial)\" platform=\"mixedcontent\" f=\"ProWebSector.gr.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ProŽeny.cz\" f=\"ProZeny.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pro Bike Kit (partial)\" f=\"Pro_Bike_Kit.xml\"><rule from=\"^http://(?:www\\.)?probikekit\\.co\\.uk/([\\w-]+\\.(?:info|secure)|c-images/|common/|c-scripts/|css/|probikekit/)\" to=\"https://www.probikekit.co.uk/$1\"/></ruleset>", "<ruleset name=\"Prob Mods.org\" f=\"Prob_Mods.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Process-One.net (partial)\" f=\"Process-One.net.xml\"><securecookie host=\"^www\\.process-one\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?process-one\\.net/\" to=\"https://www.process-one.net/\"/><rule from=\"^http://(blog|static|support)\\.process-one\\.net/\" to=\"https://$1.process-one.net/\"/></ruleset>", "<ruleset name=\"Processing.org (partial)\" f=\"Processing.org.xml\"><securecookie host=\"^(?:forum)?\\.processing\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Procter & Gamble (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Procter-and-Gamble.xml\"><securecookie host=\"^(?:.*\\.)?pg\\.com$\" name=\".*\"/><securecookie host=\"^(?:.*\\.)?pgbrandsampler\\.ca$\" name=\".*\"/><rule from=\"^http://(www\\.)?brandsaver\\.ca/\" to=\"https://$1brandsaver.ca/\"/><rule from=\"^http://(www\\.)?(oralb|pg)\\.com/\" to=\"https://$1$2.com/\"/><rule from=\"^http://news\\.pg\\.com/sites/\" to=\"https://pg.newshq.businesswire.com/sites/\"/><rule from=\"^http://(www\\.)?pgbrandsampler\\.ca/\" to=\"https://$1pgbrandsampler.ca/\"/><rule from=\"^http://(?:media\\.)?pgeveryday(\\.ca|solutions\\.com)/\" to=\"https://www.pgeveryday$1/\"/><rule from=\"^http://www\\.pgeverydaysolutions\\.com/(content/|pgeds/(en_US/data_root/|(register-eds|sign-in)\\.jsp))\" to=\"https://www.pgeverydaysolutions.com/$1\"/><rule from=\"^http://www\\.pgeveryday\\.ca/(css/|images/|(log-in|register)\\.jsp|spacer\\.gif)\" to=\"https://www.pgeveryday.ca/$1\"/></ruleset>", "<ruleset name=\"Product Hunt.com\" f=\"ProductHunt.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Product Safety Recalls Australia\" f=\"ProductSafetyRecallsAustralia.xml\"><rule from=\"^http://(?:www\\.)?recalls\\.gov\\.au/\" to=\"https://www.recalls.gov.au/\"/></ruleset>", "<ruleset name=\"Product Safety.gov.au\" f=\"Product_Safety.gov.au.xml\"><securecookie host=\"^\\.www\\.productsafety\\.gov\\.au$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?productsafety\\.gov\\.au/\" to=\"https://www.productsafety.gov.au/\"/></ruleset>", "<ruleset name=\"Professional Security Testers.org\" f=\"Professional_Security_Testers.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ProfessorMesser.com\" f=\"ProfessorMesser.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ProfitBricks.co.uk\" f=\"ProfitBricks.co.uk.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ProfitBricks.de\" f=\"ProfitBricks.de.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ProfitBricks.com (partial)\" f=\"ProfitBricks.xml\"><exclusion pattern=\"^http://info\\.profitbricks\\.com/(?!css/|images/|js/|rs/)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://info\\.profitbricks\\.com/\" to=\"https://na-sj02.marketo.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ProgrammableWeb.com\" platform=\"mixedcontent\" f=\"ProgrammableWeb.xml\"><securecookie host=\".*\\.programmableweb\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Progress.com (partial)\" default_off=\"failed ruleset test\" f=\"Progress.com.xml\"><securecookie host=\"^(?:(?:bizappstoday|blogs|community|corporateblog|origin-www|poweredbyprogress|viewfromtheedge|www)\\.)?progress\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"::progressive:: (partial)\" f=\"Progressive.hu.xml\"><securecookie host=\"^www\\.progressive\\.hu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Project Euler.net\" f=\"ProjectEuler.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.projecteuler\\.net/\" to=\"https://projecteuler.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ProjectHoneypot\" f=\"ProjectHoneypot.xml\"><securecookie host=\"^(?:www\\.)?projecthoneypot\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?projecthoneypot\\.org/\" to=\"https://www.projecthoneypot.org/\"/></ruleset>", "<ruleset name=\"Project-Syndicate.org\" f=\"ProjectSyndicate.xml\"><securecookie host=\"^(?:www)?\\.project-syndicate\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Project Dent.com\" f=\"Project_Dent.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(www\\.)?projectdent\\.com/\" to=\"https://projectdent.com/\"/></ruleset>", "<ruleset name=\"Project Euclid.org\" f=\"Project_Euclid.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Project Meshnet.org (partial)\" default_off=\"failed ruleset test\" f=\"Project_Meshnet.xml\"><securecookie host=\"^(?:wiki)?\\.projectmeshnet\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Project Vote Smart\" f=\"Project_Vote_Smart.xml\"><securecookie host=\"^votesmart\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Project Wonderful\" f=\"Project_Wonderful.xml\"><securecookie host=\"^(?:www\\.)?projectwonderful\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Projectplace.com (problematic)\" default_off=\"expired, self-signed\" f=\"Projectplace.com-problematic.xml\"><securecookie host=\"^intranet\\.projectplace\\.com$\" name=\".+\"/><rule from=\"^http://intranet\\.projectplace\\.com/\" to=\"https://intranet.projectplace.com/\"/></ruleset>", "<ruleset name=\"Projectplace.com (partial)\" f=\"Projectplace.com.xml\"><securecookie host=\"^projectplace\\.(?:idea|user)s\\.dimelo\\.com$\" name=\".+\"/><securecookie host=\".*\\.projectplace\\.com$\" name=\".+\"/><rule from=\"^http://((?:help|(?:test-)?service|help|support|www)\\.)?projectplace\\.com/\" to=\"https://$1projectplace.com/\"/><rule from=\"^http://ideas\\.projectplace\\.com/\" to=\"https://projectplace.ideas.dimelo.com/\"/><rule from=\"^http://service\\.projectplacedocs\\.com/\" to=\"https://service.projectplacedocs.com/\"/></ruleset>", "<ruleset name=\"Projet-PLUME.org\" f=\"Projet-PLUME.org.xml\"><securecookie host=\"^\\.projet-plume\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Prolexic\" platform=\"mixedcontent\" f=\"Prolexic.xml\"><securecookie host=\"^(?:.*\\.)?prolexic\\.com$\" name=\".+\"/><rule from=\"^http://(?!ww\\.)(\\w+\\.)?prolexic\\.com/\" to=\"https://$1prolexic.com/\"/><rule from=\"^http://ww\\.prolexic\\.com/l/(\\w+/\\d{4}-\\d\\d-\\d\\d/\\w+)\" to=\"https://go.pardot.com/l/$1\"/><rule from=\"^http://ww\\.prolexic\\.com/(?:l/)?(\\?.*)?$\" to=\"https://www.prolexic.com/$1\"/></ruleset>", "<ruleset name=\"Prolific.com.tw\" default_off=\"self-signed\" f=\"Prolific.com.tw.xml\"><rule from=\"^http://(?:www\\.)?prolific\\.com\\.tw/\" to=\"https://www.prolific.com.tw/\"/></ruleset>", "<ruleset name=\"Prometeus.net\" f=\"Prometeus.net.xml\"><securecookie host=\"^(?:www\\.)?prometeus\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Prometheus-leirin tuki ry\" f=\"Prometheus-leirin-tuki-ry.xml\"><securecookie host=\"^\\.protu\\.fi$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Prometheus Global\" default_off=\"mismatched\" f=\"Prometheus_Global-problematic.xml\"><securecookie host=\"^prometheus-group\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?prometheus-?group\\.com/\" to=\"https://prometheus-group.com/\"/></ruleset>", "<ruleset name=\"Prometheus Global (partial)\" f=\"Prometheus_Global.xml\"><rule from=\"^http://(?:www\\.)?progllc\\.com/\" to=\"https://www.progllc.com/\"/></ruleset>", "<ruleset name=\"Prometric\" platform=\"mixedcontent\" f=\"Prometric.xml\"><securecookie host=\"^(?:.*\\.)?prometric.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?prometric\\.com/\" to=\"https://www.prometric.com/\"/></ruleset>", "<ruleset name=\"Proofpoint (partial)\" f=\"Proofpoint.xml\"><exclusion pattern=\"^http://www\\.proofpoint\\.com/(?!(?:asset|cs|image|partner)s/)\"/><securecookie host=\"^urldefense\\.proofpoint\\.com$\" name=\".+\"/><rule from=\"^http://((?:support|urldefense|www)\\.)?proofpoint\\.com/\" to=\"https://$1proofpoint.com/\"/><rule from=\"^http://go\\.proofpoint\\.com/(?=css/|images/|js/|rs/)\" to=\"https://na-n.marketo.com/\"/></ruleset>", "<ruleset name=\"proofpositivemedia.com\" f=\"Proofpositivemedia.com.xml\"><securecookie host=\"^api\\.proofpositivemedia\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PropellerAds.com (partial)\" f=\"PropellerAds.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://img\\.propellerads\\.com/\" to=\"https://ad.propellerads.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Propellerpops.com (partial)\" f=\"Propellerpops.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ProperPet.com\" f=\"ProperPet.com.xml\"><securecookie host=\"^\\.(?:www\\.)?properpet\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PropertyInvesting.com (partial)\" f=\"PropertyInvesting.com.xml\"><rule from=\"^http://(www\\.)?propertyinvesting\\.com/($|blog$|faqs$|files/|forums$|forums/active$|front$|modules/|resources$|search$|strategies$|themes/)\" to=\"https://$1propertyinvesting.com/$2\"/></ruleset>", "<ruleset name=\"Prosody.im\" f=\"Prosody.im.xml\"><rule from=\"^http://www\\.prosody\\.im/\" to=\"https://prosody.im/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Prospect Magazine (partial)\" f=\"Prospect-Magazine.xml\"><securecookie host=\"^(?:www\\.)?prospectmagazine\\.co\\.uk$\" name=\".*\"/><rule from=\"^http://(?:prospect\\.prospectpublishi\\.netdna-cdn\\.com|(www\\.)?prospectmagazine\\.co\\.uk)/\" to=\"https://$1prospectmagazine.co.uk/\"/></ruleset>", "<ruleset name=\"ProspectEye.com\" default_off=\"failed ruleset test\" f=\"ProspectEye.com.xml\"><securecookie host=\"^tr\\.prospecteye\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Prospera Credit Union\" f=\"Prospera-Credit-Union.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"prosystemfx.com\" f=\"Prosystemfx.com.xml\"><securecookie host=\"^(?:.*\\.)?prosystemfx\\.com$\" name=\".+\"/><rule from=\"^http://(?:(stage)?www\\.)?prosystemfx\\.com/\" to=\"https://$1www.prosystemfx.com/\"/><rule from=\"^http://cchknowledgecenter\\.prosystemfx\\.com/\" to=\"https://cchknowledgecenter.prosystemfx.com/\"/></ruleset>", "<ruleset name=\"ProteanSec.com\" f=\"ProteanSec.com.xml\"><securecookie host=\"^\\.proteansec\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ProtectWise.com\" f=\"ProtectWise.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://protectwise\\.com/\" to=\"https://www.protectwise.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Protect Network\" default_off=\"failed ruleset test\" f=\"Protect_Network.xml\"><securecookie host=\"^app\\.protectnetwork\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ProtectedText.com\" f=\"ProtectedText.com.xml\"><rule from=\"^http://protectedtext\\.com/\" to=\"https://www.protectedtext.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ProtonMail Hidden Service\" platform=\"mixedcontent\" f=\"Protonirockerxow.onion.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Provantage\" platform=\"mixedcontent\" f=\"Provantage.xml\"><securecookie host=\"^(?:.*\\.)?provantage\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?provantage\\.com/\" to=\"https://www.provantage.com/\"/></ruleset>", "<ruleset name=\"Proven Credible\" default_off=\"expired\" f=\"Proven_Credible.xml\"><securecookie host=\"^www\\.provencredible\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?provencredible\\.com/\" to=\"https://www.provencredible.com/\"/></ruleset>", "<ruleset name=\"Provenance.org\" f=\"Provenance.org.xml\"><securecookie host=\"^www\\.provenance\\.org$\" name=\".+\"/><rule from=\"^http://provenance\\.org/\" to=\"https://www.provenance.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Provide Support (mismatches)\" default_off=\"mismatched\" f=\"Provide-Support-mismatches.xml\"><rule from=\"^http://(?:www\\.)?providesupport\\.(\\w\\w)/s/\" to=\"https://providesupport.$1/s/\"/></ruleset>", "<ruleset name=\"Provide Support.com (partial)\" f=\"Provide-Support.xml\"><exclusion pattern=\"^http://www\\.providesupport\\.com/(?!s/|view/my-account/affiliate/referrals(?:$|\\?))\"/><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^image\\.\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ProxFree.com\" f=\"ProxFree.com.xml\"><securecookie host=\"^(?:m|www)?\\.proxfree\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Proxer.me\" f=\"Proxer.me.xml\"><exclusion pattern=\"^http://proxer\\.me/ashop\"/><securecookie host=\"^(.*\\.)?proxer\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Proxery.com\" f=\"Proxery.com.xml\"><securecookie host=\"^(?:www)?\\.proxery\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Proxify\" f=\"Proxify.xml\"><securecookie host=\"^(?:.*\\.)?proxify\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Proxmox.com\" default_off=\"failed ruleset test\" f=\"Proxmox.com.xml\"><securecookie host=\"^(?:forum\\.|www\\.)?proxmox\\.com$\" name=\".+\"/><rule from=\"^http://((?:forum|pve|www)\\.)?proxmox\\.com/\" to=\"https://$1proxmox.com/\"/></ruleset>", "<ruleset name=\"Proxy.org\" f=\"Proxy.org.xml\"><securecookie host=\"^(?:.*\\.)?proxy\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Proxy.sh\" f=\"Proxy.sh.xml\"><securecookie host=\"^proxy\\.sh$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ProxySite.com\" default_off=\"failed ruleset test\" f=\"ProxySite.com.xml\"><securecookie host=\"^(?:www)?\\.proxysite\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Proxy Solutions.net (partial)\" f=\"Proxy_Solutions.xml\"><exclusion pattern=\"^http://www\\.proxysolutions\\.net/+(?!(?:affiliates|proxy-services|support|your-proxy-account)(?:$|[?/])|favicon\\.ico|images/|ref/|wp-content/|wp-content/)\"/><securecookie host=\"^www\\.proxysolutions\\.net$\" name=\"^PAPVisitorId$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PrudentBear\" default_off=\"connection reset\" f=\"PrudentBear.xml\"><securecookie host=\"^www\\.prudentbear\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?prudentbear\\.com/\" to=\"https://www.prudentbear.com/\"/></ruleset>", "<ruleset name=\"PrxBx\" f=\"PrxBx.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"prxy.com\" default_off=\"missing certificate chain\" f=\"Prxy.com.xml\"><securecookie host=\"^\\.prxy\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?prxy\\.com/\" to=\"https://www.prxy.com/\"/></ruleset>", "<ruleset name=\"psbank.ru\" f=\"Psbank.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pso-vertrieb.de (partial)\" f=\"Pso-vertrieb.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pss.sk\" f=\"Pss.sk.xml\"><rule from=\"^http://(?:www\\.)?pss\\.sk/\" to=\"https://www.pss.sk/\"/><rule from=\"^http://moja\\.pss\\.sk/\" to=\"https://moja.pss.sk/\"/></ruleset>", "<ruleset name=\"pstatic.net\" platform=\"mixedcontent\" f=\"Pstatic.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PsychologicalScience.org\" f=\"PsychologicalScience.org.xml\"><securecookie host=\"^.+\\.psychologicalscience\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Psychology Today.com\" f=\"Psychology_Today.xml\"><securecookie host=\"^\\.\" name=\"^__utm\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pt engine.jp (partial)\" f=\"Pt_engine.jp.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pthree.org\" f=\"Pthree.org.xml\"><securecookie host=\"^pthree\\.org$\" name=\".+\"/><rule from=\"^http://(www\\.)?pthree\\.org/\" to=\"https://pthree.org/\"/></ruleset>", "<ruleset name=\"Ptpimg.me\" f=\"Ptpimg.me.xml\"><rule from=\"^http://(?:www\\.)?ptpimg\\.me/\" to=\"https://ptpimg.me/\"/></ruleset>", "<ruleset name=\"PubGears.com (partial)\" f=\"PubGears.com.xml\"><securecookie host=\"^ox-d\\.pubgears\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PubMatic.com (partial)\" f=\"PubMatic.xml\"><securecookie host=\"^.*\\.pubmatic\\.com$\" name=\".+\"/><rule from=\"^http://image(2|4)\\.pubmatic\\.com/\" to=\"https://simage$1.pubmatic.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PubMed.gov\" f=\"PubMed.gov.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PubNXT.net (partial)\" f=\"PubNXT.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PubNub (partial)\" f=\"PubNub.xml\"><securecookie host=\"^(?:\\.admin|help)\\.pubnub\\.com$\" name=\".+\"/><rule from=\"^http://cdn\\.pubnub\\.com/\" to=\"https://cdn.pubnub.com/\"/><rule from=\"^http://(admin|ps\\d*|pubsub)\\.pubnub\\.com/\" to=\"https://$1.pubnub.com/\"/><rule from=\"^http://(?:www\\.)?help\\.pubnub\\.com/\" to=\"https://help.pubnub.com/\"/></ruleset>", "<ruleset name=\"PubPeer.com\" f=\"PubPeer.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PubSoft.org\" default_off=\"missing certificate chain\" f=\"PubSoft.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pubdirecte.com\" f=\"Pubdirecte.com.xml\"><securecookie host=\"^secure\\.pubdirecte\\.com$\" name=\".+\"/><rule from=\"^http://(?:(?:secure|static|www)\\.)?pubdirecte\\.com/\" to=\"https://secure.pubdirecte.com/\"/></ruleset>", "<ruleset name=\"Publeaks.nl\" f=\"Publeaks.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Public Bank Malaysia\" f=\"Public-Bank-Malaysia.xml\"><securecookie host=\"^.*\\.pbebank\\.com$\" name=\".*\"/><rule from=\"^http://(www\\.)?pbebank\\.com(\\.my)?/\" to=\"https://www.pbebank.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Public-Idées (partial)\" f=\"Public-Idees.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Public Knowledge\" f=\"Public-Knowledge.xml\"><securecookie host=\"(?:^|\\.)publicknowledge\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?publicknowledge\\.org/\" to=\"https://www.publicknowledge.org/\"/></ruleset>", "<ruleset name=\"PLoS.org (partial)\" f=\"Public-Library-of-Science.xml\"><securecookie host=\"^\\.\" name=\"^_ga\"/><securecookie host=\"^\\w\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Public.Resource.Org\" default_off=\"failed ruleset test\" f=\"Public.Resource.Org.xml\"><rule from=\"^http://www\\.yeswescan\\.org/\" to=\"https://yeswescan.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Public Citizen\" f=\"PublicCitizen.xml\"><securecookie host=\"^(?:action|secure|www)\\.citizen\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?citizen\\.org/\" to=\"https://www.citizen.org/\"/><rule from=\"^http://(action|secure)\\.citizen\\.org/\" to=\"https://$1.citizen.org/\"/></ruleset>", "<ruleset name=\"PublicInsightNetwork.org\" default_off=\"failed ruleset test\" f=\"PublicInsightNetwork.org.xml\"><securecookie host=\"^(?:www\\.)?publicinsightnetwork\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Publicintelligence.net\" f=\"PublicIntelligence.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Public Mobile\" f=\"PublicMobile.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://(communaute|community)\\.publicmobile\\.ca/\" to=\"https://productioncommunity.publicmobile.ca/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Public Sector Management Program\" default_off=\"failed ruleset test\" f=\"PublicSectorManagementProgram.xml\"><rule from=\"^http://(?:www\\.)?psmprogram\\.gov\\.au/\" to=\"https://www.psmprogram.gov.au/\"/></ruleset>", "<ruleset name=\"Public Sector Superannuation Accumulation Plan\" f=\"PublicSectorSuperannuationAccumulationPlan.xml\"><rule from=\"^http://(?:www\\.)?pssap\\.gov\\.au/\" to=\"https://www.pssap.gov.au/\"/></ruleset>", "<ruleset name=\"Public Sector Superannuation Scheme\" f=\"PublicSectorSuperannuationScheme.xml\"><rule from=\"^http://(?:www\\.)?pss\\.gov\\.au/\" to=\"https://www.pss.gov.au/\"/></ruleset>", "<ruleset name=\"Public Object.com\" f=\"Public_Object.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Public Whip\" default_off=\"failed ruleset test\" f=\"Public_Whip.xml\"><securecookie host=\"^\\.publicwhip\\.org\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?publicwhip\\.org\\.uk/\" to=\"https://www.publicwhip.org.uk/\"/></ruleset>", "<ruleset name=\"publiekeomroep.nl (partial)\" f=\"Publiekeomroep.nl.xml\"><securecookie host=\"^cookiesv2\\.publiekeomroep\\.nl$\" name=\".+\"/><securecookie host=\"^\\.cookiesv2\\.publiekeomroep\\.nl$\" name=\"^\\w+balanceid$\"/><rule from=\"^http://cookiesv2\\.publiekeomroep\\.nl/\" to=\"https://cookiesv2.publiekeomroep.nl/\"/></ruleset>", "<ruleset name=\"PublicDemand\" default_off=\"failed ruleset test\" f=\"PublikDemand.xml\"><securecookie host=\"^www\\.publikdemand\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pubservice.com\" f=\"Pubservice.com.xml\"><securecookie host=\"^(?:www\\.)?pubservice\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Puhkaeestis.ee\" f=\"Puhkaeestis.ee.xml\"><rule from=\"^http://(?:www\\.)?puhkaeestis\\.ee/\" to=\"https://www.puhkaeestis.ee/\"/><rule from=\"^http://prelive\\.puhkaeestis\\.ee/\" to=\"https://prelive.puhkaeestis.ee/\"/></ruleset>", "<ruleset name=\"Pulpix.co\" default_off=\"failed ruleset test\" f=\"Pulpix.co.xml\"><securecookie host=\"^(?:player|www)\\.pulpix\\.co$\" name=\".+\"/><rule from=\"^http://pulpix\\.co/\" to=\"https://www.pulpix.co/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pulse.me\" default_off=\"failed ruleset test\" f=\"Pulse.me.xml\"><rule from=\"^http://(?:www\\.)?pulse\\.me/\" to=\"https://www.pulse.me/\"/></ruleset>", "<ruleset name=\"PulsePoint (mismatches)\" default_off=\"mismatched\" f=\"PulsePoint-mismatches.xml\"><rule from=\"^http://aperture\\.displaymarketplace\\.com/\" to=\"https://aperture.displaymarketplace.com/\"/></ruleset>", "<ruleset name=\"PulsePoint (partial)\" default_off=\"failed ruleset test\" f=\"PulsePoint.xml\"><securecookie host=\"^www\\.apertureinsight\\.com$\" name=\".*\"/><securecookie host=\"^login\\.stormpost\\.datranmedia\\.com$\" name=\".*\"/><securecookie host=\"^\\.\" name=\"^_ga\"/><securecookie host=\"^exchange\\.pulsepoint\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Puma.com\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Puma.com.xml\"><rule from=\"^http://www\\.puma\\.com/\" to=\"https://www.puma.com/\"/><rule from=\"^http://puma\\.com/\" to=\"https://www.puma.com/\"/><rule from=\"^http://assets\\.puma\\.com/\" to=\"https://assets.puma.com/\"/><rule from=\"^http://is\\.puma\\.com/\" to=\"https://is.puma.com/\"/></ruleset>", "<ruleset name=\"Pumo.com.tw (false MCB)\" platform=\"mixedcontent\" f=\"Pumo.com.tw-falsemixed.xml\"><securecookie host=\"^www\\.pumo\\.com\\.tw$\" name=\".+\"/><rule from=\"^http://www\\.pumo\\.com\\.tw/\" to=\"https://www.pumo.com.tw/\"/></ruleset>", "<ruleset name=\"Pumo.com.tw (partial)\" f=\"Pumo.com.tw.xml\"><rule from=\"^http://www\\.pumo\\.com\\.tw/(?=/*www/+(?:[\\w-]+/+)?(?:css/|favicon\\.ico|images/|inc/|top/))\" to=\"https://www.pumo.com.tw/\"/></ruleset>", "<ruleset name=\"Punterlink (partial)\" default_off=\"failed ruleset test\" f=\"Punterlink.xml\"><rule from=\"^http://cdn\\.punterlink\\.co\\.uk/\" to=\"https://3026-iamnoonesolution.netdna-ssl.com/\"/></ruleset>", "<ruleset name=\"Punto.ar\" f=\"Puntu.ar.xml\"><securecookie host=\"^punto\\.ar$\" name=\".+\"/><rule from=\"^http://www\\.punto\\.ar/\" to=\"https://punto.ar/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Puppet Labs.com\" default_off=\"failed ruleset test\" f=\"Puppet_Labs.xml\"><exclusion pattern=\"^http://info\\.puppetlabs\\.com/(?!css/|images/|js/)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://info\\.puppetlabs\\.com/\" to=\"https://na-h.marketo.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Purdue University Association\" default_off=\"failed ruleset test\" f=\"Purdue_Alumni_Association.xml\"><securecookie host=\"^www\\.purduealumni\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?purduealum(ni)?\\.org/\" to=\"https://www.purduealum$1.org/\"/></ruleset>", "<ruleset name=\"Purdue Plant Doctor\" f=\"Purdue_Plant_Doctor.xml\"><securecookie host=\"^(?:www\\.)?purdueplantdoctor\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Purdue University (partial)\" f=\"Purdue_University.xml\"><exclusion pattern=\"^http://(?:www\\.)?science\\.purdue\\.edu/.+\\.html\"/><securecookie host=\"^.+\\.purdue\\.edu$\" name=\".+\"/><rule from=\"^http://((?:(?:www\\.)?(?:admissions?|ag|agriculture|cancerresearch|ces|cyber|discoverypark|diversity|donate|dro|extension|nano|pathwaytopurdue|proed|support|tedx|vet)|www\\.acsl|qa\\.admission|intranet2?\\.ag|www[23]\\.ag|www\\.ag(?:con|ry)|autodiscover|(?:aragorn|printers)\\.bio|(?:qa|www)\\.(?:bioinformatics|hhs|irb|onepurdue|police)|blackboard|calendar|www\\.cco|www\\.cec|cassandra\\.cerias|www\\.cie|www\\.cri|(?:caid|editcourses|jafci(?:dev)?|testwww1|www)\\.chem|www\\.courses|portals\\.cs|www\\.distance|directory|qa\\.diversity|(?:myepoint|sharepoint)\\.ecn|(?:collaborate|discover)\\.education|(?:prod\\.|qa\\.)?owl\\.english|www\\.eventreg|(?:autodiscover\\.|legacy\\.)?exchange|www\\.four-h|giving|www\\.gradschool|www\\.hort|web\\.ics|www\\.ippu|www\\.is(?:co|s)|(?:erp-portal-prd|esa-oas-prod|goremote|help|ias|mdc|wiki|www2)\\.itap|(?:risque|www)\\.itns|(?:intra|webapps)\\.krannert|legacy|(?:apps|catalog|login\\.ezproxy|www1)\\.lib|(?:gmig|www)\\.math|www\\.mgmt|mycourses|mymail|(?:selfservice|wl)\\.mypurdue|owa|legacy\\.owa|qa\\.pathwaytopurdue|www\\.pec|www\\.pharmacy|(?:fixmyhome|trackpad)\\.physfac|www\\.physics|purr|web\\.rcac|(?:help|kb|lpvwebresnet01|my|stats|trams)\\.resnet|gar2\\.science|search|www\\.stud(?:ent-orgs|yabroad)|www\\.tech|(?:news|qa|www)\\.uns|qa\\.vet|www|qa\\.www)\\.)?purdue\\.edu/\" to=\"https://$1purdue.edu/\"/><rule from=\"^http://(?:www\\.)?(addl|bio|cerias|cla|cs|eas|gbe|getinvolved|housing|itap|krannert|lib|ezproxy\\.lib|rcac|science|union)\\.purdue\\.edu/\" to=\"https://www.$1.purdue.edu/\"/><rule from=\"^http://www\\.ansc\\.purdue\\.edu/(?:\\?.*)?$\" to=\"https://www.ag.purdue.edu/ansc\"/><rule from=\"^http://btny\\.purdue\\.edu/(\\?.*)?$\" to=\"https://www.ag.purdue.edu/btny$1\"/><rule from=\"^http://(?:www\\.)?cancer\\.purdue\\.edu/(?:[^\\?]*)(\\?.*)?$\" to=\"https://www.cancerresearch.purdue.edu/$1\"/><rule from=\"^http://www\\.cfs\\.purdue\\.edu/(?:\\?.*)?$\" to=\"https://www.purdue.edu/hhs/\"/><rule from=\"^http://www\\.cfs\\.purdue\\.edu/extension(?:[/\\?].*)?$\" to=\"https://www.purdue.edu/hhs/extension/\"/><rule from=\"^http://epics\\.ecn\\.purdue\\.edu/\" to=\"https://engineering.purdue.edu/EPICS\"/><rule from=\"^http://(?:www\\.)?(engineering|gateway|marketing|mypurdue)\\.purdue\\.edu/\" to=\"https://$1.purdue.edu/\"/><rule from=\"^http://www\\.entm\\.purdue\\.edu/(?:\\?.*)?$\" to=\"https://www.ag.purdue.edu/entm/Pages/default.aspx\"/><rule from=\"^http://india\\.fll\\.purdue\\.edu/(?:\\?.*)?$\" to=\"https://www.cla.purdue.edu/fll/\"/><rule from=\"^http://flowers\\.hort\\.purdue\\.edu/(?:\\?.*)?$\" to=\"https://ag.purdue.edu/hla/lopezlab/Pages/default.aspx\"/><rule from=\"^http://a(?:pi01|sc02)p\\.lib\\.purdue\\.edu/\" to=\"https://www.lib.purdue.edu/\"/><rule from=\"^http://docs\\.lib\\.purdue\\.edu/assets/\" to=\"https://dlpurdue.bepress.com/assets/\"/><rule from=\"^http://guides\\.lib\\.purdue\\.edu/(css\\d*|data|js)/\" to=\"https://libguides.com/$1/\"/><rule from=\"^http://scholarly\\.lib\\.purdue\\.edu/\" to=\"https://www.lib.purdue.edu/scholarly\"/><rule from=\"^http://(?:www1?\\.)?psych\\.purdue\\.edu/\" to=\"https://www1.psych.purdue.edu/\"/><rule from=\"^http://c89\\.science\\.purdue\\.edu/$\" to=\"https://www.science.purdue.edu/\"/></ruleset>", "<ruleset name=\"Pure Auto (partial)\" f=\"Pure-Auto.xml\"><securecookie host=\"^(?:.*\\.)?purecars\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pure-privacy.org\" default_off=\"failed ruleset test\" f=\"Pure-privacy.org.xml\"><rule from=\"^http://(?:www\\.)?pure-privacy\\.org/\" to=\"https://pure-privacy.org/\"/></ruleset>", "<ruleset name=\"PureFTPd.org\" f=\"PureFTPd.org.xml\"><rule from=\"^http://(sharedance|skycache|php-webdav|mysql-udf-global-user-variables|libpuzzle)?\\.pureftpd\\.org/\" to=\"https://www.pureftpd.org/project/$1\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PureHacking\" f=\"PureHacking.xml\"><rule from=\"^http://(?:www\\.)?purehacking\\.com/\" to=\"https://www.purehacking.com/\"/></ruleset>", "<ruleset name=\"PureInfo\" f=\"PureInfo.xml\"><securecookie host=\"^\\.pureinfo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PureVPN.com (partial)\" f=\"PureVPN.xml\"><exclusion pattern=\"^http://billing\\.purevpn\\.com/(?:announcements|downloads|index|knowledgebase)\\.php\"/><securecookie host=\"^\\.purevpn\\.com$\" name=\"^(?:first_visit|incap_ses_\\d+_\\d+|nlbi_\\d+|visid_incap_\\d+|visits)$\"/><securecookie host=\"^billing\\.purevpn\\.com$\" name=\"^___utm\\w+$\"/><securecookie host=\"^www\\.purevpn\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pure Cambogia.com\" f=\"Pure_Cambogia.com.xml\"><securecookie host=\"^\\.purecambogia\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pure Chat.com (partial)\" f=\"Pure_Chat.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pureloto.com\" f=\"Pureloto.com.xml\"><securecookie host=\"^(?:www)?\\.pureloto\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Purina.com (partial)\" f=\"Purina.com.xml\"><securecookie host=\"^(?:www)?\\.purina\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Purina Store.com (partial)\" f=\"Purina_Store.com.xml\"><securecookie host=\"^(?:www)?\\.purinastore\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Puritan.com\" f=\"Puritan.com.xml\"><rule from=\"^http://(?:www\\.)?puritan\\.com/\" to=\"https://www.puritan.com/\"/></ruleset>", "<ruleset name=\"Push.IO (partial)\" f=\"Push.IO.xml\"><securecookie host=\"^manage\\.push\\.io$\" name=\".+\"/><rule from=\"^http://(manage|status)\\.push\\.io/\" to=\"https://$1.push.io/\"/></ruleset>", "<ruleset name=\"PushPlay (partial)\" f=\"PushPlay.xml\"><securecookie host=\"^(?:www\\.)?pushplay\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Push Popcorn\" default_off=\"failed ruleset test\" f=\"Push_Popcorn.xml\"><securecookie host=\"^(?:w*\\.)?pushpopcorn\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pushbullet.com\" f=\"Pushbullet.com.xml\"><securecookie host=\"^\\.pushbullet\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pusher.com (partial)\" f=\"Pusher.com.xml\"><rule from=\"^http://((?:app|js|sockjs|www)\\.)?pusher\\.com/\" to=\"https://$1pusher.com/\"/></ruleset>", "<ruleset name=\"Pusher (partial)\" f=\"Pusher.xml\"><securecookie host=\"^app\\.pusherapp\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?pusherapp\\.com/\" to=\"https://pusher.com/\"/><rule from=\"^http://(app|ws)\\.pusherapp\\.com/\" to=\"https://$1.pusherapp.com/\"/></ruleset>", "<ruleset name=\"Pushover.net (partial)\" f=\"Pushover.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"put.as\" f=\"Put.as.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"put.io\" f=\"Put.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PutLocker (partial)\" f=\"PutLocker.xml\"><rule from=\"^http://wac\\.51d5\\.edgecastcdn\\.net/8051D5/\" to=\"https://gs1.wac.edgecastcdn.net/8051D5/\"/><rule from=\"^http://(?:images|static)\\.putlocker\\.com/\" to=\"https://images.putlocker.com/\"/><rule from=\"^http://(www\\.)?putlocker\\.com/(?=favicon\\.ico|fuu\\.php|images/|include/|putlocker\\.ico)\" to=\"https://$1putlocker.com/\"/></ruleset>", "<ruleset name=\"puu.sh\" f=\"Puu.sh.xml\"><securecookie host=\"^\\.puu\\.sh$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"puush.me\" f=\"Puush.me.xml\"><securecookie host=\"^\\.puush\\.me$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?puush\\.me/\" to=\"https://puush.me/\"/></ruleset>", "<ruleset name=\"pviq.com\" f=\"Pviq.com.xml\"><securecookie host=\"^(?:www\\.)?pviq\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PwdHash.com\" f=\"PwdHash.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pwmt.org\" f=\"Pwmt.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PyCon.org (partial)\" default_off=\"failed ruleset test\" f=\"PyCon.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PyCon.sg\" f=\"PyCon.sg.xml\"><securecookie host=\"^pycon\\.sg$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PyPIP.in (partial)\" default_off=\"refused\" f=\"PyPIP.in.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PyWeek.org\" default_off=\"failed ruleset test\" f=\"PyWeek.org.xml\"><rule from=\"^http://pyweek\\.org/\" to=\"https://www.pyweek.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pyd.io\" f=\"Pyd.io.xml\"><securecookie host=\"^(?:www\\.)?pyd\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pydio.com\" f=\"Pydio.com.xml\"><rule from=\"^http://www\\.pydio\\.com/\" to=\"https://pydio.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pyneo.org\" default_off=\"failed ruleset test\" f=\"Pyneo.org.xml\"><securecookie host=\"^pyneo\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Python.org (partial)\" f=\"Python.org.xml\"><exclusion pattern=\"^http://svn\\.python\\.org/$\"/><securecookie host=\"^(bugs|cheeseshop|discuss|openbadges\\.es|jobs|mail|packages|packaging|pl|planet|speed|staging|staging2|status|testpypi|warehouse|warehouse-staging|)\\.python\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PythonAnywhere.com\" f=\"PythonAnywhere.com.xml\"><securecookie host=\"^www\\.pythonanywhere\\.com$\" name=\".+\"/><rule from=\"^http://pythonanywhere\\.com/\" to=\"https://www.pythonanywhere.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pythonclock.org\" f=\"Pythonclock.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pythonhosted.org\" f=\"Pythonhosted.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Q1Media.com (partial)\" f=\"Q1Media.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://ads\\.q1media\\.com/\" to=\"https://ib.adnxs.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"q3k.org\" default_off=\"failed ruleset test\" f=\"Q3k.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Q7.com\" f=\"Q7-Enterprises.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Q8Car.com (partial)\" default_off=\"failed ruleset test\" f=\"Q8Car.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"QB50.eu\" f=\"QB50.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"QCon New York.com\" f=\"QCon_New_York.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"QCon SF.com\" default_off=\"failed ruleset test\" f=\"QCon_SF.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"QFX Software.com\" f=\"QFX_Software.xml\"><rule from=\"^http://download\\.qfxsoftware\\.com/\" to=\"https://secure.qfxsoftware.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"QIP\" f=\"QIP.xml\"><securecookie host=\"^\\.qip\\.ru$\" name=\".+\"/><rule from=\"^http://((?:api|download|help|kards|lstats|maps|mail|memori|news|partner|pass|photo|pip|s|shot|search|welcome|www)\\.)?qip\\.ru/\" to=\"https://$1qip.ru/\"/><rule from=\"^http://mblogi\\.qip\\.ru/+\\??$\" to=\"https://qip.ru/?mblogi\"/><rule from=\"^http://mblogi\\.qip\\.ru/+[^?]*\\?\" to=\"https://qip.ru/?mblogi&\"/></ruleset>", "<ruleset name=\"QQ.com-Problematic\" f=\"QQ.com-Problematic.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"QQ.com (mixed content)\" platform=\"mixedcontent\" f=\"QQ.com-mixedcontent.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"QQ.com (partial)\" f=\"QQ.xml\"><rule from=\"^http://(kf|service)\\.qq\\.com/$\" to=\"https://kf.qq.com/index.html\"/><rule from=\"^http://(kf|service)\\.qq\\.com/\" to=\"https://kf.qq.com/\"/><rule from=\"^http://img\\d\\.sj\\.qq\\.com/\" to=\"https://img1.sj.qq.com/\"/><exclusion pattern=\"^http://map\\.qq\\.com/(?!api/|history\\.html$)\"/><exclusion pattern=\"^http://ossweb-img\\.qq\\.com/images/js/share/share\\.shtml\"/><exclusion pattern=\"^http://pingfore\\.qq\\.com/$\"/><exclusion pattern=\"^http://v\\.qq\\.com/(?!x/)\"/><exclusion pattern=\"^http://video\\.qq\\.com/(?!fcgi-bin/)\"/><exclusion pattern=\"^http://y\\.qq\\.com/yanchu/\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"QR Server.com (partial)\" f=\"QR_Server.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"QR Solutions.com\" f=\"QR_Solutions.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"QS LI.com\" default_off=\"plaintext reply\" f=\"QS_LI.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://(?:www\\.)?qsli\\.com/\" to=\"https://www.qsli.com/\"/></ruleset>", "<ruleset name=\"QSstats.com\" f=\"QSstats.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://qsstats\\.com/\" to=\"https://www.qsstats.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"QStack.com\" f=\"QStack.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"QT-apps.org\" f=\"QT-apps.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"QTH.com (partial)\" f=\"QTH.com.xml\"><securecookie host=\"^\\.billing\\.qth\\.com$\" name=\"\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"QUnit JS.com\" f=\"QUnit_JS.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"QWK.net (partial)\" f=\"QWK.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"QWKnet LLC.com (partial)\" f=\"QWKnet_LLC.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"QXL.dk\" f=\"QXL.dk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"QXL static.dk\" f=\"QXL_static.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"QXL static.no\" f=\"QXL_static.no.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Qabel.de\" f=\"Qabel.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"qbox.me\" f=\"Qbox.me.xml\"><exclusion pattern=\"^http://dn-geekpark-new\\.qbox\\.me/(topics|users|videos)/\"/><rule from=\"^http://dn-geekpark-new\\.qbox\\.me/\" to=\"https://dn-geekpark-new.qbox.me/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Qbrick.com (partial)\" default_off=\"failed ruleset test\" f=\"Qbrick.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Qcloud.com (partial)\" default_off=\"failed ruleset test\" f=\"Qcloud.com.xml\"><exclusion pattern=\"^http://ssl\\.xui\\.ptlogin2\\.qcloud\\.com/$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Qhimg.com\" f=\"Qhimg.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(p|s)(0|1|2|3|4|5)\\.qhimg\\.com/\" to=\"https://$1$2.ssl.qhimg.com/\"/><rule from=\"^http://p\\d+\\.qhimg\\.com/\" to=\"https://p.ssl.qhimg.com/\"/><rule from=\"^http://s\\d+\\.qhimg\\.com/\" to=\"https://s.ssl.qhimg.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"QiDian-Problematic\" f=\"QiDian-Problematic.xml\"><rule from=\"^http://(1\\.if\\.|www\\.)?qidian\\.com/Book/(\\d+)\\.aspx\" to=\"https://book.qidian.com/info/$2\"/><rule from=\"^http://(1\\.if\\.|www\\.)?qidian\\.com/\" to=\"https://www.qidian.com/\"/><exclusion pattern=\"^http://www.qidian\\.com/2009$\"/><exclusion pattern=\"^http://(1\\.if\\.|www\\.)?qidian\\.com/News/\\w+\\.aspx\"/><rule from=\"^http://(\\d+)\\.qidian\\.com/$\" to=\"https://book.qidian.com/info/$1\"/></ruleset>", "<ruleset name=\"QiDian (partial)\" default_off=\"failed ruleset test\" f=\"QiDian.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Qibla.com\" f=\"Qibla.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Qihu CDN.com\" default_off=\"failed ruleset test\" f=\"Qihu_CDN.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Qiwi.com\" f=\"Qiwi.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Qiyi.com (partial)\" f=\"Qiyi.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Qiyipic.com\" default_off=\"sometimes SSL_ERROR_INTERNAL_ERROR_ALERT in China\" f=\"Qiyipic.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Qlogo.cn\" f=\"Qlogo.cn.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"qnetp.net (partial)\" default_off=\"failed ruleset test\" f=\"Qnetp.net.xml\"><securecookie host=\"^\\.mail\\.qnetp\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Qnsr.com\" f=\"Qnsr.com.xml\"><rule from=\"^http://e1\\.cdn\\.qnsr\\.com/\" to=\"https://o1.qnsr.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Qoo10.cn (partial)\" f=\"Qoo10.cn.xml\"><securecookie host=\"^(?:my|qsm)\\.qoo10\\.cn$\" name=\".+\"/><rule from=\"^http://(gd|static)(?:ssl)?\\.image-qoo10\\.cn/\" to=\"https://$1ssl.image-qoo10.cn/\"/><rule from=\"^http://(my|qsm)\\.qoo10\\.cn/\" to=\"https://$1.qoo10.cn/\"/></ruleset>", "<ruleset name=\"Qoo10.com (partial)\" f=\"Qoo10.com.xml\"><securecookie host=\"^(?:kwave|my)\\.qoo10\\.com$\" name=\".+\"/><rule from=\"^http://dp\\.image-gmkt\\.com/\" to=\"https://staticssl.image-gmkt.com/\"/><rule from=\"^http://(gd|static)(?:ssl)?\\.image-gmkt\\.com/\" to=\"https://$1ssl.image-gmkt.com/\"/><rule from=\"^http://(kwave|my|pg)\\.qoo10\\.com/\" to=\"https://$1.qoo10.com/\"/></ruleset>", "<ruleset name=\"Qpic.cn (partial)\" f=\"Qpic.cn.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Qrobe.it\" f=\"Qrobe.it.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.qrobe\\.it/\" to=\"https://qrobe.it/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"qrq.de (partial)\" default_off=\"self-signed\" f=\"Qrq.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Qrz.com\" f=\"Qrz.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Qt-project.org\" default_off=\"failed ruleset test\" f=\"Qt-project.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://qt-project\\.org/\" to=\"https://www.qt-project.org/\"/><rule from=\"^http://bugreports\\.qt-project\\.org/\" to=\"https://bugreports.qt.io/\"/><rule from=\"^http://planet\\.qt-project\\.org/\" to=\"https://planet.qt.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Qt.io\" f=\"Qt.io.xml\"><rule from=\"^http://qt\\.io/\" to=\"https://www.qt.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Qt Cloud Services.com\" default_off=\"failed ruleset test\" f=\"Qt_Cloud_Services.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://status\\.qtcloudservices\\.com/\" to=\"https://qtcloudservices.statuspage.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Qt Developer Days.com\" f=\"Qt_Developer_Days.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Qtastatic.com\" f=\"Qtastatic.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"QuKuai.com (partial)\" f=\"QuKuai.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"quackquackgo.nl\" default_off=\"failed ruleset test\" f=\"Quackquackgo.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"QuadPoint.org\" f=\"QuadPoint.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Quadrant.org.au\" f=\"Quadrant.org.au.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Quadrantsec.com\" f=\"Quadrantsec.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Quadriga CX.com\" f=\"Quadriga_CX.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Quagga.net\" f=\"Quagga.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"QuakeNet.org\" f=\"QuakeNet.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://quakenet\\.org/\" to=\"https://www.quakenet.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Qualaris.com\" f=\"Qualaris.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.qualaris\\.com/\" to=\"https://qualaris.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Qualcomm.com (partial)\" default_off=\"failed ruleset test\" f=\"Qualcomm.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://qualcomm\\.com/\" to=\"https://www.qualcomm.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Quality-ABO.de (partial)\" f=\"Quality-ABO.de.xml\"><exclusion pattern=\"^http://www\\.quality-abo\\.de/(?!QA/|mlb_public/)\"/><rule from=\"^http://quality-abo\\.de/\" to=\"https://www.quality-abo.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"QualityAgent (partial)\" default_off=\"refused\" f=\"QualityAgent.xml\"><securecookie host=\"^.+\\.qualityunit\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"QualityUnit.com\" f=\"QualityUnit.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Qualtrics (surveys)\" f=\"Qualtrics.xml\"><exclusion pattern=\"^http://www\\.qualtrics\\.com/+(?:$|\\?)\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http://qualtrics\\.com/\" to=\"https://www.qualtrics.com/\"/><rule from=\"^http://cloudfront\\.qualtrics\\.com/\" to=\"https://d3gbx5vaoeb2ad.cloudfront.net/\"/><rule from=\"^http://([\\w-]+)\\.((?:az1|us2|asia)\\.)?qualtrics\\.com/\" to=\"https://$1.$2qualtrics.com/\"/></ruleset>", "<ruleset name=\"Qualys.com\" f=\"Qualys.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://laws\\.qualys\\.com/+\" to=\"https://community.qualys.com/blogs/laws-of-vulnerabilities/\"/><rule from=\"^http://news\\.qualys\\.com/+\" to=\"https://community.qualys.com/blogs/news/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Quamnet.com (partial)\" f=\"Quamnet.com.xml\"><securecookie host=\"^\\.quamnet\\.com$\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Quandl.com\" f=\"Quandl.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Quanta Magazine.org\" f=\"Quanta_Magazine.org.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Quantcast.com\" f=\"Quantcast.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"QuantifiedCode.com (partial)\" f=\"QuantifiedCode.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Quantix (partial)\" f=\"Quantix.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"\\.quantixtickets[18]\\.com$\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Quantopian.com\" f=\"Quantopian.com.xml\"><securecookie host=\"^\\.quantopian\\.com$\" name=\".+\"/><rule from=\"^http://status\\.quantopian\\.com/\" to=\"https://quantopian.statuspage.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Quantserve.com\" f=\"Quantserve.com.xml\"><rule from=\"^http://edge\\.quantserve\\.com/\" to=\"https://www.quantserve.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"QuantumMAN site.com\" f=\"QuantumMAN.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"quattroplay.com\" f=\"Quattroplay.com.xml\"><securecookie host=\"^(?:.*\\.)?quattroplay\\.com$\" name=\".+\"/><rule from=\"^http://([\\w-]+\\.)?quattroplay\\.com/\" to=\"https://$1quattroplay.com/\"/></ruleset>", "<ruleset name=\"Qubes-OS.org (partial)\" f=\"Qubes-OS.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Qubit products.com (partial)\" default_off=\"failed ruleset test\" f=\"Qubit_products.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Quch.io\" f=\"Quch.io.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"QGazette.com\" default_off=\"mismatched\" f=\"Queens-Gazette.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Queen's University Belfast (partial)\" f=\"Queens_University_Belfast.xml\"><rule from=\"^http://(?:www\\.)?qub\\.ac\\.uk/\" to=\"https://www.qub.ac.uk/\"/><rule from=\"^http://(?:www\\.)?daro\\.qub\\.ac\\.uk/\" to=\"https://daro.qub.ac.uk/\"/><rule from=\"^http://knock\\.qub\\.ac\\.uk/(?:\\?.*)?$\" to=\"https://login.qol.qub.ac.uk/home/?logout=true\"/><rule from=\"^http://knock\\.qub\\.ac\\.uk/myqueens/\" to=\"https://knock.qub.ac.uk/myqueens/\"/><rule from=\"^http://(home|login)\\.qol\\.qub\\.ac\\.uk/\" to=\"https://$1.qol.qub.ac.uk/\"/></ruleset>", "<ruleset name=\"Queer.de\" f=\"Queer.de.xml\"><rule from=\"^http:\" to=\"https:\"/><exclusion pattern=\"^http://(www\\.)?queer\\.de/$\"/></ruleset>", "<ruleset name=\"QueerVids.com\" f=\"QueerVids.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Querna.org (partial)\" f=\"Querna.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Quest.com\" platform=\"mixedcontent\" f=\"Quest.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://quest\\.com/\" to=\"https://www.quest.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"QuestComp.com\" f=\"QuestComp.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://questcomp\\.com/\" to=\"https://www.questcomp.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Questacon.edu.au\" f=\"Questacon.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Questia.com\" f=\"Questia.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Question-Defense.com\" platform=\"mixedcontent\" f=\"Question-Defense.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"QuestionCopyright.org\" default_off=\"plaintext reply\" f=\"QuestionCopyright.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Questionablecontent.net\" f=\"Questionablecontent.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Questionmarket.com\" default_off=\"failed ruleset test\" f=\"Questionmarket.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"QuickHash.com\" default_off=\"failed ruleset test\" f=\"QuickHash.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fast Shopping Cart.com\" default_off=\"failed ruleset test\" f=\"Quick_Shopping_Cart.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://fastshoppingcart\\.com/\" to=\"https://app.fastshoppingcart.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"quickbitcoin.co.uk (partial)\" f=\"Quick_bitcoin.co.uk.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Quickleak.se\" default_off=\"failed ruleset test\" f=\"Quickleak.se.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"quicktranslate.com\" f=\"Quicktranslate.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Quidco.com (partial)\" f=\"Quidco.com.xml\"><exclusion pattern=\"^http://www\\.quidco\\.com/+(?!$|\\?|blog/wp-content/|(?:join-quidco|sign-in)(?:$|[?/])|static/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"QuikPAY asp.com\" f=\"QuikPAY_asp.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.quikpayasp\\.com/\" to=\"https://quikpayasp.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Quik Callus.com\" f=\"Quik_Callus.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"QuinStreet.com (false MCB)\" platform=\"mixedcontent\" f=\"QuinStreet-mismatches.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"QuinStreet.com\" f=\"QuinStreet.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Quirks.com\" f=\"Quirks.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"QuiteRSS.org\" f=\"QuiteRSS.org.xml\"><rule from=\"^http://www\\.quiterss\\.org/\" to=\"https://quiterss.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Quitter.is\" f=\"Quitter.is.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.quitter\\.is/\" to=\"https://quitter.is/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Quitter.no\" f=\"Quitter.no.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.quitter\\.no/\" to=\"https://quitter.no/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Quitter.se\" f=\"Quitter.se.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"QuizAction.de (partial)\" f=\"QuizAction.de.xml\"><rule from=\"^http://(www\\.)?(yahoo\\.)?quizaction\\.de/(?=favicon\\.ico|img/|pics/|w/)\" to=\"https://$1$2quizaction.de/\"/></ruleset>", "<ruleset name=\"quizsnack.com (partial)\" f=\"Quizsnack.com.xml\"><rule from=\"^http://files\\.quizsnack\\.com/\" to=\"https://s3.amazonaws.com/files.quizsnack.com/\"/></ruleset>", "<ruleset name=\"Qune.kuluttajavirasto.fi\" default_off=\"failed ruleset test\" f=\"Qune.kuluttajavirasto.fi.xml\"><rule from=\"^http://qune\\.kuluttajavirasto\\.fi/\" to=\"https://qune.kuluttajavirasto.fi/\"/></ruleset>", "<ruleset name=\"Quora\" f=\"Quora.xml\"><securecookie host=\"^\\.quora\\.com$\" name=\".*\"/><rule from=\"^http://(\\w+\\.tch\\.|www\\.|[\\w-]+\\.)?quora\\.com/\" to=\"https://$1quora.com/\"/><rule from=\"^http://qph\\.cf\\.quoracdn\\.net/\" to=\"https://d2o7bfz2il9cb7.cloudfront.net/\"/><rule from=\"^http://(\\w+)\\.cf\\.quoracdn\\.net/\" to=\"https://$1.s3.amazonaws.com/\"/><rule from=\"^http://(\\w+)\\.is\\.quoracdn\\.net/\" to=\"https://$1.is.quoracdn.net/\"/></ruleset>", "<ruleset name=\"Quorks\" default_off=\"Cert warning\" f=\"Quorks.xml\"><rule from=\"^http://quorks\\.ath\\.cx/login\\.php$\" to=\"https://quorks.ath.cx/login.php\"/></ruleset>", "<ruleset name=\"QuoteMedia.com\" f=\"QuoteMedia.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Quotestream.com (partial)\" f=\"Quotestream.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"QupZilla.com\" f=\"QupZilla.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Quran.com\" f=\"Quran.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Quran411.com\" f=\"Quran411.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"QuranProject.org\" f=\"QuranProject.org.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Quranicaudio.com (partial)\" f=\"Quranicaudio.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Qurank.net\" f=\"Qurank.net.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"qutebrowser.org (partial)\" f=\"Qutebrowser.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Quto.ru (partial)\" default_off=\"missing certificate chain\" f=\"Quto.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"quup.com\" default_off=\"failed ruleset test\" f=\"Quup.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.quup\\.com/\" to=\"https://quup.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Qweery (partial)\" default_off=\"failed ruleset test\" f=\"Qweery.xml\"><rule from=\"^http://box\\.qweery\\.nl/\" to=\"https://box.qweery.nl/\"/></ruleset>", "<ruleset name=\"QXL.no (partial)\" f=\"Qxl.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Qz.com (partial)\" default_off=\"mismatched\" platform=\"mixedcontent\" f=\"Qz.com.xml\"><rule from=\"^http://img\\.qz\\.com/\" to=\"https://qzprod.files.wordpress.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"R-HPC\" default_off=\"failed ruleset test\" f=\"R-HPC.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"R-kom.de\" f=\"R-kom.xml\"><rule from=\"^http://kundenportal\\.r\\-kom\\.de/\" to=\"https://kundenportal.r-kom.de/\"/><rule from=\"^http://www\\.r\\-kom\\.de/\" to=\"https://www.r-kom.de/\"/></ruleset>", "<ruleset name=\"R-posts.com\" f=\"R-posts.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"R Project\" f=\"R-project.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"r00tz.org\" f=\"R00tz.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"R01 (partial)\" f=\"R01.xml\"><securecookie host=\"^\\.?partner\\.r01\\.ru$\" name=\".+\"/><rule from=\"^http://partner\\.r01\\.ru/\" to=\"https://partner.r01.ru/\"/></ruleset>", "<ruleset name=\"R66T\" default_off=\"failed ruleset test\" f=\"R66T.xml\"><securecookie host=\"^(?:www\\.)?onsiteconcierge\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?(?:onsiteconcierge|r66t)\\.com/\" to=\"https://$1onsiteconcierge.com/\"/></ruleset>", "<ruleset name=\"R7.com (partial)\" f=\"R7.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"r7ls.net\" f=\"R7ls.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RAC\" f=\"RAC.xml\"><securecookie host=\"^(?:.+\\.)?rac\\.co\\.uk$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?rac\\.co\\.uk/\" to=\"https://www.rac.co.uk/\"/></ruleset>", "<ruleset name=\"RAINN.org (partial)\" f=\"RAINN.org.xml\"><securecookie host=\"^(?:\\.|apps\\.|donate\\.|www\\.)?rainn\\.org$\" name=\".+\"/><rule from=\"^http://((?:apps|donate|hotline|ohl|www)\\.)?rainn\\.org/\" to=\"https://$1rainn.org/\"/></ruleset>", "<ruleset name=\"RAM Host.us (partial)\" default_off=\"failed ruleset test\" f=\"RAM_Host.us.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RAND (partial)\" f=\"RAND.xml\"><securecookie host=\"^\\.rand\\.org$\" name=\"^__utm\\w$\"/><rule from=\"^http://(?:www\\.)?rand\\.org/(cart(?:$|\\?|/)|content/|etc/|favicon\\.ico|profile(?:$|\\?|\\.html))\" to=\"https://www.rand.org/$1\"/></ruleset>", "<ruleset name=\"RANZCP\" f=\"RANZCP.xml\"><rule from=\"^http://(?:www\\.)?ranzcp\\.org/\" to=\"https://www.ranzcp.org/\"/></ruleset>", "<ruleset name=\"RAUR\" default_off=\"failed ruleset test\" f=\"RAUR.xml\"><rule from=\"^http://(www\\.)?instaradio\\.com/\" to=\"https://$1raur.co/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RBCommons.com (partial)\" f=\"RBCommons.com.xml\"><securecookie host=\"^(?:www\\.)?rbcommons\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RB Invest WDC.eu (partial)\" default_off=\"refused\" f=\"RB_Invest_WDC.eu.xml\"><securecookie host=\"^rbinvestwdc\\.eu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Reformed Church\" f=\"RCA.org.xml\"><rule from=\"^http://(?:www\\.)?rca\\.org/\" to=\"https://www.rca.org/\"/></ruleset>", "<ruleset name=\"RCFP.org (partial)\" f=\"RCFP.org.xml\"><securecookie host=\"^\\.rcfp\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RCKing.eu\" f=\"RCKing.xml\"><securecookie host=\"^(?:w*\\.)?rcking\\.eu$\" name=\".+\"/><rule from=\"^http://rcking\\.eu/\" to=\"https://www.rcking.eu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RCPmag.com\" f=\"RCPmag.com.xml\"><securecookie host=\"^rcpmag\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RCUK.ac.uk (self-signed)\" default_off=\"self-signed\" f=\"RCUK.ac.uk-problematic.xml\"><rule from=\"^http://blogs\\.rcuk\\.ac\\.uk/\" to=\"https://blogs.rcuk.ac.uk/\"/></ruleset>", "<ruleset name=\"RCUK.ac.uk (partial)\" f=\"RCUK.ac.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RDO project.org\" f=\"RDO_project.org.xml\"><exclusion pattern=\"^http://(?:(?![^./]+\\.(?:ask|www)\\.rdoproject\\.org/)(?:[^./]+\\.){2,}|(?:[^./]+\\.){2,}(?:ask|www)\\.)rdoproject\\.org/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http://ask\\.rdoproject\\.org/+\" to=\"https://ask.openstack.org/en/questions/scope:unanswered/sort:age-desc/page:1/query:rdo/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RDot.org\" f=\"RDot.org.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RE.is (partial)\" f=\"RE.is.xml\"><rule from=\"^http://(?:www\\.)?re\\.is/(?=da/CartService/|media/|skin/)\" to=\"https://www.re.is/\"/><rule from=\"^http://agent\\.re\\.is/\" to=\"https://agent.re.is/\"/></ruleset>", "<ruleset name=\"REC Registry\" f=\"RECRegistry.xml\"><rule from=\"^http://(?:www\\.)?rec-registry\\.gov\\.au/\" to=\"https://www.rec-registry.gov.au/\"/></ruleset>", "<ruleset name=\"REFEDD.org\" f=\"REFEDD.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"REFEDS.org\" f=\"REFEDS.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"REMnux.org\" f=\"REMnux.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RESOLV\" default_off=\"mismatched\" f=\"RESOLV.xml\"><securecookie host=\"^www\\.resolv\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?resolv\\.org/\" to=\"https://www.resolv.org/\"/></ruleset>", "<ruleset name=\"REWAG.de\" default_off=\"failed ruleset test\" f=\"REWAG.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"REcon.cx\" f=\"REcon.cx.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RFC-Editor\" f=\"RFC-Editor.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RFC Express\" default_off=\"failed ruleset test\" f=\"RFC_Express.xml\"><securecookie host=\"^(?:www\\.)?rfcexpress\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RF Parts.com\" f=\"RF_Parts.com.xml\"><securecookie host=\"^\\.www\\.rfparts\\.com$\" name=\".+\"/><rule from=\"^http://rfparts\\.com/.*\" to=\"https://www.rfparts.com/\"/><rule from=\"^http://www\\.rfparts\\.com/\" to=\"https://www.rfparts.com/\"/></ruleset>", "<ruleset name=\"RF SUNY.org (partial)\" f=\"RF_SUNY.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RG static.net\" f=\"RG_static.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RHUL.ac.uk (partial)\" f=\"RHUL.ac.uk.xml\"><exclusion pattern=\"^http://(?:www\\.)?isg\\.rhul\\.ac\\.uk/+(?:~|tls(?:$|[?/]))\"/><securecookie host=\"^(?:cimhelpdesk|helpdesk\\.ma|www)\\.rhul\\.ac\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?rhul\\.ac\\.uk/\" to=\"https://www.rhul.ac.uk/\"/><rule from=\"^http://(?:cimhelpdesk|helpdesk\\.ma)\\.rhul\\.ac\\.uk/\" to=\"https://helpdesk.ma.rhul.ac.uk/\"/><rule from=\"^http://(www\\.)?isg\\.rhul\\.ac\\.uk/\" to=\"https://$1isg.rhul.ac.uk/\"/></ruleset>", "<ruleset name=\"RH Cloud.com\" f=\"RH_Cloud.com.xml\"><securecookie host=\"^[\\w-]+\\.rhcloud\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?rhcloud\\.com/+\" to=\"https://openshift.com/\"/><rule from=\"^http://([\\w-]+)\\.rhcloud\\.com/\" to=\"https://$1.rhcloud.com/\"/></ruleset>", "<ruleset name=\"RIA.com (partial)\" f=\"RIA.com.xml\"><exclusion pattern=\"^http://(?:avia2?|bezpeka|cobrand|help)\\.ria\\.com/\"/><securecookie host=\"^\\w.*\\.ria\\.com$\" name=\".+\"/><rule from=\"^http://([\\w-]+\\.|img\\.auto\\.)?ria\\.com/\" to=\"https://$1ria.com/\"/></ruleset>", "<ruleset name=\"RIA.ua\" f=\"RIA.ua.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RIAA\" platform=\"mixedcontent\" f=\"RIAA.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RIA static.com\" f=\"RIA_static.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RIC.org\" f=\"RIC.org.xml\"><securecookie host=\"^(?:www\\.)?ric\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RIKEN.jp (partial)\" f=\"RIKEN.jp.xml\"><exclusion pattern=\"^http://www\\.aics\\.riken\\.jp/+(?!aicssite/wp-content/)\"/><securecookie host=\".+\\.riken\\.jp$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RIS\" f=\"RIS.BKA.gv.at.xml\"><rule from=\"^http://(?:www\\.)?ris\\.bka\\.gv\\.at/\" to=\"https://www.ris.bka.gv.at/\"/></ruleset>", "<ruleset name=\"RISCOS.com\" default_off=\"mismatched\" f=\"RISCOS.com.xml\"><rule from=\"^http://(?:www\\.)?riscos\\.com/\" to=\"https://riscos.com/\"/></ruleset>", "<ruleset name=\"RISI\" f=\"RISI.xml\"><securecookie host=\"^www\\.risiinfo\\.com$\" name=\".*\"/><rule from=\"^http://(www\\.)?risi(?:info)?\\.com/\" to=\"https://$1risiinfo.com/\"/></ruleset>", "<ruleset name=\"RIT.edu (partial)\" default_off=\"failed ruleset test\" f=\"RIT.edu.xml\"><exclusion pattern=\"^http://www\\.ntid\\.rit\\.edu/(?!$|sites/)\"/><exclusion pattern=\"^http://ritpress\\.rit\\.edu/+(?!misc/|modules/|sites/)\"/><securecookie host=\"^\\.rit\\.edu$\" name=\"^RITApache$\"/><securecookie host=\"^(?:footprints02\\.main\\.ad|albert|artoncampus|cias|checkout\\.cias|start)\\.rit\\.edu$\" name=\".+\"/><rule from=\"^http://rit\\.edu/+\" to=\"https://www.rit.edu/\"/><rule from=\"^http://dirs\\.cis\\.rit\\.edu/+\" to=\"https://www.cis.rit.edu/remote-sensing/\"/><rule from=\"^http://thewallacecenter\\.rit\\.edu/+\" to=\"https://wallacecenter.rit.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RL CDN.com\" default_off=\"failed ruleset test\" f=\"RL_CDN.com.xml\"><securecookie host=\"^\\.rlcdn\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RL Rose\" f=\"RL_Rose.xml\"><securecookie host=\"^(?:www)?\\.rlrose\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RMIT.edu.au (partial)\" f=\"RMIT.edu.au.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://rmit\\.edu\\.au/\" to=\"https://www.rmit.edu.au/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RNR Wheels & Tires (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"RNR_Wheels_and_Tires.xml\"><securecookie host=\"^\\.rnrwheels\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?rnrwheels\\.com/\" to=\"https://www.rnrwheels.com/\"/><rule from=\"^http://shop\\.rnrwheels\\.com/(Portals/|scripts/|show(?:Category|Product)Image\\.aspx)\" to=\"https://shop.rnrwheels.com/$1\"/></ruleset>", "<ruleset name=\"RNW.nl (partial)\" f=\"RNW.nl.xml\"><securecookie host=\".+\\.rnw\\.nl$\" name=\".+\"/><rule from=\"^http://(intranet|ocs|rvt-docs|sites|vpn|webmail|webtier)\\.rnw\\.nl/\" to=\"https://$1.rnw.nl/\"/></ruleset>", "<ruleset name=\"RNengage.com\" f=\"RNengage.com.xml\"><securecookie host=\"^\\.www\\.rnengage\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RNpdigital.com\" f=\"RNpdigital.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ROBOXchange.com\" f=\"ROBOXchange.xml\"><securecookie host=\"^www\\.roboxchange\\.com$\" name=\".+\"/><rule from=\"^http://roboxchange\\.com/\" to=\"https://www.roboxchange.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ROCKZi.com\" default_off=\"failed ruleset test\" f=\"ROCKZi.com.xml\"><securecookie host=\"^\\.?rockzi\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ROHC-lib.org\" default_off=\"failed ruleset test\" f=\"ROHC-lib.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ROI.ru\" f=\"ROI.ru.xml\"><securecookie host=\"^\\.roi\\.ru$\" name=\".+\"/><rule from=\"^http://((?:css|js|www)\\.)?roi\\.ru/\" to=\"https://$1roi.ru/\"/></ruleset>", "<ruleset name=\"ROI Solutions (partial)\" f=\"ROI_Solutions.xml\"><securecookie host=\"^secure2\\.roisolutions\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ROMDashboard.com\" f=\"ROMDashboard.xml\"><securecookie host=\"^(?:w*\\.)?romdashboard\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RPGGeek.com\" f=\"RPGGeek.com.xml\"><securecookie host=\"^(\\.|www\\.)?rpggeek\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RPXCorp.com (partial)\" f=\"RPXCorp.com.xml\"><rule from=\"^http://rpxcorp\\.com/\" to=\"https://www.rpxcorp.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RPXNow.com (partial)\" f=\"RPXNow.com.xml\"><exclusion pattern=\"^http://(?:[^.]+\\.){2,}rpxnow\\.com/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http://static\\.rpxnow\\.com/\" to=\"https://s3.amazonaws.com/static.rpxnow.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RRTS.com\" f=\"RRTS.com.xml\"><securecookie host=\"^(?:beta|www)\\.rrts\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?rrts\\.com/\" to=\"https://www.rrts.com/\"/><rule from=\"^http://(beta|webservices|webservicesbeta)\\.rrts\\.com/\" to=\"https://$1.rrts.com/\"/></ruleset>", "<ruleset name=\"RS-links.info\" default_off=\"expired, mismatch, self-signed\" f=\"RS-linkz.info.xml\"><securecookie host=\"^www\\.rs-linkz\\.info$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?rs-linkz\\.info/\" to=\"https://www.rs-linkz.info/\"/></ruleset>", "<ruleset name=\"RSA Security (partial)\" f=\"RSA-Security.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RSA\" f=\"RSA.xml\"><securecookie host=\"^\\.rsa\\.com$\" name=\"^__(?:qca|utm\\w)$\"/><securecookie host=\"^\\.blogs\\.rsa\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?rsa\\.com/\" to=\"https://www.rsa.com/\"/><rule from=\"^http://blogs\\.rsa\\.com/\" to=\"https://blogs.rsa.com/\"/></ruleset>", "<ruleset name=\"RSA Conference (partial)\" default_off=\"failed ruleset test\" f=\"RSA_Conference.xml\"><exclusion pattern=\"^http://www\\.rsaconference\\.com/+(?:podcasts|videos)(?:$|[?/])\"/><securecookie host=\"^(?:365|beta)\\.rsaconference\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RSBAC.org (mismatches)\" default_off=\"mismatched\" f=\"RSBAC-mismatches.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RSBAC.org (partial)\" f=\"RSBAC.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RSC.org.uk\" default_off=\"failed ruleset test\" f=\"RSC.org.uk.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://autodiscover\\.rsc\\.org\\.uk/+$\" to=\"https://outlook.office365.com/owa/?realm=rsc.org.uk&vd=autodiscover\"/><rule from=\"^http://autodiscover\\.rsc\\.org\\.uk/+([^?]+)$\" to=\"https://outlook.office365.com/$1?realm=rsc.org.uk&vd=autodiscover\"/><rule from=\"^http://autodiscover\\.rsc\\.org\\.uk/+(.+)\" to=\"https://outlook.office365.com/$1&realm=rsc.org.uk&vd=autodiscover\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RSF.org (false MCB)\" platform=\"mixedcontent\" f=\"RSF.org-falsemixed.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RSM secure.com\" f=\"RSM_secure.com.xml\"><rule from=\"^http://rsm(\\d)\\.rsmsecure\\.com/\" to=\"https://rsm$1.rsmsecure.com/\"/></ruleset>", "<ruleset name=\"RSPB\" f=\"RSPB.xml\"><securecookie host=\"^\\.shopping\\.rspb\\.org\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RSPCA (partial)\" f=\"RSPCA.xml\"><securecookie host=\"^donations\\.rspca\\.org\\.uk$\" name=\".+\"/><securecookie host=\"^www\\.rspca\\.org\\.uk$\" name=\"^CMS_PRD_SESSIONID$\"/><rule from=\"^http://www\\.rspca\\.org\\.uk/home\" to=\"https://www.rspca.org.uk/home/\"/><rule from=\"^http://content\\.www\\.rspca\\.org\\.uk/\" to=\"https://www.rspca.org.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RSPCA shop.co.uk\" default_off=\"failed ruleset test\" f=\"RSPCA_shop.co.uk.xml\"><securecookie host=\"^(?:.*\\.)?rspcashop\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RSSinclude\" f=\"RSSinclude.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RSSing.com\" default_off=\"expired, self-signed\" f=\"RSSing.com.xml\"><securecookie host=\"^\\.rssing\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?rssing\\.com/\" to=\"https://www.rssing.com/\"/></ruleset>", "<ruleset name=\"RST forums.com\" default_off=\"failed ruleset test\" f=\"RST_forums.com.xml\"><securecookie host=\"^\\.rstforums\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RSVP\" platform=\"mixedcontent\" f=\"RSVP.xml\"><rule from=\"^http://(?:images\\.|resources\\.)?rsvp\\.com\\.au/\" to=\"https://www.rsvp.com.au/\"/><rule from=\"^http://www\\.rsvp\\.com\\.au/((?:cms-|member)media/|css/|favicon\\.ico|images/|login\\.action|registration/)\" to=\"https://www.rsvp.com.au/$1\"/></ruleset>", "<ruleset name=\"RStudio.com\" f=\"RStudio.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RT.com (partial)\" default_off=\"failed ruleset test\" f=\"RT.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://on\\.rt\\.com/(.*)\" to=\"https://www.rt.com/shortcode/$1/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RT.ru\" f=\"RT.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RTE.ie (partial)\" f=\"RTE.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RTEK 2000.com\" f=\"RTEK_2000.com.xml\"><securecookie host=\"^\\.rtek2000\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RTEMS.org\" f=\"RTEMS.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RTK\" default_off=\"expired\" f=\"RTK.xml\"><securecookie host=\"^\\.rtklive\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?rtklive\\.com/(\\?.*)?$\" to=\"https://rtklive.com/new/index.php$1\"/><rule from=\"^http://(?:www\\.)?rtklive\\.com/\" to=\"https://rtklive.com/\"/></ruleset>", "<ruleset name=\"RTL.de (partial)\" f=\"RTL.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RTP.vc\" f=\"RTP.vc.xml\"><securecookie host=\"^\\.rtp\\.vc$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?rtp\\.vc/\" to=\"https://www.rtp.vc/\"/></ruleset>", "<ruleset name=\"RTVS.sk\" f=\"RTVS.sk.xml\"><rule from=\"^http://www\\.futbal\\.rtvs\\.sk/\" to=\"https://futbal.rtvs.sk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RT Tire\" default_off=\"failed ruleset test\" f=\"RT_Tire.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RU-Golos\" default_off=\"self-signed\" f=\"RU-Golos.xml\"><securecookie host=\"^ru-golos\\.ru$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ru-golos\\.ru/\" to=\"https://ru-golos.ru/\"/></ruleset>", "<ruleset name=\"RUB.de (partial)\" f=\"RUB.de.xml\"><rule from=\"^http://rub\\.de/\" to=\"https://www.rub.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RUDI.net\" f=\"RUDI.net.xml\"><securecookie host=\"^\\.rudi\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?rudi\\.net/\" to=\"https://www.rudi.net/\"/></ruleset>", "<ruleset name=\"RUSI.org (partial)\" f=\"RUSI.org.xml\"><rule from=\"^http://rusi\\.org/\" to=\"https://www.rusi.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RVLution.net\" default_off=\"expired, mismatched\" f=\"RVLution.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RVM.io\" f=\"RVM.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RYL Warfare\" f=\"RYLWarfare.net.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RYOT (partial)\" default_off=\"missing certificate chain\" f=\"RYOT.xml\"><rule from=\"^http://(?:www\\.)?ryot\\.org/(?=wp-content/)\" to=\"https://ryot.org/\"/></ruleset>", "<ruleset name=\"raKditigal (partial)\" f=\"RaKdigital.xml\"><securecookie host=\"^(?:(?:www\\.)?clients|managewp)\\.rakdigital\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://((?:www\\.)?clients|managewp)\\.rakdigital\\.co\\.uk/\" to=\"https://$1.rakdigital.co.uk/\"/></ruleset>", "<ruleset name=\"Raam.org\" default_off=\"failed ruleset test\" f=\"Raam.org.xml\"><rule from=\"^http://www\\.raam\\.org/\" to=\"https://raam.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RabbitMQ\" f=\"RabbitMQ.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rabbit Porno.com\" f=\"Rabbit_Porno.com.xml\"><securecookie host=\"^\\.rabbitporno\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rabobank\" f=\"Rabobank.xml\"><securecookie host=\"^(?:bankieren|www)?\\.rabobank\\.nl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Race Forward.org\" default_off=\"failed ruleset test\" f=\"Race_Forward.org.xml\"><rule from=\"^http://raceforward\\.org/\" to=\"https://www.raceforward.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Race to Health.co.uk\" f=\"Race_to_Health.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rachelbythebay.com\" f=\"Rachelbythebay.com.xml\"><rule from=\"^http://(?:www\\.)?rachelbythebay\\.com/\" to=\"https://www.rachelbythebay.com/\"/></ruleset>", "<ruleset name=\"racjonalista.pl\" default_off=\"self-signed\" f=\"Racjonalista.pl.xml\"><securecookie host=\"^\\.racjonalista\\.pl$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?racjonalista\\.pl/\" to=\"https://www.racjonalista.pl/\"/></ruleset>", "<ruleset name=\"Rack911\" f=\"Rack911.xml\"><securecookie host=\"^\\.rack911\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RackCDN.com\" f=\"RackCDN.com.xml\"><rule from=\"^http://([\\w-]+)\\.(?:r\\d+|ssl)\\.cf(\\d)\\.rackcdn\\.com/\" to=\"https://$1.ssl.cf$2.rackcdn.com/\"/></ruleset>", "<ruleset name=\"Racked.com\" default_off=\"CORS issues\" f=\"Racked.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Racket-lang.org (partial)\" default_off=\"self-signed\" f=\"Racket-lang.org.xml\"><rule from=\"^http://(bugs|git|lists)\\.racket-lang\\.org/\" to=\"https://$1.racket-lang.org/\"/></ruleset>", "<ruleset name=\"Rackspace.co.uk (partial)\" default_off=\"failed ruleset test\" f=\"Rackspace.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rackspace.co.nz\" default_off=\"failed ruleset test\" f=\"Rackspace.co.za.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rackspace.com (false MCB)\" platform=\"mixedcontent\" f=\"Rackspace.com-falsemixed.xml\"><rule from=\"^http://www\\.rackspace\\.com/talent\" to=\"https://www.rackspace.com/talent\"/></ruleset>", "<ruleset name=\"Rackspace.com.uk\" f=\"Rackspace.com.hk.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rackspace.dk\" default_off=\"failed ruleset test\" f=\"Rackspace.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rackspace.hk\" default_off=\"failed ruleset test\" f=\"Rackspace.hk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rackspace.nl (partial)\" f=\"Rackspace.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rackspace.com (partial)\" default_off=\"failed ruleset test\" f=\"Rackspace.xml\"><exclusion pattern=\"^http://www\\.rackspace\\.com/+talent(?!/wp-content/|/wp-includes/)\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http://images\\.cdn\\.rackspace\\.com/\" to=\"https://034d24a88b3e71fd72a6-f083e9a6295a3f0714fa019ffdca65c3.ssl.cf1.rackcdn.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rackspace Cloud.com\" f=\"Rackspace_Cloud.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.rackspacecloud\\.com/\" to=\"https://rackspacecloud.com/\"/><rule from=\"^http://(\\w+)\\.cdn\\.cloudfiles\\.rackspacecloud\\.com/\" to=\"https://$1.ssl.cf0.rackcdn.com/\"/><rule from=\"^http://(\\w+)\\.cdn(1|2)\\.cloudfiles\\.rackspacecloud\\.com/\" to=\"https://$1.ssl.cf$2.rackcdn.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RadSec.org\" f=\"RadSec.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Radartv.nl (partial)\" f=\"Radartv.nl.xml\"><exclusion pattern=\"^http://www\\.radartv\\.nl/+(?!favicon\\.ico|fileadmin/|typo3temp/)\"/><securecookie host=\"^\\.forum\\.www\\.radartv\\.nl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Radboud University Nijmegen\" default_off=\"failed ruleset test\" f=\"Radboud-University-Nijmegen.xml\"><securecookie host=\"^www(?:-acc)?\\.radboudnet\\.nl$\" name=\".*\"/><securecookie host=\"^.*\\.ru\\.nl$\" name=\".*\"/><rule from=\"^http://www(-acc)?\\.radboudnet\\.nl/\" to=\"https://www$1.radboudnet.nl/\"/><rule from=\"^http://(?:www\\.)?ru\\.nl/\" to=\"https://www.ru.nl/\"/><rule from=\"^http://((?:ldap2|n?mr|mrms|svn|webmail|www)\\.cmbi|cms|cms-acc|(?:bangalore|bombay|delhi|hubli|jaipur|kota|mangalore|portalhelp|pune)\\.hosting|idm|student|www-acc)\\.ru\\.nl/\" to=\"https://$1.ru.nl/\"/></ruleset>", "<ruleset name=\"Radford.edu (partial)\" f=\"Radford.edu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Radical Designs\" f=\"Radical_Designs.xml\"><securecookie host=\"^.+\\.rdsecure\\.org$\" name=\".+\"/><rule from=\"^http://([\\w-]+\\.)?rdsecure\\.org/\" to=\"https://$1rdsecure.org/\"/></ruleset>", "<ruleset name=\"Radikal.com.tr (partial)\" f=\"Radikal.com.tr.xml\"><rule from=\"^http://i2?\\.radikal\\.com\\.tr/\" to=\"https://i.radikal.com.tr/\"/></ruleset>", "<ruleset name=\"Radikale.dk\" f=\"Radikale.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RadioShack (partial)\" default_off=\"failed ruleset test\" f=\"RadioShack.xml\"><exclusion pattern=\"^http://www\\.radioshack\\.com/(?:$|category/|family/|home/|shop/)\"/><securecookie host=\"^radioshackwireless\\.com$\" name=\".*\"/><rule from=\"^http://franchiseradioshack\\.cloudapp\\.net/\" to=\"https://www.franchiseradioshack.com/\"/><rule from=\"^http://(?:www\\.)?franchiseradioshack\\.com/\" to=\"https://www.franchiseradioshack.com/\"/><rule from=\"^http://(?:www\\.)?radioshack\\.com/\" to=\"https://www.radioshack.com/\"/><rule from=\"^http://blog\\.radioshack\\.com/\" to=\"https://blog.radioshack.com/\"/><rule from=\"^http://(?:www\\.)?radioshackwireless\\.com/\" to=\"https://radioshackwireless.com/\"/></ruleset>", "<ruleset name=\"RadioX.ch\" f=\"RadioX.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Radio Woodstock.com (partial)\" f=\"Radio_Woodstock.com.xml\"><securecookie host=\"^\\.?ssl\\.radiowoodstock\\.com$\" name=\".+\"/><rule from=\"^http://ssl\\.radiowoodstock\\.com/\" to=\"https://ssl.radiowoodstock.com/\"/></ruleset>", "<ruleset name=\"radioeins.de\" f=\"Radioeins.de.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Radioleaks.se\" f=\"Radioleaks.xml\"><rule from=\"^http://(?:www\\.)?radioleaks\\.se/.*\" to=\"https://sverigesradio.se/sida/default.aspx?programid=4069\"/><rule from=\"^http://upload\\.radioleaks\\.se/\" to=\"https://upload.radioleaks.se/\"/></ruleset>", "<ruleset name=\"Radiological Society of North America (partial)\" f=\"Radiological_Society_of_North_America.xml\"><securecookie host=\"^(?:careers\\.|www\\.)?rsna\\.org$\" name=\".+\"/><rule from=\"^http://(careers\\.|www2?\\.)?rsna\\.org/\" to=\"https://$1rsna.org/\"/></ruleset>", "<ruleset name=\"Radioplayer.co.uk\" f=\"Radioplayer.co.uk.xml\"><securecookie host=\"^www\\.radioplayer\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RadiumOne (partial)\" f=\"RadiumOne.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Radius Networks.com (partial)\" f=\"Radius_Networks.com.xml\"><securecookie host=\"^account\\.radiusnetworks\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Radware.com\" f=\"Radware.com.xml\"><securecookie host=\"^(www\\.|blog\\.|kb\\.|portals\\.|)?radware\\.com$\" name=\".+\"/><rule from=\"^http://radware\\.com/\" to=\"https://www.radware.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rafflecopter.com\" f=\"Rafflecopter.com.xml\"><rule from=\"^http://(?:www\\.)?rafflecopter\\.com/\" to=\"https://www.rafflecopter.com/\"/></ruleset>", "<ruleset name=\"Rage3D.com\" default_off=\"expired, self-signed\" f=\"Rage3D.com.xml\"><securecookie host=\"^(?:www\\.)?rage3d\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"raiffeisen.ru\" default_off=\"failed ruleset test\" f=\"Raiffeisen.ru.xml\"><rule from=\"^http://raiffeisen\\.ru/\" to=\"https://www.raiffeisen.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Raiffeisen.ch\" default_off=\"failed ruleset test\" f=\"Raiffeisen.xml\"><securecookie host=\"^(?:.*\\.)?raiffeisen\\.ch$\" name=\".*\"/><securecookie host=\"^(?:.*\\.)?raiffeisendirect\\.ch$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RailsConf.com\" default_off=\"mismatched\" f=\"RailsConf.com.xml\"><securecookie host=\"^railsconf\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?railsconf\\.com/\" to=\"https://railsconf.com/\"/></ruleset>", "<ruleset name=\"railsbox.io\" f=\"Railsbox.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Railsschool.org\" f=\"Railsschool.org.xml\"><rule from=\"^http://(?:www\\.)?railsschool\\.org/\" to=\"https://www.railsschool.org/\"/></ruleset>", "<ruleset name=\"Rainforest QA.com\" f=\"Rainforest_QA.com.xml\"><securecookie host=\"^\\.rainforestqa\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rakuten.co.jp (mixed content)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Rakuten.co.jp-mixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rakuten.co.jp\" default_off=\"failed ruleset test\" f=\"Rakuten.co.jp.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LinkShare.com (partial)\" f=\"Rakuten_LinkShare.xml\"><rule from=\"^http://linkshare\\.com/\" to=\"https://www.linkshare.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rally.org\" f=\"Rally.org.xml\"><securecookie host=\"^(?:www\\.)?rally\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?rally\\.org/\" to=\"https://rally.org/\"/></ruleset>", "<ruleset name=\"Rally Congress (partial)\" default_off=\"failed ruleset test\" f=\"Rally_Congress.xml\"><rule from=\"^http://secure\\.rallycongress\\.com/\" to=\"https://secure.rallycongress.com/\"/></ruleset>", "<ruleset name=\"Rally Dev.com\" default_off=\"failed ruleset test\" f=\"Rally_Dev.com.xml\"><securecookie host=\".*\\.rallydev\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RamNode.com (partial)\" f=\"RamNode.com.xml\"><securecookie host=\"^(?:(?:clientarea|vpscp)?\\.)?ramnode\\.com$\" name=\".+\"/><rule from=\"^http://((?:clientarea|vpscp|www)\\.)?ramnode\\.com/\" to=\"https://$1ramnode.com/\"/></ruleset>", "<ruleset name=\"Rambler.ru\" default_off=\"failed ruleset test\" f=\"Rambler.ru.xml\"><rule from=\"^http://www\\.kassa\\.rambler\\.ru/\" to=\"https://kassa.rambler.ru/\"/><rule from=\"^http://www\\.tv\\.rambler\\.ru/\" to=\"https://tv.rambler.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rambler.su\" f=\"Rambler.su.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Randischumann\" default_off=\"failed ruleset test\" f=\"Randischumann.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Random House.biz\" default_off=\"expired, mismatch\" f=\"Random-House-mismatches.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Random House.com (partial)\" f=\"Random-House.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://code\\.randomhouse\\.com/\" to=\"https://ranhrollup.122.2o7.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vistumbler.net\" f=\"Random-Intervals.xml\"><rule from=\"^http://vistumbler\\.net/\" to=\"https://www.vistumbler.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Random.org\" f=\"RandomOrg.xml\"><securecookie host=\"\\.random\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rands in Repose\" default_off=\"mismatched\" f=\"Rands-in-Repose.xml\"><rule from=\"^http://(?:www\\.)?randsinrepose\\.com/\" to=\"https://randsinrepose.com/\"/></ruleset>", "<ruleset name=\"Range Networks.com\" default_off=\"failed ruleset test\" f=\"Range_Networks.com.xml\"><securecookie host=\"^(?:support\\.|www\\.)?rangenetworks\\.com$\" name=\".+\"/><rule from=\"^http://rangenetworks\\.com/\" to=\"https://www.rangenetworks.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RankWise.net\" f=\"RankWise.net.xml\"><securecookie host=\"^(?:www\\.)?rankwise\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rantoul Press (partial)\" f=\"Rantoul_Press.xml\"><rule from=\"^http://(?:www\\.)?rantoulpress\\.com/(misc/|sites/|user(?:$|\\?|/))\" to=\"https://www.rantoulpress.com/$1\"/></ruleset>", "<ruleset name=\"Rapleaf.com (partial)\" f=\"RapLeaf.xml\"><rule from=\"^http://dashboard\\.rapleaf\\.com/.*\" to=\"https://dashboard.towerdata.com/\"/></ruleset>", "<ruleset name=\"Raphael Hertzog.com\" default_off=\"failed ruleset test\" f=\"Raphael-Hertzog.xml\"><securecookie host=\"^raphaelhertzog\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rapid7 (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Rapid7.xml\"><securecookie host=\"^(?:community|insight|www)\\.rapid7\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RapidBuyr (problematic)\" default_off=\"mismatched\" f=\"RapidBuyr-problematic.xml\"><rule from=\"^http://cart\\.rapidbuyr\\.com/\" to=\"https://cart.rapidbuyr.com/\"/></ruleset>", "<ruleset name=\"RapidBuyr (partial)\" f=\"RapidBuyr.xml\"><exclusion pattern=\"^http://(?:www\\.)?rapidbuyr\\.com/(?:$|\\?|(?!MemberLogin)[\\w-]+\\.aspx|(?!All-Products|merchant/)[\\w/-]+\\.htm)\"/><securecookie host=\"^rapidbuyr\\.cachefly\\.net$\" name=\".+\"/><securecookie host=\"^svcart\\.rapidbuyr\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?rapidbuyr\\.com/\" to=\"https://www.rapidbuyr.com/\"/><rule from=\"^http://svcart\\.rapidbuyr\\.com/\" to=\"https://svcart.rapidbuyr.com/\"/></ruleset>", "<ruleset name=\"RapidLeaf\" default_off=\"failed ruleset test\" f=\"RapidLeaf.xml\"><securecookie host=\"^(?:.+\\.)?rapidleaf\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RapidSSL.com\" f=\"RapidSSL.xml\"><securecookie host=\"^(?:knowledge)?\\.rapidssl\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RapidSite.jp\" f=\"RapidSite.jp.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rapida.ru\" default_off=\"failed ruleset test\" f=\"Rapida.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rapidgator.net (partial)\" f=\"Rapidgator.net.xml\"><exclusion pattern=\"^http://(?:www\\.)?rapidgator\\.net/(?!(?:/*(?:account/registration|article/premium|auth/(?:captcha|login))(?:$|[?/])|assets/|css/|images/))\"/><exclusion pattern=\"^http://(?:www\\.)?rapidgator\\.net/.+\\.js(?:$|\\?)\"/><securecookie host=\"^\\w\" name=\"^__utm\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rapimg.com\" f=\"Rapimg.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Raptr.com (partial)\" platform=\"mixedcontent\" f=\"Raptr.com.xml\"><securecookie host=\"^\\.\" name=\"^__qca$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rapture Ready\" f=\"Rapture_Ready.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rare.us\" default_off=\"failed ruleset test\" f=\"Rare.us.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RareAviation.com\" f=\"RareAviation.com.xml\"><securecookie host=\"^\\.rareaviation\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RareConnect\" f=\"RareConnect.xml\"><securecookie host=\"(^|\\.)rareconnect\\.org$\" name=\".+\"/><rule from=\"^http://rareconnect\\.org/\" to=\"https://www.rareconnect.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rare Diseases.org\" f=\"Rare_Diseases.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rasende.dk\" f=\"Rasende.dk.xml\"><rule from=\"^http://(www\\.)?rasende\\.dk/\" to=\"https://rasende.dk/\"/></ruleset>", "<ruleset name=\"Raspberry Pi.org\" f=\"Raspberry_Pi.xml\"><securecookie host=\"^(?:www)?\\.raspberrypi\\.org$\" name=\".+\"/><rule from=\"^http://raspberrypi\\.org/\" to=\"https://www.raspberrypi.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Raspbian.org\" f=\"Raspbian.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rasset.ie\" f=\"Rasset.ie.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aruna Ratanagiri Buddhist Monastery\" f=\"Ratanagiri.org.uk.xml\"><securecookie host=\"^ratanagiri\\.org\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RateYourMusic.com\" f=\"RateYourMusic.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rateip.com\" default_off=\"failed ruleset test\" f=\"Rateip.com.xml\"><securecookie host=\"^\\.rateip\\.com$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RatfishOil.com (false MCB)\" platform=\"mixedcontent\" f=\"RatfishOil.com-falsemixed.xml\"><securecookie host=\"^(?:www)?\\.ratfishoil\\.com$\" name=\".+\"/><rule from=\"^http://www\\.ratfishoil\\.com/\" to=\"https://www.ratfishoil.com/\"/></ruleset>", "<ruleset name=\"RatfishOil.com (partial)\" f=\"RatfishOil.com.xml\"><rule from=\"^http://(www\\.)?ratfishoil\\.com/(?=favicon\\.ico|images/|templates/)\" to=\"https://$1ratfishoil.com/\"/></ruleset>", "<ruleset name=\"Rating-Widget.com\" f=\"Rating-Widget.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://rating-widget\\.com/\" to=\"https://secure.rating-widget.com/\"/><rule from=\"^http://(img|js)\\.rating-widget\\.com/\" to=\"https://secure.rating-widget.com/$1/\"/><rule from=\"^http://www\\.rating-widget\\.com/\" to=\"https://secure.rating-widget.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RaumZeitLabor.de (partial)\" f=\"RaumZeitLabor.de.xml\"><securecookie host=\"^wiki\\.raumzeitlabor\\.de$\" name=\".+\"/><rule from=\"^http://((?:lists|wiki|www)\\.)?raumzeitlabor\\.de/\" to=\"https://$1raumzeitlabor.de/\"/></ruleset>", "<ruleset name=\"RavenDB.net\" f=\"RavenDB.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Raven Software\" default_off=\"expired\" f=\"Raven_Software.xml\"><securecookie host=\"^www2\\.ravensoft\\.com$\" name=\".+\"/><rule from=\"^http://(?:www2?\\.)?ravensoft\\.com/\" to=\"https://www2.ravensoft.com/\"/></ruleset>", "<ruleset name=\"RawGit.com\" default_off=\"failed ruleset test\" f=\"RawGit.xml\"><rule from=\"^http://www\\.rawgit\\.com/\" to=\"https://rawgit.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rawgithub.com\" f=\"Rawgithub.com.xml\"><rule from=\"^http://(?:www\\.)?rawgithub\\.com/\" to=\"https://rawgithub.com/\"/></ruleset>", "<ruleset name=\"Rawnet.com (partial)\" f=\"Rawnet.com.xml\"><rule from=\"^http://cdn\\.rawnet\\.com/\" to=\"https://d284e2efuy79d1.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Rawstudio.org (partial)\" default_off=\"refused\" f=\"Rawstudio.org.xml\"><securecookie host=\"^\\.rawstudio\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Raymond.CC\" default_off=\"broken\" f=\"Raymond.CC.xml\"><securecookie host=\"^(?:.*\\.)?raymond\\.cc$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rayner Software\" f=\"Rayner-Software.xml\"><securecookie host=\"(?:^|\\.)secure\\.raynersw\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?rayner(?:sw|software)\\.com/\" to=\"https://secure.raynersw.com/\"/><rule from=\"^http://secure\\.raynersw\\.com/\" to=\"https://secure.raynersw.com/\"/></ruleset>", "<ruleset name=\"Razer (partial)\" f=\"Razer.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Razoo (mismatches)\" default_off=\"mismatched\" f=\"Razoo-mismatches.xml\"><rule from=\"^http://media\\.razoo\\.com/\" to=\"https://media.razoo.com/\"/></ruleset>", "<ruleset name=\"Razoo (partial)\" f=\"Razoo.xml\"><rule from=\"^http://razoo\\.com/\" to=\"https://www.razoo.com/\"/><rule from=\"^http://(matt|www)\\.razoo\\.com/(assets/|favicon\\.ico|images/|(?:login|signup)(?:$|[\\?/])|password_resets/)\" to=\"https://$1.razoo.com/$2\"/><rule from=\"^http://assets(?:\\d|-secure)?\\.razoo\\.com/\" to=\"https://assets-secure.razoo.com/\"/></ruleset>", "<ruleset name=\"Razor Servers (partial)\" f=\"Razor_Servers.xml\"><securecookie host=\".+\\.razorservers\\.com$\" name=\".+\"/><rule from=\"^http://(manag|secur)e\\.razorservers\\.com/\" to=\"https://$1e.razorservers.com/\"/></ruleset>", "<ruleset name=\"RBB-online.de (partial)\" f=\"Rbb-online.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rbl.Ms (partial)\" f=\"Rbl.Ms.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rbt.asia\" f=\"Rbt.asia.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rbu.sh (partial)\" f=\"Rbu.sh.xml\"><securecookie host=\"^(www\\.)?rbu\\.sh$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rdio (partial)\" default_off=\"failed ruleset test\" f=\"Rdio.xml\"><securecookie host=\"^\\.rdio\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rdns.im\" f=\"Rdns.im.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"re-publica.de (partial)\" default_off=\"failed ruleset test\" f=\"Re-publica.de.xml\"><rule from=\"^http://mail\\.re-publica\\.de/+\" to=\"https://ntmx.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ReSIProcate.org\" f=\"ReSIProcate.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ReSRC\" f=\"ReSRC.it.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ReTargeter (mismatches)\" default_off=\"mismatched\" f=\"ReTargeter-mismatches.xml\"><rule from=\"^http://ub\\.retargeter\\.com/\" to=\"https://ub.retargeter.com/\"/></ruleset>", "<ruleset name=\"ReTargeter.com (partial)\" default_off=\"failed ruleset test\" f=\"ReTargeter.xml\"><securecookie host=\"^.*\\.retargeter\\.com$\" name=\".*\"/><rule from=\"^http://ad\\.retargeter\\.com/\" to=\"https://ib.adnxs.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ReachLocal.com (partial)\" f=\"ReachLocal.com.xml\"><rule from=\"^http://ad\\.reachlocal\\.com/\" to=\"https://ad.yieldmanager.com/\"/></ruleset>", "<ruleset name=\"ReactJS News.com\" f=\"ReactJS_News.com.xml\"><securecookie host=\"^\\.reactjsnews\\.com$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ReactOS.org (partial)\" f=\"ReactOS.org.xml\"><exclusion pattern=\"^http://old\\.reactos\\.org/+(?!(?:\\w+/)?(?:cs|image)s/|\\w\\w/dox\\.css|favicon\\.ico|mailman(?:$|[?/])|media/|style\\.css)\"/><securecookie host=\"^(?:jira)?\\.reactos\\.org$\" name=\".+\"/><rule from=\"^http://((?:jira|old|svn|www)\\.)?reactos\\.org/\" to=\"https://$1reactos.org/\"/></ruleset>", "<ruleset name=\"Read Comics in Public\" default_off=\"mismatched\" f=\"Read-Comics-in-Public.xml\"><rule from=\"^http://(?:www\\.)?readcomicsinpublic\\.com/\" to=\"https://readcomicsinpublic.com/\"/></ruleset>", "<ruleset name=\"ReadCube.com\" f=\"ReadCube.com.xml\"><securecookie host=\"^(?:support)?\\.readcube\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ReadItLaterList.com\" f=\"ReadItLater.com.xml\"><rule from=\"^http://(?:www\\.)?readitlaterlist\\.com/\" to=\"https://readitlaterlist.com/\"/></ruleset>", "<ruleset name=\"ReadMe.io\" f=\"ReadMe.io.xml\"><securecookie host=\".*\\.readme\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ReadRobReid.com (partial)\" f=\"ReadRobReid.com.xml\"><rule from=\"^http://(www\\.)?readrobreid\\.com/(auth|css)/\" to=\"https://$1readrobreid.com/$2/\"/></ruleset>", "<ruleset name=\"ReadSpeaker.com (partial)\" default_off=\"failed ruleset test\" f=\"ReadSpeaker.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Read the Docs\" f=\"ReadTheDocs.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://([\\w-]+\\.)?rtfd\\.org/\" to=\"https://$1readthedocs.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ReadThenBurn.com\" default_off=\"broken\" f=\"ReadThenBurn.xml\"><securecookie host=\"^\\.readthenburn\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ReadWrite\" default_off=\"breaks site\" f=\"ReadWriteWeb.xml\"><rule from=\"^http://(?:www\\.)?readwrite\\.com/\" to=\"https://readwrite.com/\"/></ruleset>", "<ruleset name=\"Read Plain Text.com\" f=\"Read_Plain_Text.com.xml\"><rule from=\"^http://(www\\.)?readplaintext\\.com/\" to=\"https://readplaintext.com/\"/></ruleset>", "<ruleset name=\"Readability.com (partial)\" f=\"Readability.com.xml\"><rule from=\"^http://(www\\.)?readability\\.com/((?:account|login|register)(?:$|\\?|/)|bookmarklet/\\w|embed\\.(?:html|js))\" to=\"https://$1readability.com/$2\"/></ruleset>", "<ruleset name=\"Readers Digest.com (partial)\" f=\"Readers_Digest.com.xml\"><securecookie host=\"^\\.rd\\.com$\" name=\"^s_\\w+$\"/><securecookie host=\"^legacy\\.rd\\.com$\" name=\".+\"/><securecookie host=\"^\\.readersdigest\\.com$\" name=\"^(?:CLEQ_\\w|mbox|s_\\w+)$\"/><securecookie host=\"^(?:order|\\.?us)\\.readersdigest\\.com$\" name=\".+\"/><rule from=\"^http://(legacy|somtrkpix)\\.rd\\.com/\" to=\"https://$1.rd.com/\"/><rule from=\"^http://(order|us)\\.readersdigest\\.com/\" to=\"https://$1.readersdigest.com/\"/></ruleset>", "<ruleset name=\"ReadrBoard.com\" default_off=\"failed ruleset test\" f=\"ReadrBoard.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ReadyHosting.com\" f=\"ReadyHosting.com.xml\"><securecookie host=\"^\\.readyhosting\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?readyhosting\\.com/\" to=\"https://www.readyhosting.com/\"/><rule from=\"^http://secure\\.readyhosting\\.com/\" to=\"https://secure.readyhosting.com/\"/></ruleset>", "<ruleset name=\"ReadyNAS\" f=\"ReadyNas.xml\"><rule from=\"^http://(?:www\\.)?readynas\\.com/\" to=\"https://www.readynas.com/\"/></ruleset>", "<ruleset name=\"Ready Flowers.com (partial)\" f=\"Ready_Flowers.xml\"><securecookie host=\"^www\\.readyflowers\\.com$\" name=\".+\"/><rule from=\"^http://readyflowers\\.com/\" to=\"https://www.readyflowers.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Real-Debrid.com\" f=\"Real-Debrid.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Real Networks (partial)\" default_off=\"failed ruleset test\" f=\"Real-Networks.xml\"><securecookie host=\"^\\.real\\.com$\" name=\".*\"/><rule from=\"^http://fb-cdn\\.ghsrv\\.com/\" to=\"https://fb-cdn.ghsrv.com/\"/><rule from=\"^http://www\\.real\\.com/\" to=\"https://www.real.com/\"/><rule from=\"^http://images\\.real\\.com/\" to=\"https://www.real.com/\"/><rule from=\"^http://www\\.realone\\.com/\" to=\"https://www.real.com/\"/></ruleset>", "<ruleset name=\"RealClearPolitics.com (partial)\" f=\"RealClearPolitics.com.xml\"><rule from=\"^http://assets\\.realclearpolitics\\.com/\" to=\"https://s3.amazonaws.com/assets.realclearpolitics.com/\"/></ruleset>", "<ruleset name=\"RealMatch.com (partial)\" default_off=\"failed ruleset test\" f=\"RealMatch.com.xml\"><securecookie host=\"^\\.realmatch\\.com$\" name=\"^__utm\\w$\"/><securecookie host=\"^www\\.realmatch\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RealTime.Email\" f=\"RealTime.Email.xml\"><securecookie host=\"^app\\.realtime\\.email$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RealTimeStats.com\" default_off=\"mismatched\" f=\"RealTimeStats.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RealVNC.com\" f=\"RealVNC.com.xml\"><securecookie host=\"^support\\.realvnc\\.com$\" name=\"\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Real Robot High\" default_off=\"failed ruleset test\" f=\"Real_Robot_High.xml\"><securecookie host=\"^\\.realrobothigh\\.com$\" name=\".+\"/><rule from=\"^http://(stage\\.)?realrobothigh\\.com/\" to=\"https://$1realrobothigh.com/\"/><rule from=\"^http://www\\.realrobothigh\\.com/\" to=\"https://realrobothigh.com/\"/></ruleset>", "<ruleset name=\"Real World OCaml.org\" default_off=\"failed ruleset test\" f=\"Real_World_OCaml.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Realtech VR\" default_off=\"mismatched\" f=\"Realtech_VR.xml\"><securecookie host=\"^realtech-vr\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?realtech-vr\\.com/\" to=\"https://realtech-vr.com/\"/></ruleset>", "<ruleset name=\"Realtidbits (partial)\" default_off=\"refused\" f=\"Realtidbits.xml\"><rule from=\"^http://(api\\.|ssl\\.|www\\.)?realtidbits\\.com/\" to=\"https://$1realtidbits.com/\"/><rule from=\"^http://cdn\\.realtidbits\\.com/\" to=\"https://c299782.ssl.cf1.rackcdn.com/\"/></ruleset>", "<ruleset name=\"Realtime.co\" f=\"Realtime.co.xml\"><securecookie host=\"^a(?:ccounts|pp)\\.realtime\\.co$\" name=\".+\"/><rule from=\"^http://(accounts\\.|ortc-ws2(?:-useast1-s\\d+)?\\.)?realtime\\.co/\" to=\"https://$1realtime.co/\"/><rule from=\"^http://www\\.realtime\\.co/\" to=\"https://app.realtime.co/\"/></ruleset>", "<ruleset name=\"Realtimeregister.com\" f=\"Realtimeregister.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Realview Digital.com (partial)\" f=\"Realview_Digital.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Realview Technologies.com (partial)\" f=\"Realview_Technologies.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://downloads\\.realviewtechnologies\\.com/\" to=\"https://downloads.realviewdigital.com/\"/></ruleset>", "<ruleset name=\"Reason.com\" f=\"Reason.com.xml\"><securecookie host=\"^\\.reason\\.com$\" name=\".+\"/><rule from=\"^http://cloudfront-assets\\.reason\\.com/\" to=\"https://d1ai9qtk9p41kl.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Reason Core Security.com\" f=\"Reason_Core_Security.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Reasons.to\" f=\"Reasons.to.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rebateaccess.com\" f=\"Rebateaccess.com.xml\"><exclusion pattern=\"^http://www\\.rebateaccess\\.com/\"/><exclusion pattern=\"^http://\\w+\\.\\w+\\.rebateaccess\\.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RebelMouse.com\" f=\"RebelMouse.com.xml\"><securecookie host=\"^\\.rebelmouse\\.com$\" name=\".+\"/><rule from=\"^http://partners\\.rebelmouse\\.com/\" to=\"https://s3.amazonaws.com/partners.rebelmouse.com/\"/><rule from=\"^http://((?:about|blog|www)\\.)?rebelmouse\\.com/\" to=\"https://$1rebelmouse.com/\"/></ruleset>", "<ruleset name=\"Rebel Torrent.net\" f=\"Rebel_Torrent.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rec-log (partial)\" f=\"Rec-log.xml\"><securecookie host=\"^rec-log\\.jp$\" name=\".+\"/><rule from=\"^http://(www\\.)reclog\\.jp/\" to=\"https://$1reclog.jp/\"/><rule from=\"^http://rec-log\\.jp/\" to=\"https://rec-log.jp/\"/><rule from=\"^http://www\\.rec-log\\.jp/\" to=\"https://www.reclog.jp/\"/></ruleset>", "<ruleset name=\"rec1.com\" f=\"Rec1.com.xml\"><securecookie host=\"^secure\\.rec1\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Recalll.co\" default_off=\"failed ruleset test\" f=\"Recalll.co.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Recap the Law\" f=\"Recap_the_Law.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"recipelab.org\" f=\"Recipelab.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.recipelab\\.org/\" to=\"https://recipelab.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Reclaim-Your-Privacy.com\" f=\"Reclaim-Your-Privacy.com.xml\"><securecookie host=\"^(?:www\\.)?reclaim-your-privacy\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Reco.se\" platform=\"mixedcontent\" f=\"Reco.se.xml\"><rule from=\"^http://www\\.reco\\.se/\" to=\"https://www.reco.se/\"/><rule from=\"^http://reco\\.se/\" to=\"https://www.reco.se/\"/></ruleset>", "<ruleset name=\"Recode.net (partial)\" f=\"Recode.net.xml\"><exclusion pattern=\"^http://(?:www\\.)?recode\\.net/+(?:$|\\?|.+\\.js(?:$|[?/])|(?:.+/)?\\d{4}/|style/)\"/><securecookie host=\"^\\.\" name=\"^(?:_gat?$|_gat_|aps-trtmnt$)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Recombu.com\" f=\"Recombu.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Record Store Day\" platform=\"mixedcontent\" f=\"Record-Store-Day.xml\"><securecookie host=\"^recordstoreday\\.tuneportals\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?recordstoreday(?:\\.tuneportals)\\.com/\" to=\"https://recordstoreday.tuneportals.com/\"/></ruleset>", "<ruleset name=\"Recorded Future.com (partial)\" f=\"Recorded_Future.org.xml\"><securecookie host=\"^\\.recordedfuture\\.com$\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^support\\.recordedfuture\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Recruitment Platform.com\" f=\"Recruitment_Platform.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Recurse.com\" f=\"Recurse.com.xml\"><rule from=\"^http://recurse\\.com/\" to=\"https://www.recurse.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Recycle Now\" f=\"RecycleNow.com.xml\"><securecookie host=\"^www\\.recyclenow\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RAasnet.com (partial)\" default_off=\"failed ruleset test\" f=\"Red-Aril.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Red-Dove.com\" f=\"Red-Dove.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Red-Gate.com (partial)\" f=\"Red-Gate.com.xml\"><securecookie host=\"^documentation\\.red-gate\\.com$\" name=\".+\"/><rule from=\"^http://red-gate\\.com/\" to=\"https://www.red-gate.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Red-Pill.eu (partial)\" f=\"Red-Pill.eu.xml\"><securecookie host=\"^(?:www\\.)?red-pill\\.eu$\" name=\"^roundcube_.*\"/><rule from=\"^http://(www\\.)?red-pill\\.eu/(admin|mail)/\" to=\"https://$1red-pill.eu/$1/\"/></ruleset>", "<ruleset name=\"Red.es (partial)\" default_off=\"self-signed\" f=\"Red.es.xml\"><securecookie host=\"^\\.ontsi\\.red\\.es$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ontsi\\.red\\.es/\" to=\"https://www.ontsi.red.es/\"/></ruleset>", "<ruleset name=\"RedBubble (partial)\" f=\"RedBubble.xml\"><exclusion pattern=\"^http://www\\.redbubble\\.com/+(?!(?:auth/login|signup)(?:$|[?/])|favicon\\.ico)\"/><rule from=\"^http://support\\.redbubble\\.com/.*\" to=\"https://help.redbubble.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RedIRIS.es\" platform=\"mixedcontent\" f=\"RedIRIS.es.xml\"><securecookie host=\"^.*\\.rediris\\.es$\" name=\".+\"/><rule from=\"^http://pki\\.irisgrid\\.es/\" to=\"https://pki.irisgrid.es/\"/><rule from=\"^http://(?:www\\.)?rediris\\.(es|net)/\" to=\"https://www.rediris.$1/\"/><rule from=\"^http://(cmwebber|forja|eu|intranet|jo|ni|papi|sir|stats|wiki|yo)\\.rediris\\.es/\" to=\"https://$1.rediris.es/\"/></ruleset>", "<ruleset name=\"RedPlum.com (partial)\" f=\"RedPlum.com.xml\"><exclusion pattern=\"^http://www\\.redplum\\.com/+(?!css/|fonts/|images/)\"/><securecookie host=\"^(?!www\\.redplum\\.com$)\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RedState (partial)\" f=\"RedState.xml\"><rule from=\"^http://(www\\.)?redstate\\.com/(login|t/)\" to=\"https://$1redstate.com/$2\"/></ruleset>", "<ruleset name=\"Red Bean Software (partial)\" default_off=\"self-signed\" f=\"Red_Bean_Software.xml\"><rule from=\"^http://(?:www\\.)?red-bean\\.com/\" to=\"https://www.red-bean.com/\"/></ruleset>", "<ruleset name=\"Red Bull (partial)\" default_off=\"failed ruleset test\" f=\"Red_Bull.xml\"><securecookie host=\"^(?:challengetravis|enterdannysmind|formembed|admin\\.rbri2012)\\.redbull\\.co\\.uk$\" name=\".+\"/><securecookie host=\"^(?:(?:api|athletewidget|balconyshot-game|cache-workbench|connect|create|creativearchive(?:-staging|-test)?|energydrink|energydrink-(?:at|de|it|uk|us)|enterdannysmind|eventwidget|forage|giga|gigya-tests|image\\d?|infonet2?|rbx00185\\.microsites|mobile-ads|stage-(?:api|connect|energydrink)|streetstyle-game|tibbr|tools|trickshot-game|workbench|www)\\.)?redbull\\.com$\" name=\".+\"/><securecookie host=\"^(?:kontakt|sugarfree)\\.redbull\\.de$\" name=\".+\"/><securecookie host=\"^augmentedracing\\.redbull\\.es$\" name=\".+\"/><securecookie host=\"^cricket\\.redbull\\.in$\" name=\".+\"/><securecookie host=\"^forage\\.redbull\\.ru$\" name=\".+\"/><securecookie host=\"^(?:lab|training)\\.redbulls\\.com$\" name=\".+\"/><securecookie host=\"^(?:launchpad|twtvsl)\\.redbullusa\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?redbull\\.co\\.uk/(\\?.*)?$\" to=\"https://www.redbull.com/uk/en$1\"/><rule from=\"^http://(?:www\\.)?redbull\\.(?:co\\.uk|\\w\\w)/cs/\" to=\"https://www.redbull.com/cs/\"/><rule from=\"^http://(challengetravis|enterdannysmind|formembed|admin\\.rbri2012)\\.redbull\\.co\\.uk/\" to=\"https://$1.redbull.co.uk/\"/><rule from=\"^http://((?:api|athletewidget|balconyshot-game|confluence|connect|create|creativearchive(?:-staging|-test)?|editorial|energydrink|energydrink-(?:at|de|it|uk|us)|enterdannysmind|eventwidget|forage|gigya|gigya-tests|image\\d?|infonet2?|rbx00185\\.microsites|mobile-ads|stage-(?:api|connect|energydrink)|streetstyle-game|tibbr|tibbr-ext|tools|trickshot-game|workbench|www)\\.)?redbull\\.com/\" to=\"https://$1redbull.com/\"/><rule from=\"^http://soapbox\\.redbull\\.com/(?:\\?.*)?$\" to=\"https://www.redbull.com/\"/><rule from=\"^http://(?:www\\.)?redbull\\.de/(\\?.*)?$\" to=\"https://www.redbull.com/cs/Satellite/de_DE/RED-BULL-DE/001242746061488$1\"/><rule from=\"^http://(kontakt|sugarfree)\\.redbull\\.de/\" to=\"https://$1.redbull.de/\"/><rule from=\"^http://(?:www\\.)?redbull\\.es/(\\?.*)?$\" to=\"https://www.redbull.com/cs/Satellite/es_ES/RED-BULL-ES/001242746062075$1\"/><rule from=\"^http://augmentedracing\\.redbull\\.es/\" to=\"https://augmentedracing.redbull.es/\"/><rule from=\"^http://(?:www\\.)?redbull\\.fr/(\\?.*)?$\" to=\"https://www.redbull.com/cs/Satellite/fr_FR/RED-BULL-Home-page_FR/001242746062375$1\"/><rule from=\"^http://(?:www\\.)?redbull\\.in/(\\?.*)?$\" to=\"https://www.redbull.com/cs/Satellite/en_IN/Red-Bull-Home/001242877412074$1\"/><rule from=\"^http://cricket\\.redbull\\.in/\" to=\"https://cricket.redbull.in/\"/><rule from=\"^http://(?:www\\.)?redbull\\.no/(\\?.*)?$\" to=\"https://www.redbull.com/cs/Satellite/no_NO/RedBull/001242760618750$1\"/><rule from=\"^http://(?:www\\.)?redbull\\.ru/(\\?.*)?$\" to=\"https://www.redbull.com/cs/Satellite/ru_RU/Red-Bull-Russia/001242758643321$1\"/><rule from=\"^http://forage\\.redbull\\.ru/\" to=\"https://forage.redbull.ru/\"/><rule from=\"^http://(?:www\\.)?redbull\\.se/(\\?.*)?$\" to=\"https://www.redbull.com/cs/Satellite/sv_SE/REDBULL/001242760548154$1\"/><rule from=\"^http://(?:www\\.)?redbull\\.ua/(\\?.*)?$\" to=\"https://www.redbull.com/cs/Satellite/ru_UA/Red-Bull/001242776437928$1\"/><rule from=\"^http://(lab|training)\\.redbulls\\.com/\" to=\"https://$1.redbulls.com/\"/><rule from=\"^http://(?:www\\.)?redbullusa\\.com/(?:\\?.*)?$\" to=\"https://www.redbull.com/us/en\"/><rule from=\"^http://(?:launchpad|twtvsl)\\.redbullusa\\.com/\" to=\"https://$1.redbullusa.com/\"/></ruleset>", "<ruleset name=\"Red Bull Content Pool\" f=\"Red_Bull_Content_Pool.xml\"><securecookie host=\"^(?:internal|www|www-staging)\\.redbullcontentpool\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?redbullcontentpool\\.com/\" to=\"https://www.redbullcontentpool.com/\"/><rule from=\"^http://(cliffdiving|crashedice|images|info|internal|musicacademy|stratos|www-staging|xfighters)\\.redbullcontentpool\\.com/\" to=\"https://$1.redbullcontentpool.com/\"/></ruleset>", "<ruleset name=\"Red Bull Media House (partial)\" f=\"Red_Bull_Media_House.xml\"><securecookie host=\"^(?:content|me|mediamanager(?:-staging)?|sales|stage-wiki|wiki)\\.redbullmediahouse\\.com$\" name=\".+\"/><rule from=\"^http://(analytics|content|fonts|me|mediamanager(?:-staging)?|sales|stage-wiki|wiki)\\.redbullmediahouse\\.com/\" to=\"https://$1.redbullmediahouse.com/\"/></ruleset>", "<ruleset name=\"Red Bull Mobile (false MCB)\" platform=\"mixedcontent\" f=\"Red_Bull_Mobile-falsemixed.xml\"><exclusion pattern=\"^http://(?:www\\.)?redbullmobile\\.at/(?:fileadmin/|typo3conf/|typo3temp/|uploads/)\"/><securecookie host=\"^www\\.redbullmobile\\.at$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?redbullmobile\\.at/\" to=\"https://www.redbullmobile.at/\"/></ruleset>", "<ruleset name=\"Red Bull Mobile (partial)\" default_off=\"failed ruleset test\" f=\"Red_Bull_Mobile.xml\"><securecookie host=\"^(?:fbck|qr|socialposter|trackingtool|worb)\\.redbullmobile\\.com$\" name=\".+\"/><securecookie host=\"^(?:securea\\.)?redbullmobile\\.com\\.au$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?redbullmobile\\.at/(?=fileadmin/|typo3conf/|typo3temp/|uploads/)\" to=\"https://www.redbullmobile.at/\"/><rule from=\"^http://(fbck|qr|socialposter|trackingtool|worb)\\.redbullmobile\\.com/\" to=\"https://$1.redbullmobile.com/\"/><rule from=\"^http://(?:www\\.)?redbullmobile\\.com\\.au/\" to=\"https://redbullmobile.com.au/\"/><rule from=\"^http://secure(a)?\\.redbullmobile\\.com\\.au/\" to=\"https://secure$1.redbullmobile.com.au/\"/></ruleset>", "<ruleset name=\"Red Bull TV (partial)\" f=\"Red_Bull_TV.xml\"><securecookie host=\"^live\\.redbull\\.tv$\" name=\".+\"/><rule from=\"^http://live(2)?\\.redbull\\.tv/\" to=\"https://live$1.redbull.tv/\"/></ruleset>", "<ruleset name=\"Red Cross.org (partial)\" f=\"Red_Cross.org.xml\"><rule from=\"^http://(?:www\\.)?redcross\\.org/(?=(?:accounthelp|modal)(?:$|[?/])|ajax/|css/|donate/\\w|images/|js/)\" to=\"https://www.redcross.org/\"/></ruleset>", "<ruleset name=\"The Red Ferret\" f=\"Red_Ferret.xml\"><securecookie host=\"^(?:www)?\\.redferret\\.net$\" name=\".+\"/><rule from=\"^http://(www\\.)?theferret\\.net/\" to=\"https://$1theferret.net/\"/></ruleset>", "<ruleset name=\"Red Flush Casino (partial)\" default_off=\"failed ruleset test\" f=\"Red_Flush_Casino.xml\"><rule from=\"^http://secure\\.redflush\\.com/\" to=\"https://secure.redflush.com/\"/></ruleset>", "<ruleset name=\"Red Hat.com (partial)\" default_off=\"failed ruleset test\" f=\"Red_Hat.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.cz\\.redhat\\.com/\" to=\"https://cz.redhat.com/\"/><rule from=\"^http://jobs\\.redhat\\.com/\" to=\"https://www.redhat.com/en/jobs\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Red Letter Days.co.uk\" f=\"Red_Letter_Days.co.uk.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Red Matrix.me\" default_off=\"failed ruleset test\" f=\"Red_Matrix.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Red Team.net (partial)\" default_off=\"refused\" f=\"Red_Team.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"redblue.de (partial)\" f=\"Redblue.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Redbox.com\" platform=\"mixedcontent\" f=\"Redbox.xml\"><rule from=\"^http://(?:www\\.)?redbox\\.com/\" to=\"https://www.redbox.com/\"/><rule from=\"^http://images\\.redbox\\.com/\" to=\"https://images.redbox.com/\"/></ruleset>", "<ruleset name=\"Redbridge.gov.uk (false MCB)\" platform=\"mixedcontent\" f=\"Redbridge.gov.uk-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Redbridge.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"Redbridge.gov.uk.xml\"><exclusion pattern=\"^http://moderngov\\.redbridge\\.gov\\.uk/(?!/*(?:[Ss]iteSpecific/|TagDocs/|UserData/|(?:ieLogon|ieRegisterUser|mgEPetitionSubmit|mgPasswordReqst|mgRegisterKeywordInterest)\\.aspx|jquery-ui/|mgimages/))\"/><securecookie host=\"^(?!moderngov\\.)\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Redcats (partial)\" f=\"Redcats.xml\"><securecookie host=\"^media\\.redcatsecom\\.com$\" name=\".+\"/><rule from=\"^http://(images|media)\\.redcatsecom\\.com/\" to=\"https://$1.redcatsecom.com/\"/></ruleset>", "<ruleset name=\"redcdn.pl\" f=\"Redcdn.pl.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^__utm\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Redcoon.pt\" default_off=\"failed ruleset test\" f=\"Redcoon.pt.xml\"><rule from=\"^http://redcoon\\.pt/\" to=\"https://www.redcoon.pt/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Redd Pics.com (false MCB)\" platform=\"mixedcontent\" f=\"Redd_Pics.com-falsemixed.xml\"><securecookie host=\"^\\.reddpics\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Redd Pics.com (partial)\" f=\"Redd_Pics.com.xml\"><exclusion pattern=\"^http://reddpics\\.com/+(?!assets/|favicon\\.ico)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Reddit.com\" f=\"Reddit.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.np\\.reddit\\.com/\" to=\"https://np.reddit.com/\"/><rule from=\"^http://thumbs\\.reddit\\.com/\" to=\"https://s3.amazonaws.com/thumbs.reddit.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Reddit media.com\" f=\"Reddit_media.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://thumbs\\.redditmedia\\.com/\" to=\"https://s3.amazonaws.com/thumbs.redditmedia.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Reddit static.com\" f=\"Reddit_static.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"redditgifts.com\" f=\"Redditgifts.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"redfern.me\" f=\"Redfern.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Redfin.com\" f=\"Redfin.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Redmine.org (partial)\" f=\"Redmine.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Redmondmag.com\" f=\"Redmondmag.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rednerd.com\" f=\"Rednerd.com.xml\"><rule from=\"^http://(?:www\\.)?rednerd\\.com/\" to=\"https://rednerd.com/\"/></ruleset>", "<ruleset name=\"Redpill-Linpro.com (partial)\" default_off=\"missing certificate chain\" f=\"Redpill-Linpro.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"redports.org\" default_off=\"failed ruleset test\" f=\"Redports.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://redports\\.org/\" to=\"https://www.redports.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Redweb.com\" f=\"Redweb.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Redwoodsinyosemite.com\" platform=\"mixedcontent\" f=\"Redwoodsinyosemite.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Reed Exhibitions (partial)\" platform=\"mixedcontent\" f=\"Reed-Exhibitions.xml\"><exclusion pattern=\"^http://(?:www\\.)?infosecurity-magazine\\.com/(?:.+/$|download/\\d{1,5}|view/\\d+/[\\w-]$)\"/><rule from=\"^http://(?:www\\.)?infosecurity-magazine\\.com/\" to=\"https://www.infosecurity-magazine.com/\"/><rule from=\"^http://(?:www\\.)?lexisnexis\\.com/\" to=\"https://www.lexisnexis.com/\"/></ruleset>", "<ruleset name=\"Reed Business.net (partial)\" f=\"Reed_Business.net.xml\"><rule from=\"^http://metrics\\.reedbusiness\\.net/\" to=\"https://reedbusiness-net.d2.sc.omtrdc.net/\"/></ruleset>", "<ruleset name=\"Reed Business Information (partial)\" f=\"Reed_Business_Information.xml\"><rule from=\"^http://cdn\\.reedbusiness\\.com/\" to=\"https://d18n01l3jfu4kv.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Reed Business Information Australia\" f=\"Reed_Business_Information_Australia.xml\"><securecookie host=\"^\\.rbi\\.com\\.au$\" name=\".+\"/><rule from=\"^http://(ccbnstatic|media)\\.rbi\\.com\\.au/\" to=\"https://$1.rbi.com.au/\"/></ruleset>", "<ruleset name=\"Reef Builders\" f=\"Reef_Builders.xml\"><securecookie host=\"^\\.reefbuilders\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?reefbuilders\\.com/\" to=\"https://$1reefbuilders.com/\"/><rule from=\"^http://community\\.reefbuilders\\.com/\" to=\"https://reefbuilders.vanillaforums.com/\"/><rule from=\"^http://jobs\\.reefbuilders\\.com/c/\" to=\"https://reef.jobamatic.com/c/\"/></ruleset>", "<ruleset name=\"Reef LED Lights.com\" f=\"Reef_LED_Lights.com.xml\"><securecookie host=\"^reefledlights\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ReelHD.com\" f=\"ReelHD.com.xml\"><securecookie host=\"^(?:w*\\.)?reelhd\\.com$\" name=\".+\"/><rule from=\"^http://reelhd\\.com/\" to=\"https://www.reelhd.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ReelSEO.com\" f=\"ReelSEO.com.xml\"><securecookie host=\"^\\.reelseo\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?reelseo\\.com/\" to=\"https://$1reelseo.com/\"/><rule from=\"^http://cdn\\d?\\.reelstatic\\.com/\" to=\"https://www.reelseo.com/\"/></ruleset>", "<ruleset name=\"ReelVidz.com (partial)\" f=\"ReelVidz.com.xml\"><securecookie host=\"^(?:www\\.)?reelvidz\\.com$\" name=\".+\"/><rule from=\"^http://wac\\.20f5\\.edgecastcdn\\.net/8020F5/\" to=\"https://gp1.wac.edgecastcdn.net/8020F5/\"/><rule from=\"^http://(www\\.)?reelvidz\\.com/\" to=\"https://$1reelvidz.com/\"/></ruleset>", "<ruleset name=\"Reethi Beach.com\" f=\"Reethi_Beach.com.xml\"><securecookie host=\"^\\.reethibeach\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?reethibeach\\.com/\" to=\"https://www.reethibeach.com/\"/></ruleset>", "<ruleset name=\"Reethus-adeline.de\" f=\"Reethus-adeline.de.xml\"><securecookie host=\"^(www\\.)?reethus-adeline\\.de$\" name=\".*\"/><rule from=\"^http://(www\\.)?reethus-adeline\\.de/\" to=\"https://www.reethus-adeline.de/\"/></ruleset>", "<ruleset name=\"Reevoo (partial)\" f=\"Reevoo.xml\"><securecookie host=\"^\\.reevoo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Refaktor.hu\" f=\"Refaktor.hu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Referly (default off)\" default_off=\"Cert warning\" f=\"Referly.xml\"><securecookie host=\"^\\.refer\\.ly$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Refined Labs\" f=\"RefinedLabs.xml\"><rule from=\"^http://d\\.refinedads\\.com/\" to=\"https://d.refinedads.com/\"/></ruleset>", "<ruleset name=\"Reflected.net\" f=\"Reflected.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Reflex.cz\" f=\"Reflex.cz.xml\"><rule from=\"^http://(?:www\\.)?reflex\\.cz/\" to=\"https://www.reflex.cz/\"/><rule from=\"^http://img\\.reflex\\.cz/\" to=\"https://img.reflex.cz/\"/></ruleset>", "<ruleset name=\"ReflexPhoto\" f=\"ReflexPhoto.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Reform Government Surveillance.com\" f=\"Reform_Government_Surveillance.com.xml\"><rule from=\"^http://reformgovernmentsurveillance\\.com/\" to=\"https://www.reformgovernmentsurveillance.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Reformal (partial)\" f=\"Reformal.xml\"><exclusion pattern=\"^http://webinfo\\.\"/><securecookie host=\"^\\.reformal\\.ru$\" name=\".+\"/><rule from=\"^http://([\\w-]+\\.)?reformal\\.ru/\" to=\"https://$1reformal.ru/\"/></ruleset>", "<ruleset name=\"Refresher.cz_sk\" f=\"Refresher.cz_sk.xml\"><rule from=\"^http://www\\.refresher\\.(cz|sk)/\" to=\"https://refresher.$1/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Refog.com\" f=\"Refrog.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Reg.ru (partial)\" f=\"Reg.ru.xml\"><securecookie host=\"^\\.reg\\.ru$\" name=\".+\"/><rule from=\"^http://((?:hosting|support|www)\\.)?reg\\.ru/\" to=\"https://$1reg.ru/\"/></ruleset>", "<ruleset name=\"RegOnline.com\" f=\"RegOnline.com.xml\"><securecookie host=\"^www\\.regonline\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rega\" f=\"Rega.xml\"><rule from=\"^http://rega\\.ch/\" to=\"https://www.rega.ch/\"/><rule from=\"^http://([^/:@]+)?\\.rega\\.ch/\" to=\"https://$1.rega.ch/\"/></ruleset>", "<ruleset name=\"Regalii.com\" f=\"Regalii.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Regex101\" f=\"Regex101.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Reggi.ru\" f=\"Reggi.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RegioBank.nl\" f=\"RegioBank.nl.xml\"><securecookie host=\"^(?:www)?\\.regiobank\\.nl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RegioBank Adviseurs.nl\" f=\"RegioBank_Adviseurs.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Regiochannel.com\" f=\"Regiochannel.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Register.BG\" f=\"Register.BG.xml\"><rule from=\"^http://(?:www\\.)?register\\.bg/\" to=\"https://www.register.bg/\"/></ruleset>", "<ruleset name=\"Register.com (partial)\" f=\"Register.com.xml\"><securecookie host=\"^(partners(hips|ignup)|whoisaccuracy\\-portal|webmail0[124567]|www)\\.register\\.com$\" name=\".+\"/><rule from=\"^http://register\\.com/\" to=\"https://www.register.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Register4Less.com\" f=\"Register4Less.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Registration123.com\" f=\"Registration123.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Registro.br (partial)\" f=\"Registro.br.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Registry.Asia (partial)\" f=\"Registry.Asia.xml\"><securecookie host=\"^\\.registrars\\.registry\\.asia$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"registryrocket.com\" f=\"Registryrocket.com.xml\"><securecookie host=\"^www\\.registryrocket\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?registryrocket\\.com/\" to=\"https://www.registryrocket.com/\"/></ruleset>", "<ruleset name=\"regit.org (partial)\" f=\"Regit.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Regjeringen.no (partial)\" default_off=\"failed ruleset test\" f=\"Regjeringen.no.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"regmedia.co.uk\" f=\"Regmedia.co.uk.xml\"><securecookie host=\"^\\.regmedia\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Regnum.ru\" f=\"Regnum.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"regruhosting.ru\" default_off=\"failed ruleset test\" f=\"Regruhosting.ru.xml\"><securecookie host=\"^\\.security\\.pp\\.regruhosting\\.ru$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Regulations.gov (partial)\" f=\"Regulations.gov.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Reichelt.de\" f=\"Reichelt.de.xml\"><rule from=\"^http://(?:www\\.|such001\\.|secure\\.)?reichelt\\.de/\" to=\"https://secure.reichelt.de/\"/></ruleset>", "<ruleset name=\"Reifman.org (partial)\" f=\"Reifman.org.xml\"><rule from=\"^http://c3\\.reifman\\.org/\" to=\"https://d3iwh2gikt6957.cloudfront.net/\"/></ruleset>", "<ruleset name=\"reimanpub.com\" f=\"Reimanpub.com.xml\"><securecookie host=\"^(?:(?:origin-)?hostedmedia\\.|www\\.)?reimanpub\\.com$\" name=\".+\"/><rule from=\"^http://((?:origin-)?hostedmedia\\.|www\\.)?reimanpub\\.com/\" to=\"https://$1reimanpub.com/\"/></ruleset>", "<ruleset name=\"Reiner-SCT.com\" default_off=\"failed ruleset test\" f=\"Reiner-SCT.com.xml\"><securecookie host=\"^(?:www)?\\.reiner-sct\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Reinvigorate.net (partial)\" f=\"Reinvigorate.net.xml\"><rule from=\"^http://include\\.reinvigorate\\.net/\" to=\"https://denvua8xbp3vs.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Rejseplanen.dk (partial)\" f=\"Rejseplanen.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Reklamport.com\" f=\"Reklamport.com.xml\"><securecookie host=\"^www\\.reklamport\\.com$\" name=\"\"/><rule from=\"^http://reklamport\\.com/\" to=\"https://www.reklamport.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Relate.org.uk\" f=\"Relate.org.uk.xml\"><securecookie host=\"^www\\.relate\\.org\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RelayRides.com\" f=\"RelayRides.com.xml\"><securecookie host=\"^relayrides\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Relcom.host\" f=\"Relcom.host.xml\"><exclusion pattern=\"^http://lk\\.relcomhost\\.ru/?$\"/><exclusion pattern=\"^http://lk\\.relcomhost\\.ru/?\\?\"/><exclusion pattern=\"^http://lk\\.relcomhost\\.ru/index\\.php$\"/><exclusion pattern=\"^http://lk\\.relcomhost\\.ru/index\\.php\\?\"/><exclusion pattern=\"^http://lk\\.relcomhost\\.ru/announcements\\.php$\"/><exclusion pattern=\"^http://lk\\.relcomhost\\.ru/announcements\\.php\\?\"/><exclusion pattern=\"^http://lk\\.relcomhost\\.ru/knowledgebase\\.php$\"/><exclusion pattern=\"^http://lk\\.relcomhost\\.ru/knowledgebase\\.php\\?\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Relevate.ru\" f=\"Relevate.ru.xml\"><securecookie host=\"^(?:help)?\\.relevate\\.ru$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Reliable ISP.net\" f=\"Reliable_ISP.net.xml\"><rule from=\"^http://(?:www\\.)?reliableisp\\.net/\" to=\"https://www.reliableisp.net/\"/></ruleset>", "<ruleset name=\"Religion News.com (partial)\" f=\"Religion_News.com.xml\"><exclusion pattern=\"^http://archives\\.religionnews\\.com/(?!\\w+\\.png|assets/|favicon\\.ico|images/|sign-in(?:$|\\?|/))\"/><securecookie host=\"^\\.religionnews\\.com$\" name=\".+\"/><rule from=\"^http://((?:archives|cathleenfalsani|davidgibson|janariess|jonathanmerritt|marksilk|michaeloloughlin|omarsacirbey|omidsafi|pressreleases|www)\\.)?religionnews\\.com/\" to=\"https://$1religionnews.com/\"/></ruleset>", "<ruleset name=\"Rem.co\" f=\"Rem.co.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Remedy Entertainment (partial)\" f=\"Remedy_Entertainment.xml\"><securecookie host=\"^community\\.remedygames\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Remember the Milk\" f=\"RememberTheMilk.xml\"><securecookie host=\"^\\.rememberthemilk\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?rememberthemilk\\.(?:com|jp)/\" to=\"https://www.rememberthemilk.com/\"/><rule from=\"^http://api\\.rememberthemilk\\.com/\" to=\"https://api.rememberthemilk.com/\"/><rule from=\"^http://s([1-4])\\.rtmcdn\\.net/\" to=\"https://s$1.rtmcdn.net/\"/></ruleset>", "<ruleset name=\"Remind.com (partial)\" f=\"Remind.com.xml\"><rule from=\"^http://help\\.remind\\.com/.*\" to=\"https://remind101.zendesk.com/hc\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RemoteCoder.io\" default_off=\"failed ruleset test\" f=\"RemoteCoder.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"remoteStorage.io\" default_off=\"failed ruleset test\" f=\"RemoteStorage.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RemotelyAnywhere.com\" f=\"RemotelyAnywhere.com.xml\"><rule from=\"^http://(?:www\\.)?remotelyanywhere\\.com/\" to=\"https://secure.remotelyanywhere.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Remue Exhaust Store.com\" f=\"Remus_Exhaust_Store.com.xml\"><securecookie host=\"^\\.remusexhauststore\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Renater.fr (partial)\" f=\"Renater.fr.xml\"><securecookie host=\"^(?:groupes|services|sourcesup)\\.renater\\.fr$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RenderFarming.net\" default_off=\"failed ruleset test\" f=\"RenderFarming.net.xml\"><securecookie host=\"^burp\\.renderfarming\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Reno Gazette-Journal (partial)\" f=\"Reno_Gazette-Journal.xml\"><securecookie host=\"^(?:www)?\\.rgj\\.com$\" name=\".+\"/><rule from=\"^http://(?:cmsimg\\.|www\\.)?rgj\\.com/\" to=\"https://www.rgj.com/\"/><rule from=\"^http://deals\\.rgj\\.com/sf_(framework|module)s/\" to=\"https://reno.planetdiscover.com/sf_$1s/\"/></ruleset>", "<ruleset name=\"RenovationExperts.com\" default_off=\"missing certificate chain\" f=\"Renovation_Experts.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Renren.com (partial)\" f=\"Renren.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"renrencaopan.com\" default_off=\"failed ruleset test\" f=\"Renrencaopan.com.xml\"><securecookie host=\"^(?:www\\.)?renrencaopan\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rensselaer Polytechnic Institute\" f=\"Rensselaer_Polytechnic_Institute.xml\"><rule from=\"^http://(events\\.|clubs\\.union\\.|www\\.)?rpi\\.edu/\" to=\"https://$1rpi.edu/\"/></ruleset>", "<ruleset name=\"Rent the Runway (partial)\" f=\"Rent_the_Runway.xml\"><rule from=\"^http://(?:www\\.)?renttherunway\\.com/(grid|rtr/images)/\" to=\"https://cdn.rtrcdn.com/$1/\"/><rule from=\"^http://(www\\.)?renttherunway\\.com/(ajax|pixel|sites)/\" to=\"https://$1renttherunway.com/$2/\"/><rule from=\"^http://cdn\\.r(?:enttherunway|trcdn)\\.com/\" to=\"https://cdn.rtrcdn.com/\"/><rule from=\"^http://grid-p\\.rtrcdn\\.com/grid/\" to=\"https://cdn.rtrcdn.com/grid/\"/><rule from=\"^http://(?:grid|static)-p\\.rtrcdn\\.com/\" to=\"https://cdn.rtrcdn.com/grid/\"/></ruleset>", "<ruleset name=\"rentalcars.com (partial)\" f=\"Rentalcars.com.xml\"><securecookie host=\"^secure\\.rentalcars\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rentalserver.jp\" default_off=\"failed ruleset test\" f=\"Rentalserver.jp.xml\"><securecookie host=\"^(?:cp|cp-d|cp-vps|sv)\\.rentalserver\\.jp$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rentex\" f=\"Rentex.xml\"><securecookie host=\"^www\\.rentex\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?rentex\\.com/\" to=\"https://www.rentex.com/\"/></ruleset>", "<ruleset name=\"Rentler.com\" f=\"Rentler.com.xml\"><securecookie host=\"^\\.rentler\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RepeaterStore.com\" f=\"RepeaterStore.com.xml\"><securecookie host=\"^(?:www)?\\.repeaterstore\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Replica Perfection\" f=\"Replica_Perfection.xml\"><securecookie host=\"^\\.replicaperfection\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Replicant.us\" f=\"Replicant.us.xml\"><securecookie host=\"^redmine\\.replicant\\.us$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Reporo.com (partial)\" f=\"Reporo.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://reporo\\.com/\" to=\"https://www.reporo.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ReportLab (partial)\" f=\"ReportLab.xml\"><rule from=\"^http://www\\.reportlab\\.com/(accounts/|favicon\\.ico|media/|static)\" to=\"https://www.reportlab.com/$1\"/></ruleset>", "<ruleset name=\"Reporter-ohne-Grenzen.de\" f=\"Reporter-ohne-Grenzen.de.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RSF.org (partial)\" default_off=\"failed ruleset test\" f=\"Reporters_Without_Borders.xml\"><securecookie host=\"^\\.\" name=\"^__utm\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Reporting Project.net\" f=\"Reporting_Project.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Repozitar.cz\" f=\"Repozitar.cz.xml\"><securecookie host=\"^repozitar\\.cz$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?repozitar\\.cz/\" to=\"https://repozitar.cz/\"/></ruleset>", "<ruleset name=\"Represent.Us\" f=\"Represent.Us.xml\"><securecookie host=\"^www\\.represent\\.us$\" name=\".+\"/><rule from=\"^http://(www\\.)?represent\\.us/\" to=\"https://$1represent.us/\"/><rule from=\"^http://cdn\\d\\.represent\\.us/\" to=\"https://d16f95x138ho2a.cloudfront.net/\"/></ruleset>", "<ruleset name=\"reproducible-builds.org\" f=\"Reproducible-builds.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Reputation.com (partial)\" f=\"Reputation.com.xml\"><exclusion pattern=\"^http://uk\\.reputation\\.com/+(?!favicon\\.ico|pub/assets/)\"/><securecookie host=\"^t\\.reputation\\.com$\" name=\".+\"/><rule from=\"^http://reputation\\.com/\" to=\"https://www.reputation.com/\"/><rule from=\"^http://(t|uk)\\.reputation\\.com/\" to=\"https://$1.reputation.com/\"/><rule from=\"^http://www\\.reputation\\.com/(?=[\\w/-]*images/|min/|secure/)\" to=\"https://www.reputation.com/\"/></ruleset>", "<ruleset name=\"RequestPolicy\" f=\"RequestPolicy.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"requires.io\" f=\"Requires.io.xml\"><securecookie host=\"^requires\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Research Blogging\" default_off=\"expired, mismatch, self-signed\" f=\"Research-Blogging.xml\"><rule from=\"^http://(?:www\\.)?researchblogging\\.org/\" to=\"https://www.researchblogging.org/\"/></ruleset>", "<ruleset name=\"Research Media & Cybernetics\" f=\"Research-Media-and-Cybernetics.xml\"><securecookie host=\"^.*\\.rmcybernetics\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Research.gov\" f=\"Research.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ResearchMatch.org\" f=\"ResearchMatch.org.xml\"><securecookie host=\"^www\\.researchmatch\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Research Now.com (partial)\" f=\"Research_Now.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Research Results.com (partial)\" default_off=\"failed ruleset test\" f=\"Research_Results.com.xml\"><securecookie host=\"^\\.\" name=\"^__utm\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"researchmap.jp (partial)\" f=\"Researchmap.jp.xml\"><exclusion pattern=\"^http://researchmap\\.jp/+(?!favicon\\.ico|images/|index\\.php\\?active_center=login_view_main_autoregist|themes/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ResellerRatings (partial)\" f=\"ResellerRatings.xml\"><securecookie host=\"^.*\\.resellerratings\\.com$\" name=\".+\"/><rule from=\"^http://(?:beta\\.|(seals\\.|www\\.))?resellerratings\\.com/\" to=\"https://$1resellerratings.com/\"/><rule from=\"^http://cdn\\d\\.resellerratings\\.com/\" to=\"https://d3cb52u6zfmv02.cloudfront.net/\"/><rule from=\"^http://images\\.resellerratings\\.com/\" to=\"https://d2ebdb90bhptzn.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Reservation-Desk.com (partial)\" f=\"Reservation-Desk.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?reservation-desk\\.com/(?!application/themes/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Reservation Counter.com (partial)\" f=\"Reservation_Counter.xml\"><securecookie host=\"^callcenter\\.reservationcounter\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?reservationcounter\\.com/(?=\\w+/themes/|ga\\.\\d+\\.js)\" to=\"https://www.reservationcounter.com/\"/><rule from=\"^http://callcenter\\.reservationcounter\\.com/\" to=\"https://callcenter.reservationcounter.com/\"/></ruleset>", "<ruleset name=\"Reset the Net.org\" f=\"Reset_the_Net.org.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Resilient Systems.com (partial)\" f=\"Resilient_Systems.com.xml\"><rule from=\"^http://resilientsystems\\.com/\" to=\"https://www.resilientsystems.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Resin.io (partial)\" f=\"Resin.io.xml\"><rule from=\"^http://www\\.resin\\.io/\" to=\"https://resin.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Resinfo.org\" default_off=\"missing certificate chain\" f=\"Resinfo.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Resist Surveillance.org\" default_off=\"failed ruleset test\" f=\"Resist_Surveillance.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Resonant.org\" default_off=\"self-signed\" f=\"Resonant.org.xml\"><rule from=\"^http://(?:www\\.)?resonant\\.org/\" to=\"https://www.resonant.org/\"/><rule from=\"^http://wikis\\.resonant\\.org/\" to=\"https://wikis.resonant.org/\"/></ruleset>", "<ruleset name=\"Resortpro.net\" f=\"Resortpro.net.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Respect Network.com\" f=\"Respect_Network.com.xml\"><rule from=\"^http://respectnetwork\\.com/\" to=\"https://www.respectnetwork.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Respect our privacy.com\" default_off=\"failed ruleset test\" f=\"Respect_our_privacy.com.xml\"><securecookie host=\"^(?:www)?\\.respectourprivacy\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"responsive.io (partial)\" f=\"Responsive.io.xml\"><securecookie host=\"^(?:w*\\.)?responsive\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Responsys.com\" default_off=\"failed ruleset test\" f=\"Responsys.com.xml\"><rule from=\"^http://(?:www\\.)?responsys\\.com/.*\" to=\"https://www.oracle.com/marketingcloud/products/cross-channel/marketing-to-consumers.html\"/></ruleset>", "<ruleset name=\"Responsys.net (partial)\" f=\"Responsys.xml\"><rule from=\"^http://(static\\.cdn|policy\\d)\\.responsys\\.net/\" to=\"https://$1.responsys.net/\"/></ruleset>", "<ruleset name=\"Restore the Fourth\" default_off=\"failed ruleset test\" f=\"Restore_the_Fourth.xml\"><securecookie host=\"^(?:www)?\\.restorethefourth\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Resultspage.com (partial)\" f=\"Resultspage.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Resurs.se\" f=\"Resurs.se.xml\"><rule from=\"^http://(?:www\\.)?resurs\\.se/\" to=\"https://www.resurs.se/\"/></ruleset>", "<ruleset name=\"Resus.org.uk\" f=\"Resus.org.uk.xml\"><securecookie host=\"^www\\.resus\\.org\\.uk$\" name=\".+\"/><rule from=\"^http://resus\\.org\\.uk/\" to=\"https://www.resus.org.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Retail-Link.gr\" f=\"Retail-Link.gr.xml\"><rule from=\"^http://(?:www\\.)?retail-link\\.gr/\" to=\"https://www.retail-link.gr/\"/><rule from=\"^http://e-invoicing\\.retail-link\\.gr/\" to=\"https://e-invoicing.retail-link.gr/\"/></ruleset>", "<ruleset name=\"RetailMeNot.com\" default_off=\"failed ruleset test\" f=\"RetailMeNot.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Retail Sails\" default_off=\"failed ruleset test\" f=\"Retail_Sails.xml\"><rule from=\"^http://www\\.retailsails\\.com/\" to=\"https://retailsails.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Retailhosting.fi\" f=\"Retailhosting.fi.xml\"><rule from=\"^http://(?:www\\.)?retailhosting\\.fi/\" to=\"https://www.retailhosting.fi/\"/></ruleset>", "<ruleset name=\"Retriever-Info.com (false MCB)\" platform=\"mixedcontent\" f=\"Retriever-Info.com-falsemixed.xml\"><securecookie host=\"^\\.?www\\.retriever-info\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Retriever-Info.com (partial)\" f=\"Retriever-Info.com.xml\"><exclusion pattern=\"^http://www\\.retriever-info\\.com/+(?!favicon\\.ico|go/|wp-content/)\"/><securecookie host=\"^web\\.retriever-info\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RetroFestive.ca\" f=\"RetroFestive.ca.xml\"><securecookie host=\"^\\.retrofestive\\.ca$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RetroUSB.com\" f=\"RetroUSB.com.xml\"><securecookie host=\"^\\.retrousb\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Retronaut.com\" default_off=\"mismatched\" f=\"Retronaut.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"retsinformation.dk\" f=\"Retsinformation.dk.xml\"><securecookie host=\"^www\\.retsinformation\\.dk$\" name=\".+\"/><rule from=\"^http://retsinformation\\.dk/\" to=\"https://www.retsinformation.dk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rettighedsalliancen.dk (mixed content)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Rettighedsalliancen.dk.xml\"><rule from=\"^http://(www\\.)?rettighedsalliancen\\.dk/\" to=\"https://www.rettighedsalliancen.dk/\"/></ruleset>", "<ruleset name=\"Siedler 25.org\" default_off=\"failed ruleset test\" f=\"Return-to-the-Roots.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Return Path.com (partial)\" f=\"Return_Path.com.xml\"><securecookie host=\"^returnpath\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Return Path.net\" default_off=\"failed ruleset test\" f=\"Return_Path.net.xml\"><securecookie host=\"^monitor[12]?\\.returnpath\\.net$\" name=\".+\"/><rule from=\"^http://returnpath\\.net/\" to=\"https://www.returnpath.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"reussissonsensemble.fr (partial)\" f=\"Reussissonsensemble.fr.xml\"><securecookie host=\"^clic\\.reussissonsensemble\\.fr$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Reuters.com (partial)\" f=\"Reuters.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://reuters\\.com/\" to=\"https://www.reuters.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rev.com\" f=\"Rev.com.xml\"><securecookie host=\"^www\\.rev\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rev2pub.com\" default_off=\"failed ruleset test\" f=\"Rev2pub.com.xml\"><rule from=\"^http://creative\\.rev2pub\\.com/\" to=\"https://d1col0l9yjljr0.cloudfront.net/\"/></ruleset>", "<ruleset name=\"RevResponse.com\" f=\"RevResponse.com.xml\"><rule from=\"^http://(?:www\\.)?revresponse\\.com/\" to=\"https://www.revresponse.com/\"/></ruleset>", "<ruleset name=\"RevSci.net\" f=\"RevSci.net.xml\"><securecookie host=\"^\\.revsci\\.net$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Reveal News.org\" f=\"Reveal_News.org.xml\"><rule from=\"^http://revealnews\\.org/\" to=\"https://www.revealnews.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ReverbNation.com (partial)\" f=\"ReverbNation.com.xml\"><securecookie host=\"^\\.reverbnation\\.com$\" name=\"^_reverbnation_session$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Review Board.org (partial)\" f=\"Review_Board.org.xml\"><securecookie host=\"^reviews\\.reviewboard\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Reviewing Comics\" f=\"Reviewing_Comics.xml\"><securecookie host=\"^(?:www)?\\.reviewingcomics\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Revision3 (partial)\" f=\"Revision3.xml\"><securecookie host=\"^\\.revision3\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?revision3\\.com/\" to=\"https://$1revision3.com/\"/><rule from=\"^http://statics\\.revision3\\.com/\" to=\"https://revision3-pc-ssl.bitgravity.com/\"/></ruleset>", "<ruleset name=\"Revisium.com\" f=\"Revisium.com.xml\"><securecookie host=\"^(?:www\\.)?revisium\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Revolet.com\" default_off=\"521\" f=\"Revolet.xml\"><securecookie host=\"^(?:.*\\.)?revolet\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Revolt Games (partial)\" default_off=\"failed ruleset test\" f=\"Revolt_Games.xml\"><securecookie host=\"^\\.revoltgames\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?revoltgames\\.com/\" to=\"https://www.revoltgames.com/\"/></ruleset>", "<ruleset name=\"Revolutiontt.me\" f=\"Revolutiontt.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"revosec\" f=\"Revosec.ch.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Revstr.com\" f=\"Revstr.com.xml\"><securecookie host=\"^www\\.revstr\\.com$\" name=\".+\"/><rule from=\"^http://revstr\\.com/\" to=\"https://www.revstr.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Reynir.dk\" f=\"Reynir.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RezTrip\" f=\"RezTrip.xml\"><securecookie host=\"^www\\.reztrip\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?reztrip\\.com/\" to=\"https://www.reztrip.com/\"/></ruleset>", "<ruleset name=\"rfecom.com (partial)\" f=\"Rfecom.com.xml\"><rule from=\"^http://ch03\\.rfecom\\.com/\" to=\"https://ch03.rfecom.com/\"/><rule from=\"^http://www\\.rfecom\\.com/+(?:$|\\?.*)\" to=\"https://www.myoptimizerplus.com/\"/></ruleset>", "<ruleset name=\"rfihub.com\" f=\"Rfihub.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RfxN.com\" f=\"RfxN.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RhB\" default_off=\"failed ruleset test\" f=\"RhB.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rhapsody.com\" default_off=\"mismatched\" f=\"Rhapsody.xml\"><rule from=\"^http://(?:www\\.)?rhapsody\\.com/\" to=\"https://www.rhapsody.com/\"/></ruleset>", "<ruleset name=\"Rhein-neckar-loewen.de\" f=\"Rhein-neckar-loewen.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rheinland Reporter\" default_off=\"self-signed\" f=\"Rheinland-Reporter.xml\"><securecookie host=\"^rheinland24\\.info$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?rheinland24\\.info/\" to=\"https://rheinland24.info/\"/></ruleset>", "<ruleset name=\"Rhino Software (partial)\" default_off=\"failed ruleset test\" f=\"Rhino-Software.xml\"><securecookie host=\"^(?:www\\.)?rhinosoft\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rhino Support.com (partial)\" f=\"Rhino_Support.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://rhinosupport\\.com/\" to=\"https://www.rhinosupport.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rhizome (partial)\" f=\"Rhizome.xml\"><rule from=\"^http://(www\\.)?rhizome\\.org/static/\" to=\"https://$1rhizome.org/static/\"/></ruleset>", "<ruleset name=\"Rhombus Tech\" default_off=\"mismatched\" f=\"Rhombus-Tech.xml\"><rule from=\"^http://(?:www\\.)?rhombus-tech\\.net/\" to=\"https://rhombus-tech.net/\"/></ruleset>", "<ruleset name=\"Ribble Valley.gov.uk\" f=\"Ribble_Valley.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ricardo.ch (partial)\" default_off=\"failed ruleset test\" f=\"Ricardo.ch.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ricardoshops.ch\" default_off=\"failed ruleset test\" f=\"Ricardoshops.ch.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rice University (mismatches)\" default_off=\"mismatched\" f=\"Rice-University-mismatches.xml\"><rule from=\"^http://alumni\\.cgi\\.rice\\.edu/\" to=\"https://alumni.cgi.rice.edu/\"/></ruleset>", "<ruleset name=\"Rice University (partial)\" f=\"Rice-University.xml\"><securecookie host=\"^(?:online\\.alumni|staff)\\.rice\\.edu$\" name=\".*\"/><rule from=\"^http://(online\\.alumni|staff)\\.rice\\.edu/\" to=\"https://$1.rice.edu/\"/></ruleset>", "<ruleset name=\"RichRelevance.com (partial)\" default_off=\"failed ruleset test\" f=\"RichRelevance.xml\"><exclusion pattern=\"^http://media\\.richrelevance\\.com/$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:eu)?rm\\.recs\\.richrelevance\\.com/\" to=\"https://recs.richrelevance.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Richard Dawkins.net (partial) \" f=\"Richard-Dawkins-Foundation.xml\"><securecookie host=\"^(?:www\\.)?richarddawkins\\.net$\" name=\".+\"/><securecookie host=\"^\\.richarddawkins\\.net$\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http://comments\\.richarddawkins\\.net/\" to=\"https://rdfnet-comments.herokuapp.com/\"/><rule from=\"^http://store\\.richarddawkins\\.net/+\" to=\"https://richarddawkins.myshopify.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Richard Dawkins Foundation (problematic)\" default_off=\"mismatched\" f=\"Richard_Dawkins_Foundation-problematic.xml\"><securecookie host=\"^.*\\.richarddawkins\\.net$\" name=\".+\"/><rule from=\"^http://(de|givingaid|old)\\.richarddawkins\\.net/\" to=\"https://$1.richarddawkins.net/\"/><rule from=\"^http://(?:www\\.)?richarddawkinsfoundation\\.org/\" to=\"https://richarddawkinsfoundation.org/\"/></ruleset>", "<ruleset name=\"Richard and Judy Book Club\" f=\"Richard_and_Judy_Book_Club.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Richmond.edu (partial)\" f=\"Richmond.edu.xml\"><securecookie host=\"^(?:bannerweb|blackboard|webpass)\\.richmond\\.edu$\" name=\".+\"/><rule from=\"^http://(autodiscover|bannerweb|blackboard|dsl|exchangemail|facultystaff|webapps|webpass)\\.richmond\\.edu/\" to=\"https://$1.richmond.edu/\"/></ruleset>", "<ruleset name=\"Richmond Tea Party\" f=\"Richmond_Tea_Party.xml\"><securecookie host=\"^(?:w*\\.)?richmondteaparty\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Richmondshire.gov.uk (partial)\" default_off=\"expired, mismatched, self-signed\" f=\"Richmondshire.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ricochet.com\" f=\"Ricochet.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ricoh (partial)\" default_off=\"failed ruleset test\" f=\"Ricoh.xml\"><securecookie host=\"^(?:.*\\.)?ricoh\\.co(?:\\.in|m(?:\\.sg)?)$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?ricoh\\.co\\.in/\" to=\"https://ricoh.co.in/\"/><rule from=\"^http://(?:www\\.)?ricoh\\.com/\" to=\"https://www.ricoh.com/\"/><rule from=\"^http://(?:www\\.)?ricoh\\.com\\.hk/co(mmon|tent)/\" to=\"https://www.ricoh.com.hk/co$1/\"/><rule from=\"^http://marketplace\\.ricoh\\.com\\.sg/\" to=\"https://marketplace.ricoh.com.sg/\"/><rule from=\"^http://(?:www\\.)?ricoh\\.sg/\" to=\"https://www.ricoh.sg/\"/></ruleset>", "<ruleset name=\"Riga\" default_off=\"failed ruleset test\" f=\"Riga.xml\"><rule from=\"^http://riga\\.lv/\" to=\"https://riga.lv/\"/><rule from=\"^http://([^/:@\\.]+)\\.riga\\.lv/\" to=\"https://$1.riga.lv/\"/><rule from=\"^http://eriga\\.lv/\" to=\"https://eriga.lv/\"/><rule from=\"^http://www\\.eriga\\.lv/\" to=\"https://www.eriga.lv/\"/></ruleset>", "<ruleset name=\"Right Media\" default_off=\"failed ruleset test\" f=\"Right-Media.xml\"><securecookie host=\"^(?:.*\\.)?yieldmanager\\.(?:com|net)$\" name=\".\"/><rule from=\"^http://ad\\.adorika\\.com/\" to=\"https://ad.rmxads.com/\"/><rule from=\"^http://content\\.yieldmanager\\.com/\" to=\"https://content-ssl.yieldmanager.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RightNow Technologies clients\" default_off=\"mismatched\" f=\"RightNow-clients.xml\"><securecookie host=\"^en\\.support\\.guildwars2\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RightNow.com (partial)\" default_off=\"failed ruleset test\" f=\"RightNow.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RightScale.com (partial)\" f=\"RightScale.com.xml\"><rule from=\"^http://assets\\.rightscale\\.com/\" to=\"https://duh6oa3w9hopv.cloudfront.net/\"/><rule from=\"^http://((?:analytics|(?:www\\.)?forums|my|support|us-3)\\.)?rightscale\\.com/\" to=\"https://$1rightscale.com/\"/></ruleset>", "<ruleset name=\"Righthaven\" default_off=\"failed ruleset test\" f=\"Righthaven.xml\"><exclusion pattern=\"^http://plutus\\.righthaven\\.com/(?:$|index\\.php)\"/><securecookie host=\"^plutus\\.righthaven\\.com$\" name=\".*\"/><rule from=\"^http://(\\w+\\.)?righthaven\\.com/\" to=\"https://$1righthaven.com/\"/></ruleset>", "<ruleset name=\"Rightmove.co.uk (partial)\" f=\"Rightmove.co.uk.xml\"><exclusion pattern=\"^http://www\\.rightmove\\.co\\.uk/(?!/*(?:favicon\\.ico|forgottenPasswordForm\\.html|(?:[\\w-]+/)?login\\.html|ps/|rmplus/login/login\\.action))\"/><securecookie host=\"^\\.\" name=\"^__qca$\"/><securecookie host=\"^\\w\" name=\"^__utm\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RightsCon.org\" f=\"RightsCon.xml\"><securecookie host=\"^(?:www\\.)?rightscon\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rigzone (partial)\" default_off=\"failed ruleset test\" f=\"Rigzone.xml\"><exclusion pattern=\"^http://(?:comptracker|noblewin)\\.\"/><securecookie host=\"^(?:.+\\.)?rigzone\\.com$\" name=\".+\"/><rule from=\"^http://(\\w+\\.)?rigzone\\.com/\" to=\"https://$1rigzone.com/\"/></ruleset>", "<ruleset name=\"Riigi Teataja.ee\" f=\"Riigi_Teataja.ee.xml\"><securecookie host=\"^www\\.riigiteataja\\.ee$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Riksgalden.se\" f=\"Riksgalden.se.xml\"><rule from=\"^http://riksgalden\\.se/\" to=\"https://www.riksgalden.se/\"/><rule from=\"^http://www\\.riksgalden\\.se/\" to=\"https://www.riksgalden.se/\"/></ruleset>", "<ruleset name=\"Ring.cx\" f=\"Ring.cx.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RingCentral.com (partial)\" f=\"RingCentral.xml\"><exclusion pattern=\"^http://marketo\\.ringcentral\\.com/+(?!css/|images/|rs/)\"/><securecookie host=\"^(?:service|www)\\.ringcentral\\.com$\" name=\".+\"/><rule from=\"^http://ringcentral\\.com/\" to=\"https://www.ringcentral.com/\"/><rule from=\"^http://marketo\\.ringcentral\\.com/\" to=\"https://na-c.marketo.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RingRevenue.com\" f=\"RingRevenue.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ringinout.com\" f=\"Ringinout.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RingtoneMatcher.com (partial)\" default_off=\"mismatched\" f=\"RingtoneMatcher.com.xml\"><rule from=\"^http://overlay\\.ringtonematcher\\.com/\" to=\"https://overlay.ringtonematcher.com/\"/></ruleset>", "<ruleset name=\"riotgames.com (partial)\" f=\"Riotgames.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RIPE.net\" f=\"Ripe.net.xml\"><securecookie host=\".*\\.ripe\\.net$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ripoff Report\" default_off=\"failed ruleset test\" f=\"Ripoff_Report.xml\"><securecookie host=\"^www\\.ripoffreport\\.com$\" name=\".+\"/><rule from=\"^http://ma\\.mesaazcorruptionreport\\.com/\" to=\"https://ma.mesaazcorruptionreport.com/\"/><rule from=\"^http://ripoffreport\\.com/\" to=\"https://www.ripoffreport.com/\"/><rule from=\"^http://(verified|www)\\.ripoffreport\\.com/\" to=\"https://$1.ripoffreport.com/\"/></ruleset>", "<ruleset name=\"Risc OS Open\" f=\"Risc_OS_Open.xml\"><securecookie host=\"^(?:www\\.)?riscosopen\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RISCON s.r.o.\" f=\"Riscon.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Riscure.com\" f=\"Riscure.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RiseOfTheVegan.com\" f=\"RiseOfTheVegan.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RiskIQ.com\" f=\"RiskIQ.com.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Risparmio Postale.it\" f=\"Risparmio_Postale.it.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://risparmiopostale\\.it/\" to=\"https://www.risparmiopostale.it/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ritter.vg\" f=\"Ritter.vg.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rivalseek.com\" default_off=\"failed ruleset test\" f=\"Rivalseek.com.xml\"><securecookie host=\"^(?:www\\.)?rivalseek\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"River Island (partial)\" f=\"River_Island.xml\"><exclusion pattern=\"^http://(?:(?:au|eu|us|www)\\.)?riverisland\\.(?:com|fr)/(?![aA]ssets/|favicon\\.ico|myaccount)\"/><exclusion pattern=\"^http://is\\.riverisland\\.com/(?!$|\\?)\"/><securecookie host=\"^\\.riverisland\\.com$\" name=\"^(?:s_\\w+|__utm)\\w$\"/><rule from=\"^http://riverisland\\.(com|fr)/\" to=\"https://www.riverisland.$1/\"/><rule from=\"^http://(au|content1|content1-us|eu|is|my|us|www)\\.riverisland\\.com/\" to=\"https://$1.riverisland.com/\"/><rule from=\"^http://(content1|www)\\.riverisland\\.fr/\" to=\"https://$1.riverisland.fr/\"/></ruleset>", "<ruleset name=\"Riverbed.com (partial)\" f=\"Riverbed.xml\"><exclusion pattern=\"^http://ir\\.riverbed\\.com/(?!client/|media_files/)\"/><securecookie host=\"^(?:(?:autodiscover|community|developer|global|(?:apps(?:\\.uat)?\\.|uat\\.)?splash|support|supportkb|(?:dr-)?webmail)\\.)?riverbed\\.com$\" name=\".+\"/><rule from=\"^http://images\\.riverbed\\.com/\" to=\"https://secure.eloqua.com/\"/><rule from=\"^http://ir\\.riverbed\\.com/\" to=\"https://origin-phoenix.corporate-ir.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Riverside Majestic Hotel\" f=\"RiversideMajestic.com.xml\"><securecookie host=\"^(www\\.)?riversidemajestic\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Riviera Tours\" default_off=\"failed ruleset test\" f=\"Riviera-Tours.xml\"><securecookie host=\"^(?:.*\\.)?rivieratours\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Riyadonline.com\" default_off=\"failed ruleset test\" f=\"Riyadonline.com.xml\"><securecookie host=\"^corp\\.riyadonline\\.com$\" name=\".+\"/><rule from=\"^http://corp\\.riyadonline\\.com/\" to=\"https://corp.riyadonline.com/\"/></ruleset>", "<ruleset name=\"Rizon.net\" f=\"Rizon.net.xml\"><securecookie host=\"^\\.rizon\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rk37.ru\" f=\"Rk37.ru.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://www\\.rk37\\.ru/\" to=\"https://rk37.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rki.de\" f=\"Rki.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rkn.gov.ru\" default_off=\"failed ruleset test\" f=\"Rkn.gov.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rl0.ru (partial)\" default_off=\"failed ruleset test\" f=\"Rl0.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RoadRunner\" platform=\"mixedcontent\" f=\"RoadRunner.xml\"><rule from=\"^http://(?:www\\.)?rr\\.com/\" to=\"https://www.rr.com/\"/></ruleset>", "<ruleset name=\"Roadtrippers.com (partial)\" f=\"Roadtrippers.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Roam Mobility\" f=\"Roam_Mobility.xml\"><securecookie host=\"^\\.www\\.roammobility\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Roaring Penguin.com\" f=\"Roaring_Penguin.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?roaringpenguin\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Robeco\" f=\"Robeco.xml\"><rule from=\"^http://(?:www\\.)?robeco\\.nl/\" to=\"https://www.robeco.nl/\"/></ruleset>", "<ruleset name=\"Roberts Space Industries.com\" default_off=\"failed ruleset test\" f=\"Roberts_Space_Industries.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Robin Rabard (partial)\" f=\"Robin_Rabard.xml\"><rule from=\"^http://(?:www\\.)?robinbarnard\\.com/(cms_style\\.css|(?:\\w+_)?images/)\" to=\"https://secure.justhost.com/~robinba2/$1\"/></ruleset>", "<ruleset name=\"Roblox\" f=\"Roblox.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RoboForm.com\" f=\"RoboForm.com.xml\"><securecookie host=\"^secure\\.roboform\\.com$\" name=\".+\"/><rule from=\"^http://blog\\.roboform\\.com/\" to=\"https://www.roboform.com/blog/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Robokassa.ru\" f=\"Robokassa.ru.xml\"><securecookie host=\".*\\.robokassa\\.ru$\" name=\".+\"/><rule from=\"^http://robokassa\\.ru/\" to=\"https://www.robokassa.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RobotShop (partial)\" platform=\"mixedcontent\" f=\"RobotShop.xml\"><securecookie host=\"^(?:.*\\.)?robotshop\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"roc-noc.com\" f=\"Roc-noc.com.xml\"><securecookie host=\"^\\.www\\.roc-noc\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Roccat.org (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Roccat.org.xml\"><securecookie host=\"^www\\.roccat\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"University of Rochester\" f=\"Rochester.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rochesterhomepage.net (partial)\" f=\"Rochesterhomepage.net.xml\"><rule from=\"^http://(?:www\\.)?rochesterhomepage\\.biz/(area|banner\\.amp|biz/|classifieds(?:$|\\?|/)|css/|favicon\\.ico|homepage/layout_image\\.php|images?/|site\\.css|tributes/)\" to=\"https://www.rochesterhomepage.biz/$1\"/><rule from=\"^http://(?:www\\.)?rochesterhomepage\\.net/(component|image|include|librarie|module|plugin|template)s/\" to=\"https://rochesterhomepage.net/$1s/\"/></ruleset>", "<ruleset name=\"Rochford.gov.uk (partial)\" platform=\"mixedcontent\" f=\"Rochford.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rock Creek Outfitters (partial)\" f=\"Rock_Creek_Outfitters.xml\"><rule from=\"^http://(www\\.)?rockcreek\\.com/(css/|favicon\\.ico|img/|login\\.rco|outdoor/images/)\" to=\"https://$1rockcreek.com/$2\"/></ruleset>", "<ruleset name=\"Rock Paper Photo.com\" default_off=\"failed ruleset test\" f=\"Rock_Paper_Photo.com.xml\"><securecookie host=\"^\\.www\\.rockpaperphoto\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rock Paper Shotgun.com\" f=\"Rock_Paper_Shotgun.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rock Valley College.edu\" f=\"Rock_Valley_College.edu.xml\"><securecookie host=\"^(?:www\\.)?rockvalleycollege\\.edu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rocket.Chat\" f=\"Rocket.Chat.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rocketbank.ru\" f=\"Rocketbank.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rocketnet.jp\" f=\"Rocketnet.jp.xml\"><rule from=\"^http://rocketnet\\.jp/\" to=\"https://www.rocketnet.jp/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rockhurst Hawks.com\" f=\"Rockhurst_Hawks.com.xml\"><securecookie host=\"^(?:www\\.)?rockhursthawks\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rockstar Games\" f=\"RockstarGames.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Roddis\" f=\"Roddis.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"roe.ch\" f=\"Roe.ch.xml\"><securecookie host=\"^www\\.roe\\.ch$\" name=\".+\"/><rule from=\"^http://((?:daniel|mirror|www)\\.)?roe\\.ch/\" to=\"https://$1roe.ch/\"/></ruleset>", "<ruleset name=\"roeck-us.net\" default_off=\"expired, self-signed\" f=\"Roeck-us.net.xml\"><rule from=\"^http://(?:www\\.)?roeck-us\\.net/\" to=\"https://roeck-us.net/\"/></ruleset>", "<ruleset name=\"Roem.ru\" f=\"Roem.ru.xml\"><rule from=\"^http://(?:(m\\.)|www\\.)?roem\\.ru/\" to=\"https://$1roem.ru/\"/></ruleset>", "<ruleset name=\"Roger Federer\" default_off=\"failed ruleset test\" f=\"RogerFederer.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rogue Amoeba.com (partial)\" f=\"Rogue_Amoeba.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rohieb.name\" f=\"Rohieb.name.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"roia.biz\" f=\"Roia.biz.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.roia\\.biz/\" to=\"https://roia.biz/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Roiservice.com\" default_off=\"failed ruleset test\" f=\"Roiservice.com.xml\"><rule from=\"^http://track\\.roiservice\\.com/\" to=\"https://track.roiservice.com/\"/></ruleset>", "<ruleset name=\"Roku.com (partial)\" f=\"Roku.com.xml\"><rule from=\"^http://((?:owner|www|wwwimg)\\.)?roku\\.com/\" to=\"https://$1roku.com/\"/><rule from=\"^http://support\\.roku\\.com/(?=favicon\\.ico|generated/|images/|system/)\" to=\"https://roku.zendesk.com/\"/></ruleset>", "<ruleset name=\"RolePlayChat.org\" default_off=\"failed ruleset test\" f=\"RolePlayChat.org.xml\"><securecookie host=\"^(?:w*\\.)?roleplaychat\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rolex.com (partial)\" f=\"Rolex.com.xml\"><securecookie host=\"^\\.\" name=\"^s_v\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://rolex\\.com/\" to=\"https://www.rolex.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Roll Call.com (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Roll_Call.com.xml\"><securecookie host=\"^(?:\\.?secure)?\\.rollcall\\.com$\" name=\".+\"/><rule from=\"^http://(?:(?:cdn|secure|www)\\.)?rollcall\\.com/\" to=\"https://secure.rollcall.com/\"/></ruleset>", "<ruleset name=\"rollApp.com (partial)\" f=\"Rollapp.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rollbar\" f=\"Rollbar.xml\"><securecookie host=\"^(?:\\.?www\\.)?rollbar\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Roller Net.us (partial)\" f=\"Roller_Net.us.xml\"><rule from=\"^http://(acc|activesync|webmail)\\.rollernet\\.us/\" to=\"https://$1.rollernet.us/\"/></ruleset>", "<ruleset name=\"Rolling Stone.com (partial)\" f=\"Rolling_Stone.com.xml\"><exclusion pattern=\"^http://assets-s3\\.rollingstone\\.com/+(?!assets/|favicon\\.ico|images/)\"/><securecookie host=\"^\\.rollingstone\\.com$\" name=\"^__utm\\w$\"/><securecookie host=\"^subscribe\\.rollingstone\\.com$\" name=\".+\"/><rule from=\"^http://((?:assets|assets-s3|subscribe|www)\\.)?rollingstone\\.com/\" to=\"https://$1rollingstone.com/\"/></ruleset>", "<ruleset name=\"Rolling Stone Subscriptions.com\" f=\"Rolling_Stone_Subscriptions.com.xml\"><securecookie host=\"^(?:www)?\\.rollingstonesubscriptions\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?rollingstonesubscriptions\\.com/\" to=\"https://www.rollingstonesubscriptions.com/\"/></ruleset>", "<ruleset name=\"Roloil\" f=\"Roloil.xml\"><securecookie host=\"^\\.roloil\\.com$\" name=\".+\"/><rule from=\"^http://www\\.roloil\\.com/\" to=\"https://www.roloil.com/\"/></ruleset>", "<ruleset name=\"romab.se\" f=\"Romab.se.xml\"><rule from=\"^http://(www\\.)?romab\\.se/\" to=\"https://romab.com/\"/></ruleset>", "<ruleset name=\"Rooof.com (mismatched)\" default_off=\"mismatched\" f=\"Rooof.com-problematic.xml\"><securecookie host=\"(?:www)?\\.roof\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rooof.com (partial)\" f=\"Rooof.xml\"><rule from=\"^http://cdn\\.rooof\\.com/\" to=\"https://d2fiu2vy3tuc3o.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Root.cz\" default_off=\"failed ruleset test\" f=\"Root.cz.xml\"><securecookie host=\".+\\.root\\.cz$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RootBSD.net\" f=\"RootBSD.net.xml\"><securecookie host=\"^(?:admin|manage)\\.rootbsd\\.net$\" name=\".+\"/><rule from=\"^http://((?:admin|manage|www)\\.)?rootbsd\\.net/\" to=\"https://$1rootbsd.net/\"/></ruleset>", "<ruleset name=\"RoseHosting.com\" f=\"RoseHosting.com.xml\"><securecookie host=\"^secure\\.rosehosting\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RosettaCode.org\" f=\"RosettaCode.org.xml\"><securecookie host=\"^www\\.rosettacode\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rosevrobank.ru\" default_off=\"failed ruleset test\" f=\"Rosevrobank.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Roskilde University (partial)\" default_off=\"failed ruleset test\" f=\"Roskilde_University.xml\"><securecookie host=\"^www\\.ruc\\.dk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ruc\\.dk/\" to=\"https://www.ruc.dk/\"/></ruleset>", "<ruleset name=\"Ross Ulbricht.org\" default_off=\"mismatch\" f=\"Ross_Ulbricht.org.xml\"><securecookie host=\"^\\.rossulbricht\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rossendale.gov.uk\" f=\"Rossendale.gov.uk.xml\"><securecookie host=\"^(?!\\.rossendale\\.gov\\.uk$).\" name=\".\"/><rule from=\"^http://rossendale\\.gov\\.uk/\" to=\"https://www.rossendale.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Roster Teeth (partial)\" f=\"Roster-Teeth.xml\"><rule from=\"^http://s3\\.roosterteeth\\.com/\" to=\"https://s3.amazonaws.com/s3.roosterteeth.com/\"/></ruleset>", "<ruleset name=\"RotaryView.com\" f=\"RotaryView.com.xml\"><securecookie host=\"^rotaryview\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rother.gov.uk (false MCB)\" platform=\"mixedcontent\" f=\"Rother.gov.uk-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rother.gov.uk (partial)\" f=\"Rother.gov.uk.xml\"><exclusion pattern=\"^http://(?:www\\.)?rother\\.gov\\.uk/+(?!\\w+/(?:css/|images/|scripts/.+\\.css|template/)|CHttpHandler\\.ashx|(?:MyAlerts|MyAlertsEvents|article/10061/Login|contactus|unsubscribe)(?:$|[?/])|css/|images/|media/)\"/><securecookie host=\"^(?!(?:www\\.)?rother\\.gov\\.uk$)\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rotherham.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"Rotherham.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rotlogix.com\" f=\"Rotlogix.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rottentomatoes.com\" f=\"RottenTomatoes.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__qca$|_gat?$|_gat_|optimizely)\"/><securecookie host=\"^(?!\\.rottentomatoes\\.com$).\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rottenecards\" default_off=\"failed ruleset test\" f=\"Rottenecards.xml\"><securecookie host=\"^www\\.rottenecards\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rottnest Express\" f=\"Rottnest-Express.xml\"><securecookie host=\"^(www|bookings)\\.rottnestexpress\\.com\\.au$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rottnest Fast Ferries\" f=\"Rottnest-Fast-Ferries.xml\"><securecookie host=\"^www\\.rottnestfastferries\\.com\\.au$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rough Trade Gear\" f=\"Rough_Trade_Gear.xml\"><securecookie host=\"^(?:.*\\.)?roughtradegear\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RoundCube.net\" f=\"RoundCube.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Roundhouse\" default_off=\"needs testing\" f=\"Roundhouse.xml\"><exclusion pattern=\"^http://(www\\.)?roundhouse\\.org\\.uk/(about($|/cultural-camden|/jobs$|/people|press/archive/|/roundhouse-people/(ambassadors|associates|biographies|roundhouse-trust|staff))|book-tickets|call-to-create$|explore($|/portfolios|/profiles/all|/radio/)|hire/(roundhouse-london-2012|spaces-for-hire)|round1($|/about|/blog|/jointheteam|/producers|/projects)|take-part$|take-part/(creative-projects($|/creative-media/online-film-fund-2012|/performing-arts)|get-support($|financial-support))|visit/buy-a-t-shirt|whats-on/(festivals|productions$|world-shakespeare-festival))\"/><securecookie host=\"^(?:www)?\\.roundhouse\\.org\\.uk$\" name=\".*\"/><rule from=\"^http://(www\\.)?roundhouse\\.org\\.uk/(contact|take-part)/$\" to=\"https://$1roundhouse.org.uk/$2\"/><rule from=\"^http://(www\\.)?roundhouse\\.org\\.uk/\" to=\"https://$1roundhouse.org.uk/\"/></ruleset>", "<ruleset name=\"Rovi (partial)\" f=\"Rovi.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rovio.com (partial)\" f=\"Rovio.com.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://assets\\.rovio\\.com/\" to=\"https://d2onmsj2cximry.cloudfront.net/\"/><rule from=\"^http://assets-production\\.rovio\\.com/\" to=\"https://ductl1gjw76cl.cloudfront.net/\"/><rule from=\"^http://fonts\\.rovio\\.com/\" to=\"https://d1umoivskfzt7s.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rows.io\" f=\"Rows.io.xml\"><securecookie host=\"^rows\\.io$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?rows\\.io/\" to=\"https://rows.io/\"/></ruleset>", "<ruleset name=\"Royal Academy of Engineering\" default_off=\"failed ruleset test\" f=\"Royal-Academy-of-Engineering.xml\"><securecookie host=\"^.*\\.raeng\\.org\\.uk$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?raeng\\.org\\.uk/\" to=\"https://www.raeng.org.uk/\"/><rule from=\"^http://private\\.raeng\\.org\\.uk/\" to=\"https://private.raeng.org.uk/\"/></ruleset>", "<ruleset name=\"Royal Astronomical Society\" f=\"Royal-Astronomical-Society.xml\"><securecookie host=\"^www\\.ras\\.org\\.uk$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?ras\\.org\\.uk/\" to=\"https://www.ras.org.uk/\"/></ruleset>", "<ruleset name=\"Royal Navy (partial)\" platform=\"mixedcontent\" default_off=\"ruleset coverage test fails\" f=\"Royal-Navy.xml\"><securecookie host=\"^(?:www\\.)?navynews\\.co\\.uk$\" name=\".*\"/><rule from=\"^http://(www\\.)?navynews\\.co\\.uk/\" to=\"https://$1navynews.co.uk/\"/><rule from=\"^http://(www\\.)?royalnavy\\.mod\\.uk/(contact-us|images/|library/|login|[pP]rofile/|ScriptCombiner\\.axd)\" to=\"https://$1royalnavy.mod.uk/$2\"/></ruleset>", "<ruleset name=\"Royal Society (mismatches)\" default_off=\"mismatch, self-signed\" f=\"Royal-Society-of-Chemistry-mismatches.xml\"><rule from=\"^http://prospect\\.rsc\\.org/\" to=\"https://prospect.rsc.org/\"/></ruleset>", "<ruleset name=\"Royal Society of Chemistry (partial)\" platform=\"mixedcontent\" f=\"Royal-Society-of-Chemistry.xml\"><securecookie host=\"^(?:.*\\.)?chemspider\\.com$\" name=\".*\"/><securecookie host=\"^(?:carousel|members)\\.rsc\\.org$\" name=\".*\"/><rule from=\"^http://([\\w-]+\\.)?chemspider\\.com/\" to=\"https://$1chemspider.com/\"/><rule from=\"^http://(?:rsc|(?:www\\.)?rscweb)\\.org/\" to=\"https://www.rsc.org/\"/><rule from=\"^http://(carousel|members)\\.rsc\\.org/\" to=\"https://$1.rsc.org/\"/></ruleset>", "<ruleset name=\"Royal Australian Navy\" default_off=\"failed ruleset test\" f=\"RoyalAustralianNavy.xml\"><rule from=\"^http://(?:www\\.)?navy\\.gov\\.au/\" to=\"https://www.navy.gov.au/\"/></ruleset>", "<ruleset name=\"RoyalGovUK\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"RoyalGovUK.xml\"><securecookie host=\"^(?:.+\\.)?royal\\.gov\\.uk$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?royal\\.gov\\.uk/\" to=\"https://www.royal.gov.uk/\"/></ruleset>", "<ruleset name=\"Royal Mail (partial)\" f=\"Royal_Mail.xml\"><securecookie host=\"^(?:\\.?shop|www2)\\.royalmail\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?royalmail\\.com/(sites/|user(?:$|\\?|/))\" to=\"https://www.royalmail.com/$1\"/><rule from=\"^http://(shop|www2)\\.royalmail\\.com/\" to=\"https://$1.royalmail.com/\"/></ruleset>", "<ruleset name=\"Royal Mail Group (partial)\" f=\"Royal_Mail_Group.xml\"><rule from=\"^http://(?:www\\.)?royalmailgroup\\.com/(sites/|user(?:$|\\?|/))\" to=\"https://www.royalmailgroup.com/$1\"/></ruleset>", "<ruleset name=\"Royal Society.org\" f=\"Royal_Society.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RPG Maker web.com (partial)\" f=\"Rpgmakerweb.com.xml\"><securecookie host=\".\" name=\"^optimizely\"/><rule from=\"^http://rpgmakerweb\\.com/\" to=\"https://www.rpgmakerweb.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rpmfind.net\" f=\"Rpmfind.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RPM Fusion.org\" f=\"Rpmfusion.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rpw.sh\" default_off=\"failed ruleset test\" f=\"Rpw.sh.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rsb.ru\" f=\"Rsb.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rshb.ru\" f=\"Rshb.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rspamd.com\" f=\"Rspamd.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rsync.net (partial)\" f=\"Rsync.net.xml\"><rule from=\"^http://(?:www\\.)?rsync\\.net/(?=css/|images/|resources/)\" to=\"https://www.rsync.net/\"/></ruleset>", "<ruleset name=\"rsys.net\" f=\"Rsys.net.xml\"><rule from=\"^http://([\\w\\-])\\.rsys\\.net/\" to=\"https://$1.rsys.net/\"/></ruleset>", "<ruleset name=\"Rtbf.be Belgian Television\" default_off=\"failed ruleset test\" f=\"Rtbf.be.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:rss|ds\\d\\.static)\\.rtbf\\.be/\" to=\"https://ssl-ds.static.rtbf.be/\"/><rule from=\"^http://sgc\\.static\\.rtbf\\.be/\" to=\"https://ssl-sgc.static.rtbf.be/\"/><rule from=\"^http://www\\.static\\.rtbf\\.be/\" to=\"https://ssl-www.static.rtbf.be/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ru4.com\" f=\"Ru4.com.xml\"><securecookie host=\"^\\.ru4\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rubenerd.com\" f=\"Rubenerd.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rubicon Project.com\" f=\"Rubicon-Project.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://tap2?-cdn\\.rubiconproject\\.com/\" to=\"https://tap.rubiconproject.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rubicon Dev.com\" f=\"Rubicon_Development.xml\"><securecookie host=\"^\\.rubicondev\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rublacklist.net\" f=\"Rublacklist.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ruby-China.org\" f=\"Ruby-China.org.xml\"><rule from=\"^http://www\\.ruby-china\\.org/\" to=\"https://ruby-china.org/\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ruby-Forum.com\" f=\"Ruby-Forum.com.xml\"><securecookie host=\"^www\\.ruby-forum\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ruby-Toolbox.com\" f=\"Ruby-Toolbox.com.xml\"><securecookie host=\"^www\\.ruby-toolbox\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ruby-doc.org\" f=\"Ruby-doc.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ruby-lang.org\" f=\"Ruby-lang.org.xml\"><securecookie host=\"^bugs\\.ruby-lang\\.org$\" name=\".+\"/><rule from=\"^http://ruby-lang\\.org/\" to=\"https://www.ruby-lang.org/\"/><rule from=\"^http://doc\\.ruby-lang\\.org/\" to=\"https://docs.ruby-lang.org/\"/><rule from=\"^http://redmine\\.ruby-lang\\.org/\" to=\"https://bugs.ruby-lang.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RubyForge.org (partial)\" default_off=\"refused\" f=\"RubyForge.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RubyGems.org (problematic)\" default_off=\"mismatched\" f=\"RubyGems.org-problematic.xml\"><exclusion pattern=\"^http://m\\.rubygems\\.org/iui/\"/><securecookie host=\".+\\.rubygems\\.org\" name=\".+\"/><rule from=\"^http://(help|m|status)\\.rubygems\\.org/\" to=\"https://$1.rubygems.org/\"/></ruleset>", "<ruleset name=\"RubyGems.org (partial)\" f=\"RubyGems.xml\"><securecookie host=\"^(?:www\\.)?rubygems.org\" name=\".+\"/><rule from=\"^http://(?:www\\.)?gemcutter\\.org/\" to=\"https://rubygems.org/\"/><rule from=\"^http://(www\\.)?rubygems\\.org/\" to=\"https://$1rubygems.org/\"/><rule from=\"^http://m\\.rubygems\\.org/(?=iui/)\" to=\"https://gem.heroku.com/\"/></ruleset>", "<ruleset name=\"Ruby Together.org\" f=\"Ruby_Together.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ruderich.org\" f=\"Ruderich.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rudloff.pro\" f=\"Rudloff.pro.xml\"><rule from=\"^http://(?:www\\.)?rudloff\\.pro/\" to=\"https://www.rudloff.pro/\"/></ruleset>", "<ruleset name=\"Rue La La.com\" f=\"Rue_La_La.com.xml\"><securecookie host=\"^www\\.ruelala\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ruelala\\.com/\" to=\"https://www.ruelala.com/\"/></ruleset>", "<ruleset name=\"rufus\" f=\"Rufus.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RugStudio (partial)\" f=\"RugStudio.xml\"><rule from=\"^http://(?:www\\.)?rugstudio\\.com/((?:cart|custom\\.css|login|order-lookup|send-password)\\.aspx|customfooter2\\.css|favicon\\.ico|images/|imago/|themes/)\" to=\"https://www.rugstudio.com/$1\"/><rule from=\"^http://rugs\\.rugstudio\\.com/\" to=\"https://rugstudio.resultspage.com/\"/></ruleset>", "<ruleset name=\"Rugby.gov.uk (partial)\" f=\"Rugby.gov.uk.xml\"><securecookie host=\"^\\.\" name=\"^TestCookie$\"/><securecookie host=\"^(?!\\.rugby\\.gov\\.uk$).\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rugged Software\" f=\"Rugged-Software.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ruhr-Uni-Bochum.de (false MCB)\" platform=\"mixedcontent\" f=\"Ruhr-Uni-Bochum.de-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ruhr-Uni-Bochum.de (partial)\" default_off=\"failed ruleset test\" f=\"Ruhr-Uni-Bochum.de.xml\"><exclusion pattern=\"^http://www\\.cits\\.ruhr-uni-bochum\\.de/(?!/*(?:imperia/md/(?:content|images)/))\"/><exclusion pattern=\"^http://www\\.ruhr-uni-bochum\\.de/(?:a-z|anreise|kontakt|studierendensekretariat|suche|uebersicht)\"/><rule from=\"^http://ruhr-uni-bochum\\.de/\" to=\"https://www.ruhr-uni-bochum.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rule34.xxx\" f=\"Rule34.xxx.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rumors City.com\" f=\"Rumors_City.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Run for Your Lives.com\" default_off=\"mismatched\" f=\"Run-for-Your-Lives.xml\"><securecookie host=\"^www\\.runforyourlives\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?runforyourlives\\.com/\" to=\"https://www.runforyourlives.com/\"/></ruleset>", "<ruleset name=\"RunAbove.com\" default_off=\"failed ruleset test\" f=\"RunAbove.xml\"><securecookie host=\"^(?:(?:community|labs|www)\\.)?runabove\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RunSafe\" f=\"RunSafe.xml\"><securecookie host=\"^www\\.irunsafe\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Runbook.io\" default_off=\"failed ruleset test\" f=\"Runbook.io.xml\"><securecookie host=\"^\\.runbook\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Runbox.com\" f=\"Runbox.com.xml\"><securecookie host=\"^(?:blog|support)\\.runbox\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Runscope.com (partial)\" f=\"Runscope.com.xml\"><securecookie host=\"^www\\.runscope\\.com$\" name=\".+\"/><rule from=\"^http://status\\.runscope\\.com/\" to=\"https://runscope.statuspage.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ruptly.tv\" f=\"Ruptly.tv.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RushMyPassport.com\" f=\"RushMyPassport.com.xml\"><securecookie host=\"^www\\.rushmypassport\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?rushmypassport\\.com/\" to=\"https://www.rushmypassport.com/\"/></ruleset>", "<ruleset name=\"Russell Group.ac.uk (false MCB)\" platform=\"mixedcontent\" f=\"Russell_Group.ac.uk.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RBTH.ru\" f=\"Russia-Beyond-the-Headlines.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?rbth\\.ru/+\" to=\"https://rbth.com/\"/><rule from=\"^http://nl\\.media\\.rbth\\.ru/\" to=\"https://d227diz1d7fwfb.cloudfront.net/\"/></ruleset>", "<ruleset name=\"russia.ru (partial)\" f=\"Russia.ru.xml\"><securecookie host=\"^adv\\.russia\\.ru$\" name=\".+\"/><rule from=\"^http://(adv|mail)\\.russia\\.ru/\" to=\"https://$1.russia.ru/\"/></ruleset>", "<ruleset name=\"Russia2all.com\" f=\"Russia2all.com.xml\"><securecookie host=\"^www\\.russia2all\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Russian American Company\" f=\"Russian_American_Company.xml\"><securecookie host=\"^\\.russianamericancompany\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rust-Lang.org (partial)\" f=\"Rust-Lang.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rutgers University (partial)\" platform=\"mixedcontent\" f=\"Rutgers_University.xml\"><exclusion pattern=\"^http://www\\.acs\\.rutgers\\.edu/directory/?(?:\\?.*)?$\"/><exclusion pattern=\"^http://www4\\.libraries\\.rutgers\\.edu/(?!sites/)\"/><exclusion pattern=\"^http://rads\\.rutgers\\.edu/(?!css/|images/|Login\\.aspx)\"/><exclusion pattern=\"^http://resnet\\.rutgers\\.edu/(?!css/|favicon\\.ico|graphics/)\"/><exclusion pattern=\"^http://ruevents\\.rutgers\\.edu/(?!events/admin/)\"/><exclusion pattern=\"^http://rusecure\\.rutgers\\.edu/(?!misc/|modules/|sites/|themes/)\"/><securecookie host=\"^(?:grad\\.admissions|admissionservices|biology|\\.cait|comminfo|(?:(?:www\\.)?ems|service|storyquarterly|www)?\\.camden|ce-catalog|directoryservices|dn|webmail\\.eden|events|execdeanagriculture|finservices|food|ghcookcampus|gobble|hdrti|hpo|identityservices|idm|(?:www\\.)?ipe|\\.?lawjournal|my|netid|(?:blackboard|law|ncs|webmail|www)\\.newark|neipmvwg|nj4h|njaes(?:intranet)?|broad\\.nwk-campus|ocblogdev1|shib\\.oirt|personalinfo|\\.?www1\\.recreation|rhshope|rias-gateway|ruoncampus|sakai|secure\\.sas|sc-apps|search|sebs(?:intranet)?|securitysystems|sims|sis|software|studentabcweb|surveys|wiki\\.td|transcripts|uhrapps|visitnjfarms|www)\\.rutgers\\.edu$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?((?:camden|cs|eden|nbcs|newark|physics|rci|td)\\.)?rutgers\\.edu/\" to=\"https://www.$1rutgers.edu/\"/><rule from=\"^http://(?:www\\.)?(?:alumni|support)\\.rutgers\\.edu/(admin/|calendar\\.css$|images/|s/\\d+/(?:appstyles\\.css|images/|js/)|ScriptResource\\.axd|scripts/)\" to=\"https://imodules.com/$1\"/><rule from=\"^http://(?:www\\.)?(andromeda|antarcticquest|cait|(?:athletics|storyquarterly)\\.camden|comminfo|events|execdeanagriculture|food|ghcookcampus|gobble|libraries|lifesci|math|mssg|(?:law|webmail)\\.newark|nj4h|njaes(?:intranet)?|resnet|njaes|rads|rhshope|ruinfo|ruoffcampus|ruoncampus|sebs|sebs(?:intranet|njaesnews)|studentabc|uhr|visitnjfarms)\\.rutgers\\.edu/\" to=\"https://$1.rutgers.edu/\"/><rule from=\"^http://(www\\.acs|grad\\.admissions|admissionservices|apsmail|biology|(?:computing\\.|mfa\\.|service\\.)?camden|(?:www\\.)?(?:ems\\.camden|camlaw|ipe|rulill)|cas|ce-catalog|(?:sirs\\.|www\\.)?ctaar|directoryservices|dn|webmail\\.eden|email|mail\\.envsci|ess|finservices|gradschoolalumni|halflife|hdrti|hpo|hpodrome|identityservices|idm|lawjournal|(?:facsub|mss3|(?:login|www-iris-rutgers-edu)\\.proxy|www[24])\\.libraries|my|nagios|neipmvwg|netid|(?:blackboard|ncs)\\.newark|njog|broad\\.nwk-campus|ocblog(?:dev1)?|octestblog|oirap|shib\\.oirt|services\\.oit|payrolluhr|personalinfo|plant(?:diagnosticlab|-pest-advisory)|ppa|rams|www1\\.recreation|rhshope|rias-gateway|ruevents|rusecure|rutadmin|sakai|secure\\.sas|sc-apps|scarletmail|search|secure|securitysystems|services|sims|sis|software|studentabcweb|surveys|voip\\.td|wiki\\.td|transcripts|turfblog|ua|uhrapps|webhost-x0[15])\\.rutgers\\.edu/\" to=\"https://$1.rutgers.edu/\"/><rule from=\"^http://(?:www\\.)?athletics\\.rutgers\\.edu/(?:\\?.*)?$\" to=\"https://www.rutgers.edu/campus-life/athletics-rutgers\"/><rule from=\"^http://edseries\\.camden\\.rutgers\\.edu/(?:.+/)?([^\\?]*)(\\?.*)?\" to=\"https://computing.camden.rutgers.edu/help/training$1$2\"/><rule from=\"^http://catalogs\\.rutgers\\.edu/(?:\\?.*)$\" to=\"https://www.rutgers.edu/academics/catalogs\"/><rule from=\"^http://(?:www\\.)?ideabank\\.rutgers\\.edu/(?:\\?.*)?$\" to=\"https://camlaw.rutgers.edu/webapps/ideabank/\"/><rule from=\"^http://libguides\\.rutgers\\.edu/(css\\d*|data|include|js(?:\\d+\\w?)?)/\" to=\"https://libguides.com/$1/\"/><rule from=\"^http://mailmain\\.rutgers\\.edu/\" to=\"https://email.rutgers.edu/\"/><rule from=\"^http://(parktran|rudots)\\.rutgers\\.edu/\" to=\"https://gobble.rutgers.edu/\"/><rule from=\"^http://www\\.rce\\.rutgers\\.com/money/pdfs/\" to=\"https://njaes.rutgers.com/money/pdfs/\"/><rule from=\"^http://mygraddate\\.sas\\.rutgers\\.edu/\" to=\"https://secure.sas.rutgers.edu/apps/mymajor/\"/><rule from=\"^http://mymajor\\.sas\\.rutgers\\.edu/\" to=\"https://secure.sas.rutgers.edu/apps/mymajor/\"/><rule from=\"^http://webreg\\.rutgers\\.edu/\" to=\"https://sims.rutgers.edu/webreg/\"/></ruleset>", "<ruleset name=\"Ruweb.ru\" f=\"Ruweb.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ruxcon.org.au\" f=\"Ruxcon.org.au.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ruxcon Breakpoint.com\" default_off=\"failed ruleset test\" f=\"Ruxcon_Breakpoint.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rxpharmacyusa.com\" default_off=\"failed ruleset test\" f=\"Rxpharmacyusa.com.xml\"><securecookie host=\"^\\.?www\\.rxpharmacyusa\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rxportalexpress.com\" f=\"Rxportalexpress.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://rxportalexpress\\.com/\" to=\"https://www.rxportalexpress.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rya.nc\" f=\"Rya.nc.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ryanair.com\" f=\"Ryanair.com.xml\"><securecookie host=\"^(?:www)?\\.ryanair\\.com$\" name=\".+\"/><rule from=\"^http://www\\.ryanair\\.com/\" to=\"https://www.ryanair.com/\"/><rule from=\"^http://ryanair\\.com/\" to=\"https://www.ryanair.com/\"/></ruleset>", "<ruleset name=\"Ryedale.gov.uk (partial)\" f=\"Ryedale.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"S-3.com\" default_off=\"failed ruleset test\" f=\"S-3.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"s-Microsoft.com\" f=\"S-Microsoft.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"s-Msft.com (partial)\" f=\"S-Msft.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://i[2-4]\\.(code\\.msdn|social|gallery\\.technet)\\.s-msft\\.com/\" to=\"https://i1.$1.s-msft.com/\"/><rule from=\"^http://i[1-4]\\.services\\.social\\.s-msft\\.com/\" to=\"https://services.social.microsoft.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"s-msn.com (partial)\" default_off=\"failed ruleset test\" f=\"S-msn.com.xml\"><rule from=\"^http://static-hp\\.s-msn\\.com/\" to=\"https://preview.msn.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"S-pankki\" f=\"S-pankki.xml\"><securecookie host=\"^(?:www|online)\\.s-pankki\\.fi$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?s-pankki\\.fi/\" to=\"https://www.s-pankki.fi/\"/><rule from=\"^http://online\\.s-pankki\\.fi/\" to=\"https://online.s-pankki.fi/\"/></ruleset>", "<ruleset name=\"S2 Games (mismatches)\" default_off=\"mismatched\" platform=\"mixedcontent\" f=\"S2-Games-mismatches.xml\"><rule from=\"^http://dl\\.heroesofnewerth\\.com/\" to=\"https://dl.heroesofnewerth.com/\"/></ruleset>", "<ruleset name=\"S2 Games (partial)\" default_off=\"failed ruleset test\" f=\"S2-Games.xml\"><securecookie host=\"^(?:.*\\.)?heroesofnewerth\\.com$\" name=\".*\"/><securecookie host=\"^savage2\\.com$\" name=\".*\"/><rule from=\"^http://(www\\.)?heroesofnewerth\\.com/\" to=\"https://$1heroesofnewerth.com/\"/><rule from=\"^http://(?:www\\.)?savage2\\.com/\" to=\"https://savage2.com/\"/></ruleset>", "<ruleset name=\"S2Media (mismatches)\" default_off=\"Certificate mismatch\" f=\"S2Media.xml\"><rule from=\"^http://(?:www\\.)?layer-ads\\.de/\" to=\"https://layer-ads.de/\"/><rule from=\"^http://(www\\.)?s2media(\\.be|digital\\.com)/\" to=\"https://www.s2media$2/\"/><securecookie host=\"^(?:www\\.)?s2media(?:\\.be|digital\\.com)$\" name=\".*\"/></ruleset>", "<ruleset name=\"s2Member.com (false MCB)\" platform=\"mixedcontent\" f=\"S2Member.com-falsemixed.xml\"><securecookie host=\"^\\.s2member\\.com$\" name=\".+\"/><rule from=\"^http://www\\.s2member\\.com/(?!affiliates/API/|favicon\\.ico|s-badges/|wp-content/|wp-includes/)\" to=\"https://www.s2member.com/\"/></ruleset>", "<ruleset name=\"s2Member.com (partial)\" f=\"S2Member.com.xml\"><exclusion pattern=\"^http://www\\.s2member\\.com/(?!affiliates/API/|favicon\\.ico|s-badges/|wp-content/|wp-includes/)\"/><rule from=\"^http://(?:www\\.)?s2member\\.com/\" to=\"https://www.s2member.com/\"/></ruleset>", "<ruleset name=\"SACNAS (partial)\" default_off=\"failed ruleset test\" f=\"SACNAS.xml\"><rule from=\"^http://(www\\.)?sacnas\\.org/($|civicrm/|content/|member-directory|sites/|user/)\" to=\"https://$1sacnas.org/$2\"/></ruleset>", "<ruleset name=\"SAIC.com (partial)\" f=\"SAIC.com.xml\"><rule from=\"^http://(?:www\\.)?saic\\.com/\" to=\"https://www.saic.com/\"/></ruleset>", "<ruleset name=\"SAKURA.ad.jp (partial)\" f=\"SAKURA_Internet.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.secure\\.\" name=\".\"/><rule from=\"^http://sakura\\.ad\\.jp/\" to=\"https://www.sakura.ad.jp/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SALESmanago.pl\" f=\"SALESmanago.pl.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SAMBA\" f=\"SAMBA.xml\"><rule from=\"^http://samba\\.com/\" to=\"https://www.samba.com/\"/><rule from=\"^http://(sambacapital|sambatdwl|sambaonline|www)\\.samba\\.com/\" to=\"https://$1.samba.com/\"/></ruleset>", "<ruleset name=\"SANS.edu\" f=\"SANS.edu.xml\"><securecookie host=\"^\\.isc\\.sans\\.edu$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SANS.org\" default_off=\"failed ruleset test\" f=\"SANS.org.xml\"><securecookie host=\"^\\.sans\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SAP (partial)\" default_off=\"failed ruleset test\" f=\"SAP.xml\"><exclusion pattern=\"^https://www\\.sdn\\.sap\\.com/irj/scn/go(?:$|\\?|/)\"/><exclusion pattern=\"^http://search\\.sap\\.com/(?:$|\\?.)\"/><securecookie host=\"^(?:accounts|help|internalstore|mail|open|scn|store|www54)\\.sap\\.com$\" name=\".+\"/><rule from=\"^http://cdn\\.blog-sap\\.com/\" to=\"https://blog.sap.com/\"/><rule from=\"^http://(?:www\\.)?sap\\.com/(favicon\\.ico|global/(?:js|ui)/)\" to=\"https://www.sap.com/$1\"/><rule from=\"^http://(accounts|blogs|help|internalstore|mail|open|scn|www\\.sdn|search|store|www54|access)\\.sap\\.com/\" to=\"https://$1.sap.com/\"/><rule from=\"^http://(www\\.sc|sd)n\\.sap\\.com/.*\" to=\"https://scn.sap.com/welcome?original_fqdn=$1n.sap.com\"/></ruleset>", "<ruleset name=\"SAPO.io (partial)\" f=\"SAPO.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SAPO.pt (partial)\" f=\"SAPO.pt.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SAS.com\" f=\"SAS_Institute.xml\"><securecookie host=\"^(?:.*\\.)?sas\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SATA-IO.org\" default_off=\"failed ruleset test\" f=\"SATA-IO.org.xml\"><rule from=\"^http://(?:www\\.)?sata-io\\.org/\" to=\"https://www.sata-io.org/\"/></ruleset>", "<ruleset name=\"SAT symposium.org\" default_off=\"failed ruleset test\" f=\"SAT_symposium.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SAnet.me\" default_off=\"failed ruleset test\" f=\"SAnet.me.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SB-Innovation.de\" default_off=\"expired, self-signed\" f=\"SB-Innovation.de.xml\"><securecookie host=\"^(?:.*\\.)?sb-innovation\\.de$\" name=\".*\"/><rule from=\"^http://(?:[\\w\\-]+\\.)?sb-innovation\\.de/\" to=\"https://www.sb-innovation.de/\"/></ruleset>", "<ruleset name=\"SB Nation.com (partial)\" f=\"SB-Nation.xml\"><securecookie host=\"^www\\.sbnation\\.com$\" name=\".*\"/><rule from=\"^http://assets\\.sbnation\\.com/\" to=\"https://s3.amazonaws.com/assets.sbnation.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SBA-Research.org\" f=\"SBA-Research.org.xml\"><securecookie host=\"^(?:www\\.)?sba-research\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SBForge.org\" f=\"SBForge.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"StateBankOfIndia\" default_off=\"failed ruleset test\" f=\"SBI.xml\"><securecookie host=\"^(?:.+\\.)?sbi\\.co\\.in$\" name=\".*\"/><rule from=\"^http://sbi\\.co\\.in/\" to=\"https://www.sbi.co.in/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SBNdev.net\" f=\"SBNdev.net.xml\"><rule from=\"^http://share\\.sbndev\\.net/\" to=\"https://s3.amazonaws.com/share.sbndev.net/\"/></ruleset>", "<ruleset name=\"SBV Improver.com\" default_off=\"failed ruleset test\" f=\"SBV_Improver.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SC.edu (partial)\" f=\"SC.edu.xml\"><rule from=\"^http://((?:artsandsciences|giving|www)\\.)?sc\\.edu/\" to=\"https://$1sc.edu/\"/></ruleset>", "<ruleset name=\"SCADACS.org\" f=\"SCADACS.org.xml\"><rule from=\"^http://scadacs\\.org/\" to=\"https://www.scadacs.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SCAMWATCH.gov.au\" f=\"SCAMWATCH.gov.au.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SCAP Sync.com\" default_off=\"failed ruleset test\" f=\"SCAP_Sync.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SCDN.co (partial)\" f=\"SCDN.co.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://cf\\.scdn\\.co/\" to=\"https://d2c87l0yth4zbw.cloudfront.net/\"/></ruleset>", "<ruleset name=\"SCEA.com (partial)\" f=\"SCEA.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://webassets\\w\\.scea\\.com/\" to=\"https://secure.cdn.us.playstation.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SCSK.jp\" f=\"SCSK.jp.xml\"><rule from=\"^http://(?:www\\.)?scsk\\.jp/\" to=\"https://www.scsk.jp/\"/></ruleset>", "<ruleset name=\"SCaron.info\" f=\"SCaron.info.xml\"><rule from=\"^http://www\\.scaron\\.info/\" to=\"https://scaron.info/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SDA.it (partial)\" default_off=\"failed ruleset test\" f=\"SDA.it.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SDSC.edu\" f=\"SDSC.edu.xml\"><rule from=\"^http://(lists|www)\\.sdsc\\.edu/\" to=\"https://$1.sdsc.edu/\"/></ruleset>", "<ruleset name=\"SDSU.edu (partial)\" f=\"SDSU.edu.xml\"><exclusion pattern=\"^http://(?:arweb|newscenter)\\.sdsu\\.edu/(?!.+\\.(?:css|gif|jpg|ico|pdf|png)|giving(?:$|[?/]))\"/><exclusion pattern=\"^http://(?:chhs|ens|slhs)\\.sdsu\\.edu/+(?!wp-content/|wp-includes/)\"/><exclusion pattern=\"^http://socialwork\\.sdsu\\.edu/+(?!(?:[\\w-]+/+)?wp-(?:content|includes)/)\"/><exclusion pattern=\"^http://www-rohan\\.sdsu\\.edu/~(?!cbabroad/+(?:\\w+/)?images/)\"/><exclusion pattern=\"^http://nursing\\.sdsu\\.edu/+(?!wp-content/|wp-includes/)\"/><exclusion pattern=\"^http://phonebook\\.sdsu\\.edu/+(?!ealert(?:$|[?/]))\"/><securecookie host=\"^(?:ali|azteclinkweb|blackboard|www\\.ces|circuit|(?:filex|selfservice)\\.foundation|giveonline|go|infoed|\\.?libpac|m\\.libpac|sunspot|www-rohan)\\.sdsu\\.edu$\" name=\".+\"/><rule from=\"^http://campaign\\.sdsu\\.edu/+(?=$|\\?)\" to=\"https://securelb.imodules.com/s/997/campaign13/start.aspx\"/><rule from=\"^http://campaign\\.sdsu\\.edu/\" to=\"https://securelb.imodules.com/\"/><rule from=\"^http://ctl\\.sdsu\\.edu/+(?:$|\\?.*)\" to=\"https://go.sdsu.edu/dus/ctl/\"/><rule from=\"^http://coe\\.sdsu\\.edu/+(?=$|\\?)\" to=\"https://go.sdsu.edu/education/Default.aspx\"/><rule from=\"^http://coe\\.sdsu\\.edu/\" to=\"https://go.sdsu.edu/education/\"/><rule from=\"^http://hobbit\\.sdsu\\.edu/.*\" to=\"https://library.sdsu.edu/guides/\"/><rule from=\"^http://www\\.isc\\.sdsu\\.edu/+\" to=\"https://studentaffairs.sdsu.edu/ISC/\"/><rule from=\"^http://piprofile\\.sdsu\\.edu:4443/\" to=\"https://piprofile.sdsu.edu:4443/\"/><rule from=\"^http://(?:www\\.sa|starter)\\.sdsu\\.edu/\" to=\"https://studentaffairs.sdsu.edu/\"/><rule from=\"^http://(ali|arweb|audhandbook|azteclinkweb|blackboard|www\\.ces|chhs|circuit|cmsweb\\.cms|ens|esit|(?:filex|help|selfservice)\\.foundation|giveonline|go|hhs|infoed|jobsfoundation|libpac|m\\.libpac|newscenter|phonebook|scua2|slhs|socialwork|studentaffairs|sunspot|www-rohan)\\.sdsu\\.edu/\" to=\"https://$1.sdsu.edu/\"/></ruleset>", "<ruleset name=\"SEAGM.com (false MCB)\" platform=\"mixedcontent\" f=\"SEAGM.com-falsemixed.xml\"><securecookie host=\"^\\.(?:www\\.)?seagm\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SEAGM.com (partial)\" f=\"SEAGM.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SEC-Consult.com (partial)\" f=\"SEC-Consult.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SEL Inc.com\" f=\"SEL_Inc.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SELinux Project.org\" f=\"SELinux_Project.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.selinuxproject\\.org/\" to=\"https://selinuxproject.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SEMABUZZ.COM\" default_off=\"failed ruleset test\" f=\"SEMABUZZ.COM.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SEMOR.cz\" f=\"SEMOR.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SEO.com\" platform=\"mixedcontent\" f=\"SEO.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SEO Training Toronto\" f=\"SEO_Training_Toronto.xml\"><securecookie host=\"(?:www)?\\.seotrainingtoronto.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SEScoops\" f=\"SEScoops.xml\"><securecookie host=\"^\\.sescoops\\.com$\" name=\".+\"/><rule from=\"^http://(?:\\d\\.|(www\\.))?sescoops\\.com/\" to=\"https://$1sescoops.com/\"/></ruleset>", "<ruleset name=\"SE Round Table.com\" f=\"SE_Round_Table.com.xml\"><securecookie host=\"^www\\.seroundtable\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SEstatic.fi (partial)\" f=\"SEstatic.fi.xml\"><rule from=\"^http://n(t)?\\.sestatic\\.fi/\" to=\"https://n$1.sestatic.fi/\"/></ruleset>", "<ruleset name=\"SF-Mail.de\" platform=\"cacert\" default_off=\"failed ruleset test\" f=\"SF-Mail.de.xml\"><securecookie host=\"^webmail\\.sf-mail\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SF.net\" f=\"SF.net.xml\"><rule from=\"^http://(apps|goparallel|images|lists)\\.sf\\.net/\" to=\"https://$1.sourceforge.net/\"/><rule from=\"^http://(\\w+)\\.svn\\.sf\\.net/\" to=\"https://$1.svn.sourceforge.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SF.se (broken)\" default_off=\"https://trac.torproject.org/projects/tor/ticket/7278\" f=\"SF.se.xml\"><rule from=\"^http://sf\\.se/\" to=\"https://www.sf.se/\"/><rule from=\"^http://www\\.sf\\.se/\" to=\"https://www.sf.se/\"/></ruleset>", "<ruleset name=\"SFM Group (partial)\" f=\"SFM-Group.xml\"><rule from=\"^http://sfm-offshore\\.com/\" to=\"https://www.sfm-offshore.com/\"/><rule from=\"^http://(de|es|fr|it|www)\\.sfm-offshore\\.com/(favicon\\.ico|(imag|modul|templat)es/|order/|(bestellengesellschaft|(ordina|solicitud)societaoffshore|commandersociete|ordercompany)\\.html)\" to=\"https://$1.sfm-offshore.com/$2\"/></ruleset>", "<ruleset name=\"SF Site.com\" f=\"SF_Site.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SGI.com\" f=\"SGI.com.xml\"><rule from=\"^http://(?:www\\.)?sgi\\.com/\" to=\"https://www.sgi.com/\"/></ruleset>", "<ruleset name=\"SGNO.org (partial)\" f=\"SGNO.org.xml\"><rule from=\"^http://(?:www\\.)?sgno\\.org/(?=about(?:/donate)?(?:$|[?/])|concrete/|favicon\\.ico|files/|packages/|themes/)\" to=\"https://www.sgno.org/\"/></ruleset>", "<ruleset name=\"SGSStudentbostader.se\" platform=\"mixedcontent\" f=\"SGSStudentbostader.se.xml\"><rule from=\"^http://(?:www\\.)?sgsstudentbostader\\.se/\" to=\"https://www.sgsstudentbostader.se/\"/></ruleset>", "<ruleset name=\"SH.se\" platform=\"mixedcontent\" f=\"SH.se.xml\"><rule from=\"^http://bibl\\.sh\\.se/\" to=\"https://bibl.sh.se/\"/><rule from=\"^http://webappl\\.web\\.sh\\.se/\" to=\"https://webappl.web.sh.se/\"/></ruleset>", "<ruleset name=\"SHA 2 SSL Checker.com\" f=\"SHA_2_SSL_Checker.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SHKSPR.mobi\" f=\"SHKSPR.mobi.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SHld.net (partial)\" f=\"SHld.net.xml\"><securecookie host=\"^sso\\.shld\\.net$\" name=\".+\"/><rule from=\"^http://(c2|k2?|s|sso)\\.shld\\.net/\" to=\"https://$1.shld.net/\"/><rule from=\"^http://n?c\\.shld\\.net/(?!$|\\?)\" to=\"https://c.shld.net/\"/></ruleset>", "<ruleset name=\"SI.se\" f=\"SI.se.xml\"><rule from=\"^http://www\\.si\\.se/\" to=\"https://www.si.se/\"/><rule from=\"^http://si\\.se/\" to=\"https://www.si.se/\"/></ruleset>", "<ruleset name=\"SICS.se\" f=\"SICS.se.xml\"><rule from=\"^http://sics\\.se/\" to=\"https://www.sics.se/\"/><rule from=\"^http://www\\.sics\\.se/\" to=\"https://www.sics.se/\"/></ruleset>", "<ruleset name=\"SIDN\" f=\"SIDN.xml\"><securecookie host=\"^(?:www\\.)?sidn\\.nl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SIFF\" default_off=\"connection reset\" f=\"SIFF.xml\"><securecookie host=\"^(?:.*\\.)?siff\\.net$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?siff\\.net/\" to=\"https://www.siff.net/\"/></ruleset>", "<ruleset name=\"SIL International (partial)\" f=\"SIL-International.xml\"><exclusion pattern=\"^http://scripts\\.sil\\.org/cms/scripts/page\\.php\"/><rule from=\"^http://scripts\\.sil\\.org/\" to=\"https://scripts.sil.org/\"/></ruleset>", "<ruleset name=\"SIL International (problematic)\" default_off=\"expired, mismatched, self-signed\" f=\"SIL_International-problematic.xml\"><rule from=\"^http://(?:www\\.)?sil\\.org/\" to=\"https://www.sil.org/\"/></ruleset>", "<ruleset name=\"SIP Solutions.net (partial)\" f=\"SIP_Solutions.net.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SJ.se (partial)\" f=\"SJ.se.xml\"><exclusion pattern=\"^http://(?:www\\.)?sj\\.se/+(?:content/dam/|etc/designs/|sv/trafikinfo(?:$|[?/]))\"/><rule from=\"^http://sj\\.se/\" to=\"https://www.sj.se/\"/><rule from=\"^http://www\\.sj\\.se/\" to=\"https://www.sj.se/\"/></ruleset>", "<ruleset name=\"SKNVibes (partial)\" f=\"SKNVibes.xml\"><exclusion pattern=\"^http://(?:www\\.)?sknvibes\\.com/(?!(?:[\\w-]+/)?(?:dmenu/|effects/|[iI](?:mage|tem)s/|js/|scripts/|themes/|zimg/)|general/(?:login_continue|send_pass)\\.cfm|skngallery2/)\"/><securecookie host=\"^sms\\.sknvibes\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SKS Keyservers (partial)\" f=\"SKS-Keyservers.xml\"><rule from=\"^http://(?:www\\.)?sks-keyservers\\.net/\" to=\"https://sks-keyservers.net/\"/></ruleset>", "<ruleset name=\"SKYCITY Auckland\" f=\"SKYCITY-Auckland.xml\"><securecookie host=\"^www\\.skycityauckland\\.co\\.nz$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SK hynix.com\" default_off=\"failed ruleset test\" f=\"SK_hynix.com.xml\"><securecookie host=\"^(?:www\\.)?skhynix\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SKortekaas.nl\" f=\"SKortekaas.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SLF.se\" f=\"SLF.se.xml\"><rule from=\"^http://slf\\.se/\" to=\"https://www.slf.se/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SLI-Systems.com (partial)\" f=\"SLI-Systems.com.xml\"><rule from=\"^http://(www\\.)?slisystems\\.com/\" to=\"https://$1sli-systems.com/\"/><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SLIP Plate.com\" f=\"SLIP_Plate.com.xml\"><securecookie host=\"^(?:www)?\\.slipplate\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SLOOH (partial)\" f=\"SLOOH.xml\"><exclusion pattern=\"^http://(?:www\\.)?slooh\\.com/(?:\\?.*)?$\"/><rule from=\"^http://(www\\.)?slooh\\.com/\" to=\"https://$1slooh.com/\"/><rule from=\"^http://images\\.slooh\\.com/\" to=\"https://s3.images.slooh.com/\"/><rule from=\"^http://images-account\\.slooh\\.com/\" to=\"https://c580754.ssl.cf2.rackcdn.com/\"/><rule from=\"^http://images-background\\.slooh\\.com/\" to=\"https://c575991.ssl.cf2.rackcdn.com/\"/><rule from=\"^http://images-buttons\\.slooh\\.com/\" to=\"https://c576040.ssl.cf2.rackcdn.com/\"/><rule from=\"^http://images-footer\\.slooh\\.com/\" to=\"https://c576050.ssl.cf2.rackcdn.com/\"/><rule from=\"^http://images-home\\.slooh\\.com/\" to=\"https://c575441.ssl.cf2.rackcdn.com/\"/></ruleset>", "<ruleset name=\"slu.se\" f=\"SLU.se.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SMACK TLS.com\" f=\"SMACK_TLS.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SMBC-Comics.com\" f=\"SMBC-Comics.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SME.sk\" f=\"SME.sk.xml\"><rule from=\"^http://www\\.zahrada\\.artmama\\.sme\\.sk/\" to=\"https://zahrada.artmama.sme.sk/\"/><rule from=\"^http://www\\.(dolnyzemplin|gemer|hornyzemplin|kosice|presov|spis)\\.korzar\\.sme\\.sk/\" to=\"https://$1.korzar.sme.sk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SMFTA.com (partial)\" default_off=\"failed ruleset test\" f=\"SMFTA.com.xml\"><rule from=\"^http://(?:www\\.)?smfta\\.com/\" to=\"https://www.smfta.com/\"/></ruleset>", "<ruleset name=\"SMF for Free (partial)\" f=\"SMF_for_Free.xml\"><rule from=\"^http://cdn\\.smfboards\\.com/\" to=\"https://d2woastm347hjv.cloudfront.net/\"/><rule from=\"^http://images\\.smfboards\\.com/\" to=\"https://s3.amazonaws.com/images.smfboards.com/\"/></ruleset>", "<ruleset name=\"SMSSecure.org\" default_off=\"failed ruleset test\" f=\"SMSSecure.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SMU.edu (partial)\" default_off=\"mismatched\" f=\"SMU.edu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SMWCentral\" f=\"SMWCentral.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sMyl.es\" f=\"SMyl.es.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SNCB\" f=\"SNCB.xml\"><securecookie host=\"^(?:.*\\.)?b-europe\\.com$\" name=\".+\"/><rule from=\"^http://b-europe\\.com/\" to=\"https://www.b-europe.com/\"/><rule from=\"^http://([^/:@]+)?\\.b-europe\\.com/\" to=\"https://$1.b-europe.com/\"/></ruleset>", "<ruleset name=\"SNL.com (partial)\" f=\"SNL.com.xml\"><securecookie host=\"^www\\.snl\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SNS Bank.nl\" f=\"SNSBank.xml\"><securecookie host=\"^servicepas\\.snsbank\\.nl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SNstatic.fi\" default_off=\"failed ruleset test\" f=\"SNstatic.fi.xml\"><exclusion pattern=\"^http://.+\\.snstatic\\.fi/.+\\.js(?:on)?(?:$|\\?)\"/><rule from=\"^http://is20\\.snstatic\\.fi/\" to=\"https://www.iltasanomat.fi/\"/><rule from=\"^http://hs1[0-3]\\.snstatic\\.fi/\" to=\"https://www.hs.fi/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SNtech (partial)\" default_off=\"failed ruleset test\" f=\"SNtech.xml\"><rule from=\"^http://ssl\\.sntech\\.de/\" to=\"https://ssl.sntech.de/\"/></ruleset>", "<ruleset name=\"SOA.org (partial)\" f=\"SOA.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^(?:incap_ses_\\d+|visid_incap)_\\d+$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SOGo\" default_off=\"mismatched\" f=\"SOGo.xml\"><securecookie host=\"^www\\.sogo\\.nu$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?sogo\\.nu/\" to=\"https://www.sogo.nu/\"/></ruleset>", "<ruleset name=\"SOHH.com\" f=\"SOHH.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SOHOPelessly Broken.com\" f=\"SOHOpelessly_Broken.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SOS-addictions.org\" f=\"SOS-addictions.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Washington Secretary of State (partial)\" f=\"SOS.wa.gov.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SP.nl (partial)\" f=\"SP.nl.xml\"><rule from=\"^http://sp\\.nl/\" to=\"https://www.sp.nl/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SPBAS.com (partial)\" default_off=\"failed ruleset test\" f=\"SPBAS.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SPCA Los Angeles\" platform=\"mixedcontent\" f=\"SPCA-Los-Angeles.xml\"><rule from=\"^http://(?:www\\.)?spcala\\.com/\" to=\"https://spcala.com/\"/></ruleset>", "<ruleset name=\"SPDNS.de\" f=\"SPDNS.de.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SPDX.org (partial)\" f=\"SPDX.org.xml\"><securecookie host=\"^\\.spdx\\.org$\" name=\"^SESS.*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SPEC.org\" f=\"SPEC.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SPL Center.org (partial)\" f=\"SPL_Center.org.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SPORTISIMO s.r.o.\" f=\"SPORTISIMO.xml\"><rule from=\"^http://sportisimo\\.com/\" to=\"https://www.sportisimo.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SPU.ac.th (patial)\" f=\"SPU.ac.th.xml\"><rule from=\"^http://spu\\.ac\\.th/\" to=\"https://www.spu.ac.th/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SP Times.com (partial)\" f=\"SP_Times.com.xml\"><securecookie host=\"^\\.sptimes\\.com$\" name=\"^s_\\w\\w(?:_.*)?$\"/><rule from=\"^http://metric\\.sptimes\\.com/\" to=\"https://stpetersburgtimes.122.2o7.net/\"/></ruleset>", "<ruleset name=\"SPajIT\" default_off=\"expired, self-signed\" f=\"SPajIT.xml\"><securecookie host=\"^(?:hypeshell|shellmix)\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?hypeshell\\.com/\" to=\"https://hypeshell.com/\"/><rule from=\"^http://(?:www\\.)?shellmix\\.com/\" to=\"https://www.shellmix.com/\"/><rule from=\"^https://shellmix\\.com/\" to=\"https://www.shellmix.com/\"/></ruleset>", "<ruleset name=\"SPnet.nl\" f=\"SPnet.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SQL Converter\" f=\"SQL_Converter.xml\"><securecookie host=\"^(?:w*\\.)?sqlconverter\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SQLite.org\" f=\"SQLite.xml\"><exclusion pattern=\"^http://sqlite\\.org:8080/\"/><securecookie host=\"^(?:.+\\.)?sqlite\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SRA OSS\" default_off=\"self-signed\" f=\"SRA_OSS.xml\"><rule from=\"^http://www\\.sraoss\\.co\\.jp/\" to=\"https://www.sraoss.co.jp/\"/></ruleset>", "<ruleset name=\"SRB2.org (partial)\" f=\"SRB2.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SRDS.com (partial)\" f=\"SRDS.com.xml\"><securecookie host=\"^www\\.srds\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?srds\\.com/\" to=\"https://www.srds.com/\"/></ruleset>", "<ruleset name=\"SRI Hash.org\" f=\"SRI_Hash.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SRM.de\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"SRM.de.xml\"><securecookie host=\"^www\\.srm\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?srm\\.de/\" to=\"https://www.srm.de/\"/></ruleset>", "<ruleset name=\"SRSPlus.com\" f=\"SRSPlus.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://srsplus\\.com/\" to=\"https://www.srsplus.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SSAFA (mismatches)\" default_off=\"mismatched\" f=\"SSAFA-mismatches.xml\"><rule from=\"^http://www\\.ssafa\\.org\\.uk/\" to=\"https://www.ssafa.org.uk/\"/><securecookie host=\"^www\\.ssafa\\.org\\.uk$\" name=\".*\"/></ruleset>", "<ruleset name=\"SSB.no\" f=\"SSB.no.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SSE Events Group.com\" f=\"SSE_Events_Group.com.xml\"><securecookie host=\"^(?:www)?\\.sseeventsgroup.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SSL-Cert-Shop.com (partial)\" f=\"SSL-Cert-Shop.com.xml\"><securecookie host=\".+\\.ssl-cert-shop\\.com$\" name=\".+\"/><rule from=\"^http://ssl-cert-shop\\.com/\" to=\"https://www.ssl-cert-shop.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SSL-Trust\" default_off=\"failed ruleset test\" f=\"SSL-Trust.com.xml\"><securecookie host=\"^\\.ssl-trust\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SSL.com (partial)\" f=\"SSL.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SSL2Buy.com\" f=\"SSL2Buy.com.xml\"><securecookie host=\"^store\\.ssl2buy\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SSLlabs.com\" f=\"SSLlabs.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SSLs.com\" f=\"SSLs.com.xml\"><securecookie host=\"^(?:www)?\\.ssls\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SSL Shopper.com\" f=\"SSLshopper.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SSRN.com (partial)\" platform=\"mixedcontent\" f=\"SSRN.xml\"><exclusion pattern=\"http://poseidon[0-9]*\\.ssrn\\.com/\"/><exclusion pattern=\"^http://www\\.ssrn\\.com/+(?!css/|en/includes/|images2/|plugins/)\"/><securecookie host=\"(?:hq|papers)\\.ssrn\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SSSup.it (partial)\" f=\"SSSup.it.xml\"><exclusion pattern=\"^http://allievi\\.sssup\\.it/+techblog(?!/wp-content/|wp-includes/)\"/><exclusion pattern=\"^http://forms\\.sssup\\.it/+(?!$|\\?|didactive(?:$|[?/]))\"/><exclusion pattern=\"^http://www\\.sssup\\.it/+(?!(?:ammissione|ammissione-dottorati-perfezionamento|ateneo|concorso-ammissione|master|orientamento|ufficiostampa)(?:$|[?/])|customcss/|favicon\\.ico|images/|images_new/|intranet_logon\\.jsp|isipcss/|mappa\\.jsp|search\\.jsp|UploadDocs/|UploadImgs/)\"/><securecookie host=\"^(?:didactive|pay)\\.sssup\\.it$\" name=\".+\"/><rule from=\"^http;//forms\\.sssup\\.it/+(?:$|\\?.*)\" to=\"https://forms.sssup.it/didactive\"/><rule from=\"^http://(allievi|didactive|forms|pay|www)\\.sssup\\.it/\" to=\"https://$1.sssup.it/\"/></ruleset>", "<ruleset name=\"SSTIC.org\" f=\"SSTIC.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ST.com (partial)\" f=\"ST.com.xml\"><securecookie host=\"^my\\.st\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ST.org\" f=\"ST.org.xml\"><rule from=\"^http://st\\.org/\" to=\"https://www.st.org/\"/><rule from=\"^http://www\\.st\\.org/\" to=\"https://www.st.org/\"/></ruleset>", "<ruleset name=\"STARTTLS.info\" default_off=\"failed ruleset test\" f=\"STARTTLS.info.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"STEG\" f=\"STEG.xml\"><rule from=\"^http://(?:www\\.)?steg-electronics\\.ch/\" to=\"https://www.steg-electronics.ch/\"/></ruleset>", "<ruleset name=\"STELLAService.com (partial)\" f=\"STELLAService.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"STLinux.com (partial)\" f=\"STLinux.com.xml\"><securecookie host=\"^bugzilla\\.stlinux\\.com$\" name=\".+\"/><rule from=\"^http://bugzilla(-attachments)?\\.stlinux\\.com/\" to=\"https://bugzilla$1.stlinux.com/\"/></ruleset>", "<ruleset name=\"STRATO (partial)\" default_off=\"failed ruleset test\" f=\"STRATO.xml\"><securecookie host=\"^www\\.strato(?:\\.de|\\.es|\\.nl|-hebergement\\.fr|-hosting\\.co\\.uk)$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?strato(\\.com|\\.de|\\.es|\\.nl|-hebergement\\.fr|-hosting\\.co\\.uk)/\" to=\"https://www.strato$1/\"/></ruleset>", "<ruleset name=\"STRATO MailCenter\" default_off=\"failed ruleset test\" f=\"STRATO_MailCenter.xml\"><securecookie host=\"^www\\.strato-mailcenter\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?strato-mailcenter\\.com/\" to=\"https://www.strato-mailcenter.com/\"/></ruleset>", "<ruleset name=\"STRATO Pro\" default_off=\"failed ruleset test\" f=\"STRATO_Pro.xml\"><securecookie host=\"^www\\.strato-pro\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?strato-pro\\.com/\" to=\"https://www.strato-pro.com/\"/></ruleset>", "<ruleset name=\"STSDB.com (partial)\" f=\"STSDB.com.xml\"><rule from=\"^http://acdn\\.stsdb\\.com/\" to=\"https://d3di9a60out49j.cloudfront.net/\"/></ruleset>", "<ruleset name=\"SUPERVALU\" default_off=\"failed ruleset test\" f=\"SUPERVALU.xml\"><securecookie host=\"^www\\.supervalu\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?supervalu\\.com/\" to=\"https://www.supervalu.com/\"/></ruleset>", "<ruleset name=\"SURF.nl\" f=\"SURF.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SURFconext.nl\" f=\"SURFconext.nl.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SUSE.com (partial)\" f=\"SUSE.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://suse\\.com/\" to=\"https://www.suse.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SUSE Studio.com (partial)\" f=\"SUSE_Studio.com.xml\"><exclusion pattern=\"^http://susestudio\\.com/forum\"/><securecookie host=\"^\\.susestudio\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SV.no\" f=\"SV.no.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SVGOpen\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"SVGOpen.xml\"><rule from=\"^http://(?:www\\.)?svgopen\\.org/\" to=\"https://www.svgopen.org/\"/></ruleset>", "<ruleset name=\"SVN Lab\" f=\"SVN-Lab.xml\"><securecookie host=\"^(app|www)\\.svnlab\\.com$\" name=\".+\"/><rule from=\"^http://svnlab\\.com/\" to=\"https://www.svnlab.com/\"/><rule from=\"^http://(app|www)\\.svnlab\\.com/\" to=\"https://$1.svnlab.com/\"/></ruleset>", "<ruleset name=\"SVT.se (partial)\" f=\"SVT.se.xml\"><securecookie host=\"^ld\\.svt\\.se$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SWISSCEX.com\" default_off=\"refused\" f=\"SWISSCEX.com.xml\"><securecookie host=\"^www\\.swisscex\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stadtwerke München\" f=\"SWM.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SWT.com\" f=\"SWT.com.xml\"><rule from=\"^http://(?:www\\.)?swt\\.com/\" to=\"https://www.swt.com/\"/></ruleset>", "<ruleset name=\"SYW CDN.net\" f=\"SYW_CDN.net.xml\"><rule from=\"^http://(apps|\\d+)\\.sywcdn\\.net/\" to=\"https://$1.sywcdn.net/\"/></ruleset>", "<ruleset name=\"SYX Services (partial)\" f=\"SYX_Services.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"S and S Media.com (false MCB)\" platform=\"mixedcontent\" f=\"S_and_S_Media.com-falsemixed.xml\"><securecookie host=\"^\\.?sandsmedia\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?sandsmedia\\.com/(?!file/)\" to=\"https://sandsmedia.com/\"/></ruleset>", "<ruleset name=\"S and S Media.com (partial)\" default_off=\"failed ruleset test\" f=\"S_and_S_Media.com.xml\"><securecookie host=\"^\\.shop\\.sandsmedia\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?sandsmedia\\.com/file/\" to=\"https://sandsmedia.com/file/\"/><rule from=\"^http://shop\\.sandsmedia\\.com/\" to=\"https://shop.sandsmedia.com/\"/></ruleset>", "<ruleset name=\"Sabayon.org (partial)\" default_off=\"failed ruleset test\" f=\"Sabayon.org.xml\"><securecookie host=\".*\\.sabayon\\.org$\" name=\".+\"/><rule from=\"^http://((?:bugs|community|forum|lists|packages|pastebin|static|wiki|www)\\.)?sabayon\\.org/\" to=\"https://$1sabayon.org/\"/></ruleset>", "<ruleset name=\"SABnzbd Forums\" f=\"Sabnzbd.xml\"><securecookie host=\"^\\.forums\\.sabnzbd\\.org$\" name=\".*\"/><rule from=\"^http://forums\\.sabnzbd\\.org/\" to=\"https://forums.sabnzbd.org/\"/></ruleset>", "<ruleset name=\"Sabre Hospitality Solutions (partial)\" f=\"Sabre_Hospitality_Solutions.xml\"><securecookie host=\"^\\.gatag\\.it$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sac.se\" platform=\"mixedcontent\" f=\"Sac.se.xml\"><rule from=\"^http://(?:www\\.)?sac\\.se/\" to=\"https://www.sac.se/\"/></ruleset>", "<ruleset name=\"Sachsen.de\" f=\"Sachsen.de.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Sacramento Bee (partial)\" default_off=\"failed ruleset test\" f=\"Sacramento_Bee.xml\"><securecookie host=\"^circulationportal\\.sacbee\\.com$\" name=\".+\"/><rule from=\"^http://circulationportal\\.sacbee\\.com/\" to=\"https://circulationportal.sacbee.com/\"/></ruleset>", "<ruleset name=\"Sacred Crystal Singing Bowls.net\" f=\"Sacred_Crystal_Singing_Bowls.net.xml\"><securecookie host=\"^www\\.sacredcrystalsingingbowls\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?sacredcrystalsingingbowls\\.net/\" to=\"https://www.sacredcrystalsingingbowls.net/\"/></ruleset>", "<ruleset name=\"Sade.com\" f=\"Sade.com.xml\"><securecookie host=\"^www\\.sade\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SadeceHosting.com\" f=\"SadeceHosting.com.xml\"><securecookie host=\"^(?:www)?\\.sadecehosting\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Safari Books Online.com (partial)\" f=\"SafariBooksOnline.xml\"><securecookie host=\"(?:ssl|\\.?www)\\.safaribooksonline\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Safari Flow.com (partial)\" default_off=\"missing certificate chain\" f=\"Safari_Flow.com.xml\"><securecookie host=\"^\\.?www\\.safariflow\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Safe-In-Cloud.com\" f=\"Safe-In-Cloud.com.xml\"><securecookie host=\"^(?:www\\.)?safe-in-cloud\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Safe-mail.net\" default_off=\"failed ruleset test\" f=\"Safe-mail.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SafeAssign.com\" f=\"SafeAssign.xml\"><rule from=\"^http://(?:www\\.)?safeassign\\.com/\" to=\"https://safeassign.blackboard.com/\"/></ruleset>", "<ruleset name=\"SafeNet-Inc.com (partial)\" default_off=\"failed ruleset test\" f=\"SafeNet.xml\"><exclusion pattern=\"^http://(?:www\\.)?safenet-inc\\.com/+(?!favicon\\.ico|uploadedFiles/|uploadedImages/)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SafeSource.org.nz\" f=\"SafeSource.org.nz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Safe Hub Collective.org (partial)\" default_off=\"failed ruleset test\" f=\"Safe_Hub_Collective.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"safebilling.com\" f=\"Safebilling.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Safecount.net\" default_off=\"broken\" f=\"Safecount.xml\"><rule from=\"^http://(?:www\\.)?safecount\\.net/\" to=\"https://safecount.net/\"/></ruleset>", "<ruleset name=\"Safelinking.net\" f=\"Safelinking.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Safello.com\" f=\"Safello.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Safercar.gov (partial)\" f=\"Safercar.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Safeshepherd.com\" f=\"Safeshepherd.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://blog\\.safeshepherd\\.com/\" to=\"https://safeshepherd.wpengine.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Saga Group\" f=\"Saga-Group.xml\"><securecookie host=\"^.*\\.saga\\.co\\.uk$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?saga\\.co\\.uk/\" to=\"https://www.saga.co.uk/\"/><rule from=\"^http://travel\\.saga\\.co\\.uk/(favicon\\.ico|holidays/(medialibrary|[sS]tyles)/|images/firebird/)\" to=\"https://travel.saga.co.uk/$1\"/></ruleset>", "<ruleset name=\"Sage (partial)\" f=\"Sage.xml\"><securecookie host=\"^(?:customerservices|live)\\.sagepay\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?sagepay\\.com/(misc/|(modul|sit)es/)\" to=\"https://www.sagepay.com/$1\"/><rule from=\"^http://(customerservices|live|support|test)\\.sagepay\\.com/\" to=\"https://$1.sagepay.com/\"/></ruleset>", "<ruleset name=\"Sagemath.org\" f=\"Sagemath.org.xml\"><rule from=\"^http://cloud\\.sagemath\\.org/\" to=\"https://cloud.sagemath.org/\"/><rule from=\"^http://sagecell\\.sagemath\\.org/\" to=\"https://sagecell.sagemath.org/\"/></ruleset>", "<ruleset name=\"Sagernotebook.com\" f=\"Sagernotebook.com.xml\"><rule from=\"^http://(?:www\\.)?sagernotebook\\.com/\" to=\"https://www.sagernotebook.com/\"/></ruleset>", "<ruleset name=\"SailfishOS.org\" f=\"SailfishOS.org.xml\"><rule from=\"^http://(?:(lists\\.)|www\\.)?sailfishos\\.org/\" to=\"https://$1sailfishos.org/\"/></ruleset>", "<ruleset name=\"Sailthru Horizon\" f=\"Sailthru-Horizon.xml\"><rule from=\"^http://ak(2)?\\.sail-horizon\\.com/\" to=\"https://ak$1.sail-horizon.com/\"/><rule from=\"^http://cdn\\.sail-horizon\\.com/\" to=\"https://d1gp8joe0evc8s.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Sailthru.com\" default_off=\"failed ruleset test\" f=\"Sailthru.xml\"><exclusion pattern=\"^http://me\\.sailthru\\.com/+(?!$|\\?|css/|images/|rs/)\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http://sailthru\\.com/\" to=\"https://www.sailthru.com/\"/><rule from=\"^http://me\\.sailthru\\.com/+(?:\\?.*)?$\" to=\"https://www.sailthru.com/\"/><rule from=\"^http://me\\.sailthru\\.com/\" to=\"https://na-sj08.marketo.com/\"/><rule from=\"^http://media\\.sailthru\\.com/\" to=\"https://d1t6td7a2qcurl.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sainsburys.co.uk\" f=\"Sainsburys.co.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"saintaardvarkthecarpeted.com\" f=\"Saintaardvarkthecarpeted.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sakura.ne.jp (partial)\" default_off=\"breaks stylesheets\" f=\"Sakura.ne.jp.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SaleCycle (partial)\" f=\"SaleCycle.xml\"><securecookie host=\"^platform(?:-staging)?\\.salecycle\\.com$\" name=\".+\"/><rule from=\"^http://((?:app|platform)(?:-staging)?|reports)\\.salecycle\\.com/\" to=\"https://$1.salecycle.com/\"/></ruleset>", "<ruleset name=\"Salenames.ru\" default_off=\"failed ruleset test\" f=\"Salenames.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Salesforce.com clients\" default_off=\"mismatched\" f=\"Salesforce.com-clients.xml\"><rule from=\"^http://help\\.grooveshark\\.com/customer/portal/attachments/\" to=\"https://help.grooveshark.com/customer/portal/attachments/\"/></ruleset>", "<ruleset name=\"Salesforce.com (partial)\" f=\"Salesforce.com.xml\"><securecookie host=\"^(?:.*\\.)?(?:developer|sales)?force\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?(developer)?force\\.com/\" to=\"https://www.$1force.com/\"/><rule from=\"^http://(blogs|events|wiki|workbench)\\.developerforce\\.com/\" to=\"https://$1.developerforce.com/\"/><rule from=\"^http://boards\\.developerforce\\.com/\" to=\"https://sforce.i.lithium.com/\"/><rule from=\"^http://(cms-stg|c\\.\\w\\w\\d+\\.content|[\\w-]+\\.secure|www2|www-blitz0\\d)\\.force\\.com/\" to=\"https://$1.force.com/\"/><rule from=\"^http://sites\\.force\\.com/appexchange/home$\" to=\"https://appexchange.salesforce.com/\"/><rule from=\"^http://((?:ap|appexchange(?:jp)?|developer|emea|help|lct|login|\\w{2,4}\\d+(?:-api)?|[\\w-]+\\.my|omtr2\\.partners|ssl|store|success|trust|www)\\.)?salesforce\\.com/\" to=\"https://$1salesforce.com/\"/><rule from=\"^http://partners\\.salesforce\\.com/(?:[^\\?]*)(\\?.*)$\" to=\"https://www.salesforce.com/partners/$1\"/><rule from=\"^http://(secure2?|www2?)\\.sfdcstatic\\.com/\" to=\"https://$1.sfdcstatic.com/\"/></ruleset>", "<ruleset name=\"Salesforce Live Agent.com\" f=\"Salesforce_Live_Agent.com.xml\"><securecookie host=\"^(?:\\w+\\.)?la\\w{3}\\.salesforceliveagent\\.com$\" name=\".+\"/><rule from=\"^http://(\\w+\\.)?la(\\w{3})\\.salesforceliveagent\\.com/\" to=\"https://$1la$2.salesforceliveagent.com/\"/></ruleset>", "<ruleset name=\"Salk Institute\" f=\"Salk_Institute.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sally Beauty.com (partial)\" platform=\"mixedcontent\" f=\"Sally_Beauty.com.xml\"><securecookie host=\"^www\\.sallybeauty\\.com$\" name=\".+\"/><rule from=\"^http://sallybeauty\\.com/\" to=\"https://www.sallybeauty.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Salon.com\" default_off=\"failed ruleset test\" f=\"Salon.xml\"><securecookie host=\"^\\.salon\\.com$\" name=\".+\"/><rule from=\"^http://salon\\.com/\" to=\"https://www.salon.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Salsa Labs\" f=\"Salsa-Labs.xml\"><securecookie host=\"^(?:.*\\.)?(?:salsalabs|wiredforchange)\\.com$\" name=\".+\"/><rule from=\"^http://([\\w-]+\\.)?(salsalabs|wiredforchange)\\.com/\" to=\"https://$1$2.com/\"/><rule from=\"^http://(?:www\\.)?salsacommons\\.org/+(?=$|\\?)\" to=\"https://www.salsalabs.com/commons\"/><rule from=\"^http://(?:www\\.)?salsacommons\\.org/+\" to=\"https://www.salsalabs.com/\"/></ruleset>", "<ruleset name=\"SaltStack.com\" f=\"SaltStack.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Salvation Army USA.org (partial)\" f=\"Salvation_Army_USA.org.xml\"><securecookie host=\"^donate\\.salvationarmyusa\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SamKnows (partial)\" f=\"SamKnows.xml\"><securecookie host=\"^www\\.samknows\\.(?:com|eu)$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?samknows\\.com/\" to=\"https://www.samknows.com/\"/><rule from=\"^http://(www\\.)?samknows\\.eu/\" to=\"https://$1samknows.eu/\"/></ruleset>", "<ruleset name=\"Sam Gentle.com\" f=\"Sam_Gentle.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sam Harris.org (partial)\" f=\"Sam_Harris.org.xml\"><exclusion pattern=\"^http://www\\.samharris\\.org/+(?!\\?css=site/|cache/|css/|favicon\\.ico|fonts/|images/|store(?:$|[?/])|themes/)\"/><securecookie host=\"^\\.samharris\\.org$\" name=\"^(?:__cfduid|exp_last_activity|exp_tracker|mc)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sam Whited.com\" f=\"Sam_Whited.com.xml\"><rule from=\"^http://(?:(blog\\.)|www\\.)?samwhited\\.com/\" to=\"https://$1samwhited.com/\"/></ruleset>", "<ruleset name=\"Sam's Software & Consulting (partial)\" default_off=\"failed ruleset test\" f=\"Sams_Software_and_Consulting.xml\"><exclusion pattern=\"^http://(?:www\\.)?samssoftware.com.au/(?!contact-us\\.html|images/|index\\.php\\?dispatch=(?:auth\\.|checkout\\.cart|profiles\\.add)|skins/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"samsclass.info (partial)\" f=\"Samsclass.info.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Samsung-cn\" f=\"Samsung-cn.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Samsung.com (partial)\" default_off=\"failed ruleset test\" f=\"Samsung.xml\"><rule from=\"^http://(account|cdn|displaysolutions|help\\.content|findmymobile|images|link|secureus|smetrics|support-cn|us|shop\\.us)\\.samsung\\.com/\" to=\"https://$1.samsung.com/\"/><rule from=\"^http://nmetrics\\.samsung\\.com/\" to=\"https://samsung-com.112.2o7.net/\"/><rule from=\"^http://opensource\\.samsung\\.com/\" to=\"https://opensource.samsung.com/\"/><exclusion pattern=\"^http://opensource\\.samsung\\.com/(ajax|community\\.do|images|org\\.ditchnet\\.taglib|popup|scmShowFileRevision|stylesheet|usageStatistics|wikiTreeMessage)?$\"/><exclusion pattern=\"^http://opensource\\.samsung\\.com/reception(\\.do)?/$\"/><exclusion pattern=\"^http://www\\.samsung\\.com/$\"/><rule from=\"^http://www\\.samsung\\.com/(.+)\\.(css|gif|ico|js|png|svg|woff)$\" to=\"https://www.samsung.com/$1.$2\"/></ruleset>", "<ruleset name=\"Samsung_Apps\" f=\"Samsung_Apps.xml\"><rule from=\"^http://(\\w\\w-odc|mkt-odc)\\.samsungapps\\.com/\" to=\"https://$1.samsungapps.com/\"/><rule from=\"^http://img\\.samsungapps\\.com/(.+)\\.(apk|gif|pdf|swf|xls|xml)$\" to=\"https://img.samsungapps.com/$1.$2\"/><exclusion pattern=\"^http://img\\.samsungapps\\.com/$\"/><rule from=\"^http://seller\\.samsungapps\\.com/\" to=\"https://seller.samsungapps.com/\"/><exclusion pattern=\"^http://seller\\.samsungapps\\.com/tv/\"/></ruleset>", "<ruleset name=\"Samsung Direct.com\" f=\"Samsung_Direct.xml\"><rule from=\"^http://(www\\.)?samsungdirect\\.com/\" to=\"https://direct.samsungfire.com/\"/></ruleset>", "<ruleset name=\"Samsung_Fire\" f=\"Samsung_Fire.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Samsung_Indiaestore.com\" default_off=\"failed ruleset test\" f=\"Samsung_Indiaestore.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Samsung_Knox\" f=\"Samsung_Knox.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Samsung_Sem (partial)\" f=\"Samsung_Sem.xml\"><rule from=\"^http://(www\\.)?samsungsem\\.com/\" to=\"https://www.samsungsem.com/\"/></ruleset>", "<ruleset name=\"Samsung_Techwin\" f=\"Samsung_Techwin.xml\"><rule from=\"^http://(www\\.)?samsungtechwin\\.co\\.kr/\" to=\"https://www.hanwhatechwin.co.kr/\"/><rule from=\"^http://(www\\.)?hanwhatechwin\\.co\\.kr/\" to=\"https://www.hanwhatechwin.co.kr/\"/></ruleset>", "<ruleset name=\"Samsung_mySingle (partial)\" default_off=\"failed ruleset test\" f=\"Samsung_mySingle.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"San Diego Reader (partial)\" default_off=\"failed ruleset test\" f=\"San-Diego-Reader.xml\"><rule from=\"^http://hummingbird\\.sandiegoreader\\.com/\" to=\"https://hummingbird.sandiegoreader.com/\"/></ruleset>", "<ruleset name=\"The San Francisco Marathon (partial)\" f=\"San_Francisco_Marathon.xml\"><securecookie host=\"^registration\\.thesfmarathon\\.com$\" name=\".+\"/><rule from=\"^http://(registration|sync)\\.thesfmarathon\\.com/\" to=\"https://$1.thesfmarathon.com/\"/></ruleset>", "<ruleset name=\"Sanalika (partial)\" f=\"Sanalika.xml\"><securecookie host=\"^fb\\.sanalika\\.com$\" name=\".+\"/><rule from=\"^http://(cdn4|fb|fs)\\.sanalika\\.com/\" to=\"https://$1.sanalika.com/\"/></ruleset>", "<ruleset name=\"Sanalmarket.com.tr\" platform=\"mixedcontent\" f=\"Sanalmarket.xml\"><securecookie host=\"^((www)?\\.)?sanalmarket\\.com\\.tr$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sandbag (partial)\" default_off=\"failed ruleset test\" f=\"Sandbag.xml\"><rule from=\"^https?://s3\\.sandbaguk\\.com\\.s3\\.amazonaws\\.com/\" to=\"https://s3-eu-west-1.amazonaws.com/s3.sandbaguk.com/\"/><rule from=\"^http://secured\\.sandbag\\.uk\\.com/\" to=\"https://secured.sandbag.uk.com/\"/></ruleset>", "<ruleset name=\"Sandeen.net\" default_off=\"failed ruleset test\" f=\"Sandeen.net.xml\"><rule from=\"^http://((?:calendar|idisk|mail|www)\\.)?sandeen\\.net/\" to=\"https://$1sandeen.net/\"/></ruleset>", "<ruleset name=\"Sandia.gov (partial)\" f=\"Sandia-National-Laboratories.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sandilands.info\" f=\"Sandilands.info.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sandofsky.com\" f=\"Sandofsky.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sandstorm-Media.de\" f=\"Sandstorm-Media.de.xml\"><rule from=\"^http://www\\.sandstorm-media\\.de/\" to=\"https://sandstorm-media.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sandstorm.de\" f=\"Sandstorm.de.xml\"><securecookie host=\"^\\.sandstorm\\.de$\" name=\".+\"/><rule from=\"^http://www\\.sandstorm\\.de/\" to=\"https://sandstorm-media.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sandstorm.io\" f=\"Sandstorm.io.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sandvine.com\" f=\"Sandvine.xml\"><securecookie host=\"\\.\" name=\"^_gat?$\"/><securecookie host=\"\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sanitarium.se\" default_off=\"failed ruleset test\" f=\"Sanitarium.se.xml\"><rule from=\"^http://sanitarium\\.se/\" to=\"https://sanitarium.se/\"/><rule from=\"^http://www\\.sanitarium\\.se/\" to=\"https://sanitarium.se/\"/></ruleset>", "<ruleset name=\"Sankaty Advisors\" f=\"Sankaty_Advisors.xml\"><securecookie host=\"^(?:.*\\.)?sankaty\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?sankaty\\.com/\" to=\"https://$1sankaty.com/\"/><rule from=\"^http://(?:www\\.)?sankatyadvisors\\.com/\" to=\"https://www.sankaty.com/\"/></ruleset>", "<ruleset name=\"Sanoma.com\" f=\"Sanoma.com.xml\"><securecookie host=\"^(?:w*\\.)?sanoma\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sanoma.fi (partial)\" f=\"Sanoma.fi.xml\"><securecookie host=\"^\\.\" name=\"^(?:evid|evid-synced|v1st)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?sanoma\\.fi/.*\" to=\"https://www.sanoma.com/fi\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Santa Clara University (problematic)\" default_off=\"expired\" f=\"Santa_Clara_University-problematic.xml\"><exclusion pattern=\"^http://digitalcommons\\.law\\.scu\\.edu/assets/\"/><rule from=\"^http://(astra|digitalcommons\\.law)\\.scu\\.edu/\" to=\"https://$1.scu.edu/\"/></ruleset>", "<ruleset name=\"Santa Clara University (partial)\" f=\"Santa_Clara_University.xml\"><securecookie host=\"^\\w.*\\.scu\\.edu$\" name=\".+\"/><rule from=\"^http://((?:angel|feportmgmt|gw|it|quarantine|www)\\.)?scu\\.edu/\" to=\"https://$1scu.edu/\"/><rule from=\"^http://(www\\.)?(alumnidirectory|sculib)\\.scu\\.edu/\" to=\"https://$1$2.scu.edu/\"/><rule from=\"^http://digitalcommons\\.law\\.scu\\.edu/assets/\" to=\"https://dcsantaclara.bepress.com/assets/\"/><rule from=\"^http://l(?:aw|ib)guides\\.scu\\.edu/(css\\d*|data|js)/\" to=\"https://libguides.com/$1/\"/></ruleset>", "<ruleset name=\"Santander.co.uk (partial)\" default_off=\"failed ruleset test\" f=\"Santander.co.uk.xml\"><securecookie host=\"^(?:apply|business|retail)\\.santander\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?santander\\.co\\.uk/\" to=\"https://www.santander.co.uk/\"/><rule from=\"^http://(apply(?:online)?|bbsavings|(?:desk\\.)?business|onlinesalessavings|retail2?)\\.santander\\.co\\.uk/\" to=\"https://$1.santander.co.uk/\"/><rule from=\"^http://products\\.santander\\.co\\.uk/.*\" to=\"https://www.santander.co.uk/\"/></ruleset>", "<ruleset name=\"Santander BillPayment.co.uk\" f=\"Santander_BillPayment.co.uk.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://santanderbillpayment\\.co\\.uk/+\\??$\" to=\"https://www.santanderbillpayment.co.uk/\"/><rule from=\"^http://santanderbillpayment\\.co\\.uk/[^?]*\" to=\"https://www.santanderbillpayment.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Santoku-Linux.com\" f=\"Santoku-Linux.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sanworks\" default_off=\"connection reset\" f=\"Sanworks.xml\"><securecookie host=\"^\\.sanwork\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sapato (partial)\" f=\"Sapato.xml\"><rule from=\"^http://(?:www\\.)?sapato\\.ru/(bitrix|css|images|personal|upload)/\" to=\"https://www.sapato.ru/$1/\"/><rule from=\"^http://([\\w\\-]+)\\.sapato\\.ru/(bitrix|css|images|upload)/\" to=\"https://$1.sapato.ru/$2/\"/><rule from=\"^http://cssjs\\.zapato\\.ru/\" to=\"https://cssjs.sapato.ru/\"/><rule from=\"^http://st\\.zapato\\.ru/\" to=\"https://stssl.sapato.ru/\"/></ruleset>", "<ruleset name=\"Sape.ru (partial)\" f=\"Sape.xml\"><securecookie host=\"^.*\\.sape\\.ru$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?sape\\.ru/\" to=\"https://www.sape.ru/\"/><rule from=\"^http://wizard\\.sape\\.ru/+\" to=\"https://www.seowizard.ru/\"/><rule from=\"^http://(action|advisor|articles|auth|help|ideas|passport|pr|static)\\.sape\\.ru/\" to=\"https://$1.sape.ru/\"/></ruleset>", "<ruleset name=\"Sapphire Forum.com\" default_off=\"failed ruleset test\" f=\"Sapphire_Forum.com.xml\"><securecookie host=\"^www\\.sapphireforum\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sarava.org (partial)\" default_off=\"failed ruleset test\" f=\"Sarava.org.xml\"><securecookie host=\".*\\.sarava\\.org$\" name=\".+\"/><rule from=\"^http://((?:agendador|anotador|calendario|colador|e|escritorio|git|irc|keyringer|lembrador|manual|padrao|policy|protocolos|rectech|rhatto|rsp|seguranca|sit|sit2012|wiki|www)\\.)?sarava\\.org/\" to=\"https://$1sarava.org/\"/></ruleset>", "<ruleset name=\"Sarenza (partial)\" f=\"Sarenza.xml\"><rule from=\"^http://eulerian\\.sarenza\\.com/\" to=\"https://eulerian.sarenza.com/\"/><rule from=\"^http://azure\\.sarenza\\.net/\" to=\"https://az104596.vo.msecnd.net/\"/><rule from=\"^http://static1\\.sarenza\\.net/\" to=\"https://az104596.vo.msecnd.net/static/\"/></ruleset>", "<ruleset name=\"SatoshiDice\" f=\"SatoshiDice.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SauceNAO.com\" f=\"SauceNAO.com.xml\"><securecookie host=\"^saucenao\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sauce Labs\" f=\"Sauce_Labs.xml\"><securecookie host=\"^saucelabs\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SaucyTime.com (partial)\" default_off=\"failed ruleset test\" f=\"SaucyTime.com.xml\"><securecookie host=\"^www\\.saucytime\\.com$\" name=\".+\"/><rule from=\"^http://saucytime\\.com/\" to=\"https://www.saucytime.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Saudia Airlines (partial)\" default_off=\"failed ruleset test\" f=\"SaudiAirlines.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Saudi Government\" default_off=\"failed ruleset test\" f=\"SaudiGovernment.xml\"><rule from=\"^http://(?:www\\.)?mol\\.gov\\.sa/\" to=\"https://mol.gov.sa/\"/><rule from=\"^http://(?:www\\.)?(gosi|moi|pv|saudi)\\.gov\\.sa/\" to=\"https://www.$1.gov.sa/\"/></ruleset>", "<ruleset name=\"saurik (partial)\" f=\"Saurik.xml\"><rule from=\"^http://c(ache|ydia)\\.saurik\\.com/\" to=\"https://c$1.saurik.com/\"/></ruleset>", "<ruleset name=\"Savana.cz\" f=\"Savana.cz.xml\"><securecookie host=\"^(?:webcontrol|www)\\.savana\\.cz$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Savannah Fund\" default_off=\"mismatched\" f=\"Savannah-Fund.xml\"><securecookie host=\"^www\\.savannah\\.vc$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?savannah\\.vc/\" to=\"https://www.savannah.vc/\"/></ruleset>", "<ruleset name=\"SaveCrypto.org\" f=\"SaveCrypto.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SaveDeo.com\" default_off=\"failed ruleset test\" f=\"SaveDeo.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?savedeo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"saveourbank.coop\" f=\"SaveOurBank.coop.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Save The Link.org\" f=\"Save_The_Link.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Save the Children.org.uk (false MCB)\" platform=\"mixedcontent\" f=\"Save_the_Children.org.uk-falsemixed.xml\"><rule from=\"^http://(?:www\\.)?savethechildren\\.org\\.uk/\" to=\"https://www.savethechildren.org.uk/\"/><rule from=\"^http://blogs\\.savethechildren\\.org\\.uk/\" to=\"https://blogs.savethechildren.org.uk/\"/></ruleset>", "<ruleset name=\"Save the Children.org.uk (partial)\" f=\"Save_the_Children.org.uk.xml\"><exclusion pattern=\"^http://blogs\\.savethechildren\\.org\\.uk/+(?!shared/|wp-content/|wp-includes/)\"/><rule from=\"^http://(?:www\\.)?savethechildren\\.org\\.uk/(?=donate/*(?:$|\\?)|favicon\\.ico|modules/|sites/)\" to=\"https://www.savethechildren.org.uk/\"/><rule from=\"^http://(blogs|secure|shop)\\.savethechildren\\.org\\.uk/\" to=\"https://$1.savethechildren.org.uk/\"/></ruleset>", "<ruleset name=\"SavvyHawk.com\" default_off=\"failed ruleset test\" f=\"SavvyHawk.com.xml\"><securecookie host=\"^(?:www\\.)?savvyhawk\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SavvySME\" f=\"SavvySME.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Say Media (mismatches)\" default_off=\"mismatched\" f=\"Say-Media-mismatches.xml\"><rule from=\"^http://(?:www\\.)?blogs\\.com/\" to=\"https://blogs.com/\"/></ruleset>", "<ruleset name=\"Say Media\" f=\"Say-Media.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sbarmen.no (partial)\" f=\"Sbarmen.no.xml\"><securecookie host=\"^(?:www\\.)?sbarmen\\.no$\" name=\".+\"/><rule from=\"^http://sbarmen\\.no/\" to=\"https://www.sbarmen.no/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sberbank of Russia\" default_off=\"failed ruleset test\" f=\"Sberbank_of_Russia.xml\"><rule from=\"^http://sbi\\.sberbank\\.ru(:9443)?/\" to=\"https://sbi.sberbank.ru:9443/\"/><rule from=\"^https://sbi\\.sberbank\\.ru/\" to=\"https://sbi.sberbank.ru:9443/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sberbankdirect.de\" f=\"Sberbankdirect.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sbucciami.com\" default_off=\"redirects to http\" f=\"Sbucciami.xml\"><securecookie host=\"^(?:\\.?w*)?\\.sbucciami\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ScMagazineUS.com\" default_off=\"failed ruleset test\" f=\"ScMagazineUS.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Scalability.org\" default_off=\"missing certificate chain\" f=\"Scalability.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.scalability\\.org/\" to=\"https://scalability.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Scale Engine (partial)\" default_off=\"failed ruleset test\" f=\"Scale-Engine.xml\"><securecookie host=\"^(?:www\\.)?scaleengine\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Scaleway.com\" f=\"Scaleway.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Scaling Bitcoin.org\" default_off=\"failed ruleset test\" f=\"Scaling_Bitcoin.org.xml\"><securecookie host=\"^(?:www)?\\.scalingbitcoin\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ScanAlert.com (partial)\" f=\"ScanAlert.xml\"><securecookie host=\"^images\\.scanalert\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ScanMyServer.com\" default_off=\"missing certificate chain\" f=\"ScanMyServer.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Scanadu.com (partial)\" f=\"Scanadu.com.xml\"><rule from=\"^http://c\\d\\.scanadu\\.com/\" to=\"https://d1scsxe9uoisfa.cloudfront.net/\"/><rule from=\"^http://indiegogo-artwork\\.scanadu\\.com/\" to=\"https://d229l50b5obo41.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Scandinavian Photo\" f=\"Scandinavian_Photo.xml\"><securecookie host=\"^(?:www\\.)?scandinavianphoto\\.(?:fi|se|se)$\" name=\".+\"/><rule from=\"^http://scandinavianphoto\\.(fi|no|se)/\" to=\"https://www.scandinavianphoto.$1/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Scania (partial)\" f=\"Scania.xml\"><securecookie host=\"^.+\\.scania\\.com$\" name=\".+\"/><rule from=\"^http://(static|webapp\\d+|www4)\\.scania\\.com/\" to=\"https://$1.scania.com/\"/></ruleset>", "<ruleset name=\"Scanmarker\" f=\"Scanmarker.xml\"><securecookie host=\"^(?:w*\\.)?scanmarker\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Scanning Pens.co.uk\" default_off=\"failed ruleset test\" f=\"Scanning_Pens.co.uk.xml\"><securecookie host=\"^\\.www\\.scanningpens.co.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Scans.io\" f=\"Scans.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"scanscout.com\" default_off=\"failed ruleset test\" f=\"Scanscout.com.xml\"><securecookie host=\"^\\.scanscout\\.com$\" name=\"^(?:o?bsm|uid)\"/><securecookie host=\"^dt\\.scanscout\\.com$\" name=\".+\"/><rule from=\"^http://portal\\.scanscout\\.com/.*\" to=\"https://portal.videohub.tv/vhn\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sccassessor.org\" f=\"Sccassessor.org.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://rp\\.sccassessor\\.org/\" to=\"https://www.sccassessor.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sccgov.org\" f=\"Sccgov.org.xml\"><securecookie host=\"^((eservices|frontcounter|hhslink|myhealthonline|payments|scvhhsauth|scvhhsrap|services|sts|volunteer|www)\\.)?sccgov\\.org$\" name=\".+\"/><rule from=\"^http://(www\\.)?alertscc\\.com/\" to=\"https://www.sccgov.org/sites/alertscc/\"/><rule from=\"^http://(www\\.)?cepascc\\.org/\" to=\"https://www.sccgov.org/sites/cepa/\"/><rule from=\"^http://(www\\.)?parkhere\\.org/grantpark$\" to=\"https://www.sccgov.org/sites/parks/parkfinder/Pages/JosephDGrant.aspx\"/><rule from=\"^http://(www\\.)?parkhere\\.org/\" to=\"https://www.sccgov.org/sites/parks/\"/><rule from=\"^http://(www\\.)?sccemsagency\\.org/\" to=\"https://www.sccgov.org/sites/ems/\"/><rule from=\"^http://(www\\.)?sccsheriff\\.org/\" to=\"https://www.sccgov.org/sites/sheriff/\"/><rule from=\"^http://sherifflivescan\\.sccsheriff\\.org/\" to=\"https://eservices.sccgov.org/sfp\"/><rule from=\"^http://(www\\.)?sccvote\\.org/\" to=\"https://www.sccgov.org/sites/rov/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Scene7.com\" f=\"Scene7.xml\"><rule from=\"^http://(?:www\\.)?scene7\\.com/[^?]*\" to=\"https://www.adobe.com/products/scene7.html\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nectarine Demoscene Music\" f=\"SceneMusic.net.xml\"><rule from=\"^http://(?:www\\.)?scenemusic\\.net/\" to=\"https://www.scenemusic.net/\"/></ruleset>", "<ruleset name=\"SceneTap.com\" default_off=\"expired\" f=\"SceneTap.xml\"><securecookie host=\"^(?:.*\\.)?scenetap\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sceneaccess.eu\" f=\"Sceneaccess.eu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sceper (partial)\" default_off=\"self-signed\" f=\"Sceper.xml\"><securecookie host=\"^sceper\\.ws$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?sceper\\.(?:eu|ws)/\" to=\"https://sceper.ws/\"/></ruleset>", "<ruleset name=\"Scepsis\" default_off=\"failed ruleset test\" f=\"Scepsis.xml\"><rule from=\"^http://(?:www\\.)?scepsis\\.ru/\" to=\"https://scepsis.ru/\"/></ruleset>", "<ruleset name=\"Schaaf PC.com\" f=\"Schaaf_PC.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Schaffner.org\" default_off=\"shows default page\" f=\"Schaffner.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Schallert.com\" f=\"Schallert.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sched.org (partial)\" f=\"Sched.org.xml\"><securecookie host=\"^\\.schd\\.ws$\" name=\".+\"/><securecookie host=\"^(?:xenprojectdevelopersummit2014)?\\.sched\\.org$\" name=\".+\"/><rule from=\"^http://(cdn\\.)?schd\\.ws/\" to=\"https://$1schd.ws/\"/><rule from=\"^http://www\\.sch(?:d\\.ws|ed\\.co)/\" to=\"https://sched.org/\"/><rule from=\"^http://((?:static|www|xenprojectdevelopersummit2014)\\.)?sched\\.org/\" to=\"https://$1sched.org/\"/></ruleset>", "<ruleset name=\"ScheduleOnce.com (partial)\" f=\"ScheduleOnce.com.xml\"><securecookie host=\"^www\\.scheduleonce\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"schetu.net\" f=\"Schetu.net.xml\"><securecookie host=\"^\\.?schetu\\.net$\" name=\".+\"/><rule from=\"^http://schetu\\.net/\" to=\"https://schetu.net/\"/></ruleset>", "<ruleset name=\"Schibsted.no (partial)\" f=\"Schibsted.no.xml\"><securecookie host=\"^mail\\.schibsted\\.no$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Schibsted (partial)\" f=\"Schibsted.xml\"><securecookie host=\"^\\.?payment\\.schibsted\\.se$\" name=\".+\"/><rule from=\"^http://payment\\.schibsted\\.se/\" to=\"https://payment.schibsted.se/\"/></ruleset>", "<ruleset name=\"Schiphol\" f=\"Schipol.xml\"><securecookie host=\"^www\\.schiphol\\.nl$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?schiphol\\.nl/\" to=\"https://www.schiphol.nl/\"/></ruleset>", "<ruleset name=\"Schlossberg Store (partial)\" f=\"Schlossberg_Store.xml\"><rule from=\"^http://(?:www\\.)?schlossbergstore\\.com/(css/|(?:Member/Login|order-status)(?:$|\\?|/)|Public/|registry|store_image/|Styles/)\" to=\"https://www.schlossbergstore.com/$2\"/></ruleset>", "<ruleset name=\"Schlumberger\" default_off=\"failed ruleset test\" f=\"Schlumberger.xml\"><securecookie host=\"^(?:www\\.)?slb\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Schmidtcom.de\" f=\"Schmidtcom.de.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Schneider-Electric.com (partial)\" f=\"Schneider-Electric.com.xml\"><securecookie host=\"^\\.schneider-electric\\.com$\" name=\"^(?:__utm\\w|xtvrn)$\"/><rule from=\"^http://(?:www\\.)?schneider-electric\\.com/(download/|navigation/|(?:product|solution)s(?:$|[?/])|resource/|site/(?:home|marketing_center)/(?:image|j)s/|site/tasks/sites/|stat/)\" to=\"https://www.schneider-electric.com/$1\"/></ruleset>", "<ruleset name=\"Schneider Kreuznach (mismatches)\" default_off=\"mismatch, self-signed\" f=\"Schneider-Kreuznach-mismatches.xml\"><securecookie host=\"^\\w\\.pentacon\\.de$\" name=\".*\"/><securecookie host=\"^praktica\\.de$\" name=\".+\"/><rule from=\"^http://pentacon(?:-dresden)\\.de/\" to=\"https://www.pentacon.de/\"/><rule from=\"^http://(\\w)\\.pentacon(?:-dresden)\\.de/\" to=\"https://$1.pentacon.de/\"/><rule from=\"^http://(?:www\\.)?praktica\\.de/\" to=\"https://praktica.de/\"/></ruleset>", "<ruleset name=\"Schneider Kreuznach (partial)\" f=\"Schneider-Kreuznach.xml\"><securecookie host=\"^www\\.schneideroptics\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?schneideroptics\\.com/\" to=\"https://www.schneideroptics.com/\"/></ruleset>", "<ruleset name=\"Schneier.com\" f=\"Schneier-on-Security.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ScholarOne (partial)\" default_off=\"failed ruleset test\" f=\"ScholarOne.xml\"><securecookie host=\"^mc\\.manuscriptcentral\\.com$\" name=\".*\"/><rule from=\"^http://mc\\.manuscriptcentral\\.com/\" to=\"https://mc.manuscriptcentral.com/\"/></ruleset>", "<ruleset name=\"SchoolForge\" f=\"SchoolForge.xml\"><securecookie host=\"(^|\\.)schoolforge\\.net$\" name=\".+\"/><rule from=\"^http://www\\.schoolforge\\.net/\" to=\"https://schoolforge.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SchoolLoop (Partial)\" f=\"SchoolLoop.xml\"><rule from=\"^http://(lhs-sfusd-ca|carlsbadhs|rchs-cjuhsd-ca|cunha|phs-pusd-ca|homestead)\\.schoolloop\\.com/\" to=\"https://$1.schoolloop.com/\"/></ruleset>", "<ruleset name=\"SchooltoPrison.org\" default_off=\"refused\" f=\"SchooltoPrison.org.xml\"><rule from=\"^http://(?:www\\.)?schooltoprison\\.org/\" to=\"https://www.schooltoprison.org/\"/></ruleset>", "<ruleset name=\"Schottenland (partial)\" f=\"Schottenland.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SchuelerVZ.net\" default_off=\"Certificate mismatch\" f=\"SchuelerVZ.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Schuilenburg.org (partial)\" default_off=\"failed ruleset test\" f=\"Schuilenburg.org.xml\"><securecookie host=\"^(?:www\\.)?schuilenburg\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Schulte.org\" f=\"Schulte.org.xml\"><rule from=\"^http://((?:exchange|exchange2013|noc|webmail|windows2012r2|www)\\.)?schulte\\.org/\" to=\"https://$1schulte.org/\"/></ruleset>", "<ruleset name=\"Schwab.com\" default_off=\"failed ruleset test\" f=\"Schwab.com.xml\"><securecookie host=\"^(?:client|\\.eac)?\\.schwab\\.com$\" name=\".+\"/><rule from=\"^http://((?:client|content|eac|www)\\.)?schwab\\.com/\" to=\"https://$1schwab.com/\"/></ruleset>", "<ruleset name=\"Schwab CDN.com\" f=\"Schwab_CDN.com.xml\"><securecookie host=\"^client\\.schwab\\.com$\" name=\".+\"/><rule from=\"^http://(client|www)\\.schwabcdn\\.com/\" to=\"https://$1.schwabcdn.com/\"/></ruleset>", "<ruleset name=\"Schwab Plan.com\" f=\"Schwab_Plan.com.xml\"><rule from=\"^http://(?:www\\.)?schwabplan\\.com/\" to=\"https://www.schwabplan.com/\"/></ruleset>", "<ruleset name=\"Schwartz Media.com.au (partial)\" f=\"Schwartz_Media.com.au.xml\"><securecookie host=\"^\\.schwartzmedia\\.com\\.au$\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sci-hub\" f=\"Sci-hub.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SciPy.org\" default_off=\"failed ruleset test\" f=\"SciPy.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Science-Alliance.de (false MCB)\" default_off=\"self-signed\" platform=\"mixedcontent\" f=\"Science-Alliance.de.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ScienceDaily.com\" f=\"ScienceDaily.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__qca$|incap_|nlbi_|visid_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Science Careers.org (partial)\" f=\"Science_Careers.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Science News.org\" f=\"Science_News.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Science Node.org\" f=\"Science_Node.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Scienceathome.org\" f=\"Scienceathome.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sciencemag.org\" f=\"Sciencemag.org.xml\"><securecookie host=\"^\\.\" name=\"^OAX$\"/><securecookie host=\".+\\.sciencemag\\.org$\" name=\".\"/><rule from=\"^http://sciencemag\\.org/\" to=\"https://www.sciencemag.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Scieneo.de\" default_off=\"failed ruleset test\" f=\"Scieneo.de.xml\"><securecookie host=\"^www\\.scieneo\\.de\" name=\".+\"/><rule from=\"^http://scieneo\\.de/\" to=\"https://www.scieneo.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Scientific American.com (partial)\" default_off=\"failed ruleset test\" f=\"Scientific-American.xml\"><exclusion pattern=\"^http://(?:[^./]+\\.){2,}subscribe\\.scientificamerican\\.com/\"/><securecookie host=\"^\\.\" name=\"^(?:__qca$|optimizely)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://scientificamerican\\.com/\" to=\"https://www.scientificamerican.com/\"/><rule from=\"^http://links\\.email\\.scientificamerican\\.com/\" to=\"https://recp.links.mkt41.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Scientific.Net\" default_off=\"mismatched\" f=\"Scientific.Net.xml\"><securecookie host=\"^www\\.scientific\\.net$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?scientific\\.net/\" to=\"https://www.scientific.net/\"/></ruleset>", "<ruleset name=\"Scientific Linux.org\" f=\"Scientificlinux.org.xml\"><rule from=\"^http://scientificlinux\\.org/\" to=\"https://www.scientificlinux.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Scintilla.utwente.nl\" default_off=\"failed ruleset test\" f=\"Scintilla.utwente.xml\"><rule from=\"^http://www\\.scintilla\\.utwente\\.nl/\" to=\"https://www.scintilla.utwente.nl/\"/></ruleset>", "<ruleset name=\"Scoop.co.nz (partial)\" f=\"Scoop.co.nz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Scoop.it (partial)\" f=\"Scoop.it.xml\"><rule from=\"^http://(?:www\\.)?scoop\\.it/((?:apps|login)(?:$|\\?)|favicon\\.ico|resources/)\" to=\"https://www.scoop.it/$1\"/><rule from=\"^http://img\\.scoop\\.it/\" to=\"https://d1lojpvs1j5ni5.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Scooter-Attack.com (partial)\" default_off=\"failed ruleset test\" f=\"Scooter-Attack.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://scooter-attack\\.com/\" to=\"https://www.scooter-attack.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Scopus\" platform=\"mixedcontent\" f=\"Scopus.xml\"><securecookie host=\"^.*\\.scopus\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?scopus\\.com/\" to=\"https://www.scopus.com/\"/><rule from=\"^http://acw\\.scopus\\.com/\" to=\"https://acw.scopus.com/\"/></ruleset>", "<ruleset name=\"Score Restore.com\" f=\"Score_Restore.com.xml\"><securecookie host=\"^(?:w*\\.)?scorerestore\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ScorecardResearch.com\" f=\"ScorecardResearch.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://b\\.scorecardresearch\\.com/\" to=\"https://sb.scorecardresearch.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Scot Borders.gov.uk\" default_off=\"failed ruleset test\" f=\"Scot_Borders.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.www\\.\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Scotch.io (partial)\" f=\"Scotch.io.xml\"><securecookie host=\"^\\.scotch\\.io$\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Scott Hanselman\" default_off=\"expired\" f=\"Scott-Hanselman.xml\"><securecookie host=\"^www\\.hanselman\\.com$\" name=\".*\"/><rule from=\"^http://(?:m\\.|www\\.)?hanselman\\.com/\" to=\"https://www.hanselman.com/\"/></ruleset>", "<ruleset name=\"Scottbrand.com\" default_off=\"failed ruleset test\" f=\"Scottbrand.com.xml\"><securecookie host=\"^(?:www\\.)?scottbrand\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Scottevest\" platform=\"mixedcontent\" f=\"Scottevest.xml\"><securecookie host=\"^(?:.+\\.)?scottevest\\.com$\" name=\".*\"/><rule from=\"^http://scottevest\\.com/\" to=\"https://scottevest.com/\"/><rule from=\"^http://www\\.scottevest\\.com/\" to=\"https://www.scottevest.com/\"/></ruleset>", "<ruleset name=\"Scottish Power (partial)\" f=\"Scottish_Power.xml\"><securecookie host=\"^www\\.scottishpower\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?scottishpower\\.co\\.uk/\" to=\"https://www.scottishpower.co.uk/\"/></ruleset>", "<ruleset name=\"Scottish Power Pipe Band\" f=\"Scottish_Power_Pipe_Band.xml\"><securecookie host=\"^www\\.scottishpowerpipeband\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"scottlinux.com\" f=\"Scottlinux.com.xml\"><securecookie host=\"^scottlinux\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?scottlinux\\.com/\" to=\"https://scottlinux.com/\"/></ruleset>", "<ruleset name=\"Scrambl.is\" default_off=\"failed ruleset test\" f=\"Scrambl.is.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Scrambl3.com\" f=\"Scrambl3.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Scrap Orchard\" default_off=\"failed ruleset test\" f=\"Scrap_Orchard.xml\"><securecookie host=\"^\\.?scraporchard\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ScraperWiki.com\" f=\"ScraperWiki.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Screen It! Movie Reviews (expired cert)\" default_off=\"Certificate expired\" f=\"Screen-It.xml\"><rule from=\"^http://(?:www\\.)?screenit\\.com/\" to=\"https://www.screenit.com/\"/></ruleset>", "<ruleset name=\"ScreenCraft.org\" f=\"ScreenCraft.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.screencraft\\.org/\" to=\"https://screencraft.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Screen International\" default_off=\"mismatched\" f=\"Screen_International.xml\"><securecookie host=\"^www\\.screendaily\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?screendaily\\.com/\" to=\"https://www.screendaily.com/\"/></ruleset>", "<ruleset name=\"Screencast-o-Matic\" f=\"Screencast-o-Matic.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Screenshot machine (partial)\" f=\"Screenshot_machine.xml\"><securecookie host=\"^(?:www\\.)?screenshotmachine\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ScribbleLive.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"ScribbleLive.com-falsemixed.xml\"><exclusion pattern=\"^http://www2\\.scribblelive\\.com/+(?!$|\\?)\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http://www2\\.scribblelive\\.com/.*\" to=\"https://www.scribblelive.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ScribbleLive.com (partial)\" default_off=\"failed ruleset test\" f=\"ScribbleLive.com.xml\"><exclusion pattern=\"^http://www2\\.scribblelive\\.com/+(?:\\?.*)?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://help\\.scribblelive\\.com/+([^?]*)(?:\\?.*)?\" to=\"https://scribblelive.zendesk.com/hc$1\"/><rule from=\"^http://www2\\.scribblelive\\.com/\" to=\"https://go.pardot.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Scribd.com (partial)\" f=\"Scribd.com.xml\"><exclusion pattern=\"^http://www\\.scribd\\.com/doc(?:$|[?/])\"/><securecookie host=\"^\\.scribdassets\\.com$\" name=\"^scribd_ubtc$\"/><rule from=\"^http://html\\.scribd\\.com/\" to=\"https://html.scribassets.com/\"/><rule from=\"^http://img\\.scribd\\.com/\" to=\"https://s3.amazonaws.com/img.scribd.com/\"/><rule from=\"^http://s\\.scribd\\.com/+\" to=\"https://www.scribd.com/\"/><rule from=\"^http://support\\.scribd\\.com/(?=favicon\\.ico|generated/|images/|system/)\" to=\"https://assets.zendesk.com/\"/><rule from=\"^http://((?:fonts|htmlcdn|rat|rs\\d?|www)\\.)?scribd\\.com/\" to=\"https://$1scribd.com/\"/><rule from=\"^http://img(\\d)\\.scribdassets\\.com/\" to=\"https://imgv2-$1.scribdassets.com/\"/><rule from=\"^http://(fonts\\d|html\\d?|htmlimg\\d|imgv2|imgv2-\\d|imgv2-\\d-f|s\\d|s\\d-f)\\.scribdassets\\.com/\" to=\"https://$1.scribdassets.com/\"/></ruleset>", "<ruleset name=\"Scribit (partial)\" f=\"Scribit.xml\"><rule from=\"^http://(?:www\\.)?scribit\\.com/app$\" to=\"https://www.scribit.com/app/\"/><rule from=\"^http://(?:www\\.)?scribit\\.com/app/\" to=\"https://www.scribit.com/app/\"/></ruleset>", "<ruleset name=\"Scribol (partial)\" f=\"Scribol.xml\"><rule from=\"^http://images\\.scribol\\.com/\" to=\"https://dmgyobx0feqxw.cloudfront.net/\"/><rule from=\"^http://static\\.scribol\\.com/\" to=\"https://d25h0msi7seflc.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Scribus.net\" f=\"Scribus.net.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://docs\\.scribus\\.net/\" to=\"https://wiki.scribus.net/canvas/Help:TOC\"/><rule from=\"^http://documentation\\.scribus\\.net/\" to=\"https://wiki.scribus.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Scripps Research Institute\" f=\"Scripps_Research_Institute.xml\"><rule from=\"^http://(admissions\\.|education\\.|vpn\\.|www\\.)?scripps\\.edu/\" to=\"https://$1scripps.edu/\"/></ruleset>", "<ruleset name=\"ScriptObservatory.org\" default_off=\"failed ruleset test\" f=\"ScriptObservatory.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ScriptSource (partial)\" f=\"ScriptSource.xml\"><rule from=\"^http://(www\\.)?scriptsource\\.org/cms/(assets/|local/|scripts/(?:page\\.php\\?item_id=(?:login_page|registration_form)|render_graphic\\.php)|sites/)\" to=\"https://$1scriptsource.org/cms/$2\"/></ruleset>", "<ruleset name=\"ScriptFodder\" default_off=\"failed ruleset test\" f=\"Scriptfodder.com.xml\"><rule from=\"^http://cdn\\.scriptfodder\\.com/\" to=\"https://scriptfodder.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Scripting News (partial)\" f=\"Scripting-News.xml\"><rule from=\"^http://static\\.scripting\\.com/\" to=\"https://s3.amazonaws.com/static.scripting.com/\"/></ruleset>", "<ruleset name=\"Scriptlogic.com (partial)\" f=\"Scriptlogic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"scriptmp3.com\" default_off=\"self-signed\" f=\"Scriptmp3.com.xml\"><rule from=\"^http://(?:www\\.)?scriptmp3\\.com/\" to=\"https://scriptmp3.com/\"/></ruleset>", "<ruleset name=\"Scriptura Engage.com\" f=\"Scriptura_Engage.com.xml\"><securecookie host=\"^(?:www\\.)?scripturaengage\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Scrypt.CC\" default_off=\"failed ruleset test\" f=\"Scrypt.CC.xml\"><securecookie host=\"^\\.?scrypt\\.cc$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"scsstatic.ch\" f=\"Scsstatic.ch.xml\"><rule from=\"^http://www\\.(res[12]\\.)?scsstatic\\.ch/\" to=\"https://www.$1scsstatic.ch/\"/></ruleset>", "<ruleset name=\"Scubbly (partial)\" f=\"Scubbly.xml\"><rule from=\"^http://(www\\.)?scubbly\\.com/(bot-trap|css|images|js)/\" to=\"https://$1scubbly.com/$2/\"/></ruleset>", "<ruleset name=\"Sculpteo.com (partial)\" f=\"Sculpteo.com.xml\"><exclusion pattern=\"^http://(?:3dpcase\\.|pro\\.|www\\.)?sculpteo\\.com/(?!\\w\\w/(?:account|jsi18n|jsurl)/|favicon\\.ico|media/|static/|terms_\\w\\w(?:$|[?/]))\"/><rule from=\"^http://(?:www\\.)?sculpteo\\.com/\" to=\"https://www.sculpteo.com/\"/><rule from=\"^http://(3dpcase|pro)\\.sculpteo\\.com/\" to=\"https://$1.sculpteo.com/\"/></ruleset>", "<ruleset name=\"ScummVM.org\" f=\"ScummVM.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sdilej.cz\" f=\"Sdilej.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sdlcdn.com\" f=\"Sdlcdn.com.xml\"><rule from=\"^http://i([1-4])\\.sdlcdn\\.com/\" to=\"https://i$1.sdlcdn.com/\"/></ruleset>", "<ruleset name=\"sdm.ru (partial)\" f=\"Sdm.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"seL4.systems\" f=\"SeL4.systems.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Seacloud\" f=\"Seacloud.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Seafile-Server.de\" default_off=\"failed ruleset test\" f=\"Seafile-Server.de.xml\"><securecookie host=\"^(?:www\\.)?seafileserver\\.de$\" name=\".+\"/><securecookie host=\"^(?:(?:demo|shop|wiki|www)\\.)?seafile-server\\.de$\" name=\".+\"/><rule from=\"^http://(www\\.)?seafileserver\\.de/\" to=\"https://$1seafileserver.de/\"/><rule from=\"^http://((?:demo|shop|wiki|www)\\.)?seafile-server\\.de/\" to=\"https://$1seafile-server.de/\"/></ruleset>", "<ruleset name=\"Seafile (partial)\" default_off=\"failed ruleset test\" f=\"Seafile.xml\"><securecookie host=\"^cloud\\.seafile\\.com$\" name=\".+\"/><rule from=\"^http://cloud\\.seafile\\.com/\" to=\"https://cloud.seafile.com/\"/></ruleset>", "<ruleset name=\"Seagate.com (partial)\" default_off=\"failed ruleset test\" f=\"Seagate.com.xml\"><exclusion pattern=\"^http://(?:gro|newstuff|origin-www|reliability|rss|sata|www)\\.seagate\\.com/+(?!files/|javascript/|sites/|ww/+(?!universal/+(?!css/images/)))\"/><exclusion pattern=\"^http://(?:knowledge|support2)\\.seagate\\.com/+(?!faces/|jslibrary/|resource/|sCSS/|s\\.gif|static/)\"/><securecookie host=\"^(?:apps1|partnerreg|services|shop|wwwlacie)\\.seagate\\.com$\" name=\".+\"/><rule from=\"^http://seagate\\.com/\" to=\"https://www.seagate.com/\"/><rule from=\"^http://(?:knowledge|support2|wheretobuy)\\.seagate\\.com/\" to=\"https://seagatewtb.secure.force.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sealed Abstract.com\" default_off=\"self-signed\" f=\"Sealed_Abstract.com.xml\"><rule from=\"^http://sealedabstract\\.com/\" to=\"https://sealedabstract.com/\"/><rule from=\"^http://www\\.sealedabstract\\.com/[^?]*(\\?.*)?\" to=\"https://sealedabstract.com/index.php$1\"/></ruleset>", "<ruleset name=\"Seals with Clubs.eu\" default_off=\"refused\" f=\"Seals-with-Clubs.xml\"><securecookie host=\"^\\.?sealswithclubs\\.eu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sean cassidy.me\" f=\"Sean_cassidy.me.xml\"><rule from=\"^http://seancassidy\\.me/\" to=\"https://www.seancassidy.me/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Seanmckaybeck.com\" default_off=\"failed ruleset test\" f=\"Seanmckaybeck.com.xml\"><rule from=\"^http://(?:www\\.)?seanmckaybeck\\.com/\" to=\"https://seanmckaybeck.com/\"/></ruleset>", "<ruleset name=\"Search.ch\" default_off=\"failed ruleset test\" f=\"Search.ch.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Search Commander\" f=\"Search_Commander.xml\"><securecookie host=\"^\\.searchcommander.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"searchcode.com\" f=\"Searchcode.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"searchmarketing.com\" f=\"Searchmarketing.com.xml\"><securecookie host=\"^(?:tracking)?\\.searchmarketing\\.com$\" name=\".+\"/><rule from=\"^http://tracking\\.searchmarketing\\.com/\" to=\"https://tracking.searchmarketing.com/\"/></ruleset>", "<ruleset name=\"Sears.com (partial)\" f=\"Sears.com.xml\"><securecookie host=\"^(?:\\.handbooks|seller\\.marketplace|oascentral)\\.sears\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?sears\\.com/(?=favicon\\.ico|shc/s/UserLogonFormView(?:$|[?/]))\" to=\"https://www.sears.com/\"/><rule from=\"^http://om\\.sears\\.com/\" to=\"https://sears-com.d1.sc.omtrdc.net/\"/><rule from=\"^http://(davidtuterajewelry|handbooks|seller\\.marketplace|oascentral|s7|ux)\\.sears\\.com/\" to=\"https://$1.sears.com/\"/></ruleset>", "<ruleset name=\"Sears Commerce Services.com\" f=\"Sears_Commerce_Services.com.xml\"><securecookie host=\"^\\.searscommerceservices\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sears Ecommerce Jobs.com\" default_off=\"failed ruleset test\" f=\"Sears_Ecommerce_Jobs.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sears Labs.com\" default_off=\"expired\" f=\"Sears_Labs.com.xml\"><rule from=\"^http://(?:www\\.)?searslabs\\.com/\" to=\"https://searslabs.com/\"/></ruleset>", "<ruleset name=\"searx.me\" f=\"Searx.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Seasonal.ly\" f=\"Seasonal.ly.xml\"><securecookie host=\".*\\.seasonal\\.ly$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SeatGeek.com\" f=\"SeatGeek.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Seattle Aquarium\" f=\"SeattleAquarium.org.xml\"><securecookie host=\"^(www|tickets)\\.seattleaquarium\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SeattleIX.net\" f=\"SeattleIX.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Seattle Privacy.org\" f=\"Seattle_Privacy.org.xml\"><securecookie host=\"^(?:www\\.)?seattleprivacy\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Seattle Technical Books.com (partial)\" f=\"Seattle_Technical_Books.com.xml\"><rule from=\"^http://(?:www\\.)?seattletechnicalbooks\\.com/(?=(?:cart|content/store|news|reading-comics-public-day|search/advanced_search|user)(?:$|[?/])|favicon\\.ico|files/|modules/|sites/|style\\.css)\" to=\"https://www.seattletechnicalbooks.com/\"/></ruleset>", "<ruleset name=\"Sebastian-Siebert.de\" f=\"Sebastian-Siebert.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sebastian Wick.net\" default_off=\"self-signed\" f=\"Sebastian_Wick.net.xml\"><rule from=\"^http://(?:www\\.)?sebastianwick\\.net/\" to=\"https://sebastianwick.net/\"/></ruleset>", "<ruleset name=\"SecDev.ca\" default_off=\"missing certificate chain\" f=\"SecDev.ca.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SecDev.com (partial)\" default_off=\"mismatched, missing certificate chain\" f=\"SecDev.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SecWiki.org\" f=\"SecWiki.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"secgeek.net\" f=\"Secgeek.net.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Second Street.com (partial)\" f=\"Second-Street-Media.xml\"><exclusion pattern=\"^http://solutions\\.secondstreet\\.com/+(?!css/|images/|rs/)\"/><rule from=\"^http://solutions\\.secondstreet\\.com/\" to=\"https://na-abd.marketo.com/\"/></ruleset>", "<ruleset name=\"SecondMarket.com\" default_off=\"failed ruleset test\" f=\"SecondMarket.com.xml\"><securecookie host=\"^www\\.secondmarket\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?secondmarket\\.com/\" to=\"https://www.secondmarket.com/\"/></ruleset>", "<ruleset name=\"Second Life.com (partial)\" default_off=\"failed ruleset test\" f=\"Second_Life.com.xml\"><exclusion pattern=\"^http://wiki\\.secondlife\\.com/+(?!favicon\\.ico|static/|w/)\"/><securecookie host=\"^(?:(?:community|id|jira|search|support|www)?\\.)?secondlife\\.com$\" name=\".+\"/><rule from=\"^http://download\\.cloud\\.secondlife\\.com/\" to=\"https://d378iqxsyg0s3u.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Second Look Forensics.com\" default_off=\"failed ruleset test\" f=\"Second_Look_Forensics.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Second Street app.com\" f=\"Second_Street_app.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"secproject.com (partial)\" f=\"Secproject.com.xml\"><rule from=\"^http://www\\.soroush\\.secproject\\.com/\" to=\"https://soroush.secproject.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Secret Maryo Chronicles (partial)\" default_off=\"mismatch, self-signed\" f=\"Secret-Maryo-Chronicles.xml\"><rule from=\"^http://(?:www\\.)?secretmaryo\\.org/\" to=\"https://secretmaryo.org/\"/></ruleset>", "<ruleset name=\"SecretCon.com\" default_off=\"failed ruleset test\" f=\"SecretCon.com.xml\"><securecookie host=\"^\\.secretcon\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SIS.gov.uk\" f=\"Secret_Intelligence_Service.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"section9.co.uk\" f=\"Section9.co.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Secular Students.org\" f=\"Secular-Student-Alliance.xml\"><securecookie host=\"^.*\\.secularstudents\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Secular.org\" f=\"Secular.org.xml\"><securecookie host=\"^(?:.+\\.)?secular\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Secular Humanism.org\" f=\"Secular_Humanism.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"secunet (partial)\" f=\"Secunet.xml\"><securecookie host=\"^\\.secunet\\.com$\" name=\"^__utm\\w$\"/><securecookie host=\"^www\\.secunet\\.com$\" name=\"^(?:ist|_vm_u)$\"/><securecookie host=\"^sinaportal\\.secunet\\.com$\" name=\".*\"/><rule from=\"^http://secunet\\.com/\" to=\"https://www.secunet.com/\"/><rule from=\"^http://www\\.secunet\\.com/(de/(das-unternehmen|not-in-menu)/|en/the-company/it-security-report-secuview/|fileadmin/|typo3(conf|temp)/|uploads/|urchin\\.js)\" to=\"https://www.secunet.com/$1\"/><rule from=\"^http://sinaportal\\.secunet\\.com/\" to=\"https://sinaportal.secunet.com/\"/></ruleset>", "<ruleset name=\"Secunia\" f=\"Secunia.xml\"><securecookie host=\"^(?:\\w+\\.)?secunia\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?secunia\\.com/\" to=\"https://secunia.com/\"/><rule from=\"^http://(autodiscover|ca|csi|psi|\\w+\\.exch\\.eu\\.s|vim4)\\.secunia\\.com/\" to=\"https://$1.secunia.com/\"/><rule from=\"^http://(?:www\\.)?csi7\\.secunia\\.com/.*\" to=\"https://csi7.secunia.com/\"/><rule from=\"^http://(?:www\\.)?smallbusiness\\.secunia\\.com/\" to=\"https://smallbusiness.secunia.com/\"/></ruleset>", "<ruleset name=\"Secur1ty.com\" f=\"Secur1ty.com.xml\"><securecookie host=\"^\\.?secur1ty\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SecuraBit.com\" f=\"SecuraBit.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Secure-Endpoints.com (mismatched)\" default_off=\"mismatched\" f=\"Secure-Endpoints.com-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Secure-Endpoints.com (partial)\" default_off=\"failed ruleset test\" f=\"Secure-Endpoints.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Secure-OS.org\" f=\"Secure-OS.org.xml\"><rule from=\"^http://www\\.secure-os\\.org/\" to=\"https://secure-os.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"secure-donor.com\" f=\"Secure-donor.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://([\\w-]+\\.)?secure-donor\\.com/\" to=\"https://$1secure-donor.com/\"/></ruleset>", "<ruleset name=\"secure-mobiles.com\" f=\"Secure-mobiles.com.xml\"><securecookie host=\"^www\\.secure-mobiles\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"secure-payment-processing.com\" f=\"Secure-payment-processing.com.xml\"><rule from=\"^http://([\\w-]+)\\.secure-payment-processing\\.com/\" to=\"https://$1.secure-payment-processing.com/\"/></ruleset>", "<ruleset name=\"secure-resumption.com\" default_off=\"failed ruleset test\" f=\"Secure-resumption.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"secure-secure.co.uk\" f=\"Secure-secure.co.uk.xml\"><securecookie host=\"^web\\d+\\.secure-secure\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://web(\\d+)\\.secure-secure\\.co\\.uk/\" to=\"https://web$1.secure-secure.co.uk/\"/></ruleset>", "<ruleset name=\"secure-u.de\" platform=\"cacert\" default_off=\"failed ruleset test\" f=\"Secure-u.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"secure-zone.net\" f=\"Secure-zone.net.xml\"><securecookie host=\"^asp-\\w\\w\\.secure-zone\\.net$\" name=\".+\"/><rule from=\"^http://asp-(\\w\\w)\\.secure-zone\\.net/\" to=\"https://asp-$1.secure-zone.net/\"/></ruleset>", "<ruleset name=\"secure.me\" default_off=\"failed ruleset test\" f=\"Secure.me.xml\"><securecookie host=\"^www\\.secure\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Secure.metoffice.gov.uk (partial)\" f=\"Secure.metoffice.gov.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SecureConnect.com\" f=\"SecureConnect.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SecureList.com\" f=\"SecureList.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SecureNet.com\" default_off=\"failed ruleset test\" f=\"SecureNet.com.xml\"><securecookie host=\"^terminal\\.securenet\\.com$\" name=\".+\"/><rule from=\"^http://securenet\\.com/\" to=\"https://www.securenet.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SecurePro Software.com\" default_off=\"failed ruleset test\" f=\"SecurePro_Software.xml\"><securecookie host=\"^\\.?secureprosoftware\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?secureprosoftware\\.com/\" to=\"https://secureprosoftware.com/\"/></ruleset>", "<ruleset name=\"SecureStudies.com (partial)\" f=\"SecureStudies.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SSL7.net\" f=\"Secure_Socket_Layer_Billing_Services.xml\"><securecookie host=\"^ssl7\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Secure Upload.eu\" default_off=\"failed ruleset test\" f=\"Secure_Upload.eu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Secure in the Circle\" default_off=\"mismatched\" f=\"Secure_in_the_Circle.xml\"><rule from=\"^http://(?:www\\.)?secureinthecircle\\.com/\" to=\"https://secureinthecircle.com/\"/></ruleset>", "<ruleset name=\"SecuredVisit.com (partial)\" f=\"SecuredVisit.com.xml\"><securecookie host=\"^\\.securedvisit\\.com$\" name=\"^(?:sv_onid|sv_sid)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"securedataimages.com\" f=\"Securedataimages.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"securedcontent.net\" f=\"Securedcontent.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"securejoinsite.com\" f=\"Securejoinsite.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.securejoinsite\\.com/\" to=\"https://securejoinsite.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Securelime.com\" f=\"Securelime.xml\"><securecookie host=\"^.*\\.securelime\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Securelist.ru\" f=\"Securelist.ru.xml\"><securecookie host=\"^securelist\\.ru$\" name=\".+\"/><rule from=\"^http://www\\.securelist\\.ru/\" to=\"https://securelist.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"securelogin.org\" f=\"Securelogin.org.xml\"><securecookie host=\"^securelogin\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"securepaths.com\" f=\"Securepaths.xml\"><securecookie host=\"^(?:www\\.)?securepaths\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Securepaynet.net (partial)\" default_off=\"failed ruleset test\" f=\"Securepaynet.net.xml\"><securecookie host=\"^(?:.*\\.)?securepaynet\\.net$\" name=\".+\"/><rule from=\"^http://securepaynet\\.net/\" to=\"https://www.securepaynet.net/\"/><rule from=\"^http://(\\w+)\\.securepaynet\\.net/\" to=\"https://$1.securepaynet.net/\"/><rule from=\"^http://(img\\d|nebula)\\.wsimg\\.com/\" to=\"https://$1.wsimg.com/\"/></ruleset>", "<ruleset name=\"securepicssl.com\" f=\"Securepicssl.com.xml\"><securecookie host=\"^(?:.*\\.)?securepicssl\\.com$\" name=\".+\"/><rule from=\"^http://([\\w-]+\\.)?securepcissl\\.com/\" to=\"https://$1securepcissl.com/\"/></ruleset>", "<ruleset name=\"Securepoint.de\" f=\"Securepoint.de.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"securepurchaseserver.com\" default_off=\"failed ruleset test\" f=\"Securepurchaseserver.com.xml\"><rule from=\"^http://(?:www\\.)?securepurchaseserver(2)?\\.com/\" to=\"https://securepurchaseserver$1.com/\"/></ruleset>", "<ruleset name=\"Secureserver.net (partial)\" default_off=\"failed ruleset test\" f=\"Secureserver.net.xml\"><securecookie host=\".+\\.secureserver\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"securetrust.com (partial)\" default_off=\"failed ruleset test\" f=\"Securetrust.com.xml\"><rule from=\"^http://securetrust\\.com/\" to=\"https://www.securetrust.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"secureuk.net\" f=\"Secureuk.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SecuriTeam.com (partial)\" f=\"SecuriTeam.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Securifera.com\" f=\"Securifera.com.xml\"><rule from=\"^http://securifera\\.com/\" to=\"https://www.securifera.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Securing the Human.org\" default_off=\"failed ruleset test\" f=\"Securing_the_Human.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Securities.com (partial)\" platform=\"mixedcontent\" f=\"Securities.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Security-Database.com\" f=\"Security-Database.com.xml\"><securecookie host=\"^www\\.security-database\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?security-database\\.com/\" to=\"https://www.security-database.com/\"/></ruleset>", "<ruleset name=\"Security-Portal.cz\" f=\"Security-Portal.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SRLabs.de\" f=\"Security-Research-Labs.xml\"><securecookie host=\"^.*\\.srlabs\\.de$\" name=\".*\"/><rule from=\"^http://www\\.srlabs\\.de/\" to=\"https://srlabs.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SecurityKISS.com (partial)\" f=\"SecurityKISS.com.xml\"><exclusion pattern=\"^http://www\\.securitykiss\\.com/(?!favicon\\.ico|(?:helpdesk|panel|pricing/order)(?:$|[?/])|images/|javascripts/|stylesheets/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SecurityMetrics.com\" default_off=\"failed ruleset test\" f=\"SecurityMetrics.xml\"><securecookie host=\"^(?:web2\\.|www\\.)?securitymetrics\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Security.NL\" f=\"SecurityNL.xml\"><securecookie host=\"^\\.www\\.security\\.nl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SecurityWeek.com (partial)\" platform=\"mixedcontent\" default_off=\"missing certificate chain\" f=\"SecurityWeek.com.xml\"><securecookie host=\"^(?:www)?\\.securityweek\\.com$\" name=\".+\"/><rule from=\"^http://securityweek\\.com/\" to=\"https://www.securityweek.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Security Conference.de\" f=\"Security_Conference.de.xml\"><securecookie host=\"^(?:.*\\.)?securityconference\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Security Evaluators.com\" f=\"Security_Evaluators.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Security Experten.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Security_Experten.com-falsemixed.xml\"><securecookie host=\"^www\\.securityexperten\\.com$\" name=\".+\"/><rule from=\"^http://securityexperten\\.com/.*\" to=\"https://www.securityexperten.com/\"/><rule from=\"^http://www\\.securityexperten\\.com/(?!favicon\\.ico|fileadmin/|typo3conf/|typo3temp/)\" to=\"https://www.securityexperten.com/\"/></ruleset>", "<ruleset name=\"Security Experten.com (partial)\" default_off=\"failed ruleset test\" f=\"Security_Experten.com.xml\"><rule from=\"^http://www\\.securityexperten\\.com/(?=favicon\\.ico|fileadmin/|typo3conf/|typo3temp/)\" to=\"https://www.securityexperten.com/\"/></ruleset>", "<ruleset name=\"Security Innovation.com (partial)\" f=\"Security_Innovation.com.xml\"><securecookie host=\"^(?:www\\.)?securityinnovation\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Security Ledger.com\" f=\"Security_Ledger.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Security Mouse.com (false MCB)\" platform=\"mixedcontent\" f=\"Security_Mouse.com.xml\"><securecookie host=\"^\\.securitymouse\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Security in a Box.org\" f=\"Security_in_a_Box.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Securix.org\" f=\"Securix.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Securosis.com\" f=\"Securosis.xml\"><securecookie host=\"^(?:\\.|\\.?www\\.)?securosis\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Securus Global.com\" f=\"Securus_Global.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SecuryCast.com\" f=\"SecuryCast-Oy.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Secusmart.com\" f=\"Secusmart.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://secusmart\\.com/\" to=\"https://www.secusmart.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\".SE Direkt\" f=\"Sedirekt.se.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sedo.de (problematic)\" default_off=\"expired\" f=\"Sedo-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sedo.co.uk\" f=\"Sedo.co.uk.xml\"><securecookie host=\"^\\.?sedo\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sedo.com\" default_off=\"failed ruleset test\" f=\"Sedo.com.xml\"><securecookie host=\"^\\.?sedo\\.com$\" name=\".+\"/><rule from=\"^http://mail\\.sedo\\.com/\" to=\"https://mail.sedoholding.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sedo.de (partial)\" default_off=\"failed ruleset test\" f=\"Sedo.de.xml\"><securecookie host=\"^\\.?sedo\\.de$\" name=\".+\"/><rule from=\"^http://mail\\.sedo\\.de/\" to=\"https://mail.sedoholding.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sedo.fr\" f=\"Sedo.fr.xml\"><rule from=\"^http://(?:www\\.)?sedo\\.fr/$\" to=\"https://sedo.com/fr/?language=fr\"/><rule from=\"^http://(?:www\\.)?sedo\\.fr/\" to=\"https://sedo.com/\"/></ruleset>", "<ruleset name=\"Sedo Holding.com (partial)\" f=\"Sedo_Holding.com.xml\"><securecookie host=\"^mail\\.sedoholding\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sedo Parking.com\" f=\"Sedo_Parking.com.xml\"><rule from=\"^http://img\\.sedoparking\\.com/\" to=\"https://sedo.cachefly.net/\"/></ruleset>", "<ruleset name=\"See Group (partial)\" f=\"See-Group.xml\"><securecookie host=\"^www2\\.seetickets\\.com$\" name=\".*\"/><rule from=\"^http://seetickets\\.com/\" to=\"https://www.seetickets.com/\"/><rule from=\"^http://www\\.seetickets\\.com/(Content/(About-us|Data-Protection|Security)|Skins/|CustomerService|Terms-and-Conditions)\" to=\"https://www.seetickets.com/$1\"/><rule from=\"^http://www2\\.seetickets\\.com/\" to=\"https://www2.seetickets.com/\"/><rule from=\"^http://s(?:tatic\\.)?\\.s(?:eetickets|tstat)\\.com/\" to=\"https://static.seetickets.com/\"/></ruleset>", "<ruleset name=\"Seecrypt.com\" default_off=\"failed ruleset test\" f=\"Seecrypt.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SeedProd.com (partial)\" f=\"SeedProd.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Seedboxes.cc\" f=\"Seedboxes.cc.xml\"><securecookie host=\"^(?:w*\\.)?seedboxes\\.cc$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Seedr\" default_off=\"failed ruleset test\" f=\"Seedr.xml\"><securecookie host=\"^.*\\.seedr\\.cc$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Seedrs\" default_off=\"failed ruleset test\" f=\"Seedrs.xml\"><securecookie host=\"^.*\\.seedrs\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Seeed Studio.com\" platform=\"mixedcontent\" f=\"Seeed_Studio.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SeekingArrangement.com\" f=\"SeekingArrangement.com.xml\"><securecookie host=\"^(?:www)?\\.seekingarrangement\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Seeks Project (partial)\" default_off=\"mismatched, self-signed\" f=\"Seeks_Project.xml\"><rule from=\"^http://(?:www\\.)?seeks-project\\.info/\" to=\"https://www.seeks-project.info/\"/></ruleset>", "<ruleset name=\"SegPay (partial)\" f=\"SegPay.xml\"><rule from=\"^http://(?:www\\.)?segpaychat\\.com/.*\" to=\"https://cs.segpay.com/chat.html\"/><rule from=\"^http://www\\.segpaycs\\.com/\" to=\"https://segpaycs.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Segger.com\" default_off=\"failed ruleset test\" f=\"Segger.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Segment.io\" f=\"Segment.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Segment\" f=\"Segment.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Segment Fault\" f=\"Segmentfault.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Seguros Universales\" f=\"Seguros_Universales.xml\"><securecookie host=\"^(?:www)?\\.segurosuniversales\\.net$\" name=\".+\"/><rule from=\"^http://segurosuniversales\\.net/.*\" to=\"https://www.segurosuniversales.net/\"/><rule from=\"^http://www\\.segurosuniversales\\.net/\" to=\"https://www.segurosuniversales.net/\"/></ruleset>", "<ruleset name=\"Sehirfirsati\" default_off=\"failed ruleset test\" f=\"Sehirfirsati.xml\"><securecookie host=\"^(?:.*\\.)?sehirfirsati\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?sehirfirsati\\.com/\" to=\"https://www.sehirfirsati.com/\"/><rule from=\"^http://static\\.sehirfirsati\\.com/\" to=\"https://static.sehirfirsati.com/\"/><rule from=\"^http://render\\.groupon-content\\.net/\" to=\"https://render.groupon-content.net/\"/></ruleset>", "<ruleset name=\"SektionEins.de\" f=\"SektionEins.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Selangorku\" default_off=\"failed ruleset test\" f=\"Selangorku.xml\"><securecookie host=\"^(?:.*\\.)?selangorku\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Selectricity\" f=\"Selectricity.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"selfhost.de\" f=\"Selfhost.de.xml\"><rule from=\"^http://(?:www\\.)?selfhost\\.de/\" to=\"https://selfhost.de/\"/></ruleset>", "<ruleset name=\"Selfridges.com (partial)\" f=\"Selfridges.com.xml\"><securecookie host=\"^www\\.selfridges\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sellaband.com (partial)\" default_off=\"failed ruleset test\" f=\"Sellaband.com.xml\"><securecookie host=\"^(?:.*\\.)?sellaband\\.com$\" name=\".*\"/><rule from=\"^http://(www\\.)?sellaband\\.com/\" to=\"https://$1sellaband.com/\"/><rule from=\"^http://(alternative|electronic|hiphop|pop|rnb|rock|world)\\.sellaband\\.com/\" to=\"https://$1.sellaband.com/\"/><rule from=\"^http://support\\.sellaband\\.com/(access|generated|images|registration|system)\" to=\"https://sellaband.zendesk.com/$1\"/></ruleset>", "<ruleset name=\"Selz.com\" f=\"Selz.com.xml\"><securecookie host=\"^\\.selz\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Semaphoreci.com\" f=\"Semaphoreci.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SemiAccurate\" f=\"SemiAccurate.xml\"><securecookie host=\"^(?:.*\\.)?semiaccurate\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?s(?:emiaccurate\\.com|tonearch\\.net)/\" to=\"https://$1semiaccurate.com/\"/></ruleset>", "<ruleset name=\"SemperVideo\" f=\"SemperVideo.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Senate of Poland (partial)\" f=\"Senate-Of-Poland.xml\"><rule from=\"^http://edukacja\\.senat\\.gov\\.pl/\" to=\"https://senat.edu.pl/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Senate of the Philippines\" f=\"Senate_of_the_Philippines.xml\"><securecookie host=\"^senate\\.gov\\.ph$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sencha (partial)\" default_off=\"failed ruleset test\" f=\"Sencha.xml\"><exclusion pattern=\"^http://www\\.sencha\\.com/+(?!forum/|wp-content/)\"/><securecookie host=\"^\\.manage\\.sencha\\.com$\" name=\".+\"/><rule from=\"^http://sencha\\.com/\" to=\"https://www.sencha.com/\"/><rule from=\"^http://cdn\\.sencha\\.(?:com|io)/\" to=\"https://extjs.cachefly.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SendGrid.com (partial)\" default_off=\"failed ruleset test\" f=\"SendGrid.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SendMoneyToSchool.com\" f=\"SendMoneyToSchool.com.xml\"><securecookie host=\"^(manage|www)\\.sendmoneytoschool\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SendPepper.com\" default_off=\"expired, mismatched\" f=\"SendPepper.com.xml\"><rule from=\"^http://(?:www\\.)?sendpepper\\.com/\" to=\"https://sendpepper.com/\"/></ruleset>", "<ruleset name=\"SendYourFiles.org (partial)\" f=\"SendYourFiles.com.xml\"><securecookie host=\"^secure\\.sendyourfiles\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SenderScore.org\" f=\"SenderScore.org.xml\"><securecookie host=\"^(?:\\.|www\\.)?senderscore\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sendmail\" platform=\"mixedcontent\" f=\"Sendmail.xml\"><rule from=\"^http://(?:www\\.)?sendmail\\.com/\" to=\"https://www.sendmail.com/\"/></ruleset>", "<ruleset name=\"sendmoments.com (partial)\" default_off=\"failed ruleset test\" f=\"Sendmoments.com.xml\"><rule from=\"^http://ck\\.sendmoments\\.com/\" to=\"https://ck.sendmoments.com/\"/></ruleset>", "<ruleset name=\"sendspace.com\" f=\"Sendspace.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sendvid.com (partial)\" f=\"Sendvid.com.xml\"><securecookie host=\"^(?:2\\.)?sendvid\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SensePost.com\" f=\"SensePost.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sensiolabs.com\" default_off=\"failed ruleset test\" f=\"Sensiolabs.com.xml\"><securecookie host=\"^(www\\.)?(support\\.|insight\\.|connect\\.)?sensiolabs\\.com\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SentinelOne.com\" f=\"SentinelOne.com.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SeoWizard.ru\" f=\"SeoWizard.ru.xml\"><securecookie host=\"^www\\.seowizard\\.ru$\" name=\".+\"/><rule from=\"^http://seowizard\\.ru/\" to=\"https://www.seowizard.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Seonet Multimedia (partial)\" default_off=\"self-signed\" f=\"Seonet-Multimedia.xml\"><securecookie host=\"^kb\\.gigaserver\\.cz$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?gigadesign\\.cz/(cs|image)s/\" to=\"https://www.gigadesign.cz/$1s/\"/><rule from=\"^http://(\\w+)\\.gigaserver\\.cz/\" to=\"https://$1.gigaserver.cz/\"/><rule from=\"^http://(?:www\\.)?seonet\\.cz/\" to=\"https://www.seonet.cz/\"/></ruleset>", "<ruleset name=\"seower.com\" platform=\"mixedcontent\" f=\"Seower.com.xml\"><rule from=\"^http://(?:www\\.)?seower\\.com/\" to=\"https://postbydnx.com/\"/></ruleset>", "<ruleset name=\"Sequanux.org (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Sequanux.org-falsemixed.xml\"><securecookie host=\"^wiki\\.sequanux\\.org$\" name=\".+\"/><rule from=\"^http://wiki\\.sequanux\\.org/(?!favicon\\.ico|home/services/|load\\.php|skins/)\" to=\"https://wiki.sequanux.org/\"/></ruleset>", "<ruleset name=\"Sequanux.org (partial)\" default_off=\"self-signed\" f=\"Sequanux.org.xml\"><rule from=\"^http://(?:www\\.)?sequanux\\.org/\" to=\"https://www.sequanux.org/\"/><rule from=\"^http://wiki\\.sequanux\\.org/(?=favicon\\.ico|home/services/|load\\.php|skins/)\" to=\"https://wiki.sequanux.org/\"/></ruleset>", "<ruleset name=\"Serato.com (partial)\" f=\"Serato.com.xml\"><rule from=\"^http://((?:auth|manage|playlists|www)\\.)?serato\\.com/\" to=\"https://$1serato.com/\"/><rule from=\"^http://s\\.store\\.serato\\.com/\" to=\"https://d3hrfuxypomrcm.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Seravo.fi\" f=\"Seravo.fi.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Serialist\" f=\"Serialist.xml\"><rule from=\"^http://(?:www\\.)?serialist\\.net/\" to=\"https://serialist.net/\"/><rule from=\"^http://([^/:@]*)\\.serialist\\.net/\" to=\"https://$1.serialist.net/\"/></ruleset>", "<ruleset name=\"Serienjunkies.de (mixed content)\" platform=\"mixedcontent\" f=\"Serienjunkies.de.xml\"><securecookie host=\"^www\\.serienjunkies\\.de$\" name=\".+\"/><rule from=\"^http://serienjunkies\\.de/\" to=\"https://www.serienjunkies.de/\"/><rule from=\"^http://([a-z]-cdn|www)\\.serienjunkies\\.de/\" to=\"https://$1.serienjunkies.de/\"/></ruleset>", "<ruleset name=\"Sertifikatai.lt\" f=\"Sertifikatai.lt.xml\"><rule from=\"^http://(?:www\\.)?sertifikatai\\.lt/\" to=\"https://www.sertifikatai.lt/\"/></ruleset>", "<ruleset name=\"Servage.net\" f=\"Servage.net.xml\"><securecookie host=\"^(?:livesupport01|secure|www)\\.servage\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?servage\\.com/(?:\\?.*)?$\" to=\"https://www.servage.net/\"/><rule from=\"^http://(?:www\\.)?servage\\.net/\" to=\"https://www.servage.net/\"/><rule from=\"^http://(livesupport01|secure|static)\\.servage\\.net/\" to=\"https://$1.servage.net/\"/><rule from=\"^http://webmail\\.servage\\.net/(?:\\?.*)?$\" to=\"https://secure.servage.net/webmail/\"/></ruleset>", "<ruleset name=\"Serve.com\" f=\"Serve.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ServeNets.com (partial)\" default_off=\"mismatched\" f=\"ServeNets.com.xml\"><securecookie host=\"^domains\\.servenets\\.com$\" name=\".+\"/><rule from=\"^http://domains\\.servenets\\.com/\" to=\"https://domains.servenets.com/\"/></ruleset>", "<ruleset name=\"ServeTheHome.com (partial)\" f=\"ServeTheHome.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Served by OpenX.com (partial)\" f=\"Served_by_OpenX.com.xml\"><rule from=\"^http://i-cdn\\.servedbyopenx\\.com/\" to=\"https://i-cdn.openx.com/\"/></ruleset>", "<ruleset name=\"server314.com\" f=\"Server314.com.xml\"><securecookie host=\"^.+\\.server314\\.com$\" name=\".+\"/><rule from=\"^http://([\\w\\.-]+\\.)?server314\\.com/\" to=\"https://$1server314.com/\"/></ruleset>", "<ruleset name=\"ServerCentral (partial)\" default_off=\"failed ruleset test\" f=\"ServerCentral.xml\"><securecookie host=\"^portal\\.servercentral\\.net$\" name=\".+\"/><rule from=\"^http://portal\\.servercentral\\.net/\" to=\"https://portal.servercentral.net/\"/></ruleset>", "<ruleset name=\"ServerCrate.com (partial)\" f=\"ServerCrate.com.xml\"><exclusion pattern=\"^http://billing\\.servercrate\\.com/(?:$|\\?|(?:announcements|index|knowledgebase)\\.php)\"/><securecookie host=\"^(?:vps|www)?\\.servercrate\\.com$\" name=\".+\"/><rule from=\"^http://((?:billing|vps|www)\\.)?servercrate\\.com/\" to=\"https://$1servercrate.com/\"/></ruleset>", "<ruleset name=\"ServerExpress.co.il\" f=\"ServerExpress.co.il.xml\"><securecookie host=\"^(?:www)?\\.stratusexpress\\.com$\" name=\".+\"/><rule from=\"^http://www\\.stratusexpress\\.com/\" to=\"https://www.stratusexpress.com/\"/></ruleset>", "<ruleset name=\"ServerPilot.io\" f=\"ServerPilot.io.xml\"><securecookie host=\"^\\.serverpilot\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ServerStack.com\" f=\"ServerStack.com.xml\"><securecookie host=\"^(?:www\\.)?serverstack\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Server Circle.com\" platform=\"mixedcontent\" default_off=\"expired\" f=\"Server_Circle.com.xml\"><securecookie host=\"^(?:www\\.)?servercircle\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Server Express (partial)\" f=\"Server_Express.xml\"><securecookie host=\"^\\.theserverexpress\\.com$\" name=\"^__cfduid$\"/><securecookie host=\"^manage\\.theserverexpress\\.com$\" name=\".+\"/><rule from=\"^http://manage\\.theserverexpress\\.com/\" to=\"https://manage.theserverexpress.com/\"/></ruleset>", "<ruleset name=\"Servercow.de\" f=\"Servercow.de.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Servercraft\" f=\"Servercraft.xml\"><securecookie host=\"^(?:w*\\.)?servercraft\\.co$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Serverdensity\" f=\"Serverdensity.xml\"><securecookie host=\"^serverdensity\\.io$\" name=\".+\"/><securecookie host=\"^serverdensity\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Serverfruit.com\" default_off=\"failed ruleset test\" f=\"Serverfruit.com.xml\"><securecookie host=\"^(?:client|www)?\\.serverfruit\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"serveriai.lt\" f=\"Serveriai.lt.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"serverloft (partial)\" f=\"Serverloft.xml\"><securecookie host=\"^.*\\.serverloft\\.com$\" name=\".*\"/><rule from=\"^http://(my|order)\\.serverloft\\.com/\" to=\"https://$1.serverloft.com/\"/></ruleset>", "<ruleset name=\"Servers for Hackers.com\" default_off=\"failed ruleset test\" f=\"Servers_for_Hackers.com.xml\"><securecookie host=\"^(?:forums\\.|www\\.)?serversforhackers\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Serversaurus.com.au (partial)\" default_off=\"failed ruleset test\" f=\"Serversaurus.com.au.xml\"><securecookie host=\"^(?:www\\.)?serversaurus\\.com\\.au$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Service-Now.com\" f=\"Service-now.com.xml\"><securecookie host=\".\\.service-now\\.com$\" name=\".\"/><rule from=\"^http://([\\w-]+\\.)?service-now\\.com/\" to=\"https://$1service-now.com/\"/></ruleset>", "<ruleset name=\"ServiceNow.com\" f=\"ServiceNow.com.xml\"><securecookie host=\"^\\.servicenow\\.com$\" name=\"^wikidb_session$\"/><securecookie host=\"^(community|developer|docs|express|partners|share|store)\\.servicenow\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ServiceTick.com\" f=\"ServiceTick.com.xml\"><securecookie host=\"^console\\.servicetick\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?servicetick\\.com/\" to=\"https://www.servicetick.com/\"/><rule from=\"^http://console\\.servicetick\\.com/\" to=\"https://console.servicetick.com/\"/></ruleset>", "<ruleset name=\"Service Uptime.com\" f=\"Service_Uptime.com.xml\"><securecookie host=\"^www\\.serviceuptime\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Service by Air\" default_off=\"failed ruleset test\" f=\"Service_by_Air.xml\"><securecookie host=\"^community\\.sbaglobal\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"serving-sys-int.com\" f=\"Serving-sys-int.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"serving-sys.com (partial)\" f=\"Serving-sys.com.xml\"><securecookie host=\"^bs\\.serving-sys\\.com$\" name=\".*\"/><rule from=\"^http://activity\\.serving-sys\\.com/\" to=\"https://bs.serving-sys.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sesamstrasse.de\" f=\"Sesamstrasse.de.xml\"><securecookie host=\"^(www\\.)?sesamstrasse\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sesek.com\" f=\"Sesek.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SessionCam.com\" f=\"SessionCam.com.xml\"><rule from=\"^http://(?:www\\.)?sessioncam\\.com/\" to=\"https://www.sessioncam.com/\"/></ruleset>", "<ruleset name=\"Set.io\" default_off=\"failed ruleset test\" f=\"Set.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Seth Vargo.com\" f=\"Seth_Vargo.com.xml\"><rule from=\"^http://(?:www\\.)?sethvargo\\.com/\" to=\"https://sethvargo.com/\"/></ruleset>", "<ruleset name=\"Settrade.com\" f=\"Settrade.com.xml\"><rule from=\"^http://(?:www\\.)?settrade\\.com/\" to=\"https://www.settrade.com/\"/><rule from=\"^http://portal\\.settrade\\.com/\" to=\"https://portal.settrade.com/\"/></ruleset>", "<ruleset name=\"SevenOneMedia\" f=\"SevenOneMedia.xml\"><rule from=\"^http://ad\\.71i\\.de/\" to=\"https://adserver.71i.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SevenTorrents.org\" default_off=\"refused\" f=\"SevenTorrents.xml\"><securecookie host=\"^seventorrents\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sevenoaks.gov.uk (partial)\" f=\"Sevenoaks.gov.uk.xml\"><exclusion pattern=\"^http://cds\\.sevenoaks\\.gov\\.uk/+(?![Ss]iteSpecific/|documents/\\w+/|ie(?:Logon|RegisterUser)\\.aspx|jquery-ui/css/)\"/><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^(?!cds\\.)\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"severgazbank.ru (partial)\" f=\"Severgazbank.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SexNarod (partial)\" default_off=\"expired, mismatch, self-signed\" f=\"SexNarod.xml\"><rule from=\"^http://(?:www\\.)?(sexnarod\\.ru|superforum\\.org|sxnarod\\.com)/\" to=\"https://www.$1/\"/><rule from=\"^http://dating\\.superforum\\.org/\" to=\"https://dating.superforum.org/\"/><rule from=\"^http://(pda|wap\\.dating)\\.sxnarod\\.com/\" to=\"https://$1.sxnarod.com/\"/><securecookie host=\"^(?:www)?\\.sexnarod\\.ru$\" name=\".*\"/><securecookie host=\"^(?:\\.dating)?\\.s(?:uperforum\\.org|xnarod\\.com)$\" name=\".*\"/></ruleset>", "<ruleset name=\"SexSlurp\" default_off=\"failed ruleset test\" f=\"SexSlurp.xml\"><securecookie host=\"^\\.sexslurp\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sexad.net (partial)\" f=\"Sexad.net.xml\"><securecookie host=\"^\\.as\\.sexad\\.net$\" name=\"^at\\d+(_\\d+)+$\"/><securecookie host=\"^\\.as\\.sexad\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sexkompas.net\" default_off=\"failed ruleset test\" f=\"Sexkompas.net.xml\"><securecookie host=\"^www\\.sexkompas\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sextoy.com (partial)\" f=\"Sextoy.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sextoy fun.com (partial)\" f=\"Sextoy_fun.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Sexy House\" f=\"Sexy_House.xml\"><securecookie host=\"^\\.thesexyhouse\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Seznam.cz\" f=\"Seznam.cz.xml\"><rule from=\"^http://(?:www\\.)?seznam\\.cz/\" to=\"https://www.seznam.cz/\"/><rule from=\"^http://(?:www\\.)?post\\.cz/\" to=\"https://email.seznam.cz/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Security and Futures Commission (partial)\" f=\"Sfc.hk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sferra (partial)\" f=\"Sferra.xml\"><exclusion pattern=\"^http://(?:www\\.)?sferra\\.com/content/.+\\.html\"/><rule from=\"^http://(www\\.)?sferra\\.com/((?:checkout|Member|registry)(?:$|\\?)|content/|css/|images/|photos/|Public/|Scripts/|/?store_image/|Styles/)\" to=\"https://$1sferra.com/$2\"/></ruleset>", "<ruleset name=\"Simon Fraser University\" default_off=\"failed ruleset test\" f=\"Sfu.ca.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sfx.ms\" f=\"Sfx.ms.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shabdkosh.com\" f=\"Shabdkosh.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shacknews\" default_off=\"failed ruleset test\" f=\"Shacknews.xml\"><securecookie host=\"^www\\.shacknews\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?shacknews\\.com/\" to=\"https://www.shacknews.com/\"/><rule from=\"^http://cf\\.shacknews\\.com/\" to=\"https://shacknews.s3.amazonaws.com/\"/></ruleset>", "<ruleset name=\"Shadertoy.com\" f=\"Shadertoy.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shadow of Mordor.com\" default_off=\"failed ruleset test\" f=\"Shadow_of_Mordor.com.xml\"><securecookie host=\"^(?:www)?\\.shadowofmordor\\.com$\" name=\".+\"/><rule from=\"^http://shadowofmordor\\.com/\" to=\"https://www.shadowofmordor.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shadowproof.com (partial)\" f=\"Shadowproof.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shaklee (partial)\" default_off=\"Needs ruleset tests\" f=\"Shaklee.xml\"><exclusion pattern=\"^http://member\\.myshaklee\\.com/\\w\\w/\\w\\w/article/\"/><exclusion pattern=\"^http://shaklee\\.com/(?:/\\w\\w/\\w\\w/)?(?:$|\\?)\"/><securecookie host=\"^\\.shaklee\\.com$\" name=\"^s_\\w+$\"/><securecookie host=\"^www\\.myshaklee\\.com$\" name=\".+\"/><rule from=\"^http://myshaklee\\.com/\" to=\"https://www.myshaklee.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shaman's Garden\" f=\"Shamans_Garden.xml\"><securecookie host=\"^(?:w*\\.)?shamansgarden\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shambhala Mountain Center\" f=\"Shambhala-Mountain-Center.xml\"><securecookie host=\"^(?:www\\.)?shambhalamountain\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shana Project\" f=\"Shanaproject.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shanghai Commercial Bank\" f=\"ShanghaiCommercialBank.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shannon Health\" default_off=\"failed ruleset test\" f=\"Shannon-Health.xml\"><securecookie host=\"^(?:.*\\.)?myshannonconnection\\.org$\" name=\".+\"/><securecookie host=\"^(?:.*\\.)?shannonhealth\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?myshannonconnection\\.org/\" to=\"https://www.myshannonconnection.org/\"/><rule from=\"^http://(?:www\\.)?shannonhealth\\.com/\" to=\"https://www.shannonhealth.com/\"/></ruleset>", "<ruleset name=\"ShapeShift.io\" f=\"ShapeShift.io.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ShareASale.com (partial)\" f=\"ShareASale.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://static\\.shareasale\\.com/\" to=\"https://dou14x5jx22mo.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ShareConnect.com\" f=\"ShareConnect.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ShareFile.com\" f=\"ShareFile.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ShareFile support.com (missing certificate chain)\" default_off=\"missing certificate chain\" f=\"ShareFile_support.com-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ShareFile support.com (partial)\" f=\"ShareFile_support.com.xml\"><rule from=\"^http://(?:www\\.)?sharefilesupport\\.com/\" to=\"https://www.sharefile.com/\"/></ruleset>", "<ruleset name=\"ShareIslam.com\" default_off=\"failed ruleset test\" f=\"ShareIslam.com.xml\"><securecookie host=\"^www\\.shareislam\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ShareRepo.com\" f=\"ShareRepo.com.xml\"><securecookie host=\"^\\.sharerepo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ShareSix.com\" f=\"ShareSix.com.xml\"><securecookie host=\"^\\.sharesix\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ShareThis.com (partial)\" f=\"ShareThis.xml\"><securecookie host=\".+\\.sharethis\\.com$\" name=\".+\"/><rule from=\"^http://s\\.sharethis\\.com/\" to=\"https://sd.sharethis.com/\"/><rule from=\"^http://w\\.sharethis\\.com/\" to=\"https://ws.sharethis.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Share it.com (partial)\" default_off=\"failed ruleset test\" f=\"Share_it.com.xml\"><securecookie host=\"^(?!www\\.)\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?shareit\\.com/+\" to=\"https://www.mycommerce.com/\"/><exclusion pattern=\"^http://(?:www\\.)?shareit\\.com/+(?!$|\\?)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Share the Network.com\" default_off=\"connection reset\" f=\"Share_the_Network.xml\"><securecookie host=\"^www\\.sharethenetwork\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shared.sx (false MCB)\" platform=\"mixedcontent\" f=\"Shared.sx-falsemixed.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shared.sx (partial)\" f=\"Shared.sx.xml\"><securecookie host=\"^\\.\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SharedValue.org\" f=\"SharedValue.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sharedcount.com API\" f=\"Sharedcount.com-API.xml\"><rule from=\"^http://api\\.sharedcount\\.com/\" to=\"https://sharedcount.appspot.com/\"/></ruleset>", "<ruleset name=\"sharedvue.net\" f=\"Sharedvue.net.xml\"><securecookie host=\"^intel\\.sharedvue\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sharefest.me\" f=\"Sharefest.me.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shareholder.com (partial)\" f=\"Shareholder.com.xml\"><securecookie host=\"^(?:dialogue|\\.investor)?\\.shareholder\\.com\" name=\".+\"/><rule from=\"^http://apps2\\.shareholder\\.com/\" to=\"https://apps.shareholder.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shareholder.ru (partial)\" f=\"Shareholder.ru.xml\"><securecookie host=\"^(?:\\.|www\\.)?shareholder\\.ru$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sharethefiles.com\" f=\"Sharethefiles.com.xml\"><securecookie host=\"^\\.sharethefiles\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sharethrough.com (partial)\" default_off=\"failed ruleset test\" f=\"Sharethrough.xml\"><exclusion pattern=\"^http://marketing\\.sharethrough\\.com/(?!/*(?:$|\\?|acton/))\"/><securecookie host=\"^(?!marketing\\.).\" name=\".\"/><rule from=\"^http://marketing\\.sharethrough\\.com/(?:\\?.*)?$\" to=\"https://sharethrough.com/?ao=1\"/><rule from=\"^http://marketing\\.sharethrough\\.com/\" to=\"https://ci33.actonsoftware.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shari DeAngel.com (false MCB)\" platform=\"mixedcontent\" f=\"Shari_DeAngelo.com-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shari DeAngel.com (partial)\" f=\"Shari_DeAngelo.com.xml\"><rule from=\"^http://(www\\.)?sharideangelo\\.com/(?=favicon\\.ico|wp-content/|wp-includes/)\" to=\"https://$1sharideangelo.com/\"/></ruleset>", "<ruleset name=\"SharpSpring (partial)\" f=\"SharpSpring.xml\"><securecookie host=\".+\\.sharpspring\\.com$\" name=\".+\"/><rule from=\"^http://(app|sfdc)\\.sharpspring\\.com/\" to=\"https://$1.sharpspring.com/\"/></ruleset>", "<ruleset name=\"Sharpmen\" default_off=\"failed ruleset test\" f=\"Sharpmen.xml\"><securecookie host=\"^\\.sharpmen\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shaun Lorrain.com.au\" default_off=\"failed ruleset test\" f=\"Shaun_Lorrain.com.au.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shaw.ca (partial)\" f=\"Shaw.ca.xml\"><exclusion pattern=\"^http://business\\.shaw\\.ca/+(?!SharedAssets/)\"/><securecookie host=\"^(?:community|myaccount|newsroom|www)\\.shaw\\.ca$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shazam.com (problematic)\" default_off=\"mismatched\" f=\"Shazam-problematic.xml\"><securecookie host=\"^\\.shazam\\.com$\" name=\"^(?:_mynewsdesk_session|origin_site|picked_site)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shazam.com (partial)\" f=\"Shazam.xml\"><securecookie host=\".+\\.shazam\\.com$\" name=\".+\"/><rule from=\"^http://shazam\\.com/\" to=\"https://www.shazam.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ShazamID.com\" f=\"ShazamID.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SheKnows.com (partial)\" f=\"SheKnows.com.xml\"><securecookie host=\"^\\.sheknows\\.com$\" name=\"^__(?:cfduid|qca)$\"/><securecookie host=\"^connect\\.sheknows\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SheVibe.com (partial)\" f=\"SheVibe.com.xml\"><rule from=\"^http://(?:www\\.)?shevibe\\.com/(?=\\w+\\.css|\\w+/css/|(?:cart|login|order-lookup|send-password)\\.aspx|favicon\\.ico|features/|[\\w.]+_files/|images/|scripts/|template/)\" to=\"https://www.shevibe.com/\"/></ruleset>", "<ruleset name=\"Sheet Music Plus (partial)\" platform=\"mixedcontent\" f=\"Sheet-Music-Plus.xml\"><rule from=\"^http://sheetmusicplus\\.com/\" to=\"https://www.sheetmusicplus.com/\"/><rule from=\"^http://www\\.sheetmusicplus\\.com/(account/orders|affiliates|cart/save_item|checkout|easyrebates|favicon\\.ico|newsletter/signup|sign_(in|up))\" to=\"https://www.sheetmusicplus.com/$1\"/><rule from=\"^http://(?:ssl\\.)?assets\\.sheetmusicplus\\.com/\" to=\"https://d29ci68ykuu27r.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Sheffield.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"Sheffield.gov.uk.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"shellfish.io\" default_off=\"failed ruleset test\" f=\"Shellfish.io.xml\"><securecookie host=\"^shellfish\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"shellspace.net\" f=\"Shellspace.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shellter Project.com\" f=\"Shellter_Project.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shenandoah University (partial)\" f=\"Shenandoah_University.xml\"><rule from=\"^http://cdn\\.su\\.edu/\" to=\"https://8e30e7d033d0eb544c88-cfde4bf79d8fc6cacaa1550c45dd6099.ssl.cf1.rackcdn.com/\"/></ruleset>", "<ruleset name=\"Sheperds Friendly Society\" f=\"Sheperds_Friendly_Society.xml\"><securecookie host=\"^www\\.shepherdsfriendly\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?shepherdsfriendly\\.co\\.uk/\" to=\"https://www.shepherdsfriendly.co.uk/\"/></ruleset>", "<ruleset name=\"SheppyWare\" f=\"SheppyWare.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sherrin\" f=\"Sherrin.xml\"><securecookie host=\"^www\\.sherrin\\.com\\.au$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shibboleth.net\" f=\"Shibboleth.net.xml\"><securecookie host=\"^issues\\.shibboleth\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shift Payments.com\" f=\"Shift_Payments.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shiftboard.com (partial)\" f=\"Shiftboard.com.xml\"><rule from=\"^http://(?:www\\.)?shiftboard\\.com/\" to=\"https://www.shiftboard.com/\"/></ruleset>", "<ruleset name=\"Shipment\" default_off=\"failed ruleset test\" f=\"Shipment.xml\"><securecookie host=\"^\\.(?:www\\.)?ship-ment\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ShippingWatch (mixed content)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"ShippingWatch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shipto.com (partial)\" f=\"Shipto.com.xml\"><rule from=\"^http://(www\\.)?shipto\\.com/(en/questions(?:$|\\?|/)|favicon\\.ico|qa-theme/)\" to=\"https://$1shipto.com/$2\"/></ruleset>", "<ruleset name=\"Shirazlug.ir\" f=\"Shirazlug.ir.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ShmooCon.org\" default_off=\"mismatched\" f=\"ShmooCon.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shmoop.com (partial)\" f=\"Shmoop.com.xml\"><rule from=\"^http://(?:www\\.)?shmoop\\.com/(?=assets/|code/|js/|login\\.html|min/|register-extended\\.html)\" to=\"https://www.shmoop.com/\"/><rule from=\"^http://media1\\.shmoop\\.com/\" to=\"https://d32v6r6fgi4k49.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Shock Media.nl\" f=\"Shock_Media.nl.xml\"><securecookie host=\".+\\.shockmedia\\.nl$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?shockmedia\\.nl/\" to=\"https://www.shockmedia.nl/\"/><rule from=\"^http://(my|webmail)\\.shockmedia\\.nl/\" to=\"https://$1.shockmedia.nl/\"/></ruleset>", "<ruleset name=\"Shodan.io\" f=\"Shodan.io.xml\"><securecookie host=\"^(?:account)?\\.shodan\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shoe Show\" platform=\"mixedcontent\" f=\"ShoeShow.xml\"><rule from=\"^http://(www\\.)?shoeshow\\.com\\.au/\" to=\"https://www.shoeshow.com.au/\"/></ruleset>", "<ruleset name=\"Shoebuy.com (partial)\" default_off=\"failed ruleset test\" f=\"Shoebuy.com.xml\"><exclusion pattern=\"^http://(?:designer\\.|www\\.)?shoebuy\\.com/(?!(?:cart|cust|lists)(?:$|[?/])|coremetrics/|css/|favicon\\.ico|images/|jscript/)\"/><rule from=\"^http://att-i\\.shoebuy\\.com/css/\" to=\"https://www.shoebuy.com/css/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ShopCo.com (partial)\" f=\"ShopCo.com.xml\"><securecookie host=\".+\\.shopco\\.com$\" name=\".+\"/><rule from=\"^http://(?!www\\.)([\\w-]+)\\.shopco\\.com/\" to=\"https://$1.shopco.com/\"/></ruleset>", "<ruleset name=\"ShopLocal\" platform=\"mixedcontent\" f=\"ShopLocal.xml\"><securecookie host=\"^(?:support|wiki|www)\\.shoplocal\\.com$\" name=\".+\"/><rule from=\"^http://(?:ak)?images\\.crossmediaservices\\.com/\" to=\"https://akimages.shoplocal.com/\"/><rule from=\"^http://((?:akimages|sl2|support|wiki|www)\\.)?shoplocal\\.com/\" to=\"https://$1shoplocal.com/\"/></ruleset>", "<ruleset name=\"ShopMania (partial)\" f=\"ShopMania.xml\"><exclusion pattern=\"^http://biz\\.shopmania\\.(?:com|es)/+(?:$|\\?)\"/><exclusion pattern=\"^http://www\\.shopmania\\.(?:com|es)/+(?!favicon\\.ico|img/)\"/><exclusion pattern=\"^http://partner\\.shopmania\\.(?:com|es)/+(?!dashboard(?:$|[?/])|favicon\\.ico)\"/><rule from=\"^http://((?:biz|cp|dashboard|www)\\.)?shopmania\\.(com|es)/\" to=\"https://$1shopmania.$2/\"/><rule from=\"^http://(fl\\d+|im\\d+)\\.shopmania\\.org/\" to=\"https://$1.shopmania.org/\"/></ruleset>", "<ruleset name=\"ShopSite.com (partial)\" f=\"ShopSite.xml\"><securecookie host=\"^(?!\\.shopsite\\.com$).\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ShopStyle (mismatches)\" default_off=\"mismatched\" f=\"ShopStyle-mismatches.xml\"><rule from=\"^http://blog\\.shopstyle\\.(com|com\\.au|co\\.uk|de|fr)/\" to=\"https://blog.shopstyle.$1/\"/><rule from=\"^http://widget\\.shopstyle\\.(co\\.uk|fr)/\" to=\"https://widget.shopstyle.$1/\"/></ruleset>", "<ruleset name=\"ShopStyle (partial)\" f=\"ShopStyle.xml\"><exclusion pattern=\"^http://www\\.shopstyle\\.com/(?:home)?(?:$|\\?)\"/><securecookie host=\".*\\.shopstyle\\.[\\w.]{2,6}$\" name=\".+\"/><rule from=\"^http://(www\\.)?shopsense\\.co\\.jp/\" to=\"https://$1shopsense.co.jp/\"/><rule from=\"^http://(?:www\\.)?shopstyle\\.(co\\.uk|com\\.au|de|fr)/\" to=\"https://www.shopstyle.$1/\"/><rule from=\"^http://omniture\\.shopstyle\\.com/\" to=\"https://shopstyle-com.112.2o7.net/\"/><rule from=\"^http://((?:ads|(?:www\\.)?m|secure|shopsense(?:beta|test|widget)?|www)\\.)?shopstyle\\.com/\" to=\"https://$1shopstyle.com/\"/></ruleset>", "<ruleset name=\"ShopWiki (partial)\" platform=\"mixedcontent\" f=\"ShopWiki.xml\"><securecookie host=\"^.*\\.shopwiki\\.com$\" name=\".+\"/><rule from=\"^http://((?:redir|staticssl|wiki|www)\\.)?shopwiki\\.com/\" to=\"https://$1shopwiki.com/\"/><rule from=\"^http://static2\\.shopwiki\\.com/\" to=\"https://d2wh0l1jxh2l45.cloudfront.net/\"/><rule from=\"^http://s\\.shwcd\\.com/\" to=\"https://www.shopwiki.com/\"/></ruleset>", "<ruleset name=\"Shop Mimi Green.com\" f=\"Shop_Mimi_Green.com.xml\"><securecookie host=\"^www\\.shopmimigreen\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shop Your Way.com (partial)\" f=\"Shop_Your_Way.com.xml\"><rule from=\"^http://(www\\.)?shopyourway\\.com/static/\" to=\"https://$1shopyourway.com/static/\"/></ruleset>", "<ruleset name=\"Shopatron (partial)\" default_off=\"failed ruleset test\" f=\"Shopatron.xml\"><securecookie host=\"^www\\.(?:orderhlp|shopatron)\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?orderhlp\\.com/\" to=\"https://www.orderhlp.com/\"/><rule from=\"^http://(media\\.|mss\\.|www\\.)?shopatron\\.com/\" to=\"https://$1shopatron.com/\"/><rule from=\"^http://mediacdn\\.shopatron\\.com/\" to=\"https://media.shopatron.com/\"/><rule from=\"^http://cdn\\.shptrn\\.com/\" to=\"https://cdn.shptrn.com/\"/></ruleset>", "<ruleset name=\"Shopify (partial)\" f=\"Shopify.xml\"><securecookie host=\"^\\w.*\\.myshopify\\.com$\" name=\".+\"/><securecookie host=\"^themes\\.shopify\\.com$\" name=\".+\"/><rule from=\"^http://([\\w-]+)\\.myshopify\\.com/\" to=\"https://$1.myshopify.com/\"/><rule from=\"^http://((?:apps|cdn|checkout|static|themes|www)\\.)?shopify\\.com/\" to=\"https://$1shopify.com/\"/><rule from=\"^http://cdn\\.apps\\.shopify\\.com/\" to=\"https://apps.shopify.com/\"/></ruleset>", "<ruleset name=\"shopinfo.net (partial)\" f=\"Shopinfo.net.xml\"><rule from=\"^http://(?:www\\.)?shopinfo\\.net/(?=favicon\\.ico|fileadmin/|typo3temp/|uploads/|zertifizierte-shops/zertifikat/)\" to=\"https://www.shopinfo.net/\"/></ruleset>", "<ruleset name=\"Shopper Approved.com\" f=\"Shopper_Approved.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\.?www\\.shopperapproved\\.com$\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shopping.com (partial)\" f=\"Shopping.com.xml\"><exclusion pattern=\"^http://developer\\.shopping\\.com/(?!files/|login/|member/|public/)\"/><securecookie host=\"^(?!developer).+\\.shopping\\.com$\" name=\".+\"/><rule from=\"^http://(developer|haendler|marchand|(?:uk)?merchant|partners)\\.shopping\\.com/\" to=\"https://$1.shopping.com/\"/></ruleset>", "<ruleset name=\"Shopping Cart Elite\" f=\"Shopping_Cart_Elite.xml\"><securecookie host=\"^(?:.*\\.)?shoppingcartelite\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"shoppingshadow.com\" default_off=\"mismatched\" f=\"Shoppingshadow.com.xml\"><rule from=\"^http://img\\.shoppingshadow\\.com/\" to=\"https://img.shopping.com/\"/></ruleset>", "<ruleset name=\"Shoptiques.com (partial)\" f=\"Shoptiques.com.xml\"><rule from=\"^http://(www\\.)?shoptiques\\.com/((?:account|login)(?:$|\\?|/)|api/|static/)\" to=\"https://$1shoptiques.com/$2\"/><rule from=\"^http://metrics\\.shoptiques\\.com/\" to=\"https://metrics.shoptiques.com/\"/><rule from=\"^http://cdn2\\.shoptiques\\.net/\" to=\"https://d2csjd0bj2nauk.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Shopware.de (partial)\" f=\"Shopware.de.xml\"><exclusion pattern=\"^http://www\\.shopware\\.de/+(?!favicon\\.ico|images/|templates/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shopzilla (partial)\" default_off=\"failed ruleset test\" f=\"Shopzilla.xml\"><securecookie host=\"^\\.shopzilla\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?shopzilla\\.com/\" to=\"https://www.shopzilla.com/\"/><rule from=\"^http://merchant\\.shopzilla\\.com/\" to=\"https://merchant.shopzilla.com/\"/></ruleset>", "<ruleset name=\"ShortList.com\" default_off=\"failed ruleset test\" f=\"ShortList.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://shortlist\\.com/\" to=\"https://www.shortlist.com/\"/><rule from=\"^http://\\d\\.darkroom\\.shortlist\\.com/\" to=\"https://darkroom.shortlist.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shorte.st (partial)\" f=\"Shorte.st.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shorty Awards.com (partial)\" f=\"Shorty_Awards.com.xml\"><securecookie host=\"^\\.industry\\.shortyawards\\.com$\" name=\"^__utm\\w$\"/><rule from=\"^http://cdn\\.shortyawards\\.com/\" to=\"https://d3f8w85pjd4o8c.cloudfront.net/\"/><rule from=\"^http://industry\\.shortyawards\\.com/(account|static)/\" to=\"https://industry.shortyawards.com/$1/\"/></ruleset>", "<ruleset name=\"Shoryuken\" f=\"Shoryuken.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shotgun Club\" f=\"Shotgun_Club.xml\"><securecookie host=\"^(?:w*\\.)?shotgunclub\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ShowMeCon.com (partial)\" f=\"ShowMeCon.com.xml\"><rule from=\"^http://(www\\.)?showmecon\\.com/(?=favicon\\.ico|wp-content/|wp-includes/)\" to=\"https://$1showmecon.com/\"/></ruleset>", "<ruleset name=\"Showcase-TV\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Showcase-TV.xml\"><rule from=\"^http://click-finder\\.jp/\" to=\"https://click-finder.jp/\"/><rule from=\"^http://hadalog\\.jp/\" to=\"https://hadalog.jp/\"/><rule from=\"^http://(www\\.)?hoku\\.co\\.jp/\" to=\"https://$1hoku.co.jp/\"/><rule from=\"^http://(www\\.)?navicast\\.co\\.jp/\" to=\"https://$1navicast.co.jp/\"/><rule from=\"^http://(www\\.)?showcase-tv\\.com/\" to=\"https://$1showcase-tv.com/\"/><rule from=\"^http://click\\.showcase-tv\\.jp/\" to=\"https://click.showcase-tv.jp/\"/></ruleset>", "<ruleset name=\"Showcase.ca (mismatched)\" default_off=\"mismatched\" f=\"Showcase.ca-problematic.xml\"><securecookie host=\"^www\\.showcase\\.ca$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?showcase\\.ca/\" to=\"https://www.showcase.ca/\"/></ruleset>", "<ruleset name=\"Showcase.ca (partial)\" f=\"Showcase.ca.xml\"><rule from=\"^http://media\\.showcase\\.ca/\" to=\"https://d2wk97pdwmv7mo.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Showing Cloud.com\" f=\"Showing_Cloud.com.xml\"><securecookie host=\"^(?:cn|www)?\\.showingcloud\\.com$\" name=\".+\"/><rule from=\"^http://((?:cn|en|www)\\.)?showingcloud\\.com/\" to=\"https://$1showingcloud.com/\"/></ruleset>", "<ruleset name=\"Showrss.info\" default_off=\"failed ruleset test\" f=\"Showrss.info.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shpock\" f=\"Shpock.xml\"><securecookie host=\"^\\.?shpock\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?shpock\\.com/\" to=\"https://shpock.com/\"/></ruleset>", "<ruleset name=\"ShrinkTheWeb.com (partial)\" f=\"ShrinkTheWeb.xml\"><securecookie host=\".*\\.shrinktheweb\\.com$\" name=\".*\"/><rule from=\"^http://learn\\.shrinktheweb\\.com/\" to=\"https://www.shrinktheweb.com/learn/index.html\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Schrödinger\" f=\"Shrodinger.xml\"><securecookie host=\"^www\\.schrodinger\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"shtuff.it\" default_off=\"failed ruleset test\" f=\"Shtuff.it.xml\"><rule from=\"^http://(?:www\\.)?shtuff\\.it/\" to=\"https://shtuff.it/\"/></ruleset>", "<ruleset name=\"Shubh.am\" default_off=\"failed ruleset test\" f=\"Shubh.am.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shuddle.us\" default_off=\"failed ruleset test\" f=\"Shuddle.us.xml\"><rule from=\"^http://(?:((?:blog|california|support)\\.)|www\\.)?shuddle\\.us/\" to=\"https://$1shuddle.us/\"/></ruleset>", "<ruleset name=\"Shurgard\" f=\"Shurgard.xml\"><rule from=\"^http://shurgardpayment\\.eu/\" to=\"https://www.shurgardpayment.eu/\"/><rule from=\"^http://([^/:@]+)?\\.shurgardpayment\\.eu/\" to=\"https://$1.shurgardpayment.eu/\"/></ruleset>", "<ruleset name=\"Shut the Backdoor.net\" f=\"Shut_the_Backdoor.net.xml\"><securecookie host=\"^\\.shutthebackdoor\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shutterfly (mismatches)\" default_off=\"mismatched\" f=\"Shutterfly-mismatches.xml\"><rule from=\"^http://forums\\.shutterfly\\.com/(app|bHL|common|communities|css|files)/\" to=\"https://forums.shutterfly.com/$1/\"/></ruleset>", "<ruleset name=\"Shutterfly (partial)\" f=\"Shutterfly.xml\"><securecookie host=\"^(?:www)?\\.shutterfly\\.com$\" name=\".*\"/><rule from=\"^http://(?:businesssolutions|sbmsshare)\\.shutterfly\\.com/\" to=\"https://sbmsshare.shutterfly.com/\"/><rule from=\"^http://(sbmsomp\\.|web1\\.|www\\.)?shutterfly\\.com/\" to=\"https://$1shutterfly.com/\"/><rule from=\"^http://sortino\\.shutterfly\\.com/$\" to=\"https://www.lexusdealerstore.com/lexus/\"/><rule from=\"^http://cdn(\\d)?\\.staticsfly\\.com/\" to=\"https://cdn$1.staticsfly.com/\"/></ruleset>", "<ruleset name=\"Shutterstock (partial)\" f=\"Shutterstock.xml\"><securecookie host=\"^\\.shutterstock\\.com$\" name=\"^(?:IRF_3|__utm\\w)$\"/><rule from=\"^http://s\\d\\.picdn\\.net/\" to=\"https://www.shutterstock.com/\"/><rule from=\"^http://(www\\.)?shutterstock\\.com/(css/|images/|js/|subscribe(?:11)?\\.mhtml)\" to=\"https://$1shutterstock.com/$2\"/><rule from=\"^http://(absinthe|lilb2)\\.shutterstock\\.com/\" to=\"https://$1.shutterstock.com/\"/></ruleset>", "<ruleset name=\"shwyz.ca\" default_off=\"expired\" f=\"Shwyz.ca.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sick.com (partial)\" f=\"Sick.com.xml\"><exclusion pattern=\"^http://www\\.sick\\.com/(?!media/pdf/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SickDay surf shop.com\" default_off=\"refused\" f=\"SickDay_surf_shop.com.xml\"><securecookie host=\"^\\.sickdaysurfshop\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sickbits.net\" default_off=\"expired\" f=\"Sickbits.net.xml\"><rule from=\"^http://(?:www\\.)?sickbits\\.net/\" to=\"https://sickbits.net/\"/></ruleset>", "<ruleset name=\"sicontact.at\" f=\"Sicontact.at.xml\"><securecookie host=\"^\\.www\\.sicontact\\.at$\" name=\".+\"/><rule from=\"^http://sicontact\\.at/\" to=\"https://www.sicontact.at/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SideCar\" f=\"SideCar.xml\"><rule from=\"^http://(?:www\\.)?side\\.cr/\" to=\"https://www.side.cr/\"/></ruleset>", "<ruleset name=\"SideReel (partial)\" f=\"SideReel.xml\"><securecookie host=\"^snowball\\.sidereel\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?sidereel\\.com/(_webapi/|images/|stylesheets/|users)\" to=\"https://$1sidereel.com/$2\"/><rule from=\"^http://[as]3\\.sidereel\\.com/\" to=\"https://s3.amazonaws.com/sidereel-production-static/\"/><rule from=\"^http://editorial\\.sidereel\\.com/\" to=\"https://sidereel-editorial.s3.amazonaws.com/\"/><rule from=\"^http://snowball\\.sidereel\\.com/\" to=\"https://snowball.sidereel.com/\"/></ruleset>", "<ruleset name=\"Sidearm Sports (problematic)\" default_off=\"mismatched\" f=\"Sidearm_Sports-problematic.xml\"><rule from=\"^http://(?:www\\.)?sidearmsports\\.com/\" to=\"https://www.sidearmsports.com/\"/><rule from=\"^http://blog\\.sidearmsports\\.com/\" to=\"https://blog.sidearmsports.com/\"/></ruleset>", "<ruleset name=\"Sidearm Sports (partial)\" f=\"Sidearm_Sports.xml\"><rule from=\"^http://assets\\.sidearmsports\\.com/\" to=\"https://s3.amazonaws.com/assets.sidearmsports.com/\"/></ruleset>", "<ruleset name=\"Sideshowtoy.com\" f=\"Sideshowtoy.com.xml\"><securecookie host=\"^www\\.sideshowtoy\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SidiЪouras\" default_off=\"refused\" f=\"Sidibouras.xml\"><securecookie host=\"^(?:www)?\\.sidibouras\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sidux-ev.org\" f=\"Sidux-ev.org.xml\"><rule from=\"^http://www\\.sidux-ev\\.org/\" to=\"https://sidux-ev.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sieciovo.pl\" default_off=\"expired\" f=\"Sieciovo.pl.xml\"><rule from=\"^http://(?:www\\.)?sieciovo\\.pl/\" to=\"https://sieciovo.pl/\"/></ruleset>", "<ruleset name=\"Siemens.com (mismatches)\" default_off=\"mismatched\" f=\"Siemens.com-mismatches.xml\"><rule from=\"^http://m\\.siemens\\.com/\" to=\"https://m.siemens.com/\"/></ruleset>", "<ruleset name=\"Siemens.com (partial)\" f=\"Siemens.com.xml\"><securecookie host=\"^.*\\.siemens\\.com$\" name=\".*\"/><rule from=\"^http://www\\.siemens\\.co\\.id/\" to=\"https://www.siemens.co.id/\"/><rule from=\"^http://www\\.siemens\\.co\\.jp/\" to=\"https://www.siemens.com/answers/jp/ja/\"/><rule from=\"^http://www\\.siemens\\.co\\.in/\" to=\"https://www.siemens.com/answers/in/en/\"/><rule from=\"^http://www\\.siemens\\.co\\.kr/\" to=\"https://www.siemens.com/answers/kr/ko/\"/><rule from=\"^http://(w1\\.|www\\.)?siemens\\.com/\" to=\"https://$1siemens.com/\"/><rule from=\"^http://www\\.siemens\\.com\\.(hk|mx)/\" to=\"https://www.siemens.com.$1/\"/><rule from=\"^http://www\\.siemens\\.com\\.kw/\" to=\"https://w1.siemens.com/answers/kw/en/\"/><rule from=\"^http://(?:www\\.)?siemens\\.hu/\" to=\"https://w1.siemens.com/answers/hu/hu/\"/><rule from=\"^http://(?:www\\.)?siemens\\.ie/\" to=\"https://w1.siemens.com/entry/ie/en/\"/><rule from=\"^http://(?:www\\.)?siemens\\.it/\" to=\"https://www.siemens.com/entry/it/index.htm\"/><rule from=\"^http://www\\.siemens\\.lv/\" to=\"https://w1.siemens.com/entry/lv/\"/></ruleset>", "<ruleset name=\"Sierra Club Green Home (partial)\" default_off=\"failed ruleset test\" f=\"Sierra_Club_Green_Home.xml\"><securecookie host=\"^\\.sierraclubgreenhome\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sierraware.com\" f=\"Sierraware.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sig-IO.nl\" f=\"Sig-IO.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SigFig (false MCB)\" platform=\"mixedcontent\" f=\"SigFig.com-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SigFig.com (partial)\" f=\"SigFig.xml\"><exclusion pattern=\"^http://blog\\.sigfig\\.com/+(?!favicon\\.ico|wp-content/|wp-includes/)\"/><securecookie host=\"^\\.www\\.sigfig\\.com$\" name=\".+\"/><rule from=\"^http://((?:beta|blog|secure|support|www)\\.)?sigfig\\.com/\" to=\"https://$1sigfig.com/\"/></ruleset>", "<ruleset name=\"Sigdet.nu\" default_off=\"failed ruleset test\" f=\"Sigdet.nu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Siggraph.org (buggy)\" default_off=\"https://www.eff.org/r.3bSc\" f=\"Siggraph.org.xml\"><rule from=\"^http://(?:www\\.)?siggraph\\.org/\" to=\"https://www.siggraph.org/\"/></ruleset>", "<ruleset name=\"Sigma-Aldrich.com\" f=\"SigmaAldrich.com.xml\"><rule from=\"^http://sigmaaldrich\\.com/\" to=\"https://www.sigmaaldrich.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SigmaBeauty\" f=\"SigmaBeauty.xml\"><exclusion pattern=\"^http://www\\.sigmabeauty\\.com/api/commerce/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sigma Xi.org\" f=\"Sigma_Xi.org.xml\"><securecookie host=\"^www\\.sigmaxi\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sign-Up.to\" f=\"Sign-Up.to.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Signal Spam\" f=\"Signal_Spam.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Signals\" f=\"Signals.xml\"><securecookie host=\"^\\.signals\\.com$\" name=\".+\"/><rule from=\"^http://signals\\.com/\" to=\"https://www.signals.com/\"/><rule from=\"^http://(images|shop|www3?)\\.signals\\.com/\" to=\"https://$1.signals.com/\"/></ruleset>", "<ruleset name=\"Sigterm.no\" default_off=\"failed ruleset test\" f=\"Sigterm.no.xml\"><exclusion pattern=\"^http://(?:(?![^.]+\\.analytics\\.sigterm\\.com/)(?:[^./]+\\.){2,}|(?:[^./]+\\.){3,})sigterm\\.no/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sigxcpu.org\" f=\"Sigxcpu.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sikur (partial)\" f=\"Sikur.xml\"><securecookie host=\"^(www|communication)\\.sikur\\.com(\\.br)?$\" name=\".+\"/><exclusion pattern=\"^http://signup\\.sikur\\.com/\"/><rule from=\"^http://(sikur|granitephone)\\.com/\" to=\"https://www.$1.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Silent Circle\" default_off=\"failed ruleset test\" f=\"Silent_Circle.xml\"><securecookie host=\"^accounts\\.silentcircle\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Silent Sender.com\" default_off=\"expired\" f=\"Silent_Sender.com.xml\"><securecookie host=\"^www\\.silentsender\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Silicon Labs\" f=\"Silicon-Labs.xml\"><securecookie host=\"^www\\.silabs\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?silabs\\.com/\" to=\"https://www.silabs.com/\"/></ruleset>", "<ruleset name=\"Silicon.com\" default_off=\"failed ruleset test\" f=\"Silicon.com.xml\"><rule from=\"^http://silicon\\.com/\" to=\"https://www.silicon.com/\"/><rule from=\"^http://www\\.silicon\\.com/\" to=\"https://www.silicon.com/\"/></ruleset>", "<ruleset name=\"Silicon Republic.com\" f=\"Silicon_Republic.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Silicon Valley Bank\" f=\"Silicon_Valley_Bank.xml\"><securecookie host=\"^www\\.svb\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?svb\\.com/\" to=\"https://www.svb.com/\"/></ruleset>", "<ruleset name=\"Siliconera\" platform=\"mixedcontent\" f=\"Siliconera.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SilkRoad.com (partial)\" default_off=\"failed ruleset test\" f=\"SilkRoad.xml\"><exclusion pattern=\"^http://(?:[^./]+\\.){2,}silkroad\\.com/\"/><exclusion pattern=\"^http://hr1\\.silkroad\\.com/(?!/*(?:$|\\?|[el]/|webmail/))\"/><securecookie host=\"^(?!hr1\\.).\" name=\".\"/><rule from=\"^http://hr1\\.silkroad\\.com/+(?:\\?.*)?$\" to=\"https://www.silkroad.com/\"/><rule from=\"^http://hr1\\.silkroad\\.com/\" to=\"https://go.pardot.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Silkn.com\" default_off=\"failed ruleset test\" f=\"Silkn.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?silkn\\.com/(?!images/|include/|RadControls/|scripts/|upload/|WebResource\\.axd)\"/><securecookie host=\"^shop\\.silkn\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?buyfacefx\\.com/\" to=\"https://www.buyfacefx.com/\"/><rule from=\"^http://(shop\\.|www\\.)?silkn\\.com/\" to=\"https://$1silkn.com/\"/></ruleset>", "<ruleset name=\"Silkroad WS (partial)\" f=\"Silkroad_WS.xml\"><exclusion pattern=\"^http://(?:www\\.)?silkroad\\.ws/(?!addons/|cron\\.php|img/)\"/><securecookie host=\"^forum\\.silkroad\\.ws$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Silkspan.com\" default_off=\"failed ruleset test\" f=\"Silkspan.com.xml\"><rule from=\"^http://(?:www\\.)?silkspan\\.com/\" to=\"https://www.silkspan.com/\"/></ruleset>", "<ruleset name=\"Silktide.com (partial)\" default_off=\"failed ruleset test\" f=\"Silktide.xml\"><rule from=\"^http://blog\\.silktide\\.com/.*\" to=\"https://silktide.com/blog\"/><rule from=\"^http://cdn\\.silktide\\.com/\" to=\"https://d2cbphali8h73p.cloudfront.net/\"/><rule from=\"^http://assets\\.cookieconsent\\.silktide\\.com/\" to=\"https://d39hc9zyqwn1u0.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Silobreaker (partial)\" f=\"Silobreaker.xml\"><securecookie host=\"^my\\.silobreaker\\.com$\" name=\".+\"/><rule from=\"^http://(api|my)\\.silobreaker\\.com/\" to=\"https://$1.silobreaker.com/\"/><rule from=\"^http://(?:cache\\.)?thumbs\\.s(?:bstatic|ilobreaker)\\.com/\" to=\"https://thumbs.silobreaker.com/\"/></ruleset>", "<ruleset name=\"Silva Wood Flooring\" default_off=\"failed ruleset test\" f=\"Silva_Wood_Flooring.xml\"><securecookie host=\"^(?:www)?\\.silvawoodflooring\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Silver Oven (partial)\" platform=\"mixedcontent\" f=\"Silver-Oven.xml\"><securecookie host=\"^(?:.*\\.)?investorflow.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SilverRush Style.com\" default_off=\"missing certificate chain\" f=\"SilverRush_Style.xml\"><securecookie host=\"^\\.silverrushstyle\\.com$\" name=\".+\"/><rule from=\"^http://(?:th\\.|www\\.)?silverrushstyle\\.com/\" to=\"https://secure.silverrushstyle.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Silverflint\" default_off=\"expired\" f=\"Silverflint.xml\"><rule from=\"^http://(?:www\\.)?silverflint\\.com/(css/|favicon\\.ico|js/|xajax/)\" to=\"https://www.silverflint.com/$1\"/></ruleset>", "<ruleset name=\"Silverpop (partial)\" default_off=\"failed ruleset test\" f=\"Silverpop.xml\"><exclusion pattern=\"^http://(?:[^./]+\\.){2,}links\\.mkt41\\.net/\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://content\\.mkt941\\.com/\" to=\"https://d2sv5ahunhut4x.cloudfront.net/\"/><rule from=\"^http://contenta\\.mkt1710\\.com/\" to=\"https://d35xxa4d4yp600.cloudfront.net/\"/><rule from=\"^http://pages03\\.net/\" to=\"https://www.pages03.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"silvertunnel.org\" default_off=\"failed ruleset test\" f=\"Silvertunnel.org.xml\"><rule from=\"^http://www\\.silvertunnel\\.org/\" to=\"https://silvertunnel.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SILVERUM s.r.o.\" f=\"Silverum.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sim-technik.de\" default_off=\"mismatched\" f=\"Sim-technik.de.xml\"><rule from=\"^http://ws\\.vtc\\.sim-technik\\.de/\" to=\"https://ws.vtc.sim-technik.de/\"/></ruleset>", "<ruleset name=\"simFlight (mismatches)\" default_off=\"mismatch, self-signed\" f=\"SimFlight-mismatches.xml\"><securecookie host=\"^(?:.*\\.)?simflight\\.\\w{2,3}$\" name=\".*\"/><securecookie host=\"^(?:.*\\.)?simrussia\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?simflight\\.(cn|com|de|es|fr|it|jp|nl)/\" to=\"https://www.simflight.$1/\"/><rule from=\"^http://(?:www\\.)?simflight\\.pt/\" to=\"https://simflight.pt/\"/><rule from=\"^http://(?:www\\.)?simrussia\\.com/\" to=\"https://simrussia.com/\"/></ruleset>", "<ruleset name=\"simFlight (partial)\" f=\"SimFlight.xml\"><securecookie host=\"^(?:.*\\.)?simmarket\\.com$\" name=\".*\"/><rule from=\"^http://(?:secure\\.|www\\.)?simmarket\\.com/\" to=\"https://secure.simmarket.com/\"/></ruleset>", "<ruleset name=\"Sim City.com (partial)\" f=\"Sim_City.com.xml\"><rule from=\"^http://(?:www\\.)?simcity\\.com/(?=favicon\\.ico|sites/)\" to=\"https://www.simcity.com/\"/></ruleset>", "<ruleset name=\"Simblee.com\" f=\"Simblee.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://simblee\\.com/\" to=\"https://www.simblee.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Simg.jp\" f=\"Simg.jp.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SimilarGroup.com (partial)\" default_off=\"missing certificate chain\" f=\"SimilarGroup.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SimilarWeb.com\" f=\"SimilarWeb.xml\"><securecookie host=\"^(?:developer\\.|www\\.)?similarweb\\.com$\" name=\".+\"/><securecookie host=\"^\\.similarweb\\.com$\" name=\"^(?:incap_ses_\\d+|visid_incap)_\\d+$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Simlar.org (partial)\" default_off=\"failed ruleset test\" f=\"Simlar.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Simlystore.com\" f=\"Simlystore.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Simmtester.com\" default_off=\"expired, self-signed\" f=\"Simmtester.com.xml\"><securecookie host=\"^(?:www\\.)?simmtester\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?simmtester\\.com/\" to=\"https://www.simmtester.com/\"/></ruleset>", "<ruleset name=\"Simon Butcher\" f=\"SimonButcher.name.xml\"><securecookie host=\"^simon\\.butcher\\.name$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Simon Swain.com\" f=\"Simon_Swain.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Simons Foundation.org\" default_off=\"broken\" f=\"Simons_Foundation.org.xml\"><securecookie host=\"^\\.simonsfoundation\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Simosnap.com (partial)\" f=\"Simosnap.com.xml\"><exclusion pattern=\"^http://(?:www\\.community|developers)\\.simosnap\\.com/+(?!$|\\?)\"/><securecookie host=\"^community\\.simosnap\\.com$\" name=\".+\"/><rule from=\"^http://(?:(?:www\\.)?community|developers)\\.simosnap\\.com/\" to=\"https://community.simosnap.com/\"/></ruleset>", "<ruleset name=\"Simple Talk.com (partial)\" f=\"Simple-Talk.xml\"><securecookie host=\"^www\\.simple-talk\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Simple.com\" f=\"Simple.com.xml\"><securecookie host=\"^bank\\.simple\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SimpleFIN.org\" f=\"SimpleFIN.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SimpleReach.com\" f=\"SimpleReach.com.xml\"><securecookie host=\"^(?:www)?\\.simplereach\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?simplereach\\.com/\" to=\"https://www.simplereach.com/\"/><rule from=\"^http://cc\\.simplereach\\.com/\" to=\"https://cc.simplereach.com/\"/></ruleset>", "<ruleset name=\"Simple Pickup (partial)\" f=\"Simple_Pickup.xml\"><securecookie host=\"^(?:w*\\.)?simplepickup\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Simple Share Buttons.com\" f=\"Simple_Share_Buttons.com.xml\"><securecookie host=\"^(?:www\\.)?simplesharebuttons\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"simplebooklet.com (partial)\" f=\"Simplebooklet.com.xml\"><securecookie host=\"^(?:edu\\.)?simplebooklet\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Simplednscrypt.org\" f=\"Simplednscrypt.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"simplekb.com\" f=\"Simplekb.com.xml\"><securecookie host=\"^[\\w-]+\\.simplekb\\.com$\" name=\".+\"/><rule from=\"^http://([\\w-]+\\.)?simplekb\\.com/\" to=\"https://$1simplekb.com/\"/></ruleset>", "<ruleset name=\"Simpli.fi (partial)\" f=\"Simpli.fi.xml\"><securecookie host=\"^\\.simpli\\.fi$\" name=\"^uid(?:_syncd)?$\"/><securecookie host=\"^app\\.simpli\\.fi$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Simply Hired clients\" default_off=\"mismatched\" f=\"Simply-Hired-clients.xml\"><exclusion pattern=\"^http://jobs\\.(?:datacenterknowledge|pcworld)\\.com/c/\"/><securecookie host=\"^jobs\\.(?:datacenterknowledge|nodejs|pcworld)\\.org$\" name=\".*\"/><rule from=\"^http://jobs\\.(businessinsider|datacenterknowledge|nodejs|pcworld)\\.com/\" to=\"https://jobs.$1.com/\"/></ruleset>", "<ruleset name=\"Simply Hired.com\" default_off=\"failed ruleset test\" f=\"Simply-Hired.xml\"><exclusion pattern=\"^http://employers\\.simplyhired\\.com/+(?!l/)\"/><exclusion pattern=\"^http://support\\.simplyhired\\.com/+(?!assets/|images/|system/)\"/><securecookie host=\"^\\.simplyhired\\.com$\" name=\"^(?:__qca|__utm\\w)$\"/><securecookie host=\"^(?:ads|www)\\.simplyhired\\.com$\" name=\".+\"/><rule from=\"^http://blog\\.simplyhired\\.com/+(?:$|\\?.*)$\" to=\"https://www.simplyhired.com/blog\"/><rule from=\"^http://blog\\.simplyhired\\.com/.*\" to=\"https://www.simplyhired.com/blog/expired\"/><rule from=\"^http://employers\\.simplyhired\\.com/\" to=\"https://pi.pardot.com/\"/><rule from=\"^http://support\\.simplyhired\\.com/\" to=\"https://simplyhired.zendesk.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Simply-Partner.com\" default_off=\"failed ruleset test\" f=\"Simply-Partner.com.xml\"><securecookie host=\"^simply-partner\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Simply Stamps (partial)\" f=\"Simply-Stamps.xml\"><rule from=\"^http://(www\\.)?simplystamps\\.com/(App_Themes/|img/|[iI]mages/|(?:\\w+\\.css|(?:Script|Web)Resource\\.axd|UserLogin.aspx)(?:$|\\?))\" to=\"https://$1simplystamps.com/$2\"/></ruleset>", "<ruleset name=\"Simply Business\" f=\"Simply_Business.xml\"><securecookie host=\"^www\\.simplybusiness\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?simplybusiness\\.co\\.uk/\" to=\"https://www.simplybusiness.co.uk/\"/></ruleset>", "<ruleset name=\"Simply Secure.org\" f=\"Simply_Secure.org.xml\"><securecookie host=\"^www\\.simplysecure\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?simplysecure\\.org/\" to=\"https://simplysecure.org/\"/></ruleset>", "<ruleset name=\"Simply Technology.net\" f=\"Simply_Technology.net.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"simquadrat.de (partial)\" f=\"Simquadrat.de.xml\"><securecookie host=\"^(?:www\\.)?simquadrat\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Simyo (partial)\" f=\"Simyo.xml\"><securecookie host=\"^.*\\.simyo\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?simyo\\.de/\" to=\"https://www.simyo.de/\"/><rule from=\"^http://a\\.simyo\\.de/\" to=\"https://simyo-de.122.2o7.net/\"/><rule from=\"^http://(b|cdn|handyshop|m|sync)\\.simyo\\.de/\" to=\"https://$1.simyo.de/\"/></ruleset>", "<ruleset name=\"Sina.cn-mixedcontent\" platform=\"mixedcontent\" f=\"Sina.cn-mixedcontent.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sina.cn\" f=\"Sina.cn.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sina.com.cn\" f=\"Sina.com.cn.xml\"><exclusion pattern=\"^http://app\\.sina\\.com\\.cn/(?!favorite\\.ico|script/)\"/><exclusion pattern=\"^http://astro\\.sina\\.com\\.cn/(?!css/|js/)\"/><exclusion pattern=\"^http://auto\\.sina\\.com\\.cn/(?!js/)\"/><exclusion pattern=\"^http://finance\\.sina\\.com\\.cn/(?!basejs/|css/|finance/|img/|js/|other/|text/|tougu/|touzi/|xincai/|xuan/)\"/><exclusion pattern=\"^http://games\\.sina\\.com\\.cn/(?!blank/)\"/><exclusion pattern=\"http://gongyi\\.sina\\.com\\.cn/(?!css/|images/|js/)\"/><exclusion pattern=\"http://guba\\.sina\\.com\\.cn/(?!app/|css/|images/)\"/><exclusion pattern=\"http://help\\.sina\\.com\\.cn/$\"/><exclusion pattern=\"^http://i\\.finance\\.sina\\.com\\.cn/(?!portfolio/)\"/><exclusion pattern=\"^http://ka\\.sina\\.com\\.cn/(?!ka/)\"/><exclusion pattern=\"^http://login\\.sina\\.com\\.cn/crossdomain2\\.php\\?action=(login|logout)\"/><exclusion pattern=\"^http://login\\.sina\\.com\\.cn/sso/login\\.php\"/><exclusion pattern=\"http://my\\.sina\\.com\\.cn/(?!css/|images/|js/)\"/><exclusion pattern=\"http://sports\\.sina\\.com\\.cn/(?!css/|js/)\"/><exclusion pattern=\"http://tech\\.sina\\.com\\.cn/(?!css/|js/)\"/><exclusion pattern=\"http://video\\.sina\\.com\\.cn/(?!css/|js/)\"/><exclusion pattern=\"http://woocall\\.sina\\.com\\.cn/(?!lib/|rls/|newstyle\\.css)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sina.com\" f=\"Sina.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sina.is\" f=\"Sina.is.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SinaApp.com (partial)\" f=\"SinaApp.com.xml\"><exclusion pattern=\"http://greengrass\\.sinaapp\\.com/(?!wp-content/)\"/><exclusion pattern=\"http://weihr\\.sinaapp\\.com/(?!js/|images/)\"/><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SinaCloud.com\" default_off=\"failed ruleset test\" f=\"SinaCloud.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SinaJS.cn\" f=\"SinaJS.cn.xml\"><rule from=\"^http://js(1|2|3|s)\\.t\\.sinajs\\.cn/\" to=\"https://js.t.sinajs.cn/\"/><rule from=\"^http://sjs(0|1|2|3)?\\.sinajs\\.cn/\" to=\"https://js.t.sinajs.cn/\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sinaimg.cn\" f=\"Sinaimg.cn.xml\"><rule from=\"^http://www\\.sinaimg\\.cn/\" to=\"https://wwws.sinaimg.cn/\"/><rule from=\"^http://i(0|1|2|3)\\.sinaimg\\.cn/\" to=\"https://i$1s.sinaimg.cn/\"/><rule from=\"^http://ss(\\d+)\\.sinaimg\\.cn/\" to=\"https://s$1.sinaimg.cn/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sinastorage.com\" f=\"Sinastorage.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sinefa.com (partial)\" f=\"Sinefa.com.xml\"><securecookie host=\"^controller\\.sinefa\\.com$\" name=\".+\"/><rule from=\"^http://controller\\.sinefa\\.com/\" to=\"https://controller.sinefa.com/\"/><rule from=\"^http://community\\.sinefa\\.com/\" to=\"https://sinefa.zendesk.com/\"/></ruleset>", "<ruleset name=\"SING PAO DAILY NEWS\" f=\"SingPao.com.hk.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SingleHop (partial)\" f=\"SingleHop.xml\"><securecookie host=\"^(?:\\.|leap3\\.|www\\.)?singlehop\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Singlefeed\" f=\"Singlefeed.xml\"><securecookie host=\"^(?:.*\\.)?singlefeed\\.com$\" name=\".*\"/><rule from=\"^http://(reporting|www)\\.singlefeed\\.com/\" to=\"https://$1.singlefeed.com/\"/></ruleset>", "<ruleset name=\"Singularity Hub (partial)\" f=\"Singularity_Hub.xml\"><exclusion pattern=\"^http://(?:www\\.)?singularityhub\\.com/(?:\\d{4}/\\d\\d/\\d\\d/[\\w-]+/|(?:about|(?:author|category)/[\\w-]+|advertise|contact|membership-signup|privacy-policy|singularity-101)/?|video-central/?$|wp-login\\.php)?(?:\\?.*)?$\"/><exclusion pattern=\"^http://(?:www\\.)?singularityhub\\.com/(?:debate-central)(?:$|\\?|/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sinica.edu.tw (partial)\" f=\"Sinica.edu.tw.xml\"><exclusion pattern=\"^http://aao\\.sinica\\.edu\\.tw/+(?!CSS/|download/|images/|public/login\\.php)\"/><rule from=\"^http://(aao|app|aslib|db3n2u|db3x|gate|irb|itsdesk|sso|www)\\.sinica\\.edu\\.tw/\" to=\"https://$1.sinica.edu.tw/\"/><rule from=\"^http://(?:www\\.)?ascc\\.sinica\\.edu/\" to=\"https://ascc.sinica.edu/\"/><rule from=\"^http://edir\\.sinica\\.edu\\.tw:8443/\" to=\"https://edir.sinica.edu.tw:8443/\"/></ruleset>", "<ruleset name=\"Sinn Fein\" platform=\"mixedcontent\" f=\"SinnFein.xml\"><rule from=\"^http://(?:www\\.)?sinnfein\\.ie/\" to=\"https://www.sinnfein.ie/\"/></ruleset>", "<ruleset name=\"Sinoptik.ua (partial)\" default_off=\"mismatched\" f=\"Sinoptik.ua.xml\"><rule from=\"^http://informers\\.sinoptik\\.ua/\" to=\"https://informers.sinoptik.ua/\"/><rule from=\"^http://sinonptik-cdn1\\.un\\.net\\.ua/\" to=\"https://sinonptik-cdn1.un.net.ua/\"/></ruleset>", "<ruleset name=\"Sins of a Solar Empire.com (partial)\" default_off=\"failed ruleset test\" f=\"Sins_of_a_Solar_Empire.com.xml\"><securecookie host=\"^(?:www\\.)?sinsofasolarempire\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Siosm.fr\" f=\"Siosm.fr.xml\"><rule from=\"^http://((?:fs|git|po|repo|tim|www)\\.)?siosm\\.fr/\" to=\"https://$1siosm.fr/\"/></ruleset>", "<ruleset name=\"Sipgate.co.uk (partial)\" default_off=\"failed ruleset test\" f=\"Sipgate.co.uk.xml\"><securecookie host=\"^\\.live\\.sipgate\\.co\\.uk$\" name=\"^siptrack$\"/><securecookie host=\"^(?:secure\\.live|www)\\.sipgate\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?sipgate\\.co\\.uk/+user/*(?:\\?.*)?$\" to=\"https://www.sipgate.co.uk/basic/\"/><rule from=\"^http://sipgate\\.co\\.uk/\" to=\"https://www.sipgate.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sipgate.io (partial)\" f=\"Sipgate.io.xml\"><securecookie host=\"^(?:www\\.)?sipgate\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sipgate.de (partial)\" f=\"Sipgate.xml\"><exclusion pattern=\"^http://www\\.sipgate\\.de/+(?!(?:basic|design|trunking)(?:$|[?/]))\"/><securecookie host=\"^secure\\.live\\.sipgate\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sirportly (partial)\" f=\"Sirportly.xml\"><exclusion pattern=\"^http://(?:www\\.)?sirportly\\.com/(?!(?:customers|help|signup)(?:$|\\?|/)|images/|javascripts/|stylesheets/)\"/><securecookie host=\"^app\\.sirportly\\.com$\" name=\".+\"/><rule from=\"^http://(app\\.|www\\.)?sirportly\\.com/\" to=\"https://$1sirportly.com/\"/></ruleset>", "<ruleset name=\"Sirrix (partial)\" f=\"Sirrix.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://sirrix\\.de/\" to=\"https://www.sirrix.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SirsiDynix.net.uk\" f=\"SirsiDynix.net.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Site24x7.com\" f=\"Site24x7.xml\"><securecookie host=\"^(?:.*\\.)?site24x7\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Site5 (partial)\" f=\"Site5.xml\"><exclusion pattern=\"^http://forums\\.\"/><securecookie host=\".*\\.site5\\.com$\" name=\".+\"/><rule from=\"^http://(\\w+\\.)?site5\\.com/\" to=\"https://$1site5.com/\"/></ruleset>", "<ruleset name=\"SiteAdvisor.com\" f=\"SiteAdvisor.com.xml\"><rule from=\"^http://(?:www\\.)?siteadvisor\\.com/\" to=\"https://www.siteadvisor.com/\"/></ruleset>", "<ruleset name=\"SiteCompass.com (partial)\" default_off=\"failed ruleset test\" f=\"SiteCompass.com.xml\"><rule from=\"^http://mm\\.sitecompass\\.com/\" to=\"https://mm.sitecompass.com/\"/></ruleset>", "<ruleset name=\"SiteGround.com\" default_off=\"failed ruleset test\" f=\"SiteGround.xml\"><securecookie host=\"^.*\\.siteground\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SiteHeart.com\" f=\"SiteHeart.xml\"><securecookie host=\"^(?:www\\.)?siteheart\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SiteLock.com (partial)\" f=\"SiteLock.xml\"><exclusion pattern=\"^http://blog\\.sitelock\\.com/(?!feed/)\"/><securecookie host=\"^\\.sitelock\\.com$\" name=\"^(?:btrack|incap_ses_\\d+_\\d+|nlbi_\\d+|visid_incap_\\d+)$\"/><securecookie host=\"^(?:admin|mapi|secure|shield|wiki|www)\\.sitelock\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SiteOrigin.com\" f=\"SiteOrigin.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SitePen.com\" f=\"SitePen.com.xml\"><securecookie host=\"^(?:hub|support|www)\\.sitepen\\.com$\" name=\".+\"/><rule from=\"^http://((?:hub|support|www)\\.)?sitepen\\.com/\" to=\"https://$1sitepen.com/\"/></ruleset>", "<ruleset name=\"SitePoint.com (partial)\" f=\"SitePoint.xml\"><exclusion pattern=\"^http://www\\.sitepoint\\.com/+(?!favicon\\.ico|wp-content/)\"/><rule from=\"^http://i2\\.sitepoint\\.com/\" to=\"https://www.sitepoint.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SiteScout.com (partial)\" default_off=\"failed ruleset test\" f=\"SiteScout.xml\"><securecookie host=\"^\\.\" name=\"^(?:km_\\w+|_ssum|ssi|__utm\\w)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www-cdn\\.sitescout\\.com/\" to=\"https://cdnsitescout1-a.akamaihd.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SiteTagger.co.uk (problematic)\" default_off=\"expired, self-signed\" f=\"SiteTagger.co.uk-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SiteTagger.co.uk (partial)\" f=\"SiteTagger.co.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SiteTrust Network\" f=\"SiteTrust-Network.xml\"><securecookie host=\"^(?:www\\.)?sitetrustnetwork\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SiteUptime.com\" f=\"SiteUptime.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Site Blindado\" f=\"Site_Blindado.xml\"><securecookie host=\"^(?:portal2|selo|www)?\\.siteblindado\\.com$\" name=\".+\"/><securecookie host=\"^(?:portal|selo)?\\.siteblindado\\.com\\.br$\" name=\".+\"/><rule from=\"^http://((?:portal2|selo|www)\\.)?siteblindado\\.com/\" to=\"https://$1siteblindado.com/\"/><rule from=\"^http://portal\\.siteblindado\\.com/\" to=\"https://portal.siteblindado.com.br/\"/><rule from=\"^http://(portal|selo)\\.siteblindado\\.com\\.br/\" to=\"https://$1.siteblindado.com.br/\"/><rule from=\"^http://www\\.siteblindado\\.com\\.br/\" to=\"https://www.siteblindado.com/\"/></ruleset>", "<ruleset name=\"Site Control.us\" f=\"Site_Control.us.xml\"><securecookie host=\"^\\.sitecontrol\\.us$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Site Safe.org.nz\" f=\"Site_Safe.org.nz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sitefinity.com (partial)\" f=\"Sitefinity.com.xml\"><rule from=\"^http://(www\\.)?sitefinity\\.com/(?=Sitefinity/Public/|Telerik\\.Web\\.UI\\.WebResource\\.axd|assets/|favicon\\.ico|sitefinityimages/)\" to=\"https://$1sitefinity.com/\"/></ruleset>", "<ruleset name=\"Siteimprove (partial)\" f=\"Siteimprove.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sitemason (partial)\" f=\"Sitemason.xml\"><rule from=\"^http://(?:www\\.)?sitemasonmail\\.com\\.moses\\.com/\" to=\"https://secure.sitemason.com/www.sitemasonmail.com/\"/><rule from=\"^http://(?:www\\.)?sitemason\\.com/\" to=\"https://www.sitemason.com/\"/><rule from=\"^http://developer\\.sitemason\\.com/+\" to=\"https://www.sitemason.com/developers/\"/><rule from=\"^http://secure\\.sitemason\\.com/\" to=\"https://secure.sitemason.com/\"/><rule from=\"^http://support\\.sitemason\\.com/(?=assets/|generated/|images/|system/)\" to=\"https://sitemason.zendesk.com/\"/><rule from=\"^http://(?:webmail\\.sitemason|(?:webmail\\.|www\\.)?sitemasonmail)\\.com/+\" to=\"https://apps.rackspace.com/\"/></ruleset>", "<ruleset name=\"sitemeter.com\" f=\"Sitemeter.xml\"><rule from=\"^http://\\w{3}\\.sitemeter\\.com/js/\" to=\"https://www.sitemeter.com/js/\"/></ruleset>", "<ruleset name=\"Siteor (partial)\" f=\"Siteor.xml\"><securecookie host=\"^(?:.*\\.)?siteor\\.pl$\" name=\".+\"/><rule from=\"^http://(?:lavina\\.|(secure\\.)|www\\.)?siteor\\.pl/\" to=\"https://$1siteor.pl/\"/><rule from=\"^http://(asset|f)s\\.siteor\\.com/\" to=\"https://s3-eu-west-1.amazonaws.com/$1s.siteor.com/\"/></ruleset>", "<ruleset name=\"Siteparc.fr (partial)\" f=\"Siteparc.fr.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sitestat.com (partial)\" f=\"Sitestat.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sitizens\" f=\"Sitizens.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sitola\" default_off=\"failed ruleset test\" f=\"Sitola.xml\"><securecookie host=\"^(?:www\\.)?sitola\\.cz$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sivers.org\" f=\"Sivers.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^(?:.+\\.)?sivers\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Six Apart.jp (partial)\" default_off=\"failed ruleset test\" f=\"SixApart.xml\"><exclusion pattern=\"^http://(?:(?:[^./]+\\.){2,}|makanai\\.|media\\.)sixapart\\.jp/\"/><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sixxs.net\" f=\"Sixxs.net.xml\"><securecookie host=\"^\\.sixxs\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sizzle Sites\" default_off=\"failed ruleset test\" f=\"Sizzle-Sites.xml\"><securecookie host=\"^(?:.*\\.)sizzlesitesinc\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SizzleJS.com\" f=\"SizzleJS.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sk-nic.sk\" f=\"Sk-nic.sk.xml\"><rule from=\"^http://(?:www\\.)?sk-nic\\.sk/\" to=\"https://www.sk-nic.sk/\"/></ruleset>", "<ruleset name=\"Skandia\" f=\"Skandia.se.xml\"><rule from=\"^http://www\\.skandia\\.se/\" to=\"https://www.skandia.se/\"/><rule from=\"^http://skandia\\.se/\" to=\"https://www.skandia.se/\"/></ruleset>", "<ruleset name=\"Skanetrafiken.se\" default_off=\"failed ruleset test\" f=\"Skanetrafiken.se.xml\"><securecookie host=\"skanetrafiken\\.se$\" name=\".*\"/><securecookie host=\"\\.skanetrafiken\\.se$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?([^\\.]+\\.)?skanetrafiken\\.se/\" to=\"https://www.$1skanetrafiken.se/\"/></ruleset>", "<ruleset name=\"Skat.dk\" f=\"Skat.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SkateMall (partial)\" f=\"SkateMall.xml\"><rule from=\"^http://(www\\.)?skatemall\\.com/((?:cart|checkout|login|order-lookup)\\.aspx|controls/|images/|img/|(?:Script|Web)Resource\\.axd|scripts/|themes/)\" to=\"https://$1skatemall.com/$2\"/></ruleset>", "<ruleset name=\"Skatteministeriet (partial)\" default_off=\"expired\" f=\"Skatteministeriet.xml\"><rule from=\"^http://(?:www\\.)?skm\\.dk/(css|gfx|js|public)/\" to=\"https://www.skm.dk/$1/\"/></ruleset>", "<ruleset name=\"Skatteverket\" f=\"Skatteverket.se.xml\"><rule from=\"^http://skatteverket\\.se/\" to=\"https://www.skatteverket.se/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Skch.me\" default_off=\"self-signed\" platform=\"mixedcontent\" f=\"Skch.me.xml\"><securecookie host=\"^wins\\.skch\\.me$\" name=\".+\"/><rule from=\"^http://(?:(wins\\.)|www\\.)?skch\\.me/\" to=\"https://$1skch.me/\"/></ruleset>", "<ruleset name=\"Skeptic.org.uk\" f=\"Skeptic.org.uk.xml\"><securecookie host=\"^www\\.skeptic\\.org\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Skeptic shop\" f=\"Skeptic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Skeptic Ink.com\" default_off=\"mismatched\" f=\"Skeptic_Ink.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Skeptical Science\" f=\"Skeptical_Science.xml\"><securecookie host=\"^(?:www\\.)?skepticalscience\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SketchThemes.com\" f=\"SketchThemes.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sketchfab.com (partial)\" f=\"Sketchfab.com.xml\"><securecookie host=\"^(?:www\\.)?sketchfab\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"skillclub.com\" f=\"Skillclub.com.xml\"><rule from=\"^http://cluster-1\\.skillclub\\.com/\" to=\"https://plarium.hs.llnwd.net/v1//\"/></ruleset>", "<ruleset name=\"Skills Matter.com\" f=\"Skills_Matter.com.xml\"><securecookie host=\"^(?:www\\.)?skillsmatter\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SkimLinks.com (partial)\" default_off=\"failed ruleset test\" f=\"SkimLinks.xml\"><exclusion pattern=\"^http://(?:api-products?|arthur|(?:[^./]+\\.)+[^./]+)\\.skimlinks.com/\"/><exclusion pattern=\"^http://info\\.skimlinks\\.com/(?!/*(?:$|\\?|css/|images/|rs/))\"/><securecookie host=\"^\\.skimlinks\\.com$\" name=\".+\"/><rule from=\"^http://info\\.skimlinks\\.com/+(?:\\?.*)?$\" to=\"https://skimlinks.com/\"/><rule from=\"^http://info\\.skimlinks\\.com/\" to=\"https://na-lon03.marketo.com/\"/><rule from=\"^http://redirect\\.skimlinks\\.com/\" to=\"https://go.redirectingat.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Skimresources.com\" f=\"Skimresources.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Skinflint\" f=\"Skinflint.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Skitch\" f=\"Skitch.xml\"><securecookie host=\"^(?:.*\\.)?skitch\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?skitch\\.com/\" to=\"https://skitch.com/\"/><rule from=\"^http://img\\.skitch\\.com/\" to=\"https://img.skitch.com/\"/></ruleset>", "<ruleset name=\"Sklik.cz\" f=\"Sklik.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Skm.io\" f=\"Skm.io.xml\"><rule from=\"^http://(?:www\\.)?skm\\.io/\" to=\"https://po.st/\"/></ruleset>", "<ruleset name=\"The Skoop.ca\" f=\"Skoop.xml\"><rule from=\"^http://(?:www\\.)?theskoop\\.ca/+(?:\\?.*)?$\" to=\"https://www.facebook.com/theskoopinc\"/><rule from=\"^http://(?:www\\.)?theskoop\\.ca/+([^?]+).*\" to=\"https://www.facebook.com/theskoopinc/$1\"/></ruleset>", "<ruleset name=\"Skreened.com (partial)\" f=\"Skreened.com.xml\"><rule from=\"^http://(www\\.)?skreened\\.com/(?=(?:account|login)(?:$|[?/])|content-link/|css/|favicon\\.ico|fonts/|images/|js/|render-(?:gif|produc)t/)\" to=\"https://$1skreened.com/\"/></ruleset>", "<ruleset name=\"Skrill.com\" default_off=\"failed ruleset test\" f=\"Skrill.com.xml\"><securecookie host=\".*\\.skrill\\.com$\" name=\".+\"/><rule from=\"^http://((?:account|help|sso|www)\\.)?skrill\\.com/\" to=\"https://$1skrill.com/\"/></ruleset>", "<ruleset name=\"skrilnetz.net\" f=\"Skrilnetz.net.xml\"><securecookie host=\"^skrilnetz\\.net$\" name=\".+\"/><rule from=\"^http://www\\.skrilnetz\\.net/\" to=\"https://skrilnetz.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Skroutz.gr\" f=\"Skroutz.gr.xml\"><securecookie host=\"^(?:.*\\.)?skroutz\\.gr$\" name=\".*\"/><securecookie host=\"^(?:.*\\.)?skroutzstore\\.gr$\" name=\".*\"/><exclusion pattern=\"^http://team\\.skroutz\\.gr/\"/><rule from=\"^http://(\\w+\\.)?skroutz\\.gr/\" to=\"https://$1skroutz.gr/\"/><rule from=\"^http://(\\w+\\.)?skroutzstore\\.gr/\" to=\"https://$1skroutzstore.gr/\"/></ruleset>", "<ruleset name=\"SkullSecurity.org\" f=\"SkullSecurity.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sky-ip.org\" default_off=\"failed ruleset test\" f=\"Sky-ip.org.xml\"><rule from=\"^http://(?:www\\.)?sky-ip\\.org/\" to=\"https://www.sky-ip.org/\"/></ruleset>", "<ruleset name=\"Sky.com (partial)\" default_off=\"failed ruleset test\" f=\"Sky.com.xml\"><exclusion pattern=\"^http://www\\.sky\\.com/+(?!$|\\?|(?:findandwatch|tv|watch)(?:$|[?/]))\"/><securecookie host=\"^\\.\" name=\"^(?:_gat?|mbox|s_\\w+)$\"/><securecookie host=\"^(?!www\\.sky\\.com$)\\w\" name=\".\"/><rule from=\"^http://sky\\.com/\" to=\"https://www.sky.com/\"/><rule from=\"^http://metrics\\.sky\\.com/\" to=\"https://smetrics.sky.com/\"/><rule from=\"^http://f\\.newsletter\\.sky\\.com/\" to=\"https://f.chtah.com/\"/><rule from=\"^http://suggest\\.search\\.sky\\.com/\" to=\"https://secure.suggest.search.sky.com/\"/><rule from=\"^http://www\\.teachers\\.sky\\.com/\" to=\"https://teachers.sky.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sky.de\" default_off=\"failed ruleset test\" f=\"Sky.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SkySQL.com\" default_off=\"failed ruleset test\" f=\"SkySQL.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SkyViewingHelp.com\" default_off=\"failed ruleset test\" f=\"SkyViewingHelp.com.xml\"><securecookie host=\"^(?:www\\.)?skyviewinghelp\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?skyviewinghelp\\.com/\" to=\"https://www.skyviewinghelp.com/\"/></ruleset>", "<ruleset name=\"Sky Academy.com\" default_off=\"failed ruleset test\" f=\"Sky_Academy.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sky News.Au (partial)\" default_off=\"mismatched\" f=\"Sky_News.Au.xml\"><rule from=\"^http://static\\.skynews\\.com\\.au/\" to=\"https://static.skynews.com.au/\"/></ruleset>", "<ruleset name=\"Sky Programme Information.co.uk\" f=\"Sky_Programme_Information.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.skyprogrammeinformation\\.co\\.uk/\" to=\"https://skyprogrammeinformation.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sky Sports.com (partial)\" f=\"Sky_Sports.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sky & Telescope (problematic)\" default_off=\"refused\" f=\"Sky_and_Telescope-problematic.xml\"><rule from=\"^http://media\\.skyandtelescope\\.com/\" to=\"https://media.skyandtelescope.com/\"/></ruleset>", "<ruleset name=\"Sky & Telescope (partial)\" default_off=\"failed ruleset test\" f=\"Sky_and_Telescope.xml\"><rule from=\"^http://link\\.eml\\.skyandtelescope\\.com/\" to=\"https://link.eml.skyandtelescope.com/\"/></ruleset>", "<ruleset name=\"Skydsl.eu\" f=\"Skydsl.eu.xml\"><rule from=\"^http://skydsl\\.eu/\" to=\"https://skydsl.eu/\"/><rule from=\"^http://([^/:@\\.]+)\\.skydsl\\.eu/\" to=\"https://$1.skydsl.eu/\"/></ruleset>", "<ruleset name=\"Skylark cloud.com\" default_off=\"failed ruleset test\" f=\"Skylark_cloud.com.xml\"><securecookie host=\"^(?:www\\.)?skylarkcloud\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Skyline Registrations.co.uk\" default_off=\"failed ruleset test\" f=\"Skyline_Registrations.co.uk.xml\"><rule from=\"^http://(?:www\\.)?skylineregistrations\\.co\\.uk/\" to=\"https://www.skylineregistrations.co.uk/\"/></ruleset>", "<ruleset name=\"Skylink\" f=\"Skylink.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Skype.com (partial)\" default_off=\"failed ruleset test\" f=\"Skype.xml\"><securecookie host=\".*\\.skype\\.com$\" name=\".+\"/><rule from=\"^http://skype\\.com/\" to=\"https://www.skype.com/\"/><rule from=\"^http://beta\\.skype\\.com/\" to=\"https://go.skype.com/api/v1/domainRedirect/beta.skype.com/\"/><rule from=\"^http://metrics\\.skype\\.com/\" to=\"https://smetrics.skype.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Skype assets.com\" default_off=\"failed ruleset test\" f=\"Skype_assets.com.xml\"><rule from=\"^http://www\\.skypeassets\\.com/\" to=\"https://secure.skypeassets.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Skyrider GraalOnline\" default_off=\"failed ruleset test\" f=\"Skyrider_GraalOnline.xml\"><securecookie host=\"^\\.skyriderplay\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Skyscanner\" default_off=\"failed ruleset test\" f=\"Skyscanner.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Slac.com\" default_off=\"self-signed\" f=\"Slac.com.xml\"><rule from=\"^http://(?:www\\.)?slac\\.com/\" to=\"https://www.slac.com/\"/></ruleset>", "<ruleset name=\"Slack.com\" f=\"Slack.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Slanted.de (partial)\" f=\"Slanted.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SlashCDN.com\" default_off=\"failed ruleset test\" f=\"SlashCDN.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Slashbits.com\" default_off=\"failed ruleset test\" f=\"Slashbits.com.xml\"><securecookie host=\"^\\.slashbits\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Slashdot.org (partial)\" default_off=\"failed ruleset test\" f=\"Slashdot.xml\"><securecookie host=\"^\\.\" name=\"^_(?:ga|_qca$)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Slashdot Media.com\" default_off=\"failed ruleset test\" f=\"Slashdot_Media.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Slate.fr (mixedcontent)\" platform=\"mixedcontent\" f=\"Slate.fr-mixedcontent.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Slate.fr\" f=\"Slate.fr.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Slavery Footprint.org\" f=\"Slavery_Footprint.org.xml\"><securecookie host=\"^\\.slaveryfootprint\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Slax Linux\" f=\"Slax_Linux.xml\"><securecookie host=\"^\\.slax\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Slender Kitchen\" default_off=\"failed ruleset test\" f=\"Slender_Kitchen.xml\"><securecookie host=\"^(?:www)?\\.slenderkitchen\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sleviste.cz (partial)\" default_off=\"mismatched\" f=\"Sleviste.cz.xml\"><rule from=\"^http://img\\.sleviste\\.cz/\" to=\"https://img.sleviste.cz/\"/></ruleset>", "<ruleset name=\"SliTaz.org\" default_off=\"self-signed\" f=\"SliTaz.org.xml\"><rule from=\"^http://(?:www\\.)?slitaz\\.org/\" to=\"https://www.slitaz.org/\"/><rule from=\"^http://(mirror|pkgs)\\.slitaz\\.org/\" to=\"https://$1.slitaz.org/\"/><rule from=\"^http://shop\\.slitaz\\.org/\" to=\"https://slitaz.spreadshirt.net/\"/></ruleset>", "<ruleset name=\"Slice\" f=\"Slice.xml\"><securecookie host=\"^www\\.(?:go|project)?slice\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?(go|project)?slice\\.com/\" to=\"https://www.$1slice.com/\"/></ruleset>", "<ruleset name=\"SlickEdit.com\" default_off=\"failed ruleset test\" f=\"SlickEdit.com.xml\"><securecookie host=\"^(?:www)?\\.slickedit\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Slick Products\" f=\"Slick_Products.xml\"><securecookie host=\"^www\\.slickproductsusa\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Slickdeals\" f=\"Slickdeals.xml\"><securecookie host=\"^(?:.*\\.)?slickdeals\\.net$\" name=\".+\"/><rule from=\"^http://((?:archive|beta|blog|i|img|m|www)\\.)?slickdeals\\.net/\" to=\"https://$1slickdeals.net/\"/><rule from=\"^http://static\\.slickdeal(?:z\\.net|scdn\\.com)/\" to=\"https://slickdeals.net/\"/></ruleset>", "<ruleset name=\"Slid.es (partial)\" f=\"Slid.es.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SlideDeck (partial)\" default_off=\"refused\" f=\"SlideDeck.xml\"><securecookie host=\"^www\\.slidedeck\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SlideMyPics.com (partial)\" f=\"SlideMyPics.xml\"><rule from=\"^http://files\\.slidemypics\\.com/\" to=\"https://s3.amazonaws.com/files.slidemypics.com/\"/></ruleset>", "<ruleset name=\"SlideShare.net (partial)\" f=\"SlideShare.xml\"><exclusion pattern=\"^http://help\\.slideshare\\.com/(?!attachments/|favicon\\.ico|generated/|images/|system/)\"/><exclusion pattern=\"^http://www\\.slideshare\\.net/(?!elqNow/|favicon\\.ico|images/|(?:create|forgot-password|login|signup)(?:$|[?/])|slideshow/embed_code/|stylesheets/)\"/><securecookie host=\"^\\.slideshare\\.net$\" name=\"^(?:_smtLastVisitedHost|__utm\\w)$\"/><rule from=\"^http://help\\.slideshare\\.com/\" to=\"https://slideshare.zendesk.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SlideShareCDN.com\" f=\"SlideShareCDN.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Slides.com (partial)\" f=\"Slides.com.xml\"><securecookie host=\"^\\.slides\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SlipFire\" default_off=\"expired, self-signed\" f=\"SlipFire.xml\"><rule from=\"^http://(?:www\\.)?slipfire\\.com/\" to=\"https://slipfire.com/\"/></ruleset>", "<ruleset name=\"Sloan Digital Sky Survey (partial)\" default_off=\"failed ruleset test\" f=\"Sloan-Digital-Sky-Survey.xml\"><exclusion pattern=\"^http://www-visualmedia\\.\"/><securecookie host=\"^(?:.*\\.)?sdss3\\.org$\" name=\".*\"/><rule from=\"^http://(\\w+\\.)?sdss3\\.org/\" to=\"https://$1sdss3.org/\"/></ruleset>", "<ruleset name=\"The Sloan Consortium (partial)\" f=\"Sloan_Consortium.xml\"><rule from=\"^http://(?:www\\.)?sloanconsortium\\.org/sites/\" to=\"https://sloanconsortium.org/sites/\"/></ruleset>", "<ruleset name=\"Slon.ru\" f=\"Slon.ru.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.slon\\.ru/\" to=\"https://slon.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Slotsfrisoren.dk\" f=\"Slotsfrisoren.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Slough.gov.uk (partial)\" f=\"Slough.gov.uk.xml\"><securecookie host=\"^\\w\" name=\"\"/><rule from=\"^http://(?:css|static)\\.slough\\.gov\\.uk/\" to=\"https://www.slough.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SlovakGoverment\" default_off=\"failed ruleset test\" f=\"SlovakGoverment.xml\"><rule from=\"^http://(?:www\\.)?slovensko\\.sk/\" to=\"https://www.slovensko.sk/\"/><rule from=\"^http://(?:www\\.)?vlada\\.gov\\.sk/\" to=\"https://vlada.gov.sk/\"/><rule from=\"^http://(?:www\\.)?crz\\.gov\\.sk/\" to=\"https://www.crz.gov.sk/\"/><rule from=\"^http://(?:www\\.)?crp\\.gov\\.sk/\" to=\"https://crp.gov.sk/\"/><rule from=\"^http://(?:www\\.)?prezident\\.sk/\" to=\"https://www.prezident.sk/\"/><rule from=\"^http://(?:www\\.)?mosr\\.sk/\" to=\"https://www.mosr.sk/\"/><rule from=\"^http://(?:www\\.)?foreign\\.gov\\.sk/\" to=\"https://www.mzv.sk/\"/><rule from=\"^http://(?:www\\.)?justice\\.gov\\.sk/\" to=\"https://www.justice.gov.sk/\"/><rule from=\"^http://(?:www\\.)?justice\\.sk/\" to=\"https://www.justice.gov.sk/\"/><rule from=\"^http://(?:www\\.)?uvo\\.gov\\.sk/\" to=\"https://www.uvo.gov.sk/\"/><rule from=\"^http://(?:www\\.)?sav\\.sk/\" to=\"https://www.sav.sk/\"/><rule from=\"^http://(?:www\\.)?sutn\\.sk/\" to=\"https://www.sutn.sk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Slovakrail.sk\" f=\"Slovakrail.sk.xml\"><rule from=\"^http://(?:www\\.)?slovakrail\\.sk/\" to=\"https://www.slovakrail.sk/\"/><rule from=\"^http://ikvc\\.slovakrail\\.sk/\" to=\"https://ikvc.slovakrail.sk/\"/></ruleset>", "<ruleset name=\"Slovenska_Sporitelna\" f=\"SlovenskaSporitelna.xml\"><rule from=\"^http://slsp\\.sk/\" to=\"https://www.slsp.sk/\"/><rule from=\"^http://([^/:@]*)\\.slsp\\.sk/\" to=\"https://$1.slsp.sk/\"/></ruleset>", "<ruleset name=\"Shining Light Productions\" f=\"Slproweb.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SlySoft\" default_off=\"Cert warning\" f=\"SlySoft.xml\"><rule from=\"^http://forum\\.slysoft\\.com/\" to=\"https://forum.slysoft.com/\"/><rule from=\"^http://(?:www\\.)?slysoft\\.com/\" to=\"https://www.slysoft.com/\"/></ruleset>", "<ruleset name=\"Slyar.com\" default_off=\"failed ruleset test\" f=\"Slyar.com.xml\"><securecookie host=\"^\\.\" name=\"^__utm\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Smack.co.uk\" f=\"Smack.co.uk.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Smack Jeeves (partial)\" f=\"SmackJeeves.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Smackcoders.com\" f=\"Smackcoders.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://smackcoders\\.com/\" to=\"https://www.smackcoders.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Small World Labs.com (partial)\" f=\"Small_World_Labs.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Smallbits.com (partial)\" default_off=\"failed ruleset test\" f=\"Smallbits.com.xml\"><rule from=\"^http://secure\\.smallbits\\.com/\" to=\"https://secure.smallbits.com/\"/></ruleset>", "<ruleset name=\"SmarTrend\" f=\"SmarTrend.xml\"><rule from=\"^http://(?:www\\.)?mysmartrend\\.com/\" to=\"https://www.mysmartrend.com/\"/></ruleset>", "<ruleset name=\"Smart AdServer.com (partial)\" default_off=\"failed ruleset test\" f=\"Smart-AdServer.xml\"><securecookie host=\"^\\.\" name=\"^(?:pdomid|pbw|pid|sasd2?|TestIfCookieP?|vs)$\"/><securecookie host=\"^(?:diff3?|im2|manage|www)\\.smartadserver\\.com$\" name=\".\"/><rule from=\"^http://(?:www\\.)?smartadserver\\.com/\" to=\"https://www.smartadserver.com/\"/><exclusion pattern=\"^http://(?:www\\.)?smartadserver\\.com/(?!(?:images/)?shim\\.gif$)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Smart-Mail\" f=\"Smart-Mail.xml\"><securecookie host=\"^(?:www\\.)?smart-mail\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?smart-mail\\.de/\" to=\"https://www.smart-mail.de/\"/></ruleset>", "<ruleset name=\"Smart.ly\" f=\"Smart.ly.xml\"><securecookie host=\"^\\.smart\\.ly$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SmartBrief\" default_off=\"failed ruleset test\" f=\"SmartBrief.xml\"><securecookie host=\"^(?:.*\\.)?smartbrief\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SmartHide (partial)\" default_off=\"expired\" f=\"SmartHide.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.smarthide\\.com/\" to=\"https://smarthide.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SmartOS.org\" f=\"SmartOS.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SmartPractice\" default_off=\"failed ruleset test\" f=\"SmartPractice.com.xml\"><rule from=\"^http://(www\\.)?allerderm\\.com/\" to=\"https://allerderm.com/\"/><rule from=\"^http://(?:www\\.)?finnchamber\\.com/\" to=\"https://www.finnchamber.com/\"/></ruleset>", "<ruleset name=\"SmartRecruiters\" f=\"SmartRecruiters.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?smartrecruiters\\.com/blog/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Smart Living Network.com\" f=\"Smart_Living_Network.com.xml\"><securecookie host=\"^(?:www\\.)?smartlivingnetwork\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SmarterTools.com (partial)\" f=\"SmarterTools.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SmarterTrack.com (partial)\" f=\"SmarterTrack.com.xml\"><securecookie host=\"^(?:portal|www)\\.smartertrack\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Smartling (problematic)\" default_off=\"expired, mismatched\" f=\"Smartling-problematic.xml\"><rule from=\"^http://(?:www\\.)?smartlingsource\\.com/\" to=\"https://smartlingsource.com/\"/></ruleset>", "<ruleset name=\"Smartling (partial)\" f=\"Smartling.xml\"><securecookie host=\"^dashboard\\.smartling\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?smartling\\.com/static/\" to=\"https://s.smartling.com/static/\"/><rule from=\"^http://(cdn01|(?:s-)?dashboard|s)\\.smartling\\.com/\" to=\"https://$1.smartling.com/\"/></ruleset>", "<ruleset name=\"Smartphone Experts (partial)\" f=\"Smartphone_Experts.xml\"><exclusion pattern=\"^http://store\\.smartphoneexperts\\.com/(?!images/|store/modules/|store_images/|v3_templates/)\"/><rule from=\"^http://(?:(?:cdn-)?store|secure)\\.smartphoneexperts\\.com/\" to=\"https://secure.smartphoneexperts.com/\"/></ruleset>", "<ruleset name=\"Smartronix\" f=\"Smartronix.xml\"><rule from=\"^http://(?:www\\.)?smartronix\\.com/\" to=\"https://www.smartronix.com/\"/></ruleset>", "<ruleset name=\"Smartstream.tv\" default_off=\"failed ruleset test\" f=\"Smartstream.tv.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SmashFly.com (problematic)\" default_off=\"expired, self-signed\" f=\"SmashFly.com-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SmashFly.com (partial)\" default_off=\"failed ruleset test\" f=\"SmashFly.com.xml\"><exclusion pattern=\"^http://go.smashfly.com/+(?!$|\\?|l/)\"/><rule from=\"^http://go\\.smashfly\\.com/(?=/*l/)\" to=\"https://go.pardot.com/\"/><rule from=\"^http://go\\.smashfly\\.com/.*\" to=\"https://smashfly.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Smashwords.com\" f=\"Smashwords.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Smdg.ca\" f=\"Smdg.ca.xml\"><rule from=\"^http://static\\.smdg\\.ca/\" to=\"https://d3pf6blj843au7.cloudfront.net/\"/></ruleset>", "<ruleset name=\"SMI2.net\" default_off=\"failed ruleset test\" f=\"Smi2.net.xml\"><securecookie host=\"^smi2\\.net$\" name=\"\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Smileys Network.com\" default_off=\"mismatched\" f=\"Smileys_Network.xml\"><securecookie host=\"^(?:www\\.)?smileysnetwork\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Smith Monitoring.com (partial)\" f=\"Smith_Monitoring.com.xml\"><rule from=\"^http://cache\\.smithmonitoring\\.com/\" to=\"https://c15192108.ssl.cf2.rackcdn.com/\"/></ruleset>", "<ruleset name=\"Smithsonian Institution (partial)\" f=\"Smithsonian_Institution.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Smithsonianmag.com (partial)\" f=\"Smithsonianmag.com.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://public\\.media\\.smithsonianmag\\.com/\" to=\"https://d4a93f3546ecdcbbedb2-caa36b64289b700cc7b17a7a1d72ae15.ssl.cf2.rackcdn.com/\"/><rule from=\"^http://static\\.media\\.smithsonianmag\\.com/\" to=\"https://a43d8359c5340246e48f-48c1ebec497242f6265091443a89054e.ssl.cf2.rackcdn.com/\"/><rule from=\"^http://thumbs\\.media\\.smithsonianmag\\.com/\" to=\"https://9dbdc7e4e76730eafd8c-725637a4efb9dbcc26cd49a804f2fb9b.ssl.cf2.rackcdn.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SMJG\" f=\"Smjg.xml\"><rule from=\"^http://((?:forum|www)\\.)?smjg\\.org/\" to=\"https://$1smjg.org/\"/></ruleset>", "<ruleset name=\"SmoothieBlend.com\" default_off=\"failed ruleset test\" f=\"SmoothieBlend.com.xml\"><securecookie host=\"^\\.?smoothieblend\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Smoothwall.org (partial)\" f=\"Smoothwall.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Smowtion (partial)\" f=\"Smowtion.xml\"><rule from=\"^http://ad\\.smowtion\\.com/\" to=\"https://ad.yieldmanager.com/\"/><rule from=\"^http://p(assport|ublisher)\\.smowtion\\.com/\" to=\"https://p$1.smowtion.com/\"/><rule from=\"^http://px\\.smowtion\\.com/\" to=\"https://s3.amazonaws.com/px.smowtion.com/\"/></ruleset>", "<ruleset name=\"SmugMug.com (partial)\" f=\"SmugMug.com.xml\"><securecookie host=\"^\\.smugmug\\.com$\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http://smugmug\\.com/\" to=\"https://www.smugmug.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"smutty\" f=\"Smutty.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Smuxi.im (partial)\" default_off=\"failed ruleset test\" f=\"Smuxi.im.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"smzdm\" f=\"Smzdm.com.xml\"><exclusion pattern=\"^http://www\\.smzdm\\.com/(?!resources/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Snabb.co\" default_off=\"failed ruleset test\" f=\"Snabb.co.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SnackTools.com (problematic)\" default_off=\"mismatched\" f=\"SnackTools.com-problematic.xml\"><securecookie host=\"^stapi\\.snacktools\\.com$\" name=\".+\"/><rule from=\"^http://stapi\\.snacktools\\.com/\" to=\"https://stapi.snacktools.com/\"/></ruleset>", "<ruleset name=\"SnackTools.com (partial)\" f=\"SnackTools.com.xml\"><securecookie host=\"^www\\.snacktools\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?snacktools\\.com/\" to=\"https://www.snacktools.com/\"/></ruleset>", "<ruleset name=\"SnackTools.net\" f=\"SnackTools.net.xml\"><securecookie host=\"^stapi\\.snacktools\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SnackTV\" f=\"Snacktv.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"snafu (partial)\" default_off=\"failed ruleset test\" f=\"Snafu.xml\"><securecookie host=\"^service\\.snafu\\.de$\" name=\".*\"/><rule from=\"^http://service\\.snafu\\.de/\" to=\"https://service.snafu.de/\"/></ruleset>", "<ruleset name=\"snagajob\" platform=\"mixedcontent\" f=\"Snagajob.xml\"><securecookie host=\"^(?:.*\\.)?snagajob.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?snagajob\\.com/\" to=\"https://www.snagajob.com/\"/><rule from=\"^http://media\\.snagajob\\.com/\" to=\"https://media.snagajob.com/\"/><exclusion pattern=\"^http://www\\.snagajob\\.com/answers/\"/><exclusion pattern=\"^http://www\\.snagajob\\.com/blog/\"/></ruleset>", "<ruleset name=\"Snakehosting.dk\" f=\"Snakehosting.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SnapEngage.com (false MCB)\" platform=\"mixedcontent\" f=\"SnapEngage.com-falsemixed.xml\"><exclusion pattern=\"^http://(?:developer\\.|help\\.)?snapengage\\.com/(?:files|wp-content|wp-includes)/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SnapEngage (partial)\" default_off=\"failed ruleset test\" f=\"SnapEngage.xml\"><exclusion pattern=\"^http://(?:developer\\.|help\\.)?snapengage\\.com/(?!files/|wp-content/|wp-includes/)\"/><securecookie host=\"^\\.snapengage\\.com$\" name=\"^(?:__cfduid|__insp_\\w+|SnapABug\\w+|__utm\\w)$\"/><securecookie host=\"^www\\.snapengage\\.com$\" name=\".+\"/><rule from=\"^http://snapengage-(\\d)\\.wpengine\\.netdna-cdn\\.com/\" to=\"https://snapengage-$1.wpengine.com/\"/><rule from=\"^http://((?:developer|help|www)\\.)?snapengage\\.com/\" to=\"https://$1snapengage.com/\"/></ruleset>", "<ruleset name=\"SnapWidget.com (partial)\" f=\"SnapWidget.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Snapchat.com (partial)\" f=\"Snapchat.com.xml\"><securecookie host=\"^support\\.snapchat\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Snapdeal.com (partial)\" f=\"Snapdeal.com.xml\"><exclusion pattern=\"^http://www\\.snapdeal\\.com/(?!login(?:$|[?/]))\"/><rule from=\"^http://(?:www\\.)?snapdeal\\.com/\" to=\"https://www.snapdeal.com/\"/></ruleset>", "<ruleset name=\"Snatchly (partial)\" f=\"Snatchly.xml\"><rule from=\"^http://media-cache\\d\\.snatchly\\.com/\" to=\"https://d2x4glpi1c9656.cloudfront.net/\"/></ruleset>", "<ruleset name=\"SndCDN.com (partial)\" default_off=\"failed ruleset test\" f=\"SndCDN.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Snel Internet Services\" default_off=\"failed ruleset test\" f=\"Snel-Internet-Services.xml\"><securecookie host=\"^.*\\.snelis\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Snel.com\" default_off=\"failed ruleset test\" f=\"Snel.com.xml\"><securecookie host=\"^(?:.+\\.)?snel\\.com$\" name=\".+\"/><rule from=\"^http://session\\.snel\\.com/.*\" to=\"https://control.snel.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Snellman.net (partial)\" f=\"Snellman.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Snip2Code.com\" default_off=\"failed ruleset test\" f=\"Snip2Code.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://snip2code\\.com/\" to=\"https://www.snip2code.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Snipcart.com (partial)\" f=\"Snipcart.com.xml\"><securecookie host=\"^\\.app\\.snipcart\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Snipt.net\" default_off=\"failed ruleset test\" f=\"Snipt.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Snob.ru\" f=\"Snob.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Snoobi (partial)\" f=\"Snoobi.xml\"><securecookie host=\"^.*\\.snoobi\\.com\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Snoonet\" f=\"Snoonet.xml\"><rule from=\"^http://(www\\.)?snoonet\\.org/\" to=\"https://www.snoonet.org/\"/></ruleset>", "<ruleset name=\"Snort.com (partial)\" default_off=\"failed ruleset test\" f=\"Snort.xml\"><securecookie host=\".\\.snort\\.org$\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Snow Magazine\" f=\"Snow_Magazine.xml\"><securecookie host=\"^www\\.snowmagazineonline\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?snowmagazineonline\\.com/\" to=\"https://www.snowmagazineonline.com/\"/></ruleset>", "<ruleset name=\"Snowdrift.coop\" f=\"Snowdrift.coop.xml\"><securecookie host=\"^snowdrift\\.coop$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Snowfly (partial)\" default_off=\"failed ruleset test\" f=\"Snowfly.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"So Raise Your Glasses\" default_off=\"failed ruleset test\" f=\"So-Raise-Your-Glasses.xml\"><securecookie host=\"^www\\.soraiseyourglasses\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"So.cl\" default_off=\"failed ruleset test\" f=\"So.cl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SoCal Linux Expo.org\" f=\"SoCal_Linux_Expo.org.xml\"><securecookie host=\"^reg\\.socallinuxexpo\\.org$\" name=\".+\"/><rule from=\"^http://((?:helpdesk|reg|wiki|www)\\.)?socallinuxexpo\\.org/\" to=\"https://$1socallinuxexpo.org/\"/></ruleset>", "<ruleset name=\"SoFurry\" f=\"SoFurry.xml\"><securecookie host=\"^(?:www)?\\.sofurry\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?sofurry\\.com/\" to=\"https://www.sofurry.com/\"/><rule from=\"^http://(?:www\\.)?sofurryfiles\\.com/\" to=\"https://www.sofurryfiles.com/\"/></ruleset>", "<ruleset name=\"SoHosted.com\" f=\"SoHosted.com.xml\"><securecookie host=\"^(?:www\\.)?sohosted\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SoSci Survey.de\" f=\"SoSci-Survey.xml\"><rule from=\"^http://soscisurvey\\.de/\" to=\"https://www.soscisurvey.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SoZone.de\" f=\"SoZone.de.xml\"><securecookie host=\"^sozone\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"So you Start.com\" f=\"So_you_Start.com.xml\"><securecookie host=\"^(?:^|\\.)soyoustart\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Soap.com\" f=\"Soap.com.xml\"><securecookie host=\".\" name=\"^aps-trtmnt$\"/><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://soap\\.com/\" to=\"https://www.soap.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Soapbox CMS\" default_off=\"failed ruleset test\" f=\"Soapbox-CMS.xml\"><securecookie host=\"^(?:.*\\.)?soapboxcms\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sobollubov.ru\" default_off=\"failed ruleset test\" f=\"Sobollubov.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SoccerWave UK.com\" default_off=\"expired, self-signed\" f=\"SoccerWave_UK.com.xml\"><securecookie host=\"^www\\.soccerwaveuk\\.org\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?soccerwaveuk\\.org\\.uk/\" to=\"https://www.soccerwaveuk.com/\"/></ruleset>", "<ruleset name=\"Social-Engineer.com\" f=\"Social-Engineer.com.xml\"><securecookie host=\"^(?:www\\.)?social-engineer\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SocialBox\" default_off=\"plaintext reply\" f=\"SocialBox.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SocialRank.com (partial)\" default_off=\"failed ruleset test\" f=\"SocialRank.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SocialSafety.org\" default_off=\"mismatched\" f=\"SocialSafety.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Social Security.gov (partial)\" f=\"SocialSecurity.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SocialShows\" default_off=\"failed ruleset test\" f=\"SocialShows.xml\"><securecookie host=\"^\\.?socialshows\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?socialshows\\.(?:com|net)/\" to=\"https://socialshows.net/\"/></ruleset>", "<ruleset name=\"SocialTwist\" default_off=\"failed ruleset test\" f=\"SocialTwist.xml\"><rule from=\"^http://([\\w\\-]+\\.)?socialtwist\\.com/\" to=\"https://$1socialtwist.com/\"/></ruleset>", "<ruleset name=\"Social Code dev.com\" default_off=\"failed ruleset test\" f=\"Social_Code_dev.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Social Fixer.com\" default_off=\"expired\" f=\"Social_Fixer.com.xml\"><rule from=\"^http://(?:www\\.)?socialfixer\\.com/\" to=\"https://socialfixer.com/\"/></ruleset>", "<ruleset name=\"Social Progress Imperative.org\" default_off=\"mismatched\" f=\"Social_Progress_Imperative.org.xml\"><rule from=\"^http://(?:www\\.)?socialprogressimperative\\.org/\" to=\"https://www.socialprogressimperative.org/\"/></ruleset>", "<ruleset name=\"Social Reader.com (partial)\" default_off=\"failed ruleset test\" f=\"Social_Reader.com.xml\"><securecookie host=\"^(?:id)?\\.socialreader\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?socialreader\\.com/.*\" to=\"https://trove.com/\"/><rule from=\"^http://id\\.socialreader\\.com/+\" to=\"https://id.trove.com/\"/></ruleset>", "<ruleset name=\"Social Screamer\" default_off=\"failed ruleset test\" f=\"Social_Screamer.xml\"><securecookie host=\"^\\.socialscreamer\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Social Theater\" f=\"Social_Theater.xml\"><securecookie host=\"^(?:www\\.)?socialtheater\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"socialbakers.com\" platform=\"mixedcontent\" f=\"Socialbakers.xml\"><securecookie host=\"^(?:.*\\.)?socialbakers\\.com$\" name=\".*\"/><rule from=\"^http://(\\w+\\.)?socialbakers\\.com/\" to=\"https://$1socialbakers.com/\"/></ruleset>", "<ruleset name=\"Socialblade.com\" f=\"Socialblade.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Socialcube.net (partial)\" default_off=\"failed ruleset test\" f=\"Socialcube.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"socializer.cc\" f=\"Socializer.cc.xml\"><securecookie host=\"^track\\.socializer\\.cc$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Socialtext.net (partial)\" f=\"Socialtext.net.xml\"><securecookie host=\"^saml\\.socialtext\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"socialtyzetracking.com\" default_off=\"failed ruleset test\" f=\"Socialtyzetracking.com.xml\"><securecookie host=\"^www\\.socialtyzetracking\\.com$\" name=\".+\"/><rule from=\"^http://socialtyzetracking\\.com/\" to=\"https://www.socialtyzetracking.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sociamonials.com\" f=\"Sociamonials.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Society for Technical Communication (partial)\" default_off=\"expired, mismatch\" f=\"Society-for-Technical-Communication.xml\"><securecookie host=\"^.*\\.stc\\.org$\" name=\".*\"/><rule from=\"^http://archive\\.stc\\.org/\" to=\"https://archive.stc.org/\"/><rule from=\"^http://(?:www\\.)?stc\\.org/index\\.asp\" to=\"https://archive.stc.org/index.asp\"/><rule from=\"^http://jobs\\.stc\\.org/\" to=\"https://jobs.stc.org/\"/></ruleset>", "<ruleset name=\"Society of Light & Lighting\" default_off=\"self-signed\" f=\"Society-of-Light-and-Lighting.xml\"><securecookie host=\"^sll\\.org\\.uk$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?ssl\\.org\\.uk/\" to=\"https://ssl.org.uk/\"/></ruleset>", "<ruleset name=\"SFN.org (partial)\" f=\"Society_for_Neuroscience.xml\"><exclusion pattern=\"^http://(?:neuronline|www)\\.sfn\\.org/+(?!SfN_favicon\\.ico|WebResource\\.axd|css/|fonts/|images/|~/media/)\"/><securecookie host=\"^ebiz\\.sfn\\.org$\" name=\".+\"/><securecookie host=\"^(?:neuronline\\.|www\\.)?sfn\\.org$\" name=\"^SC_ANALYTICS_SESSION_COOKIE$\"/><rule from=\"^http://sfn\\.org/\" to=\"https://www.sfn.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SocietyForScience.org\" default_off=\"failed ruleset test\" f=\"Societyforscience.org.xml\"><securecookie host=\"^www\\.societyforscience\\.org\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sociomantic labs\" f=\"Sociomantic_labs.xml\"><securecookie host=\"^\\.sociomantic\\.com$\" name=\"^sonar(?:-expires)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SockShare (problematic)\" default_off=\"expired, mismatched\" f=\"SockShare.com-problematic.xml\"><rule from=\"^http://(cdn|media-b\\d+)\\.sockshare\\.com/\" to=\"https://$1.sockshare.com/\"/></ruleset>", "<ruleset name=\"SockShare (partial)\" default_off=\"failed ruleset test\" f=\"SockShare.xml\"><exclusion pattern=\"^http://(?:www\\.)?sockshare\\.com/(?!crossdomain\\.xml|gopro\\.php|include/captcha\\.php)\"/><rule from=\"^http://((?:images|static1|www)\\.)?sockshare\\.com/\" to=\"https://$1sockshare.com/\"/><rule from=\"^http://static\\.sockshare\\.com/\" to=\"https://static1.sockshare.com/\"/></ruleset>", "<ruleset name=\"Socrata.com\" default_off=\"failed ruleset test\" f=\"Socrata.com.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SodaHead.com\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"SodaHead.com.xml\"><securecookie host=\".+\\.sodahead\\.com$\" name=\".+\"/><rule from=\"^http://((?:de|latimes|m|partners|www)\\.)?sodahead\\.com/\" to=\"https://$1sodahead.com/\"/><rule from=\"^http://images\\.sodahead\\.com/\" to=\"https://d33lglhhb8q63m.cloudfront.net/\"/><rule from=\"^http://statics\\.sodahead\\.com/\" to=\"https://d6fekxp9qbg3b.cloudfront.net/\"/><rule from=\"^http://widgets\\.sodahead\\.com/\" to=\"https://d3ict7m6m7fhlt.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Soekris.com\" f=\"Soekris.com.xml\"><securecookie host=\"^\\.soekris\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Soeren-Hentzschel.at\" f=\"Soeren-hentzschel.at.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SofN.com\" f=\"SofN.com.xml\"><securecookie host=\"^www\\.sofn\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sofawolf\" f=\"Sofawolf.xml\"><securecookie host=\"^(?:\\.www|www|)\\.sofawolf\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?sofawolf\\.com/\" to=\"https://www.sofawolf.com/\"/></ruleset>", "<ruleset name=\"Sofort.com\" f=\"Sofort.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SoftCom (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"SoftCom.xml\"><securecookie host=\"^(?:.*\\.)?(?:mail2web|myhosting|slhost|softcom)\\.com$\" name=\".*\"/><rule from=\"^http://(www\\.)?daha\\.net/(assets/|fancybox/|\\w+\\.(css|ico|png)|[\\w\\-/]*images/)\" to=\"https://$1daha.net/$2\"/><rule from=\"^http://(banman\\.|www\\.)?mail2web\\.com/\" to=\"https://$1mail2web.com/\"/><rule from=\"^http://(www\\.)?myhosting\\.com/\" to=\"https://$1myhosting.com/\"/><rule from=\"^http://assets\\d*\\.myhosting\\.com/\" to=\"https://d2b9wiydujghh5.cloudfront.net/\"/><rule from=\"^http://(www\\.)?slhost\\.com/\" to=\"https://$1slhost.com/\"/><rule from=\"^http://helpdesk\\.softcom\\.com/\" to=\"https://helpdesk.softcom.com/\"/></ruleset>", "<ruleset name=\"SoftCreatR.de\" f=\"SoftCreatR.de.xml\"><securecookie host=\"^\\.support\\.softcreatr\\.de$\" name=\".+\"/><rule from=\"^http://(www\\.)?(support\\.)?softcreatr\\.de/\" to=\"https://$1softcreatr.de/\"/></ruleset>", "<ruleset name=\"SoftEther VPN\" default_off=\"failed ruleset test\" f=\"SoftEther_VPN.xml\"><securecookie host=\"^(?:www\\.)?softether\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SoftLayer (mismatches)\" default_off=\"mismatched\" f=\"SoftLayer-mismatches.xml\"><rule from=\"^http://cdn\\.softlayer\\.com/\" to=\"https://cdn.softlayer.com/\"/></ruleset>", "<ruleset name=\"SoftLayer\" default_off=\"failed ruleset test\" f=\"SoftLayer.xml\"><securecookie host=\"^.+\\.softlayer\\.com$\" name=\".+\"/><rule from=\"^http://((?:forums|manage|outlet|www)\\.)?softlayer\\.com/\" to=\"https://$1softlayer.com/\"/><rule from=\"^http://(\\w+)\\.https?\\.cdn\\.softlayer\\.net/\" to=\"https://$1.https.cdn.softlayer.net/\"/></ruleset>", "<ruleset name=\"SoftPerfect.com\" f=\"SoftPerfect.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Softaculous.com (partial)\" f=\"Softaculous.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Software in the Public Interest (partial)\" default_off=\"self-signed\" f=\"Software-in-the-Public-Interest.xml\"><securecookie host=\"^rt\\.spi-inc\\.org$\" name=\".*\"/><rule from=\"^http://(members|rt)\\.spi-inc\\.org/\" to=\"https://$1.spi-inc.org/\"/></ruleset>", "<ruleset name=\"Software Freedom.org\" f=\"SoftwareFreedom.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SF Conservancy.org\" default_off=\"failed ruleset test\" f=\"Software_Freedom_Conservancy.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SIIA.net\" f=\"Software_and_Information_Industry_Association.xml\"><securecookie host=\"^\\w\" name=\".+\"/><rule from=\"^http://dnn\\.siia\\.net/\" to=\"https://www.siia.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sogeti.com (partial)\" f=\"Sogeti.com.xml\"><securecookie host=\"^\\.\" name=\"^_ga\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sogou.com (partial)\" f=\"Sogou.com.xml\"><rule from=\"^http://(imgstore\\.cdn|img\\.store)\\.sogou\\.com/\" to=\"https://img.sogoucdn.com/\"/><rule from=\"^http://logo\\.www\\.sogou\\.com/\" to=\"https://www.sogou.com/\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sogou_CDN.com\" f=\"Sogou_CDN.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sohu.com.cn\" f=\"Sohu.com.cn.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sohu.com (partial)\" f=\"Sohu.com.xml\"><exclusion pattern=\"^http://www\\.sohu\\.com/(?!sohuflash_1\\.js|upload/)\"/><exclusion pattern=\"^http://ad\\.sohu\\.com/(?!up/|upload/)\"/><exclusion pattern=\"^http://business\\.sohu\\.com/(?!upload/)\"/><exclusion pattern=\"^http://money\\.sohu\\.com/(?!upload/)\"/><exclusion pattern=\"^http://mt\\.sohu\\.com/(?!upload/)\"/><exclusion pattern=\"^http://news\\.sohu\\.com/(?!upload/)\"/><exclusion pattern=\"^http://stock\\.sohu\\.com/(?!upload/)\"/><exclusion pattern=\"^http://tv\\.sohu\\.com/(?!upload/)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sohu.net (partial)\" default_off=\"failed ruleset test\" f=\"Sohu.net.xml\"><securecookie host=\"^\\.?pan\\.sohu\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SohuCS.com\" f=\"SohuCS.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SohuSCE.com\" f=\"SohuSCE.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sol Musica.com\" f=\"Sol_Musica.xml\"><securecookie host=\"^\\.?solmusica\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Solar Energy Installers\" default_off=\"mismatched\" f=\"Solar-Energy-Installers.xml\"><securecookie host=\"^www\\.solar-energy-installers\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?solar-energy-installers\\.com/\" to=\"https://www.solar-energy-installers.com/\"/></ruleset>", "<ruleset name=\"Solar Power Rocks\" f=\"Solar-Power-Rocks.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Solar1.net\" f=\"Solar1.net.xml\"><securecookie host=\"^solar1\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?solar1\\.net/\" to=\"https://solar1.net/\"/></ruleset>", "<ruleset name=\"SolarCity\" platform=\"mixedcontent\" f=\"SolarCity.xml\"><rule from=\"^http://(?:www\\.)?mysolarcity\\.com/\" to=\"https://solarguard.solarcity.com/kiosk/login/default.aspx\"/><rule from=\"^http://(?:www\\.)?solarcity\\.com/\" to=\"https://www.solarcity.com/\"/><rule from=\"^http://solarguard\\.solarcity\\.com/\" to=\"https://solarguard.solarcity.com/\"/></ruleset>", "<ruleset name=\"SolarList.com\" f=\"SolarList.com.xml\"><securecookie host=\"^\\.solarlist\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SolarMovie\" default_off=\"failed ruleset test\" f=\"SolarMovie.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Solarbotics.com\" f=\"Solarbotics.com.xml\"><securecookie host=\"^(?:.+\\.)?solarbotics\\.com$\" name=\".+\"/><rule from=\"^http://((?:atlas|content|eos|helios|www)\\.)?solarbotics\\.com/\" to=\"https://$1solarbotics.com/\"/></ruleset>", "<ruleset name=\"Solarflare.com\" f=\"Solarflare.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Soldierx.com\" f=\"Soldierx.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sole.dk\" f=\"Sole.dk.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Solicitor-Concierge.com\" f=\"Solicitor-Concierge.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Solid-Run.com\" f=\"Solid-Run.com.xml\"><securecookie host=\"^imx\\.solid-run\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SolidAlert.com\" default_off=\"failed ruleset test\" f=\"SolidAlert.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Solid Cactus (partial)\" f=\"Solid_Cactus.xml\"><securecookie host=\"^(?:admin|clients|yahoo)\\.solidcactus\\.com$\" name=\".+\"/><securecookie host=\"^.+\\.solidcactushosting\\.com$\" name=\".+\"/><rule from=\"^http://(admin|clients|yahoo)\\.solidcactus\\.com/\" to=\"https://$1.solidcactus.com/\"/><rule from=\"^http://([\\w-]+)\\.solidcactushosting\\.com/\" to=\"https://$1.solidcactushosting.com/\"/></ruleset>", "<ruleset name=\"Solid Logic Technology\" default_off=\"failed ruleset test\" f=\"Solid_Logic_Technology.xml\"><securecookie host=\"^\\.solidlogic.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Solidarity-US.org\" f=\"Solidarity-US.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Solihull.gov.uk (partial)\" f=\"Solihull.gov.uk.xml\"><exclusion pattern=\"^http://www\\.solihull\\.gov\\.uk/+(?![Dd]esktop[Mm]odules/|[Pp]ortals/|favicon\\.ico)\"/><securecookie host=\"^(?!www\\.)\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Solola.ca (false MCB)\" platform=\"mixedcontent\" f=\"Solola.ca.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Solus-Project.com\" default_off=\"failed ruleset test\" f=\"Solus-Project.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Solutions Healthcare Management\" default_off=\"failed ruleset test\" f=\"Solutions_Healthcare_Management.xml\"><securecookie host=\"^\\.solutionshealthcare\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Solve Media.com (partial)\" default_off=\"failed ruleset test\" f=\"Solvemedia.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Somerset.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"Somerset.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Somerset.org.uk (partial)\" f=\"Somerset.org.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Someserver (partial)\" platform=\"cacert\" default_off=\"failed ruleset test\" f=\"Someserver.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Something Awful\" f=\"Something-Awful.xml\"><securecookie host=\"^secure\\.somethingawful\\.com$\" name=\".+\"/><securecookie host=\"^forums\\.somethingawful\\.com$\" name=\".+\"/><securecookie host=\"^archives\\.somethingawful\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Somevid.com\" default_off=\"failed ruleset test\" f=\"Somevid.com.xml\"><securecookie host=\"^(?:www\\.)?somevid\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sonatype.com (partial)\" f=\"Sonatype.com.xml\"><exclusion pattern=\"^http://www\\.sonatype\\.com/(?!assets/|downloads/products/|favicon\\.ico)\"/><securecookie host=\"^docs\\.sonatype\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sonder Design.com\" default_off=\"needs clearnet testing\" f=\"Sonder_Design.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SongColeta.com (partial)\" f=\"SongColeta.com.xml\"><rule from=\"^http://static\\.songcoleta\\.com/\" to=\"https://d2f4ve6v2ack21.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Songsterr.com (partial)\" f=\"Songsterr.com.xml\"><rule from=\"^http://(www\\.)?songsterr\\.com/(?=a/(?!wsa/)|WebObjects/)\" to=\"https://$1songsterr.com/\"/></ruleset>", "<ruleset name=\"Sonic.net (partial)\" f=\"Sonic.net.xml\"><securecookie host=\"^newsignup\\.sonic\\.net$\" name=\".+\"/><rule from=\"^http://(assets|corp|forums|legacy-webmail|members|newsignup|webmail|wiki)\\.sonic\\.net/\" to=\"https://$1.sonic.net/\"/></ruleset>", "<ruleset name=\"SonicWALL (partial)\" f=\"SonicWALL.xml\"><securecookie host=\"^.+\\.sonicwall\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?sonicwall\\.com/\" to=\"https://www.sonicwall.com/\"/><rule from=\"^http://software\\.sonicwall\\.com/\" to=\"https://software.sonicwall.com/\"/></ruleset>", "<ruleset name=\"Sonnet Tech.com (partial)\" f=\"Sonnet_Tech.com.xml\"><rule from=\"^http://s(?:ecu|to)re1\\.sonnettech\\.com/\" to=\"https://secure1.sonnettech.com/\"/></ruleset>", "<ruleset name=\"Sonobi.com\" f=\"Sonobi.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sonos.com (partial)\" f=\"Sonos.com.xml\"><securecookie host=\"^\\.sonos\\.com$\" name=\"^__u(?:tm\\w|tmli|nam)$\"/><rule from=\"^http://(?:www\\.)?sonos\\.com/(?=(?:\\w+/)?(?:[cC]ss/|images/|js/|(?:Script|Web)Resource\\.axd)|fancybox/|login(?:$|[?/])|shop/(?:i/|login\\.aspx|[tT]hemes/)|static/|widgets/)\" to=\"https://www.sonos.com/\"/><rule from=\"^http://faq\\.sonos\\.com/\" to=\"https://faq.sonos.com/\"/></ruleset>", "<ruleset name=\"Sony-Europe.com\" f=\"Sony-europe.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sony.com.hk (partial)\" f=\"Sony.com.hk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sony.eu (partial)\" default_off=\"failed ruleset test\" f=\"Sony.eu.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sony.se\" default_off=\"failed ruleset test\" f=\"Sony.se.xml\"><rule from=\"^http://www\\.sony\\.se/\" to=\"https://www.sony.se/\"/><rule from=\"^http://sony\\.se/\" to=\"https://sony.se/\"/></ruleset>", "<ruleset name=\"Sony.com (partial)\" f=\"Sony.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sony Mobile (buggy)\" default_off=\"https://lists.eff.org/pipermail/https-everywhere-rules/2013-November/001737.html\" f=\"SonyMobile.xml\"><exclusion pattern=\"^http://(?:www\\.)?sonymobile\\.com/wp-content/themes/semc-main/css/global\\.css\"/><securecookie host=\"^(?:shop|\\.?thesourceplus)\\.sonymobile\\.com$\" name=\".+\"/><rule from=\"^http://(developer|www)-static\\.se-mc\\.com/\" to=\"https://$1-static.se-mc.com/\"/><rule from=\"^http://(?:www\\.)?sonymobile\\.com/(cws|wp-content)/\" to=\"https://www.sonymobile.com/$1/\"/><rule from=\"^http://(foris(?:\\.extranet)?|shop|(?:assets\\.)?thesourceplus)\\.sonymobile\\.com/\" to=\"https://$1.sonymobile.com/\"/></ruleset>", "<ruleset name=\"Sony Music\" f=\"SonyMusic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sony Computer Science Laboratories\" f=\"Sony_Computer_Science_Laboratories.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sony Entertainment Network.com (partial)\" default_off=\"failed ruleset test\" f=\"Sony_Entertainment_Network.xml\"><securecookie host=\".\" name=\".+\"/><rule from=\"^http://(?:www\\.)?sonyentertainmentnetwork\\.com/+(?:\\?.*)?$\" to=\"https://www.playstationnetwork.com/home\"/><rule from=\"^http://(?:www\\.)?sonyentertainmentnetwork\\.com/+([^?]*).*\" to=\"https://www.playstationnetwork.com/\"/><rule from=\"^http://cdn\\.sonyentertainmentnetwork\\.com/\" to=\"https://www.sonyentertainmentnetwork.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sony Latin America (partial)\" default_off=\"failed ruleset test\" f=\"Sony_Latin_America.xml\"><exclusion pattern=\"^http://store\\.sony\\.com\\.mx/mx/site/\"/><securecookie host=\"^(?:www)?\\.sonystyle\\.com\\.mx$\" name=\".+\"/><rule from=\"^http://store\\.sony\\.com\\.mx/\" to=\"https://store.sony.com.mx/\"/><rule from=\"^http://(?:www\\.)?sonystyle\\.com\\.mx/\" to=\"https://www.sonystyle.com.mx/\"/></ruleset>", "<ruleset name=\"Sony Pictures UK\" default_off=\"failed ruleset test\" f=\"Sony_Pictures_UK.xml\"><securecookie host=\"^www\\.sonypictures\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?sonypictures\\.co\\.uk/\" to=\"https://www.sonypictures.co.uk/\"/></ruleset>", "<ruleset name=\"SooBEST.com (partial)\" default_off=\"failed ruleset test\" f=\"SooBEST.com.xml\"><rule from=\"^http://(?:www\\.)?soobest\\.com/themes/\" to=\"https://www.soobest.com/themes/\"/></ruleset>", "<ruleset name=\"Sophie VIP Escort\" default_off=\"connection reset\" f=\"Sophie_VIP_Escort.xml\"><rule from=\"^http://(?:www\\.)?sophievipescort\\.com/\" to=\"https://sophievipescort.com/\"/></ruleset>", "<ruleset name=\"Sophos.com\" f=\"Sophos.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SotT.net (partial)\" f=\"SotT.net.xml\"><rule from=\"^http://(www\\.)?sott\\.net/(?=favicon\\.ico|images/|signs/|stylesheets/|users/)\" to=\"https://$1sott.net/\"/></ruleset>", "<ruleset name=\"Soufun.com.tw (partial)\" f=\"Soufun.com.tw.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SoundKit.io\" f=\"SoundKit.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SoundViz.com\" f=\"SoundViz.com.xml\"><securecookie host=\"^www\\.soundviz\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?soundviz\\.com/\" to=\"https://www.soundviz.com/\"/></ruleset>", "<ruleset name=\"Sound On Sound.com (partial)\" default_off=\"failed ruleset test\" f=\"Sound_On_Sound.com.xml\"><rule from=\"^http://soundonsound\\.com/\" to=\"https://www.soundonsound.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sound on Sight.org (false MCB)\" default_off=\"self-signed\" platform=\"mixedcontent\" f=\"Sound_on_Sight.org.xml\"><rule from=\"^http://(?:www\\.)?soundonsight\\.org/\" to=\"https://www.soundonsight.org/\"/></ruleset>", "<ruleset name=\"Soundcloud.com (partial)\" default_off=\"failed ruleset test\" f=\"Soundcloud.xml\"><securecookie host=\"^\\.\" name=\"^_(?:_qca$|_utm|gat?$|gat_)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Soundowl.net\" f=\"Soundowl.net.xml\"><rule from=\"^http://assets\\.soundowl\\.net/\" to=\"https://d1mvw875i08plx.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Sounds True\" f=\"Sounds-True.xml\"><rule from=\"^http://(?:www\\.)?soundstrue\\.com/((?:assets/|media)\\.soundstrue\\.com/|catalog/|/?components/|css/|directaccess/|email/|google/ga\\.js|linkshare/|pages/popup_shipping\\.php|shipping/|shop/(?:login\\.do|player/|st_assets/)|wakeup/|pages/popup_shipping\\.php)\" to=\"https://www.soundstrue.com/$1\"/><rule from=\"^http://assets\\.soundstrue\\.com/\" to=\"https://assets.soundstrue.com/\"/><rule from=\"^http://components\\.soundstrue\\.com/\" to=\"https://assets.soundstrue.com/components/public/\"/></ruleset>", "<ruleset name=\"Soundslice.com\" f=\"Soundslice.com.xml\"><rule from=\"^http://soundslice\\.com/\" to=\"https://www.soundslice.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Soup.io (partial)\" default_off=\"failed ruleset test\" f=\"Soup.io.xml\"><exclusion pattern=\"^http://www\\.soup\\.io/(?!/*(?:favicon\\.ico|images/|login(?:$|[?/])))\"/><securecookie host=\"^\\.\" name=\"^__(?:qca$|utm)\"/><rule from=\"^http://(\\w)\\.asset\\.soup\\.io/\" to=\"https://asset-$1.soup.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Soup CDN.com\" f=\"Soup_CDN.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Source-Elements.com (partial)\" f=\"Source-Elements.com.xml\"><exclusion pattern=\"^http://source-elements\\.com/+(?!css/|favicon\\.ico|images/|(?:login|purchase|rentals)(?:$|[?/]))\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SourceAFRICA.net\" f=\"SourceAFRICA.net.xml\"><rule from=\"^http://(?:www\\.)?sourceafrica\\.net/\" to=\"https://sourceafrica.net/\"/></ruleset>", "<ruleset name=\"SourceCoast (partial)\" f=\"SourceCoast.xml\"><rule from=\"^http://(www\\.)?sourcecoast\\.com/($|\\?|components/|images/|jfbconnect/|media/|plugins/|templates/)\" to=\"https://$1sourcecoast.com/$2\"/></ruleset>", "<ruleset name=\"SourceFed (partial)\" f=\"SourceFed.xml\"><rule from=\"^http://cdn\\.sourcefednews\\.com/\" to=\"https://d1l31vajhvnn7o.cloudfront.net/\"/></ruleset>", "<ruleset name=\"SourceForge.jp\" f=\"SourceForge.jp.xml\"><rule from=\"^http://www\\.sourceforge\\.jp/\" to=\"https://sourceforge.jp/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SourceForge.net\" f=\"SourceForge.net.xml\"><rule from=\"^http://(\\w+)\\.svn\\.sourceforge\\.net/\" to=\"https://$1.svn.sourceforge.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SourceMaking\" default_off=\"expired\" f=\"SourceMaking.xml\"><securecookie host=\"^\\.sourcemaking\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?sourcemaking\\.com/\" to=\"https://sourcemaking.com/\"/></ruleset>", "<ruleset name=\"SourceTree app.com\" f=\"SourceTree_app.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Source Conference.com\" default_off=\"refused\" f=\"Source_Conference.com.xml\"><securecookie host=\"^(?:www\\.)?sourceconference\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sourced.fm\" f=\"Sourced.fm.xml\"><securecookie host=\"^\\.sourced\\.fm$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sourcefabric.com (partial)\" f=\"Sourcefabric.com.xml\"><securecookie host=\"^account\\.sourcefabric\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?sourcefabric\\.com/[^?]*\\??$\" to=\"https://www.sourcefabric.org/\"/><rule from=\"^http://(?:www\\.)?sourcefabric\\.com/[^?]*\" to=\"https://www.sourcefabric.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sourcefabric.org\" f=\"Sourcefabric.org.xml\"><securecookie host=\"^(?:dev|login|wiki|www)\\.sourcefabric\\.org$\" name=\".+\"/><rule from=\"^http://help\\.sourcefabric\\.org/\" to=\"https://sourcefabricberlin.zendesk.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sourcefire.com\" f=\"Sourcefire.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?sourcefire\\.com/[^?]*\" to=\"https://www.cisco.com/c/en/us/products/security/index.html\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sourcegraph.com\" f=\"Sourcegraph.com.xml\"><securecookie host=\"^sourcegraph\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sourcesoftdownload.com\" default_off=\"failed ruleset test\" f=\"Sourcesoftdownload.com.xml\"><securecookie host=\"^\\.sourcesoftdownload\\.com$\" name=\".+\"/><rule from=\"^http://www\\.sourcesoftdownload\\.com/\" to=\"https://sourcesoftdownload.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sourceware.org (partial)\" f=\"Sourceware.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sous-Surveillance.fr\" f=\"Sous-Surveillance.fr.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"South by Southwest (partial)\" f=\"South-by-Southwest.xml\"><securecookie host=\"^cart\\.sxsw\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"South China Morning Post (partial)\" f=\"South_China_Morning_Post.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"South Devon.ac.uk (partial)\" default_off=\"failed ruleset test\" f=\"South_Devon.ac.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"South Glos.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"South_Glos.gov.uk.xml\"><exclusion pattern=\"http://jobs\\.southglos\\.gov\\.uk/+(?![Ii]mages/|favicon\\.ico|install/|login\\.aspx)\"/><securecookie host=\"^\\.\" name=\"^ARRAffinity$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"South Lanarkshire.gov.uk (partial)\" f=\"South_Lanarkshire.gov.uk.xml\"><securecookie host=\"^(?!\\.southlanarkshire\\.gov\\.uk$).\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Southampton.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"Southampton.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Southbank Centre.co.uk (partial)\" default_off=\"failed ruleset test\" f=\"Southbank_Centre.co.uk.xml\"><exclusion pattern=\"^http://shop\\.southbankcentre\\.co\\.uk/+(?!favicon\\.ico|images/|includes/|user/)\"/><exclusion pattern=\"^http://ticketing\\.southbankcentre\\.co\\.uk/+(?!favicon\\.ico|sites/|(?:support-us/trusts-foundations|visitor-info/directions-and-opening-times)/*(?:$|\\?))\"/><exclusion pattern=\"^http://www\\.southbankcentre\\.co\\.uk/+(?!$|\\?|(?:about-us|shop-eat-drink|support-us/membership|venues/royal-festival-hall|visitor-info/access|visitor-info/directions-and-opening-times|whatson)(?:$|[?/])|(?:buy-membership|find)/*(?:$|\\?)|favicon\\.ico|sites/)\"/><securecookie host=\"^\\.shop(?:cms)?\\.southbankcentre\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://southbankcentre\\.co\\.uk/\" to=\"https://www.southbankcentre.co.uk/\"/><rule from=\"^http://www\\.southbankcentre\\.co\\.uk/+buy-membership/*(?=$|\\?)\" to=\"https://www.southbankcentre.co.uk/support-us/membership\"/><rule from=\"^http://www\\.southbankcentre\\.co\\.uk/+find/*(?:$|\\?.*)\" to=\"https://www.southbankcentre.co.uk/whatson\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Southend.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"Southend.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SouthernElectric\" platform=\"mixedcontent\" f=\"SouthernElectric.xml\"><rule from=\"^http://(?:www\\.)?southern-electric\\.co\\.uk/\" to=\"https://www.southern-electric.co.uk/\"/></ruleset>", "<ruleset name=\"Southern CT.edu (partial)\" f=\"Southern_CT.edu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Southwark.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"Southwark.gov.uk.xml\"><securecookie host=\"^\\.\" name=\"^(?:_gat?|TestCookie)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Southwest Research Institute (partial)\" default_off=\"self-signed\" f=\"Southwest-Research-Institute.xml\"><rule from=\"^http://(?:www\\.)?boulder\\.swri\\.edu/\" to=\"https://www.boulder.swri.edu/\"/></ruleset>", "<ruleset name=\"Sovereign Man.com\" f=\"Sovereign_Man.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Soylent.com (partial)\" f=\"Soylent.com.xml\"><securecookie host=\"^(discourse|www)\\.soylent\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Soylent News.org (partial)\" f=\"SoylentNews.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sozialdemokratische Partei Deutschlands\" f=\"Sozialdemokratische_Partei_Deutschlands.xml\"><rule from=\"^http://spd\\.de/\" to=\"https://www.spd.de/\"/><rule from=\"^http://([^/:@]+)?\\.spd\\.de/\" to=\"https://$1.spd.de/\"/></ruleset>", "<ruleset name=\"Sozialismus.info\" f=\"Sozialismus.info.xml\"><rule from=\"^http://sozialismus\\.info/\" to=\"https://www.sozialismus.info/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Space Inch (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Space-Inch.xml\"><rule from=\"^http://(?:www\\.)?godownloadsongs\\.com/\" to=\"https://godownloadsongs.com/\"/><rule from=\"^http://(?:www\\.)?skipscreen\\.com/\" to=\"https://skipscreen.com/\"/></ruleset>", "<ruleset name=\"Space.com store\" default_off=\"failed ruleset test\" f=\"Space.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Space2u (partial)\" f=\"Space2u.xml\"><exclusion pattern=\"^http://(?:www\\.)?space2u\\.com/(?!accadm/base/auth\\.php|files/login\\.php|images/)\"/><securecookie host=\"^(?:owa|webmail2)\\.space2u\\.com$\" name=\".+\"/><rule from=\"^http://(owa\\.|webmail2\\.|www\\.)?space2u\\.com/\" to=\"https://$1space2u.com/\"/></ruleset>", "<ruleset name=\"SpacePolicyOnline.com\" default_off=\"mismatched\" f=\"SpacePolicyOnline.com.xml\"><securecookie host=\"^.*\\.spacepolicyonline\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?spacepolicyonline\\.com/\" to=\"https://www.spacepolicyonline.com/\"/></ruleset>", "<ruleset name=\"SpaceTelescope.org\" f=\"SpaceTelescope.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SpaceUp.org\" default_off=\"mismatched\" f=\"SpaceUp.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SWeb.ru\" f=\"SpaceWeb.xml\"><securecookie host=\"^\\.sweb\\.ru$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SpaceX\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"SpaceX.xml\"><rule from=\"^http://(?:www\\.)?spacex\\.com/\" to=\"https://spacex.com/\"/></ruleset>", "<ruleset name=\"Space Industry News\" default_off=\"failed ruleset test\" f=\"Space_Industry_News.xml\"><rule from=\"^http://(?:www\\.)?spaceindustrynews\\.com/\" to=\"https://spaceindnews.wpengine.com/\"/></ruleset>", "<ruleset name=\"Space Launch Report.com\" default_off=\"mismatched\" f=\"Space_Launch_Report.com.xml\"><rule from=\"^http://(?:www\\.)?spacelaunchreport\\.com/\" to=\"https://spacelaunchreport.com/\"/></ruleset>", "<ruleset name=\"Space Telescope Science Institute (partial)\" f=\"Space_Telescope_Science_Institute.xml\"><securecookie host=\"^archive\\.stsci\\.edu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spaceweather PHONE\" f=\"Spaceweather-PHONE.xml\"><securecookie host=\"^spaceweatherphone\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?spaceweatherphone\\.com/\" to=\"https://spaceweatherphone.com/\"/></ruleset>", "<ruleset name=\"SpamGourmet\" f=\"SpamGourmet.com.xml\"><rule from=\"^http://secure\\.spamgourmet\\.com/\" to=\"https://www.spamgourmet.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"spamicity.info\" f=\"Spamicity.info.xml\"><securecookie host=\"^spamicity\\.info$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spanair\" default_off=\"failed ruleset test\" f=\"Spanair.xml\"><rule from=\"^http://spanair\\.com/\" to=\"https://spanair.com/\"/><rule from=\"^http://([^/:@\\.]+)\\.spanair\\.com/\" to=\"https://$1.spanair.com/\"/></ruleset>", "<ruleset name=\"Spankwire (partial)\" default_off=\"expired\" f=\"Spankwire.xml\"><rule from=\"^http://(?:www\\.)?spankwire\\.com/\" to=\"https://www.spankwire.com/\"/><securecookie host=\"^(?:www\\.)?spankwire\\.com$\" name=\".*\"/></ruleset>", "<ruleset name=\"Spark-Summit.org\" f=\"Spark-Summit.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spark.ru\" f=\"Spark.ru.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SparkLabs.com\" f=\"SparkLabs.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sparked\" f=\"Sparked.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sparkfun.com\" default_off=\"failed ruleset test\" f=\"Sparkfun.xml\"><securecookie host=\"^(?:forum)?\\.sparkfun\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sparkle Project\" f=\"Sparkle-Project.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sparklit\" f=\"Sparklit.xml\"><securecookie host=\"^\\.sparklit\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sparkstudios.com\" default_off=\"failed ruleset test\" f=\"Sparkstudios.com.xml\"><rule from=\"^http://www\\.sparkstudios\\.com/\" to=\"https://www.sparkstudios.com/\"/><rule from=\"^http://sparkstudios\\.com/\" to=\"https://www.sparkstudios.com/\"/></ruleset>", "<ruleset name=\"Spartafx.com\" default_off=\"failed ruleset test\" f=\"Spartafx.com.xml\"><securecookie host=\"^(?:w*\\.)?spartafx\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Spartan Institute (partial)\" default_off=\"failed ruleset test\" f=\"Spartan_Institute.xml\"><securecookie host=\"^(?:w*\\.)?thespartaninstitute\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sparx.org.nz\" default_off=\"failed ruleset test\" f=\"Sparx.org.nz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sparx Trading.com (false MCB)\" platform=\"mixedcontent\" f=\"Sparx_Trading.com-falsemixed.xml\"><securecookie host=\"^\\.sparxtrading\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?sparxtrading\\.com/\" to=\"https://www.sparxtrading.com/\"/></ruleset>", "<ruleset name=\"Sparx Trading.com (partial)\" f=\"Sparx_Trading.com.xml\"><rule from=\"^http://(?:www\\.)?sparxtrading\\.com/(?=favicon\\.ico|wp-content/|wp-includes/)\" to=\"https://www.sparxtrading.com/\"/></ruleset>", "<ruleset name=\"SpatialBuzz.com (problematic)\" default_off=\"expired, self-signed\" f=\"SpatialBuzz.com-problematic.xml\"><securecookie host=\"^www\\.spatialbuzz\\.com$\" name=\".+\"/><rule from=\"^http://(ftp|git|logs|monitor|sbfs|www)\\.spatialbuzz\\.com/\" to=\"https://$1.spatialbuzz.com/\"/></ruleset>", "<ruleset name=\"SpatialBuzz.com (partial)\" f=\"SpatialBuzz.com.xml\"><securecookie host=\"^fs\\.spatialbuzz\\.com$\" name=\".+\"/><rule from=\"^http://((?:admin|api|cdn2?|demo|fs|maps|splunk|vpn)\\.)?spatialbuzz\\.com/\" to=\"https://$1spatialbuzz.com/\"/></ruleset>", "<ruleset name=\"SpatialPoint\" f=\"SpatialPoint.xml\"><rule from=\"^http://(?:www\\.)?spatialpoint\\.com/\" to=\"https://spatialpoint.com/\"/></ruleset>", "<ruleset name=\"SpeakPipe.com\" f=\"SpeakPipe.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Speak Your Silence\" f=\"Speak_Your_Silence.xml\"><securecookie host=\"^\\.?speakyoursilence\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Speakeasy.net (partial)\" f=\"Speakeasy.net.xml\"><securecookie host=\"^(?:www\\.)?speakeasy\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Speaker Deck.com\" f=\"Speaker_Deck.com.xml\"><securecookie host=\"^speakerdeck\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Speaker Exchange\" f=\"Speaker_Exchange.xml\"><securecookie host=\"^(?:w*\\.)?reconingspeakers\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SpeakyChat.com\" f=\"SpeakyChat.com.xml\"><securecookie host=\"^(?:w*\\.)?speaky(?:chat|web)\\.com$\" name=\".+\"/><rule from=\"^http://((?:download|install|www)\\.)?speakychat\\.com/\" to=\"https://$1speakychat.com/\"/><rule from=\"^http://(www\\.)?speakyweb\\.com/\" to=\"https://$1speakyweb.com/\"/></ruleset>", "<ruleset name=\"Special-trade.de\" f=\"Special-trade.de.xml\"><rule from=\"^http://(?:www\\.)?special-trade\\.de/\" to=\"https://www.special-trade.de/\"/></ruleset>", "<ruleset name=\"SpecialForces.com\" default_off=\"expired, missing certificate chain\" f=\"SpecialForces.xml\"><securecookie host=\"^(?:.+\\.)?specialforces\\.com$\" name=\".+\"/><rule from=\"^http://specialforces\\.com/\" to=\"https://www.specialforces.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Specialized Products Company (partial)\" f=\"Specialized_Products_Company.xml\"><rule from=\"^http://(?:www\\.)?specialized\\.net/($|\\?|Specialized/(?:App_Themes|Checkout|images|Login\\.aspx|Repository|styles|WebResource\\.axd)(?:$|\\?|/))\" to=\"https://www.specialized.net/$1\"/></ruleset>", "<ruleset name=\"Specific Media (mismatches)\" default_off=\"mismatch, self-signed\" f=\"Specific-Media-mismatches.xml\"><rule from=\"^http://(?:(creatives\\.)|www\\.)?specificmedia\\.co\\.uk/\" to=\"https://$1specificmedia.co.uk/\"/></ruleset>", "<ruleset name=\"Specific Media (partial)\" default_off=\"failed ruleset test\" f=\"Specific-Media.xml\"><rule from=\"^http://(cm|smp)\\.specificmedia\\.com/\" to=\"https://$1.specificmedia.com/\"/><rule from=\"^http://smp\\.specificmedia\\.net/\" to=\"https://smp.specificmedia.net/\"/></ruleset>", "<ruleset name=\"Specificclick.net\" f=\"Specificclick.xml\"><securecookie host=\"^\\.\" name=\"^(?:ct|c?ug)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://dg\\.specificclick\\.net/\" to=\"https://dp.specificclick.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spectator.org (partial)\" default_off=\"expired\" f=\"Spectator.org.xml\"><securecookie host=\"^\\.(?:www\\.)?spectator\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?spectator\\.org/\" to=\"https://spectator.org/\"/></ruleset>", "<ruleset name=\"Specto.io\" f=\"Specto.io.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spectraflow.com\" default_off=\"failed ruleset test\" f=\"Spectraflow.com.xml\"><securecookie host=\"^(?:www)?\\.spectraflow\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spectrum.com\" f=\"Spectrum.com.xml\"><securecookie host=\"^(?:business\\.|(?:media|www)\\.business\\.|www\\.)?spectrum\\.com$\" name=\".+\"/><securecookie host=\"^\\.business\\.spectrum\\.com$\" name=\"^PrefID$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SpectrumBusiness.net (partial)\" f=\"SpectrumBusiness.net.xml\"><exclusion pattern=\"^http://www\\.spectrumbusiness\\.net/(?!support(?:$|[?/]))\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spectrum Business Insights.com\" f=\"Spectrum_Business_Insights.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Speed Dreams\" default_off=\"mismatch, self-signed\" f=\"Speed-Dreams.xml\"><securecookie host=\"^(?:.*\\.)?speed-dreams\\.org$\" name=\".*\"/><rule from=\"^http://www\\.speed-dreams\\.org/\" to=\"https://speed-dreams.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SPEED-BURGER.com\" f=\"SpeedBurger.xml\"><rule from=\"^http://speed-burger\\.com/\" to=\"https://www.speed-burger.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SpeedCrunch.org\" default_off=\"mismatched\" f=\"SpeedCrunch.org.xml\"><rule from=\"^http://(?:www\\.)?speedcrunch\\.org/\" to=\"https://speedcrunch.org/\"/></ruleset>", "<ruleset name=\"SpeedPPC (partial)\" f=\"SpeedPPC.xml\"><securecookie host=\"^(?:w*\\.)?speedppc\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SpeedTree.com (partial)\" f=\"SpeedTree.com.xml\"><securecookie host=\"^\\.speedtree\\.com$\" name=\"^_(?:opt_\\w+|_utm)\\w$\"/><securecookie host=\"^(?:\\.?store|www)\\.speedtree\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Speed World Grafix.com\" default_off=\"failed ruleset test\" f=\"Speed_World_Grafix.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Speedcoin.org (partial)\" f=\"Speedcoin.org.xml\"><exclusion pattern=\"^http://(?:www\\.)?speedcoin\\.org:2750\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Speedof.me\" f=\"Speedof.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Speedrun.com\" f=\"Speedrun.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Speedtest.net (partial)\" default_off=\"Breaks site\" f=\"Speedtest.net.xml\"><exclusion pattern=\"^http://c\\.speedtest\\.net/crossdomain\\.xml\"/><exclusion pattern=\"^http://www\\.speedtest\\.net/+(?:$|\\?)\"/><rule from=\"^http://c\\.speedtest\\.net/\" to=\"https://www.speedtest.net/\"/><rule from=\"^http://(?:www\\.)?speedtest\\.net/\" to=\"https://www.speedtest.net/\"/></ruleset>", "<ruleset name=\"Speedyshare.com\" default_off=\"failed ruleset test\" f=\"Speedyshare.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"spench.net\" default_off=\"expired, mismatched, self-signed\" f=\"Spench.net.xml\"><securecookie host=\"^\\.spench\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?spench\\.net/\" to=\"https://www.spench.net/\"/><rule from=\"^http://wiki\\.spench\\.net/\" to=\"https://wiki.spench.net/\"/></ruleset>", "<ruleset name=\"Spendabit.co\" f=\"Spendabit.co.xml\"><securecookie host=\"^spendabit\\.co$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spendbitcoins\" default_off=\"failed ruleset test\" f=\"Spendbitcoins.xml\"><securecookie host=\"^(?:w*\\.)?spendbitcoins\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sphere.com\" f=\"Sphere.com.xml\"><rule from=\"^http://sphere\\.com/\" to=\"https://www.sphere.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spice-space.org\" default_off=\"mismatched\" f=\"Spice-space.org.xml\"><rule from=\"^http://(?:www\\.)?spice-space\\.org/\" to=\"https://www.spice-space.org/\"/></ruleset>", "<ruleset name=\"spicebox\" f=\"Spicebox.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spiceworks.com\" default_off=\"failed ruleset test\" f=\"Spiceworks.xml\"><exclusion pattern=\"^http://swagshop\\.spiceworks\\.com/+(?![Ss]hared/)\"/><securecookie host=\"^\\.spiceworks\\.com$\" name=\"^(?:ref|spiceworks_community|_swndat|_swnid)$\"/><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^(?!swagshop\\.)\\w\" name=\".\"/><rule from=\"^http://spiceworks\\.com/\" to=\"https://www.spiceworks.com/\"/><rule from=\"^http://developers\\.spiceworks\\.com/\" to=\"https://spiceworks.github.io/developers.spiceworks.com//\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spiceworks static.com\" f=\"Spiceworks_static.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spiderweb Software\" platform=\"mixedcontent\" f=\"Spiderweb-Software.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:(?:www\\.)?spidweb|www\\.spiderwebsoftware)\\.com/\" to=\"https://spiderwebsoftware.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spiegel QC (partial)\" default_off=\"failed ruleset test\" f=\"Spiegel-QC.xml\"><securecookie host=\"^\\.quality-channel\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spiegel.de (partial)\" default_off=\"failed ruleset test\" f=\"Spiegel.xml\"><exclusion pattern=\"^http://www\\.spiegel\\.de/(?!images/|layout/|pics/)\"/><securecookie host=\"^(?:abo|count|magazin|ophirum)\\.spiegel\\.de$\" name=\".*\"/><rule from=\"^http://cdn\\d?\\.spiegel\\.de/\" to=\"https://www.spiegel.de/\"/><rule from=\"^http://shop\\.spiegel\\.de/[^?]*\\??$\" to=\"https://www.amazon.de/b?ie=UTF8&node=2478999031\"/><rule from=\"^http://shop\\.spiegel\\.de/[^?]*\\?\" to=\"https://www.amazon.de/b?ie=UTF8&node=2478999031&\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spielfuerdeinland.de\" default_off=\"failed ruleset test\" f=\"Spielfuerdeinland.de.xml\"><exclusion pattern=\"^http:\\/\\/www.spielfuerdeinland.de\\/sfdl\\/app\\/Spiel-fuer-dein-Land-Die-App-und-Download-Links,onlineapp100.html\"/><securecookie host=\"^(www\\.)?spielfuerdeinland\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spiil.org\" f=\"Spiil.org.xml\"><rule from=\"^http://spiil\\.org/\" to=\"https://www.spiil.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Splinu.dk\" f=\"Spilnu.dk.xml\"><securecookie host=\"^www\\.spilnu\\.dk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?spilnu\\.dk/\" to=\"https://www.spilnu.dk/\"/></ruleset>", "<ruleset name=\"Spin.de (broken)\" default_off=\"reported broken\" f=\"Spin.de.xml\"><rule from=\"^http://(?:www\\.)?spin\\.de/\" to=\"https://www.spin.de/\"/></ruleset>", "<ruleset name=\"spinics.net (partial)\" f=\"Spinics.net.xml\"><rule from=\"^http://spinics\\.net/\" to=\"https://www.spinics.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spirit Airlines\" platform=\"mixedcontent\" f=\"SpiritAirlines.xml\"><rule from=\"^http://spirit\\.com/\" to=\"https://spirit.com/\"/><rule from=\"^http://www\\.spirit\\.com/\" to=\"https://www.spirit.com/\"/></ruleset>", "<ruleset name=\"spkcn.com\" f=\"Spkcn.com.xml\"><rule from=\"^http://spkcn\\.com/\" to=\"https://www.spkcn.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Splash Data.com (partial)\" default_off=\"failed ruleset test\" f=\"Splash_Data.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Splash that.com\" f=\"Splash_that.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Split Reason Clothing\" default_off=\"failed ruleset test\" f=\"Split_Reason_Clothing.xml\"><securecookie host=\"^(?:www\\.)?splitreason\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sploder.com (partial)\" f=\"Sploder.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"splone.com\" f=\"Splone.com.xml\"><rule from=\"^http://www\\.splone\\.com/\" to=\"https://splone.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"spogo.co.uk\" default_off=\"failed ruleset test\" f=\"Spogo.co.uk.xml\"><securecookie host=\"^(?:www\\.)?spogo\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spoki\" f=\"Spoki.xml\"><securecookie host=\"^.*\\.spoki\\.lv$\" name=\".*\"/><rule from=\"^http://(?:img\\d\\w\\.)?www\\.spoki\\.lv/\" to=\"https://www.spoki.lv/\"/></ruleset>", "<ruleset name=\"Spontex.org\" f=\"Spontex.org.xml\"><securecookie host=\"^(?:(?:adminmedia|m|www|fr|en|stats|media)?\\.)?spontex\\.org$\" name=\".+\"/><securecookie host=\"^spontex\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spoonful.com\" default_off=\"failed ruleset test\" f=\"Spoonful.com.xml\"><rule from=\"^http://(?:static\\.|www\\.)?spoonful\\.com/\" to=\"https://spoonful.com/\"/></ruleset>", "<ruleset name=\"Sport1.de\" f=\"Sport1.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sportifik\" f=\"Sportifik.xml\"><rule from=\"^http://sportifik\\.com/\" to=\"https://www.sportifik.com/\"/><rule from=\"^http://([^/:@]+)?\\.sportifik\\.com/\" to=\"https://$1.sportifik.com/\"/></ruleset>", "<ruleset name=\"Sports Authority (partial)\" default_off=\"failed ruleset test\" f=\"Sports_Authority.xml\"><securecookie host=\"^www\\.sportsauthority\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?sportsauthority\\.com/\" to=\"https://www.sportsauthority.com/\"/></ruleset>", "<ruleset name=\"Sportxx.ch (partial)\" f=\"Sportxx.ch.xml\"><exclusion pattern=\"^http://www\\.sportxx\\.ch/$\"/><rule from=\"^http://www\\.sportxx\\.ch/([\\.\\-/%\\w]+)\\.(css|gif|jpg|js|png|svg|woff)$\" to=\"https://www.sportxx.ch/$1.$2\"/><rule from=\"^http://cdn([1-4])\\.sportxx\\.ch/\" to=\"https://cdn$1.sportxx.ch/\"/></ruleset>", "<ruleset name=\"Sportys\" f=\"Sportys.xml\"><securecookie host=\"^(?:.*\\.)?sportys\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spot.IM\" default_off=\"failed ruleset test\" f=\"Spot.IM.xml\"><rule from=\"^http://spot\\.im/\" to=\"https://www.spot.im/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SpotXchange.com (partial)\" f=\"SpotXchange.com.xml\"><rule from=\"^http://((?:search|sync\\.search|www)\\.)?spotxchange\\.com/\" to=\"https://$1spotxchange.com/\"/></ruleset>", "<ruleset name=\"SCDN.co (problematic)\" default_off=\"mismatched\" f=\"Spotify-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spotify.com (partial)\" f=\"Spotify.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://download\\.spotify\\.com/\" to=\"https://d1clcicqv97n4s.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spotplanet\" default_off=\"failed ruleset test\" f=\"Spotplanet.xml\"><securecookie host=\"^\\.spotplanet\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spotware.com\" f=\"Spotware.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Sprawl.org\" default_off=\"Certificate expired\" f=\"Sprawl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spreadshirt\" f=\"Spreadshirt.xml\"><securecookie host=\"\\w+\\.spreadshirt\\.(at|be|ch|co\\.uk|com|com\\.au|de|dk|es|fi|fr|ie|it|net|nl|no|pl|se)$\" name=\".+\"/><exclusion pattern=\"^http://(www\\.)?spreadshirt\\.(at|be|ch|co\\.uk|com|com\\.au|de|dk|es|fi|fr|ie|it|net|nl|no|pl|se)/\"/><rule from=\"^http://(\\w+)\\.spreadshirt\\.(at|be|ch|co\\.uk|com|com\\.au|de|dk|es|fi|fr|ie|it|net|nl|no|pl|se)/\" to=\"https://$1.spreadshirt.$2/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spring-TNS.net (partial)\" default_off=\"failed ruleset test\" f=\"Spring-TNS.net.xml\"><exclusion pattern=\"^http://(?:[^./]+\\.){2,}spring-tns\\.net/\"/><securecookie host=\".\\.spring-tns\\.net$\" name=\".\"/><rule from=\"^http://(?!ssl-)([^.]+)\\.spring-tns\\.net/\" to=\"https://ssl-$1.spring-tns.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spring.io (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Spring.io-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spring.io (partial)\" f=\"Spring.io.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spring.org.uk\" default_off=\"expired, self-signed\" f=\"Spring.org.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SpringFiles.com (partial)\" f=\"SpringFiles.com.xml\"><securecookie host=\"^(www\\.|admin\\.)?springfiles\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spring RTS.com\" f=\"Spring_RTS.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Springer-Gabler.de\" default_off=\"mismatched\" f=\"Springer-Gabler.de.xml\"><securecookie host=\"^springer-gabler\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?springer-gabler\\.de/\" to=\"https://springer-gabler.de/\"/></ruleset>", "<ruleset name=\"Springer Zahnmedizin.de (partial)\" default_off=\"failed ruleset test\" f=\"Springer-Medizin.de.xml\"><securecookie host=\"^registrierung\\.springer-medizin\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Springer.com (partial)\" f=\"Springer.xml\"><securecookie host=\".\\.springer\\.com$\" name=\".\"/><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><rule from=\"^http://springer\\.com/\" to=\"https://www.springer.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Springer Zahnmedizin.de\" default_off=\"failed ruleset test\" f=\"Springer_Zahnmedizin.de.xml\"><securecookie host=\"^(?:fortbildung\\.|www\\.)?springerzahnmedizin\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Springserve\" f=\"Springserve.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Springshare.com (partial)\" f=\"Springshare.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sprint.com (partial)\" f=\"Sprint.com.xml\"><securecookie host=\"^.*\\.sprint(?:pcs)?\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?sprint\\.com/\" to=\"https://www.sprint.com/\"/><rule from=\"^http://community\\.sprint\\.com/favicon\\.ico\" to=\"https://community.sprint.com/favicon.ico\"/><rule from=\"^http://(coverage|discover|image[234]|mysprint|ria|shop2?)\\.sprint\\.com/\" to=\"https://$1.sprint.com/\"/><rule from=\"^http://support\\.sprint\\.com/(catalog/image|global/(?:cs|image))s/\" to=\"https://support.sprint.com/$1s/\"/><rule from=\"^http://manage\\.sprintpcs\\.com/\" to=\"https://manage.sprintpcs.com/\"/></ruleset>", "<ruleset name=\"Sprint Buyback.com (partial)\" f=\"Sprint_Buyback.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sprint Rebates.com\" f=\"Sprint_Rebates.com.xml\"><rule from=\"^http://(?:www\\.)?sprintrebates\\.com/\" to=\"https://www.sprintrebates.com/\"/></ruleset>", "<ruleset name=\"SpritesMods.com\" default_off=\"failed ruleset test\" f=\"SpritesMods.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spriza.com\" f=\"Spriza.com.xml\"><securecookie host=\"^(?:www)?\\.spriza\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?spriza\\.com/\" to=\"https://www.spriza.com/\"/></ruleset>", "<ruleset name=\"Sprout (partial)\" default_off=\"failed ruleset test\" f=\"Sprout.xml\"><rule from=\"^http://(?:www\\.)?sproutinc\\.com/\" to=\"https://sproutinc.com/\"/></ruleset>", "<ruleset name=\"SproutVideo.com\" f=\"SproutVideo.com.xml\"><securecookie host=\"^(?:videos\\.)?sproutvideo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"spsn.net\" f=\"Spsn.net.xml\"><securecookie host=\"^(?:www\\.)?spsn\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SpyShelter\" f=\"SpyShelter.xml\"><securecookie host=\"^www\\.spyshelter\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spyderco.com\" f=\"Spyderco.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spylog.com (partial)\" f=\"Spylog.com.xml\"><securecookie host=\"^\\.spylog\\.com$\" name=\".+\"/><rule from=\"^http://(?:u\\d+\\.02|counter)\\.spylog\\.com/\" to=\"https://counter.spylog.com/\"/></ruleset>", "<ruleset name=\"Sqsp.com\" f=\"Sqsp.com.xml\"><rule from=\"^http://([\\w-]+\\.)?sqsp\\.com/\" to=\"https://$1squarespace.com/\"/></ruleset>", "<ruleset name=\"Square\" f=\"Square.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Square Penguin.co.uk\" f=\"Square_Penguin.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"squarefree.com\" f=\"Squarefree.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Squarespace clients\" default_off=\"mismatched\" f=\"Squarespace-clients.xml\"><rule from=\"^http://(?:www\\.)?ohnopodcast\\.com/(display|layout|storage|universal)/\" to=\"https://www.ohnopodcast.com/$1/\"/></ruleset>", "<ruleset name=\"Squarespace.com (partial)\" f=\"Squarespace.xml\"><exclusion pattern=\"^http://static\\.squarespace\\.com/universal/scripts-compressed/\\w+-\\w{20}-min.js$\"/><exclusion pattern=\"^http://sg-links\\.squarespace\\.com\"/><securecookie host=\".*\\.squarespace\\.com$\" name=\".+\"/><rule from=\"^http://cachefly\\.squarespace\\.com/\" to=\"https://squarespace.cachefly.net/\"/><rule from=\"^http://s3\\.media\\.squarespace\\.com/\" to=\"https://s3.amazonaws.com/s3.media.squarespace.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Squid Solutions (partial)\" f=\"Squid_Solutions.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Squirrel-webmail.surftown.com\" default_off=\"failed ruleset test\" f=\"Squirrel-webmail.surftown.com.xml\"><rule from=\"^http://squirrel-webmail\\.surftown\\.com/\" to=\"https://squirrel-webmail.surftown.com/\"/></ruleset>", "<ruleset name=\"SquirrelMail.org\" f=\"SquirrelMail.org.xml\"><securecookie host=\"^squirrelmail\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"srcclr.com\" default_off=\"failed ruleset test\" f=\"Srcclr.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"srcclr.help\" f=\"Srcclr.help.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Srcf.net\" f=\"Srcf.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"srclib.org\" f=\"Srclib.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"srdrvp.com\" default_off=\"missing certificate chain\" f=\"Srdrvp.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Srna.sk\" f=\"Srna.sk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"srvv.net\" f=\"Srvv.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SRWare.net\" f=\"Srware.xml\"><securecookie host=\"^(?:.*\\.)?srware.net$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SsbKyh.com (partial)\" f=\"SsbKyh.com.xml\"><rule from=\"^http://cdn\\.ssbkyh\\.com/\" to=\"https://djhznh41oxwef.cloudfront.net/\"/></ruleset>", "<ruleset name=\"sslcert35.com\" f=\"Sslcert35.com.xml\"><rule from=\"^http://(?:www\\.)?sslcert35\\.com/(?:\\?.*)?$\" to=\"https://webhosting.att.com/\"/><rule from=\"^http://([\\w-]+)\\.sslcert35\\.com/\" to=\"https://$1.sslcert35.com/\"/></ruleset>", "<ruleset name=\"ssldomain.com (partial)\" f=\"Ssldomain.com.xml\"><exclusion pattern=\"^http://www\\.\"/><securecookie host=\".+\\.ssldomain\\.com$\" name=\".+\"/><rule from=\"^http://([\\w-]+)\\.ssldomain\\.com/\" to=\"https://$1.ssldomain.com/\"/></ruleset>", "<ruleset name=\"ssltrust.us (partial)\" default_off=\"failed ruleset test\" f=\"Ssltrust.us.xml\"><rule from=\"^http://test\\.ssltrust\\.us/\" to=\"https://test.ssltrust.us/\"/></ruleset>", "<ruleset name=\"sstest.jp\" f=\"Sstest.jp.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"St-Andrews.ac.uk (partial)\" f=\"St-Andrews.ac.uk.xml\"><securecookie host=\"^\\.(?:.+\\.)?st-andrews\\.ac\\.uk$\" name=\"^__utm\\w+$\"/><securecookie host=\"^(?:risweb|www\\.vacancies)\\.st-andrews\\.ac\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?st-andrews\\.ac\\.uk/\" to=\"https://www.st-andrews.ac.uk/\"/><rule from=\"^http://(risweb|sparc|www\\.vacancies)\\.st-andrews\\.ac\\.uk/\" to=\"https://$1.st-andrews.ac.uk/\"/></ruleset>", "<ruleset name=\"stShrt.com\" default_off=\"failed ruleset test\" f=\"StShrt.com.xml\"><securecookie host=\"^\\.stshrt\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"St Graber.org\" f=\"St_Graber.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"St. Kitts Zipline (partial)\" default_off=\"failed ruleset test\" f=\"St_Kitts_Zipline.xml\"><securecookie host=\"^secure\\.stkittszipline\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?stkittszipline\\.com/images/logoImage_14\\.png\" to=\"https://secure.stkittszipline.com/images/ms/logoImage_14.png\"/><rule from=\"^http://secure\\.stkittszipline\\.com/\" to=\"https://secure.stkittszipline.com/\"/></ruleset>", "<ruleset name=\"St L Beacon.org\" default_off=\"failed ruleset test\" f=\"St_L_Beacon.org.xml\"><securecookie host=\"^(?:www\\.)?stlbeacon\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sta.sh\" f=\"Sta.sh.xml\"><securecookie host=\"^\\.sta\\.sh$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stable Host.com (partial)\" f=\"Stable-Host.xml\"><securecookie host=\"^\\.stablehost\\.com$\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^billing\\.stablehost\\.com$\" name=\".*\"/><rule from=\"^http://cdn\\.stablehost\\.com/\" to=\"https://www.stablehost.com/images/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stack Exchange\" f=\"Stack-Exchange.xml\"><exclusion pattern=\"^http://blog\\.gaming\\.stackexchange\\.com\"/><securecookie host=\"^blogoverflow\\.com$\" name=\".+\"/><securecookie host=\"^askubuntu\\.com$\" name=\".+\"/><securecookie host=\"^meta\\.askubuntu.com$\" name=\".+\"/><securecookie host=\"^mathoverflow\\.net$\" name=\".+\"/><securecookie host=\"^meta\\.mathoverflow.net$\" name=\".+\"/><securecookie host=\"^clc\\.serverfault\\.com$\" name=\".+\"/><securecookie host=\"^meta\\.serverfault\\.com$\" name=\".+\"/><securecookie host=\"^serverfault\\.com$\" name=\".+\"/><securecookie host=\"^stackauth\\.com$\" name=\".+\"/><securecookie host=\"^dev\\.stackauth\\.com$\" name=\".+\"/><securecookie host=\"^stackexchange\\.com$\" name=\".+\"/><securecookie host=\"^([\\w-]+)\\.stackexchange\\.com$\" name=\".+\"/><securecookie host=\"^chat\\.stackoverflow\\.com$\" name=\".+\"/><securecookie host=\"^careers\\.stackoverflow\\.com$\" name=\".+\"/><securecookie host=\"^ja\\.stackoverflow\\.com$\" name=\".+\"/><securecookie host=\"^meta\\.stackoverflow\\.com$\" name=\".+\"/><securecookie host=\"^pt\\.stackoverflow\\.com$\" name=\".+\"/><securecookie host=\"^ru\\.stackoverflow\\.com$\" name=\".+\"/><securecookie host=\"^stackoverflow\\.com$\" name=\".+\"/><securecookie host=\"^superuser\\.com$\" name=\".+\"/><securecookie host=\"^meta\\.superuser\\.com$\" name=\".+\"/><securecookie host=\"^sstatic\\.net$\" name=\".+\"/><securecookie host=\"^cdn\\.sstatic\\.net$\" name=\".+\"/><securecookie host=\"^cdn-chat\\.sstatic\\.net$\" name=\".+\"/><securecookie host=\"^stackapps\\.com$\" name=\".+\"/><securecookie host=\"^teststackoverflow\\.com$\" name=\".+\"/><rule from=\"^http://meta\\.([\\w-]+)\\.stackexchange\\.com/\" to=\"https://$1.meta.stackexchange.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stack.nl\" platform=\"cacert\" f=\"Stack.nl.xml\"><securecookie host=\".+\\.stack\\.nl$\" name=\".+\"/><rule from=\"^http://(dbadmin|koelkast|((?:bugs|forum|wiki)\\.)?uqm|webmail|websites|www)\\.stack\\.nl/\" to=\"https://$1.stack.nl/\"/></ruleset>", "<ruleset name=\"StackCommerce.com (partial)\" f=\"StackCommerce.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"StackMonkey.com\" default_off=\"failed ruleset test\" f=\"StackMonkey.com.xml\"><securecookie host=\"^www\\.stackmonkey\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?stackmonkey\\.com/\" to=\"https://www.stackmonkey.com/\"/></ruleset>", "<ruleset name=\"StackSocial.com (partial)\" default_off=\"failed ruleset test\" f=\"StackSocial.xml\"><securecookie host=\"^\\.stacksocial\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stacklet.com (partial)\" default_off=\"missing certificate chain\" f=\"Stacklet.com.xml\"><securecookie host=\"^(?:\\.secure)?\\.stacklet\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stacksity.com\" default_off=\"failed ruleset test\" f=\"Stacksity.com.xml\"><securecookie host=\"^\\.?stacksity\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stadt-Zuerich.ch\" f=\"Stadt-Zuerich.ch.xml\"><securecookie host=\"^www\\.stadt-zuerich\\.ch$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?stadt-zuerich\\.ch/\" to=\"https://www.stadt-zuerich.ch/\"/></ruleset>", "<ruleset name=\"Caschys Blog\" default_off=\"failed ruleset test\" f=\"Stadt-bremerhaven.de.xml\"><rule from=\"^http://m\\.stadt-bremerhaven\\.de/\" to=\"https://m.stadt-bremerhaven.de/\"/><rule from=\"^http://(?:www\\.)?stadt-bremerhaven\\.de/\" to=\"https://stadt-bremerhaven.de/\"/></ruleset>", "<ruleset name=\"Stadtwerke Bamberg\" f=\"Stadtwerke-Bamberg.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stadtwerke Ingolstadt\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Stadtwerke-Ingolstadt.xml\"><rule from=\"^http://www\\.sw\\-i\\.de/\" to=\"https://www.sw-i.de/\"/><rule from=\"^http://portal\\.sw\\-in\\.de/\" to=\"https://portal.sw-in.de/\"/></ruleset>", "<ruleset name=\"Staffordshire.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"Staffordshire.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Staffordshire Police\" f=\"StaffordshirePolice.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stalkr.net (partial)\" f=\"Stalkr.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stallman.org\" f=\"Stallman.org.xml\"><rule from=\"^https?://ww\\.stallman\\.org/\" to=\"https://www.stallman.org/\"/><rule from=\"^http://(www\\.)?stallman\\.org/\" to=\"https://$1stallman.org/\"/></ruleset>", "<ruleset name=\"Stan Deyo.com\" f=\"Stan_Deyo.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stand for Children (partial)\" default_off=\"failed ruleset test\" f=\"Stand-for-Children.xml\"><securecookie host=\"^.*\\.greatteachersgreatschools\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?greatteachersgreatschools\\.org/\" to=\"https://www.greatteachersgreatschools.org/\"/><rule from=\"^http://(www\\.)?stand\\.org/(national/(?:donate|join)|sites/)\" to=\"https://$1stand.org/$2\"/></ruleset>", "<ruleset name=\"Stand Against Spying.org\" default_off=\"failed ruleset test\" f=\"Stand_Against_Spying.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stand Up to Cancer (partial)\" default_off=\"failed ruleset test\" f=\"Stand_Up_to_Cancer.xml\"><securecookie host=\"^(?:secure)?\\.standup2cancer\\.(?:ca|org)$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?standup2cancer\\.(ca|org)/\" to=\"https://www.standup2cancer.$1/\"/><rule from=\"^http://s(ecure|hop|i)\\.standup2cancer\\.org/\" to=\"https://s$1.standup2cancer.org/\"/><rule from=\"^http://su2c\\.standup2cancer\\.org/(?=_www_images/|favicon\\.ico|styles/)\" to=\"https://d3ltd4zpclv1en.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Standaard.be (mixed content)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Standaard.be-mixed.xml\"><rule from=\"^http://www\\.standaard\\.be/\" to=\"https://www.standaard.be/\"/></ruleset>", "<ruleset name=\"Standaard.be (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Standaard.be.xml\"><exclusion pattern=\"^http://www\\.standaard\\.be/+(?!extra/)\"/><securecookie host=\"^shop\\.standaard\\.be$\" name=\".+\"/><rule from=\"^http://shop\\.standaard\\.be/+(?=$|\\?)\" to=\"https://shop.standaard.be/CORELIO-Standaard-Site/index-nl_BE\"/><rule from=\"^http://(shop\\.)?standaard\\.be/\" to=\"https://$1standaard.be/\"/><rule from=\"^http://(?:2|cdn2|www)\\.standaard(?:cdn)?\\.be/\" to=\"https://www.standaard.be/\"/><rule from=\"^http://dating\\.standaard\\.be/(?=css/|favicon\\.ico|js/|pics/|pht/)\" to=\"https://secure.datinglab.net/\"/></ruleset>", "<ruleset name=\"Standard Ebooks.com\" f=\"Standard_Ebooks.com.xml\"><securecookie host=\"^standardebooks\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Standish Management.com\" default_off=\"redirects to http\" f=\"Standish-Management.xml\"><exclusion pattern=\"^http://(?:www\\.)?standishmanagement\\.com/(?:$|wp-content/)\"/><securecookie host=\".*\\.standishmanagement\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stanford.edu (problematic)\" default_off=\"expired, mismatched, missing certificate chain, self-signed\" f=\"Stanford-University-problematic.xml\"><exclusion pattern=\"^http://soe\\.stanford\\.edu/+(?!$)\"/><securecookie host=\"^cdc-tree\\.stanford\\.edu$\" name=\".+\"/><securecookie host=\"^\\.(?:bgm|engineering|maps)\\.stanford\\.edu$\" name=\".+\"/><rule from=\"^http://foswiki\\.stanford\\.edu/\" to=\"https://yuba.stanford.edu/\"/><rule from=\"^http://soe\\.stanford\\.edu/+$\" to=\"https://engineering.stanford.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stanford.edu (partial)\" default_off=\"failed ruleset test\" f=\"Stanford-University.xml\"><exclusion pattern=\"^http://125\\.stanford\\.edu/+(?!wp-content/)\"/><exclusion pattern=\"^http://arts\\.stanford\\.edu/+(?!wp-content/|wp-includes/)\"/><exclusion pattern=\"^http://bodoni\\.stanford\\.edu/(?!WebCat_Local/Images/)\"/><exclusion pattern=\"^http://crypto\\.stanford\\.edu/flashproxy/embed\\.html\"/><exclusion pattern=\"^http://plato\\.stanford\\.edu/+(?!css/|symbols/)\"/><exclusion pattern=\"^http://scopeblog\\.stanford\\.edu/+(?!wp-content/|wp-includes/)\"/><exclusion pattern=\"^http://scpd\\.stanford\\.edu/+(?!css/|favicon\\.ico|public/|restricted/|upload/)\"/><exclusion pattern=\"^http://(?:www-cs-students|xenon)\\.stanford\\.edu/+~\"/><securecookie host=\"^(?:3dqlab|adminguide|alumni|alumni-gsb|anderson|\\.answers|\\.bewell|campus-map|cap|classx|continuingstudies|dams|ehsappprd1|eip|epgy|explorecourses|\\.facultyaffairs|\\.facultyaffairs-humsci|give|givinghistory|\\.gse-it|hannahousetours|healthysteps|honorrolls|\\.itservices|lagunita|lane|(?:www\\.)?law|(?:blogs)?\\.law|\\.lbre|\\.learndrupal|library|makeagift|makeapledge|makeapledgepayment|maven|mentoring|\\.mla|mvideos|mygsb|mail\\.ohns|\\.ohsx|openflow|otldisclosure|owamail|parents|pgnet|pilot-eip|\\.porterdrive|sallie|\\.sdlf|sdr|searchworks|\\.siepr|(?:\\.news|www6)\\.slac\\|spectrum|\\.stanfordcareers|stanfordwho|steppingout|\\.techcommons|weblogin|webauth1|xsearch).stanford\\.edu$\" name=\".+\"/><rule from=\"^http://askjane\\.stanford\\.edu/.*\" to=\"https://studentaffairs.stanford.edu/askjane\"/><rule from=\"^http://bcnm\\.stanford\\.edu/\" to=\"https://live-bcnm-2015.pantheon.berkeley.edu/\"/><rule from=\"^http://brannerlibrary\\.stanford\\.edu/+\" to=\"https://library.stanford.edu/branner/\"/><rule from=\"^http://sao\\.stanford\\.edu/+\" to=\"https://cao.carnegiescience.edu/\"/><rule from=\"^http://compgeo\\.stanford\\.edu/+\" to=\"https://pangea.stanford.edu/programs/compgeo/\"/><rule from=\"^http://computing\\.stanford\\.edu/+\" to=\"https://itservices.stanford.edu/service/computing\"/><rule from=\"^http://www\\.cs\\.stanford\\.edu/\" to=\"https://cs.stanford.edu/\"/><rule from=\"^http://cwp\\.stanford\\.edu/[^?]*\" to=\"https://med.stanford.edu/irt/teaching/cwp.html\"/><rule from=\"^http://dataclass\\.stanford\\.edu/+\" to=\"https://itservices.stanford.edu/guide/riskclassifications\"/><rule from=\"^http://dor\\.stanford\\.edu/\" to=\"https://doresearch.stanford.edu/\"/><rule from=\"^http://email\\.stanford\\.edu/+\" to=\"https://itservices.stanford.edu/service/emailcalendar/email/\"/><rule from=\"^http://endoflife\\.stanford\\.edu/[^?]*\" to=\"https://palliative.stanford.edu/endoflife/\"/><rule from=\"^http://eps\\.stanford\\.edu/+\" to=\"https://med.stanford.edu/eps/\"/><rule from=\"^http://ess\\.stanford\\.edu/+\" to=\"https://itservices.stanford.edu/service/ess/\"/><rule from=\"^http://fingate\\.stanford\\.edu/\" to=\"https://www.stanford.edu/group/fms/fingate/\"/><rule from=\"^http://globalecology\\.stanford\\.edu/\" to=\"https://dge.stanford.edu/\"/><rule from=\"^http://gse\\.stanford\\.edu/+\" to=\"https://ed.stanford.edu/\"/><rule from=\"^http://gsehelpsu\\.stanford\\.edu/+([^?]*)(?:$|\\?.*)\" to=\"https://helpsu.stanford.edu/helpsu/3.0/helpsu-form?pcat=GSEIT&dept=Graduate%20School%20of%20Education$1\"/><rule from=\"^http://alumni\\.gsb\\.stanford\\.edu/\" to=\"https://www.gsb.stanford.edu/alumni/\"/><rule from=\"^http://helpcenter\\.stanford\\.edu/+\" to=\"https://cardinalatwork.stanford.edu/faculty-staff-help-center/\"/><rule from=\"^http://hipaa\\.stanford\\.edu/+\" to=\"https://privacy.stanford.edu/\"/><rule from=\"^http://hrg\\.stanford\\.edu/+\" to=\"https://med.stanford.edu/hrg/\"/><rule from=\"^http://infocenter\\.stanford\\.edu/+\" to=\"https://library.stanford.edu/libraries/green/about\"/><rule from=\"^http://italerts\\.stanford\\.edu/+\" to=\"https://uitalerts.stanford.edu/\"/><rule from=\"^http://itmetrics\\.stanford\\.edu/+\" to=\"https://dashboard.stanford.edu/\"/><rule from=\"^http://itwinterclos(?:ur)?e\\.stanford\\.edu/+\" to=\"https://itservices.stanford.edu/organization/winterclosure\"/><rule from=\"^http://mededresearch\\.stanford\\.edu/+\" to=\"https://med.stanford.edu/mededresearch/\"/><rule from=\"^http://netreg\\.stanford\\.edu/+\" to=\"https://rescomp.stanford.edu/iprequest/\"/><rule from=\"^http://orderit\\.stanford\\.edu/+\" to=\"https://pmg-prd.stanford.edu/sc/default.aspx\"/><rule from=\"^http://plans-review\\.stanford\\.edu/[^?]\" to=\"https://lbre-apps.stanford.edu/cfapps/prod/plansreview/\"/><rule from=\"^http://psychiatry\\.stanford\\.edu/[^?]*\" to=\"https://med.stanford.edu/psychiatry.html\"/><rule from=\"^http://rcc\\.stanford\\.edu/+\" to=\"https://rescomp.stanford.edu/directory/rcc.php\"/><rule from=\"^http://refunds\\.stanford\\.edu/+\" to=\"https://survey.az1.qualtrics.com/jfe/form/SV_bkFFEBROps4VrrD\"/><rule from=\"^http://search\\.stanford\\.edu/\" to=\"https://www.stanford.edu/search/\"/><rule from=\"^http://securecomputing\\.stanford\\.edu/+\" to=\"https://itservices.stanford.edu/security/\"/><rule from=\"^http://shibboleth\\.stanford\\.edu/+\" to=\"https://itservices.stanford.edu/service/shibboleth\"/><rule from=\"^http://signalblog\\.stanford\\.edu/+\" to=\"https://teachingcommons.stanford.edu/teaching-talk\"/><rule from=\"^http://slac\\.stanford\\.edu/\" to=\"https://www.slac.stanford.edu/\"/><rule from=\"^http://sparkmed\\.stanford\\.edu/+\" to=\"https://med.stanford.edu/sparkmed/\"/><rule from=\"^http://stanfordmedicine\\.stanford\\.edu/.*\" to=\"https://med.stanford.edu/\"/><rule from=\"^http://stucomp\\.stanford\\.edu/+(?=$|\\?)\" to=\"https://acomp.stanford.edu/students\"/><rule from=\"^http://stucomp\\.stanford\\.edu/\" to=\"https://acomp.stanford.edu/\"/><rule from=\"^http://sunsport\\.stanford\\.edu/+(?:$|\\?.*)\" to=\"https://med.stanford.edu/sunsport.html\"/><rule from=\"^http://sunsport\\.stanford\\.edu/\" to=\"https://med.stanford.edu/\"/><rule from=\"^http://tba\\.stanford\\.edu/+\" to=\"https://itservices.stanford.edu/service/techtraining/byappointment\"/><rule from=\"^http://techbriefings\\.stanford\\.edu/+\" to=\"https://itservices.stanford.edu/service/techtraining/techbriefings\"/><rule from=\"^http://trachea\\.stanford\\.edu/+(?:$|\\?.*)\" to=\"https://med.stanford.edu/ohns/education/residency/portal/\"/><rule from=\"^http://trachea\\.stanford\\.edu/\" to=\"https://med.stanford.edu/\"/><rule from=\"^http://tram\\.stanford\\.edu/+\" to=\"https://med.stanford.edu/tram/\"/><rule from=\"^http://uhr\\.stanford\\.edu/+\" to=\"https://cardinalatwork.stanford.edu/\"/><rule from=\"^http://uitcomms\\.stanford\\.edu/+([^?]*)(?:\\?.*)?\" to=\"https://helpsu.stanford.edu/helpsu/3.0/helpsu-form?pcat=uitcomm$1\"/><rule from=\"^http://vpol\\.stanford\\.edu/+\" to=\"https://vptl.stanford.edu/\"/><rule from=\"^http://webdesign\\.stanford\\.edu/+\" to=\"https://itservices.stanford.edu/service/web/design/\"/><rule from=\"^http://webservices\\.stanford\\.edu/+\" to=\"https://itservices.stanford.edu/service/web/designdev\"/><rule from=\"^http://worklife\\.stanford\\.edu/+\" to=\"https://cardinalatwork.stanford.edu/benefits-rewards/worklife/\"/><rule from=\"^http://www-cs(?:-faculty)?\\.stanford\\.edu/\" to=\"https://cs.stanford.edu/\"/><rule from=\"^http://www-cs-students\\.stanford\\.edu/\" to=\"https://xenon.stanford.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stanford.edu (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Stanford.edu-falsemixed.xml\"><rule from=\"^http://knight\\.stanford\\.edu/+\" to=\"https://jsk.stanford.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stanford Healthcare.org\" f=\"Stanford_Healthcare.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stanford Hospital.org\" f=\"Stanford_Hospital.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stanford Med.org\" default_off=\"failed ruleset test\" f=\"Stanford_Med.org.xml\"><rule from=\"^http://www\\.stanfordmed\\.org/.*\" to=\"https://stanfordhealthcare.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Staples.com\" f=\"Staples.com.xml\"><securecookie host=\"^(?:www)?\\.staples\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?staples\\.com/\" to=\"https://www.staples.com/\"/></ruleset>", "<ruleset name=\"Star Motorcycles\" f=\"Star-Motorcycles.xml\"><securecookie host=\"^www\\.starmotorcycles\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?starmotorcycles\\.com/\" to=\"https://www.starmotorcycles.com/\"/></ruleset>", "<ruleset name=\"StarKist\" f=\"StarKist.xml\"><rule from=\"^http://(?:www\\.)?starkist\\.com/sites/\" to=\"https://www.starkist.com/sites/\"/></ruleset>", "<ruleset name=\"StarMoney.de\" f=\"StarMoney.de.xml\"><securecookie host=\"^\\.starmoney\\.de$\" name=\"^(?:phpbb3_\\w+_(?:k|sid|u)|sessioncookie)$\"/><securecookie host=\"^www\\.starmoney\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?starmoney\\.de/\" to=\"https://www.starmoney.de/\"/><rule from=\"^http://shop\\.starmoney\\.de/\" to=\"https://shop.starmoney.de/\"/></ruleset>", "<ruleset name=\"StarNet.com (partial)\" f=\"StarNet.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?starnet\\.com/(?!css/|favicon\\.ico|images/|js/|skin/)\"/><rule from=\"^http://(?:ssl\\.|www\\.)?starnet\\.com/\" to=\"https://ssl.starnet.com/\"/></ruleset>", "<ruleset name=\"StarRez\" f=\"StarRez.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"StarTech.com (partial)\" f=\"StarTech.com.xml\"><exclusion pattern=\"^http://www\\.startech\\.com/+(?!(?:Account|SalesInquiry|TechSupport|eNews)(?:$|\\?)|favicon\\.ico)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"StarWars.com (partial) (mismatches)\" default_off=\"mismatched\" f=\"StarWars.com.xml\"><rule from=\"^http://(www\\.)?starwars\\.com/(?!$|\\?)\" to=\"https://$1starwars.com/\"/></ruleset>", "<ruleset name=\"Star Product Reviews (partial)\" f=\"Star_Product_Reviews.xml\"><securecookie host=\"^admin\\.starproductreviews\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Star Search Casting.com (partial)\" f=\"Star_Search_Casting.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?starsearchcasting\\.com/+(?!favicon\\.ico|Images_thumbnails/|img/)\"/><rule from=\"^http://(?:(cdn\\.)|www\\.)?starsearchcasting\\.com/\" to=\"https://$1starsearchcasting.com/\"/></ruleset>", "<ruleset name=\"Star Trek (partial)\" default_off=\"failed ruleset test\" f=\"Star_Trek.xml\"><securecookie host=\"^store\\.startrek\\.com$\" name=\".+\"/><rule from=\"^http://store\\.startrek\\.com/\" to=\"https://store.startrek.com/\"/></ruleset>", "<ruleset name=\"Starbucks.com (partial)\" f=\"Starbucks.com.xml\"><securecookie host=\"^\\.starbucks\\.com$\" name=\"^(?:visid_)?incap_\\w+$\"/><securecookie host=\"^sgsmsupplier(?:test)?\\.starbucks\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?starbucks\\.com/(?=[aA]ccounts(?:$|[?/])|favicon\\.ico|resources/|static/|sysiplocation/)\" to=\"https://www.starbucks.com/\"/><rule from=\"^http://sgsmsupplier(test)?\\.starbucks\\.com/\" to=\"https://sgsmsupplier$1.starbucks.com/\"/></ruleset>", "<ruleset name=\"Stardock (partial)\" default_off=\"failed ruleset test\" f=\"Stardock.xml\"><securecookie host=\"^(?:store\\.|www\\.)?stardock\\.com$\" name=\".+\"/><securecookie host=\"^services\\.stardock\\.net$\" name=\".+\"/><rule from=\"^http://(store\\.|www\\.)?stardock\\.com/\" to=\"https://$1stardock.com/\"/><rule from=\"^http://(?:www\\.)?stardock\\.net/[^?]*(\\?.*)?\" to=\"https://www.stardock.com/corporatesolutions$1\"/><rule from=\"^http://services\\.stardock\\.net/\" to=\"https://services.stardock.net/\"/></ruleset>", "<ruleset name=\"Stardrifter.org\" default_off=\"self-signed\" f=\"Stardrifter.org.xml\"><rule from=\"^http://stardrifter\\.org/\" to=\"https://www.stardrifter.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Starfield Technologies, Inc.\" default_off=\"failed ruleset test\" f=\"Starfield.xml\"><securecookie host=\"^(?:.*\\.)?starfieldtech\\.com$\" name=\".+\"/><rule from=\"^http://((?:certs|certificates|seal|tracedseals|www)\\.)?starfieldtech\\.com/\" to=\"https://$1starfieldtech.com/\"/></ruleset>", "<ruleset name=\"Starship.xyz\" f=\"Starship.xyz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Start.me (mismatched)\" default_off=\"mismatched\" platform=\"mixedcontent\" f=\"Start.me-problematic.xml\"><securecookie host=\"^\\.start\\.me$\" name=\".+\"/><rule from=\"^http://start\\.me/\" to=\"https://www.start.me/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Start.me (partial)\" f=\"Start.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"StartBox.com\" f=\"StartBox.xml\"><rule from=\"^http://(?:docs\\.|www\\.)?wpstartbox\\.com/\" to=\"https://webdevstudios.com/\"/></ruleset>", "<ruleset name=\"StartCom\" default_off=\"failed ruleset test\" f=\"StartCom.xml\"><exclusion pattern=\"ocsp\\.startssl\"/><exclusion pattern=\"\\.crl$\"/><exclusion pattern=\"\\.crt$\"/><securecookie host=\".*\" name=\".*\"/><rule from=\"^http://startcom\\.org/\" to=\"https://www.startcom.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"StartEngine.com\" f=\"StartEngine.com.xml\"><securecookie host=\"^www\\.startengine\\.com$\" name=\".+\"/><rule from=\"^http://startengine\\.com/\" to=\"https://www.startengine.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"StartLogic\" f=\"StartLogic.xml\"><securecookie host=\"^(?:.*\\.)?startlogic\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"StartMail.com\" default_off=\"failed ruleset test\" f=\"StartMail.xml\"><securecookie host=\"^www\\.startmail\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"StartingPage.com\" f=\"StartingPage.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Startlab.sk\" f=\"Startlab.sk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Startnext.com\" f=\"Startnext.com.xml\"><securecookie host=\"^\\.startnext\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Starwood Hotels & Resorts\" f=\"Starwood-Hotels-and-Resorts.xml\"><securecookie host=\"^\\.?www\\.starwoodhotels\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?starwoodhotels\\.com/\" to=\"https://www.starwoodhotels.com/\"/></ruleset>", "<ruleset name=\"StatOwl.com (partial)\" default_off=\"failed ruleset test\" f=\"StatOwl.com.xml\"><rule from=\"^http://collector\\.statowl\\.com/\" to=\"https://collector.statowl.com/\"/></ruleset>", "<ruleset name=\"Statcounter.com (false MCB)\" platform=\"mixedcontent\" f=\"Statcounter.com-falsemixed.xml\"><securecookie host=\"^\\.statcounter\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Statcounter.com (partial)\" f=\"Statcounter.xml\"><exclusion pattern=\"^http://(?:blog|gs)\\.statcounter\\.com/\"/><securecookie host=\"^(?!gs\\.).\" name=\".\"/><rule from=\"^http://www\\.statcounter\\.com/\" to=\"https://statcounter.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"StateFarm\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"StateFarm.xml\"><securecookie host=\"^(?:.+\\.)?statefarm\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?statefarm\\.com/\" to=\"https://www.statefarm.com/\"/><rule from=\"^http://(sfsecuremail|online2?)\\.statefarm\\.com/\" to=\"https://$1.statefarm.com/\"/></ruleset>", "<ruleset name=\"State of Alaska (partial)\" f=\"State_of_Alaska.xml\"><securecookie host=\"^acpe\\.alaska\\.gov$\" name=\".+\"/><rule from=\"^http://acpe\\.alaska\\.gov/\" to=\"https://acpe.alaska.gov/\"/><rule from=\"^http://aps\\.alaska\\.gov/\\??$\" to=\"https://acpe.alaska.gov/STUDENT-PARENT/Grants_Scholarships/Alaska_Performance_Scholarship.aspx\"/><rule from=\"^http://aps\\.alaska\\.gov/\\?(.+)\" to=\"https://acpe.alaska.gov/Default.aspx?$1\"/></ruleset>", "<ruleset name=\"State of Delaware (partial)\" default_off=\"failed ruleset test\" f=\"State_of_Delaware.xml\"><rule from=\"^http://delecorp\\.delaware\\.gov/\" to=\"https://delecorp.delaware.gov/\"/><rule from=\"^http://(?:www\\.)?delaware\\.gov/\" to=\"https://www.delaware.gov/\"/></ruleset>", "<ruleset name=\"State of Oregon\" f=\"State_of_Oregon.xml\"><securecookie host=\"^www\\.oregon\\.gov$\" name=\".+\"/><rule from=\"^http://(firstlady\\.|governor\\.|www\\.)?oregon\\.gov/\" to=\"https://$1oregon.gov/\"/><rule from=\"^http://(?:www\\.)?budget\\.oregon\\.gov/(?:.*)\" to=\"https://www.oregon.gov/gov/priorities/pages/budget.aspx\"/></ruleset>", "<ruleset name=\"State of the Internet.com\" f=\"State_of_the_Internet.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Statesman Journal (partial)\" f=\"Statesman_Journal.xml\"><securecookie host=\"^www\\.statesmanjournal\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?statesmanjournal\\.com/\" to=\"https://www.statesmanjournal.com/\"/><rule from=\"^http://deals\\.statesmanjournal\\.com/(?:$|\\?.*)\" to=\"https://salem.planetdiscover.com/sp?aff=1180\"/><rule from=\"^http://deals\\.statesmanjournal\\.com/\" to=\"https://salem.planetdiscover.com/\"/></ruleset>", "<ruleset name=\"Statewatch.org\" default_off=\"expired, mismatched\" platform=\"mixedcontent\" f=\"Statewatch.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"static-Cisco.com\" f=\"Static-Cisco.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"static-Economist.com\" f=\"Static-Economist.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"StaticGen.com\" f=\"StaticGen.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"StaticWars.com\" f=\"StaticWars.com.xml\"><rule from=\"^http://(\\w+)\\.staticwars\\.com/\" to=\"https://$1.staticwars.com/\"/></ruleset>", "<ruleset name=\"staticflickr.com\" f=\"Static_Flickr.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Static Site Generators.net\" f=\"Static_Site_Generators.net.xml\"><securecookie host=\"^(?:\\.|www\\.)?staticsitegenerators\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?staticsitegenerators\\.net/\" to=\"https://staticsitegenerators.net/\"/></ruleset>", "<ruleset name=\"staticcache.org\" f=\"Staticcache.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"staticmy.com\" f=\"Staticmy.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"staticskynet.be\" default_off=\"failed ruleset test\" f=\"Staticskynet.be.xml\"><rule from=\"^http://common\\.staticskynet\\.be/\" to=\"https://common.staticskynet.be/\"/></ruleset>", "<ruleset name=\"Station L Rowing Club\" f=\"Station_L_Rowing_Club.xml\"><securecookie host=\"^(?:www\\.)?stationlrowingclub\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"StatistikamtBayern\" f=\"StatistikamtBayern.xml\"><rule from=\"^http://(?:www\\.)?statistik\\.bayern\\.de/\" to=\"https://www.statistik.bayern.de/\"/></ruleset>", "<ruleset name=\"Status.net (partial)\" f=\"Status.net.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"StatusCake.com (partial)\" f=\"StatusCake.com.xml\"><securecookie host=\"^www\\.statuscake\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"StatusPage.io\" f=\"StatusPage.io.xml\"><securecookie host=\".*\\.statuspage\\.io$\" name=\".+\"/><rule from=\"^http://blog\\.statuspage\\.io/\" to=\"https://status-page-blog.herokuapp.com/\"/><rule from=\"^http://meta\\.statuspage\\.io/\" to=\"https://metastatuspage.com/\"/><rule from=\"^http://([\\w-]+\\.)?statuspage\\.io/\" to=\"https://$1statuspage.io/\"/><rule from=\"^http://metastatuspage\\.com/\" to=\"https://metastatuspage.com/\"/><rule from=\"^http://status-page-blog\\.herokuapp\\.com/\" to=\"https://status-page-blog.herokuapp.com/\"/></ruleset>", "<ruleset name=\"Statushub.io\" default_off=\"failed ruleset test\" f=\"Statushub.io.xml\"><rule from=\"^http://mozillastatus\\.statushub\\.io/\" to=\"https://status.mozilla.org/\"/><rule from=\"^http://msuservicestatus\\.statushub\\.io/\" to=\"https://servicestatus.msu.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stavrovski.Net\" f=\"Stavrovski.Net.xml\"><securecookie host=\"^(?:www)?\\.stavrovski\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"StayClassy\" f=\"StayClassy.xml\"><securecookie host=\"^(?:www)?\\.stayclassy\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"StaySafeOnline.org\" f=\"StaySafeOnline.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stay Smart Online\" f=\"StaySmartOnline.xml\"><rule from=\"^http://(?:www\\.)?staysmartonline\\.gov\\.au/\" to=\"https://www.staysmartonline.gov.au/\"/><rule from=\"^http://(?:www\\.)?budd-e\\.staysmartonline\\.gov\\.au/\" to=\"https://budd-e.staysmartonline.gov.au/\"/></ruleset>", "<ruleset name=\"StayToday.com\" default_off=\"failed ruleset test\" f=\"StayToday.com.xml\"><securecookie host=\"^(?:www\\.)?staytoday\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"StayFriends\" platform=\"mixedcontent\" f=\"Stayfriends.xml\"><securecookie host=\"^(?:www)?\\.stayfriends\\.(?:at|ch|de)$\" name=\".+\"/><rule from=\"^http://(images\\.|www\\.)?stayfriends\\.(at|ch|de)/\" to=\"https://$1stayfriends.$2/\"/></ruleset>", "<ruleset name=\"std3.ru\" f=\"Std3.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Steadfast.net\" f=\"Steadfast.net.xml\"><securecookie host=\"^(?:support)?\\.steadfast\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Steaknshake.com\" f=\"Steaknshake.com.xml\"><rule from=\"^http://(?:www\\.)?steaknshake\\.com/\" to=\"https://www.steaknshake.com/\"/></ruleset>", "<ruleset name=\"StealthNet\" default_off=\"mismatched\" f=\"StealthNet.xml\"><rule from=\"^http://(?:www\\.)?stealthnet\\.de/\" to=\"https://stealthnet.de/\"/></ruleset>", "<ruleset name=\"Stealthy.io\" f=\"Stealthy.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Steam Powered.com (partial)\" default_off=\"Breaks some games\" f=\"Steam.xml\"><exclusion pattern=\"^http://store\\.steampowered\\.com/+(?!favicon\\.ico|(?:join|login|psn/beginsetup|search|software)(?:$|[?/])|public/images/)\"/><securecookie host=\"^partner\\.steampowered\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Steam Community.com (partial)\" f=\"Steam_Community.com.xml\"><securecookie host=\"^steamcommunity\\.com$\" name=\".+\"/><securecookie host=\"^\\.steamcommunity\\.com$\" name=\"^__utm\\w$\"/><exclusion pattern=\"^http://steamcommunity\\.com/broadcast/\"/><rule from=\"^http://(?:cdn\\.|www\\.)?steamcommunity\\.com/\" to=\"https://steamcommunity.com/\"/></ruleset>", "<ruleset name=\"Steam static.com (partial)\" default_off=\"Breaks some games\" f=\"Steam_static.com.xml\"><rule from=\"^http://cdn\\.akamai\\.steamstatic\\.com/\" to=\"https://steamcdn-a.akamaihd.net/\"/><rule from=\"^http://store\\.akamai\\.steamstatic\\.com/\" to=\"https://steamstore-a.akamaihd.net/\"/></ruleset>", "<ruleset name=\"Steamgames.com (partial)\" default_off=\"breaks some games\" f=\"Steamgames.com.xml\"><securecookie host=\"^partner\\.steamgames\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Steamid.eu\" f=\"Steamid.eu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Streamray.com (partial)\" f=\"Steamray.com.xml\"><securecookie host=\"^\\.steamray\\.com$\" name=\"^(?:AB_TRACKING|cams_tr|click_id_time|HISTORY|IP_COUNTRY|LOCATION_FROM_IP|REFERRAL_URL)$\"/><rule from=\"^http://graphics\\.streamray\\.com/\" to=\"https://secureimage.securedataimages.com/\"/><rule from=\"^http://webmaster\\.streamray\\.com/\" to=\"https://affiliates.streamray.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Steamrep.com\" f=\"Steamrep.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Steamspy.com\" f=\"Steamspy.com.xml\"><rule from=\"^http://www\\.steamspy\\.com/\" to=\"https://steamspy.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Steamunlock.com\" f=\"Steamunlock.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Steaw.com\" default_off=\"failed ruleset test\" f=\"Steaw.xml\"><rule from=\"^http://steaw\\.com/\" to=\"https://www.steaw.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SteelHousemedia.com (partial)\" f=\"SteelHousemedia.com.xml\"><securecookie host=\"^\\.steelhousemedia\\.com$\" name=\"^(?:guid|rt)$\"/><securecookie host=\"^\\.px\\.steelhousemedia\\.com$\" name=\".+\"/><rule from=\"^http://(cdn4s|dx|px|ww)\\.steelhousemedia\\.com/\" to=\"https://$1.steelhousemedia.com/\"/></ruleset>", "<ruleset name=\"Steeleye.com (partial)\" f=\"Steeleye.com.xml\"><securecookie host=\"^license\\.steeleye\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Steep and Cheap.com\" f=\"Steep_and_Cheap.com.xml\"><rule from=\"^http://steepandcheap\\.com/\" to=\"https://www.steepandcheap.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stefan-Betz.net\" f=\"Stefan-Betz.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Steganos.com\" f=\"Steganos.com.xml\"><securecookie host=\".*\\.steganos\\.com$\" name=\".+\"/><rule from=\"^http://((?:blog|securestore|www)\\.)?steganos\\.com/\" to=\"https://$1steganos.com/\"/></ruleset>", "<ruleset name=\"Stella Dot.com (partial)\" default_off=\"failed ruleset test\" f=\"Stella_and_Dot.xml\"><exclusion pattern=\"^http://(?:www\\.)?stelladot\\.com/(?!/*(?:bootstrap/|bootstrap-select/|common/|favicon\\.ico|images/|minify/|sdrand/|shop/account(?:create|login|forgot)(?:$|[?/])))\"/><securecookie host=\".\" name=\"^optimizely\"/><securecookie host=\"^[^.sw]\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stellar.org\" f=\"Stellar.org.xml\"><securecookie host=\"^\\.stellar\\.org$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stelter (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Stelter.xml\"><securecookie host=\"^(?:.*\\.)?gftplns\\.org$\" name=\".*\"/><rule from=\"^http://(www\\.)?(?:gftplns\\.org|plan\\.gs)/\" to=\"https://$1gftplns.org/\"/><rule from=\"^http://dashboard\\.stelter\\.com(:\\d{1,4})?/\" to=\"https://dashboard.stelter.com$1/\"/></ruleset>", "<ruleset name=\"Stemformatics.org\" f=\"Stemformatics.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stemulite Fitness Formula\" f=\"Stemulite_Fitness_Formula.xml\"><securecookie host=\"^\\.stemulitefitnessformula\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SternKom GmbH\" f=\"Sternkom.xml\"><rule from=\"^http://www\\.sternkom\\.de/\" to=\"https://www.sternkom.de/\"/></ruleset>", "<ruleset name=\"Steven Roddis\" f=\"StevenRoddis.xml\"><rule from=\"^http://(?:www\\.)?stevenroddis\\.com/\" to=\"https://www.stevenroddis.com/\"/></ruleset>", "<ruleset name=\"Stevens\" f=\"Stevens.xml\"><exclusion pattern=\"^http://(?:personal|www.math|www.cs|www.acc|guinness.cs|tarantula.phy|www.phy|tarantula.srcit|www.srcit|debian.srcit|ubuntu.srcit)\\.stevens\\.edu/.*\"/><rule from=\"^http://([^/:@\\.]+)\\.stevens\\.edu/\" to=\"https://$1.stevens.edu/\"/></ruleset>", "<ruleset name=\"Stevesie\" default_off=\"failed ruleset test\" f=\"Stevesie.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"stgbssint.com\" f=\"Stgbssint.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stickhet\" default_off=\"failed ruleset test\" f=\"Stickhet.xml\"><securecookie host=\"^\\.stickhet\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"stickyadstv.com\" f=\"Stickyadstv.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stirling.gov.uk (partial)\" f=\"Stirling.gov.uk.xml\"><exclusion pattern=\"^http://(?:www\\.)?stirling\\.gov\\.uk/+(?!(?:interpay|publicaccesslive)(?:$|[?/]))\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stitcher.com (partial)\" default_off=\"Breaks site\" f=\"Stitcher.xml\"><rule from=\"^http://(?:cloudfront\\.|limelight\\.|ec-cdn-)assets\\.stitcher\\.com/\" to=\"https://secureimg.stitcher.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"StockCharts.com (partial)\" f=\"StockCharts.xml\"><securecookie host=\"^(?:www\\.)?stockcharts\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"StockTwits (partial)\" f=\"StockTwits.xml\"><exclusion pattern=\"^http://(?:new\\.|www\\.)?stocktwits\\.com/(?!assets/|sign(?:in|up)(?:$|\\?|/))\"/><rule from=\"^http://(new\\.|www\\.)?stocktwits\\.com/\" to=\"https://$1stocktwits.com/\"/><rule from=\"^http://assets\\d\\.stocktwits\\.net/\" to=\"https://new.stocktwits.com/\"/></ruleset>", "<ruleset name=\"Stockton College (partial)\" f=\"Stockton_College.xml\"><securecookie host=\"^(?:bbweb|intraweb|go|piper|pssb)\\.stockton\\.edu$\" name=\".+\"/><rule from=\"^http://(?:www2?\\.)?stockton\\.edu/(?:\\?.*)?$\" to=\"https://intraweb.stockton.edu/eyos/page.cfm?siteID=197&pageID=5&layout=hp\"/><rule from=\"^http://admissions\\.stockton\\.edu/.*\" to=\"https://intraweb.stockton.edu/eyos/page.cfm?siteID=64&pageID=1\"/><rule from=\"^http://(aspweb|bbweb|go|intraweb|piper|webmail)\\.stockton\\.edu/\" to=\"https://$1.stockton.edu/\"/><rule from=\"^http://ezproxy\\.stockton\\.edu:8443/\" to=\"https://ezproxy.stockton.edu:8443/\"/><rule from=\"^http://libguides\\.stockton\\.edu/(css\\d*/|data/|include/|js\\d*/|process_home\\.php)\" to=\"https://libguides.com/$1\"/><rule from=\"^http://pssb\\.stockton\\.edu:9000/\" to=\"https://pssb.stockton.edu:9000/\"/></ruleset>", "<ruleset name=\"Stony Brook University (partial)\" default_off=\"failed ruleset test\" f=\"Stony_Brook_University.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://fsl\\.cs\\.sunysb\\.edu/\" to=\"https://www.fsl.cs.sunysb.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stop-Snoring-Mouthpiece.org (partial)\" default_off=\"failed ruleset test\" f=\"Stop-Snoring-Mouthpiece.org.xml\"><securecookie host=\"^(?:www)?\\.stop-snoring-mouthpiece\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stop-TTIP.org\" f=\"Stop-TTIP.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stop Cyber Spying.com\" default_off=\"failed ruleset test\" f=\"Stop_Cyber_Spying.com.xml\"><securecookie host=\"^(?:www\\.)?stopcyberspying\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stop Fast Track.com\" f=\"Stop_Fast_Track.com.xml\"><securecookie host=\"^\\.stopfasttrack\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stop Software Patents\" default_off=\"expired\" f=\"Stop_Software_Patents.xml\"><rule from=\"^http://(?:petition\\.|www\\.)?stopsoftwarepatents\\.eu/\" to=\"https://stopsoftwarepatents.eu/\"/></ruleset>", "<ruleset name=\"Stop Think Connect.org\" f=\"Stop_Think_Connect.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stop Watching.Us\" f=\"Stop_Watching_Us.xml\"><securecookie host=\"^\\.stopwatching\\.us$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stopbadware.org\" f=\"Stopbadware.org.xml\"><securecookie host=\"^\\.stopbadware\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stopthehacker.com\" f=\"Stopthehacker.com.xml\"><securecookie host=\"^\\.stopthehacker\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Storage-Bin.com\" f=\"Storage-Bin.com.xml\"><securecookie host=\"^\\.storage-bin\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?(secure\\.)?storage-bin\\.com/\" to=\"https://$1$2storage-bin.com/\"/></ruleset>", "<ruleset name=\"Store4Geeks.com\" f=\"Store4Geeks.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"StoreSecured.com (partial)\" f=\"StoreSecured.com.xml\"><securecookie host=\"^.+\\.storesecured\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?storesecured\\.com/\" to=\"https://www.storesecured.com/\"/><rule from=\"^http://(\\w+)\\.storesecured\\.com/\" to=\"https://$1.storesecured.com/\"/></ruleset>", "<ruleset name=\"storebot.me\" f=\"Storebot.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Storebrand\" f=\"Storebrand.no.xml\"><rule from=\"^http://storebrand\\.no/\" to=\"https://www.storebrand.no/\"/><rule from=\"^http://www\\.storebrand\\.no/\" to=\"https://www.storebrand.no/\"/></ruleset>", "<ruleset name=\"Storenvy (partial)\" f=\"Storenvy.xml\"><rule from=\"^http://(www\\.)?storenvy\\.com/((?:cart|join|login)(?:$|\\?)|(?:v2/)?images/|themes/)\" to=\"https://$1storenvy.com/$2\"/><rule from=\"^http://([\\w-]+)\\.storenvy\\.com/(favicon\\.ico|themes/)\" to=\"https://$1.storenvy.com/$2\"/></ruleset>", "<ruleset name=\"Storify.com\" default_off=\"failed ruleset test\" f=\"Storify.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Storm Internet.co.uk\" default_off=\"failed ruleset test\" f=\"Storm-Internet.xml\"><securecookie host=\"^www\\.storminternet\\.co\\.uk$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"StormFront.org\" f=\"StormFront.org.xml\"><securecookie host=\"^\\.stormfront\\.org$\" name=\".+\"/><rule from=\"^http://cdn\\.stormfront\\.org/\" to=\"https://www.stormfront.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"stormiq.com\" f=\"Stormiq.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stormpath.com\" f=\"Stormpath.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://status\\.stormpath\\.com/\" to=\"https://stormpath.statuspage.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Story Cubes.com\" f=\"Story_Cubes.com.xml\"><rule from=\"^http://(?:www\\.)?storycubes\\.com/\" to=\"https://www.storycubes.com/\"/></ruleset>", "<ruleset name=\"Storywrite (partial)\" f=\"Storywrite.xml\"><rule from=\"^http://(www\\.)?storywrite\\.com/(assets/|favicon\\.ico|images/|javascripts/|(?:login|store)(?:$|\\?|/))\" to=\"https://$1storywrite.com/$2\"/></ruleset>", "<ruleset name=\"stpeter.im (partial)\" default_off=\"failed ruleset test\" f=\"Stpeter.im.xml\"><rule from=\"^http://www\\.stpeter\\.im/\" to=\"https://stpeter.im/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"StrangeWorlds\" default_off=\"failed ruleset test\" f=\"StrangeWorlds.xml\"><rule from=\"^http://strangeworlds\\.co\\.uk/\" to=\"https://strangeworlds.co.uk/\"/></ruleset>", "<ruleset name=\"Straply\" default_off=\"failed ruleset test\" f=\"Straply.xml\"><securecookie host=\"^(?:www)?\\.straply\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Strasbourg.eu\" platform=\"mixedcontent\" f=\"Strasbourg.eu.xml\"><rule from=\"^http://(www\\.)?strasbourg\\.eu/\" to=\"https://www.strasbourg.eu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Strasweb.fr\" f=\"Strasweb.fr.xml\"><rule from=\"^http://(?:www\\.)?strasweb\\.fr/\" to=\"https://www.strasweb.fr/\"/></ruleset>", "<ruleset name=\"Stratechery.com\" f=\"Stratechery.com.xml\"><securecookie host=\"^forum\\.stratechery\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Strategic Management Society\" default_off=\"failed ruleset test\" f=\"Strategic_Management_Society.xml\"><securecookie host=\"^\\.strategicmanagement\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?strategicmanagement\\.net/\" to=\"https://strategicmanagement.net/\"/></ruleset>", "<ruleset name=\"Strategy Analytics.com\" f=\"Strategy_Analytics.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Strategysignals.com\" f=\"Strategysignals.com.xml\"><rule from=\"^http://strategysignals\\.com/\" to=\"https://www.strategysignals.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stratum 0\" f=\"Stratum_0.xml\"><rule from=\"^http://(p[ao]d\\.|www\\.)?stratum0\\.org/\" to=\"https://$1stratum0.org/\"/></ruleset>", "<ruleset name=\"Strava.com\" f=\"Strava.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Strava.cz\" f=\"Strava.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Strawpoll.me\" default_off=\"failed ruleset test\" f=\"Strawpoll.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stream.cz\" f=\"Stream.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"StreamMyGame\" f=\"StreamMyGame.xml\"><securecookie host=\"^(?:www\\.)?streammygame\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Streamfarm.net\" default_off=\"failed ruleset test\" f=\"Streamfarm.net.xml\"><exclusion pattern=\"^http://c22033\\-ls\\.i\\.core\\.cdn\\.streamfarm\\.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Streamtip.com\" f=\"Streamtip.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Street Art Utopia.com\" default_off=\"redirect loop\" f=\"Street_Art_Utopia.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Street Moda (partial)\" platform=\"mixedcontent\" f=\"Street_Moda.xml\"><securecookie host=\"^.*\\.streetmoda\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Strelkacard.ru\" f=\"Strelkacard.ru.xml\"><rule from=\"^http://www\\.strelkacard\\.ru/\" to=\"https://strelkacard.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Strem.io\" f=\"Stremio.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Strikingly.com (partial)\" f=\"Strikingly.com.xml\"><exclusion pattern=\"http://assets\\.strikingly\\.com/assets/[\\w\\d/-]+\\.js$\"/><exclusion pattern=\"^http://www\\.strikingly\\.com/a/t/pages/listing\\.html$\"/><exclusion pattern=\"^http://www\\.strikingly\\.com/r/v1\"/><exclusion pattern=\"^http://www\\.strikingly\\.com/s\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Strikingly CDN.com\" f=\"Strikingly_CDN.com.xml\"><securecookie host=\"^\\.strikinglycdn\\.com$\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stripe.com\" f=\"Stripe.com.xml\"><securecookie host=\"^(?:(?:answers|status|www)?\\.)?stripe\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"StripeCDN.com\" f=\"StripeCDN.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"StripeFees.com\" default_off=\"failed ruleset test\" f=\"StripeFees.com.xml\"><securecookie host=\"^\\.stripefees\\.com$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Strode-College.ac.uk (partial)\" f=\"Strode-College.ac.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"StroeerDigitalMedia\" f=\"Stroeerdigitalmedia.xml\"><rule from=\"^http://cdn\\.stroeerdigitalmedia\\.de/\" to=\"https://cdn.stroeerdigitalmedia.de/\"/></ruleset>", "<ruleset name=\"StrongLoop.com\" f=\"StrongLoop.com.xml\"><securecookie host=\"^\\.strongloop\\.com$\" name=\"^__cfdui$\"/><rule from=\"^http://((?:ssl|www)-static\\d*\\.|www\\.)?strongloop\\.com/\" to=\"https://$1strongloop.com/\"/></ruleset>", "<ruleset name=\"StrongVPN.com\" f=\"StrongVPN.xml\"><rule from=\"^http://strongvpn\\.com/\" to=\"https://strongvpn.com/\"/><rule from=\"^http://www\\.strongvpn\\.com/\" to=\"https://www.strongvpn.com/\"/></ruleset>", "<ruleset name=\"Stuart Robbins\" default_off=\"mismatched\" f=\"Stuart-Robbins.xml\"><rule from=\"^http://about\\.sjrdesign\\.net/\" to=\"https://sjrdesign.net/~sjrdesig/about/\"/><rule from=\"^http://photos\\.sjrdesign\\.net/\" to=\"https://sjrdesign.net/~sjrdesig/photos/\"/></ruleset>", "<ruleset name=\"Stubhub\" default_off=\"failed ruleset test\" f=\"Stubhub.xml\"><securecookie host=\"^(?:.*\\.)?stubhub\\.(de|co\\.uk|com)$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Student Doctor Network\" f=\"StudentDoctor.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Student Aid Calculator.com\" f=\"Student_Aid_Calculator.com.xml\"><securecookie host=\"^(?:[\\w-]+\\.)?studentaidcalculator\\.com$\" name=\".+\"/><rule from=\"^http://www\\.studentaidcalculator\\.com/.*\" to=\"https://studentaidcalculator.com/\"/><rule from=\"^http://([\\w-]+\\.)?studentaidcalculator\\.com/\" to=\"https://$1studentaidcalculator.com/\"/></ruleset>", "<ruleset name=\"Student Benefits.ca\" f=\"Student_Benefits.ca.xml\"><securecookie host=\"^\\.studentbenefits\\.ca$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?studentbenefits\\.ca/\" to=\"https://studentbenefits.ca/\"/></ruleset>", "<ruleset name=\"Students for Sensible Drug Policy\" f=\"Students_for_Sensible_Drug_Policy.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"StudiVZ (disabled)\" default_off=\"Certificate mismatch\" f=\"StudiVZ.xml\"><rule from=\"^http://www\\.studivz\\.net/\" to=\"https://www.studivz.net/\"/></ruleset>", "<ruleset name=\"StudiesAbroad.com (partial)\" f=\"StudiesAbroad.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"StudioPress.com\" f=\"StudioPress.com.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Study.Monash\" f=\"Study.Monash.xml\"><securecookie host=\"^(?:\\.?www\\.)?study\\.monash$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Study in Australia\" f=\"StudyinAustralia.xml\"><rule from=\"^http://(?:www\\.)?studyinaustralia\\.gov\\.au/\" to=\"https://www.studyinaustralia.gov.au/\"/></ruleset>", "<ruleset name=\"StumbleUpon (breaks plugin)\" default_off=\"Breaks the SU extension\" f=\"StumbleUpon.xml\"><securecookie host=\"^.*\\.s(?:tumbleupon|ustatic)\\.com$\" name=\".*\"/><rule from=\"^http://(?:badge\\.|www\\.)?stumbleupon\\.com/\" to=\"https://www.stumbleupon.com/\"/><rule from=\"^http://(?:www\\.)?stumble-upon\\.com/(?:[\\w\\W]+)$\" to=\"https://www.stumbleupon.com/\"/><rule from=\"^http://cdn\\.stumble-upon\\.com/\" to=\"https://www.stumbleupon.com/\"/><rule from=\"^http://(b(?:\\d)\\.|www\\.)?sustatic\\.com/\" to=\"https://$1sustatic.com/\"/></ruleset>", "<ruleset name=\"stunnel.org\" f=\"Stunnel.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stupid.com\" default_off=\"failed ruleset test\" f=\"Stupid.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Style.com\" default_off=\"failed ruleset test\" f=\"Style.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Style Hatch.co (partial)\" default_off=\"expired\" f=\"Style_Hatch.co.xml\"><securecookie host=\"^\\.stylehatch\\.co$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stylist.co.uk\" default_off=\"redirects to http\" f=\"Stylist.co.uk.xml\"><exclusion pattern=\"^http://www\\.stylist\\.co\\.uk/(?:$|assets/)\"/><securecookie host=\"^\\.\" name=\"^_(?:_cfduid$|gat?$|gat_)\"/><rule from=\"^http://stylist\\.co\\.uk/\" to=\"https://www.stylist.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Suas.ie\" f=\"Suas.ie.xml\"><securecookie host=\"^\\.suas\\.ie$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SubDownloader.net\" default_off=\"mismatched\" f=\"SubDownloader.net.xml\"><rule from=\"^http://(?:www\\.)?subdownloader\\.net/\" to=\"https://subdownloader.net/\"/></ruleset>", "<ruleset name=\"SubPLY.com\" default_off=\"expired\" f=\"SubPLY.com.xml\"><rule from=\"^http://(?:www\\.)?subply\\.com/\" to=\"https://subply.com/\"/></ruleset>", "<ruleset name=\"Subcon admin.com\" f=\"Subcon_admin.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Subeta\" f=\"Subeta.xml\"><securecookie host=\"^(?:.*\\.)?subeta\\.net$\" name=\".+\"/><rule from=\"^http://(avatar\\.|images\\.|www\\.)?subeta\\.net/\" to=\"https://$1subeta.net/\"/></ruleset>", "<ruleset name=\"Subgraph.com\" f=\"Subgraph.com.xml\"><rule from=\"^http://www\\.subgraph\\.com/\" to=\"https://subgraph.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"subimage (partial)\" f=\"Subimage.xml\"><securecookie host=\"^(?:.*\\.)?cashboardapp\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?(?:cashboardapp|getcashboard)\\.com/\" to=\"https://www.cashboardapp.com/\"/><rule from=\"^http://([\\w\\-]+)\\.cashboardapp\\.com/\" to=\"https://$1.cashboardapp.com/\"/></ruleset>", "<ruleset name=\"SublimeGit.net\" f=\"SublimeGit.net.xml\"><rule from=\"^http://((?:docs|release|www)\\.)?sublimegit\\.net/\" to=\"https://$1sublimegit.net/\"/></ruleset>", "<ruleset name=\"Sublime Text.com\" f=\"Sublime_Text.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Submission Technology\" default_off=\"failed ruleset test\" f=\"Submission-Technology.xml\"><securecookie host=\"^(?:.*\\.)?submissiontechnology\\.co\\.uk$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Subrosa.io\" default_off=\"failed ruleset test\" f=\"Subrosa.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SubscriptionGenius.com\" default_off=\"failed ruleset test\" f=\"SubscriptionGenius.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"subsignal.org (missing certificate chain)\" default_off=\"expired, missing certificate chain\" f=\"Subsignal.org-problematic.xml\"><securecookie host=\"^\\.pads\\.subsignal\\.org$\" name=\".+\"/><rule from=\"^http://www\\.subsignal\\.org/\" to=\"https://subsignal.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"subsignal.org (partial)\" f=\"Subsignal.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Subterranean Games.com\" f=\"Subterranean_Games.com.xml\"><securecookie host=\"^\\.subterraneangames\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SubToMe.com\" f=\"Subtome.com.xml\"><securecookie host=\"^\\.subtome\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Suburban Records\" default_off=\"self-signed\" f=\"Suburban-Records.xml\"><securecookie host=\"^(?:.*\\.)?suburban\\.nl$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?suburban\\.nl/\" to=\"https://www.suburban.nl/\"/></ruleset>", "<ruleset name=\"Subway.com\" default_off=\"failed ruleset test\" f=\"Subway.com.xml\"><securecookie host=\"^www\\.subway\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SuccessFactors\" f=\"SuccessFactors.xml\"><securecookie host=\"^(?:blogs|career\\d*|community|jobs|owa|performancemanager\\d*|www)\\.successfactors\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?successfactors\\.com/\" to=\"https://www.successfactors.com/\"/><rule from=\"^http://(autodiscover|blogs|career\\d*|community|jobs|owa|performancemanager\\d*)\\.successfactors\\.com/\" to=\"https://$1.successfactors.com/\"/></ruleset>", "<ruleset name=\"Success Chef\" default_off=\"failed ruleset test\" f=\"Success_Chef.xml\"><securecookie host=\"^\\.?successchef\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"suckup.de\" f=\"Suckup.de.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sucuri.net (partial)\" default_off=\"failed ruleset test\" f=\"Sucuri.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sudbury Neutrino Observatory Institute\" f=\"Sudbury_Neutrino_Observatory_Institute.xml\"><securecookie host=\"^\\.snolab\\.ca$\" name=\".+\"/><rule from=\"^http://www\\.snolab\\.ca/\" to=\"https://www.snolab.ca/\"/></ruleset>", "<ruleset name=\"Süddeutsche Zeitung (problematic)\" default_off=\"mismatched\" platform=\"mixedcontent\" f=\"Suddeutsche_Zeitung-problematic.xml\"><securecookie host=\"^(?:englisch|sz-media|www)\\.sueddeutsche\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?sueddeutsche\\.de/\" to=\"https://www.sueddeutsche.de/\"/><rule from=\"^http://(englisch|sz-media|szshop|www)\\.sueddeutsche\\.de/\" to=\"https://$1.sueddeutsche.de/\"/><rule from=\"^http://mediadaten\\.sueddeutsche\\.de/(?:home/)?(?:$|\\?)\" to=\"https://sz-media.sueddeutsche.de/\"/></ruleset>", "<ruleset name=\"Süddeutsche Zeitung (partial)\" default_off=\"failed ruleset test\" f=\"Suddeutsche_Zeitung.xml\"><securecookie host=\"^(?:anzeigen-buchen|epaper|id|service|stellenmarkt|sz-shop|weiterbildung)\\.sueddeutsche\\.de$\" name=\".+\"/><rule from=\"^http://polpix\\.sueddeutsche\\.com/\" to=\"https://www.sueddeutsche.de/\"/><rule from=\"^http://(anzeigen(?:-buchen)?|epaper|geoservice|global|id|jetzt|maerkte|(motor|stellen)markt|service|sz-shop|weiterbildung)\\.sueddeutsche\\.de/\" to=\"https://$1.sueddeutsche.de/\"/><rule from=\"^http://immobilienmarkt\\.sueddeutsche\\.de/(cms/data/|cms/fileadmin/|cms/uploads/|css/|favicon\\.ico|gfx/)\" to=\"https://immobilienmarkt.sueddeutsche.de/$1\"/><rule from=\"^http://maps\\.sueddeutsche\\.de/css/\" to=\"https://maps.sueddeutsche.de/css\"/><rule from=\"^http://szshop\\.sueddeutsche\\.de/(favicon\\.ico|out/sz/src/)\" to=\"https://szshop.sueddeutsche.de/$1\"/><rule from=\"^http://www\\.sueddeutsche\\.de/favicon\\.ico\" to=\"https://www.sueddeutsche.de/favicon.ico\"/></ruleset>", "<ruleset name=\"Süddeutsche Zeitung Tickets\" f=\"Suddeutsche_Zeitung_Tickets.xml\"><securecookie host=\"^www\\.sueddeutsche-tickets\\.de$\" name=\".+\"/><rule from=\"^http://(?:tickets\\.sueddeutsche|(?:www\\.)?sueddeutsche-tickets)\\.de/\" to=\"https://www.sueddeutsche-tickets.de/\"/></ruleset>", "<ruleset name=\"Sudo Room.org (partial)\" f=\"Sudo_Room.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://lists\\.sudoroom\\.org/+\" to=\"https://sudoroom.org/lists/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sufficientlysecure.org\" f=\"Sufficientlysecure.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sugar Labs.org\" f=\"Sugar_Labs.org.xml\"><securecookie host=\"^(?:wiki)?\\.sugarlabs\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sugarcrm.com\" f=\"Sugarcrm.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SugarSync\" default_off=\"failed ruleset test\" f=\"Sugarsync.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sugester (partial)\" f=\"Sugester.xml\"><exclusion pattern=\"^http://www\\.\"/><rule from=\"^http://(asset|f)s\\.sugester\\.pl/\" to=\"https://s3-eu-west-1.amazonaws.com/$1s.sugester.pl/\"/><rule from=\"^http://(\\w+)\\.sugg?ester\\.pl/\" to=\"https://$1.sugester.pl/\"/></ruleset>", "<ruleset name=\"SuicideGirls\" f=\"SuicideGirls.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SuicidePreventionLifeline.org\" f=\"SuicidePreventionLifeline.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Suitable Tech.com (partial)\" f=\"Suitable_Tech.com.xml\"><securecookie host=\"^(?:www\\.)?suitabletech\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Suitey.com\" default_off=\"failed ruleset test\" f=\"Suitey.com.xml\"><securecookie host=\"^\\.suitey\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sukimashita (partial)\" default_off=\"self-signed\" f=\"Sukimashita.xml\"><rule from=\"^http://svn\\.sukimashita\\.com/\" to=\"https://svn.sukimashita.com/\"/></ruleset>", "<ruleset name=\"Suma-ev.de\" f=\"Suma-eV.de.xml\"><securecookie host=\"^(?:\\.|\\.?www\\.)?suma-ev\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SummitPost (partial)\" f=\"SummitPost.xml\"><rule from=\"^http://images\\.summitpost\\.org/\" to=\"https://c278592.ssl.cf0.rackcdn.com/\"/></ruleset>", "<ruleset name=\"Summit Route.com\" f=\"Summit_Route.com.xml\"><rule from=\"^http://www\\.summitroute\\.com/\" to=\"https://summitroute.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sumo Logic.com (partial)\" f=\"Sumo_Logic.com.xml\"><exclusion pattern=\"^http://operations\\.sumologic\\.com/(?!$)\"/><securecookie host=\"^(?:api|collectors|info)\\.sumologic\\.com$\" name=\".+\"/><rule from=\"^http://sumologic\\.com/+\" to=\"https://www.sumologic.com/\"/><rule from=\"^http://mail\\.sumologic\\.com/.*\" to=\"https://mail.google.com/a/sumologic.com\"/><rule from=\"^http://(?:operation|statu)s\\.sumologic\\.com/\" to=\"https://sumologic.statuspage.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SunGuard Higher Education\" default_off=\"self-signed\" f=\"SunGuard-Higher-Education.xml\"><securecookie host=\"^sungardhe\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?sungardhe\\.com/\" to=\"https://sungardhe.com/\"/></ruleset>", "<ruleset name=\"SunTimes.com (partial)\" default_off=\"failed ruleset test\" f=\"SunTimes.com.xml\"><rule from=\"^http://(?:www\\.)?suntimes\\.com/\" to=\"https://www.suntimes.com/\"/><rule from=\"^http://jobs\\.suntimes\\.com/\" to=\"https://jobs.suntimes.com/\"/></ruleset>", "<ruleset name=\"SunTrust\" f=\"SunTrust.xml\"><rule from=\"^http://suntrust\\.com/\" to=\"https://www.suntrust.com/\"/><rule from=\"^http://(answers|blog|esp|giftcard|online401k|onlinecourier|otm|rewards|www)\\.suntrust\\.com/\" to=\"https://$1.suntrust.com/\"/></ruleset>", "<ruleset name=\"Sunbeltsoftware.com\" default_off=\"failed ruleset test\" f=\"Sunbeltsoftware.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sundance Channel\" default_off=\"failed ruleset test\" f=\"Sundance_Channel.xml\"><rule from=\"^http://(?:www\\.)?sundancechannel\\.com/\" to=\"https://www.sundancechannel.com/\"/><rule from=\"^http://media\\.sundancechannel\\.com/\" to=\"https://media.sundancechannel.com/\"/></ruleset>", "<ruleset name=\"Sunday World.com\" f=\"Sunday_World.com.xml\"><securecookie host=\"^\\.sundayworld\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sundtek.com (partial)\" default_off=\"expired, self-signed\" f=\"Sundtek.com.xml\"><securecookie host=\"^shop\\.sundtek\\.com$\" name=\".+\"/><rule from=\"^http://shop\\.sundtek\\.com/\" to=\"https://shop.sundtek.com/\"/></ruleset>", "<ruleset name=\"Sunglass Warehouse\" f=\"Sunglass_Warehouse.xml\"><securecookie host=\"^\\.?www\\.sunglasswarehouse\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sunlightfoundation.com (partial)\" default_off=\"failed ruleset test\" f=\"Sunlight-Foundation.xml\"><rule from=\"^http://assets\\.sunlightfoundation\\.com/\" to=\"https://s3.amazonaws.com/assets.sunlightfoundation.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sunnah.com\" f=\"Sunnah.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SunoSanuo.com (partial)\" default_off=\"failed ruleset test\" f=\"SunoSanuo.com.xml\"><securecookie host=\"^app\\.sunosunao\\.com$\" name=\".+\"/><rule from=\"^http://app\\.sunosunao\\.com/\" to=\"https://app.sunosunao.com/\"/></ruleset>", "<ruleset name=\"Sunrise\" f=\"Sunrise.xml\"><exclusion pattern=\"^http://www\\.sunrise\\.ch\"/><securecookie host=\"^(?:.*\\.)?sunrise\\.ch$\" name=\".+\"/><rule from=\"^http://sunrise\\.ch/\" to=\"https://www1.sunrise.ch/\"/><rule from=\"^http://([^/:@]+)?\\.sunrise\\.ch/\" to=\"https://$1.sunrise.ch/\"/></ruleset>", "<ruleset name=\"Sunrise Print Online\" default_off=\"failed ruleset test\" f=\"Sunrise_Print_Online.xml\"><securecookie host=\"^www\\.sunriseprintonline\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sunshine Week.org\" default_off=\"mismatched\" f=\"Sunshine_Week.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Suntec.net (partial)\" f=\"Suntec.net.xml\"><rule from=\"^http://www\\.suntec\\.net/(auth|resources)/\" to=\"https://www.suntec.net/$1/\"/></ruleset>", "<ruleset name=\"Suny Broome.edu (problematic)\" default_off=\"mismatched\" f=\"Suny_Broome.edu-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Suomen ortodoksinen kirkko\" f=\"Suomen-ortodoksinen-kirkko.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SupaDupa (partial)\" f=\"SupaDupa.xml\"><securecookie host=\"^supadupa\\.me$\" name=\".+\"/><rule from=\"^http://(www\\.)?supadupa\\.me/\" to=\"https://$1supadupa.me/\"/><rule from=\"^http://(?:cdn|static)\\.supadupa\\.me/\" to=\"https://d2cgdgk0o1xu5x.cloudfront.net/\"/></ruleset>", "<ruleset name=\"SuperAntiSpyware.com\" platform=\"mixedcontent\" default_off=\"missing certificate chain\" f=\"SuperAntiSpyware.xml\"><rule from=\"^http://(?:www\\.)?superantispyware\\.com/\" to=\"https://www.superantispyware.com/\"/></ruleset>", "<ruleset name=\"SuperGuarantee.com\" default_off=\"failed ruleset test\" f=\"SuperGuarantee.com.xml\"><securecookie host=\"^(?:.*\\.)?superguarantee\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SuperMedia (mismatches)\" default_off=\"expired, mismatch\" f=\"SuperMedia-mismatches.xml\"><securecookie host=\"^jobs\\.supermedia\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?idearcmedia\\.com/\" to=\"https://www.idearcmedia.com/\"/><rule from=\"^http://ir\\.supermedia\\.com/\" to=\"https://ir.supermedia.com/\"/><rule from=\"^http://developer\\.whitepages\\.com/(files|public)/\" to=\"https://developer.whitepages.com/$1/\"/><rule from=\"^http://static\\.ypautos\\.com/\" to=\"https://static.ypautos.com/\"/></ruleset>", "<ruleset name=\"SuperMedia.com (partial)\" f=\"SuperMedia.xml\"><rule from=\"^http://(?:www\\.)?supermedia\\.com/[^?]*\" to=\"https://www.dexmedia.com/?ref=sm\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SuperRepo.org\" f=\"SuperRepo.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SuperStats.com (partial)\" f=\"SuperStats.com.xml\"><securecookie host=\"^\\.superstats\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?superstats\\.com/\" to=\"https://www.superstats.com/\"/><rule from=\"^http://(boardserver|counter|ezpolls|guestbook|stats|submitwizard)\\.superstats\\.com/\" to=\"https://$1.superstats.com/\"/></ruleset>", "<ruleset name=\"SuperStrands\" f=\"SuperStrands.xml\"><securecookie host=\"^(?:www)?\\.superstrands.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Super Bright LEDs.com\" f=\"Super_Bright_LEDs.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Super Hexagon.com\" default_off=\"mismatched\" f=\"Super_Hexagon.com.xml\"><rule from=\"^http://(?:www\\.)?superhexagon\\.com/\" to=\"https://superhexagon.com/\"/></ruleset>", "<ruleset name=\"Super Lawyers (partial)\" f=\"Super_Lawyers.xml\"><rule from=\"^http://i\\.superlawyers\\.com/\" to=\"https://d22sy6g45ur8ee.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Super Pet USA.com\" default_off=\"expired\" f=\"Super_Pet_USA.com.xml\"><securecookie host=\"^(?:www)?\\.superpetusa\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?superpetusa\\.com/\" to=\"https://www.superpetusa.com/\"/></ruleset>", "<ruleset name=\"Super Teacher Worksheets.com\" f=\"Super_Teacher_Worksheets.com.xml\"><securecookie host=\"^(?:www\\.)?superteacherworksheets\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Superannuation Complaints Tribunal\" f=\"SuperannuationComplaintsTribunal.xml\"><rule from=\"^http://(?:www\\.)?sct\\.gov\\.au/\" to=\"https://www.sct.gov.au/\"/></ruleset>", "<ruleset name=\"Superblock.net\" f=\"Superblock.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Superdesk.pro\" f=\"Superdesk.pro.xml\"><securecookie host=\"^\\.superdesk\\.pro$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Superdrug.com (partial)\" default_off=\"failed ruleset test\" f=\"Superdrug.xml\"><exclusion pattern=\"^http://www\\.superdrug\\.com/(?!combined\\.css|favicon\\.ico|(?:login|register)(?:$|[?/])|medias/)\"/><securecookie host=\"^onlinedoctor\\.superdrug\\.com$\" name=\".*\"/><rule from=\"^http://superdrug\\.com/\" to=\"https://www.superdrug.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Superevr.com\" f=\"Superevr.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Superfast-Openreach.co.uk\" default_off=\"missing certificate chain\" f=\"Superfast-Openreach.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Superhero Training Network\" default_off=\"refused\" f=\"Superhero-Training-Network.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Superherostuff.com\" f=\"Superherostuff.com.xml\"><rule from=\"^http://superherostuff\\.com/\" to=\"https://www.superherostuff.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"superkuh.com\" default_off=\"self-signed\" f=\"Superkuh.com.xml\"><rule from=\"^http://(?:www\\.)?superkuh\\.com/\" to=\"https://www.superkuh.com/\"/></ruleset>", "<ruleset name=\"Superpages.com (partial)\" f=\"Superpages.com.xml\"><exclusion pattern=\"^http://(?:jscss|yellowpages)\\.superpages\\.com/(?!common/css/|css/|images-yp/|profiler/css/)\"/><securecookie host=\"^claimlisting\\.superpages\\.com$\" name=\".*\"/><rule from=\"^http://jscss\\.superpages\\.com/\" to=\"https://yellowpages.superpages.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Supersec\" f=\"Supersec.xml\"><securecookie host=\"^\\.?supersec\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Superstart.se\" f=\"Superstart.se.xml\"><rule from=\"^http://www\\.superstart\\.se/\" to=\"https://www.superstart.se/\"/><rule from=\"^http://static\\.superstart\\.se/\" to=\"https://static.superstart.se/\"/><rule from=\"^http://superstart\\.se/\" to=\"https://www.superstart.se/\"/></ruleset>", "<ruleset name=\"Supplies for Dreams.org (false MCB)\" platform=\"mixedcontent\" f=\"Supplies_for_Dreams.org-falsemixed.xml\"><securecookie host=\"^\\.suppliesfordreams\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?suppliesfordreams\\.org/\" to=\"https://www.suppliesfordreams.org/\"/></ruleset>", "<ruleset name=\"Supplies for Dreams.org (partial)\" f=\"Supplies_for_Dreams.org.xml\"><rule from=\"^http://(?:www\\.)?suppliesfordreams\\.org/(?=favicon\\.ico|wp-content/|wp-includes/)\" to=\"https://www.suppliesfordreams.org/\"/></ruleset>", "<ruleset name=\"Supply Frame.com\" f=\"Supply_Frame.com.xml\"><securecookie host=\"^\\.supplyframe\\.com$\" name=\".+\"/><rule from=\"^http://www\\.supplyframe\\.com/\" to=\"https://supplyframe.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Supporterz.jp\" f=\"Supporterz.jp.xml\"><securecookie host=\"^supporterz\\.jp$\" name=\".+\"/><rule from=\"^http://www\\.supporterz\\.jp/\" to=\"https://supporterz.jp/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"supportion.org\" default_off=\"mismatched\" f=\"Supportion.org.xml\"><rule from=\"^http://(?:www\\.)?supportion\\.org/\" to=\"https://supportion.org/\"/></ruleset>", "<ruleset name=\"Suprizkizlar.com\" default_off=\"failed ruleset test\" f=\"Suprizkizlar.com.xml\"><securecookie host=\"^(?:w*\\.)?suprizkizlar\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sur.ly\" f=\"Sur.ly.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Surbitcoin.com\" f=\"Surbitcoin.com.xml\"><securecookie host=\"^\\.surbitcoin\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sure-assist.com\" f=\"Sure-assist.com.xml\"><securecookie host=\"^(?:www)?\\.sure-assist\\.com$\" name=\".+\"/><rule from=\"^http://sure-assist\\.com/\" to=\"https://www.sure-assist.com/\"/><rule from=\"^http://cdn\\d+\\.sure-assist\\.com/\" to=\"https://d16b15zfg5s2bm.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SureSupport\" f=\"SureSupport.xml\"><securecookie host=\"(?:www2)?\\.suresupport\\.com$\" name=\".+\"/><rule from=\"^http://(www2?\\.)?suresupport\\.com/\" to=\"https://$1suresupport.com/\"/></ruleset>", "<ruleset name=\"surespot.me\" f=\"Surespot.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Surface.com (partial)\" f=\"Surface.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Surfcanyon.com\" f=\"Surfcanyon.com.xml\"><rule from=\"^http://(?:www\\.)?surfcanyon\\.com/\" to=\"https://www.surfcanyon.com/\"/></ruleset>", "<ruleset name=\"Surfeasy.com\" f=\"Surfeasy.com.xml\"><securecookie host=\"^.*\\.?surfeasy\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Surfermag\" default_off=\"mismatched\" f=\"Surfermag.xml\"><rule from=\"^http://(?:www\\.)?surfermag\\.com/\" to=\"https://www.surfermag.com/\"/></ruleset>", "<ruleset name=\"Surfline.com\" platform=\"mixedcontent\" default_off=\"redirect to http\" f=\"Surfline.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://surfline\\.com/\" to=\"https://www.surfline.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Surftown.com\" platform=\"mixedcontent\" f=\"Surftown.com.xml\"><rule from=\"^http://(?:www\\.)?surftown\\.com/\" to=\"https://www.surftown.com/\"/></ruleset>", "<ruleset name=\"Surge.sh\" f=\"Surge.sh.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SurpassHosting.com (partial)\" f=\"SurpassHosting.com.xml\"><securecookie host=\"^core\\.surpasshosting\\.com$\" name=\".+\"/><rule from=\"^http://(chat|core|sh151)\\.surpasshosting\\.com/\" to=\"https://$1.surpasshosting.com/\"/></ruleset>", "<ruleset name=\"Surprisingly Free\" default_off=\"self-signed\" f=\"Surprisingly-Free.xml\"><rule from=\"^http://(?:www\\.)?surprisinglyfree\\.com/\" to=\"https://surprisinglyfree.com/\"/></ruleset>", "<ruleset name=\"Surveillance Law.org\" default_off=\"failed ruleset test\" f=\"Surveillance_Law.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Survey Analytics (partial)\" f=\"Survey-Analytics.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SurveyGizmo.com\" f=\"SurveyGizmo.com.xml\"><rule from=\"^http://(?:www\\.)?surveygizmo\\.com/\" to=\"https://www.surveygizmo.com/\"/><rule from=\"^http://(app|pro[0-9][0-9]?)\\.sgizmo\\.com/\" to=\"https://$1.sgizmo.com/\"/></ruleset>", "<ruleset name=\"SurveyMonkey (buggy)\" default_off=\"breaks surveys!\" f=\"SurveyMonkey.xml\"><exclusion pattern=\"^http://www\\.surveymonkey\\.com/Home_Landing\\.aspx\"/><securecookie host=\"^\\.research\\.net$\" name=\".+\"/><securecookie host=\"^(?:.*\\.)?surveymonkey\\.com$\" name=\".+\"/><rule from=\"^http://(secure\\.|www\\.)?research\\.net/\" to=\"https://$1research.net/\"/><rule from=\"^http://surveymonkey\\.com/\" to=\"https://www.surveymonkey.com/\"/><rule from=\"^http://(admin|aide|a[jy]uda|blog|contribute|da|de|fr|es|fi|go|help2|hilfe|it|jp|ko|nl|no|pt|ru|ruhelp|secure|sv|www|zh)\\.surveymonkey\\.com/\" to=\"https://$1.surveymonkey.com/\"/><rule from=\"^http://help\\.surveymonkey\\.com/\" to=\"https://surveymonkey.secure.force.com/\"/><rule from=\"^http://smaudience\\.surveymonkey\\.com/(?:\\?.*)?$\" to=\"https://www.surveymonkey.com/mp/audience/\"/><rule from=\"^http://smaudience\\.surveymonkey\\.com/(cs|image|j|r)s/\" to=\"https://na-d.market.com/$1s/\"/></ruleset>", "<ruleset name=\"Surveydaddy\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Surveydaddy.xml\"><exclusion pattern=\"^http://support\\.surveydaddy\\.com/\"/><rule from=\"^http://surveydaddy\\.com/\" to=\"https://surveydaddy.com/\"/><rule from=\"^http://([^@:\\./]+)\\.surveydaddy\\.com/\" to=\"https://$1.surveydaddy.com/\"/></ruleset>", "<ruleset name=\"Survive the Claire Perry Inter.net\" f=\"Survive_The_Claire_Perry_Inter.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Survs\" f=\"Survs.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Susliving (partial)\" default_off=\"failed ruleset test\" f=\"Susliving.xml\"><securecookie host=\"^forum\\.susliving\\.org$\" name=\".+\"/><rule from=\"^http://forum\\.susliving\\.org/\" to=\"https://forum.susliving.org/\"/></ruleset>", "<ruleset name=\"Sussan.com.au\" f=\"Sussan.com.au.xml\"><securecookie host=\"^\\.\" name=\"^_ga\"/><securecookie host=\"^(?!\\.sussan\\.com\\.au$).\" name=\".\"/><rule from=\"^http://assets\\.sussan\\.com\\.au/\" to=\"https://dcu0x19cdch9b.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sustainable Electronics.org\" f=\"Sustainable_Electronics.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sustainablebusiness.com\" f=\"Sustainablebusiness.com.xml\"><rule from=\"^http://(?:www\\.)?sustainablebusiness\\.com/\" to=\"https://www.sustainablebusiness.com/\"/></ruleset>", "<ruleset name=\"Susy Radio.com\" default_off=\"expired, mismatched, self-signed\" f=\"Susy_Radio.com.xml\"><rule from=\"^http://(?:www\\.)?susyradio\\.com/\" to=\"https://www.susyradio.com/\"/></ruleset>", "<ruleset name=\"sv2.biz\" f=\"Sv2.biz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SvD.se (partial)\" f=\"SvD.se.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Svbtle.com\" f=\"Svbtle.com.xml\"><securecookie host=\"^(?:\\w+\\.)?svbtle\\.com$\" name=\".+\"/><rule from=\"^http://img\\.svbtle\\.com/\" to=\"https://d23f6h5jpj26xu.cloudfront.net/\"/><rule from=\"^http://(\\w+\\.)?svbtle\\.com/\" to=\"https://$1svbtle.com/\"/></ruleset>", "<ruleset name=\"Svenskakyrkan (broken)\" default_off=\"https://trac.torproject.org/projects/tor/ticket/9613\" f=\"Svenskakyrkan.se.xml\"><rule from=\"^http://svenskakyrkan\\.se/\" to=\"https://www.svenskakyrkan.se/\"/><rule from=\"^http://www\\.svenskakyrkan\\.se/\" to=\"https://www.svenskakyrkan.se/\"/></ruleset>", "<ruleset name=\"Svenskaspel.se\" f=\"Svenskaspel.se.xml\"><rule from=\"^http://svenskaspel\\.se/\" to=\"https://svenskaspel.se/\"/><rule from=\"^http://www\\.svenskaspel\\.se/\" to=\"https://svenskaspel.se/\"/></ruleset>", "<ruleset name=\"SverigesRadio\" f=\"SverigesRadio.se.xml\"><securecookie host=\"^sverigesradio\\.se$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?s(?:r|verigesradio)\\.se/\" to=\"https://sverigesradio.se/\"/></ruleset>", "<ruleset name=\"Svetlodarsk.com\" default_off=\"failed ruleset test\" f=\"Svetlodarsk.com.xml\"><securecookie host=\"^(?:www\\.)?svetlodarsk\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sviaz-bank.ru\" f=\"Sviaz-bank.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"svtrd.com\" default_off=\"failed ruleset test\" f=\"Svtrd.com.xml\"><rule from=\"^http://s\\.svtrd\\.com/\" to=\"https://s.svtrd.com/\"/></ruleset>", "<ruleset name=\"Swan.sk\" default_off=\"failed ruleset test\" f=\"Swan.sk.xml\"><rule from=\"^http://(?:www\\.)?swan\\.sk/\" to=\"https://www.swan.sk/\"/><rule from=\"^http://webmail\\.swan\\.sk/\" to=\"https://secure.webmail.sk/\"/><rule from=\"^http://(?:www\\.|secure\\.)?webmail\\.sk/\" to=\"https://secure.webmail.sk/\"/></ruleset>", "<ruleset name=\"swapspace.net\" default_off=\"expired, self-signed\" f=\"Swapspace.net.xml\"><securecookie host=\"^\\.swapspace\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?swapspace\\.net/\" to=\"https://swapspace.net/\"/></ruleset>", "<ruleset name=\"Swartz Files.com\" f=\"Swartz_Files.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Swedbank.lv (partial)\" default_off=\"failed ruleset test\" f=\"Swedbank.lv.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sweden.se\" default_off=\"failed ruleset test\" f=\"Sweden.se.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sweet & Sour\" default_off=\"failed ruleset test\" f=\"Sweet_and_Sour.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SweetsLyrics.com\" default_off=\"expired, self-signed\" f=\"SweetsLyrics.com.xml\"><rule from=\"^http://(?:www\\.)?sweetslyrics\\.com/\" to=\"https://www.sweetslyrics.com/\"/></ruleset>", "<ruleset name=\"Sweflix\" default_off=\"redirects to http\" f=\"Sweflix.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SwetsWise\" f=\"SwetsWise.xml\"><securecookie host=\"^.*\\.swetswise\\.com$\" name=\".+\"/><rule from=\"^http://www\\.swetswise\\.com/\" to=\"https://www.swetswise.com/\"/><rule from=\"^http://shibboleth\\.swetswise\\.com/\" to=\"https://shibboleth.swetswise.com/\"/></ruleset>", "<ruleset name=\"Swift XMPP Client\" f=\"Swift.im.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Swift.org\" f=\"Swift.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Swiftype (partial)\" f=\"Swiftype.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Swin.edu.au (partial)\" f=\"Swin.edu.au.xml\"><securecookie host=\"^www\\.swin\\.edu\\.au$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?swin\\.edu\\.au/\" to=\"https://www.swin.edu.au/\"/><rule from=\"^http://((?:www\\.)?astronomy|gpo)\\.swin\\.edu\\.au/\" to=\"https://$1.swin.edu.au/\"/></ruleset>", "<ruleset name=\"Swinburne.edu (partial, false MCB)\" platform=\"mixedcontent\" f=\"Swinburne.edu.au.xml\"><rule from=\"^http://(?:www\\.)?swinburne\\.edu\\.au/\" to=\"https://www.swinburne.edu.au/\"/></ruleset>", "<ruleset name=\"Swiss Federal Railways (SBB/CFF/FFS)\" f=\"Swiss-Federal-Railways.xml\"><securecookie host=\"^\\.www\\.sbb\\.ch$\" name=\".+\"/><securecookie host=\"^\\.www\\.cff\\.ch$\" name=\".+\"/><securecookie host=\"^\\.www\\.ffs\\.ch$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Swiss-VA.com (partial)\" default_off=\"failed ruleset test\" f=\"Swiss-VA.com.xml\"><rule from=\"^http://sso\\.swiss-va\\.com/\" to=\"https://sso.swiss-va.com/\"/></ruleset>", "<ruleset name=\"Swiss.com\" default_off=\"failed ruleset test\" f=\"Swiss.xml\"><securecookie host=\"^(?:.*\\.)?swiss\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Swiss Federal Institute of Intellectual Property\" f=\"Swiss_Federal_Institute_of_Intellectual_Property.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Swiss Financial Market Supervisory Authority (FINMA)\" f=\"Swiss_Financial_Market_Supervisory_Authority.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Swisscom.ch\" default_off=\"failed ruleset test\" f=\"Swisscom.ch.xml\"><securecookie host=\"^\\.swisscom\\.ch$\" name=\"^s_\\w+$\"/><securecookie host=\"^www1?\\.swisscom\\.ch$\" name=\".+\"/><securecookie host=\"^(?:www\\.)?swisscom\\.com$\" name=\".+\"/><rule from=\"^http://o\\.swisscom\\.ch/\" to=\"https://swisscom-ch.122.2o7.net/\"/><rule from=\"^http://itunes\\.swisscom\\.com/\" to=\"https://itunes.swisscom.ch/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"switch.ch\" f=\"Switch.ch.xml\"><securecookie host=\"^\\.switch\\.ch$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Switch.co\" default_off=\"failed ruleset test\" f=\"Switch.co.xml\"><rule from=\"^http://(?:www\\.)?switch\\.co/\" to=\"https://www.switch.co/\"/></ruleset>", "<ruleset name=\"Switch Concepts\" default_off=\"failed ruleset test\" f=\"SwitchConcepts.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Switch VPN\" f=\"SwitchVPN.xml\"><securecookie host=\"^switchvpn\\.net$\" name=\".+\"/><exclusion pattern=\"^http://(www\\.)?secure\\.switchkonnect\\.com/(downloads|knowledgebase|announcements)\"/><rule from=\"^http://www\\.switchvpn\\.net/\" to=\"https://switchvpn.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Switch Networks.com.au\" default_off=\"failed ruleset test\" f=\"Switch_Networks.com.au.xml\"><rule from=\"^http://switchnetworks\\.com\\.au/\" to=\"https://www.switchnetworks.com.au/\"/><rule from=\"^http://vweb02\\.switchnetworks\\.com\\.au:20(83|96)/\" to=\"https://vweb02.switchnetworks.com.au:20$1/\"/><rule from=\"^http://www\\.switchnetworks\\.com\\.au/\" to=\"https://www.switchnetworks.com.au/\"/></ruleset>", "<ruleset name=\"Switchie.ch\" f=\"Switchie.ch.xml\"><securecookie host=\"^(?:www\\.)?switchie\\.ch$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"switchplus.ch\" f=\"Switchplus.ch.xml\"><securecookie host=\"^www\\.switchplus\\.ch$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?switchplus\\.ch/\" to=\"https://www.switchplus.ch/\"/><rule from=\"^http://app\\.switchplus\\.ch/\" to=\"https://app.switchplus.ch/\"/></ruleset>", "<ruleset name=\"swordfishdc.com\" default_off=\"failed ruleset test\" f=\"Swordfishdc.com.xml\"><rule from=\"^http://(?:www\\.)?swordfishdc\\.com/\" to=\"https://customer.innometrics.com/\"/></ruleset>", "<ruleset name=\"swtor.com (partial)\" f=\"Swtor.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?swtor\\.com/(?!user)\"/><securecookie host=\"^\\.account\\.swtor\\.com$\" name=\".+\"/><rule from=\"^http://(?:account\\.|www\\.)?swtor\\.com/\" to=\"https://account.swtor.com/\"/></ruleset>", "<ruleset name=\"Stadtwerke Ulm/Neu-Ulm\" f=\"Swu.de.xml\"><rule from=\"^http://www\\.swu\\.de/\" to=\"https://www.swu.de/\"/></ruleset>", "<ruleset name=\"Sycom.co.jp\" f=\"Sycom.xml\"><rule from=\"^http://(?:www\\.)?sycom\\.co\\.jp/\" to=\"https://www.sycom.co.jp/\"/></ruleset>", "<ruleset name=\"Sydney Aquarium\" default_off=\"failed ruleset test\" f=\"Sydney-Aquarium.xml\"><securecookie host=\".*\\.sydneyaquarium\\.com\\.au$\" name=\".+\"/><rule from=\"^http://sydneyaquarium\\.com\\.au/\" to=\"https://www.sydneyaquarium.com.au/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sydney Tower Eye\" default_off=\"failed ruleset test\" f=\"Sydney-Tower-Eye.xml\"><securecookie host=\".*\\.sydneytowereye\\.com\\.au$\" name=\".+\"/><rule from=\"^http://sydneytowereye\\.com\\.au/\" to=\"https://www.sydneytowereye.com.au/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sydostran.se\" default_off=\"failed ruleset test\" f=\"Sydostran.se.xml\"><rule from=\"^http://sydostran\\.se/\" to=\"https://www.sydostran.se/\"/><rule from=\"^http://www\\.sydostran\\.se/\" to=\"https://www.sydostran.se/\"/></ruleset>", "<ruleset name=\"Sydsvenskan.se\" f=\"Sydsvenskan.se.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://sydsvenskan\\.se/\" to=\"https://www.sydsvenskan.se/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Syllabusshare (mismatches)\" default_off=\"mismatched\" f=\"Syllabusshare-mismatches.xml\"><securecookie host=\"^(?:.*\\.)?syllabusshare\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?syllabusshare\\.com/\" to=\"https://syllabusshare.com/\"/></ruleset>", "<ruleset name=\"Syllabusshare (partial)\" default_off=\"failed ruleset test\" f=\"Syllabusshare.xml\"><rule from=\"^http://secure\\.syllabushare\\.com/\" to=\"https://secure.syllabushare.com/\"/></ruleset>", "<ruleset name=\"Sylvan Company.com\" f=\"Sylvan_Company.com.xml\"><securecookie host=\"^(?:www\\.)?sylvancompany\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Symantec (partial)\" default_off=\"failed ruleset test\" f=\"Symantec.xml\"><exclusion pattern=\"^http://www\\.symantec\\.com/connect/\"/><rule from=\"^http://symantec\\.com/\" to=\"https://www.symantec.com/\"/><rule from=\"^http://check\\.symantec\\.com/(?:$|\\?.*)\" to=\"https://www.symantec.com/\"/><rule from=\"^http://entsupport\\.symantec\\.com/(?:$|\\?.*)\" to=\"https://www.symantec.com/enterprise/support/index.jsp\"/><rule from=\"^http://go\\.symantec\\.com/(?:$|\\?.*)\" to=\"https://www.symantec.com/index.jsp\"/><rule from=\"^http://customersupport\\.symantec\\.com/(resource|servlet)/\" to=\"https://symantec1.secure.force.com/$1/\"/><rule from=\"^http://liveupdate\\.symantec\\.com/(?:$|\\?.*)\" to=\"https://www.symantec.com/security_response/\"/><rule from=\"^http://securityresponse\\.symantec\\.com/(?:$|\\?.*)\" to=\"https://www.symantec.com/security_response/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Symbolab.com\" f=\"Symbolab.com.xml\"><securecookie host=\"^(www\\.|blog\\.)?symbolab\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Symfony.com\" f=\"Symfony.com.xml\"><securecookie host=\"^(www\\.)?symfony\\.com\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Symfony.fi\" f=\"Symfony.fi.xml\"><securecookie host=\"^(?:www\\.)?symfony\\.fi$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"symlynX\" default_off=\"failed ruleset test\" f=\"SymlynX.xml\"><rule from=\"^http://(extra\\.|(?:www\\.))?symlynx\\.com/\" to=\"https://$1symlynx.com/\"/></ruleset>", "<ruleset name=\"Sympa.org\" f=\"Sympa.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://sympa\\.org/\" to=\"https://www.sympa.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Symplicity\" f=\"Symplicity.xml\"><securecookie host=\"^(?:w*\\.)?symplicity\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Synacor (partial)\" f=\"Synacor.xml\"><rule from=\"^http://((?:static|web)\\.coral|static\\.garnet)\\.synacor\\.com/\" to=\"https://$1.synacor.com/\"/></ruleset>", "<ruleset name=\"Synaesthesie.net\" f=\"Synaesthesie.net.xml\"><securecookie host=\"^(?:www\\.)?synaesthesie\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Synaptop.com\" f=\"Synaptop.com.xml\"><rule from=\"^http://(?:www\\.)?synaptop\\.com/\" to=\"https://www.synaptop.com/\"/></ruleset>", "<ruleset name=\"Sync.com\" f=\"Sync.com.xml\"><rule from=\"^http://(?:www\\.)?sync\\.com/\" to=\"https://www.sync.com/\"/></ruleset>", "<ruleset name=\"SyncBoss (partial)\" f=\"SyncBoss.xml\"><securecookie host=\"^my\\.syncboss\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?my\\.syncboss\\.com/\" to=\"https://my.syncboss.com/\"/></ruleset>", "<ruleset name=\"Syncany.org\" f=\"Syncany.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Synch.hu (partial)\" f=\"Synch.hu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Synchronicer.dk (mixed content)\" platform=\"mixedcontent\" f=\"Synchronicer.dk.xml\"><securecookie host=\"(www\\.)?synchronicer\\.dk\" name=\".*\"/><rule from=\"^http://(www\\.)?synchronicer\\.dk/\" to=\"https://www.synchronicer.dk/\"/></ruleset>", "<ruleset name=\"Syncplicity\" f=\"Syncplicity.xml\"><securecookie host=\"^.*\\.syncplicity\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Syncsearch.jp (partial)\" f=\"Syncsearch.jp.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Syncthing.net\" f=\"Syncthing.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SyndeticS.com\" default_off=\"failed ruleset test\" f=\"SyndeticS.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.syndetics\\.com/\" to=\"https://secure.syndetics.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Syndie\" f=\"Syndie.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Synergist SCADA\" default_off=\"failed ruleset test\" f=\"Synergist_SCADA.xml\"><securecookie host=\"^(?:w*\\.)?synergistscada\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Synergy-FOSS.org (partial)\" f=\"Synergy-FOSS.org.xml\"><rule from=\"^http://(www\\.)?synergy-foss\\.org/(?=css/|(?:donate|nightly|premium)(?:$|[?/])|favicon\\.ico|files/|icons/|img/)\" to=\"https://$1synergy-foss.org/\"/></ruleset>", "<ruleset name=\"Synology.com.tw\" default_off=\"mismatched\" f=\"Synology.com.tw.xml\"><securecookie host=\"^.*\\.synology\\.com\\.tw$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Synology.com\" default_off=\"failed ruleset test\" f=\"Synology.xml\"><securecookie host=\".*\\.synology\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Synopsys (partial)\" f=\"Synopsys.xml\"><securecookie host=\"^\\w+\\.synopsys\\.com$\" name=\".*\"/><rule from=\"^http://www\\.synopsys\\.co\\.jp/img/\" to=\"https://www.synopsys.co.jp/img/\"/><rule from=\"^http://(?:www\\.)?synopsys\\.com/\" to=\"https://www.synopsys.com/\"/><rule from=\"^http://(blogs|solvnet|sso)\\.synopsys\\.com/\" to=\"https://$1.synopsys.com/\"/></ruleset>", "<ruleset name=\"synovite-scripts.com\" f=\"Synovite-scripts.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"syntevo.com (partial)\" f=\"Syntevo.com.xml\"><exclusion pattern=\"^http://www\\.syntevo\\.com/blog/(?!wp-content/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Synthetix.com (partial)\" default_off=\"404\" f=\"Synthetix.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Synthetix.info\" f=\"Synthetix.info.xml\"><securecookie host=\"^synthetix\\.(?:info|net)$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?synthetix\\.(info|net)/\" to=\"https://synthetix.$1/\"/></ruleset>", "<ruleset name=\"Syöpäjärjestöt\" f=\"Syopajarjestot.xml\"><rule from=\"^http://(?:www\\.)?cancer\\.fi/\" to=\"https://cancer-fi.directo.fi/\"/><rule from=\"^http://cancer-fi\\.directo\\.fi/\" to=\"https://cancer-fi.directo.fi/\"/><rule from=\"^http://(?:www\\.)?(seulonta|syoparekisteri)\\.fi/\" to=\"https://cancer-fi.directo.fi/$1/\"/></ruleset>", "<ruleset name=\"Syracuse University (partial)\" f=\"Syracuse_University.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sys4.de\" f=\"Sys4.de.xml\"><rule from=\"^http://blog\\.sys4\\.de/.*\" to=\"https://sys4.de/blog/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SysAid.com\" f=\"SysAid.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SysCan.org\" f=\"SysCan.org.xml\"><securecookie host=\"^(?:www\\.)?syscan\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SysWard.com\" f=\"SysWard.com.xml\"><securecookie host=\"^\\.sysward\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?sysward\\.com/\" to=\"https://sysward.com/\"/></ruleset>", "<ruleset name=\"Sysadmin Casts.com\" f=\"Sysadmin_Casts.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Syscoding.com\" f=\"Syscoding.com.xml\"><securecookie host=\"^\\.?syscoding\\.com$\" name=\".+\"/><rule from=\"^http://www\\.syscoding\\.com/\" to=\"https://syscoding.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sysconfig.org.uk\" f=\"Sysconfig.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sysdream.com\" f=\"Sysdream.com.xml\"><securecookie host=\"^\\.sysdream\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"syslog-ng.org\" f=\"Syslog-ng.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sysmex.com\" default_off=\"failed ruleset test\" f=\"Sysmex.com.xml\"><securecookie host=\"^\\.sysmex\\.com$\" name=\"^__utm\\w+$\"/><securecookie host=\"^www\\.sysmex\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sysmocom.de (partial)\" f=\"Sysmocom.de.xml\"><securecookie host=\"^(www\\.)?sysmocom\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Syspectr.com\" f=\"Syspectr.com.xml\"><securecookie host=\"^(app\\.|www\\.)?syspectr\\.com\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"System76.com\" f=\"System76.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SystemIntegra.ru\" f=\"SystemIntegra.ru.xml\"><securecookie host=\"^\\.systemintegra\\.ru$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"System Center Advisor.com\" default_off=\"failed ruleset test\" f=\"System_Center_Advisor.com.xml\"><securecookie host=\"^(?:www)?\\.systemcenteradvis[eo]r\\.(?:com|net)$\" name=\".+\"/><rule from=\"^http://(www\\.)?systemcenteradvis(e|o)r\\.(com|net)/\" to=\"https://$1systemcenteradvis$2r.$3/\"/><rule from=\"^http://login\\.systemcenteradvisor\\.com/\" to=\"https://login.systemcenteradvisor.com/\"/></ruleset>", "<ruleset name=\"System Overlord.com\" f=\"System_Overlord.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"systemausfall.org\" default_off=\"failed ruleset test\" f=\"Systemausfall.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Systembolaget.se\" f=\"Systembolaget.se.xml\"><exclusion pattern=\"^http://www\\.systembolaget\\.se/Butik\\-\\-Ombud/\"/><rule from=\"^http://systembolaget\\.se/\" to=\"https://www.systembolaget.se/\"/><rule from=\"^http://www\\.systembolaget\\.se/\" to=\"https://www.systembolaget.se/\"/></ruleset>", "<ruleset name=\"Système D\" f=\"SystemeD.net.xml\"><securecookie host=\"^systemed\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"systemli.org\" f=\"Systemli.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"syxin.com\" f=\"Syxin.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Szm.com (false MCB)\" platform=\"mixedcontent\" f=\"Szm.com.xml\"><rule from=\"^http://www\\.szm\\.com/\" to=\"https://szm.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"T-Engine.org (partial)\" default_off=\"failed ruleset test\" f=\"T-Engine.org.xml\"><rule from=\"^http://(?:www\\.)?t-engine\\.org/(?!membersonly/)\" to=\"https://www.t-engine.org/\"/></ruleset>", "<ruleset name=\"T-Mobile.co.uk\" f=\"T-Mobile.co.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"T-Mobile (false MCB)\" platform=\"mixedcontent\" f=\"T-Mobile.com-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"T-Mobile.nl (partial)\" f=\"T-Mobile.nl.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.accessoires\\.t-mobile\\.nl$\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"T-Mobile.com (partial)\" default_off=\"failed ruleset test\" f=\"T-Mobile.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^(?:incap_ses_\\d+|nlbi|visid_incap)_\\d+$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"T-Nation.com\" default_off=\"failed ruleset test\" f=\"T-Nation.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://t-nation\\.com/\" to=\"https://www.t-nation.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"T-Online (partial)\" default_off=\"failed ruleset test\" f=\"T-Online.xml\"><exclusion pattern=\"^http://rezepte\\.t-online\\.de/(?!sites/)\"/><securecookie host=\"^(?:\\.banner|email|\\.mediencenter|stayfriends|suche|tbx)\\.t-online\\.de$\" name=\".+\"/><rule from=\"^http://toi\\.ivwbox\\.de/\" to=\"https://toi-ssl.ivwbox.de/\"/><rule from=\"^http://(im\\.banner|header\\.cdb|email|fssecure|mediencenter|rezepte|stayfriends|suche|tbx|wiga)\\.t-online\\.de/\" to=\"https://$1.t-online.de/\"/><rule from=\"^http://t-online\\.de\\.intellitxt\\.com/\" to=\"https://ln1-g003.intellitxt.com/\"/></ruleset>", "<ruleset name=\"T-Shirt Mojo.com\" f=\"T-Shirt_Mojo.xml\"><securecookie host=\"^(?:www\\.)?t-shirtmojo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"T.co\" f=\"T.co.xml\"><securecookie host=\"^\\.t\\.co$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?t\\.co/\" to=\"https://t.co/\"/></ruleset>", "<ruleset name=\"T0.com\" f=\"T0.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"t3.io\" default_off=\"failed ruleset test\" f=\"T3.io.xml\"><securecookie host=\"^\\.t3\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"T35 cPanel Hosting\" platform=\"mixedcontent\" f=\"T35-cPanel-Hosting.xml\"><rule from=\"^http://(?:www\\.)?t35\\.com/\" to=\"https://www.t35.com/\"/></ruleset>", "<ruleset name=\"t37.net\" f=\"T37.net.xml\"><rule from=\"^http://(?:www\\.)?t37\\.net/\" to=\"https://t37.net/\"/></ruleset>", "<ruleset name=\"T3Blog.com\" default_off=\"mismatched, self-signed\" f=\"T3Blog.com.xml\"><securecookie host=\"^(?:www\\.)?t3blog\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?t3blog\\.com/\" to=\"https://www.t3blog.com/\"/></ruleset>", "<ruleset name=\"T411\" default_off=\"failed ruleset test\" f=\"T411.xml\"><rule from=\"^http://(wiki\\.|www\\.|forum\\.|api\\.)?t411\\.(io|me|ch)/\" to=\"https://$1t411.li/\"/><rule from=\"^http://(wiki\\.|www\\.|forum\\.|api\\.)?torrent411\\.com/\" to=\"https://$1t411.li/\"/><rule from=\"^http:\" to=\"https:\"/><securecookie host=\"^.*t411\\.(io|me|ch|li)$\" name=\".*\"/></ruleset>", "<ruleset name=\"TACAR.org\" f=\"TACAR.org.xml\"><securecookie host=\"^(?:www\\.)?tacar\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TAG Online.com (partial)\" f=\"TAG_Online.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TAIFEX.com.tw\" f=\"TAIFEX.com.tw.xml\"><securecookie host=\"^(?:sim|www)\\.taifex\\.com\\.tw$\" name=\".+\"/><rule from=\"^http://(sim|www)\\.taifex\\.com\\.tw/\" to=\"https://$1.taifex.com.tw/\"/></ruleset>", "<ruleset name=\"TARGUSinfo\" f=\"TARGUSinfo.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TAU.ac.il (partial)\" f=\"TAU.ac.il.xml\"><rule from=\"^http://(?:www\\.)?cs\\.tau\\.ac\\.il/\" to=\"https://www.cs.tau.ac.il/\"/><rule from=\"^http://(course|forums|svn)\\.cs\\.tau\\.ac\\.il/\" to=\"https://$1.cs.tau.ac.il/\"/></ruleset>", "<ruleset name=\"TAZ\" f=\"TAZ.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TBray.org\" f=\"TBray.org.xml\"><securecookie host=\"^(?:www)?\\.tbray\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TCD.ie (problematic)\" default_off=\"expired, self-signed\" f=\"TCD.ie-problematic.xml\"><securecookie host=\"^www\\.dsg\\.cs\\.tcd\\.ie$\" name=\".+\"/><rule from=\"^http://www\\.dsg\\.cs\\.tcd\\.ie/\" to=\"https://www.dsg.cs.tcd.ie/\"/></ruleset>", "<ruleset name=\"TCF.org (partial)\" f=\"TCF.org.xml\"><exclusion pattern=\"^http://(?:www\\.)?tcf\\.org/+(?!assets/|donate(?:$|[?/])|favicon\\.ico|favicon\\.png|images/|stylesheets/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TCF MailVault.info\" f=\"TCF_MailVault.info.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TCPA Compliance.us\" f=\"TCPA_Compliance.us.xml\"><securecookie host=\"^www\\.tcpacompliance\\.us$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TCPalm.com (partial)\" default_off=\"failed ruleset test\" f=\"TCPalm.com.xml\"><securecookie host=\"^(?:login)?\\.tcpalm\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?tcpalm\\.com/\" to=\"https://www.tcpalm.com/\"/><rule from=\"^http://jobs\\.tcpalm\\.com/\" to=\"https://www.tcpalm.com/hotjobs\"/><rule from=\"^http://(www\\.)?tcpalmextras\\.com/\" to=\"https://$1tcpalmextras.com/\"/></ruleset>", "<ruleset name=\"TC img.net\" f=\"TC_img.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TD Bank (partial)\" f=\"TDBank.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TDC.dk (partial)\" default_off=\"failed ruleset test\" f=\"TDC.dk.xml\"><securecookie host=\"^\\.tdc\\.dk$\" name=\"^salg_dwbc$\"/><securecookie host=\"^(?:privatalarm|shop)\\.tdc\\.dk$\" name=\".+\"/><rule from=\"^http://forum\\.tdc\\.dk/\" to=\"https://tdc.i.lithium.com/\"/><rule from=\"^http://(?:www\\.)?tdc-wholesale\\.com/\" to=\"https://wholesale.tdc.dk/nordic/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TDC.no (partial)\" default_off=\"failed ruleset test\" f=\"TDC.no.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TDC Service Online.com\" f=\"TDC_Service_Online.com.xml\"><securecookie host=\"^(?:www\\.)?tdcserviceonline\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TDC online.se\" f=\"TDC_online.se.xml\"><securecookie host=\"^(?:tdc\\.)?tdconline\\.se$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TD Canada Trust\" f=\"TDCanadatrust.com.xml\"><rule from=\"^http://(?:www\\.)?tdcanadatrust\\.com/\" to=\"https://www.tdcanadatrust.com/\"/></ruleset>", "<ruleset name=\"TDF-Telecom.fr\" f=\"TDF-Telekom.fr.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TDRevolution\" default_off=\"expired\" f=\"TDRevolution.xml\"><securecookie host=\"^www\\.tdrevolution\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?tdrevolution\\.com/\" to=\"https://www.tdrevolution.com/\"/></ruleset>", "<ruleset name=\"TDS.net (partial)\" f=\"TDS.net.xml\"><securecookie host=\"^\\.tds\\.net$\" name=\"^(?:Synacor_\\d|synmaxymizer2)$\"/><securecookie host=\"^sso\\.tds\\.net$\" name=\".+\"/><rule from=\"^http://(secure|sso|tsm)\\.tds\\.net/\" to=\"https://$1.tds.net/\"/></ruleset>", "<ruleset name=\"TEAC (partial)\" default_off=\"failed ruleset test\" f=\"TEAC.xml\"><rule from=\"^http://(?:www\\.)?teac\\.co\\.jp/\" to=\"https://teac.co.jp/\"/><rule from=\"^http://shop\\.teac\\.com/\" to=\"https://shop.teac.com/\"/><securecookie host=\"^shop\\.teac\\.com$\" name=\".*\"/></ruleset>", "<ruleset name=\"TED\" f=\"TED.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TEHTRI-Security.com\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"TEHTRI-Security.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TF Sprays.com\" f=\"TF_Sprays.com.xml\"><securecookie host=\"^(?:w*\\.)?tfsprays\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TH-Mittelhessen.de\" default_off=\"failed ruleset test\" f=\"TH-Mittelhessen.de.xml\"><securecookie host=\"^www\\.mni\\.th-mittelhessen\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Hacker's Choice\" default_off=\"expired cert\" f=\"THC.xml\"><rule from=\"^http://(?:www\\.)?thc\\.org/\" to=\"https://thc.org/\"/><rule from=\"^http://(freeworld|ircs-web|wiki)\\.thc\\.org/\" to=\"https://$1.thc.org/\"/></ruleset>", "<ruleset name=\"THM.de (partial)\" default_off=\"failed ruleset test\" f=\"THM.de.xml\"><securecookie host=\"^(?:\\w.*|\\.websites)\\.thm\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"THN.li\" f=\"THN.li.xml\"><securecookie host=\"^\\.thn\\.li$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"THR.com\" default_off=\"failed ruleset test\" f=\"THR.com.xml\"><rule from=\"^http://(?:www\\.)?thr\\.com/\" to=\"https://www.hollywoodreporter.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"THREe.ne.jp\" f=\"THREe.ne.jp.xml\"><rule from=\"^http://www\\.three\\.ne\\.jp/\" to=\"https://three.ne.jp/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TI.com (false MCB)\" platform=\"mixedcontent\" f=\"TI.com-falsemixed.xml\"><exclusion pattern=\"^http://www.ti.com/(?:general/docs/)?lit/\"/><rule from=\"^http://ti\\.com/\" to=\"https://www.ti.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TIAA-CREF.org\" f=\"TIAA-CREF.org.xml\"><securecookie host=\"^publictools\\.tiaa-cref\\.org$\" name=\".+\"/><rule from=\"^http://tiaa-cref\\.org/\" to=\"https://www.tiaa-cref.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TIBCO.com (partial)\" f=\"TIBCO.com.xml\"><securecookie host=\"^(?:docs|download|support)\\.tibco\\.com$\" name=\".+\"/><rule from=\"^http://(docs|download|support)\\.tibco\\.com/\" to=\"https://$1.tibco.com/\"/><rule from=\"^http://forms2\\.tibco\\.com/(cs|image|j|r)s/\" to=\"https://na-sj01.marketo.com/$1s/\"/></ruleset>", "<ruleset name=\"TICKETsage\" default_off=\"failed ruleset test\" f=\"TICKETsage.xml\"><securecookie host=\"^\\.ticketsage.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TIME.com (partial)\" f=\"TIME.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TIP.au.xml (partial)\" f=\"TIP.net.au.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TKK.fi\" default_off=\"missing certificate chain\" f=\"TKK.fi.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TLDRLegal.com\" default_off=\"failed ruleset test\" f=\"TLDRLegal.com.xml\"><securecookie host=\"^\\.tldrlegal\\.com$\" name=\"^tldrlegal\\.sid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TLHP.cf\" f=\"TLHP.cf.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.tlhp\\.cf/\" to=\"https://tlhp.cf/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TLS-o-Matic.com\" f=\"TLS-o-Matic.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TLS.so\" f=\"TLS.so.xml\"><securecookie host=\"^\\.tls\\.so$\" name=\".+\"/><rule from=\"^http://www\\.tls\\.so/\" to=\"https://tls.so/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TLScompare.org\" f=\"TLScompare.org.xml\"><securecookie host=\"^(?:www\\.)?tlscompare\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TMBC.gov.uk\" default_off=\"failed ruleset test\" f=\"TMBC.gov.uk.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TMDN.org (partial)\" f=\"TMDN.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TMDb.org\" f=\"TMDb.org.xml\"><securecookie host=\"^\\.tmdb\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TMP.com\" f=\"TMP.xml\"><rule from=\"^http://autodiscover\\.tmp\\.com/\" to=\"https://autodiscover-s.outlook.com/\"/><rule from=\"^http://webmail\\.tmp\\.com/\" to=\"https://webmail.tmp.com/\"/></ruleset>", "<ruleset name=\"TMPwebeng.com\" default_off=\"failed ruleset test\" f=\"TMPwebeng.com.xml\"><securecookie host=\"^services\\.tmpwebeng\\.com$\" name=\".+\"/><rule from=\"^http://(?:secure\\.|www\\.)?tmpwebeng\\.com/\" to=\"https://secure.tmpwebeng.com/\"/><rule from=\"^http://services\\.tmpwebeng\\.com/\" to=\"https://services.tmpwebeng.com/\"/></ruleset>", "<ruleset name=\"TMZ.com\" f=\"TMZ.com.xml\"><securecookie host=\"^\\.www\\.tmz\\.com$\" name=\".+\"/><rule from=\"^http://tmz\\.vo\\.llnwd\\.net/\" to=\"https://tmz.hs.llnwd.net/\"/><rule from=\"^http://(?:ll-)?(assets|media)\\.tmz\\.com/\" to=\"https://s3.amazonaws.com/$1.tmz.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TMcdn.org\" f=\"TMcdn.org.xml\"><rule from=\"^http://cdn\\d?\\.tmcdn\\.org/\" to=\"https://d28avt1uzu18qf.cloudfront.net/\"/></ruleset>", "<ruleset name=\"TMobile.com\" f=\"TMobile.com.xml\"><rule from=\"^http://(?:www\\.)?tmobile\\.com/\" to=\"https://www.t-mobile.com/\"/><rule from=\"^http://my\\.tmobile\\.com/\" to=\"https://my.t-mobile.com/\"/></ruleset>", "<ruleset name=\"TMobile.nl\" f=\"TMobile.nl.xml\"><rule from=\"^http://(?:www\\.)?tmobile\\.nl/\" to=\"https://www.t-mobile.nl/\"/></ruleset>", "<ruleset name=\"TMocache.com\" f=\"TMocache.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TMtm.ru (partial)\" f=\"TMtm.ru.xml\"><securecookie host=\"^id\\.tmtm\\.ru$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TNNet\" f=\"TNNet.xml\"><securecookie host=\"^(?:.*\\.)?tnnet\\.fi$\" name=\".*\"/><rule from=\"^http://tnnet\\.fi/\" to=\"https://www.tnnet.fi/\"/><rule from=\"^http://((?:hostcontrol|mail|oma|wm|www)\\.)?tnnet\\.fi/\" to=\"https://$1tnnet.fi/\"/></ruleset>", "<ruleset name=\"TNO.nl\" f=\"TNO.nl.xml\"><rule from=\"^http://(?:www\\.)?tno\\.nl/\" to=\"https://www.tno.nl/\"/></ruleset>", "<ruleset name=\"TNS Gallup (partial)\" default_off=\"failed ruleset test\" f=\"TNS-Gallup.xml\"><securecookie host=\"^statistik-gallup.net$\" name=\".*\"/><rule from=\"^http://www\\.statistik-gallup\\.net/\" to=\"https://statistik-gallup.net/\"/><rule from=\"^http://statistik-gallup\\.net/\" to=\"https://statistik-gallup.net/\"/></ruleset>", "<ruleset name=\"TNS-Global\" default_off=\"failed ruleset test\" f=\"TNS-Global.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TNS-Info\" f=\"TNS-Info.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TNS Sifo (partial)\" f=\"TNS-Sifo.xml\"><securecookie host=\"^panel\\.research-int\\.se$\" name=\".+\"/><securecookie host=\"^ssl\\.sifomedia\\.se$\" name=\".*\"/><rule from=\"^http://panel\\.research-int\\.se/\" to=\"https://panel.research-int.se/\"/><rule from=\"^http://ssl\\.sifomedia\\.se/\" to=\"https://ssl.sifomedia.se/\"/></ruleset>", "<ruleset name=\"TOG\" f=\"TOG.ie.xml\"><securecookie host=\"^www\\.tog\\.ie$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TOPNET.cz\" f=\"TOPNET.cz.xml\"><securecookie host=\"^profil\\.topnet\\.cz$\" name=\"^TopnetProfil_login$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TOPlist.cz (false MCB)\" platform=\"mixedcontent\" f=\"TOPlist.cz-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TOPlist.cz (partial)\" f=\"TOPlist.cz.xml\"><exclusion pattern=\"^http://www\\.toplist\\.cz/+(?!favicon\\.ico|images/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TOSBack.org\" f=\"TOSBack.org.xml\"><securecookie host=\"^tosback\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TPC.com\" f=\"TPC.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TPG Capital (self-signed)\" default_off=\"mismatch, self-signed\" f=\"TPG-Capital-mismatches.xml\"><rule from=\"^http://(?:www\\.)?tpg\\.com/\" to=\"https://tpg.com/\"/></ruleset>", "<ruleset name=\"TPG Capital (partial)\" platform=\"mixedcontent\" f=\"TPG-Capital.xml\"><rule from=\"^http://(?:www\\.)?bergdorfgoodman\\.com/\" to=\"https://www.bergdorfgoodman.com/\"/><rule from=\"^http://(?:www\\.)?cusp\\.com/(content/|images/|stylesheets/)\" to=\"https://www.cusp.com/$1\"/><rule from=\"^http://jscss\\.cp\\.ctscdn\\.com/\" to=\"https://www.cusp.com/\"/><rule from=\"^http://(?:www\\.)?incircle\\.com/\" to=\"https://www.incircle.com/\"/><rule from=\"^http://(?:www\\.)?lastcall\\.com/\" to=\"https://www.lastcall.com/\"/><rule from=\"^http://neimanmarcus\\.com/\" to=\"https://www.neimanmarcus.com/\"/><rule from=\"^http://(registry|www)\\.neimanmarcus\\.com/\" to=\"https://$1.neimanmarcus.com/\"/></ruleset>", "<ruleset name=\"TPP No Certification.org\" default_off=\"expired, self-signed\" f=\"TPP_No_Certification.org.xml\"><rule from=\"^http://(?:www\\.)?tppnocertification\\.org/\" to=\"https://tppnocertification.org/\"/></ruleset>", "<ruleset name=\"TPPtraining.com\" f=\"TPPtraining.com.xml\"><rule from=\"^http://(?:www\\.)?tpptraining\\.com/\" to=\"https://www.tpptraining.com/\"/></ruleset>", "<ruleset name=\"TPTQ-Arabic.com\" f=\"TPTQ-Arabic.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TROFire.com\" f=\"TROFire.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tron-delta.org\" f=\"TRON-DELTA.ORG.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TRUSTe.com (partial)\" default_off=\"failed ruleset test\" f=\"TRUSTe.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://truste\\.com/\" to=\"https://www.truste.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TRUe-Security.nl\" f=\"TRUe-Security.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TRiBot.org (partial)\" f=\"TRiBot.org.xml\"><securecookie host=\"^\\.tribot\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TSB Mag.com\" f=\"TSB_Mag.com.xml\"><securecookie host=\"^(?:w*\\.)?tsbmag\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TSDD.org\" default_off=\"refused\" f=\"TSDD.org.xml\"><securecookie host=\"^\\.tsdd\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TSHA online.org\" f=\"TSHA_online.org.xml\"><securecookie host=\"^\\.tshaonline\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TSMC.com (partial)\" f=\"TSMC.com.xml\"><rule from=\"^http://(ec[at]online|online)\\.tsmc\\.com/\" to=\"https://$1.tsmc.com/\"/></ruleset>", "<ruleset name=\"TSO.co.uk\" default_off=\"failed ruleset test\" f=\"TSO.co.uk.xml\"><securecookie host=\"^(?:www)?\\.tso\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?tso\\.co\\.uk/\" to=\"https://www.tso.co.uk/\"/><rule from=\"^http://www\\.stats\\.tso\\.co\\.uk/\" to=\"https://www.stats.tso.co.uk/\"/></ruleset>", "<ruleset name=\"TSO Shop\" f=\"TSOshop.co.uk.xml\"><securecookie host=\"^www\\.tsoshop\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TShare.to\" default_off=\"failed ruleset test\" f=\"TShare.to.xml\"><securecookie host=\"^\\.?tshare\\.to$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TT.se\" f=\"TT.se.xml\"><rule from=\"^http://tt\\.se/\" to=\"https://www.tt.se/\"/><rule from=\"^http://www\\.tt\\.se/\" to=\"https://www.tt.se/\"/></ruleset>", "<ruleset name=\"TTIP-Stoppen.at\" f=\"TTIP-Stoppen.at.xml\"><rule from=\"^http://ttip-stoppen\\.at/\" to=\"https://www.ttip-stoppen.at/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TTxm.co.uk\" f=\"TTxm.co.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TU-Chemnitz.de (partial)\" f=\"TU-Chemnitz.de.xml\"><rule from=\"^http://(?:www\\.)?tu-chemnitz\\.de/\" to=\"https://www.tu-chemnitz.de/\"/><rule from=\"^http://(www\\.bibliothek|www-user)\\.tu-chemnitz\\.de/\" to=\"https://$1.tu-chemnitz.de/\"/></ruleset>", "<ruleset name=\"TU-Darmstadt.de (partial)\" f=\"TU-Darmstadt.de.xml\"><securecookie host=\"^www\\.(?:cdc\\.)?www\\.informatik\\.tu-darmstadt\\.de$\" name=\".+\"/><rule from=\"^http://(www\\.cs|(?:idm-bi01|sso|www)\\.hrz|www\\.idm|(?:(?:wiki|www)\\.cdc|www)\\.informatik|www\\.ulb|www)\\.tu-darmstadt\\.de/\" to=\"https://$1.tu-darmstadt.de/\"/></ruleset>", "<ruleset name=\"TU-Dresden.de (partial)\" f=\"TU-Dresden.de.xml\"><securecookie host=\"^dudle\\.inf\\.tu-dresden\\.de$\" name=\".+\"/><rule from=\"^http://(?:(?:www\\.)?iai\\.)?inf\\.tu-dresden\\.de/\" to=\"https://www.inf.tu-dresden.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TU I TAM\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"TU-I-TAM.xml\"><securecookie host=\"^(?:.*\\.)?tuitam\\.pl$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TU-Ilmenau.de\" f=\"TU-Ilmenau.de.xml\"><securecookie host=\"^\\.www(?:test)?\\.tu-ilmenau\\.de$\" name=\"^fe_typo_user$\"/><rule from=\"^http://(?:www(test)?\\.)?tu-ilmenau\\.de/\" to=\"https://www$1.tu-ilmenau.de/\"/></ruleset>", "<ruleset name=\"TUE.nl (partial)\" default_off=\"failed ruleset test\" f=\"TUE.nl.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^_gat?$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TUGRaz.at (partial)\" default_off=\"failed ruleset test\" f=\"TUGraz.at.xml\"><exclusion pattern=\"^http://portal\\.tugraz\\.at/+(?!tugraz/sso/login\\?site2pstoretoken=)\"/><rule from=\"^http://(analytics|www\\.campusonline|dav-id|donation|jce\\.iaik|online|portal|sso|tu4u)\\.tugraz\\.at/\" to=\"https://$1.tugraz.at/\"/><rule from=\"^http://tugnet\\.tugraz\\.at/\" to=\"https://portal.tugraz.at/portal/page/portal/zid/netzwerk/\"/><rule from=\"^http://www\\.zid\\.tugraz\\.at/\" to=\"https://portal.tugraz.at/portal/page/portal/zid/\"/><rule from=\"^http://online\\.tu-graz\\.ac\\.at/\" to=\"https://online.tu-graz.ac.at/\"/></ruleset>", "<ruleset name=\"TUHH.de (partial)\" f=\"TUHH.de.xml\"><rule from=\"^http://www\\.tu-hamburg\\.de/\" to=\"https://www.tu-hamburg.de/\"/><rule from=\"^http://(intranet|intranet\\.v|www)\\.tu-harburg\\.de/\" to=\"https://$1.tu-harburg.de/\"/><rule from=\"^http://(intranet|intranet\\.v|www)\\.tuhh\\.de/\" to=\"https://$1.tuhh.de/\"/></ruleset>", "<ruleset name=\"TUT.fi (partial)\" f=\"TUT.fi.xml\"><securecookie host=\"^idp\\.tut\\.fi$\" name=\".+\"/><rule from=\"^http://(www\\.cs|idp)\\.tut\\.fi/\" to=\"https://$1.tut.fi/\"/></ruleset>", "<ruleset name=\"TV1.eu\" f=\"TV1.eu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TV2.dk (mixed content)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"TV2.dk-mixedcontent.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TV2.dk (partial)\" f=\"TV2.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TV4play.se\" default_off=\"failed ruleset test\" f=\"TV4Play.se.xml\"><rule from=\"^http://api\\.tv4play\\.se/\" to=\"https://sslapi.tv4play.se/\"/><rule from=\"^http://tv4play\\.se/\" to=\"https://www.tv4play.se/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TVBrowser.org\" default_off=\"mismatched, self-signed\" platform=\"mixedcontent\" f=\"TVBrowser.org.xml\"><securecookie host=\"^(?:\\.hilfe\\.)?tvbrowser\\.org$\" name=\".+\"/><rule from=\"^http://(?:(hilfe\\.)|www\\.)?tvbrowser\\.org/\" to=\"https://$1tvbrowser.org/\"/></ruleset>", "<ruleset name=\"TVLine.com\" f=\"TVLine.com.xml\"><rule from=\"^http://www\\.tvline\\.com/\" to=\"https://tvline.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TVLinks (partial)\" f=\"TVLinks.xml\"><rule from=\"^http://i\\.tvlim\\.com/\" to=\"https://d2hhnaah6fgxxa.cloudfront.net/\"/><rule from=\"^http://s\\.tvlim\\.com/\" to=\"https://d1fv5i6aszv8fs.cloudfront.net/\"/></ruleset>", "<ruleset name=\"TVNZ\" f=\"TVNZ.xml\"><securecookie host=\"^\\.?tvnz\\.co\\.nz$\" name=\".+\"/><rule from=\"^http://download\\.tvnz\\.co\\.nz/\" to=\"https://images.tvnz.co.nz/\"/><rule from=\"^http://shop\\.tvnz\\.co\\.nz/\" to=\"https://store-prbg35.mybigcommerce.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TVNewsCheck.com (partial)\" f=\"TVNewsCheck.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?tvnewscheck\\.com/(?!asset/|/?playout/wp-content/|resource/|sites/|sso/)\"/><rule from=\"^http://(?:assets\\.|www\\.)?tvnewscheck\\.com/\" to=\"https://www.tvnewscheck.com/\"/></ruleset>", "<ruleset name=\"TVShow Time.com\" f=\"TVShow_Time.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TV Nutt.com (false MCB)\" platform=\"mixedcontent\" f=\"TV_Nutt.com.xml\"><securecookie host=\"^(?:www\\.)?tvnutt\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TV Tropes (partial)\" default_off=\"webmaster request\" f=\"TV_Tropes.xml\"><rule from=\"^http://static\\.(?:mediatropes\\.info|tvtropes\\.org)/\" to=\"https://gp1.wac.edgecastcdn.net/00A20D/\"/></ruleset>", "<ruleset name=\"TWRP\" default_off=\"failed ruleset test\" f=\"TWRP.xml\"><securecookie host=\"^.*\\.twrp\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TWiT.tv\" f=\"TWiT.tv.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TYPO3.org (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"TYPO3.org-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TYPO3.org (partial)\" default_off=\"failed ruleset test\" f=\"TYPO3.xml\"><exclusion pattern=\"^http://flow\\.typo3\\.org/+(?!_Resources/)\"/><securecookie host=\"^\\.\" name=\"^fe_typo_user$\"/><securecookie host=\"^(?!flow\\.).\" name=\".\"/><rule from=\"^http://neos\\.typo3\\.org/+\" to=\"https://www.neos.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TZ.de\" f=\"TZ.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TaDst.com\" f=\"TaDst.com.xml\"><rule from=\"^http://[ac]\\.tadst\\.com/\" to=\"https://c.tadst.com/\"/></ruleset>", "<ruleset name=\"Tableau.com\" f=\"Tableau.com.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://tableau\\.com/\" to=\"https://www.tableau.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Taboola (partial)\" f=\"Taboola.xml\"><securecookie host=\"^www\\.taboola\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Taboolasyndication.com (partial)\" f=\"Taboolasyndication.com.xml\"><rule from=\"^http://cdn\\.taboolasyndication\\.com/\" to=\"https://cdn.taboola.com/\"/></ruleset>", "<ruleset name=\"Tachanka.org\" f=\"Tachanka.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tactical Tech.org (partial)\" default_off=\"failed ruleset test\" f=\"Tactical_Tech.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tada.com\" platform=\"mixedcontent\" f=\"Tada.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tag1 Consulting.com\" f=\"Tag1_Consulting.com.xml\"><securecookie host=\"^\\.tag1consulting\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TagCommander.com (partial)\" f=\"TagCommander.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TagMan (partial)\" default_off=\"failed ruleset test\" f=\"TagMan.xml\"><securecookie host=\"^admin\\.tagman\\.com$\" name=\".+\"/><rule from=\"^http://admin\\.tagman\\.com/\" to=\"https://admin.tagman.com/\"/></ruleset>", "<ruleset name=\"Tagasauris.com\" default_off=\"failed ruleset test\" f=\"Tagasauris.com.xml\"><securecookie host=\"^(?:photo)?\\.tagasauris\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TagesWoche\" f=\"TagesWoche.xml\"><rule from=\"^http://tageswoche\\.ch/\" to=\"https://www.tageswoche.ch/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tagesanzeiger.ch (partial)\" f=\"Tagesanzeiger.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tagged.com\" f=\"Tagged.com.xml\"><securecookie host=\"^(?:support)?\\.tagged\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tahoe-LAFS.org\" f=\"Tahoe-LAFS.xml\"><securecookie host=\"^(?:www\\.)?tahoe-lafs\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Taiga.io\" f=\"Taiga.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tailgaters Parking.com\" f=\"Tailgaters_Parking.com.xml\"><securecookie host=\"^(?:w*\\.)?tailgatersparking\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tailor Made Answers\" f=\"Tailor-Made-Answers.xml\"><rule from=\"^http://(?:www\\.)?tailormadeanswers\\.com/\" to=\"https://tailormadeanswers.com/\"/></ruleset>", "<ruleset name=\"Take Control Ebooks\" f=\"Take_Control_Ebooks.xml\"><securecookie host=\"^(?:.*\\.)?takecontrolbooks\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Takeaway.com\" f=\"Takeaway.com.xml\"><securecookie host=\"^(?:www\\.)?takeaway\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tal.de\" f=\"Tal.de.xml\"><securecookie host=\"^(?:api|backup|mysql\\d\\d|service|webmail|winbackup|xvp)\\.tal\\.de$\" name=\".+\"/><rule from=\"^http://(api|backup|mysql\\d\\d|service|webmail|winbackup|xvp)\\.tal\\.de/\" to=\"https://$1.tal.de/\"/></ruleset>", "<ruleset name=\"Talemetry Today.com\" default_off=\"shows default page\" f=\"Talemetry.com-problematic.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Talemetry.com (partial)\" f=\"Talemetry.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TalentSmart.com (partial)\" f=\"TalentSmart.com.xml\"><exclusion pattern=\"^http://www\\.talentsmart\\.com/+(?!css/|eia360(?:$|[?/])|eiqb2/|favicon\\.ico|images/|member(?:/*$|/*\\?|/+(?:login|passretr|register)\\.php)|mev2/|mrv2/refined/+(?:admin|passretr)\\.php)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Talentopoly.com (partial)\" f=\"Talentopoly.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Taleo.net (partial)\" f=\"Taleo.net.xml\"><securecookie host=\"^(?:oracle|(?:.+\\.)?tbe)\\.taleo\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Taleo.com (partial)\" default_off=\"failed ruleset test\" f=\"Taleo.xml\"><rule from=\"^http://(?:www\\.)?taleo\\.com/$\" to=\"https://www.oracle.com/us/products/applications/taleo/overview/index.html\"/></ruleset>", "<ruleset name=\"Talgov.com\" f=\"Talgov.com.xml\"><securecookie host=\"^(?:www\\.)?talgov\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Talk Active (mismatches)\" default_off=\"mismatch, self-signed\" f=\"Talk-Active-mismatches.xml\"><securecookie host=\"^web10\\.dk$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?talkactive\\.net/\" to=\"https://talkactive.net/\"/><rule from=\"^http://(?:www\\.)?web10\\.dk/\" to=\"https://web10.dk/\"/></ruleset>", "<ruleset name=\"Talk Active (partial)\" f=\"Talk-Active.xml\"><securecookie host=\"^webmail\\.talkactive\\.net$\" name=\".*\"/><rule from=\"^http://web(12|mail)\\.talkactive\\.net/\" to=\"https://web$1.talkactive.net/\"/></ruleset>", "<ruleset name=\"TalkTalk-Labs.com\" default_off=\"503\" f=\"TalkTalk-Labs.com.xml\"><rule from=\"^http://(?:www\\.)?talktalk-labs\\.com/\" to=\"https://www.talktalk-labs.com/\"/></ruleset>", "<ruleset name=\"TalkTalk (mismatches)\" default_off=\"mismatched\" f=\"TalkTalk-mismatches.xml\"><securecookie host=\"^(?:.*\\.)?talktalktechnology\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?talktalktechnology\\.com/\" to=\"https://www.talktalktechnology.com/\"/></ruleset>", "<ruleset name=\"TalkTalk.co.uk (partial)\" default_off=\"failed ruleset test\" f=\"TalkTalk.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TalkTalk Business.co.uk\" default_off=\"failed ruleset test\" f=\"TalkTalk_Business.co.uk.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"talkhealth partnership.com\" default_off=\"failed ruleset test\" f=\"Talkhealth_partnership.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Talking Points Memo.com (partial)\" f=\"Talking_Points_Memo.com.xml\"><rule from=\"^http://cdn1\\.talkingpointsmemo\\.com/\" to=\"https://d2lix3jnlp95fq.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Talkoclock.com (partial)\" default_off=\"expired\" f=\"Talkoclock.com.xml\"><securecookie host=\"^www\\.talkoclock\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?talkoclock\\.com/\" to=\"https://www.talkoclock.com/\"/></ruleset>", "<ruleset name=\"Talky.io\" default_off=\"failed ruleset test\" f=\"Talky.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tallinn University of Technology\" default_off=\"expired, self-signed\" f=\"Tallinn-University-of-Technology.xml\"><securecookie host=\"^www\\.ioc\\.ee$\" name=\".*\"/><securecookie host=\"^ttu\\.ee$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?ioc\\.ee/\" to=\"https://www.ioc.ee/\"/><rule from=\"^http://(?:www\\.)?ttu\\.ee/\" to=\"https://ttu.ee/\"/></ruleset>", "<ruleset name=\"Tampa Bay.com (partial)\" f=\"Tampa_Bay.com.xml\"><exclusion pattern=\"^http://www\\.tampabay\\.com/+(?!(?:404\\.page|bay|cars|company|edeals|homes|jobs|marketplace|mediakit|postad|publication|search|shopping|subscribe|tb-two)(?:$|[?/])|components/|favicon\\.ico|iwov-resources/|media/|resources/|specials/$|universal/(?:css|graphics|images|media|nav|static)/|wunderground/)\"/><securecookie host=\"^\\.tampabay\\.com$\" name=\"^s_\\w\\w(?:_.*)?$\"/><rule from=\"^http://(home|job)s\\.tampabay\\.com/+(?:\\?.*)?$\" to=\"https://www.tampabay.com/$1s/\"/><rule from=\"^http://(placead\\.|www\\.)?tampabay\\.com/\" to=\"https://$1tampabay.com/\"/></ruleset>", "<ruleset name=\"Tampa Bay Sod.com\" f=\"Tampa_Bay_Sod.com.xml\"><rule from=\"^http://(www\\.)?tampabaysod\\.com/(?=favicon\\.ico|my-account(?:$|[?/])|wp-content/|wp-includes/)\" to=\"https://$1tampabaysod.com/\"/></ruleset>", "<ruleset name=\"Tampermonkey.net\" f=\"Tampermonkey.xml\"><rule from=\"^http:\" to=\"https:\"/><securecookie host=\"^forum\\.tampermonkey\\.net$\" name=\".+\"/></ruleset>", "<ruleset name=\"TanCity.de\" default_off=\"failed ruleset test\" f=\"TanCity.de.xml\"><securecookie host=\"^www\\.tancity\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?tancity\\.de/\" to=\"https://www.tancity.de/\"/></ruleset>", "<ruleset name=\"Tandem Calendar\" f=\"Tandem_Calendar.xml\"><securecookie host=\".+\\.intand\\.com$\" name=\".+\"/><securecookie host=\"^(?:www\\.)?tandemcal\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tandlakarforbundet.se\" f=\"Tandlakarforbundet.se.xml\"><rule from=\"^http://tandlakarforbundet\\.se/\" to=\"https://www.tandlakarforbundet.se/\"/><rule from=\"^http://www\\.tandlakarforbundet\\.se/\" to=\"https://www.tandlakarforbundet.se/\"/></ruleset>", "<ruleset name=\"Tandridge.gov.uk (MCB)\" platform=\"mixedcontent\" f=\"Tandridge.gov.uk-mixedcontent.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tandridge.gov.uk (partial)\" f=\"Tandridge.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://consult\\.tandridge\\.gov\\.uk/\" to=\"https://tandridge-consult.objective.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tangerine Bank\" f=\"Tangerine-Bank.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://(www\\.)?tangerine\\.com/\" to=\"https://$1tangerine.ca/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tango.me (partial)\" default_off=\"failed ruleset test\" f=\"Tango.me.xml\"><exclusion pattern=\"^http://support\\.tango\\.me/(?!favicon\\.ico|images/|system/)\"/><securecookie host=\"^\\.tango\\.me$\" name=\"(?:incap_ses_\\d+|nlbi|visid_incap)_\\d+$\"/><securecookie host=\"^www\\.tango\\.me$\" name=\".+\"/><rule from=\"^http://support\\.tango\\.me/\" to=\"https://tangome.zendesk.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TankaFetast.com\" default_off=\"failed ruleset test\" f=\"TankaFetast.com.xml\"><securecookie host=\"^(?:w*\\.)?tankafetast\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tanomail.com\" f=\"Tanomail.com.xml\"><securecookie host=\"^(?:tnbc|www)\\.tanomail\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tante.cc\" f=\"Tante.cc.xml\"><securecookie host=\"^(connected\\.)?tante\\.cc$\" name=\"^PHPSESSID$\"/><securecookie host=\"^(?:connected\\.)?tante\\.cc$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tao Effect.com\" f=\"Tao_Effect.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Taobao.com-mixedcontent\" platform=\"mixedcontent\" f=\"Taobao.com-mixedcontent.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Taobao.com (partial)\" f=\"Taobao.com.xml\"><rule from=\"^http://global\\.taobao\\.com/\" to=\"https://g.taobao.com/\"/><rule from=\"^http://logo\\.taobao\\.com/\" to=\"https://img.alicdn.com/\"/><securecookie host=\"^\\.taobao\\.com$\" name=\"^ali_ab$\"/><securecookie host=\"^(?:bgt|caipiao|\\.login\\.m|mm|re|mosaic\\.re|temai)\\.taobao\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Taobao_CDN.com (partial)\" f=\"Taobao_CDN.com.xml\"><rule from=\"^http://assets\\.taobaocdn\\.com/\" to=\"https://s.tbcdn.cn/\"/><rule from=\"^http://download\\.taobaocdn\\.com/\" to=\"https://download.alicdn.com/\"/><rule from=\"^http://img(0\\d)?\\.taobaocdn\\.com/\" to=\"https://img.alicdn.com/\"/></ruleset>", "<ruleset name=\"Tapad (partial)\" default_off=\"failed ruleset test\" f=\"Tapad.xml\"><securecookie host=\"^\\.tapad\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tapatalk.com\" f=\"Tapatalk.xml\"><securecookie host=\"^tapatalk\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tape.tv\" default_off=\"failed ruleset test\" f=\"Tape.tv.xml\"><securecookie host=\"^\\.tape\\.tv$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tapgage\" default_off=\"failed ruleset test\" f=\"Tapgage.xml\"><securecookie host=\"^www\\.tapgage\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tapiture.com (partial)\" default_off=\"failed ruleset test\" f=\"Tapiture.com.xml\"><securecookie host=\"^\\.tapiture\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tar-jx.bz\" f=\"Tar-jx.bz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Terasic.com.tw (partial)\" f=\"Tarasic.com.tw.xml\"><exclusion pattern=\"^http://terasic\\.com\\.tw/+[^?]\"/><securecookie host=\"^www\\.terasic\\.com\\.tw$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?terasic\\.com\\.tw/\" to=\"https://www.terasic.com.tw/\"/></ruleset>", "<ruleset name=\"Target (partial) \" f=\"Target.xml\"><exclusion pattern=\"^http://m-beta-secure\\.target\\.com/\"/><securecookie host=\"^\\.m-secure\\.target\\.com$\" name=\".+\"/><securecookie host=\"^.+\\.target\\.com$\" name=\".+\"/><rule from=\"^http://([\\w-]+-secure(?:-perf|-stg)?|(?:images-)?babycatalog|(?:baby|m\\.baby|home|patio|toys|wedding)\\.catalogs|college|corporate(?:-admin)?|health|microsites|mrcam|secureconnect|sites|tgtfiles)\\.target\\.com/\" to=\"https://$1.target.com/\"/><rule from=\"^http://m\\.target\\.com/\" to=\"https://m-secure.target.com/\"/><rule from=\"^http://([\\w-]+)-secure(-perf|-stg)?\\.targetimg(\\d)\\.com/\" to=\"https://$1-secure$2.targetimg$3.com/\"/><rule from=\"^http://img(\\d)\\.targetimg\\d\\.com/\" to=\"https://img$1-secure.targetimg$1.com/\"/><rule from=\"^http://static\\.targetimg1\\.com/\" to=\"https://static.targetimg1.com/\"/></ruleset>", "<ruleset name=\"Targeting Performance\" f=\"Target_Performance.xml\"><rule from=\"^http://ad\\.ad-srv\\.net/\" to=\"https://ad.ad-srv.net/\"/><rule from=\"^http://(n2|n34)\\.ad\\.ad-srv\\.net/\" to=\"https://$1.ad-srv.net/\"/></ruleset>", "<ruleset name=\"Targeted Threats.net\" default_off=\"failed ruleset test\" f=\"Targeted_Threats.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Taringa\" f=\"Taringa.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tarlogic.com\" default_off=\"failed ruleset test\" f=\"Tarlogic.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tarsnap\" f=\"Tarsnap.xml\"><rule from=\"^http://(?:www\\.)?tarsnap\\.com/\" to=\"https://www.tarsnap.com/\"/></ruleset>", "<ruleset name=\"Tartarus.org\" f=\"Tartarus.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TaskCluster.net (partial)\" f=\"TaskCluster.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Task Force on Shale Gas.uk\" f=\"Task_Force_on_Shale_Gas.uk.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\"\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Taskforce.is\" f=\"Taskforce.is.xml\"><securecookie host=\"^\\.taskforce\\.is$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Taskwarrior (partial)\" f=\"Taskwarrior.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Taste of the North End\" default_off=\"mismatched\" f=\"Taste-of-the-North-End.xml\"><rule from=\"^http://(?:www\\.)?tasteofthenorthend\\.org/\" to=\"https://tasteofthenorthend.org/\"/></ruleset>", "<ruleset name=\"TasteKid.com\" f=\"TasteKid.com.xml\"><securecookie host=\"^(?:\\.?www)?\\.tastekid\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TataSky\" f=\"TataSky.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tate Publishing.com\" f=\"Tate_Publishing.com.xml\"><securecookie host=\"^(?:www\\.)?tatepublishing\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tatsotsbank.ru\" f=\"Tatsotsbank.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TauCeti.org.au\" f=\"TauCeti.org.au.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tau Day.com\" default_off=\"mismatched\" f=\"Tau_Day.com.xml\"><securecookie host=\"^tauday\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?tauday\\.com/\" to=\"https://www.tauday.com/\"/></ruleset>", "<ruleset name=\"Taunton Deane.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"Taunton_Deane.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://consultldf\\.tauntondeane\\.gov\\.uk/\" to=\"https://tauntondeane-consult.objective.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tawk.to\" f=\"TawkTo.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TaxAct (partial)\" default_off=\"failed ruleset test\" f=\"TaxAct.xml\"><securecookie host=\".*\\.taxact(online)?\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TaxPayers' Alliance\" default_off=\"failed ruleset test\" f=\"TaxPayers_Alliance.xml\"><securecookie host=\"(?:www)?\\.taxpayersalliance\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?taxpayersalliance\\.com/\" to=\"https://www.taxpayersalliance.com/\"/></ruleset>", "<ruleset name=\"Tb.cn\" default_off=\"missing certificate chain\" f=\"Tb.cn.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TbCDN.cn\" f=\"TbCDN.cn.xml\"><rule from=\"^http://a\\.tbcdn\\.cn/\" to=\"https://s.tbcdn.cn/\"/><rule from=\"^http://g\\.tbcdn\\.cn/\" to=\"https://g.alicdn.com/\"/><rule from=\"^http://img3\\.tbcdn\\.cn/\" to=\"https://img.alicdn.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tbib.org\" f=\"Tbib.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TblSft.com\" f=\"TblSft.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tchibo\" default_off=\"failed ruleset test\" f=\"Tchibo.xml\"><rule from=\"^http://(?:www\\.)?tchibo\\.de/\" to=\"https://www.tchibo.de/\"/><rule from=\"^http://(?:www\\.)?tchibo\\.ch/\" to=\"https://www.tchibo.ch/\"/><rule from=\"^http://(?:www\\.)?fr\\.tchibo\\.ch/\" to=\"https://www.fr.tchibo.ch/\"/><rule from=\"^http://(?:www\\.)?eduscho\\.at/\" to=\"https://www.eduscho.at/\"/><rule from=\"^http://(?:www\\.)?tchibo\\.sk/\" to=\"https://www.tchibo.sk/\"/><rule from=\"^http://(?:www\\.)?tchibo\\.com\\.tr/\" to=\"https://www.tchibo.com.tr/\"/><rule from=\"^http://(?:www\\.)?tchibo\\.pl/\" to=\"https://www.tchibo.pl/\"/><rule from=\"^http://(?:www\\.)?tchibo\\.cz/\" to=\"https://www.tchibo.cz/\"/><rule from=\"^http://(?:www\\.)?tchibo\\.hu/\" to=\"https://www.tchibo.hu/\"/><rule from=\"^http://(?:www\\.)?tchibo-ideas\\.de/\" to=\"https://www.tchibo-ideas.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tcl.tk (partial)\" f=\"Tcl.tk.xml\"><rule from=\"^http://tip\\.tcl\\.tk/\" to=\"https://www.tcl.tk/cgi-bin/tct/tip/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tcodevelopment.com\" default_off=\"invalid certificate\" f=\"Tcodevelopment.com.xml\"><rule from=\"^http://(?:www\\.)?tcodevelopment\\.com/\" to=\"https://www.tcodevelopment.com/\"/></ruleset>", "<ruleset name=\"Tdesktop.com\" default_off=\"failed ruleset test\" f=\"Tdesktop.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tdnam.com\" f=\"Tdnam.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TeX Users Group\" f=\"TeX-Users-Group.xml\"><rule from=\"^http://(?:www\\.)?tug\\.org/\" to=\"https://www.tug.org/\"/></ruleset>", "<ruleset name=\"Tea Party Patriots\" f=\"Tea-Party-Patriots.xml\"><securecookie host=\"^www\\.teapartypatriots\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?teapartypatriots\\.org/\" to=\"https://www.teapartypatriots.org/\"/></ruleset>", "<ruleset name=\"Teachers Assurance\" f=\"Teachers_Assurance.xml\"><securecookie host=\".+\\.teachersassurance\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://teachersassurance\\.co\\.uk/.*\" to=\"https://www.teachersassurance.co.uk/\"/><rule from=\"^http://(customer|securevpn|www)\\.teachersassurance\\.co\\.uk/\" to=\"https://$1.teachersassurance.co.uk/\"/></ruleset>", "<ruleset name=\"Teacups and Trinkets.co.uk\" default_off=\"failed ruleset test\" f=\"Teacups_and_Trinkets.co.uk.xml\"><securecookie host=\"^(?:w*\\.)?teacupsandtrinkets\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Teads.tv (partial)\" f=\"Teads.tv.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tealium (partial)\" default_off=\"failed ruleset test\" f=\"Tealium.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"team-share.net\" f=\"Team-share.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TeamBoard.com\" f=\"TeamBoard.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TeamForge.net (partial)\" f=\"TeamForge.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Team Cymru\" f=\"Team_Cymru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Team Gaslight.com\" f=\"Team_Gaslight.com.xml\"><rule from=\"^http://www\\.teamgaslight\\.com/\" to=\"https://teamgaslight.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Team UNICEF.org\" f=\"Team_UNICEF.org.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Team in Training.org (partial)\" default_off=\"failed ruleset test\" f=\"Team_in_Training.org.xml\"><securecookie host=\"^www\\.teamintraining\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?teamintraining\\.org/\" to=\"https://www.teamintraining.org/\"/></ruleset>", "<ruleset name=\"Teamtailor.com (partial)\" f=\"Teamtailor.com.xml\"><exclusion pattern=\"^http://paradox-interactive\\.teamtailor\\.com/$\"/><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\".\\.teamtailor\\.com$\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Teamviewer.com\" default_off=\"failed ruleset test\" f=\"Teamviewer.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Teamweek.com (partial)\" f=\"Teamweek.com.xml\"><securecookie host=\"^\\.new\\.teamweek\\.com$\" name=\"^__utm\\w+$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Teamxlink\" default_off=\"Cert warning\" f=\"Teamxlink.xml\"><rule from=\"^http://(?:www\\.)?teamxlink\\.co\\.uk/\" to=\"https://www.teamxlink.co.uk/\"/></ruleset>", "<ruleset name=\"TeardownIQ.com\" f=\"TeardownIQ.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tech-Recipes.com\" default_off=\"shows default page\" f=\"Tech-Recipes.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TechEmpower.com\" f=\"TechEmpower.com.xml\"><rule from=\"^http://techempower\\.com/\" to=\"https://www.techempower.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TechEnclave.com\" f=\"TechEnclave.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TechFreedom.org\" default_off=\"refused\" f=\"TechFreedom.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TechHouse\" f=\"TechHouse.xml\"><securecookie host=\"^(?:.+\\.)?techhouse\\.org$\" name=\".*\"/><rule from=\"^http://techhouse\\.org/\" to=\"https://techhouse.org/\"/><rule from=\"^http://(www)\\.techhouse\\.org/\" to=\"https://$1.techhouse.org/\"/></ruleset>", "<ruleset name=\"TechOnline.com (partial)\" f=\"TechOnline.com.xml\"><rule from=\"^http://media\\.techonline\\.com/\" to=\"https://dpzfphvq26nxh.cloudfront.net/\"/></ruleset>", "<ruleset name=\"TechPresident.com\" default_off=\"expired\" f=\"TechPresident.com.xml\"><securecookie host=\"^\\.techpresident\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TechRepublic.com (problematic)\" default_off=\"mismatched\" f=\"TechRepublic.com-problematic.xml\"><securecookie host=\"^www\\.techrepublic\\.com$\" name=\".+\"/><rule from=\"^http://www\\.techrepublic\\.com/\" to=\"https://www.techrepublic.com/\"/></ruleset>", "<ruleset name=\"TechRepublic.com (partial)\" default_off=\"failed ruleset test\" f=\"TechRepublic.xml\"><exclusion pattern=\"^http://www\\.techrepublic\\.com/(?!.+\\.(?:ico|jpg|png)(?:$|[?/]))\"/><securecookie host=\"^secure\\.techrepublic\\.com$\" name=\".+\"/><rule from=\"^http://www\\.techrepublic\\.com/\" to=\"https://techrepublic-a.akamaihd.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TechSay.com\" default_off=\"failed ruleset test\" f=\"TechSay.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TechTarget (mismatches)\" default_off=\"self-signed\" f=\"TechTarget-mismatches.xml\"><rule from=\"^http://(www\\.)?search(cloudcomputing|datacenter|networking|security|storage)\\.de/\" to=\"https://www.search$2.de/\"/><securecookie host=\"^www\\.search(?:cloudcomputing|datacenter|networking|security|storage)\\.de$\" name=\".*\"/></ruleset>", "<ruleset name=\"TechTarget.com (partial)\" f=\"TechTarget.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TechVerse (partial)\" f=\"TechVerse.xml\"><rule from=\"^http://(?:www\\.)?techverse\\.com\\.au/(chat/|images/|index\\.php\\?(?:.+&)?_a=(?:login|reg)|language/|skins/)\" to=\"https://techverse.com.au/$1\"/></ruleset>", "<ruleset name=\"TechWeb (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"TechWeb.xml\"><securecookie host=\"^store\\.drdobbs\\.com$\" name=\".+\"/><securecookie host=\"^ng\\.techweb\\.com$\" name=\".+\"/><securecookie host=\"^(?:.*\\.)?techwebonlineevents\\.com$\" name=\".*\"/><rule from=\"^http://store\\.drdobbs\\.com/\" to=\"https://store.drdobbs.com/\"/><rule from=\"^http://(i|login|ng)\\.techweb\\.com/\" to=\"https://$1.techweb.com/\"/><rule from=\"^http://(www\\.)?gamasutra\\.com/(blogs/edit/img/|css/|(?:comments/|content/blogs/)?\\w+\\.css|game_sites_superfooter_2012/|(?:db_area/)?images/)\" to=\"https://$1gamasutra.com/$2\"/><rule from=\"^http://img\\.lightreading\\.com/\" to=\"https://d2x7anl33w5mmo.cloudfront.net/\"/><rule from=\"^http://payment\\.lightreading\\.com/\" to=\"https://payment.lightreading.com/\"/><rule from=\"^http://(?:www\\.)?techwebonlineevents\\.com/\" to=\"https://www.techwebonlineevents.com/\"/><rule from=\"^http://twimgs\\.com/\" to=\"https://twimgs.com/\"/></ruleset>", "<ruleset name=\"TechXpress.net (partial)\" f=\"TechXpress.net.xml\"><securecookie host=\"^(?:(?:emailmarketing|mail|support|xm)?\\.)?techxpress\\.net$\" name=\".+\"/><rule from=\"^http://www\\.techxpress\\.net/\" to=\"https://techxpress.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tech Journey.net\" f=\"Tech_Journey.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tech Tools for Activism.org\" default_off=\"failed ruleset test\" f=\"Tech_Tools_for_Activism.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tech in Asia.com\" f=\"Tech_in_Asia.com.xml\"><securecookie host=\"^(?:www\\.)?techinasia\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Techdirt.com\" f=\"Techdirt.xml\"><securecookie host=\"^(?:www)?\\.techdirt\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Techendo.com\" f=\"Techendo.com.xml\"><securecookie host=\"^\\.techendo\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?techendo\\.com/\" to=\"https://www.techendo.com/\"/><rule from=\"^http://(beta|store)\\.techendo\\.com/\" to=\"https://$1.techendo.com/\"/></ruleset>", "<ruleset name=\"Techidiots.net (partial)\" f=\"Techidiots.xml\"><securecookie host=\"^\\.forum\\.techidiots\\.net$\" name=\".*\"/><rule from=\"^http://techidiots\\.net/\" to=\"https://www.techidiots.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Techmeme.com\" f=\"Techmeme.com.xml\"><rule from=\"^http://search\\.techmeme\\.com/\" to=\"https://www.techmeme.com/search/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Technet.com (broken)\" default_off=\"broken\" f=\"Technet.com.xml\"><securecookie host=\"^blogs\\.technet\\.com$\" name=\".*\"/><rule from=\"^http://blogs\\.technet\\.com/(.*(?:\\.aspx|\\.xml|/))?$\" to=\"https://blogs.technet.com/$1?Redirected=true\"/><rule from=\"^http://blogs\\.technet\\.com/\" to=\"https://blogs.technet.com/\"/><rule from=\"^http://(?:i\\d?)\\.blogs\\.technet\\.com/\" to=\"https://blogs.technet.com/\"/></ruleset>", "<ruleset name=\"DTU.dk (partial)\" default_off=\"failed ruleset test\" f=\"Technical-University-of-Denmark.xml\"><exclusion pattern=\"^http://(?:www\\.)?(?:(?:compute|space)\\.)?dtu\\.dk/+(?!-/media/|gimage\\.ashx|images/)\"/><securecookie host=\"^(?:backend\\.alumnenet|auth|nemid|(?:www\\.)?portalen)\\.dtu\\.dk$\" name=\".+\"/><rule from=\"^http://(space\\.)?dtu\\.dk/\" to=\"https://www.$1dtu.dk/\"/><rule from=\"^http://www\\.portalen\\.dtu\\.dk/\" to=\"https://portalen.dtu.dk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Technical University of Lisbon (self-signed)\" default_off=\"self-signed\" f=\"Technical-University-of-Lisbon-Darkstar.xml\"><rule from=\"^http://(darkstar|tecnica)\\.ist\\.utl\\.pt/\" to=\"https://$1.ist.utl.pt/\"/></ruleset>", "<ruleset name=\"Technical University of Lisbon\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Technical-University-of-Lisbon.xml\"><rule from=\"^http://(www\\.)?(ist\\.|rnl\\.ist\\.)?utl\\.pt/\" to=\"https://www.$2utl.pt/\"/><rule from=\"^http://ftp\\.rnl\\.ist\\.utl\\.pt/\" to=\"https://ftp.rnl.ist.utl.pt/\"/></ruleset>", "<ruleset name=\"Technical.ly (partial)\" default_off=\"failed ruleset test\" f=\"Technical.ly.xml\"><exclusion pattern=\"^http://(www\\.)?technical\\.ly/(\\?|\\d{4}/\\d\\d/\\d\\d/|about/|advertising/|category/|contact-us/|directory/|ethics/|jobs/|organization/|post-a-job/)?$\"/><rule from=\"^http://rise\\.technical\\.ly/\" to=\"https://rise2015.splashthat.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Technical Community.com\" f=\"Technical_Community.com.xml\"><securecookie host=\"^www\\.technicalcommunity\\.com$\" name=\".+\"/><rule from=\"^http://technicalcommunity\\.com/\" to=\"https://www.technicalcommunity.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Technical University Munich (partial)\" default_off=\"failed ruleset test\" f=\"Technical_University_Munich.xml\"><securecookie host=\"^(?:in|(?:adm9|ias|sec|www)\\.in|mediatum\\.ub|www(?:\\.lehren?)?)?\\.tum\\.de$\" name=\".+\"/><securecookie host=\"^ias\\.cs\\.tum\\.edu$\" name=\".+\"/><securecookie host=\"^(?:www|ias\\.informatik)\\.tu-muenchen\\.de$\" name=\".+\"/><rule from=\"^http://www(\\.lehren?|\\.piwik)?\\.tum\\.de/\" to=\"https://www$1.tum.de/\"/><rule from=\"^http://((?:(?:ias|sec|www|www21)\\.)?in|mediatum\\.ub)\\.tum\\.de/\" to=\"https://$1.tum.de/\"/><rule from=\"^http://ias\\.cs\\.tum\\.edu/\" to=\"https://ias.cs.tum.edu/\"/><rule from=\"^http://((?:ias|mailmanbroy)\\.informatik|www)\\.tu-muenchen\\.de/\" to=\"https://$1.tu-muenchen.de/\"/><rule from=\"^http://isabelle\\.in\\.tum\\.de/\" to=\"https://isabelle.in.tum.de/\"/></ruleset>", "<ruleset name=\"Techniker Krankenkasse\" f=\"Techniker-Krankenkasse.xml\"><rule from=\"^http://(?:www\\.)?tk\\.de/\" to=\"https://www.tk.de/\"/></ruleset>", "<ruleset name=\"Technische Aufklärung\" f=\"Technische_Aufklarung.xml\"><rule from=\"^http://www\\.technische-aufklaerung\\.de/\" to=\"https://technische-aufklaerung.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Technische Universität Berlin (partial)\" f=\"Technische_Universitat_Berlin.xml\"><securecookie host=\"^\\.tu-berlin\\.de$\" name=\"^fe_typo_user$\"/><securecookie host=\"^(?:www\\.alumni|exchange|mail|\\.horde-test\\.tubit|\\.webmail)\\.tu-berlin\\.de$\" name=\".+\"/><rule from=\"^http://(mailbox\\.alumni|(?:www\\.)?chemie|exchange|mail|mailbox|(?:www\\.)?mig|(?:(?:aagw|horde-test|wlan|www)\\.)?tubit|webmail|www)\\.tu-berlin\\.de/\" to=\"https://$1.tu-berlin.de/\"/><rule from=\"^http://www\\.(ab|accounting|agrs|aio|ak|angewbiochem|antennen-emv|arbeits-umweltschutz|alumni|architektur|auslandsamt|auslandsamt|avstudiofak1|avt|aw|ba|bahnsysteme|bau|bauinformatik|bauprozessmodelle|baustoffe|becap|behindertenberatung|betreuung-int-stud|bioanorganik|biodiv|bioenergetik|biophys-chemie|biopsych|biotech|boden|bodenkunde|brauwesen|campusradio|career|china|cit|clw|cognition|cv|daf|dbta|dima|eecs|ek-massivbau|ek-stahlbau|ek-verbundstrukturen|elv|energie|energietechnik|energiewirtschaft|energy|ensys|enzymtechnologie|evur|explorationsgeologie|facilities|fak\\d|finance|finanzen|finanzierung|flp|fsd|fsp-wib|geo|geolab|geophysik|geschichte|geschundkunstgesch|ginut|gkwi|glas|gsw|heclinet|hft|histurbanistik|hlb|ht|humanfactors|hydrogeologie|ic|iea|ifkp|iit|ikm|ils|immatrikulation|impetus|ingenieurgeologie|int-admission|ioap|ipa|isti|itp|iz-wib|kbs|kfz|ki|kke|km|kpl|kup|kw|la|lehrerbildung|li|literaturwissenschaft|logistik|marketing|marsys|math|medtech|mineralogie|ml|move-it|mrt|mtv|musikwissenschaft|mwt|nachwuchsbuero|naturwissenschaften|planen-bauen-umwelt|wm)\\.tu-berlin\\.de/\" to=\"https://www.$1.tu-berlin.de/\"/><rule from=\"^http://autodiscover\\.tu-berlin\\.de/\" to=\"https://exchange.tu-berlin.de/\"/></ruleset>", "<ruleset name=\"TechnoPortal.ua (partial)\" f=\"TechnoPortal.ua.xml\"><exclusion pattern=\"^http://i\\.technoportal\\.ua/+(?:$|\\?)\"/><securecookie host=\"^technoportal\\.ua$\" name=\".+\"/><securecookie host=\"^\\.technoportal\\.ua$\" name=\"^(TPFE_(?:event|page|referer)|cookiesAgree)$\"/><rule from=\"^http://i\\.technoportal\\.ua/\" to=\"https://technoportal.ua/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Technocrat.net\" f=\"Technocrat.net.xml\"><securecookie host=\"^(?:w*\\.)?technocrat\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TechnologyReview.com (partial)\" f=\"TechnologyReview.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><rule from=\"^http://technologyreview\\.com/\" to=\"https://www.technologyreview.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Technolutions.net\" f=\"Technolutions.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Technomedia\" f=\"Technomedia.xml\"><securecookie host=\"^www\\.technomedia\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?technomedia\\.com/\" to=\"https://www.technomedia.com/\"/></ruleset>", "<ruleset name=\"Technorati.com (partial)\" f=\"Technorati.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Technovelty.org\" f=\"Technovelty.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Techopedia.com\" f=\"Techopedia.com.xml\"><securecookie host=\"^(?:cms|www)?\\.techopedia\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?techopedia\\.com/\" to=\"https://www.techopedia.com/\"/><rule from=\"^http://cms\\.techopedia\\.com/\" to=\"https://cms.techopedia.com/\"/></ruleset>", "<ruleset name=\"Techpinions.com\" f=\"Techpinions.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Techpowerup.com\" f=\"Techpowerup.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Tech Report (partial)\" f=\"Techreport.com.xml\"><securecookie host=\"^\\.?techreport\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?techreport\\.com/\" to=\"https://techreport.com/\"/></ruleset>", "<ruleset name=\"Techslinger.com\" default_off=\"failed ruleset test\" f=\"Techslinger.com.xml\"><securecookie host=\"^www\\.techslinger\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"techstats.net\" f=\"Techstats.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Techsupportalert\" platform=\"mixedcontent\" f=\"Techsupportalert.xml\"><rule from=\"^http://(?:www\\.)?techsupportalert\\.com/\" to=\"https://www.techsupportalert.com/\"/></ruleset>", "<ruleset name=\"tecnocode.co.uk\" f=\"Tecnocode.co.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tectonic.com\" f=\"Tectonic.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Teddy Hyde.com\" default_off=\"expired, mismatched\" f=\"Teddy_Hyde.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Teddy Online Judge.net\" default_off=\"missing certificate chain\" f=\"Teddy_Online_Judge.net.xml\"><securecookie host=\"^(?:www\\.)?teddyonlinejudge\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TeenDriverSource.org\" default_off=\"failed ruleset test\" f=\"TeenDriverSource.org.xml\"><securecookie host=\"^(?:www\\.)?teendriversource\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Teen Revenue.com\" default_off=\"mismatched\" f=\"Teen_Revenue.com.xml\"><securecookie host=\"^nats\\.teenrevenue\\.com$\" name=\".+\"/><rule from=\"^http://(?:nats\\.|www\\.)?teenrevenue\\.com/\" to=\"https://nats.teenrevenue.com/\"/></ruleset>", "<ruleset name=\"Teespring.com (partial)\" f=\"Teespring.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Teevox.com\" default_off=\"failed ruleset test\" f=\"Teevox.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tehconnection\" f=\"Tehconnection.eu.xml\"><securecookie host=\"^tehconnection\\.eu$\" name=\".*\"/><rule from=\"^http://(?:(static\\.)|www\\.)?tehconnection\\.eu/\" to=\"https://$1tehconnection.eu/\"/></ruleset>", "<ruleset name=\"Tek.no (partial)\" f=\"Tek.no.xml\"><securecookie host=\"^\\.tek\\.no$\" name=\"^CfP$\"/><securecookie host=\"^\\.ish\\.\" name=\".\"/><rule from=\"^http://tek\\.no/\" to=\"https://www.tek.no/\"/><rule from=\"^http://ad\\.tek\\.no/\" to=\"https://adserver.adtech.de/\"/><rule from=\"^http://prisguide\\.tek\\.no/\" to=\"https://www.prisguide.no/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TekGoblin\" platform=\"mixedcontent\" f=\"TekGoblin.com.xml\"><rule from=\"^http://tekgoblin\\.com/\" to=\"https://www.tekgoblin.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tek Syndicate.com\" default_off=\"failed ruleset test\" f=\"Tek_Syndicate.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TelMasters\" default_off=\"failed ruleset test\" f=\"TelMasters.xml\"><securecookie host=\"^(?:www\\.)?telmasters\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TelVue.com\" default_off=\"mismatched\" f=\"TelVue.com.xml\"><rule from=\"^http://(?:www\\.)?telvue\\.com/\" to=\"https://www.telvue.com/\"/></ruleset>", "<ruleset name=\"tele-TASK\" f=\"Tele-TASK.xml\"><rule from=\"^http://tele-task\\.de/[^\\?]*(\\?.*)?\" to=\"https://www.tele-task.de/$1\"/><rule from=\"^http://www\\.tele-task\\.de/\" to=\"https://www.tele-task.de/\"/></ruleset>", "<ruleset name=\"Tele2.lt\" default_off=\"failed ruleset test\" f=\"Tele2.lt.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tele2.se\" f=\"Tele2.se.xml\"><rule from=\"^http://www\\.tele2\\.se/\" to=\"https://www.tele2.se/\"/><rule from=\"^http://tele2\\.se/\" to=\"https://www.tele2.se/\"/></ruleset>", "<ruleset name=\"TeleGeography.com (partial)\" f=\"TeleGeography.com.xml\"><rule from=\"^http://(?:www\\.)?telegeography\\.com/\" to=\"https://www.telegeography.com/\"/></ruleset>", "<ruleset name=\"Telebrands\" f=\"Telebrands.xml\"><securecookie host=\"^(?:www\\.)?telebrands\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Telecolumbus\" f=\"Telecolumbus.com.xml\"><securecookie host=\"^(www\\.|ir\\.)?telecolumbus\\.com$\" name=\".+\"/><securecookie host=\"^(www\\.|wohnungsunternehmen\\.)?telecolumbus\\.de$\" name=\".+\"/><securecookie host=\"^(service\\.|webmailer\\.)?telecolumbus\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Telecom Industry Dialogue.org\" f=\"Telecom_Industry_Dialogue.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Telefónica (mismatches)\" default_off=\"expired, mismatch\" f=\"Telefonica-mismatches.xml\"><securecookie host=\"^(?:.*\\.)?beusergroup\\.co\\.uk$\" name=\".*\"/><securecookie host=\"^survey\\.o2active\\.cz$\" name=\".*\"/><rule from=\"^http://download\\.bethere\\.co\\.uk/\" to=\"https://download.bethere.co.uk/\"/><rule from=\"^http://memberservices\\.beunlimited\\.co\\.uk/\" to=\"https://memberservices.beunlimited.co.uk/\"/><rule from=\"^http://(?:www\\.)?beusergroup\\.co\\.uk/\" to=\"https://beusergroup.co.uk/\"/><rule from=\"^http://obrazky\\.o2active\\.cz/(cs|image)s/\" to=\"https://obrazky.o2active.cz/$1s/\"/><rule from=\"^http://survey\\.o2active\\.cz/\" to=\"https://survey.o2active.cz/\"/></ruleset>", "<ruleset name=\"Telefónica (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Telefonica.xml\"><securecookie host=\"^(?:.*\\.)?bethere\\.co\\.uk$\" name=\".*\"/><securecookie host=\"^www\\.(?:chcidoo2|telefonica)\\.cz$\" name=\".*\"/><securecookie host=\"^(?:moje|sso|\\.?www)?\\.o2\\.cz$\" name=\".*\"/><securecookie host=\"^mail\\.o2active\\.cz$\" name=\".*\"/><securecookie host=\"^www\\.o2(?:extra|shop|tv)\\.cz$\" name=\".*\"/><securecookie host=\"^(?:www\\.)?odmenazabobiti\\.cz$\" name=\".*\"/><rule from=\"^http://bethere\\.co\\.uk/\" to=\"https://www.bethere.co.uk/\"/><rule from=\"^http://(avatar|help|www)\\.bethere\\.co\\.uk/\" to=\"https://$1.bethere.co.uk/\"/><rule from=\"^http://(?:www\\.)?(chcidoo2|telefonica)\\.cz/\" to=\"https://www.$1.cz/\"/><rule from=\"^http://windows\\.mouselike\\.org/\" to=\"https://windows.mouselike.org/\"/><rule from=\"^http://(?:(?:www\\.)?cz\\.o2\\.com|o2\\.cz)/\" to=\"https://www.o2.cz/\"/><rule from=\"^http://(moje|www)\\.o2\\.cz/\" to=\"https://$1.o2.cz/\"/><rule from=\"^http://static(2)?\\.o2\\.de/\" to=\"https://static$1.o2.de/\"/><rule from=\"^http://(i|mail)\\.o2active\\.cz/\" to=\"https://$1.o2active.cz/\"/><rule from=\"^http://(?:www\\.)?o2(?:(extra|shop)|(?:-)?(tv))\\.cz/\" to=\"https://www.o2$12.cz/\"/><rule from=\"^http://(www\\.)?odmenazadobiti\\.cz/\" to=\"https://$1odmenazadobiti.cz/\"/><rule from=\"^http://(?:www\\.)?o2\\.co\\.uk/favicon\\.ico\" to=\"https://www.o2.co.uk/favicon.ico\"/><rule from=\"^http://(?:www\\.)?o2\\.sk/\" to=\"https://www.o2.sk/\"/></ruleset>", "<ruleset name=\"Telegr.am\" f=\"Telegr.am.xml\"><securecookie host=\"^telegr\\.am$\" name=\".+\"/><rule from=\"^http://((?:blog|howto|www)\\.)?telegr\\.am/\" to=\"https://$1telegr.am/\"/></ruleset>", "<ruleset name=\"Telegram.com (partial)\" f=\"Telegram.com.xml\"><securecookie host=\"^home\\.telegram\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?telegram\\.com/graphics/(?:header/(frontpageHeader978x136\\.jpg)|nav/(arrv_anim_1\\.gif)|(tg_background_tile\\.gif))\" to=\"https://home.telegram.com/images/$1$2$3\"/><rule from=\"^http://home\\.telegram\\.com/\" to=\"https://home.telegram.com/\"/></ruleset>", "<ruleset name=\"Telegram.how\" f=\"Telegram.how.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Telegram.me\" f=\"Telegram.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Telegram.org\" f=\"Telegram.org.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Telegram Wiki\" f=\"Telegram.wiki.xml\"><rule from=\"^http://www\\.telegram\\.wiki/\" to=\"https://telegram.wiki/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Telegraph.co.uk (mismatches)\" default_off=\"expired, mismatched\" f=\"Telegraph-Media-Group-mismatches.xml\"><securecookie host=\"^fashionshop\\.telegraph\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Telegraph.co.uk (partial)\" default_off=\"failed ruleset test\" f=\"Telegraph-Media-Group.xml\"><exclusion pattern=\"^http://shop\\.telegraph\\.co\\.uk/+(?!$|_imagesDM/|_images[TX]/|DNTEMP/Photos/|account_login\\.cfm|feefo/xmltoxsl/|telegraph\\.css)\"/><securecookie host=\"^\\.(?:\\w+\\.)?telegraph\\.co\\.uk$\" name=\"^(?:tmg_web_trends|__utm\\w)$\"/><securecookie host=\"^(?:announcements|fantasyracing|jobs|recruiters\\.jobs|reporting\\.shop|webtrends)\\.telegraph\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Telekom Malaysia\" default_off=\"failed ruleset test\" f=\"Telekom-Malaysia.xml\"><securecookie host=\"^.*\\.tm\\.com\\.my$\" name=\".+\"/><rule from=\"^http://tm\\.com\\.my/\" to=\"https://www.tm.com.my/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Telekom-Partnerwelt.de\" default_off=\"failed ruleset test\" f=\"Telekom-Partnerwelt.de.xml\"><securecookie host=\"^www\\.telekom-partnerwelt\\.de$\" name=\".+\"/><rule from=\"^http://telekom-partnerwelt\\.de/\" to=\"https://www.telekom-partnerwelt.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Telekom-Profis.de\" f=\"Telekom-Profis.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Telekom-dienste.de\" f=\"Telekom-dienste.de.xml\"><securecookie host=\"^meinkonto\\.telekom-dienste\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Telekom.com (partial)\" f=\"Telekom.com.xml\"><securecookie host=\"^(?:accounts\\.login)?\\.idm\\.telekom\\.com$\" name=\".+\"/><rule from=\"^http://telekom\\.com/\" to=\"https://www.telekom.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Telekom.sk\" f=\"Telekom.sk.xml\"><rule from=\"^http://(?:www\\.)?(?:telekom|telecom|t-com)\\.sk/\" to=\"https://www.telekom.sk/\"/><rule from=\"^http://(mail\\.|zona\\.)(telekom|telecom|t-com)\\.sk/\" to=\"https://$1telekom.sk/\"/></ruleset>", "<ruleset name=\"Telemetry.com\" default_off=\"mismatched\" f=\"Telemetry-mismatches.xml\"><rule from=\"^http://(?:www\\.)?telemetry\\.com/(?=favicon\\.ico|tvspot/|telemetry_site/)\" to=\"https://d25ae8i57rupjv.cloudfront.net/\"/><rule from=\"^http://(?:www\\.)?telemetry\\.com/\" to=\"https://www.telemetry.com/\"/></ruleset>", "<ruleset name=\"Telemetry (partial)\" platform=\"mixedcontent\" f=\"Telemetry.xml\"><rule from=\"^http://telemetryverification\\.net/\" to=\"https://www.telemetryverification.net/\"/><rule from=\"^http://([\\w\\-]+)\\.telemetryverification\\.net/\" to=\"https://$1.telemetryverification.net/\"/></ruleset>", "<ruleset name=\"Telenor.se (partial)\" default_off=\"failed ruleset test\" f=\"Telenor.se.xml\"><exclusion pattern=\"^http://(?:www\\.)?telenor\\.se/(?!assets/|favicon\\.ico|images/|js/|privat/stateserver/|published_images/)\"/><securecookie host=\"^minasidor\\.telenor\\.se$\" name=\".+\"/><rule from=\"^http://www\\.euromail\\.se/\" to=\"https://www.euromail.se/\"/><rule from=\"^http://(minasidor\\.|www\\.)?telenor\\.se/\" to=\"https://$1telenor.se/\"/></ruleset>", "<ruleset name=\"Telepigeon.com\" default_off=\"failed ruleset test\" f=\"Telepigeon.com.xml\"><securecookie host=\"^(?:www\\.)?telepigeon\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Telerik-web-assets.com\" f=\"Telerik-web-assets.com.xml\"><rule from=\"^http://(?:www\\.)?telerik-web-assets\\.com/\" to=\"https://www.telerik-web-assets.com/\"/></ruleset>", "<ruleset name=\"Telerik.com (partial)\" f=\"Telerik.com.xml\"><exclusion pattern=\"^http://blogs\\.telerik\\.com/+(?!Telerik\\.Web\\.UI\\.WebResource\\.axd|images/|prettyPhoto/css/)\"/><exclusion pattern=\"^http://www\\.telerik\\.com/+(?!Telerik\\.Web\\.UI\\.WebResource\\.axd|favicon\\.ico|login(?:$|[?/])|sfimages/)\"/><securecookie host=\"^(?:platform|tfis)\\.telerik\\.com$\" name=\".+\"/><rule from=\"^http://((?:blogs|identity|licenseapi|platform|tfis|www)\\.)?telerik\\.com/\" to=\"https://$1telerik.com/\"/></ruleset>", "<ruleset name=\"Telethon.it (partial)\" f=\"Telethon.it.xml\"><exclusion pattern=\"^http://(?:www\\.)?telethon\\.it/+(?!misc/|modules/|sites/)\"/><securecookie host=\"^\\.\" name=\"^_(?:gat?|_cfduid)$\"/><rule from=\"^http://telethon\\.it/\" to=\"https://www.telethon.it/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Telework.gov.au\" default_off=\"failed ruleset test\" f=\"TeleworkGovAu.xml\"><rule from=\"^http://(?:www\\.)?telework\\.gov\\.au/\" to=\"https://www.telework.gov.au/\"/></ruleset>", "<ruleset name=\"Telex\" default_off=\"failed ruleset test\" f=\"Telex.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Telfort (partial)\" f=\"Telfort.nl.xml\"><exclusion pattern=\"^http://internet\\.telfort\\.nl/(?!5/css/|5/gfx/)\"/><securecookie host=\"^(?!internet\\.).*\\.telfort\\.nl$\" name=\".+\"/><rule from=\"^http://((?:forum|internet|orderstatus|shop|webmail|www)\\.)?telfort\\.nl/\" to=\"https://$1telfort.nl/\"/><rule from=\"^http://(?:www\\.)?tiscali\\.nl/\" to=\"https://www.telfort.nl/\"/></ruleset>", "<ruleset name=\"Telia.se\" platform=\"mixedcontent\" f=\"Telia.se.xml\"><rule from=\"^http://telia\\.se/\" to=\"https://www.telia.se/\"/><rule from=\"^http://www\\.telia\\.se/\" to=\"https://www.telia.se/\"/></ruleset>", "<ruleset name=\"Tello.com\" f=\"Tello.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Telltalegames.com\" f=\"Telltalegames.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Telnic\" default_off=\"failed ruleset test\" f=\"Telnic.xml\"><rule from=\"^http://a0\\.webproxy\\.nic\\.tel/\" to=\"https://a0.webproxy.nic.tel/\"/><rule from=\"^http://(?:www\\.)?(?:nic\\.tel|telnic\\.org)/\" to=\"https://www.telnic.org/\"/></ruleset>", "<ruleset name=\"telphin.ru\" default_off=\"failed ruleset test\" f=\"Telphin.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Telstra Corporation (mismatches)\" default_off=\"mismatched\" f=\"Telstra-Corporation-mismatches.xml\"><rule from=\"^http://m\\.sockassist\\.com\\.au/\" to=\"https://m.sockassist.com.au/\"/></ruleset>", "<ruleset name=\"Telstra Corporation (partial)\" default_off=\"failed ruleset test\" f=\"Telstra-Corporation.xml\"><rule from=\"^http://medrx\\.sensis\\.com\\.au/\" to=\"https://medrx.sensis.com.au/\"/><rule from=\"^http://sockassist\\.com\\.au/\" to=\"https://sockassist.com.au/\"/></ruleset>", "<ruleset name=\"Teltarif\" f=\"Teltarif.xml\"><securecookie host=\"^\\.teltarif\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Telus (partial)\" default_off=\"failed ruleset test\" f=\"Telus.xml\"><securecookie host=\"^(?:\\.)?(?:www|mobility|mobileidentity|msg|shop)?(?:\\.)?telus\\.com$\" name=\".+\"/><securecookie host=\"^www\\.telushealth\\.co$\" name=\".+\"/><securecookie host=\"^webmail\\.telus\\.net$\" name=\".+\"/><securecookie host=\"^(?:www)?(?:\\.)?telusinternational\\.com$\" name=\".+\"/><rule from=\"^https://telushealth\\.com/\" to=\"https://www.telushealth.com/\"/><rule from=\"^https://telusmobility\\.com/\" to=\"https://www.telusmobility.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Temando.com\" f=\"Temando.com.xml\"><securecookie host=\"^dashboard\\.temando\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Temp Mail\" default_off=\"failed ruleset test\" f=\"Temp-Mail.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Template Monster.com (partial)\" f=\"Template_Monster.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?templatemonster\\.com/(?!cart\\.php|favicon\\.ico|images/|js/|themes/)\"/><securecookie host=\"^\\.templatemonster\\.com$\" name=\"(?:affT?|^__utm\\w)$\"/><securecookie host=\"^\\.?(?:secure|wac)\\.templatemonster\\.com$\" name=\".+\"/><rule from=\"^http://(?:secure\\.|www\\.)?templatemonster\\.com/\" to=\"https://secure.templatemonster.com/\"/><rule from=\"^http://scr\\.templatemonster\\.com/\" to=\"https://scrtm-templatemonster.netdna-ssl.com/\"/><rule from=\"^http://wac\\.templatemonster\\.com/\" to=\"https://wac.templatemonster.com/\"/><rule from=\"^http://i\\.tmimgcdn\\.com/\" to=\"https://secure.templatemonster.com/images/\"/><rule from=\"^http://j\\.tmimgcdn\\.com/\" to=\"https://secure.templatemonster.com/js/\"/><rule from=\"^http://t\\.tmimgcdn\\.com/\" to=\"https://themestm-templatemonster.netdna-ssl.com/\"/></ruleset>", "<ruleset name=\"TenMarks.com\" f=\"TenMarks.com.xml\"><securecookie host=\"^www\\.tenmarks\\.com$\" name=\"^.+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tenable.com (false MCB)\" platform=\"mixedcontent\" f=\"Tenable.com-falsemixed.xml\"><securecookie host=\"^elearn\\.tenable\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tenable.com (partial)\" f=\"Tenable.com.xml\"><exclusion pattern=\"^http://elearn\\.tenable\\.com/+(?!theme/)\"/><securecookie host=\"^(?!elearn)\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tendatta.com\" f=\"Tendatta.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tangient (partial)\" f=\"Tengient.xml\"><securecookie host=\"^session\\.wikispaces\\.net$\" name=\".+\"/><rule from=\"^http://(?:c1|ssl)\\.wikicdn\\.com/\" to=\"https://ssl.wikicdn.com/\"/><rule from=\"^http://(ssl\\.|www\\.)?wikispaces\\.com/\" to=\"https://$1wikispaces.com/\"/><rule from=\"^http://([\\w\\-]+)\\.wikispaces\\.com/([is]|stylesheet)/\" to=\"https://$1.wikispaces.com/$2/\"/></ruleset>", "<ruleset name=\"Tenon.com\" default_off=\"failed ruleset test\" f=\"Tenon.com.xml\"><rule from=\"^http://(?:www\\.)?tenon\\.com/\" to=\"https://www.tenon.com/\"/></ruleset>", "<ruleset name=\"Tenpay.com (false MCB)\" platform=\"mixedcontent\" f=\"Tenpay.com-falsemixed.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tenpay.com (partial)\" f=\"Tenpay.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tent.is\" default_off=\"failed ruleset test\" f=\"Tent.is.xml\"><rule from=\"^http://([\\w-]+\\.)?tent\\.is/\" to=\"https://$1tent.is/\"/></ruleset>", "<ruleset name=\"Tenten.vn\" f=\"Tenten.vn.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Teo\" f=\"Teo.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tequipment.NET (partial)\" f=\"Tequipment.NET.xml\"><securecookie host=\"^store\\.tequipment\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Teracom Consulting\" default_off=\"expired, mismatch\" f=\"Teracom-Consulting.xml\"><rule from=\"^http://(?:www\\.)?teracomconsulting\\.com/\" to=\"https://teracomconsulting.com/\"/></ruleset>", "<ruleset name=\"Terena.org (partial)\" default_off=\"failed ruleset test\" f=\"Terena.org.xml\"><exclusion pattern=\"^http://tnc20(?:0[57-9]|10)\\.terena\\.org/(?!css/|gfx/|js/)\"/><securecookie host=\"^(?:compendium|confluence|crypto-filesender|cryptosender|eventr|filesender|login|tnc15|tnc201[1-4]|wikis?|www)\\.terena\\.org$\" name=\".+\"/><rule from=\"^http://tnc2006\\.terena\\.org/\" to=\"https://www.terena.org/events/tnc2006/\"/><rule from=\"^http://wikis\\.terena\\.org/\" to=\"https://wiki.terena.org/\"/><rule from=\"^http://((?:compendium|confluence|crypto-filesender|cryptosender|eventr|filesender|lenin|login|omega|rykov|test-login|tnc15|tnc20(?:0[5789]|1\\d)|wikis?|www)\\.)?terena\\.org/\" to=\"https://$1terena.org/\"/></ruleset>", "<ruleset name=\"Terminal.com\" default_off=\"failed ruleset test\" f=\"Terminal.com.xml\"><securecookie host=\"^www\\.terminal\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Terminal.sexy\" f=\"Terminal.sexy.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Terminatio.org\" f=\"Terminatio.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Terminatorx.org\" f=\"TerminatorX.org.xml\"><rule from=\"^http://(?:www\\.)?terminatorx\\.org/\" to=\"https://terminatorx.org/\"/></ruleset>", "<ruleset name=\"Terra Galleria\" f=\"TerraGalleria.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Terra Mail (MX)\" f=\"TerraMailMX.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TerraPass\" f=\"TerraPass.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Terra User Central (MX)\" default_off=\"Breaks site\" f=\"TerraUserCentralMX.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Terra Bank.ru\" f=\"Terra_Bank.ru.xml\"><rule from=\"^http://(?:www\\.)?terrabank\\.ru/\" to=\"https://terrabank.ru/\"/></ruleset>", "<ruleset name=\"terreActive\" f=\"TerreActive.xml\"><rule from=\"^http://(?:www\\.)?terreactive\\.ch/\" to=\"https://www.terreactive.ch/\"/></ruleset>", "<ruleset name=\"Terres Oubliees.com\" f=\"Terres_Oubliees.com.xml\"><securecookie host=\"^(?:w*\\.)?terresoubliees\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?terresoubliees\\.com/\" to=\"https://www.terresoubliees.com/\"/><rule from=\"^http://erp\\.terresoubliees\\.com/\" to=\"https://erp.terresoubliees.com/\"/></ruleset>", "<ruleset name=\"Terse Systems.com\" f=\"Terse_Systems.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Terveysportti.fi\" f=\"Terveysportti.fi.xml\"><rule from=\"^http://(?:www\\.)?terveysportti\\.fi/\" to=\"https://www.terveysportti.fi/\"/><rule from=\"^http://(?:www\\.)?terveysportti\\.org/\" to=\"https://www.terveysportti.fi/\"/><rule from=\"^http://(?:www\\.)?terveysportti\\.net/\" to=\"https://www.terveysportti.fi/\"/></ruleset>", "<ruleset name=\"Tesco.com (false MCB)\" platform=\"mixedcontent\" f=\"Tesco.com-falsemixed.xml\"><rule from=\"^http://(?:www\\.)?tesco\\.com/groceries/\" to=\"https://secure.tesco.com/groceries/\"/></ruleset>", "<ruleset name=\"Tesco (partial)\" f=\"Tesco.xml\"><securecookie host=\"^\\.\" name=\"^(?:_gat?$|s_v)\"/><securecookie host=\"^www\\.giftcards\\.tesco\\.com$\" name=\".\"/><rule from=\"^http://metrics\\.tesco\\.com/\" to=\"https://tesco.122.2o7.net/\"/><rule from=\"^http://\\w+\\.tescoassets\\.com/\" to=\"https://secure.tesco.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tesco Bank.com\" f=\"Tesco_Bank.com.xml\"><securecookie host=\"^www\\.tescobank\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?tescofinance\\.com/+$\" to=\"https://www.tescobank.com/personal/finance/home.html\"/><rule from=\"^http://(?:www\\.)?tesco(?:bank|finance)\\.com/\" to=\"https://www.tescobank.com/\"/></ruleset>", "<ruleset name=\"Tesco Compare.com\" default_off=\"failed ruleset test\" f=\"Tesco_Compare.com.xml\"><securecookie host=\"^www\\.tescocompare\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?tescocompare\\.com/\" to=\"https://www.tescocompare.com/\"/></ruleset>", "<ruleset name=\"Tesco Diets.com\" default_off=\"failed ruleset test\" f=\"Tesco_Diets.com.xml\"><securecookie host=\"^www\\.tescodiets\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tesco Help.com\" f=\"Tesco_Help.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tesco Photo.com\" f=\"Tesco_Photo.com.xml\"><securecookie host=\"^www\\.tescophoto\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?tescophoto\\.com/\" to=\"https://www.tescophoto.com/\"/></ruleset>", "<ruleset name=\"Tesco Share and Earn.com\" default_off=\"failed ruleset test\" f=\"Tesco_Share_and_Earn.com.xml\"><securecookie host=\"^(?:w*\\.)?tescoshareandearn\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tesla Motors.com (partial)\" f=\"Tesla_Motors.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Test-IPv6.cz (false MCB)\" platform=\"mixedcontent\" f=\"Test-IPv6.cz-falsemixed.xml\"><securecookie host=\"^(?:www\\.)?test-ipv6\\.cz$\" name=\".+\"/><rule from=\"^http://(www\\.)?test-ipv6\\.cz/(?!\\w+\\.css|\\w+\\.js|images/|ipv6widget/|site/)\" to=\"https://$1test-ipv6.cz/\"/></ruleset>", "<ruleset name=\"Test-IPv6.cz (partial)\" f=\"Test-IPv6.cz.xml\"><exclusion pattern=\"^http://(?:www\\.)?test-ipv6\\.cz/(?!\\w+\\.css|\\w+\\.js|images/|ipv6widget/|site/)\"/><securecookie host=\"^(?!www\\.).+\\.test-ipv6\\.cz$\" name=\".+\"/><rule from=\"^http://((?:ds|ipv[46]|www)\\.)?test-ipv6\\.cz/\" to=\"https://$1test-ipv6.cz/\"/></ruleset>", "<ruleset name=\"testCloud.io (partial)\" default_off=\"failed ruleset test\" f=\"TestCloud.io.xml\"><securecookie host=\"^\\.(?:the)?testcloud\\.(?:com|de|io)$\" name=\".+\"/><rule from=\"^http://((?:app|cdn\\d|staticcdn|tester|www)\\.)?testcloud\\.de/\" to=\"https://$1testcloud.de/\"/><rule from=\"^http://((?:app|tester|www)\\.)?testcloud\\.io/\" to=\"https://$1testcloud.io/\"/><rule from=\"^http://(app\\.|www\\.)?thetestcloud\\.com/\" to=\"https://$1thetestcloud.com/\"/></ruleset>", "<ruleset name=\"TestPolitique.fr\" f=\"TestPolitique.fr.xml\"><rule from=\"^http://www\\.testpolitique\\.fr/\" to=\"https://testpolitique.fr/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Test Equipment Depot\" f=\"Test_Equipment_Depot.xml\"><securecookie host=\"^\\.www\\.testequipmentdepot\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"testssl.sh\" f=\"Testssl.sh.xml\"><rule from=\"^http://(?:www\\.)?testssl\\.sh/\" to=\"https://testssl.sh/\"/></ruleset>", "<ruleset name=\"Testyourmight\" f=\"Testyourmight.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tetu.com\" f=\"Tetu.com.xml\"><securecookie host=\"^(?:.+\\.)?tetu\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Texaco.com\" f=\"Texaco.com.xml\"><securecookie host=\"^www\\.texaco\\.com$\" name=\".+\"/><rule from=\"^http://texaco\\.com/.*\" to=\"https://www.texaco.com/\"/><rule from=\"^http://www\\.texaco\\.com/\" to=\"https://www.texaco.com/\"/></ruleset>", "<ruleset name=\"Texas Association of Schoolboards\" f=\"Texas-Association-of-School-Boards.xml\"><securecookie host=\"^(?:.*\\.)?tasb\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?tasb\\.org/\" to=\"https://www.tasb.org/\"/><rule from=\"^http://store\\.tasb\\.org/\" to=\"https://store-84a5f.mybigcommerce.com/\"/></ruleset>", "<ruleset name=\"Texas Department of State Health Services\" f=\"Texas-Department-of-State-Health-Services.xml\"><securecookie host=\"^www\\.dshs\\.state\\.tx\\.us$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?dshs\\.state\\.tx\\.us/\" to=\"https://www.dshs.state.tx.us/\"/></ruleset>", "<ruleset name=\"TI.com (partial)\" default_off=\"failed ruleset test\" f=\"Texas-Instruments.xml\"><exclusion pattern=\"^http://www-k\\.ext\\.ti\\.com/(?!sc/technical-support/pic/asia\\.htm|sc/technical-support/pic/japan\\.htm)\"/><exclusion pattern=\"http://reviews\\.ti\\.com/(?!$|\\?)\"/><exclusion pattern=\"^http://www.ti.com/(?:general/docs/)?lit/\"/><exclusion pattern=\"^http://(?:www\\.)?ti\\.com/product(?:$|[?/])\"/><exclusion pattern=\"^http://www.ti.com/tool/\"/><securecookie host=\".+\\.ti\\.com$\" name=\".\"/><rule from=\"^http://(?:www\\.)?national\\.com/.*\" to=\"https://www.ti.com/\"/><rule from=\"^http://ti\\.com/\" to=\"https://www.ti.com/\"/><rule from=\"^http://e2e-uat\\.ti\\.com/\" to=\"https://e2e.ti.com/\"/><rule from=\"^http://www-k\\.ext\\.ti\\.com/sc/technical-support/pic/asia\\.htm(?:\\?.*)?$\" to=\"https://www.ti.com/ww/en/pic/PIC-Asia.html\"/><rule from=\"^http://www-k\\.ext\\.ti\\.com/sc/technical-support/pic/japan\\.htm(?:\\?.*)?$\" to=\"https://www.ti.com/ww/en/pic/PIC-Japan.html\"/><rule from=\"^http://reviews\\.ti\\.com/(?:\\?.*)?$\" to=\"https://focus.ti.com/\"/><rule from=\"^http://videos\\.ti\\.com/[^?]*\" to=\"https://focus.ti.com/general/docs/video/Portal.tsp\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Texas State Library and Archives Commission\" f=\"Texas-State-Library-and-Archives-Commission.xml\"><securecookie host=\"^\\.tsl\\.state\\.tx\\.us$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?tsl\\.state\\.tx\\.us/\" to=\"https://www.tsl.state.tx.us/\"/></ruleset>", "<ruleset name=\"Texas A&M University (partial)\" f=\"Texas_A_and_M_University.xml\"><exclusion pattern=\"^http://mediamatrix\\.tamu\\.edu/(?!images/|include/|style\\.css)\"/><exclusion pattern=\"^http://sc\\.tamu\\.edu/(?!Images/|inclusions/)\"/><exclusion pattern=\"^http://studentaffairs\\.tamu\\.edu/(?!misc/|modules/|sites/)\"/><exclusion pattern=\"^http://studentlifestudies\\.tamu\\.edu/(?!misc/|modules/|sites/)\"/><exclusion pattern=\"^http://student-rules\\.tamu\\.edu/(?!misc/|modules/|sites/)\"/><exclusion pattern=\"^http://uart\\.tamu\\.edu/(?!misc/|modules/|sites/|user(?:$|\\?|/))\"/><securecookie host=\"^(?:aggiemail|ahso|allucalendar|cas|www\\.cis|\\.doit|ecampusprod|elearningtools|(?:www\\.)?giving|howdy|idp|isaac|itshelp|lms|oalinfo|services|software|studentactivities|apps[46]\\.system|transport|my\\.tti|ttipassword|vpfnweb[23]|wikis)\\.tamu\\.edu$\" name=\".+\"/><rule from=\"^http://((?:aggie(?:honor|mail)|ahso|allucalendar|cas|(?:www\\.)?cis|codemaroon|dmc-assets|doit|ecampusprod|elearningtools|gateway|(?:www\\.)?giving|howdy|idp|hdc|isaac|itaccessibility(?:-new)?|itshelp|lms|mediamatrix|myaggieloans|neo|oalinfo|fc-web\\.operations|sc|services|software|sso|student(?:activities|affairs|lifestudies|-rules)|apps[46]\\.system|training|my\\.tti|ttipassword|uart|voal|vpfnweb[23]|wikis|www)\\.)?tamu\\.edu/\" to=\"https://$1tamu.edu/\"/><rule from=\"^http://(?:cllacdn|liberalarts)\\.tamu\\.edu(?:443)?/\" to=\"https://liberalarts.tamu.edu/\"/><rule from=\"^http://itsdocs\\.tamu\\.edu/(?:.*)\" to=\"https://wikis.tamu.edu/display/itsdocs/ITS+Docs+-+Home\"/><rule from=\"^http://sofc\\.tamu\\.edu/[^\\?]*(\\?.*)?\" to=\"https://studentactivities.tamu.edu/sofc$1\"/><rule from=\"^http://(?:www\\.)?t(ransport|ti)\\.tamu\\.edu/\" to=\"https://t$1.tamu.edu/\"/></ruleset>", "<ruleset name=\"Community-Journalism.net (partial)\" f=\"Texas_Center_for_Community_Journalism.xml\"><securecookie host=\"^\\.community-journalism\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Texas Tribune.org\" f=\"Texas_Tribune.org.xml\"><securecookie host=\"^\\.?texastribune\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?texastribune\\.org/\" to=\"https://www.texastribune.org/\"/><rule from=\"^http://static\\.texastribune\\.org/\" to=\"https://static.texastribune.org/\"/></ruleset>", "<ruleset name=\"TextMagic.com\" f=\"TextMagic.com.xml\"><securecookie host=\".*\\.textmagic\\.com$\" name=\"\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TextPad.com (partial)\" f=\"TextPad.com.xml\"><securecookie host=\"^(?:www\\.)?textpad\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Textbooks.com\" platform=\"mixedcontent\" f=\"Textbooks.com.xml\"><securecookie host=\"^.*\\.textbooks\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?textbooks\\.com/\" to=\"https://www.textbooks.com/\"/><rule from=\"^http://images\\.textbooks\\.com/\" to=\"https://images.textbooks.com/\"/></ruleset>", "<ruleset name=\"Texthelp.com\" f=\"Texthelp.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://texthelp\\.com/\" to=\"https://www.texthelp.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Textracer.dk\" default_off=\"failed ruleset test\" f=\"Textracer.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tfaforms.com\" f=\"Tfaforms.com.xml\"><securecookie host=\"^(?:www\\.)?tfaforms\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tfb.ru\" default_off=\"failed ruleset test\" f=\"Tfb.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tfes.org\" f=\"Tfes.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tgknt.com\" f=\"Tgknt.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TH Nürnberg\" f=\"Th-nuernberg.de.xml\"><rule from=\"^http://th-nuernberg\\.de/\" to=\"https://www.th-nuernberg.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Thai Netizen.org\" f=\"Thai_Netizen.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Thalasseo.com\" f=\"Thalasseo.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://thalasseo\\.com/\" to=\"https://www.thalasseo.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Thales Communications\" default_off=\"failed ruleset test\" f=\"Thales-Communications.xml\"><securecookie host=\"^www\\.thalescomminc\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?thalescomminc\\.com/\" to=\"https://www.thalescomminc.com/\"/></ruleset>", "<ruleset name=\"Thali project.org\" default_off=\"mismatched\" f=\"Thali_project.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Thalia Holding\" platform=\"mixedcontent\" f=\"Thalia_Holding.xml\"><rule from=\"^http://buch\\.de/\" to=\"https://www.buch.de/\"/><rule from=\"^http://thalia\\.ch/\" to=\"https://www.thalia.ch/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Thalys\" default_off=\"failed ruleset test\" f=\"Thalys.xml\"><securecookie host=\"^(?:.*\\.)?thalys(?:net|thecard)?\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ThankYou.com\" f=\"ThankYou.com.xml\"><securecookie host=\"^(?:rewards|shopping|travel|www)?\\.thankyou\\.com$\" name=\".+\"/><rule from=\"^http://thankyou\\.com/\" to=\"https://www.thankyou.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"thankyou4caring.org\" f=\"Thankyou4caring.org.xml\"><securecookie host=\"^\\w+\" name=\".\"/><rule from=\"^http://(\\w+)\\.thankyou4caring\\.org/\" to=\"https://$1.thankyou4caring.org/\"/></ruleset>", "<ruleset name=\"That One Privacy Site\" f=\"ThatOnePrivacySite.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Thawte\" f=\"Thawte.xml\"><rule from=\"^http://(?:www\\.)?thawte\\.com/\" to=\"https://www.thawte.com/\"/></ruleset>", "<ruleset name=\"The ACLU of Idaho\" f=\"The-ACLU-of-Idaho.xml\"><securecookie host=\"^acluidaho\\.org$\" name=\".+\"/><rule from=\"^http://www\\.acluidaho\\.org/\" to=\"https://acluidaho.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Art Institutes (partial)\" f=\"The-Art-Institutes.xml\"><rule from=\"^http://artinstitutes\\.edu/\" to=\"https://www.artinstitutes.edu/\"/><rule from=\"^http://www\\.artinstitutes\\.edu/([iI]mages/|[iI]ncludes/|javascript/|masters-degrees/(images|stylesheets)/|Multimedia|programs-info/form/|[sS]tylesheets/|WebResource\\.axd)\" to=\"https://www.artinstitutes.edu/$2/\"/><rule from=\"^http://content\\.artinstitutes\\.edu/\" to=\"https://content.artinstitutes.edu/\"/></ruleset>", "<ruleset name=\"The Atom Group.com (partial)\" f=\"The-Atom-Group.xml\"><rule from=\"^http://mail\\.theatomgroup\\.com/.*\" to=\"https://mail.google.com/a/theatomgroup.com\"/></ruleset>", "<ruleset name=\"The Awl.com (partial)\" default_off=\"mismatched\" f=\"The-Awl.xml\"><securecookie host=\"^\\.\" name=\"^__qca$\"/><securecookie host=\"^\\w\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Blackpool Tower\" f=\"The-Blackpool-Tower.xml\"><securecookie host=\"www\\.theblackpooltower\\.com$\" name=\".+\"/><rule from=\"^http://theblackpooltower\\.com/\" to=\"https://www.theblackpooltower.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Business Journals (partial)\" f=\"The-Business-Journals.xml\"><securecookie host=\"^\\.bizjournals\\.com$\" name=\"^s_\\w+$\"/><securecookie host=\"^secure\\.bizjournals\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?bizjournals\\.com/(bizjournals/images|lib|login|register)/\" to=\"https://www.bizjournals.com/$1/\"/><rule from=\"^http://(mediaapi|metrics|secure)\\.bizjournals\\.com/\" to=\"https://$1.bizjournals.com/\"/><rule from=\"^http://metric\\.bizjournals\\.com/\" to=\"https://bizjournals-com.112.2o7.net/\"/><rule from=\"^http://metrics\\.metric\\.bizjournals\\.combizjournals\\.com/b/ss/bizjournalsglobal%2C(\\w+)/\" to=\"https://bizjournalsglobal-$1.122.2o7.net/b/ss/bizjournalsglobal%2C$1/\"/></ruleset>", "<ruleset name=\"The Butler and the Chef\" default_off=\"mismatched\" f=\"The-Butler-and-the-Chef.xml\"><rule from=\"^http://(?:www\\.)?butlerandthechef\\.com/\" to=\"https://butlerandthechef.com/\"/></ruleset>", "<ruleset name=\"The CISCO Group (partial)\" default_off=\"mismatched\" f=\"The-Cisco-Group.xml\"><rule from=\"^http://(?:www\\.)?thecisogroup\\.com/\" to=\"https://theciscogroup.com/\"/></ruleset>", "<ruleset name=\"The Citizen Lab\" f=\"The-Citizen-Lab.xml\"><rule from=\"^http://(?:www\\.)?citizenlab\\.org/\" to=\"https://citizenlab.org/\"/></ruleset>", "<ruleset name=\"The Cutest Site on the Block\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"The-Cutest-Site-on-the-Block.xml\"><securecookie host=\"^(?:.*\\.)?thecutestsiteontheblock\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?thecutestsiteontheblock\\.com/\" to=\"https://www.thecutestsiteontheblock.com/\"/></ruleset>", "<ruleset name=\"The-DMA.org\" f=\"The-DMA.org.xml\"><rule from=\"^http://(?:www\\.)?the-dma\\.org/+\" to=\"https://thedma.org/\"/></ruleset>", "<ruleset name=\"Debian-Handbook.info\" f=\"The-Debian-Administrators-Handbook.xml\"><rule from=\"^http://www\\.debian-handbook\\.info/\" to=\"https://debian-handbook.info/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Diplomat.com (partial)\" f=\"The-Diplomat.xml\"><exclusion pattern=\"^http://(?:www\\.)?thediplomat\\.com/(?!/*(?:contact-us|subscriptions|write-for-us)(?:$|[?/]))\"/><securecookie host=\"^\\.\" name=\"^(?:_gat?$|_gat_)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Dungeons\" f=\"The-Dungeons.xml\"><securecookie host=\"www\\.thedungeons\\.com$\" name=\".+\"/><rule from=\"^http://thedungeons\\.com/\" to=\"https://www.thedungeons.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Escapist Expo\" default_off=\"failed ruleset test\" f=\"The-Escapist-Expo.xml\"><rule from=\"^http://(?:(www\\.)?sec\\.|www\\.)?escapistexpo\\.com/\" to=\"https://$1sec.escapistexpo.com/\"/></ruleset>", "<ruleset name=\"The Event Diva\" default_off=\"expired\" f=\"The-Event-Diva.xml\"><securecookie host=\"^www\\.theeventdiva\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?theeventdiva\\.com/\" to=\"https://www.theeventdiva.com/\"/></ruleset>", "<ruleset name=\"The-FCA.org.uk\" f=\"The-FCA.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Flirble Organisation\" default_off=\"failed ruleset test\" f=\"The-Flirble-Organisation.xml\"><securecookie host=\".*\\.flirble\\.org$\" name=\".*\"/><rule from=\"^http://domreg\\.flirble\\.org/\" to=\"https://domreg-flirble-org.shopco.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Great Courses (mismatches)\" default_off=\"mismatched\" f=\"The-Great-Courses-mismatches.xml\"><rule from=\"^http://reviews\\.thegreatcourses\\.com/\" to=\"https://reviews.thegreatcourses.com/\"/></ruleset>", "<ruleset name=\"The Great Courses (partial)\" f=\"The-Great-Courses.xml\"><rule from=\"^http://(?:www\\.)?thegreatcourses\\.com/tgc/([aA]ccount|cs)s/\" to=\"https://www.thegreatcourses.com/tgc/$1s/\"/></ruleset>", "<ruleset name=\"The Inspiration Room\" default_off=\"expired, self-signed\" f=\"The-Inspiration-Room.xml\"><securecookie host=\"^(?:.*\\.)?theinspirationroom\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?theinspirationroom\\.com/\" to=\"https://theinspirationroom.com/\"/></ruleset>", "<ruleset name=\"The Irish Times\" f=\"The-Irish-Times.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Lean Startup\" default_off=\"expired, self-signed\" f=\"The-Lean-Startup.xml\"><rule from=\"^http://(?:www\\.)?theleanstartup\\.com/\" to=\"https://theleanstartup.com/\"/></ruleset>", "<ruleset name=\"List.co.uk\" f=\"The-List.xml\"><securecookie host=\"^\\.\" name=\"^(?:COOKIE_NOTICE|JSESSIONID)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Nation.com\" default_off=\"failed ruleset test\" f=\"The-Nation.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://thenation\\.com/\" to=\"https://www.thenation.com/\"/><rule from=\"^http://nationbuilders\\.thenation\\.com/$\" to=\"https://donate.thenation.com/nb-launch-pages/5_2015_nationbuildersmembership\"/><rule from=\"^http://nationbuilders\\.thenation\\.com/\" to=\"https://donate.thenation.com/nb-launch-pages/5_2015_nationbuildersmembership/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The National Academies Press (partial)\" default_off=\"broken\" f=\"The-National-Academies-Press.xml\"><securecookie host=\"^download\\.nap\\.edu$\" name=\".+\"/><rule from=\"^http://(?:cart\\.|images\\.|www\\.)?nap\\.edu/\" to=\"https://cart.nap.edu/\"/><rule from=\"^http://(download|secure)\\.nap\\.edu/\" to=\"https://$1.nap.edu/\"/></ruleset>", "<ruleset name=\"The New Yorker (partial)\" default_off=\"top level pages unencrypted, rule expired\" f=\"The-New-Yorker.xml\"><rule from=\"^http://(?:www\\.)?newyorker\\.com/(?=favicon\\.ico|wp-content/|wp-includes/)\" to=\"https://www.newyorker.com/\"/><rule from=\"^http://(?:www\\.)?newyorker\\.com/(appjs/stats/|online/blogs/[\\w-]+/[\\w-]+\\.(?:jp|pn)g(?:$|\\?)|css/|images/|js/|sandbox/)\" to=\"https://secure.newyorker.com/$1\"/><rule from=\"^http://(result|secure)\\.newyorker\\.com/\" to=\"https://$1.newyorker.com/\"/></ruleset>", "<ruleset name=\"The Next Web.com (partial)\" f=\"The-Next-Web.xml\"><rule from=\"^http://((?:fr|nl|pl|ru|www)\\.)?thenextweb\\.com/(conference/(?:asset|header/image)s|wp-content)/\" to=\"https://$1thenextweb.com/$2/\"/><rule from=\"^http://cdn\\.thenextweb\\.com/\" to=\"https://thenextweb.com/\"/><rule from=\"^http://deals\\.thenextweb\\.com/\" to=\"https://deals.thenextweb.com/\"/><rule from=\"^http://guides\\.thenextweb\\.com/(av|cs|image)s/\" to=\"https://tnextw.accel.io/$1s/\"/><rule from=\"^http://jobs\\.thenextweb\\.com/(Areas|Content|i)/\" to=\"https://my.zartis.com/$1/\"/></ruleset>", "<ruleset name=\"The Open Group (partial)\" f=\"The-Open-Group.xml\"><exclusion pattern=\"^http://(?:www3?\\.)?opengroup\\.org/+(?!austin(?:$|[?/])|images/|onlinepubs/|sites/|stylesheets/)\"/><securecookie host=\"^(?:sso|www2)\\.opengroup\\.org$\" name=\".*\"/><rule from=\"^http://(sso\\.|www[236]?\\.)?opengroup\\.org/\" to=\"https://$1opengroup.org/\"/></ruleset>", "<ruleset name=\"The Public Index\" default_off=\"expired, self-signed\" f=\"The-Public-Index.xml\"><rule from=\"^http://(?:(blog\\.)|www\\.)?thepublicindex\\.org/\" to=\"https://$1thepublicindex.org/\"/></ruleset>", "<ruleset name=\"The Republic (partial)\" f=\"The-Republic.xml\"><rule from=\"^http://cdn\\.therepublic\\.com/\" to=\"https://c348471.ssl.cf1.rackcdn.com/\"/></ruleset>", "<ruleset name=\"The Santa Fe New Mexican\" default_off=\"mismatched\" f=\"The-Santa-Fe-New-Mexican.xml\"><securecookie host=\"^www\\.santafenewmexican\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?santafenewmexican\\.com/\" to=\"https://www.santafenewmexican.com/\"/></ruleset>", "<ruleset name=\"The Shmoo Group (partial)\" platform=\"cacert\" default_off=\"expired\" f=\"The-Shmoo-Group.xml\"><exclusion pattern=\"^http://lists\\.shmoo.com/pipermail\"/><rule from=\"^http://(imap|lists|maxx)\\.shmoo\\.com/\" to=\"https://$1.shmoo.com/\"/></ruleset>", "<ruleset name=\"Skynet.ie\" default_off=\"failed ruleset test\" f=\"The-Skynet-Project.xml\"><securecookie host=\"^\\.?webmail\\.skynet\\.ie$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Teaching Company (partial)\" f=\"The-Teaching-Company.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Vault Bar\" default_off=\"expired, self-signed\" f=\"The-Vault-Bar.xml\"><securecookie host=\"^thevaultbar\\.co\\.uk$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?thevaultbar\\.co\\.uk/\" to=\"https://thevaultbar.co.uk/\"/></ruleset>", "<ruleset name=\"The Verge.com\" f=\"The-Verge.xml\"><rule from=\"^http://mobile\\.theverge\\.com/\" to=\"https://www.theverge.com/\"/><rule from=\"^http://status\\.theverge\\.com/\" to=\"https://voxmedia.statuspage.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Washington Examiner (partial)\" f=\"The-Washington-Examiner.xml\"><rule from=\"^http://cdn\\.washingtonexaminer\\.biz/\" to=\"https://d1j4hw6rcy3g1h.cloudfront.net/\"/></ruleset>", "<ruleset name=\"The Wrap (partial) \" f=\"The-Wrap.xml\"><securecookie host=\"^\\.thewrap\\.com$\" name=\"^__utm\\w$\"/><rule from=\"^http://(?:drupal\\.|www\\.)?thewrap\\.com/\" to=\"https://www.thewrap.com/\"/></ruleset>", "<ruleset name=\"TheAA\" platform=\"mixedcontent\" f=\"TheAA.xml\"><rule from=\"^http://(?:www\\.)?theaa\\.com/\" to=\"https://www.theaa.com/\"/></ruleset>", "<ruleset name=\"TheAnarchistLibrary.org\" f=\"TheAnarchistLibrary.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TheArchive.me\" f=\"TheArchive.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Book People\" platform=\"mixedcontent\" f=\"TheBookPeople.xml\"><rule from=\"^http://(?:www\\.)?thebookpeople\\.co\\.uk/\" to=\"https://www.thebookpeople.co.uk/\"/><rule from=\"^http://images\\.thebookpeople\\.co\\.uk/\" to=\"https://images.thebookpeople.co.uk/\"/></ruleset>", "<ruleset name=\"The Church of Jesus Christ of Latter-day Saints\" platform=\"mixedcontent\" f=\"TheChurchofJesusChristofLatterdaySaints.xml\"><exclusion pattern=\"^http://lds\\.org/ldsorg\"/><securecookie host=\"^(?:.*\\.)?lds\\.org$\" name=\".*\"/><securecookie host=\"^(?:.*\\.)?ldscdn\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?lds\\.org/\" to=\"https://www.lds.org/\"/><rule from=\"^http://(history|store|tech|institute|seminary)\\.lds\\.org/\" to=\"https://$1.lds.org/\"/><rule from=\"^http://(?:www\\.)?ldscdn\\.org/\" to=\"https://www.ldscdn.org/\"/><rule from=\"^http://(edge|media)\\.ldscdn\\.org/\" to=\"https://$1.ldscdn.org/\"/></ruleset>", "<ruleset name=\"TheCityUK\" f=\"TheCityUK.xml\"><securecookie host=\"^www\\.thecityuk\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?thecityuk\\.com/\" to=\"https://www.thecityuk.com/\"/></ruleset>", "<ruleset name=\"The Document Foundation\" default_off=\"failed ruleset test\" f=\"TheDocumentFoundation.xml\"><securecookie host=\"^\\.\" name=\"^__qca$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TheEroticReview\" f=\"TheEroticReview.xml\"><rule from=\"^http://(?:www\\.)?theeroticreview\\.com/\" to=\"https://www.theeroticreview.com/\"/><securecookie host=\"^theeroticreview\\.com$\" name=\".*\"/><securecookie host=\"^www\\.theeroticreview\\.com$\" name=\".*\"/></ruleset>", "<ruleset name=\"TheGlobeAndMail.com (partial)\" f=\"TheGlobeAndMail.com.xml\"><securecookie host=\"^(www\\.)?theglobeandmail\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TheHut.com (partial)\" f=\"TheHut.com.xml\"><securecookie host=\"^tracking\\.thehut\\.net$\" name=\".+\"/><rule from=\"^http://static\\d\\.thcdn\\.com/\" to=\"https://thehut.pantherssl.com/\"/><rule from=\"^http://(?:www\\.)?thehut\\.com/([\\w-]+\\.info|c-images/|common/|c-scripts/|css/|hutint/)\" to=\"https://www.thehut.com/$1\"/><rule from=\"^http://tracking\\.thehut\\.net/\" to=\"https://tracking.thehut.net/\"/></ruleset>", "<ruleset name=\"TheJournal.ie\" f=\"TheJournal.ie.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://thejournal\\.ie/\" to=\"https://www.thejournal.ie/\"/><rule from=\"^http://cdn\\.thejournal\\.ie/\" to=\"https://s3-eu-west-1.amazonaws.com/cdn.thejournal.ie/\"/><rule from=\"^http://s\\d\\.thejournal\\.ie/\" to=\"https://d1icb8fuiosdrj.cloudfront.net/\"/><rule from=\"^http://static\\.thejournal\\.ie/\" to=\"https://b0.thejournal.ie/\"/><rule from=\"^http://thedailyedge\\.thejournal\\.ie/\" to=\"https://www.dailyedge.ie/\"/><rule from=\"^http://thescore\\.thejournal\\.ie/+(?=$|\\?|.+/(?:$|\\?))\" to=\"https://www.the42.ie/\"/><rule from=\"^http://thescore\\.thejournal\\.ie/+([^?]*)\" to=\"https://www.the42.ie/$1/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TheMuslimTimes.info\" f=\"TheMuslimTimes.info.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The New Press\" f=\"TheNewPress.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TheNewsLens.com\" default_off=\"failed ruleset test\" f=\"TheNewsLens.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Old Reader\" f=\"TheOldReader.xml\"><securecookie host=\"^(?:[^/:@]*\\.)?theoldreader\\.com$\" name=\".*\"/><rule from=\"^http://(www\\.)?theoldreader\\.com/\" to=\"https://$1theoldreader.com/\"/><rule from=\"^http://s\\.yeoldreader\\.com/\" to=\"https://theoldreader.com/\"/></ruleset>", "<ruleset name=\"ThePermitStore.com\" default_off=\"failed ruleset test\" f=\"ThePermitStore.com.xml\"><securecookie host=\"^(?:[a-zA-Z0-9\\-]*\\.)?thepermitstore\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ThePetitionSite.com\" f=\"ThePetitionSite.com.xml\"><rule from=\"^http://thepetitionsite\\.com/\" to=\"https://www.thepetitionsite.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Pirate Bay\" f=\"ThePirateBay.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"thePlatform.com (problematic)\" default_off=\"mismatched\" f=\"ThePlatform-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"thePlatform.com (partial)\" default_off=\"failed ruleset test\" f=\"ThePlatform.xml\"><securecookie host=\"^(?:console|mps|release)\\.theplatform\\.com$\" name=\".+\"/><rule from=\"^http://support\\.theplatform\\.com/\" to=\"https://delivery.support.theplatform.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Privacy Blog\" default_off=\"cert-chain\" f=\"ThePrivacyBlog.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TheReadingRoom.com\" default_off=\"failed ruleset test\" f=\"TheReadingRoom.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TheRealTalk.org\" default_off=\"failed ruleset test\" f=\"TheRealTalk.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TheResumator.com (partial)\" platform=\"mixedcontent\" f=\"TheResumator.com.xml\"><exclusion pattern=\"^http://support\\.theresumator\\.com/support/\"/><securecookie host=\"^(?:app\\.|www\\.)?theresumator\\.com$\" name=\".*\"/><rule from=\"^http://(app\\.|www\\.)?theresumator\\.com/\" to=\"https://$1theresumator.com/\"/><rule from=\"^http://assets\\.theresumator\\.com/\" to=\"https://d1o2i4ti2oga3l.cloudfront.net/\"/><rule from=\"^http://(\\w+)\\.theresumator\\.com/(css/|favicon\\.ico|img/)\" to=\"https://$1.theresumator.com/$2\"/></ruleset>", "<ruleset name=\"TheSafety.US\" f=\"TheSafety.US.xml\"><securecookie host=\"^thesafety\\.us$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?thesafety\\.us/\" to=\"https://thesafety.us/\"/></ruleset>", "<ruleset name=\"TheSixthAxis.com\" platform=\"mixedcontent\" f=\"TheSixthAxis.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TheStandNews.com\" f=\"TheStandNews.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TheThinkingVegan.com\" f=\"TheThinkingVegan.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TheTrainLine.com\" f=\"TheTrainLine.xml\"><securecookie host=\"^\\.\" name=\"^s_v\"/><securecookie host=\"^\\.www\\.\" name=\".\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TheVideo.me\" f=\"TheVideo.me.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The 109\" default_off=\"failed ruleset test\" f=\"The_109.xml\"><securecookie host=\"^\\.the109\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The American Prospect\" default_off=\"failed ruleset test\" f=\"The_American_Prospect.xml\"><rule from=\"^http://(?:www\\.)?prospect\\.org/\" to=\"https://prospect.org/\"/></ruleset>", "<ruleset name=\"The American Scholar.org\" f=\"The_American_Scholar.org.xml\"><securecookie host=\"^(?:\\.|www\\.)?theamericanscholar\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Appendix.net (partial)\" default_off=\"failed ruleset test\" f=\"The_Appendix.net.xml\"><securecookie host=\"^theappendix\\.net$\" name=\".+\"/><securecookie host=\"^\\.theappendix\\.net$\" name=\"^__qca$\"/><rule from=\"^http://images\\.theappendix\\.net/\" to=\"https://d6hat78o59yti.cloudfront.net/\"/><rule from=\"^http://www\\.theappendix\\.net/\" to=\"https://theappendix.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The ArtStack.com\" f=\"The_ArtStack.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Atlantic.com\" f=\"The_Atlantic.com.xml\"><rule from=\"^http://assets\\.theatlantic\\.com/\" to=\"https://cdn.theatlantic.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Baffler\" f=\"The_Baffler.xml\"><securecookie host=\"^(?:www\\.)?thebaffler\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Big Wedding Movie.com\" default_off=\"mismatched, self-signed\" f=\"The_Big_Wedding_Movie.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Blue Sky Life.com\" default_off=\"expired\" f=\"The_Blue_Sky_Life.com.xml\"><securecookie host=\"^(?:www\\.)?theblueskylife\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Body Shop.co.uk (partial)\" default_off=\"failed ruleset test\" f=\"The_Body_Shop.co.uk.xml\"><exclusion pattern=\"^http://(?:www\\.)?thebodyshop\\.co\\.uk/(?!/*(?:404\\.htm|404-\\d\\.jpg|(?:athome|content|loveyourbody|myspace)(?:$|[?/])|checkout/|css/|images/|img/|js/|loyalty/|services/|socialhub/|(?:Script|Web)Resource\\.axd|ws/))\"/><exclusion pattern=\"^http://(?:www\\.)?thebodyshop\\.co\\.uk/.+\\.js(?:on)?(?:$|\\?)\"/><securecookie host=\"^\\.\" name=\"^(?:_gat?$|_gat_|TRADEDOUBLER_\\w+$|__tro\\w+$)\"/><securecookie host=\"^(?!\\.thebodyshop\\.co\\.uk$).\" name=\".\"/><rule from=\"^http://(?:www\\.)?thebodyshop\\.co\\.uk/\" to=\"https://secure.thebodyshop.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Bureau Investigates.com (false MCB)\" platform=\"mixedcontent\" f=\"The_Bureau_Investigates.com-falsemixed.xml\"><rule from=\"^http://www\\.thebureauinvestigates\\.com/\" to=\"https://www.thebureauinvestigates.com/\"/></ruleset>", "<ruleset name=\"The Bureau Investigates.com (partial)\" f=\"The_Bureau_Investigates.com.xml\"><exclusion pattern=\"^http://www\\.thebureauinvestigates\\.com/+(?!favicon\\.ico|wp-content/|wp-includes/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The CALMzone.net\" f=\"The_CALMzone.net.xml\"><securecookie host=\"^www\\.thecalmzone\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Center for Rights.org\" default_off=\"mismatched\" f=\"The_Center_for_Rights.org.xml\"><rule from=\"^http://(?:www\\.)?thecenterforrights\\.org/\" to=\"https://www.thecenterforrights.org/\"/></ruleset>", "<ruleset name=\"The Changelog.com\" default_off=\"failed ruleset test\" f=\"The_Changelog.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The China Story.org\" f=\"The_China_Story.org.xml\"><securecookie host=\"^\\.thechinastory\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Chronicles of George\" default_off=\"failed ruleset test\" f=\"The_Chronicles_of_George.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Coast News.com\" f=\"The_Coast_News.com.xml\"><securecookie host=\"^\\.thecoastnews\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Compassion Club.org\" f=\"The_Compassion_Club.org.xml\"><securecookie host=\"^(?:www\\.)?thecompassionclub\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Conversation\" f=\"The_Conversation.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Creators Project.com\" f=\"The_Creators_Project.com.xml\"><rule from=\"^http://(?:www\\.)?thecreatorsproject\\.com/\" to=\"https://thecreatorsproject.vice.com/\"/><rule from=\"^http://assets\\.thecreatorsproject\\.com/\" to=\"https://dm07ef02yemve.cloudfront.net/\"/></ruleset>", "<ruleset name=\"The DMA.org (partial)\" default_off=\"failed ruleset test\" f=\"The_DMA.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Daily Beast.com (partial)\" f=\"The_Daily_Beast.xml\"><rule from=\"^http://(www\\.)?thedailybeast\\.com/(?=(?:articles|cheats)/.+\\.jpg$|content/|favicon\\.ico|etc/)\" to=\"https://$1thedailybeast.com/\"/><rule from=\"^http://cdn\\.thedailybeast\\.com/\" to=\"https://d508l827lzpfo.cloudfront.net/\"/></ruleset>", "<ruleset name=\"The Dark Mod.com (partial)\" f=\"The_Dark_Mod.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Day We Fight Back.org\" f=\"The_Day_We_Fight_Back.org.xml\"><securecookie host=\"^\\.thedaywefightback\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Dilbert Store.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"The_Dilbert_Store.com-falsemixed.xml\"><securecookie host=\"^(?:w*\\.)?thedilbertstore\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?thedilbertstore\\.com/(?!(?:customers/(?:forgot_password|login|new)|javascript_no)/?(?:$|\\?.*)|images/|javascripts/|stylesheets/)\" to=\"https://$1thedilbertstore.com/\"/></ruleset>", "<ruleset name=\"The Dilbert Store.com (partial)\" default_off=\"failed ruleset test\" f=\"The_Dilbert_Store.com.xml\"><rule from=\"^http://(www\\.)?thedilbertstore\\.com/(?=(?:customers/(?:forgot_password|login|new)|javascript_no)/?(?:$|\\?.*)|images/|javascripts/|stylesheets/)\" to=\"https://$1thedilbertstore.com/\"/></ruleset>", "<ruleset name=\"The Drum.com (partial)\" f=\"The_Drom.com.xml\"><rule from=\"^http://(www\\.)?thedrum\\.com/(?=(?:account/login|cart/add/\\d+|store|user/login)(?:$|[?/])|uploads/)\" to=\"https://$1thedrum.com/\"/><rule from=\"^http://static\\d\\.thedrum\\.com/\" to=\"https://www.thedrum.com/\"/></ruleset>", "<ruleset name=\"The Edge Climbing.com\" default_off=\"failed ruleset test\" f=\"The_Edge_Climbing.com.xml\"><securecookie host=\"^(?:www\\.)?theedgeclimbing\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Explorer Card.com\" f=\"The_Explorer_Card.com.xml\"><securecookie host=\"^www\\.theexplorercard\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The FNF.org\" default_off=\"failed ruleset test\" f=\"The_FNF.org.xml\"><securecookie host=\"^(?:(?:chili|commons|www)\\.)?thefnf\\.org$\" name=\".+\"/><rule from=\"^http://((?:chili|commons|forums|lists|www)\\.)?thefnf\\.org/\" to=\"https://$1thefnf.org/\"/></ruleset>", "<ruleset name=\"The Fappening.sexy\" f=\"The_Fappening.sexy.xml\"><securecookie host=\"^\\.thefappening\\.sexy$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Federalist Papers.org (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"The_Federalist_Papers.org-falsemixed.xml\"><securecookie host=\"^\\.thefederalistpapers\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Federalist Papers.org (partial)\" default_off=\"failed ruleset test\" f=\"The_Federalist_Papers.org.xml\"><rule from=\"^http://(www\\.)?thefederalistpapers\\.org/(?=favicon\\.ico|wp-content/|wp-includes/)\" to=\"https://$1thefederalistpapers.org/\"/></ruleset>", "<ruleset name=\"The Fire.org\" f=\"The_Fire.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Foundry.co.uk\" f=\"The_Foundry.co.uk.xml\"><securecookie host=\"^(?:community)?\\.thefoundry\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The G Cloud.com (partial)\" default_off=\"failed ruleset test\" f=\"The_G_Cloud.com.xml\"><securecookie host=\"^(?:clients|manage-lax)\\.thegcloud\\.com$\" name=\".+\"/><rule from=\"^http://(clients\\.|manage-lax\\.)?thegcloud\\.com/\" to=\"https://$1thegcloud.com/\"/><rule from=\"^http://www\\.thegcloud\\.com/+(?:\\?.*)?$\" to=\"https://clients.thegcloud.com/\"/></ruleset>", "<ruleset name=\"The Gazette.co.uk\" f=\"The_Gazette.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://thegazette\\.co\\.uk/\" to=\"https://www.thegazette.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Gear Hunter.co.uk (false MCB)\" default_off=\"mismatched\" platform=\"mixedcontent\" f=\"The_Gear_Hunter.co.uk.xml\"><securecookie host=\"^www\\.thegearhunter\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Good Fight.fm\" default_off=\"failed ruleset test\" f=\"The_Good_Fight.fm.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Grand\" default_off=\"failed ruleset test\" f=\"The_Grand.xml\"><securecookie host=\"^thegrandtheatre\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?thegrandtheatre\\.com/\" to=\"https://thegrandtheatre.com/\"/></ruleset>", "<ruleset name=\"The Great Courses Plus.com\" default_off=\"failed ruleset test\" f=\"The_Great_Courses_Plus.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Great Discontent.com (partial)\" f=\"The_Great_Discontent.com.xml\"><rule from=\"^http://www\\.thegreatdiscontent\\.com/\" to=\"https://thegreatdiscontent.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Grommet.com\" f=\"The_Grommet.com.xml\"><securecookie host=\"^(?:[w.]*\\.)?thegrommet\\.com$\" name=\".+\"/><rule from=\"^http://(cdn\\d\\.|www\\.)?thegrommet\\.com/\" to=\"https://$1thegrommet.com/\"/></ruleset>", "<ruleset name=\"The Group\" default_off=\"refused\" f=\"The_Group.xml\"><securecookie host=\"^\\.the-group\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?the-group\\.net/\" to=\"https://www.the-group.net/\"/><rule from=\"^http://om\\.the-group\\.net/\" to=\"https://thegroup.112.2o7.net/\"/></ruleset>", "<ruleset name=\"The Guardian.com (partial)\" default_off=\"failed ruleset test\" f=\"The_Guardian.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:_gat|OAX$|RMF[DH]$|s_v)\"/><securecookie host=\"^(?:(?:\\.|www\\.)?bookshop|contribute|courseproviders|courses|\\.?id|jobs|oas|\\.?soulmates|\\.witness)\\.theguardian\\.com$\" name=\".\"/><rule from=\"^http://hits\\.theguardian\\.com/\" to=\"https://guardian.d1.sc.omtrdc.net/\"/><rule from=\"^http://syndication\\.theguardian\\.com/[^?]*\" to=\"https://www.theguardian.com/info/syndication-and-terms-of-use\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Hill.com\" default_off=\"failed ruleset test\" f=\"The_Hill.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Hoxton.com\" default_off=\"failed ruleset test\" f=\"The_Hoxton.com.xml\"><securecookie host=\"^thehoxton\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Iconic.com.au (partial)\" default_off=\"can't add items to cart\" f=\"The_Iconic.com.au.xml\"><rule from=\"^http://(?:www\\.)?theiconic\\.com\\.au/(?=(?:cart|customer/account)(?:$|[?/])|favicon\\.ico)\" to=\"https://www.theiconic.com.au/\"/><rule from=\"^http://static1?\\.theiconic\\.com\\.au/\" to=\"https://static.theiconic.com.au/\"/></ruleset>", "<ruleset name=\"The Information.com\" f=\"The_Information.com.xml\"><rule from=\"^http://(?:www\\.)?theinformation\\.com/\" to=\"https://www.theinformation.com/\"/></ruleset>", "<ruleset name=\"The Internet Co.net\" default_off=\"expired\" f=\"The_Internet_Co.net.xml\"><rule from=\"^http://(?:(dev\\.)|www\\.)?theinternetco\\.net/\" to=\"https://$1theinternetco.net/\"/></ruleset>", "<ruleset name=\"JHU.edu (partial)\" default_off=\"failed ruleset test\" f=\"The_Johns_Hopkins_University.xml\"><exclusion pattern=\"^http://www\\.ams\\.jhu\\.edu/+(?!$|\\?)\"/><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.ams\\.jhu\\.edu/+\" to=\"https://engineering.jhu.edu/ams/\"/><rule from=\"^http://(?:www\\.)?ce\\.jhu\\.edu/[^?]*\" to=\"https://engineering.jhu.edu/civil/\"/><rule from=\"^http://(?:www\\.)?giving\\.jhu\\.edu/+\" to=\"https://rising.jhu.edu/\"/><rule from=\"^http://www\\.hub\\.jhu\\.edu/\" to=\"https://hub.jhu.edu/\"/><rule from=\"^http://(?:www\\.)?it\\.jhu\\.edu/\" to=\"https://it.johnshopkins.edu/\"/><rule from=\"^http://nanjing\\.jhu\\.edu/[^?]*\" to=\"https://www.sais-jhu.edu/graduate-studies/campuses/nanjing-china\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Marshall Project.org\" f=\"The_Marshall_Project.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Movie Db.org\" f=\"The_Movie_Db.org.xml\"><securecookie host=\"^\\.www\\.themoviedb\\.org$\" name=\".+\"/><rule from=\"^http://themoviedb\\.org/\" to=\"https://www.themoviedb.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Newsmarket (partial)\" f=\"The_Newsmarket.xml\"><securecookie host=\"^br\\.thenewsmarket\\.com$\" name=\".+\"/><rule from=\"^http://(br|previews)\\.thenewsmarket\\.com/\" to=\"https://$1.thenewsmarket.com/\"/></ruleset>", "<ruleset name=\"The Next Web (problematic)\" default_off=\"mismatched\" f=\"The_Next_Web-problematic.xml\"><exclusion pattern=\"^http://guides\\.thenextweb\\.com/(?:av|cs|image)s/\"/><exclusion pattern=\"^http://jobs\\.thenextweb\\.com/(?:Areas|Content|i)/\"/><rule from=\"^http://(guides|index|jobs)\\.thenextweb\\.com/\" to=\"https://$1.thenextweb.com/\"/></ruleset>", "<ruleset name=\"The Outnet\" default_off=\"failed ruleset test\" f=\"The_Outnet.xml\"><securecookie host=\"^\\.?www\\.theoutnet\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?theoutnet\\.com/\" to=\"https://www.theoutnet.com/\"/><rule from=\"^http://(cache|www-lt)\\.theoutnet\\.com/\" to=\"https://$1.theoutnet.com/\"/></ruleset>", "<ruleset name=\"The Parliament Magazine.eu\" f=\"The_Parliament_Magazine.eu.xml\"><securecookie host=\"^\\.\" name=\"^_ga\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Patriot Post\" f=\"The_Patriot_Post.xml\"><securecookie host=\"^patriotpost\\.us$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?patriotpost\\.us/\" to=\"https://patriotpost.us/\"/><rule from=\"^http://(assets\\.patriotpost\\.com|media\\.patriotpost\\.us)/\" to=\"https://s3.amazonaws.com/$1/\"/></ruleset>", "<ruleset name=\"The RSA.org\" f=\"The_RSA.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Rock Trading.com\" f=\"The_Rock_Trading.com.xml\"><securecookie host=\"^(?:www\\.)?therocktrading\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Satanic Temple.com (false MCB)\" default_off=\"mismatched\" platform=\"mixedcontent\" f=\"The_Satanic_Temple.com.xml\"><securecookie host=\"^(?:www)?\\.thesatanictemple\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?thesatanictemple\\.(?:com|org)/\" to=\"https://www.thesatanictemple.com/\"/></ruleset>", "<ruleset name=\"The Security Practice.com\" default_off=\"mismatched\" f=\"The_Security_Practice.com.xml\"><securecookie host=\"^\\.thesecuritypractice\\.com$\" name=\".+\"/><rule from=\"^http://www\\.thesecuritypractice\\.com/\" to=\"https://www.thesecuritypractice.com/\"/></ruleset>", "<ruleset name=\"The Smoking Gun.com\" default_off=\"mismatched\" f=\"The_Smoking_Gun.com.xml\"><rule from=\"^http://(?:www\\.)?thesmokinggun\\.com/\" to=\"https://www.thesmokinggun.com/\"/></ruleset>", "<ruleset name=\"The Star Advisers.com\" f=\"The_Star_Advisers.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Storefront.com (problematic)\" default_off=\"mismatched\" f=\"The_Storefront.com-problematic.xml\"><securecookie host=\"^explore\\.thestorefront\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Storefront.com (partial)\" f=\"The_Storefront.com.xml\"><securecookie host=\"^(?:www)?\\.thestorefront\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Stranger.com (partial)\" f=\"The_Stranger.com.xml\"><exclusion pattern=\"^http://post\\.thestranger\\.com/+(?!$|\\?|favicon\\.ico|foundation/|images/|post/|styles/)\"/><rule from=\"^http://((?:classifieds|post|www)\\.)?thestranger\\.com/\" to=\"https://$1thestranger.com/\"/></ruleset>", "<ruleset name=\"The TFP\" f=\"The_TFP.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Technoskeptic.com\" f=\"The_Technoskeptic.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Theme Foundry.com (partial)\" f=\"The_Theme_Foundry.com.xml\"><rule from=\"^http://((?:demo|staging\\.demo|staging|www)\\.)?thethemefoundry\\.com/\" to=\"https://$1thethemefoundry.com/\"/></ruleset>", "<ruleset name=\"The Tin Hat.com\" default_off=\"failed ruleset test\" f=\"The_Tin_Hat.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Watershed\" f=\"The_Watershed.xml\"><securecookie host=\".+\\.thewatershed\\.com$\" name=\".+\"/><rule from=\"^http://((?:cdn|lp|wsmail|www)\\.)?thewatershed\\.com/\" to=\"https://$1thewatershed.com/\"/><rule from=\"^http://chat\\.thewatershed\\.com/(?:\\?.*)?$\" to=\"https://addictionhelpchat.com/webchatasp/\"/></ruleset>", "<ruleset name=\"The Watershed Residence\" default_off=\"failed ruleset test\" f=\"The_Watershed_Residence.xml\"><securecookie host=\"^thewatershedresidence\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?thewatershedresidence\\.com/\" to=\"https://thewatershedresidence.com/\"/></ruleset>", "<ruleset name=\"The Web Index.org\" default_off=\"failed ruleset test\" f=\"The_Web_Index.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Week.com\" f=\"The_Week.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Western World (partial)\" default_off=\"failed ruleset test\" f=\"The_Western_World.xml\"><securecookie host=\"^www\\.thewesternworld\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Work Dept.com\" default_off=\"mismatched\" f=\"The_Work_Dept.com.xml\"><rule from=\"^http://(?:www\\.)?theworkdept\\.com/\" to=\"https://www.theworkdept.com/\"/></ruleset>", "<ruleset name=\"The World According to Nouns\" f=\"The_World_According_to_Nouns.xml\"><securecookie host=\"^(?:www)?\\.danzappone\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?danzappone\\.com/\" to=\"https://www.danzappone.com/\"/></ruleset>", "<ruleset name=\"the engine room.org\" f=\"The_engine_room.org.xml\"><securecookie host=\"^(?:www\\.)?theengineroom\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The iPhone Wiki.com\" f=\"The_iPhone_Wiki.com.xml\"><securecookie host=\"^(?:www\\.)?theiphonewiki\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Theadex\" f=\"Theadex.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"theads.me\" default_off=\"failed ruleset test\" f=\"Theads.me.xml\"><securecookie host=\"^(?:code)?\\.theads\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Thebluealliance.com\" f=\"Thebluealliance.com.xml\"><rule from=\"^http:\" to=\"https:\"/><exclusion pattern=\"^http://(www\\.)?thebluealliance\\.com/gameday$\"/><exclusion pattern=\"^http://(www\\.)?thebluealliance\\.com/_/.*$\"/></ruleset>", "<ruleset name=\"Thecthulhu.com\" default_off=\"failed ruleset test\" f=\"Thecthulhu.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TheFind\" default_off=\"failed ruleset test\" f=\"Thefind.xml\"><securecookie host=\"^.*\\.thefind\\.com$\" name=\".*\"/><rule from=\"^http://s\\.tfcdn\\.com/\" to=\"https://www.thefind.com/\"/><rule from=\"^http://blog\\.thefind\\.com/(i|wp-content)/\" to=\"https://s64159.gridserver.com/$1/\"/><rule from=\"^http://((?:img|local|upfront|www)\\.)?thefind\\.com/\" to=\"https://$1thefind.com/\"/></ruleset>", "<ruleset name=\"thefrozenfire.com\" f=\"Thefrozenfire.com.xml\"><securecookie host=\"^\\.thefrozenfire\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"thehabbos.org\" f=\"Thehabbos.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Hacker News.com\" f=\"Thehackernews.com.xml\"><securecookie host=\"^\\.thehackernews\\.com$\" name=\".+\"/><rule from=\"^http://www\\.thehackernews\\.com/\" to=\"https://thehackernews.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Theiphonemom\" f=\"Theiphonemom.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Themacro.com\" f=\"Themacro.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Theme-Fusion.com\" f=\"Theme-Fusion.com.xml\"><securecookie host=\"^\\.?theme-fusion\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Theme.co\" f=\"Theme.co.xml\"><securecookie host=\"^(www\\.)?theme\\.co$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Themes and Co.com\" f=\"Themes_and_Co.com.xml\"><exclusion pattern=\"http://themesandco\\.com/(?!wp-content/|wp-includes/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Themis Group (partial)\" default_off=\"mismatched\" f=\"Themis-Group.xml\"><rule from=\"^http://cdn\\.themis-media\\.com/\" to=\"https://cdn.themis-media.com/\"/></ruleset>", "<ruleset name=\"Themler.com\" f=\"Themler.com.xml\"><securecookie host=\"^answers\\.themler\\.com$\" name=\".+\"/><rule from=\"^http://www\\.themler\\.com/\" to=\"https://themler.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"themuse.com\" f=\"Themuse.com.xml\"><securecookie host=\"^www\\.themuse\\.com$\" name=\".+\"/><rule from=\"^http://themuse\\.com/\" to=\"https://www.themuse.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Theora.org\" f=\"Theora.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Theory.org\" f=\"Theory.org.xml\"><rule from=\"^http://((?:femail|wiki|www)\\.)?theory\\.org/\" to=\"https://$1theory.org/\"/></ruleset>", "<ruleset name=\"thephone.coop\" default_off=\"failed ruleset test\" f=\"Thephone.coop.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Thequestion.ru\" f=\"Thequestion.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Thermitic.net (partial)\" default_off=\"failed ruleset test\" f=\"Thermitic.net.xml\"><rule from=\"^http://stats\\.thermitic\\.net/\" to=\"https://stats.thermitic.net/\"/></ruleset>", "<ruleset name=\"Thermo Scientific.com\" default_off=\"failed ruleset test\" f=\"Thermo_Scientific.com.xml\"><securecookie host=\"^(?:www)?\\.thermoscientific\\.com$\" name=\".+\"/><rule from=\"^http://thermoscientific\\.com/\" to=\"https://www.thermoscientific.com/\"/><rule from=\"^http://stats\\.thermoscientific\\.com/\" to=\"https://thermoscientific.d1.sc.omtrdc.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Theses.cz\" f=\"Theses.cz.xml\"><securecookie host=\"^theses\\.cz$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?theses\\.cz/\" to=\"https://theses.cz/\"/></ruleset>", "<ruleset name=\"thesn.net (partial)\" f=\"Thesn.net.xml\"><rule from=\"^http://cdn\\.thesn\\.net/\" to=\"https://ddrm6oy8thgk7.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Thetvdb.com\" f=\"Thetvdb.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"thewarehouse.co.nz\" f=\"Thewarehouse.co.nz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Thijs Alkema.de\" f=\"Thijs_Alkema.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"thing.net (false MCB)\" platform=\"mixedcontent\" f=\"Thing.net-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"thing.net (partial)\" f=\"Thing.net.xml\"><rule from=\"^http://((?:editions|isp|mailman|the|thingist|webmail|www)\\.)?thing\\.net/\" to=\"https://$1thing.net/\"/></ruleset>", "<ruleset name=\"ThingLink (partial)\" f=\"ThingLink.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ThingLink Blog.com\" default_off=\"mismatched\" f=\"ThingLink_Blog.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Thingiverse.com (partial)\" f=\"Thingiverse.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://support\\.thingiverse\\.com/\" to=\"https://thingiverse.tenderapp.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Thingsquare\" default_off=\"mismatched\" f=\"Thingsquare.xml\"><rule from=\"^http://(?:www\\.)?thingsquare\\.com/\" to=\"https://thingsquare.com/\"/></ruleset>", "<ruleset name=\"ThinkFaster.co\" default_off=\"failed ruleset test\" f=\"ThinkFaster.co.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ThinkGeek\" f=\"ThinkGeek.xml\"><rule from=\"^http://(?:www\\.)?thinkgeek\\.com/\" to=\"https://www.thinkgeek.com/\"/><securecookie host=\"^(?:.*\\.)?thinkgeek\\.com$\" name=\".*\"/></ruleset>", "<ruleset name=\"ThinkProgress.org (partial)\" f=\"ThinkProgress.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ThinkUp.com (partial)\" f=\"ThinkUp.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Think with Google.com\" f=\"ThinkWithGoogle.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Thinking Christian\" f=\"Thinking_Christian.xml\"><securecookie host=\"^(?:\\.?www)?\\.thinkingchristian\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?thinkingchristian\\.net/\" to=\"https://www.thinkingchristian.net/\"/></ruleset>", "<ruleset name=\"Thinkpads.com\" f=\"Thinkpads.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Third Door Media (mismatches)\" default_off=\"mismatched\" f=\"Third-Door-Media-mismatches.xml\"><rule from=\"^http://(?:www\\.)?thirddoormedia\\.com/\" to=\"https://thirddoormedia.com/\"/></ruleset>", "<ruleset name=\"Third Door Media (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Third-Door-Media.xml\"><rule from=\"^http://www\\.searchengineland\\.com/\" to=\"https://www.searchengineland.com/\"/><rule from=\"^http://searchengineland\\.com/figz/\" to=\"https://searchengineland.com/figz/\"/><rule from=\"^http://(www\\.)?searchmarketing(expo|now)\\.com/\" to=\"https://$1searchmarketing(expo|now).com/\"/></ruleset>", "<ruleset name=\"ThirdAge (partial)\" default_off=\"failed ruleset test\" f=\"ThirdAge.xml\"><rule from=\"^http://(ww[w3]\\.)?thirdage\\.com/\" to=\"https://$1thirdage.com/\"/><rule from=\"^http://cast\\.thirdage\\.com/\" to=\"https://www.thirdage.com/\"/></ruleset>", "<ruleset name=\"ThirdPresence.com (partial)\" f=\"ThirdPresence.com.xml\"><rule from=\"^http://files\\.thirdpresence\\.com/\" to=\"https://s3-eu-west-1.amazonaws.com/files.thirdpresence.com/\"/></ruleset>", "<ruleset name=\"Thirty Meter Telescope (partial)\" f=\"Thirty_Meter_Telescope.xml\"><exclusion pattern=\"^http://(?:www\\.)?tmt\\.org/(?!images/|sites/)\"/><securecookie host=\"^\\.profiles\\.tmt\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"This is my next.com\" f=\"ThisIsMyNext.xml\"><rule from=\"^http://(?:www\\.)?thisismynext\\.com/$\" to=\"https://www.theverge.com/reviews\"/><rule from=\"^http://(?:www\\.)?thisismynext\\.com/\" to=\"https://www.theverge.com/reviews/\"/></ruleset>", "<ruleset name=\"ThisWebHost\" f=\"ThisWebHost.xml\"><securecookie host=\"^(?:.+\\.)?thiswebhost\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?thiswebhost\\.com/\" to=\"https://www.thiswebhost.com/\"/></ruleset>", "<ruleset name=\"ThisisColossal.com\" default_off=\"refused\" f=\"ThisisColossal.com.xml\"><securecookie host=\"^\\.colossal\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?colossal\\.com/\" to=\"https://www.colossal.com/\"/></ruleset>", "<ruleset name=\"Thomas-Krenn.com\" f=\"Thomas-Krenn.com.xml\"><securecookie host=\"^\\.?www\\.thomas-krenn\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?thomas-krenn\\.com/\" to=\"https://www.thomas-krenn.com/\"/></ruleset>", "<ruleset name=\"ThomasNet.com (partial)\" f=\"ThomasNet.com.xml\"><securecookie host=\"^clientcenter\\.thomasnet\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Thomas Cook.com (partial)\" f=\"Thomas_Cook.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Thompson.com\" f=\"Thompson.com.xml\"><securecookie host=\"^www\\.thompson\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?thompson\\.com/\" to=\"https://www.thompson.com/\"/></ruleset>", "<ruleset name=\"Thompson Hotels.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Thompson_Hotels.com-falsemixed.xml\"><rule from=\"^http://(?:www\\.)?thompsonhotels\\.com/\" to=\"https://www.thompsonhotels.com/\"/></ruleset>", "<ruleset name=\"Thompson Hotels.com (partial)\" f=\"Thompson_Hotels.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?thompsonhotels\\.com/+(?!content/)\"/><rule from=\"^http://(?:www\\.)?thompsonhotels\\.com/\" to=\"https://www.thompsonhotels.com/\"/></ruleset>", "<ruleset name=\"Thomson Reuters clients\" default_off=\"mismatched\" f=\"Thomson-Reuters-clients.xml\"><rule from=\"^http://investors\\.marchex\\.com/\" to=\"https://phx.corporate-ir.net/\"/><rule from=\"^http://ir\\.monster\\.com/\" to=\"https://phx.corporate-ir.net/\"/><rule from=\"^http://(?:ir|media)\\.radioshackcorporation\\.com/\" to=\"https://phx.corporate-ir.net/\"/><rule from=\"^http://investor\\.visa\\.com/\" to=\"https://phx.corporate-ir.net/\"/></ruleset>", "<ruleset name=\"Thomson Reuters (mismatches)\" default_off=\"mismatched\" f=\"Thomson-Reuters-mismatches.xml\"><rule from=\"^http://investor\\.marvell\\.com/\" to=\"https://investor.marvell.com/\"/></ruleset>", "<ruleset name=\"Thomson Reuters.com (partial)\" default_off=\"failed ruleset test\" f=\"Thomson-Reuters.xml\"><securecookie host=\"^\\.\" name=\"^_(?:_qca$|gat?$|gat_)\"/><securecookie host=\"^(?!legalsolutions\\.)\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Thomson.com (partial)\" f=\"Thomson.com.xml\"><exclusion pattern=\"^http://myaccount\\.west\\.thomson\\.com/(?!/*(?:$|\\?|myaccount/default\\.aspx))\"/><securecookie host=\"^(?!myaccount\\.west\\.)\\w\" name=\".\"/><rule from=\"^http://myaccount\\.west\\.thomson\\.com/.*\" to=\"https://myaccount.thomsonreuters.com/westlaw\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Thomson Reuters Life Sciences.com\" f=\"Thomson_Reuters_Life_Sciences.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Thorpe Park\" f=\"Thorpe-Park.xml\"><securecookie host=\"www\\.thorpepark\\.com$\" name=\".+\"/><rule from=\"^http://thorpepark\\.com/\" to=\"https://www.thorpepark.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ThoughtStreams.io\" f=\"ThoughtStreams.io.xml\"><securecookie host=\"^thoughtstreams\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ThoughtWorks.com\" f=\"ThoughtWorks.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^_gat?$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"thoughtbot.com\" f=\"Thoughtbot.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"thp.io\" f=\"Thp.io.xml\"><rule from=\"^http://(?:www\\.)?thp\\.io/\" to=\"https://thp.io/\"/></ruleset>", "<ruleset name=\"Thread.com\" f=\"Thread.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Threading Building Blocks.org\" default_off=\"failed ruleset test\" f=\"Threading-Building-Blocks.xml\"><securecookie host=\"^\\.threadingbuildingblocks\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Threat2Alert.com\" default_off=\"failed ruleset test\" f=\"Threat2Alert.com.xml\"><securecookie host=\"^www\\.threat2alert\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Threat Metrix.com (partial)\" f=\"ThreatMetrix.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ThreatPost.com\" f=\"ThreatPost.xml\"><securecookie host=\"^\\.?threatpost\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ThreatTrack Security.com\" default_off=\"failed ruleset test\" f=\"ThreatTrack_Security.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Threatpost.ru\" f=\"Threatpost.ru.xml\"><securecookie host=\"^threatpost\\.ru$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?threatpost\\.ru/\" to=\"https://threatpost.ru/\"/></ruleset>", "<ruleset name=\"Three\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Three.xml\"><rule from=\"^http://(?:www\\.)?three\\.ie/\" to=\"https://www.three.ie/\"/><rule from=\"^http://threestore\\.three\\.co\\.uk/\" to=\"https://threestore.three.co.uk/\"/></ruleset>", "<ruleset name=\"Threema-forum.de\" f=\"Threema-Forum.de.xml\"><securecookie host=\"^(www\\.)?threema-forum\\.de\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Threema\" f=\"Threema.xml\"><exclusion pattern=\"http://avatar\\.threema\\.ch/?$\"/><securecookie host=\"^(www.|gateway.|work.|shop\\.|myid.|web.|web-beta.)?threema\\.ch\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Thuisbezorgd.nl\" f=\"Thuisbezorgd.nl.xml\"><securecookie host=\"^(?:w*\\.)?thuisbezorgd\\.nl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Thumbshots (partial)\" f=\"Thumbshots.xml\"><rule from=\"^http://thumbshots\\.com/\" to=\"https://thumbshots.com/\"/><rule from=\"^http://(www\\.)?thumbshots\\.(?:com|net)/(admin/|DesktopModules/|images/|[pP]ortals/|register\\.aspx|SecureLogin|Telerik\\.Web\\.UI\\.WebResource\\.axd)\" to=\"https://$1thumbshots.com/$2\"/><rule from=\"^http://(www\\.)?thumbshots\\.org/\" to=\"https://$1thumbshots.com/\"/><rule from=\"^http://open\\.thumbshots\\.(?:com|org)/\" to=\"https://open.thumbshots.com/\"/></ruleset>", "<ruleset name=\"Thumbzilla.com\" f=\"Thumbzilla.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Thunder Ranch Inc.com\" default_off=\"expired\" f=\"ThunderRanch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Thunderbird-Mail.DE\" f=\"Thunderbird-Mail.DE.xml\"><rule from=\"^http://thunderbird-mail\\.de/\" to=\"https://www.thunderbird-mail.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Thunderclap.it\" f=\"Thunderclap.it.xml\"><securecookie host=\"^www\\.thunderclap\\.it$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Thunderkick\" default_off=\"failed ruleset test\" f=\"Thunderkick.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Thurrott.com\" f=\"Thurrott.com.xml\"><securecookie host=\"^\\.thurrott\\.com$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ti.to\" f=\"Ti.to.xml\"><rule from=\"^http://www\\.ti(\\.to|to\\.io)/\" to=\"https://ti$1/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TiMos.me\" default_off=\"failed ruleset test\" f=\"TiMos.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tibet Action.net\" f=\"Tibet_Action.net.xml\"><securecookie host=\"^(?:www)?\\.tibetaction\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tickengo\" default_off=\"failed ruleset test\" f=\"Tickengo.xml\"><securecookie host=\"^tickengo\\.(?:com|fr)$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?tickengo\\.(ca|com|fr)/\" to=\"https://tickengo.$1/\"/><rule from=\"^http://fr\\.tickengo\\.ca/\" to=\"https://fr.tickengo.ca/\"/></ruleset>", "<ruleset name=\"TickerTech.com\" f=\"TickerTech.com.xml\"><rule from=\"^http://(?:secure\\.|www\\.)?tickertech\\.com/\" to=\"https://secure.tickertech.com/\"/></ruleset>", "<ruleset name=\"Ticker Madness.com\" default_off=\"failed ruleset test\" f=\"Ticker_Madness.com.xml\"><securecookie host=\"^www\\.tickermadness\\.com$\" name=\".+\"/><rule from=\"^http://www\\.tickermadness\\.com/\" to=\"https://www.tickermadness.com/\"/></ruleset>", "<ruleset name=\"TicketOne\" default_off=\"failed ruleset test\" f=\"TicketOne.xml\"><securecookie host=\"^.+\\.ticketone\\.it$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ticketone\\.it/\" to=\"https://www.ticketone.it/\"/><rule from=\"^http://secure\\.ticketone\\.it/\" to=\"https://secure.ticketone.it/\"/></ruleset>", "<ruleset name=\"Ticket Driver\" f=\"Ticket_Driver.xml\"><securecookie host=\"^(?:w*\\.)?ticketdriver\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Ticket Factory\" f=\"Ticket_Factory.xml\"><securecookie host=\"^(?:www\\.)?theticketfactory\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ticket Online\" default_off=\"failed ruleset test\" f=\"Ticket_Online.xml\"><securecookie host=\"^.*\\.ticketonline\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ticketonline\\.de/\" to=\"https://www.ticketonline.de/\"/><rule from=\"^http://secure\\.ticketonline\\.de/\" to=\"https://secure.ticketonline.de/\"/></ruleset>", "<ruleset name=\"Ticketcorner\" default_off=\"failed ruleset test\" f=\"Ticketcorner.xml\"><rule from=\"^http://(?:www\\.)?ticketcorner\\.ch/\" to=\"https://www.ticketcorner.ch/\"/><rule from=\"^http://secure\\.ticketcorner\\.ch/\" to=\"https://secure.ticketcorner.ch/\"/></ruleset>", "<ruleset name=\"Ticketea.com (partial)\" f=\"Ticketea.com.xml\"><securecookie host=\"^www\\.ticketea\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TicketingNetworkEastMidlands\" default_off=\"failed ruleset test\" f=\"TicketingNetworkEastMidlands.xml\"><securecookie host=\"^(?:.+\\.)?(?:ticketingnetworkeastmidlands|ticketing\\.trch)\\.co\\.uk$\" name=\".*\"/><rule from=\"^http://ticketingnetworkeastmidlands\\.co\\.uk/\" to=\"https://ticketingnetworkeastmidlands.co.uk/\"/><rule from=\"^http://www\\.ticketingnetworkeastmidlands\\.co\\.uk/\" to=\"https://www.ticketingnetworkeastmidlands.co.uk/\"/><rule from=\"^http://ticketing\\.trch\\.co\\.uk/\" to=\"https://ticketing.trch.co.uk/\"/></ruleset>", "<ruleset name=\"Ticketmaster (partial)\" default_off=\"failed ruleset test\" f=\"Ticketmaster.xml\"><exclusion pattern=\"^http://(?:www\\.)?(?:billetnet\\.dk|billettservice\\.no|lippupalvelu\\.fi|ticketmaster\\.(?:de|nl))/(?!assets/|myAccount|resource/|static/|theme/|tm-\\w\\wprod\\.112\\.2O7\\.net/)\"/><securecookie host=\"^www\\.eticketing\\.co\\.uk$\" name=\".+\"/><securecookie host=\"^\\.ticketmaster\\.com$\" name=\"^s_vi$\"/><securecookie host=\"^de\\.ticketmaster\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?(?:billet(?:net\\.dk|tservice\\.no)|lippupalvelu\\.fi|ticketmaster\\.(?:de|nl))/tm-(\\w\\w)prod\\.112\\.2O7\\.net/\" to=\"https://tm-$1prod.112.2o7.net/\"/><rule from=\"^http://(?:www\\.)?admission\\.com/(resourc|them)e/\" to=\"https://www.admission.com/$1e/\"/><rule from=\"^http://(?:www\\.)?billetnet\\.dk/\" to=\"https://www.billetnet.dk/\"/><rule from=\"^http://(?:www\\.)?eticketing\\.co\\.uk/\" to=\"https://www.eticketing.co.uk/\"/><rule from=\"^http://(?:www\\.)?lippupalvelu\\.fi/\" to=\"https://www.lippupalvelu.fi/\"/><rule from=\"^http://(?:www\\.)?ticket(?:ek|master)\\.cl/\" to=\"https://www.ticketek.cl/\"/><rule from=\"^http://(?:www\\.)?ticketmaster\\.(ca|com\\.(?:au|nz|mx)|ie)/favicon-rebrand\\.ico\" to=\"https://www.ticketmaster.$1/favicon-rebrand.ico\"/><rule from=\"^http://(?:www\\.)?ticketmaster\\.com/(app/|checkout/|h/|json/|member(?:$|\\?|/))\" to=\"https://www.ticketmaster.com/$1\"/><rule from=\"^http://(ds|mm|secure\\.store)\\.ticketmaster\\.com/\" to=\"https://$1.ticketmaster.com/\"/><rule from=\"^http://metrics\\.ticketmaster\\.com/\" to=\"https://ticketmaster-com.d2.sc.omtrdc.net/\"/><rule from=\"^http://ticketsnow\\.ticketmaster\\.com/(DataProviders/|Scripts/|TopCitiesDropDownListGenerator\\.aspx|UI/)\" to=\"https://ticketsnow.ticketmaster.com/$1\"/><rule from=\"^http://(?:www\\.)?ticketmaster\\.co\\.uk/(?:section)?(\\?.*)?$\" to=\"https://www.ticketmaster.co.uk/section/$1\"/><rule from=\"^http://(?:www\\.)?ticketmaster\\.co\\.uk/\" to=\"https://www.ticketmaster.co.uk/\"/><rule from=\"^http://reviews\\.ticketmaster\\.co\\.uk/(logging(?:$|\\?)|\\d+-\\w\\w_\\w\\w/\\d+/reviews\\.htm\\?.*format=embedded|static/)\" to=\"https://ticketmaster.ugc.bazaarvoice.com/$1\"/><rule from=\"^http://(?:www\\.)?ticketmaster\\.(de|es|nl)/\" to=\"https://www.ticketmaster.$1/\"/><rule from=\"^http://(?:www\\.)?ticketmaster\\.dk/\" to=\"https://www.billetnet.dk/\"/><rule from=\"^http://media\\.ticketmaster\\.eu/\" to=\"https://media.ticketmaster.eu/\"/><rule from=\"^http://(?:www\\.)?ticketnet\\.fr/(assets|static)/\" to=\"https://www.ticketnet.fr/$1/\"/><rule from=\"^http://(?:www\\.)?ticketweb\\.com/\" to=\"https://www.ticketweb.com/\"/><rule from=\"^http://(?:www\\.)?ticketweb\\.co\\.uk/(images/|INFO/|giftcards|member|partners/|section/|styles\\.css|twpurple\\.html|ukcontent\\.css|user/gb_northeast/order/|venuepages/|[\\w\\./-]+\\.html$|[\\w-]+/artist/\\d+)\" to=\"https://www.ticketweb.co.uk/$1\"/></ruleset>", "<ruleset name=\"ticketnet.fr (partial)\" f=\"Ticketnet.fr.xml\"><rule from=\"^http://(?:www\\.)?ticketnet\\.fr/(assets|static)/\" to=\"https://www.ticketnet.fr/$1/\"/></ruleset>", "<ruleset name=\"Ticketportal.sk\" f=\"Ticketportal.sk.xml\"><rule from=\"^http://(?:www\\.|ssl\\.)?ticketportal\\.sk/\" to=\"https://ssl.ticketportal.sk/\"/></ruleset>", "<ruleset name=\"Ticketpro (partial)\" f=\"Ticketpro.xml\"><securecookie host=\"^shop\\.ticketpro\\.hu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tickets.com (partial)\" f=\"Tickets.com.xml\"><securecookie host=\"^broadcaster\\.email-tickets\\.com$\" name=\".+\"/><securecookie host=\"^purchasecdn\\.tickets\\.com$\" name=\".+\"/><rule from=\"^http://broadcaster\\.email-tickets\\.com/\" to=\"https://broadcaster.email-tickets.com/\"/><rule from=\"^http://(?:www\\.)?tickets\\.com/(images/|user(?:$|[?/]))\" to=\"https://www.tickets.com/$1\"/><rule from=\"^http://facebook\\.tickets\\.com/[^?]*(\\?.*)?\" to=\"https://www.facebook.com/pages/Ticketscom/43749304172$1\"/><rule from=\"^http://(?:frontline\\.)?images\\.tickets\\.com/\" to=\"https://images.tickets.com/\"/><rule from=\"^http://purchasecdn\\.tickets\\.com/\" to=\"https://purchasecdn.tickets.com/\"/><rule from=\"^http://youtube\\.tickets\\.com/[^?]*(\\?.*)?\" to=\"https://www.youtube.com/gototicketsdotcom$1\"/></ruleset>", "<ruleset name=\"Tickets.gwr.com\" f=\"Tickets.gwr.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TicketsNow (partial)\" f=\"TicketsNow.xml\"><rule from=\"^http://(www\\.)?ticketsnow\\.com/(UI/)\" to=\"https://$1ticketsnow.com/$2\"/><rule from=\"^http://(www\\.)?ticketsnow\\.com/myTicketsNow/?\" to=\"https://$1ticketsnow.com/myTicketsNow/\"/><rule from=\"^http://(?:secure)?content\\.ticketsnow\\.com/\" to=\"https://securecontent.ticketsnow.com/\"/></ruleset>", "<ruleset name=\"Tictail.com (partial)\" f=\"Tictail.com.xml\"><securecookie host=\"^\\.ticktail\\.com$\" name=\"^(?:__ar_v4|mp_\\w{32}_mixpanel|optimizely\\w+|_te_)$\"/><securecookie host=\"^(?:www\\.)?tictail\\.com$\" name=\".+\"/><rule from=\"^http://(api\\.|www\\.)?tictail\\.com/\" to=\"https://$1tictail.com/\"/><rule from=\"^http://(?:blogassets|external\\.static)\\.tictail\\.com/\" to=\"https://d2q56xp1cg562x.cloudfront.net/\"/><rule from=\"^http://help\\.tictail\\.com/favicon\\.ico\" to=\"https://d3jyn100am7dxp.cloudfront.net/favicon.ico\"/></ruleset>", "<ruleset name=\"Tid.al (mismatched)\" default_off=\"mismatched\" f=\"Tid.al-problematic.xml\"><securecookie host=\"^news\\.tid\\.al$\" name=\".+\"/><rule from=\"^http://news\\.tid\\.al/\" to=\"https://news.tid.al/\"/></ruleset>", "<ruleset name=\"Tid.al (partial)\" f=\"Tid.al.xml\"><securecookie host=\"^tid\\.al$\" name=\".+\"/><rule from=\"^http://tid\\.al/\" to=\"https://tid.al/\"/><rule from=\"^http://cdna\\.tid\\.al/\" to=\"https://1b40d7834cd36cb17272-d318e241556db478f2443eab8244ec10.ssl.cf2.rackcdn.com/\"/></ruleset>", "<ruleset name=\"TidBITS\" f=\"TidBITS.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tidal HiFi.com\" f=\"Tidal_HiFi.com.xml\"><securecookie host=\"^(?:go\\.|www\\.)?tidalhifi\\.com$\" name=\".+\"/><rule from=\"^http://((?:go|tracking|www)\\.)?tidalhifi\\.com/\" to=\"https://$1tidalhifi.com/\"/></ruleset>", "<ruleset name=\"tidaltv.com (partial)\" f=\"Tidaltv.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tidningsnatet.se (partial)\" f=\"Tidningsnatet.se.xml\"><securecookie host=\"^\\.tidningsnatet\\.se$\" name=\"(?:NXCLICK2|OAX)$\"/><rule from=\"^http://sifomedia\\.tidningsnatet\\.se/\" to=\"https://oasc07.247realmedia.com/\"/></ruleset>", "<ruleset name=\"TieTuKu (partial)\" default_off=\"failed ruleset test\" f=\"TieTuKu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TierraNet.net\" f=\"TierraNet.xml\"><securecookie host=\"^(?:control|support)\\.tierra\\.net$\" name=\".*\"/><rule from=\"^http://tierra\\.net/\" to=\"https://www.tierra.net/\"/><rule from=\"^http://www\\.control\\.tierra\\.net/\" to=\"https://control.tierra.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tieteellisten seurain valtuuskunta\" f=\"Tieteellisten-seurain-valtuuskunta.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tieto.com (partial)\" f=\"Tieto.com.xml\"><exclusion pattern=\"^http://leansystemcommunity\\.portal\\.\"/><securecookie host=\"^\\.tieto\\.com$\" name=\"^__utm\\w$\"/><securecookie host=\"^\\w+\\.portal\\.tieto\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?tieto\\.com/(?=customer-area(?:$|[?/])|misc/|profiles/\\w+/modules/|sites/)\" to=\"https://www.tieto.com/\"/><rule from=\"^http://easyedi\\.tieto\\.com/\" to=\"https://easyedi.tietoenator.com/\"/><rule from=\"^http://(\\w+)\\.portal\\.tieto\\.com/\" to=\"https://$1.portal.tieto.com/\"/></ruleset>", "<ruleset name=\"Tietoenator.com (partial)\" f=\"Tietoenator.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tigase.org (partial)\" f=\"Tigase.org.xml\"><securecookie host=\"^projects\\.tigase\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tiger Airways (partial)\" default_off=\"failed ruleset test\" f=\"Tiger-Airways.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TigerDirect.com (partial)\" default_off=\"failed ruleset test\" f=\"TigerDirect.xml\"><exclusion pattern=\"^http://(?:www\\.)?tigerdirect\\.com/+(?!(?:cgi|secure)(?:$|[?/])|css/)\"/><securecookie host=\"^biz\\.tigerdirect\\.com$\" name=\".+\"/><rule from=\"^http://tigerdirect\\.com/\" to=\"https://www.tigerdirect.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tiggersWelt.net\" default_off=\"failed ruleset test\" f=\"TiggersWelt.net.xml\"><securecookie host=\"^ssl\\.tiggerswelt\\.net$\" name=\".+\"/><rule from=\"^http://webmail\\.tiggerswelt\\.net/\" to=\"https://ssl.tiggerswelt.net/webmail/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tigr.net\" f=\"Tigr.net.xml\"><rule from=\"^http://(?:www\\.)?tigr\\.net/\" to=\"https://tigr.net/\"/></ruleset>", "<ruleset name=\"Tiki-Toki.com\" f=\"Tiki-Toki.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tiki.org\" f=\"Tiki.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tilburg University\" default_off=\"failed ruleset test\" f=\"Tilburg_University.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://osso\\.uvt\\.nl:4443/\" to=\"https://osso.uvt.nl:4443/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tildedave.com\" f=\"Tildedave.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tilera (partial)\" default_off=\"refused\" f=\"Tilera.xml\"><securecookie host=\"^support\\.tilera\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tilt.com\" f=\"Tilt.com.xml\"><exclusion pattern=\"^http://(?:blog|engineering|ambassador|stories|policies)\\.tilt\\.com\"/><rule from=\"^http://([\\w-]+\\.)?tilt\\.com/\" to=\"https://$1tilt.com/\"/></ruleset>", "<ruleset name=\"Tiltbrush.com\" f=\"Tiltbrush.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tilted Windmill Press.com\" f=\"Tilted_Windmill_Press.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tim Minchin.com (partial)\" f=\"Tim_Minchin.com.xml\"><rule from=\"^http://cdn1\\.timminchin\\.com/\" to=\"https://d1g9yotx740lzx.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Timbro.se\" default_off=\"broken\" f=\"Timbro.se.xml\"><rule from=\"^http://www\\.timbro\\.se/\" to=\"https://www.timbro.se/\"/><rule from=\"^http://timbro\\.se/\" to=\"https://timbro.se/\"/></ruleset>", "<ruleset name=\"Time2Play.mobi\" f=\"Time2Play.mobi.xml\"><securecookie host=\"^\\.time2play\\.mobi$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TimeTrade.com (partial)\" f=\"TimeTrade.xml\"><exclusion pattern=\"^http://www\\.timetrade\\.com/(?!app/|book/|files/|td(?:$|[?/])|token/)\"/><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TimeWeb.com\" f=\"TimeWeb.com.xml\"><securecookie host=\"^\\.timeweb\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TimeWeb.ru\" f=\"TimeWeb.xml\"><securecookie host=\"^(?:.*\\.)?timeweb\\.ru$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TimeZero.ru\" f=\"TimeZero.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Time Clock Deals.com\" f=\"Time_Clock_Deals.com.xml\"><securecookie host=\"^(?:w*\\.)?timeclockdeals\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Time Inc (partial)\" f=\"Time_Inc.xml\"><securecookie host=\"^subscription\\.timeinc\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Time and Date.com (partial)\" f=\"Time_and_Date.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Times Printing Co. (partial)\" default_off=\"refused\" f=\"Times-Printing-Co.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Times.co.uk (partial)\" f=\"Times.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://archiveprints\\.thetimes\\.co\\.uk/.*\" to=\"https://www.magnoliabox.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Times Higher Education.com\" f=\"Times_Higher_Education.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://timeshighereducation\\.com/\" to=\"https://www.timeshighereducation.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Times Record News (partial)\" f=\"Times_Record_News.xml\"><rule from=\"^http://(?:www\\.)?timesrecordnews\\.com/\" to=\"https://www.timesrecordnews.com/\"/><rule from=\"^http://media\\.timesrecordnews\\.com/\" to=\"https://images.scrippsing.com/\"/></ruleset>", "<ruleset name=\"TimesofMoney\" f=\"TimesofMoney.xml\"><securecookie host=\"^www\\.timesofmoney\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?timesofmoney\\.com/\" to=\"https://www.timesofmoney.com/\"/></ruleset>", "<ruleset name=\"Timex\" default_off=\"failed ruleset test\" f=\"Timex.xml\"><securecookie host=\"^www\\.timex\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TinEye (partial)\" f=\"TinEye.xml\"><securecookie host=\"^www\\.tineye\\.com$\" name=\".*\"/><rule from=\"^http://www\\.pixid\\.ideeinc\\.com/\" to=\"https://pixid.ideeinc.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"got Tinder.com (partial)\" f=\"Tinder.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid$|_gat?$|_gat_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tinder Foundation.org (false MCB)\" default_off=\"mismatched\" platform=\"mixedcontent\" f=\"Tinder_Foundation.org.xml\"><rule from=\"^http://(?:www\\.)?tinderfoundation\\.org/\" to=\"https://www.tinderfoundation.org/\"/></ruleset>", "<ruleset name=\"Tindie.com (partial)\" f=\"Tindie.com.xml\"><securecookie host=\"^www\\.tindie\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tinfoil Security.com\" f=\"Tinfoil_Security.com.xml\"><securecookie host=\"^\\.tinfoilsecurity\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ting.com\" f=\"Ting.com.xml\"><securecookie host=\"^(?:.*\\.)?ting\\.com$\" name=\".+\"/><rule from=\"^http://(?:(help\\.|static\\.)|www\\.)?ting\\.com/\" to=\"https://$1ting.com/\"/></ruleset>", "<ruleset name=\"Tinhte.vn\" f=\"Tinhte.vn.xml\"><securecookie host=\"^\\.tinhte\\.vn$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TinkerSoup.de\" default_off=\"failed ruleset test\" f=\"TinkerSoup.de.xml\"><securecookie host=\"^\\.tinkersoup\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tinkerforge.com (partial)\" f=\"Tinkerforge.com.xml\"><rule from=\"^http://(www\\.)?tinkerforge\\.com/(?=shop(?:$|[?/])|static/)\" to=\"https://$1tinkerforge.com/\"/></ruleset>", "<ruleset name=\"Tinkoff.ru\" f=\"Tinkoff.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tintup.com\" platform=\"mixedcontent\" f=\"Tintup.com.xml\"><securecookie host=\"^\\.tintup\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tiny.cc\" f=\"Tiny.cc.xml\"><securecookie host=\"^(?:\\.|www\\.)?tiny\\.cc$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TinyBites\" f=\"TinyBites.xml\"><securecookie host=\"^\\.tinybytes\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TinyChat\" platform=\"mixedcontent\" f=\"TinyChat.xml\"><exclusion pattern=\"^http://(?:www\\.)?tinychat\\.com/nsfw\"/><exclusion pattern=\"^http://(?:www\\.)?tinychat\\.com/api/find.room/lobby\\?site=nsfw\"/><rule from=\"^http://(?:www\\.)?tinychat\\.com/\" to=\"https://tinychat.com/\"/></ruleset>", "<ruleset name=\"TinyDL.com\" platform=\"mixedcontent\" f=\"TinyDL.com.xml\"><securecookie host=\"^www\\.tinydl\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TinyJPG.com\" f=\"TinyJPG.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TinyLetter.com\" f=\"TinyLetter.com.xml\"><securecookie host=\"^app\\.tinyletter\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TinyPNG\" f=\"TinyPNG.xml\"><rule from=\"^http://(?:www\\.)?tinypng\\.com/\" to=\"https://tinypng.com/\"/></ruleset>", "<ruleset name=\"TinyURL.com\" f=\"TinyURL.xml\"><securecookie host=\"^\\.tinyurl\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tiny Buddha.com (partial)\" platform=\"mixedcontent\" f=\"Tiny_Buddha.com.xml\"><exclusion pattern=\"^http://cdn\\.tinybuddha\\.com/.+\\.js(?:$|\\?)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tinyapps.org\" f=\"Tinyapps.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tinypass.com (false MCB)\" platform=\"mixedcontent\" f=\"Tinypass.com-falsemixed.xml\"><securecookie host=\"^\\.tinypass\\.com$\" name=\".+\"/><rule from=\"^http://(publisher|www)\\.tinypass\\.com/\" to=\"https://$1.tinypass.com/\"/></ruleset>", "<ruleset name=\"Tinypass.com (partial)\" f=\"Tinypass.com.xml\"><exclusion pattern=\"^http://publisher\\.tinypass\\.com/+(?!guide/(?:assets|media|plugins)/)\"/><exclusion pattern=\"^http://www\\.tinypass\\.com/+(?!favicon\\.ico|wp-content/|wp-includes/)\"/><rule from=\"^http://((?:cdn|code|dashboard|publisher|www)\\.)?tinypass\\.com/\" to=\"https://$1tinypass.com/\"/></ruleset>", "<ruleset name=\"tinyteenpass.com\" default_off=\"failed ruleset test\" f=\"Tinyteenpass.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tip4Commit.com\" f=\"Tip4Commit.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tipico.de\" f=\"Tipico.de.xml\"><securecookie host=\"^\\.tipico\\.de$\" name=\"^affiliateId$\"/><securecookie host=\"^(?:www\\.)?tipico\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tipp10.com\" f=\"Tipp10.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tirerack\" f=\"Tirerack.com.xml\"><rule from=\"^http://(?:www\\.)?tirerack\\.com/\" to=\"https://www.tirerack.com/\"/></ruleset>", "<ruleset name=\"Tisarana Buddhist Monastery\" platform=\"mixedcontent\" f=\"Tisarana.ca.xml\"><securecookie host=\"^(?:www)?(?:\\.)?tisarana\\.ca$\" name=\".+\"/><rule from=\"^http://tisarana\\.ca/wp/wp-content/uploads/(.+)/x(.+)\\.pagespeed.+\" to=\"https://tisarana.ca/wp/wp-content/uploads/$1/$2\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tiscali.it (partial)\" f=\"Tiscali.it.xml\"><securecookie host=\"^(?!mail\\.).\" name=\".\"/><rule from=\"^http://incontri\\.tiscali\\.it/\" to=\"https://www.meetic.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TitanPad.com\" f=\"TitanPad.com.xml\"><securecookie host=\"^\\.titanpad\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Titanfile.com\" f=\"Titanfile.com.xml\"><rule from=\"^http://(?:www\\.)?titanfile\\.com/\" to=\"https://www.titanfile.com/\"/></ruleset>", "<ruleset name=\"Titania.com\" f=\"Titania.com.xml\"><securecookie host=\"^www\\.titania\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?titania\\.com/\" to=\"https://www.titania.com/\"/></ruleset>", "<ruleset name=\"Titanic-Magazin.de\" f=\"Titanic-Magazin.de.xml\"><securecookie host=\"^www\\.titanic-magazin\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Titanshare.to\" default_off=\"failed ruleset test\" f=\"Titanshare.to.xml\"><securecookie host=\"^\\.titanshare\\.to$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tittygram.com\" f=\"Tittygram.com.xml\"><securecookie host=\"^\\.?tittygram\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tittygram.ru\" f=\"Tittygram.ru.xml\"><securecookie host=\"^\\.tittygram\\.ru$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tizen.org\" default_off=\"failed ruleset test\" f=\"Tizen.org.xml\"><securecookie host=\"^(?:bugs|build|wiki)\\.tizen\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tjoos (partial)\" f=\"Tjoos.xml\"><rule from=\"^http://(www\\.)?tjoos\\.com/([iI])mg/\" to=\"https://$1tjoos.com/$2mg/\"/><rule from=\"^http://store\\.img0\\.tjoos\\.com/\" to=\"https://d1orxobvizj2av.cloudfront.net/\"/><rule from=\"^http://store\\.img1\\.tjoos\\.com/\" to=\"https://d3ivv5oi68ept2.cloudfront.net/\"/><rule from=\"^http://store\\.img2\\.tjoos\\.com/\" to=\"https://d1cqgyjxjycyec.cloudfront.net/\"/><rule from=\"^http://store\\.img3\\.tjoos\\.com/\" to=\"https://d35h6lli6lzgmi.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Tjournal.ru\" default_off=\"failed ruleset test\" f=\"Tjournal.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tkbbank.ru\" default_off=\"failed ruleset test\" f=\"Tkbbank.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tl63.co.uk\" default_off=\"connection reset\" f=\"Tl63.co.uk.xml\"><securecookie host=\"^www\\.tl63\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?tl63\\.co\\.uk/\" to=\"https://www.tl63.co.uk/\"/></ruleset>", "<ruleset name=\"tld.pl\" f=\"Tld.pl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tleCDN.net\" f=\"TleCDN.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tls.li\" default_off=\"failed ruleset test\" f=\"Tls.li.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tlsfun.de\" f=\"Tlsfun.de.xml\"><rule from=\"^http://([\\w-]+\\.)?tlsfun\\.de/\" to=\"https://$1tlsfun.de/\"/></ruleset>", "<ruleset name=\"Tmall.HK\" f=\"Tmall.HK.xml\"><rule from=\"^http://tmall\\.hk/\" to=\"https://www.tmall.hk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tmblr.co\" f=\"Tmblr.co.xml\"><rule from=\"^http://tmblr\\.co/+\" to=\"https://www.tumblr.com/\"/></ruleset>", "<ruleset name=\"Tmcnet.com\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Tmcnet.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tmsz.com\" default_off=\"failed ruleset test\" f=\"Tmsz.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TnAstatic.com\" f=\"TnAstatic.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TnAflix.com (partial)\" f=\"Tnaflix.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tns-counter.ru\" f=\"Tns-counter.ru.xml\"><securecookie host=\"^\\.tns-counter\\.ru$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"toFOUR.net\" f=\"ToFOUR.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Terms of Service; Didn't Read\" f=\"ToSDR.org.xml\"><rule from=\"^http://www\\.tosdr\\.org/\" to=\"https://tosdr.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"To BTR.com (partial)\" f=\"To_BTR.com.xml\"><rule from=\"^http://tobtr\\.com/\" to=\"https://secure.blogtalkradio.com/\"/></ruleset>", "<ruleset name=\"The Toad Fly (partial)\" f=\"Toad_Fly.xml\"><rule from=\"^http://(www\\.)?thetoadfly\\.com/(favicon\\.ico|(?:my-account|order-tracking)(?:$|\\?|/)|wp-content/|wp-includes/)\" to=\"https://$1thetoadfly.com/$2\"/></ruleset>", "<ruleset name=\"Tocco AG\" f=\"Tocco.ch.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Todo en Tinta\" default_off=\"failed ruleset test\" f=\"Todo_en_Tinta.xml\"><securecookie host=\"^\\.ahorroentinta\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TodoLy\" f=\"Todoly.xml\"><securecookie host=\"^(?:.+\\.)?todo\\.ly$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?todo\\.ly/\" to=\"https://todo.ly/\"/></ruleset>", "<ruleset name=\"TofinoSecurity\" f=\"TofinoSecurity.xml\"><rule from=\"^http://(?:www\\.)?tofinosecurity\\.com/\" to=\"https://www.tofinosecurity.com/\"/></ruleset>", "<ruleset name=\"Toga Hotels (partial)\" f=\"Toga_Hotels.xml\"><rule from=\"^http://(www\\.)?togahotels\\.com/(asset|template)s/\" to=\"https://$1togahotels.com/$2s/\"/></ruleset>", "<ruleset name=\"TogetherJS.com\" f=\"TogetherJS.com.xml\"><rule from=\"^http://www\\.togetherjs\\.com/\" to=\"https://togetherjs.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Toggl.com\" f=\"Toggl.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TokBox.com\" f=\"TokBox.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Toke.dk\" f=\"Toke.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Toko Bitcoin.com\" f=\"Toko_Bitcoin.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?tokobitcoin\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tokyo Linux Users Group\" default_off=\"self-signed\" f=\"Tokyo-Linux-Users-Group.xml\"><rule from=\"^http://(?:www\\.)?tlug\\.jp/\" to=\"https://tlug.jp/\"/><rule from=\"^http://lists\\.tlug\\.jp/\" to=\"https://lists.tlug.jp/\"/></ruleset>", "<ruleset name=\"Tokyo University of Science (partial)\" f=\"Tokyo_University_of_Science.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tokyo Toshokan\" f=\"Tokyotosho.xml\"><rule from=\"^http://(?:www\\.)?tokyotosho\\.info/\" to=\"https://www.tokyotosho.info/\"/><rule from=\"^http://(?:www\\.)?tokyotosho\\.se/\" to=\"https://www.tokyotosho.info/\"/><rule from=\"^http://(?:www\\.)?tokyo-tosho\\.net/\" to=\"https://www.tokyotosho.info/\"/><securecookie host=\"\\.tokyotosho\\.info$\" name=\"trac_.*\"/></ruleset>", "<ruleset name=\"Tolaris.com\" f=\"Tolaris.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tolvutaekni.is\" default_off=\"expired, missing certificate chain\" f=\"Tolvutaekni.xml\"><securecookie host=\"^\\.tolvutaekni\\.is$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TomTom.com (partial)\" default_off=\"failed ruleset test\" f=\"TomTom-International.xml\"><securecookie host=\"^tomtom\\.com$\" name=\".+\"/><securecookie host=\"^(?:mydrive|mysport|business|places)?\\.tomtom\\.com$\" name=\".+\"/><securecookie host=\"^(?:es|fr|uk|nl|ru|fi|cz|au|de|se|dk|it|hu|no|tr|in|br|pl|us|pt|gr)?\\.support\\.tomtom\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tom Lee.wtf\" f=\"Tom_Lee.wtf.xml\"><securecookie host=\"^\\.tomlee\\.wtf$\" name=\"^(__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tomorrow-Focus-Media.de\" default_off=\"self-signed\" f=\"Tomorrow-Focus-Media.de.xml\"><securecookie host=\"^(?:www\\.)?tomorrow-focus-media\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tompkins-Cortland Community College\" platform=\"mixedcontent\" f=\"Tompkins-CortlandCC.xml\"><rule from=\"^http://(?:www\\.)?tc3\\.edu/\" to=\"https://tc3.edu/\"/></ruleset>", "<ruleset name=\"Tom's of Maine (partial)\" default_off=\"failed ruleset test\" f=\"Toms-of-Maine.xml\"><rule from=\"^http://images\\.tomsofmainestore\\.com/\" to=\"https://images.tomsofmainestore.com/\"/><rule from=\"^http://(www\\.)?tomsofmainestore\\.com/webstore/(a4j/|login\\.do)\" to=\"https://www.tomsofmainestore.com/webstore/$2\"/></ruleset>", "<ruleset name=\"TonerGiant (partial)\" f=\"TonerGiant.xml\"><rule from=\"^http://(www\\.)?tonergiant\\.co\\.uk/(css/|favicon\\.ico|includes/|login\\.asp|media/|version9/|viewBasket\\.asp)\" to=\"https://$1tonergiant.co.uk/$2\"/></ruleset>", "<ruleset name=\"Tony Bianco\" platform=\"mixedcontent\" f=\"TonyBianco.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tony Zhaocheng Tan\" default_off=\"failed ruleset test\" f=\"TonyZTan.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tony Arcieri.com\" f=\"Tony_Arcieri.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tony Yang Photography\" default_off=\"mismatched\" f=\"Tony_Yang_Photography.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Toofishes.net\" f=\"Toofishes.net.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Toogl.com (partial)\" default_off=\"failed ruleset test\" f=\"Toogl.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tookapic.com (partial)\" f=\"Tookapic.com.xml\"><securecookie host=\"^\\.tookapic\\.com$\" name=\".+\"/><rule from=\"^http://www\\.tookapic\\.com/\" to=\"https://tookapic.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ToolbarBrowser\" default_off=\"mismatched\" f=\"ToolbarBrowser.xml\"><rule from=\"^http://(?:www\\.)?toolbarbrowser\\.com/\" to=\"https://toolbarbrowser.com/\"/></ruleset>", "<ruleset name=\"Toolslib.net\" f=\"Toolslib.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ToorCon.net\" f=\"ToorCon.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"top.de\" default_off=\"failed ruleset test\" f=\"Top.de.xml\"><securecookie host=\"^top\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TopBuy.com.au\" default_off=\"failed ruleset test\" f=\"TopBuy.com.au.xml\"><securecookie host=\"^(?:.*\\.)?topbuy\\.com\\.au$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TopCoder.com (partial)\" f=\"TopCoder.xml\"><exclusion pattern=\"^http://help\\.topcoder\\.com/\"/><securecookie host=\"^(?:.*\\.)?topcoder\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TopFox.co.uk\" f=\"TopFox.co.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TopOption.com (partial)\" f=\"TopOption.com.xml\"><exclusion pattern=\"^http://www\\.topoption.com/+(?!AppProxy/|ContactUsmediaProxy/|css/|favicon\\.ico|homemediaProxy/|images/)\"/><securecookie host=\"^(?:myaccount\\.|widgets\\.)?topoption\\.com$\" name=\".+\"/><securecookie host=\"^\\.topoption\\.com$\" name=\"^(?:apTracker|campaignId|subCampaignId)$\"/><rule from=\"^http://((?:myaccount|widgets|www)\\.)?topoption\\.com/\" to=\"https://$1topoption.com/\"/></ruleset>", "<ruleset name=\"TopatoCo\" f=\"TopatoCo.xml\"><securecookie host=\"^(?:www\\.)?topatoco\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Topiama.com\" f=\"Topiama.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tor2Web\" default_off=\"failed ruleset test\" f=\"Tor2Web.xml\"><rule from=\"^http://([^/]+)\\.tor2web\\.(com|fi)/\" to=\"https://$1.onion.to/\"/><rule from=\"^http://([^/]+)\\.onion\\.city/\" to=\"https://$1.onion.link/\"/><rule from=\"^http://([^/]+)\\.onion\\.direct/\" to=\"https://$1.onion.to/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TorGuard.net\" f=\"TorGuard.xml\"><securecookie host=\"^\\.?torguard\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TorLock.com\" default_off=\"failed ruleset test\" f=\"TorLock.com.xml\"><securecookie host=\"^(?:w*\\.)?torlock\\.com$\" name=\".+\"/><rule from=\"^http://cdn\\.torlock\\.com/\" to=\"https://tlock-16e3.kxcdn.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Torbay.gov.uk (partial)\" f=\"Torbay.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Torcache.net\" default_off=\"failed ruleset test\" f=\"Torcache.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Torchbox.com\" f=\"Torchbox.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Torchlight game.com\" default_off=\"expired, self-signed\" f=\"Torchlight_game.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tornado Web.org\" default_off=\"mismatched\" f=\"Tornado_Web.org.xml\"><rule from=\"^http://(?:www\\.)?tornadoweb\\.org/\" to=\"https://www.tornadoweb.org/\"/></ruleset>", "<ruleset name=\"The Star.com (partial)\" default_off=\"failed ruleset test\" f=\"Toronto-Star.xml\"><securecookie host=\"^\\.\" name=\"^s_\\w\"/><rule from=\"^http://thestar\\.com/\" to=\"https://www.thestar.com/\"/><rule from=\"^http://n\\.thestar\\.com/\" to=\"https://s.thestar.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tor Project\" f=\"Torproject.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Torrent.tm (partial)\" f=\"Torrent.tm.xml\"><securecookie host=\"^\\.torrent\\.tm$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TorrentButler\" f=\"TorrentButler.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Torrent Day\" default_off=\"failed ruleset test\" f=\"TorrentDay.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TorrentFreak.com\" f=\"TorrentFreak.com.xml\"><securecookie host=\"^(?:w*\\.)?torrentfreak\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TorrentFunk.com\" default_off=\"failed ruleset test\" f=\"TorrentFunk.com.xml\"><securecookie host=\"^\\.torrentfunk\\.com$\" name=\"\"/><rule from=\"^http://cdn\\.torrentfunk\\.com/\" to=\"https://tfunk-16e3.kxcdn.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TorrentPrivacy.com (partial)\" f=\"TorrentPrivacy.xml\"><exclusion pattern=\"^http://torrentprivacy\\.com/+(?!css/|favicon\\.ico|img/|index\\.php\\?mod=(?:v2_login|v2_support)(?:$|&))\"/><rule from=\"^http://www\\.torrentprivacy\\.com/\" to=\"https://torrentprivacy.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TorrentR.eu\" default_off=\"failed ruleset test\" f=\"TorrentR.eu.xml\"><securecookie host=\"^(?:www)?\\.torrentr\\.eu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TorrentShack\" default_off=\"failed ruleset test\" f=\"TorrentShack.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Torrentbit.net (partial)\" f=\"Torrentbit.net.xml\"><securecookie host=\"^\\.torrentbit\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Torrenthounds.com\" f=\"Torrenthounds.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"torrentleechdotorg\" f=\"Torrentleech.org.xml\"><securecookie host=\"^(?:.*\\.)?torrentleech.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Torrentproject.com\" f=\"Torrentproject.com.xml\"><rule from=\"^http://(www\\.)?torrentproject\\.com/\" to=\"https://$1torrentproject.se/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Torrentsmirror.com\" f=\"Torrentsmirror.xml\"><securecookie host=\"(?:www\\.)?torrentsmirror\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Torrentz-Proxy.com\" f=\"Torrentz-Proxy.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Torrentz.to\" f=\"Torrentz.to.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Torrentz\" f=\"Torrentz.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TorreyCommerce.net\" default_off=\"failed ruleset test\" f=\"TorreyCommerce.net.xml\"><securecookie host=\"^\\.torreycommerce\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TorreyCommerce (partial)\" f=\"TorreyCommerce.xml\"><rule from=\"^http://(www\\.)?torreycommerce\\.com/(cdn-cgi/ping|css/|store_image/|Public/|Style/)\" to=\"https://$1torreycommerce.com/$2\"/></ruleset>", "<ruleset name=\"TortoiseGit.org\" f=\"TortoiseGit.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Torus Knot.com\" default_off=\"expired\" f=\"Torus_Knot.com.xml\"><rule from=\"^http://(?:www\\.)?torusknot\\.com/\" to=\"https://torusknot.com/\"/></ruleset>", "<ruleset name=\"Toshiba.co.jp (partial)\" f=\"Toshiba.co.jp.xml\"><exclusion pattern=\"^http://www\\.toshiba\\.co\\.jp/index_j3.htm\"/><rule from=\"^http://www\\.toshiba\\.co\\.jp/\" to=\"https://www.toshiba.co.jp/\"/></ruleset>", "<ruleset name=\"Toster.ru\" f=\"Toster.ru.xml\"><rule from=\"^http://www\\.toster\\.ru/\" to=\"https://toster.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TotalBarcode.com\" f=\"TotalBarcode.com.xml\"><securecookie host=\"^www\\.totalbarcode\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Total Boox\" default_off=\"failed ruleset test\" f=\"Total_Boox.xml\"><securecookie host=\"^(?:w*\\.)?totalboox\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Total Choice Hosting (partial)\" f=\"Total_Choice_Hosting.xml\"><securecookie host=\".+\\.totalchoicehosting\\.com$\" name=\".+\"/><rule from=\"^http://([\\w-]+)\\.tchmachines\\.com/\" to=\"https://$1.tchmachines.com/\"/><rule from=\"^http://totalchoicehosting\\.com/\" to=\"https://www.totalchoicehosting.com/\"/><rule from=\"^http://(billing|blog|domains|forums|status|support|www)\\.totalchoicehosting\\.com/\" to=\"https://$1.totalchoicehosting.com/\"/></ruleset>", "<ruleset name=\"Total Eyecare\" f=\"Total_Eyecare.xml\"><securecookie host=\"^(?:w*\\.)?totalicare\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Total Fan Shop.net\" default_off=\"failed ruleset test\" f=\"Total_Fan_Shop.net.xml\"><securecookie host=\"^\\.(?:www\\.)?totalfanshop\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Total Investor\" f=\"Total_Investor.xml\"><securecookie host=\"^(?:www)?\\.totalinvestor\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?totalinvestor\\.co\\.uk/\" to=\"https://www.totalinvestor.co.uk/\"/><rule from=\"^http://userfiles-m\\.totalinvestor\\.co\\.uk/\" to=\"https://d14vj0hj6x9324.cloudfront.net/\"/><rule from=\"^http://userfiles-s\\.totalinvestor\\.co\\.uk/\" to=\"https://d2w8arlr69kjmg.cloudfront.net/\"/><rule from=\"^http://userfiles-xs\\.totalinvestor\\.co\\.uk/\" to=\"https://d3tydccictwpfl.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Total Web Solutions (partial)\" default_off=\"failed ruleset test\" f=\"Total_Web_Solutions.xml\"><securecookie host=\".+\\.totalwebsecure\\.com$\" name=\".+\"/><securecookie host=\"^store\\.totalwebsolutions\\.com$\" name=\".+\"/><rule from=\"^http://vps-unixweb([1-6])\\.totalhostingplus\\.com/\" to=\"https://vps-unixweb$1.totalhostingplus.com/\"/><rule from=\"^http://(merchant|order)\\.totalwebsecure\\.com/\" to=\"https://$1.totalwebsecure.com/\"/><rule from=\"^http://store\\.totalwebsolutions\\.com/\" to=\"https://store.totalwebsolutions.com/\"/></ruleset>", "<ruleset name=\"Totem\" f=\"Totem.xml\"><securecookie host=\"^(?:.*\\.)?totemapp\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?totemapp\\.com/\" to=\"https://www.totemapp.com/\"/><rule from=\"^http://([\\w\\-]+)\\.totemapp\\.com/\" to=\"https://$1.totemapp.com/\"/></ruleset>", "<ruleset name=\"totse2\" default_off=\"self-signed\" f=\"Totse2.xml\"><securecookie host=\"^totse\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?totse\\.com/\" to=\"https://totse.com/\"/></ruleset>", "<ruleset name=\"TouClick\" default_off=\"failed ruleset test\" f=\"TouClick.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TouTiao (partial)\" f=\"TouTiao.xml\"><rule from=\"^http://s(4|5)\\.pstatp\\.com/\" to=\"https://s6.pstatp.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TouchCommerce (partial)\" f=\"TouchCommerce.xml\"><exclusion pattern=\"^http://www\\.\"/><rule from=\"^http://([\\w\\-]+)\\.inq\\.com/\" to=\"https://$1.inq.com/\"/><rule from=\"^http://go\\.touchcommerce\\.com/(cs|image|r)s/\" to=\"https://na-j.marketo.com/$1s/\"/></ruleset>", "<ruleset name=\"TouchNet Information Systems (partial)\" f=\"TouchNet_Information_Systems.xml\"><securecookie host=\"^secure\\.touchnet\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Touchandtravel.de\" default_off=\"failed ruleset test\" f=\"Touchandtravel.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Touchgen\" f=\"Touchgen.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Touchstone Network.net\" f=\"Touchstone_Network.xml\"><securecookie host=\"^idp\\.touchstonenetwork\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tourism and Events Queensland (partial)\" default_off=\"failed ruleset test\" f=\"Tourism_and_Events_Queensland.xml\"><securecookie host=\"^atdw\\.tq\\.com\\.au$\" name=\".+\"/><rule from=\"^http://atdw\\.tq\\.com\\.au/\" to=\"https://atdw.tq.com.au/\"/></ruleset>", "<ruleset name=\"Tourismepourtous.ch\" f=\"Tourismepourtous.ch.xml\"><rule from=\"^http://tourismepourtous\\.ch/\" to=\"https://www.tourismepourtous.ch/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TowerData.com (partial)\" f=\"TowerData.com.xml\"><securecookie host=\"^(?:client|dashboard)\\.towerdata\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TownNews.com\" f=\"TownNews.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?townnews365\\.com/(?!content/|favicon\\.ico)\"/><securecookie host=\"^townnews365-dot-com\\.bloxcms\\.com$\" name=\".+\"/><securecookie host=\"^secure\\.townnews\\.com$\" name=\".+\"/><rule from=\"^http://(?:townnews365-dot-com\\.bloxcms|(?:www\\.)?townnews365)\\.com/\" to=\"https://townnews365-dot-com.bloxcms.com/\"/><rule from=\"^http://(secure|stats)\\.townnews\\.com/\" to=\"https://$1.townnews.com/\"/><rule from=\"^http://support\\.townnews\\.com/(\\?.*)?$\" to=\"https://secure.townnews.com/support.townnews.com/custlogin/$1\"/><rule from=\"^http://bloximages\\.(chicago2|newyork1)\\.vip\\.townnews\\.com/\" to=\"https://bloximages.$1.vip.townnews.com/\"/></ruleset>", "<ruleset name=\"Tox.chat\" f=\"Tox.chat.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"toxme.se\" f=\"Toxme.se.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ToyFoundry (partial)\" default_off=\"failed ruleset test\" f=\"ToyFoundry.xml\"><securecookie host=\"^(?:www\\.)?toyfoundry\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Toyota.es (partial)\" f=\"Toyota.es.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Toys R Us.com (partial)\" f=\"Toys_R_Us.com.xml\"><exclusion pattern=\"^http://www\\.toysrus\\.com/+(?!cms_widgets/|css/|favicon\\.ico|graphics/|images/|include/|min-cat/|onlineopinionV5/|product/index\\.jsp|regCookie\\.jsp)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tpd.sk\" f=\"Tpd.sk.xml\"><rule from=\"^http://(?:www\\.)?tpd\\.sk/\" to=\"https://www.tpd.sk/\"/></ruleset>", "<ruleset name=\"Tpfrb.dk\" f=\"Tpfrb.dk.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://(www\\.)?tpfrb\\.dk/\" to=\"https://tpfrb.dk/\"/></ruleset>", "<ruleset name=\"Tr.im\" f=\"Tr.im.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tr0n.net\" default_off=\"self-signed\" f=\"Tr0n.net.xml\"><rule from=\"^http://(?:www\\.)?tr0n\\.net/\" to=\"https://www.tr0n.net/\"/></ruleset>", "<ruleset name=\"TracFone.com (redirects)\" default_off=\"Redirect loop\" f=\"TracFone.com.xml\"><securecookie host=\"^www\\.tracfone\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?tracfone\\.com/\" to=\"https://www.tracfone.com/\"/></ruleset>", "<ruleset name=\"TracFone Wireless.com (partial)\" f=\"TracFone_Wireless.com.xml\"><securecookie host=\"^media\\.tracfonewireless\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trace Register (partial)\" f=\"Trace_Register.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trachtenshop24.de\" f=\"Trachtenshop24.de.xml\"><rule from=\"^http://www\\.trachtenshop24\\.de/\" to=\"https://www.trachtenshop24.de/\"/></ruleset>", "<ruleset name=\"Trackalyzer\" f=\"Trackalyzer.xml\"><securecookie host=\"^(?:.*\\.)?trackalyzer\\.com$\" name=\".*\"/><rule from=\"^http://formalyzer\\.com/\" to=\"https://trackalyzer.com/\"/><rule from=\"^http://(www\\.)?trackalyzer\\.com/\" to=\"https://$1trackalyzer.com/\"/><rule from=\"^http://t\\d\\.trackalyzer\\.com/trackalyze(?:_secure)?\\.(asp|js)\" to=\"https://trackalyzer.com/trackalyze_secure.$1\"/><rule from=\"^http://t\\d\\.trackalyzer\\.com/0\\.gif\" to=\"https://trackalyzer.com/0.gif\"/></ruleset>", "<ruleset name=\"Tracker-Software.com\" f=\"Tracker-Software.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TrackingPoint (partial)\" f=\"TrackingPoint.xml\"><rule from=\"^http://(?:www\\.)?tracking-point\\.com/(favicon\\.ico|modules/|sites/|(?:labs|user)(?:$|\\?|/))\" to=\"https://tracking-point.com/$1\"/></ruleset>", "<ruleset name=\"Traction-Digital.com (partial)\" f=\"Traction-Digital.com.xml\"><securecookie host=\"^\\.traction-digital\\.com$\" name=\"^__utm\\w+$\"/><rule from=\"^http://cdn\\.transaction-digital\\.com/\" to=\"https://dujdlx1yovuet.cloudfront.net/\"/></ruleset>", "<ruleset name=\"TradeBlock.com\" f=\"TradeBlock.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TradeKing.com (partial)\" f=\"TradeKing.com.xml\"><rule from=\"^http://((?:community|investor|static-investor|www)\\.)?tradeking\\.com/\" to=\"https://$1tradeking.com/\"/></ruleset>", "<ruleset name=\"TradeLeaks.com\" default_off=\"failed ruleset test\" f=\"TradeLeaks.com.xml\"><securecookie host=\"^\\.tradeleaks\\.com$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TradeMore Margin.com\" default_off=\"failed ruleset test\" f=\"TradeMore_Margin.com.xml\"><securecookie host=\"^\\.trademoremargin\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TradeNetworks (partial)\" f=\"TradeNetworks.xml\"><securecookie host=\"^billing\\.tradenetworks\\.com$\" name=\".+\"/><rule from=\"^http://(billing|download)\\.tradenetworks\\.com/\" to=\"https://$1.tradenetworks.com/\"/></ruleset>", "<ruleset name=\"TradePub.com (false MCB)\" platform=\"mixedcontent\" f=\"TradePub.com-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tradedoubler.com (partial)\" f=\"Tradedoubler.xml\"><exclusion pattern=\"^http://(?:anet|clk|clk\\w\\w|imp\\w\\w|pdt|star\\w\\w|tracker)\\.tradedoubler\\.com/$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(anet|clk|clk\\w\\w|hst|img|imp\\w\\w|login|pdt|prod|publisher|solutions|star\\w\\w|tracker)\\.tradedoubler\\.com/\" to=\"https://$1.tradedoubler.com/\"/></ruleset>", "<ruleset name=\"tradeinchecker.com\" f=\"Tradeinchecker.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tradelab (problematic)\" default_off=\"expired, mismatched, self-signed\" f=\"Tradelab-problematic.xml\"><rule from=\"^http://(?:www\\.)?tradelab\\.fr/\" to=\"https://www.tradelab.fr/\"/></ruleset>", "<ruleset name=\"Tradelab (partial)\" f=\"Tradelab.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trademarkia.com\" f=\"Trademarkia.com.xml\"><rule from=\"^http://(www\\.)?trademarkia\\.com/(?=about-trademarkia/privacy\\.aspx|css/|fancybox/|fonts/|images/|js/|login\\.aspx|services/)\" to=\"https://$1trademarkia.com/\"/></ruleset>", "<ruleset name=\"TradePub.com (partial)\" f=\"Tradepub.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Traffic Shop\" f=\"Traffic-Shop.xml\"><securecookie host=\"^www\\.trafficshop\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Traffic Holder\" f=\"TrafficHolder.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TrafficJunky.net (partial)\" f=\"TrafficJunky.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TrafficPrivacy.com\" default_off=\"failed ruleset test\" f=\"TrafficPrivacy.xml\"><securecookie host=\"^trafficprivacy\\.com$\" name=\".+\"/><rule from=\"^http://www\\.trafficprivacy\\.com/\" to=\"https://trafficprivacy.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Traffic Factory.biz\" f=\"Traffic_Factory.biz.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Traffic Force.com\" f=\"Traffic_Force.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://cdn\\.ht\\.trafficforce\\.com/\" to=\"https://cdnes.trafficforce.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Traffic Haus.com (partial)\" f=\"Traffic_Haus.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Traffic Safety Marketing.gov\" default_off=\"mismatched\" f=\"Traffic_Safety_Marketing.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://trafficsafetymarketing\\.gov/\" to=\"https://www.trafficsafetymarketing.gov/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trafficfacts.com\" default_off=\"failed ruleset test\" f=\"Trafficfacts.com.xml\"><rule from=\"^http://rt\\.trafficfacts\\.com/\" to=\"https://rt.trafficfacts.com/\"/></ruleset>", "<ruleset name=\"trafficmaxx (partial)\" default_off=\"failed ruleset test\" f=\"Trafficmaxx.xml\"><securecookie host=\"^.*\\.traffixmaxx\\.de$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trail of Bits.com\" f=\"Trail_of_Bits.com.xml\"><securecookie host=\"^\\.trailofbits\\.com$\" name=\".+\"/><rule from=\"^http://trailofbits\\.com/\" to=\"https://www.trailofbits.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Training Industry.com\" f=\"Training_Industry.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Traintimes.org.uk\" f=\"Traintimes.org.uk.xml\"><securecookie host=\"^(www\\.)?traintimes\\.org\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trakehner-nord-west.de\" f=\"Trakehner-nord-west.de.xml\"><securecookie host=\"^(www\\.)?trakehner-nord-west\\.de$\" name=\".*\"/><rule from=\"^http://(www\\.)?trakehner-nord-west\\.de/\" to=\"https://www.trakehner-nord-west.de/\"/></ruleset>", "<ruleset name=\"TransIP.nl\" f=\"TransIP.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trans Marine\" default_off=\"failed ruleset test\" f=\"Trans_Marine.xml\"><securecookie host=\"^(?:www)?\\.transmarine\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Transact Auto\" default_off=\"connection reset\" f=\"Transact_Auto.xml\"><rule from=\"^http://(?:www\\.)?transactauto\\.com/\" to=\"https://transactauto.com/\"/></ruleset>", "<ruleset name=\"Transbuddhists.org\" f=\"Transbuddhists.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Transcend.org\" f=\"Transcend.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TransferWise.com (partial)\" f=\"TransferWise.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^_gat?$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"transformationmadeeasy.com (partial)\" f=\"Transformationmadeeasy.com.xml\"><rule from=\"^http://(?:www\\.)?(?:ask-inc|transformationmadeeasy)\\.com/\" to=\"https://www.transformationmadeeasy.com/\"/></ruleset>", "<ruleset name=\"Transformative Works.org (mismatched)\" default_off=\"mismatched\" f=\"Transformative_Works.org-problematic.xml\"><rule from=\"^http://elections\\.transformativeworks\\.org/\" to=\"https://elections.transformativeworks.org/\"/></ruleset>", "<ruleset name=\"Transformative Works.org (partial)\" default_off=\"failed ruleset test\" f=\"Transformative_Works.org.xml\"><rule from=\"^http://(?:www\\.)?transformativeworks\\.org/\" to=\"https://transformativeworks.org/\"/></ruleset>", "<ruleset name=\"Transifex.net (expired)\" default_off=\"expired\" f=\"Transifex.net.xml\"><rule from=\"^http://(?:www\\.)?transifex\\.net/\" to=\"https://www.transifex.net/\"/></ruleset>", "<ruleset name=\"Transifex.com (partial)\" f=\"Transifex.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://status\\.transifex\\.com/\" to=\"https://transifex.statuspage.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Transit.land\" f=\"Transit.land.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TransitionNetwork.org\" f=\"TransitionNetwork.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TranslateThi.is (partial)\" default_off=\"failed ruleset test\" f=\"TranslateThi.is.xml\"><rule from=\"^http://x\\.translateth\\.is/\" to=\"https://s3.amazonaws.com/x.translateth.is/\"/></ruleset>", "<ruleset name=\"Translatewiki.net\" f=\"Translatewiki.net.xml\"><rule from=\"^http://(?:www\\.)?translatewiki\\.net/\" to=\"https://translatewiki.net/\"/></ruleset>", "<ruleset name=\"Translation Project.org\" f=\"Translation_Project.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Translatoruser.net\" f=\"Translatoruser.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Translink\" f=\"Translink.xml\"><securecookie host=\"^w*\\.translink.co.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?translink\\.co\\.uk/\" to=\"https://www.translink.co.uk/\"/></ruleset>", "<ruleset name=\"Transmission BT.com\" f=\"Transmission.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Transmode.se\" default_off=\"failed ruleset test\" f=\"Transmode.se.xml\"><rule from=\"^http://(?:www\\.)?transmode\\.se/+\" to=\"https://www.transmode.com/\"/><rule from=\"^http://tac\\.transmode\\.org/\" to=\"https://tac.transmode.org/\"/></ruleset>", "<ruleset name=\"Transmode\" default_off=\"failed ruleset test\" f=\"Transmode.xml\"><securecookie host=\"^(?:.*\\.)?transmode\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Transparency.org\" f=\"Transparency.org.xml\"><securecookie host=\"^www\\.transparency\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Transparency Toolkit.org\" default_off=\"failed ruleset test\" f=\"Transparency_Toolkit.org.xml\"><securecookie host=\"^\\.transparencytoolkit\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TfL.gov.uk (partial)\" f=\"Transport_for_London.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Transportation.gov\" f=\"Transportation.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Transportstyrelsen.se\" platform=\"mixedcontent\" f=\"Transportstyrelsen.se.xml\"><rule from=\"^http://www\\.transportstyrelsen\\.se/\" to=\"https://www.transportstyrelsen.se/\"/><rule from=\"^http://transportstyrelsen\\.se/\" to=\"https://transportstyrelsen.se/\"/></ruleset>", "<ruleset name=\"Transversal.com\" f=\"Transversal.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trash-Mail.com\" f=\"Trash-Mail.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"trash.net (partial)\" f=\"Trash.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trashmail\" f=\"Trashmail.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trauer.de\" f=\"Trauer.de.xml\"><rule from=\"^http://(?:www\\.)?trauer\\.de/\" to=\"https://www.trauer.de/\"/><rule from=\"^http://forum\\.trauer\\.de/\" to=\"https://forum.trauer.de/\"/></ruleset>", "<ruleset name=\"TravelBlog\" f=\"TravelBlog.xml\"><securecookie host=\"^.*\\.?travelblog\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Travel Doctor\" f=\"TravelDoctor.xml\"><rule from=\"^http://(?:www\\.)?traveldoctor\\.com\\.au/\" to=\"https://www.traveldoctor.com.au/\"/></ruleset>", "<ruleset name=\"TravelNow.com (partial)\" default_off=\"failed ruleset test\" f=\"TravelNow.xml\"><exclusion pattern=\"^http://(?:www\\.)?travelnow\\.com/(?!.+\\.(?:JPG|css|gif|ico|png)(?:$|\\?))\"/><securecookie host=\"^\\.travelnow\\.com$\" name=\"^(?:ServerPool|TACds|TASession|TAUnique)$\"/><securecookie host=\"^\\.www\\.travelnow\\.com$\" name=\"^TASSK$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TravelPod (partial)\" f=\"TravelPod.xml\"><rule from=\"^http://images\\.travelpod\\.com/(?!cgi-bin/|users/)\" to=\"https://images.travelpod.com/\"/></ruleset>", "<ruleset name=\"Travel Plan\" default_off=\"failed ruleset test\" f=\"Travel_Plan.xml\"><securecookie host=\"^(?:www\\.)?travelplan\\.gr$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Travel Republic (partial)\" f=\"Travel_Republic.xml\"><securecookie host=\"^(?:m|www)?\\.travelrepublic\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://blog\\.travelrepublic\\.co\\.uk/\" to=\"https://www.travelrepublic.co.uk/blog/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Travelingnuker.com (partial)\" f=\"Travelingnuker.com.xml\"><securecookie host=\"^(?:www)?\\.travelingnuker\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?travelingnuker\\.com/\" to=\"https://www.travelingnuker.com/\"/></ruleset>", "<ruleset name=\"Travelmarket.com (partial)\" default_off=\"failed ruleset test\" f=\"Travelmarket.com.xml\"><securecookie host=\"^tmcomponents\\.travelmarket\\.com$\" name=\".+\"/><rule from=\"^http://tmcomponents\\.travelmarket\\.com/\" to=\"https://tmcomponents.travelmarket.com/\"/></ruleset>", "<ruleset name=\"Travelocity\" default_off=\"failed ruleset test\" f=\"Travelocity.xml\"><securecookie host=\"^www\\.travelocity\\.(com|ca)$\" name=\".+\"/><rule from=\"^http://travelocity\\.(com|ca)/\" to=\"https://www.travelocity.$1/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"travelspecialistsite.com\" default_off=\"missing certificate chain\" f=\"Travelspecialistsite.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Travelzoo.com (partial)\" f=\"Travelzoo.com.xml\"><securecookie host=\"^ssl\\.travelzoo\\.com$\" name=\".+\"/><rule from=\"^http://(?:ssl\\.|www\\.)?travelzoo\\.com/\" to=\"https://ssl.travelzoo.com/\"/><rule from=\"^http://oascentral\\.travelzoo\\.com/\" to=\"https://oasc06.247realmedia.com/\"/><rule from=\"^http://(?:cache\\.travelzoo|(?:ssl|www)\\.tzoo-img)\\.com/\" to=\"https://ssl.tzoo-img.com/\"/></ruleset>", "<ruleset name=\"Travis-CI.org\" f=\"Travis_CI.xml\"><rule from=\"^http://www\\.travis-ci\\.org/\" to=\"https://travis-ci.org/\"/><rule from=\"^http://www\\.travis-ci\\.com/\" to=\"https://travis-ci.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Traviscistatus.com\" f=\"Traviscistatus.com.xml\"><rule from=\"^http://traviscistatus\\.com/\" to=\"https://www.traviscistatus.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"traxarmstrong.com\" default_off=\"failed ruleset test\" f=\"Traxarmstrong.com.xml\"><rule from=\"^http://(?:www\\.)?traxarmstrong\\.com/\" to=\"https://traxarmstrong.com/\"/></ruleset>", "<ruleset name=\"Treasury.gov (partial)\" default_off=\"failed ruleset test\" f=\"Treasury.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://treasury\\.gov/\" to=\"https://www.treasury.gov/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TreasuryDirect.gov\" f=\"Treasurydirect.gov.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TreeHouse I.com\" f=\"TreeHouse_I.com.xml\"><securecookie host=\"^(?:mv|www)\\.treehousei\\.com$\" name=\".+\"/><rule from=\"^http://treehousei\\.com/\" to=\"https://www.treehousei.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trefis\" f=\"Trefis.xml\"><securecookie host=\"^www\\.trefis\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?trefis\\.com/\" to=\"https://www.trefis.com/\"/><rule from=\"^http://cdn\\.trefis\\.com/\" to=\"https://cdn.trefis.com/\"/></ruleset>", "<ruleset name=\"Trekaroo (partial)\" f=\"Trekaroo.xml\"><exclusion pattern=\"^http://(?:www\\.)?trekaroo\\.com/(?!img/|images/|photos/|stylesheets/)\"/><rule from=\"^http://(?:cdn[12]\\.|www\\.)?trekaroo\\.com/\" to=\"https://www.trekaroo.com/\"/></ruleset>", "<ruleset name=\"Trellian (partial)\" f=\"Trellian.xml\"><rule from=\"^http://(?:www\\.)?trellian\\.com/\" to=\"https://www.trellian.com/\"/><rule from=\"^http://bid\\.trellian\\.com/(\\?.*)?$\" to=\"https://www.trellian.com/dsn/index.html$1\"/></ruleset>", "<ruleset name=\"Trello.com\" f=\"Trello.xml\"><securecookie host=\"^(?:www\\.)?trello\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tremor Video.com (partial)\" f=\"Tremor_Video.com.xml\"><rule from=\"^http://investor\\.tremorvideo\\.com/(modul|sit)es/\" to=\"https://tremorvideo.investorhq.businesswire.com/$1es/\"/></ruleset>", "<ruleset name=\"TrendWeight\" f=\"TrendWeight.xml\"><securecookie host=\"^(?:w*\\.)?trendweight\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trend Micro.com (false MCB)\" platform=\"mixedcontent\" f=\"Trend_Micro-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trend Micro.eu (false MCB)\" platform=\"mixedcontent\" f=\"Trend_Micro-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trend Micro.de\" default_off=\"mismatched\" platform=\"mixedcontent\" f=\"Trend_Micro.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trend Micro.eu (partial)\" f=\"Trend_Micro.eu.xml\"><exclusion pattern=\"^http://countermeasures\\.trendmicro\\.eu/+(?!favicon\\.ico|wp-content/)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trend Micro.com (partial)\" f=\"Trend_Micro.xml\"><exclusion pattern=\"^http://blog\\.trendmicro\\.com/(?![\\w-]+/files/|wp-content/)\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http://feeds\\.trendmicro\\.com/\" to=\"https://feeds.feedburner.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trendin.com\" f=\"Trendin.com.xml\"><securecookie host=\"^(?:www)?\\.trendin\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trey Perry.com\" f=\"Trey_Perry.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"trgt.eu\" default_off=\"failed ruleset test\" f=\"Trgt.eu.xml\"><rule from=\"^http://cdn\\.trgt\\.eu/\" to=\"https://cdn.trgt.eu/\"/></ruleset>", "<ruleset name=\"Tri-CUE\" default_off=\"expired\" f=\"Tri-CUE.xml\"><securecookie host=\"^www\\.tricue\\.com$\" name=\".+\"/><rule from=\"^http://www\\.tricue\\.com/\" to=\"https://www.tricue.com/\"/></ruleset>", "<ruleset name=\"TriDeci\" f=\"TriDeci.xml\"><securecookie host=\"^(?:www\\.)?trideci\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TrialFunder.com\" f=\"TrialFunder.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TrialPay (partial)\" platform=\"mixedcontent\" f=\"TrialPay.xml\"><exclusion pattern=\"^http://(?:www\\.)?trialpay\\.com/productpage/\"/><rule from=\"^http://(?:www\\.)?trialpay\\.com/\" to=\"https://www.trialpay.com/\"/><rule from=\"^http://assets\\.trialpay\\.com/\" to=\"https://d2n8p8eh14pae1.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Tribal Fusion.com\" f=\"Tribal_Fusion.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://tribalfusion\\.com/\" to=\"https://www.tribalfusion.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tribalhosting.net\" f=\"Tribalhosting.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tribeca Film.com\" f=\"Tribeca_Film.com.xml\"><securecookie host=\"^tribecafilm\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tribeca Film Institute.org\" f=\"Tribeca_Film_Institute.org.xml\"><securecookie host=\"^tribecafilminstitute\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tribecastudios.co.uk\" f=\"Tribecastudios.co.uk.xml\"><rule from=\"^http://(www\\.)?tribecastudios\\.co\\.uk/\" to=\"https://www.tribecastudios.co.uk/\"/></ruleset>", "<ruleset name=\"Tribler\" f=\"Tribler.org.xml\"><securecookie host=\"^www\\.tribler\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tribune (mismatches)\" default_off=\"mismatched\" f=\"Tribune-mismatches.xml\"><exclusion pattern=\"^http://(?:www\\.)?latimes\\.com/(?:favicon\\.ico|hive/|images/|includes/|media/|stylesheets/)\"/><rule from=\"^http://(?:www\\.)?baltimoresun\\.com/\" to=\"https://www.baltimoresun.com/\"/><rule from=\"^http://(?:www\\.)?latimes\\.com/\" to=\"https://www.latimes.com/\"/></ruleset>", "<ruleset name=\"Tribune (partial)\" f=\"Tribune.xml\"><exclusion pattern=\"^http://(?:[^./]+\\.){2,}signon\\.trb\\.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tricolumbia.org\" default_off=\"failed ruleset test\" f=\"Tricolumbia.org.xml\"><securecookie host=\"^(?:www)?\\.tricolumbia\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?tricolumbia\\.org/\" to=\"https://www.tricolumbia.org/\"/></ruleset>", "<ruleset name=\"Tridium\" f=\"Tridium.xml\"><securecookie host=\"^www\\.tridium\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?tridium\\.com/\" to=\"https://www.tridium.com/\"/></ruleset>", "<ruleset name=\"Triggit.com (partial)\" default_off=\"failed ruleset test\" f=\"Triggit.com.xml\"><securecookie host=\"^\\.\" name=\"^trg[psu]$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trillian.im (partial)\" f=\"Trillian.im.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trinity-look.org\" f=\"Trinity-look.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trinity College Dublin (partial)\" f=\"Trinity_College_Dublin.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trinity Foundation\" f=\"Trinity_Foundation.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trinity Home.org\" default_off=\"self-signed\" f=\"Trinity_Home.org.xml\"><securecookie host=\"^(?:www\\.)?trinityhome\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?trinityhome\\.org/\" to=\"https://trinityhome.org/\"/></ruleset>", "<ruleset name=\"Triodos.com\" f=\"Triodos.com.xml\"><securecookie host=\"^projects.triodos.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Triodos.nl (partial)\" f=\"Triodos.nl.xml\"><securecookie host=\"^bankieren\\.triodos\\.nl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TripAdvisor.com (partial)\" f=\"TripAdvisor.xml\"><exclusion pattern=\"^http://(?:cdn\\.|www\\.)?tripadvisor\\.com/(?!/*(?:favicon\\.ico|img2?/|(?:Amex|GreenLeaders|Owners|Registration|RegistrationPage|ReviewExpress|TripAdvisorInsights|UserReview)(?:-[^/]*)?(?:$|\\?)|TripAdvisorInsights/|pages/privacy\\.html))\"/><securecookie host=\"^\\.tripadvisor\\.com$\" name=\"^(?:ServerPool|TACds|TASession|TAUnique)$\"/><securecookie host=\"^(?!www\\.)\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TripHip\" default_off=\"failed ruleset test\" f=\"TripHip.xml\"><securecookie host=\"^(?:www)?\\.triphip\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TripIt.com\" f=\"TripIt.com.xml\"><securecookie host=\"^(?:careers\\.|www\\.)?tripit\\.com$\" name=\".+\"/><rule from=\"^http://(careers\\.|www\\.)?tripit\\.com/\" to=\"https://$1tripit.com/\"/><rule from=\"^http://help\\.tripit\\.com/\" to=\"https://tripit.zendesk.com/\"/></ruleset>", "<ruleset name=\"tripbod.com (partial)\" f=\"Tripbod.com.xml\"><rule from=\"^http://(www\\.)?tripbod\\.com/(?=(?:\\w\\w/)?beatripbod(?:$|[?/])|favicon\\.ico|img/|js/|min/)\" to=\"https://$1tripbod.com/\"/></ruleset>", "<ruleset name=\"TripleMint.com (partial)\" f=\"TripleMint.com.xml\"><securecookie host=\"^(?:www\\.)?triplemint\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Triplebyte.com (partial)\" f=\"Triplebyte.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tripodo.de (partial)\" f=\"Tripodo.de.xml\"><exclusion pattern=\"^http://(?:www\\.)?tripodo\\.de/+(?!photo/|photo_\\d+_\\w\\.jpg)\"/><rule from=\"^http://(?:www\\.)?tripodo\\.de/\" to=\"https://www.tripodo.de/\"/><rule from=\"^http://bilder-cdn\\.tripodo\\.de/\" to=\"https://d3n4h69ermngjr.cloudfront.net/\"/><rule from=\"^http://static\\.tripodo\\.de/\" to=\"https://d3jjs8jj56ow4v.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Tripwell.com\" default_off=\"failed ruleset test\" f=\"Tripwell.com.xml\"><securecookie host=\"^\\.tripwell\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tripwire.com (false MCB)\" platform=\"mixedcontent\" f=\"Tripwire.com-falsemixed.xml\"><securecookie host=\"^www\\.tripwire\\.com$\" name=\".+\"/><rule from=\"^http://tripwire\\.com/\" to=\"https://www.tripwire.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tripwire.com (partial)\" f=\"Tripwire.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?tripwire\\.com/+state-of-security(?!/wp-content/|wp-includes/)\"/><securecookie host=\"^www\\.tripwire\\.com$\" name=\".+\"/><rule from=\"^http://tripwire\\.com/\" to=\"https://www.tripwire.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trisquel.info (partial)\" f=\"Trisquel.info.xml\"><securecookie host=\"^(?:devel)?\\.trisquel\\.info$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Triumph-Adler.de\" f=\"Triumph-Adler.de.xml\"><rule from=\"^http://(?:www\\.)?triumph-adler\\.de/\" to=\"https://www.triumph-adler.de/\"/></ruleset>", "<ruleset name=\"trkclk.net\" f=\"Trkclk.net.xml\"><rule from=\"^http://ads\\.trkclk\\.net/\" to=\"https://ads.adk2.com/\"/><rule from=\"^http://cdn\\.trkclk\\.net/\" to=\"https://d3vg9hiogk70qz.cloudfront.net/\"/></ruleset>", "<ruleset name=\"trklnks.com\" f=\"Trklnks.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://trklnks\\.com/\" to=\"https://engine.trklnks.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trmm.net\" f=\"Trmm.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trolling Effects.org\" f=\"Trolling_Effects.org.xml\"><rule from=\"^http://(?:www\\.)?trollingeffects\\.org/\" to=\"https://trollingeffects.org/\"/></ruleset>", "<ruleset name=\"Tronix Computers.com\" f=\"Tronix_Computers.com.xml\"><securecookie host=\"^(?:www\\.)?tronixcomputers\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Troopers.de\" f=\"Troopers.de.xml\"><rule from=\"^http://(?:www\\.)?troopers\\.de/\" to=\"https://www.troopers.de/\"/></ruleset>", "<ruleset name=\"Tropo (partial)\" f=\"Tropo.xml\"><securecookie host=\"^(www\\.|blog\\.)?tropo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tros.nl\" default_off=\"failed ruleset test\" f=\"Tros.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trove.com (partial)\" default_off=\"failed ruleset test\" f=\"Trove.com.xml\"><securecookie host=\"^(?:id)?\\.trove\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TruckingUnlimited.com (partial)\" default_off=\"failed ruleset test\" f=\"TruckingUnlimited.com.xml\"><rule from=\"^http://static\\.truckingunlimited\\.com/\" to=\"https://www.truckingunlimited.com/\"/></ruleset>", "<ruleset name=\"TrueCrypt.ch\" f=\"TrueCrypt.ch.xml\"><securecookie host=\"^forum\\.truecrypt\\.ch$\" name=\".+\"/><rule from=\"^http://(?:((?:download|forum|wdc)\\.)|www\\.)?truecrypt\\.ch/\" to=\"https://$1truecrypt.ch/\"/></ruleset>", "<ruleset name=\"TrueCrypt 71a.com\" f=\"TrueCrypt_71a.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TrueLife.com (expired)\" default_off=\"expired\" f=\"TrueLife.com-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TrueLife.com (partial)\" f=\"TrueLife.com.xml\"><exclusion pattern=\"^http://(?:home\\.|www\\.)?truelife\\.com/+(?!assets/|streaming_now/|youtube/)\"/><rule from=\"^http://truelife\\.com/\" to=\"https://www.truelife.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TrueVault.com\" f=\"TrueVault.com.xml\"><rule from=\"^http://((?:api|console|www)\\.)?truevault\\.com/\" to=\"https://$1truevault.com/\"/></ruleset>", "<ruleset name=\"Trueachievements.com\" f=\"Trueachievements.com.xml\"><rule from=\"^http://(?:www\\.)?trueachievements\\.com/\" to=\"https://www.trueachievements.com/\"/></ruleset>", "<ruleset name=\"Truefactor.io\" default_off=\"failed ruleset test\" f=\"Truefactor.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Truehits.in.th (partial)\" f=\"Truehits.in.th.xml\"><rule from=\"^http://(?:hits|lvs)\\.truehits\\.in\\.th/\" to=\"https://lvs.truehits.in.th/\"/></ruleset>", "<ruleset name=\"truenudists.com\" default_off=\"failed ruleset test\" f=\"Truenudists.com.xml\"><securecookie host=\"^cdncss-socialcomediallc\\.netdna-ssl\\.com$\" name=\".*\"/><securecookie host=\"^www\\.truenudists\\.com$\" name=\".*\"/><rule from=\"^http://(www\\.)?truenudists\\.com/\" to=\"https://$1truenudists.com/\"/><rule from=\"^http://cdn\\.css\\.truenudists\\.com/\" to=\"https://cdncss-socialcomediallc.netdna-ssl.com/\"/><rule from=\"^http://cdn\\.image\\.truenudists\\.com/\" to=\"https://cdnimg-socialcomediallc.netdna-ssl.com/\"/></ruleset>", "<ruleset name=\"trulia-cdn.com\" f=\"Trulia-cdn.com.xml\"><rule from=\"^http://(css|static)\\.trulia-cdn\\.com/\" to=\"https://$1.trulia-cdn.com/\"/></ruleset>", "<ruleset name=\"Trumba\" f=\"Trumba.xml\"><securecookie host=\"^www\\.trumba\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?trumba\\.com/\" to=\"https://www.trumba.com/\"/></ruleset>", "<ruleset name=\"Trumpia.com\" f=\"Trumpia.com.xml\"><securecookie host=\"^(?:www\\.)?trumpia\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trust-Guard.com (partial)\" f=\"Trust-Guard.com.xml\"><exclusion pattern=\"^http://www\\.trust-guard\\.com/+(?!CSS/|favicon\\.ico|Images/|Other/|Scripts/|Templates/)\"/><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^(?:members|secure)\\.trust-guard\\.com$\" name=\".\"/><rule from=\"^http://seals\\.trust-guard\\.com/\" to=\"https://c674753.ssl.cf2.rackcdn.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trust-IT.gr\" f=\"Trust-IT.gr.xml\"><securecookie host=\"^(?:www)?\\.trust-it\\.gr$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TrustKeeper.net\" default_off=\"failed ruleset test\" f=\"TrustKeeper.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TrustSign.com.br\" default_off=\"failed ruleset test\" f=\"TrustSign.com.br.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TrustTheVote.org\" f=\"TrustTheVote.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://w(?:iki|ordpress2)\\.trustthevote\\.org/\" to=\"https://2014.wooconf.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trust Dale.com (partial)\" f=\"Trust_Dale.com.xml\"><rule from=\"^http://static\\.trustdale\\.com/\" to=\"https://d25v41r9zzznmn.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Trusted-Introducer.org\" f=\"Trusted-Introducer.org.xml\"><rule from=\"^http://trusted-introducer\\.org/\" to=\"https://www.trusted-introducer.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trusted Shops (partial)\" f=\"Trusted-Shops.xml\"><rule from=\"^http://(?:www\\.)?trustedshops\\.(at|ch|com|co\\.uk|de|es|fr|pl)/(?=assets/|b2c_int/|bewertung/|cms/assets/|merchants/(?:$|\\?)|shoplogo/|\\w\\w/(?:buyer/login\\.html|shop/))\" to=\"https://www.trustedshops.$1/\"/><rule from=\"^http://static\\.trustedshops\\.com/\" to=\"https://static.trustedshops.com/\"/></ruleset>", "<ruleset name=\"TrustedMessenger.com\" f=\"TrustedMessenger.com.xml\"><securecookie host=\"^(?:www)?\\.trustedmessenger\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TrustedSec.com\" f=\"TrustedSec.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trusted CS.com\" default_off=\"failed ruleset test\" f=\"Trusted_CS.com.xml\"><rule from=\"^http://(?:www\\.)?trustedcs\\.com/\" to=\"https://www.trustedcs.com/\"/></ruleset>", "<ruleset name=\"Trusted Computing Group.org\" f=\"Trusted_Computing_Group.xml\"><securecookie host=\"^(?:www)?\\.trustedcomputinggroup\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trusted Reviews (partial)\" f=\"Trusted_Reviews.xml\"><exclusion pattern=\"^http://(?:www\\.)?trustedreviews\\.com/(?!css/)\"/><rule from=\"^http://(?:secure\\.|www\\.)?trustedreviews\\.com/\" to=\"https://secure.trustedreviews.com/\"/></ruleset>", "<ruleset name=\"Trusteer.com (partial)\" f=\"Trusteer.com.xml\"><rule from=\"^http://trusteer\\.com/\" to=\"https://www.trusteer.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trustico.com (partial)\" f=\"Trustico.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trustifier.com\" f=\"Trustifier.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trustly.com\" f=\"Trustly.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trustly.se\" f=\"Trustly.se.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trustpilot.com\" f=\"Trustpilot.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trustwave.com (partial)\" f=\"Trustwave.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trustworthy Internet.org\" f=\"Trustworthy-Internet-Movement.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Truth in Advertising\" f=\"Truth_in_Advertising.xml\"><securecookie host=\"^(?:www\\.)?truthinadvertising\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Truthdig.com\" platform=\"mixedcontent\" f=\"Truthdig.xml\"><securecookie host=\"^(?:.*\\.)?truthdig\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Try Celery.com\" f=\"Try_Celery.com.xml\"><securecookie host=\"^(?:www\\.)?trycelery\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Try Haskell.org\" f=\"Try_Haskell.org.xml\"><securecookie host=\"^\\.tryhaskell\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Try Superb Green Coffee.com\" default_off=\"failed ruleset test\" f=\"Try_Superb_Green_Coffee.com.xml\"><securecookie host=\"^(?:w*\\.)?trysuperbgreencoffee.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"try Zen99.com\" default_off=\"failed ruleset test\" f=\"Try_Zen99.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trygghansa.se\" platform=\"mixedcontent\" f=\"Trygghansa.se.xml\"><rule from=\"^http://(?:www\\.)?trygghansa\\.se/\" to=\"https://www.trygghansa.se/\"/></ruleset>", "<ruleset name=\"tsgstatic.com (partial)\" f=\"Tsgstatic.com.xml\"><rule from=\"^http://[a-c]\\.tsgstatic\\.com/\" to=\"https://d25jbto4vhnqrd.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Tspr.ng\" f=\"Tspr.ng.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ttk.ru\" f=\"Ttk.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TuXingSun.net\" default_off=\"failed ruleset test\" f=\"TuXingSun.net.xml\"><securecookie host=\"^(?:www\\.)?tuxingsun\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tuakiri.ac.nz (partial)\" f=\"Tuakiri.ac.nz.xml\"><securecookie host=\"^(?:directory\\.|www\\.)?tuakiri\\.ac.nz$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tube4.me\" default_off=\"failed ruleset test\" f=\"Tube4.me.xml\"><securecookie host=\"^\\.tube4\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TubeMogul.com (partial)\" f=\"TubeMogul.com.xml\"><securecookie host=\"^\\.tubemogul\\.com$\" name=\".+\"/><rule from=\"^http://cdn\\.tubemogul\\.com/\" to=\"https://ne1.wpc.edgecastcdn.net/001500/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TubeOffline.com\" default_off=\"redirects to http\" f=\"TubeOffline.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?tubeoffline\\.com/(?:$|Contact-Pop/|images/|styles1\\.css)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tucows (mismatches)\" default_off=\"mismatched\" platform=\"mixedcontent\" f=\"Tucows-mismatches.xml\"><rule from=\"^http://(www\\.)?(ispbilling|tucowsinc|yummynames)\\.com/\" to=\"https://$2.com/\"/><rule from=\"^http://forums\\.ispbilling\\.com/\" to=\"https://forums.ispbilling.com/\"/><rule from=\"^http://www\\.opensrs\\.com/blog([\\w/\\-]*)/$\" to=\"https://www.opensrs.com/blog$1/\"/><rule from=\"^http://(?:www\\.)?tucowsdomains\\.com/\" to=\"https://www.tucowsdomains.com/\"/></ruleset>", "<ruleset name=\"Tucows (partial)\" default_off=\"failed ruleset test\" f=\"Tucows.xml\"><rule from=\"^http://(?:www\\.)?contactprivacy\\.com/\" to=\"https://rr-n1-tor.opensrs.net/wp_mailer/\"/><rule from=\"^http://support\\.ispbilling\\.com/\" to=\"https://support.ispbilling.com/\"/></ruleset>", "<ruleset name=\"Tudouui.com\" f=\"Tudouui.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tufts.edu (partial)\" f=\"Tufts.edu.xml\"><exclusion pattern=\"^http://(?:directory|whitepages)\\.tufts\\.edu/+(?!css/|favicon\\.ico|images/|main\\.css)\"/><securecookie host=\"^(?:ase|exchange|library|m|medicine|webapps\\.moit|trunk|(?:infoboard-updates|isis)\\.uit)\\.tufts\\.edu$\" name=\".+\"/><rule from=\"^http://medical\\.alumni\\.tufts\\.edu/+\" to=\"https://medicine.tufts.edu/Who-We-Are/Alumnia/\"/><rule from=\"^http://(ase|exchange|it|(?:illiad\\.|www\\.)?library|m|medicine|webapps\\.moit|now|sites|trunk|(?:ests01|infoboard-updates|isis|wikis)\\.uit|whitepages)\\.tufts\\.edu/\" to=\"https://$1.tufts.edu/\"/><rule from=\"^http://directory\\.tufts\\.edu/\" to=\"https://whitepages.tufts.edu/\"/><rule from=\"^http://researchguides\\.library\\.tufts\\.edu/(?=css\\d*/|data/|favicon\\.ico|images/|include/|js\\d*/)\" to=\"https://libguides.com/\"/><rule from=\"^http://uit\\.tufts\\.edu/+\\??$\" to=\"https://it.tufts.edu/\"/></ruleset>", "<ruleset name=\"Tufts Giving.org\" f=\"Tufts_Giving.org.xml\"><rule from=\"^http://(?:www\\.)?tuftsgiving\\.org/\" to=\"https://tuftsgiving.org/\"/></ruleset>", "<ruleset name=\"Tufts Medical Center.org (partial)\" f=\"Tufts_Medical_Center.org.xml\"><securecookie host=\"^www\\.tuftsmedicalcenter\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?tuftsmedicalcenter\\.org/\" to=\"https://www.tuftsmedicalcenter.org/\"/></ruleset>", "<ruleset name=\"Tugg.com (partial)\" f=\"Tugg.com.xml\"><securecookie host=\"^\\.tugg\\.com$\" name=\"^__utm\\w$\"/><rule from=\"^http://(?:www\\.)?tugg\\.com/(assets|system)/\" to=\"https://www.tugg.com/$1/\"/></ruleset>", "<ruleset name=\"Tuleap.net (partial)\" f=\"Tuleap.net.xml\"><securecookie host=\"^(?:www\\.)?tuleap\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tuleap.org\" f=\"Tuleap.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tum.de\" f=\"Tum.de.xml\"><rule from=\"^http://(?:www\\.)?tum\\.de/\" to=\"https://www.tum.de/\"/></ruleset>", "<ruleset name=\"Tumblr.com blogs (partial)\" f=\"Tumblr.com_blogs.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tumblr.com (partial)\" f=\"Tumblr.xml\"><securecookie host=\"^(?:secure\\.assets|www)\\.tumblr\\.com$\" name=\"^__utmf$\"/><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\.srvcs\\.tumblr\\.com$\" name=\".\"/><securecookie host=\"^www\\.tumblr\\.com$\" name=\"^d(?:evicePixelRatio|ocumentWidth)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tumri.net\" default_off=\"failed ruleset test\" f=\"Tumri.net.xml\"><securecookie host=\"^\\.tumri\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tune.pk\" f=\"Tune.pk.xml\"><securecookie host=\"^(?:\\.|www\\.)?tune\\.pk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tunespeak.com\" f=\"Tunespeak.com.xml\"><securecookie host=\"^\\.(?:staging|tune)speak\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?(staging|tune)speak\\.com/\" to=\"https://$1$2speak.com/\"/></ruleset>", "<ruleset name=\"Tuning World\" f=\"Tuning_World.xml\"><securecookie host=\"^(?:www\\.)?tuningworld\\.com\\.au$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tunisia-Sat\" f=\"Tunisia-Sat.xml\"><securecookie host=\"^\\.tunisia-sat\\.com(?:\\.tn)?$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TunnelBear\" f=\"TunnelBear.xml\"><rule from=\"^http://(?:www\\.)?tunnelbear\\.com/\" to=\"https://www.tunnelbear.com/\"/></ruleset>", "<ruleset name=\"HE Tunnel Broker\" default_off=\"failed ruleset test\" f=\"TunnelBroker.xml\"><securecookie host=\"^(?:.*\\.)?tunnelbroker\\.net$\" name=\".+\"/><rule from=\"^http://(\\w+\\.)?tunnelbroker\\.(?:com|net)/\" to=\"https://$1tunnelbroker.net/\"/></ruleset>", "<ruleset name=\"Turbine.com\" f=\"Turbine.com.xml\"><securecookie host=\"^\\.trial\\.turbine\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TurboSquid (partial)\" f=\"TurboSquid.xml\"><exclusion pattern=\"^http://support\\.turbosquid\\.com/(?!generated/)\"/><securecookie host=\"^\\.(?:www\\.)?turbosquid\\.com$\" name=\".+\"/><rule from=\"^http://(support\\.|www\\.)?turbosquid\\.com/\" to=\"https://$1turbosquid.com/\"/><rule from=\"^http://sitefiles\\.turbosquid\\.com/\" to=\"https://d3vuj04fwiko4o.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Turbobytes.com (partial)\" f=\"Turbobytes.com.xml\"><securecookie host=\"^my\\.turbobytes\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Turbobytes.net\" default_off=\"failed ruleset test\" f=\"Turbobytes.net.xml\"><rule from=\"^http://az\\.turbobytes\\.net/\" to=\"https://az.turbobytes.net/\"/></ruleset>", "<ruleset name=\"TurkTK.com\" default_off=\"expired\" f=\"TurkTK.com.xml\"><securecookie host=\"^turktk\\.com$\" name=\".+\"/><rule from=\"^http://www\\.turktk\\.com/\" to=\"https://turktk.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Turn.com (partial)\" default_off=\"failed ruleset test\" f=\"Turn.com.xml\"><securecookie host=\"^\\.turn\\.com$\" name=\"^uid$\"/><rule from=\"^http://turn\\.com/\" to=\"https://www.turn.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TurnKey Linux.org\" f=\"TurnKey_Linux.org.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TurnTo.com\" f=\"TurnTo.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TurnToNetworks.com\" f=\"TurnToNetworks.com.xml\"><rule from=\"^http://(www2\\.)?turntonetworks\\.com/\" to=\"https://www.turntonetworks.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Turn Game Studios\" f=\"Turn_Game_Studios.xml\"><securecookie host=\"^\\.turngs\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Turn On Social.com\" default_off=\"failed ruleset test\" f=\"Turn_On_Social.xml\"><exclusion pattern=\"^http://(?!(?:1stbergen\\.|cdn-[^.]+\\.|www\\.)?turnonsocial\\.com/)\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http://cdn-[^.]+\\.turnonsocial\\.com/\" to=\"https://turnonsocial.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Turner.com (partial)\" default_off=\"Needs ruleset tests\" f=\"Turner.com.xml\"><exclusion pattern=\"^http://(?:i\\d?|s|z)\\.cdn\\.turner\\.com/.*(?:crossdomain\\.xml|\\.swf)(?:$|\\?)\"/><rule from=\"^http://(?:i\\d?|s|z)\\.cdn\\.turner\\.com/\" to=\"https://s.cdn.turner.com/\"/></ruleset>", "<ruleset name=\"Turris.cz\" f=\"Turris.cz.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Turtl.it\" f=\"Turtl.it.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Turtlebeach\" f=\"Turtlebeach.xml\"><rule from=\"^http://(support|www)\\.turtlebeach\\.com/\" to=\"https://$1.turtlebeach.com/\"/></ruleset>", "<ruleset name=\"TusFiles.net\" default_off=\"failed ruleset test\" f=\"TusFiles.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tutanota.com\" f=\"Tutanota.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tutanota.de\" default_off=\"failed ruleset test\" f=\"Tutanota.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tutor.com (partial)\" default_off=\"failed ruleset test\" f=\"Tutor.com.xml\"><rule from=\"^http://(?:www\\.)?tutor\\.com/(contact-forms/|favicon\\.ico|get-started(?:$|[?/])|images/|(?:Script|Web)Resource\\.axd|scripts/|styles/)\" to=\"https://www.tutor.com/$1\"/><rule from=\"^http://media\\.tutor\\.com/\" to=\"https://media.tutor.com/\"/></ruleset>", "<ruleset name=\"Tutorialspoint (partial)\" f=\"Tutorialspoint.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TutsPlus.com (partial)\" f=\"TutsPlus.com.xml\"><exclusion pattern=\"^http://tutsplus\\.com/+(?!favicon\\.ico|sign_(?:in|up)(?:$|[?/]))\"/><exclusion pattern=\"^http://(?:business|code|design)\\.tutsplus\\.com/+(?!favicon\\.ico)\"/><securecookie host=\"^\\.tutsplus\\.com$\" name=\"^__cfduid$\"/><rule from=\"^http://((?:business|cms-assets|code|design|jobs|static|support|www)\\.)?tutsplus\\.com/\" to=\"https://$1tutsplus.com/\"/></ruleset>", "<ruleset name=\"Tuts 4 You.com\" f=\"Tuts_4_You.com.xml\"><securecookie host=\"^\\.(?:forum\\.)?tuts4you\\.com$\" name=\".+\"/><rule from=\"^http://(?:(forum\\.)|www\\.)?tuts4you\\.com/\" to=\"https://$1tuts4you.com/\"/></ruleset>", "<ruleset name=\"Tux.org\" default_off=\"expired\" f=\"Tux.Org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TuxFamily.org (partial)\" default_off=\"failed ruleset test\" f=\"TuxFamily.org.xml\"><exclusion pattern=\"^http://(?:(?!(?:www\\.[^.]+|fr\\.flightgear)\\.tuxfamily\\.org/)(?:[^./]+\\.){2,}|(?:[^./]+\\.){3,}|(?:www\\.)?(?:blenderclan|bugparis|celmir|eigen|feeblemind|ffdiaporama|gimpphoto|ivanlef0u|joliebulle|lebottindesjeuxlinux|lists|non|0vercl0k|phoenixsuite|popaul77|scoretarot|stickyvibe|xcfa)\\.|www\\.flatland\\.)tuxfamily\\.org/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.([^.]+)\\.tuxfamily\\.org/\" to=\"https://$1.tuxfamily.org/\"/><rule from=\"^http://fr\\.flightgear\\.tuxfamily\\.org/\" to=\"https://fr.flightgear.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TuxIC.nl\" f=\"TuxIC.nl.xml\"><securecookie host=\"^(?:www\\.)?tuxic\\.nl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tuxedocomputers.com\" f=\"Tuxedocomputers.com.xml\"><securecookie host=\"^(www.)?tuxedocomputers\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tv-Release\" default_off=\"expired, mismatched, self-signed\" f=\"Tv-Release.xml\"><securecookie host=\"^(?:www\\.)?tv-release\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?tv-release\\.net/\" to=\"https://tv-release.net/\"/></ruleset>", "<ruleset name=\"TvTorrents\" default_off=\"failed ruleset test\" f=\"TvTorrents.xml\"><rule from=\"^http://([^/:@]+)?\\.tvtorrents\\.com/\" to=\"https://$1.tvtorrents.com/\"/></ruleset>", "<ruleset name=\"Tvheadend.org\" f=\"Tvheadend.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tvsupport.net\" f=\"Tvsupport.net.xml\"><securecookie host=\"^(?:help\\.|w*\\.)?tvsupport\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Twattle.net\" f=\"Twattle.net.xml\"><securecookie host=\"^twattle\\.net$\" name=\".+\"/><rule from=\"^http://www\\.twattle\\.net/\" to=\"https://twattle.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TweakHound.com\" f=\"TweakHound.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TweakTown.com (partial)\" f=\"TweakTown.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tweakers.net\" f=\"Tweakers.net.xml\"><exclusion pattern=\"^http://(?:ic\\.tweakimg)\\.net/crossdomain\\.xml$\"/><rule from=\"^http://(?:www\\.)?(ic\\.)?tweakimg\\.net/\" to=\"https://$1tweakimg.net/\"/></ruleset>", "<ruleset name=\"tweegy.nl\" default_off=\"self-signed\" f=\"Tweegy.nl.xml\"><securecookie host=\"^tweegy\\.nl$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?tweegy\\.nl/\" to=\"https://tweegy.nl/\"/></ruleset>", "<ruleset name=\"TweetAdder.com (partial)\" default_off=\"failed ruleset test\" f=\"TweetAdder.com.xml\"><exclusion pattern=\"^http://tweetadder\\.com/(?!\\d{4}/wp-content/|favicon\\.ico|idevaffiliate(?:$|[?/])|wp-content/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TweetDeck.com\" f=\"TweetDeck.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TweetReach.com\" f=\"TweetReach.com.xml\"><securecookie host=\"^\\.tweetreach\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Twenga-Solutions.com (partial)\" f=\"Twenga-Solutions.com.xml\"><exclusion pattern=\"^http://go\\.twenga-solutions\\.com/+(?!l/)\"/><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://go\\.twenga-solutions\\.com/\" to=\"https://pi.pardot.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Twenga.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Twenga.com-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Twenga.com (partial)\" f=\"Twenga.com.xml\"><exclusion pattern=\"^http://blog\\.twenga\\.com/+(?!wp-content/|wp-includes/)\"/><securecookie host=\"^\\.\" name=\"^(?:TW_VISITOR_ID|WSID|twr)\"/><rule from=\"^http://(blog|dynstatic|i\\d+|r)\\.twenga\\.com/\" to=\"https://$1.twenga.com/\"/></ruleset>", "<ruleset name=\"Twilight Laboratories\" default_off=\"mismatch, self-signed\" f=\"Twilight-Laboratories.xml\"><rule from=\"^http://twibright\\.com/\" to=\"https://www.twibright.com/\"/><rule from=\"^http://(\\w+)\\.twibright\\.com/\" to=\"https://$1.twibright.com/\"/></ruleset>", "<ruleset name=\"Twilio.com\" f=\"Twilio.xml\"><securecookie host=\"^\\.?www\\.twilio\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Twimg.com\" default_off=\"failed ruleset test\" f=\"Twimg.com.xml\"><rule from=\"^http://s\\.twimg\\.com/\" to=\"https://d2rdfnizen5apl.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Twimler.com\" f=\"Twimler.com.xml\"><securecookie host=\"^\\.twimler\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Twingly (partial)\" f=\"Twingly.xml\"><securecookie host=\"^api\\.twingly\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Twinings (partial)\" f=\"Twinings.xml\"><exclusion pattern=\"^http://shop.twinings.co.uk/(?!fileadmin/|shop/(?:media|skin)/)\"/><securecookie host=\"^(?:www\\.)?twinings\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(shop\\.|www\\.)?twinings\\.co\\.uk/\" to=\"https://$1twinings.co.uk/\"/></ruleset>", "<ruleset name=\"Twinprime.com\" default_off=\"failed ruleset test\" f=\"Twinprime.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TwinsOrNot.Net\" default_off=\"failed ruleset test\" f=\"TwinsOrNot.Net.xml\"><securecookie host=\"^.*\\.twinsornot\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"twisp.me\" default_off=\"failed ruleset test\" f=\"Twisp.xml\"><securecookie host=\"^(?:w*\\.)?twisp\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Twistage (partial)\" f=\"Twistage.xml\"><securecookie host=\"^console\\.twistage\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Twisted4Life\" default_off=\"failed ruleset test\" f=\"Twisted4Life.xml\"><securecookie host=\"^(?:.+\\.)?twisted4life\\.com$\" name=\".*\"/><rule from=\"^http://((?:www\\.)?twisted4life\\.com)/\" to=\"https://$1/\"/></ruleset>", "<ruleset name=\"TwistedMatrix.com\" default_off=\"failed ruleset test\" f=\"TwistedMatrix.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TwitCasting (partial)\" default_off=\"failed ruleset test\" f=\"TwitCasting.xml\"><rule from=\"^http://(?:en\\.|ja\\.|pt\\.|www\\.)?twitcasting\\.tv/(css|img|swf)/\" to=\"https://ssl.twitcasting.tv/$1/\"/><rule from=\"^http://(?:movie|ssl)\\.twitcasting\\.tv/\" to=\"https://$1.twitcasting.tv/\"/></ruleset>", "<ruleset name=\"TwitRSS.me\" f=\"TwitRSS.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Twitch.tv\" f=\"Twitch.tv.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Twitch Installs.com\" f=\"Twitch_Installs.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Twitpic.com (partial)\" f=\"Twitpic.xml\"><securecookie host=\"^\\.twitpic\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Twitter Counter (partial)\" f=\"Twitter-Counter.xml\"><rule from=\"^http://(?:www\\.)?twittercounter\\.com/((?:blog|embed)(?:$|[\\?/]))\" to=\"https://twittercounter.com/$1\"/></ruleset>", "<ruleset name=\"Twitter.com\" f=\"Twitter.xml\"><exclusion pattern=\"^http://(?:status|app\\.tweet|images\\.tweet|click\\.e)\\.twitter\\.com/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Twitter Community.com\" f=\"Twitter_Community.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Twitter Inc.com\" f=\"Twitter_Inc.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"twky.in\" f=\"Twky.in.xml\"><rule from=\"^http://twky\\.in/\" to=\"https://bit.ly/\"/></ruleset>", "<ruleset name=\"Two Seasons\" default_off=\"mismatched\" f=\"Two-Seasons.xml\"><securecookie host=\"^(?:.*\\.)?twoseasons\\.co\\.uk$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?twoseasons\\.co\\.uk/\" to=\"https://www.twoseasons.co.uk/\"/></ruleset>", "<ruleset name=\"Two Roads\" f=\"Two_Roads.xml\"><securecookie host=\"^\\.2roads\\.com$\" name=\".+\"/><rule from=\"^http://((?:fiber|news|www)\\.)?2roads\\.com/\" to=\"https://$12roads.com/\"/></ruleset>", "<ruleset name=\"Two Sigma.com\" default_off=\"failed ruleset test\" f=\"Two_Sigma.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Twoseventy.net\" default_off=\"failed ruleset test\" f=\"Twoseventy.net.xml\"><securecookie host=\"^\\.twoseventy\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Twtpoll.com\" default_off=\"failed ruleset test\" f=\"Twtpoll.com.xml\"><securecookie host=\"^(?:www\\.)?twtpoll\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Twylah.com\" default_off=\"failed ruleset test\" f=\"Twylah.com.xml\"><securecookie host=\"^(?:www\\.)?twylah\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?twylah\\.com/\" to=\"https://$1twylah.com/\"/><rule from=\"^http://assets0\\.twylah\\.com/\" to=\"https://d2bnh6mf518le4.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Txmblr.com\" f=\"Txmblr.com.xml\"><securecookie host=\"^safe\\.txmblr\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tyk.io\" f=\"Tyk.io.xml\"><securecookie host=\"^\\.tyk\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tyler Cipriani.com\" f=\"Tyler_Cipriani.com.xml\"><rule from=\"^http://www\\.tylercipriani\\.com/\" to=\"https://tylercipriani.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tyndall.ie\" f=\"Tyndall.ie.xml\"><securecookie host=\"^\\.tyndall\\.ie$\" name=\".+\"/><rule from=\"^http://www\\.tyndall\\.ie/\" to=\"https://www.tyndall.ie/\"/></ruleset>", "<ruleset name=\"Tynt.com (partial)\" f=\"Tynt.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|s_\\w\\w\\w?)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Työ- ja elinkeinoministeriö\" default_off=\"failed ruleset test\" f=\"Tyo-ja-elinkeinoministerio.xml\"><rule from=\"^http://(?:www\\.)?tem\\.fi/\" to=\"https://www.tem.fi/\"/></ruleset>", "<ruleset name=\"Työttömyyskassojen Yhteisjärjestö\" f=\"Tyottomyyskassojen-yhteistyojarjesto.xml\"><securecookie host=\"^\\.tyj\\.fi$\" name=\"PHPSESSID\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Typecast.com (partial)\" f=\"Typecast.com.xml\"><securecookie host=\"^\\.typecast\\.com$\" name=\"^tca_(?:last_activity|last_visit|tracker)$\"/><securecookie host=\"^typecast\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Typekit.net\" f=\"Typekit.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Typekit.com\" f=\"Typekit.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Typepad (partial)\" f=\"Typepad.xml\"><exclusion pattern=\"http://www\\.typepad\\.com/(?:services)?(?:$|[\\?/])\"/><rule from=\"^http://(?:www\\.)?typepad\\.com/\" to=\"https://www.typepad.com/\"/></ruleset>", "<ruleset name=\"Typesafe.com (partial)\" f=\"Typesafe.com.xml\"><rule from=\"^http://((?:new|staging|www)\\.)?typesafe\\.com/\" to=\"https://$1typesafe.com/\"/></ruleset>", "<ruleset name=\"Typography.com (partial)\" f=\"Typography.com.xml\"><securecookie host=\"^\\.typography\\.com$\" name=\"^__utm\\w+$\"/><rule from=\"^http://(?:www\\.)?typography\\.com/(?=account(?:$|[?/])|cart/|favicon\\.ico|images/|include/)\" to=\"https://www.typography.com/\"/><rule from=\"^http://(cloud|secure|ssl)\\.typography\\.com/\" to=\"https://$1.typography.com/\"/></ruleset>", "<ruleset name=\"Typora\" f=\"Typora.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Typotheque.com (partial)\" f=\"Typotheque.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://im\\.typotheque\\.com/\" to=\"https://tptqimages.s3.amazonaws.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"U-Bordeaux.fr (partial)\" f=\"U-Bordeaux.fr.xml\"><securecookie host=\"^(?:ent|personnels)\\.u-bordeaux\\.fr$\" name=\".+\"/><rule from=\"^http://u-bordeaux\\.fr/\" to=\"https://www.u-bordeaux.fr/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"U-Tokyo.ac.jp (problematic)\" default_off=\"expired\" f=\"U-Tokyo.ac.jp-problematic.xml\"><rule from=\"^http://(user\\.ecc|www\\.itc)\\.u-tokyo\\.ac\\.jp/\" to=\"https://$1.u-tokyo.ac.jp/\"/></ruleset>", "<ruleset name=\"U-Tokyo.ac.jp (partial)\" f=\"U-Tokyo.ac.jp.xml\"><securecookie host=\"^(?:dav[mw]|itc-lms|lecture)\\.ecc\\.u-tokyo\\.ac\\.jp$\" name=\".+\"/><rule from=\"^http://((?:dav[mw]|itc-lms|lecture|ms|ras|secure)\\.ecc|(?:mbc\\.dl|opac\\.dl|gateway|kiku|park-ssl)\\.itc|www\\.nc|payment\\.utf)\\.u-tokyo\\.ac\\.jp/\" to=\"https://$1.u-tokyo.ac.jp/\"/></ruleset>", "<ruleset name=\"U-blox.com\" f=\"U-blox.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"U by Kotex Australia\" f=\"U-by-Kotex-Australia.xml\"><securecookie host=\"^www\\.ubykotex\\.com\\.au$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UA.edu (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"UA.edu-falsemixed.xml\"><rule from=\"^http://(www\\.)?as\\.au\\.edu/\" to=\"https://$1as.eu.edu/\"/></ruleset>", "<ruleset name=\"UA.edu (problematic)\" default_off=\"mismatched\" f=\"UA.edu-problematic.xml\"><rule from=\"^http://(directory|tour)\\.ua\\.edu/\" to=\"https://$1.ua.edu/\"/></ruleset>", "<ruleset name=\"UA.edu (partial)\" f=\"UA.edu.xml\"><exclusion pattern=\"^http://(?:www\\.)?as\\.ua\\.edu/+home(?!/wp-content/|/wp-includes/)\"/><rule from=\"^http://((?:as|(?:home|www)\\.as|bama|copingpower|fa-webprod\\.fa|mybama|oirax|onlinegiving|secure\\.sa|ssb|www)\\.)?ua\\.edu/\" to=\"https://$1ua.edu/\"/></ruleset>", "<ruleset name=\"UBM-US.net\" f=\"UBM-US.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UBM (mismatches)\" default_off=\"mismatched\" platform=\"mixedcontent\" f=\"UBM-mismatches.xml\"><securecookie host=\"^pro\\.darkreading\\.com$\" name=\".*\"/><securecookie host=\"^www\\.drdobbs\\.com$\" name=\".*\"/><securecookie host=\"^oagcargo\\.com$\" name=\".*\"/><securecookie host=\"^ubmaviationnews\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?aircargoworld\\.com/\" to=\"https://www.aircargoworld.com/\"/><rule from=\"^http://pro\\.darkreading\\.com/\" to=\"https://pro.darkreading.com/\"/><rule from=\"^http://www\\.deusm\\.com/\" to=\"https://www.deusm.com/\"/><rule from=\"^http://(?:www\\.)?drdobbs\\.com/\" to=\"https://www.drdobbs.com/\"/><rule from=\"^http://reports\\.informationweek\\.com/((?:asset)?image|cs)s/\" to=\"https://reports.informationweek.com/$1s/\"/><rule from=\"^http://(?:www\\.)?insurancetech\\.com/\" to=\"https://www.insurancetech.com/\"/><rule from=\"^http://(?:www\\.)?oagaviation\\.com/\" to=\"https://www.oagaviation.com/\"/><rule from=\"^http://(?:www\\.)?oag(cargo|travel)\\.com/\" to=\"https://oag$1.com/\"/><rule from=\"^http://(?:www\\.)?ubmaviation\\.com/\" to=\"https://www.ubmaviation.com/\"/><rule from=\"^http://(?:www\\.)?ubmaviationnews\\.com/\" to=\"https://ubmaviationnews.com/\"/><rule from=\"^http://(?:www\\.)?ubmchannel\\.com/(cs|image)s/\" to=\"https://www.ubmchannel.com/$1s/\"/><rule from=\"^http://(?:www\\.)?ubmelectronics(?:\\.techinsights-marketing)?\\.com/(\\d{4}/wordpress/|favicon\\.ico)\" to=\"https://ubmelectronics.techinsights-marketing.com/~techinsi/ubmelectronics/$1\"/></ruleset>", "<ruleset name=\"UBM.com (partial)\" f=\"UBM.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.events\\.ubm\\.com/\" to=\"https://events.ubm.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UBS.com (partial)\" default_off=\"failed ruleset test\" f=\"UBS.xml\"><exclusion pattern=\"^http://ebanking-us\\.ubs\\.com/\"/><exclusion pattern=\"^http://keyinvest\\.ibb\\.ubs\\.com/(?!images/|styles/)\"/><securecookie host=\"^.*\\.ubs\\.com$\" name=\".+\"/><rule from=\"^http://ubs\\.com/\" to=\"https://www.ubs.com/\"/><rule from=\"^http://(apps[12]?|assetgateway|connect-ch[12]?|ebanking-\\w+|grs|(?:client(?:login|portal)|keyinvest)\\.ibb|jobs|m|neo|onlineservices|privatebank-us|quotes-global2?|quotes-public1?|realty|sbms[12]?|secure|www)\\.ubs\\.com/\" to=\"https://$1.ubs.com/\"/></ruleset>", "<ruleset name=\"UBank\" f=\"UBank.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UC (partial)\" default_off=\"failed ruleset test\" f=\"UC.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UCAR.edu\" f=\"UCAR.edu.xml\"><securecookie host=\"^(?:www\\.eol|\\.ncar|www\\.unidata)\\.ucar\\.edu$\" name=\".+\"/><rule from=\"^http://(abuse|www\\.eol|(?:www\\.)?ncar|security|www\\.unidata|www2?)\\.ucar\\.edu/\" to=\"https://$1.ucar.edu/\"/></ruleset>", "<ruleset name=\"UCC.dk\" f=\"UCC.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UCC.ie (partial)\" default_off=\"failed ruleset test\" f=\"UCC.ie.xml\"><securecookie host=\"^(?:booleweb|careersfdr|cora|library|lugh|pacadmin|pensionsonline)\\.ucc\\.ie$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UCLA.edu (partial)\" f=\"UCLA.edu.xml\"><exclusion pattern=\"^http://maps\\.ucla\\.edu/+m/\"/><exclusion pattern=\"^http://mwf\\.ucla\\.edu/+(?!css/|img/)\"/><exclusion pattern=\"^http://www\\.recreation\\.ucla\\.edu/+(?!\\?css=|images/|scripts/)\"/><securecookie host=\"^(?:shb\\.ais|kb|(?:www\\.)?osd|dnn\\.uclanet)\\.ucla\\.edu$\" name=\".+\"/><securecookie host=\"^www\\.recreation\\.ucla.edu$\" name=\"^exp_last_(?:activity|visit)$\"/><rule from=\"^http://(?:www\\.)?(admissions?|osd)\\.ucla\\.edu/\" to=\"https://www.$1.ucla.edu/\"/><rule from=\"^http://(www\\.)?(bruintech|ccle|dcp|diversity|events|happenings|library|logon|ucod)\\.ucla\\.edu/\" to=\"https://$1$2.ucla.edu/\"/><rule from=\"^http://(shb\\.ais|sheltie\\.ats|(?:auth-asm1\\.)?auth|docs\\.ccle|welcome\\.diversity|secure5\\.ha|dev\\.happenings|(?:studentweb|wwwprep)\\.it|kb|(?:www-stage|www-test)\\.library|logon-(?:asm|csb)1\\.logon|m|maps|mwf|hr\\.mycareer|(?:secure|www)\\.recreation|computing\\.sscnet|dnn\\.uclanet|www\\.ursa)\\.ucla\\.edu/\" to=\"https://$1.ucla.edu/\"/><rule from=\"^http://guides\\.library\\.ucla\\.edu/(?=css\\d*/|data/|include/|js\\d*/)\" to=\"https://libguides.com/\"/></ruleset>", "<ruleset name=\"UCLA Health\" f=\"UCLA_Health.xml\"><securecookie host=\"^www\\.uclahealth\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?uclahealth\\.org/\" to=\"https://www.uclahealth.org/\"/></ruleset>", "<ruleset name=\"UCM.es (partial)\" f=\"UCM.es.xml\"><exclusion pattern=\"^http://biblioteca\\.ucm\\.es/+(?!media/|temas/)\"/><exclusion pattern=\"^http://cisne\\.sim\\.ucm\\.es/+(?!screens/|scripts/)\"/><rule from=\"^http://(biblioteca|pendientedemigracion|cisne\\.sim|www)\\.ucm\\.es/\" to=\"https://$1.ucm.es/\"/></ruleset>", "<ruleset name=\"UCPI.org.uk\" f=\"UCPI.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UCSD.edu (self-signed)\" default_off=\"mismatched, self-signed\" f=\"UCSD.edu-self-signed.xml\"><securecookie host=\"^\\.www-cse\\.ucsd\\.edu$\" name=\".+\"/><rule from=\"^http://www\\.iod\\.ucsd\\.edu/\" to=\"https://www.iod.ucsd.edu/\"/><rule from=\"^http://goto\\.ucsd\\.edu/\" to=\"https://goto.ucsd.edu/\"/></ruleset>", "<ruleset name=\"UCSD\" default_off=\"failed ruleset test\" f=\"UCSD.edu.xml\"><exclusion pattern=\"^http://health\\.ucsd\\.edu/_layouts/spsredirect\\.aspx\"/><exclusion pattern=\"^http://extension\\.ucsd\\.edu/+(?!cart/images/|css/|favicon\\.ico|images/|profile/index\\.cfm|programapplications/index\\.cfm)\"/><exclusion pattern=\"^http://hdh\\.ucsd\\.edu/+mobile(?:$|[?/])\"/><exclusion pattern=\"^http://(?:www\\.)?psychology\\.ucsd\\.edu/+(?!favicon\\.ico|_images/|_resources/)\"/><exclusion pattern=\"^http://studenthealth\\.ucsd\\.edu/+(?!css/|favicon\\.ico|img/)\"/><exclusion pattern=\"^http://tuna\\.ucsd\\.edu/+(?!$|\\?)\"/><securecookie host=\"^(?:.+\\.)?a(?:4|cs-webmail)\\.ucsd\\.edu$\" name=\".*\"/><rule from=\"^http://a4\\.ucsd\\.edu/\" to=\"https://a4.ucsd.edu/\"/><rule from=\"^http://(?:acs-)?webmail\\.ucsd\\.edu/\" to=\"https://acs-webmail.ucsd.edu/\"/><rule from=\"^http://altng\\.ucsd\\.edu/\" to=\"https://altng.ucsd.edu/\"/><rule from=\"^http://aventeur\\.ucsd\\.edu/\" to=\"https://aventeur.ucsd.edu/\"/><rule from=\"^http://cinfo\\.ucsd\\.edu/\" to=\"https://cinfo.ucsd.edu/\"/><rule from=\"^http://facilities\\.ucsd\\.edu/\" to=\"https://facilities.ucsd.edu/\"/><rule from=\"^http://gradapply\\.ucsd\\.edu/\" to=\"https://gradapply.ucsd.edu/\"/><rule from=\"^http://graduateapp\\.ucsd\\.edu/\" to=\"https://graduateapp.ucsd.edu/\"/><rule from=\"^http://jacobsstudent\\.ucsd\\.edu/\" to=\"https://jacobsstudent.ucsd.edu/\"/><rule from=\"^http://myucsdchart\\.ucsd\\.edu/\" to=\"https://myucsdchart.ucsd.edu/\"/><rule from=\"^http://sdacs\\.ucsd\\.edu/\" to=\"https://sdacs.ucsd.edu/\"/><rule from=\"^http://shs\\.ucsd\\.edu/\" to=\"https://shs.ucsd.edu/\"/><rule from=\"^http://ted\\.ucsd\\.edu/\" to=\"https://ted.ucsd.edu/\"/><rule from=\"^http://ucsdbkst\\.ucsd\\.edu/\" to=\"https://ucsdbkst.ucsd.edu/\"/><rule from=\"^http://a\\.ucsd\\.edu/\" to=\"https://a.ucsd.edu/\"/><rule from=\"^http://acms\\.ucsd\\.edu/\" to=\"https://acms.ucsd.edu/\"/><rule from=\"^http://(?:www\\.)?bookstore\\.ucsd\\.edu/\" to=\"https://bookstore.ucsd.edu/\"/><rule from=\"^http://(www[-\\.])?cs(e)?\\.ucsd\\.edu/\" to=\"https://$1cs$2.ucsd.edu/\"/><rule from=\"^http://(www\\.)?ece\\.ucsd\\.edu(:16080)?/\" to=\"https://$1ece.ucsd.edu/\"/><rule from=\"^http://(www\\.)?hdh\\.ucsd\\.edu/\" to=\"https://$1hdh.ucsd.edu/\"/><rule from=\"^http://(?:www\\.)?hds\\.ucsd\\.edu/\" to=\"https://hds.ucsd.edu/\"/><rule from=\"^http://maeweb\\.ucsd\\.edu/\" to=\"https://maeweb.ucsd.edu/\"/><rule from=\"^http://(www\\.)?nanoengineering\\.ucsd\\.edu/\" to=\"https://$1nanoengineering.ucsd.edu/\"/><rule from=\"^http://ne(-?web)?\\.ucsd\\.edu/\" to=\"https://ne$1.ucsd.edu/\"/><rule from=\"^http://roger\\.ucsd\\.edu/\" to=\"https://roger.ucsd.edu/\"/><rule from=\"^http://se\\.ucsd\\.edu/\" to=\"https://se.ucsd.edu/\"/><rule from=\"^http://(www\\.)?structures\\.ucsd\\.edu/\" to=\"https://$1structures.ucsd.edu/\"/><rule from=\"^http://uxt\\.ucsd\\.edu/\" to=\"https://uxt.ucsd.edu/\"/><rule from=\"^http://www-ne\\.ucsd\\.edu/\" to=\"https://www-ne.ucsd.edu/\"/><rule from=\"^http://www-structures\\.ucsd\\.edu/\" to=\"https://www-structures.ucsd.edu/\"/><rule from=\"^http://health\\.ucsd\\.edu/(_layouts/|page_ad/|request_appt|Style\\ Library/|WebResource\\.axd)\" to=\"https://health.ucsd.edu/$1\"/><rule from=\"^http://libraries\\.ucsd\\.edu/digital/\" to=\"https://libraries.ucsd.edu/digital/\"/><rule from=\"^http://studenthealth\\.ucsd\\.edu/secure/\" to=\"https://studenthealth.ucsd.edu/secure/\"/><rule from=\"^http://(www-)?act\\.ucsd\\.edu/(bsl/home|cgi-bin/[A-Za-z]+link\\.pl|classPlanner|marketplace-sso|mytritonlink/view|myTritonlink20|student[A-Z][A-Za-z]+/[A-Za-z]+|travellink/home)\" to=\"https://$1act.ucsd.edu/$2\"/><rule from=\"^http://accesslink\\.ucsd\\.edu/\" to=\"https://altng.ucsd.edu/\"/><rule from=\"^http://financiallink\\.ucsd\\.edu/?$\" to=\"https://www-act.ucsd.edu/cgi-bin/financiallink.pl\"/><rule from=\"^http://marketplace\\.ucsd\\.edu/?$\" to=\"https://www-act.ucsd.edu/marketplace-sso/signon\"/><rule from=\"^http://(?:www\\.)?(?:my)?tritonlink\\.ucsd\\.edu/?$\" to=\"https://act.ucsd.edu/myTritonlink20/display.htm\"/><rule from=\"^http://uclearning\\.ucsd\\.edu/\" to=\"https://a4.ucsd.edu/lms/\"/><rule from=\"^http://(cri|desktop|resnet|software|sysstaff)\\.ucsd\\.edu/\" to=\"https://acms.ucsd.edu/units/$1/\"/><rule from=\"^http://(?:www-)?acs\\.ucsd\\.edu/troublereport/?$\" to=\"https://a.ucsd.edu/troublereport/\"/><rule from=\"^http://www-acs\\.ucsd\\.edu/?$\" to=\"https://acms.ucsd.edu/index.html\"/><rule from=\"^http://www-acs\\.ucsd\\.edu/account-tools/oce-intro\\.shtml$\" to=\"https://acms.ucsd.edu/students/oce-intro.html\"/><rule from=\"^http://www-acs\\.ucsd\\.edu/instructional/?$\" to=\"https://acms.ucsd.edu/students/\"/><securecookie host=\".*\\.ucsd\\.edu\" name=\".*\"/><rule from=\"^http://collections\\.ucsd\\.edu/+(?=$|\\?)\" to=\"https://scripps.ucsd.edu/collections\"/><rule from=\"^http://(?:www\\.)?(chd|ethnicstudies)\\.ucsd\\.edu/\" to=\"https://$1.ucsd.edu/\"/><rule from=\"^http://(?:www\\.)?giftplanning\\.ucsd\\.edu/\" to=\"https://ucsd.giftlegacy.com/\"/><rule from=\"^http://(www\\.)?math\\.ucsd\\.edu/\" to=\"https://$1math.ucsd.edu/\"/><rule from=\"^http://psy\\.ucsd\\.edu/+(?:$|\\?.*)\" to=\"https://psychology.ucsd.edu/\"/><rule from=\"^http://(?:www\\.)?psychology\\.ucsd\\.edu/\" to=\"https://psychology.ucsd.edu/\"/><rule from=\"^http://scrippsnews\\.ucsd\\.edu/+(?=$|\\?)\" to=\"https://scripps.ucsd.edu/news\"/><rule from=\"^http://scrippsnews\\.ucsd\\.edu/Releases/\" to=\"https://scripps.ucsd.edu/news\"/><rule from=\"^http://(?:www\\.)?supportscripps\\.ucsd\\.edu/[^?]*\" to=\"https://scripps.ucsd.edu/giving\"/><rule from=\"^http://((?:admissions|academicconnections|as|assets|artsandhumanities|biology|blink|caesar|calendar|career|cfr|cgs|cilas|create|crlpsandiego|cseweb|csmp|cwo|dah|dbsportal|disabilities|eaop|ersys-webapps|extension|foundation|giving|globalhealthprogram|health2|healthsciences|hdh|hsreservations|igpp|igppticket|igppwiki|iod|isp|iwdc|jobs|libguides|libraries|lists|m|mailman|mathlink2?|meded|mobile|myextension|myosd|mytritonlink|myucsdchart|ocfr|ocga|onthego|pao|parents|physics|podcast|polisci|preuss|profiles|recreation|rmp|saber|sarc|sciencestudies|scripps|sdawp|ships|socialsciences|student(?:health|parents|s|support)|sustainability|trio|tuna|ucsdfoundation|ui|unex-shibboleth|usmex|usp|www|www-act|www-er|yankelovichcenter)\\.)?ucsd\\.edu/\" to=\"https://$1ucsd.edu/\"/></ruleset>", "<ruleset name=\"UC Hastings.edu (false MCB)\" platform=\"mixedcontent\" f=\"UC_Hastings.edu-falsemixed.xml\"><securecookie host=\"^events\\.uchastings\\.edu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UC Hastings.edu (problematic)\" default_off=\"missing certificate chain\" f=\"UC_Hastings.edu-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UC Hastings.edu (partial)\" default_off=\"failed ruleset test\" f=\"UC_Hastings.edu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UCalgary.ca (partial)\" f=\"UCalgary.ca.xml\"><exclusion pattern=\"^http://(?:www\\.)?ucalgary\\.ca/+(?!(?:\\w+/)?(?:files|misc|modules|sites)/|(?:alumni|brand|community|currentstudents|events|facultyandstaff|hr|identity|map|prospectivestudents|pubs|residence|science/user)(?:$|[?/])|favicon\\.ico)\"/><exclusion pattern=\"^http://contacts\\.ucalgary\\.ca/+(?!files/|sites/|user(?:$|[?/]))\"/><exclusion pattern=\"^http://conted\\.ucalgary\\.ca/+(?!\\w+/images/|coursebasket/publicCourseBasket\\.do|css/|favicon\\.ico|images/|javascript/|uc-scripts/|yahoo/)\"/><exclusion pattern=\"^http://(?:haskayne|kb)\\.ucalgary\\.ca/+(?!files/)\"/><exclusion pattern=\"^http://springsummer.ucalgary.ca/+(?!files/)\"/><exclusion pattern=\"^http://ereports2\\.ucalgary\\.ca/+(?!cognoscas/*(?:$|\\?))\"/><securecookie host=\"^(?:acctman|activeliving|arts|cas|prdrps2\\.ehs|eplanning|idp|imagine|itsc|library|llc|netcommunity|oadm|science|static|\\.su|www\\.su)\\.ucalgary\\.ca$\" name=\".+\"/><rule from=\"^http://((?:acctman|activeliving|arts|cas|contacts|conted|www\\.efs|prdrps2\\.ehs|eplanning|ereports2|grad|haskayne|idp|itsc|imagine|kb|library|ling|llc|my|netcommunity|oadm|people|pr1web|science|springsummer|spse|static|wcmprod2|www)\\.)?ucalgary\\.ca(:8445)?/\" to=\"https://$1ucalgary.ca$2/\"/><rule from=\"^http://libguides\\.ucalgary\\.com/(?=css\\d*/|favicon\\.ico|include/|js\\d*/)\" to=\"https://libguides.com/\"/><rule from=\"^http://(?:www\\.)?su\\.ucalgary\\.ca/\" to=\"https://www.su.ucalgary.ca/\"/><rule from=\"^http://www\\.calgaryoutdoorcentre\\.ca/files/\" to=\"https://www.ucalgary.ca/files/\"/></ruleset>", "<ruleset name=\"UCalgary Mag.ca\" default_off=\"failed ruleset test\" f=\"UCalgary_Mag.ca.xml\"><securecookie host=\"^\\.ucalgarymag\\.ca$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"uClinics\" f=\"UClinics.xml\"><securecookie host=\"^(?:app)?\\.uclinics\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Unreal Development Kit\" default_off=\"failed ruleset test\" f=\"UDK.com.xml\"><rule from=\"^http://(?:www\\.)?udk\\.com/\" to=\"https://udk.com/\"/></ruleset>", "<ruleset name=\"UDN (partial)\" default_off=\"failed ruleset test\" f=\"UDN.xml\"><exclusion pattern=\"^http://a\\.udn\\.com/$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UD Media.de\" f=\"UD_Media.de.xml\"><securecookie host=\"^(?:root|\\.www)\\.udmedia\\.de$\" name=\".+\"/><rule from=\"^http://(www\\.)?ud-?media\\.de/\" to=\"https://$1udmedia.de/\"/><rule from=\"^http://hilfe\\.udmedia\\.de/[^?]*\" to=\"https://www.udmedia.de/faq/\"/><rule from=\"^http://livechat\\.udmedia\\.de/[^?]*\" to=\"https://messenger.providesupport.com/messenger/udmedia.html\"/><rule from=\"^http://(?:www\\.)?root\\.udmedia\\.de/\" to=\"https://root.udmedia.de/\"/></ruleset>", "<ruleset name=\"UDimg.com\" default_off=\"mismatched\" f=\"UDimg.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UFC Fit\" default_off=\"failed ruleset test\" f=\"UFC_Fit.xml\"><securecookie host=\"^(?:launchpad|www)\\.ufcfit\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UFies.org\" f=\"UFies.org.xml\"><securecookie host=\"^ufies\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ufies\\.org/\" to=\"https://ufies.org/\"/><rule from=\"^http://mail\\.ufies\\.org/[^?]*(\\?.*)?\" to=\"https://ufies.org/mail/$1\"/></ruleset>", "<ruleset name=\"Uni-Hamburg.de\" default_off=\"failed ruleset test\" f=\"UHH-Informatik.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UI-Portal.de (partial)\" default_off=\"failed ruleset test\" f=\"UI-Portal.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UIC.edu (false MCB)\" platform=\"mixedcontent\" f=\"UIC.edu-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UIC Bookstore.org\" f=\"UIC_Bookstore.org.xml\"><rule from=\"^http://uicbookstore\\.org/\" to=\"https://www.uicbookstore.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UIE\" f=\"UIE.xml\"><securecookie host=\"^(?:.+\\.)?uie\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?uie\\.com/\" to=\"https://www.uie.com/\"/></ruleset>", "<ruleset name=\"UIUC.edu (partial)\" default_off=\"failed ruleset test\" f=\"UIUC.edu.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(www\\.)?(dps|union)\\.uiuc\\.edu/\" to=\"https://$1$2.illinois.edu/\"/><rule from=\"^http://www\\.ks\\.uiuc\\.edu/\" to=\"https://www-s.ks.uiuc.edu/\"/><rule from=\"^http://www\\.mechse\\.uiuc\\.edu/+\" to=\"https://mechanical.illinois.edu/\"/><rule from=\"^http://www\\.uiuc\\.edu/\" to=\"https://illinois.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UI CDN.com\" f=\"UI_CDN.com.xml\"><rule from=\"^http://s\\.uicdn\\.com/\" to=\"https://sec-s.uicdn.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UI CDN.net\" f=\"UI_CDN.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UIllinois.edu (false MCB)\" platform=\"mixedcontent\" f=\"UIllinois.edu-falsemixed.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UIllinois.edu (partial)\" default_off=\"failed ruleset test\" f=\"UIllinois.edu.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(conferences\\.|ogr\\.)?uillinois\\.edu/\" to=\"https://www.$1uillinois.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UImserv.net\" f=\"UImserv.net.xml\"><securecookie host=\"^\\.uimserv\\.net$\" name=\".+\"/><rule from=\"^http://(adclient|adimg|advideo|pixelbox|r|uidbox|uir|logout\\.webde)\\.uimserv\\.net/\" to=\"https://$1.uimserv.net/\"/></ruleset>", "<ruleset name=\"UJF-Grenoble.fr\" f=\"UJF-Grenoble.fr.xml\"><rule from=\"^http://(developpementdurable|liens|www)\\.ujf-grenoble\\.fr/\" to=\"https://$1.ujf-grenoble.fr/\"/></ruleset>", "<ruleset name=\"UK-2 (partial)\" default_off=\"failed ruleset test\" f=\"UK-2.xml\"><securecookie host=\"^\\.uk2\\.net$\" name=\"^controlpanel$\"/><securecookie host=\"^(?:mail|support)\\.uk2\\.net$\" name=\".+\"/><rule from=\"^http://((?:(?:static\\.)?controlpanel|kb|support|www)\\.)?uk2\\.net/\" to=\"https://$1uk2.net/\"/><rule from=\"^http://blog\\.uk2\\.net/\" to=\"https://www.uk2.net/blog/\"/><rule from=\"^http://(?:www\\.)?mail\\.uk2\\.net/\" to=\"https://mail.uk2.net/\"/><rule from=\"^http://(www\\.)?uk2img\\.net/\" to=\"https://$1uk2img.net/\"/></ruleset>", "<ruleset name=\"UK Access Management Federation\" f=\"UK-Access-Management-Federation.xml\"><securecookie host=\"^wayf\\.ukfederation\\.org\\.uk$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BIS.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"UK-Department-for-Business-Innovation-and-Skills.xml\"><exclusion pattern=\"^http://(?:www\\.)?(?:skillsfundingagency\\.)?bis\\.gov\\.uk/(?!/*(?:$|\\?))\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?bis\\.gov\\.uk/.*\" to=\"https://www.gov.uk/government/organisations/department-for-business-innovation-skills\"/><rule from=\"^http://(?:www\\.)?skillsfundingagency\\.bis\\.gov\\.uk/.*\" to=\"https://www.gov.uk/government/organisations/skills-funding-agency\"/><rule from=\"^http://www\\.edrs\\.sfa\\.bis\\.gov\\.uk/\" to=\"https://edrs.sfa.bis.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UK Free Software Network (partial)\" default_off=\"failed ruleset test\" f=\"UK-Free-Software-Network.xml\"><securecookie host=\".*\\.ukfsn\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ICO.gov.uk\" default_off=\"missing certificate chain\" f=\"UK-Information-Commissioners-Office.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UK Web Solutions Direct\" f=\"UK-Web-Solutions-Direct.xml\"><securecookie host=\"^ukwebsolutionsdirect\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ukwebsolutionsdirect\\.co(?:\\.uk|m)/\" to=\"https://ukwebsolutionsdirect.co.uk/\"/></ruleset>", "<ruleset name=\"UKFast.co.uk (partial)\" f=\"UKFast.co.uk.xml\"><exclusion pattern=\"^http://(?:www\\.)?ukfast\\.co\\.uk/blog/\"/><securecookie host=\"^\\.\" name=\"^(?:_gat?$|_gat_|marketing_campaign$)\"/><securecookie host=\"^[^.uw]\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UKFur\" f=\"UKFur.xml\"><securecookie host=\"^forum\\.ukfur\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UKLINUX.NET (partial)\" default_off=\"expired\" f=\"UKLINUX.xml\"><rule from=\"^http://(?:www\\.)?uklinux\\.net/\" to=\"https://www.uklinux.net/\"/></ruleset>", "<ruleset name=\"Local.gov.uk (partial)\" f=\"UKLocalGovernment.xml\"><rule from=\"^http://knowledgehub\\.local\\.gov\\.uk/.*\" to=\"https://khub.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UKNOF.org.uk (partial)\" f=\"UKNOF.org.uk.xml\"><rule from=\"^http://(indico|lists|wiki)\\.uknof\\.org\\.uk/\" to=\"https://$1.uknof.org.uk/\"/></ruleset>", "<ruleset name=\"UK Intellectual Property Office\" f=\"UK_Intellectual_Property_Office.xml\"><securecookie host=\"^(?:www\\.)?ipo\\.gov\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UK Ministry of Defence\" f=\"UK_Ministry_of_Defence.xml\"><rule from=\"^http://defenceimagery\\.mod\\.uk/\" to=\"https://www.defenceimagery.mod.uk/\"/><rule from=\"^http://([^/:@]+)?\\.defenceimagery\\.mod\\.uk/\" to=\"https://$1.defenceimagery.mod.uk/\"/></ruleset>", "<ruleset name=\"UK Payments.org.uk\" f=\"UK_Payments.org.uk.xml\"><securecookie host=\"^www\\.ukpayments\\.org\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UK online centres.com (partial)\" f=\"UK_online_centres.com.xml\"><rule from=\"^http://(www\\.)?ukonlinecentres\\.com/(?=images/|media/|modules/|services/|templates/)\" to=\"https://$1ukonlinecentres.com/\"/></ruleset>", "<ruleset name=\"UL.ie (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"UL.ie-falsemixed.xml\"><securecookie host=\"^www\\.ul\\.ie$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ul\\.ie/(?!ee/|favicon\\.ico|styles/)\" to=\"https://www.ul.ie/\"/></ruleset>", "<ruleset name=\"UL.ie (partial)\" default_off=\"failed ruleset test\" f=\"UL.ie.xml\"><securecookie host=\"^\\.ul\\.ie$\" name=\"^__utm\\w$\"/><rule from=\"^http://(?:www\\.)?ul\\.ie/(?=ee/|favicon\\.ico|styles/)\" to=\"https://www.ul.ie/\"/></ruleset>", "<ruleset name=\"ULAKBIM.gov.tr (partial)\" default_off=\"self-signed\" f=\"ULAKBIM.gov.tr.xml\"><securecookie host=\"^(?:istatistik|stat)\\.ulakbim\\.gov\\.tr$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ulakbim\\.gov\\.tr/\" to=\"https://www.ulakbim.gov.tr/\"/><rule from=\"^http://(ekual|istatistik|stat)\\.ulakbim\\.gov\\.tr/\" to=\"https://$1.ulakbim.gov.tr/\"/></ruleset>", "<ruleset name=\"UMBC.edu (partial)\" f=\"UMBC.edu.xml\"><securecookie host=\"^publications\\.csee\\.umbc\\.edu$\" name=\".+\"/><rule from=\"^http://(assets[1-4]-my|publications\\.csee)\\.umbc\\.edu/\" to=\"https://$1.umbc.edu/\"/><rule from=\"^http://(?:www\\.)?csee\\.umbc\\.edu/\" to=\"https://www.csee.umbc.edu/\"/></ruleset>", "<ruleset name=\"uMonitor\" f=\"UMonitor.xml\"><securecookie host=\"^.*\\.umonitor\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?umonitor\\.com/\" to=\"https://www.umonitor.com/\"/><rule from=\"^http://onelink\\.umonitor\\.com/\" to=\"https://onelink.umonitor.com/\"/></ruleset>", "<ruleset name=\"UN.org\" default_off=\"failed ruleset test\" f=\"UN.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UNC.edu (mixed content)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"UNC.edu-mixedcontent.xml\"><securecookie host=\"^(?:www\\.)?library\\.unc\\.edu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UNC.edu (partial)\" f=\"UNC.edu.xml\"><exclusion pattern=\"^http://(?:(?:cmsp|cs|events|global|help|hr|its|its-commons|research)\\.)?unc\\.edu/+(?!favicon\\.ico|files/|wp-content/|wp-includes/)\"/><exclusion pattern=\"^http://(?:financeadmin|www\\.(?:onecard|pid))\\.unc\\.edu/+(?!DesktopModules/|[Pp]ortals/|UNCImages/|favicon\\.ico|images/|uncimages/|spacer\\.gif)\"/><exclusion pattern=\"^http://library\\.unc\\.edu/+(?!favicon\\.ico|wp-content/|wp-includes/)\"/><securecookie host=\"^(?:connectcarolina|dir|directory|infoporte|itsapps|onecard|onyen|pid|search|selfservice|(?:events|global|help|its2|its-commons)\\.sites|diversity\\.web|webservices)\\.unc\\.edu$\" name=\".+\"/><rule from=\"^http://((?:ccinfo|ccpa|cmsp|connectcarolina(?:www\\.)?cs|dir|directory|diversity|financeadmin|help|hr|infoporte|its|itsapps|its-commons|blogs\\.lib|(?:www\\.)?library|my|obi|(?:www\\.)?onecard|onyen|(?:www\\.)?pid|research|search|selfservice|(?:cs|events|global|help|its2|its-commons)\\.sites|sso|diversity\\.web|webservices|www)\\.)?unc\\.edu/\" to=\"https://$1unc.edu/\"/><rule from=\"^http://calendar\\.lib\\.unc\\.edu/(?=css\\d+|images/)\" to=\"https://unc.libcal.com/\"/></ruleset>", "<ruleset name=\"UNC Lineberger.org\" default_off=\"failed ruleset test\" f=\"UNC_Lineberger.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UNDP.org (partial)\" f=\"UNDP.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"United Nations Population Fund (partial)\" platform=\"mixedcontent\" f=\"UNFPA.org.xml\"><rule from=\"^http://unfpa\\.org/\" to=\"https://www.unfpa.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UNHCR.org (partial)\" default_off=\"mismatched\" f=\"UNHCR.org.xml\"><securecookie host=\"^donate\\.unhcr\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UNICEF-IRC.org (partial)\" f=\"UNICEF-IRC.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UNICEF.fi\" default_off=\"failed ruleset test\" f=\"UNICEF.fi.xml\"><securecookie host=\"^(www\\.)?unicef\\.fi$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UNICEF.or.jp (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"UNICEF.or.jp.xml\"><rule from=\"^http://unicef\\.or\\.jp/\" to=\"https://www.unicef.or.jp/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UNICEF.org.nz (partial)\" f=\"UNICEF.org.nz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UNICEF.co.uk (partial)\" f=\"UNICEF.org.uk.xml\"><rule from=\"^http://unicef\\.org\\.uk/\" to=\"https://www.unicef.org.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UNICEF.org (partial)\" f=\"UNICEF.org.xml\"><rule from=\"^http://unicef\\.org/\" to=\"https://www.unicef.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UNICEF USA.org (partial)\" default_off=\"failed ruleset test\" f=\"UNICEF_USA.org.xml\"><rule from=\"^http://unicefusa\\.org/\" to=\"https://www.unicefusa.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UNIDO.org\" f=\"UNIDO.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UNM.edu (false MCB)\" platform=\"mixedcontent\" f=\"UNM.edu-falsemixed.xml\"><rule from=\"^http://(?:www\\.)?unm\\.edu/\" to=\"https://www.unm.edu/\"/><rule from=\"^http://directory\\.unm\\.edu/\" to=\"https://directory.unm.edu/\"/></ruleset>", "<ruleset name=\"UNM.edu (problematic)\" default_off=\"expired, mismatched, self-signed\" f=\"UNM.edu-problematic.xml\"><rule from=\"^http://as2\\.unm\\.edu/\" to=\"https://as2.unm.edu/\"/><rule from=\"^http://(?:www\\.)?(cars|ece)\\.unm\\.edu/\" to=\"https://www.$1.unm.edu/\"/></ruleset>", "<ruleset name=\"UNM.edu (partial)\" f=\"UNM.xml\"><exclusion pattern=\"^http://(?:directory\\.|www\\.)?unm\\.edu/+(?!~emanage/|common/|favicon\\.ico|images_nl/)\"/><rule from=\"^http://(?:www\\.)?unm\\.edu/\" to=\"https://www.unm.edu/\"/><rule from=\"^http://(?:www\\.)?cs\\.unm\\.edu/\" to=\"https://www.cs.unm.edu/\"/><rule from=\"^http://shea\\.unm\\.edu/+\" to=\"https://srs.unm.edu/\"/><rule from=\"^http://(?:www\\.)?soe\\.unm\\.edu/\" to=\"https://soe.unm.edu/\"/><rule from=\"^http://(abqg|cascade|cio|directory|emanage|fastinfo|learningcentral\\.health|help|hscssl|it|loboalerts|login|lynda|my|netid|help\\.people|pinnacle|police|portalchannels|search|shac|srs|studentinfo|unmjobs|webcore|webmaster)\\.unm\\.edu/\" to=\"https://$1.unm.edu/\"/></ruleset>", "<ruleset name=\"UNODC.org\" f=\"UNODC.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UNSW.edu.au\" f=\"UNSW.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UN Multimedia.org\" f=\"UN_Multimedia.org.xml\"><rule from=\"^http://(control\\.|www\\.)?unmultimedia\\.org/\" to=\"https://$1unmultimedia.org/\"/><rule from=\"^http://downloads\\.unmultimedia\\.org/\" to=\"https://s3.amazonaws.com/downloads.unmultimedia.org/\"/></ruleset>", "<ruleset name=\"UOL.com.br (MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"UOL.com.br-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UOL.com.br (partial)\" default_off=\"failed ruleset test\" f=\"UOL.xml\"><exclusion pattern=\"^http://mais\\.uol\\.com\\.br/+(?!stc/)\"/><securecookie host=\"^\\.uol\\.com\\.br$\" name=\"^RMTRK\\.ID$\"/><securecookie host=\"^(?:cadastro|denuncia|(?:sandbox\\.)?pagseguro)\\.uol\\.com\\.br$\" name=\".+\"/><securecookie host=\"^\\.pagseguro\\.uol\\.com\\.br$\" name=\"^(?:LAST_SERVER_HIT|TS\\w+)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UOregon (Partial!)\" f=\"UOregon.xml\"><exclusion pattern=\"^http://aaeo\\.uoregon\\.edu/+(?!adr(?:$|[?/]))\"/><exclusion pattern=\"^http://ba\\.uoregon\\.edu/+(?!favicon\\.ico|misc/|sites/)\"/><exclusion pattern=\"^http://(?:www\\.)?law\\.uoregon\\.edu/+(?!assets/|favicon\\.ico|wp-content/|wp-includes/)\"/><exclusion pattern=\"^http://sapp\\.uoregon\\.edu/+(?!favicon\\.ico|images/|style\\.css)\"/><securecookie host=\"^(?:(?:academicextension|aim|around|blackboard|blogs|calendar|campusops|\\.casadmin|commencement|conferences|counseling|des|digital|emu|ffp|\\.?geogadvising|gradschool|gradweb|healthcenter|inventory|it|oem|studentlife|sustainablemap|svpe|swat|tembo|uonews|uoresearch|webmail|www)\\.)?uoregon\\.edu$\" name=\".+\"/><rule from=\"^http://((?:aaa|aaeo|academicaffairs|academicextension|aim|around|asap|ba|oregoncis|blackboard|blogs|calendar|campusops|career|casadmin|casit(?:docs|forms|jobs|web)?|(?:videos\\.)?cinema|cmae|commencement|conferences|distanceeducation|counseling|des|digital|duckid|duckweb|english|faprod|ffp|geogadvising|gradschool|gradweb|graphicacy|healthcenter|healthycampus|housing|hr2?|inventory|ir|it|pcs|budgetmotel|brp|library|libweb|lcb|lists|lists-prod|odt|oem|pde|proofpoint|sa-web|sapp|scholarsbank|secureserver|shibboleth|studentlife|sustainablemap|svpe|swat|tembo|wiki|systems\\.cs|uodos|uonews|www2\\.lcb|www\\.(cs|law|lcb)|uoresearch|webmail|www)\\.)?uoregon\\.edu/\" to=\"https://$1uoregon.edu/\"/><rule from=\"^http://(ba|safetyweb)\\.uoregon\\.edu/sites/\" to=\"https://$1.uoregon.edu/sites/\"/><rule from=\"^http://ae\\.uoregon\\.edu/\" to=\"https://academicextension.uoregon.edu/\"/><rule from=\"^http://(?:www\\.)?emu\\.uoregon\\.edu/\" to=\"https://emu.uoregon.edu/\"/><rule from=\"^http://giving\\.uoregon\\.edu/(?=$|\\?)\" to=\"https://securelb.imodules.com/s/1540/development/start.aspx?gid=2&pgid=61\"/><rule from=\"^http://giving\\.uoregon\\.edu/\" to=\"https://securelb.imodules.com/\"/><rule from=\"^http://(www\\.)?law\\.uoregon\\.edu/\" to=\"https://$1law.uoregon.edu/\"/><rule from=\"^http://newsletter\\.uoregon\\.edu/.*\" to=\"https://studentlife.uoregon.edu/\"/><rule from=\"^http://parking\\.uoregon\\.edu/(sites|misc|_images)/\" to=\"https://parking.uoregon.edu/$1/\"/><rule from=\"^http://vpsa\\.uoregon\\.edu/[^?]*\" to=\"https://studentlife.uoregon.edu/\"/></ruleset>", "<ruleset name=\"UPC Česká republika s.r.o.\" default_off=\"failed ruleset test\" f=\"UPC.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UPC.ie (partial)\" default_off=\"failed ruleset test\" f=\"UPC.ie.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UPC.nl (partial)\" default_off=\"failed ruleset test\" f=\"UPC.nl.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://business\\.upc\\.nl/+\" to=\"https://www.upcbusiness.nl/\"/><rule from=\"^http://overupc\\.upc\\.nl/[^?]*\" to=\"https://www.ziggo.nl/klantenservice/administratief/service/accessoires-shop/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UPC Business.nl\" default_off=\"failed ruleset test\" f=\"UPC_Business.nl.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UPI.com (false MCB)\" default_off=\"expired\" platform=\"mixedcontent\" f=\"UPI.com-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UPI.com (partial)\" default_off=\"expired\" f=\"UPI.com.xml\"><exclusion pattern=\"^http://www\\.upi\\.com/+(?!favicon\\.ico|img/|inc/|upi/dw/css/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Universidad de Puerto Rico (partial)\" f=\"UPR.edu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UPS.com (partial)\" f=\"UPS.com.xml\"><exclusion pattern=\"^http://ups.com/$\"/><exclusion pattern=\"^http://www.ups.com/$\"/><securecookie host=\"^www\\.campusship\\.ups\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?ups\\.com/(assets/|favicon\\.ico|img/|styles/|stylesheets/)\" to=\"https://www.ups.com/$2\"/><rule from=\"^http://www(\\.)?apps\\.ups\\.com/\" to=\"https://www$1apps.ups.com/\"/><exclusion pattern=\"^http://www(\\.)?apps\\.ups\\.com/WebTracking/track($|\\?)\"/><rule from=\"^http://(?:www\\.)?campusship\\.ups\\.com/\" to=\"https://www.campusship.ups.com/\"/></ruleset>", "<ruleset name=\"UPU.int (partial)\" f=\"UPU.int.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Úřad průmyslového vlastnictví\" default_off=\"failed ruleset test\" f=\"UPV.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"uPatient\" f=\"UPatient.xml\"><securecookie host=\"^(?:app)?\\.upatient\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"uProd.biz\" default_off=\"missing certificate chain\" f=\"UProd.biz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"uProxy.org\" f=\"UProxy.org.xml\"><securecookie host=\"^\\.uproxy\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?uproxy\\.org/\" to=\"https://www.uproxy.org/\"/></ruleset>", "<ruleset name=\"UQ WiMAX\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"UQWiMAX.xml\"><rule from=\"^http://(?:www\\.)?uqwimax\\.jp/\" to=\"https://www.uqwimax.jp/\"/></ruleset>", "<ruleset name=\"URAC\" f=\"URAC.xml\"><securecookie host=\"^www\\.urac\\.org$\" name=\".+\"/><rule from=\"^http://urac\\.org/\" to=\"https://www.urac.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"URLParser.com\" default_off=\"mismatched\" f=\"URLParser.com.xml\"><rule from=\"^http://(?:www\\.)?urlparser\\.com/\" to=\"https://urlparser.com/\"/></ruleset>", "<ruleset name=\"URX.com (partial)\" default_off=\"failed ruleset test\" f=\"URX.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CBO.gov\" f=\"US-CBO.gov.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HUD.gov (partial)\" f=\"US-Department-of-Housing-and-Urban-Development.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?hud\\.gov/\" to=\"https://portal.hud.gov/portal/page/portal/HUD\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"US Department of Veterans Affairs\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"US-Dept-of-Veterans-Affairs.xml\"><exclusion pattern=\"^http://www\\.va\\.gov/kids(?:$|/)\"/><securecookie host=\"^www\\.(?:ebenefits|vendorportal\\.ecms|vis\\.fsc|1010ez\\.med|myhealth|pay|tms|valu|vba|visn23?)\\.va\\.gov$\" name=\".+\"/><securecookie host=\"^\\.?(?:(?:pki|register)\\.eauth|iris|uploads|www4)\\.va\\.gov$\" name=\".+\"/><securecookie host=\"^(?:\\.|www\\.)?(?:fasttrack|gibill|move|vacanteen|vacareers|voa)\\.va\\.gov$\" name=\".+\"/><securecookie host=\"^www\\.vip\\.vetbiz\\.gov$\" name=\".+\"/><securecookie host=\"^(?:\\.|www\\.)?insurance|(?:tas|vabenefits|vaonce|vip)\\.vba\\.va\\.gov$\" name=\".+\"/><securecookie host=\"^(?:\\.|www\\.)?(?:assessments|login|mst|my|users|vct)\\.aforvets\\.va\\.gov$\" name=\".+\"/><securecookie host=\"^www\\.va\\.gov$\" name=\".+\"/><rule from=\"^https?://(?:www\\.)?va\\.gov/opa/fact/index\\.asp(?:$|\\?)\" to=\"https://www.va.gov/opa/publications/factsheets.asp\"/><rule from=\"^https?://(?:www\\.)?va\\.gov/(?:cbo|CBO)/rates\\.asp(?:$|\\?)\" to=\"https://www.va.gov/CBO/apps/rates/index.asp\"/><rule from=\"^http://www\\.(ebenefits|vendorportal\\.ecms|vis\\.fsc|1010ez\\.med|myhealth|pay|tms|valu|vba|visn23?)\\.va\\.gov/\" to=\"https://www.$1.va.gov/\"/><rule from=\"^http://(iris|uploads|www4)\\.va\\.gov/\" to=\"https://$1.va.gov/\"/><rule from=\"^http://(?:www\\.)?(fasttrack|gibill|move|vacanteen|vacareers|voa)\\.va\\.gov/\" to=\"https://www.$1.va.gov/\"/><rule from=\"^http://(?:www\\.)?vip\\.vetbiz\\.gov/\" to=\"https://www.vip.vetbiz.gov/\"/><rule from=\"^http://(?:www\\.)?(insurance|(?:(?:assessments|login|mst|my|users|vct)\\.)?vaforvets|(?:tas|vabenefits|vaonce|vip)\\.vba)\\.va\\.gov/\" to=\"https://$1.va.gov/\"/><rule from=\"^http://(?:www1?)\\.va\\.gov/\" to=\"https://www.va.gov/\"/></ruleset>", "<ruleset name=\"US-Ignite.org\" f=\"US-Ignite.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"U.S. Immigration and Customs Enforcement\" f=\"US-Immigration-and-Customs-Enforcement.xml\"><securecookie host=\"^.*\\.ice\\.gov$\" name=\".*\"/><rule from=\"^http://ice\\.gov/\" to=\"https://www.ice.gov/\"/><rule from=\"^http://www\\.ice\\.gov/\" to=\"https://www.ice.gov/\"/></ruleset>", "<ruleset name=\"IC3.gov\" f=\"US-Internet-Crime-Complaint-Ctr.xml\"><securecookie host=\".\\.ic3\\.gov$\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SEC.gov\" f=\"US-Securities-and-Exchange-Commission.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"US Selective Service System\" f=\"US-Selective-Service-System.xml\"><securecookie host=\"^(?:.*\\.)?sss\\.gov$\" name=\".+\"/><rule from=\"^http://sss\\.gov/\" to=\"https://www.sss.gov/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"US Social Forum (partial)\" default_off=\"failed ruleset test\" f=\"US-Social-Forum.xml\"><rule from=\"^http://community\\.ussf2010\\.org/\" to=\"https://community.ussf2010.org/\"/></ruleset>", "<ruleset name=\"US government (mismatches)\" default_off=\"mismatch, self-signed\" f=\"US-government-mismatches.xml\"><rule from=\"^http://democrats\\.intelligence\\.house\\.gov/(profiles|sites)/\" to=\"https://democrats.intelligence.house.gov/$1/\"/><rule from=\"^http://(?:(?:stiesx2-)?ntrs(?:\\.larc)?)\\.nasa\\.gov/\" to=\"https://stiesx2-ntrs.larc.nasa.gov/\"/></ruleset>", "<ruleset name=\"US government (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"US-government.xml\"><securecookie host=\"^safeharbor\\.export\\.gov$\" name=\".*\"/><securecookie host=\"^(?:.*\\.)?census\\.gov$\" name=\".*\"/><securecookie host=\"^intelligence\\.house\\.gov$\" name=\".*\"/><securecookie host=\"^wtr\\.nhtsa\\.gov$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?(census|genome)\\.gov/\" to=\"https://www.$1.gov/\"/><rule from=\"^http://intelligence\\.house\\.gov/\" to=\"https://intelligence.house.gov/\"/><rule from=\"^http://wtr\\.nhtsa\\.gov/\" to=\"https://wtr.nhtsa.gov/\"/><rule from=\"^http://postalinspectors\\.uspis\\.gov/\" to=\"https://postalinspectors.uspis.gov/\"/></ruleset>", "<ruleset name=\"US military (partial)\" default_off=\"self-signed\" f=\"US-military.xml\"><securecookie host=\"^www\\.pica\\.army\\.mil$\" name=\".*\"/><securecookie host=\"^apps\\.mhf\\.dod\\.mil$\" name=\".*\"/><securecookie host=\"^reg\\.dtic\\.mil$\" name=\".*\"/><securecookie host=\"^(?:.*\\.)?dodlive\\.mil$\" name=\".*\"/><rule from=\"^http://www\\.pica\\.army\\.mil/\" to=\"https://www.pica.army.mil/\"/><rule from=\"^http://(?:www\\.)?defensetravel\\.dod\\.mil/\" to=\"https://www.defensetravel.dod.mil/\"/><rule from=\"^http://apps\\.mhf\\.dod\\.mil/\" to=\"https://apps.mhf.dod.mil/\"/><rule from=\"^http://dodlive\\.mil/\" to=\"https://www.dodlive.mil/\"/><rule from=\"^http://([\\w\\-]+)\\.dodlive\\.mil/\" to=\"https://$1.dodlive.mil/\"/><rule from=\"^http://reg\\.dtic\\.mil/\" to=\"https://reg.dtic.mil/\"/><rule from=\"^http://usarmy\\.(?:hs|vo)\\.llnwd\\.net/\" to=\"https://usarmy.hs.llnwd.net/\"/><rule from=\"^http://(?:www\\.)?nrl\\.navy\\.mil/\" to=\"https://www.nrl.navy.mil/\"/></ruleset>", "<ruleset name=\"USA.gov (partial)\" default_off=\"failed ruleset test\" f=\"USA.gov.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"USA Today.com (mismatched)\" default_off=\"mismatched\" platform=\"mixedcontent\" f=\"USA_Today.com-problematic.xml\"><rule from=\"^http://(?:www\\.)?usatoday\\.com/\" to=\"https://www.usatoday.com/\"/><rule from=\"^http://static\\.usatoday\\.com/\" to=\"https://static.usatoday.com/\"/></ruleset>", "<ruleset name=\"USA Today.com (partial)\" default_off=\"failed ruleset test\" f=\"USA_Today.xml\"><rule from=\"^http://onlinestore\\.usatoday\\.com/Net/\" to=\"https://www.nexternal.com/Net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"USAlliance\" f=\"USAlliance.xml\"><securecookie host=\"^(?:www)?\\.usalliance\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"USAspending.gov\" default_off=\"failed ruleset test\" f=\"USAspending.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"USB.org (partial)\" f=\"USB.org.xml\"><rule from=\"^http://(?:www\\.)?usb\\.org/(?=images/|kstyles/)\" to=\"https://www.usb.org/\"/></ruleset>", "<ruleset name=\"USBank\" f=\"USBank.xml\"><securecookie host=\"^(?:(?:access|mm?|ms2?|onlinebanking|trustnowessentials|wwws?)\\.)?usbank\\.com$\" name=\".+\"/><rule from=\"^http://((?:access|espanol|mm?|ms2?|onlinebanking|trustnowessentials|wwws?)\\.)?usbank\\.com/\" to=\"https://$1usbank.com/\"/></ruleset>", "<ruleset name=\"USC.edu (false MCB)\" platform=\"mixedcontent\" f=\"USC.edu-falsemixed.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"USConstitution.net (partial)\" f=\"USConstitution.net.xml\"><rule from=\"^http://cdn(?:-7)?\\.usconstitution\\.net/\" to=\"https://d3s15m2pa5pup1.cloudfront.net/\"/></ruleset>", "<ruleset name=\"USDA-ARS\" default_off=\"missing certificate chain\" f=\"USDA-ARS.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"USENIX\" f=\"USENIX.xml\"><rule from=\"^http://www\\.usenix\\.org/\" to=\"https://www.usenix.org/\"/><rule from=\"^http://usenix\\.org/\" to=\"https://www.usenix.org/\"/></ruleset>", "<ruleset name=\"USE OTR Project.org\" f=\"USE_OTR_Project.org.xml\"><rule from=\"^http://www\\.useotrproject\\.org/\" to=\"https://www.otr.im/\"/></ruleset>", "<ruleset name=\"USF CA.edu (partial)\" f=\"USF_CA.edu.xml\"><securecookie host=\"^(?:web\\.|www\\.)?usfca\\.edu$\" name=\".+\"/><rule from=\"^http://(web\\.|www\\.)?usfca\\.edu/\" to=\"https://$1usfca.edu/\"/><rule from=\"^http://hashtag\\.usfca\\.edu/resources/\" to=\"https://www.scoop.it/resources/\"/></ruleset>", "<ruleset name=\"USFreeads (partial)\" f=\"USFreeads.xml\"><rule from=\"^http://(www\\.)?usfreeads\\.com/(favicon\\.ico|files/|modules/|uploads/)\" to=\"https://$1usfreeads.com/$2\"/></ruleset>", "<ruleset name=\"USMA.edu (partial)\" f=\"USMA.edu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"USNI.org (false MCB)\" platform=\"mixedcontent\" f=\"USNI.org-problematic.xml\"><rule from=\"^http://(blog|news)\\.usni\\.org/\" to=\"https://$1.usni.org/\"/></ruleset>", "<ruleset name=\"USNI.org (partial)\" f=\"USNI.org.xml\"><exclusion pattern=\"^http://(?:blog|news)\\.usni\\.org/+(?!\\?mcsf_action=|favicon\\.ico|mc_news\\.css|wp-content/|wp-includes/)\"/><rule from=\"^http://(?:www\\.)?usni\\.org/(?=(?:about|cart|membership|user)(?:$|[?/])|sites/)\" to=\"https://www.usni.org/\"/><rule from=\"^http://(blog|cdn\\d+|news)\\.usni\\.org/\" to=\"https://$1.usni.org/\"/></ruleset>", "<ruleset name=\"USNWC.edu (partial)\" f=\"USNWC.edu.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"USP.br (partial)\" f=\"USP.br.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"USPS.com\" f=\"USPS.xml\"><securecookie host=\"^(?:.*\\.)?usps\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?usps\\.com/\" to=\"https://www.usps.com/\"/><rule from=\"^http://(about|cns|fast|gateway|gateway-cat|moversguide|my|poboxes|sdc|shop|store|tools)\\.usps\\.com/\" to=\"https://$1.usps.com/\"/></ruleset>", "<ruleset name=\"USRowing (partial)\" f=\"USRowing.xml\"><rule from=\"^http://(?:www\\.)?usrowing\\.org/(App_Themes/|jquery-1.4.2\\.js|Libraries/|PopCalendar2008/CSS/|(?:Script|Web)Resource\\.axd|[sS]itefinity/)\" to=\"https://www.usrowing.org/$1\"/></ruleset>", "<ruleset name=\"USTC.edu.cn (partial)\" f=\"USTC.edu.cn.xml\"><rule from=\"^http://(bbs|servers\\.blog|lug|fonts\\.lug|fonts-gstatic\\.lug|mirrors)\\.ustc\\.edu\\.cn/\" to=\"https://$1.ustc.edu.cn/\"/></ruleset>", "<ruleset name=\"USUHS.edu (partial)\" f=\"USUHS.edu.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"USUHS.mil\" f=\"USUHS.mil.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"U.S. Citizenship and Immigration Services (partial)\" f=\"US_Citizenship_and_Immigration_Services.xml\"><exclusion pattern=\"^http://infopass\\.uscis\\.gov/(?:$|css/infopass2\\.css)\"/><rule from=\"^http://blog\\.uscis\\.gov/favicon\\.ico\" to=\"https://www.blogger.com/favicon.ico\"/><rule from=\"^http://(egov|infopass)\\.uscis\\.gov/\" to=\"https://$1.uscis.gov/\"/></ruleset>", "<ruleset name=\"US Courts.gov (partial)\" platform=\"mixedcontent\" f=\"US_Courts.gov.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"US Currency.gov\" f=\"US_Currency.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"US Cyber Challenge.org\" f=\"US_Cyber_Challenge.org.xml\"><rule from=\"^http://uscyberchallenge\\.org/\" to=\"https://www.uscyberchallenge.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DOC.gov (partial)\" f=\"US_Department_of_Commerce.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Treas.gov (partial)\" f=\"US_Department_of_the_Treasury.xml\"><securecookie host=\"^www\\.ots\\.treas\\.gov$\" name=\".+\"/><rule from=\"^http://ots\\.treas\\.gov/\" to=\"https://www.ots.treas.gov/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"U.S. Fish and Wildlife Service (partial)\" f=\"US_Fish_and_Wildlife_Service.xml\"><rule from=\"^http://(?:www\\.)?fws\\.gov/\" to=\"https://www.fws.gov/\"/></ruleset>", "<ruleset name=\"U.S. Geological Survey\" platform=\"mixedcontent\" f=\"US_Geological_Survey.xml\"><rule from=\"^http://(answers|nccwsc|water)\\.usgs\\.gov/\" to=\"https://$1.usgs.gov/\"/></ruleset>", "<ruleset name=\"US Mission.gov (partial)\" f=\"US_Mission.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"US Nautic (partial)\" f=\"US_Nautic.xml\"><rule from=\"^http://(www\\.)?usnautic\\.com/([cC]ontent/|en/customer/info|en/login|Plugins/|Themes/)\" to=\"https://$1usnautic.com/$2\"/></ruleset>", "<ruleset name=\"U.S. Patent and Trademark Office (partial)\" f=\"US_Patent_and_Trademark_Office.xml\"><securecookie host=\"^.+\\.uspto\\.gov$\" name=\".+\"/><rule from=\"^http://(efs|oedci|ramps|tsdr)\\.uspto\\.gov/\" to=\"https://$1.uspto.gov/\"/><rule from=\"^http://t(?:ar|d)r\\.uspto\\.gov/(?:\\?.*)?$\" to=\"https://tdsr.uspto.gov/\"/></ruleset>", "<ruleset name=\"US Pirates.org\" default_off=\"missing certificate chain\" f=\"US_Pirates.org.xml\"><securecookie host=\".+\\.uspirates\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"State.gov (partial)\" default_off=\"failed ruleset test\" f=\"US_State_Department.xml\"><exclusion pattern=\"^http://(?:[^./]+\\.){2,}history\\.state\\.gov/\"/><securecookie host=\"^\\.\" name=\"^(?:__cfduid$|_gat?$|_gat_|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(pmddtc\\.)?state\\.gov/\" to=\"https://www.$1state.gov/\"/><rule from=\"^http://www\\.(adoption|careers|history|infocentral|oig|passports|travel|usembassy|usvisas|yali)\\.state\\.gov/\" to=\"https://$1.state.gov/\"/><rule from=\"^http://campususa\\.state\\.gov/\" to=\"https://educationusa.state.gov/\"/><rule from=\"^http://ghaznitowers\\.state\\.gov/.*\" to=\"https://eca.state.gov/files/bureau/ghazni-towers/index.html\"/><rule from=\"^http://ttip\\.state\\.gov/[^?]*\" to=\"https://useu.usmission.gov/ttip.html\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"US UK ITA.org\" f=\"US_UK_ITA.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UT.ee (partial)\" default_off=\"failed ruleset test\" f=\"UT.ee.xml\"><securecookie host=\"^(?:auth|courses|owa)\\.cs\\.ut\\.ee$\" name=\".+\"/><rule from=\"^http://arvutiabi\\.ut\\.ee/.*\" to=\"https://wiki.ut.ee/display/AA/Arvutiabi\"/><rule from=\"^http://www\\.sisu\\.ut\\.ee/\" to=\"https://sisu.ut.ee/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UTSanDiego.com (partial)\" f=\"UTSanDiego.com.xml\"><securecookie host=\"^iservice\\.uniontrib\\.com$\" name=\".+\"/><rule from=\"^http://iservice\\.uniontrib\\.com/\" to=\"https://iservice.uniontrib.com/\"/><rule from=\"^http://(?:www\\.)?utsandiego\\.com/accounts\" to=\"https://www.utsandiego.com/accounts\"/><rule from=\"^http://(dealmedia|media)\\.utsandiego\\.com/\" to=\"https://$1.utsandiego.com/\"/></ruleset>", "<ruleset name=\"UT Dallas.edu (problematic)\" default_off=\"mismatched\" f=\"UT_Dallas.edu-problematic.xml\"><rule from=\"^http://(catalog|honors)\\.utdallas\\.edu/\" to=\"https://$1.utdallas.edu/\"/></ruleset>", "<ruleset name=\"UTwente.nl (partial)\" f=\"UTwente.nl.xml\"><securecookie host=\"^xs\\.utwente\\.nl$\" name=\".+\"/><rule from=\"^http://((?:webhare(?:\\.civ)?|www|www\\.abacus)\\.)?utwente\\.nl/\" to=\"https://$1utwente.nl/\"/><rule from=\"^http://(?:outlook\\.ad|autodiscover(?:\\.\\w+)?|xs|xs2010)\\.utwente\\.nl/.*\" to=\"https://xs.utwente.nl/owa\"/></ruleset>", "<ruleset name=\"UU.nl (partial)\" f=\"UU.nl.xml\"><securecookie host=\"^(?:caracal|(?:4thfloor|betaplanner|betaplannerstage|caracal|caracalstage|www\\.projects|uppersurvey|webfarm)\\.science)\\.uu\\.nl$\" name=\".+\"/><rule from=\"^http://(caracal|wwwsec\\.cs|(?:4thfloor|babaji|betaplanner|betaplannerstage|caracal|caracalstage|fa203|www\\.projects|testweb|upper|uppersurvey|webfarm|webstats)\\.science)\\.uu\\.nl/\" to=\"https://$1.uu.nl/\"/><rule from=\"^http://w(?:eb|ebstage|ww)\\.science\\.uu\\.nl/\" to=\"https://www.science.uu.nl/\"/></ruleset>", "<ruleset name=\"UU.se\" default_off=\"failed ruleset test\" f=\"UU.se.xml\"><securecookie host=\"^www\\.it\\.uu\\.se$\" name=\".+\"/><rule from=\"^http://it\\.uu\\.se/\" to=\"https://www.it.uu.se/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UVM.edu (partial)\" default_off=\"failed ruleset test\" f=\"UVM.edu.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UVic.ca (partial)\" f=\"UVic.ca.xml\"><rule from=\"^http://(?:www\\.)?uvic\\.ca/\" to=\"https://www.uvic.ca/\"/><rule from=\"^http://(www\\.)?ece\\.uvic\\.ca/~\" to=\"https://$1ece.uvic.ca/~\"/></ruleset>", "<ruleset name=\"UW.edu (partial)\" f=\"UW.edu.xml\"><securecookie host=\"^\\.\" name=\"^_gat$\"/><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.tacoma\\.uw\\.edu$\" name=\".\"/><rule from=\"^http://honors\\.uw\\.edu/+\" to=\"https://depts.washington.edu/uwhonors/\"/><rule from=\"^http://tacoma\\.uw\\.edu/\" to=\"https://www.tacoma.uw.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UWB.edu (partial)\" default_off=\"failed ruleset test\" f=\"UWB.edu.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://uwb\\.edu/\" to=\"https://www.uwb.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UWinnipeg.ca (partial)\" f=\"UWinnipeg.ca.xml\"><rule from=\"^http://((?:ctlt-resources|ion|nexus|webadv|ww2|www)\\.)?uwinnipeg\\.ca/\" to=\"https://$1uwinnipeg.ca/\"/><rule from=\"^http://indigenous\\.uwinnipeg\\.ca/+(?:\\?.*)?$\" to=\"https://www.uwinnipeg.ca/index/indigenous-programs-services\"/></ruleset>", "<ruleset name=\"U Mag.ca\" default_off=\"failed ruleset test\" f=\"U_Mag.ca.xml\"><rule from=\"^http://(?:www\\.)?umag\\.ca/[^?]*\" to=\"https://www.ucalgarymag.ca/\"/></ruleset>", "<ruleset name=\"ua-hosting.com.ua\" default_off=\"failed ruleset test\" f=\"Ua-hosting.com.ua.xml\"><securecookie host=\"^ua-hosting\\.com\\.ua$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ua-hosting\\.com\\.ua/\" to=\"https://ua-hosting.com.ua/\"/></ruleset>", "<ruleset name=\"University of Akron (partial)\" f=\"Uakron.edu.xml\"><rule from=\"^http://(www\\.|my\\.|zipline\\.|id\\.|support\\.|supportchat\\.|maps\\.|auth\\.|library\\.|ece\\.|www\\.lawalum\\.|wayne\\.|wiep\\.|lists\\.|lawscout\\.|ztv\\.|eohs\\.|springboard\\.|lawclerk\\.|blogs\\.)?uakron\\.edu/\" to=\"https://$1uakron.edu/\"/></ruleset>", "<ruleset name=\"Universidad de Almería\" default_off=\"failed ruleset test\" f=\"Ual.es.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UbCDN.co\" f=\"UbCDN.co.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UbNt.com (partial)\" f=\"UbNt.com.xml\"><securecookie host=\"^\\.ubnt\\.com$\" name=\"^VISITORID$\"/><securecookie host=\"^(?:community|\\.store)\\.ubnt\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UberEnt.com (partial)\" f=\"UberEnt.com.xml\"><securecookie host=\"^forums\\.uberent\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UberMedia.com\" default_off=\"failed ruleset test\" f=\"UberMedia.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UberTags (mismatches)\" default_off=\"mismatched\" f=\"UberTags-mismatches.xml\"><rule from=\"^http://(?:www\\.)?usertags(?:\\.jeremybieger)\\.com/(images|wp-content)/\" to=\"https://ubertags.jeremybieger.com/~jeremybi/ubertags/$1/\"/><rule from=\"^http://cdn\\.usertags\\.com/\" to=\"https://ubertags.jeremybieger.com/~jeremybi/ubertags/\"/></ruleset>", "<ruleset name=\"UberTags (partial)\" f=\"UberTags.xml\"><securecookie host=\"^console\\.ubertags\\.com$\" name=\".*\"/><rule from=\"^http://(\\w+)\\.ubertags\\.com/\" to=\"https://$1.ubertags.com/\"/></ruleset>", "<ruleset name=\"Uber.com\" f=\"Uber_Technologies.xml\"><securecookie host=\"^\\.\" name=\"^__qca$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://blog\\.uber\\.com/+\" to=\"https://newsroom.uber.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Uberspace\" f=\"Uberspace.xml\"><securecookie host=\"^(?:.+\\.)?uberspace\\.de$\" name=\".+\"/><rule from=\"^http://(?:helium\\.|www\\.)?uberspace\\.de/\" to=\"https://uberspace.de/\"/><rule from=\"^http://((?:[\\w-]+\\.)?(?:aries|cetus|menkar)|[\\w-]+\\.helium)\\.uberspace\\.de/\" to=\"https://$1.uberspace.de/\"/></ruleset>", "<ruleset name=\"Ubisoft Entertainment (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Ubisoft-Entertainment.xml\"><exclusion pattern=\"^http://(?:forums|www)\\.\"/><securecookie host=\".*\\.ubi\\.com$\" name=\".+\"/><rule from=\"^http://static(1|3|4|6|7|9|10|11|13|14|17)\\.cdn\\.ubi\\.com/\" to=\"https://ubistatic$1-a.akamaihd.net/\"/><rule from=\"^http://static(7|15|16)\\.ubi\\.com/\" to=\"https://s3.amazonaws.com/static$1.ubi.com/\"/><rule from=\"^http://(cs|engineroom|hbe|secure|static\\d(?:\\.cdn)?|support|tools|ubibar|uplay|uts|legal)\\.ubi\\.com/\" to=\"https://$1.ubi.com/\"/></ruleset>", "<ruleset name=\"Ubisoft Group\" default_off=\"failed ruleset test\" f=\"Ubisoft_Group.com.xml\"><securecookie host=\"^\\.ubisoftgroup\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?ubisoftgroup\\.com/\" to=\"https://$1ubisoftgroup.com/\"/><rule from=\"^http://common\\.ubisoftgroup\\.com/\" to=\"https://www.ubisoftgroup.com/comsite_common/\"/></ruleset>", "<ruleset name=\"ubrr.ru (partial)\" default_off=\"failed ruleset test\" f=\"Ubrr.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ubuntu-CN\" f=\"Ubuntu-CN.xml\"><exclusion pattern=\"^http://linux\\.ubuntu\\.(com|org)\\.cn/$\"/><rule from=\"^http://(www\\.|forum\\.|linux\\.|paste\\.|wiki\\.)?ubuntu\\.org\\.cn/\" to=\"https://$1ubuntu.com.cn/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ubuntu-DE.org\" f=\"Ubuntu-DE.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ubuntu-EU.org\" f=\"Ubuntu-EU.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ubuntu-FR.org (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Ubuntu-FR.org-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ubuntu-FR.org (partial)\" f=\"Ubuntu-FR.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ubuntu-MATE.Boutique\" f=\"Ubuntu-MATE.Boutique.xml\"><securecookie host=\"^\\.ubuntu-mate\\.boutique$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ubuntu-MATE.org\" f=\"Ubuntu-MATE.org.xml\"><securecookie host=\"^\\.ubuntu-mate\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ubuntu-NL.org\" f=\"Ubuntu-NL.org.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ubuntu-TR.net (partial)\" f=\"Ubuntu-TR.net.xml\"><securecookie host=\"^forum\\.ubuntu-tr\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ubuntu.com (partial)\" default_off=\"failed ruleset test\" f=\"Ubuntu.xml\"><securecookie host=\".\" name=\"^_(?:_utm|gat?$)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://shop\\.ubuntu\\.com/\" to=\"https://shop.canonical.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UbuntuUsers.de\" default_off=\"failed ruleset test\" f=\"UbuntuUsers.de.xml\"><securecookie host=\"^(?:.*\\.)?ubuntuusers\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ubuntu Forums.org\" f=\"Ubuntu_Forums.org.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://www\\.ubuntuforums\\.org/\" to=\"https://ubuntuforums.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ubuntu Linux.jp\" default_off=\"failed ruleset test\" f=\"Ubuntu_Linux.jp.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ubuntu MATE.Community\" f=\"Ubuntu_MATE.Community.xml\"><securecookie host=\"^\\.?ubuntu-mate\\.community$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ubuntugnome.org\" f=\"Ubuntugnome.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ubuntustudio.org\" f=\"Ubuntustudio.org.xml\"><rule from=\"^http://www\\.ubuntustudio\\.org/\" to=\"https://ubuntustudio.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ucommand.com\" f=\"Ucommand.com.xml\"><securecookie host=\"^www\\.ucommand\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ucuzu.com\" default_off=\"mismatched\" f=\"Ucuzu.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Udacity.com (mismatches)\" default_off=\"mismatched\" f=\"Udacity.com-mismatches.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Udacity.com (partial)\" default_off=\"failed ruleset test\" f=\"Udacity.com.xml\"><securecookie host=\"^\\.udacity\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Udemy.com (partial)\" f=\"Udemy.com.xml\"><securecookie host=\"^(?:about|blog|teach|www)?\\.udemy\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Universidad Distrital (partial)\" default_off=\"failed ruleset test\" f=\"Udistrital.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Uefidk.com\" default_off=\"failed ruleset test\" f=\"Uefidk.com.xml\"><rule from=\"^http://(?:www\\.)?uefidk\\.com/\" to=\"https://www.uefidk.com/\"/></ruleset>", "<ruleset name=\"Uformia.com\" f=\"Uformia.com.xml\"><securecookie host=\"^(www\\.)?uformia\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ugandan government (partial)\" default_off=\"self-signed\" f=\"Ugandan-government.xml\"><securecookie host=\"^(?:.*\\.)?jlos\\.go\\.ug$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?jlos\\.go\\.ug/\" to=\"https://jlos.go.ug/\"/></ruleset>", "<ruleset name=\"Ugenr.dk\" f=\"Ugenr.dk.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ugly Mugs.ie\" f=\"Ugly_Mugs.ie.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Uguu.se\" f=\"Uguu.se.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"uhhospitals.org (partial)\" f=\"Uhhospitals.org.xml\"><rule from=\"^http://(www\\.)?uhhospitals\\.org/(_cassette/|favicon\\.ico|(?:.+/)?~/media/)\" to=\"https://$1uhhospitals.org/$2\"/></ruleset>", "<ruleset name=\"Uhrzeit.org (partial)\" default_off=\"failed ruleset test\" f=\"Uhrzeit.org.xml\"><securecookie host=\"^\\.(?:atomic-clock\\.org\\.uk|la-hora\\.org)$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?atomic-clock\\.org\\.uk/\" to=\"https://www.atomic-clock.org.uk/\"/><rule from=\"^http://(?:www\\.)?la-hora\\.org/\" to=\"https://www.la-hora.org/\"/><rule from=\"^http://(www\\.)?uhrzeit\\.org/(anmeldung|bilder|img|shop|sys)/\" to=\"https://www.uhrzeit.org/$2/\"/><rule from=\"^http://watches\\.uhrzeit\\.org/(?=bilder/|img/|shop/|sys/)\" to=\"https://watches.uhrzeit.org/\"/></ruleset>", "<ruleset name=\"uhub.org\" default_off=\"expired\" f=\"Uhub.xml\"><securecookie host=\"^(?:www\\.)?uhub\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ukash.com\" default_off=\"failed ruleset test\" f=\"Ukash.com.xml\"><securecookie host=\"^(?:direct\\.|mycard\\.|www\\.)?ukash\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UkashCardSATIS\" default_off=\"failed ruleset test\" f=\"UkashCardSATIS.xml\"><securecookie host=\"^\\.ukashcardsatis\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ukeer.de (partial)\" f=\"Ukeer.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ukr.net\" f=\"Ukr.net.xml\"><rule from=\"^http://((?:counter|mail|www)\\.)?ukr\\.net/\" to=\"https://$1ukr.net/\"/></ruleset>", "<ruleset name=\"Ukrnames.com\" default_off=\"failed ruleset test\" f=\"Ukrnames.com.xml\"><securecookie host=\"^support\\.ukrnames\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"uksrv.co.uk\" f=\"Uksrv.co.uk.xml\"><securecookie host=\".+\\.uksrv\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://ceres\\.uksrv\\.co\\.uk(:2087)?/\" to=\"https://ceres.uksrv.co.uk$1/\"/><rule from=\"^http://eris\\.uksrv\\.co\\.uk(:2096)?/\" to=\"https://eris.uksrv.co.uk$1/\"/><rule from=\"^http://pluto\\.uksrv\\.co\\.uk/\" to=\"https://pluto.uksrv.co.uk/\"/></ruleset>", "<ruleset name=\"Uline.com (partial)\" f=\"Uline.com.xml\"><rule from=\"^http://(?:www\\.)?uline\\.com/(?=favicon\\.ico|FilesCombiner\\.ashx|[iI]mages/|Product/ContainerBrowseListing\\.aspx|(?:Script|Web)Resource\\.axd|Signin/|WebServices/)\" to=\"https://www.uline.com/\"/></ruleset>", "<ruleset name=\"Ulozenka.cz\" f=\"Ulozenka.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ULPGC.es\" default_off=\"failed ruleset test\" f=\"Ulpgc.es.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ulteo.com\" default_off=\"failed ruleset test\" f=\"Ulteo.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ultimate Boot CD.com (partial)\" default_off=\"failed ruleset test\" f=\"Ultimate_Boot_CD.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ultimate Poker\" default_off=\"failed ruleset test\" f=\"Ultimate_Poker.xml\"><securecookie host=\"^(?:upnvportal\\.)?ultimatepoker\\.com$\" name=\".+\"/><rule from=\"^http://(?:(upnvportal\\.)|www\\.)?ultimatepoker\\.com/\" to=\"https://$1ultimatepoker.com/\"/></ruleset>", "<ruleset name=\"UltraDNS.com (partial)\" f=\"UltraDNS.com.xml\"><securecookie host=\"^portal\\.ultradns\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UltraDNS\" f=\"UltraDNS.xml\"><securecookie host=\"^www\\.ultradns\\.net$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?ultradns\\.(?:com|info)/$\" to=\"https://www.neustar.biz/\"/><rule from=\"^http://(?:www\\.)?ultradns\\.net/\" to=\"https://www.ultradns.net/\"/></ruleset>", "<ruleset name=\"Ultra HDTV\" platform=\"mixedcontent\" f=\"UltraHDTV.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UltraTools.com\" default_off=\"failed ruleset test\" f=\"UltraTools.com.xml\"><securecookie host=\"^www\\.ultratools\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ultra Facil.com.br\" default_off=\"plaintext reply\" f=\"Ultra_Facil.com.br.xml\"><securecookie host=\"^\\.ultrafacil\\.com\\.br$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ultrabug.fr (false MCB)\" platform=\"mixedcontent\" f=\"Ultrabug.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ultrasurf.us\" f=\"Ultrasurf.us.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ulule\" f=\"Ulule.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Uma.es\" f=\"Uma.es.xml\"><rule from=\"^http://(?:www\\.)?([^/:@\\.]*)\\.cv\\.uma\\.es/\" to=\"https://$1.cv.uma.es/\"/><rule from=\"^http://www\\.sci\\.uma\\.es/\" to=\"https://www.sci.uma.es/\"/><rule from=\"^http://web\\.satd\\.uma\\.es/\" to=\"https://web.satd.uma.es/\"/></ruleset>", "<ruleset name=\"Umano.me\" default_off=\"failed ruleset test\" f=\"Umano.me.xml\"><securecookie host=\"^(?:www\\.)?umano\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Umbel.com\" f=\"Umbel.com.xml\"><securecookie host=\"^(?:audience|www)\\.umbel\\.com$\" name=\".+\"/><rule from=\"^http://umbel\\.com/\" to=\"https://www.umbel.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Umea Hackerspace.se (partial)\" f=\"Umea_Hackerspace.se.xml\"><securecookie host=\"^umeahackerspace\\.se$\" name=\".+\"/><securecookie host=\"^social\\.umeahackerspace\\.se$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Umeå University (partial)\" f=\"Umea_University.xml\"><exclusion pattern=\"^http://(?:www\\.)?(?:student\\.)?umu\\.se/(?!digitalAssets/|DownloadAsset\\.action(?:$|\\?)|static/)\"/><securecookie host=\"^(?:(?:www\\.)?anstalld|www\\.cambro|cas|(?:www\\.)?servicedesk\\.its)\\.umu\\.se$\" name=\".+\"/><rule from=\"^http://((?:www\\.cambro|cas|intra\\.ub|www)\\.?)umu\\.se/\" to=\"https://$1umu.se/\"/><rule from=\"^http://(www\\.)?(anstalld|servicesdesk\\.its|student)\\.umu\\.se/\" to=\"https://$1$2.umu.se/\"/></ruleset>", "<ruleset name=\"Umweltbundesamt\" f=\"Umweltbundesamt.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"unPAC\" default_off=\"refused\" f=\"UnPAC.xml\"><securecookie host=\"^www\\.unpac\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Unanimis (problematic)\" default_off=\"expired, mismatch, self-signed\" f=\"Unanimis-problematic.xml\"><rule from=\"^http://(?:www\\.)?unanimis\\.co\\.uk/\" to=\"https://www.unanimis.co.uk/\"/></ruleset>", "<ruleset name=\"Unanimis (partial)\" f=\"Unanimis.xml\"><rule from=\"^http://(a|c|d|ssl-a)\\.unanimis\\.co\\.uk/\" to=\"https://$1.unanimis.co.uk/\"/></ruleset>", "<ruleset name=\"Unbit.it (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Unbit.it.xml\"><securecookie host=\".+\\.unbit\\.it$\" name=\".*\"/><rule from=\"^http://www\\.(projects|wiki)\\.unbit\\.it/\" to=\"https://$1.unbit.it/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Unblock-Us.com (partial)\" f=\"Unblock-Us.com.xml\"><securecookie host=\"^(?:affiliate|portal)\\.unblock-us\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?unblock-us\\.com/(?=css/|favicon\\.ico|images/)\" to=\"https://d2z2eomnanw2yj.cloudfront.net/\"/><rule from=\"^http://(affiliate|portal)\\.unblock-us\\.com/\" to=\"https://$1.unblock-us.com/\"/><rule from=\"^http://support\\.unblock-us\\.com/favicon\\.ico\" to=\"https://unblock.desk.com/favicon.ico\"/></ruleset>", "<ruleset name=\"UnblockSit.es\" f=\"UnblockSit.es.xml\"><securecookie host=\"^\\.unblocksit\\.es$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Unblocked\" f=\"Unblocked.xml\"><rule from=\"^https?://([^\\.]+\\.)?unblocked\\.li/\" to=\"https://$1unblocked.red/\"/><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Unblu.com (partial)\" f=\"Unblu.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Unbounce.com\" default_off=\"failed ruleset test\" f=\"Unbounce.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://unbounce\\.wpengine\\.netdna-cdn\\.com/\" to=\"https://unbounce.wpengine.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Unbound.net\" f=\"Unbound.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Unbridled.info\" f=\"Unbridled.info.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Underhanded Crypto.com (partial)\" f=\"Underhanded_Crypto.com.xml\"><securecookie host=\"^\\.underhandedcrypto\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Underskog\" f=\"Underskog.xml\"><rule from=\"^http://(?:www\\.)?underskog\\.no/\" to=\"https://underskog.no/\"/></ruleset>", "<ruleset name=\"Understood.org\" f=\"Understood.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Undertone.com (partial)\" f=\"Undertone.xml\"><securecookie host=\"^ads\\.undertone\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UnderwaterWorld.com.au\" f=\"UnderwaterWorld.com.au.xml\"><securecookie host=\"www\\.underwaterworld\\.com\\.au$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Underwear Expert (partial)\" f=\"Underwear_Expert.xml\"><rule from=\"^http://cdn\\.underwearexpert\\.com/\" to=\"https://d2szvuirvbmbdl.cloudfront.net/\"/></ruleset>", "<ruleset name=\"UNED.es\" f=\"Uned.es.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Uneddit\" default_off=\"failed ruleset test\" f=\"Uneddit.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"unglue.it (partial)\" f=\"Unglue.it.xml\"><securecookie host=\"^unglue\\.it$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Unhosted\" default_off=\"failed ruleset test\" f=\"Unhosted.xml\"><rule from=\"^http://www\\.unhosted\\.org/\" to=\"https://unhosted.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Uni-DuE.de\" f=\"Uni-DuE.de.xml\"><securecookie host=\"^www\\.uni-due\\.de$\" name=\".+\"/><rule from=\"^http://uni-due\\.de/\" to=\"https://www.uni-due.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Uni-Goettingen.de (partial)\" f=\"Uni-Goettingen.de.xml\"><rule from=\"^http://karzer\\.uni-goettingen\\.de/\" to=\"https://www.uni-goettingen.de/de/sh/29360.html\"/><rule from=\"^http://www\\.sec\\.informatik\\.uni-goettingen\\.de/\" to=\"https://www.uni-goettingen.de/de/266195.html\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Uni-Hamburg.de (false MCB)\" platform=\"mixedcontent\" f=\"Uni-Hamburg.de-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Uni-Hannover.de (partial)\" f=\"Uni-Hannover.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Uni-Kl.de (false MCB)\" platform=\"mixedcontent\" f=\"Uni-Kl.de-falsemixed.xml\"><securecookie host=\"^www\\.uni-kl\\.de$\" name=\".+\"/><rule from=\"^http://www\\.(architektur|www)\\.uni-kl\\.de/(?!favicon\\.ico|fileadmin/|typo3temp/|uploads/)\" to=\"https://www.$1.uni-kl.de/\"/></ruleset>", "<ruleset name=\"Uni-Kl.de (partial)\" f=\"Uni-Kl.de.xml\"><exclusion pattern=\"^http://www\\.(?:architektur\\.)?uni-kl\\.de/+(?!favicon\\.ico|fileadmin/|typo3temp/|uploads/)\"/><securecookie host=\"^(?:fit\\.cs|\\.www\\.fachschaft\\.(?:cs|informatik)|(?:alumni|office|www)\\.kis|(?:alumni\\.|www\\.)?physik|\\.www\\.rhrk)\\.uni-kl\\.de$\" name=\".+\"/><rule from=\"^http://(autodiscover(?:\\.\\w+)?|fit\\.cs|fit\\.informatik|(?:alumni|office)\\.kis|mail|alumni\\.physik|opac\\.ub|(?:lists|svn)\\.unix-ag|wa|(?:abwl|bisor|enpres|hotline|integrierter-studiengang|international|it-service|lff|luc|marketing|nagios|pmo|step|strama|sustain|marketing-forschung|vwl-makro|vwl-mikro|vwl-wipo|zwr)\\.wiwi|www)\\.uni-kl\\.de/\" to=\"https://$1.uni-kl.de/\"/><rule from=\"^http://www\\.alumni\\.uni-kl\\.de/\" to=\"https://alumni.kis.uni-kl.de/\"/><rule from=\"^http://www\\.(architektur|bauing|fs\\.bauing|bio|fachschaft\\.(?:cs|informatik)|chemie|disc|kis|mpa|rhrk|ru|unix-ag)\\.uni-kl\\.de/\" to=\"https://www.$1.uni-kl.de/\"/><rule from=\"^http://(www\\.)?(physik|wiwi)\\.uni-kl\\.de/\" to=\"https://$1$2.uni-kl.de/\"/><rule from=\"^http://www\\.verw\\.uni-kl\\.de/+(?:$|\\?.*)\" to=\"https://www.uni-kl.de/\"/></ruleset>", "<ruleset name=\"Uni-Potsdam.de (expired)\" default_off=\"expired\" f=\"Uni-Potsdam.de-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Uni-Saarland.de (partial)\" f=\"Uni-Saarland.de.xml\"><exclusion pattern=\"^http://www\\.uni-saarland\\.de/+(?!favicon\\.ico|fileadmin/|typo3temp/|uploads/)\"/><securecookie host=\"^(?:(?:www\\.)?cispa|(?:epica\\.|www\\.)?cs|(?:www\\.)?cybersicherheit\\.cs|www\\.lsv)\\.uni-saarland\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?(mmci\\.)?uni-saarland\\.de/\" to=\"https://www.$1uni-saarland.de/\"/><rule from=\"^http://(www-int\\.coli|(?:epica|www-infsec|www-wjp)\\.cs|datscha|www\\.ls[fv])\\.uni-saarland\\.de/\" to=\"https://$1.uni-saarland.de/\"/><rule from=\"^http://(www\\.)?(cispa|cs|(?:crypto|csl|cybersicherheit|infsec|lbs|sps)\\.cs|cybersicherheit)\\.uni-saarland\\.de/\" to=\"https://$1$2.uni-saarland.de/\"/></ruleset>", "<ruleset name=\"Uni-Stuttgart.de (partial)\" f=\"Uni-Stuttgart.de.xml\"><securecookie host=\"^www\\.icp\\.uni-stuttgart\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Uni-Wuerzburg.de (partial)\" f=\"Uni-Wuerzburg.de.xml\"><rule from=\"^http://(?:www\\.)?mathematik\\.uni-wuerzburg\\.de/\" to=\"https://www.mathematik.uni-wuerzburg.de/\"/></ruleset>", "<ruleset name=\"Uni-heidelberg.de\" f=\"Uni-heidelberg.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Uni.Lu (partial)\" f=\"Uni.Lu.xml\"><rule from=\"^http://(hpc|piwik)\\.uni\\.lu/\" to=\"https://$1.uni.lu/\"/></ruleset>", "<ruleset name=\"UniCDN.com\" f=\"UniCDN.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UniStra.fr (false MCB)\" platform=\"mixedcontent\" f=\"UniStra.fr-falsemixed.xml\"><securecookie host=\"^(?:engees|typodun)\\.unistra\\.fr$\" name=\".+\"/><rule from=\"^http://(engees|typodun|www)\\.unistra\\.fr/\" to=\"https://$1.unistra.fr/\"/></ruleset>", "<ruleset name=\"UniTech.net (partial)\" f=\"UniTech.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Uni Leoben.ac.at (partial)\" f=\"Uni_Leoben.ac.at.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Unibet.com.au\" default_off=\"failed ruleset test\" f=\"Unibet_Australia.xml\"><securecookie host=\"^(?:\\.?www)?\\.unibet\\.com\\.au$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Uniblue\" f=\"Uniblue.xml\"><rule from=\"^http://(?:www\\.)?uniblue\\.com/\" to=\"https://d2iq4cp2qrughe.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Unica (partial)\" default_off=\"Needs ruleset tests\" f=\"Unica.xml\"><securecookie host=\"^pt\\d+\\.unica\\.com$\" name=\".+\"/><securecookie host=\".*\\.unicaondemand\\.com$\" name=\".+\"/><rule from=\"^http://pt(\\d+)\\.unica\\.com/\" to=\"https://pt$1.unica.com/\"/><rule from=\"^http://(\\d+)\\.unicaondemand\\.com/\" to=\"https://$1.unicaondemand.com/\"/></ruleset>", "<ruleset name=\"Unicom (partial)\" f=\"Unicom.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Unified Social.com (partial)\" default_off=\"failed ruleset test\" f=\"Unified_Social.com.xml\"><securecookie host=\"^login\\.unifiedsocial\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"unifiedtracking.com\" default_off=\"failed ruleset test\" f=\"Unifiedtracking.com.xml\"><securecookie host=\"^www\\.unifiedtracking\\.com$\" name=\".+\"/><rule from=\"^http://unifiedtracking\\.com/\" to=\"https://www.unifiedtracking.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Uniform Wares.com\" f=\"Uniform_Wares.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Unigine\" f=\"Unigine.xml\"><securecookie host=\"^(?:.*\\.)?unigine\\.com$\" name=\".+\"/><rule from=\"^http://((?:developer|eu4|www)\\.)?unigine\\.com/\" to=\"https://$1unigine.com/\"/></ruleset>", "<ruleset name=\"Unikernel.org (partial)\" f=\"Unikernel.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Unilever\" default_off=\"mismatched\" f=\"Unilever.xml\"><rule from=\"^http://(?:www\\.)?unilever\\.com/\" to=\"https://www.unilever.com/\"/><rule from=\"^http://uimg\\.unilever\\.com/\" to=\"https://uimg.unilever.com/\"/></ruleset>", "<ruleset name=\"Unimi.it (partial)\" f=\"Unimi.it.xml\"><securecookie host=\"^securemail\\.unimi\\.it$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?unimi\\.it/(?=css/|img/|registrazione/\\w+\\.keb)\" to=\"https://www.unimi.it/\"/><rule from=\"^http://(cas|www\\.elearning|securemail)\\.unimi\\.it/\" to=\"https://$1.unimi.it/\"/></ruleset>", "<ruleset name=\"Unindented.org\" f=\"Unindented.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Uninett.no (partial)\" default_off=\"failed ruleset test\" f=\"Uninett.xml\"><securecookie host=\"^(?!\\.uninett\\.no$).\" name=\".\"/><rule from=\"^http://www\\.gigacampus\\.no/.*\" to=\"https://openwiki.uninett.no/gigacampus:start\"/><rule from=\"^http://(?:www\\.)?gn3campus\\.uninett\\.no/\" to=\"https://ow.feide.no/geantcampus:start\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UnionPay.com (partial)\" default_off=\"failed ruleset test\" f=\"UnionPay.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Universidad de Oviedo\" f=\"Uniovi.es.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Unique Filer\" default_off=\"expired, mismatch\" f=\"Unique-Filer.xml\"><rule from=\"^http://(?:www\\.)?uniquefiler\\.com/\" to=\"https://uniquefiler.com/\"/></ruleset>", "<ruleset name=\"Unique Vintage\" f=\"Unique_Vintage.xml\"><securecookie host=\"^\\.unique-vintage\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?unique-vintage\\.com/\" to=\"https://www.unique-vintage.com/\"/></ruleset>", "<ruleset name=\"Uniregistry.com\" f=\"Uniregistry.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Uniregistry.net\" f=\"Uniregistry.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Unisend.com.mx\" f=\"Unisend.com.mx.xml\"><securecookie host=\"^\\.unisend\\.com\\.mx$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Unisend.com\" f=\"Unisend.com.xml\"><securecookie host=\"^\\.unisend\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Unisg.ch\" f=\"Unisg.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Unister\" f=\"Unister.xml\"><rule from=\"^http://(m|static|w)\\.unister-adservices\\.com/\" to=\"https://$1.unister-adservices.com/\"/></ruleset>", "<ruleset name=\"unistream.ru\" f=\"Unistream.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Unisys.co.jp (partial)\" f=\"Unisys.co.jp.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://unisys\\.co\\.jp/\" to=\"https://www.unisys.co.jp/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Unisys.com (partial)\" f=\"Unisys.com.xml\"><securecookie host=\"^www\\.support\\.unisys\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.app3|infoselect|www\\.support)\\.unisys\\.com/\" to=\"https://$1.unisys.com/\"/></ruleset>", "<ruleset name=\"UUA.org (partial)\" f=\"Unitarian_Universalist_Association_of_Congregations.xml\"><rule from=\"^http://uua\\.org/\" to=\"https://www.uua.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"United Internet\" f=\"United-Internet.xml\"><securecookie host=\"^www\\.united-internet\\.de$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?united-internet\\.de/\" to=\"https://www.united-internet.de/\"/></ruleset>", "<ruleset name=\"United Nations (mismatches)\" default_off=\"mismatched\" f=\"United-Nations-mismatches.xml\"><securecookie host=\"^uncsd2012\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?uncsd2012\\.org/\" to=\"https://uncsd2012.org/\"/></ruleset>", "<ruleset name=\"United Nuclear Scientific\" f=\"United-Nuclear-Scientific.xml\"><securecookie host=\"^(?:.*\\.)?unitednuclear\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"United San Antonio Federal Credit Union\" f=\"United-San-Antonio-Fed-Credit-Union.xml\"><securecookie host=\"^\\.?unitedsafcu\\.org$\" name=\".+\"/><rule from=\"^http://unitedsafcu\\.org/\" to=\"https://www.unitedsafcu.org/\"/><rule from=\"^http://([\\w\\-]+)\\.unitedsafcu\\.org/\" to=\"https://$1.unitedsafcu.org/\"/></ruleset>", "<ruleset name=\"USDA.gov (partial)\" default_off=\"failed ruleset test\" f=\"United-States-Department-of-Agriculture.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://fsa\\.usda\\.gov/\" to=\"https://www.fsa.usda.gov/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"United States Department of Energy (partial)\" f=\"United-States-Department-of-Energy.xml\"><securecookie host=\"^(?:www\\.)?directives\\.doe\\.gov$\" name=\".*\"/><rule from=\"^http://(www\\.)?directives\\.doe\\.gov/\" to=\"https://$1directives.doe.gov/\"/><rule from=\"^http://(www\\.)?hss\\.doe\\.gov/includes2/\" to=\"https://$1hss.doe.gov/includes2/\"/></ruleset>", "<ruleset name=\"NRC.gov\" default_off=\"missing certificate chain\" f=\"United-States-Nuclear-Regulatory-Commission.xml\"><rule from=\"^http://(?:www\\.)?nrc\\.gov/\" to=\"https://forms.nrc.gov/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"United.com (partial)\" f=\"United.xml\"><securecookie host=\"^\\.united\\.com$\" name=\"^v1st$\"/><securecookie host=\"^(?:\\.?cruises|hub|mobile|www)\\.united\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"United Domains\" f=\"UnitedDomains.xml\"><rule from=\"^http://(?:www\\.)?uniteddomains\\.com/\" to=\"https://www.uniteddomains.com/\"/><rule from=\"^http://www\\.united-domains\\.de/\" to=\"https://www.united-domains.de/\"/></ruleset>", "<ruleset name=\"United Acquisition Services (partial)\" default_off=\"failed ruleset test\" f=\"United_Acquisition_Services.xml\"><rule from=\"^http://mail\\.uas\\.biz/\" to=\"https://mail.uas.biz/\"/></ruleset>", "<ruleset name=\"United Computer Wizards (partial)\" default_off=\"self-signed\" f=\"United_Computer_Wizards.xml\"><rule from=\"^http://(?:www\\.)?ucw\\.cz/\" to=\"https://www.ucw.cz/\"/></ruleset>", "<ruleset name=\"United Nations Office at Vienna (partial)\" f=\"United_Nations_Office_at_Vienna.xml\"><securecookie host=\"^www\\.unvienna\\.org$\" name=\".+\"/><rule from=\"^http://(unvextn2|www)\\.unvienna\\.org/\" to=\"https://$1.unvienna.org/\"/></ruleset>", "<ruleset name=\"United Republic (partial)\" f=\"United_Republic.xml\"><rule from=\"^http://(www\\.)?unitedrepublic\\.org/(donate(?:$|\\?|/)|wp-content/)\" to=\"https://$1unitedrepublic.org/$2\"/></ruleset>", "<ruleset name=\"United Stationers (partial)\" f=\"United_Stationers.xml\"><securecookie host=\"^.+\\.ussco\\.com$\" name=\".+\"/><rule from=\"^http://(content\\.|marketingassets\\.|www\\.)?oppictures\\.com/\" to=\"https://$1oppictures.com/\"/><rule from=\"^http://(?:www\\.)?ussco\\.com/\" to=\"https://www.ussco.com/\"/><rule from=\"^http://(login|sso)\\.ussco\\.com/\" to=\"https://$1.ussco.com/\"/></ruleset>", "<ruleset name=\"unitedplatform.com (partial)\" f=\"Unitedplatform.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Unity (partial)\" f=\"Unity.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^https?://unity\\.com/\" to=\"https://www.unity.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Unitymedia.de\" f=\"Unitymedia.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Univ-Brest.fr (partial)\" f=\"Univ-Brest.fr.xml\"><rule from=\"^http://(?:www\\.)?univ-brest\\.fr/\" to=\"https://www.univ-brest.fr/\"/></ruleset>", "<ruleset name=\"Univ-Montp3.fr (partial)\" default_off=\"failed ruleset test\" f=\"Univ-Montp3.fr.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Univ-SMB.fr\" f=\"Univ-SMB.fr.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Univention\" f=\"Univention.de.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://piwik\\.univention\\.de/\" to=\"https://www.piwik.univention.de/\"/><rule from=\"^http://forge\\.univention\\.de/\" to=\"https://forge.univention.org/\"/><rule from=\"^http://apt\\.univention\\.de/\" to=\"https://updates.software-univention.de/\"/><rule from=\"^http://download\\.univention\\.de/\" to=\"https://updates.software-univention.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Univers-Libre.net\" f=\"Univers-Libre.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Universal Subtitles\" default_off=\"failed ruleset test\" f=\"UniversalSubtitles.xml\"><rule from=\"^http://universalsubtitles\\.org/\" to=\"https://www.universalsubtitles.org/\"/><rule from=\"^http://(blog|www)\\.universalsubtitles\\.org/\" to=\"https://$1.universalsubtitles.org/\"/><rule from=\"^http://s3\\.www\\.universalsubtitles\\.org/\" to=\"https://s3.amazonaws.com/s3.www.universalsubtitles.org/\"/></ruleset>", "<ruleset name=\"Universe 2.us\" default_off=\"self-signed\" f=\"Universe_2.us.xml\"><securecookie host=\"^universe2\\.us$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?universe2\\.us/\" to=\"https://universe2.us/\"/></ruleset>", "<ruleset name=\"Université Laval (partial)\" default_off=\"failed ruleset test\" f=\"Universite_Laval.xml\"><securecookie host=\"authentification\\.ulaval\\.ca$\" name=\".+\"/><securecookie host=\"capsuleweb\\.ulaval\\.ca$\" name=\".+\"/><securecookie host=\"connect\\.ulaval\\.ca$\" name=\".+\"/><securecookie host=\"exchange\\.ulaval\\.ca$\" name=\".+\"/><securecookie host=\"portaildescours\\.ulaval\\.ca$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Université catholique de Louvain\" f=\"Universite_catholique_de_Louvain.xml\"><securecookie host=\"^listes-[123]\\.sipr\\.ucl\\.ac\\.be$\" name=\".+\"/><securecookie host=\"^(?:mysqladm|www)\\.uclouvain\\.be$\" name=\".+\"/><rule from=\"^http://listes-([123])\\.sipr\\.ucl\\.ac\\.be/\" to=\"https://listes-$1.sipr.ucl.ac.be/\"/><rule from=\"^http://(?:www\\.)?uclouvain\\.be/\" to=\"https://www.uclouvain.be/\"/><rule from=\"^http://(mysqladm|perso|sites|tools|webhost-test)\\.uclouvain\\.be/\" to=\"https://$1.uclouvain.be/\"/></ruleset>", "<ruleset name=\"UIC.edu (partial)\" default_off=\"failed ruleset test\" f=\"University-Illinois-at-Chicago.xml\"><exclusion pattern=\"^http://media\\.uic\\.edu/ensemble/(?!app/flash/)\"/><exclusion pattern=\"^http://www\\.uic\\.edu/htbin/az(?:\\?|$)\"/><securecookie host=\"^(?!media\\.uic\\.edu$)\\w\" name=\".\"/><rule from=\"^http://hospital\\.uic\\.edu/\" to=\"https://hospital.uillinois.edu/\"/><rule from=\"^http://hr\\.uic\\.edu/\" to=\"https://www.hr.uic.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"University of Southern Indiana (partial)\" f=\"University-Southern-Indiana.xml\"><rule from=\"^http://(?:www\\.)?usi\\.edu/\" to=\"https://www.usi.edu/\"/></ruleset>", "<ruleset name=\"University-of-Alaska-Anchorage (partial)\" f=\"University-of-Alaska-Anchorage.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"University of Alaska (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"University-of-Alaska.xml\"><securecookie host=\"^www\\.uaa\\.alaska\\.edu$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?(uaa\\.)?alaska\\.edu/\" to=\"https://www.$1alaska.edu/\"/><rule from=\"^http://(authserv|(?:www\\.)?(avo|uaonline)|cirt|edir|elmo|email|biotech\\.inbre|lists|service|(?:swf|uaf)-1\\.vpn|yukon)\\.alaska\\.edu/\" to=\"https://$1.alaska.edu/\"/><rule from=\"^http://lib\\.uaa\\.alaska\\.edu/\" to=\"https://consortiumlibrary.org/\"/></ruleset>", "<ruleset name=\"University of Applied Sciences Rapperswil (mismatches)\" default_off=\"mismatched\" platform=\"mixedcontent\" f=\"University-of-Applied-Sciences-Rapperswil-mismatches.xml\"><securecookie host=\"^ita\\.hsr\\.ch$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?ita\\.hsr\\.ch/\" to=\"https://ita.hsr.ch/\"/></ruleset>", "<ruleset name=\"University of Applied Sciences Rapperswil\" f=\"University-of-Applied-Sciences-Rapperswil.xml\"><securecookie host=\"^www\\.hsr\\.ch$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?hsr\\.ch/\" to=\"https://www.hsr.ch/\"/><rule from=\"^http://log\\.hsr\\.ch/\" to=\"https://log.hsr.ch/\"/></ruleset>", "<ruleset name=\"Bern University (expired)\" default_off=\"expired\" f=\"University-of-Bern-expired.xml\"><rule from=\"^http://www\\.students\\.unibe\\.ch/\" to=\"https://www.students.unibe.ch/\"/></ruleset>", "<ruleset name=\"University of Bern (partial)\" f=\"University-of-Bern.xml\"><securecookie host=\"^.*\\.unibe\\.ch$\" name=\".*\"/><rule from=\"^http://(cmslive3|www\\.(?:kommunikation|phil(?:hist|hum|nat)|psy|rechtswissenschaft|risiko|uniaktuell|vetsuisse|wiso|zuw))\\.unibe\\.ch/\" to=\"https://$1.unibe.ch/\"/><rule from=\"^http://(?:www\\.)?(id|medizin|ub)\\.unibe\\.ch/\" to=\"https://www.$1.unibe.ch/\"/><rule from=\"^http://www\\.medienmitteilungen\\.unibe\\.ch/\" to=\"https://www.kommunikation.unibe.ch/content/medien/medienmitteilungen/index_ger.html\"/><rule from=\"^http://www\\.uni(link|press)\\.unibe\\.ch/\" to=\"https://www.kommunikation.unibe.ch/content/publikationen/uni$1/index_ger.html\"/></ruleset>", "<ruleset name=\"Berkeley.edu (partial)\" default_off=\"failed ruleset test\" f=\"University-of-California-Berkeley.xml\"><exclusion pattern=\"^http://(www\\.)?(c|eec)s\\.berkeley\\.edu/.+\"/><exclusion pattern=\"^http://graduation\\.berkeley\\.edu/.+\"/><exclusion pattern=\"^http://www\\.berkeley\\.edu/+(?!favicon\\.ico|images/|news2/|pdf/)\"/><securecookie host=\"^(?:(?!www\\.berkeley\\.edu$)\\w.*|\\.events|(?:\\.fortuna)?\\.security)\\.berkeley\\.edu$\" name=\".\"/><rule from=\"^http://www\\.(are|give)\\.berkeley\\.edu/\" to=\"https://$1.berkeley.edu/\"/><rule from=\"^http://bmail\\.berkeley\\.edu/.*\" to=\"https://mail.google.com/a/berkeley.edu\"/><rule from=\"^http://cal1card\\.berkeley\\.edu/+([^?]*).*\" to=\"https://services.housing.berkeley.edu/c1c/$1\"/><rule from=\"^http://callcenter\\.berkeley\\.edu/$\" to=\"https://give.berkeley.edu/browse/index.cfm?u=191\"/><rule from=\"^http://(cs|eecs|ocf)\\.berkeley\\.edu/\" to=\"https://www.$1.berkeley.edu/\"/><rule from=\"^http://graduation\\.berkeley\\.edu/$\" to=\"https://commencement.berkeley.edu/\"/><rule from=\"^http://mirrors\\.berkeley\\.edu/$\" to=\"https://mirrors.ocf.berkeley.edu/\"/><rule from=\"^http://visitors\\.berkeley\\.edu/\" to=\"https://visit.berkeley.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"University of California (mismatches)\" default_off=\"mismatched\" f=\"University-of-California-mismatches.xml\"><securecookie host=\"^www1\\.cnsi\\.ucla\\.edu$\" name=\".+\"/><rule from=\"^http://(?:www1?\\.)?cnsi\\.ucla\\.edu/\" to=\"https://www1.cnsi.ucla.edu/\"/></ruleset>", "<ruleset name=\"University of California (partial)\" f=\"University-of-California.xml\"><exclusion pattern=\"^http://extension\\.ucsb\\.edu/(?!css/|images/|portal/)\"/><securecookie host=\"^(?:.*\\.)?ics\\.uci\\.edu$\" name=\".+\"/><securecookie host=\"^(?:www\\.admissions|analytics\\.oist)\\.ucsb\\.edu$\" name=\".+\"/><securecookie host=\"^wepawet\\.cs\\.ucsb\\.edu$\" name=\".+\"/><rule from=\"^http://(archive\\.|www\\.)?ics\\.uci\\.edu/\" to=\"https://$1ics.uci.edu/\"/><rule from=\"^http://(?:www\\.)?admissions\\.ucsb\\.edu/\" to=\"https://www.admissions.ucsb.edu/\"/><rule from=\"^http://(wepawet\\.cs|www\\.cs|apps\\.education|extension|ftp|secure\\.lsit|analytics\\.oist)\\.ucsb\\.edu/\" to=\"https://$1.ucsb.edu/\"/><rule from=\"^http://login\\.proxy\\.library\\.ucsb\\.edu(?::\\d+)?/\" to=\"https://login.proxy.library.ucsb.edu/\"/></ruleset>", "<ruleset name=\"Cam.ac.uk (partial)\" default_off=\"failed ruleset test\" f=\"University-of-Cambridge.xml\"><exclusion pattern=\"^http://www\\.damtp\\.cam\\.ac\\.uk/$\"/><exclusion pattern=\"^http://www\\.damtp\\.cam\\.ac\\.uk/+(?!global/)\"/><exclusion pattern=\"^http://(?:www\\.)?jesus\\.cam\\.ac\\.uk/+(?!favicon\\.ico|wp-content/|wp-includes/)\"/><exclusion pattern=\"^http://www\\.wolfson\\.cam\\.ac\\.uk/+(?!sites/)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://((?:camsis|damtp|jesus)\\.)?cam\\.ac\\.uk/\" to=\"https://www.$1cam.ac.uk/\"/><rule from=\"^http://print-server\\.st-edmunds\\.cam\\.ac\\.uk:9192/\" to=\"https://print-server.st-edmunds.cam.ac.uk:9192/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"University of Central Florida (partial)\" default_off=\"failed ruleset test\" f=\"University-of-Central-Florida.xml\"><securecookie host=\"^(?:admissions|bot|brand|cdn|communityrelations|fsi|hospitality|my|smca|today|universityheader)\\.ucf\\.edu$\" name=\".*\"/><rule from=\"^http://((?:admissions|bot|brand|cdn|communityrelations|fsi|hospitality|my|today|smca|universityheader|www)\\.)?ucf\\.edu/\" to=\"https://$1ucf.edu/\"/></ruleset>", "<ruleset name=\"University of Chicago (partial)\" f=\"University-of-Chicago.xml\"><rule from=\"^http://proxy\\.uchicago\\.edu/\" to=\"https://www.proxy.uchicago.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Colorado.edu (partial)\" f=\"University-of-Colorado-at-Boulder.xml\"><securecookie host=\"^laspwebmail\\.colorado\\.edu$\" name=\".+\"/><rule from=\"^http://(www\\.)?colorado\\.edu/(misc|profiles|sites)/\" to=\"https://$1colorado.edu/$2/\"/><rule from=\"^http://(fiske|jila|laspwebmail|oceanus)\\.colorado\\.edu/\" to=\"https://$1.colorado.edu/\"/></ruleset>", "<ruleset name=\"University of Copenhagen (partial)\" f=\"University-of-Copenhagen.xml\"><securecookie host=\"^\\w.*\\.ku\\.dk$\" name=\".*\"/><rule from=\"^http://(www2\\.adm|intranet)\\.ku\\.dk/\" to=\"https://$1.ku.dk/\"/></ruleset>", "<ruleset name=\"University of Delaware (partial)\" f=\"University-of-Delaware.xml\"><securecookie host=\"^(?:extension|.*\\.nss)\\.udel\\.edu$\" name=\".+\"/><rule from=\"^http://((?:ag|extension|web\\.facilities|\\w+\\.nss|www)\\.)?udel\\.edu/\" to=\"https://$1udel.edu/\"/><rule from=\"^http://www\\.facilities\\.udel\\.edu/(App_Themes|[dD]ata|Secure)/\" to=\"https://www.facilities.udel.edu/$1/\"/></ruleset>", "<ruleset name=\"University of Eastern Finland (partial)\" default_off=\"failed ruleset test\" f=\"University-of-Eastern-Finland.xml\"><securecookie host=\"^www\\.uef\\.fi$\" name=\".*\"/><rule from=\"^http://cs\\.joensuu\\.fi/\" to=\"https://cs.joensuu.fi/\"/><rule from=\"^http://(?:www\\.)?uef\\.fi/\" to=\"https://www.uef.fi/\"/></ruleset>", "<ruleset name=\"University of Exeter (partial)\" f=\"University-of-Exeter.xml\"><exclusion pattern=\"^http://(?:www\\.)?(?:psychology|sshs)\\.\"/><securecookie host=\"^(?:.*\\.)?exeter\\.ac\\.uk$\" name=\".+\"/><rule from=\"^http://empslocal\\.ex(?:eter)?\\.ac\\.uk/\" to=\"https://empslocal.ex.ac.uk/\"/><rule from=\"^http://([\\w-]+\\.)?ex(?:eter)?\\.ac\\.uk/\" to=\"https://$1exeter.ac.uk/\"/><rule from=\"^http://(?:www\\.)?([\\w-]+\\.)ex(?:eter)?\\.ac\\.uk/\" to=\"https://$1exeter.ac.uk/\"/></ruleset>", "<ruleset name=\"University of Florida (expired)\" default_off=\"expired, self-signed\" f=\"University-of-Florida-expired.xml\"><rule from=\"^http://(?:www\\.)?(admin|hscj)\\.ufl\\.edu/\" to=\"https://$1.ufl.edu/\"/></ruleset>", "<ruleset name=\"University of Florida (partial)\" default_off=\"failed ruleset test\" f=\"University-of-Florida.xml\"><securecookie host=\"^\\w[\\w\\.]*\\.ufl\\.edu$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?(cise|crc|fa|isis|uff)\\.ufl\\.edu/\" to=\"https://www.$1.ufl.edu/\"/><rule from=\"^http://lists\\.ufl\\.edu/archives/net-managers-l\\.html\" to=\"https://lists.ufl.edu/cgi-bin/wa?A0=NET-MANAGERS-L\"/><rule from=\"^http://((?:labs|lss)\\.at|catalog|counceling|evaluations|service\\.gatorlink|gradschool|security\\.health|(?:alerts|asc|etd|static)\\.helpdesk|infosec|test\\.isis|alerts\\.it|lists|login|my|net-services|nms(?:-console)?\\.ns|open-systems|(?:images|style)\\.webadmin|webmail)\\.ufl\\.edu/\" to=\"https://$1.ufl.edu/\"/><rule from=\"^http://forwardtogether\\.(?:health|sites\\.medinfo)\\.ufl\\.edu/\" to=\"https://forwardtogether.sites.medinfo.ufl.edu/\"/><rule from=\"^http://(?:www\\.)?ufalumni\\.ufl\\.edu/($|App_Themes/|images/|login\\.aspx|membersonly/register|resources/|styles/|WebResource\\.axd|[\\w\\-\\./]+/$)\" to=\"https://www.ufalumni.ufl.edu/$1\"/><rule from=\"^http://www\\.shands\\.org/\" to=\"https://www.shands.org/\"/></ruleset>", "<ruleset name=\"University of Groningen (partial)\" f=\"University-of-Groningen.xml\"><rule from=\"^http://(www\\.)?rug\\.nl/(_definition/|sterrenkunde/([!_]css|_shared/|onderwijs/index!login))\" to=\"https://$1rug.nl/$2\"/><rule from=\"^http://(?:www\\.)?astro\\.rug\\.nl/\" to=\"https://www.astro.rug.nl/\"/></ruleset>", "<ruleset name=\"University of Helsinki (partial)\" f=\"University-of-Helsinki.xml\"><rule from=\"^http://helsinki\\.fi/\" to=\"https://www.helsinki.fi/\"/><rule from=\"^http://www\\.helsinki\\.fi/(css/|images/)\" to=\"https://www.helsinki.fi/$1\"/><rule from=\"^http://(alma|alumniverkosto|blogs|www-db2)\\.helsinki\\.fi/\" to=\"https://$1.helsinki.fi/\"/><rule from=\"^http://(?:www\\.)?cs\\.helsinki\\.fi/\" to=\"https://www.cs.helsinki.fi/\"/></ruleset>", "<ruleset name=\"Herts.ac.uk (partial)\" f=\"University-of-Hertfordshire.xml\"><rule from=\"^http://go\\.herts\\.ac\\.uk/(?=\\w)\" to=\"https://web-apps.herts.ac.uk/go/?go=\"/><rule from=\"^http://(?:www\\.)?studynet(1|2)?\\.herts\\.ac\\.uk/\" to=\"https://www.studynet$1.herts.ac.uk/\"/><rule from=\"^http://(www\\.studentrecord|web-apps)\\.herts\\.ac\\.uk/\" to=\"https://$1.herts.ac.uk/\"/></ruleset>", "<ruleset name=\"University of Idaho (partial)\" default_off=\"failed ruleset test\" f=\"University-of-Idaho.xml\"><securecookie host=\"^\\w.*\\.uidaho\\.edu$\" name=\".+\"/><rule from=\"^http://((?:sitecore|vandalweb|www\\.(?:dfa|sci|uiweb|webedit)|www2?\\.sites|www)\\.)?uidaho\\.edu/\" to=\"https://$1uidaho.edu/\"/><rule from=\"^http://www\\.its\\.uidaho\\.edu/$\" to=\"https://www.uidaho.edu/its\"/></ruleset>", "<ruleset name=\"Illinois.edu (partial)\" default_off=\"failed ruleset test\" f=\"University-of-Illinois-at-Urbana-Champaign.xml\"><exclusion pattern=\"^http://illinois\\.edu/(?:$|\\?)\"/><exclusion pattern=\"^http://illinois.edu/(?:arts(?:$|[?/])|shortUrl/forward)\"/><exclusion pattern=\"^http://computing\\.scs\\.illinois\\.edu/+(?!$|\\?|content/|misc/|sites/)\"/><exclusion pattern=\"^http://vetmed\\.illinois\\.edu/+(?!wp-content/)\"/><securecookie host=\".\\.illinois\\.edu$\" name=\".\"/><rule from=\"^http://www\\.(business|chbe|cs|engineering|studentaffairs)\\.illinois\\.edu/\" to=\"https://$1.illinois.edu/\"/><rule from=\"^http://(earth|ece|lis|mrp)\\.illinois\\.edu/\" to=\"https://www.$1.illinois.edu/\"/><rule from=\"^http://(?:www\\.)?housing\\.illinois\\.edu/\" to=\"https://www-s.housing.illinois.edu/\"/><rule from=\"^http://(?:www\\.)?mechse\\.illinois\\.edu/\" to=\"https://mechanical.illinois.edu/\"/><rule from=\"^http://police\\.illinois\\.edu/\" to=\"https://dps.illinois.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"University of Kansas (partial)\" f=\"University-of-Kansas.xml\"><rule from=\"^http://(assets\\.drupal|technology|web)\\.ku\\.edu/\" to=\"https://$1.ku.edu/\"/></ruleset>", "<ruleset name=\"University of Manitoba (partial)\" platform=\"mixedcontent\" f=\"University-of-Manitoba.xml\"><rule from=\"^http://((?:aurora|(?:angel|baninb1|home|webapps|webware|wiki)\\.cc|iridium|jump|myuminfo|www)\\.)?umanitoba\\.ca/\" to=\"https://$1umanitoba.ca/\"/></ruleset>", "<ruleset name=\"University of Mary Washington blogs\" default_off=\"expired, mismatch\" f=\"University-of-Mary-Washington-blogs.xml\"><securecookie host=\"^(?:.*\\.)?umwblogs\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?mcclurken\\.org/\" to=\"https://mcclurken.org/\"/><rule from=\"^http://(eagleeye|jamesfarmer)\\.umw\\.edu/\" to=\"https://$1.umw.edu/\"/><rule from=\"^http://(?:www\\.)?umwblogs\\.org/\" to=\"https://umwblogs.org/\"/><rule from=\"^http://([\\w\\-]+)\\.umwblogs\\.org/\" to=\"https://$1.umwblogs.org/\"/></ruleset>", "<ruleset name=\"University of Mary Washington (partial)\" f=\"University-of-Mary-Washington.xml\"><securecookie host=\"^.*\\.umw\\.edu$\" name=\".*\"/><rule from=\"^http://((?:academics|adminfinance|admissions|advancement|athletics|business|cas|dahlgren|diversity|eaglenet|economicdevelopment|(?:educ|found)ation|giving|libraries|president|provost|publications|research|sacs|students|sustainability|technology|www)\\.)?umw\\.edu/\" to=\"https://$1umw.edu/\"/></ruleset>", "<ruleset name=\"UMd.edu (partial)\" default_off=\"failed ruleset test\" f=\"University-of-Maryland.xml\"><exclusion pattern=\"^http://helpdesk\\.umd\\.edu/+(?!favicon\\.ico|images/|web\\.support/)\"/><exclusion pattern=\"^http://kb\\.umd\\.edu/+(?!\\d)\"/><exclusion pattern=\"^http://www\\.lib\\.umd\\.edu/+(?!binaries/|css/|images/)\"/><exclusion pattern=\"^http://www\\.provost\\.umd\\.edu/+(?!favicon\\.ico|images/|includes/|masthead\\.jpg|photos/|resources/)\"/><exclusion pattern=\"^http://terpconnect\\.umd\\.edu/(?!~)\"/><exclusion pattern=\"^http://thestamp\\.umd\\.edu/+(?!DesktopModules/|[Pp]ortals/(?:_default/Skins/|_default/default\\.css|0/Documents/|0/Images/|0/[^/]*\\.(?:jp|pn)g)|favicon\\.ico|icons/|images/)\"/><securecookie host=\"^(?:(?:ejobs|id-card|login|www)\\.)?umd\\.edu$\" name=\".\"/><rule from=\"^http://ares\\.umd\\.edu/\" to=\"https://was-3.umd.edu/\"/><rule from=\"^http://www\\.(giving|thestamp)\\.umd\\.edu/\" to=\"https://$1.umd.edu/\"/><rule from=\"^http://kb\\.umd\\.edu/+(\\d+)(?:\\?.*)?\" to=\"https://www.itsc.umd.edu/MRcgi/MRTicketPage.pl?USER=&MRP=0&PROJECTID=1&MR=$1\"/><rule from=\"^http://password\\.umd\\.edu/[^?]*\" to=\"https://www.it.umd.edu/password\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"University of Massachusetts Amherst (mismatches)\" default_off=\"mismatched\" f=\"University-of-Massachusetts-Amherst-mismatches.xml\"><rule from=\"^http://(?:www\\.)?umassathletics\\.com/\" to=\"https://www.umassathletics.com/\"/><rule from=\"^http://(?:www\\.)?umassmag\\.com/\" to=\"https://umassmag.com/\"/></ruleset>", "<ruleset name=\"University of Massachusetts Amherst (partial)\" f=\"University-of-Massachusetts-Amherst.xml\"><securecookie host=\"^.*\\.umass\\.edu$\" name=\".*\"/><securecookie host=\"^www\\.umassulearn\\.net$\" name=\".*\"/><rule from=\"^http://umassathletics\\.cstv\\.com/\" to=\"https://umassathletics.cstv.com/\"/><rule from=\"^http://((?:blogs|moodle|(?:(?:hds|hds05|spark|udrive|umail|umweb-3|www)\\.)?oit|(?:webapp|www)\\.spire|umii|www\\.umii)\\.)?umass\\.edu/\" to=\"https://$1umass.edu/\"/><rule from=\"^http://(www\\.)?umassulearn\\.net/\" to=\"https://$1umassulearn.net/\"/></ruleset>", "<ruleset name=\"UMich.edu (partial)\" f=\"University-of-Michigan.xml\"><exclusion pattern=\"^http://(www\\.)?umich.edu/~\"/><securecookie host=\"^.+\\.umich\\.edu$\" name=\".+\"/><rule from=\"^http://(cse|lsa)\\.umich\\.edu/\" to=\"https://www.$1.umich.edu/\"/><rule from=\"^http://www\\.(ctools|weblogin)\\.umich\\.edu/\" to=\"https://$1.umich.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"University of Minho (mismatches)\" default_off=\"self-signed\" f=\"University-of-Minho-mismatches.xml\"><rule from=\"^http://cesium\\.di\\.uminho\\.pt/\" to=\"https://cesium.di.uminho.pt/\"/></ruleset>", "<ruleset name=\"UMN.edu (partial)\" default_off=\"failed ruleset test\" f=\"University-of-Minnesota.xml\"><securecookie host=\"^www\\.dtc\\.umn\\.edu$\" name=\".+\"/><rule from=\"^http://dtc\\.umn\\.edu/\" to=\"https://www.dtc.umn.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"University of North Texas (partial)\" platform=\"mixedcontent\" f=\"University-of-North-Texas.xml\"><rule from=\"^http://(?:www\\.)?((?:ci|coe|hsc|library)\\.)?unt\\.edu/\" to=\"https://www.$1unt.edu/\"/><rule from=\"^http://(?:www\\.)?((?:studyabroad\\.admin)|afrotc|ally|ams|announce|annualreport|anthropology|c3b|calendar|call|careercenter|chile|citc|clear|compliance|conduct|coop|copyright|courses|dcbest|deanofstudents|development|dining|discoverypark|dos|dplife|eagleconnect|ecampus(?:support)?|edo|ee|efec|emds|emergency|endow|eng|engineering|essc|etec|facilities|factbook|financialaid|forms|gallery|gartner|greeklife|healthcenter|home|honors|hr|(?:cme|profile)\\.hsc|iarta|ieli|imaging|info|inhouse|international|internships|inthenews|itunes|jaguarconnect|faculty(?:jobs)?|jazz|jobs|journalism|kddi|larc|learningcenter|(?:irservices|iii)\\.library|(?:(?:classes|moodle)\\.)?lt|messaging|moneymanagement|mtse|music|my|my[fl]s|northtexan|orgs|osprey|paccar|pacs|policy|pps|reac|records|recsports|research|reslife|rms|rtvf|security|smartenergy|spanishmedia|sportpsych|staffcouncil|src|student(?:activities|affairs|legal)|surfaces|sustainable|tams|tara|tcet|telecom|texasbest|thecblor|tours|transfer(?:institute|now)|transition|trio|tsgs|txcdk|union|unt(?:onthesquare|preview|system)|veteranscenter|virtualtour|volunteer|vpaa|vpsd|vtl|web[23]|webadmin|wiki|psychology)\\.unt\\.edu/\" to=\"https://$1.unt.edu/\"/><rule from=\"^http://(?:www\\.)?unt\\.edu/policy/UNT_Policy/volume\\d/(\\d+)_(\\d+)\\.html$\" to=\"https://policy.unt.edu/policy/$1-$2\"/><rule from=\"^http://(?:www\\.)?unt\\.edu/policy/UNT_Policy/volume\\d/(\\d+)_(\\d+)_(\\d+)\\.html$\" to=\"https://policy.unt.edu/policy/$1-$2-$3\"/></ruleset>", "<ruleset name=\"University of Ottawa (partial)\" default_off=\"failed ruleset test\" f=\"University-of-Ottawa.xml\"><rule from=\"^http://web5\\.uottawa\\.ca/\" to=\"https://web5.uottawa.ca/\"/></ruleset>", "<ruleset name=\"Ox.ac.uk (partial)\" default_off=\"failed ruleset test\" f=\"University-of-Oxford.xml\"><exclusion pattern=\"^http://www\\.bfriars\\.ox\\.ac\\.uk/+(?!horde/)\"/><exclusion pattern=\"^http://(?:www\\.)?biop\\.ox\\.ac\\.uk/(?!coot)\"/><exclusion pattern=\"^http://solo(?:-prd)?\\.bodleian\\.ox\\.ac\\.uk/+(?!cgi-bin/|pds\\?|shib/)\"/><exclusion pattern=\"^http://www\\.oxfordtoday\\.ox\\.ac\\.uk/+(?!favicon\\.ico|sites/)\"/><exclusion pattern=\"^http://www\\.ox\\.ac\\.uk/+(?!favicon\\.ico|sites/)\"/><securecookie host=\"^\\.www2\\.physics\\.\" name=\".\"/><rule from=\"^http://(?:www\\.)?biop\\.ox\\.ac\\.uk/coot\" to=\"https://www2.mrc-lmb.cam.ac.uk/Personal/pemsley/coot\"/><rule from=\"^http://mail\\.bfriars\\.ox\\.ac\\.uk/[^?]*\" to=\"https://www.bfriars.ox.ac.uk/horde/\"/><rule from=\"^http://www\\.issf\\.ox\\.ac\\.uk/[^?]*\" to=\"https://www.medsci.ox.ac.uk/research/internal/funding-directory/issf\"/><rule from=\"^http://www-astro\\.physics\\.ox\\.ac\\.uk/[^?]*\" to=\"https://www2.physics.ox.ac.uk/research/astrophysics\"/><exclusion pattern=\"^http://www-astro\\.physics.ox.ac.uk/(?!/*(?:$|\\?))\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UPenn.edu (mismatches)\" default_off=\"mismatched\" f=\"University-of-Pennsylvania-mismatches.xml\"><rule from=\"^http://repository\\.upenn\\.edu/\" to=\"https://repository.upenn.edu/\"/></ruleset>", "<ruleset name=\"UPenn.edu (partial)\" f=\"University-of-Pennsylvania.xml\"><exclusion pattern=\"^http://www\\.library\\.upenn\\.edu/(?!images/|styles/)\"/><securecookie host=\"^(?:weblogin\\.pennkey|\\.www\\.sas)\\.upenn\\.edu$\" name=\".+\"/><rule from=\"^http://((?:www\\.)?cis|www\\.college|medley\\.isc-seo|www\\.library|weblogin\\.pennkey|(?:fission|www)\\.sas|w(?:ebmail|ww)\\.seas)\\.upenn\\.edu/\" to=\"https://$1.upenn.edu/\"/></ruleset>", "<ruleset name=\"University of South Florida (mismatches)\" default_off=\"expired, mismatch, self-signed\" f=\"University-of-South-Florida-mismatches.xml\"><rule from=\"^http://((?:brs|rc)\\.blog|scholarcommons|wusfnews\\.wusf)\\.usf\\.edu/\" to=\"https://$1.usf.edu/\"/></ruleset>", "<ruleset name=\"University of South Florida (partial)\" default_off=\"failed ruleset test\" f=\"University-of-South-Florida.xml\"><securecookie host=\"^(?:\\w.*\\.)?usf(?:sp)?\\.edu$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?lib\\.usf\\.edu/\" to=\"https://www.lib.usf.edu/\"/><rule from=\"^http://(my|mysites|netid|usfsts|usfweb2|webauth)\\.usf\\.edu/\" to=\"https://$1.usf.edu/\"/><rule from=\"^http://(?:www\\.)?stpete\\.usf\\.edu/\" to=\"https://www.usfsp.edu/\"/><rule from=\"^http://((?:dev|vpn|www)\\.)?usfsp\\.edu/\" to=\"https://$1usfsp.edu/\"/><rule from=\"^http://sharemypc\\.(?:stpete\\.usf|usfsp)\\.edu/\" to=\"https://sharemypc.stpete.usf.edu/\"/></ruleset>", "<ruleset name=\"University of Southampton (partial)\" f=\"University-of-Southampton.xml\"><securecookie host=\"^(?:.*\\.)?soton\\.ac\\.uk$\" name=\".+\"/><securecookie host=\"^www\\.southampton\\.ac\\.uk$\" name=\".+\"/><rule from=\"^http://(www\\.)?noc\\.ac\\.uk/\" to=\"https://noc.ac.uk/\"/><rule from=\"^http://(?:www\\.)?soton\\.ac\\.uk/\" to=\"https://www.soton.ac.uk/\"/><rule from=\"^http://secure\\.ecs\\.soton\\.ac\\.uk/\" to=\"https://secure.ecs.soton.ac.uk/\"/><rule from=\"^http://(www\\.)?jobs\\.soton\\.ac\\.uk/\" to=\"https://$1jobs.soton.ac.uk/\"/><rule from=\"^http://(?:www\\.)?noc\\.soton\\.ac\\.uk/\" to=\"https://www.noc.soton.ac.uk/\"/><rule from=\"^http://(?:www\\.)?sussed\\.soton\\.ac\\.uk/\" to=\"https://sussed.soton.ac.uk/\"/><rule from=\"^http://www\\.southampton\\.ac\\.uk(?:\\:443)?/\" to=\"https://www.southampton.ac.uk/\"/></ruleset>", "<ruleset name=\"University of Southern California (mismatches)\" default_off=\"mismatched\" platform=\"mixedcontent\" f=\"University-of-Southern-California-mismatches.xml\"><rule from=\"^http://(?:www\\.)?think(?:usc\\.com/(?:~thinkusc/)?|\\.usc\\.edu)/wp-content/\" to=\"https://thinkusc.com/~thinkusc/wp-content/\"/></ruleset>", "<ruleset name=\"USC.edu (partial)\" default_off=\"failed ruleset test\" f=\"University-of-Southern-California.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://usc\\.edu/\" to=\"https://www.usc.edu/\"/><rule from=\"^http://www\\.dornsife\\.usc\\.edu/\" to=\"https://dornsife.usc.edu/\"/><rule from=\"^http://service\\.marshall\\.usc\\.edu/.*\" to=\"https://uscmarshall.service-now.com/\"/><rule from=\"^http://mypassword\\.provost\\.usc\\.edu:9251/\" to=\"https://mypassword.provost.usc.edu:9251/\"/><rule from=\"^http://policies\\.usc\\.edu/\" to=\"https://policy.usc.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"University of Strasbourg (partial)\" f=\"University-of-Strasbourg.xml\"><exclusion pattern=\"^http://engees\\.unistra\\.fr/+(?!favicon\\.ico|site/(?:favicon\\.ico|fileadmin/|typo3temp/|uploads/))\"/><exclusion pattern=\"^http://typodun\\.unistra\\.fr/+(?!fileadmin/|typo3conf/)\"/><exclusion pattern=\"^http://www\\.unistra\\.fr/+plans(?!/commun/|styles/)\"/><securecookie host=\"^(?:guide-etudiant|icube|inscriptions|mathinfo|reseau-alumni|services-numeriques|typodun2012|www)\\.unistra\\.fr$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?unistra\\.fr/\" to=\"https://www.unistra.fr/\"/><rule from=\"^http://(agenda|alumni|engees|guide-etudiant|icube|icube-intranet|inscriptions|mathinfo|physique-ingenierie|reseau-alumni|services-numeriques)\\.unistra\\.fr/\" to=\"https://$1.unistra.fr/\"/><rule from=\"^http://lsiit-cnrs\\.unistra\\.fr/+\" to=\"https://icube.unistra.fr/\"/><rule from=\"^http://icube-intranet\\.u-strasbg\\.fr/\" to=\"https://icube-intranet.unistra.fr/\"/><rule from=\"^http://typodun30\\.u-strasbg\\.fr/\" to=\"https://typodun2012.unistra.fr/\"/></ruleset>", "<ruleset name=\"University of Strathclyde (partial)\" f=\"University-of-Strathclyde.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"University of Texas Southwestern Medical Center (partial)\" f=\"University-of-Texas-Southwestern-Medical-Center.xml\"><securecookie host=\"^.+\\.swmed\\.edu$\" name=\".+\"/><securecookie host=\"^mutagenetix\\.utsouthwestern\\.edu$\" name=\".+\"/><rule from=\"^http://(ais|myutsouthwestern)\\.swmed\\.edu/\" to=\"https://$1.swmed.edu/\"/><rule from=\"^http://(?:www\\.)?utsouthwestern\\.edu/intranet(?:$|/.*)\" to=\"https://myutsouthwestern.swmed.edu/\"/><rule from=\"^http://(mutagenetix|www4)\\.utsouthwestern\\.edu/\" to=\"https://$1.utsouthwestern.edu/\"/></ruleset>", "<ruleset name=\"University of Texas System\" default_off=\"failed ruleset test\" f=\"University-of-Texas-System.xml\"><securecookie host=\"^(?:.*\\.)?utsystem\\.edu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"University of Texas at Austin (mismatches)\" default_off=\"mismatch, self-signed\" f=\"University-of-Texas-at-Austin-mismatches.xml\"><rule from=\"^http://(?:affirmed|www)\\.as\\.utexas\\.edu/\" to=\"https://affirmed.as.utexas.edu/\"/><rule from=\"^http://www\\.cpge\\.utexas\\.edu/\" to=\"https://www.cpge.utexas.edu/\"/></ruleset>", "<ruleset name=\"University of Texas at Austin (partial)\" f=\"University-of-Texas-at-Austin.xml\"><securecookie host=\"^.*\\.utexas\\.edu$\" name=\".*\"/><rule from=\"^http://((?:(?:autodiscover|wmail|ww4)\\.austin|(?:www\\.)?(?:biosci|che|cm|cs|edb|energy|engr|finearts|ig|ischool|laits|landmarks|mccombs|ph|soa)|blogs|(?:advisorycouncil|elements|vhost)\\.cns|courses|steelresearch\\.geo|giving|ideas|\\w+\\.ig|[\\w-]+\\.its|(?:apps|edger)\\.jsg|knightcenter|sites\\.la|\\w+\\.lib|login|m|mail|registrar|rtf|security|smartvoice|(?:(?:m|portal|team|www)\\.)?tacc|techstaff|utdirect|utmail|get\\.utmail|webmail|webspace|wikis|www|auth\\.www)\\.)?utexas\\.edu/\" to=\"https://$1utexas.edu/\"/><rule from=\"^http://(?:www\\.)?advertising\\.utexas\\.edu/(modul|sit)es/\" to=\"https://advertising.utexas.edu/$1es/\"/><rule from=\"^http://(www\\.)?(bealonghorn|commstudies|communication|csd|journalism)\\.utexas\\.edu/(modul|sit)es/\" to=\"https://$1$2.utexas.edu/$3es/\"/><rule from=\"^http://directory\\.utexas\\.edu/(?:.*)\" to=\"https://www.utexas.edu/directory/\"/><rule from=\"^http://(?:www\\.)?la\\.utexas\\.edu/(?:.*)\" to=\"https://www.utexas.edu/cola\"/><rule from=\"^http://lib\\.utexas\\.edu/\" to=\"https://www.lib.utexas.edu/\"/><rule from=\"^http://(?:www\\.)?(jsg|ma)\\.utexas\\.edu/\" to=\"https://www.$1.utexas.edu/\"/><rule from=\"^http://(?:www\\.)?music\\.utexas\\.edu/\" to=\"https://ww4.austin.utexas.edu/\"/></ruleset>", "<ruleset name=\"University of Texas at Dallas (partial)\" f=\"University-of-Texas-at-Dallas.xml\"><securecookie host=\"^(?:(?:autodiscover|elearning(?:pilot|staging|test)?|sis-portal-prod|webmail|www)\\.)?utdallas\\.edu$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?utdallas\\.edu/\" to=\"https://www.utdallas.edu/\"/><rule from=\"^http://(autodiscover|coursebook|dali|dox|eforms|elearning(?:pilot|staging|test)?|eval|galaxy|go|goto|input|oue|pages|policy|provost|ptg|qep|rodin|sis-portal-prod|v|webmail)\\.utdallas\\.edu/\" to=\"https://$1.utdallas.edu/\"/><rule from=\"^http://sacs(?:coc)?\\.utdallas\\.edu/\" to=\"https://sacs.utdallas.edu/\"/></ruleset>", "<ruleset name=\"Utah.edu (partial)\" default_off=\"failed ruleset test\" f=\"University-of-Utah.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://(cs|alumni)\\.utah\\.edu/\" to=\"https://www.$1.utah.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"University of Virginia (partial)\" f=\"University-of-Virginia.xml\"><securecookie host=\"^(?:sisuva\\.admin|collab\\.itc)\\.virginia\\.edu$\" name=\".+\"/><rule from=\"^http://(sisuva\\.admin|www\\.cs|mail\\.eservices|gwis|(?:collab|eventcal)\\.itc|www\\.its|lists|www\\.mail|netbadge|news|admin\\.people|rabi\\.phys|standard\\.pki|uvaemergency)\\.virginia\\.edu/\" to=\"https://$1.virginia.edu/\"/><rule from=\"^http://(?:www\\.)?itc\\.virginia\\.edu/\" to=\"https://www.itc.virginia.edu/\"/><rule from=\"^http://its\\.virginia\\.edu/(?=css/|images/)\" to=\"https://www.its.virginia.edu/\"/></ruleset>", "<ruleset name=\"Washington.edu (partial)\" f=\"University-of-Washington.xml\"><exclusion pattern=\"http://(?:www\\.)?washington\\.edu/home/siteinfo/form\"/><exclusion pattern=\"^http://depts.washington.edu/gpss/(?!sites/)\"/><exclusion pattern=\"^http://digital\\.lib\\.washington\\.edu/findingaids/\"/><exclusion pattern=\"^http://www\\.ee\\.washington\\.edu/+(?![^/]+/|favicon\\.ico)\"/><securecookie host=\"^\\.\" name=\"^__qca$\"/><securecookie host=\"^(?!depts\\.|www\\.ee\\.)\\w\" name=\".\"/><rule from=\"^http://(cs|hfs|law)\\.washington\\.edu/\" to=\"https://www.$1.washington.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"University of Waterloo (partial)\" f=\"University-of-Waterloo.xml\"><rule from=\"^http://((?:cecspilot\\.cecssys|crysp|csclub|(?:www\\.)?cs|(?:www\\.)?math|ripple|www)\\.)?uwaterloo\\.ca/\" to=\"https://$1uwaterloo.ca/\"/><rule from=\"^http://campaign\\.uwaterloo\\.ca/(?=$|\\?)\" to=\"https://uwaterloo.ca/support/\"/><rule from=\"^http://cecs\\.uwaterloo\\.ca/.*\" to=\"https://uwaterloo.ca/co-operative-education\"/><rule from=\"^http://development\\.uwaterloo\\.ca/[^?]*(?=$|\\?)\" to=\"https://uwaterloo.ca/support/\"/><rule from=\"^http://hr\\.uwaterloo\\.ca/[^?]*(?=$|\\?)\" to=\"https://uwaterloo.ca/human-resources/\"/><rule from=\"^http://info\\.uwaterloo\\.ca/+(?=$|\\?)\" to=\"https://uwaterloo.ca/central-stores/\"/></ruleset>", "<ruleset name=\"University of Western Australia (partial)\" f=\"University-of-Western-Australia.xml\"><securecookie host=\"^static\\.weboffice\\.uwa\\.edu\\.au$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"University of Wisconsin–Milwaukee (partial)\" default_off=\"failed ruleset test\" f=\"University-of-Wisconsin-Milwaukee.xml\"><securecookie host=\"\\.uwm\\.edu$\" name=\".+\"/><rule from=\"^http://www\\.uwm\\.edu/\" to=\"https://www4.uwm.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"University College London (partial)\" f=\"University_College_London.xml\"><rule from=\"^http://(www\\.)?ucl\\.ac\\.uk/dropbox/?$\" to=\"https://wwwapps-live.ucl.ac.uk/cgi-bin/dropbox/dropbox.cgi\"/><rule from=\"^http://(?:www\\.)?ucl\\.ac\\.uk/\" to=\"https://www.ucl.ac.uk/\"/></ruleset>", "<ruleset name=\"University Computer Club (partial)\" f=\"University_Computer_Club.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Buffalo.edu (partial)\" default_off=\"failed ruleset test\" f=\"University_at_Buffalo.xml\"><exclusion pattern=\"^http://(?:www\\.)?student-affairs\\.buffalo\\.edu/+(?!$|\\?|(?:\\w+/)?(?:images|style)/|genemail(?:$|\\?))\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.alumni\\.buffalo\\.edu/\" to=\"https://alumni.buffalo.edu/\"/><rule from=\"^http://www\\.ubfoundation\\.buffalo\\.edu/\" to=\"https://ubfoundation.buffalo.edu/\"/><rule from=\"^http://ubjobs\\.buffalo\\.edu/\" to=\"https://www.ubjobs.buffalo.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"University of Applied Sciences Kiel\" f=\"University_of_Applied_Sciences_Kiel.xml\"><securecookie host=\"^(?:(?:(?:www)?|(?:www\\.)?(?:email|student)|hrzsophos\\.hrz\\.isc|ida|modulanmeldung|module|vpn)\\.)?fh-kiel.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?fh-kiel\\.de/\" to=\"https://www.fh-kiel.de/\"/><rule from=\"^http://(?:www\\.)?(email|student)\\.fh-kiel\\.de/\" to=\"https://$1.fh-kiel.de/\"/><rule from=\"^http://(ida|hrzsophos\\.hrz\\.isc|modulanmeldung|module|vpn)\\.fh-kiel\\.de/\" to=\"https://$1.fh-kiel.de/\"/></ruleset>", "<ruleset name=\"University of Arizona (partial)\" f=\"University_of_Arizona.xml\"><rule from=\"^http://(www\\.)?cs\\.arizona\\.edu/\" to=\"https://$1cs.arizona.edu/\"/><rule from=\"^http://hirise-pds\\.lpl\\.arizona\\.edu/(\\?.*)?$\" to=\"https://hirise.lpl.arizona.edu/PDS/$1\"/><rule from=\"^http://hirise(?:-pds)?\\.lpl\\.arizona\\.edu/\" to=\"https://hirise.lpl.arizona.edu/\"/><rule from=\"^http://(pirlwww|www)\\.lpl\\.arizona\\.edu/\" to=\"https://$1.lpl.arizona.edu/\"/></ruleset>", "<ruleset name=\"University of Bath (partial)\" f=\"University_of_Bath.xml\"><rule from=\"^http://(?:www\\.)?bath\\.ac\\.uk/(assets/|common/|external/|favicon\\.ico|graphics/|news/system/|system/)\" to=\"https://www.bath.ac.uk/$1\"/></ruleset>", "<ruleset name=\"Bris.ac.uk (partial)\" f=\"University_of_Bristol.xml\"><securecookie host=\"^(?:www\\.alumni|shop)\\.bris\\.ac\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?survey\\.bris\\.ac\\.uk/\" to=\"https://www.survey.bris.ac.uk/\"/><rule from=\"^http://(www\\.alumni|shop)\\.bris\\.ac\\.uk/\" to=\"https://$1.bris.ac.uk/\"/></ruleset>", "<ruleset name=\"University of California, San Francisco (problematic)\" default_off=\"mismatched\" f=\"University_of_California_San_Francisco-problematic.xml\"><securecookie host=\"^\\.postdocs\\.ucsf\\.edu$\" name=\".+\"/><rule from=\"^http://(postdocs|support)\\.ucsf\\.edu/\" to=\"https://$1.ucsf.edu/\"/></ruleset>", "<ruleset name=\"University of California, San Francisco (partial)\" f=\"University_of_California_San_Francisco.xml\"><securecookie host=\"^(?:\\.asuc|\\.career|dp|\\.edtech|\\.finaid|\\.graduate|\\.gsa|\\.insideguide|\\.interprofessional|\\.isso|\\.?it|\\.learn|makeagift|\\.oir|\\.registrar|\\.?saa|\\.sac|\\.sds|\\.ssmb|studenthealth|www)\\.ucsf\\.edu$\" name=\".+\"/><rule from=\"^http://ucsf\\.edu/\" to=\"https://www.ucsf.edu/\"/><rule from=\"^http://makeagift\\.ucsf\\.edu/(?:site/PageServer)?(?:\\?pagename=page_not_found)?$\" to=\"https://makeagift.ucsf.edu/site/PageServer?pagename=A1_API_GeneralGivingForm\"/><rule from=\"^http://(asuc|career|dp|edtech|finaid|graduate|gsa|insideguide|interprofessional|isso|it|learn|makeagift|myaccess|oir|registrar|saa|sac|sds|ssmb|studenthealth|warnme|www)\\.ucsf\\.edu/\" to=\"https://$1.ucsf.edu/\"/><rule from=\"^http://www\\.(career|warnme)\\.ucsf\\.edu/\" to=\"https://$1.ucsf.edu/\"/></ruleset>", "<ruleset name=\"University of California, Santa Cruz (problematic)\" default_off=\"expired, self-signed\" f=\"University_of_California_Santa_Cruz-problematic.xml\"><securecookie host=\"^\\.physicalsecurity\\.ucsc\\.edu$\" name=\".+\"/><rule from=\"^http://(archaea|keys\\.pbsci|physicalsecurity)\\.ucsc\\.edu/\" to=\"https://$1.ucsc.edu/\"/></ruleset>", "<ruleset name=\"UCSC.edu (partial)\" default_off=\"failed ruleset test\" f=\"University_of_California_Santa_Cruz.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://cruzbuy\\.ucsc\\.edu/.*\" to=\"https://financial.ucsc.edu/Pages/Launch_CruzBuy.aspx\"/><rule from=\"^http://cruzpay\\.ucsc\\.edu/.*\" to=\"https://financial.ucsc.edu/Pages/Launch_CruzPay.aspx\"/><rule from=\"^http://email\\.ucsc\\.edu/.*\" to=\"https://mail.google.com/a/ucsc.edu\"/><rule from=\"^http://itrequest\\.ucsc\\.edu/[^?]*\" to=\"https://ucsc.service-now.com/ess/\"/><rule from=\"^http://(oca|soe)\\.ucsc\\.edu/\" to=\"https://www.$1.ucsc.edu/\"/><rule from=\"^http://ugr\\.ucsc\\.edu/\" to=\"https://ugr.ue.ucsc.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"University of Cape Town (partial)\" default_off=\"failed ruleset test\" f=\"University_of_Cape_Town.xml\"><exclusion pattern=\"^http://(?:www\\.)?icts\\.uct\\.ac\\.za/(?!alerts\\.php|favicon\\.ico|images/|modules\\.php\\?name=Your_Account|themes/)\"/><securecookie host=\"^(?:mail|netstorage|password|www\\.staff|uctgwacc|vula|www)\\.uct\\.ac\\.za$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?(icts\\.)?uct\\.ac\\.za/\" to=\"https://www.$1uct.ac.za/\"/><rule from=\"^http://(autodiscover|chrysalis|mail|netstorage|srvslspsw001|www\\.staff|uctgwacc|vula)\\.uct\\.ac\\.za/\" to=\"https://$1.uct.ac.za/\"/><rule from=\"^http://(?:www\\.)?hr\\.uct\\.ac\\.za/(favicon\\.ico|images/|scripts/)\" to=\"https://www.uct.ac.za/$1\"/><rule from=\"^http://www\\.mail\\.uct\\.ac\\.za/([^/]*)(?:\\?.*)?$\" to=\"https://mail.uct.ac.za/owa/$1\"/><rule from=\"^http://(?:www\\.)?password\\.uct\\.ac\\.za/\" to=\"https://password.uct.ac.za/\"/><rule from=\"^http://staffonline\\.uct\\.ac\\.za/.*\" to=\"https://srvslspsw002.uct.ac.za:483/staff/signon.html\"/><rule from=\"^http://srvslspsw001\\.uct\\.ac\\.za:483/\" to=\"https://srvslspsw001.uct.ac.za:483/\"/><rule from=\"^http://www\\.vula\\.uct\\.ac\\.za/(?:\\?.*)$\" to=\"https://vula.uct.ac.za/portal\"/></ruleset>", "<ruleset name=\"University of Central Lancashire\" default_off=\"failed ruleset test\" f=\"University_of_Central_Lancashire.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"University of Cincinatti (partial)\" f=\"University_of_Cincinatti.xml\"><exclusion pattern=\"^http://(?:www\\.)?(?:intmed|med|researchcompliance)\\.uc\\.edu/(?!App_(?:Master|Themes)/|Libraries/|[sS]itefinity/|WebResource\\.axd)\"/><securecookie host=\"^(?!(?:www\\.)?(?:intmed|med|researchcompliance)\\.).+\\.uc\\.edu$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?uc\\.edu/\" to=\"https://www.uc.edu/\"/><rule from=\"^http://(admissions|(?:www\\.)?(?:health|med|medcenter|pharmacy|researchcompliance)|intmed|ucdirectory)\\.uc\\.edu/\" to=\"https://$1.uc.edu/\"/></ruleset>", "<ruleset name=\"University of Derby (problematic)\" default_off=\"expired, mismatched, self-signed\" f=\"University_of_Derby-problematic.xml\"><rule from=\"^http://ask\\.derby\\.ac\\.uk/\" to=\"https://ask.derby.ac.uk/\"/></ruleset>", "<ruleset name=\"University of Derby (partial)\" f=\"University_of_Derby.xml\"><securecookie host=\"^.+\\.derby\\.ac\\.uk$\" name=\".+\"/><rule from=\"^http://(erecruitment|password|pssprd|students|udo)\\.derby\\.ac\\.uk(:8030)?/\" to=\"https://$1.derby.ac.uk$2/\"/></ruleset>", "<ruleset name=\"University of Erlangen-Nuremberg (partial)\" f=\"University_of_Erlangen-Nuremberg.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?(?:blog\\.fau|(?:blogs?|home)\\.uni-erlangen)\\.de/\" to=\"https://blogs.fau.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"University of Georgia (partial)\" platform=\"mixedcontent\" f=\"University_of_Georgia.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"University of Greifswald (partial)\" f=\"University_of_Greifswald.xml\"><securecookie host=\"^ilias\\.uni-greifswald\\.de$\" name=\".+\"/><rule from=\"^http://(ilias|t3cl-hgw\\.rz|typo3cluster\\.rz)\\.uni-greifswald\\.de/\" to=\"https://$1.uni-greifswald.de/\"/></ruleset>", "<ruleset name=\"University of Grenada (partial)\" f=\"University_of_Grenada.xml\"><securecookie host=\"^\\.?cruetic\\.ugr\\.es$\" name=\".+\"/><rule from=\"^http://cruetic\\.ugr\\.es/\" to=\"https://cruetic.ugr.es/\"/></ruleset>", "<ruleset name=\"University of Houston (partial)\" f=\"University_of_Houston.xml\"><securecookie host=\"^.+\\.uh\\.edu$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?uh\\.edu/\" to=\"https://ssl.uh.edu/\"/><rule from=\"^http://(accessuh|fp\\.mh|myuh|(?:forms|mail|mynsm|mynsmstore|nsmit)\\.nsm|www\\.opt|ssl|vnet)\\.uh\\.edu/\" to=\"https://$1.uh.edu/\"/><rule from=\"^http://(?:www\\.)?nsm\\.uh\\.edu/\" to=\"https://nsm.uh.edu/\"/><rule from=\"^http://(?:www\\.)?(bauer|coe|egr|law|tech)\\.uh\\.edu/\" to=\"https://www.$1.uh.edu/\"/></ruleset>", "<ruleset name=\"University of Iowa (partial)\" f=\"University_of_Iowa.xml\"><exclusion pattern=\"^http://its\\.uiowa\\.edu/+(?!favicon\\.ico|files/|sites/)\"/><rule from=\"^http://(its|www\\.dna\\.its|itsecurity|tippie|wiki)\\.uiowa\\.edu/\" to=\"https://$1.uiowa.edu/\"/></ruleset>", "<ruleset name=\"Kent.ac.uk (partial)\" default_off=\"failed ruleset test\" f=\"University_of_Kent.xml\"><securecookie host=\"^\\.kent\\.ac\\.uk$\" name=\"^cadata[\\dA-F]{32}$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://cs\\.kent\\.ac\\.uk/\" to=\"https://www.cs.kent.ac.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Leeds.ac.uk (partial)\" default_off=\"failed ruleset test\" f=\"University_of_Leeds.xml\"><exclusion pattern=\"^http://business\\.leeds\\.ac\\.uk/+(?!favicon\\.ico|fileadmin/|typo3conf/|typo3temp/)\"/><exclusion pattern=\"^http://campus\\.leeds\\.ac\\.uk/(?!$|(?:accessibility-statement|legal)\\.htm)\"/><exclusion pattern=\"^http://(?:www\\.)?chase\\.leeds\\.ac\\.uk/(?!-/|archive/images/)\"/><exclusion pattern=\"^http://(?:www\\.)?see\\.leeds\\.ac\\.uk/+\\?\"/><exclusion pattern=\"^http://ses\\.leeds\\.ac\\.uk/+(?!images/|site/)\"/><securecookie host=\".+\\.leeds\\.ac\\.uk$\" name=\".\"/><rule from=\"^http://((?:digitalis|environment|epocs|pvac)\\.)?leeds\\.ac\\.uk/\" to=\"https://www.$1leeds.ac.uk/\"/><rule from=\"^http://adm\\.leeds\\.ac\\.uk/.*\" to=\"https://www.leeds.ac.uk/\"/><rule from=\"^http://www\\.(business|cipeg|leedsportal|portal|stringeditions)\\.leeds\\.ac\\.uk/\" to=\"https://$1.leeds.ac.uk/\"/><rule from=\"^http://campus\\.leeds\\.ac\\.uk/$\" to=\"https://www.leeds.ac.uk/forstaff/\"/><rule from=\"^http://campus\\.leeds\\.ac\\.uk/accessibility-statement\\.htm\" to=\"https://www.leeds.ac.uk/accessibility/\"/><rule from=\"^http://campus\\.leeds\\.ac\\.uk/legal\\.htm\" to=\"https://www.leeds.ac.uk/terms/\"/><rule from=\"^http://www\\.ee\\.leeds\\.ac\\.uk/[^?]*\" to=\"https://www.engineering.leeds.ac.uk/electronic\"/><rule from=\"^http://helpdesk\\.leeds\\.ac\\.uk/.*\" to=\"https://it.leeds.ac.uk/\"/><rule from=\"^http://(?:www\\.)?see\\.leeds\\.ac\\.uk/+(?=$|\\?)\" to=\"https://www.see.leeds.ac.uk/home/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"University of Leicester (partial)\" f=\"University_of_Leicester.xml\"><securecookie host=\"^physics\\.le\\.ac\\.uk\" name=\".+\"/><rule from=\"^http://(?:www\\.)?le\\.ac\\.uk/\" to=\"https://www.le.ac.uk/\"/><rule from=\"^http://((?:www\\.)?myleicester|s?www2)\\.le\\.ac\\.uk/\" to=\"https://$1.le.ac.uk/\"/><rule from=\"^http://(?:www\\.)?physics\\.le\\.ac\\.uk/\" to=\"https://physics.le.ac.uk/\"/></ruleset>", "<ruleset name=\"University of Louisville (partial)\" f=\"University_of_Louisville.xml\"><securecookie host=\"^.*\\.louisville\\.edu$\" name=\".+\"/><rule from=\"^http://((?:blackboard(?:temp)?|cardmail|emailarchive|exchange|paprod|sharepoint|ulink|www)\\.)?louisville\\.edu/\" to=\"https://$1louisville.edu/\"/><rule from=\"^http://admissions\\.louisville\\.edu/(?:.*)\" to=\"https://louisville.edu/admissions/\"/></ruleset>", "<ruleset name=\"University of Maine (partial)\" f=\"University_of_Maine.xml\"><securecookie host=\"^.+\\.umaine\\.edu$\" name=\".+\"/><rule from=\"^http://((?:mainestreetcs|peportal|plugged-in\\.umext|www)\\.)?umaine\\.edu/\" to=\"https://$1umaine.edu/\"/><rule from=\"^http://(?:www\\.)?(calendar(?:-dev)?|extension|go)\\.umaine\\.edu/\" to=\"https://$1.umaine.edu/\"/><rule from=\"^http://extensionpubs\\.umext\\.maine\\.edu/(?:$|\\?.*)\" to=\"https://epos2-phx.sequoiars.com/ePOS?store=413&form=shared3%2findex.html\"/><rule from=\"^http://extensionpubs\\.umext\\.maine\\.edu/ePOS\" to=\"https://epos2-phx.sequoiars.com/ePOS\"/></ruleset>", "<ruleset name=\"Maine.edu (problematic)\" default_off=\"self-signed\" f=\"University_of_Maine_System-problematic.xml\"><rule from=\"^http://(online|thinkmissionexcellence)\\.maine\\.edu/\" to=\"https://$1.maine.edu/\"/></ruleset>", "<ruleset name=\"Maine.edu (partial)\" f=\"University_of_Maine_System.xml\"><exclusion pattern=\"^http://(?:umsweb2013lb\\.its\\.|www\\.)?maine\\.edu/+(?!favicon\\.ico|peoplesearch(?:$|\\?|/)|wp-content/|wp-includes/)\"/><securecookie host=\"^(?:peportal|think)\\.maine\\.edu$\" name=\".+\"/><rule from=\"^http://maine\\.edu/.*\" to=\"https://www.maine.edu/\"/><rule from=\"^http://umsweb2013lb\\.its\\.maine\\.edu/\" to=\"https://www.maine.edu/\"/><rule from=\"^http://(learn|mainestreet|peportal|staticweb|think|www)\\.maine\\.edu/\" to=\"https://$1.maine.edu/\"/></ruleset>", "<ruleset name=\"Uni-Mainz.de (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"University_of_Mainz-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Uni-Mainz.de (partial)\" default_off=\"failed ruleset test\" f=\"University_of_Mainz.xml\"><exclusion pattern=\"^http://(?:lokalsystem(?:-test)?|pica[78]1)\\.ub\\.uni-mainz\\.de/(?!cgi-bin/|OPC-IMAGES(?:-NEW)?/)\"/><exclusion pattern=\"^http://www\\.zdv\\.uni-mainz\\.de/umleitungen/\"/><securecookie host=\"^(?:ilias|opac(?:-test)?\\.ub|pica[78]\\.ub)\\.uni-mainz\\.de$\" name=\".\"/><rule from=\"^http://(zdv\\.)?uni-mainz\\.de/\" to=\"https://www.$uni-mainz.de/\"/><rule from=\"^http://www\\.e-learning\\.uni-mainz\\.de/\" to=\"https://www.elearning.uni-mainz.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"University of Manchester (partial)\" f=\"University_of_Manchester.xml\"><securecookie host=\"^login\\.manchester\\.ac\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?manchester\\.ac\\.uk/([\\w-]+\\.(?:jpg|JPG)$|favicon\\.ico|media(?:library)?/)\" to=\"https://www.manchester.ac.uk/$1\"/><rule from=\"^http://(assets|(?:cdt|staffnet|utopia|www)\\.cs|login)\\.manchester\\.ac\\.uk/\" to=\"https://$1.manchester.ac.uk/\"/></ruleset>", "<ruleset name=\"University of North Carolina at Greensboro (partial)\" f=\"University_of_North_Carolina_at_Greensboro.xml\"><securecookie host=\"^(?:baeservices|banweb|blackboard|communityengagement|\\.library|newsandfeatures|provost|web)\\.uncg\\.edu$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?uncg\\.edu/\" to=\"https://www.uncg.edu/\"/><rule from=\"^http://(alumni|baeservices|banweb|blackboard|communityengagement|fsv|giveto|hrl|its|library|newsandfeatures|oedi|online|provost|research|ure|web)\\.uncg\\.edu/\" to=\"https://$1.uncg.edu/\"/><rule from=\"^http://inspirechange\\.uncg\\.edu/(\\?.*)?$\" to=\"https://ure.uncg.edu/features/$1\"/></ruleset>", "<ruleset name=\"University of Notre Dame (partial)\" default_off=\"failed ruleset test\" f=\"University_of_Notre_Dame.xml\"><exclusion pattern=\"^http://riskmgt\\.nd\\.ed/+(?!favicon\\.ico|images/|stylesheets/)\"/><exclusion pattern=\"^http://calendar\\.nd\\.edu/+(?!(?:[\\w.]+/)?themes/)\"/><exclusion pattern=\"^http://(?:www\\.)?gsu\\.nd\\.edu/+(?!assets/|favicon\\.ico|images/|stylesheets/)\"/><exclusion pattern=\"^http://performingarts\\.nd\\.edu/+(?!css/|favicon\\.ico|images/)\"/><exclusion pattern=\"^http://policy\\.nd\\.edu/+(?!assets/|favicon\\.ico)\"/><securecookie host=\"^(?:ame|applymsba|applymsf|apps|EkAnalytics|business|webapp\\.business|cbe|inside-p\\.cc|ceees|cse|www\\.ee|engineering|grc|www\\.irsurvey|law|(?:encore|innopac)?\\.law|least|library|(?:ejl|guides|onesearch|xerxes)\\.library|applymsba|applymsf|was|wireless)\\.nd\\.edu$\" name=\".+\"/><rule from=\"^http://((?:accounts|acms|admissions|africana|al|ame|annualreport2013|applymsba|applymsf|apps|architect|architecture|assyst|auxiliaryoperations|biology|blogs|budget|buildingcommunities|business|webapp\\.business|buy|calendar|campus(?:mail|ministry|safety)|careercenter|cbe|inside-p\\.cc|ccf|ccsp|cee|ceees|cemetery|centerformath|centerforsocialconcerns|centralreceiving|chemistry|classics|commencement|communitystandards|conductor|continuousimprovement|controller|creativecomputing|creekhouse|creo|cse|cslc|csrs?|disabilityservices|diversity|donate|dulac|emergency|endeavor|energy|engineering|english|equity|facultyhandbook|fieldhousemall|finance|financialaid|flowershop|food|fsntserv\\.foodserv|fys|generalservices|globalhealth|gradlife|graduateschool|green|help|homeunderthedome|honorcode|housing|hr|greentree\\.hr|iei|inside|international|investment|irish(?:1card|language|online|studies)|www\\.irsurvey|issa|jobs|kaneb|kellogg|lafortune|(?:encore|innopac)\\.law|learning|least|(?:alephprod|asset|bic|chemistry|discover|ejl|engineering|eresources|factotum|guides|link|m|onesearch|radlab|xerxes)\\.library|listserv|login|magazine|marcomm|marketplace|medieval|msba|msf|msps|nanovic|ndfd|ndsp|news|newsinfo|och|offcampus|oit|oithelp|old2gold|osa|ospir|ott|patentlaw|performingarts|physics|playlikeachampion|policy|politicalscience|postdocs|precollege|preprofessional|president|prism|realestate|recsports|recycling|remix|renovare|research|riskmanagement|riskmgt|sac|sakai|sakailogin|sao|science|search|shakespeare|shop|sniteartmuseum|socialconcerns|sociology|sp|solution|sri|stemeducation|step|stepancenter|strategicplan|studentaccounts|studentaffairs|studentemployment|supporting|surplus|transportation|travel|treasury|trio|ucc?|uhs|utilities|was|webfile|weddingplanner|wellness|wiki|wireless|www3?|youthsports)\\.)?nd\\.edu/\" to=\"https://$1nd.edu/\"/><rule from=\"^http://(?:cancerresearch|harpercancer)\\.nd\\.edu/\" to=\"https://harpercancer.nd.edu/\"/><rule from=\"^http://(?:communityrelations|publicaffairs)\\.nd\\.edu/\" to=\"https://publicaffairs.nd.edu/\"/><rule from=\"^http://(?:www\\.)?(corecurriculum|dante|gsu|latinostudies|law|news|opac|provost|registrar|today)\\.nd\\.edu/\" to=\"https://$1.nd.edu/\"/><rule from=\"^http://(?:www\\.)?ee\\.nd\\.edu/\" to=\"https://www.ee.nd.edu/\"/><rule from=\"^http://(?:enlighten|forum2008)\\.nd\\.edu/\" to=\"https://forum2008.nd.edu/\"/><rule from=\"^http://givingtond\\.nd\\.edu/.*\" to=\"https://supporting.nd.edu/\"/><rule from=\"^http://gmail\\.nd\\.edu/.*\" to=\"https://mail.google.com/a/nd.edu\"/><rule from=\"^http://(www\\.)?(library)\\.nd\\.edu/\" to=\"https://$1$2.nd.edu/\"/><rule from=\"^http://orlh\\.nd\\.edu/\" to=\"https://housing.nd.edu/\"/><rule from=\"^http://www\\.rarebooks\\.nd\\.edu/+(?:$|\\?.*)\" to=\"https://www.library.nd.edu/rarebooks/index.shtml\"/><rule from=\"^http://www\\.undpress\\.nd\\.edu/+(?:$|\\?.*)\" to=\"https://www3.undpress.nd.edu//index.php\"/></ruleset>", "<ruleset name=\"University of Oslo\" default_off=\"failed ruleset test\" f=\"University_of_Oslo.xml\"><rule from=\"^http://(?:www\\.)?ifi\\.uio\\.no/(?=$|\\?.*)\" to=\"https://mn.uio.no/ifi/\"/><rule from=\"^http://(?:www\\.)?ifi\\.uio\\.no/it/(?:$|hjemmeside\\.html$|(\\?.*))\" to=\"https://mn.uio.no/ifi/tjenester/it/$1\"/><rule from=\"^http://(?:www\\.)?matnat\\.uio\\.no/\" to=\"https://www.mn.uio.no/\"/><rule from=\"^http://(?:www\\.)?epay\\.uio\\.no/\" to=\"https://epay.uio.no/\"/><rule from=\"^http://(?:www\\.)?cees\\.uio\\.no/\" to=\"https://cees.uio.no/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"University of Passau (partial)\" f=\"University_of_Passau.xml\"><exclusion pattern=\"^http://(?:www\\.)?(?:rz\\.)?uni-passau\\.de/(?:$|\\?)\"/><securecookie host=\"^www\\.(?:rz\\.)?uni-passau\\.de$\" name=\"^fe_typo_user$\"/><rule from=\"^http://(?:www\\.)?(rz\\.)?uni-passau\\.de/\" to=\"https://www.$1uni-passau.de/\"/><rule from=\"^http://(blog|uniblog\\.rzblogs)\\.uni-passau\\.de/\" to=\"https://$1.uni-passau.de/\"/><rule from=\"^http://(?:www\\.)?students\\.uni-passau\\.de/(\\?.*)?$\" to=\"https:///www.uni-passau.de/hochschulgruppen.html$1\"/></ruleset>", "<ruleset name=\"University of Pittsburgh (partial)\" f=\"University_of_Pittsburgh.xml\"><securecookie host=\"^(?:(?:www\\.)?(?:cs|my)|web\\.cs)\\.pitt\\.edu$\" name=\".+\"/><rule from=\"^http://((?:(?:people\\.|web\\.|www\\.)?cs|(?:www\\.)?my|pre|www)\\.)?pitt\\.edu/\" to=\"https://$1pitt.edu/\"/><rule from=\"^http://(?:www\\.)?accounts\\.pitt\\.edu/\" to=\"https://accounts.pitt.edu/\"/></ruleset>", "<ruleset name=\"Uni-Potsdam.de (partial)\" f=\"University_of_Potsdam.xml\"><exclusion pattern=\"^http://www\\.jura\\.uni-potsdam\\.de/+(?!favicon\\.ico|_layout/|_medien/)\"/><securecookie host=\"^(?:www\\.hpi|(?:www\\.)?pep|puls|\\.webmail)\\.uni-potsdam\\.de$\" name=\".+\"/><rule from=\"^http://(hpi\\.)?uni-potsdam\\.de/\" to=\"https://www.$1uni-potsdam.de/\"/><rule from=\"^http://jura\\.uni-potsdam\\.de/\" to=\"https://www.uni-potsdam.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"University of Reading\" f=\"University_of_Reading.xml\"><securecookie host=\"^www\\.reading\\.ac\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?reading\\.ac\\.uk/\" to=\"https://www.reading.ac.uk/\"/></ruleset>", "<ruleset name=\"University of Rostock (partial)\" f=\"University_of_Rostock.xml\"><securecookie host=\"^(?:email|lsf|studip|webapp)\\.uni-rostock\\.de$\" name=\".+\"/><rule from=\"^http://(autodiscover|email|lsf|mail|aktivierung\\.rz|passwd\\.rz|pwd\\.rz|studip|webapp)\\.uni-rostock\\.de/\" to=\"https://$1.uni-rostock.de/\"/></ruleset>", "<ruleset name=\"University of Salford (partial)\" f=\"University_of_Salford.xml\"><securecookie host=\"^\\.www\\.salford\\.ac\\.uk$\" name=\".+\"/><rule from=\"^http://(usir|webhost|www)\\.salford\\.ac\\.uk/\" to=\"https://$1.salford.ac.uk/\"/></ruleset>", "<ruleset name=\"University of Saskatchewan (partial)\" f=\"University_of_Saskatchewan.xml\"><rule from=\"^http://(?:www\\.)?usask\\.ca/\" to=\"https://www.usask.ca/\"/></ruleset>", "<ruleset name=\"University of Sheffield (partial)\" f=\"University_of_Sheffield.xml\"><securecookie host=\"^(?:onlineshop|portal)\\.shef\\.ac\\.uk$\" name=\".+\"/><rule from=\"^http://((?:guide\\.dcs|onlineshop|portal|www)\\.)?shef\\.ac\\.uk/\" to=\"https://$1shef.ac.uk/\"/><rule from=\"^http://(www\\.)?sheffield\\.ac\\.uk/\" to=\"https://$1sheffield.ac.uk/\"/><rule from=\"^http://portal\\.sheffield\\.ac\\.uk/\" to=\"https://portal.shef.ac.uk/\"/></ruleset>", "<ruleset name=\"University of Tampa\" f=\"University_of_Tampa.xml\"><securecookie host=\"^.+\\.ut\\.edu$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ut\\.edu/\" to=\"https://www.ut.edu/\"/><rule from=\"^http://(jobs|sfs|spartanweb)\\.ut\\.edu/\" to=\"https://$1.ut.edu/\"/></ruleset>", "<ruleset name=\"University of Tennessee, Knoxville\" f=\"University_of_Tennessee_Knoxville.xml\"><securecookie host=\"^(?:autodiscover|(?:icl|www)\\.cs|capricorn\\.dii|webapps\\.dii|(?:www\\.)?directory|ds|myutk|oit2|tiny|tmail)\\.utk\\.edu$\" name=\".+\"/><rule from=\"^http://((?:autodiscover|webapps\\.dii|icl\\.eecs|(?:www\\.)?directory|ds|(?:www\\.)?eecs|help|(?:www\\.)?lib|listserv|myutk|online|oit2?|remedy|secure|tiny|tmail|volmail|www)\\.)?utk\\.edu/\" to=\"https://$1utk.edu/\"/></ruleset>", "<ruleset name=\"University of Tennessee System (partial)\" f=\"University_of_Tennessee_System.xml\"><securecookie host=\"^(?:autodiscover|irisweb|my)\\.tennessee\\.edu$\" name=\".+\"/><rule from=\"^http://(andi|autodiscover|irisweb|its|my|security|utap1)\\.tennessee\\.edu/\" to=\"https://$1.tennessee.edu/\"/></ruleset>", "<ruleset name=\"University of Tennessee at Martin\" default_off=\"failed ruleset test\" f=\"University_of_Tennessee_at_Martin.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UToronoto.ca (problematic)\" default_off=\"expired, mismatched\" f=\"University_of_Toronto-problematic.xml\"><exclusion pattern=\"^http://map\\.utoronto\\.ca/(?!/?_assets/)\"/><rule from=\"^http://(?:www\\.)?(family|fnh|vpstudentsblog)\\.utoronto\\.ca/\" to=\"https://www.$1.utoronto.ca/\"/><rule from=\"^http://answers\\.library\\.utoronto\\.ca/(?!css\\d*/|data/|js/)\" to=\"https://answers.library.utoronto.ca/\"/><rule from=\"^http://(main\\.library|map|roundcube\\.utsc)\\.utoronto\\.ca/\" to=\"https://$1.utoronto.ca/\"/></ruleset>", "<ruleset name=\"UToronto.ca (partial)\" f=\"University_of_Toronto.xml\"><exclusion pattern=\"^http://(?:www\\.)?utoronto\\.ca/(?!favicon\\.ico|__shared/)\"/><exclusion pattern=\"^http://(?:www\\.)?news\\.utoronto\\.ca/(?!sites/)\"/><exclusion pattern=\"^http://campusroomfinder\\.studentlife\\.utoronto\\.ca/(?![cC]ontent/|Login|[sS]cripts/)\"/><securecookie host=\"^(?!\\.library\\.|campusroomfinder\\.studentlife\\.).+\\.utoronto\\.ca$\" name=\".+\"/><securecookie host=\"^\\.library\\.utoronto\\.ca$\" name=\"^__utm\\w$\"/><rule from=\"^http://((?:2learn|alert|(?:www\\.)?(?:bluebook|careers|cns|events|lamp2?|news|oise|portal|studentlife|ulife|utorid|utsc)|connect|www\\.employers\\.careers|www\\.cs|support\\.icicle|main\\.its|(?:focus|link|login|myaccount|payfines|tspace)\\.library|m\\.lms|cus\\.oise|(?:sws|www)\\.rosi|(?:blogs|campusroomfinder)\\.studentlife|www\\.utm|(?:ctl|intranet|joomla|webapps|webmail)\\.utsc|voting|weblogin|webmail|www)\\.)?utoronto\\.ca/\" to=\"https://$1utoronto.ca/\"/><rule from=\"^http://inbox\\.alumni\\.utoronto\\.ca/(?:.*)\" to=\"https://mail.google.com/a/alumni.utoronto.ca\"/><rule from=\"^http://(?:www\\.)?donate\\.utoronto\\.ca/\" to=\"https://donate.utoronto.ca/\"/><rule from=\"^http://www\\.erin\\.utoronto\\.ca/\" to=\"https://www.utm.utoronto.ca/\"/><rule from=\"^http://(answer|guide)s\\.library\\.utoronto\\.ca/(css\\d*|data|js)/\" to=\"https://lib$1s.com/$2/\"/><rule from=\"^http://(?:www\\.)?sa\\.utoronto\\.ca/\" to=\"https://www.studentlife.utoronto.ca/\"/><rule from=\"^http://utcc\\.utoronto\\.ca/\" to=\"https://cns.utoronto.ca/\"/><rule from=\"^http://squirrelmail\\.utsc\\.utoronto\\.ca/\" to=\"https://webmail.utsc.utoronto.ca/\"/></ruleset>", "<ruleset name=\"University of Tübingen (problematic)\" default_off=\"invalid cert\" f=\"University_of_Tuebingen-problematic.xml\"><rule from=\"^http://www\\.zdv\\.uni-tuebingen\\.de/\" to=\"https://www.zdv.uni-tuebingen.de/\"/></ruleset>", "<ruleset name=\"University of Tübingen (partial)\" f=\"University_of_Tuebingen.xml\"><securecookie host=\"^\\.uni-tuebingen\\.de$\" name=\"^fe_typo_user$\"/><securecookie host=\"^epv-welt\\.uni-tuebingen\\.de$\" name=\".+\"/><rule from=\"^http://(?:zdv\\.|www\\.)?uni-tuebingen\\.de/\" to=\"https://www.uni-tuebingen.de/\"/><rule from=\"^http://(campus\\.verwaltung|epv-welt)\\.uni-tuebingen\\.de/\" to=\"https://$1.uni-tuebingen.de/\"/></ruleset>", "<ruleset name=\"University of Waikato (partial)\" f=\"University_of_Waikato.xml\"><securecookie host=\"^.+\\.waikato\\.ac\\.nz$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?waikato\\.ac\\.nz/\" to=\"https://www.waikato.ac.nz/\"/><rule from=\"^http://(cookie|tools\\.its|mngt|www\\.mngt)\\.waikato\\.ac\\.nz/\" to=\"https://$1.waikato.ac.nz/\"/><rule from=\"^http://research\\.waikato\\.ac\\.nz/($|\\?)\" to=\"https://www.waikato.ac.nz/research/$1\"/></ruleset>", "<ruleset name=\"University of Warwick (partial)\" f=\"University_of_Warwick.xml\"><exclusion pattern=\"^http://www2\\.warwick\\.ac\\.uk/(?!.+\\.(?:gif|jpg|png)|brands/|static_war/)\"/><securecookie host=\"^(?:idp|onlinepayment)\\.warwick\\.ac\\.uk$\" name=\".+\"/><rule from=\"^http://((?:go|idp|onlinepayment|websignon|www2?)\\.)?warwick\\.ac\\.uk/\" to=\"https://$1warwick.ac.uk/\"/></ruleset>", "<ruleset name=\"University of Wisconsin-Madison\" default_off=\"failed ruleset test\" f=\"University_of_Wisconsin-Madison.xml\"><exclusion pattern=\"^http://pages\\.cs\\.wisc\\.edu/+~\"/><rule from=\"^http://((?:condor-wiki|htcondor-wiki|pages|research)\\.cs|discovery|(www\\.)?doit|go|kb|learnuw|(ecs|search)\\.library|login|my|mywebspace|wayf|wiscmail)\\.wisc\\.edu/\" to=\"https://$1.wisc.edu/\"/><rule from=\"^http://(?:www\\.)?(cs|housing|library|math)\\.wisc\\.edu/\" to=\"https://www.$1.wisc.edu/\"/></ruleset>", "<ruleset name=\"University of Wollongong\" f=\"University_of_Wollongong.xml\"><securecookie host=\"^sols\\.uow\\.edu\\.au$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"University of York\" f=\"University_of_York.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"universityadmissions.se\" f=\"Universityadmissions.se.xml\"><securecookie host=\"^www\\.universityadmissions.se$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?universityadmissions\\.se/\" to=\"https://www.universityadmissions.se/\"/></ruleset>", "<ruleset name=\"Univie.ac.at (partial)\" f=\"Univie.ac.at.xml\"><exclusion pattern=\"^http://blog\\.univie\\.ac\\.at/+(?!backend/|favicon\\.ico)\"/><exclusion pattern=\"^http://data\\.univie\\.ac\\.at/index\\.html\"/><securecookie host=\"^(?:aufnahmeverfahren|www\\.bpc|chemie|cs|ctl|forschungsnewsletter|informatik|international|kalender|medienportal|public|sbterminals|studentpoint|studien(?:service)?-lehrwesen|univis|weblogin|www|zid)\\.univie\\.ac\\.at$\" name=\".+\"/><rule from=\"^http://((?:aufnahmeverfahren|bibliothek|blog|www\\.bpc|cs|ctl|data|forschungsnewsletter|informatik|international|intra|kalender|medienportal|online|public|sbterminals|studentpoint|studien(?:service)?-lehrwesen|www\\.tbi|univis|weblogin|webmail|www|zid)\\.)?univie\\.ac\\.at//\" to=\"https://$1univie.ac.at/\"/></ruleset>", "<ruleset name=\"unix4lyfe.org\" f=\"Unix4lyfe.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UnixStickers.com\" f=\"UnixStickers.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Unixmen.com\" f=\"Unixmen.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Universidad de Zaragoza\" default_off=\"failed ruleset test\" f=\"Unizar.es.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Unknowncheats.me\" f=\"Unknowncheats.me.xml\"><securecookie host=\"^(?:www)?\\.unknowncheats\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Unlicense.org\" f=\"Unlicense.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UnlimitedHost (partial)\" f=\"UnlimitedHost.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Unlimited 401k.com (false MCB)\" platform=\"mixedcontent\" f=\"Unlimited_401k.com.xml\"><securecookie host=\"^\\.unlimited401k\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Unmitigated Risk.com\" f=\"Unmitigated_Risk.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Uno.im\" default_off=\"failed ruleset test\" f=\"Uno.im.xml\"><securecookie host=\"^\\.(?:pbx\\.|www\\.)?uno\\.im$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UnoEuro.com (partial)\" f=\"UnoEuro.com.xml\"><securecookie host=\"^\\.unoeuro\\.com$\" name=\".+\"/><rule from=\"^http://((?:de|en|lu|no|static|sv|www)\\.)?unoeuro\\.com/\" to=\"https://$1unoeuro.com/\"/></ruleset>", "<ruleset name=\"unop.uk\" f=\"Unop.uk.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Unreal Engine.com\" f=\"Unreal_Engine.xml\"><securecookie host=\"^(?:(?:answers|forums|wiki|www)\\.)?unrealengine\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Unreality TV\" default_off=\"refused\" f=\"Unreality_TV.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"unrestrict.li\" default_off=\"failed ruleset test\" f=\"Unrestrict.li.xml\"><securecookie host=\"^\\.unr(?:estrict)?\\.li$\" name=\".+\"/><rule from=\"^http://(www\\.)?unr(estrict)?\\.li/\" to=\"https://$1unr$2.li/\"/></ruleset>", "<ruleset name=\"Unsearcher.org\" f=\"Unsearcher.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Untangle.com (partial)\" default_off=\"failed ruleset test\" f=\"Untangle.com.xml\"><securecookie host=\"^\\.\" name=\"^ubvt$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Untappd.com (partial)\" f=\"Untappd.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Untergeschoss.ch\" f=\"Untergeschoss.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"unthem\" f=\"Unthem.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Unvanquished.net\" default_off=\"self-signed\" f=\"Unvanquished.net.xml\"><securecookie host=\"^\\.unvanquished\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?unvanquished\\.net/\" to=\"https://unvanquished.net/\"/><rule from=\"^http://forum\\.unvanquished\\.net/\" to=\"https://unvanquished.net/forum/\"/></ruleset>", "<ruleset name=\"Unwanted Witness.or.ug\" f=\"Unwanted_Witness.or.ug.xml\"><rule from=\"^http://(?:www\\.)?unwantedwitness\\.or\\.ug:209[56]/+\" to=\"https://hos.hostalite.com:2096/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Unwire.hk\" f=\"Unwire.hk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Unwire\" f=\"Unwire.xml\"><securecookie host=\"^portal\\.unwire\\.dk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UofLPhysicians.com\" f=\"UofLPhysicians.com.xml\"><securecookie host=\"^www\\.uoflphysicians\\.com$\" name=\".+\"/><rule from=\"^http://uoflphysicians\\.com/\" to=\"https://www.uoflphysicians.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"University of Michigan Health - uofmhealth.org (partial)\" f=\"UofMHealth.org.xml\"><securecookie host=\"^(www)?\\.uofmhealth\\.org$\" name=\".+\"/><rule from=\"^http://uofmhealth\\.org/\" to=\"https://www.uofmhealth.org/\"/><rule from=\"^http://myuofmhealth\\.org/\" to=\"https://www.myuofmhealth.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"up0.net\" f=\"Up0.net.xml\"><rule from=\"^http://up0\\.net/\" to=\"https://www.up0.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"upSploit.com\" default_off=\"connection reset\" f=\"UpSploit.com.xml\"><securecookie host=\"^\\.upsploit\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UpToLike.com\" f=\"UpToLike.com.xml\"><securecookie host=\"^(?:\\.w\\.|www\\.)?uptolike\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Upaiyun.com\" f=\"Upaiyun.com.xml\"><exclusion pattern=\"^http://(apprcn|honggc|wxrss)\\.b0\\.upaiyun\\.com/\"/><rule from=\"^http://www\\.upaiyun\\.com/\" to=\"https://www.upyun.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Upay\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Upay.co.uk.xml\"><rule from=\"^http://(?:www\\.)?upay\\.co\\.uk/\" to=\"https://www.upay.co.uk/\"/><rule from=\"^http://(?:www\\.)?upaymobile\\.co\\.uk/\" to=\"https://www.upaymobile.co.uk/\"/></ruleset>", "<ruleset name=\"Upcase.com\" f=\"Upcase.com.xml\"><securecookie host=\"^upcase\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Update Framework.com\" f=\"Update_Framework.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Universitat Pompeu Fabra\" default_off=\"failed ruleset test\" f=\"Upf.edu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Upgraded Self.com\" f=\"Upgraded_Self.com.xml\"><securecookie host=\"^www\\.upgradedself\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?upgradedself\\.com/\" to=\"https://www.upgradedself.com/\"/></ruleset>", "<ruleset name=\"upic.me (partial)\" f=\"Upic.me.xml\"><exclusion pattern=\"^http://upic\\.me/+(?!count/|favicon\\.ico|i/|images/|js/|jsgzip/|skins/|t/|tw/i/)\"/><securecookie host=\"^\\.upic\\.me$\" name=\"^__utm\\w\"/><rule from=\"^http://(?:th\\.|(www\\.))?upic\\.me/\" to=\"https://$1upic.me/\"/></ruleset>", "<ruleset name=\"upickem.net (partial)\" default_off=\"missing certificate chain\" platform=\"mixedcontent\" f=\"Upickem.net.xml\"><securecookie host=\"^.*\\.upickem\\.net$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Uplay.ubi.com\" default_off=\"failed ruleset test\" f=\"Uplay.ubi.com.xml\"><rule from=\"^http://(?:www\\.)?uplay\\.ubi\\.com/\" to=\"https://www.uplay.ubi.com/\"/></ruleset>", "<ruleset name=\"UploadHero.co (partial)\" default_off=\"expired\" f=\"UploadHero.co.xml\"><rule from=\"^http://s\\.uploadhero\\.com?/\" to=\"https://s.uploadhero.com/\"/></ruleset>", "<ruleset name=\"uploaded.net (partial)\" f=\"Uploaded.net.xml\"><exclusion pattern=\"^http://uploaded.net/io/ticket/\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Uploading.com (partial)\" default_off=\"failed ruleset test\" f=\"Uploading.com.xml\"><securecookie host=\"^\\.uploading\\.com$\" name=\".+\"/><rule from=\"^http://(?:(api\\.)|www\\.)?uploading\\.com/\" to=\"https://$1uploading.com/\"/></ruleset>", "<ruleset name=\"Universidad Pablo de Olavide\" default_off=\"failed ruleset test\" f=\"Upo.es.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UppSite.com\" default_off=\"shows default page\" f=\"UppSite.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Upplandsvasby.se\" f=\"Upplandsvasby.se.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Uppsalahem.se\" f=\"Uppsalahem.se.xml\"><rule from=\"^http://uppsalahem\\.se/\" to=\"https://www.uppsalahem.se/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UpsideOut.com (partial)\" f=\"UpsideOut.com.xml\"><rule from=\"^http://tally\\.upsideout\\.com/\" to=\"https://tally.upsideout.com/\"/></ruleset>", "<ruleset name=\"upsilon.cc\" f=\"Upsilon.cc.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Upstart\" f=\"Upstart.xml\"><securecookie host=\"^(?:www)?\\.upstart\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?upstart\\.com/\" to=\"https://www.upstart.com/\"/></ruleset>", "<ruleset name=\"Uptilo\" f=\"Uptilo.xml\"><securecookie host=\"^(?:.*\\.)?uptilo\\.com$\" name=\".+\"/><rule from=\"^http://(esm\\.|www\\.)?uptilo\\.com/\" to=\"https://$1uptilo.com/\"/><rule from=\"^http://assets\\.uptilo\\.com/\" to=\"https://d3rvd86gsdneth.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Upton Home Hardware\" default_off=\"expired, self-signed\" f=\"Upton-Home-Hardware.xml\"><rule from=\"^http://(?:www\\.)?uptonhomehardware\\.co\\.uk/\" to=\"https://uptonhomehardware.co.uk/\"/></ruleset>", "<ruleset name=\"Upvoted.com\" f=\"Upvoted.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Upworthy.com (partial)\" f=\"Upworthy.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"upx69.com\" f=\"Upx69.com.xml\"><securecookie host=\"^(?:w*\\.)?upx69\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"upxth.com (false MCB)\" default_off=\"expired, mismatched, self-signed\" platform=\"mixedcontent\" f=\"Upxth.com.xml\"><securecookie host=\"^(?:www)?\\.upxth\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?upxth\\.com/\" to=\"https://www.upxth.com/\"/></ruleset>", "<ruleset name=\"Upyun.com\" f=\"Upyun.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Uralfd.ru\" f=\"Uralfd.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Urban Dictionary.com\" f=\"Urban-Dictionary.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://(origin\\.)?urbandictionary\\.com/\" to=\"https://www.urbandictionary.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UrbanTerror.info (partial)\" platform=\"mixedcontent\" f=\"UrbanTerror.info.xml\"><rule from=\"^http://(?:www\\.)?urbanterror\\.info/((?:cache|css|files|images|members/register)/|downloads/.+\\.zip\\?key=[\\da-f]+)\" to=\"https://www.urbanterror.info/$1\"/></ruleset>", "<ruleset name=\"Urban Villa.nl\" default_off=\"failed ruleset test\" f=\"Urban_Villa.nl.xml\"><securecookie host=\"^\\.urbanvilla\\.nl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Urbanartcloud\" f=\"Urbanartcloud.com.xml\"><rule from=\"^http://(www\\.)?urbanartcloud\\.com/\" to=\"https://urbanartcloud.com/\"/></ruleset>", "<ruleset name=\"URL2PNG.com\" f=\"Url2Png.xml\"><rule from=\"^http://url2png\\.com/\" to=\"https://www.url2png.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UrlTrends\" f=\"UrlTrends.xml\"><securecookie host=\"^(?:www\\.)?urltrends\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Urospace (partial)\" default_off=\"failed ruleset test\" f=\"Urospace.xml\"><securecookie host=\"^prima\\.urospace\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?urospace\\.de/\" to=\"https://urospace.de/\"/><rule from=\"^http://prima\\.urospace\\.net:2083/\" to=\"https://prima.urospace.net:2083/\"/></ruleset>", "<ruleset name=\"US-Cert.gov\" default_off=\"failed ruleset test\" f=\"Us-cert.gov.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"us.es\" default_off=\"failed ruleset test\" f=\"Us.es.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Us Magazine.com (partial)\" f=\"Us_Magazine.com.xml\"><exclusion pattern=\"^http://(?:assets-s3|www)\\.usmagazine\\.com/+(?!css/|favicon\\.ico|images/|uploads/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"US Weekly subscriptions.com\" f=\"Us_Weekly_subscriptions.com.xml\"><securecookie host=\"^www\\.usweeklysubscriptions\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?usweeklysubscriptions\\.com/\" to=\"https://www.usweeklysubscriptions.com/\"/></ruleset>", "<ruleset name=\"Usablenet.com\" f=\"Usablenet.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Universidad de Santiago de Compostela\" f=\"Usc.es.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Use-Enco.com\" default_off=\"failed ruleset test\" f=\"Use-Enco.com.xml\"><securecookie host=\"^(?:www)?\\.use-enco\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?use-enco\\.com/\" to=\"https://www.use-enco.com/\"/></ruleset>", "<ruleset name=\"useCryptos.com\" f=\"UseCryptos.com.xml\"><securecookie host=\"^\\.usecryptos\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Use SSH 001.com\" default_off=\"failed ruleset test\" f=\"Use_SSH_001.com.xml\"><securecookie host=\"^www\\.usessh001\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Usenet-Crawler.com\" f=\"Usenet-Crawler.com.xml\"><securecookie host=\"^www\\.usenet-crawler\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Usenet Junction\" f=\"Usenet-Junction.xml\"><securecookie host=\"^(?:www\\.)?usenetjunction\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Usenet.nl (partial)\" f=\"Usenet.nl.xml\"><rule from=\"^http://(?:www\\.)?usenet\\.nl/\" to=\"https://www.usenet.nl/\"/><rule from=\"^http://en\\.usenet\\.nl/+register-now/*(?:$|\\?.*)\" to=\"https://en.usenet.nl/registration/\"/><rule from=\"^http://de\\.usenet\\.nl/+jetzt-anmelden/*(?:$|\\?.*)\" to=\"https://de.usenet.nl/anmeldung/\"/><rule from=\"^http://es\\.usenet\\.nl/+registrese-ahora/*(?:$|\\?.*)\" to=\"https://es.usenet.nl/registro/\"/><rule from=\"^http://fr\\.usenet\\.nl/+inscription-maintenant/*(?:$|\\?.*)\" to=\"https://fr.usenet.nl/inscription/\"/><rule from=\"^http://it\\.usenet\\.nl/+registratevi-ora/*(?:$|\\?.*)\" to=\"https://it.usenet.nl/registrazione/\"/><rule from=\"^http://nl\\.usenet\\.nl/+nu-aanmelden/*(?:$|\\?.*)\" to=\"https://nl.usenet.nl/aanmelding/\"/><rule from=\"^http://(\\w\\w)\\.usenet\\.nl/(?=(?:aanmelding|anmeldung|inscription|registration|registrazione|registro)(?:$|[?/])|(?:assistenza/modulo-di-assistenza|service/formulaire-assistance|service/support-form|service/support-formular|service/support-formulier|servicio/formulario-de-soporte)/*(?:$|\\?)|UNF/|unf/)\" to=\"https://$1.usenet.nl/\"/></ruleset>", "<ruleset name=\"UsenetServer\" f=\"UsenetServer.xml\"><securecookie host=\"^.*\\.usenetserver\\.com$\" name=\".*\"/><rule from=\"^http://((?:accounts|globalsearch|www)\\.)?usenetserver\\.com/\" to=\"https://$1usenetserver.com/\"/></ruleset>", "<ruleset name=\"User-agents.org\" default_off=\"self-signed\" f=\"User-agents.org.xml\"><rule from=\"^http://(?:www\\.)?user-agents\\.org/\" to=\"https://www.user-agents.org/\"/></ruleset>", "<ruleset name=\"UserEcho.com\" f=\"UserEcho.com.xml\"><exclusion pattern=\"^http://jdb\\.userecho\\.com/$\"/><exclusion pattern=\"^http://jdb\\.userecho\\.com/s/assets2\\.0/css/font-awesome\\.min\\.css\"/><exclusion pattern=\"^http://jdb\\.userecho\\.com/s/assets2\\.0/fonts/\"/><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UserScape\" default_off=\"failed ruleset test\" f=\"UserScape.xml\"><securecookie host=\"^\\.userscape\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.|drop\\.)?userscape\\.com/\" to=\"https://www.userscape.com/\"/></ruleset>", "<ruleset name=\"User Local (partial)\" f=\"User_Local.xml\"><securecookie host=\"^\\.nakanohito\\.jp$\" name=\"^AP$\"/><rule from=\"^http://(b)?s\\.nakanohito\\.jp/\" to=\"https://$1s.nakanohito.jp/\"/><rule from=\"^http://b0\\d\\.nakanohito\\.jp/\" to=\"https://bs.nakanohito.jp/\"/></ruleset>", "<ruleset name=\"userfox\" default_off=\"failed ruleset test\" f=\"Userfox.xml\"><securecookie host=\"^app\\.userfox\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?userfox\\.com/\" to=\"https://www.userfox.com/\"/><rule from=\"^http://(app|manage)\\.userfox\\.com/\" to=\"https://$1.userfox.com/\"/><rule from=\"^http://static\\.userfox\\.com/\" to=\"https://d2y71mjhnajxcg.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Userium.com\" default_off=\"failed ruleset test\" f=\"Userium.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Userlike.com\" f=\"Userlike.com.xml\"><securecookie host=\"^(?:www\\.)?userlike\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Userreport.com\" f=\"Userreport.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"userscontent.net\" default_off=\"failed ruleset test\" f=\"Userscontent.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Userscripts-mirror.org\" f=\"Userscripts-mirror.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Usersnap.com\" f=\"Usersnap.com.xml\"><securecookie host=\"^api\\.usersnap\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Uservoice clients\" default_off=\"mismatched\" f=\"Uservoice-clients.xml\"><exclusion pattern=\"^http://ideas\\.joomla\\.org/track\\.gif\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UserVoice\" f=\"Uservoice.xml\"><exclusion pattern=\"^http://(email|email\\.feedback-poweredby|www6)\\.uservoice\\.com/\"/><securecookie host=\"^(?!email\\.|email\\.feedback-poweredby\\.|www6\\.)\\w\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"usesthis.com\" default_off=\"failed ruleset test\" f=\"Usesthis.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ushahidi.com (partial)\" f=\"Ushahidi.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ushmm.org\" default_off=\"403\" f=\"Ushmm.org.xml\"><securecookie host=\"^ushmm\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ushmm\\.org/\" to=\"https://ushmm.org/\"/></ruleset>", "<ruleset name=\"uslaw.link\" f=\"Uslaw.link.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"usmile.at\" default_off=\"needs clearnet testing\" f=\"Usmile.at.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UsplusU.com\" default_off=\"mismatched\" f=\"UsplusU.com.xml\"><securecookie host=\"^\\.(?:www\\.)?usplusu\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UsrJoy\" f=\"UsrJoy.xml\"><securecookie host=\"^(?:.+\\.)?usrjoy\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?usrjoy\\.com/\" to=\"https://www.usrjoy.com/\"/></ruleset>", "<ruleset name=\"Ustatik.com\" f=\"Ustatik.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ustream.tv (mismatches)\" default_off=\"mismatched\" f=\"Ustream-mismatches.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ustream.tv (buggy)\" default_off=\"breaks video\" f=\"Ustream.xml\"><exclusion pattern=\"^http://www\\.ustream\\.tv/(?!blog/wp-content/|embed/|en_US/|platform/)\"/><rule from=\"^http://support\\.ustream\\.tv/+(?=$|\\?)\" to=\"https://ustream.zendesk.com/home\"/><rule from=\"^http://support\\.ustream\\.tv/+\" to=\"https://ustream.zendesk.com/\"/><rule from=\"^http://static-cdn(1|2)\\.ustream\\.tv/\" to=\"https://secure-static-cdn$1.ustream.tv/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Utah Education Network (partial)\" default_off=\"failed ruleset test\" f=\"Utah-Education-Network.xml\"><securecookie host=\"^online\\.uen\\.org$\" name=\".*\"/><rule from=\"^http://uen\\.org/\" to=\"https://www.eun.org/\"/><rule from=\"^http://(?:www\\.)?uen\\.org/(css|images)/\" to=\"https://www.uen.org/$2/\"/><rule from=\"^http://online\\.uen\\.org/\" to=\"https://online.uen.org/\"/></ruleset>", "<ruleset name=\"utb.ru\" f=\"Utb.ru.xml\"><rule from=\"^http://utb\\.ru/\" to=\"https://www.utb.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Utfs.org\" f=\"Utfs.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Utica College\" f=\"Utica.xml\"><rule from=\"^http://(?:www\\.)?utica\\.edu/\" to=\"https://utica.edu/\"/></ruleset>", "<ruleset name=\"Utopia-Web (partial)\" default_off=\"failed ruleset test\" f=\"Utopia-Web.xml\"><securecookie host=\"^secure\\.utopia-web\\.com$\" name=\".*\"/><rule from=\"^http://secure\\.utopia-web\\.com/\" to=\"https://secure.utopia-web.com/\"/></ruleset>", "<ruleset name=\"Utopia.ai\" default_off=\"refused\" f=\"Utopia.xml\"><securecookie host=\"^\\.utopia\\.ai$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Utopia net.org\" f=\"Utopia_net.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Universitat de València\" default_off=\"failed ruleset test\" f=\"Uv.es.xml\"><rule from=\"^http://uv\\.es/\" to=\"https://www.uv.es/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UvA.nl (partial)\" f=\"UvA.nl.xml\"><rule from=\"^http://(?:www\\.)?uva\\.nl/\" to=\"https://www.uva.nl/\"/><rule from=\"^http://ray\\.ic\\.uva\\.nl/\" to=\"https://id.uva.nl/\"/><rule from=\"^http://staff\\.science\\.uva\\.nl/+(?:$|\\?.*)\" to=\"https://staff.fnwi.uva.nl/\"/><rule from=\"^http://(?:www\\.)?student\\.uva\\.nl/\" to=\"https://student.uva.nl/\"/><rule from=\"^http://email\\.student\\.uva\\.nl/.*\" to=\"https://mail.google.com/a/student.uva.nl\"/><rule from=\"^http://(blackboard|extranet|staff\\.fnwi|id|medewerker|mijn|mytimetable|rooster|staff\\.science|secure|m\\.sis|(?:www\\.)?staff|static|student|d(?:atabases|iensten)\\.uba)\\.uva\\.nl/\" to=\"https://$1.uva.nl/\"/></ruleset>", "<ruleset name=\"UvCDN.com\" f=\"UvCDN.com.xml\"><securecookie host=\"^\\.uvcdn\\.com$\" name=\"^__cfduid$\"/><rule from=\"^http://assets(\\d)\\.uvcdn\\.com/\" to=\"https://assets$1.uvcdn.com/\"/></ruleset>", "<ruleset name=\"v-identity.com\" default_off=\"failed ruleset test\" f=\"V-identity.com.xml\"><rule from=\"^http://(?:www\\.)?v-identity\\.com/\" to=\"https://www.v-identity.com/\"/><rule from=\"^http://cdn\\.v-identity\\.com/\" to=\"https://cdn.v-identity.com/\"/></ruleset>", "<ruleset name=\"V2 Cigs (partial)\" f=\"V2-Cigs.xml\"><securecookie host=\"^money\\.v2cigs\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?v2cigs\\.com/$\" to=\"https://www.v2cigs.com/index.php\"/><rule from=\"^http://(?:www\\.)?v2cigs\\.com/(addons/|javascript/|lib/|prefetcher/|(?:(?:account|cart|giftcertificates|index|login)\\.php|security\\.html)(?:$|\\?)|templates/)\" to=\"https://www.v2cigs.com/$1\"/><rule from=\"^http://(money|whoson-gw)\\.v2cigs\\.com/\" to=\"https://$1.v2cigs.com/\"/></ruleset>", "<ruleset name=\"v2ex.co\" f=\"V2ex.co.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"V3.co.uk (partial)\" f=\"V3.co.uk.xml\"><rule from=\"^http://(?:www\\.)?v3\\.co\\.uk/(images/loading\\.gif|IMG/)\" to=\"https://incmai.incisivemedia.com/$1\"/></ruleset>", "<ruleset name=\"V6ak.com\" f=\"V6ak.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VARCentral.com.au (partial)\" f=\"VARCentral.com.au.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VA Loan Captain\" f=\"VA_Loan_Captain.xml\"><securecookie host=\"^\\.(?:www\\.)?valoancaptain\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VBG.de\" f=\"VBG.de.xml\"><securecookie host=\"^www\\.vbg\\.de$\" name=\".+\"/><rule from=\"^http://vbg\\.de/\" to=\"https://www.vbg.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"vBSEO (partial)\" f=\"VBSEO.xml\"><exclusion pattern=\"^http://(?:www\\.)?vbseo\\.com/(?!clientscript/|(?:cron|css|image)\\.php|images/|(?:imag|styl)es_homepage/|register(?:$|\\?|/))\"/><rule from=\"^http://(?:cdn\\.|(www\\.))?vbseo\\.com/\" to=\"https://$1vbseo.com/\"/></ruleset>", "<ruleset name=\"VB static.co\" default_off=\"failed ruleset test\" f=\"VB_static.co.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"vBulletin\" f=\"VBulletin.xml\"><securecookie host=\"^(?:.*\\.)?vbulletin\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VC-Server\" default_off=\"failed ruleset test\" f=\"VC-Server.xml\"><securecookie host=\"^(?:(?:www|vpsmanager)\\.)?vc-server\\.de$\" name=\".+\"/><securecookie host=\"^(?:www\\.)?vc-kundencenter\\.de$\" name=\".+\"/><securecookie host=\"^(?:www\\.)?vc-kundenservice\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VCAB.com (partial)\" default_off=\"failed ruleset test\" f=\"VCAB.com.xml\"><rule from=\"^http://secure\\.vcab\\.com/\" to=\"https://secure.vcab.com/\"/></ruleset>", "<ruleset name=\"VCD.org\" default_off=\"failed ruleset test\" f=\"VCD.org.xml\"><securecookie host=\"^www\\.vcd\\.org$\" name=\".+\"/><securecookie host=\"^mobilitaet2050\\.vcd\\.org\" name=\".+\"/><rule from=\"^http://www\\.60plus\\.vcd\\.org/\" to=\"https://60plus.vcd.org/\"/><rule from=\"^http://www\\.mobilitaet2050\\.vcd\\.org/\" to=\"https://mobilitaet2050.vcd.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VCE.com (partial)\" f=\"VCE.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?vce\\.com/(?!asset/|campaigns/|favicon\\.ico|login(?:$|\\?|/)|(?:[sS]cript|[wW]eb)[rR]esource\\.axd|[wW]eb[mM]ethods\\.aspx)\"/><rule from=\"^http://(static\\.|www\\.)?vce\\.com/\" to=\"https://$1vce.com/\"/><rule from=\"^http://support\\.vce\\.com/\" to=\"https://vce.secure.force.com/\"/></ruleset>", "<ruleset name=\"VDI-Wissensforum.de\" f=\"VDI-Wissensforum.de.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VDQ Bulbs.com\" f=\"VDQ_Bulbs.com.au.xml\"><securecookie host=\"^(?:w*\\.)?vdqbulbs\\.com\\.au$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VDV.de (partial)\" f=\"VDV.de.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://vdv\\.de/\" to=\"https://www.vdv.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VDownloader\" f=\"VDownloader.xml\"><rule from=\"^http://(www\\.)?vdownloader\\.es/\" to=\"https://vdownloader.com/\"/></ruleset>", "<ruleset name=\"VEVO\" default_off=\"failed ruleset test\" f=\"VEVO.xml\"><rule from=\"^http://cache\\.vevo\\.com/\" to=\"https://scache.vevo.com/\"/><rule from=\"^https?://img\\.cache\\.vevo\\.com/\" to=\"https://scache.vevo.com/\"/><rule from=\"^https?://aws-cache\\.vevocdn\\.com/\" to=\"https://aws-cache.vevo.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VFEmail.net\" f=\"VFEmail.net.xml\"><securecookie host=\"^(?:\\.|\\.www\\.)?vfemail\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VG WORT.de\" f=\"VG-WORT.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://vg\\d\\d\\.met\\.vgwort\\.de/\" to=\"https://ssl-vg03.met.vgwort.de/\"/><rule from=\"^http://((?:ssl-vg\\d\\d\\.met|schulbuchportal|tom|www)\\.)?vgwort\\.de/\" to=\"https://$1vgwort.de/\"/></ruleset>", "<ruleset name=\"VG.no\" f=\"VG.no.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VGO Com.com (partial)\" f=\"VGO_Com.com.xml\"><securecookie host=\"^controlpanel\\.vgocom\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VHL Central\" f=\"VHLCentral.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VIAF.org\" f=\"VIAF.org.xml\"><rule from=\"^http://www\\.viaf\\.org/\" to=\"https://viaf.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VIP.de\" f=\"VIP.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VIPserv.org\" f=\"VIPserv.org.xml\"><rule from=\"^http://((?:webmail|www)\\.)?vipserv\\.org/\" to=\"https://$1vipserv.org/\"/><rule from=\"^http://x14\\.eu/\" to=\"https://vipserv.org/\"/></ruleset>", "<ruleset name=\"VIRURL\" default_off=\"failed ruleset test\" f=\"VIRURL.xml\"><securecookie host=\"^spn\\.sr$\" name=\".+\"/><securecookie host=\"^(?:www\\.)?virurl\\.com$\" name=\".+\"/><rule from=\"^http://spn\\.sr/\" to=\"https://spn.sr/\"/><rule from=\"^http://(www\\.)?virurl\\.com/\" to=\"https://$1virurl.com/\"/></ruleset>", "<ruleset name=\"VK.me\" default_off=\"mismatched\" f=\"VK.me.xml\"><exclusion pattern=\"^http://cs\\w*\\.vk.me/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VK.se (partial)\" f=\"VK.se.xml\"><securecookie host=\"^etidning\\.vk\\.se$\" name=\".+\"/><rule from=\"^http://etidning\\.vk\\.se/\" to=\"https://etidning.vk.se/\"/><rule from=\"^http://sifomedia\\.vk\\.se/\" to=\"https://oasc07.247realmedia.com/\"/></ruleset>", "<ruleset name=\"VK.com\" f=\"VK.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VKontakte.ru\" f=\"VKontakte.ru.xml\"><rule from=\"^http://(www\\.)?vkontakte\\.ru/\" to=\"https://$1vk.com/\"/></ruleset>", "<ruleset name=\"VLC-addons.org\" f=\"VLC-addons.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VMware.com (partial)\" f=\"VMware.xml\"><exclusion pattern=\"^http://(?:forum|info|ir|kb|learn|nlblogs|partnerlocator|vcloud)\\.vmware\\.com/\"/><exclusion pattern=\"^http://store\\.vmware\\.com/(?!DRHM/Storefront/Site/|favicon\\.ico|promo/)\"/><securecookie host=\"^(?!store\\.)(?:.*\\.)?vmware\\.com$\" name=\".+\"/><rule from=\"^http://vmware\\.com/+\" to=\"https://www.vmware.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VMware Blogs.com\" f=\"VMware_Blogs.com.xml\"><securecookie host=\"^www\\.vmwareblogs\\.com$\" name=\".+\"/><rule from=\"^http://vmwareblogs\\.com/+\" to=\"https://www.vmwareblogs.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VOA-Islam.com\" f=\"VOA-Islam.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VOA_Chinese.com\" f=\"VOA_Chinese.com.xml\"><rule from=\"^http://(www\\.|m\\.)?voachinese\\.com/\" to=\"https://www.voachinese.com/\"/></ruleset>", "<ruleset name=\"VOICE Daily Deals.com\" f=\"VOICE-Daily-Deals.xml\"><securecookie host=\".*\\.voicedailydeals\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VPAC.org\" default_off=\"failed ruleset test\" f=\"VPAC.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VPN-Service.us\" f=\"VPN-Service.us.xml\"><securecookie host=\"^\\.vpn-service\\.us$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VPN4ALL\" default_off=\"failed ruleset test\" f=\"VPN4ALL.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VPNCompare.co.uk\" f=\"VPNCompare.co.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VPNGlobe.com\" default_off=\"failed ruleset test\" f=\"VPNGlobe.com.xml\"><securecookie host=\"^(?:my)?\\.vpnglobe\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VPNReactor.com\" f=\"VPNReactor.xml\"><securecookie host=\"^(?:.*\\.)?vpnreactor\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VPNSecure.me\" f=\"VPNSecure.me.xml\"><securecookie host=\"^(?:\\.|www\\.)?vpnsecure\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VPN Critic.com\" f=\"VPN_Critic.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VPN Reviewer.com\" default_off=\"failed ruleset test\" f=\"VPN_Reviewer.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VPS.net (missing certificate chain)\" default_off=\"missing certificate chain\" f=\"VPS.net-problematic.xml\"><securecookie host=\"^(?:www\\.)?vps\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VPS.net (partial)\" f=\"VPS.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VR.se\" platform=\"mixedcontent\" f=\"VR.se.xml\"><rule from=\"^http://www\\.vr\\.se/\" to=\"https://www.vr.se/\"/><rule from=\"^http://vr\\.se/\" to=\"https://www.vr.se/\"/></ruleset>", "<ruleset name=\"VSCo.co\" f=\"VSCo.co.xml\"><securecookie host=\"^vsco\\.co$\" name=\".+\"/><rule from=\"^http://(www\\.)?vsco\\.co/\" to=\"https://$1vsco.co/\"/><rule from=\"^http://static\\d\\.vsco\\.co/\" to=\"https://d1484tg77u0d9i.cloudfront.net/\"/></ruleset>", "<ruleset name=\"VSHosting\" f=\"VSHosting.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VSIP Program.com\" f=\"VSIP_Program.com.xml\"><securecookie host=\"^vsipprogram\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VTB.com\" default_off=\"mismatched\" f=\"VTB.com.xml\"><securecookie host=\"(?:.*\\.)?vtb\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VTB Russia.ru\" default_off=\"mismatched\" f=\"VTB_Russia.ru.xml\"><securecookie host=\"^\\.vtbrussia\\.ru$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VTCSec.ru\" default_off=\"failed ruleset test\" f=\"VTCSec.ru.xml\"><rule from=\"^http://(?:www\\.)?vtcsec\\.ru/\" to=\"https://vtcsec.ru/\"/></ruleset>", "<ruleset name=\"VTEC Direct.com\" default_off=\"expired, missing certificate chain\" platform=\"mixedcontent\" f=\"VTEC-Direct.xml\"><securecookie host=\"^\\.vtecdirect\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VTLUUG.org\" f=\"VTLUUG.org.xml\"><rule from=\"^http://(?:(milton\\.)|www\\.)?vtluug\\.org/\" to=\"https://$1vtluug.org/\"/></ruleset>", "<ruleset name=\"VTech.com\" f=\"VTech.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VTunnel\" default_off=\"failed ruleset test\" f=\"VTunnel.xml\"><securecookie host=\"^(?:.*\\.)?vtunnel\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VU.nl (partial)\" default_off=\"failed ruleset test\" f=\"VU.nl.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(cs|fbw)\\.vu\\.nl/\" to=\"https://www.$1.vu.nl/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VUTBr.cz (partial)\" default_off=\"failed ruleset test\" f=\"VUTBr.cz.xml\"><securecookie host=\".+\\.vutbr\\.cz$\" name=\".+\"/><rule from=\"^http://net\\.vutbr\\.cz/\" to=\"https://www.net.vutbr.cz/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VVCap\" default_off=\"connection reset\" f=\"VVCap.xml\"><rule from=\"^http://(?:www\\.)?vvcap\\.net/\" to=\"https://vvcap.net/\"/></ruleset>", "<ruleset name=\"VZP.cz\" f=\"VZP.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vabali.de (partial)\" f=\"Vabali.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vacando.ch\" f=\"Vacando.ch.xml\"><rule from=\"^http://vacando\\.ch/\" to=\"https://www.vacando.ch/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VacationRoost\" default_off=\"failed ruleset test\" f=\"VacationRoost.xml\"><rule from=\"^http://ajax\\.vacationroost\\.com/\" to=\"https://ajax.vacationroost.com/\"/></ruleset>", "<ruleset name=\"vacenza.com (partial)\" f=\"Vacenza.com.xml\"><rule from=\"^http://(?:www\\.)?vacenza\\.com/([cC]ontent/|account/signin)\" to=\"https://www.vacenza.com/$1\"/><rule from=\"^http://tracking\\.vacenza\\.com/\" to=\"https://tracking.vacenza.com/\"/></ruleset>", "<ruleset name=\"Vagrant Cloud.com\" f=\"Vagrant_Cloud.com.xml\"><securecookie host=\"^vagrantcloud\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"valME.io\" f=\"ValME.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Valdhaus.co\" f=\"Valdhaus.co.xml\"><securecookie host=\"^\\.valdhaus\\.co$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vale of Glamorgan.gov.uk (partial)\" f=\"Vale_of_Glamorgan.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Valley First Credit Union\" default_off=\"failed ruleset test\" f=\"Valley-First-Credit-Union.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Valley First CU.org\" default_off=\"failed ruleset test\" f=\"Valley_First_CU.org.xml\"><securecookie host=\"^(?:www\\.)?valleyfirstcu\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Valtiolle.fi (missing certificate chain)\" default_off=\"missing certificate chain\" f=\"Valtiolle.fi-problematic.xml\"><rule from=\"^http://heli\\.valtiolle\\.fi/\" to=\"https://haku.valtiolle.fi/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Valtiolle.fi (partial)\" f=\"Valtiolle.fi.xml\"><securecookie host=\"^(?:www\\.)?valtiolle\\.fi$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Valtion taloudellinen tutkimuskeskus\" default_off=\"failed ruleset test\" f=\"Valtion-taloudellinen-tutkimuskeskus.xml\"><securecookie host=\"^(?:www\\.)?vatt\\.fi$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Valtiontalouden tarkastusvirasto\" f=\"Valtiontalouden-tarkastusvirasto.xml\"><securecookie host=\"^www\\.vtv\\.fi$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?vtv\\.fi/\" to=\"https://www.vtv.fi/\"/></ruleset>", "<ruleset name=\"Value Applications\" default_off=\"failed ruleset test\" f=\"Value-Applications.xml\"><securecookie host=\"^(?:.*\\.)?valueapplications\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?valueapplications\\.com/\" to=\"https://www.valueapplications.com/\"/></ruleset>", "<ruleset name=\"Value-Domain.com (partial)\" f=\"Value-Domain.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ValueClick (mismatches)\" default_off=\"Akamai\" f=\"ValueClick-mismatches.xml\"><securecookie host=\"(?:.*\\.)?(?:adrxmedia|modernlivingmedia|momsmedia)\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?(adrx|modernliving|moms)media\\.com/\" to=\"https://www.$1media.com/\"/><rule from=\"^http://gocart\\.valueclickmedia\\.com/\" to=\"https://gocart.valueclickmedia.com/\"/><rule from=\"^http://cdn-origin\\.snv\\.vcmedia\\.com/\" to=\"https://cdn-origin.snv.vcmedia.com/\"/></ruleset>", "<ruleset name=\"ValueClick (partial)\" default_off=\"failed ruleset test\" f=\"ValueClick.xml\"><securecookie host=\"^\\.apmebf\\.com$\" name=\".+\"/><securecookie host=\"^.*\\.(?:fastclick|mediaplex|valueclick(?:media)?)\\.(?:com|net)$\" name=\".+\"/><securecookie host=\"^admin\\.valueclickmedia\\.com$\" name=\".+\"/><rule from=\"^http://(mp|rd)\\.apmebf\\.com/\" to=\"https://$1.apmebf.com/\"/><rule from=\"^http://(?:www\\.)?(?:fast|value)click(media)?\\.com/\" to=\"https://www.valueclick$1.com/\"/><rule from=\"^http://(?:secure\\.)?cdn\\.fastclick\\.net/\" to=\"https://secure.cdn.fastclick.net/\"/><rule from=\"^http://(?:media|secure)\\.fastclick\\.net/\" to=\"https://secure.fastclick.net/\"/><rule from=\"^http://sp\\.fastclick\\.net/\" to=\"https://sp.fastclick.net/\"/><rule from=\"^http://(adfarm|altfarm|app|img|mojofarm)\\.mediaplex\\.com/\" to=\"https://$1.mediaplex.com/\"/><rule from=\"^http://(?:secure\\.)?img-cdn\\.mediaplex\\.com/\" to=\"https://secure.img-cdn.mediaplex.com/\"/><rule from=\"^http://(?:www\\.)?mediaplex\\.com/\" to=\"https://www.mediaplex.com/\"/><rule from=\"^http://(?:secure-)?cdn\\.mplxtms\\.com/\" to=\"https://secure-cdn.mplxtms.com/\"/><rule from=\"^http://admin\\.valueclickmedia\\.com/\" to=\"https://admin.valueclickmedia.com/\"/></ruleset>", "<ruleset name=\"ValueCommerce (partial)\" f=\"ValueCommerce.xml\"><securecookie host=\"^\\.valuecommerce\\.com$\" name=\"^VCIDENTITY$\"/><securecookie host=\"^www\\.valuecommerce\\.ne\\.jp$\" name=\".+\"/><rule from=\"^http://valuecommerce\\.(com|ne\\.jp)/\" to=\"https://www.valuecommerce.$1/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ValueHost.ru\" f=\"ValueHost.ru.xml\"><securecookie host=\"^\\.?www\\.valuehost\\.ru$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ValueShop.co.uk\" f=\"ValueShop.co.uk.xml\"><securecookie host=\"^www\\.valueshop\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?valueshop\\.co\\.uk/\" to=\"https://www.valueshop.co.uk/\"/></ruleset>", "<ruleset name=\"Valued Opinions\" f=\"Valued_Opinions.xml\"><rule from=\"^http://(?:www\\.)?valuedopinions\\.co\\.uk/\" to=\"https://www.valuedopinions.co.uk/\"/><rule from=\"^http://adtracker\\.valuedopinions\\.co\\.uk/\" to=\"https://adtracker.valuedopinions.co.uk/\"/></ruleset>", "<ruleset name=\"Valuedial.com\" f=\"Valuedial.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Valve (expired)\" default_off=\"expired\" f=\"Valve-mismatches.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Valve Software.com (partial)\" default_off=\"Breaks some games\" f=\"Valve.xml\"><securecookie host=\"^developer\\.valvesoftware\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VanAqua\" f=\"VanAqua.org.xml\"><securecookie host=\"^((www|bbnc|killerwhale|onlinesales|aquanet|bbnc-dev|help|netcommunity|remote|sftm|webmail)\\.)?vanaqua\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VanDyke.com\" f=\"VanDyke.com.xml\"><securecookie host=\"^(?:forums|secure)\\.vandyke\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"van Haaren.net (partial)\" f=\"Van_Haaren.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Van Lanschot.com\" f=\"Van_Lanschot.com.xml\"><securecookie host=\"^(?:www\\.)?vanlanschot\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Van Lanschot.nl\" f=\"Van_Lanschot.nl.xml\"><securecookie host=\"^(?:www\\.)?vanlanschot\\.nl$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?vanlanschot\\.nl/\" to=\"https://www.vanlanschot.nl/\"/></ruleset>", "<ruleset name=\"Van Winkles.com\" f=\"Van_Winkles.com.xml\"><securecookie host=\"^\\.?vanwinkles\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vancity\" f=\"Vancity.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://vancityinsurance\\.com/\" to=\"https://www.vancityinsurance.com/\"/><rule from=\"^http://myreloadable\\.ca/\" to=\"https://www.myreloadable.ca/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vanco-Asiapac.com (partial)\" default_off=\"failed ruleset test\" f=\"Vanco-Asiapac.com.xml\"><rule from=\"^http://o-zone\\.vanco-asiapac\\.com/\" to=\"https://o-zone.vanco-asiapac.com/\"/></ruleset>", "<ruleset name=\"Vanco.co.uk (partial)\" f=\"Vanco.co.uk.xml\"><securecookie host=\"^o-zone\\.vanco\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vanderbilt.edu (false MCB)\" platform=\"mixedcontent\" f=\"Vanderbilt.org-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vanderbilt.edu (partial)\" default_off=\"failed ruleset test\" f=\"Vanderbilt.org.xml\"><securecookie host=\"^events\\.vanderbilt\\.edu$\" name=\".+\"/><securecookie host=\"^www\\.mc\\.vanderbilt\\.edu$\" name=\".+\"/><securecookie host=\"^mc\\.vanderbilt\\.edu$\" name=\".+\"/><securecookie host=\"^my\\.vanderbilt\\.edu$\" name=\".+\"/><securecookie host=\"^phonedirectory\\.vanderbilt\\.edu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vanilla Forums (partial)\" f=\"Vanilla-Forums.xml\"><exclusion pattern=\"^http://(?:www\\.)?vanillaforums\\.com/(?:$|info(?:$|/))\"/><rule from=\"^http://autostatic\\.vanilladev\\.com/\" to=\"https://autostatic.vanilladev.com/\"/><rule from=\"^http://(www\\.)?vanillaforums\\.com/\" to=\"https://$1vanillaforums.com/\"/><rule from=\"^http://cdn\\.v(?:anillaforums\\.com|ni\\.la)/\" to=\"https://c3409409.ssl.cf0.rackcdn.com/\"/><rule from=\"^http://autostatic-cl1\\.vanilladev\\.com/(\\w+)\\.vanillaforums\\.com/\" to=\"https://$1.vanillaforums.com/\"/></ruleset>", "<ruleset name=\"VanillaMastercard\" f=\"VanillaMastercard.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vanillicon.com\" f=\"Vanillicon.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vanity Fair (partial)\" f=\"Vanity-Fair.xml\"><securecookie host=\"^.*\\.vanityfair\\.com$\" name=\".*\"/><rule from=\"^http://secure\\.vanityfair\\.com/\" to=\"https://secure.vanityfair.com/\"/><rule from=\"^http://stats2\\.vanityfair\\.com/\" to=\"https://vanityfair-com.122.2o7.net/\"/></ruleset>", "<ruleset name=\"VantageOne Credit Union\" f=\"VantageOne-Credit-Union.xml\"><securecookie host=\"^(www\\.|onlinebanking\\.|mdws\\.)?vantageone\\.net$\" name=\".+\"/><securecookie host=\"^(www\\.)?vantageonerealty\\.com$\" name=\".+\"/><securecookie host=\"^vantageone\\.mycumulus\\.ca$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vantiv.com (partial)\" f=\"Vantiv.com.xml\"><rule from=\"^http://((?:(?:www\\.)?clientconnection|sales|www)\\.)?vantiv\\.com/\" to=\"https://$1vantiv.com/\"/></ruleset>", "<ruleset name=\"Vara.nl (partial)\" f=\"Vara.nl.xml\"><exclusion pattern=\"^http://humortv\\.vara\\.nl/+(?!favicon\\.ico|fileadmin/|typo3conf/|typo3temp/)\"/><securecookie host=\"^(?:media-service|omroep|static|www)\\.vara\\.nl$\" name=\".+\"/><securecookie host=\"^\\.(?:shop|tickets)\\.vara\\.nl$\" name=\"^frontend$\"/><rule from=\"^http://(humortv|media-service|omroep|shop|static|tickets|www)\\.vara\\.nl/\" to=\"https://$1.vara.nl/\"/></ruleset>", "<ruleset name=\"Varian.com (partial)\" f=\"Varian.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Variety.com (partial)\" default_off=\"failed ruleset test\" f=\"Variety.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.variety\\.com/\" to=\"https://variety.com/\"/><rule from=\"^http://haas\\.variety\\.com/\" to=\"https://haas.reedbusiness.nl/\"/><rule from=\"^http://images\\d?\\.variety\\.com/\" to=\"https://dxcdzflj3dom3.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Variety Latino.com\" f=\"Variety_Latino.com.xml\"><rule from=\"^http://www\\.varietylatino\\.com/\" to=\"https://varietylatino.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Variomedia.de\" f=\"Variomedia.de.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Varnish-Cache.org\" f=\"Varnish-Cache.org.xml\"><securecookie host=\"^www\\.varnish-cache\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Varnish-Software.com (partial)\" f=\"Varnish-Software.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Varuste.net\" f=\"Varuste.net.xml\"><securecookie host=\"^www\\.varuste\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Varusteleka.fi\" f=\"Varusteleka.fi.xml\"><securecookie host=\"^www\\.varusteleka\\.fi$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vast (partial)\" default_off=\"failed ruleset test\" f=\"Vast.xml\"><securecookie host=\"^(?:.*\\.)?vast\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?(?:staticv\\.net|vast\\.com)/\" to=\"https://www.vast.com/\"/><rule from=\"^http://img\\.vast\\.com/\" to=\"https://img.vast.com/\"/></ruleset>", "<ruleset name=\"dsply.com\" default_off=\"failed ruleset test\" f=\"Vast_Interactive.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vates.fr\" default_off=\"failed ruleset test\" f=\"Vates.fr.xml\"><securecookie host=\"^piwik\\.vates\\.fr$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vayable.com\" f=\"Vayabe.com.xml\"><securecookie host=\"^www\\.vayable\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?vayable\\.com/\" to=\"https://www.vayable.com/\"/></ruleset>", "<ruleset name=\"VB-Paradise.de\" f=\"Vb-paradise.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"vbrr.ru\" f=\"Vbrr.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"vc.ru\" default_off=\"failed ruleset test\" f=\"Vc.ru.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vcommerce (partial)\" f=\"Vcommerce.xml\"><securecookie host=\"^www\\.vcommerce\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?vcommerce\\.com/\" to=\"https://www.vcommerce.com/\"/><rule from=\"^http://content\\.vcommerce\\.com/\" to=\"https://s3.amazonaws.com/content.vcommerce.com/\"/></ruleset>", "<ruleset name=\"Vdio.com\" default_off=\"failed ruleset test\" f=\"Vdio.xml\"><rule from=\"^http://(?:www\\.)?vdio\\.com/+([^?]*).*\" to=\"https://www.rdio.com/$1\"/></ruleset>", "<ruleset name=\"Vdopia\" default_off=\"failed ruleset test\" f=\"Vdopia.xml\"><exclusion pattern=\"^http://i2\\.vdopia\\.com/(?!js/)\"/><securecookie host=\"^(?:.+\\.)?vdopia\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?ivdopia\\.com/\" to=\"https://www.ivdopia.com/\"/><rule from=\"^http://(?:i2\\.|serve\\.|(online\\.|sb\\.|www\\.))?vdopia\\.com/\" to=\"https://$1vdopia.com/\"/><rule from=\"^http://(?:cdn|mobile(\\.sb)?)\\.vdopia\\.com/\" to=\"https://mobile$1.vdopia.com/\"/></ruleset>", "<ruleset name=\"Vdoth.com\" default_off=\"failed ruleset test\" f=\"Vdoth.com.xml\"><securecookie host=\"^(?:w*\\.)?vdoth\\.com$\" name=\".+\"/><rule from=\"^http://www\\.clipth\\.net/\" to=\"https://www.vdoth.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ve Interactive.com (partial)\" f=\"Ve_Interactive.xml\"><securecookie host=\"^(?:mail|vecapture|vecontact|vemerchant)\\.veinteractive\\.com$\" name=\".+\"/><rule from=\"^http://(cdsusa|config1|configusa|drs2|mail|rcs|vecapture|vecontact|vemerchant)\\.veinteractive\\.com/\" to=\"https://$1.veinteractive.com/\"/></ruleset>", "<ruleset name=\"Veber.co.uk\" default_off=\"failed ruleset test\" f=\"Veber.co.uk.xml\"><securecookie host=\"^(?:www\\.)?veber\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vector Media Group\" f=\"Vector-Media-Group.xml\"><rule from=\"^http://(?:www\\.)?vectormediagroup\\.com/\" to=\"https://www.vectormediagroup.com/\"/></ruleset>", "<ruleset name=\"VSEO GmbH\" f=\"Veeseo.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VegasInc.com\" default_off=\"failed ruleset test\" f=\"VegasInc.com.xml\"><securecookie host=\"^(www\\.)?vegasinc\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vegas Deal Hunter.com\" default_off=\"refused\" f=\"Vegas_Deal_Hunter.xml\"><securecookie host=\"^\\.vegasdealhunter\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vegas Partner Lounge\" default_off=\"failed ruleset test\" f=\"Vegas_Partner_Lounge.xml\"><securecookie host=\"^(?:.+\\.)?vegaspartnerlounge\\.com$\" name=\".+\"/><rule from=\"^http://((?:secure|starpartner|www)\\.)?vegaspartnerlounge\\.com/\" to=\"https://$1vegaspartnerlounge.com/\"/></ruleset>", "<ruleset name=\"VehBidz (partial)\" platform=\"mixedcontent\" f=\"VehBidz.xml\"><rule from=\"^http://(?:www\\.)?vehbidz\\.com/((?:login|members_area|register)\\.php|themes/|uplimg/)\" to=\"https://www.vehbidz.com/$1\"/></ruleset>", "<ruleset name=\"Vehicle Visuals.com\" default_off=\"self-signed\" f=\"Vehicle_Visuals.com.xml\"><rule from=\"^http://(?:www\\.)?vehiclevisuals\\.com/\" to=\"https://www.vehiclevisuals.com/\"/></ruleset>", "<ruleset name=\"Velaro.com (mismatches)\" default_off=\"mismatched\" f=\"Velaro-mismatches.xml\"><exclusion pattern=\"^http://community\\.velaro\\.com/velaro\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Velaro.com (partial)\" f=\"Velaro.xml\"><securecookie host=\".*\\.velaro.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Velleman Group (partial)\" f=\"Velleman-Group.xml\"><securecookie host=\"^www\\.hqpower\\.eu$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?hqpower\\.eu/\" to=\"https://www.hqpower.eu/\"/><securecookie host=\"^www\\.perel\\.eu$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?perel\\.eu/\" to=\"https://www.perel.eu/\"/><rule from=\"^http://(?:www\\.)?velleman\\.be/\" to=\"https://www.velleman.eu/\"/><rule from=\"^http://portal\\.velleman\\.be/$\" to=\"https://portal.velleman.eu/ServicePortal/\"/><rule from=\"^http://portal\\.velleman\\.be/(.+)\" to=\"https://portal.velleman.eu/$1\"/><securecookie host=\"^(?:portal|www)\\.velleman\\.eu$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?velleman\\.eu/\" to=\"https://www.velleman.eu/\"/><rule from=\"^http://portal\\.velleman\\.eu/$\" to=\"https://portal.velleman.eu/ServicePortal/\"/><rule from=\"^http://portal\\.velleman\\.eu/(.+)\" to=\"https://portal.velleman.eu/$1\"/><securecookie host=\"^www\\.vellemanusa\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?vellemanusa\\.com/\" to=\"https://www.vellemanusa.com/\"/></ruleset>", "<ruleset name=\"velmedia.net (partial)\" default_off=\"self-signed\" f=\"Velmedia.net.xml\"><securecookie host=\"^ad\\.velmedia\\.net$\" name=\".+\"/><rule from=\"^http://(?:(ad\\.)|www\\.)?velmedia\\.net/\" to=\"https://$1velmedia.net/\"/></ruleset>", "<ruleset name=\"Velocity Micro\" f=\"Velocity-Micro.xml\"><securecookie host=\"^www\\.velocitymicro\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?velocitymicro\\.com/\" to=\"https://www.velocitymicro.com/\"/></ruleset>", "<ruleset name=\"Veloviewer.com\" f=\"Veloviewer.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Velox-Project.eu\" f=\"Velox-Project.eu.xml\"><rule from=\"^http://(?:www\\.)?velox-project\\.eu/\" to=\"https://www.velox-project.eu/\"/></ruleset>", "<ruleset name=\"SmallNetBuilder.com\" platform=\"mixedcontent\" f=\"Velum-Media.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Velvet Cache.org (partial)\" f=\"Velvet_Cache.org.xml\"><rule from=\"^http://static\\.velvetcache\\.org/\" to=\"https://s3.amazonaws.com/static.velvetcache.org/\"/></ruleset>", "<ruleset name=\"Vendercom (partial)\" f=\"Vendercom.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vendetta Online (partial)\" platform=\"mixedcontent\" f=\"Vendetta-Online.xml\"><securecookie host=\"^(?:.*\\.)?vendetta-online\\.com$\" name=\".*\"/><rule from=\"^http://(www\\.)?vendetta-online\\.com/\" to=\"https://$1vendetta-online.com/\"/><rule from=\"^http://images\\.vendetta-online\\.com/\" to=\"https://vendetta-online.com/\"/></ruleset>", "<ruleset name=\"Vendo Services (mismatches)\" default_off=\"mismatched\" f=\"Vendo-Services-mismatches.xml\"><rule from=\"^http://secure([45])\\.vend-o\\.com/\" to=\"https://secure$1.vend-o.com/\"/><rule from=\"^http://(?:www\\.)?vendosupport\\.com/\" to=\"https://vendosupport.com/\"/></ruleset>", "<ruleset name=\"Vendo Services (partial)\" default_off=\"failed ruleset test\" f=\"Vendo-Services.xml\"><securecookie host=\"^\\.vend-o\\.com$\" name=\"^VENDO_OMNI$\"/><securecookie host=\"^(?:backoffice|secure3?)\\.vend-o\\.com$\" name=\".+\"/><securecookie host=\"^start\\.vendoservices\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Venmo.com (partial)\" f=\"Venmo.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ventivmedia.com\" default_off=\"failed ruleset test\" f=\"Ventivmedia.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ventoso.org\" default_off=\"mismatched\" f=\"Ventoso.org.xml\"><securecookie host=\"^ventoso\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?ventoso\\.org/\" to=\"https://ventoso.org/\"/></ruleset>", "<ruleset name=\"Ventra Chicago.com\" f=\"Ventra_Chicago.com.xml\"><securecookie host=\"^(?:www)?\\.ventrachicago\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VentureBeat.com (partial)\" f=\"VentureBeat.xml\"><exclusion pattern=\"^http://venturebeat\\.com/+(?!wp-content/|wp-includes/)\"/><securecookie host=\"^events\\.venturebeat\\.com$\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"venuscafem.com\" default_off=\"expired, mismatched\" f=\"Venuscafem.com.xml\"><securecookie host=\"^www\\.venuscafem\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?venuscafem\\.com/\" to=\"https://venuscafem.com/\"/></ruleset>", "<ruleset name=\"VeraSafe.com (partial)\" f=\"VeraSafe.com.xml\"><exclusion pattern=\"^http://www\\.verasafe\\.com/+(?!favicon\\.ico|images/|(?:contactus|dispute-submission|login|register|remind|reset)(?:$|[?/])|templates/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Veracode.com\" f=\"Veracode.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://veracode\\.com/\" to=\"https://www.veracode.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Verbling.com\" default_off=\"failed ruleset test\" f=\"Verbling.com.xml\"><securecookie host=\".*\\.verbling\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Verbraucher-sicher-online.de\" f=\"Verbraucher-Sicher-Online.xml\"><rule from=\"^http://(?:www\\.)?verbraucher-sicher-online\\.de/\" to=\"https://www.verbraucher-sicher-online.de/\"/></ruleset>", "<ruleset name=\"Verbraucherzentrale Nordrhein-Westfalen\" default_off=\"failed ruleset test\" f=\"Verbraucherzentrale_Nordrhein-Westfalen.xml\"><rule from=\"^http://(www\\.)?(meine|ratgeber)-verbraucherzentrale\\.de/\" to=\"https://$1$2-verbraucherzentrale.de/\"/><rule from=\"^http://(www\\.)?vz-nrw\\.de/\" to=\"https://$1vz-nrw.de/\"/></ruleset>", "<ruleset name=\"Verdad Media\" f=\"Verdad_Media.xml\"><rule from=\"^http://(?:www\\.)?verdadmedia\\.com/\" to=\"https://www.verdadmedia.com/\"/></ruleset>", "<ruleset name=\"Vereinigte IKK\" default_off=\"failed ruleset test\" f=\"Vereinigte-IKK.xml\"><rule from=\"^http://(?:www\\.)?vereinigte-ikk\\.de/\" to=\"https://www.vereinigte-ikk.de/\"/></ruleset>", "<ruleset name=\"Verified Voting\" f=\"Verified-Voting.xml\"><securecookie host=\"^(?:www\\.)?verifiedvoting(?:foundation)?\\.org$\" name=\".+\"/><rule from=\"^http://(www\\.)?verifiedvoting(foundation)?\\.org/\" to=\"https://$1verifiedvoting$2.org/\"/></ruleset>", "<ruleset name=\"Verigames.com\" default_off=\"failed ruleset test\" f=\"Verigames.com.xml\"><securecookie host=\"^\\.verigames\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Verio (partial)\" f=\"Verio.xml\"><exclusion pattern=\"^http://(?:www\\.)?verio\\.com/(?!images/|myverio/|order/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VeriSign (partial)\" default_off=\"failed ruleset test\" f=\"Verisign.xml\"><securecookie host=\"^(?:.*\\.)?verisign(?:inc)?\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Verisign Labs.com (partial)\" default_off=\"failed ruleset test\" f=\"Verisign_Labs.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Verivox (partial)\" f=\"Verivox.xml\"><securecookie host=\"^partner\\.vxcp\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?verivox\\.de/(i/|(?:login|PasswordReset|Register)\\.aspx)\" to=\"https://www.verivox.de/$1\"/><rule from=\"^http://(css|img)\\.vxcdn\\.com/\" to=\"https://$1.vxcdn.com/\"/><rule from=\"^http://partner\\.vxcp\\.de/\" to=\"https://partner.vxcp.de/\"/></ruleset>", "<ruleset name=\"Verizon.com (partial)\" default_off=\"failed ruleset test\" f=\"Verizon.xml\"><exclusion pattern=\"^http://(?:www\\.)?verizon\\.com/+\\?(?:.*&)?lid=\"/><exclusion pattern=\"^http://www22\\.verizon\\.com/(?:Foryourhome/MyAccount/Unprotected|investor/DocServlet|secure/pages/viewbill)/\"/><exclusion pattern=\"^http://www98\\.verizon\\.com/(?:$|\\?)\"/><securecookie host=\"^(?:enterprisecenter|espanol|forums|responsibility|signin|smallbusiness|webmail)\\.verizon\\.com$\" name=\".+\"/><rule from=\"^http://verizon\\.com/\" to=\"https://www.verizon.com/\"/><rule from=\"^http://responsibility\\.verizon\\.com/.*\" to=\"https://www.verizon.com/about/responsibility/\"/><rule from=\"^http://www36\\.verizon\\.com:80/\" to=\"https://www36.verizon.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Verizon Enterprise (partial)\" f=\"Verizon_Enterprise.xml\"><rule from=\"^http://(?:www\\.)?verizonenterprise\\.com/Support(?:\\?.*)?$\" to=\"https://www.verizonenterprise.com/Support/\"/><rule from=\"^http://(?:www\\.)?verizonenterprise\\.com/(gfx|Support|templates)/\" to=\"https://www.verizonenterprise.com/$1/\"/></ruleset>", "<ruleset name=\"Verizon Wireless\" f=\"Verizon_Wireless.xml\"><exclusion pattern=\"http://www\\.verizonwireless\\.com/landingpages/verizon-messages/\"/><exclusion pattern=\"http://s7.vzw.com/\"/><securecookie host=\"^.*\\.verizonwireless\\.com$\" name=\".+\"/><securecookie host=\"^.*\\.vzw\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?v(?:erizonwireless|zw)\\.com/\" to=\"https://www.verizonwireless.com/\"/><rule from=\"^http://(aboutus|b2b|billpaysvc|businessportals|community|login|m|mblogin|mediastore|myaccount|news|opennetwork|products|psearch|ringtones|sanalytics|support|videos|wbillpay|wizard|vzwworkshops)\\.verizonwireless\\.com/\" to=\"https://$1.verizonwireless.com/\"/><rule from=\"^http://analytics\\.verizonwireless\\.com/\" to=\"https://verizonwireless.112.2o7.net/\"/><rule from=\"^http://(aboutus|alerts|b2b|ecache|espanol2?|mediaimages|picture|text|wallpaper)\\.vzw\\.com/\" to=\"https://$1.vzw.com/\"/><rule from=\"^http://(?:www\\.)?(lte|trade-in)\\.vzw\\.com/\" to=\"https://www.$1.vzw.com/\"/><rule from=\"^http://scache\\.vzw\\.com/\" to=\"https://scache.vzw.com/\"/></ruleset>", "<ruleset name=\"Verkkomaksut.fi (partial)\" f=\"Verkkomaksut.fi.xml\"><securecookie host=\"^(?:\\.?payment)?\\.verkkomaksut\\.fi$\" name=\".+\"/><rule from=\"^http://(img|payment)\\.verkkomaksut\\.fi/\" to=\"https://$1.verkkomaksut.fi/\"/></ruleset>", "<ruleset name=\"Verkkouutiset.fi\" default_off=\"mismatched\" f=\"Verkkouutiset.fi.xml\"><rule from=\"^http://(?:www\\.)?verkkouutiset\\.fi/\" to=\"https://www.verkkouutiset.fi/\"/></ruleset>", "<ruleset name=\"Veronika Maine\" f=\"VeronikaMaine.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Veronmaksajat\" f=\"Veronmaksajat.xml\"><securecookie host=\"^www\\.veronmaksajat\\.fi$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?veronmaksajat\\.fi/\" to=\"https://www.veronmaksajat.fi/\"/></ruleset>", "<ruleset name=\"VersaCart Systems\" f=\"VersaCart_Systems.xml\"><securecookie host=\"^\\.versacart\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VersionEye.com\" f=\"VersionEye.com.xml\"><securecookie host=\"^www\\.versioneye\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Verslu.is\" f=\"Verslu.is.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Versus Technologies\" f=\"Versus-Technologies.xml\"><securecookie host=\"^(?:.*\\.)?vstech\\.net$\" name=\".*\"/><rule from=\"^http://(\\w+\\.)?vstech\\.net/\" to=\"https://$1vstech.net/\"/></ruleset>", "<ruleset name=\"Vertical Media (partial)\" default_off=\"failed ruleset test\" f=\"Vertical-Media.xml\"><rule from=\"^http://mail\\.verticalmedia\\.com/\" to=\"https://mail.verticalmedia.com/\"/></ruleset>", "<ruleset name=\"Vertical Web Media\" platform=\"mixedcontent\" f=\"Vertical-Web-Media.xml\"><securecookie host=\"^(?:.*\\.)?internetretailer\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?internetretailer\\.com/\" to=\"https://www.internetretailer.com/\"/></ruleset>", "<ruleset name=\"VerticalResponse\" f=\"VerticalResponse.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vertical Response.com (partial)\" f=\"Vertical_Response.com.xml\"><rule from=\"^http://vr\\.force\\.com/\" to=\"https://vr.force.com/\"/><rule from=\"^http://helpcenter\\.verticalresponse\\.com/(?=/*$|/*\\?)\" to=\"https://vr.force.com/community/Communities/Welcome\"/><rule from=\"^http://marketing\\.verticalresponse\\.com/(?=css/|images/|js/|rs/)\" to=\"https://na-sjf.marketo.com/\"/><rule from=\"^http://support\\.verticalresponse\\.com/$\" to=\"https://vr.force.com/community/\"/><rule from=\"^http://(img-ak|vr2)\\.verticalresponse\\.com/\" to=\"https://$1.verticalresponse.com/\"/></ruleset>", "<ruleset name=\"Vertriebsassistent.de (partial)\" f=\"Vertriebsassistent.de.xml\"><securecookie host=\"^stats\\.vertriebsassistent\\.de$\" name=\".+\"/><rule from=\"^http://(app|stats)\\.vertriebsassistent\\.de/\" to=\"https://$1.vertriebsassistent.de/\"/></ruleset>", "<ruleset name=\"Veruta.com\" f=\"Veruta.com.xml\"><rule from=\"^http://(adserver|w\\.p)\\.veruta\\.com/\" to=\"https://$1.veruta.com/\"/></ruleset>", "<ruleset name=\"Verve Hosting.com (problematic)\" default_off=\"expired, missing certificate chain\" f=\"Verve_Hosting.com-problematic.xml\"><rule from=\"^http://www\\.vervehosting\\.com/\" to=\"https://vervehosting.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Verve Hosting.com (partial)\" f=\"Verve_Hosting.xml\"><securecookie host=\"^cms\\.vervehosting\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Verwaltung Online\" f=\"Verwaltung_Online.xml\"><securecookie host=\"^(?:www\\.)?bund\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Verzekeringssite.nl (partial)\" default_off=\"failed ruleset test\" f=\"Verzekeringssite.nl.xml\"><securecookie host=\"^(?:www)?\\.verzekeringssite\\.nl$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?verzekeringssite\\.nl/(?!blog)\" to=\"https://www.verzekeringssite.nl/\"/></ruleset>", "<ruleset name=\"CurdBee.com (partial)\" default_off=\"untrusted root\" f=\"Vesess.xml\"><securecookie host=\"^\\w+\\.curdbee\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vesica\" platform=\"mixedcontent\" f=\"Vesica.xml\"><securecookie host=\"^vesica\\.ws$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vesper Marine\" f=\"Vesper_Marine.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vessel\" f=\"Vessel.xml\"><securecookie host=\"^\\.vesselbags\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vesta CP.com\" f=\"Vesta_CP.com.xml\"><securecookie host=\".*\\.vestacp\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VetDepot.com\" f=\"VetDepot.com.xml\"><securecookie host=\"^(?:www)?\\.vetdepot\\.com$\" name=\".+\"/><rule from=\"^http://vetdepot\\.com/\" to=\"https://www.vetdepot.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Veterans-Aid.net\" f=\"Veterans-Aid.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Veuwer\" default_off=\"failed ruleset test\" f=\"Veuwer.xml\"><securecookie host=\"^veuwer\\.com$\" name=\".*\"/><rule from=\"^http://www\\.veuwer\\.com/\" to=\"https://veuwer.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"vexxhost.com (partial)\" f=\"Vexxhost.com.xml\"><securecookie host=\"^secure\\.vexxhost\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"viaForensics.com\" f=\"ViaForensics.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ViaMichelin.com (partial)\" f=\"ViaMichelin.com.xml\"><securecookie host=\"^download\\.viamichelin\\.com$\" name=\".+\"/><rule from=\"^http://(ccu|download|webservices)\\.viamichelin\\.com/\" to=\"https://$1.viamichelin.com/\"/></ruleset>", "<ruleset name=\"Viaverio.com\" default_off=\"failed ruleset test\" f=\"ViaVerio.com.xml\"><rule from=\"^http://(?:www\\.)?viaverio\\.com/\" to=\"https://www.viaverio.com/\"/><securecookie host=\"^(?:.*\\.)?viaverio\\.com$\" name=\".*\"/></ruleset>", "<ruleset name=\"Viacom\" default_off=\"failed ruleset test\" f=\"Viacom.xml\"><rule from=\"^http:\" to=\"https:\"/><exclusion pattern=\"http://api.mtvnn.com/v2/mrss\"/></ruleset>", "<ruleset name=\"Viaduct.io\" default_off=\"failed ruleset test\" f=\"Viaduct.io.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vianet Group (partial)\" default_off=\"expired, self-signed\" f=\"Vianet-Group.xml\"><rule from=\"^http://(?:www\\.)?(?:brulines|vianet)fuelsolutions\\.com/\" to=\"https://www.vianetfuelsolutions.com/\"/><rule from=\"^http://(?:www\\.)?vianet\\.co\\.uk/\" to=\"https://www.vianet.co.uk/\"/></ruleset>", "<ruleset name=\"Viber.com (partial)\" default_off=\"failed ruleset test\" f=\"Viber.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://viber\\.com/\" to=\"https://www.viber.com/\"/><rule from=\"^http://helpme\\.viber\\.com/\" to=\"https://viber.kayako.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vibrant\" default_off=\"failed ruleset test\" f=\"Vibrant.xml\"><securecookie host=\"^(?:www\\.)?vibrantmedia\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vice.com (problematic)\" default_off=\"expired, mismatched\" f=\"Vice-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vice.com (partial)\" default_off=\"failed ruleset test\" f=\"Vice.xml\"><securecookie host=\"^\\.\" name=\"^__qca$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://assets\\.vice\\.com/\" to=\"https://d1qzzfctbfyh6r.cloudfront.net/\"/><rule from=\"^http://link\\.vice\\.com/+(?=$|\\?)\" to=\"https://vice.com/\"/><rule from=\"^http://link\\.vice\\.com/\" to=\"https://cb.sailthru.com/\"/><rule from=\"^http://assets\\.thump\\.vice\\.com/\" to=\"https://df5qbu832tmne.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"vichan.net (partial)\" f=\"Vichan.net.xml\"><rule from=\"^http://(au|int|pl)\\.vichan\\.net/\" to=\"https://$1.vichan.net/\"/></ruleset>", "<ruleset name=\"Victi.ms (partial)\" default_off=\"failed ruleset test\" f=\"Victi.ms.xml\"><securecookie host=\"^(?:www\\.)?victi\\.ms$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Victor Chandler International\" default_off=\"failed ruleset test\" f=\"Victor-Chandler.xml\"><securecookie host=\"^(?:.*\\.)?banners\\.victor\\.com$\" name=\".*\"/><securecookie host=\"^webmail\\.vcint\\.com$\" name=\".*\"/><rule from=\"^http://betvictor\\.com/\" to=\"https://www.betvictor.com/\"/><rule from=\"^http://www\\.betvictor\\.com/(images/|[\\w/]+/account/new)\" to=\"https://www.betvictor.com/$1\"/><rule from=\"^http://assets([123])\\.image-repository\\.com/\" to=\"https://assets$1.image-repository.com/\"/><rule from=\"^http://vcint\\.com/\" to=\"https://vcint.com/\"/><rule from=\"^http://(?:webmail|www)\\.vcint\\.com/\" to=\"https://webmail.vcint.com/\"/><rule from=\"^http://banners\\.victor\\.com/\" to=\"https://banners.victor.com/\"/></ruleset>", "<ruleset name=\"VictorOps.com\" f=\"VictorOps.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Victorias Secret.com (partial)\" f=\"Victorias_Secret.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://espanol\\.victoriassecret\\.com/.*\" to=\"https://www.victoriassecret.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Victorias Secret Canada.ca\" f=\"Victorias_Secret_Canada.ca.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://victoriassecretcanada\\.ca/\" to=\"https://www.victoriassecretcanada.ca/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Victorinox.com (partial)\" default_off=\"failed ruleset test\" f=\"Victorinox.xml\"><exclusion pattern=\"^http://(?:www\\.)?victorinox\\.com/(?!/*(?:_ui/static/|global/\\w\\w/(?:Privacy-Policy/cms/privacy-policy|Service/Contact/cms/contact|login|myVictorinox|register)/*(?:$|\\?)))\"/><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^[^.vw]\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vid.ly (partial)\" f=\"Vid.ly.xml\"><securecookie host=\"\\.vid\\.ly$\" name=\".+\"/><rule from=\"^http://(?:(m\\.)|www\\.)?vid\\.ly/\" to=\"https://$1vid.ly/\"/><rule from=\"^http://cf\\.cdn\\.vid\\.ly/\" to=\"https://d3fenhwk93s16g.cloudfront.net/\"/><rule from=\"^http://s\\.vid\\.ly/\" to=\"https://d132d9vcg4o0oh.cloudfront.net/\"/></ruleset>", "<ruleset name=\"VidStore (partial)\" f=\"VidStore.xml\"><securecookie host=\"^ads\\.vidstore\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vida y Salud.com (partial)\" f=\"Vida_y_Salud.com.xml\"><rule from=\"^http://(?:www\\.)?vidaysalud\\.com/wp-content/\" to=\"https://www.vidaysalud.com/wp-content/\"/></ruleset>", "<ruleset name=\"Vidahost (partial)\" f=\"Vidahost.xml\"><securecookie host=\"^(?:my|www)\\.vidahost\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vidarholen.net\" default_off=\"self-signed\" f=\"Vidarholen.net.xml\"><rule from=\"^http://(?:www\\.)?vidarholen\\.net/\" to=\"https://vidarholen.net/\"/></ruleset>", "<ruleset name=\"Vidble.com\" f=\"Vidble.com.xml\"><securecookie host=\"^(?:www\\.)?vidble\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Viddler.com (mismatches)\" default_off=\"mismatched\" f=\"Viddler.com-mismatches.xml\"><securecookie host=\"^blog\\.viddler\\.com$\" name=\".+\"/><rule from=\"^http://blog\\.viddler\\.com/\" to=\"https://blog.viddler.com/\"/></ruleset>", "<ruleset name=\"Viddler.com (partial)\" f=\"Viddler.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?viddler\\.com/(?!embed/|favicon\\.ico|login(?:$|[?/])|mini/|plans|vidgets/)\"/><securecookie host=\"^(?:support|www)\\.viddler\\.com$\" name=\".+\"/><rule from=\"^http://((?:\\w+\\.cdn-ec|cdn-static(?:-\\d\\d)?|cdn-thumbs|support|www)\\.)?viddler\\.com/\" to=\"https://$1viddler.com/\"/><rule from=\"^http://vidgets\\.viddler\\.com/(?=\\?.*)$\" to=\"https://www.viddler.com/vidgets/\"/></ruleset>", "<ruleset name=\"Videa.hu\" default_off=\"failed ruleset test\" f=\"Videa.hu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VideoBloom.com (partial)\" f=\"VideoBloom.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VideoGameGeek.com\" f=\"VideoGameGeek.com.xml\"><securecookie host=\"^(\\.|www\\.)?videogamegeek\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VideoGold.de\" f=\"VideoGold.de.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VideoHub.tv (partial)\" f=\"VideoHub.tv.xml\"><securecookie host=\"^(?:data|\\.?portal)\\.videohub\\.tv$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VideoLAN.org\" f=\"VideoLAN.org.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VideoPros\" f=\"VideoPros.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Video Aided Instruction\" f=\"Video_Aided_Instruction.xml\"><securecookie host=\"^www\\.videoaidedinstruction\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?videoaidedinstruction\\.com/\" to=\"https://www.videoaidedinstruction.com/\"/></ruleset>", "<ruleset name=\"Video Dean\" default_off=\"failed ruleset test\" f=\"Video_Dean.xml\"><securecookie host=\"^(?:www)?\\.video-dean\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Video Interchange\" default_off=\"expired\" f=\"Video_Interchange.xml\"><rule from=\"^http://(?:www\\.)?videointerchange\\.com/\" to=\"https://videointerchange.com/\"/></ruleset>", "<ruleset name=\"Videodroid.org\" f=\"Videodroid.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Videoemail.com\" default_off=\"failed ruleset test\" f=\"Videoemail.com.xml\"><securecookie host=\"^sc\\.videoemail\\.com$\" name=\".+\"/><rule from=\"^http://sc\\.videoemail\\.com/\" to=\"https://sc.videoemail.com/\"/></ruleset>", "<ruleset name=\"Videogamer\" f=\"Videogamer.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Videolicious.com\" f=\"Videolicious.com.xml\"><securecookie host=\"^videolicious\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Videoly.co\" f=\"Videoly.co.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Videoplaza.tv (partial)\" f=\"Videoplaza.tv.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Videotron.ca (partial)\" f=\"Videotron.ca.xml\"><securecookie host=\"^courrielweb\\.videotron\\.ca$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Videotron.com (partial)\" f=\"Videotron.com.xml\"><exclusion pattern=\"^http://www\\.videotron\\.com/+(?!client/|resources/|vcom/)\"/><securecookie host=\"^(?:clavardage|courrielweb|illicoweb)\\.videotron\\.com$\" name=\".+\"/><rule from=\"^http://videotron\\.com/\" to=\"https://www.videotron.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vidi Emi.com (partial)\" f=\"Vidi_Emi.xml\"><securecookie host=\"^snap\\.vidiemi\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"vidplay.net\" default_off=\"self-signed\" f=\"Vidplay.net.xml\"><securecookie host=\"^\\.vidplay\\.net$\" name=\".+\"/><rule from=\"^http://vidplay\\.net/\" to=\"https://vidplay.net/\"/></ruleset>", "<ruleset name=\"Vidup.me (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Vidup.me-falsemixed.xml\"><securecookie host=\"^\\.vidup\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vidup.me (partial)\" default_off=\"failed ruleset test\" f=\"Vidup.me.xml\"><rule from=\"^http://vidup\\.me/\" to=\"https://www.vidup.me/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vidyard.com\" f=\"Vidyard.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vie Pratique.fr (partial)\" default_off=\"failed ruleset test\" f=\"Vie_Pratique.fr.xml\"><securecookie host=\"^(?:gourmand|www)?\\.viepratique\\.fr$\" name=\".+\"/><rule from=\"^http://(?:sf\\d\\.|www\\.)?viepratique\\.fr/\" to=\"https://www.viepratique.fr/\"/><rule from=\"^http://gourmand\\.viepratique\\.fr/\" to=\"https://gourmand.viepratique.fr/\"/></ruleset>", "<ruleset name=\"Vienna University of Technology (partial)\" f=\"Vienna_University_of_Technology.xml\"><exclusion pattern=\"^http://www.zid\\.tuwien\\.ac\\.at/sts/(?!campussoftware|studentensoftware)\"/><securecookie host=\"^(?:\\.mail\\.student|\\.webmail|www)\\.tuwien\\.ac\\.at$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?tuwien\\.ac\\.at/\" to=\"https://www.tuwien.ac.at/\"/><rule from=\"^http://(mail|pop|mail\\.student|webmail|(?:ui|www)\\.zid|(?:mail|webstats)\\.zserv)\\.tuwien\\.ac\\.at/\" to=\"https://$1.tuwien.ac.at/\"/></ruleset>", "<ruleset name=\"Viestintavirasto.fi\" f=\"Viestintavirasto.fi.xml\"><securecookie host=\"^www\\.viestintavirasto\\.fi$\" name=\".+\"/><rule from=\"^http://viestintavirasto\\.fi/\" to=\"https://www.viestintavirasto.fi/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"View Central.com (partial)\" f=\"View_Central.com.xml\"><securecookie host=\"^(?:admin|inter)\\.viewcentral\\.com$\" name=\".+\"/><rule from=\"^http://(admin|inter)\\.viewcentral\\.com/\" to=\"https://$1.viewcentral.com/\"/></ruleset>", "<ruleset name=\"VigLink.com\" f=\"VigLink.xml\"><exclusion pattern=\"^http://support\\.viglink\\.com/+(?!assets/|favicon\\.ico|images/|registration(?:$|[?/])|system/)\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http://blog\\.viglink\\.com/+\" to=\"https://www.viglink.com/blog\"/><rule from=\"^http://support\\.viglink\\.com/\" to=\"https://viglink.zendesk.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VikingVPN.com\" f=\"VikingVPN.com.xml\"><securecookie host=\"^vikingvpn\\.com$\" name=\".+\"/><rule from=\"^http://vikingvpn\\.com/\" to=\"https://vikingvpn.com/\"/><rule from=\"^http://www\\.vikingvpn\\.com/+(?=\\?.+)\" to=\"https://vikingvpn.com/\"/><rule from=\"^http://www\\.vikingvpn\\.com/.*\" to=\"https://vikingvpn.com/\"/></ruleset>", "<ruleset name=\"Vidling\" default_off=\"mismatched\" f=\"Vildling.xml\"><securecookie host=\"^vidling\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?vidling\\.com/\" to=\"https://vidling.com/\"/></ruleset>", "<ruleset name=\"Villa Saint Exupéry (mismatches)\" default_off=\"mismatched\" f=\"Villa-Saint-Exupery-mismatches.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Villa Saint Exupéry (partial)\" f=\"Villa-Saint-Exupery.xml\"><securecookie host=\"^www\\.villahostels\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Villas.com\" default_off=\"failed ruleset test\" f=\"Villas.com.xml\"><exclusion pattern=\"^http://(?:[^./]+\\.){2,}v(?:comstatic|illas)\\.com/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vimeo Pro.com\" f=\"Vimeo_Pro.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vin DiCarlo (partial)\" default_off=\"redirects to http\" f=\"Vin-DiCarlo.xml\"><securecookie host=\"^(?:.*\\.)?3questionsgetthegirl\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vindico.com\" default_off=\"mismatched\" f=\"Vindico.com.xml\"><rule from=\"^http://(?:www\\.)?vindico\\.com/\" to=\"https://vindico.com/\"/></ruleset>", "<ruleset name=\"Vindico suite.com\" default_off=\"failed ruleset test\" f=\"Vindico_suite.com.xml\"><securecookie host=\"^\\.vindicosuite\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vine.co (partial)\" f=\"Vine.co.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vineyard Vines.com\" default_off=\"failed ruleset test\" f=\"Vineyard_Vines.com.xml\"><securecookie host=\"^(?:m|www)\\.vineyardvines\\.com$\" name=\".+\"/><rule from=\"^http://vineyardvines\\.com/\" to=\"https://www.vineyardvines.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vinilox.eu\" default_off=\"failed ruleset test\" f=\"Vinilox.eu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vinumeris.com\" default_off=\"failed ruleset test\" f=\"Vinumeris.com.xml\"><securecookie host=\"^(?:www\\.)?vinumeris\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"vinuthomas.com (partial)\" default_off=\"mismatched\" f=\"Vinuthomas.com.xml\"><rule from=\"^http://blogs\\.vinuthomas\\.com/\" to=\"https://blogs.vinuthomas.com/\"/></ruleset>", "<ruleset name=\"Vinyl-on-demand.com\" f=\"Vinyl-on-demand.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Violet Darkling.com\" default_off=\"failed ruleset test\" f=\"Violet_Darkling.com.xml\"><securecookie host=\"^\\.(?:www\\.)?violetdarkling\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Violet Indigo\" f=\"Violet_Indigo.xml\"><securecookie host=\"^(?:www)?\\.violetindigo\\.com\\.au$\" name=\".+\"/><rule from=\"^http://(?:static2?\\.|(www\\.))?violetindigo\\.com\\.au/\" to=\"https://$1violetindigo.com.au/\"/></ruleset>", "<ruleset name=\"Vippy.co\" f=\"Vippy.co.xml\"><securecookie host=\"^\\.?vippy\\.co$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?vippy\\.co/\" to=\"https://vippy.co/\"/><rule from=\"^http://cdn1\\.vippy\\.co/\" to=\"https://s1r30b2exd0ux4.cloudfront.net/\"/><rule from=\"^http://cdn2\\.vippy\\.co/\" to=\"https://d19noydrgsp9ie.cloudfront.net/\"/><rule from=\"^http://cdn3\\.vippy\\.co/\" to=\"https://s2u565w4df8lrm.cloudfront.net/\"/><rule from=\"^http://cdn4\\.vippy\\.co/\" to=\"https://dfe23o0oezpl4.cloudfront.net/\"/></ruleset>", "<ruleset name=\"VirWoX.com\" f=\"VirWoX.com.xml\"><securecookie host=\"^(?:www\\.)?virwox\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Virag.si\" f=\"Virag.si.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vircurex.com\" f=\"Vircurex.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?vircurex\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Virgin (mismatches)\" default_off=\"mismatched\" f=\"Virgin-mismatches.xml\"><rule from=\"^http://(answer|review)s\\.virginmobileusa\\.com/\" to=\"https://$1s.virginmobileusa.com/\"/></ruleset>", "<ruleset name=\"Virgin Australia\" f=\"VirginAustralia.xml\"><rule from=\"^http://virginaustralia\\.com/\" to=\"https://www.virginaustralia.com/\"/><rule from=\"^http://(insurance|www)\\.virginaustralia\\.com/\" to=\"https://$1.virginaustralia.com/\"/></ruleset>", "<ruleset name=\"Virgin Mobile\" f=\"VirginMobile.xml\"><securecookie host=\"^.*\\.virginmobileusa\\.com$\" name=\".*\"/><rule from=\"^http://(?:www(1)?\\.)?virginmobileusa\\.com/\" to=\"https://www$1.virginmobileusa.com/\"/><rule from=\"^http://(espanol|origin-www-ls|shop)\\.virginmobileusa\\.com/\" to=\"https://$1.virginmobileusa.com/\"/><rule from=\"^http://newsroom\\.virginmobileusa\\.com/sites/\" to=\"https://virginmobileusa.newshq.businesswire.com/sites/\"/><rule from=\"^http://www\\.virginmobile\\.com\\.au/\" to=\"https://www.virginmobile.com.au/\"/></ruleset>", "<ruleset name=\"Virgin Media.com (partial)\" default_off=\"failed ruleset test\" f=\"Virgin_Media.com.xml\"><securecookie host=\"^\\.virginmedia\\.com$\" name=\"^(?:gpv_p\\w|s_\\w+)$\"/><securecookie host=\"^(?:da|help|identity|my|national)\\.virginmedia\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Virgin Media.ie\" f=\"Virgin_Media.ie.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Virginia Mason Hospital & Medical Center\" f=\"Virginia-Mason-Hospital.xml\"><securecookie host=\"^(?:.*\\.)?virginiamason\\.org$\" name=\".+\"/><rule from=\"^http(?:://(?:www\\.)?|s://)virginiamason\\.org/\" to=\"https://www.virginiamason.org/\"/></ruleset>", "<ruleset name=\"VT.edu (partial)\" default_off=\"failed ruleset test\" f=\"Virginia-Polytechnic-Institute-and-State-University.xml\"><securecookie host=\"^(?:(?:m?\\.)?addison|auth|www\\.(?:bioinformatics|vbi)|(?:\\.vectorborne)?\\.fralin|(?:help|secure)?\\.research|(?:\\.ibc|\\.oesrc)?\\.researchcompliance)\\.vt\\.edu$\" name=\".+\"/><rule from=\"^http://(bioinformatics\\.|vbi\\.)?vt\\.edu/\" to=\"https://www.$1vt.edu/\"/><rule from=\"^http://www\\.cnr\\.vt\\.edu/\" to=\"https://cnre.vt.edu/\"/><rule from=\"^http://www\\.oesrc\\.researchcompliance\\.vt\\.edu/\" to=\"https://oesrc.researchcompliance.vt.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Virk.dk (partial)\" f=\"Virk.dk.xml\"><securecookie host=\"^(?:data|hjaelp|indberet|startvaekst)\\.virk\\.dk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Virool.com (partial)\" f=\"Virool.com.xml\"><securecookie host=\"^(?:channel|tools)?\\.virool\\.com$\" name=\".+\"/><rule from=\"^http://((?:channel|tools|www)\\.)?virool\\.com/\" to=\"https://$1virool.com/\"/></ruleset>", "<ruleset name=\"virt-manager.org\" f=\"Virt-manager.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Virtkick.io\" default_off=\"failed ruleset test\" f=\"VirtKick.io.xml\"><securecookie host=\"^(?:\\.|www\\.)?virtkick\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Virtkick.com\" f=\"Virtkick.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Virtual Privacy Office\" f=\"Virtual-Privacy-Office.xml\"><rule from=\"^http://(?:www\\.)?datenschutz\\.de/\" to=\"https://www.datenschutz.de/\"/></ruleset>", "<ruleset name=\"Virtual-Server.org\" f=\"Virtual-Server.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VirtualBox.org\" f=\"VirtualBox.xml\"><securecookie host=\"^\\.forums\\.virtualbox\\.org$\" name=\".+\"/><securecookie host=\"^\\.www\\.virtualbox\\.org$\" name=\".+\"/><rule from=\"^http://virtualbox\\.org/\" to=\"https://www.virtualbox.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VirtualBoxImages.com\" f=\"VirtualBoxImages.com.xml\"><securecookie host=\"^\\.virtualboximages\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VirtualQube.com\" default_off=\"failed ruleset test\" f=\"VirtualQube.com.xml\"><securecookie host=\"^(?:www\\.)?virtualqube\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VirtualTourist (partial)\" f=\"VirtualTourist.xml\"><exclusion pattern=\"^http://members\\.virtualtourist\\.com/(?!_assets/|m/j/|m/nl/)\"/><securecookie host=\"^vpn\\.virtualtourist\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?virtualtourist\\.com/ajax/\" to=\"https://www.virtualtourist.com/ajax/\"/><rule from=\"^http://(meetings|members|vpn)\\.virtualtourist\\.com/\" to=\"https://$1.virtualtourist.com/\"/><rule from=\"^http://(?:(?:cdn\\d|p)\\.v|(?:cache|p)\\.virtual)tourist\\.com/\" to=\"https://members.virtualtourist.com/_assets/\"/></ruleset>", "<ruleset name=\"Virtual Inventions.com\" default_off=\"expired\" f=\"Virtual_Inventions.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Virtual News Center.com\" default_off=\"redirects to http\" f=\"Virtual_News_Center.xml\"><exclusion pattern=\"^http://(?:www\\.)?virtualnewscenter\\.com/+(?:$|wp-content/|wp-login\\.php)\"/><rule from=\"^http://virtualnewscenter\\.wpengine\\.netdna-cdn\\.com/\" to=\"https://virtualnewscenter.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Virtual Sprits\" default_off=\"failed ruleset test\" f=\"Virtual_Spirits.xml\"><securecookie host=\"^(?:www\\.)?virtualspirits\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Virtual Earth.net\" f=\"Virtualearth.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://(?:www\\.)?virtualearth\\.net/.*\" to=\"https://www.bing.com/maps/\"/><rule from=\"^http://fb\\.ecn\\.api\\.tiles\\.virtualearth\\.net/\" to=\"https://api.tiles.virtualearth.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Virtualization Review.com\" f=\"Virtualization_Review.com.xml\"><securecookie host=\"^virtualizationreview\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VirusTotal.com (partial)\" f=\"VirusTotal.xml\"><securecookie host=\"^www\\.virustotal\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?virustotal\\.com/\" to=\"https://www.virustotal.com/\"/></ruleset>", "<ruleset name=\"Virus Bulletin\" default_off=\"failed ruleset test\" f=\"Virus_Bulletin.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^https?://virusbtn\\.com/\" to=\"https://www.virusbtn.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Virus Tracker.net\" default_off=\"failed ruleset test\" f=\"Virus_Tracker.net.xml\"><securecookie host=\"^virustracker\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Virusec.com\" default_off=\"failed ruleset test\" f=\"Virusec.com.xml\"><rule from=\"^http://www\\.escan\\.com/\" to=\"https://www.virusec.com/\"/><rule from=\"^http://escan\\.com/\" to=\"https://www.virusec.com/\"/><rule from=\"^http://virusec\\.com/\" to=\"https://www.virusec.com/\"/><rule from=\"^http://www\\.virusec\\.com/\" to=\"https://www.virusec.com/\"/></ruleset>", "<ruleset name=\"Visa.com\" default_off=\"failed ruleset test\" f=\"Visa.com.xml\"><exclusion pattern=\"^http://(www.)?visa\\.com/atmlocator/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VisaEurope\" f=\"VisaEurope.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VisaForChina.org\" default_off=\"incomplete certificate chain\" f=\"VisaForChina.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VisaHQ\" f=\"VisaHQ.xml\"><rule from=\"^http://visahq\\.com/\" to=\"https://www.visahq.com/\"/><rule from=\"^http://([^/:@]+)?\\.visahq\\.com/\" to=\"https://$1.visahq.com/\"/></ruleset>", "<ruleset name=\"Visa Buxx.com (partial)\" f=\"Visa_Buxx.com.xml\"><securecookie host=\"^usbank\\.visabuxx\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?visabuxx\\.com/$\" to=\"https://usa.visa.com/personal/cards/prepaid/visa_buxx.html\"/><rule from=\"^http://usbank\\.visabuxx\\.com/\" to=\"https://usbank.visabuxx.com/\"/></ruleset>", "<ruleset name=\"Visa to Vietnam\" f=\"Visa_to_Vietnam.xml\"><securecookie host=\"^(?:w*\\.)?visatovietnam\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Visalia Times-Delta\" f=\"Visalia_Times-Delta.xml\"><securecookie host=\"^.+\\.visaliatimesdelta\\.com$\" name=\".+\"/><rule from=\"^http://(?:cmsimg\\.|www\\.)?visaliatimesdelta\\.com/\" to=\"https://www.visaliatimesdelta.com/\"/><rule from=\"^http://advertise\\.visaliatimesdelta\\.com/\" to=\"https://advertise.visaliatimesdelta.com/\"/><rule from=\"^http://deals\\.visaliatimesdelta\\.com/\" to=\"https://visalia.planetdiscover.com/\"/></ruleset>", "<ruleset name=\"Visaplace.com\" f=\"Visaplace.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VisiStat.com (partial)\" f=\"VisiStat.com.xml\"><securecookie host=\"^(?:www\\.)?visistat\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?sa-as\\.com/tracking/\" to=\"https://www.visistat.com/tracking/\"/><rule from=\"^http://(sniff\\.|www\\.)?visistat\\.com/\" to=\"https://$1visistat.com/\"/><rule from=\"^http://s(?:niff|tats)\\.visistat\\.com/\" to=\"https://sniff.visistat.com/\"/><rule from=\"^http://demo\\.visistat\\.com/\" to=\"https://www.visistat.com/demo-login.php\"/></ruleset>", "<ruleset name=\"Visiba.com\" f=\"Visiba.com.xml\"><securecookie host=\"^www\\.visiba\\.com$\" name=\"^\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Visible Measures.com (partial)\" f=\"Visible-Measures.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://visiblemeasures\\.com/\" to=\"https://www.visiblemeasures.com/\"/><rule from=\"^http://video\\.od\\.visiblemeasures\\.com/\" to=\"https://od2.visiblemeasures.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VisibleGains.com (partial)\" f=\"VisibleGains.com.xml\"><securecookie host=\"^my\\.visiblegains\\.com$\" name=\".+\"/><rule from=\"^http://(my|player)\\.visiblegains\\.com/\" to=\"https://$1.visiblegains.com/\"/></ruleset>", "<ruleset name=\"Visible Technologies\" default_off=\"failed ruleset test\" f=\"Visible_Technologies.xml\"><securecookie host=\"^\\.visibletechnologies\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Visiblebody.com\" f=\"Visiblebody.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vision Airlines\" default_off=\"failed ruleset test\" f=\"VisionAirlines.xml\"><rule from=\"^http://(?:www\\.)?visionairlines\\.com/\" to=\"https://www.visionairlines.com/\"/></ruleset>", "<ruleset name=\"Vision Art Forum.com (partial)\" f=\"Vision_Art_Forum.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?visionartforum\\.com/(?:content\\.php)?(?:\\?.*)?$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vision Critical.com (partial)\" default_off=\"failed ruleset test\" f=\"Vision_Critical.com.xml\"><exclusion pattern=\"^http://info\\.mkto\\.visioncritical\\.com/(?!/*(?:$|\\?|css/|images/|rs/))\"/><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^[^.i]\" name=\".\"/><rule from=\"^http://info\\.mkto\\.visioncritical\\.com/+(?:\\?.*)?$\" to=\"https://www.visioncritical.com/\"/><rule from=\"^http://info\\.mkto\\.visioncritical\\.com/\" to=\"https://na-abk.marketo.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vision Critical Panels.com\" default_off=\"failed ruleset test\" f=\"Vision_Critical_Panels.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Visit the Capitol.gov\" f=\"Visit_the_Capitol.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Visitestonia.com (partial)\" f=\"Visitestonia.com.xml\"><rule from=\"^http://(prelive\\.|www\\.)?visitestonia\\.com/\" to=\"https://$1visitestonia.com/\"/><rule from=\"^http://cache\\.visitestonia\\.com/\" to=\"https://d1y50j8vst3j8d.cloudfront.net/\"/><rule from=\"^http://static[12]\\.visitestonia\\.com/\" to=\"https://d3otexg1kysjv4.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Visophyte.org\" f=\"Visophyte.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vispa (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Vispa.xml\"><securecookie host=\"^secure\\.vispa\\.net\\.uk$\" name=\".*\"/><securecookie host=\"^(?:.*\\.)?vispa(?:host|shop)\\.com$\" name=\".*\"/><rule from=\"^http://secure\\.vispa\\.net\\.uk/\" to=\"https://secure.vispa.net.uk/\"/><rule from=\"^http://www\\.vispahost\\.com/\" to=\"https://www.vispahost.com/\"/><rule from=\"^http://(www\\.)?vispashop\\.com/\" to=\"https://$1vispashop.com/\"/></ruleset>", "<ruleset name=\"Vistech Communications\" platform=\"mixedcontent\" f=\"Vistech-Communications.xml\"><securecookie host=\"^(?:.*\\.)?vistech\\.net$\" name=\".*\"/><rule from=\"^http://(?:bundy\\.|www\\.)?vistech\\.net/\" to=\"https://bundy.vistech.net/\"/></ruleset>", "<ruleset name=\"Visual Paradigm\" f=\"Visual-Paradigm.xml\"><securecookie host=\"^www\\.visual-paradigm\\.com$\" name=\".*\"/><rule from=\"^http://s1\\.linkvp\\.com/\" to=\"https://d1dlalugb0z2hd.cloudfront.net/\"/><rule from=\"^http://(?:www\\.)?visual-paradigm\\.com/\" to=\"https://www.visual-paradigm.com/\"/></ruleset>", "<ruleset name=\"Visual Website Optimizer (partial)\" f=\"VisualWebsiteOptimizer.xml\"><exclusion pattern=\"^http://visualwebsiteoptimizer\\.com/(?:$|.+/$|(?:about-us|affiliates|careers|case-studies|(?:certified-|tech-)?partners|comparison|customers|faqs|feature(?:-list|s)|ideafox|privacy-policy|terms-conditions|testimonials)\\.php(?:$|\\?))\"/><securecookie host=\"^[^w].*\\.visualwebsiteoptimizer\\.com$\" name=\".*\"/><rule from=\"^http://(?:(dev\\.|v2\\.)|www\\.)?visualwebsiteoptimizer\\.com/\" to=\"https://$1visualwebsiteoptimizer.com/\"/></ruleset>", "<ruleset name=\"Visual Revenue (partial)\" f=\"Visual_Revenue.xml\"><securecookie host=\"^\\.platform\\.visualrevenue\\.com$\" name=\".+\"/><rule from=\"^http://platform\\.visualrevenue\\.com/\" to=\"https://platform.visualrevenue.com/\"/></ruleset>", "<ruleset name=\"Visual Studio.com (partial)\" default_off=\"failed ruleset test\" f=\"Visual_Studio.com.xml\"><securecookie host=\"^\\.code\\.visualstudio\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Visualising Advocacy.org\" f=\"Visualising_Advocacy.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VitalAds (partial)\" default_off=\"failed ruleset test\" f=\"VitalAds.xml\"><securecookie host=\"^(?:.*\\.)?vitalads\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VitalMend.com (partial)\" f=\"VitalMend.com.xml\"><rule from=\"^http://(www\\.)?vitalmend\\.com/(?=favicon\\.ico|images/|my-account(?:$|[?/])|wp-content/|wp-includes/)\" to=\"https://$1vitalmend.com/\"/></ruleset>", "<ruleset name=\"Vital Gamers.com\" default_off=\"self-signed\" f=\"Vital_Gamers.com.xml\"><rule from=\"^http://(?:www\\.)?vitalgamers\\.com/\" to=\"https://vitalgamers.com/\"/></ruleset>", "<ruleset name=\"Vitalwerks (mismatches)\" default_off=\"mismatched\" f=\"Vitalwerks-mismatches.xml\"><rule from=\"^http://(?:www\\.)?c(anyouseeme|heckip)\\.org/\" to=\"https://c$1.org/\"/></ruleset>", "<ruleset name=\"Vitalwerks (partial)\" f=\"Vitalwerks.xml\"><rule from=\"^http://cdn\\.no-ip\\.com/\" to=\"https://noipcdn.s3.amazonaws.com/\"/><rule from=\"^http://(?:www\\.)?no-ip\\.com/(client/|company/[^$]|favicon\\.ico|images/|login|(?:1click|newUser)\\.php)\" to=\"https://www.no-ip.com/$1\"/></ruleset>", "<ruleset name=\"Vitamin T\" platform=\"mixedcontent\" f=\"Vitamin-T.xml\"><securecookie host=\"^vitamintalent\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?vitamintalent\\.com/\" to=\"https://vitamintalent.com/\"/></ruleset>", "<ruleset name=\"Vitamin D Council\" f=\"Vitamin_D_Council.xml\"><securecookie host=\"^(?:www\\.)?vitamindcouncil\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vitamin Shoppe.com (partial)\" f=\"Vitamin_Shoppe.xml\"><securecookie host=\"^(?:m|www)?\\.vitaminshoppe\\.com\" name=\".+\"/><rule from=\"^http://(?:www\\.)?vitaminshoppe\\.com/\" to=\"https://www.vitaminshoppe.com/\"/><rule from=\"^http://m\\.vitaminshoppe\\.com/\" to=\"https://m.vitaminshoppe.com/\"/></ruleset>", "<ruleset name=\"Vitelity\" f=\"Vitelity.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Viu.com\" f=\"Viu.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vivaciti (partial)\" f=\"Vivaciti.xml\"><exclusion pattern=\"^http://www\\.vivaciti\\.net/forum/$\"/><securecookie host=\"^vivaciti\\.net$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?vivaciti\\.net/\" to=\"https://vivaciti.net/\"/></ruleset>", "<ruleset name=\"Vivaldi.net\" f=\"Vivaldi.net.xml\"><securecookie host=\"^\\.?vivaldi\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Viveris.fr\" f=\"Viveris.fr.xml\"><securecookie host=\"^www\\.viveris\\.fr$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?viveris\\.fr/\" to=\"https://www.viveris.fr/\"/></ruleset>", "<ruleset name=\"Viviscal\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Viviscal.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vizury.com (partial)\" f=\"Vizury.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:OAID|r|vizid|vizp|vs)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vizzit.se\" f=\"Vizzit.se.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vliegtickets.nl\" f=\"Vliegtickets.nl.xml\"><rule from=\"^http://vliegtickets\\.nl/\" to=\"https://www.vliegtickets.nl/\"/><rule from=\"^http://([^/:@]+)\\.vliegtickets\\.nl/\" to=\"https://$1.vliegtickets.nl/\"/></ruleset>", "<ruleset name=\"Vm.ag\" f=\"Vm.ag.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vmail.me\" f=\"Vmail.me.xml\"><rule from=\"^http://(?:www\\.)?vmail\\.me/\" to=\"https://www.vmail.me/\"/></ruleset>", "<ruleset name=\"vmcdn.de\" f=\"Vmcdn.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"vmmpxl.com\" f=\"Vmmpxl.com.xml\"><securecookie host=\"^secimg\\.vmmpxl\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VoIPDistributor.net\" f=\"VoIPDistributor.net.xml\"><securecookie host=\"^\\.?voipdistributor\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Voat.co\" f=\"Voat.co.xml\"><securecookie host=\"^(?:\\.|www\\.)?voat\\.co$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vocaroo.com\" default_off=\"refused\" f=\"Vocaroo.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vocativ.com (partial)\" default_off=\"failed ruleset test\" f=\"Vocativ.com.xml\"><exclusion pattern=\"^http://www\\.vocativ\\.com/+(?!\\?PageSpeed=noscript|content/|favicon\\.ico)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vodafone.co.nz (partial)\" default_off=\"failed ruleset test\" f=\"Vodafone.co.nz.xml\"><exclusion pattern=\"^http://search\\.vodafone\\.co\\.nz/+(?!$|\\?)\"/><securecookie host=\"^(?:.*\\.)?vodafone\\.co\\.nz$\" name=\".+\"/><rule from=\"^http://forum\\.vodafone\\.co\\.nz/+\" to=\"https://community.vodafone.co.nz/\"/><rule from=\"^http://search\\.vodafone\\.co\\.nz/.*\" to=\"https://www.vodafone.co.nz/search\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vodafone.co.uk (partial)\" default_off=\"failed ruleset test\" f=\"Vodafone.co.uk.xml\"><securecookie host=\"^\\.vodafone\\.co\\.uk$\" name=\"^vf_returning_visitor$\"/><securecookie host=\".+\\.vodafone\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://rewardz\\.vodafone\\.co\\.uk/+\" to=\"https://rewards.vodafone.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vodafone.de (partial)\" f=\"Vodafone.de.xml\"><exclusion pattern=\"^http://m\\.vodafone\\.de/+(?!$|\\?)\"/><securecookie host=\"^\\.vodafone\\.de$\" name=\"^(?:DYN_USER_(?:CONFIRM|ID)|oshop|s_vi)$\"/><securecookie host=\"^(?:dsl|dslshop|forum|hilfe|shop|www)\\.vodafone\\.de$\" name=\".+\"/><rule from=\"^http://www\\.dsl(shop)?\\.vodafone\\.de/\" to=\"https://dsl$1.vodafone.de/\"/><rule from=\"^http://m\\.vodafone\\.de/+\" to=\"https://www.vodafone.de/mobil/privat/index.html\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vodafone.ie (partial)\" f=\"Vodafone.ie.xml\"><exclusion pattern=\"^http://shop\\.vodafone\\.ie/shop/phonesAndPlans/phones/mobileListing/paginationmobileList\\.jsp.+\"/><securecookie host=\"^(?:.+\\.)?vodafone\\.ie$\" name=\".+\"/><rule from=\"^http://vodafone\\.ie/\" to=\"https://www.vodafone.ie/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vodafone.pt\" default_off=\"failed ruleset test\" f=\"Vodafone.pt.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vodafone.com (partial)\" default_off=\"failed ruleset test\" f=\"Vodafone.xml\"><securecookie host=\"^developer\\.vodafone\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?vodafone\\.com/+(?=$|\\?)\" to=\"https://www.vodafone.com/content/index.html\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Voffka.com (partial)\" default_off=\"failed ruleset test\" f=\"Voffka.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vogel.de\" f=\"Vogel.de.xml\"><securecookie host=\"^(?:www\\.)?vogel\\.de$\" name=\".+\"/><rule from=\"^http://((?:files|images|www)\\.)?vogel\\.de/\" to=\"https://$1vogel.de/\"/></ruleset>", "<ruleset name=\"Voice.fi (partial)\" f=\"Voice.fi.xml\"><rule from=\"^http://voice\\.fi/\" to=\"https://www.voice.fi/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VoiceFive\" f=\"VoiceFive.xml\"><securecookie host=\"^(?:.*\\.)?voicefive\\.com$\" name=\".*\"/><rule from=\"^http://(ar\\.|www\\.)?voicefive\\.com/\" to=\"https://$1voicefive.com/\"/><rule from=\"^http://s?b\\.voicefive\\.com/\" to=\"https://sb.voicefive.com/\"/></ruleset>", "<ruleset name=\"VoiceThread.com (partial)\" f=\"VoiceThread.com.xml\"><securecookie host=\"^\\.voicethread\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Voice Republic.com (partial)\" f=\"Voice_Republic.com.xml\"><securecookie host=\"^(?:www\\.)?voicerepublic\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Voices.com (partial)\" f=\"Voices.com.xml\"><rule from=\"^http://(?:www\\.)?voices\\.com/((?:answers|apps|articles|client|community|company|css|directory|ebooks|find|help|images|img|industries|infographics|languages|login|newsroom|rates|resources|royalty-free-music|rss|rss_feeds|scripts|security|service|signup|site_map|tag|talents|videos)(?:$|[\\?/])|(?:faq|surepay)\\./html(?:$|\\?)|talent/\\w)\" to=\"https://www.voices.com/$1\"/></ruleset>", "<ruleset name=\"Volatile Systems.com (problematic)\" default_off=\"expired, mismatched\" f=\"Volatile_Systems.com-problematic.xml\"><rule from=\"^http://lists\\.volatilesystems\\.com/\" to=\"https://lists.volatilesystems.com/\"/></ruleset>", "<ruleset name=\"Volatile Systems.com (partial)\" default_off=\"failed ruleset test\" f=\"Volatile_Systems.com.xml\"><securecookie host=\"^www\\.volatilesystems\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?volatilesystems\\.com/\" to=\"https://www.volatilesystems.com/\"/></ruleset>", "<ruleset name=\"Volcano eCigs\" platform=\"mixedcontent\" f=\"VolcanoEcigs.xml\"><rule from=\"^http://(?:www\\.)?volcanoecigs\\.com/\" to=\"https://www.volcanoecigs.com/\"/></ruleset>", "<ruleset name=\"Volexity.com (partial)\" f=\"Volexity.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Volgistics (partial)\" f=\"Volgistics.xml\"><rule from=\"^(?:http://(?:www\\.)?|https://)volgistics\\.com/\" to=\"https://www.volgistics.com/\"/></ruleset>", "<ruleset name=\"Volia.com (partial)\" f=\"Volia.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Volksverschlüsselung\" f=\"Volksverschluesselung.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Volkswagen Bank\" platform=\"mixedcontent\" f=\"VolkswagenBank.xml\"><rule from=\"^http://(?:www\\.)?volkswagenbank\\.de/\" to=\"https://www.volkswagenbank.de/\"/><rule from=\"^http://online-banking\\.volkswagenbank\\.de/\" to=\"https://online-banking.volkswagenbank.de/\"/></ruleset>", "<ruleset name=\"Volotea.com\" f=\"Volotea.com.xml\"><securecookie host=\"^(?:www)?\\.volotea\\.com$\" name=\".+\"/><rule from=\"^http://((?:auto|cars|coches|media|static|voitures|www)\\.)?volotea\\.com/\" to=\"https://$1volotea.com/\"/></ruleset>", "<ruleset name=\"HP Security Voltage\" f=\"Voltage.com.xml\"><securecookie host=\"^www\\.voltage\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Voltaic Systems.com (partial)\" f=\"Voltaic_Systems.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Volunteer² (partial)\" f=\"Volunteer2.xml\"><rule from=\"^http://(?:app\\.volunteer2|(?:www\\.)?myvolunteerpage)\\.com/\" to=\"https://app.volunteer2.com/\"/><rule from=\"^http://cdn\\.volunteer2\\.com/\" to=\"https://cdn.volunteer2.com/\"/></ruleset>", "<ruleset name=\"Volunteer Centers of Michigan\" default_off=\"mismatched\" f=\"Volunteer_Centers_of_Michigan.xml\"><securecookie host=\"^mivolunteers\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?mivolunteers\\.org/\" to=\"https://mivolunteers.org/\"/></ruleset>", "<ruleset name=\"Volunteer Matters.com\" f=\"Volunteer_Matters.xml\"><securecookie host=\"^(?:www\\.)?volunteermatters\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Volusion (partial)\" f=\"Volusion.xml\"><securecookie host=\"^(?:.*\\.)?volusion\\.co(?:\\.uk|m)$\" name=\".+\"/><rule from=\"^http://(store\\.|www\\.)?volusion\\.co\\.uk/\" to=\"https://$1volusion.co.uk/\"/><rule from=\"^http://volusion\\.com/\" to=\"https://www.volusion.com/\"/><rule from=\"^http://(cdn3|forums|my|store|vchangedesign|www)\\.volusion\\.com/\" to=\"https://$1.volusion.com/\"/></ruleset>", "<ruleset name=\"Vonage\" platform=\"mixedcontent\" f=\"Vonage.xml\"><rule from=\"^http://(?:www\\.)?vonage\\.com/\" to=\"https://www.vonage.com/\"/><rule from=\"^http://(?:www\\.)?vonage\\.co\\.uk/\" to=\"https://www.vonage.co.uk/\"/><rule from=\"^http://(?:www\\.)?vonage\\.ca/\" to=\"https://www.vonage.ca/\"/></ruleset>", "<ruleset name=\"vooPlayer.com\" f=\"VooPlayer.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Voodoo.com (partial)\" f=\"Voodoo.com.xml\"><securecookie host=\"^\\.voodoo\\.com$\" name=\".+\"/><rule from=\"^http://(?:secure\\.|www\\.)?voodoo\\.com/\" to=\"https://secure.voodoo.com/\"/></ruleset>", "<ruleset name=\"Voodoo Ping.com\" default_off=\"expired\" f=\"Voodoo_Ping.com.xml\"><securecookie host=\"^(?:w*\\.)?voodooping\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vook.com\" f=\"Vook.com.xml\"><rule from=\"^http://((?:store|tool|www)\\.)?vook\\.com/\" to=\"https://$1vook.com/\"/></ruleset>", "<ruleset name=\"Voost!\" f=\"Voost.xml\"><securecookie host=\"^\\.voo\\.st$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vorpal.io\" default_off=\"failed ruleset test\" f=\"Vorpal.io.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VosCast.com\" f=\"VosCast.com.xml\"><securecookie host=\"^(?:w*\\.)?voscast\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VoteWatch.eu\" default_off=\"failed ruleset test\" f=\"VoteWatch.eu.xml\"><securecookie host=\"^www\\.votewatch\\.eu$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?votewatch\\.eu/\" to=\"https://www.votewatch.eu/\"/></ruleset>", "<ruleset name=\"voterVOICE\" platform=\"mixedcontent\" f=\"VoterVOICE.xml\"><rule from=\"^http://(?:www\\.)?votervoice\\.net/\" to=\"https://www.votervoice.net/\"/></ruleset>", "<ruleset name=\"VouchedFor.co.uk\" default_off=\"failed ruleset test\" f=\"VouchedFor.co.uk.xml\"><securecookie host=\"^\\.vouchedfor\\.co\\.uk$\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vovici.com (partial)\" default_off=\"failed ruleset test\" f=\"Vovici.com.xml\"><rule from=\"^http://(desktop\\.|system\\.)?(www\\.)?vovici\\.com/\" to=\"https://$1vovici.com/\"/></ruleset>", "<ruleset name=\"Vox-CDN.com\" platform=\"mixedcontent\" f=\"Vox-CDN.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vox.com\" default_off=\"redirects to http\" f=\"Vox.com.xml\"><exclusion pattern=\"^http://www\\.vox\\.com/(?:$|\\?|\\d{4}/(?:\\d\\d?/){2}\\d+/[\\w-]+(?:$|\\?))\"/><securecookie host=\"^\\.\" name=\"^__[qu].*\"/><rule from=\"^http://vox\\.com/\" to=\"https://www.vox.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vox Media.com (partial)\" f=\"Vox_Media.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?voxmedia\\.com/(?!(?!.+\\.js(?:$|\\?)|(?:.*/)?\\d{4}/)/*(?:(?:about-vox-media|admin|brands|contact|google_news_sitemap|login|networks|pages|press|racked|reader|recode|rss|security|the-verge|trending|users|vox-creative)(?:$|[?/])|robots\\.txt))\"/><exclusion pattern=\"^http://marketing\\.voxmedia\\.com/(?!(?!.+\\.js(?:$|\\?)|(?:.+/)?\\d{4}/)/*(?:case-studies|page)(?:$|[?/]))\"/><exclusion pattern=\"^http://product\\.voxmedia\\.com/(?!(?!.+\\.js(?:$|\\?)|(?:.*/)?\\d{4}/)/*(?:archives|authors|development|events|interns|pages|source|til|trending|vax)(?:$|[?/]))\"/><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><rule from=\"^http://jobs\\.voxmedia\\.com/[^?]*\" to=\"https://www.voxmedia.com/careers\"/><rule from=\"^http://status\\.voxmedia\\.com/\" to=\"https://voxmedia.statuspage.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Voxel.net (broken)\" default_off=\"broken\" f=\"Voxel.xml\"><securecookie host=\"^(?:.*\\.)?vox(?:cdn\\.com|el\\.net)$\" name=\".*\"/><rule from=\"^http://(www\\.|portal\\.)?voxel\\.net/\" to=\"https://$1voxel.net/\"/><rule from=\"^http://(\\d[\\-\\w]*)\\.voxcdn\\.com/\" to=\"https://$1.voxcdn.com/\"/></ruleset>", "<ruleset name=\"Voxer (partial)\" f=\"Voxer.xml\"><securecookie host=\".+\\.voxer\\.com$\" name=\".+\"/><rule from=\"^http://((?:business|one|support|web|www)\\.)?voxer\\.com/\" to=\"https://$1voxer.com/\"/><rule from=\"^http://dev-10\\.voxer\\.com/assets/\" to=\"https://voxer.com/assets/\"/></ruleset>", "<ruleset name=\"Voxility.com\" f=\"Voxility.com.xml\"><rule from=\"^http://(?:www\\.)?voxility\\.com/\" to=\"https://www.voxility.com/\"/></ruleset>", "<ruleset name=\"Voyage-Prive.co.uk\" f=\"Voyage-Prive.co.uk.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://voyage-prive\\.co\\.uk/\" to=\"https://www.voyage-prive.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Voyage-Prive.com\" f=\"Voyage-Prive.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://voyage-prive\\.com/\" to=\"https://www.voyage-prive.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Voyage-Prive.it\" f=\"Voyage-Prive.it.xml\"><securecookie host=\"^\\.votage-prive\\.it$\" name=\"^PHPSESSID$\"/><securecookie host=\"^www\\.votage-prive\\.it$\" name=\"^ablim$\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http://voyage-prive\\.it/\" to=\"https://www.voyage-prive.it/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Voyage Group.com\" default_off=\"failed ruleset test\" f=\"Voyage_Group.com.xml\"><rule from=\"^http://www\\.voyagegroup\\.com/\" to=\"https://voyagegroup.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Voys.nl\" f=\"Voys.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vozpopuli.com\" default_off=\"failed ruleset test\" f=\"Vozpopuli.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"vpnbook.com\" f=\"Vpnbook.com.xml\"><securecookie host=\"^(?:webproxy)?\\.vpnbook\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?vpnbook\\.com/\" to=\"https://www.vpnbook.com/\"/><rule from=\"^http://webproxy\\.vpnbook\\.com/\" to=\"https://webproxy.vpnbook.com/\"/></ruleset>", "<ruleset name=\"vpsBoard.com\" default_off=\"failed ruleset test\" f=\"VpsBoard.com.xml\"><securecookie host=\"^(?:www\\.)?vpsboard\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vr.org (partial)\" f=\"Vr.org.xml\"><securecookie host=\"^www\\.vr\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vrr.de\" f=\"Vrr.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vse.sk\" f=\"Vse.sk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"vsexshop.ru (partial)\" f=\"Vsexshop.ru.xml\"><rule from=\"^http://(?:[lm]\\.vimgs|vsexshop)\\.ru/images/\" to=\"https://vsexshop.ru/images/\"/></ruleset>", "<ruleset name=\"Vshn.ch\" f=\"Vshn.ch.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vszp.sk\" f=\"Vszp.sk.xml\"><rule from=\"^http://vszp\\.sk/\" to=\"https://www.vszp.sk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vtiger.com\" default_off=\"failed ruleset test\" f=\"Vtiger.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vtracy\" default_off=\"failed ruleset test\" f=\"Vtracy.de.xml\"><rule from=\"^http://vtracy\\.de/\" to=\"https://vtracy.de/\"/><rule from=\"^http://red\\.vtracy\\.de/\" to=\"https://red.vtracy.de/\"/></ruleset>", "<ruleset name=\"VuFind.org\" f=\"VuFind.org.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://www\\.vufind\\.org/\" to=\"https://vufind.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vub.sk\" f=\"Vub.sk.xml\"><rule from=\"^http://(?:www\\.)?vub\\.sk/\" to=\"https://www.vub.sk/\"/><rule from=\"^http://nib\\.vub\\.sk/\" to=\"https://nib.vub.sk/\"/></ruleset>", "<ruleset name=\"Vuejs\" default_off=\"failed ruleset test\" f=\"Vuejs.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vueling\" f=\"Vueling.xml\"><rule from=\"^http://vueling\\.com/\" to=\"https://vueling.com/\"/><rule from=\"^http://([^/:@\\.]+)\\.vueling\\.com/\" to=\"https://$1.vueling.com/\"/></ruleset>", "<ruleset name=\"VulnHub.com\" f=\"VulnHub.com.xml\"><securecookie host=\"^\\.vulnhub\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vultr.com\" f=\"Vultr.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vulture.com (partial)\" f=\"Vulture.com.xml\"><securecookie host=\"^\\.vulture\\.com$\" name=\"^s_\\w+$\"/><rule from=\"^http://stats\\.vulture\\.com/\" to=\"https://vulture-com.112.2o7.net/\"/></ruleset>", "<ruleset name=\"Vumanity.net (partial)\" default_off=\"failed ruleset test\" f=\"Vumanity.net.xml\"><securecookie host=\"^\\.vumanity\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vungle.com (false MCB)\" platform=\"mixedcontent\" f=\"Vungle.com-falsemixed.xml\"><securecookie host=\"^\\.vungle\\.com$\" name=\".+\"/><rule from=\"^http://(blog|www)\\.vungle\\.com/\" to=\"https://$1.vungle.com/\"/></ruleset>", "<ruleset name=\"Vungle (partial)\" f=\"Vungle.xml\"><exclusion pattern=\"^http://(?:blog|www)\\.vungle\\.com/+(?!wp-content/|wp-includes/)\"/><securecookie host=\"^v\\.vungle\\.com$\" name=\".+\"/><rule from=\"^http://(v\\.|www\\.)?vungle\\.com/\" to=\"https://$1vungle.com/\"/><rule from=\"^http://blog\\.vungle\\.com/\" to=\"https://www.vungle.com/blog/\"/></ruleset>", "<ruleset name=\"Vuze.com (false MCB)\" platform=\"mixedcontent\" f=\"Vuze.com-falsemixed.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vuze.com (partial)\" f=\"Vuze.xml\"><securecookie host=\"^\\.vuze\\.com$\" name=\"^(?:__cfduid|__qca|cf_clearance)$\"/><securecookie host=\".+\\.vuze\\.com$\" name=\".+\"/><rule from=\"^http://vuze\\.com/\" to=\"https://www.vuze.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"vwd services.com (partial)\" f=\"Vwd_services.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"vwp.su\" f=\"Vwp.su.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VxStream-Sandbox.com\" f=\"VxStream-Sandbox.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"vzaar.com (partial)\" default_off=\"failed ruleset test\" f=\"Vzaar.xml\"><securecookie host=\"^view\\.vzaar\\.com$\" name=\".+\"/><rule from=\"^http://static\\.vzaar\\.com/\" to=\"https://s3.amazonaws.com/static.vzaar.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"W-x.Co\" f=\"W-x.co.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"w00tads.com\" default_off=\"failed ruleset test\" f=\"W00tads.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"w1.fi\" f=\"W1.fi.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"W3.org\" f=\"W3C.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"W3Counter.com\" f=\"W3Counter.com.xml\"><securecookie host=\"^(?:www\\.)?w3counter\\.com$\" name=\"^AWSELB$\"/><securecookie host=\"^\\.w3counter\\.com$\" name=\"^(?:__cfduid|__qca|_\\d+_visitFlag|cf_clearance)$\"/><securecookie host=\"^www\\.w3counter\\.com$\" name=\"^symfony$\"/><securecookie host=\"^(?:\\.|www\\.)?w3counter\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"W3schools.com\" f=\"W3schools.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"W4a.fr\" f=\"W4a.fr.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"w55c.net\" f=\"W55c.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WAE+\" default_off=\"connection reset\" f=\"WAE_Plus.xml\"><securecookie host=\"^\\.waeplus\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WANdisco.com (partial)\" f=\"WANdisco.com.xml\"><securecookie host=\"^support\\.wandisco\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WAPY (partial)\" default_off=\"expired, self-signed\" f=\"WAPY.xml\"><rule from=\"^http://(?:dev1\\.|www\\.)?wapy\\.com/(css|imagedb|images)/\" to=\"https://wapy.com/$1/\"/></ruleset>", "<ruleset name=\"WAYF.dk (partial)\" default_off=\"failed ruleset test\" f=\"WAYF.dk.xml\"><securecookie host=\"^janus\\.wayf\\.dk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WB Play.com\" f=\"WB_Play.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WD2go.com\" f=\"WD2go.com.xml\"><securecookie host=\"^www\\.wd2go\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?wd2go\\.com/\" to=\"https://www.wd2go.com/\"/></ruleset>", "<ruleset name=\"WDWS (partial)\" f=\"WDWS.xml\"><rule from=\"^http://(?:www\\.)?wdws\\.com/(misc/|sites/|user(?:$|\\?|/))\" to=\"https://www.wdws.com/$1\"/></ruleset>", "<ruleset name=\"WEBxMedia\" default_off=\"failed ruleset test\" f=\"WEBxMedia.xml\"><securecookie host=\"^\\.webxmedia\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WEDOS\" f=\"WEDOS.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WE Forum.org (partial)\" f=\"WE_Forum.org.xml\"><securecookie host=\"^\\.weforum\\.org$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WF NC News.com\" platform=\"mixedcontent\" f=\"WF_NC_News.com.xml\"><securecookie host=\"^\\.wfncnews\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WHI CDN.com\" default_off=\"failed ruleset test\" f=\"WHI_CDN.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WHMCS.com (partial)\" f=\"WHMCS.xml\"><securecookie host=\"^(?:.*\\.)?whmcs\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WHMS-FM (partial)\" f=\"WHMS-FM.xml\"><rule from=\"^http://(?:www\\.)?whms\\.com/(misc/|sites/|user(?:$|\\?|/))\" to=\"https://www.whms.com/$1\"/></ruleset>", "<ruleset name=\"WHO.int (broken)\" default_off=\"broken\" f=\"WHO.int.xml\"><rule from=\"^http://www\\.who\\.int/\" to=\"https://www.who.int/\"/><rule from=\"^http://who\\.int/\" to=\"https://www.who.int/\"/></ruleset>", "<ruleset name=\"WHSmith (partial)\" f=\"WHSmith.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?magazines\\.whsmith\\.co\\.uk/.*\" to=\"https://www.whsmith.co.uk/magazines\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WHYY.org\" f=\"WHYY.org.xml\"><securecookie host=\"^\\.whyy\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?whyy\\.org/\" to=\"https://www.whyy.org/\"/></ruleset>", "<ruleset name=\"WIMM.com (partial)\" f=\"WIMM.com.xml\"><securecookie host=\"^\\.?my\\.wimm\\.com$\" name=\".+\"/><rule from=\"^http://my\\.wimm\\.com/\" to=\"https://my.wimm.com/\"/></ruleset>", "<ruleset name=\"WIPmania\" default_off=\"expired cert\" f=\"WIPmania.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WLD CDN.net\" f=\"WLD_CDN.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WLxrs.com\" default_off=\"failed ruleset test\" f=\"WLxrs.com.xml\"><rule from=\"^http://(\\w+)\\.wlxrs\\.com/\" to=\"https://$1.wlxrs.com/\"/></ruleset>", "<ruleset name=\"WM Jobs.co.uk\" default_off=\"failed ruleset test\" f=\"WM_Jobs.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WNYC.org\" f=\"WNYC.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WOVN.io\" f=\"WOVN.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WOW Analytics.co.uk (partial)\" f=\"WOW_Analytics.co.uk.xml\"><rule from=\"^http://(app|t|test\\.t)\\.wowanalytics\\.co\\.uk/\" to=\"https://$1.wowanalytics.co.uk/\"/></ruleset>", "<ruleset name=\"WP Engine.com\" f=\"WP-Engine.xml\"><exclusion pattern=\"^http://([\\w.-]+)\\.([\\w-]+)\\.wpengine\\.com\"/><securecookie host=\"^(?:.*\\.)?wpengine\\.com$\" name=\".+\"/><rule from=\"^http://cdn\\.wpengine\\.com/\" to=\"https://wpengine.com/\"/><rule from=\"^http://press\\.wpengine\\.com/\" to=\"https://wpengine.totemapp.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WP.pl (problematic)\" default_off=\"mismatched\" f=\"WP.pl-problematic.xml\"><securecookie host=\"^diety\\.wp\\.pl$\" name=\".+\"/><rule from=\"^http://diety\\.wp\\.pl/\" to=\"https://diety.wp.pl/\"/></ruleset>", "<ruleset name=\"WP.pl (partial)\" default_off=\"failed ruleset test\" f=\"WP.pl.xml\"><exclusion pattern=\"^http://profil\\.wp\\.pl/(?!css/|favicon\\.ico|(?:login|obrazek|rejestracja)\\.html)\"/><securecookie host=\"^\\.wp\\.pl$\" name=\"^statid$\"/><securecookie host=\"^(?!profil\\.)\\w\" name=\".\"/><securecookie host=\"^\\.pasazfin\\.\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WPML.org\" f=\"WPML.org.xml\"><rule from=\"^http://www\\.wpml\\.org/\" to=\"https://wpml.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WPP.com\" f=\"WPP.xml\"><securecookie host=\"^(?:inside|www)\\.wpp\\.com$\" name=\".+\"/><rule from=\"^http://wpp\\.com/\" to=\"https://www.wpp.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WP Engine Status.com\" f=\"WP_Engine_Status.com.xml\"><rule from=\"^http://(?:www\\.)?wpenginestatus\\.com/\" to=\"https://wpenginestatus.com/\"/></ruleset>", "<ruleset name=\"WP Software.net\" f=\"WP_Software.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WP VulnDB.com\" f=\"WP_VulnDB.com.xml\"><rule from=\"^http://(?:www\\.)?wpvulndb\\.com/\" to=\"https://wpvulndb.com/\"/></ruleset>", "<ruleset name=\"WP digital.net (partial)\" f=\"WP_digital.net.xml\"><rule from=\"^http://css\\.wpdigital\\.net/\" to=\"https://ssl.washingtonpost.com/\"/><rule from=\"^http://echoapi\\.wpdigital\\.net/\" to=\"https://api.echoenabled.com/\"/></ruleset>", "<ruleset name=\"WPdev.ms (partial)\" f=\"WPdev.ms.xml\"><rule from=\"^http://wpdev\\.ms/$\" to=\"https://bitly.com/\"/></ruleset>", "<ruleset name=\"WRAL.com\" default_off=\"failed ruleset test\" f=\"WRAL.com.xml\"><securecookie host=\"^\\.wral\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?wral\\.com/\" to=\"https://$1wral.com/\"/><rule from=\"^http://wwwcache\\.wral\\.com/\" to=\"https://www.wral.com/\"/></ruleset>", "<ruleset name=\"WSJ.net\" f=\"WSJ.net.xml\"><rule from=\"^http://images\\.conferences\\.wsj\\.net/\" to=\"https://s3.amazonaws.com/images.conferences.wsj.net/\"/><exclusion pattern=\"^http://s\\.wsj\\.net/video/\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WSO2.com (partial)\" f=\"WSO2.com.xml\"><exclusion pattern=\"^http://wso2\\.com/+(?!favicon\\.ico|user(?:$|[?/]))\"/><rule from=\"^http://((?:connect|\\w\\.content|support|www)\\.)?wso2\\.com/\" to=\"https://$1wso2.com/\"/></ruleset>", "<ruleset name=\"WSWS.org\" f=\"WSWS.xml\"><rule from=\"^http://wsws\\.org/\" to=\"https://www.wsws.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WTFuzz.com\" f=\"WTFUzz.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WTO.org (partial)\" f=\"WTO.org.xml\"><securecookie host=\"^(?:docs|erecruitment|etraining)\\.wto\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WU Payment Solutions.com (expired)\" default_off=\"expired\" f=\"WU_Payment_Solutions.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WWE.com (partial)\" f=\"WWE.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WWF Schweiz\" f=\"WWF.ch.xml\"><rule from=\"^http://www\\.pandaction\\.wwf\\.ch/\" to=\"https://pandaction.wwf.ch/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WWF.or.jp\" platform=\"mixedcontent\" f=\"WWF.or.jp.xml\"><securecookie host=\"^wwf\\.or\\.jp$\" name=\".+\"/><securecookie host=\"^www\\.wwf\\.or\\.jp$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WWF.org\" f=\"WWF.org.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WWTE (partial)\" default_off=\"failed ruleset test\" f=\"WWTE.xml\"><securecookie host=\"^\\.(?:travel\\.)?wwte1\\.com$\" name=\".+\"/><securecookie host=\"^uk\\.wwte4\\.com$\" name=\".+\"/><securecookie host=\"^\\.?euro\\.wwte7\\.com$\" name=\".+\"/><securecookie host=\"^aus\\.wwte8\\.com$\" name=\".+\"/><securecookie host=\"^se\\.wwte9\\.com$\" name=\".+\"/><rule from=\"^http://media\\.wwte\\.com/\" to=\"https://media.wwte.com/\"/><rule from=\"^http://(travel\\.|www\\.)?wwte1\\.com/\" to=\"https://$1wwte1.com/\"/><rule from=\"^http://www\\.wwte(?:2|3|1\\d)\\.com/(?:default\\.htm|pubspec/scripts/default\\.asp)?(?:\\?.*)?$\" to=\"https://travel.wwte1.com/pubspec/scripts/eap.asp?eapid=0-30001\"/><rule from=\"^http://wwte4\\.com/(\\?.*)?$\" to=\"https://uk.wwte4.com/Default.aspx$1\"/><rule from=\"^http://uk\\.wwte4\\.com/\" to=\"https://uk.wwte4.com/\"/><rule from=\"^http://wwte7\\.com/(\\?.*)?$\" to=\"https://euro.wwte7.com/Default.aspx$1\"/><rule from=\"^http://euro\\.wwte7\\.com/\" to=\"https://euro.wwte7.com/\"/><rule from=\"^http://wwte8\\.com/(\\?.*)?$\" to=\"https://aus.wwte8.com/Default.aspx$1\"/><rule from=\"^http://aus\\.wwte8\\.com/\" to=\"https://aus.wwte8.com/\"/><rule from=\"^http://wwte9\\.com/(\\?.*)?$\" to=\"https://se.wwte9.com/Default.aspx$1\"/><rule from=\"^http://wwte10\\.com/(?:default\\.htm|pubspec/scripts/default\\.asp)?(?:\\?.*)?$\" to=\"https://travel.wwte1.com/pubspec/scripts/eap.asp?eapid=0-30001\"/><rule from=\"^http://travel\\.wwte10\\.com/\" to=\"https://travel.wwte10.com/\"/></ruleset>", "<ruleset name=\"WaBi.com\" f=\"WaBi.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WaPo Labs.com (partial)\" f=\"WaPo_Labs.com.xml\"><rule from=\"^http://bunsen\\.wapolabs\\.com/\" to=\"https://d2pe20ur0h0p8p.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Waag.org\" default_off=\"missing certificate chain\" f=\"Waag.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wachovia.com (partial)\" f=\"Wachovia.xml\"><securecookie host=\"^myed\\.wachovia\\.com$\" name=\"\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wacken.com (partial)\" f=\"Wacken.com.xml\"><rule from=\"^http:\" to=\"https:\"/><exclusion pattern=\"^http://www\\.wacken\\.com/anfahrt-widget/index-(de|en)\\.php\"/></ruleset>", "<ruleset name=\"Waeckerlin.org\" f=\"Waeckerlin.org.xml\"><rule from=\"^http://(?:marc\\.|www\\.)?waeckerlin\\.org/\" to=\"https://marc.waeckerlin.org/\"/></ruleset>", "<ruleset name=\"Waffle.io\" f=\"Waffle.io.xml\"><securecookie host=\"^\\.?waffle\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Waffles.fm\" default_off=\"failed ruleset test\" f=\"Waffles.fm.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wageworks.com\" f=\"Wageworks.com.xml\"><rule from=\"^http://(www\\.)?wageworks\\.com/\" to=\"https://www.wageworks.com/\"/></ruleset>", "<ruleset name=\"Wagner College\" f=\"Wagner.xml\"><rule from=\"^http://(?:www\\.)?wagner\\.edu/\" to=\"https://wagner.edu/\"/></ruleset>", "<ruleset name=\"Wahanda.net (partial)\" f=\"Wahanda.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wahiduddin.net\" f=\"Wahiduddin.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Waindigo.org\" f=\"Waindigo.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Waitrose.com (partial)\" f=\"Waitrose.com.xml\"><rule from=\"^http://(?:www\\.)?waitrose\\.com/(?=content/|favicon\\.ico|(?:errors/error_)?images/|home/mywaitrose/|(?:shop/(?:GetCustomerOrders|MyAccount|MyAddresses)|webapp/wcs/stores/servlet/LogonForm)(?:$|\\?))\" to=\"https://www.waitrose.com/\"/></ruleset>", "<ruleset name=\"Waitrose Direct.com (partial)\" f=\"Waitrose_Direct.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?waitrosedirect\\.com/+(?!favicon\\.ico|info/|wcsstore/SharedStoreFront/Custom/|webapp/)\"/><rule from=\"^http://(?:images\\.|www\\.)?waitrosedirect\\.com/\" to=\"https://www.waitrosedirect.com/\"/></ruleset>", "<ruleset name=\"Wakelet.com\" default_off=\"failed ruleset test\" f=\"Wakelet.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wal.co\" f=\"Wal.co.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"wald.intevation.org\" default_off=\"Invalid certificate\" f=\"Wald.Intevation.org.xml\"><securecookie host=\"^wald\\.intevation\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Walder Wyss.com\" f=\"Walder_Wyss.com.xml\"><rule from=\"^http://(?:www\\.)?walderwyss\\.com/\" to=\"https://www.walderwyss.com/\"/></ruleset>", "<ruleset name=\"Wales.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"Wales.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Walgreens (partial)\" f=\"Walgreens.xml\"><exclusion pattern=\"^http://(?:www\\.)?walgreens\\.com/(?!common/|images/)\"/><securecookie host=\"^\\.walgreens\\.com$\" name=\"^s_\\w\\w$\"/><rule from=\"^http://((?:img2|news|www)\\.)?walgreens\\.com/\" to=\"https://$1walgreens.com/\"/></ruleset>", "<ruleset name=\"Walking Men\" f=\"Walking_Men.xml\"><securecookie host=\"^\\.walkingmen\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?walkingmen\\.com/\" to=\"https://www.walkingmen.com/\"/></ruleset>", "<ruleset name=\"wallabag.org (partial)\" f=\"Wallabag.org.xml\"><exclusion pattern=\"^http://doc\\.wallabag\\.org/+(?!css/)\"/><securecookie host=\"^\\.wallabag\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wallet.La\" default_off=\"failed ruleset test\" f=\"Wallet.La.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WalletGenerator.net\" default_off=\"missing certificate chain\" f=\"WalletGenerator.net.xml\"><rule from=\"^http://www\\.walletgenerator\\.net/\" to=\"https://walletgenerator.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WallstreetCN (partial)\" f=\"WallstreetCN.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Walmart.com (false MCB)\" platform=\"mixedcontent\" f=\"Walmart.com-falsemixed.xml\"><securecookie host=\"^help\\.walmart\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Walmart.com (partial)\" default_off=\"failed ruleset test\" f=\"Walmart.com.xml\"><exclusion pattern=\"^http://www\\.walmart\\.com/(?!/*(?:client_side_redirect\\.gsp|(?:account|cservice)(?:$|[?/])|favicon\\.ico|i/|logout\\.do))\"/><exclusion pattern=\"^http://help\\.walmart\\.com/(?!/*(?:euf/(?:assets|rightnow)/|favicon\\.ico))\"/><securecookie host=\"^(?:accionistas|beacon\\.affil|affiliates|beacon\\.(?:beta|classrooms)|corporate|(?:cms|es)\\.corporate|corporativo|foundation|es\\.foundation|fundacion|news|es\\.news|noticias|savingscatcher|beacon\\.s(?:avingscatcher|tage)|stock|es\\.stock|suppliercenter)\\.walmart\\.com$\" name=\".+\"/><rule from=\"^http://walmart\\.com/\" to=\"https://www.walmart.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Walmart images.com\" f=\"Walmart_images.com.xml\"><securecookie host=\"^secure\\.walmartimages\\.com$\" name=\".+\"/><rule from=\"^http://i2?\\.walmartimages\\.com/\" to=\"https://i-secure.walmartimages.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Waltham Forest.gov.uk (partial)\" f=\"Waltham_Forest.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://walthamforest\\.gov\\.uk/\" to=\"https://www.walthamforest.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Walthers\" f=\"Walthers.xml\"><rule from=\"^http://(?:www\\.)?walthers\\.com/\" to=\"https://walthers.com/\"/></ruleset>", "<ruleset name=\"Wamba.com (partial)\" f=\"Wamba.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wamba CDN.net (partial)\" f=\"Wamba_CDN.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wand.com\" default_off=\"failed ruleset test\" f=\"Wand.com.xml\"><securecookie host=\"^(?:www\\.)?wand\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wandoujia (partial)\" f=\"Wandoujia.xml\"><exclusion pattern=\"^http://(www\\.)?wandoujia\\.com/\\S+\"/><exclusion pattern=\"^http://apps.wandoujia.com/(?!api/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wanglibao.com\" f=\"Wanglibao.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"wangyin.com (partial)\" f=\"Wangyin.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://wangyin\\.com/+\" to=\"https://www.wangyin.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WaniKani\" f=\"Wanikani.com.xml\"><rule from=\"^http://(www\\.)?wanikani\\.com/\" to=\"https://www.wanikani.com/\"/></ruleset>", "<ruleset name=\"Wantful\" default_off=\"failed ruleset test\" f=\"Wantful.xml\"><securecookie host=\"^(?:.*\\.)?wantful\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"play War Z.com\" default_off=\"failed ruleset test\" f=\"War_Z.xml\"><securecookie host=\"^(?:account)?\\.playwarz\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Warez-BB.org\" f=\"Warez-BB.org.xml\"><securecookie host=\"^www\\.warez-bb\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Warframe.com\" f=\"Warframe.com.xml\"><securecookie host=\"^\\.warframe\\.com$\" name=\".+\"/><rule from=\"^http://store\\.warframe\\.com/\" to=\"https://digital-extremes.myshopify.com/\"/><rule from=\"^http://support\\.warframe\\.com/.*\" to=\"https://digitalextremes.zendesk.com/hc\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wargaming.net\" default_off=\"failed ruleset test\" f=\"Wargaming.net.xml\"><securecookie host=\"^wargaming\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?wargaming\\.com/\" to=\"https://wargaming.com/\"/><rule from=\"^http://((?:eu|na|ru|sea|www)\\.)?wargaming\\.net/\" to=\"https://$1wargaming.net/\"/></ruleset>", "<ruleset name=\"warmcat.com\" f=\"Warmcat.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Warner Artists\" f=\"Warner-Artists.xml\"><rule from=\"^http://(?:www\\.)?warnerartists\\.com/\" to=\"https://www.warnerartists.com/\"/></ruleset>", "<ruleset name=\"Warner Bros.com (partial)\" default_off=\"failed ruleset test\" f=\"Warner_Bros.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"warosu.org\" f=\"Warosu.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Warrington.gov.uk (partial)\" f=\"Warrington.gov.uk.xml\"><securecookie host=\"^(?!\\.warrington\\.gov\\.uk$).\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WartStick.com (false MCB)\" platform=\"mixedcontent\" f=\"WartStick.com.xml\"><securecookie host=\"^\\.wartstick\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Warwick Castle\" default_off=\"failed ruleset test\" f=\"Warwick-Castle.xml\"><securecookie host=\"www\\.warwick-castle\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Warwickshire Police\" f=\"WarwickshirePolice.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wz2100.net (partial)\" default_off=\"failed ruleset test\" f=\"Warzone2100.xml\"><securecookie host=\"^(?:.*\\.)?wz2100\\.net$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wash Post.com (partial)\" default_off=\"failed ruleset test\" f=\"Wash_Post.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Washington Post Company (mismatches)\" default_off=\"mismatched\" f=\"Washington-Post-Company-mismatches.xml\"><rule from=\"^http://(?:www\\.)?washingtonpostmedia\\.com/\" to=\"https://www.washingtonpostmedia.com/\"/><rule from=\"^http://(?:www\\.)?washpostco\\.com/\" to=\"https://www.washpostco.com/\"/></ruleset>", "<ruleset name=\"Washington Post.com (partial)\" f=\"Washington-Post-Company.xml\"><exclusion pattern=\"^http://www\\.washingtonpost\\.com/(?:sf/national/+[^/]|wp-srv/graphics/templates/mobile/css/)\"/><exclusion pattern=\"^http://www\\.washingtonpost\\.com/wp-srv/graphics/templates/mobile/\"/><exclusion pattern=\"^http://js\\.washingtonpost\\.com/video/static/js/posttv/vendor/jw/jwplayer\\.flash\\.swf\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://metrics\\.washingtonpost\\.com/\" to=\"https://washingtonpost.112.2o7.net/\"/><rule from=\"^http://wp-eng-static\\.washingtonpost\\.com/\" to=\"https://d2t2kgdkdgawhh.cloudfront.net/\"/><rule from=\"^http://www\\.washingtonpost\\.com/sf/national/?($|\\?|#)\" to=\"https://www.washingtonpost.com/national/$1\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Washington Times (partial)\" f=\"Washington_Times.xml\"><securecookie host=\"^(?:iservices|subscription)\\.washingtontimes\\.com$\" name=\".+\"/><rule from=\"^http://(iservices|subscription)\\.washingtontimes\\.com/\" to=\"https://$1.washingtontimes.com/\"/></ruleset>", "<ruleset name=\"WUStL.edu (problematic)\" default_off=\"mismatched, self-signed\" f=\"Washington_University_in_St_Louis-problematic.xml\"><exclusion pattern=\"^http://(?:digitalcommons|openscholarship)\\.wustl\\.edu/assets/\"/><securecookie host=\"^(?:digitalcommons|\\.?meded\\.dom|openscholarship|helpdesk\\.|samfox|\\.?lli\\.ucollege)\\.wustl\\.edu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WUStL.edu (partial)\" default_off=\"failed ruleset test\" f=\"Washington_University_in_St_Louis.xml\"><exclusion pattern=\"^http://www\\.ot\\.wustl\\.edu/(?!css/|fonts/|images/|js/|mm/images/|RadControls/|(?:Script|Web)Resource\\.axd|UltimateSearchInclude/)\"/><exclusion pattern=\"^http://tlcenter\\.wustl\\.edu/+(?!coursebasket/publicCourseBasket\\.do|css/|images/|portal(?:$|[?/])|restricted/|srs/upload/)\"/><securecookie host=\"^\\.mir\\.wustl\\.edu$\" name=\"^cadata[\\dA-F]{32}$\"/><securecookie host=\"^(?!ot\\.|www\\.ot\\.|tlcenter\\.)\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance|__qca)$\"/><securecookie host=\"^\\.secure\\.biostat\\.wustl\\.edu$\" name=\".\"/><rule from=\"^http://www\\.(alumni|biostatistics|bulletinoftheschoolofmedicine|diningservices)\\.wustl\\.edu/.*\" to=\"https://$1.wustl.edu/\"/><rule from=\"^http://(?:www\\.)?artsci\\.wustl\\.edu/\" to=\"https://computing.artsci.wustl.edu/\"/><exclusion pattern=\"^http://(?:www\\.)?artsci\\.wustl\\.edu/(?!sites/)\"/><rule from=\"^http://(?:www\\.becker|beckerweb2?)\\.wustl\\.edu/(?:\\?.*)?$\" to=\"https://becker.wustl.edu/\"/><rule from=\"^http://(?:www\\.becker|beckerweb2?)\\.wustl\\.edu/.*\" to=\"https://becker.wustl.edu/wip/404.html\"/><rule from=\"^http://(?:www\\.biology|biology4)\\.wustl\\.edu/.*\" to=\"https://wubio.wustl.edu/\"/><exclusion pattern=\"^http://(?:www\\.biology|biology4)\\.wustl\\.edu/+(?!$|\\?)\"/><rule from=\"^http://www\\.(cait|card|communityservice|complianceoffice|careercenter|careers|codeofconduct|cornerstone|ehs|eliotsocietyvolunteer|emergency|engineering|facultysenate|gephardtinstitute|getinvolved|glo|i-?cares|illiad|library|law|medicine|pacs|parents|parking|oiss|oisshome|police|publichealth|registrar|sc|schoolpartnership|spa|spokane|sustainability|teachingcenter|ucollege|undergraduatecouncil|visitor|wulife|wupd|wusmhealth)\\.wustl\\.edu/\" to=\"https://$1.wustl.edu/\"/><rule from=\"^http://catalog\\.wustl\\.edu/\" to=\"https://spokane.wustl.edu/\"/><rule from=\"^http://digitalcommons\\.wustl\\.edu/\" to=\"https://dcwustl.bepress.com/\"/><exclusion pattern=\"^http://digitalcommons\\.wustl\\.edu/(?!assets/)\"/><rule from=\"^http://evals\\.wustl\\.edu/[^?]*\" to=\"https://asapps.artsci.wustl.edu/evals/login.asp\"/><rule from=\"^http://hipaa\\.wustl\\.edu/\" to=\"https://secpriv.wusm.wustl.edu/privacy/default.aspx\"/><rule from=\"^http://myreslife\\.wustl\\.edu/+\" to=\"https://reslife.wustl.edu/\"/><exclusion pattern=\"^http://myreslife\\.wustl\\.edu/+(?!$|\\?)\"/><rule from=\"^http://openscholarship\\.wustl\\.edu/\" to=\"https://dcwustlmain.bepress.com/\"/><exclusion pattern=\"^http://openscholarship\\.wustl\\.edu/(?!assets/)\"/><rule from=\"^http://(mir|ot)\\.wustl\\.edu/\" to=\"https://www.$1.wustl.edu/\"/><rule from=\"^http://autodiscover\\.samfox\\.wustl\\.edu/+$\" to=\"https://outlook.office365.com/owa/?realm=samfox.wustl.edu&vd=autodiscover\"/><rule from=\"^http://autodiscover\\.samfox\\.wustl\\.edu/+([^?]+)$\" to=\"https://outlook.office365.com/$1?realm=samfox.wustl.edu&vd=autodiscover\"/><rule from=\"^http://autodiscover\\.samfox\\.wustl\\.edu/+(.+)\" to=\"https://outlook.office365.com/$1&realm=samfox.wustl.edu&vd=autodiscover\"/><rule from=\"^http://(?:www\\.)?studentrecords\\.wustl\\.edu/AcadCalendar\" to=\"https://registrar.wustl.edu/academic-calendars/\"/><rule from=\"^http://(?:www\\.)?studentrecords\\.wustl\\.edu/\" to=\"https://registrar.wustl.edu/\"/><exclusion pattern=\"^http://(?:www\\.)?studentrecords\\.wustl\\.edu/(?!$|\\?|AcadCalendar(?:$|\\?))\"/><rule from=\"^http://swi\\.ucollege\\.wustl\\.edu/\" to=\"https://summerschool.wustl.edu/swi/\"/><rule from=\"^http://ur\\.wustl\\.edu/+\" to=\"https://undergradresearch.wustl.edu/\"/><exclusion pattern=\"^http://ur\\.wustl\\.edu/+(?!$|\\?)\"/><rule from=\"^http://fpp\\.wusm\\.wustl\\.edu/\" to=\"https://fpp.wustl.edu/\"/><rule from=\"^http://wusmproserv\\.wustl\\.edu/+\" to=\"https://facilities.med.wustl.edu/security/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Washington University in St. Louis Alumni Association\" f=\"Washington_University_in_St_Louis_Alumni_Association.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?wustlconnections\\.com/[^?]*\" to=\"https://alumni.wustl.edu/Pages/default.aspx\"/></ruleset>", "<ruleset name=\"Wasilczyk.pl\" f=\"Wasilczyk.pl.xml\"><securecookie host=\"^\\.blog\\.wasilczyk\\.pl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Waste.org\" f=\"Waste.org.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Watch Medier.dk\" f=\"WatchMedier.xml\"><rule from=\"^http://www\\.watchmedier\\.dk/\" to=\"https://watchmedier.dk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WatchMaxx\" f=\"Watchmaxx.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Water-Challenge.com (partial)\" f=\"Water-Challenge.com.xml\"><rule from=\"^http://(www\\.)?water-challenge\\.com/(image\\.axd|Styles/|themes/)\" to=\"https://$1water-challenge.com/$2\"/></ruleset>", "<ruleset name=\"Water.org (partial)\" f=\"Water.org.xml\"><exclusion pattern=\"^http://(?:give\\.|www\\.)?water\\.org/(?!favicon\\.ico|media/|static/)\"/><securecookie host=\"^contribute\\.water\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?water\\.org/\" to=\"https://water.org/\"/><rule from=\"^http://(contribut|giv)e\\.water\\.org/\" to=\"https://$1e.water.org/\"/></ruleset>", "<ruleset name=\"Water Marquee\" f=\"Water_Marquee.xml\"><securecookie host=\"^(?:.*\\.)?watermarquee\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Waterfox project.org\" f=\"Waterfox_project.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Watershed\" default_off=\"failed ruleset test\" f=\"Watershed.xml\"><rule from=\"^http://(?:www\\.)?watershed\\.co\\.uk/\" to=\"https://www.watershed.co.uk/\"/><rule from=\"^http://piwik\\.watershed\\.co\\.uk/\" to=\"https://piwik.watershed.co.uk/\"/></ruleset>", "<ruleset name=\"Watkins.edu\" default_off=\"failed ruleset test\" f=\"Watkins.edu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Watsi.org\" f=\"Watsi.org.xml\"><rule from=\"^http://(?:www\\.)?watsi\\.org/\" to=\"https://watsi.org/\"/></ruleset>", "<ruleset name=\"Watson Institute.org\" default_off=\"expired, self-signed\" f=\"Watson_Institute.org.xml\"><securecookie host=\"^watsoninstitute\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?watsoninstitute\\.org/\" to=\"https://watsoninstitute.org/\"/></ruleset>", "<ruleset name=\"Wattpad.com (partial)\" f=\"Wattpad.com.xml\"><securecookie host=\"^(?:shop|www)?\\.wattpad\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wauland.de\" f=\"Wauland.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WaveCon.de\" f=\"WaveCon.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wavpin\" default_off=\"failed ruleset test\" f=\"Wavpin.xml\"><securecookie host=\"^\\.wavpin\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WayTools.com\" f=\"WayTools.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"waymoot.org\" default_off=\"failed ruleset test\" f=\"Waymoot.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"wayskinny.com\" f=\"Wayskinny.com.xml\"><securecookie host=\"^\\.?wayskinny\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wazapp\" default_off=\"mismatched, self-signed\" f=\"Wazapp.xml\"><rule from=\"^http://(?:www\\.)?wazapp\\.im/\" to=\"https://wazapp.im/\"/></ruleset>", "<ruleset name=\"Waze.com (partial)\" f=\"Waze.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"wcfan.de\" f=\"Wcfan.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Westdeutscher Rundfunk\" platform=\"mixedcontent\" f=\"Wdr.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"We-Energies.com\" f=\"We-Energies.com.xml\"><securecookie host=\"^(?:profile|www)\\.we-energies\\.com$\" name=\".+\"/><rule from=\"^http://we-energies\\.com/\" to=\"https://www.we-energies.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"We Heart It.com\" default_off=\"failed ruleset test\" f=\"We-Heart-It.xml\"><securecookie host=\"^\\.?weheartit\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WeChat (partial)\" f=\"WeChat.xml\"><securecookie host=\"^(www\\.|admin\\.|login\\.)?wechat\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"We Fight Censorship\" default_off=\"mismatched\" f=\"WeFightCensorship.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WeGotEd.com\" default_off=\"expired\" f=\"WeGotEd.com.xml\"><securecookie host=\"^(?:www\\.)?wegoted\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WeMonIt.de\" f=\"WeMonIt.de.xml\"><securecookie host=\"^(?:www\\.)?wemonit\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"We Need to Know.info\" f=\"WeNeedToKnow.info.xml\"><securecookie host=\"^\\.weneedtoknow\\.info$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WePay (partial)\" f=\"WePay.xml\"><securecookie host=\"^.+\\.wepay\\.com$\" name=\".+\"/><rule from=\"^http://((?:stage|static|support|t|www)\\.)?wepay\\.com/\" to=\"https://$1wepay.com/\"/></ruleset>", "<ruleset name=\"WeRoSys.de (partial)\" f=\"WeRoSys.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WeSwap.com\" f=\"WeSwap.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^_gat?$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WeTransfer\" f=\"WeTransfer.xml\"><securecookie host=\"^(?:www\\.)?wetransfer\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"We Use Coins.com\" f=\"WeUseCoins.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"We Are Wizards.io\" default_off=\"failed ruleset test\" f=\"We_Are_Wizards.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"weakdh.org\" f=\"Weakdh.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Weather Underground (buggy)\" default_off=\"breaks storm reports\" f=\"Weather-Underground.xml\"><rule from=\"^http://(?:icons(?:-ak)?\\.|www\\.)?w(?:underground|xug)\\.com/(css/|i/wu?/|(?:login|members/signup)\\.asp(?:$|\\?))\" to=\"https://www.wunderground.com/$1\"/></ruleset>", "<ruleset name=\"Weather.com (partial)\" f=\"Weather.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Weather.gov (partial)\" default_off=\"failed ruleset test\" f=\"Weather.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WeatherSpark\" f=\"WeatherSpark.xml\"><rule from=\"^http://(?:www\\.)?weatherspark\\.com/\" to=\"https://weatherspark.com/\"/></ruleset>", "<ruleset name=\"Weather Decision Technologies\" f=\"Weather_Decision_Technologies.xml\"><rule from=\"^http://support\\.wdtinc\\.com/(?:$|\\?.*)\" to=\"https://wdt.zendesk.com/\"/><rule from=\"^http://weather\\.wdtinc\\.com/\" to=\"https://weather.wdtinc.com/\"/></ruleset>", "<ruleset name=\"Weatherzone (partial)\" f=\"Weatherzone.xml\"><exclusion pattern=\"^http://resources\\.weatherzone\\.com\\.au/(?:images/widgets/graphics|wz/images/(?:ads|openx|widgets/graphics))/\"/><rule from=\"^http://weatherzone\\.com\\.au/\" to=\"https://www.weatherzone.com.au/\"/><rule from=\"^http://www\\.weatherzone\\.com\\.au/(customise\\.jsp|i(mag|nclud)es/|join/)\" to=\"https://www.weatherzone.com.au/$1\"/><rule from=\"^http://resources\\.weatherzone\\.com\\.au/(?:wz/)?i(mag|nclud)es/\" to=\"https://www.weatherzone.com.au/i$1es/\"/></ruleset>", "<ruleset name=\"Web Hosting Search (partial)\" f=\"Web-Hosting-Search.xml\"><rule from=\"^http://stat\\.webhostingsearch\\.com/\" to=\"https://webhostingsearch.122.2o7.net/\"/></ruleset>", "<ruleset name=\"Web Hosting Talk (partial)\" f=\"Web-Hosting-Talk.xml\"><securecookie host=\"^\\.webhostingtalk\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Web Inspector.com\" f=\"Web-Inspector.xml\"><securecookie host=\"^(?:app|www)\\.webinspector\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Web Power (partial)\" f=\"Web-Power.xml\"><securecookie host=\"^www\\.webpower\\.nl$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?webpower\\.nl/\" to=\"https://www.webpower.nl/\"/></ruleset>", "<ruleset name=\"Web Reservations International (partial)\" default_off=\"Breaks site\" f=\"Web-Reservations-International.xml\"><securecookie host=\"^secure\\.bookhostels\\.com$\" name=\".*\"/><securecookie host=\"^vsecure\\.hostelworld\\.com$\" name=\".*\"/><securecookie host=\"^secure\\.webresint\\.com$\" name=\".*\"/><rule from=\"^http://secure\\.bookhostels\\.com/\" to=\"https://secure.bookhostels.com/\"/><rule from=\"^http://(?:images\\.hostel(?:s|world)|(?:images|static)\\.webresint)\\.com/\" to=\"https://static.webresint.com/\"/><rule from=\"^http://(?:vsecure|www)\\.hostelworld\\.com/\" to=\"https://vsecure.hostelworld.com/\"/><rule from=\"^http://ccd\\.hwstatic\\.com/\" to=\"https://ucd.hwstatic.com/\"/><rule from=\"^http://scd\\.hwstatic\\.com/\" to=\"https://icd.hwstatic.com/\"/><rule from=\"^http://shccd\\.hwstatic\\.com/\" to=\"https://ihccd.hwstatic.com/\"/><rule from=\"^http://(icd|ihccd|ucd)\\.hwstatic\\.com/\" to=\"https://$1.hwstatic.com/\"/><rule from=\"^http://secure\\.webresint\\.com/\" to=\"https://secure.webresint.com/\"/></ruleset>", "<ruleset name=\"Web-Stat.net\" f=\"Web-Stat.net.xml\"><securecookie host=\"^\\.web-stat\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?web-stat\\.net/\" to=\"https://www.web-stat.net/\"/></ruleset>", "<ruleset name=\"web-hosting.com (partial)\" default_off=\"failed ruleset test\" f=\"Web-hosting.com.xml\"><securecookie host=\"^support\\.web-hosting\\.com$\" name=\".+\"/><rule from=\"^http://kb\\.web-hosting\\.com/\" to=\"https://web-hosting.simplekb.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"web-registry.com\" default_off=\"failed ruleset test\" f=\"Web-registry.com.xml\"><rule from=\"^http://(?:www\\.)?web-registry\\.com/\" to=\"https://web-registry.com/\"/></ruleset>", "<ruleset name=\"web-services.com.au\" f=\"Web-servers.com.au.xml\"><securecookie host=\".*\\.web-servers\\.com\\.au$\" name=\".+\"/><rule from=\"^http://s(\\d+)\\.web-servers\\.com\\.au/\" to=\"https://s$1.web-servers.com.au/\"/></ruleset>", "<ruleset name=\"web-stat.com\" f=\"Web-stat.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Web.com (expired)\" default_off=\"expired\" f=\"Web.com-expired.xml\"><rule from=\"^http://webhosting\\.web\\.com/\" to=\"https://webhosting.web.com/\"/></ruleset>", "<ruleset name=\"Web.com (partial)\" f=\"Web.com.xml\"><securecookie host=\"^(?:.*\\.)?web\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?web\\.com/\" to=\"https://www.web.com/\"/><rule from=\"^http://(support|webmail)\\.web\\.com/\" to=\"https://$1.web.com/\"/><rule from=\"^http://wpc\\.016b\\.edgecastcdn\\.net/00016B/\" to=\"https://ne1.wpc.edgecastcdn.net/00016B/\"/></ruleset>", "<ruleset name=\"web.de (buggy)\" default_off=\"failed ruleset test\" f=\"Web.de.xml\"><securecookie host=\"^(?:.*\\.)?web\\.de$\" name=\".+\"/><exclusion pattern=\"^http://(www\\.)web.de/magazine/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Web4U\" f=\"Web4U.xml\"><rule from=\"^http://web4u\\.cz/\" to=\"https://www.web4u.cz/\"/><rule from=\"^http://(\\w+)\\.web4u\\.cz/\" to=\"https://$1.web4u.cz/\"/><securecookie host=\"^\\w*\\.web4u\\.cz$\" name=\".*\"/></ruleset>", "<ruleset name=\"Web4all.fr\" f=\"Web4all.fr.xml\"><securecookie host=\"^(?:guides|manager|push|travaux|webmail)?\\.web4all\\.fr$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WebAlert.jp\" default_off=\"failed ruleset test\" f=\"WebAlert.jp.xml\"><securecookie host=\"^panel\\.webalert\\.jp$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?webalert\\.jp/[^?]*\" to=\"https://panel.webalert.jp/\"/><rule from=\"^http://(panel|seal)\\.webalert\\.jp/\" to=\"https://$1.webalert.jp/\"/></ruleset>", "<ruleset name=\"WebAssign\" f=\"WebAssign.xml\"><securecookie host=\"webassign\\.net\" name=\".*\"/><rule from=\"^http://(?:www\\.)?webassign\\.net/\" to=\"https://webassign.net/\"/><rule from=\"^http://demo\\.webassign\\.net/\" to=\"https://demo.webassign.net/\"/></ruleset>", "<ruleset name=\"WebChuck hosting.com (partial)\" default_off=\"expired, self-signed\" f=\"WebChuck_hosting.com.xml\"><securecookie host=\"^\\.apps\\.webchuckhosting\\.com$\" name=\".+\"/><rule from=\"^http://apps\\.webchuckhosting\\.com/\" to=\"https://apps.webchuckhosting.com/\"/></ruleset>", "<ruleset name=\"WebCijfers.nl\" f=\"WebCijfers.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WebCite\" f=\"WebCitation.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WebCitz\" f=\"WebCitz.xml\"><securecookie host=\"^(?:w*\\.)?webcitz\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WebD.AM\" f=\"WebD.AM.xml\"><rule from=\"^http://static[1-4]\\.webd\\.am/\" to=\"https://d10w0pvim185fa.cloudfront.net/\"/></ruleset>", "<ruleset name=\"WebDAM DB.com\" default_off=\"failed ruleset test\" f=\"WebDAM_DB.com.xml\"><securecookie host=\"^secure\\.webdamdb\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WebDevStudios.com\" default_off=\"failed ruleset test\" f=\"WebDevStudios.xml\"><securecookie host=\"^(?:www\\.)?webdevstudios\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WebEx Communications\" f=\"WebEx-Communications.xml\"><exclusion pattern=\"^http://www\\.\"/><securecookie host=\"^.*\\.webex\\.com$\" name=\".*\"/><rule from=\"^http://(\\w+\\.)?webex\\.com/\" to=\"https://$1webex.com/\"/></ruleset>", "<ruleset name=\"WebFWD.org (partial)\" f=\"WebFWD.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Web Faction\" f=\"WebFaction.xml\"><rule from=\"^http://((?:blog|docs|help|my|www)\\.)?webfaction\\.com/\" to=\"https://$1webfaction.com/\"/></ruleset>", "<ruleset name=\"WebGo.de\" default_off=\"failed ruleset test\" f=\"WebGo.xml\"><securecookie host=\"^(www\\.|website\\.|www\\.website|login\\.|support\\.)?webgo\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WebGo24.de\" default_off=\"failed ruleset test\" f=\"WebGo24.de.xml\"><securecookie host=\"^(www\\.|support\\.|login\\.|hilfe\\.|partner\\.)?webgo24\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WebHost4Life\" f=\"WebHost4Life.xml\"><securecookie host=\"^\\.webhost4life\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WebHostingStuff.com (partial)\" default_off=\"Needs ruleset tests\" f=\"WebHostingStuff.xml\"><exclusion pattern=\"^http://www\\.webhostingstuff\\.com/(?!images/|socialmedia\\.html|stuffstyle\\.css)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WebINK.com (partial)\" default_off=\"failed ruleset test\" f=\"WebINK.com.xml\"><securecookie host=\"^(?:www\\.)?webink\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WebKite.com (partial)\" f=\"WebKite.com.xml\"><securecookie host=\"^\\.admin\\.webkite\\.com$\" name=\".+\"/><rule from=\"^http://((?:admin|auth|errors|fb|iago|jafar|results|www)\\.)?webkite\\.com/\" to=\"https://$1webkite.com/\"/></ruleset>", "<ruleset name=\"WebMD (partial)\" f=\"WebMD.xml\"><securecookie host=\"^(?:as|doctor|healthmanager|member)\\.webmd\\.com$\" name=\".+\"/><rule from=\"^http://(as|css|doctor|healthmanager|img|member)\\.webmd\\.com/\" to=\"https://$1.webmd.com/\"/><rule from=\"^http://ls\\.turn\\.com/\" to=\"https://oasc18.247realmedia.com/\"/><rule from=\"^http://std\\.o\\.webmd\\.com/\" to=\"https://webmdglobal.122.2o7.net/\"/></ruleset>", "<ruleset name=\"WebMD Health\" f=\"WebMD_Health.xml\"><securecookie host=\"^(?:www)?\\.webmdhealth\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?webmdhealth\\.com/\" to=\"https://www.webmdhealth.com/\"/></ruleset>", "<ruleset name=\"WebMD Health Services\" f=\"WebMD_Health_Services.xml\"><securecookie host=\"^(?:insights|www)\\.webmdhealthservices\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?webmdhealthservices\\.com/\" to=\"https://www.webmdhealthservices.com/\"/><rule from=\"^http://insights\\.webmdhealthservices\\.com/\" to=\"https://insights.webmdhealthservices.com/\"/></ruleset>", "<ruleset name=\"WebM Project.org (partial)\" f=\"WebM_Project.org.xml\"><rule from=\"^http://(www\\.)?webmproject\\.org/\" to=\"https://www.webmproject.org/\"/></ruleset>", "<ruleset name=\"WebMediaBrands (partial)\" default_off=\"broken\" f=\"WebMediaBrands.xml\"><rule from=\"^http://(?:www\\.)?devx\\.com/(assets/|icom_includes/|styles/)\" to=\"https://www.devx.com/\"/><rule from=\"^http://assets\\.devx\\.com/\" to=\"https://assets.devx.com/\"/></ruleset>", "<ruleset name=\"WebMerge.me\" f=\"WebMerge.me.xml\"><securecookie host=\"^(?:www)?\\.webmerge\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WebMoney (partial)\" default_off=\"failed ruleset test\" f=\"WebMoney.xml\"><securecookie host=\".+\\.w(?:ebmoney\\.ru|mtransfer\\.com)$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WebNMS.com\" f=\"WebNMS.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WebPG.org\" f=\"WebPG.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WebPlatform.org\" default_off=\"failed ruleset test\" f=\"WebPlatform.xml\"><rule from=\"^http://webplatform\\.org/\" to=\"https://www.webplatform.org/\"/><rule from=\"^http:\" to=\"https:\"/><securecookie host=\"^\\w\" name=\".\"/></ruleset>", "<ruleset name=\"WebProspector (partial)\" f=\"WebProspector.xml\"><exclusion pattern=\"^http://www\\.webprospector\\.de/(?!app/|(?:preise-)?bestellen|css/|img/|js/|kostenlos-(?:flatrate-)?testen|pixel\\.php)\"/><securecookie host=\"^mein\\.webprospector\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WebRTC-Experiment.com\" default_off=\"failed ruleset test\" f=\"WebRTC-Experiment.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WebSanity.com (partial)\" default_off=\"self-signed\" f=\"WebSanity.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Websense.com (partial)\" f=\"WebSense.xml\"><securecookie host=\"^.*\\.websense\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WebSharks-Inc.com\" f=\"WebSharks-Inc.com.xml\"><securecookie host=\"^affiliates\\.websharks-inc\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WebShop Revolution\" f=\"WebShopRevolution.com.xml\"><rule from=\"^http://webshoprevolution\\.com/\" to=\"https://webshoprevolution.com/\"/><rule from=\"^http://([\\w-]+)\\.webshoprevolution\\.com/\" to=\"https://$1.webshoprevolution.com/\"/></ruleset>", "<ruleset name=\"WebSite.ws\" f=\"WebSite.ws.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://website\\.ws/\" to=\"https://www.website.ws/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WebSocial.ly (partial)\" f=\"WebSocial.ly.xml\"><rule from=\"^http://([\\w-]+\\.)?websocially\\.com/(assets/|sign-up(?:$|\\?|/)|wp-content/)\" to=\"https://$1websocially.com/$2\"/></ruleset>", "<ruleset name=\"WebSocket.org\" f=\"WebSocket.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WebSpectator.com\" f=\"WebSpectator.com.xml\"><securecookie host=\"^\\.webspectator\\.com$\" name=\".+\"/><rule from=\"^http://((?:scripts|services|www)\\.)?webspectator\\.com/\" to=\"https://$1webspectator.com/\"/></ruleset>", "<ruleset name=\"WebStarts\" f=\"WebStarts.xml\"><securecookie host=\"^(?:www\\.)?webstarts\\.com$\" name=\".+\"/><rule from=\"^http://(?:static\\.|(www\\.))?webstarts\\.com/\" to=\"https://$1webstarts.com/\"/></ruleset>", "<ruleset name=\"WebSupport.at (partial)\" f=\"WebSupport.at.xml\"><securecookie host=\".+\\.websupport\\.at$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WebSupport.cz\" f=\"WebSupport.cz.xml\"><securecookie host=\".+\\.websupport\\.cz$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WebTrust.org (partial)\" f=\"WebTrust.xml\"><exclusion pattern=\"^http://(?:cert|entrust)\\.webtrust\\.org/(?:$|\\?)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WebType.com (partial)\" f=\"WebType.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WebUrbanist.com (partial)\" default_off=\"self-signed\" f=\"WebUrbanist.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?weburbanist\\.com/(?!wp-content/)\"/><rule from=\"^http://(?:img\\.|www\\.)?weburbanist\\.com/\" to=\"https://weburbanist.com/\"/></ruleset>", "<ruleset name=\"WebWeWant.org\" f=\"WebWeWant.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WebXakep.Net\" default_off=\"failed ruleset test\" f=\"WebXakep.Net.xml\"><securecookie host=\"^\\.(?:infotech-team\\.com|webxakep\\.net)$\" name=\".+\"/><rule from=\"^http://(www\\.)?(infotech-team\\.com|webxakep\\.net)/\" to=\"https://$1$2/\"/></ruleset>", "<ruleset name=\"WebZilla.com\" f=\"WebZilla.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Web Design Marketing\" f=\"Web_Design_Marketing.xml\"><securecookie host=\"^\\.webdesignmarketing.eu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Web Forest.eu\" f=\"Web_Forest.eu.xml\"><securecookie host=\"^webforest\\.eu$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?webforest\\.eu/\" to=\"https://webforest.eu/\"/></ruleset>", "<ruleset name=\"WebFoundation.org (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Web_Foundation.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Web Hosting Geeks.com\" f=\"Web_Hosting_Geeks.com.xml\"><securecookie host=\"^webhostinggeeks\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?webhostinggeeks\\.com/\" to=\"https://webhostinggeeks.com/\"/><rule from=\"^http://acf\\.webhostinggeeks\\.com/\" to=\"https://d2qa8wpyt2chna.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Web Hosting Pad (partial)\" f=\"Web_Hosting_Pad.xml\"><exclusion pattern=\"^http://(?:www\\.)?webhostingpad\\.com/(?!\\w+\\.css$|images/)\"/><securecookie host=\"^s(?:ecure|upport)\\.webhostingpad\\.com$\" name=\".+\"/><rule from=\"^http://((?:livesupport|secure|support|www)\\.)?webhostingpad\\.com/\" to=\"https://$1webhostingpad.com/\"/></ruleset>", "<ruleset name=\"Web Service Award (partial)\" f=\"Web_Service_Award.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Web Tune Factory\" default_off=\"failed ruleset test\" f=\"Web_Tune_Factory.xml\"><rule from=\"^http://(?:www\\.)?w-tune\\.com/\" to=\"https://www.w-tune.com/\"/></ruleset>", "<ruleset name=\"Web of Knowledge\" f=\"Web_of_Knowledge.xml\"><securecookie host=\"^.*\\.webofknowledge\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?isiknowledge\\.com/\" to=\"https://$1isiknowledge.com/\"/><rule from=\"^http://((?:apps|cm|ets|images|sub3|wcs|www)\\.)?webofknowledge\\.com/\" to=\"https://$1webofknowledge.com/\"/></ruleset>", "<ruleset name=\"Webarch.net\" f=\"Webarch.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Webarchitects.coop\" f=\"Webarchitects.coop.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Webby Awards (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Webby-Awards.xml\"><securecookie host=\"^www\\.webbyawards\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?webbyawards\\.com/\" to=\"https://www.webbyawards.com/\"/></ruleset>", "<ruleset name=\"webcompat.com\" f=\"Webcompat.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"webcontrolcenter.com\" f=\"Webcontrolcenter.com.xml\"><securecookie host=\"^(?:.+\\.)?webcontrolcenter\\.com$\" name=\".+\"/><rule from=\"^http://([\\w-]+\\.)?webcontrolcenter\\.com/\" to=\"https://$1webcontrolcenter.com/\"/></ruleset>", "<ruleset name=\"Webcruiter (partial)\" f=\"Webcruiter.xml\"><securecookie host=\"^(?:www\\.)?webcruiter\\.no$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Webento\" default_off=\"failed ruleset test\" f=\"Webento.xml\"><securecookie host=\"^(?:.*\\.)?webento\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Webfest Global.com\" default_off=\"refused\" f=\"Webfest_Global.xml\"><securecookie host=\"^www\\.webfestglobal\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"webfusion (partial)\" f=\"Webfusion.xml\"><securecookie host=\"^www\\.webfusion\\.co\\.uk$\" name=\".*\"/><rule from=\"^http://(www\\.)?webfusion(-support)?\\.co\\.uk/\" to=\"https://$1webfusion$2.co.uk/\"/><rule from=\"^http://fusion\\.webfusion-secure\\.co\\.uk/\" to=\"https://fusion.webfusion-secure.co.uk/\"/></ruleset>", "<ruleset name=\"Webgility (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Webgility.xml\"><rule from=\"^http://(www\\.)?(portal\\.)?webgility\\.com/\" to=\"https://$2webgility.com/\"/><securecookie host=\"^portal\\.webgility\\.com$\" name=\".*\"/></ruleset>", "<ruleset name=\"Webglobe.sk\" f=\"Webglobe.sk.xml\"><rule from=\"^http://(?:www\\.)?webglobe\\.sk/\" to=\"https://www.webglobe.sk/\"/></ruleset>", "<ruleset name=\"webhost.biz\" f=\"Webhost.biz.xml\"><securecookie host=\"^manage\\.webhost\\.biz$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?webhost\\.biz/+\" to=\"https://www.ixwebhosting.com/\"/><rule from=\"^http://manage\\.webhost\\.biz/.*\" to=\"https://www.ixwebhosting.com/\"/></ruleset>", "<ruleset name=\"WebhostOne\" f=\"WebhostOne.xml\"><securecookie host=\"^(?:www\\.)?(?:kcc\\.)?webhostone\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?webhostone\\.de/\" to=\"https://www.webhostone.de/\"/><rule from=\"^http://(?:www\\.)?kcc\\.webhostone\\.de/\" to=\"https://kcc.webhostone.de/\"/></ruleset>", "<ruleset name=\"webhostlist.de\" f=\"Webhostlist.de.xml\"><securecookie host=\"^(?:www)?\\.webhostlist\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Webhungary.hu\" f=\"Webhungary.hu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Webjet\" f=\"Webjet.xml\"><securecookie host=\"^.*\\.webjet\\.(com\\.au|co\\.nz)$\" name=\".+\"/><rule from=\"^http://webjet\\.(com\\.au|co\\.nz)/\" to=\"https://www.webjet.$1/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Webkit.org\" f=\"Webkit.org.xml\"><securecookie host=\"^(?:bugs|trac|www)?\\.webkit\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Weblog Awards\" f=\"Weblog_Awards.xml\"><securecookie host=\"^\\.weblogawards\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"webmagazin.de (partial)\" f=\"Webmagazin.de.xml\"><rule from=\"^http://(www\\.)?webmagazin\\.de/(?=sites/|(?:cart|jobs|user)(?:$|[?/]))\" to=\"https://$1webmagazin.de/\"/></ruleset>", "<ruleset name=\"Webmail.loxinfo.co.th\" f=\"Webmail-Loxinfo.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Webmasterplan.com\" f=\"Webmasterplan.com.xml\"><securecookie host=\"^\\.\" name=\"^affili_\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Webmate.io\" f=\"Webmate.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"webmetrics.com\" f=\"Webmetrics.com.xml\"><securecookie host=\"^www2\\.webmetrics\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?webmetrics\\.com/[^?]*\" to=\"https://www.neustar.biz/services/web-performance\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Webmon.com\" f=\"Webmon.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Webnium.co.jp\" f=\"Webnium.co.jp.xml\"><securecookie host=\"^\\.webnium\\.co\\.jp$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Webonic.hu\" f=\"Webonic.hu.xml\"><securecookie host=\".\\.webonic\\.hu$\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Weboolu (partial)\" default_off=\"failed ruleset test\" f=\"Weboolu.xml\"><securecookie host=\"^(?:w*\\.)?weboolu(?:inc)?\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Weborama.fr (partial)\" default_off=\"failed ruleset test\" f=\"Weborama.xml\"><securecookie host=\"^\\.\\w+\\.solution\\.weborama\\.fr$\" name=\".*\"/><rule from=\"^http://(?:a|el)static\\.weborama\\.fr/\" to=\"https://gs1.wpc.edgecastcdn.net/001F34/\"/><rule from=\"^http://perf\\.weborama\\.fr/\" to=\"https://webo.solution.weborama.fr/\"/><rule from=\"^http://static\\.weborama\\.fr/\" to=\"https://ssl.weborama.fr/\"/><rule from=\"^http://(cstatic|\\w+\\.solution|ssl)\\.weborama\\.fr/\" to=\"https://$1.weborama.fr/\"/></ruleset>", "<ruleset name=\"Webpay.cl (partial)\" f=\"Webpay.cl.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Webroot.com (partial)\" f=\"Webroot.com.xml\"><exclusion pattern=\"^http://www\\.webroot\\.com/(?!favicon\\.ico|shared/)\"/><securecookie host=\"^community\\.webroot\\.com$\" name=\".+\"/><rule from=\"^http://((?:blog|community|www)\\.)?webroot\\.com/\" to=\"https://$1webroot.com/\"/></ruleset>", "<ruleset name=\"Webropolsurveys.com\" f=\"Webropolsurveys.com.xml\"><rule from=\"^http://(?:www\\.)?webropolsurveys\\.com/\" to=\"https://www.webropolsurveys.com/\"/></ruleset>", "<ruleset name=\"webrtcHacks.com\" default_off=\"failed ruleset test\" f=\"WebrtcHacks.com.xml\"><securecookie host=\"^\\.webrtchacks\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Webs (Mixed Content)\" platform=\"mixedcontent\" f=\"Webs-MixedContent.xml\"><securecookie host=\"^members\\.webs\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Webs (partial)\" default_off=\"failed ruleset test\" f=\"Webs.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Websec Weekly.org\" default_off=\"failed ruleset test\" f=\"Websec_Weekly.org.xml\"><securecookie host=\"^\\.websecweekly\\.org$\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Websecurify.com\" default_off=\"failed ruleset test\" f=\"Websecurify.com.xml\"><securecookie host=\"^(?:suite)?\\.websecurify\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Webshopapp.com\" f=\"Webshopapp.com.xml\"><rule from=\"^http://([\\w-]+\\.)?webshopapp\\.com/\" to=\"https://$1webshopapp.com/\"/></ruleset>", "<ruleset name=\"website-start.de\" f=\"Website-start.de.xml\"><securecookie host=\"^cms01\\.website-start\\.de$\" name=\".+\"/><rule from=\"^http://c(dn|ms01)\\.website-start\\.de/\" to=\"https://c$1.website-start.de/\"/></ruleset>", "<ruleset name=\"WebsiteAlive (partial)\" default_off=\"failed ruleset test\" f=\"WebsiteAlive.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://websitealive(\\d+)\\.com/\" to=\"https://www.websitealive$1.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WebsiteGrowers.com\" f=\"WebsiteGrowers.com.xml\"><securecookie host=\"^(?:www)?\\.websitegrowers\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Website Pipeline (partial)\" default_off=\"failed ruleset test\" f=\"Website_Pipeline.xml\"><securecookie host=\"^extranet\\.websitepipeline\\.com$\" name=\".+\"/><securecookie host=\"^gweb03\\.webstorepackage\\.com$\" name=\".+\"/><rule from=\"^http://extranet\\.websitepipeline\\.com/\" to=\"https://extranet.websitepipeline.com/\"/><rule from=\"^http://gweb03\\.webstorepackage\\.com/\" to=\"https://gweb03.webstorepackage.com/\"/></ruleset>", "<ruleset name=\"websitesettings.com\" f=\"Websitesettings.com.xml\"><securecookie host=\"^www\\.websitesettings\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"websmithing.com\" f=\"Websmithing.com.xml\"><securecookie host=\"^(?:www\\.)?websmithing\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Webspace4All\" f=\"Webspace4All.xml\"><securecookie host=\"^www\\.webspace4all\\.eu$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?webspace4all\\.eu/\" to=\"https://www.webspace4all.eu/\"/></ruleset>", "<ruleset name=\"Webspace4Clans.de (partial)\" f=\"Webspace4Clans.de.xml\"><securecookie host=\"^\\.webspace4clans\\.de$\" name=\"^__utm\\w$\"/><rule from=\"^http://(?:www\\.)?webspace4clans\\.de/(?=components/|favicon\\.ico|images/|index\\.php\\?option=com_aicontactsafe&sTask=captcha&task=captcha&pf=1&r_id=\\d+&lang=\\w\\w&format=raw|index\\.php/(?:domainparking|hosting|only-mail)(?:$|[?/]|\\.html)|modules/|plugins/|templates/|ticketsystem(?:$|[?/]))\" to=\"https://webspace4clans.de/\"/></ruleset>", "<ruleset name=\"webstat.com\" f=\"Webstat.com.xml\"><rule from=\"^http://(?:hv3|secure)\\.webstat\\.com/\" to=\"https://secure.webstat.com/\"/></ruleset>", "<ruleset name=\"The Webstaurant Store (partial)\" f=\"Webstaurant_Store.xml\"><exclusion pattern=\"^http://(?:www\\.)?webstaurantstore\\.com/(?:favicon\\.ico|myaccount\\.html|template/)\"/><rule from=\"^http://(cdn\\.|cdnimg\\.|www\\.)?webstaurantstore\\.com/\" to=\"https://$1webstaurantstore.com/\"/></ruleset>", "<ruleset name=\"websterwood.com\" f=\"Websterwood.com.xml\"><rule from=\"^http://(www\\.)?websterwood\\.com/+\" to=\"https://blog.websterwood.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"webstyle.ch\" default_off=\"failed ruleset test\" f=\"Webstyle.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WebSupport.sk\" f=\"Websupport_sk_cz_at_hu.xml\"><securecookie host=\".\\.websupport\\.sk$\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"webtask.io (partial)\" f=\"Webtask.io.xml\"><securecookie host=\"^\\.webtask\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Webtatic.com\" f=\"Webtatic.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Webthumbnail.org\" default_off=\"missing certificate chain\" f=\"Webthumbnail.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Webtimeclock.com\" f=\"Webtimeclock.com.xml\"><securecookie host=\"^(?:w*\\.)?webtimeclock\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Webtracker.jp\" default_off=\"failed ruleset test\" f=\"Webtracker.jp.xml\"><securecookie host=\"^www\\.webtracker\\.jp$\" name=\".+\"/><rule from=\"^http://i\\.t\\.webtracker\\.jp/\" to=\"https://a.t.webtracker.jp/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WebtraffIQ.com (partial)\" f=\"WebtraffIQ.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?webtraffiq\\.com/(?!images/|styles/)\"/><securecookie host=\"^secure\\.webtraffiq\\.com$\" name=\".+\"/><rule from=\"^http://(?:(?:dev\\.)?secure\\.|www\\.)?webtraffiq\\.com/\" to=\"https://secure.webtraffiq.com/\"/></ruleset>", "<ruleset name=\"Webtraffic.se (partial)\" default_off=\"failed ruleset test\" f=\"Webtraffic.se.xml\"><securecookie host=\"^\\.webtraffic\\.se$\" name=\"(?:CfP|JEB2)$\"/><securecookie host=\"^\\.adsby\\.webtraffic\\.se$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Webtranslateit\" f=\"Webtranslateit.xml\"><rule from=\"^http://(?:www\\.)?webtranslateit\\.com/\" to=\"https://webtranslateit.com/\"/></ruleset>", "<ruleset name=\"Webtraxs.com (partial)\" f=\"Webtraxs.com.xml\"><securecookie host=\"^www\\.webtraxs\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?webtraxs\\.com/\" to=\"https://www.webtraxs.com/\"/></ruleset>", "<ruleset name=\"Webtrekk.net\" f=\"Webtrekk.net.xml\"><securecookie host=\".\\.webtrekk\\.net$\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Webtrends.com (partial)\" default_off=\"failed ruleset test\" f=\"Webtrends.com.xml\"><securecookie host=\"^\\.webtrends\\.com$\" name=\"^(?:incap_ses_\\d+|visid_incap)_\\d+$\"/><securecookie host=\"^(?:blog|cdn|engage|help|itservices|m|portal|producthelp|releasenotes|sharepoint|\\.?www)\\.webtrends\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Webtrendslive.com\" f=\"Webtrendslive.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Webyog.com\" f=\"Webyog.com.xml\"><securecookie host=\"^www\\.webyog\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wed.is\" f=\"Wed.is.xml\"><securecookie host=\"^\\.?wed\\.is$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WeeChat.org\" f=\"WeeChat.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Weebly.com (mixed content)\" platform=\"mixedcontent\" f=\"Weebly-mixed.xml\"><exclusion pattern=\"^http://(?:www\\.)?weebly\\.com/(?:$|\\?)\"/><exclusion pattern=\"^http://(?:www\\.)?weebly\\.com/images/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Weebly.com (partial)\" f=\"Weebly.xml\"><exclusion pattern=\"^http://www\\.weebly\\.com/(?!editor/(?:app|font|image|librarie)s|favicon\\.ico|footer_signup\\.php|images/)\"/><securecookie host=\"^\\.weebly\\.com$\" name=\"^sto-id$\"/><securecookie host=\"^www\\.weebly\\.com$\" name=\"^wt-\\w{6}$\"/><rule from=\"^http://((?:mobileapi|secure|teffect|www)\\.)?weebly\\.com/\" to=\"https://$1weebly.com/\"/></ruleset>", "<ruleset name=\"WeedTraQR.com\" f=\"WeedTraQR.com.xml\"><securecookie host=\"^weedtraqr\\.com$\" name=\".+\"/><rule from=\"^http://www\\.weedtraqr\\.com/\" to=\"https://weedtraqr.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Week Plan\" default_off=\"failed ruleset test\" f=\"Week_Plan.xml\"><securecookie host=\"^\\.weekplan\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Weekend Edition.com.au (partial)\" f=\"Weekend_Edition.xml\"><exclusion pattern=\"^http://theweekendedition\\.com\\.au/+(?!favicon\\.ico|subscribe(?:$|[?/])|wp-content/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WeeklyPlus.com (partial)\" default_off=\"refused\" f=\"WeeklyPlus.xml\"><rule from=\"^http://(www\\.)?weeklyplus\\.com/(\\w+/membership|members)(?=$|\\?)\" to=\"https://$1weeklyplus.com/$2/\"/><rule from=\"^http://(www\\.)?weeklyplus\\.com/(?=\\w+/membership/|cdn-cgi/|members/|themes/)\" to=\"https://$1weeklyplus.com/\"/></ruleset>", "<ruleset name=\"Wego Health.com (mismatched)\" default_off=\"mismatched\" f=\"Wego_Health.com-problematic.xml\"><rule from=\"^http://blog\\.wegohealth\\.com/\" to=\"https://blog.wegohealth.com/\"/></ruleset>", "<ruleset name=\"Wego Health.com (partial)\" default_off=\"failed ruleset test\" f=\"Wego_Health.com.xml\"><exclusion pattern=\"^http://awards\\.wegohealth\\.com/+(?!nominees(?:$|\\?))\"/><securecookie host=\"^\\.wegohealth\\.com$\" name=\".+\"/><rule from=\"^http://((?:awards|tv|www)\\.)?wegohealth\\.com/\" to=\"https://$1wegohealth.com/\"/></ruleset>", "<ruleset name=\"Weibo.cn\" f=\"Weibo.cn.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Weibo.com (mixed content)\" platform=\"mixedcontent\" f=\"Weibo.com-mixedcontent.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Weibo.com\" f=\"Weibo.com.xml\"><exclusion pattern=\"http://api\\.weibo\\.com/chat/\"/><securecookie host=\"^(upload\\.api|yahoo\\.tw)\\.weibo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WeiboPay.com\" f=\"WeiboPay.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Weiss Research\" f=\"Weiss-Research.xml\"><securecookie host=\"^.*\\.moneyandmarkets\\.com$\" name=\".*\"/><rule from=\"^http://(www\\.)?moneyandmarkets\\.com/\" to=\"https://$1moneyandmarkets.com/\"/><rule from=\"^http://((?:cdn|images|www)\\.)?weissinc\\.com/\" to=\"https://$1weissinc.com/\"/></ruleset>", "<ruleset name=\"Weizmann Institute of Science (partial)\" f=\"Weizmann-Institute-of-Science.xml\"><rule from=\"^http://www\\.weizmann\\.ac\\.il/pages/\" to=\"https://www.weizmann.ac.il/pages/\"/></ruleset>", "<ruleset name=\"Welcome to MetLife.com\" f=\"Welcome_to_MetLife.com.xml\"><rule from=\"^http://(?:www\\.)?welcometometlife\\.com/\" to=\"https://welcometometlife.com/\"/></ruleset>", "<ruleset name=\"Walk.sc\" default_off=\"mismatched\" f=\"Welk.sc.xml\"><rule from=\"^http://pp(2|3)?\\.walk\\.sc/\" to=\"https://pp$1.walk.sc/\"/></ruleset>", "<ruleset name=\"wellbid.com\" f=\"Wellbid.com.xml\"><securecookie host=\"^(?:w*\\.)?wellbid\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wellcome Trust Sanger Institute (partial)\" default_off=\"redirects to http\" f=\"Wellcome-Trust-Sanger-Institute.xml\"><securecookie host=\"^www\\.sanger\\.ac\\.uk$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?sanger\\.ac\\.uk/\" to=\"https://www.sanger.ac.uk/\"/></ruleset>", "<ruleset name=\"Wellingborough.gov.uk (partial)\" f=\"Wellingborough.gov.uk.xml\"><securecookie host=\"^(?!\\.wellingborough\\.gov\\.uk$)\\.\" name=\"\\.\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wello.com\" default_off=\"failed ruleset test\" f=\"Wello.com.xml\"><securecookie host=\"^(?:www)?\\.wello\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wells Fargo.com\" default_off=\"failed ruleset test\" f=\"WellsFargo.xml\"><securecookie host=\".*\\.wellsfargo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Welt.de\" default_off=\"failed ruleset test\" f=\"Welt.de.xml\"><exclusion pattern=\"^http://www\\.welt\\.de/((article)?\\d{9}|icon|lesestueck|storytorial)/\"/><exclusion pattern=\"^http://static\\.apps\\.welt\\.de/lesestueck/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Weltbild.ch\" f=\"Weltbild.ch.xml\"><securecookie host=\"^(?:.*\\.)?weltbild\\.ch$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?weltbild\\.ch/\" to=\"https://www.weltbild.ch/\"/></ruleset>", "<ruleset name=\"wemakeprice.com (partial)\" f=\"Wemakeprice.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"wemfbox.ch (partial)\" f=\"Wemfbox.ch.xml\"><securecookie host=\"^\\.wemfbox\\.ch$\" name=\"^i00$\"/><securecookie host=\"^\\w+-ssl\\.wemfbox\\.ch$\" name=\".+\"/><rule from=\"^http://(\\w+)-ssl\\.wemfbox\\.ch/\" to=\"https://$1-ssl.wemfbox.ch/\"/></ruleset>", "<ruleset name=\"Wennect.info\" f=\"Wennect.info.xml\"><rule from=\"^http://(?:(admin\\.)|www\\.)?wennect\\.info/\" to=\"https://$1wennect.info/\"/></ruleset>", "<ruleset name=\"weoInvoice\" platform=\"mixedcontent\" f=\"Weoinvoice.xml\"><rule from=\"^http://(?:www\\.)?weoinvoice\\.com/\" to=\"https://www.weoinvoice.com/\"/></ruleset>", "<ruleset name=\"Werstreamt.es\" f=\"Werstreamt.es.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wes Bos\" f=\"Wes_Bos.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Battle for Wesnoth (partial)\" default_off=\"failed ruleset test\" f=\"Wesnoth.xml\"><exclusion pattern=\"^http://(?:changelog|manual)\\.wesnoth\\.org/(?!/*(?:$|\\?))\"/><securecookie host=\"^\\.\" name=\"^phpbb\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://1\\.12-changelog\\.wesnoth\\.org/[^?]*\" to=\"https://wiki.wesnoth.org/WesnothManual\"/><rule from=\"^http://(?:add-on|campaign)s\\.wesnoth\\.org/\" to=\"https://addons.wesnoth.org/\"/><rule from=\"^http://addonlist\\.wesnoth\\.org/+\" to=\"https://addons.wesnoth.org/\"/><rule from=\"^http://dev-addons\\.wesnoth\\.org/+\" to=\"https://addons.wesnoth.org/1.13/\"/><rule from=\"^http://changelog\\.wesnoth\\.org/+\" to=\"https://raw.github.com/wesnoth/wesnoth/master/changelog\"/><rule from=\"^http://forum\\.wesnoth\\.org/\" to=\"https://forums.wesnoth.org/\"/><rule from=\"^http://(gettext|irclogs)\\.wesnoth\\.org/+\" to=\"https://www.wesnoth.org/$1/\"/><rule from=\"^http://manual\\.wesnoth\\.org/+\" to=\"https://wiki.wesnoth.org/WesnothManual\"/><rule from=\"^http://stable-addons\\.wesnoth\\.org/+\" to=\"https://addons.wesnoth.org/1.12/\"/><rule from=\"^http://(?:stable-changelog|wesnoth)\\.wesnoth\\.org/\" to=\"https://wesnoth.org/\"/><rule from=\"^http://wesnothd\\.wesnoth\\.org/.*\" to=\"https://guest@www.wesnoth.org/cgi-bin/drraw/drraw.cgi?Mode=view;Dashboard=1381050100.25669\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"West-Lindsey.gov.uk (partial)\" f=\"West-Lindsey.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"West Jet\" f=\"WestJet.xml\"><rule from=\"^http://westjet\\.com/\" to=\"https://www.westjet.com/\"/><rule from=\"^http://(hg|www)\\.westjet\\.com/\" to=\"https://$1.westjet.com/\"/></ruleset>", "<ruleset name=\"West Mercia Police\" f=\"WestMerciaPolice.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"West Midlands Police\" f=\"WestMidlandsPolice.xml\"><rule from=\"^http://(www\\.)?west-midlands\\.police\\.uk/\" to=\"https://www.west-midlands.police.uk/\"/></ruleset>", "<ruleset name=\"West Devon.gov.uk (partial)\" default_off=\"missing certificate chain\" f=\"West_Devon.gov.uk.xml\"><exclusion pattern=\"^http://(?:www\\.)?westdevon\\.gov\\.uk/+(?!\\w+/(?:images/|scripts/.+\\.css|template/)|civica/Bundles/|media/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"West Orange History\" default_off=\"mismatched\" f=\"West_Orange_History.xml\"><securecookie host=\"^westorangehistory\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?westorangehistory\\.com/\" to=\"https://westorangehistory.com/\"/></ruleset>", "<ruleset name=\"West Sussex.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"West_Sussex.gov.uk.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"West Virginia University (problematic)\" default_off=\"mismatched\" f=\"West_Virginia_University-problematic.xml\"><exclusion pattern=\"^http://(?:www\\.)?assets\\.slate\\.wvu\\.edu/resources/\"/><securecookie host=\"^(?:beta\\.campusmap|(?:benefits(?:admin)?|classcomp|employee(?:relation|wellnes)s|employmentservices|medicalmanagement|mountaineertemps|studentemployment|tnd)\\.hr|(?:oric|osp)\\.research|simpleforms\\.scripts|assets\\.slate|web\\.ur)\\.wvu\\.edu$\" name=\".+\"/><rule from=\"^http://(beta\\.campusmap|employmentservices\\.hr|simpleforms\\.scripts)\\.wvu\\.edu/\" to=\"https://$1.wvu.edu/\"/><rule from=\"^http://(?:www\\.)?((?:benefits(?:admin)?|classcomp|employee(?:relation|wellnes)s|employment|medicalmanagement|mountaineertemps|studentemployment|tnd)\\.hr|(?:oric|osp)\\.research|assets\\.slate|web\\.ur)\\.wvu\\.edu/\" to=\"https://$1.wvu.edu/\"/></ruleset>", "<ruleset name=\"West Virginia University (partial)\" default_off=\"failed ruleset test\" f=\"West_Virginia_University.xml\"><securecookie host=\"^\\.wvu\\.edu$\" name=\"^(?:fos\\.secure\\.web\\.server|slate_\\w{32}|_wvutodaystaging_1\\.0\\.0)$\"/><securecookie host=\"^(?:about|admissions|apply|brand|cal|calendar|careerservices|cas|connect|eberly|emergency|facebook|ferpa|finaid|financialaid|grad|hr|(?:exweb|www)\\.hsc|itunes|kc|law|(?:enginecms|mediasite(?:hscmed)?|reserves|systems)\\.lib|www\\.libraries|map|mix|mixinfo|myapps|myid|nanosafe|research(?:office)?|sharedresearchfacilities|slate|slatecms|studentaccounts|tour|twitter|webservices|wvudownloads|wvugw|wvutoday|www)\\.wvu\\.edu$\" name=\".+\"/><rule from=\"^http://((?:about|apply|brand|cal|calendar|careerservices|cas|connect|facebook|ferpa|financialaid|grad|(?:autodiscover|exweb|sole|www)\\.hsc|kc|(?:enginecms|mediasite(?:hscmed)?|reserves|systems)\\.lib|map|mixinfo|myaccess|myapps|myid|nanosafe|researchoffice|sharedresearchfacilities|tour|twitter|webservices|wvudownloads|wvugw|www)\\.)?wvu\\.edu/\" to=\"https://$1wvu.edu/\"/><rule from=\"^http://(?:www\\.)?(admissions|eberly|emergency|finaid|hr|itunes|law|mix|oit|protected|research|slate|slatecms|studentaccounts|wvutoday)\\.wvu\\.edu/\" to=\"https://$1.wvu.edu/\"/><rule from=\"^http://libguides\\.wvu\\.edu/(css\\d*/|data/|favicon\\.ico|images/|include/|js\\d*/)\" to=\"https://libguides.com/$1\"/><rule from=\"^http://(?:www\\.)?libraries\\.wvu\\.edu/\" to=\"https://www.libraries.wvu.edu/\"/><rule from=\"^http://medicine\\.hsc\\.wvu\\.edu/(?:\\?.*)$\" to=\"https://www.hsc.wvu.edu/som\"/><rule from=\"^http://www\\.simpleforms\\.scripts\\.wvu\\.edu/(?!\\?).+\" to=\"https://www.wvu.edu/error/404.html\"/><rule from=\"^http://(?:www\\.)?assets\\.slate\\.wvu\\.edu/resources/\" to=\"https://slate.wvu.edu/resources/\"/><rule from=\"^http://www\\.slate\\.wvu\\.edu/[^?]*(\\?.*)?\" to=\"https://slate.wvu.edu/$1\"/></ruleset>", "<ruleset name=\"West Yorkshire Observatory.org\" default_off=\"failed ruleset test\" f=\"West_Yorkshire_Observatory.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.westyorkshireobservatory\\.org/\" to=\"https://westyorkshireobservatory.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Westconsin Credit Union\" f=\"Westconsin_Credit_Union.xml\"><securecookie host=\"^\\.westconsincu\\.org$\" name=\".+\"/><securecookie host=\"^www\\.westconsincuhb\\.org$\" name=\".+\"/><rule from=\"^http://(www\\.)?westconsincu\\.org/\" to=\"https://$1westconsincu.org/\"/><rule from=\"^http://(?:www\\.)?westconsincuhb\\.org/\" to=\"https://www.westconsincuhb.org/\"/></ruleset>", "<ruleset name=\"Western Union.com (partial)\" default_off=\"failed ruleset test\" f=\"Western_Union.xml\"><securecookie host=\"^\\.westernunion\\.com$\" name=\"^s_\\w+$\"/><securecookie host=\"^(?:agentportal|(?:demo\\.)?globalpay|marketing|online|secure|wumt)\\.westernunion\\.com$\" name=\".+\"/><rule from=\"^http://metrics\\.westernunion\\.com/\" to=\"https://westernunion-com.d1.sc.omtrdc.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WestlandUtrecht Bank\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"WestlandUtrecht.xml\"><rule from=\"^http://(?:www\\.)?westlandutrecht(?:bank)?\\.nl/\" to=\"https://www.westlandutrechtbank.nl/\"/><rule from=\"^http://(?:www\\.)?mijnwestlandutrecht\\.nl/\" to=\"https://mijnwestlandutrecht.nl/\"/></ruleset>", "<ruleset name=\"Westlaw.com (partial)\" f=\"Westlaw.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://westlaw\\.com/\" to=\"https://www.westlaw.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Westlotto.com\" f=\"Westlotto.xml\"><rule from=\"^http://wlresults\\.westlotto\\.com/\" to=\"https://wlresults.westlotto.com/\"/></ruleset>", "<ruleset name=\"Westminster Savings Credit Union\" f=\"Westminster-Savings-Credit-Union.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Westminster.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"Westminster.gov.uk.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://westminster\\.gov\\.uk/\" to=\"https://www.westminster.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Westoxon.gov.uk\" f=\"Westoxon.gov.uk.xml\"><exclusion pattern=\"^http://forms\\.westoxon\\.gov\\.uk/$\"/><securecookie host=\"^\\.www\\.\" name=\".\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Westpac\" f=\"Westpac.xml\"><rule from=\"^http://westpac\\.com\\.au/\" to=\"https://www.westpac.com.au/\"/><rule from=\"^http://(businessonline|info|introducers|m\\.onlineinvesting|onlineinvesting|services|www)\\.westpac\\.com\\.au/\" to=\"https://$1.westpac.com.au/\"/></ruleset>", "<ruleset name=\"WetStone Technologies\" f=\"WetStone-Technologies.xml\"><securecookie host=\"^www\\.wetstonetech\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Weta Workshop\" f=\"Weta-Workshop.xml\"><securecookie host=\"^www\\.wetanz\\.com$\" name=\".+\"/><rule from=\"^http://wetanz\\.com/\" to=\"https://www.wetanz.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wetter.de\" f=\"Wetter.de.xml\"><rule from=\"^http://wetter\\.de/\" to=\"https://www.wetter.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wg cdn.net\" f=\"Wg_cdn.net.xml\"><rule from=\"^http://(?:www\\d|secure)\\.wgcdn\\.net/\" to=\"https://secure.wgcdn.net/\"/></ruleset>", "<ruleset name=\"whamcat\" default_off=\"self-signed\" f=\"Whamcat.xml\"><rule from=\"^http://(?:www\\.)?whamcat\\.com/\" to=\"https://whamcat.com/\"/></ruleset>", "<ruleset name=\"Whappodo.COM! GmbH\" f=\"Whappodo.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WhatBrowser.org\" f=\"WhatBrowser.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WhatDoTheyKnow.com\" f=\"WhatDoTheyKnow.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WhatIsMyIP\" platform=\"mixedcontent\" f=\"WhatIsMyIP.xml\"><securecookie host=\"^(?:.*\\.)?whatismyip\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WhatPulse.org\" default_off=\"failed ruleset test\" f=\"WhatPulse.org.xml\"><securecookie host=\"^\\.?whatpulse\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Whatbox.ca\" f=\"Whatbox.ca.xml\"><rule from=\"^http://((?:m|ssl|www)\\.)?whatbox\\.ca/\" to=\"https://$1whatbox.ca/\"/></ruleset>", "<ruleset name=\"WhatsApp.com\" f=\"WhatsApp.com.xml\"><exclusion pattern=\"^http://(?:[^./]+\\.){2,}whatsapp\\.com/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Whats My Chain Cert.com\" f=\"Whats_My_Chain_Cert.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Whats My DNS.net\" f=\"Whats_My_DNS.net.xml\"><securecookie host=\"^www\\.whatsmydns\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Whatsbroadcast\" default_off=\"failed ruleset test\" f=\"Whatsbroadcast.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wheel.sk\" f=\"Wheel.sk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Where.com\" default_off=\"failed ruleset test\" f=\"Where.com.xml\"><securecookie host=\"^\\.where\\.com$\" name=\"^m_p_tc$\"/><securecookie host=\"^ad\\.where\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Where 2 Get It (partial)\" f=\"Where_2_Get_It.xml\"><securecookie host=\"^\\.(?:hosted|ignite)\\.where2getit\\.com$\" name=\".+\"/><rule from=\"^http://(direct|hosted|ignite)\\.where2getit\\.com/\" to=\"https://$1.where2getit.com/\"/><rule from=\"^http://mobile\\.where2getit\\.com/([\\w-]+)/(images|javascript)/\" to=\"https://hosted.where2getit.com/$1/$2/\"/><rule from=\"^http://static\\.where2getit\\.com/w2gi/\" to=\"https://hosted.where2getit.com/w2gi/\"/></ruleset>", "<ruleset name=\"Which? (partial)\" f=\"Which.xml\"><exclusion pattern=\"^http://staticwhich\\.co\\.uk/+(?:$|\\?)\"/><exclusion pattern=\"^http://blogs\\.which\\.co\\.uk/+(?!\\w+/(?:(?:login|register)(?:$|[?/])|wp-(?:content|includes)/)|favicon\\.ico)\"/><exclusion pattern=\"^http://www\\.which\\.co\\.uk/+(?!assets/|components/eprivacy\\.html|favicon\\.ico|(?:login|signup)(?:$|[?/])|media/)\"/><securecookie host=\"^which\\.net$\" name=\"^SQMSESSID$\"/><securecookie host=\"^(?:www\\.)?staticwhich\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(www\\.)?staticwhich\\.co\\.uk/\" to=\"https://$1staticwhich.co.uk/\"/><rule from=\"^http://((?:blogs|info|www)\\.)?which\\.co\\.uk/\" to=\"https://$1which.co.uk/\"/><rule from=\"^http://search\\.which\\.co\\.uk/(?=favicon\\.ico|sli_styles\\.css)\" to=\"https://which.resultspage.com/\"/><rule from=\"^http://(www\\.)?which\\.net/(?=(?:about|services|support)(?:$|[?/])|assets/|favicon\\.ico|images/|styles/)\" to=\"https://$1which.net/\"/><rule from=\"^http://(?:www\\.)?which\\.net/(?=(?:account|webmail)(?:$|[?/]))\" to=\"https://www.which.net/\"/><rule from=\"^http://static\\.which\\.net/\" to=\"https://www.staticwhich.co.uk/\"/><rule from=\"^http://subscribe\\.which\\.net/+[^?]*\" to=\"https://www.which.net/account\"/></ruleset>", "<ruleset name=\"Which MBA.com (partial)\" f=\"Which_MBA.com.xml\"><exclusion pattern=\"^http://whichmba\\.com/+(?!$|\\?)\"/><securecookie host=\"^\\.whichmba\\.com$\" name=\".+\"/><rule from=\"^http://whichmba\\.com/+\" to=\"https://www.economist.com/whichmba\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WilliamHill (partial)\" f=\"WhippleHill.xml\"><exclusion pattern=\"^http://www2\\.whipplehill\\.com/(?:\\?.*)?$\"/><rule from=\"^http://www2\\.whipplehill\\.com/\" to=\"https://go.pardot.com/\"/><rule from=\"^http://schoolpress\\.cdn\\.whipplehill\\.net/\" to=\"https://s3.amazonaws.com/schoolpress.cdn.whipplehill.net/\"/></ruleset>", "<ruleset name=\"Whirlpool\" f=\"Whirlpool.xml\"><securecookie host=\"^\\.whirlpool\\.net\\.au$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Whiskey Media (partial)\" default_off=\"failed ruleset test\" f=\"Whiskey-Media.xml\"><rule from=\"^http://auth\\.(comicvine|whiskeymedia)\\.com/\" to=\"https://auth.$1.com/\"/><rule from=\"^http://media\\.(comicvine|screened|corp\\.whiskeymedia)\\.com/\" to=\"https://s3.amazonaws.com/media.$1.com/\"/><rule from=\"^http://files\\.tested\\.com/\" to=\"https://ddjhyz888xk1m.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Whisper Gifts (partial)\" f=\"Whisper-Gifts.xml\"><rule from=\"^http://whispergifts\\.com/\" to=\"https://whispergifts.com/\"/><rule from=\"^http://www\\.whispergifts/(media/|whisper/(?:login|manage|signup))\" to=\"https://www.whispergifts/$1\"/></ruleset>", "<ruleset name=\"Whisper.sh (partial)\" default_off=\"failed ruleset test\" f=\"Whisper.sh.xml\"><securecookie host=\"^whisper\\.sh$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WhisperSystems (partial)\" f=\"WhisperSystems.xml\"><rule from=\"^http://(www\\.)?whispersystems\\.org/\" to=\"https://$1whispersystems.org/\"/><rule from=\"^http://support\\.whispersystems\\.org/(?=favicon\\.ico|images/)\" to=\"https://openwhispersystems.desk.com/\"/></ruleset>", "<ruleset name=\"WhistleOut (partial)\" f=\"WhistleOut.xml\"><rule from=\"^http://(www\\.)?whistleout\\.co(m|m\\.au|\\.uk)/(blog/wp-content/|css/|ImageLibrary/)\" to=\"https://$1whistleout.co$2/$3\"/><rule from=\"^http://resources([123])\\.whistleout\\.com/\" to=\"https://resources$1.whistleout.com/\"/></ruleset>", "<ruleset name=\"WhiteFence.com (partial)\" f=\"WhiteFence.com.xml\"><securecookie host=\"^ox-d\\.whitefence\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?whitefence\\.com/\" to=\"https://www.whitefence.com/\"/><rule from=\"^http://ox-d\\.whitefence\\.com/\" to=\"https://ox-d.whitefence.com/\"/></ruleset>", "<ruleset name=\"WhiteHat Security\" f=\"WhiteHat_Security.xml\"><securecookie host=\"^(?:blog|info)\\.whitehatsec\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"White Hot Hair.co.uk (partial)\" f=\"White_Hot_Hair.co.uk.xml\"><rule from=\"^http://(?:www\\.)?whitehothair\\.co\\.uk/(?=$|\\?|address-details\\.aspx|App_Portals/|[aA]pp_[tT]hemes/|login\\.aspx|WebResource\\.axd)\" to=\"https://www.whitehothair.co.uk/\"/></ruleset>", "<ruleset name=\"White Lisbon.com\" default_off=\"failed ruleset test\" f=\"White_Lisbon.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"whitehathouston.com\" platform=\"cacert\" default_off=\"failed ruleset test\" f=\"Whitehathouston.com.xml\"><rule from=\"^http://whitehathouston\\.com/\" to=\"https://www.whitehathouston.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Whitelabel.net\" f=\"Whitelabel.net.xml\"><securecookie host=\"^\\.?whitelabel\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Whiteout.io\" f=\"Whiteout.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Whitepages.com (partial)\" f=\"Whitepages.com.xml\"><exclusion pattern=\"^http://pro\\.whitepages\\.com/+(?!wp-content/)\"/><securecookie host=\"^(?:apiportal|secure)\\.whitepages\\.com$\" name=\".+\"/><rule from=\"^http://whitepages\\.com/\" to=\"https://www.whitepages.com/\"/><rule from=\"^http://www\\.pro\\.whitepages\\.com/+\" to=\"https://pro.whitepages.com/\"/><rule from=\"^http://www\\.support\\.whitepages\\.com/\" to=\"https://support.whitepages.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Who.is\" f=\"Who.is.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WhoSampled.com (partial)\" default_off=\"failed ruleset test\" f=\"WhoSampled.com.xml\"><rule from=\"^http://(www\\.)?whosampled\\.com/(?=accounts/(?:login|registration)(?:$|[?/])|static/)\" to=\"https://$1whosampled.com/\"/></ruleset>", "<ruleset name=\"WhoTargets.me\" f=\"WhoTargets.me.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"who do you.trust\" f=\"Who_do_you.trust.xml\"><securecookie host=\"^(?:www\\.)?whodoyou\\.trust$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Whoisology\" f=\"Whoisology.xml\"><securecookie host=\"^whoisology\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Whole Earth Catalog\" default_off=\"mismatched\" f=\"Whole-Earth-Catalog.xml\"><securecookie host=\"^wholeearth\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?wholeearth\\.com/\" to=\"https://wholeearth.com/\"/></ruleset>", "<ruleset name=\"Whole Earth 'Lectronic Link (partial)\" f=\"Whole_Earth_Lectronic_Link.xml\"><securecookie host=\"^(?:iris|user)\\.well\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?well\\.com/(images/|(?:cgi-bin/)?newpass/|well\\.css)\" to=\"https://www.well.com/$1\"/><rule from=\"^http://(iris|user)\\.well\\.com/\" to=\"https://$1.well.com/\"/></ruleset>", "<ruleset name=\"Whole Foods Market.com\" f=\"Whole_Foods_Market.com.xml\"><securecookie host=\"^users\\.wholefoodsmarket\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wholesale Labels.com (partial)\" f=\"Wholesale_Labels.com.xml\"><rule from=\"^http://(www\\.)?wholesalelabels\\.com/(?=favicon\\.ico|images/|include/)\" to=\"https://$1wholesalelabels.com/\"/></ruleset>", "<ruleset name=\"Whonix.org\" f=\"Whonix.org.xml\"><securecookie host=\"^(?:www\\.)?whonix\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"whos.amung.us (partial)\" f=\"Whos.amung.us.xml\"><exclusion pattern=\"^http://whos\\.amung\\.us/(?!colorgen/|favicon\\.ico|flash/|pro/login/|show/|swidget/)\"/><rule from=\"^http://feeds\\.amung\\.us/\" to=\"https://feeds.feedburner.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WhosOn.com (partial)\" f=\"WhosOn.com.xml\"><rule from=\"^http://(chat|gateway[3-9]?|gateway1[01])\\.whoson\\.com/\" to=\"https://$1.whoson.com/\"/></ruleset>", "<ruleset name=\"Whosgamingnow.net\" f=\"Whosgamingnow.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wi-Fi Alliance\" f=\"Wi-Fi-Alliance.xml\"><securecookie host=\"^(?:certifications|www)\\.wi-fi\\.org$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?wi-fi\\.org/\" to=\"https://www.wi-fi.org/\"/><rule from=\"^http://certifications\\.wi-fi\\.org/\" to=\"https://certifications.wi-fi.org/\"/></ruleset>", "<ruleset name=\"WiFiDB.net\" f=\"WiFiDB.net.xml\"><rule from=\"^http://wifidb\\.net/.*\" to=\"https://github.com/pferland/WiFiDB/\"/><rule from=\"^http://www\\.wifidb\\.net/+\" to=\"https://github.com/pferland/WiFiDB/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WiMP.no (partial)\" f=\"WiMP.no.xml\"><securecookie host=\"^(?:www\\.)?wimp\\.no$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WiMP Music.com (partial)\" f=\"WiMP_Music.com.xml\"><securecookie host=\"^(?:www\\.)?wimpmusic\\.com$\" name=\".+\"/><rule from=\"^http://((?:images|play|www)\\.)?wimpmusic\\.com/\" to=\"https://$1wimpmusic.com/\"/></ruleset>", "<ruleset name=\"WiMo.com\" f=\"WiMo.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WiTopia.net\" f=\"WiTopia.net.xml\"><securecookie host=\"^my\\.witopia\\.net$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?witopia\\.net/\" to=\"https://www.witopia.net/\"/><rule from=\"^http://my\\.witopia\\.net/\" to=\"https://my.witopia.net/\"/></ruleset>", "<ruleset name=\"Wicked Lasers\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Wicked-Lasers.xml\"><securecookie host=\"^\\.?www\\.wickedlasers\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wicked Fiber\" default_off=\"failed ruleset test\" f=\"Wicked_Fiber.xml\"><securecookie host=\"^(?:www\\.)?wickedfiber\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wickr.com\" f=\"Wickr.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WiebeTech.com\" default_off=\"failed ruleset test\" f=\"WiebeTech.com.xml\"><rule from=\"^http://(?:www\\.)?wiebetech\\.com/+\" to=\"https://www.cru-inc.com/\"/></ruleset>", "<ruleset name=\"WienIT EDV Dienstleistungsgesellschaft mbH\" default_off=\"failed ruleset test\" f=\"Wien-IT.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WifiLib\" f=\"WifiLib.xml\"><rule from=\"^http://(www\\.)?wifilib\\.(com|fr)/\" to=\"https://$1wifilib.com/\"/></ruleset>", "<ruleset name=\"WifiWX.com (partial)\" f=\"WifiWX.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wigan.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"Wigan.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://wigan\\.gov\\.uk/\" to=\"https://www.wigan.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wiggle (partial)\" f=\"Wiggle.xml\"><securecookie host=\"^ajax\\.wiggle\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?wiggle\\.co\\.uk/(favicon\\.ico|h/|secure/)\" to=\"https://www.wiggle.co.uk/$1\"/><rule from=\"^http://(ajax|s|s-dyni)\\.wiggle\\.co\\.uk/\" to=\"https://$1.wiggle.co.uk/\"/><rule from=\"^http://www\\.wigglestatic\\.com/\" to=\"https://www.wigglestatic.com/\"/></ruleset>", "<ruleset name=\"Wiiings.com\" default_off=\"failed ruleset test\" f=\"Wiiings.com.xml\"><securecookie host=\"^(?:dms|dms-[dq]|int-mas|mas|stage-mas|www)\\.wiiings\\.com$\" name=\".+\"/><rule from=\"^http://wiiings\\.com/\" to=\"https://www.wiiings.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WikiFur\" f=\"WikiFur.xml\"><securecookie host=\"^(?:[a-z][a-z]\\.)?wikifur\\.com$\" name=\".+\"/><rule from=\"^http://([a-z][a-z]\\.)?wikifur\\.com/\" to=\"https://$1wikifur.com/\"/></ruleset>", "<ruleset name=\"wikiHow.com (partial)\" default_off=\"mismatched\" f=\"WikiHow.com.xml\"><rule from=\"^http://(?:pad\\d\\.|www\\.)?w(?:hstatic|ikihow)\\.com/(?=extensions/|favicon\\.ico|images/|skins/)\" to=\"https://www.wikihow.com/\"/></ruleset>", "<ruleset name=\"WikiLeaks Party.org.au\" f=\"WikiLeaksParty.org.au.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wikia (broken)\" default_off=\"no longer supports SSL\" f=\"Wikia.xml\"><exclusion pattern=\"^http://images\\.wikia\\.com/(?:favicon\\.ico|\\w+/\\w\\w/images/)\"/><securecookie host=\"^.*\\.wikia\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?wikia\\.com/\" to=\"https://www.wikia.com/\"/><rule from=\"^http://([\\w-]+)\\.wikia\\.com/\" to=\"https://$1.wikia.com/\"/></ruleset>", "<ruleset name=\"wikidevi.com\" default_off=\"needs clearnet testing\" f=\"Wikidevi.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wikidot (partial)\" platform=\"mixedcontent\" f=\"Wikidot.xml\"><exclusion pattern=\"^http://blog\\.wikidot\\.com/(?:$|blog:.+[^/].*)\"/><exclusion pattern=\"^http://snippets\\.wikidot\\.com/(?:$|.+[^:].*)\"/><rule from=\"^http://([\\w\\-_]+\\.)?wdfiles\\.com/\" to=\"https://$1wdfiles.com/\"/><rule from=\"^http://(?:\\d)\\.([\\w\\-_]+)\\.wdfiles\\.com/\" to=\"https://$1.wdfiles.com/\"/><rule from=\"^http://wikidot\\.com/\" to=\"https://www.wikidot.com/\"/><rule from=\"^http://([\\w\\-_]+)\\.wikidot\\.com/local-\" to=\"https://$1.wikidot.com/local-\"/><rule from=\"^http://(blog|snippets|static(-\\d)?|www)\\.wikidot\\.com/\" to=\"https://$1.wikidot.com/\"/><securecookie host=\".*\\.wdfiles\\.com$\" name=\".*\"/></ruleset>", "<ruleset name=\"Wikimedia\" default_off=\"failed ruleset test\" f=\"Wikimedia.xml\"><exclusion pattern=\"^http://blog\\.wikimedia\\.de/\"/><exclusion pattern=\"^http://tools\\.wikimedia\\.de/\"/><securecookie host=\"^(?:www\\.)?mediawiki\\.org$\" name=\".+\"/><securecookie host=\"^\\.wik(?:ibooks|idata|imedia|imediafoundation|inews|ipedia|iquote|isource|iversity|ivoyage|tionary)\\.org$\" name=\"^GeoIP$\"/><securecookie host=\"^(?:[^@:/]+\\.)?wik(?:ibooks|idata|inews|ipedia|iquote|isource|iversity|ivoyage|tionary)\\.org$\" name=\".+\"/><securecookie host=\"^(?:species|commons|meta|incubator|wikitech)\\.wikimedia\\.org$\" name=\".+\"/><securecookie host=\"^wikimediafoundation\\.org$\" name=\".+\"/><rule from=\"^http://(en|fr)wp\\.org/\" to=\"https://$1.wikipedia.org/wiki/\"/><rule from=\"^http://wikimedia\\.cz/\" to=\"https://www.wikimedia.cz/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wikinvest\" f=\"Wikinvest.xml\"><securecookie host=\"^\\.www\\.wikinvest\\.com$\" name=\".+\"/><rule from=\"^http://(?:ad\\.|cdn\\.|www\\.)?wikinvest\\.com/\" to=\"https://www.wikinvest.com/\"/></ruleset>", "<ruleset name=\"WikiSpooks.com\" f=\"Wikispooks.xml\"><securecookie host=\"^(?:.*\\.)?wikispooks\\.com$\" name=\".+\"/><rule from=\"^http://([^/:@]+\\.)?wikispooks\\.com/\" to=\"https://$1wikispooks.com/\"/></ruleset>", "<ruleset name=\"Wild West Domains.com\" default_off=\"failed ruleset test\" f=\"Wild-West-Domains.xml\"><securecookie host=\".*\\.wildwestdomains\\.com$\" name=\".*\"/><rule from=\"^http://(e|web)mail\\.wildwestdomains\\.com/\" to=\"https://login.secureserver.net/index.php?app=wbe&domain=$1mail.wildwestdomains.com\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WildArchives.com\" f=\"WildArchives.com.xml\"><securecookie host=\"^\\.wildarchives\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wild Planet Photo Magazine\" f=\"WildPlanetPhotoMagazine.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WildStar online.com\" f=\"WildStar-online.com.xml\"><rule from=\"^http://wildstar-online\\.com/\" to=\"https://www.wildstar-online.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wild Apricot.org\" f=\"Wild_Apricot.org.xml\"><securecookie host=\"^wildapricot\\.org$\" name=\".+\"/><rule from=\"^http://(?:(f\\.)|www\\.)?wildapricot\\.org/\" to=\"https://$1wildapricot.org/\"/></ruleset>", "<ruleset name=\"Wildcard Corp.com\" f=\"Wildcard_Corp.com.xml\"><securecookie host=\"^\\.wildcardcorp\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WBS-law.de\" f=\"Wilde_Beuger_Solmecke.xml\"><securecookie host=\"^www\\.wbs-law\\.de$\" name=\".+\"/><rule from=\"^http://wbs-law\\.de/\" to=\"https://www.wbs-law.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wilders Security Forums\" f=\"Wilders-Security-Forums.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wildfiregames.com\" default_off=\"failed ruleset test\" f=\"Wildfiregames.com.xml\"><securecookie host=\"^(www\\.|releases\\.)?wildfiregames\\.com\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WILD LIFE Sydney Zoo\" default_off=\"failed ruleset test\" f=\"Wildlifesydney.com.au.xml\"><securecookie host=\".*\\.wildlifesydney\\.com\\.au$\" name=\".+\"/><rule from=\"^http://wildlifesydney\\.com\\.au/\" to=\"https://www.wildlifesydney.com.au/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wiley (partial)\" f=\"Wiley.xml\"><securecookie host=\"^sp\\.onlinelibrary\\.wiley\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?wiley\\.com/(?:remcover\\.cg|WileyRemoteAPI/Cover\\.rap)i\\?isbn=(\\d{8})(\\w\\w)\" to=\"https://media.wiley.com/product_data/coverImage/$2/$1/$1$2.jpg\"/><rule from=\"^http://hesupport\\.wiley\\.com/(?:\\?.*)?$\" to=\"https://higheredwiley.custhelp.com/\"/><rule from=\"^http://onlinelibrary\\.wiley\\.com/store/([\\d\\.]+)(/[^/]+)?/asset/\" to=\"https://onlinelibrarystatic.wiley.com/store/$1$2/asset/\"/><rule from=\"^http://(images|sp\\.onlinelibrary|onlinelibrarystatic)\\.wiley\\.com/\" to=\"https://$1.wiley.com/\"/></ruleset>", "<ruleset name=\"wilhelm-gym.net\" f=\"Wilhelm-gym.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Will Leather Goods\" f=\"Will_Leather_Goods.xml\"><securecookie host=\"^(?:.*\\.)?willleathergoods\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Willamette Week\" default_off=\"expired, self-signed\" f=\"Willamette_Week.xml\"><securecookie host=\"^www\\.wweek\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?wweek\\.com/\" to=\"https://www.wweek.com/\"/></ruleset>", "<ruleset name=\"Willhaben.at (partial)\" f=\"Willhaben.at.xml\"><securecookie host=\"^mobile\\.willhaben\\.at$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"William Hill.com (mismatches)\" default_off=\"mismatched\" f=\"William-Hill-mismatches.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"William Hill.com (partial)\" default_off=\"failed ruleset test\" f=\"William-Hill.xml\"><exclusion pattern=\"^http://sports\\.williamhill\\.com/(?!acc/)\"/><securecookie host=\"^\\.williamhill\\.com$\" name=\"^(?:banner_(?:domain)?click|clickinfo|fd_click|exp_\\w+)\"/><securecookie host=\"^(?:ads2|www)\\.williamhill\\.com$\" name=\".\"/><rule from=\"^http://williamhill\\.com/\" to=\"https://www.williamhill.com/\"/><rule from=\"^http://cacheserve\\.williamhill\\.com/\" to=\"https://serve.williamhill.com/\"/><rule from=\"^http://whdn\\.williamhill\\.com/\" to=\"https://secdn.williamhill.com/\"/><exclusion pattern=\"^http://whdn\\.williamhill\\.com/+(?:$|\\?)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Williams College (partial)\" f=\"Williams-College.xml\"><rule from=\"^http://williams\\.edu/\" to=\"https://www.williams.edu/\"/><rule from=\"^http://people\\.williams\\.edu/\" to=\"https://sites.williams.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Willow Garage (partial)\" default_off=\"failed ruleset test\" f=\"Willow-Garage.xml\"><securecookie host=\"^(?:www)?\\.willowgarage\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?willowgarage\\.com/\" to=\"https://www.willowgarage.com/\"/></ruleset>", "<ruleset name=\"WilmerHale.com\" f=\"WilmerHale.com.xml\"><securecookie host=\"^www\\.wilmerhale\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wilmington University (partial)\" f=\"Wilmington_University.xml\"><rule from=\"^http://(?:www\\.)?wilmu\\.edu/\" to=\"https://www.wilmu.edu/\"/><rule from=\"^http://(?:www\\.)?webcampus\\.wilmu\\.edu/\" to=\"https://webcampus.wilmu.edu/\"/></ruleset>", "<ruleset name=\"Wilson Center.org\" f=\"Wilson_Center.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wimdu.co.uk\" f=\"Wimdu.co.uk.xml\"><securecookie host=\"^[.w]*\\.wimdu\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wimp.com (partial)\" default_off=\"self-signed\" f=\"Wimp.com.xml\"><securecookie host=\"^\\.wimp$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Win-is.com\" f=\"Win-is.com.xml\"><securecookie host=\"^cp\\.win-is\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Win-rd.jp\" f=\"Win-rd.jp.xml\"><securecookie host=\"^cp8?\\.win-rd\\.jp$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Win-sv.jp\" default_off=\"failed ruleset test\" f=\"Win-sv.jp.xml\"><securecookie host=\"^cp\\.win-sv\\.jp$\" name=\".+\"/><rule from=\"^http://win-sv\\.jp/\" to=\"https://cp.win-sv.jp/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WinPcap.org\" f=\"WinPcap.xml\"><securecookie host=\"^\\.winpcap\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WinRAR (partial)\" f=\"WinRAR.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WinSCP\" f=\"WinSCP.xml\"><securecookie host=\"(^|\\.)winscp\\.net$\" name=\".+\"/><rule from=\"^http://www\\.winscp\\.net/\" to=\"https://winscp.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WinSuperSite.com (partial)\" f=\"WinSuperSite.com.xml\"><rule from=\"^http://(?:www\\.)?winsupersite\\.com/(?=site-files/|sites/)\" to=\"https://winsupersite.com/\"/></ruleset>", "<ruleset name=\"WinTieWin\" default_off=\"failed ruleset test\" f=\"WinTieWin.xml\"><securecookie host=\"^\\.wintiewin\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WinZip.com (false MCB)\" platform=\"mixedcontent\" f=\"WinZip.com-falsemixed.xml\"><securecookie host=\"^\\.winzip\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?winzip\\.com/(?!cgi-bin/|.+/css/|favicon\\.ico|lang\\.json|static/)\" to=\"https://$1winzip.com/\"/></ruleset>", "<ruleset name=\"WinZip.com (partial)\" default_off=\"failed ruleset test\" f=\"WinZip.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?winzip\\.com/(?!cgi-bin/|.+/css/|favicon\\.ico|lang\\.json|static/|/win/\\w\\w/order\\.cgi)\"/><securecookie host=\"^\\.store\\.winzip\\.com$\" name=\".+\"/><rule from=\"^http://(store\\.|www\\.)?winzip\\.com/\" to=\"https://$1winzip.com/\"/><rule from=\"^http://image(?:wz)?\\.winzip\\.com/\" to=\"https://winzip.com/\"/><rule from=\"^http://inst\\.winzip\\.com/\" to=\"https://inst.avg.com/\"/><rule from=\"^http://install\\.winzip\\.com/\" to=\"https://98acdc60cb7e28f9e56a-c9c8355414dceb2e62093c8746e20714.ssl.cf2.rackcdn.com/\"/></ruleset>", "<ruleset name=\"Winbond.com\" f=\"Winbond.com.xml\"><securecookie host=\"^www\\.winbond\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wincent.com\" f=\"Wincent.com.xml\"><rule from=\"^http://(?:www\\.)?wincent\\.com/\" to=\"https://wincent.com/\"/></ruleset>", "<ruleset name=\"Wind\" default_off=\"failed ruleset test\" f=\"Wind.com.gr.xml\"><securecookie host=\"^www\\.wind\\.com\\.gr$\" name=\".*\"/><rule from=\"^http://www\\.wind\\.com\\.gr/\" to=\"https://www.wind.com.gr/\"/></ruleset>", "<ruleset name=\"Wind River.com (problematic)\" default_off=\"expired, mismatched\" f=\"Wind_River.com-problematic.xml\"><securecookie host=\"^windriver\\.com$\" name=\"^PHPSESSID$\"/><rule from=\"^http://(?:(secure\\.)|www\\.)?windriver\\.com/\" to=\"https://$1windriver.com/\"/></ruleset>", "<ruleset name=\"Wind River.com (partial)\" default_off=\"failed ruleset test\" f=\"Wind_River.com.xml\"><securecookie host=\"^developer\\.windriver\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WindowMaker.org\" f=\"WindowMaker.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Win Switch.org\" f=\"Window_Switch.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Windows.com\" f=\"Windows.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Windows.net\" default_off=\"failed ruleset test\" f=\"Windows.net.xml\"><rule from=\"^http://(?:www\\.)?windows\\.net/$\" to=\"https://www.microsoft.com/net\"/><rule from=\"^http://(\\w+)\\.blob\\.core\\.windows\\.net/\" to=\"https://$1.blob.core.windows.net/\"/></ruleset>", "<ruleset name=\"Windows Azure.com\" f=\"Windows_Azure.xml\"><securecookie host=\"^(?:www\\.remoteapp)?\\.windowsazure\\.com$\" name=\".+\"/><rule from=\"^http://windowsazure\\.com/\" to=\"https://www.windowsazure.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Windows IT Pro (partial)\" f=\"Windows_IT_Pro.xml\"><rule from=\"^http://(?:www\\.)?windowsitpro\\.com/(cart/checkout(?:$|\\?|/)|site-files/|sites/)\" to=\"https://windowsitpro.com/$1\"/></ruleset>", "<ruleset name=\"Windows Phone.com\" f=\"Windows_Phone.xml\"><securecookie host=\".+\\.windowsphone\\.com$\" name=\".+\"/><rule from=\"^http://windowsphone\\.com/\" to=\"https://www.windowsphone.com/\"/><rule from=\"^http://images\\.partner\\.windowsphone\\.com/\" to=\"https://wmoxy.vo.msecnd.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Windows Secrets.com (partial)\" f=\"Windows_Secrets.com.xml\"><rule from=\"^http://(www\\.)?windowssecrets\\.com/(?=favicon\\.ico|subscription-preferences(?:$|[?/])|wp-content/|wp-includes/)\" to=\"https://$1windowssecrets.com/\"/></ruleset>", "<ruleset name=\"Windstream Business.com (partial)\" f=\"Windstream_Business.xml\"><securecookie host=\"^\\.windstreambusiness\\.com$\" name=\"^(?:incap_ses_\\d+|visid_incap)_\\d+$\"/><securecookie host=\"^www\\.windstreambusiness\\.com$\" name=\".+\"/><rule from=\"^http://windstreambusiness\\.com/\" to=\"https://www.windstreambusiness.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Windstream Communications (partial)\" f=\"Windstream_Communications.xml\"><securecookie host=\"^(?:\\.?rebates|www)\\.windstream\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?windstream\\.com/\" to=\"https://www.windstream.com/\"/><rule from=\"^http://rebates\\.windstream\\.com/.*\" to=\"https://rebates.windstream.com/\"/></ruleset>", "<ruleset name=\"Wine-Staging\" f=\"Wine-Staging.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wine Australia Corporation\" f=\"WineAustraliaCorporation.xml\"><rule from=\"^http://(?:www\\.)?wineaustralia\\.com/\" to=\"https://www.wineaustralia.com/\"/></ruleset>", "<ruleset name=\"WineHQ.org\" f=\"WineHQ.xml\"><securecookie host=\"^(?:appdb|\\.bugs|\\.forum)\\.winehq\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"wingolog.org\" f=\"Wingolog.org.xml\"><rule from=\"^http://(?:www\\.)?wingolog\\.org/\" to=\"https://wingolog.org/\"/></ruleset>", "<ruleset name=\"Wingware.com (partial)\" f=\"Wingware.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.wingware\\.com/\" to=\"https://wingware.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Winhawille.edu.hel.fi\" f=\"Winhawille.edu.hel.fi.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Winkdex.com\" f=\"Winkdex.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Winner.com (partial)\" f=\"Winner.com.xml\"><exclusion pattern=\"^http://casino\\.winner\\.com/(?!media/)\"/><exclusion pattern=\"^http://poker\\.winner\\.com/(?!style/|tpl/)\"/><exclusion pattern=\"^http://static\\.winner\\.com/www/\"/><securecookie host=\"^\\.winner\\.com$\" name=\"^banner_.+\"/><securecookie host=\".+\\.winner\\.com$\" name=\".+\"/><rule from=\"^http://((?:banner|chat-winner|m)?casino|cdn-bingo|login|m|mbingo|poker|secure|service|static|wap)\\.winner\\.com/\" to=\"https://$1.winner.com/\"/><rule from=\"^http://(?:secure)?(bingo|games|livecasino|mobile)\\.winner\\.com/\" to=\"https://secure$1.winner.com/\"/><rule from=\"^http://cachepoker\\.winner\\.com/\" to=\"https://poker.winner.com/\"/></ruleset>", "<ruleset name=\"Winoptions.com\" f=\"Winoptions.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wintotal.de\" f=\"Wintotal.de.xml\"><rule from=\"^http://wintotal\\.de/\" to=\"https://www.wintotal.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wippies Webmail\" f=\"Wippies.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wire.com\" f=\"Wire.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WireEdit.com\" default_off=\"failed ruleset test\" f=\"WireEdit.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wireclub.com\" f=\"Wireclub.com.xml\"><securecookie host=\"^www\\.wireclub\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WIRED\" f=\"Wired.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WiredMinds (partial)\" f=\"WiredMinds.xml\"><exclusion pattern=\"^http://(?:www\\.)?wiredminds\\.de/(?!/?assets/|favicon\\.ico)\"/><securecookie host=\"\\.wiredminds\\.de$\" name=\"^WMSESSNAME$\"/><securecookie host=\"^(?:st1|test|wm)\\.wiredminds\\.de$\" name=\".+\"/><rule from=\"^http://((?:st1|test|wm|wmapp|www)\\.)?wiredminds\\.de/\" to=\"https://$1wiredminds.de/\"/></ruleset>", "<ruleset name=\"WiredSafety.org\" default_off=\"failed ruleset test\" f=\"WiredSafety.org.xml\"><securecookie host=\"^(?:www\\.)?wiredsafety\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wireless.org.au (partial)\" f=\"Wireless.org.au.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wireless Leiden.nl (CAcert)\" platform=\"cacert\" default_off=\"failed ruleset test\" f=\"Wireless_Leiden.nl-cacert.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wireless Leiden.nl (partial)\" f=\"Wireless_Leiden.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wirral.gov.uk (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Wirral.gov.uk-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://democracy\\.wirral\\.gov\\.uk:443/\" to=\"https://democracy.wirral.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wirral.gov.uk (partial)\" f=\"Wirral.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wishabi\" f=\"Wishabi.xml\"><securecookie host=\"^\\.merchants\\.wishabi\\.ca$\" name=\".+\"/><rule from=\"^http://f\\.wishabi\\.ca/\" to=\"https://s3.amazonaws.com/f.wishabi.ca/\"/><rule from=\"^http://f1\\.wishabi\\.ca/\" to=\"https://d2e0sxz09bo7k2.cloudfront.net/\"/><rule from=\"^http://(analytic|(?:editorials\\.)?merchant)s\\.wishabi\\.ca/\" to=\"https://$1s.wishabi.ca/\"/></ruleset>", "<ruleset name=\"Wishlist Granted.com\" default_off=\"failed ruleset test\" f=\"Wishlist_Granted.com.xml\"><rule from=\"^http://(?:www\\.)?wishlistgranted\\.com/\" to=\"https://wishlistgranted.com/\"/></ruleset>", "<ruleset name=\"Wishpot.com\" default_off=\"failed ruleset test\" f=\"Wishpot.com.xml\"><securecookie host=\"^(?:it|uk|www)?\\.wishpot\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?wishpot\\.com/\" to=\"https://www.wishpot.com/\"/><rule from=\"^http://(it|uk)\\.wishpot\\.com/\" to=\"https://$1.wishpot.com/\"/></ruleset>", "<ruleset name=\"WISS\" f=\"Wiss.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wistia.net\" f=\"Wistia.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wistia.com (partial)\" default_off=\"failed ruleset test\" f=\"Wistia.xml\"><exclusion pattern=\"^http://home\\.wistia\\.com/(?!images/)\"/><securecookie host=\"^(?:embed-ssl|prime)\\.wistia\\.com$\" name=\".+\"/><rule from=\"^http://embed\\.wistia\\.com/\" to=\"https://wistia.sslcs.cdngc.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wit.ai\" f=\"Wit.ai.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WithSIX.com (Partial)\" f=\"WithSIX.xml\"><exclusion pattern=\"^http://withsix\\.com/+(?!gopremium(?:$|[?/]))\"/><exclusion pattern=\"^http://connect\\.withsix\\.com/+(?!(?:login|register)(?:$|[?/])|me/)\"/><securecookie host=\"^dev\\.withsix\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"With Google.com\" f=\"With_Google.com.xml\"><securecookie host=\"^[\\w-]+\\.withgoogle\\.com$\" name=\".+\"/><rule from=\"^http://([\\w-]+\\.)?withgoogle\\.com/\" to=\"https://$1withgoogle.com/\"/></ruleset>", "<ruleset name=\"Withknown.com\" f=\"Withknown.com.xml\"><exclusion pattern=\"^http://(?:assets|docs|stream)\\.withknown\\.com/\"/><rule from=\"^http://([\\w-]+\\.)?withknown\\.com/\" to=\"https://$1withknown.com/\"/></ruleset>", "<ruleset name=\"Witness.org\" f=\"Witness.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wix.com (partial)\" default_off=\"failed ruleset test\" f=\"Wix.xml\"><exclusion pattern=\"^http://www\\.wix\\.com/+(?!favicon\\.ico|(?:my-account|signin|support)(?:$|[?/]))\"/><securecookie host=\"^\\.\" name=\"(?:incap_ses_\\d+|visid_incap)_\\d+$\"/><rule from=\"^http://tracking\\.wix\\.com/\" to=\"https://wix.go2cloud.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wix static.com\" f=\"Wix_static.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wiz.cn\" f=\"Wiz.cn.xml\"><exclusion pattern=\"^http://note\\.wiz\\.cn/\\S+\\.html\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wizard Internet Services (partial)\" f=\"Wizard-Internet-Services.xml\"><rule from=\"^http://mail\\.wizard\\.ca/\" to=\"https://www.cityemail.com/\"/><rule from=\"^http://secure\\.wizard\\.ca/\" to=\"https://secure.wizard.ca/\"/></ruleset>", "<ruleset name=\"Wizards.com (partial)\" default_off=\"failed ruleset test\" f=\"Wizards.xml\"><securecookie host=\"^\\.accounts\\.\" name=\".\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://community\\.wizards\\.com/.*\" to=\"https://company.wizards.com/sitemissing/community\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wizbang\" f=\"Wizbang.xml\"><securecookie host=\"^\\.wizbangblog\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wizbang Pop\" f=\"Wizbang_Pop.xml\"><securecookie host=\"^\\.wizbangpop\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wj32.org\" f=\"Wj32.org.xml\"><securecookie host=\"^(www\\.|nyc-lane\\.|git\\.)?wj32\\.org\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"wk3.org\" f=\"Wk3.org.xml\"><securecookie host=\"^wk3\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WoSign.cn\" default_off=\"failed ruleset test\" f=\"WoSign.cn.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WoSign.com\" default_off=\"failed ruleset test\" f=\"WoSign.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WoWInterface\" f=\"WoWInterface.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wolfire Games (partial)\" default_off=\"failed ruleset test\" f=\"Wolfire-Games.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wolfram.com (partial) \" f=\"Wolfram.com.xml\"><securecookie host=\"^user\\.wolfram\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?wolfram\\.com/\" to=\"https://www.wolfram.com/\"/><rule from=\"^http://user\\.wolfram\\.com/\" to=\"https://user.wolfram.com/\"/><rule from=\"^http://reference\\.wolfram\\.com/\" to=\"https://reference.wolfram.com/\"/></ruleset>", "<ruleset name=\"Wolfram Alpha\" f=\"Wolfram_Alpha.xml\"><rule from=\"^http://api-(cn|maps|tw)\\.wolframalpha\\.com/\" to=\"https://www.wolframalpha.com/\"/><rule from=\"^http://volunteer\\.wolframalpha\\.com/\" to=\"https://www.wolframalpha.com/\"/><rule from=\"^http://(www[0-9][0-9]\\.)wolframalpha\\.com/\" to=\"https://www.wolframalpha.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wolfram CDN.com\" f=\"Wolfram_CDN.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wolframcloud.com\" f=\"Wolframcloud.com.xml\"><rule from=\"^http://(?:www\\.)?wolframcloud\\.com/\" to=\"https://www.wolframcloud.com/\"/><rule from=\"^http://programming\\.wolframcloud\\.com/\" to=\"https://programming.wolframcloud.com/\"/></ruleset>", "<ruleset name=\"Wolframscience.com\" f=\"Wolframscience.com.xml\"><rule from=\"^http://(?:www\\.)?wolframscience\\.com/\" to=\"https://www.wolframscience.com/\"/></ruleset>", "<ruleset name=\"Wolfson Microelectronics (partial)\" default_off=\"refused\" f=\"Wolfson-Microelectronics.xml\"><securecookie host=\"^www\\.wolfsonmicro\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"wolrdssl.net (partial)\" f=\"Wolrdssl.net.xml\"><exclusion pattern=\"^http://www\\.wolrdssl\\.net/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WoltLab.com\" f=\"WoltLab.com.xml\"><securecookie host=\"^(?:www)?\\.woltlab\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wolverhampton.gov.uk (partial)\" f=\"Wolverhampton.gov.uk.xml\"><exclusion pattern=\"^http://m\\.wolverhampton\\.gov\\.uk/+(?!CHttpHandler\\.ashx|(?:article/(?:1165/Contact-form|2614/Request-a-new-bin|4771/Report-a-missed-bin|5115/Website-feedback|6/Login)|reportflytipping)(?:$|[?/])|media/|wolverhampton/(?:css/|images/|scripts/.+\\.css))\"/><exclusion pattern=\"^http://(?:www\\.)?wolverhampton\\.gov\\.uk/+(?!(?:article/6/Login|myaccount)(?:$|[?/])|media/|moderngov/wcc/|wolverhampton/(?:css|images|template)/)\"/><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^(?!m\\.|www\\.)\\w\" name=\".\"/><rule from=\"^http://wolverhampton\\.gov\\.uk/\" to=\"https://www.wolverhampton.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Women Innovate Mobile\" default_off=\"mismatched\" f=\"Women-Innovate-Mobile.xml\"><rule from=\"^http://(?:www\\.)?womeninnovatemobile\\.com/(display|layout|storage|universal)/\" to=\"https://womeninnovatemobile.com/$1/\"/></ruleset>", "<ruleset name=\"Women on Web\" default_off=\"failed ruleset test\" f=\"Women_on_Web.xml\"><securecookie host=\"^www\\.womenonweb\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Womenonwaves.org\" f=\"Womenonwaves.org.xml\"><rule from=\"^http://(?:www\\.)?womenonwaves\\.org/\" to=\"https://www.womenonwaves.org/\"/></ruleset>", "<ruleset name=\"Womens Aid.com (partial)\" default_off=\"failed ruleset test\" f=\"Womens-Aid.xml\"><exclusion pattern=\"^http://www\\.womensaid\\.ie/+(?!common/|donate(?:$|[?/])|imglibrary/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Women's Health Specialists (partial)\" f=\"Womens_Health_Specialists.xml\"><rule from=\"^http://(?:www\\.)?womenshealthspecialists\\.org/(app/|css/|images/|scripts/|.+\\?type=pdf)\" to=\"https://www.womenshealthspecialists.org/$1\"/></ruleset>", "<ruleset name=\"Womenshealth.de\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Womenshealth.de.xml\"><rule from=\"^http://www\\.womenshealth\\.de/\" to=\"https://www.womenshealth.de/\"/><rule from=\"^http://images\\.womenshealth\\.de/\" to=\"https://images.womenshealth.de/\"/></ruleset>", "<ruleset name=\"Wonderlandmovies\" f=\"Wonderlandmovies.xml\"><securecookie host=\"^(?:www)?\\.wonderlandmovies\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?wonderlandmovies\\.de/\" to=\"https://www.wonderlandmovies.de/\"/></ruleset>", "<ruleset name=\"Wonderwall.com (partial)\" default_off=\"expired, untrusted root\" f=\"Wonderwall.com.xml\"><rule from=\"^http://static\\d?\\.wonderwall\\.com/\" to=\"https://wonderwall.msn.com/\"/></ruleset>", "<ruleset name=\"Wonga.com\" f=\"Wonga.com.xml\"><securecookie host=\"^www\\.wonga\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?wonga\\.com/\" to=\"https://www.wonga.com/\"/></ruleset>", "<ruleset name=\"WooConf.com (partial)\" f=\"WooConf.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?wooconf\\.com/+(?!_static/|wp-content/)\"/><exclusion pattern=\"^http://2014\\.wooconf\\.com/+(?!_static/|wp-content/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WooThemes.com (partial)\" f=\"WooThemes.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Woobox.com (partial)\" f=\"Woobox.com.xml\"><exclusion pattern=\"^http://blog\\.woobox\\.com/+(?!wp-content/|wp-includes/)\"/><securecookie host=\"^(?:\\.|www\\.)?woobox\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wood Green.org.uk (partial)\" f=\"Wood_Green.org.uk.xml\"><rule from=\"^http://(?:www\\.)?woodgreen\\.org\\.uk/(?=assets/|favicon\\.ico|images/|stylesheets/)\" to=\"https://www.woodgreen.org.uk/\"/></ruleset>", "<ruleset name=\"Wood Green Shop.org.uk\" f=\"Wood_Green_Shop.org.uk.xml\"><securecookie host=\"^secure\\.woodgreenshop\\.org\\.uk$\" name=\".+\"/><rule from=\"^http://(?:secure\\.|www\\.)?woodgreenshop\\.org\\.uk/\" to=\"https://secure.woodgreenshop.org.uk/\"/></ruleset>", "<ruleset name=\"Wood Tree Swings\" f=\"Wood_Tree_Swings.xml\"><securecookie host=\"^\\.?woodtreeswing\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wooga (partial)\" f=\"Wooga.xml\"><rule from=\"^http://cdn(?:12|-mkt)\\.wooga\\.com/\" to=\"https://cdn-mkt.wooga.com/\"/></ruleset>", "<ruleset name=\"Woolworths Australia\" f=\"Woolworths-AU.xml\"><securecookie host=\"^.*\\.woolworths\\.com\\.au$\" name=\".+\"/><securecookie host=\"^.*\\.woolworthsonline\\.com\\.au$\" name=\".+\"/><securecookie host=\"^(www\\.)?everydayrewards\\.com\\.au$\" name=\".+\"/><rule from=\"^http://woolworths\\.com\\.au/\" to=\"https://www.woolworths.com.au/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Woolyss.com\" f=\"Woolyss.com.xml\"><exclusion pattern=\"^http://tools\\.woolyss\\.com/$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Woopra.com (partial)\" f=\"Woopra.xml\"><securecookie host=\"^(?:w*\\.)?woopra\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Woot (partial)\" default_off=\"failed ruleset test\" f=\"Woot.xml\"><rule from=\"^http://(?:www\\.)?w[0o]{2}t\\.com/((?:account|App_Themes|Blog|Forums|[iI]mages|Search)(?:$|/)|(?:blog/rss|Jobs|Recalls|SponsorUs|Terms|WhatIsWoot|WriteUs)\\.aspx)\" to=\"https://www.woot.com/$1\"/><rule from=\"^http://(account|members)\\.woot\\.com/\" to=\"https://$1.woot.com/\"/><rule from=\"^http://(avatar|images\\.deals|(?:gzip\\.)?static)\\.woot\\.com/\" to=\"https://s3.amazonaws.com/$1.woot.com/\"/></ruleset>", "<ruleset name=\"Wopsa (partial)\" default_off=\"http redirect\" f=\"Wopsa.xml\"><securecookie host=\"kundarea\\.wopsa\\.se$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Worcester Polytechnic Institute (partial)\" f=\"Worcester-Polytechnic-Institute.xml\"><securecookie host=\"^my\\.wpi\\.edu$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?wpi\\.edu/\" to=\"https://www.wpi.edu/\"/><rule from=\"^http://my\\.wpi\\.edu/\" to=\"https://my.wpi.edu/\"/></ruleset>", "<ruleset name=\"WordCamp (partial)\" f=\"WordCamp.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WordPress blogs\" f=\"WordPress-blogs.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WordPress.tv\" f=\"WordPress.tv.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WordPress\" f=\"WordPress.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Word Pro\" f=\"Word_Pro.xml\"><securecookie host=\"^\\.thewordpro\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?thewordpro\\.com/\" to=\"https://www.thewordpro.com/\"/></ruleset>", "<ruleset name=\"Word to the Wise.com (partial)\" f=\"Word_to_the_Wise.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wordentropy.org\" default_off=\"failed ruleset test\" f=\"Wordentropy.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wordfence.com\" f=\"Wordfence.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wordnik\" f=\"Wordnik.xml\"><securecookie host=\"^(?:www)?\\.wordnik\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WordsAPI.com\" f=\"WordsAPI.com.xml\"><securecookie host=\"^\\.wordsapi\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Work4 Labs\" f=\"Work4_Labs.xml\"><securecookie host=\"^(?:\\.?www)?\\.work4labs.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WorkWithColor.com\" default_off=\"mismatch, self-signed\" f=\"WorkWithColor.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Workable.com (partial)\" f=\"Workable.com.xml\"><exclusion pattern=\"^http://(?:blog|resources|support)\\.workable\\.com/\"/><securecookie host=\"^(?:\\.|www\\.)?workable\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"workaround.org\" default_off=\"failed ruleset test\" f=\"Workaround.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Workforce Hosting.com (partial)\" f=\"Workforce_Hosting.com.xml\"><securecookie host=\"^sdsurf\\.workforcehosting\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Workiva.com\" f=\"Workiva.com.xml\"><securecookie host=\"^\\.workiva\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Workplace Giving\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Workplace-Giving.xml\"><rule from=\"^http://(?:www\\.)?workplacegiving\\.co\\.uk/\" to=\"https://www.workplacegiving.co.uk/\"/></ruleset>", "<ruleset name=\"Workplace Gender Equality Agency\" f=\"WorkplaceGenderEqualityAgency.xml\"><rule from=\"^http://(?:www\\.)?wgea\\.gov\\.au/\" to=\"https://www.wgea.gov.au/\"/></ruleset>", "<ruleset name=\"Works That Work.com\" f=\"Works_That_Work.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WorldCat.org\" f=\"WorldCat.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"World Community Grid\" f=\"WorldCommunityGrid.xml\"><securecookie host=\"^\\.worldcommunitygrid\\.org$\" name=\".+\"/><rule from=\"^http://worldcommunitygrid\\.org/\" to=\"https://www.worldcommunitygrid.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WorldDAB.org\" f=\"WorldDAB.org.xml\"><securecookie host=\"^\\.worlddab\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WorldMate.com\" f=\"WorldMate.com.xml\"><rule from=\"^http://(?:www\\.)?worldmate\\.com/\" to=\"https://www.worldmate.com/\"/><rule from=\"^http://cdn\\.worldmate\\.com/\" to=\"https://cdn.worldmate.com/\"/></ruleset>", "<ruleset name=\"WorldNow.com (partial)\" f=\"WorldNow.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"World of Games\" f=\"WorldOfGames.xml\"><rule from=\"^http://(?:www\\.)?wog\\.ch/\" to=\"https://www.wog.ch/\"/></ruleset>", "<ruleset name=\"WorldOfWarcraft\" f=\"WorldOfWarcraft.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WorldRemit.com\" f=\"WorldRemit.com.xml\"><securecookie host=\"^(?:agents|www)\\.worldremit\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?worldremit\\.com/\" to=\"https://www.worldremit.com/\"/><rule from=\"^http://agents\\.worldremit\\.com/\" to=\"https://agents.worldremit.com/\"/></ruleset>", "<ruleset name=\"World Wildlife.org\" f=\"WorldWildlife.org.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"World Development Movement\" f=\"World_Development_Movement.xml\"><securecookie host=\"^\\.wdm\\.org\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The World Food Prize\" default_off=\"failed ruleset test\" f=\"World_Food_Prize.xml\"><securecookie host=\"^(?:www\\.)?worldfoodprize\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"World Landscape Architecture\" f=\"World_Landscape_Architecture.xml\"><securecookie host=\"^\\.worldlandscapearchitect\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"World Precision Instruments (partial)\" default_off=\"mismatched\" f=\"World_Precision_Instruments.xml\"><securecookie host=\"^store\\.wpiinc\\.com$\" name=\".+\"/><rule from=\"^http://store\\.wpiinc\\.com/\" to=\"https://store.wpiinc.com/\"/></ruleset>", "<ruleset name=\"World Television\" f=\"World_Television.xml\"><securecookie host=\"^streamstudio\\.world-television\\.com$\" name=\".+\"/><rule from=\"^http://(doddsegrads|streamstudio)\\.world-television\\.com/\" to=\"https://$1.world-television.com/\"/></ruleset>", "<ruleset name=\"World e-ID Congress\" default_off=\"expired, self-signed\" f=\"World_e-ID_Congress.xml\"><securecookie host=\"^www\\.worlde-idcongress\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?worlde-idcongress\\.com/\" to=\"https://www.worlde-idcongress.com/\"/></ruleset>", "<ruleset name=\"World for Pets.com.au\" f=\"World_for_Pets.com.au.xml\"><securecookie host=\"^www\\.worldforpets\\.com\\.au$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"World of Warplanes (partial)\" f=\"World_of_Warplanes.xml\"><exclusion pattern=\"^http://(?:www\\.)?worldofwarplanes.(?:com|eu|ru)/(?!(?:auth|captcha|registration)(?:$|\\?|/)|dcont/|l?static/)\"/><securecookie host=\"^forum\\.worldofwarplanes\\.(?:com|eu|ru)$\" name=\".+\"/><rule from=\"^http://(?:(forum\\.|support\\.)|www\\.)?worldofwarplanes\\.(com|ru)/\" to=\"https://$1worldofwarplanes.$2/\"/><rule from=\"^http://(forum\\.|www\\.)?worldofwarplanes\\.eu/\" to=\"https://$1worldofwarplanes.eu/\"/></ruleset>", "<ruleset name=\"World of Warships (partial)\" default_off=\"https://github.com/EFForg/https-everywhere/issues/5650\" f=\"World_of_Warships.xml\"><securecookie host=\"^forum\\.worldofwarships\\.(?:com|eu|ru)$\" name=\".+\"/><rule from=\"^http://forum\\.worldofwarships\\.(com|eu|ru)/\" to=\"https://forum.worldofwarships.$1/\"/></ruleset>", "<ruleset name=\"Worldhealth.net\" f=\"Worldhealth.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Worldreader.org\" f=\"Worldreader.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Worn Through.com\" default_off=\"mismatched\" f=\"Worn-Through.xml\"><rule from=\"^http://(?:www\\.)?wornthrough\\.com/\" to=\"https://www.wornthrough.com/\"/></ruleset>", "<ruleset name=\"WorstPills.org\" f=\"WorstPills.org.xml\"><rule from=\"^http://(?:www\\.)?worstpills\\.org/\" to=\"https://www.worstpills.org/\"/></ruleset>", "<ruleset name=\"Woz.ch\" f=\"Woz.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"wpX.ne.jp\" f=\"WpX.ne.jp.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"wpmudev.org\" f=\"Wpmudev.org.xml\"><securecookie host=\"^\\.?premium\\.wpmudev\\.org$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?wpmudev\\.org/.*\" to=\"https://premium.wpmudev.org/\"/><rule from=\"^http://premium\\.wpmudev\\.org/\" to=\"https://premium.wpmudev.org/\"/></ruleset>", "<ruleset name=\"wpveda.com\" default_off=\"failed ruleset test\" f=\"Wpveda.com.xml\"><securecookie host=\"^\\.wpveda\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WrapBootstrap.com (partial)\" f=\"WrapBootstrap.com.xml\"><securecookie host=\"^wrapbootstrap\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?wrapbootstrap\\.com/\" to=\"https://wrapbootstrap.com/\"/></ruleset>", "<ruleset name=\"wrapadviser.co.uk\" f=\"Wrapadviser.co.uk.xml\"><securecookie host=\".+\\.wrapadviser\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://([\\w-]+)\\.wrapadviser\\.co\\.uk/\" to=\"https://$1.wrapadviser.co.uk/\"/></ruleset>", "<ruleset name=\"wrating.com\" default_off=\"failed ruleset test\" f=\"Wrating.com.xml\"><securecookie host=\"^\\.\" name=\"^vjsid$\"/><rule from=\"^http://sohu\\.wrating\\.com/\" to=\"https://dsl.wrating.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"writeLaTeX.com\" f=\"Writelatex.com.xml\"><rule from=\"^http://(?:www\\.)?writelatex\\.com/\" to=\"https://www.writelatex.com/\"/></ruleset>", "<ruleset name=\"Wrong Planet.net (broken MCB, partial)\" platform=\"mixedcontent\" f=\"Wrong_Planet.net.xml\"><securecookie host=\"^(?:\\.|www\\.)?wrongplanet\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wrzuta.pl (partial)\" default_off=\"failed ruleset test\" f=\"Wrzuta.pl.xml\"><exclusion pattern=\"^http://(?:www\\.)?wrzuta\\.pl/(?!static/)\"/><rule from=\"^http://(?:ssl\\.|www\\.)?wrzuta\\.pl/\" to=\"https://ssl.wrzuta.pl/\"/></ruleset>", "<ruleset name=\"wservices.ch\" f=\"Wservices.ch.xml\"><securecookie host=\".+\\.wservices\\.ch$\" name=\".+\"/><rule from=\"^http://([\\w-]+\\.)?wservices\\.ch/\" to=\"https://$1wservices.ch/\"/></ruleset>", "<ruleset name=\"Wtop.com (partial)\" f=\"Wtop.com.xml\"><rule from=\"^http://(www\\.)?wtop\\.com/(?=css/|emedia/|favicon\\.ico|images/|jqueryO/)\" to=\"https://$1wtop.com/\"/></ruleset>", "<ruleset name=\"wtpx-Telekom.com\" f=\"Wtpx-Telekom.com.xml\"><securecookie host=\"^www\\.wtpx-telekom\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"wuala\" f=\"Wuala.xml\"><securecookie host=\"^(?:(?:www|forum|stats|support|thumb\\d+)\\.)?wuala\\.com$\" name=\".*\"/><rule from=\"^http://wuala\\.com/\" to=\"https://wuala.com/\"/><rule from=\"^http://(www|cdn|forum|stats|support|thumb\\d+)\\.wuala\\.com/\" to=\"https://$1.wuala.com/\"/></ruleset>", "<ruleset name=\"Wufoo\" f=\"Wufoo.xml\"><exclusion pattern=\"^http://help\\.\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http://([\\w-]+\\.)?wufoo\\.com/\" to=\"https://$1wufoo.com/\"/></ruleset>", "<ruleset name=\"Wunderkraut.fi\" f=\"Wunderkraut.fi.xml\"><securecookie host=\"^\\.wunderkraut\\.fi$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wurfljs\" f=\"Wurfljs.com.xml\"><rule from=\"^http://(www\\.)?wurfljs\\.com/\" to=\"https://wurfljs.com/\"/></ruleset>", "<ruleset name=\"Wush.Net\" f=\"Wush.Net.xml\"><securecookie host=\"^(?:(?:status|support|www)\\.)?wush\\.net$\" name=\".+\"/><rule from=\"^http://((?:billing|portal|support|www)\\.)?wush\\.net/\" to=\"https://$1wush.net/\"/><rule from=\"^http://status\\.wush\\.net/+\" to=\"https://portal.wush.net/\"/></ruleset>", "<ruleset name=\"Wyenet.co.uk\" f=\"Wyenet.co.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wykop.pl (partial)\" f=\"Wykop.pl.xml\"><securecookie host=\"^(?:www\\.)?wykop\\.pl$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wyndham (mismatches)\" default_off=\"mismatched\" f=\"Wyndham-mismatches.xml\"><rule from=\"^http://(?:www\\.)?landalskilife\\.(com|fr)/(bp|db|favicons|img)/\" to=\"https://www.landalskilife.$1/$2/\"/><rule from=\"^http://(?:www\\.)?ourvacationcentre\\.net/\" to=\"https://www.ourvacationcentre.net/~ourvacat/\"/><rule from=\"^http://(?:rcicruiseholidays\\.ourvacationcentre\\.net|(?:www\\.)?rcicruiseholidays\\.com)/\" to=\"https://rcicruiseholidays.ourvacationcentre.net/~ourvacat/rcicruise/\"/><rule from=\"^http://(?:www\\.)?wyndhamjobs\\.com/\" to=\"https://www.wyndhamjobs.com/\"/></ruleset>", "<ruleset name=\"Wyndham (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Wyndham.xml\"><exclusion pattern=\"^http://(?:www\\.)?landalskilife\\.(?:com|fr)/\"/><exclusion pattern=\"^http://www\\.wyndhamvrap\\.\"/><securecookie host=\"^(?:.*\\.)?(?:canvasholidays|cheznous|cottages(?:direct|4you)|english-country-cottages|hoseasons|(?:individual-|james)villas)\\.co\\.uk$\" name=\".*\"/><securecookie host=\"^(?:www\\.)?competitionsbywyndham\\.com\\.au$\" name=\".*\"/><securecookie host=\"^secure\\.landal\\.com$\" name=\".*\"/><securecookie host=\"^www\\.ourvacationstore\\.com$\" name=\".*\"/><securecookie host=\"^(?:www\\.)?ovscruise\\.com$\" name=\".*\"/><securecookie host=\"^new\\.wyndhamvrap\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?(canvasholidays|cheznous|cottages(?:4you|direct|election)|(?:english|french|irish|italian|scottish|welsh)-country-cottages|(?:individual-|james)villas|villas4you)\\.co\\.uk/\" to=\"https://www.$1.co.uk/\"/><rule from=\"^http://(www\\.)?competitionsbywyndham\\.com\\.au/\" to=\"https://$1competitionsbywyndham.com.au/\"/><rule from=\"^http://blog\\.cottages4you\\.co\\.uk/\" to=\"https://blog.cottages4you.co.uk/\"/><rule from=\"^http://(?:www\\.)?((?:easy|welcome)cottages|resortquestsecure|secureholidays|worldmarkbywyndham|wyndhamrentals)\\.com/\" to=\"https://www.$1.com/\"/><rule from=\"^http://(images\\.|www\\.)?hoseasons\\.co\\.uk/\" to=\"https://$1hoseasons.co.uk/\"/><rule from=\"^http://landal(skilife)?\\.(\\w[\\w^z]\\w?)/\" to=\"https://www.landal$1.$2/\"/><rule from=\"^http://www\\.landal(skilife)?\\.(\\w[\\w^z]\\w?)/(bp|db|favicons|img)/\" to=\"https://www.landal$1.$2/$3/\"/><rule from=\"^http://(?:www\\.)?landal(?:skilife)?\\.cz/\" to=\"https://www.landal.cz/\"/><rule from=\"^http://landal(campings|parkshop)\\.([bd]e|nl)/\" to=\"https://www.landal$1.$2/\"/><rule from=\"^http://www\\.landacampings\\.([bd]e|nl)/(css|favicons|img)/\" to=\"https://www.landalcampings.$1/$2/\"/><rule from=\"^http://(?:www\\.)?landalparkshop\\.de/\" to=\"https://www.landal.de/\"/><rule from=\"^http://secure\\.landal\\.com/\" to=\"https://secure.landal.com/\"/><rule from=\"^http://(?:www\\.)?landalgreenparks\\.com/\" to=\"https://www.landal.com/\"/><rule from=\"^http://(www\\.)?mijnlandal\\.nl/\" to=\"https://$1mijnlandal.nl/\"/><rule from=\"^http://(www\\.)?ovscruise\\.com/\" to=\"https://$1ovscruise.com/\"/><rule from=\"^http://prep\\.rci\\.com/\" to=\"https://prep.rci.com/\"/><rule from=\"^http://(www\\.)?rcitravelstore\\.co\\.uk/(images/|includes/|managebooking/login\\.asp|shortlist/)\" to=\"https://$1rcitravelstore.co.uk/$2\"/><rule from=\"^http://wyndham\\.com/\" to=\"https://www.wyndham.com/\"/><rule from=\"^http://www\\.wyndham\\.com/(cms_content|hotels/images|resources)\" to=\"https://www.wyndham.com/$1/\"/><rule from=\"^http://wynres\\.wyndham\\.com/\" to=\"https://wynres.wyndham.com/\"/><rule from=\"^http://(hotels|new)\\.wyndhamvrap\\.com/\" to=\"https://$1.wyndhamvrap.com/\"/></ruleset>", "<ruleset name=\"WyzAnt (partial)\" f=\"WyzAnt.xml\"><rule from=\"^http://wyzant\\.com/\" to=\"https://www.wyzant.com/\"/><rule from=\"^http://www\\.wyzant\\.com/(DES/|(image|[gG]raphic|Les)s/|combiner\\.ashx|EmailTutor\\.aspx|(Script|Web)Resource\\.axd)\" to=\"https://www.wyzant.com/$1\"/></ruleset>", "<ruleset name=\"WyzerMe\" default_off=\"failed ruleset test\" f=\"WyzerMe.xml\"><securecookie host=\"^www\\.wyzerme\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"wza.us\" f=\"Wza.us.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"X-Cart.com (partial)\" f=\"X-Cart.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.demostore\\.x-cart\\.com$\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"X PRIZE.org (partial)\" f=\"X-PRIZE-Foundation.xml\"><exclusion pattern=\"^http://oceandiscovery\\.xprize\\.org/+(?!files/|misc/|profiles/\\w+/themes/|sites/)\"/><exclusion pattern=\"^http://www\\.xprize\\.org/+(?!donate(?:/?$|\\?)|files/|profiles/\\w+/themes/|sites/)\"/><securecookie host=\"^oceandiscoveryportal\\.xprize\\.org$\" name=\".\"/><rule from=\"^http://xprize\\.org/\" to=\"https://www.xprize.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"x-blog.jp\" f=\"X-blog.jp.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"x-info.org\" default_off=\"failed ruleset test\" f=\"X-info.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"X-lift.jp (partial)\" f=\"X-lift.jp.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"x10Hosting.com (partial)\" f=\"X10Hosting.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"X2Go.org\" default_off=\"untrusted root\" f=\"X2Go.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://x2go\\.org/\" to=\"https://www.x2go.org/\"/><rule from=\"^http://bugs\\.x2go\\.org/\" to=\"https://packages.x2go.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"x5.ru\" f=\"X5.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XAGYL.com\" f=\"XAGYL.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XAGYL.us\" default_off=\"failed ruleset test\" f=\"XAGYL.us.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XAP.com\" f=\"XAP.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"xCAT.nl\" default_off=\"expired, missing certificate chain\" f=\"XCAT.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XCDN.co\" f=\"XCDN.co.xml\"><securecookie host=\"^\\.xcdn\\.co$\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XCart.com\" f=\"XCart.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XChatData.net\" default_off=\"failed ruleset test\" f=\"XChatData.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XDA-Developers.com (partial)\" f=\"XDA-Developers.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XE.com (partial)\" f=\"XE.com.xml\"><exclusion pattern=\"^http://www\\.xe\\.com/$\"/><exclusion pattern=\"^http://community\\.xe\\.com/(blog|forum|rss-feed|s3|$)\"/><rule from=\"^http://(auth\\.|community\\.|fx2\\.|s\\.|transfer\\.|xera\\.)?xe\\.com/\" to=\"https://$1xe.com/\"/><rule from=\"^http://www\\.xe\\.com/(themes/|gen/css/)\" to=\"https://www.xe.com/$1\"/></ruleset>", "<ruleset name=\"XEU.com (partial)\" default_off=\"failed ruleset test\" f=\"XEU.com.xml\"><securecookie host=\"^\\.shop\\.xeu\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XFCE-help.org\" f=\"XFCE-help.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XFCE-look.org\" f=\"XFCE-look.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XFCE.org (partial)\" f=\"XFCE.org.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XGaming.com\" f=\"XGaming.xml\"><securecookie host=\"^www\\.xgaming\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"xH CDN.com (partial)\" f=\"XH_CDN.com.xml\"><rule from=\"^http://stec-site\\.xhcdn\\.com/\" to=\"https://eu-st.xhcdn.com/\"/><rule from=\"^http://stec-t(\\d\\d)\\.xhcdn\\.com/\" to=\"https://et$1.xhcdn.com/\"/><rule from=\"^http://txh\\.xhcdn\\.com/\" to=\"https://ut00.xhcdn.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"xHamster.com (partial)\" f=\"XHamster.com.xml\"><exclusion pattern=\"^http://static\\.xhamster\\.com/crossdomain\\.xml\"/><securecookie host=\"^\\.\" name=\"^(?:first_visit$|mobileRef$|splash-|stats|uvts$)\"/><securecookie host=\"^(?!\\.xhamster\\.com$).\" name=\".\"/><rule from=\"^http://mobile\\.xhamster\\.com/.*\" to=\"https://m.xhamster.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"xHamster Premium Pass.com (partial)\" default_off=\"failed ruleset test\" f=\"XHamster_Premium_Pass.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://static\\.xhamsterpremiumpass\\.com/\" to=\"https://static.xhamster.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XILO.net (partial)\" default_off=\"failed ruleset test\" f=\"XILO-Communications.xml\"><securecookie host=\"^discuss\\.xilo\\.net$\" name=\".+\"/><rule from=\"^http://login\\.xilo\\.net/\" to=\"https://my.xilo.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XLHost.com (partial)\" f=\"XLHost.com.xml\"><securecookie host=\"^grande\\.xlhost\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XM-CDN.com\" default_off=\"failed ruleset test\" f=\"XM-CDN.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XM.com\" default_off=\"failed ruleset test\" f=\"XM.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://xm\\.com/\" to=\"https://www.xm.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XMLGold.eu\" f=\"XMLGold.eu.xml\"><securecookie host=\"^(?:www\\.|\\.)?xmlgold\\.eu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XMMS2.org\" f=\"XMMS2.org.xml\"><securecookie host=\"^bugs\\.xmms2\\.org$\" name=\".+\"/><rule from=\"^http://www\\.xmms2\\.org/\" to=\"https://xmms2.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XMOS.com (partial)\" f=\"XMOS.xml\"><exclusion pattern=\"^http://www\\.xmos\\.com/+(?!download/|favicon\\.ico|files/|misc/|register|sites/|system/|/user/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XMPP.jp\" f=\"XMPP.jp.xml\"><securecookie host=\"^(?:www\\.)?xmpp\\.jp$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XMPP.net\" default_off=\"failed ruleset test\" f=\"XMPP.net.xml\"><rule from=\"^http://www\\.xmpp\\.net/\" to=\"https://xmpp.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XMPP.org (partial)\" f=\"XMPP.org.xml\"><securecookie host=\"^xmpp\\.org$\" name=\".+\"/><rule from=\"^http://blog\\.xmpp\\.org/\" to=\"https://xmpp.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XMPP.ru.net\" f=\"XMPP.ru.net.xml\"><securecookie host=\"^\\.xmpp\\.ru\\.net$\" name=\".+\"/><rule from=\"^http://xmpp\\.ru\\.net/\" to=\"https://www.xmpp.ru.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XMind.net (partial)\" f=\"XMind.net.xml\"><exclusion pattern=\"^http://www\\.xmind\\.net/(?:blog|download)(?:$|[?/])\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XMission.com (missing certificate chain)\" default_off=\"missing certificate chain\" f=\"XMission.com-problematic.xml\"><securecookie host=\"^accounting\\.xmission\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XMission.com (partial)\" f=\"XMission.xml\"><securecookie host=\"^(?:.*\\.)?xmission\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XNET s.r.o.\" f=\"XNET.cz.xml\"><rule from=\"^http://www\\.xnet\\.cz/\" to=\"https://xnet.cz/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XO.com (partial)\" f=\"XO-Communications.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XPic only.com\" default_off=\"failed ruleset test\" f=\"XPic_only.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XS4ALL.nl (partial)\" f=\"XS4ALL.xml\"><securecookie host=\".\\.xs4all\\.nl$\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XSSposed.org\" default_off=\"failed ruleset test\" f=\"XSSposed.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"xVideosx.tv\" default_off=\"failed ruleset test\" f=\"XVideosx.tv.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xakep.ru\" default_off=\"failed ruleset test\" f=\"Xakep.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xamarin.com (partial)\" f=\"Xamarin.com.xml\"><exclusion pattern=\"^http://planet\\.xamarin\\.com/+(?:$|\\?)\"/><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^(?:_gat?|ARRAffinity)$\"/><rule from=\"^http://iosapi\\.xamarin\\.com/[^?]*\" to=\"https://developer.xamarin.com/api/root/ios-unified/\"/><rule from=\"^http://macapi\\.xamarin\\.com/[^?]*\" to=\"https://developer.xamarin.com/api/root/monomac-lib\"/><rule from=\"^http://support\\.xamarin\\.com/[^?]*\" to=\"https://xamarin.com/support\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xapo.com\" f=\"Xapo.com.xml\"><rule from=\"^http://help\\.xapo\\.com/\" to=\"https://support.xapo.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xara.com (MCB)\" platform=\"mixedcontent\" f=\"Xara.com-mixedcontent.xml\"><exclusion pattern=\"^http://www\\.xara\\.com/readxaraonlinecookie\\.php\"/><securecookie host=\"^\\.xara\\.com$\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http://xara\\.com/\" to=\"https://www.xara.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xara.com (partial)\" f=\"Xara.com.xml\"><securecookie host=\"^\\.xara\\.com$\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xara online.com (partial)\" platform=\"mixedcontent\" default_off=\"expired\" f=\"Xara_online.com.xml\"><rule from=\"^http://app\\.xaraonline\\.com/\" to=\"https://secure.xaraonline.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xato.net\" f=\"Xato.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"xav.com\" f=\"Xav.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xavisys.com\" default_off=\"failed ruleset test\" f=\"Xavisys.xml\"><securecookie host=\"^xavisys\\.com$\" name=\".*\"/><rule from=\"^http://www\\.xavisys\\.com/\" to=\"https://xavisys.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"xbee.net\" default_off=\"mismatched\" f=\"Xbee.net.xml\"><securecookie host=\"^(?:thehive\\.|www\\.)?xbee\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"xbetsport.com\" f=\"Xbetsport.com.xml\"><securecookie host=\"^(?:w*\\.)?xbetsport\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xbox.com (partial)\" default_off=\"failed ruleset test\" f=\"Xbox.xml\"><exclusion pattern=\"^http://rewards\\.xbox\\.com/(?!css/|favicon\\.ico|join-now|(?:localized_)?media/)\"/><securecookie host=\"^\\.xbox\\.com$\" name=\"^s_vi$\"/><securecookie host=\"^(?:help|live|music|myservice)\\.xbox\\.com$\" name=\".+\"/><rule from=\"^http://(compas|nxeasset)s\\.xbox\\.com/\" to=\"https://$1s-ssl.xbox.com/\"/><rule from=\"^http://feedback\\.xbox\\.com/\" to=\"https://feedbacklogin.xbox.com/\"/><rule from=\"^http://o\\.xbox\\.com/\" to=\"https://xbox-com.112.2o7.net/\"/><rule from=\"^http://piflc\\.xbox\\.com/\" to=\"https://piflc.xboxlive.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xbox Live.com (partial)\" f=\"Xbox_Live.com.xml\"><rule from=\"^http://(avatar|compass)\\.xboxlive\\.com/\" to=\"https://$1-ssl.xboxlive.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xchan\" default_off=\"failed ruleset test\" f=\"Xchan.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xdebug.org\" f=\"Xdebug.org.xml\"><securecookie host=\"^(bugs\\.)?xdebug\\.org\" name=\".+\"/><rule from=\"^http://www\\.xdebug\\.org/\" to=\"https://xdebug.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xdomain.ne.jp\" f=\"Xdomain.ne.jp.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xelerence.com\" f=\"Xelerance.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xen-Orchestra.com\" f=\"Xen-Orchestra.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XenServer.org\" default_off=\"failed ruleset test\" f=\"XenServer.org.xml\"><securecookie host=\"^crowd\\.xenserver\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xen Project.org (partial)\" f=\"Xen_Project.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xen VPS.com\" default_off=\"failed ruleset test\" f=\"Xen_VPS.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xeneris.net (partial)\" default_off=\"failed ruleset test\" f=\"Xeneris.net.xml\"><securecookie host=\"^(?:kronix|\\.mail)\\.xeneris\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XenForo.com\" f=\"Xenforo.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xengrade.com (partial)\" f=\"Xengrade.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xeno Gamers.org\" f=\"Xeno_Gamers.org.xml\"><securecookie host=\"^\\.?xenogamers\\.org$\" name=\".+\"/><rule from=\"^http://(img\\d\\.|www\\.)?xenogamers\\.org/\" to=\"https://$1xenogamers.org/\"/></ruleset>", "<ruleset name=\"Xenobite.eu\" default_off=\"failed ruleset test\" f=\"Xenobite.eu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xenomai.org\" f=\"Xenomai.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xero mag.com\" f=\"Xero_mag.com.xml\"><securecookie host=\"^www\\.xeromag\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xetra.com (partial)\" f=\"Xetra.com.xml\"><exclusion pattern=\"^http://www\\.xetra\\.com/+(?!blob/|image/|resources/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xetum.com (partial)\" f=\"Xetum.com.xml\"><rule from=\"^http://(www\\.)?xetum\\.com/(?=[^?/]+/+[^?/]+|checkout(?:$|[?/])|favicon\\.ico|static/)\" to=\"https://$1xetum.com/\"/></ruleset>", "<ruleset name=\"Xfire.com (partial)\" default_off=\"missing certificate chain\" f=\"Xfire.xml\"><securecookie host=\"^(?:www\\.)?xfire\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"xg4ken.com\" f=\"Xg4ken.com.xml\"><securecookie host=\"^\\d+\\.xg4ken\\.com$\" name=\".+\"/><rule from=\"^http://(\\d\\d)\\.xg4ken\\.com/\" to=\"https://$1.xg4ken.com/\"/></ruleset>", "<ruleset name=\"XiTi.com (partial)\" default_off=\"failed ruleset test\" f=\"XiTi.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:idrxvr|tmst)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://logc142\\.xiti\\.com/\" to=\"https://logs1142.xiti.com/\"/><rule from=\"^http://logc2\\.xiti\\.com/\" to=\"https://logs2.xiti.com/\"/><rule from=\"^http://logi10\\.xiti\\.com/\" to=\"https://logs13.xiti.com/\"/><rule from=\"^http://logc20[56]\\.xiti\\.com/\" to=\"https://logs1204.xiti.com/\"/><rule from=\"^http://log[ci]242\\.xiti\\.com/\" to=\"https://logs1242.xiti.com/\"/><rule from=\"^http://log[ci]\\d+\\.xiti\\.com/\" to=\"https://logs.xiti.com/\"/><rule from=\"^http://(logs\\d*|secured75|v75)\\.xiti\\.com/\" to=\"https://$1.xiti.com/\"/></ruleset>", "<ruleset name=\"Xiaomi.cn\" default_off=\"failed ruleset test\" f=\"Xiaomi.cn.xml\"><rule from=\"^http://xiaomi\\.cn/\" to=\"https://www.xiaomi.cn/\"/><exclusion pattern=\"^http://static\\.xiaomi\\.cn/(?!xiaomicms/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xiaomi.com (partial)\" f=\"Xiaomi.com.xml\"><exclusion pattern=\"^http://hao\\.xiaomi\\.com/816/\"/><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xiaomi.net (partial)\" f=\"Xiaomi.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xignite.com (partial)\" f=\"Xignite.xml\"><exclusion pattern=\"^http://www\\.xignite\\.com/(?:$|\\?|Documents/|market-data/|Products/|Support/)\"/><rule from=\"^http://cdn\\.xignite\\.com/\" to=\"https://d238gk3mw72oe2.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"xine-project.org\" f=\"Xine-project.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xing\" f=\"Xing.xml\"><securecookie host=\".*\\.xing\\.com$\" name=\".+\"/><rule from=\"^http://([\\w-]+\\.)?xing\\.com/\" to=\"https://$1xing.com/\"/><rule from=\"^http://x1\\.xingassets\\.com/\" to=\"https://x1.xingassets.com/\"/></ruleset>", "<ruleset name=\"Xiph.org\" f=\"Xiph.org.xml\"><securecookie host=\"^.*\\.xiph\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xiscosoft.es\" platform=\"cacert\" default_off=\"missing certificate chain\" f=\"Xiscosoft.es.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xively.com\" f=\"Xively.com.xml\"><securecookie host=\"^(?:\\.personal\\.|www\\.)?xively\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xm1 Math.net\" default_off=\"mismatched\" f=\"Xm1_Math.net.xml\"><securecookie host=\"^(?:www\\.)?xm1math\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xmarks.com (partial)\" f=\"Xmarks.xml\"><securecookie host=\"^(?:.*\\.)?xmarks.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xnet-x.net\" f=\"Xnet-x.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.xnet-x\\.net/\" to=\"https://xnet-x.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"xnimg.cn\" f=\"Xnimg.cn.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(a|s)\\.xnimg\\.cn/\" to=\"https://ssl.$1.xnimg.cn/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xparkmedia.com\" f=\"Xparkmedia.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xperia Studio (partial)\" f=\"Xperia_Studio.xml\"><rule from=\"^http://(?:www\\.)?xperiastudio\\.com/wp-content/\" to=\"https://www.xperiastudio.com/wp-content/\"/></ruleset>", "<ruleset name=\"Xperience Days.com (partial)\" f=\"Xperience-Days.xml\"><exclusion pattern=\"^http://(?:www\\.)?xperiencedays\\.com/(?!account/logon(?:$|[?/]))\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xplosion.de\" f=\"Xplosion_interactive.xml\"><securecookie host=\".\\.xplosion\\.de$\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xplr.com\" default_off=\"expired\" f=\"Xplr.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xpra.org\" f=\"Xpra.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"xramp.com\" f=\"Xramp.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"xREL.to\" f=\"Xrel.to.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"xroxy.com\" default_off=\"failed ruleset test\" f=\"Xroxy.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xsens.com (partial)\" f=\"Xsens.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xserver (partial)\" f=\"Xserver.xml\"><exclusion pattern=\"^http://(?:www\\.)?xserver\\.(?:co|ne)\\.jp/(?:\\?.*)?$\"/><rule from=\"^http://(www\\.)?xserver\\.(co|ne)\\.jp/\" to=\"https://$1xserver.$2.jp/\"/></ruleset>", "<ruleset name=\"Xsolla.com (partial)\" default_off=\"failed ruleset test\" f=\"Xsolla.xml\"><securecookie host=\"^(?:.+\\.)?xsolla\\.com$\" name=\".\"/><securecookie host=\"\\.\" name=\"^(?:__utm|_gat?$|AdRoll_vs$)\"/><rule from=\"^http://blog\\.xsolla\\.com/\" to=\"https://xsolla.com/blog/\"/><rule from=\"^http://status\\.xsolla\\.com/\" to=\"https://xsolla.statuspage.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"xt:Commerce (mismatches)\" default_off=\"mismatched\" f=\"Xt-Commerce-mismatches.xml\"><securecookie host=\"^www\\.xt-commerce\\.co\\.uk$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?xt-commerce\\.co\\.uk/\" to=\"https://www.xt-commerce.co.uk/\"/></ruleset>", "<ruleset name=\"xt:Commerce (false MCB)\" platform=\"mixedcontent\" f=\"Xt-Commerce.xml\"><securecookie host=\"^\\.\" name=\"^(?:incap_ses_\\d+|visid_incap)_\\d+$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://xt-commerce\\.com/\" to=\"https://www.xt-commerce.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XtGem.com (problematic)\" default_off=\"expired\" platform=\"mixedcontent\" f=\"XtGem.com-problematic.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XtGem.com (partial)\" f=\"XtGem.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.xtgem\\.com/\" to=\"https://xtgem.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"xtendmedia.com\" f=\"Xtendmedia.com.xml\"><rule from=\"^http://ad\\.xtendmedia\\.com/\" to=\"https://ad.rmxads.com/\"/></ruleset>", "<ruleset name=\"Xtenit (partial)\" f=\"Xtenit.xml\"><rule from=\"^http://([\\w-]+)\\.secure\\.xtenit\\.com/\" to=\"https://$1.secure.xtenit.com/\"/></ruleset>", "<ruleset name=\"xtnetwork.fr\" default_off=\"failed ruleset test\" f=\"Xtnetwork.fr.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XTREMEPAPERS.com\" f=\"Xtremepapers.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xtube.com\" platform=\"mixedcontent\" f=\"Xtube.com.xml\"><exclusion pattern=\"^http://cdn\\d\\.static\\.xtube\\.com/(?!img/|newcss/|newjs/|theme/|xtube/)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://cdn\\d\\.static\\.xtube\\.com/\" to=\"https://www.xtube.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xtwo.ne.jp (partial)\" f=\"Xtwo.ne.jp.xml\"><exclusion pattern=\"^http://www\\.xtwo\\.ne\\.jp/(?:\\?.*)?$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xubuntu.org\" f=\"Xubuntu.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"xww.ro\" f=\"Xww.ro.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.xww\\.ro/\" to=\"https://xww.ro/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"xxx24hr.com\" f=\"Xxx24hr.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"xxxbunker.com (partial)\" f=\"Xxxbunker.com.xml\"><exclusion pattern=\"^http://759425240\\.r\\.cdn77\\.net/(?:css/|images/tbc_|js/)\"/><exclusion pattern=\"^http://(?:www\\.)?xxxbunker\\.com/(?!\\w{8,}(?:-\\d)?\\.jpg|css/|(?:ajaxCommand|dmca|download|forgotPassword|iframePlayer|joinUs|privacy|video(?:List|Player|Vote))\\.php|favicon\\.ico|js/)\"/><rule from=\"^http://(?:109\\.201\\.146\\.247|759425240\\.r\\.cdn77\\.net)/\" to=\"https://xxxbunker.com/\"/><rule from=\"^http://(?:www\\.)?xxxbunker\\.com/js/functions_(\\d{4})\\.js\" to=\"https://xxxbunker.cachefly.net/js/functions_$1.js\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xyratex.com\" default_off=\"failed ruleset test\" f=\"Xyratex.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"y6xjgkgwj47us5ca.onion\" platform=\"mixedcontent\" f=\"Y6xjgkgwj47us5ca.onion.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"yBitcoin.com\" f=\"YBitcoin.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?ybitcoin\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"yBitcoin Magazine.com\" f=\"YBitcoin_Magazine.com.xml\"><securecookie host=\"^ybitcoinmagazine\\.com$\" name=\".+\"/><rule from=\"^http://www\\.ybitcoinmagazine\\.com/\" to=\"https://ybitcoinmagazine.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"YCharts.com\" f=\"YCharts.com.xml\"><securecookie host=\"^ycharts\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"YEAH!\" default_off=\"failed ruleset test\" f=\"YEAH.xml\"><rule from=\"^http://(?:www\\.)?yeahtv\\.com/\" to=\"https://www.yeahtv.com/\"/></ruleset>", "<ruleset name=\"YGTech.Tools\" default_off=\"failed ruleset test\" f=\"YGTech.Tools.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"YIFY-Torrent.org\" f=\"YIFY-Torrent.org.xml\"><securecookie host=\"^\\.yify-torrent\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"YJtag.jp\" f=\"YJtag.jp.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"YMCA of Greater St. Louis\" default_off=\"missing certificate chain\" f=\"YMCA_of_Greater_St_Louis.xml\"><securecookie host=\"^(?!\\.ymcastlouis\\.org$).\" name=\".\"/><rule from=\"^http://ymcastlouis\\.org/\" to=\"https://www.ymcastlouis.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"YMCMB Official Merch\" f=\"YMCMB_Official_Merch.xml\"><rule from=\"^http://(?:www\\.)?ymcmbofficial\\.com/stores/(account_login\\.php|images/|skins_ymcmb/)\" to=\"https://www.ymcmbofficial.com/stores/$1\"/></ruleset>", "<ruleset name=\"YMcdn.com\" f=\"YMcdn.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"YMstat.com\" f=\"YMstat.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"YP bot.net (partial)\" f=\"YP_bot.net.xml\"><exclusion pattern=\"^http://media-cache\\.ypbot\\.net/\"/><rule from=\"^http://(?:static\\.solfoinc\\.netdna-cdn\\.com|st[12]?\\.ypbot\\.net)/\" to=\"https://solfo.pimg.net/\"/></ruleset>", "<ruleset name=\"YT Channel Embed.com (partial)\" f=\"YT_Channel_Embed.com.xml\"><exclusion pattern=\"^http://ytchannelembed\\.com/+(?!favicon\\.ico|wp-content/|ytce-gallery\\.php)\"/><rule from=\"^http://www\\.ytchannelembed\\.com/\" to=\"https://ytchannelembed.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"YUI Library\" default_off=\"refused\" f=\"YUI_Library.xml\"><securecookie host=\"^yuilibrary\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ya.ru (partial)\" default_off=\"failed ruleset test\" f=\"Ya.ru.xml\"><securecookie host=\"^(?:auto|realty)\\.ya\\.ru$\" name=\".+\"/><rule from=\"^http://ya\\.ru/\" to=\"https://www.ya.ru/\"/><rule from=\"^http://(?:www\\.ewent|(?:www\\.)?(?:e[vw]|iv)ents)\\.ya\\.ru/+\" to=\"https://events.yandex.ru/\"/><rule from=\"^http://(?:www\\.)?m\\.metro\\.ya\\.ru/[^?]*\" to=\"https://m.soft.yandex.ru/metro/\"/><rule from=\"^http://sobitia\\.ya\\.ru/+\" to=\"https://events.yandex.ru/\"/><rule from=\"^http://(?:www\\.)?site\\.ya\\.ru/[^?]*\" to=\"https://site.yandex.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"YaDi.sk\" f=\"YaDi.sk.xml\"><securecookie host=\"^(?:www\\.)?yadi\\.sk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yabause.org\" f=\"Yabause.org.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yabumi.cc\" f=\"Yabumi.cc.xml\"><securecookie host=\"^\\.yabumi\\.cc$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yacuna.com\" default_off=\"failed ruleset test\" f=\"Yacuna.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yadro.ru (partial)\" default_off=\"failed ruleset test\" f=\"Yadro.ru.xml\"><securecookie host=\"^\\.yadro\\.ru$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yagi-antennas.com\" default_off=\"self-signed\" f=\"Yagi-antennas.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yaha.no\" f=\"Yaha.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yahoo-help.jp\" f=\"Yahoo-help.jp.xml\"><securecookie host=\"^www\\.yahoo-help\\.jp$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yahoo.com (false MCB)\" platform=\"mixedcontent\" f=\"Yahoo.com-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yahoo.com.tw (partial)\" f=\"Yahoo.com.tw.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yahoo.net (partial)\" f=\"Yahoo.net.xml\"><securecookie host=\"^hk\\.promotion\\.yahoo\\.net$\" name=\"^YLBID$\"/><securecookie host=\"(?:(?:fashion|promo)\\.tw\\.campaign|tw\\.discount|.+-c\\.c\\.yom\\.mail|hk\\.promotion)\\.yahoo\\.net$\" name=\".+\"/><rule from=\"^http://br\\.games\\.yahoo\\.net/img/\" to=\"https://secure.atrativa.com.br/img/\"/><rule from=\"^http://(\\w\\w\\.autocosmos|(?:m\\.)?tw\\.bigdeals|(?:fashion|house|games\\.m|marketing|promo|travel|yimg)\\.tw\\.campaign|espanol\\.cine|cinema|tw\\.(?:rimg\\.)?discount|tw\\.uimg\\.fashion|tw\\.urcosme\\.fashion|tw\\.(?:quote|screener)\\.finance|tw\\.gamedb\\.games|(?:es|fr|uk)\\.games|investor|[\\w-]+\\.c\\.yom\\.mail|tw\\.music|hk\\.promotion|(?:lib|order)\\.store|s\\.wc)\\.yahoo\\.net/\" to=\"https://$1.yahoo.net/\"/><rule from=\"^http://tw\\.(house|marketing)\\.campaign\\.yahoo\\.net/+\" to=\"https://$1.tw.campaign.yahoo.net/\"/><rule from=\"^http://developer\\.yahoo\\.net/[^?]*\" to=\"https://developer.yahoo.com/\"/><rule from=\"^http://uk\\.slot\\.games\\.yahoo\\.net/\" to=\"https://yahoogames.minver.com/\"/><rule from=\"^http://uk\\.health\\.lifestyle\\.yahoo\\.net/images/\" to=\"https://s.yimg.com/lq/lib/lsl/i/uk/\"/><rule from=\"^http://rp1\\.monday\\.vip\\.tw1\\.yahoo\\.net/\" to=\"https://tw.m.yimg.com/\"/></ruleset>", "<ruleset name=\"Yahoo! (partial)\" f=\"Yahoo.xml\"><exclusion pattern=\"^http://(?:(?:cn|kr|tw)\\.adspecs|(?:co|espanol|mx)\\.astrology|kr\\.mobile)\\.yahoo\\.com/\"/><exclusion pattern=\"^http://ca\\.local\\.yahoo\\.com/\"/><exclusion pattern=\"^http://cn\\.overview\\.mail\\.yahoo\\.com/\"/><exclusion pattern=\"^http://(?:br|es)\\.safely\\.yahoo\\.com/\"/><securecookie host=\"^ads\\.yahoo\\.com$\" name=\"^B$\"/><securecookie host=\"^\\.yahoo\\.com$\" name=\"^(?:AO|B|SSL)$\"/><securecookie host=\"^(?:ads|\\.analytics|\\w\\w\\.celebridades|\\w\\w\\.cinema|commercecentral|\\.contributor|tw\\.ysm\\.emarketing|everything|\\w\\w\\.financas|games|help|\\w\\w\\.help|homes|\\w\\w\\.local|\\.mail|\\.maps|\\.maktoob|movies|\\.?news|\\w\\w.news|\\.playerio|profile|(?:us-locdrop|video)\\.query|images\\.search|fr\\.images\\.search|\\.toolbar|\\.\\w\\w\\.tv|\\.uk|\\.?us|tw\\.uwant|\\.www)\\.yahoo\\.com$\" name=\".+\"/><securecookie host=\"^\\.bid\\.yahoo\\.com$\" name=\"^twRecentHistory$\"/><securecookie host=\"^\\.auctions\\.yahoo\\.com$\" name=\"^hkRecentHistory$\"/><securecookie host=\"^\\.zenfs\\.com$\" name=\"^BX$\"/><rule from=\"^http://i\\.acdn\\.us/\" to=\"https://s.yimg.com/ck/\"/><rule from=\"^http://(?:www\\.)?(?:rocket|y)mail\\.com/\" to=\"https://mail.yahoo.com/\"/><rule from=\"^http://fr\\.actualites\\.yahoo\\.com/.*\" to=\"https://fr.news.yahoo.com/\"/><rule from=\"^http://advertisingcentral\\.yahoo\\.com/+(?=$|\\?)\" to=\"https://advertising.yahoo.com/\"/><rule from=\"^http://(?:cl|co|pe|ve)\\.answers\\.yahoo\\.com/+\" to=\"https://espanol.answers.yahoo.com/\"/><rule from=\"^http://(au|nz)\\.astrology\\.yahoo\\.com/[^?]*\" to=\"https://$1.lifestyle.yahoo.com/horoscopes/\"/><rule from=\"^http://ca\\.astrology\\.yahoo\\.com/.*\" to=\"https://ca.shine.yahoo.com/horoscope/\"/><rule from=\"^http://(ar|mx)\\.autos\\.yahoo\\.com/+\" to=\"https://$1.autocosmos.yahoo.net/\"/><rule from=\"^http://(de|fr)\\.autos\\.yahoo\\.com/+\" to=\"https://$1.cars.yahoo.com/\"/><rule from=\"^http://(au|nz)\\.biz\\.yahoo\\.com/[^?]*\" to=\"https://$1.finance.yahoo.com/news\"/><rule from=\"^http://(ar|au|br|ca|cl|de|fr|es|hk|id|ie|in|it|jp|mx|my|no|nz|ph|sg|tw|uk|us|vn)\\.careers\\.yahoo\\.com/+\" to=\"https://careers.yahoo.com/$1/\"/><rule from=\"^http://malaysia\\.careers\\.yahoo\\.com/+\" to=\"https://careers.yahoo.com/my/\"/><rule from=\"^http://qc\\.careers\\.yahoo\\.com/+\" to=\"https://careers.yahoo.com/ca/\"/><rule from=\"^http://cars\\.yahoo\\.com/\" to=\"https://autos.yahoo.com/\"/><rule from=\"^http://(?:tw\\.help\\.cc|help\\.cc\\.tw)\\.yahoo\\.com/.*\" to=\"https://help.yahoo.com/kb/index?page=home&locale=zh_TW\"/><rule from=\"^http://cn\\.yahoo\\.com/+\" to=\"https://sg.yahoo.com/\"/><rule from=\"^http://(?:cine|espanol\\.movies)\\.yahoo\\.com/+\" to=\"https://es-us.cine.yahoo.com/\"/><rule from=\"^http://(?:cl|co|pe|ve)\\.deportes\\.yahoo\\.com/+\" to=\"https://es-us.deportes.yahoo.com/\"/><rule from=\"^http://es\\.deportes\\.yahoo\\.com/+\" to=\"https://es.eurosport.yahoo.com/\"/><rule from=\"^http://www\\.developer\\.yahoo\\.com/[^?]*\" to=\"https://developer.yahoo.com/\"/><rule from=\"^http://au\\.dir\\.yahoo\\.com/+([^?]*).*\" to=\"https://au.search.yahoo.com/web?fr=$1\"/><rule from=\"^http://(?:dk|no|ru)\\.yahoo\\.com/+\" to=\"https://www.yahoo.com/\"/><rule from=\"^http://e1\\.yahoo\\.com/+\" to=\"https://espanol.yahoo.com/\"/><rule from=\"^http://hk\\.ent\\.yahoo\\.com/+\" to=\"https://hk.celebrity.yahoo.com/\"/><rule from=\"^http://java\\.europe\\.yahoo\\.com/\" to=\"https://adgallery.zenfs.com/\"/><rule from=\"^http://fr\\.eurosport\\.yahoo\\.com/\" to=\"https://fr.sports.yahoo.com/\"/><rule from=\"^http://es\\.everything\\.yahoo\\.com/.*\" to=\"https://es.todo.yahoo.com/\"/><rule from=\"^http://fantasysports\\.yahoo\\.com/(?=$|\\?)\" to=\"https://sports.yahoo.com/fantasy\"/><rule from=\"^http://es\\.laliga\\.fantasysports\\.yahoo\\.com/+\" to=\"https://es.eurosport.yahoo.com/fantasy/la-liga/\"/><rule from=\"^http://feedback\\.yahoo\\.com/\" to=\"https://yahoo.uservoice.com/\"/><rule from=\"^http://(i)?chart\\.finance\\.yahoo\\.com/\" to=\"https://$1chart.yahoo.com/\"/><rule from=\"^http://connectedtv\\.yahoo\\.com/[^?]*\" to=\"https://smarttv.yahoo.com/\"/><rule from=\"^http://kr\\.finance\\.yahoo\\.com/\" to=\"https://tools.search.yahoo.com/kr-eol.html\"/><rule from=\"^http://(au|nz)\\.food\\.yahoo\\.com/\" to=\"https://$1.lifestyle.yahoo.com/food/\"/><rule from=\"^http://de\\.games\\.yahoo\\.com/+\" to=\"https://de.spiele.yahoo.com/\"/><rule from=\"^http://(?:id|malaysia|nz|ph)\\.games\\.yahoo\\.com/+\" to=\"https://games.yahoo.com/\"/><rule from=\"^http://ie\\.(finance|groups|lifestyle)\\.yahoo\\.com/.*\" to=\"https://uk.$1.yahoo.com/\"/><rule from=\"^http://au\\.(?:answer|forum)s\\.yahoo\\.com/[^?]*\" to=\"https://au.answers.yahoo.com/\"/><rule from=\"^http://kr\\.(?:gugi|maps|searchad)\\.yahoo\\.com/.*\" to=\"https://tools.search.yahoo.com/kr-eol.html\"/><rule from=\"^http://fr\\.help\\.yahoo\\.com/+\" to=\"https://help.yahoo.com/l/fr/yahoo/helpcentral/\"/><rule from=\"^http://help\\.cc\\.hk\\.yahoo\\.com/.*\" to=\"https://help.yahoo.com/kb/index?page=home&locale=zh_HK\"/><rule from=\"^http://(?:home|realestate)\\.yahoo\\.com/+\" to=\"https://homes.yahoo.com/\"/><rule from=\"^http://(ar|es-us|mx)\\.lifestyle\\.yahoo\\.com/+\" to=\"https://$1.mujer.yahoo.com/\"/><rule from=\"^http://ca\\.(?:lifestyle|shine)\\.yahoo\\.com/\" to=\"https://ca.shine.yahoo.com/\"/><rule from=\"^http://fr\\.local\\.yahoo\\.com/.*\" to=\"https://fr.yahoo.com/\"/><rule from=\"^http://es\\.maps\\.yahoo\\.com/.*\" to=\"https://es.search.yahoo.com/search/es?p=callejero+itinerarios&y=y\"/><rule from=\"^http://in\\.maps\\.yahoo\\.com/.*\" to=\"https://maps.yahoo.com/\"/><rule from=\"^http://mx\\.maps\\.yahoo\\.com/+\" to=\"https://espanol.maps.yahoo.com/\"/><rule from=\"^http://nz\\.maps\\.yahoo\\.com/+\" to=\"https://nz.search.yahoo.com/search/maps/\"/><rule from=\"^http://ie\\.messenger\\.yahoo\\.com/.*\" to=\"https://uk.messenger.yahoo.com/\"/><rule from=\"^http://nz\\.messenger\\.yahoo\\.com/[^?].*\" to=\"https://messenger.yahoo.com/\"/><rule from=\"^http://ie\\.mobile\\.yahoo\\.com/.*\" to=\"https://uk.mobile.yahoo.com/\"/><rule from=\"^http://tw\\.music\\.yahoo\\.com/+\" to=\"https://tw.music.yahoo.net/\"/><rule from=\"^http://(?:axis|(?:dk|no)\\.mobile|dk\\.news)\\.yahoo\\.com/.*\" to=\"https://www.yahoo.com/\"/><rule from=\"^http://es\\.movies\\.yahoo\\.com/+\" to=\"https://es.cine.yahoo.com/\"/><rule from=\"^http://(br|fr|it)\\.movies\\.yahoo\\.com/+\" to=\"https://$1.cinema.yahoo.com/\"/><rule from=\"^http://dps\\.msg\\.yahoo\\.com/\" to=\"https://ycpi-mail-dps.msg.yahoo.com/\"/><rule from=\"^http://hk\\.(?:music|tv)\\.yahoo\\.com/.*\" to=\"https://hk.celebrity.yahoo.com/music/\"/><rule from=\"^http://(ar|br|co|es|mx|pe)\\.news\\.yahoo\\.com/+\" to=\"https://$1.noticias.yahoo.com/\"/><rule from=\"^http://ie\\.news\\.yahoo\\.com/.*\" to=\"https://uk.news.yahoo.com/n/news_ireland.html\"/><rule from=\"^http://on\\.yahoo\\.com/+\" to=\"https://pilotx1.yahoo.com/\"/><rule from=\"^http://rds?\\.yahoo\\.com/\" to=\"https://us.rd.yahoo.com/\"/><rule from=\"^http://(ar|cl|co|es-us|mx|pe|ve)\\.safely\\.yahoo\\.com/+\" to=\"https://$1.seguridad.yahoo.com/\"/><rule from=\"^http://malaysia\\.safely\\.yahoo\\.com/+\" to=\"https://my.safely.yahoo.com/\"/><rule from=\"^http://cn\\.search\\.yahoo\\.com/.*\" to=\"https://sg.search.yahoo.com/\"/><rule from=\"^http://kr\\.(?:images\\.)?search\\.yahoo\\.com/.*\" to=\"https://kr.search.yahoo.com/\"/><rule from=\"^http://my\\.images\\.search\\.yahoo\\.com/\" to=\"https://malaysia.images.search.yahoo.com/\"/><rule from=\"^http://nz\\.maps\\.search\\.yahoo\\.com/+\" to=\"https://nz.search.yahoo.com/\"/><rule from=\"^http://my\\.search\\.yahoo\\.com/+\" to=\"https://malaysia.search.yahoo.com/\"/><rule from=\"^http://(de|es|fr|it|uk)\\.solutions\\.yahoo\\.com/[^?]*\" to=\"https://$1.adspecs.yahoo.com/\"/><rule from=\"^http://sport\\.yahoo\\.com/+\" to=\"https://sports.yahoo.com/\"/><rule from=\"^http://(de|es|uk)\\.sports\\.yahoo\\.com/+\" to=\"https://$1.eurosport.yahoo.com/\"/><rule from=\"^http://in\\.sports\\.yahoo\\.com/+$\" to=\"https://cricket.yahoo.com/\"/><rule from=\"^http://au\\.todaytonight\\.yahoo\\.com/+\\??$\" to=\"https://au.news.yahoo.com/today-tonight/\"/><rule from=\"^http://au\\.todaytonight\\.yahoo\\.com/[^?]*\" to=\"https://au.news.yahoo.com/today-tonight/\"/><rule from=\"^http://(au|nz)\\.travel\\.yahoo\\.com/[^?]*\" to=\"https://$1.totaltravel.yahoo.com/\"/><rule from=\"^http://ca\\.travel\\.yahoo\\.com/+\" to=\"https://travel.yahoo.com/\"/><rule from=\"^http://(my|ph)\\.travel\\.yahoo\\.com/.*\" to=\"https://$1.news.yahoo.com/travel/\"/><rule from=\"^http://uk\\.travel\\.yahoo\\.com/.*\" to=\"https://uk.lifestyle.yahoo.com/travel/\"/><rule from=\"^http://ca\\.tv\\.yahoo\\.com/+\" to=\"https://tv.yahoo.com/\"/><rule from=\"^http://pe\\.tv\\.yahoo\\.com/+\" to=\"https://es-us.tv.yahoo.com/\"/><rule from=\"^http://((?:br|ca|de|es|es-us|fr|it|mx|uk)\\.)?video\\.yahoo\\.com/+\" to=\"https://$1screen.yahoo.com/\"/><rule from=\"^http://(ar|co|in)\\.video\\.yahoo\\.com/.*\" to=\"https://$1.screen.yahoo.com/\"/><rule from=\"^http://au\\.video\\.yahoo\\.com/.*\" to=\"https://au.tv.yahoo.com/plus7/\"/><rule from=\"^http://[pv]e\\.video\\.yahoo\\.com/+\" to=\"https://es-us.screen.yahoo.com/\"/><rule from=\"^http://hk\\.video\\.yahoo\\.com/.*\" to=\"https://help.yahoo.com/kb/index?page=home&locale=zh_HK\"/><rule from=\"^http://my\\.video\\.yahoo\\.com/\" to=\"https://malaysia.video.yahoo.com/\"/><rule from=\"^http://nz\\.video\\.yahoo\\.com/+(?:\\?.*)?$\" to=\"https://nz.news.yahoo.com/video/\"/><rule from=\"^http://(ar|es)\\.weather\\.yahoo\\.com/+\" to=\"https://$1.tiempo.yahoo.com/\"/><rule from=\"^http://(cl|co|mx|pe|ve)\\.weather\\.yahoo\\.com/+\" to=\"https://$1.clima.yahoo.com/\"/><rule from=\"^http://espanol\\.weather\\.yahoo\\.com/+\" to=\"https://es-us.clima.yahoo.com/\"/><rule from=\"^http://(fr|it)\\.weather\\.yahoo\\.com/+\" to=\"https://$1.meteo.yahoo.com/\"/><rule from=\"^http://tw\\.weather\\.yahoo\\.com/.*\" to=\"https://tw.news.yahoo.com/weather-forecast/\"/><rule from=\"^http://widgets\\.yahoo\\.com/[^?]*\" to=\"https://www.yahoo.com/\"/><rule from=\"^http://((?:\\w\\w|fr-ca\\.actualites|address|\\w\\w\\.address|admanager|(?:\\w\\w|global)\\.adserver|adspecs|\\w+\\.adspecs|\\w+\\.adspecs-new|advertising|\\w\\w\\.advertising|beap\\.adx|c5a?\\.ah|(?:s-)?cookex\\.amp|(?:[aosz]|apac|y3?)\\.analytics|anc|answers|(?:\\w\\w|espanol|malaysia)\\.answers|antispam|\\w\\w\\.antispam|vn\\.antoan|au\\.apps|global\\.ard|astrology|\\w\\w\\.astrology|hk\\.(?:(?:info|f1\\.master|f1\\.page|search|store|edit\\.store|user)\\.)?auctions|autos|\\w\\w\\.autos|ar\\.ayuda|(?:clicks\\.beap|csc\\.beap|pn1|row|us)\\.bc|tw\\.bid|tw\\.(?:campaign|master|mb|page|search|store|user)\\.bid|(?:m\\.)?tw\\.bigdeals|tw\\.billing|biz|boss|(?:tw\\.partner|tw)\\.buy|(?:\\w\\w\\.)?calendar|careers|\\w\\w\\.cars|(?:\\w\\w|es-us)\\.celebridades|(?:\\w\\w\\.)?celebrity|tw\\.charity|i?chart|(?:\\w\\w|es-us)\\.cine|\\w\\w\\.cinema|(?:\\w\\w|es-us)\\.clima|migration\\.cn|(?:deveopers\\.)?commercecentral|br\\.contribuidores|(?:uk\\.)?contributor|csync|au\\.dating|(?:\\w\\w|es-us)\\.deportes|developer|tw\\.dictionary|dir|downloads|s-b\\.dp|(?:eu\\.|na\\.|sa\\.|tw\\.)?edit|tw\\.(?:ysm\\.)?emarketing|en-maktoob|\\w\\w\\.entertainment|espanol|edit\\.europe|eurosport|(?:de|es|it|uk)\\.eurosport|everything|\\w\\w\\.everything|\\w+\\.fantasysports|au\\.fango|tw\\.fashion|br\\.financas|finance|(?:\\w\\w|tw\\.chart|espanol|tw\\.futures|streamerapi)\\.finance|(?:\\w\\w|es-us)\\.finanzas|nz\\.rss\\.food|nz\\.forums|games|(?:au|ca|uk)\\.games|geo|gma|groups|(?:\\w\\w|asia|espanol|es-us|fr-ca|moderators)\\.groups|health|help|(?:\\w\\w|secure)\\.help|homes|(?:tw|tw\\.v2)\\.house|info|\\w\\w\\.info|tw\\.tool\\.ks|au\\.launch|legalredirect|(?:\\w\\w)\\.lifestyle|(?:gh\\.bouncer\\.)?login|us\\.l?rd|local|\\w\\w\\.local|m|r\\.m|\\w\\w\\.m|mail|(?:\\w\\w\\.overview|[\\w-]+(?:\\.c\\.yom)?)\\.mail|maktoob|malaysia|tw\\.(?:user\\.)?mall|maps|(?:\\w\\w|espanol|sgws2)\\.maps|messenger|(?:\\w\\w|malaysia)\\.messenger|\\w\\w\\.meteo|mlogin|mobile|(?:\\w\\w|espanol|malaysia)\\.mobile|tw\\.(?:campaign\\.)?money|tw\\.movie|movies|(?:au|ca|nz|au\\.rss|nz\\.rss|tw|uk)\\.movies|[\\w.-]+\\.msg|(?:\\w\\w|es-us)\\.mujer|music|ca\\.music|[\\w-]+\\.musica|my|add\\.my|us\\.my|de\\.nachrichten|ucs\\.netsvs|news|(?:au|ca|fr|gr|hk|in|nz|ph|nz\\.rss|sg|tw|uk)\\.news|cookiex\\.ngd|(?:\\w\\w|es-us)\\.noticias|omg|(?:\\w\\w|es-us)\\.omg|au\\.oztips|rtb\\.pclick|pilotx1|pipes|play|playerio|privacy|profile|tw\\.promo|(?:au|hk|nz)\\.promotions|publishing|(?:analytics|mailapps|media|ucs|us-locdrop|video)\\.query|hk\\.rd|(?:\\w\\w\\.|fr-ca\\.)?safely|screen|(?:\\w\\w|es-us)\\.screen|scribe|search|(?:\\w\\w|w\\w\\.blog|\\w\\w\\.dictionary|finance|\\w\\w\\.finance|images|\\w\\w\\.images|\\w\\w\\.knowledge|\\w\\w\\.lifestyle|\\w\\w\\.local|malaysia|movies|\\w\\w\\.movies|news|\\w\\w\\.news|malaysia\\.news|r|recipes|\\w\\w\\.recipes|shine|shopping|\\w\\w\\.shopping|sports|\\w\\w\\.sports|tools|au\\.tv|video|\\w\\w\\.video|malaysia\\.video)\\.search|sec|lh\\.secure|rtb\\.pclick\\.secure|security|tw\\.security|\\w\\w\\.seguranca|\\w\\w\\.seguridad|es-us\\.seguridad|\\w\\w\\.seguro|tw\\.serviceplus|settings|shine|ca\\.shine|shopping|ca\\.shopping|\\w+\\.sitios|dashboard\\.slingstone|(?:au\\.|order\\.)?smallbusiness|smarttv|rd\\.software|de\\.spiele|sports|subscribe|(?:au|ca|fr|hk|nz|ph|profiles|au\\.rss|nz\\.rss|tw)\\.sports|tw\\.stock|au\\.thehype|\\w\\w\\.tiempo|es\\.todo|toolbar|(?:\\w\\w|data|malaysia)\\.toolbar|(?:au|nz)\\.totaltravel|transparency|travel|tw\\.travel||tv|(?:ar|au|de|fr|es|es-us|it|mx|nz|au\\.rss|uk)\\.tv|tw\\.uwant|(?:mh|nz|qos|yep)\\.video|weather|(?:au|ca|hk|in|nz|sg|ph|uk|us)\\.weather|de\\.wetter|www|au\\.yel|video\\.media\\.yql|dmros\\.ysm)\\.)?yahoo\\.com/\" to=\"https://$1yahoo.com/\"/><rule from=\"^http://([\\w-]+)\\.yahoofs\\.com/\" to=\"https://$1.yahoofs.com/\"/><rule from=\"^http://yhoo\\.it/\" to=\"https://bit.ly/\"/><rule from=\"^http://(\\w+)\\.zenfs\\.com/\" to=\"https://$1.zenfs.com/\"/></ruleset>", "<ruleset name=\"Yahoo APIs.com (partial)\" f=\"Yahoo_APIs.xml\"><exclusion pattern=\"^http://yui\\.yahooapis\\.com/+(?!2\\.7\\.0/build/fonts/|pure/)\"/><rule from=\"^http://yahooapis\\.com/.*\" to=\"https://developer.yahoo.com/\"/><rule from=\"^http://yui\\.yahooapis\\.com/\" to=\"https://yui-s.yahooapis.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yahoo.co.JP (partial)\" f=\"Yahoo_Japan.xml\"><securecookie host=\"^yahoo\\.co\\.jp$\" name=\".+\"/><securecookie host=\"^www\\.yahoo\\.co\\.jp$\" name=\".+\"/><securecookie host=\"^login\\.yahoo\\.co\\.jp$\" name=\".+\"/><securecookie host=\"^m\\.yahoo\\.co\\.jp$\" name=\".+\"/><securecookie host=\"^mail\\.yahoo\\.co\\.jp$\" name=\".+\"/><securecookie host=\"^search\\.yahoo\\.co\\.jp$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yakala.co (partial)\" f=\"Yakala.co.xml\"><securecookie host=\"^(?:.*\\.)?yakala\\.co$\" name=\".+\"/><rule from=\"^http://yakala\\.co/\" to=\"https://www.yakala.co/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yale.edu (partial)\" f=\"Yale_University.xml\"><securecookie host=\"^seatgen\\.law\\.yale\\.edu$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yaler.net (partial)\" f=\"Yaler.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yam (partial)\" default_off=\"failed ruleset test\" f=\"Yam.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yamgo.com\" f=\"Yamgo.com.xml\"><securecookie host=\"^yamgo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yamli API\" f=\"YamliAPI.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yammer.com (problematic)\" default_off=\"mismatched\" f=\"Yammer-problematic.xml\"><rule from=\"^http://feedback\\.yammer\\.com/\" to=\"https://research.yammer.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yammer.com\" default_off=\"failed ruleset test\" f=\"Yammer.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://blog\\.yammer\\.com/(?:\\?.*)?$\" to=\"https://about.yammer.com/yammer-blog/\"/><rule from=\"^http://blog\\.yammer\\.com/\" to=\"https://about.yammer.com//\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yandex.by (partial)\" default_off=\"failed ruleset test\" f=\"Yandex.by.xml\"><securecookie host=\"^(?:auto|city|internet|mail|rabota|realty|translate)\\.yandex\\.by$\" name=\".+\"/><rule from=\"^http://www\\.browser\\.yandex\\.by/\" to=\"https://browser.yandex.by/\"/><rule from=\"^http://m(obile)?\\.yandex\\.by/[^?]*\" to=\"https://m$1.yandex.ru/\"/><rule from=\"^http://opera\\.yandex\\.by/+\" to=\"https://opera.yandex.ru/\"/><rule from=\"^http://www\\.rasp\\.yandex\\.by/+\" to=\"https://rasp.yandex.ru/\"/><rule from=\"^http://(?:www\\.)?(site|webmaster)\\.yandex\\.by/[^?]*\" to=\"https://$1.yandex.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yandex.com.tr (partial)\" default_off=\"failed ruleset test\" f=\"Yandex.com.tr.xml\"><securecookie host=\"^(?:ceviri|city|contact2|gorod|haber|internet|m|mail|market|(?:www\\.)?master|mobile?|oto|\\.?www)\\.yandex\\.com\\.tr$\" name=\".+\"/><rule from=\"^http://www\\.browser\\.yandex\\.com\\.tr/+\" to=\"https://browser.yandex.com.tr/\"/><rule from=\"^http://m\\.ceviri\\.yandex\\.com\\.tr/\" to=\"https://ceviri.yandex.com.tr/\"/><rule from=\"^http://expert\\.yandex\\.com\\.tr/+\" to=\"https://uzman.yandex.com.tr/\"/><rule from=\"^http://feedback\\.yandex\\.com\\.tr/+\" to=\"https://contact.yandex.com.tr/\"/><rule from=\"^http://gazeta\\.yandex\\.com\\.tr/.*\" to=\"https://haber.yandex.com.tr/mynews\"/><rule from=\"^http://help\\.yandex\\.com\\.tr/+\" to=\"https://yardim.yandex.com.tr/\"/><rule from=\"^http://www\\.mobil\\.yandex\\.com\\.tr/+\" to=\"https://mobil.yandex.com.tr/\"/><rule from=\"^http://(?:www\\.)?mobile\\.yandex\\.com\\.tr/+\" to=\"https://mobil.yandex.com.tr/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yandex.com.ua (partial)\" default_off=\"failed ruleset test\" f=\"Yandex.com.ua.xml\"><rule from=\"^http://(?:www\\.)?browser\\.yandex\\.com\\.ua/+\" to=\"https://browser.yandex.ua/\"/><rule from=\"^http://(?:www\\.)?mobile\\.yandex\\.com\\.ua/\" to=\"https://mobile.yandex.ua/\"/><rule from=\"^http://www\\.taras\\.yandex\\.com\\.ua/\" to=\"https://taras.yandex.com.ua/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yandex.com (partial)\" default_off=\"failed ruleset test\" f=\"Yandex.com.xml\"><securecookie host=\"^(?:\\.contest|feedback2|mail|partner\\.market|master|www\\.master|partner|tech|translate)\\.yandex\\.com$\" name=\".+\"/><rule from=\"^http://www\\.(browser|constructor\\.maps|video|webmaster)\\.yandex\\.com/\" to=\"https://$1.yandex.com/\"/><rule from=\"^http://(?:www\\.)?site\\.yandex\\.com/[^?]*\" to=\"https://site.yandex.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yandex.kz (partial)\" default_off=\"failed ruleset test\" f=\"Yandex.kz.xml\"><securecookie host=\"^\\.yandex\\.kz$\" name=\"^yabs-frequency$\"/><securecookie host=\"^(?:auto|city|feedback2|gorod|internet|islands|mail|www\\.master|pogoda|rabota|m\\.rabota|realty|slovari|m\\.slovari|translate)\\.yandex\\.kz$\" name=\".+\"/><rule from=\"^http://www\\.browser\\.yandex\\.kz/\" to=\"https://browser.yandex.kz/\"/><rule from=\"^http://m(obile)?\\.yandex\\.kz/[^?]*\" to=\"https://m$1.yandex.ru/\"/><rule from=\"^http://opera\\.yandex\\.kz/+\" to=\"https://opera.yandex.ru/\"/><rule from=\"^http://(?:www\\.)?(site|webmaster|yaca)\\.yandex\\.kz/[^?]*\" to=\"https://$1.yandex.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yandex.mobi\" f=\"Yandex.mobi.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yandex.net (partial)\" default_off=\"failed ruleset test\" f=\"Yandex.net.xml\"><exclusion pattern=\"^http://(?:jgo|vec\\d+|stv\\d+)\\.maps\\.yandex\\.net/\"/><exclusion pattern=\"^http://[^.]+-tub(?:-[^.]+)?\\.yandex\\.net/\"/><exclusion pattern=\"^http://suggest-[a-z]+\\.yandex\\.net/\"/><exclusion pattern=\"^http://[^.]+\\.video\\.yandex\\.net/\"/><exclusion pattern=\"^http://st\\.kp\\.yandex\\.net/crossdomain\\.xml\"/><exclusion pattern=\"^http://st\\.kp\\.yandex\\.net/shab/chart_settings/\"/><exclusion pattern=\"^http://(?:direct|elements?|mobile\\.photo|pythonbp)\\.yandex\\.net/\"/><rule from=\"^http://(?:www\\.)?yandex\\.net/+\" to=\"https://yandex.ru/\"/><rule from=\"^http://(?:www\\.)?([^.]+)\\.yandex\\.net/\" to=\"https://$1.yandex.net/\"/><rule from=\"^http://(internetometr\\.download\\.cdn|sandbox\\.api\\.maps|0\\d\\.pvec\\.maps)\\.yandex\\.net/\" to=\"https://$1.yandex.net/\"/><rule from=\"^http://([^.]+)\\.([^.]+)\\.yandex\\.net/\" to=\"https://$1.$2.yandex.net/\"/></ruleset>", "<ruleset name=\"Yandex.st\" f=\"Yandex.st.xml\"><rule from=\"^http://(?:www\\.)?([^.]+)\\.yandex\\.st/\" to=\"https://$1.yandex.st/\"/><rule from=\"^http://(?:www\\.)?yandex\\.st/\" to=\"https://yandex.st/\"/></ruleset>", "<ruleset name=\"Yandex.ua (partial)\" default_off=\"failed ruleset test\" f=\"Yandex.ua.xml\"><securecookie host=\"^\\.yandex\\.ua$\" name=\"^(?:geo_sync|yabs-frequency)$\"/><securecookie host=\"^(?:(?:auto|city|gorod|mail|mobile|slovari|stat|translate|\\.?www)\\.)?yandex\\.ua$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yandex\" f=\"Yandex.xml\"><exclusion pattern=\"^http://uslugi\\.yandex\\.ru/($|arr\\.png|index\\.css)\"/><exclusion pattern=\"^http://(?:bar-widgets|cards|cs-ellpic|cs-thumb|dzen|encyclopedia|lingvo|ll|mirror|newmoscow|news|openid|presocial|wdgt)\\.yandex\\.ru/\"/><exclusion pattern=\"^http://video\\.yandex\\.ru/iframe/\"/><exclusion pattern=\"^http://streaming\\.video\\.yandex\\.ru/\"/><exclusion pattern=\"^http://[^.]+\\.video\\.yandex\\.ru/q-upload/\"/><exclusion pattern=\"^http://narod\\d*\\.yandex\\.ru/\"/><exclusion pattern=\"^http://suggest(?!-maps\\.)(?:-[a-z]+)?\\.yandex\\.ru/\"/><exclusion pattern=\"^http://content\\.webmaster\\.yandex\\.ru/\"/><exclusion pattern=\"^http://m\\.yandex\\.ru/\"/><exclusion pattern=\"^http://(?:copy|hghltd|print|market-click\\d+|wrz)\\.yandex\\.ru/\"/><exclusion pattern=\"^http://panoramas\\.api-maps\\.yandex\\.ru\"/><exclusion pattern=\"^http://(?:jgo|vec\\d+|stv\\d+)\\.maps\\.yandex\\.ru/\"/><exclusion pattern=\"^http://[^.]+-tub(?:-[^.]+)?\\.yandex\\.ru/\"/><exclusion pattern=\"^http://(?:business|collection|kapersky|large|market|nahodki|navigator|online|punto|zakladki)\\.yandex\\.ru/\"/><exclusion pattern=\"^http://soft\\.yandex\\.ru/\"/><exclusion pattern=\"http://(?:apps|(?:android-)?us\\.apps|appsearch|bm|contact2?|dns|family|gazeta|interactive-answers|m\\.internet|islands|kaspersky|labs|(?:m|www)\\.market|(?:m|pda)\\.money|(?:m|pda|www)\\.news|notanymore|op|prestable-pogoda|api\\.rasp|repo|shad|static-maps|terms|uslugi|webcal|interactive-answers\\.webmaster)\\.yandex\\.ru/\"/><securecookie host=\"(?:academy|afisha|auto|pda\\.auto|bs|\\.?captcha|(?:intern\\.|shad\\.)?contest|display|events|feedback2|\\.?hw|(?:ipv[46]\\.)?internet|mail|pda\\.mail|partner\\.market|(?:www\\.)?master|mc|mobile|pass|pogoda|rabota|m\\.rabota|\\.?suggests\\.rasp|realty|partner\\.realty|slovari|startups|stat|(?:developer\\.)?tech|translate|\\.video)\\.yandex\\.ru$\" name=\".*\"/><rule from=\"^http://dict\\.yandex\\.ru/+\" to=\"https://slovari.yandex.ru/\"/><rule from=\"^http://www\\.ewent\\.yandex\\.ru/\" to=\"https://www.ewent.yandex.ru/\"/><rule from=\"^http://favicon\\.yandex\\.ru/\" to=\"https://favicon.yandex.net/\"/><rule from=\"^http://(?:www\\.)?m\\.metro\\.yandex\\.ru/[^?]*\" to=\"https://m.soft.yandex.ru/metro/\"/><rule from=\"^http://mobile-feedback\\.yandex\\.ru/\" to=\"https://m.feedback.yandex.ru/\"/><rule from=\"^http://skype\\.yandex\\.ru/+\" to=\"https://yandex.ru/promo/skype/\"/><rule from=\"^http://twitter\\.yandex\\.ru/+\" to=\"https://www.yandex.ru/\"/><rule from=\"^http://upics\\.yandex\\.ru/\" to=\"https://upics.yandex.net/\"/><rule from=\"^http://(www\\.)?(academy|adresa|atlas|ewents|[ei]vents?|export|fotki|internet|karti|maps|(?:beta|constructor|m|n|router-quality)\\.maps|master|metro|mshad|music|maps\\.pda|pogoda|prefetch-maps|probki|research|site|startups|tech|tv|video|weather|yaca)\\.yandex\\.ru/\" to=\"https://$1$2.yandex.ru/\"/><rule from=\"^http://((?:\\d\\.downloader\\.disk|sandbox\\.api\\.maps|www)\\.)?yandex\\.ru/\" to=\"https://$1yandex.ru/\"/><rule from=\"^http://(?:www\\.)?([^.]+)\\.yandex\\.ru/\" to=\"https://$1.yandex.ru/\"/><rule from=\"^http://([^.]+)\\.([^.]+)\\.yandex\\.ru/\" to=\"https://$1.$2.yandex.ru/\"/></ruleset>", "<ruleset name=\"Yandex ad exchange.net\" f=\"Yandex_ad_exchange.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yannick.net\" default_off=\"redirects to http\" f=\"Yannick.net.xml\"><exclusion pattern=\"^http://(?:www\\.)?yannick\\.net/(?:$|css/|images/)\"/><securecookie host=\"^\\.yannick\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yaprobki.ru (partial)\" f=\"Yaprobki.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"YaqeenInstitute.org\" f=\"YaqeenInstitute.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yard Digital.com\" default_off=\"expired, self-signed\" f=\"Yard_Digital.com.xml\"><securecookie host=\"^yarddigital\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?yarddigital\\.com/\" to=\"https://yarddigital.com/\"/></ruleset>", "<ruleset name=\"Yastatic.net\" f=\"Yastatic.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yatima.org\" f=\"Yatima.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ybin.me\" f=\"Ybin.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yeah.net (partial)\" f=\"Yeah.net.xml\"><exclusion pattern=\"^http://mail\\.yeah\\.net/(?!favicon\\.ico)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"yed24hr.com\" default_off=\"mismatched, self-signed\" f=\"Yed24hr.com.xml\"><securecookie host=\"^(?:w*\\.)?yed24hr\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?mov(?:24hr|zeed)\\.com/\" to=\"https://www.yed24hr.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"yedxxx24hr.com\" f=\"Yedxxx24hr.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yeggi.com\" f=\"Yeggi.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yellow Pages IMA (partial)\" default_off=\"failed ruleset test\" f=\"Yellow-Pages-IMA.xml\"><exclusion pattern=\"^http://www\\.localsearchassociation\\.org/(?!Integrations/|Modules/|SiteTypes/Default\\.master\\.css\\.aspx|[Uu]ploads/[Pp]ublic/)\"/><rule from=\"^http://(?:www\\.)?ypassociation\\.org/\" to=\"https://localsearchassociation.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"YellowBot.com (partial)\" f=\"YellowBot.xml\"><securecookie host=\"^login\\.yellowbot\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"YellowPages.ca (problematic)\" default_off=\"mismatched\" f=\"YellowPages.ca-problematic.xml\"><securecookie host=\"^(?:\\w+\\.aws\\.|www\\.)?yellowpages\\.ca$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?yellowpages\\.ca/\" to=\"https://www.yellowpages.ca/\"/><rule from=\"^http://(\\w+)\\.aws\\.yellowpages\\.ca/\" to=\"https://$1.aws.yellowpages.ca/\"/></ruleset>", "<ruleset name=\"YellowPages.ca (partial)\" f=\"YellowPages.ca.xml\"><securecookie host=\"^\\.yellowpages\\.ca$\" name=\"^psid_ypca$\"/><securecookie host=\"^secure\\.yellowpages\\.ca$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yellow Pages Opt Out.com\" f=\"Yellow_Pages_Opt_Out.com.xml\"><securecookie host=\"^(?:.*\\.)?yellowpagesoptout\\.com$\" name=\".*\"/><rule from=\"^http://yellowpagesoptout\\.com/\" to=\"https://www.yellowpagesoptout.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yelp\" f=\"Yelp.xml\"><exclusion pattern=\"^http://help\\.yelp\\.com/\"/><securecookie host=\"^\\.\" name=\"^__(?:cfduid|qca)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yemeksepeti.com\" f=\"Yemeksepeti.xml\"><securecookie host=\"^(?:.*\\.)?yemeksepeti\\.com$\" name=\".*\"/><rule from=\"^http://yemeksepeti\\.com/\" to=\"https://www.yemeksepeti.com/\"/><rule from=\"^http://images\\.yemeksepetim\\.com/\" to=\"https://images.yemeksepeti.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yeshiva University\" default_off=\"failed ruleset test\" f=\"Yeshiva.xml\"><rule from=\"^http://(?:www\\.)?yu\\.edu/\" to=\"https://yu.edu/\"/></ruleset>", "<ruleset name=\"Yesss.at\" default_off=\"failed ruleset test\" f=\"Yesss.at.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ygnition (partial)\" default_off=\"failed ruleset test\" f=\"Ygnition.xml\"><securecookie host=\"^(?:.*\\.)?ygnition\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yho.com\" f=\"Yho.com.xml\"><securecookie host=\"^yho\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"YieldSelect.com\" default_off=\"failed ruleset test\" f=\"YieldSelect.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"YieldBot (partial)\" f=\"Yieldbot.xml\"><rule from=\"^http://cdn\\.yb0t\\.com/\" to=\"https://dqckmuwjiytix.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yieldlab.de\" default_off=\"expired, self-signed\" f=\"Yieldlab.de.xml\"><securecookie host=\"^www\\.yieldlab\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yieldlab.net\" f=\"Yieldlab.net.xml\"><securecookie host=\"^\\.yieldlab\\.net$\" name=\"^id$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yieldoptimizer.com\" f=\"Yieldoptimizer.com.xml\"><securecookie host=\"^\\.yieldoptimizer\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yimg.com (partial)\" f=\"Yimg.com.xml\"><securecookie host=\"^\\.s\\.yimg\\.com$\" name=\".+\"/><rule from=\"^http://ads\\.yimg\\.com/\" to=\"https://s.yimg.com/\"/><rule from=\"^http://(?:d\\d?|(?:a\\.)?l\\d?|us\\.(?:a2|i1|js2?))\\.yimg\\.com/(?:a|d|us(?:\\.js)?\\.yimg\\.com)/\" to=\"https://s.yimg.com/lq/\"/><rule from=\"^http://(?:d\\d?|au\\.i1|(?:a\\.)?l\\d?|mail)\\.yimg\\.com/(ao|bm|ck|cv|dh|ea|ep|f|fv|fz|iu|jc|kj|kx|lo|mi|mq|na|nt|ok|pj|pp|pu|qa|qj|qk|qo|rb|rf|rq|rx|rz|sr|ss|tu|ugcwidgets|zz|aunz\\.yimg\\.com)/\" to=\"https://s.yimg.com/$1/\"/><rule from=\"^http://(?:d\\d?|(?:a\\.)?l\\d?|us\\.(?:a1|js1?)|mail|xa)\\.yimg\\.com/(bb|bt|dg|(?:eur|us)\\.yimg\\.com|fg|fp|[ghijqt]|gh|ho|j[ghn]|kq|lh|lm|ml|nn|nq|os|pb|pv|qb|qw|qx|qz|r[luw]|sc|ts)/\" to=\"https://s.yimg.com/zz/$1/\"/><rule from=\"^http://(tw\\.bid|tw\\.buy|ci-[\\da-f]{10}-\\d{8}\\.http\\.atlas\\.cdn|ec|ext|tw\\.m|s(?:1|2|3|ec|p)?|tw|qos\\.video)\\.yimg\\.com/\" to=\"https://$1.yimg.com/\"/><rule from=\"^http://s?(ep|xh|xp)\\.yimg\\.com/\" to=\"https://s$1.yimg.com/\"/><rule from=\"^http://movienewsletters\\.o\\.yimg\\.com/\" to=\"https://www.movienewsletters.net/\"/><rule from=\"^https://s\\.yimg\\.com/common/img/\" to=\"https://s.yimg.com/kj/ydn/common/img/\"/></ruleset>", "<ruleset name=\"Yimg.jp (partial)\" f=\"Yimg.jp.xml\"><exclusion pattern=\"^http://.+\\..+\\.c\\.yimg\\.jp/\"/><rule from=\"^http://(?:a[hi]?|[ik])\\.yimg\\.jp/\" to=\"https://s.yimg.jp/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yle.fi (partial)\" f=\"Yle.fi.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ynet.io\" default_off=\"failed ruleset test\" f=\"Ynet.io.xml\"><securecookie host=\"^\\.ynet\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yocto Project.org (partial)\" f=\"Yocto_Project.org.xml\"><securecookie host=\"^(?:.*\\.)?yoctoproject\\.org$\" name=\".+\"/><rule from=\"^http://((?:bugzilla|eula-downloads|git|lists|wiki|www)\\.)?yoctoproject\\.org/\" to=\"https://$1yoctoproject.org/\"/></ruleset>", "<ruleset name=\"Yokl.com\" default_off=\"failed ruleset test\" f=\"Yokl.com.xml\"><securecookie host=\"^yokl\\.com$\" name=\".+\"/><rule from=\"^http://www\\.yokl\\.com/\" to=\"https://yokl.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"YoklAPI.com\" default_off=\"failed ruleset test\" f=\"YoklAPI.com.xml\"><rule from=\"^http://yoklapi\\.com/\" to=\"https://api.yokl.com/\"/></ruleset>", "<ruleset name=\"Yooco.de\" f=\"Yooco.de.xml\"><securecookie host=\"^(www\\.)?yooco\\.de\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yoox.biz\" f=\"Yoox.biz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yopto.com\" default_off=\"mismatched\" f=\"Yopto.com.xml\"><securecookie host=\"^(?:www)\\.yopto\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"York College of Nebraska\" f=\"York.edu.xml\"><rule from=\"^http://york\\.edu/\" to=\"https://www.york.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"York College of New York\" default_off=\"missing certificate chain\" f=\"YorkNY.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"York Fitness\" f=\"York_Fitness.xml\"><securecookie host=\"^www\\.yorkfitness\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yosemite News.info\" f=\"Yosemite_News.info.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yospace.com (partial)\" f=\"Yospace.com.xml\"><securecookie host=\"^cds1\\.yospace\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yottaa.net (partial)\" f=\"Yottaa.net.xml\"><rule from=\"^http://cdn-(eu|[\\da-f]{12})\\.yottaa\\.net/\" to=\"https://cdn-$1.yottaa.net/\"/></ruleset>", "<ruleset name=\"Yottaa (partial)\" f=\"Yottaa.xml\"><securecookie host=\"^apps(?:-dev|-dev-new)?\\.yottaa\\.com$\" name=\".+\"/><rule from=\"^http://ap(i|ps)(-dev|-dev-new)?\\.yottaa\\.com/\" to=\"https://ap$1$2.yottaa.com/\"/></ruleset>", "<ruleset name=\"YouCanBook.Me\" default_off=\"failed ruleset test\" f=\"YouCanBook.Me.xml\"><securecookie host=\".+\\.youcanbook\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"YouCaring.com (partial)\" f=\"YouCaring.com.xml\"><exclusion pattern=\"^http://www\\.youcaring\\.com/+(?!create-fundraiser\\.aspx|create-fundraiser-account\\.aspx|emergency-fundraiser/[\\w-]+/\\d+/donate|external-link\\.htm|favicon\\.ico|img/)\"/><exclusion pattern=\"^http://static\\.youcaring\\.com/js/\"/><securecookie host=\"^youcaring\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"YouGov.de\" f=\"YouGov.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"YouMail.com (partial)\" f=\"YouMail.xml\"><securecookie host=\"^\\.youmail\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"You Need A Budget\" f=\"YouNeedABudget.xml\"><exclusion pattern=\"^http://(www\\.)?youneedabudget\\.com/blog/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"YouSendIt\" default_off=\"failed ruleset test\" f=\"YouSendIt.xml\"><securecookie host=\"^(?:www)?\\.yousendit\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?yousendit\\.com/\" to=\"https://www.yousendit.com/\"/><rule from=\"^http://a15\\.ysicdo002\\.com/\" to=\"https://a15.ysicdo002.com/\"/></ruleset>", "<ruleset name=\"YouTube\" f=\"YouTube.xml\"><exclusion pattern=\"^http://www\\.youtube\\.com/apiplayer\"/><securecookie host=\"^\\.youtube\\.com\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"YouVersion\" f=\"YouVersion.xml\"><securecookie host=\"^(?:www)?\\.(?:bible|youversion)\\.com$\" name=\".+\"/><securecookie host=\"^\\.biblesociety\\.co\\.za$\" name=\"^_youversion-web_session$\"/><rule from=\"^http?://(?:www\\.)?(bible|yourversion)\\.com/\" to=\"https://www.$1.com/\"/><rule from=\"^http://bibles\\.biblesociety\\.co\\.za/\" to=\"https://bibles.biblesociety.co.za/\"/></ruleset>", "<ruleset name=\"YouVisit.com\" f=\"YouVisit.com.xml\"><securecookie host=\"^(?:www\\.)?youvisit\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"You Betrayed us.org\" f=\"You_Betrayed_us.org.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Youku.com\" default_off=\"failed ruleset test\" f=\"Youku.com.xml\"><rule from=\"^http://res\\.youku\\.com/\" to=\"https://res.ykimg.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Youm7.com (partial)\" default_off=\"failed ruleset test\" f=\"Youm7.com.xml\"><securecookie host=\"^\\.youm7\\.com$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Youmix (partial)\" default_off=\"failed ruleset test\" f=\"Youmix.xml\"><rule from=\"^http://(t\\.(album|track)|static)\\.youmix\\.co\\.uk/\" to=\"https://s3.amazonaws.com/$1.youmix.co.uk/\"/></ruleset>", "<ruleset name=\"Young-Pirates.Eu\" default_off=\"failed ruleset test\" f=\"Young-Pirates.Eu.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"YoungMinds.org.uk\" f=\"YoungMinds.org.uk.xml\"><securecookie host=\"^www\\.youngminds\\.org\\.uk$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?youngminds\\.org\\.uk/\" to=\"https://www.youngminds.org.uk/\"/></ruleset>", "<ruleset name=\"Young Rewired State.org\" default_off=\"failed ruleset test\" f=\"Young_Rewired_State.org.xml\"><securecookie host=\"^\\.?youngrewiredstate\\.org$\" name=\".+\"/><rule from=\"^http://www\\.youngrewiredstate\\.org/\" to=\"https://youngrewiredstate.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"younited.com (partial)\" f=\"Younited.com.xml\"><securecookie host=\"^\\.younited\\.com$\" name=\".+\"/><rule from=\"^http://((?:account|app|community|ticket|www)\\.)?younited\\.com/\" to=\"https://$1younited.com/\"/></ruleset>", "<ruleset name=\"Your-File-System.com\" default_off=\"failed ruleset test\" f=\"Your-File-System.com.xml\"><securecookie host=\"^(?:www\\.)?your-file-system\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Your Freedom\" f=\"Your-Freedom.xml\"><rule from=\"^http://(?:www\\.)?your-freedom\\.net/\" to=\"https://www.your-freedom.net/\"/></ruleset>", "<ruleset name=\"Your Mailing List Provider\" f=\"Your-Mailing-List-Provider.xml\"><securecookie host=\"^(?:chiclet|www)\\.ymlp\\.com$\" name=\".+\"/><rule from=\"^(?:https://|http://(?:www\\.)?)ymlp\\.com/\" to=\"https://www.ymlp.com/\"/><rule from=\"^http://chiclet\\.ymlp\\.com/\" to=\"https://chiclet.ymlp.com/\"/><rule from=\"^http://(?:www\\.)?yourmailinglistprovider\\.com/\" to=\"https://www.ymlp.com/\"/></ruleset>", "<ruleset name=\"YourBittorrent.com (partial)\" f=\"YourBittorrent.xml\"><securecookie host=\"^\\.yourbittorrent\\.com$\" name=\".+\"/><rule from=\"^http://www\\.yourbittorrent\\.com/\" to=\"https://yourbittorrent.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"YourLogicalFallacyIs.com\" f=\"YourLogicalFallacyIs.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"YourMechanic.com\" f=\"YourMechanic.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"YourMembership.com\" default_off=\"missing certificate chain\" f=\"YourMembership.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"YourPSHome.net\" default_off=\"failed ruleset test\" f=\"YourPSHome.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Your Date Link\" default_off=\"failed ruleset test\" f=\"Your_Date_Link.xml\"><securecookie host=\"^(?:w*\\.)?yourdatelink\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"your Karma.com\" f=\"Your_Karma.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Your Local Edge.com\" default_off=\"failed ruleset test\" f=\"Your_Local_Edge.com.xml\"><securecookie host=\"^\\.yourlocaledge\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?yourlocaledge\\.com/\" to=\"https://yourlocaledge.com/\"/></ruleset>", "<ruleset name=\"Your Sole.com\" f=\"Your_Sole.com.xml\"><securecookie host=\"^\\.yoursole\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?yoursole\\.com/\" to=\"https://secure.yoursole.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Your Support Services.co.uk\" f=\"Your_Support_Services.co.uk.xml\"><rule from=\"^http://(?:www\\.)?yoursupportservices\\.co\\.uk/\" to=\"https://www.yoursupportservices.co.uk/\"/></ruleset>", "<ruleset name=\"Your Video Host.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Your_Video_Host.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"yourcounciljobs.co.uk\" default_off=\"failed ruleset test\" f=\"Yourcounciljobs.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"yourfone.de\" f=\"Yourfone.de.xml\"><securecookie host=\"^.*\\.yourfone\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?yourfone\\.de/\" to=\"https://www.yourfone.de/\"/><rule from=\"^http://(?:www\\.)?(gfx|handyshop|hilfe)\\.yourfone\\.de/\" to=\"https://$1.yourfone.de/\"/></ruleset>", "<ruleset name=\"Yourhosting\" f=\"Yourhosting.xml\"><securecookie host=\"^.*\\.yourhosting\\.nl$\" name=\".*\"/><rule from=\"^http://webmail\\.server1\\.firstfind\\.nl/(?:.*)\" to=\"https://webmail.yourhosting.nl/\"/><rule from=\"^http://(webmail\\.|www\\.)?yourhosting\\.nl/\" to=\"https://$1yourhosting.nl/\"/></ruleset>", "<ruleset name=\"YoursAV.com\" default_off=\"failed ruleset test\" f=\"YoursAV.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"YoursAV.me\" default_off=\"self-signed\" f=\"YoursAV.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yourvideofile.org\" f=\"Yourvideofile.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"yroo.com\" f=\"Yroo.com.xml\"><securecookie host=\"^(?:\\.|www\\.)?yroo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Youngstown State University (partial)\" platform=\"mixedcontent\" f=\"Ysu.edu.xml\"><rule from=\"^http://(www\\.)?ysu\\.edu/\" to=\"https://swww.ysu.edu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Youngstown State University Bookstore\" default_off=\"failed ruleset test\" f=\"Ysubookstore.com.xml\"><rule from=\"^http://(?:www\\.)?ysubookstore\\.com/\" to=\"https://www.ysubookstore.com/\"/></ruleset>", "<ruleset name=\"yt-dl.org\" f=\"Yt-dl.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yubico.com (partial)\" default_off=\"failed ruleset test\" f=\"Yubico.xml\"><securecookie host=\"^(?:.+\\.)?yubico\\.com$\" name=\".*\"/><rule from=\"^http://static\\.yubico\\.com/\" to=\"https://www.yubico.com/static/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yuku (partial)\" f=\"Yuku.xml\"><rule from=\"^http://(images|static)\\.yuku\\.com/\" to=\"https://s3.amazonaws.com/$1.yuku.com/\"/></ruleset>", "<ruleset name=\"Yumpu.com (partial)\" f=\"Yumpu.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"YunOS.com (false MCB)\" platform=\"mixedcontent\" f=\"YunOS.com-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"YunOS.com (partial)\" f=\"YunOS.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yunbi.com (partial)\" f=\"Yunbi.com.xml\"><securecookie host=\"^yunbi\\.com$\" name=\".+\"/><rule from=\"^http://(?:www|yun)\\.yunbi\\.com/\" to=\"https://yunbi.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"YunoHost.org\" default_off=\"failed ruleset test\" f=\"YunoHost.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yuri-ism\" f=\"Yuri-ism.xml\"><rule from=\"^http://(download|reader)\\.yuri-ism\\.com/\" to=\"https://www.yuri-ism.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yuri.org.uk\" f=\"Yuri.org.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ywxi.net\" f=\"Ywxi.net.xml\"><securecookie host=\"^cdn\\.ywxi\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZB45.nl\" f=\"ZB45.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"zCarot.com\" f=\"ZCarot.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZComm.org\" f=\"ZComm.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZDNet (partial)\" f=\"ZDNet.xml\"><exclusion pattern=\"^http://(?:www\\.)?zdnet\\.com\\.au/(?!secure-au\\.imrworldwide\\.com/)\"/><rule from=\"^http://(?:www\\.)?zdnet\\.com\\.au/secure-au\\.imrworldwide\\.com/\" to=\"https://secure-au.imrworldwide.com/\"/><rule from=\"^http://om\\.zdnet\\.com\\.au/\" to=\"https://zdau-zdnetbeta.122.2o7.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZDTronic.com\" f=\"ZDTronic.xml\"><securecookie host=\".\\.zdtronic\\.com$\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZDbb.net\" f=\"ZDbb.net.xml\"><securecookie host=\"^\\.zdbb\\.net$\" name=\".+\"/><rule from=\"^http://static\\.zdbb\\.net/\" to=\"https://d8r7hw7bvlsxi.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZDmcirc.com\" default_off=\"missing certificate chain\" f=\"ZDmcirc.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZERODIUM.com\" f=\"ZERODIUM.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZMap.io\" f=\"ZMap.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZONZA.tv\" f=\"ZONZA.tv.xml\"><securecookie host=\"^[.w]\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZOTAC\" f=\"ZOTAC.xml\"><securecookie host=\"^www\\.zotac\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZOUM.ca\" default_off=\"failed ruleset test\" f=\"ZOUM.xml\"><securecookie host=\"^(?:www\\.)?zoum\\.ca$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZPChips.com\" default_off=\"broken\" f=\"ZPChips.com.xml\"><securecookie host=\"^\\.zpchips\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZQTK.net\" f=\"ZQTK.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZTunnel.com\" default_off=\"failed ruleset test\" f=\"ZTunnel.xml\"><securecookie host=\"^(?:w*\\.)?ztunnel\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZUNO.cz\" default_off=\"failed ruleset test\" f=\"ZUNO.cz.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZUNO.eu\" f=\"ZUNO.eu.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZUNO.sk\" default_off=\"failed ruleset test\" f=\"ZUNO.sk.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZUS.pl (partial)\" default_off=\"failed ruleset test\" f=\"ZUS.pl.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZXIDP.org\" default_off=\"missing certificate chain\" f=\"ZXIDP.org.xml\"><rule from=\"^http://(?:www\\.)?zxidp\\.org/\" to=\"https://zxidp.org/\"/></ruleset>", "<ruleset name=\"ZYVOXassist.com\" f=\"ZYVOXassist.com.xml\"><rule from=\"^http://zyvoxassist\\.com/\" to=\"https://www.zyvoxassist.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"zZounds.com\" default_off=\"failed ruleset test\" f=\"ZZounds.com.xml\"><securecookie host=\"^(?:delivery)?\\.zzounds\\.com$\" name=\".+\"/><rule from=\"^http://c1\\.zzounds\\.com/\" to=\"https://c5.zzounds.com/\"/><rule from=\"^http://c2\\.zzounds\\.com/\" to=\"https://c6.zzounds.com/\"/><rule from=\"^http://c3\\.zzounds\\.com/\" to=\"https://c7.zzounds.com/\"/><rule from=\"^http://c4\\.zzounds\\.com/\" to=\"https://c8.zzounds.com/\"/><rule from=\"^http://cachepe\\.zzounds\\.com/\" to=\"https://delivery.zzounds.com/\"/><rule from=\"^http://((?:c\\d+|delivery|www)\\.)?zzounds\\.com/\" to=\"https://$1zzounds.com/\"/></ruleset>", "<ruleset name=\"Z Natural Foods.com\" f=\"Z_Natural_Foods.com.xml\"><securecookie host=\"^\\.znaturalfoods\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zabbix.com (partial)\" f=\"Zabbix.xml\"><exclusion pattern=\"^http://(?:www\\.)?zabbix\\.com/(?!forum(?:$|[?/]))\"/><securecookie host=\"^(?:www\\.)?zabbix\\.com$\" name=\"^bbsessionhash$\"/><securecookie host=\"^support\\.zabbix\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zacks Investment Research (partial)\" f=\"Zacks_Investment_Research.xml\"><securecookie host=\"^\\.zacks\\.com$\" name=\"^s_vi$\"/><rule from=\"^http://(?:www\\.)?zacks\\.com/(css/|(?:[\\w-]+/)?images/|registration)\" to=\"https://www.zacks.com/$1\"/><rule from=\"^http://(smetrics|1\\.widget3|woas)\\.zacks\\.com/\" to=\"https://$1.zacks.com/\"/><rule from=\"^http://cloud\\.staticzacks\\.net/\" to=\"https://b7d61a7c6b8c307bf531-a92a66b9587e2a0aa805bd4e70b98407.ssl.cf2.rackcdn.com/\"/></ruleset>", "<ruleset name=\"Zadara Storage.com (false MCB)\" platform=\"mixedcontent\" f=\"Zadara_Storage.com-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zadara Storage.com (partial)\" f=\"Zadara_Storage.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zaehlwerk.net\" default_off=\"failed ruleset test\" f=\"Zaehlwerk.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"zagony.ru\" default_off=\"self-signed\" f=\"Zagony.ru.xml\"><securecookie host=\"^\\.?zagony\\.ru$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?zagony\\.ru/\" to=\"https://zagony.ru/\"/></ruleset>", "<ruleset name=\"Zaif.jp\" f=\"Zaif.jp.xml\"><securecookie host=\"^zaif\\.jp$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zakir D.com\" f=\"Zakir_D.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zakonyprolidi.cz\" default_off=\"failed ruleset test\" f=\"Zakonyprolidi.cz.xml\"><securecookie host=\"^(?:www\\.)?zakonyprolidi\\.cz$\" name=\"\\.AUTH\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zalando\" f=\"Zalando.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zam Network (partial)\" default_off=\"failed ruleset test\" f=\"Zam.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zamg.ac.at\" f=\"Zamg.ac.at.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zammad.com\" f=\"Zammad.com.xml\"><securecookie host=\"^(www.|online.)?zammad\\.com\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zammad.org\" f=\"Zammad.org.xml\"><securecookie host=\"^(www.)?zammad\\.org\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zamzar.com (partial)\" f=\"Zamzar.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zanesville Times Recorder.com (partial)\" f=\"Zanesville_Times_Recorder.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zanox.com (false MCB)\" platform=\"mixedcontent\" f=\"Zanox.com-falsemixed.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zanox.com (partial)\" default_off=\"failed ruleset test\" f=\"Zanox.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zap2it.com (partial)\" default_off=\"expired, mismatched\" f=\"Zap2it.xml\"><securecookie host=\"^www\\.zap2it\\.com$\" name=\".+\"/><rule from=\"^http://image-cdn\\.zap2it\\.com/\" to=\"https://d1mxyp5ceukbya.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZapChain.com\" default_off=\"failed ruleset test\" f=\"ZapChain.com.xml\"><rule from=\"^http://zapchain\\.com/\" to=\"https://www.zapchain.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Zap Lab.com\" default_off=\"failed ruleset test\" f=\"Zap_Lab.xml\"><securecookie host=\"^(?:.*\\.)?thezaplab\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zappos (partial)\" f=\"Zappos.xml\"><rule from=\"^http://(?:www\\.)?zappos\\.com/(account(?:$|\\?|/)|(?:assets|boutiques|css|images|imgs?|styles)/)\" to=\"https://secure-www.zappos.com/$1\"/><rule from=\"^http://(?:www\\.)?zappos\\.com/[\\w\\-]+/imgs/\" to=\"https://secure-www.zappos.com/imgs/\"/><rule from=\"^http://secure-www\\.zappos\\.com/\" to=\"https://secure-www.zappos.com/\"/><rule from=\"^http://(?:a[123]?|l[34])\\.zassets\\.com/\" to=\"https://secure-www.zappos.com/\"/></ruleset>", "<ruleset name=\"zapsibkombank.ru (partial)\" f=\"Zapsibkombank.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zaption\" default_off=\"failed ruleset test\" f=\"Zaption.xml\"><securecookie host=\"^(?:www)?\\.zaption\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"zapunited (partial)\" f=\"Zapunited.xml\"><rule from=\"^http://(www\\.)?zapunited\\.com/(w/)\" to=\"https://$1zapunited.com/$2\"/><rule from=\"^http://(?:www\\.)?media\\.zapunited\\.com/\" to=\"https://media.zapunited.com/\"/></ruleset>", "<ruleset name=\"Zarafa.com\" f=\"Zarafa.com.xml\"><securecookie host=\"^(?:(?:^community|forums|\\.portal|www)?\\.)?zarafa\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"zarb.org (partial)\" default_off=\"self-signed\" f=\"Zarb.org.xml\"><securecookie host=\"^www\\.zarb\\.org$\" name=\".+\"/><rule from=\"^http://zarb\\.org/\" to=\"https://www.zarb.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zareason.com\" f=\"Zareason.com.xml\"><securecookie host=\"^\\.zareason\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zark Zork.com (expired)\" default_off=\"expired\" f=\"Zark_Zork.com-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zark Zork.com (partial)\" f=\"Zark_Zork.com.xml\"><rule from=\"^http://www\\.zarkzork\\.com/\" to=\"https://zarkzork.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zataz.com (false MCB)\" platform=\"mixedcontent\" f=\"Zataz.com-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zataz.com (partial)\" default_off=\"failed ruleset test\" f=\"Zataz.xml\"><exclusion pattern=\"^http://eromang\\.zataz\\.com/+(?!wp-content/)\"/><securecookie host=\"\\.zataz\\.com$\" name=\"^__cfduid$\"/><securecookie host=\"archives\\.zataz\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zattoo.com\" f=\"Zattoo.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zayo.com (mixed content)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Zayo.com.xml\"><securecookie host=\"^(?:www)?\\.zayo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zazzle (mismatches)\" default_off=\"mismatched\" f=\"Zazzle-mismatches.xml\"><securecookie host=\"^(?:.*\\.)?artsprojekt\\.com$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?artsprojekt\\.com/\" to=\"https://www.artsprojekt.com/\"/></ruleset>", "<ruleset name=\"Zazzle.com (partial)\" f=\"Zazzle.xml\"><exclusion pattern=\"^http://www\\.zazzle\\.com/(?!assets/|(\\w+\\+)?cases|c[ro]/|create|css/|custom/|keychains|(kitchen|\\w+\\+holiday)\\+gifts|lgn/|macbook\\+sleeves|m[ky]/|newcustomgifts|pd/|pillows|rlv/|svc/|zazzleblack|\\w+-\\d{10,20})\"/><securecookie host=\"^forum.zazzle\\.com$\" name=\".+\"/><securecookie host=\"^\\.www\\.zazzle\\.com$\" name=\"^s_vi$\"/><rule from=\"^http://track\\.www\\.zazzle\\.com/\" to=\"https://www-zazzle-com.112.2o7.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zcache.com\" f=\"Zcache.com.xml\"><rule from=\"^http://asset\\.zcache\\.com/\" to=\"https://www.zazzle.com/\"/><rule from=\"^http://rlv\\.zcache\\.com/\" to=\"https://www.zazzle.com/rlv/\"/></ruleset>", "<ruleset name=\"Zdassets.com\" f=\"Zdassets.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zedo.com (partial)\" f=\"Zedo.xml\"><securecookie host=\"^(?:target)?\\.zedo\\.com$\" name=\".+\"/><rule from=\"^http://axp\\.zedo\\.com/\" to=\"https://saxp.zedo.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zee Agency.com (partial)\" f=\"Zee_Agency.com.xml\"><rule from=\"^http://cdn\\.zeeagency\\.com/\" to=\"https://d3ntwnijawp16n.cloudfront.net/\"/></ruleset>", "<ruleset name=\"zeedpic69.com\" default_off=\"refused\" f=\"Zeedpic69.com.xml\"><securecookie host=\"^(?:w*\\.)?zeedpic69\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zefflin.com\" f=\"Zefflin.com.xml\"><securecookie host=\"^\\.\" name=\"^__(?:qca$|utm)\"/><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.www\\.\" name=\".\"/><rule from=\"^http://zefflin\\.com/\" to=\"https://www.zefflin.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zeit.de (partial)\" f=\"Zeit.de.xml\"><securecookie host=\"^(?:\\.premium|shop)\\.zeit\\.de$\" name=\".+\"/><rule from=\"^http://(inserieren|premium|shop|ssl)\\.zeit\\.de/\" to=\"https://$1.zeit.de/\"/><rule from=\"^http://images\\.zeit\\.de/\" to=\"https://ssl.zeit.de/images.zeit.de/\"/></ruleset>", "<ruleset name=\"Zeltser.com\" f=\"Zeltser.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zemanta.com\" default_off=\"failed ruleset test\" f=\"Zemanta.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid$|_gat?$|_gat_|SS_MID|cf_clearance|zcl)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zen.co.uk (partial)\" f=\"Zen-Internet.xml\"><securecookie host=\"(?:.*\\.)?zen\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZenCDN.net\" f=\"ZenCDN.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZenCache.com\" f=\"ZenCache.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZenClerk\" f=\"ZenClerk.com.xml\"><exclusion pattern=\"^http://f1\\.zenclerk\\.com/$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZenMate.com\" f=\"ZenMate.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http://www\\.zenmate\\.cl/\" to=\"https://zenmate.cl/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zen-Cart.com (partial)\" f=\"Zen_Cart.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zencoder.com (partial)\" default_off=\"failed ruleset test\" f=\"Zencoder.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://help\\.zencoder\\.com/\" to=\"https://app.zencoder.com/docs/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zend.com (partial)\" default_off=\"failed ruleset test\" f=\"Zend.xml\"><securecookie host=\"^\\.zend\\.com$\" name=\"^__utm\\w$\"/><securecookie host=\"^\\.shop\\.zend\\.com$\" name=\".\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://zend\\.com/\" to=\"https://www.zend.com/\"/><rule from=\"^http://static\\.zend\\.com/shop/\" to=\"https://shop-zend.pantherssl.com/\"/><rule from=\"^http://static\\.zend\\.com/\" to=\"https://static-zend.pantherssl.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zend2.com\" f=\"Zend2.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zendesk.com clients (partial)\" f=\"Zendesk.com-clients.xml\"><rule from=\"^http://support\\.photobucket\\.com/(assets|external|generated|images|registration|system)/\" to=\"https://photobucket.zendesk.com/$1/\"/></ruleset>", "<ruleset name=\"Zendesk.com (partial)\" f=\"Zendesk.com.xml\"><exclusion pattern=\"^http://hello\\.zendesk\\.com/\"/><exclusion pattern=\"^http://app\\.hello\\.zendesk\\.com/\"/><exclusion pattern=\"^http://radar\\.zendesk\\.com/\"/><exclusion pattern=\"^http://video\\.zendesk\\.com/\"/><securecookie host=\"^\\.zendesk\\.com$\" name=\"^(?:__cfduid|__qca|cf_clearance)$\"/><securecookie host=\"^p\\dassets\\.zendesk\\.com$\" name=\".+\"/><rule from=\"^http://cdn\\.zendesk\\.com/\" to=\"https://d16cvnquvjw7pr.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zendition.net\" default_off=\"failed ruleset test\" f=\"Zendition.net.xml\"><securecookie host=\"^(?:www)?\\.zendition\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zendy Labs\" f=\"Zendy_Labs.xml\"><securecookie host=\"^(?:w*\\.)?zendylabs\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zenfolio (partial)\" default_off=\"Needs ruleset tests\" f=\"Zenfolio.xml\"><exclusion pattern=\"^http://cdn\\.zenfolio\\.net/crossdomain\\.xml\"/><rule from=\"^http://cdn\\.zenfolio\\.net/\" to=\"https://secure.zenfolio.com/\"/><rule from=\"^http://(?:www\\.)?zenfolio\\.com/zf/(?=css/|img/|login\\.aspx)\" to=\"https://secure.zenfolio.com/zf/\"/><rule from=\"^http://(?:www\\.)?zenfolio\\.com/zf/transfer/s/\" to=\"https://secure.zenfolio.com/zf/\"/><rule from=\"^http://secure\\.zenfolio\\.com/\" to=\"https://secure.zenfolio.com/\"/><rule from=\"^http://\\w+\\.zenfolio\\.com/img/\" to=\"https://secure.zenfolio.com/img/\"/><rule from=\"^http://\\w+\\.zenfolio\\.com/cdn/\" to=\"https://www.zenfolio.com/cdn/\"/></ruleset>", "<ruleset name=\"Zenger.nl (partial)\" f=\"Zenger.nl.xml\"><rule from=\"^http://www\\.zenger\\.nl/+\" to=\"https://www.axelarnbak.nl/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZeniMax Media (mismatches)\" default_off=\"mismatched\" f=\"ZeniMax-Media-mismatches.xml\"><securecookie host=\"^(?:.*\\.)?(?:bethblog|dishonored|elderscrolls|zenimax)\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?(bethblog|dishonored|elderscrolls|zenimax(?:online)?)\\.com/\" to=\"https://www.$1.com/\"/><rule from=\"^http://jobs\\.zenimax\\.com/\" to=\"https://jobs.zenimax.com/\"/></ruleset>", "<ruleset name=\"ZeniMax Media (partial)\" default_off=\"failed ruleset test\" f=\"ZeniMax-Media.xml\"><rule from=\"^https?://static\\.zenimax\\.com/\" to=\"https://d1z7bw3wiqzsm4.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Forensic.to\" default_off=\"expired\" f=\"Zenos_Forensic_Site.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZenSpider.com\" f=\"Zenspider.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zentyal.com (partial)\" default_off=\"failed ruleset test\" f=\"Zentyal.com.xml\"><securecookie host=\"^\\.store\\.zentyal\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zentyal.org (partial)\" default_off=\"failed ruleset test\" f=\"Zentyal.org.xml\"><securecookie host=\"^(?:forum|tracker|wiki)\\.zentyal\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zerigo.com\" default_off=\"failed ruleset test\" f=\"Zerigo.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zeringo.com\" default_off=\"self-signed\" f=\"Zeringo.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zerista.com (partial)\" f=\"Zerista.xml\"><exclusion pattern=\"^http://www\\.zerista\\.com/\"/><rule from=\"^http://(\\w+)\\.zerista\\.com/\" to=\"https://$1.zerista.com/\"/></ruleset>", "<ruleset name=\"Zero Robotics\" default_off=\"failed ruleset test\" f=\"Zero-Robotics.xml\"><securecookie host=\"^(?:.*\\.)?zerorobotics\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZeroBin.net\" f=\"ZeroBin.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZeroBlock.com\" f=\"ZeroBlock.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.zeroblock\\.com/\" to=\"https://zeroblock.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZeroC.com\" f=\"ZeroC.com.xml\"><rule from=\"^http://www\\.zeroc\\.com/\" to=\"https://www.zeroc.com/\"/></ruleset>", "<ruleset name=\"ZeroCater.com (partial)\" f=\"ZeroCater.com.xml\"><rule from=\"^http://zerocater\\.com/\" to=\"https://www.zerocater.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZeroTier.com\" f=\"ZeroTier.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zero Day Initiative.com (partial)\" f=\"Zero_Day_Initiative.com.xml\"><rule from=\"^http://(www\\.)?zerodayinitiative\\.com/(?=css/|favicon\\.ico|img/|portal(?:$|[?/]))\" to=\"https://$1zerodayinitiative.com/\"/></ruleset>", "<ruleset name=\"zeromq.org\" default_off=\"mismatched\" f=\"Zeromq.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zerowater.com\" default_off=\"failed ruleset test\" f=\"Zerowater.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"zerties.org (partial)\" default_off=\"self-signed\" f=\"Zerties.org.xml\"><rule from=\"^http://zerties\\.org/\" to=\"https://www.zerties.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zerve\" f=\"Zerve.xml\"><rule from=\"^http://(?:www\\.)?zerve\\.com/(cookie_check\\.php|(?:directory/)?(?:css|img)/|raa/raa3_2\\.php)\" to=\"https://www.zerve.com/$1\"/><rule from=\"^http://img-static\\.cdn\\.zerve\\.com/\" to=\"https://d3ks0ua4wrpv20.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Zerzar.com\" default_off=\"mismatched, self-signed\" f=\"Zerzar.xml\"><securecookie host=\"^(?:www)?\\.zerzar.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zeta.Systems (partial)\" f=\"Zeta.Systems.xml\"><securecookie host=\"^secure\\.zeta\\.systems$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zetel.de\" default_off=\"failed ruleset test\" f=\"Zetel.de.xml\"><rule from=\"^http://(?:www\\.)?zetel\\.de/\" to=\"https://www.zetel.de/\"/><rule from=\"^http://intranet\\.zetel\\.de/\" to=\"https://intranet.zetel.de/\"/></ruleset>", "<ruleset name=\"Zetetic.net\" f=\"Zetetic.net.xml\"><rule from=\"^http://zetetic\\.net/\" to=\"https://www.zetetic.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZeusHash.com\" f=\"ZeusHash.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"zeuscat.com\" f=\"Zeuscat.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZeusClicks.com (partial)\" default_off=\"missing certificate chain\" f=\"Zeusclicks.com.xml\"><securecookie host=\"^ads2\\.zeusclicks\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZynCDN.com (partial)\" default_off=\"failed ruleset test\" f=\"ZgnCDN.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zhihu\" f=\"Zhihu.xml\"><rule from=\"^http://news\\.at\\.zhihu\\.com/\" to=\"https://news-at.zhihu.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zidisha.org (partial)\" f=\"Zidisha.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ziedot.lv\" f=\"Ziedot.lv.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ziff Davis (mismatches)\" default_off=\"mismatched\" f=\"Ziff-Davis-mismatches.xml\"><securecookie host=\"^www\\.extremetech\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?extremetech\\.com/\" to=\"https://www.extremetech.com/\"/></ruleset>", "<ruleset name=\"Ziff Davis (partial)\" f=\"Ziff-Davis.xml\"><rule from=\"^http://static\\.adziff\\.com/\" to=\"https://d3dd6h0gw79f7z.cloudfront.net/\"/><rule from=\"^http://metrics\\.geek\\.com/\" to=\"https://geek-com.122.2o7.net/\"/><rule from=\"^http://metrics\\.pcmag\\.com/\" to=\"https://ziffdavis-com.112.2o7.net/\"/><rule from=\"^http://static\\.ziffdavis\\.com/\" to=\"https://static.ziffdavis.com/\"/></ruleset>", "<ruleset name=\"Ziggo.com\" f=\"Ziggo.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ziggo.nl\" f=\"Ziggo.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ziggo Zakelijk.nl\" f=\"Ziggo_Zakelijk.nl.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zillow (problematic)\" default_off=\"mismatched\" f=\"Zillow-problematic.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zillow (partial)\" default_off=\"Breaks overlays\" f=\"Zillow.xml\"><exclusion pattern=\"^http://(?:www\\.)?zillow\\.com/(?!.*\\$LoginLink|favicon\\.ico|(?:advertising|advice(?:pages|-thread)|agents|app|corp|directory|fhs-loan|foreclosures|for-sale-by-owner|help|home-(?:equity-loan|improvement-dueling-digs)|howto|imaging|learnmore|local-info|make-me-move|mobile|mortgage-(?:calculator|glossary|rates)|post-re(?:al-estate|ntal)-listings|refinance|search|static|visuals|webtools)(?:$|\\?|/))\"/><securecookie host=\"^engineering\\.zillow\\.com$\" name=\".+\"/><rule from=\"^http://((?:engineering|mortgageapi|rentalapp|www)\\.)?zillow\\.com/\" to=\"https://$1zillow.com/\"/><rule from=\"^http://photos\\d?\\.zillow\\.com/\" to=\"https://photos.zillow.com/\"/><rule from=\"^http://photos\\d\\.zillowstatic\\.com/\" to=\"https://d14mm2ttxradcn.cloudfront.net/\"/><rule from=\"^http://(www\\.)?zillowstatic\\.com/\" to=\"https://$1zillowstatic.com/\"/></ruleset>", "<ruleset name=\"Zilog.com\" f=\"Zilog.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"zimbatm.com\" default_off=\"failed ruleset test\" f=\"Zimbatm.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zimbra (false MCB)\" platform=\"mixedcontent\" f=\"Zimbra.xml\"><securecookie host=\"^(?:.*\\.)?zimbra\\.com$\" name=\".+\"/><rule from=\"^http://files2?\\.zimbra\\.com/\" to=\"https://s3.amazonaws.com/files.zimbra.com/\"/><rule from=\"^http://([^/:@\\.]+\\.)?zimbra\\.com/\" to=\"https://$1zimbra.com/\"/><rule from=\"^http://(?:www\\.)?zimbrablog\\.com/\" to=\"https://blog.zimbra.com/\"/></ruleset>", "<ruleset name=\"Zimperium\" f=\"Zimperium.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zing Checkout.com (broken)\" default_off=\"refused\" f=\"Zing_Checkout.com-problematic.xml\"><securecookie host=\"^\\.zingcheckout\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?zingcheckout\\.com/\" to=\"https://zingcheckout.com/\"/></ruleset>", "<ruleset name=\"Zing Checkout.com (partial)\" default_off=\"failed ruleset test\" f=\"Zing_Checkout.com.xml\"><rule from=\"^http://app\\.zingcheckout\\.com/\" to=\"https://app.zingcheckout.com/\"/></ruleset>", "<ruleset name=\"Zip.ch\" f=\"Zip.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zipcar.com\" default_off=\"failed ruleset test\" f=\"Zipcar.xml\"><exclusion pattern=\"^http://members\\.zipcar\\.com/+(?!$|\\?|apply|images/|regist|styles/)\"/><securecookie host=\"^\\.\" name=\"^(?:_gat?$|ad_)\"/><securecookie host=\"^(?!members\\.)\\w\" name=\".\"/><rule from=\"^http://zipcar\\.com/\" to=\"https://www.zipcar.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zipler.ru\" f=\"Zipler.ru.xml\"><securecookie host=\"^www\\.zipler\\.ru$\" name=\".+\"/><rule from=\"^http://zipler\\.ru/\" to=\"https://www.zipler.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zipy.co.il\" default_off=\"failed ruleset test\" f=\"Zipy.co.il.xml\"><securecookie host=\"^www\\.zipy\\.co\\.il$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"zissousecure.com\" f=\"Zissousecure.com.xml\"><securecookie host=\".+\\.zissousecure\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zlatkovic.com\" f=\"Zlatkovic.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zlavadna.sk\" f=\"Zlavadna.sk.xml\"><rule from=\"^http://(?:www\\.)?zlavadna\\.sk/\" to=\"https://www.zlavadna.sk/\"/></ruleset>", "<ruleset name=\"Zlavy.odpadnes.sk\" f=\"Zlavy.odpadnes.sk.xml\"><rule from=\"^http://(?:www\\.|zlavy\\.)?odpadnes\\.sk/\" to=\"https://zlavy.odpadnes.sk/\"/></ruleset>", "<ruleset name=\"Zmanda.com (partial)\" f=\"Zmanda.xml\"><securecookie host=\"^(?:(?:forums|mysqlbackup|\\.?network|wiki))\\.zmanda\\.com$\" name=\".+\"/><rule from=\"^http://mysqlbackup\\.zmanda\\.com/+(?:\\??$|(index\\.php(?:$|[?/])))\" to=\"https://wiki.zmanda.com/$1\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zocalopublicsquare (disabled)\" default_off=\"expired cert\" f=\"Zocalopublicsquare.xml\"><rule from=\"^http://(?:www\\.)?zocalopublicsquare\\.org/\" to=\"https://zocalopublicsquare.org/\"/></ruleset>", "<ruleset name=\"Zoho (mismatched)\" default_off=\"mismatched\" f=\"Zoho-mismatches.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zoho.jp\" default_off=\"failed ruleset test\" f=\"Zoho.jp.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zoho.com (partial)\" f=\"Zoho.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.(blogs|creator|forums)\\.zoho\\.com/\" to=\"https://$1.zoho.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zoho Corp.com\" f=\"Zoho_Corp.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zoho Discussions.com\" f=\"Zoho_Discussions.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.zohodiscussions\\.com/\" to=\"https://zohodiscussions.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zoho static.com\" f=\"Zoho_static.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zoklet.net\" default_off=\"refused\" f=\"Zoklet.net.xml\"><securecookie host=\"^(?:.*\\.)?zoklet\\.net$\" name=\".*\"/><rule from=\"^http://(?:www\\.)?zoklet\\.net/\" to=\"https://www.zoklet.net/\"/></ruleset>", "<ruleset name=\"Zom.im\" f=\"Zom.im.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zomato.com (partial)\" f=\"Zomato.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zombie Watch.org\" f=\"Zombie-Watch.xml\"><securecookie host=\"^www\\.zombeewatch\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zona.media\" f=\"Zona.media.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zone-H.org\" f=\"Zone-H.org.xml\"><securecookie host=\"^\\.\" name=\"^__utm\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZoneEdit.com (partial)\" f=\"ZoneEdit.xml\"><securecookie host=\"^(?:cp|support)\\.zoneedit\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zoner.fi\" f=\"Zoner.fi.xml\"><securecookie host=\"^(?:oma|tuki|www)\\.zoner\\.fi$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zong.com (partial)\" f=\"Zong.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zonomi.com (partial)\" f=\"Zonomi.xml\"><exclusion pattern=\"^http://zonomi\\.com/+(?!css/|favicon\\.ico|images/|r/css$|type-face/)\"/><rule from=\"^http://www\\.zonomi\\.com/\" to=\"https://zonomi.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zooko.com\" default_off=\"refused\" f=\"Zooko.com.xml\"><securecookie host=\"^zooko\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zooku.ro\" f=\"Zooku.xml\"><securecookie host=\"^(?:.+\\.)?zooku\\.ro$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZSL.org (partial)\" f=\"Zoological_Society_of_London.xml\"><securecookie host=\"^www\\.zsl\\.org$\" name=\".+\"/><rule from=\"^http://zsl\\.org/\" to=\"https://www.zsl.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zoom.com.br (partial)\" f=\"Zoom.com.br.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZoomEye.org (partial)\" f=\"ZoomEye.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zoomerang.com\" default_off=\"failed ruleset test\" f=\"Zoomerang.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zoomshare.com (partial)\" default_off=\"missing certificate chain\" f=\"Zoomshare.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zooniverse.org (partial)\" f=\"Zooniverse.xml\"><securecookie host=\"^.+\\.zooniverse\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zoosk.com\" default_off=\"failed ruleset test\" f=\"Zoosk.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zopa (partial)\" f=\"Zopa.xml\"><rule from=\"^http://(?:uk\\.|www\\.)?zopa\\.com/\" to=\"https://uk.zopa.com/\"/><securecookie host=\"^\\.zopa\\.com$\" name=\".*\"/></ruleset>", "<ruleset name=\"Zopim\" f=\"Zopim.xml\"><securecookie host=\"^.*\\.zopim\\.com$\" name=\".+\"/><rule from=\"^http://((?:api|blog|cdn|classic|dashboard|de\\d\\d|status\\d*|tickets|us\\d\\d|v2|wiki|www)\\.)?zopim\\.com/\" to=\"https://$1zopim.com/\"/></ruleset>", "<ruleset name=\"Zorpia (false MCB)\" platform=\"mixedcontent\" f=\"Zorpia.xml\"><securecookie host=\".*\\.zorpia\\.com$\" name=\".+\"/><rule from=\"^http://((?:en|h150|lrg131|me|mini|search|t[hn]s|www)\\.)?zorpia\\.com/\" to=\"https://$1zorpia.com/\"/><rule from=\"^http://(?:static\\.zorpia|(?:ec\\.)?static\\.zpcdn)\\.com/\" to=\"https://zorpia.com/\"/><rule from=\"^http://(?:ec\\.)?(h150|t[hn]s)\\.zpcdn\\.com/\" to=\"https://$1.zorpia.com/\"/><rule from=\"^http://lrg131\\.zpcdn\\.com/\" to=\"https://lrg131.zorpia.com/\"/></ruleset>", "<ruleset name=\"ZorroVPN.com\" f=\"ZorroVPN.com.xml\"><securecookie host=\"^\\.zorrovpn\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"zozs.se\" f=\"Zozs.se.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zscaler.com (partial)\" default_off=\"failed ruleset test\" f=\"Zscaler.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^(?!info\\.)\\w\" name=\".\"/><rule from=\"^http://info\\.zscaler\\.com/+(?:\\?.*)?$\" to=\"https://www.zscaler.com/\"/><rule from=\"^http://info\\.zscaler\\.com/\" to=\"https://na-abm.marketo.com/\"/><exclusion pattern=\"^http://info\\.zscaler\\.com/+(?!$|\\?|css/|images/|rs/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zse.sk\" f=\"Zse.sk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"zsim.de\" f=\"Zsim.de.xml\"><securecookie host=\"^(?:www\\.)?zsim\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zst.com.br\" f=\"Zst.com.br.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"zt03.net (partial)\" default_off=\"failed ruleset test\" f=\"Zt03.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zueri wie neu.ch\" f=\"Zueri_wie_neu.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zugaina.com (partial)\" default_off=\"mismatched\" platform=\"cacert\" f=\"Zugaina-mismatches.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zugaina (partial)\" f=\"Zugaina.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zuhah.com\" default_off=\"failed ruleset test\" f=\"Zuhah.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zuji HK (partial)\" default_off=\"failed ruleset test\" f=\"Zuji.com.hk.xml\"><rule from=\"^http://zuji\\.com\\.hk/\" to=\"https://www.zuji.com.hk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zulius.com\" f=\"Zulius.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zumzi.com\" f=\"Zumzi.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zuse-Crew.de\" f=\"Zuse-Crew.de.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zwame.pt (partial)\" f=\"Zwame.pt.xml\"><exclusion pattern=\"^http://forum\\.zwame\\.pt/+(?!css\\.php|data/|styles/)\"/><exclusion pattern=\"^http://(?:jogos|podcast|portal|pr)\\.zwame\\.pt/+(?!favicon\\.ico|wp-content/)\"/><exclusion pattern=\"^http://magazine.zwame.pt/+(?!images/)\"/><securecookie host=\"^\\.zwame\\.pt$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zwiebelfreunde.de\" f=\"Zwiebelfreunde.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zwmail.de\" f=\"Zwmail.de.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.zwmail\\.de/[^?]*\" to=\"https://www.zaehlwerk.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zyado.com\" f=\"Zyado.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zylom.com (partial)\" default_off=\"failed ruleset test\" f=\"Zylom.com.xml\"><rule from=\"^http://cdn\\.media\\.zylom\\.com/\" to=\"https://media.zylom.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zylon.net (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"Zylon.net-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zylon.net (partial)\" default_off=\"failed ruleset test\" f=\"Zylon.net.xml\"><exclusion pattern=\"^http://(?:www\\.)?zylon\\.net/+(?!default\\.css|favicon\\.ico|images/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zynga.tm\" default_off=\"mismatched\" f=\"Zynga.tm.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zynga.com (partial)\" f=\"Zynga.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zynga Player Support.com\" f=\"Zynga_Player_Support.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AAAU.org\" f=\"aaau.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"aab.ru\" f=\"aab.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AASTOCKS.com (partial)\" f=\"aastocks.com.xml\"><exclusion pattern=\"^http://www\\.aastocks\\.com/(tc|sc|en)/.+\\.as[hp]x\"/><securecookie host=\"hkg\\.aastocks\\.com\" name=\".+\"/><securecookie host=\"hkg1\\.aastocks\\.com\" name=\".+\"/><securecookie host=\"hkg3\\.aastocks\\.com\" name=\".+\"/><securecookie host=\"hkg8\\.aastocks\\.com\" name=\".+\"/><securecookie host=\"logon\\.aastocks\\.com\" name=\".+\"/><securecookie host=\"secure\\.aastocks.com\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ab4all.com\" f=\"ab4all.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aberystwyth Arts Centre.co.uk\" platform=\"mixedcontent\" f=\"aberystwythartscentre.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"A Best Premium.com\" default_off=\"expired, untrusted root\" f=\"abestpremium.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"abma.de\" f=\"abma.de.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://(www\\.|ssl\\.)abma\\.de/\" to=\"https://abma.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"A Book Apart.com\" f=\"abookapart.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"About.com (partial)\" f=\"about.com.xml\"><securecookie host=\"^\\.\" name=\"^_ga\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://index\\.about\\.com/\" to=\"https://www.index.about.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"abuledu.org\" f=\"abuledu.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"acast.com\" f=\"acast.com.xml\"><securecookie host=\"^\\.rss\\.\" name=\".\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://acast\\.com/\" to=\"https://www.acast.com/\"/><rule from=\"^http://status\\.acast\\.com/\" to=\"https://acast.statuspage.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Accel-PPP.org\" f=\"accel-ppp.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"accelus.com\" f=\"accelus.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AccessEdge.com\" default_off=\"missing certificate chain\" f=\"accessedge.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www1?\\.accessedge\\.com/.*\" to=\"https://www1.accessedge.com/\"/><rule from=\"^http://www2\\.accessedge\\.com/.*\" to=\"https://www2.accessedge.com/\"/></ruleset>", "<ruleset name=\"accessify.com\" platform=\"mixedcontent\" f=\"accessify.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://pic\\.accessify\\.com/\" to=\"https://dsgo3s8m15t6d.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Achaea\" f=\"achaea.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"achieveservice.com\" f=\"achieveservice.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Act-On.co.uk\" default_off=\"failed ruleset test\" f=\"act-on.co.uk.xml\"><securecookie host=\"^\\.\" name=\"^(?:_gat?$|_gat_|optimizely)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Act-On.com (MCB)\" platform=\"mixedcontent\" f=\"act-on.com-mixedcontent.xml\"><securecookie host=\"^\\.\" name=\"^(?:_gat?$|_gat_|wp248$)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Act-On.com (partial)\" default_off=\"failed ruleset test\" f=\"act-on.com.xml\"><exclusion pattern=\"^http://interactive\\.act-on\\.com/(?!/*(?:$|\\?))\"/><securecookie host=\"^\\.\" name=\"^(?:_gat?$|_gat_|optimizely)\"/><securecookie host=\"^(?!interactive\\.)\\w\" name=\".\"/><rule from=\"^http://interactive\\.act-on\\.com/.*\" to=\"https://www.act-on.com/\"/><rule from=\"^http://uk\\.act-on\\.com/\" to=\"https://www.act-on.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ACT IAC.org (partial)\" f=\"actiac.org.xml\"><exclusion pattern=\"^http://cyberinitiative\\.actiac\\.org/(?!/*(?:$|\\?))\"/><securecookie host=\"^[^c]\" name=\".\"/><rule from=\"^http://cyberinitiative\\.actiac\\.org/.*\" to=\"https://actiaccyberinitiative.ideascale.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Action Fraud.Police.uk (partial)\" f=\"actionfraud.police.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Action Network.org\" f=\"actionnetwork.org.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"actis.ru\" f=\"actis.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Active24.cat\" f=\"active24.cat.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Active24.co.uk\" default_off=\"failed ruleset test\" f=\"active24.co.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Active24.com\" default_off=\"failed ruleset test\" f=\"active24.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Active24.cz\" default_off=\"failed ruleset test\" f=\"active24.cz.xml\"><rule from=\"^http://active24\\.cz/\" to=\"https://www.active24.cz/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Active24.de\" default_off=\"failed ruleset test\" f=\"active24.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Active24.es\" default_off=\"failed ruleset test\" f=\"active24.es.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Active24.nl\" default_off=\"failed ruleset test\" f=\"active24.nl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Active24.pl\" f=\"active24.pl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Active24.sk\" f=\"active24.sk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Actor.im\" default_off=\"failed ruleset test\" f=\"actor.im.xml\"><securecookie host=\".\" name=\"^optimizely\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Acxiom.com (partial)\" f=\"acxiom.com.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ad-m.asia (partial)\" f=\"ad-m.asia.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"adamcod.es\" f=\"adamcod.es.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Adapto.rs (partial)\" default_off=\"self-signed\" f=\"adapto.rs.xml\"><exclusion pattern=\"^http://(?:www\\.)?adapto\\.rs/(?!/*arc/site/)\"/><rule from=\"^http://www\\.adapto\\.rs/\" to=\"https://adapto.rs/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Adblock Browser.org\" f=\"adblockbrowser.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ADC-srv.net\" default_off=\"failed ruleset test\" f=\"adc-srv.net.xml\"><securecookie host=\"^\\.\" name=\"^adc_vs$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ADD.org\" f=\"add.org.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AddThis CDN.com\" f=\"addthiscdn.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Adguard.com\" f=\"adguard.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"adlantis.jp\" f=\"adlantis.jp.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"admin-smolensk.ru\" f=\"admin-smolensk.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Admincontrol.com\" f=\"admincontrol.com.xml\"><securecookie host=\"^\\.\" name=\"^_(?:ga|icl_current_language$)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"administrator.de\" f=\"administrator.de.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"admtyumen.ru\" f=\"admtyumen.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"adnet.pro\" f=\"adnet.pro.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"adnetexpress.net\" default_off=\"failed ruleset test\" f=\"adnetexpress.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"adnetworkperformance.com\" f=\"adnetworkperformance.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ADR.org (partial)\" default_off=\"failed ruleset test\" f=\"adr.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AdReclaim.com\" default_off=\"failed ruleset test\" f=\"adreclaim.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ADR Education.org\" f=\"adreducation.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ads-Twitter.com\" f=\"ads-twitter.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"adsl.by\" f=\"adsl.by.xml\"><rule from=\"^http://www\\.adsl\\.by/\" to=\"https://adsl.by/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AdsNative.com\" default_off=\"failed ruleset test\" f=\"adsnative.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://adsnative\\.com/\" to=\"https://www.adsnative.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"adsymptotic.com\" f=\"adsymptotic.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"adtomafusion.com\" f=\"adtomafusion.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://se-02\\.adtomafusion\\.com:80/\" to=\"https://se-02.adtomafusion.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Adult Swim.com\" platform=\"mixedcontent\" f=\"adultswim.xml\"><securecookie host=\"^www\\.adultswim\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Adur-Worthing.gov.uk (partial)\" f=\"adur-worthing.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Adur.gov.uk (partial)\" f=\"adur.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"adv.ru\" f=\"adv.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"advision-adnw.jp\" f=\"advision-adnw.jp.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"aeasolutions.co.uk (partial)\" f=\"aeasolutions.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"aescrypt.com\" f=\"aescrypt.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aetolia\" f=\"aetolia.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"afeld.me\" f=\"afeld.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"afew-store.com\" f=\"afew-store.com.xml\"><securecookie host=\"^\\.www\\.\" name=\".\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Affiliate Future.com\" f=\"affiliatefuture.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Afip.gob.ar (false MCB)\" platform=\"mixedcontent\" f=\"afip.gob.ar-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://afip\\.gob\\.ar/\" to=\"https://www.afip.gob.ar/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Afip.gob.ar (partial)\" f=\"afip.gob.ar.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"afisha.ru\" default_off=\"failed ruleset test\" f=\"afisha.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AgenPremium.com\" f=\"agenpremium.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Age UK.org.uk (partial)\" f=\"ageuk.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aggregage.com (partial)\" f=\"aggregage.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Agilisys.co.uk (partial)\" f=\"agilisys.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"agima.ru\" f=\"agima.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ahcdn.com (false MCB)\" platform=\"mixedcontent\" f=\"ahcdn.com-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ahcdn.com (partial)\" f=\"ahcdn.com.xml\"><exclusion pattern=\"^http://(?:[^./]+\\.){2,}ahcdn\\.com/\"/><exclusion pattern=\"/crossdomain\\.xml(?:$|\\?)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AHEAD.org\" f=\"ahead.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ai-cdn.net\" f=\"ai-cdn.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aiha.org\" f=\"aiha.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://aiha\\.org/\" to=\"https://www.aiha.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aim at Melanoma.org\" f=\"aimatmelanoma.org.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"air.io (partial)\" f=\"air.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"airbites.net.ua\" default_off=\"failed ruleset test\" f=\"airbites.net.ua.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"airbitz.co\" f=\"airbitz.co.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"aircrack-ng.org (partial)\" default_off=\"failed ruleset test\" f=\"aircrack-ng.org.xml\"><securecookie host=\"^(?:forum|trac)\\.aircrack-ng\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"airelf.com.tw\" f=\"airelf.com.tw.xml\"><securecookie host=\"^\\.airelf\\.com\\.tw$\" name=\".+\"/><rule from=\"^http://airelf\\.com\\.tw/\" to=\"https://www.airelf.com.tw/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"aironetsp.ru (partial)\" f=\"aironetsp.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Air Warriors.com\" f=\"airwarriors.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ais.by\" default_off=\"failed ruleset test\" f=\"ais.by.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ajnasz.hu\" f=\"ajnasz.hu.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"akbars.ru\" default_off=\"failed ruleset test\" f=\"akbars.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"akixi.com\" default_off=\"failed ruleset test\" f=\"akixi.com.xml\"><securecookie host=\"^(alto|broadconnect|cirrus|cumulus|epik|gamma|horizon|howdens|icore|inclarity|intech|masergy|mcmtelecom|momentum|nexogy|nimans|onecloud|onecloudnet|pressone|redcentric|redgap|saicom|stage2networks|support|tvf|vibe|voicenet|vonage)\\.akixi\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"alanreed.org\" f=\"alanreed.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Al Arabiya\" f=\"alarabiya.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"alaraby.co.uk\" f=\"alaraby.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"alau.kz\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"alau.kz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"aldeparty.eu\" platform=\"mixedcontent\" f=\"aldeparty.eu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"alfacashier.com\" f=\"alfacashier.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Alfred Xing.com\" f=\"alfredxing.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"alhur.es\" f=\"alhur.es.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Alibaba-Inc.com (false MCB)\" platform=\"mixedcontent\" f=\"alibaba-inc.com-falsemixed.xml\"><rule from=\"^http://thx\\.alibaba-inc\\.com/\" to=\"https://thx.github.io/\"/></ruleset>", "<ruleset name=\"Alibaba-Inc.com (partial)\" f=\"alibaba-inc.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AliExpress.com (MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"aliexpress.com-mixedcontent.xml\"><securecookie host=\"^\\.\" name=\"^ali_apache_track(?:tmp)?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aliloan.com (partial)\" f=\"aliloan.com.xml\"><securecookie host=\"^\\.\" name=\"^ali_apache_track\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://alibaba\\.aliloan\\.com/.*\" to=\"https://loan.mybank.cn/dk/b2bapply/index.htm\"/><exclusion pattern=\"^http://alibaba\\.aliloan\\.com/(?!/*(?:$|\\?))\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aliyun-Inc.com\" default_off=\"mismatched\" f=\"aliyun-inc.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aliyuncs.com (partial)\" f=\"aliyuncs.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"alkutubcafe.com\" f=\"alkutubcafe.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"allAfrica (partial)\" f=\"allAfrica.xml\"><rule from=\"^http://(?:www\\.)?allafrica\\.com/(commerce/user/(?:manage|subscribe)|static)/\" to=\"https://allafrica.com/$1/\"/></ruleset>", "<ruleset name=\"allaboutcircuits\" f=\"allaboutcircuits.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"allepizza.ru\" f=\"allepizza.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Allerdale.gov.uk (partial)\" f=\"allerdale.gov.uk.xml\"><exclusion pattern=\"^http://secure1\\.allerdale\\.gov\\.uk/benefitscalculator\"/><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)$\"/><securecookie host=\"^(?!secure1\\.)\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AllFlicks.net\" f=\"allflicks.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Alliance-Media.org.uk\" default_off=\"missing certificate chain\" f=\"alliance-media.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Allianz.com (partial)\" default_off=\"failed ruleset test\" f=\"allianz.com.xml\"><exclusion pattern=\"^http://www\\.agcs\\.allianz\\.com/+(?!assets/|css/|images/|sign-up-for-updates/+$)\"/><securecookie host=\"^(?!www\\.agcs\\.)\\w\" name=\".\"/><rule from=\"^http://www\\.azt\\.allianz\\.com/\" to=\"https://azt.allianz.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"allinvestments.ru\" default_off=\"failed ruleset test\" f=\"allinvestments.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"allnokia.ru\" f=\"allnokia.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"allpayments.net\" f=\"allpayments.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"almaany.com\" f=\"almaany.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"alMadinaInstitute.org\" f=\"almadinainstitute.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Al Mayadeen\" default_off=\"failed ruleset test\" f=\"almayadeen.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"almeshkat.net\" f=\"almeshkat.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Deutscher Alpenverein\" f=\"alpenverein.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AlphaRatio\" f=\"alpharatio.cc.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"alsop-n.uk\" f=\"alsop-n.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Alternative Meats.co.uk\" f=\"alternativemeats.co.uk.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"am730.com.hk\" f=\"am730.com.hk.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AmaDump.com (partial)\" default_off=\"expired, mismatched, self-signed\" f=\"amadump.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"amap-mixedcontent\" f=\"amap-mixedcontent.xml\"><exclusion pattern=\"http://ditu.amap.com/$\"/><rule from=\"^http://ditu\\.amap\\.com/(favicon\\.ico|assets)/\" to=\"https://ditu.amap.com/$1/\"/><exclusion pattern=\"http://lbs.amap.com/$\"/><rule from=\"^http://lbs\\.amap\\.com/Public\" to=\"https://lbs.amap.com/Public\"/><exclusion pattern=\"http://m.amap.com/$\"/><rule from=\"^http://m\\.amap\\.com/navi/\" to=\"https://m.amap.com/navi/\"/></ruleset>", "<ruleset name=\"amap (partial)\" f=\"amap.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amazon.ca\" f=\"amazon.ca.xml\"><securecookie host=\".\" name=\"^aps-trtmnt$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amazon.cn\" f=\"amazon.cn.xml\"><securecookie host=\".\" name=\"^aps-trtmnt$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amazon.co.jp\" f=\"amazon.co.jp.xml\"><exclusion pattern=\"^http://associates\\.amazon\\.co\\.jp/$\"/><securecookie host=\"^\\.\" name=\"^(?:aps-trtmnt$|s_v)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amazon.co.uk\" default_off=\"failed ruleset test\" f=\"amazon.co.uk.xml\"><securecookie host=\".\" name=\"^aps-trtmnt$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://m\\.amazon\\.co\\.uk/[^?]*\" to=\"https://www.amazon.co.uk/gp/aw\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amazon.com.au\" f=\"amazon.com.au.xml\"><securecookie host=\".\" name=\"^aps-trtmnt$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amazon.com.br\" f=\"amazon.com.br.xml\"><securecookie host=\".\" name=\"^aps-trtmnt$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"amazon.com.mx\" f=\"amazon.com.mx.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amazon.de\" f=\"amazon.de.xml\"><securecookie host=\".\" name=\"^aps-trtmnt$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://kdp\\.amazon\\.de/.*\" to=\"https://kdp.amazon.com/self-publishing/signin?language=de_DE\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amazon.es\" f=\"amazon.es.xml\"><securecookie host=\".\" name=\"^aps-trtmnt$\"/><securecookie host=\"^(?!\\.amazon\\.es$).\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amazon.fr (partial)\" f=\"amazon.fr.xml\"><securecookie host=\".\" name=\"^aps-trtmnt$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amazon.in (partial)\" f=\"amazon.in.xml\"><exclusion pattern=\"^http://(www\\.)?amazon\\.in/+(.+/)?(b|dp|e|s)($|[?/])\"/><exclusion pattern=\"^http://(www\\.)?amazon\\.in/(cross-app-features|gp|xa)/\"/><securecookie host=\".\" name=\"^(?:aps-trtmnt$|cpa-blogs-|s_v)\"/><securecookie host=\"^[^.w]\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amazon.it\" f=\"amazon.it.xml\"><securecookie host=\".\" name=\"^aps-trtmnt$\"/><securecookie host=\"^(?!\\.amazon\\.it$).\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amazon.nl\" f=\"amazon.nl.xml\"><securecookie host=\".\" name=\"^aps-trtmnt$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AmberCutie.com\" default_off=\"failed ruleset test\" f=\"ambercutie.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://live\\.ambercutie\\.com/.*\" to=\"https://www.myfreecams.com/?baf=2148050#AmberCutie\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amber Valley.gov.uk (partial)\" f=\"ambervalley.gov.uk.xml\"><exclusion pattern=\"^http://www\\.ambervalley\\.gov\\.uk/(?!/*(?:css/|elected-members-area(?:$|[?/])|images/|media/|utilities/login\\.aspx))\"/><securecookie host=\"^i\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ambitious About Autism.org.uk\" f=\"ambitiousaboutautism.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://ambitiousaboutautism\\.org\\.uk/\" to=\"https://www.ambitiousaboutautism.org.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AMC Networks.com (partial)\" f=\"amcnetworks.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ameba.jp (false MCB)\" platform=\"mixedcontent\" f=\"ameba.jp-falsemixed.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://ameba\\.jp/\" to=\"https://www.ameba.jp/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"amebaownd.com\" f=\"amebaownd.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:_gat?$|_gat_|P$)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://amebaownd\\.com/\" to=\"https://www.amebaownd.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"amediateka.ru\" f=\"amediateka.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"America.gov\" f=\"america.gov.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"American Hunter.org\" f=\"americanhunter.org.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"American Rifleman.org\" default_off=\"failed ruleset test\" f=\"americanrifleman.org.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Americas 1st Freedom.org\" default_off=\"failed ruleset test\" f=\"americas1stfreedom.org.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ames Lab.gov (partial)\" f=\"ameslab.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.external\\.ameslab\\.gov/\" to=\"https://www.ameslab.gov/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Amplience.com\" f=\"amplience.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AMP Project.org\" f=\"ampproject.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ampravda.ru\" f=\"ampravda.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"anapirana.com\" f=\"anapirana.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Anchor.net.au\" f=\"anchor.net.au.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"andreapaiola.name\" f=\"andreapaiola.name.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AndrewMohawk.com\" default_off=\"missing certificate chain\" f=\"andrewmohawk.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"aniart.com.ua\" f=\"aniart.com.ua.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"anibis.ch (partial)\" f=\"anibis.ch.xml\"><exclusion pattern=\"^http://www\\.anibis\\.ch/+(?!\\w\\w/login\\.aspx|ui/Anibis/css-public)\"/><securecookie host=\"^m\\.anibis\\.ch$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Anime News Network\" f=\"animenewsnetwork.xml\"><securecookie host=\"^www\\.animenewsnetwork\\.com$\" name=\".+\"/><securecookie host=\"^fast\\.animenewsnetwork\\.com$\" name=\".+\"/><securecookie host=\"^admin\\.animenewsnetwork\\.com$\" name=\".+\"/><securecookie host=\"^cdn\\.animenewsnetwork\\.com$\" name=\".+\"/><securecookie host=\"^cdn01\\.animenewsnetwork\\.com$\" name=\".+\"/><securecookie host=\"^cdn02\\.animenewsnetwork\\.com$\" name=\".+\"/><securecookie host=\"^cdn03\\.animenewsnetwork\\.com$\" name=\".+\"/><securecookie host=\"^m\\.animenewsnetwork\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Anna Lindh Foundation.org\" default_off=\"expired\" f=\"annalindhfoundation.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://annalindhfoundation\\.org/\" to=\"https://www.annalindhfoundation.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Annotum.org\" default_off=\"failed ruleset test\" f=\"annotum.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"anquan.org\" f=\"anquan.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Anskaffelser.no\" f=\"anskaffelser.no.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Anthem.com (partial)\" default_off=\"failed ruleset test\" f=\"anthem.com.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://mss\\.cammp\\.anthem\\.com/.*\" to=\"https://mss.anthem.com/cammp\"/><rule from=\"^http://www\\.news\\.anthem\\.com/\" to=\"https://news.anthem.com/\"/><rule from=\"^http://www\\.resourceadvisor\\.anthem\\.com/.*\" to=\"https://www.powerflexweb.com/1631/loginanthemresourceadvisor.html\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"anticenz.org\" f=\"anticenz.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Anti-Fascist Network.org\" f=\"antifascistnetwork.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.antifascistnetwork\\.org/\" to=\"https://antifascistnetwork.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ANTSDAQ.com\" f=\"antsdaq.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Anwiki.com\" f=\"anwiki.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ANZ.co.nz (partial)\" f=\"anz.co.nz.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://anz\\.co\\.nz/\" to=\"https://www.anz.co.nz/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"aon.com\" f=\"aon.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"apiary.io\" f=\"apiary.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"apichangelog.com\" default_off=\"failed ruleset test\" f=\"apichangelog.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"apk-dl.com\" default_off=\"failed ruleset test\" f=\"apk-dl.com.xml\"><rule from=\"^http://(?:www\\.)?apk-dl\\.com/\" to=\"https://apk-dl.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Apprenticeships.scot\" f=\"apprenticeships.scot.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://apprenticeships\\.scot/\" to=\"https://www.apprenticeships.scot/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"approach0.xyz\" f=\"approach0.xyz.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"apps-cms.jp\" platform=\"mixedcontent\" f=\"apps-cms.jp.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"apps.fm\" f=\"apps.fm.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"appveyor.com\" f=\"appveyor.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"appworks.tw\" f=\"appworks.tw.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"apricityos.com\" default_off=\"failed ruleset test\" f=\"apricityos.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"apus.agency\" f=\"apus.agency.xml\"><rule from=\"^http://www\\.apus\\.agency/\" to=\"https://apus.agency/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"AQMeN.ac.uk\" f=\"aqmen.ac.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://aqmen\\.ac\\.uk/\" to=\"https://www.aqmen.ac.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"aravot.am\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"aravot.am.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"archlinuxarm.org\" f=\"archlinuxarm.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Are we e10s yet.com\" f=\"arewee10syet.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"arewewebextensionsyet.com\" f=\"arewewebextensionsyet.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Argent Data.com\" f=\"argentdata.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Arhivach\" f=\"arhivach.org.xml\"><securecookie host=\"(.+\\.)?arhivach\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"arifmetika-dobra.ru\" f=\"arifmetika-dobra.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"arigus-tv.ru\" f=\"arigus-tv.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"armenpress.am\" f=\"armenpress.am.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Arms Control.org\" f=\"armscontrol.org.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Arne Swinnen.net\" f=\"arneswinnen.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"arretsurimages.net\" f=\"arretsurimages.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ars Technica.co.uk\" f=\"arstechnica.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.arstechnica\\.co\\.uk/\" to=\"https://arstechnica.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Art19.com\" f=\"art19.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"arte (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"arte.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"artvillage.club\" default_off=\"failed ruleset test\" f=\"artvillage.club.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"artw.ru\" f=\"artw.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Arukas.io\" default_off=\"failed ruleset test\" f=\"arukas.io.xml\"><exclusion pattern=\"^http://(?:(?![^.]+\\.app\\.arukas\\.io/)(?:[^./]+\\.){2,}|(?:[^./]+\\.){3,})arukas\\.io/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Arun.gov.uk (MCB)\" platform=\"mixedcontent\" f=\"arun.gov.uk-mixedcontent.xml\"><exclusion pattern=\"^http://www1\\.arun\\.gov\\.uk/(?!/*cgi-bin(?:$|[?/]))\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Arun.gov.uk (partial)\" f=\"arun.gov.uk.xml\"><exclusion pattern=\"^http://www1\\.arun\\.gov\\.uk/(?!/*(?:$|\\?|(?:aplanning|officeforms|webapps2)(?:$|[?/])|css/|images/))\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ASA.org.uk\" f=\"asa.org.uk.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Asa Dotzler.com\" f=\"asadotzler.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ASDA.com (resources)\" platform=\"mixedcontent\" f=\"asda.com-resources.xml\"><exclusion pattern=\"^http://direct\\.asda\\.com/(?!/*(?:favicon\\.ico|on/demandware\\.static/(?!.+\\.js(?:$|\\?))))\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ASDA call time.com\" f=\"asdacalltime.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Asda Good Living.co.uk\" f=\"asdagoodliving.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://asdagoodliving\\.co\\.uk/\" to=\"https://www.asdagoodliving.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ASDA Price Guarantee.co.uk\" f=\"asdapriceguarantee.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Asexuality.org\" f=\"asexuality.org.xml\"><securecookie host=\"^www\\.asexuality\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"asfera.info\" default_off=\"failed ruleset test\" f=\"asfera.info.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ashford.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"ashford.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ashops.co.il\" f=\"ashops.co.il.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"asi.org.ru\" f=\"asi.org.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"asi.ru\" f=\"asi.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Askews and Holts.com\" f=\"askewsandholts.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ask the.Police.uk\" f=\"askthe.police.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"aspone.cz\" f=\"aspone.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"assertible.com\" f=\"assertible.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"assets-ASDA.com\" platform=\"mixedcontent\" f=\"assets-asda.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"assured\" f=\"assured.se.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"astrakhan.ru\" f=\"astrakhan.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"astrobl.ru\" default_off=\"failed ruleset test\" f=\"astrobl.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Asustor.com (partial)\" f=\"asustor.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://asustor\\.com/\" to=\"https://www.asustor.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"at-home.ru (partial)\" f=\"at-home.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ATF Online.gov\" default_off=\"failed ruleset test\" f=\"atfonline.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://atfonline\\.gov/\" to=\"https://www.atfonline.gov/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"atgfw.org\" f=\"atgfw.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Atlas.sk\" f=\"atlas.sk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ATM IA.com\" f=\"atmia.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"atvc.ru\" f=\"atvc.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Audioboom.com\" f=\"audioboom.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://support\\.audioboom\\.com/\" to=\"https://audioboom.zendesk.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Audit.Wales\" default_off=\"failed ruleset test\" f=\"audit.wales.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://autodiscover\\.audit\\.wales/.*\" to=\"https://email.wao.gov.uk/owa\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Auswärtiges Amt\" f=\"auswaertiges-amt.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Autistica.org.uk\" default_off=\"failed ruleset test\" f=\"autistica.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"auto.ru\" f=\"auto.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"autoreview.ru\" f=\"autoreview.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"autosport.com.ru\" f=\"autosport.com.ru.xml\"><rule from=\"^http://www\\.autosport\\.com\\.ru/\" to=\"https://autosport.com.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Auto Trader.co.uk (false MCB)\" platform=\"mixedcontent\" f=\"autotrader.co.uk-falsemixed.xml\"><exclusion pattern=\"^http://(?:www\\.)?autotrader\\.co\\.uk/(?!/*(?:favicon\\.ico|static/(?!.+\\.js(?:$|\\?))))\"/><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://autotrader\\.co\\.uk/\" to=\"https://www.autotrader.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Auto Trader.co.uk (partial)\" f=\"autotrader.co.uk.xml\"><exclusion pattern=\"^http://(?:www\\.)?autotrader\\.co\\.uk/(?!/*secure(?:$|[?/]))\"/><securecookie host=\"^\\.\" name=\"^(?:_gat?$|_gat_|NXCLICK2$|OAX$)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://autotrader\\.co\\.uk/\" to=\"https://www.autotrader.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Auto Trader.ie (partial)\" f=\"autotrader.ie.xml\"><securecookie host=\"^\\.\" name=\"^(?:_gat?$|_gat_|NXCLICK|OAX)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://oas\\.autotrader\\.ie/\" to=\"https://oas.autotrader.co.uk/\"/></ruleset>", "<ruleset name=\"Avco Systems.com\" f=\"avcosystems.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"avherald\" f=\"avherald.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aviation-Safety.net\" f=\"aviation-safety.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aviation Weather.gov (partial)\" f=\"aviationweather.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"avicoder.me\" f=\"avicoder.me.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Avito.ru\" f=\"avito.ru.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Avoin ministeriö\" default_off=\"expired\" f=\"avoinministerio.xml\"><securecookie host=\"^www\\.avoinministerio\\.fi\" name=\".*\"/><rule from=\"^http://avoinministerio\\.fi/\" to=\"https://www.avoinministerio.fi/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"avoinyliopisto.fi\" default_off=\"failed ruleset test\" f=\"avoinyliopisto.xml\"><rule from=\"^http://(?:www\\.)?avoinyliopisto\\.fi/\" to=\"https://www.avoinyliopisto.fi/\"/><securecookie host=\"^(?:www)?\\.avoinyliopisto\\.fi\" name=\".*\"/></ruleset>", "<ruleset name=\"avtoradio.ru\" f=\"avtoradio.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Aylesbury Vale DC.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"aylesburyvaledc.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://account\\.aylesburyvaledc\\.gov\\.uk/+(?=$|\\?)\" to=\"https://account.aylesburyvaledc.gov.uk/business/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ayyo.ru\" default_off=\"failed ruleset test\" f=\"ayyo.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"azalead.com\" f=\"azalead.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Azure.net\" f=\"azure.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"b-linked.bbyo.org\" default_off=\"breaks for non-logged-in users\" f=\"b-linked.bbyo.org.xml\"><rule from=\"^http://(www\\.)?b-linked\\.bbyo\\.org/\" to=\"https://b-linked.bbyo.org/\"/></ruleset>", "<ruleset name=\"b2d-linux.com\" f=\"b2d-linux.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"b2s.co.il\" default_off=\"expired\" platform=\"mixedcontent\" f=\"b2s.co.il.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Backchannel.com\" f=\"backchannel.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(www\\.)?backchannel\\.com/\" to=\"https://backchannel.com/\"/></ruleset>", "<ruleset name=\"backendless.com\" f=\"backendless.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bad Dragon.com (partial)\" default_off=\"failed ruleset test\" f=\"bad-dragon.com.xml\"><exclusion pattern=\"^http://bad-dragon\\.com/$\"/><securecookie host=\"^\\.bad-dragon\\.com$\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Baden-Airpark\" f=\"baden-airpark.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Baden-Wuerttemberg.de\" f=\"baden-wuerttemberg.de.xml\"><rule from=\"^http://www\\.beteiligungsportal\\.baden-wuerttemberg\\.de/\" to=\"https://beteiligungsportal.baden-wuerttemberg.de/\"/><rule from=\"^http://energiewendetage\\.baden-wuerttemberg\\.de/\" to=\"https://www.energiewendetage.baden-wuerttemberg.de/\"/><rule from=\"^http://hochwasser\\.baden-wuerttemberg\\.de/\" to=\"https://www.hochwasser.baden-wuerttemberg.de/\"/><rule from=\"^http://www\\.im\\.baden-wuerttemberg\\.de/\" to=\"https://im.baden-wuerttemberg.de/\"/><rule from=\"^http://lubw\\.baden-wuerttemberg\\.de/\" to=\"https://www.lubw.baden-wuerttemberg.de/\"/><rule from=\"^http://www\\.mfw\\.baden-wuerttemberg\\.de/\" to=\"https://mfw.baden-wuerttemberg.de/\"/><rule from=\"^http://www\\.mlr\\.baden-wuerttemberg\\.de/\" to=\"https://mlr.baden-wuerttemberg.de/\"/><rule from=\"^http://www\\.mvi\\.baden-wuerttemberg\\.de/\" to=\"https://mvi.baden-wuerttemberg.de/\"/><rule from=\"^http://www\\.mwk\\.baden-wuerttemberg\\.de/\" to=\"https://mwk.baden-wuerttemberg.de/\"/><rule from=\"^http://www\\.quickle\\.baden-wuerttemberg\\.de/\" to=\"https://quickle.baden-wuerttemberg.de/\"/><rule from=\"^http://www\\.sm\\.baden-wuerttemberg\\.de/\" to=\"https://sm.baden-wuerttemberg.de/\"/><rule from=\"^http://www\\.stm\\.baden-wuerttemberg\\.de/\" to=\"https://stm.baden-wuerttemberg.de/\"/><rule from=\"^http://www\\.um\\.baden-wuerttemberg\\.de/\" to=\"https://um.baden-wuerttemberg.de/\"/><rule from=\"^http://www\\.vm\\.baden-wuerttemberg\\.de/\" to=\"https://vm.baden-wuerttemberg.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Badil.info\" f=\"badil.info.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"baifendian (partial)\" f=\"baifendian.xml\"><rule from=\"^http://(\\w+\\.api|ssl-[\\w\\-]+)\\.baifendian\\.com/\" to=\"https://$1.baifendian.com/\"/><rule from=\"^http://passport\\.baifendian\\.com/\" to=\"https://passport.baifendian.com/\"/></ruleset>", "<ruleset name=\"baikal-daily.ru\" f=\"baikal-daily.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Baird Mounts.com\" f=\"bairdmounts.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"baksman.com\" f=\"baksman.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Balabit.hu\" f=\"balabit.hu.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?balabit\\.hu/+\" to=\"https://www.balabit.com/hu/\"/><rule from=\"^http://support\\.balabit\\.hu/+\" to=\"https://support.balabit.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ballotpedia.org\" f=\"ballotpedia.org.xml\"><securecookie host=\"^\\.\" name=\"^__qca$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"balnet.ru\" f=\"balnet.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"baltika.fm\" f=\"baltika.fm.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bandaancha.eu\" f=\"bandaancha.eu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bankcomat.com\" default_off=\"failed ruleset test\" f=\"bankcomat.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bankir.ru\" f=\"bankir.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bargainmoose.ca\" f=\"bargainmoose.ca.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Barnardos.org.uk (partial)\" default_off=\"failed ruleset test\" f=\"barnardos.org.uk.xml\"><securecookie host=\"^\\.\" name=\"^_(?:_qca|gat?)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://barnardos\\.org\\.uk/\" to=\"https://www.barnardos.org.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Barnet.gov.uk\" f=\"barnet.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://barnet\\.gov\\.uk/\" to=\"https://www.barnet.gov.uk/\"/><rule from=\"^http://committeepapers\\.barnet\\.gov\\.uk/\" to=\"https://barnet.moderngov.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Barnsley.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"barnsley.gov.uk.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.www\\.\" name=\".\"/><rule from=\"^http://barnsley\\.gov\\.uk/\" to=\"https://www.barnsley.gov.uk/\"/><rule from=\"^http://consult\\.barnsley\\.gov\\.uk/\" to=\"https://barnsley-consult.objective.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Barrons.com (partial)\" f=\"barrons.com.xml\"><securecookie host=\".\" name=\"^optimizely\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"baruwa.com\" f=\"baruwa.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"base64-image.de\" f=\"base64-image.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"base64decode.org\" f=\"base64decode.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BaseKit.com (partial)\" f=\"basekit.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^https?://custom-css\\.basekit\\.com/\" to=\"https://d282ykz6vx01th.cloudfront.net/\"/><rule from=\"^http://resources\\.basekit\\.com/\" to=\"https://basekit.readme.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Basildon.gov.uk (partial)\" f=\"basildon.gov.uk.xml\"><exclusion pattern=\"^http://www\\.basildon\\.gov\\.uk/+(?!\\w+/(?:css|images|template)/|CHttpHandler\\.ashx|media/)\"/><securecookie host=\"^(?!www\\.)\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bastamag.net\" f=\"bastamag.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bataysk-gorod.ru\" default_off=\"failed ruleset test\" f=\"bataysk-gorod.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bato.to\" f=\"bato.to.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bauer creative.net\" platform=\"mixedcontent\" f=\"bauercreative.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://static\\.bauercreative\\.net/\" to=\"https://d2n06l7rwk07dh.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Bauer Media.co.uk (partial)\" default_off=\"failed ruleset test\" f=\"bauermedia.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Baumglueck.de\" f=\"baumglueck.de.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://baumglueck\\.de/\" to=\"https://www.baumglueck.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BBC.co.uk (resources)\" platform=\"mixedcontent\" f=\"bbc.co.uk-resources.xml\"><exclusion pattern=\"^http://(?:www\\.)?bbc\\.co\\.uk/(?!/*favicon\\.ico)\"/><exclusion pattern=\"^http://(?!.+\\.(?:bmp|css|gifv?|ico|jpe?g|pdf|png|svg|tiff?|ttf|woff)(?:$|\\?))\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BBCi.co.uk (partial)\" platform=\"mixedcontent\" f=\"bbci.co.uk.xml\"><exclusion pattern=\"^http:/(?!.+\\.(?:bmp|css|gifv?|ico|jpe?g|pdf|png|svg|tiff?|ttf|woff)(?:$|\\?))\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BBCimg.co.uk\" platform=\"mixedcontent\" f=\"bbcimg.co.uk.xml\"><exclusion pattern=\"^http:/(?!.+\\.(?:bmp|css|gifv?|ico|jpe?g|pdf|png|svg|tiff?|ttf|woff)(?:$|\\?))\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BBG.gov (partial)\" f=\"bbg.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bundesamt für Bevölkerungsschutz und Katastrophenhilfe\" f=\"bbk.bund.de.xml\"><rule from=\"^http://bbk\\.bund\\.de/\" to=\"https://www.bbk.bund.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bbthat.com\" platform=\"mixedcontent\" f=\"bbthat.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bcebos.com\" f=\"bcebos.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BDIP.org.uk (partial)\" f=\"bdip.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bdstatic.com\" f=\"bdstatic.com.xml\"><rule from=\"^http://sjws\\.bdstatic\\.com/\" to=\"https://shoujiweishi.baidu.com/\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Beabloo.com\" f=\"beabloo.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bedford.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"bedford.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.athleticstadium\\.bedford\\.gov\\.uk/.*\" to=\"https://www.bedford.gov.uk/leisure_and_culture/leisure_and_fitness_facilities/athletic_stadium.aspx\"/><rule from=\"^http://www\\.robinsonpool\\.bedford\\.gov\\.uk/.*\" to=\"https://www.bedford.gov.uk/leisure_and_culture/leisure_and_fitness_facilities/swimming_pools/robinson_pool.aspx\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bedford Corn Exchange.co.uk\" f=\"bedfordcornexchange.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"beeg.\" f=\"beeg.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Beej.us\" f=\"beej.us.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"beeline.kz\" f=\"beeline.kz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Beers of Europe\" platform=\"mixedcontent\" f=\"beersofeurope.co.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"beget.com\" f=\"beget.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"behindthename.com\" f=\"behindthename.com.xml\"><rule from=\"^http://(given|mail)\\.behindthename\\.com/\" to=\"https://www.behindthename.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"beirel.ru (partial)\" f=\"beirel.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"belaruspartisan.org\" f=\"belaruspartisan.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"belive.ru\" platform=\"mixedcontent\" f=\"belive.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bell-Cranel.net\" f=\"bell-cranel.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"belregion.ru\" f=\"belregion.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"benchmarkjs.com\" f=\"benchmarkjs.com.xml\"><rule from=\"^http://(?:www\\.)?benchmarkjs\\.com/\" to=\"https://benchmarkjs.com/\"/><securecookie host=\"^benchmarkjs\\.com$\" name=\".*\"/></ruleset>", "<ruleset name=\"bepixelung.org\" f=\"bepixelung.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bestchange.ru\" f=\"bestchange.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bet365.es\" f=\"bet365.es.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bet365 Affiliates.com\" f=\"bet365affiliates.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://bet365affiliates\\.com/\" to=\"https://www.bet365affiliates.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"betanews.com (partial)\" f=\"betanews.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://feeds\\.betanews\\.com/\" to=\"https://feeds.feedburner.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"betternet.co\" f=\"betternet.co.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Beyond Binary.io\" f=\"beyondbinary.io.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bezeq.co.il (partial)\" default_off=\"failed ruleset test\" f=\"bezeq.co.il.xml\"><securecookie host=\"^\\.\" name=\"^(?:_gat?$|_gat_|TS[\\da-f])\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bezopasnik.org\" f=\"bezopasnik.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bezrealitky.cz\" f=\"bezrealitky.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bfm.ru\" f=\"bfm.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bgbilling.ru\" f=\"bgbilling.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Das Bundesgesetzblatt (BGBl.)\" f=\"bgbl.de.xml\"><rule from=\"^http://bgbl\\.de/\" to=\"https://www.bgbl.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bger.ch\" default_off=\"failed ruleset test\" f=\"bger.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BH Photo.com\" platform=\"mixedcontent\" f=\"bhphoto.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BH Photo Video.com (partial)\" f=\"bhphotovideo.com.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bicomsystems.com\" default_off=\"failed ruleset test\" f=\"bicomsystems.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bider & Tanner\" f=\"biderundtanner.ch.xml\"><rule from=\"^http://biderundtanner\\.ch/\" to=\"https://www.biderundtanner.ch/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bigfile.to (partial)\" f=\"bigfile.to.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"biglinux.com.br\" f=\"biglinux.com.br.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"biglion.ru\" f=\"biglion.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bikeability.org.uk\" f=\"bikeability.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BikeBiz.com\" f=\"bikebiz.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"billing-lan.net\" f=\"billing-lan.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Birmingham.gov.uk (false MCB)\" platform=\"mixedcontent\" f=\"birmingham.gov.uk-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Birmingham.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"birmingham.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^(?:incap_ses|visid_incap)_\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BIS.gov.uk (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"bis.gov.uk-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bit-com.ru (partial)\" f=\"bit-com.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bit-hdtv.com\" f=\"bit-hdtv.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bitadexchange.com\" f=\"bitadexchange.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BitCasa.com (partial)\" default_off=\"failed ruleset test\" f=\"bitcasa.xml\"><exclusion pattern=\"^http://(?:blog|developer\\.blog|forums|l)\\.bitcasa\\.com/\"/><securecookie host=\"^(?:developer\\.|www\\.)?bitcasa\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BitClub Network.com\" f=\"bitclubnetwork.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bitcoinchain.com\" f=\"bitcoinchain.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bitcoinknots.org\" default_off=\"failed ruleset test\" f=\"bitcoinknots.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BitcoinTrezor.com\" f=\"bitcointrezor.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bitcoinwatch.com\" f=\"bitcoinwatch.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bither.net\" f=\"bither.net.xml\"><rule from=\"^http://www\\.bither\\.net/\" to=\"https://bither.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bitmixer\" f=\"bitmixer.io.xml\"><securecookie host=\"bitmixer\\.io$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bitrise.io\" default_off=\"failed ruleset test\" f=\"bitrise.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BitShare.com\" platform=\"mixedcontent\" f=\"bitshare.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bizible.com (partial)\" f=\"bizible.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bizx.info\" f=\"bizx.info.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bk-partners1.co.uk\" f=\"bk-partners1.co.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bk55.ru\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"bk55.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BKrtx.com\" f=\"bkrtx.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"blackarrowsoftware.com\" f=\"blackarrowsoftware.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Blackburn.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"blackburn.gov.uk.xml\"><securecookie host=\"^\\.\" name=\"^citrix_\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"blackgate.net\" f=\"blackgate.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Blackmore Ops.com\" f=\"blackmoreops.com.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BLAKE2.net\" f=\"blake2.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"blankonlinux.or.id\" f=\"blankonlinux.or.id.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bundesanstalt für Landwirtschaft und Ernährung\" f=\"ble.de.xml\"><rule from=\"^http://ble\\.de/\" to=\"https://www.ble.de/\"/><rule from=\"^http://www\\.elska\\.ble\\.de/\" to=\"https://elska.ble.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bleachbit.org\" f=\"bleachbit.org.xml\"><rule from=\"^http://bleachbit\\.org/\" to=\"https://www.bleachbit.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Blindseeker.com\" f=\"blindseeker.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"blockchain-status.com\" f=\"blockchain-status.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"blogsmithmedia.com (partial)\" f=\"blogsmithmedia.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bloomsky (partial)\" default_off=\"failed ruleset test\" f=\"bloomsky.com.xml\"><securecookie host=\"^(dashboard|map|maps|www)\\.?bloomsky\\.com$\" name=\".+\"/><rule from=\"^http://bloomsky\\.com/\" to=\"https://www.bloomsky.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Blubrry.com (partial)\" f=\"blubrry.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"blueonyx.it\" f=\"blueonyx.it.xml\"><rule from=\"^http://blueonyx\\.it/\" to=\"https://www.blueonyx.it/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BMBF.de\" f=\"bmbf.de.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bundesministerium für Verkehr und digitale Infrastruktur\" f=\"bmvi.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bn.by\" f=\"bn.by.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bnkomi.ru\" f=\"bnkomi.ru.xml\"><rule from=\"^http://bnkomi\\.ru/\" to=\"https://www.bnkomi.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BNL.gov (partial)\" default_off=\"failed ruleset test\" f=\"bnl.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.phobos\\.bnl\\.gov/+\" to=\"https://www.bnl.gov/phobos/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bnw.im\" f=\"bnw.im.xml\"><securecookie host=\"^bnw\\.im$\" name=\".*\"/><rule from=\"^http://www\\.bnw\\.im/\" to=\"https://bnw.im/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BNY Mellon.com (partial)\" default_off=\"failed ruleset test\" f=\"bnymellon.com.xml\"><securecookie host=\"^\\.\" name=\"^_(?:_utm|gat?$|gat_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://bnymellon\\.com/\" to=\"https://www.bnymellon.com/\"/><rule from=\"^http://www-colsonservices\\.extlb\\.bnymellon\\.com/\" to=\"https://www.colsonservices.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BNY Mellonim.com\" default_off=\"failed ruleset test\" f=\"bnymellonim.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://bnymellonim\\.com/\" to=\"https://www.bnymellonim.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Boell.org\" f=\"boell.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Boerse.to\" f=\"boerse.to.xml\"><securecookie host=\"^(www\\.)?boerse\\.to\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bolton.gov.uk (partial)\" f=\"bolton.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BookFusion.com (partial)\" f=\"bookfusion.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bookit.nl\" f=\"bookit.nl.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BookIt Secure.com\" f=\"bookitsecure.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bookware3000\" f=\"bookware3000.ca.xml\"><securecookie host=\"^([\\w-]+)\\.bookware3000\\.ca$\" name=\".+\"/><rule from=\"^http://([\\w-]+)\\.bookware3000\\.ca/\" to=\"https://$1.bookware3000.ca/\"/><exclusion pattern=\"^http://canbead\\.bookware3000\\.ca/\"/></ruleset>", "<ruleset name=\"boomstarter.ru\" default_off=\"failed ruleset test\" f=\"boomstarter.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bosfera.ru\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"bosfera.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bosslinux.in\" f=\"bosslinux.in.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Boston Fed.org (partial)\" f=\"bostonfed.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Boundary Devices.com\" f=\"boundarydevices.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bowenpress.com (MCB)\" f=\"bowenpress.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bower.io\" f=\"bower.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"boxun.com\" f=\"boxun.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bpb.de\" f=\"bpb.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bplaced\" f=\"bplaced.xml\"><securecookie host=\"^www\\.bplaced\\.net$\" name=\".*\"/><rule from=\"^http://bplaced\\.net/\" to=\"https://www.bplaced.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BPS Shop.org.uk\" f=\"bpsshop.org.uk.xml\"><rule from=\"^http://(?:www\\.)?bpsshop\\.org\\.uk/.*\" to=\"https://shop.bps.org.uk/\"/></ruleset>", "<ruleset name=\"Bracknell-Forest.gov.uk (partial)\" f=\"bracknell-forest.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://consult\\.bracknell-forest\\.gov\\.uk/\" to=\"https://bracknell-forest-consult.objective.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bragazeta.ru\" f=\"bragazeta.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"brandhk.gov.hk\" f=\"brandhk.gov.hk.xml\"><rule from=\"^http://(www\\.)?brandhk\\.gov\\.hk/\" to=\"https://www.brandhk.gov.hk/\"/></ruleset>", "<ruleset name=\"BrassRing.com\" f=\"brassring.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"breadwallet.com\" f=\"breadwallet.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Breaking Muscle.com\" f=\"breakingmuscle.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Breakingviews.com\" f=\"breakingviews.com.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"brew.sh\" f=\"brew.sh.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BrianChristner.io\" f=\"brianchristner.io.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bridgend.gov.uk (partial)\" f=\"bridgend.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Brieflaufzeiten.de\" f=\"brieflaufzeiten.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bristol.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"bristol.gov.uk.xml\"><exclusion pattern=\"^http://www2\\.bristol\\.gov\\.uk/(?!/*(?:$|\\?|(?:CommunityCentreViewer|CouncillorComponent|CouncillorFinder|WardFinder|committeeMeetingFinder)/*(?:$|\\?)|ccm-ldn-theme/|form/|item/wardfinder\\.html|misc/|modules/|news/|sites/))\"/><securecookie host=\"^(?!www2\\.)\\w\" name=\".\"/><rule from=\"^http://cp\\.bristol\\.gov\\.uk:6082/\" to=\"https://cp.bristol.gov.uk:6082/\"/><rule from=\"^http://efsm\\.bristol\\.gov\\.uk/(?:pls/apex/f\\?p=101:1)?$\" to=\"https://efsm.bristol.gov.uk/pls/educa/f?p=109\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BritMilFit.com\" f=\"britmilfit.com.xml\"><securecookie host=\"^\\.\" name=\"^__qca\"/><securecookie host=\"^(?!\\.britmilfit\\.com$).\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"broadagesports.com\" default_off=\"failed ruleset test\" f=\"broadagesports.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Broadland.gov.uk (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"broadland.gov.uk-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?broadland\\.gov\\.uk/\" to=\"https://secure.broadland.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bromsgrove.gov.uk (partial)\" f=\"bromsgrove.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"browsec.com\" f=\"browsec.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Browser-Update.org\" f=\"browser-update.org.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Broxtowe.gov.uk (partial)\" f=\"broxtowe.gov.uk.xml\"><exclusion pattern=\"^http://(?:www\\.)?broxtowe\\.gov\\.uk/(?!/*(?:CHttpHandler\\.ashx|css/|images/|index\\.aspx\\?(?:.*&)?articleid=6(?:$|&)|media/))\"/><exclusion pattern=\"^http://m\\.broxtowe\\.gov\\.uk/(?!/*media/|.+/(?:cs|image)s/)\"/><securecookie host=\"^[^.bmw]\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Brunel.ac.uk (partial)\" f=\"brunel.ac.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.www\\.\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"btc-e.nz\" f=\"btc-e.nz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"btdig.com\" f=\"btdig.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BT Installer Shop.com\" f=\"btinstallershop.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"buchhaus.ch\" f=\"buchhaus.ch.xml\"><rule from=\"^http://buchhaus\\.ch/\" to=\"https://www.buchhaus.ch/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bucks CC.gov.uk (false MCB)\" platform=\"mixedcontent\" f=\"buckscc.gov.uk-falsemixed.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bucks CC.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"buckscc.gov.uk.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Buck Wear.com\" f=\"buckwear.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"buddybuild.com\" f=\"buddybuild.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"buhonline.ru\" f=\"buhonline.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"buildbot.net\" f=\"buildbot.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bukkit.org (partial)\" f=\"bukkit.org.xml\"><exclusion pattern=\"^http://dev\\.bukkit\\.org/+(?!artisan/|favicon\\.ico|media/)\"/><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^(?!dev\\.)\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bundesanzeiger-Verlag\" f=\"bundesanzeiger-verlag.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bungalows.nl\" f=\"bungalows.nl.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bunkus.org\" f=\"bunkus.org.xml\"><securecookie host=\"^www\\.bunkus\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"burgerking.ru\" f=\"burgerking.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bury.gov.uk (false MCB)\" platform=\"mixedcontent\" f=\"bury.gov.uk-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bury.gov.uk (partial)\" f=\"bury.gov.uk.xml\"><exclusion pattern=\"^http://(?:www\\.)?bury\\.gov\\.uk/(?!/*(?:[Bb]ury/(?:css|[Ii]mages|template)/|favicon\\.ico|media/))\"/><securecookie host=\"^\\.\" name=\"^(?:III_EXPT_FILE|III_SESSION_ID|SESSION_LANGUAGE)$\"/><securecookie host=\"^(?!www\\.)\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Businessclick.com\" f=\"businessclick.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://businessclick\\.com/\" to=\"https://www.businessclick.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Business News.com.au\" f=\"businessnews.com.au.xml\"><securecookie host=\"^\\.\" name=\"^(?:_gat?$|_gat_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://businessnews\\.com\\.au/\" to=\"https://www.businessnews.com.au/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"busybox.net\" f=\"busybox.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Buttons.social\" f=\"buttons.social.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bux.cz\" f=\"bux.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Buy A Plan.co.uk\" default_off=\"needs clearnet testing\" f=\"buyaplan.co.uk.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"BuyDomains.com (partial)\" f=\"buydomains.com.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://static\\.buydomains\\.com/\" to=\"https://d1pux066p3zvi3.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Buy with Confidence.gov.uk\" f=\"buywithconfidence.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"buzzorange.com\" f=\"buzzorange.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Buzzsprout.com\" f=\"buzzsprout.com.xml\"><exclusion pattern=\"^http://(?:[^./]+\\.){2,}buzzsprout\\.com/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bypassingcensorshipinthe.uk\" default_off=\"failed ruleset test\" f=\"bypassingcensorshipinthe.uk.xml\"><securecookie host=\"^.*\\.bypassingcensorshipinthe\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Bytes.com\" f=\"bytes.com.xml\"><securecookie host=\"^\\.\" name=\"^bb\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CA.cz\" f=\"ca.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CAAT.org.uk\" f=\"caat.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CADlink.com\" f=\"cadlink.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Calastone.com\" f=\"calastone.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CallRail.com (partial)\" f=\"callrail.com.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cambridge.gov.uk (partial)\" f=\"cambridge.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://mayor\\.cambridge\\.gov\\.uk/+\" to=\"https://cambridgemayor.wordpress.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cambridge Live Trust.co.uk\" f=\"cambridgelivetrust.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cambridgeshire.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"cambridgeshire.gov.uk.xml\"><exclusion pattern=\"^http://hpac\\.cambridgeshire\\.gov\\.uk/(?!/*(?:$|\\?|HPAC(?:$|[?/])))\"/><exclusion pattern=\"^http://parking\\.cambridgeshire\\.gov\\.uk/$\"/><securecookie host=\"^\\.www\\.\" name=\".\"/><securecookie host=\"^(?!hpac\\.)\\w\" name=\".\"/><rule from=\"^http://cambridgeshire\\.gov\\.uk/\" to=\"https://www.cambridgeshire.gov.uk/\"/><rule from=\"^http://hpac\\.cambridgeshire\\.gov\\.uk/+$\" to=\"https://www.hpac.nhs.uk/HPAC/HPACIndex.jsp?sitename=hpac.cambridgeshire.gov.uk\"/><rule from=\"^http://hpac\\.cambridgeshire\\.gov\\.uk/+\\?(.*)\" to=\"https://www.hpac.nhs.uk/HPAC/HPACIndex.jsp?$1&sitename=hpac.cambridgeshire.gov.uk\"/><rule from=\"^http://hpac\\.cambridgeshire\\.gov\\.uk/+HPAC(?=$|(/[^?]*)$)\" to=\"https://www.hpac.nhs.uk/HPAC$1?sitename=hpac.cambridgeshire.gov.uk\"/><rule from=\"^http://hpac\\.cambridgeshire\\.gov\\.uk/+HPAC(/(?!.*sitename=hpac\\.cambridgeshire\\.gov\\.uk).*)\" to=\"https://www.hpac.nhs.uk/HPAC$1&sitename=hpac.cambridgeshire.gov.uk\"/><rule from=\"^http://hpac\\.cambridgeshire\\.gov\\.uk/\" to=\"https://www.hpac.nhs.uk/\"/><rule from=\"^https?://pensions\\.cambridgeshire\\.gov\\.uk/\" to=\"https://pensions.northamptonshire.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cambridgeshire.net\" f=\"cambridgeshire.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Campaign for Houston.com\" f=\"campaignforhouston.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Campus Technology.com\" f=\"campustechnology.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CamScanner.com\" f=\"camscanner.com.xml\"><securecookie host=\"^\\.\" name=\"^_cs_stat\"/><securecookie host=\"^\\.blog\\.\" name=\".\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cancer Research UK.org (partial)\" default_off=\"failed ruleset test\" f=\"cancerresearchuk.org.xml\"><exclusion pattern=\"^http://donateinmemory\\.cancerresearchuk\\.org/+(?!\\w+/(?:images|styles)|(?:create-a-page|login)/*(?:$|\\?|/p/))\"/><exclusion pattern=\"^http://myprojects\\.cancerresearchuk\\.org/+(?!favicon\\.ico|public/|register(?:$|[?/])|templates/|uploads/)\"/><exclusion pattern=\"^http://publications\\.cancerresearchuk\\.org/+(?!CSS/|Login\\.aspx|Scripts/.+\\.css|SiteImages/|downloads/[Pp]roduct/|admin/Images/)\"/><exclusion pattern=\"http://raceforlife\\.cancerresearchuk\\.org/+(?!\\w+/assets/(?:css|img)/|.+/groups/.+/documents/digitalmedia/|konakart-images/|rfl/forms/shop/)\"/><exclusion pattern=\"^http://(?:www\\.)?cancerresearchuk\\.org/+(?!(?:cr_weblayout/(?:megamenu/)?images/|prod_consump/(?:groups/.+/(?:image|stylesheet)|images|megamenu/stylesheets|resources)/|sites/))\"/><securecookie host=\"^\\.\" name=\"^(?:__qca|_gat?)$\"/><securecookie host=\"^(?:crukip|egms|\\.giftshop|survey)\\.\" name=\".\"/><rule from=\"^http://cancerresearchuk\\.org/\" to=\"https://www.cancerresearchuk.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CANDDi.com (partial)\" f=\"canddi.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://canddi\\.com/\" to=\"https://www.canddi.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Can I use\" f=\"caniuse.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cannock Chase DC.gov.uk\" f=\"cannockchasedc.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Canon.com.au (partial)\" f=\"canon.com.au.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.(?:staff)?store\\.\" name=\".\"/><rule from=\"^http://worldofeas\\.canon\\.com\\.au/[^?]*\" to=\"https://www.canon.com.au/worldofeos/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Capita-Software.co.uk (partial)\" f=\"capita-software.co.uk.xml\"><exclusion pattern=\"^http://www\\.capita-software\\.co\\.uk/(?!/*sitefiles/)\"/><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^[^.w]\" name=\".\"/><rule from=\"^http://storage\\.capita-software\\.co\\.uk/\" to=\"https://cssmarketing.blob.core.windows.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Capita Discovery.co.uk\" f=\"capitadiscovery.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.capitadiscovery\\.co\\.uk/\" to=\"https://capitadiscovery.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Captora.com (partial)\" default_off=\"failed ruleset test\" f=\"captora.com.xml\"><exclusion pattern=\"^http://digitalmarketing\\.captora\\.com/(?!/*(?:$|\\?|css/|rs/|images/))\"/><securecookie host=\"^(?!digitalmarketing\\.)\\w\" name=\".\"/><rule from=\"^http://digitalmarketing\\.captora\\.com/+(?:\\?.*)?$\" to=\"https://captora.com/\"/><rule from=\"^http://digitalmarketing\\.captora\\.com/\" to=\"https://na-sj09.marketo.com/\"/><rule from=\"^http://resources\\.captora\\.com/\" to=\"https://captora.uberflip.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cardiff.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"cardiff.gov.uk.xml\"><exclusion pattern=\"^http://formerly\\.cardiff\\.gov\\.uk/+(?!favicon\\.ico|template/)\"/><securecookie host=\"^(?!formerly\\.)\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Care Careers Devon.org.uk\" default_off=\"failed ruleset test\" f=\"carecareersdevon.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CareerBuilder.co.uk (partial)\" platform=\"mixedcontent\" f=\"careerbuilder.co.uk.xml\"><securecookie host=\"^\\.\" name=\"^(?:_ga|s_v)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CareerBuilder.no\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"careerbuilder.no.xml\"><securecookie host=\"^\\.\" name=\"^(?:_ga|s_v)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://api\\.careerbuilder\\.no/\" to=\"https://api.careerbuilder.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Careerbuilder Careers.com\" f=\"careerbuildercareers.com.xml\"><securecookie host=\"^\\.\" name=\"^_ga\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://careerbuildercareers\\.com/\" to=\"https://www.careerbuildercareers.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Care International.org.uk (partial)\" default_off=\"failed ruleset test\" f=\"careinternational.org.uk.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CarePlace.org.uk\" f=\"careplace.org.uk.xml\"><exclusion pattern=\"^http://(?:[^./]+\\.){2}careplace\\.org\\.uk/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Carlisle.gov.uk (partial)\" f=\"carlisle.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"carrefour.es\" f=\"carrefour.es.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cars.ru\" f=\"cars.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Carzone.ie (partial)\" f=\"carzone.ie.xml\"><securecookie host=\"^\\.\" name=\"^(?:s_v|_gat?$|_gat_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://metrics\\.carzone\\.ie/\" to=\"https://tradermediagroup.122.2o7.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Casa.com\" f=\"casa.com.xml\"><securecookie host=\".\" name=\"^aps-trtmnt$\"/><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://casa\\.com/\" to=\"https://www.casa.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cases.legal\" f=\"cases.legal.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cash.ch\" f=\"cash.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Catch Digital.com (partial)\" default_off=\"failed ruleset test\" f=\"catchdigital.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Catch Themes.com\" f=\"catchthemes.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cbox.ws\" f=\"cbox.ws.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CBS Corporation.com (partial)\" f=\"cbscorporation.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CCC-CH.ch\" f=\"ccc-ch.ch.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cccliparts.org\" f=\"cccliparts.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CCCZH.ch\" f=\"ccczh.ch.xml\"><exclusion pattern=\"^http://(?:[^./]+\\.){2,}ccczh\\.ch/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CDash.org (partial)\" f=\"cdash.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cdbaby.com\" f=\"cdbaby.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CDC.gov (partial)\" f=\"cdc.gov.xml\"><securecookie host=\"^\\.\" name=\"^(?:_gat?$|s_\\w)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://mtrics\\.cdc\\.gov/\" to=\"https://cdc.112.2o7.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cdngc.net\" f=\"cdngc.net.xml\"><exclusion pattern=\"^http://upupgame\\.sslcs\\.cdngc\\.net\\.sslcs\\.cdngc\\.net/$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cdnmaster\" f=\"cdnmaster.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cdntwrk.com\" f=\"cdntwrk.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cdnvideo.ru\" f=\"cdnvideo.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cede\" f=\"cede.ch.xml\"><rule from=\"^http://(?:www\\.)?cede\\.ch/\" to=\"https://www.cede.ch/\"/></ruleset>", "<ruleset name=\"censor.net.ua\" f=\"censor.net.ua.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"censornet.com\" default_off=\"failed ruleset test\" f=\"censornet.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"centbrowser\" f=\"centbrowser.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Central-Lincs.org.uk\" default_off=\"failed ruleset test\" f=\"central-lincs.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?central-lincs\\.org\\.uk/\" to=\"https://www.lincolnshire.gov.uk/central-lincolnshire/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"centralindex.com\" platform=\"mixedcontent\" f=\"centralindex.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://assets\\.centralindex\\.com/\" to=\"https://dkthlrncwzdcx.cloudfront.net/\"/></ruleset>", "<ruleset name=\"centralops.net\" f=\"centralops.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Centre for Mental Health.org.uk\" f=\"centreformentalhealth.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Centres Direct.co.uk\" f=\"centresdirect.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Centrify.com (partial)\" default_off=\"failed ruleset test\" f=\"centrify.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:_gat?|ARRAffinity)$\"/><securecookie host=\"^(?!info\\.)\\w\" name=\".\"/><rule from=\"^http://centrify\\.com/\" to=\"https://www.centrify.com/\"/><rule from=\"^http://edge\\.centrify\\.com/\" to=\"https://d1bymqnf4zi2cz.cloudfront.net/\"/><rule from=\"^http://feeds\\.centrify\\.com/\" to=\"https://feeds.feedburner.com/\"/><rule from=\"^http://info\\.centrify\\.com/+(?:\\?.*)?$\" to=\"https://www.centrify.com/\"/><rule from=\"^http://info\\.centrify\\.com/\" to=\"https://na-sjg.marketo.com/\"/><exclusion pattern=\"^http://info\\.centrify\\.com/+(?!$|\\?|css/|images/|rs/)\"/><rule from=\"^http://uptime\\.centrify\\.com/\" to=\"https://cetrify.statuspage.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Centrum.cz\" f=\"centrum.cz.xml\"><rule from=\"^http://aktualne\\.centrum\\.cz/\" to=\"https://www.aktualne.cz/\"/><rule from=\"^http://fotoalba\\.centrum\\.cz/\" to=\"https://fotoalba.xchat.cz/\"/><rule from=\"^http://sw\\.centrum\\.cz/\" to=\"https://www.sw.centrum.cz/\"/><rule from=\"^http://xchat\\.centrum\\.cz/\" to=\"https://www.xchat.cz/\"/><rule from=\"^http://zena\\.centrum\\.cz/\" to=\"https://www.zena.cz/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Centrum.sk\" f=\"centrum.sk.xml\"><rule from=\"^http://centrum\\.sk/\" to=\"https://www.centrum.sk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CEOP.police.uk\" f=\"ceop.police.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CER.org.uk\" f=\"cer.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CertDepot.net\" f=\"certdepot.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Certificate Details.com\" f=\"certificatedetails.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Český hosting\" default_off=\"failed ruleset test\" f=\"cesky-hosting.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CH-Open.ch\" f=\"ch-open.ch.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ch.ch\" f=\"ch.ch.xml\"><securecookie host=\"^(?:www\\.)?\\.ch\\.ch$\" name=\".+\"/><rule from=\"^http://ch\\.ch/\" to=\"https://www.ch.ch/\"/><rule from=\"^http://([^/:@]+)?\\.ch\\.ch/\" to=\"https://$1.ch.ch/\"/></ruleset>", "<ruleset name=\"chainfire.eu\" default_off=\"failed ruleset test\" f=\"chainfire.eu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"championat-rostov.ru\" f=\"championat-rostov.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ChangeAgain.me (partial)\" f=\"changeagain.me.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"changecopyright.ru\" platform=\"mixedcontent\" f=\"changecopyright.ru.xml\"><rule from=\"^http://www\\.changecopyright\\.ru/\" to=\"https://changecopyright.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"changeinfo.ru\" f=\"changeinfo.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"charen.ch\" f=\"charen.ch.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Charlotte Nature Museum.org (resources)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"charlottenaturemuseum.org-resources.xml\"><exclusion pattern=\"^http://(?:www\\.)?charlottenaturemuseum\\.org/(?!(?!.+\\.(?:js|swf)(?:$|\\?))/*(?:assets/|content/|favicon\\.ico))\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chatlio.com\" f=\"chatlio.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://status\\.chatlio\\.com/\" to=\"https://chatlio.statuspage.io/\"/><rule from=\"^http://www\\.chatlio\\.com/\" to=\"https://chatlio.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CHCOC.gov\" f=\"chcoc.gov.xml\"><exclusion pattern=\"^http://(?:[^./]+\\.){2,}chcoc\\.gov/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cheap And Speedy Traffic School.com\" f=\"cheapandspeedytrafficschool.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cheapies.nz\" f=\"cheapies.nz.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cheatography.com\" f=\"cheatography.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Checkbox.com\" f=\"checkbox.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Checkmyrota\" f=\"checkmyrota.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cheatos Museum.com\" f=\"cheetosmuseum.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://cheetosmuseum\\.com/\" to=\"https://www.cheetosmuseum.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cherwell.gov.uk (resources)\" platform=\"mixedcontent\" f=\"cherwell.gov.uk-resources.xml\"><exclusion pattern=\"http://www\\.cherwell\\.gov\\.uk/(?!/*(?:css|images|media)/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cheshire.Police.uk\" f=\"cheshire.police.uk.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cheshire Police Alert.co.uk\" f=\"cheshirepolicealert.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cheshire West and Chester.gov.uk (false MCB)\" platform=\"mixedcontent\" f=\"cheshirewestandchester.gov.uk-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cheshire West and Chester.gov.uk (partial)\" f=\"cheshirewestandchester.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://consult\\.cheshirewestandchester\\.gov\\.uk/\" to=\"https://epnbc-consult.objective.co.uk/\"/><rule from=\"^http://mylimehouse\\.cheshirewestandchester\\.gov\\.uk/\" to=\"https://epnbc.objective.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chesterfield.gov.uk (partial)\" f=\"chesterfield.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"chetv.ru\" f=\"chetv.ru.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chichester.gov.uk (false MCB)\" platform=\"mixedcontent\" f=\"chichester.gov.uk-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chichester.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"chichester.gov.uk.xml\"><exclusion pattern=\"^http://www\\.chichester\\.gov\\.uk/(?!/*(?:CHttpHandler\\.ashx|contactus(?:$|\\?)|images/|media/)|.+/(?:css|images|template)/)\"/><securecookie host=\"^(?!www\\.)\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Childrens Commissioner.gov.uk\" f=\"childrenscommissioner.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://childrenscommissioner\\.gov\\.uk/\" to=\"https://www.childrenscommissioner.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ChinaFile.com (partial)\" default_off=\"failed ruleset test\" f=\"chinafile.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"chipdip.ru\" f=\"chipdip.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"chita.ru\" f=\"chita.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"chitaitext.ru\" f=\"chitaitext.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Choose Privacy Week.org\" f=\"chooseprivacyweek.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Chorley.gov.uk (partial)\" f=\"chorley.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CHRnet.com\" f=\"chrdnet.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"chrs-mln-krs.com\" f=\"chrs-mln-krs.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://(?:www\\.)?chrs-mln-krs\\.com/\" to=\"https://secure.leadforensics.com/\"/></ruleset>", "<ruleset name=\"CHTN.org\" f=\"chtn.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cihan.com.tr (partial)\" default_off=\"failed ruleset test\" f=\"cihan.com.tr.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Circle.org.uk (partial)\" f=\"circle.org.uk.xml\"><exclusion pattern=\"^http://(?:www\\.)?circle\\.org\\.uk/(?!/*(?:~/media|css|img)/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Circle Group.org.uk (partial)\" platform=\"mixedcontent\" f=\"circlegroup.org.uk.xml\"><exclusion pattern=\"^http://www\\.circlegroup\\.org\\.uk/(?!/*(?:css|img|~/media)/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CircuitLab.com\" f=\"circuitlab.com.xml\"><securecookie host=\"^\\.\" name=\"^__qca\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"citilink.ru\" f=\"citilink.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Citizens Advice.org.uk (false MCB)\" platform=\"mixedcontent\" f=\"citizensadvice.org.uk-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Citizens Advice.org.uk (partial)\" default_off=\"failed ruleset test\" f=\"citizensadvice.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Citra-emu.org\" default_off=\"failed ruleset test\" f=\"citra-emu.org.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Civica.co.uk (partial)\" f=\"civica.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Civica LG.com.au (partial)\" f=\"civicalg.com.au.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"civil-forum.ru\" f=\"civil-forum.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Civil Service.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"civilservice.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:(?:my|resources|www)\\.)?civilservice\\.gov\\.uk/.*\" to=\"https://www.gov.uk/government/organisations/civil-service\"/><exclusion pattern=\"^http://(?:(?:my|resources|www)\\.)?civilservice\\.gov\\.uk/+(?!$|\\?)\"/><rule from=\"^http://faststream\\.civilservice\\.gov\\.uk/.*\" to=\"https://www.gov.uk/faststream\"/><exclusion pattern=\"^http://faststream\\.civilservice\\.gov\\.uk/+(?!$|\\?)\"/><rule from=\"^http://gcloud\\.civilservice\\.gov\\.uk/.*\" to=\"https://www.gov.uk/how-to-use-cloudstore\"/><exclusion pattern=\"^http://gcloud\\.civilservice\\.gov\\.uk/+(?!$|\\?)\"/><rule from=\"^http://it\\.civilservice\\.gov\\.uk/[^?]*\" to=\"https://www.gov.uk/government/organisations/civil-service-government-it-profession/about/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Civil Service World.com\" f=\"civilserviceworld.com.xml\"><securecookie host=\"^\\.\" name=\"^_ga\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"civitas.ru\" f=\"civitas.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CK12.org (partial)\" f=\"ck12.org.xml\"><securecookie host=\"^\\.\" name=\"^(?:_ga|optimizely)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"clahub.com\" f=\"clahub.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Classy.org\" f=\"classy.org.xml\"><securecookie host=\".\" name=\"^optimizely\"/><securecookie host=\"^\\.\" name=\"^__qca$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"clck.ru\" f=\"clck.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"clearos.com\" f=\"clearos.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"clearspending.ru\" f=\"clearspending.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cleveland Connected.co.uk\" f=\"clevelandconnected.co.uk.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ClickDimensions.com (false MCB)\" platform=\"mixedcontent\" f=\"clickdimensions.com-falsemixed.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"clicken.us\" f=\"clicken.us.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"clickhouse.yandex\" f=\"clickhouse.yandex.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Clicknupload.link\" default_off=\"failed ruleset test\" f=\"clicknupload.link.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ClipperCard.com\" f=\"clippercard.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:incap|visid_incap)_\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Clippings.com\" f=\"clippings.com.xml\"><exclusion pattern=\"^http://(?:[^./]+\\.){2,}clippings\\.com/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"clixGalore.com (partial)\" f=\"clixgalore.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"clksite.com\" f=\"clksite.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"clmbtech.com\" f=\"clmbtech.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"clodo.ru\" f=\"clodo.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cloud66.com\" f=\"cloud66.com.xml\"><rule from=\"^http://cloud66\\.com/\" to=\"https://www.cloud66.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cloudbees.com\" default_off=\"failed ruleset test\" f=\"cloudbees.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cloud Convert.org\" f=\"cloudconvert.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cloudimg.io\" f=\"cloudimg.io.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CloudPassage.com\" f=\"cloudpassage.com.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CloudShark.org\" f=\"cloudshark.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ClubTime.FM\" f=\"clubtime.fm.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ClustrMaps.com\" f=\"clustrmaps.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CMake.org\" f=\"cmake.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CMS.gov (partial)\" default_off=\"failed ruleset test\" f=\"cms.gov.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://hcia\\.cms\\.gov/\" to=\"https://www.hcia.cms.gov/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cnblogs.com (partial)\" f=\"cnblogs.com.xml\"><exclusion pattern=\"^http://www\\.cnblogs\\.com/zhaoqingqing/\"/><rule from=\"^http://api\\.ad\\.cnblogs\\.com/\" to=\"https://ad-api.cnblogs.com/\"/><exclusion pattern=\"^http://space\\.cnblogs\\.com/(?!city/|common/|(news\\/)?images/|pic/|script/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CNV.com\" f=\"cnv.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Coca-Cola.ru\" f=\"coca-cola.ru.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://coca-cola\\.ru/\" to=\"https://www.coca-cola.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"codacy.com\" f=\"codacy.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"codeanywhere.com\" f=\"codeanywhere.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CodeIgniter.com (false MCB)\" f=\"codeigniter.com-falsemixed.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\.forum\\.\" name=\".\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CodeIgniter.com (partial)\" f=\"codeigniter.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Code Poet.com (partial)\" f=\"codepoet.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"codetree.com\" f=\"codetree.com.xml\"><rule from=\"^http://www\\.codetree\\.com/\" to=\"https://codetree.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"codyhouse.co\" f=\"codyhouse.co.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CogNeuroSociety.org\" f=\"cogneurosociety.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"coin.space\" default_off=\"failed ruleset test\" f=\"coin.space.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"coinmarketcap.com\" f=\"coinmarketcap.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cointelgraph.com\" default_off=\"failed ruleset test\" f=\"cointelgraph.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"College.Police.uk (partial)\" f=\"college.police.uk.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://app\\.college\\.police\\.uk/\" to=\"https://www.app.college.police.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"College Info Geek.com\" platform=\"mixedcontent\" f=\"collegeinfogeek.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Colson Services.com\" f=\"colsonservices.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"colta.ru\" f=\"colta.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"comdirect bank\" f=\"comdirect.xml\"><rule from=\"^http://(?:www\\.)?comdirect\\.de/\" to=\"https://www.comdirect.de/\"/><rule from=\"^http://kunde\\.comdirect\\.de/\" to=\"https://kunde.comdirect.de/\"/></ruleset>", "<ruleset name=\"Comedy.co.uk\" f=\"comedy.co.uk.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CommittedGiving.uk.net\" f=\"committedgiving.uk.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://committedgiving\\.uk\\.net/\" to=\"https://www.committedgiving.uk.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Common Sense Media.org\" f=\"commonsensemedia.org.xml\"><securecookie host=\".\" name=\"^optimizely\"/><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Communities.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"communities.gov.uk.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Community Cares.com\" f=\"communitycares.com.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Companic.nl\" default_off=\"missing certificate chain\" f=\"companic.nl.xml\"><securecookie host=\"^\\.\" name=\"^osCsid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Companies House.gi\" default_off=\"missing certificate chain\" f=\"companieshouse.gi.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Companies House.gov.uk (MCB)\" platform=\"mixedcontent\" f=\"companieshouse.gov.uk-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"complat.ru (partial)\" f=\"complat.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"complinet.com\" default_off=\"failed ruleset test\" f=\"complinet.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ComputerBild.de\" default_off=\"failed ruleset test\" f=\"computerbild.de.xml\"><rule from=\"^http://computer-bild\\.de/\" to=\"https://computerbild.de/\"/><rule from=\"^http://www\\.computer-bild\\.de/\" to=\"https://www.computerbild.de/\"/><rule from=\"^http://i\\.computer-bild\\.de/\" to=\"https://i.computerbild.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Computex Taipei.com.tw\" f=\"computextaipei.com.tw.xml\"><securecookie host=\"^\\.\" name=\"_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://computextaipei\\.com\\.tw/\" to=\"https://www.computextaipei.com.tw/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"comquas.com\" f=\"comquas.com.xml\"><securecookie host=\"^\\.\" name=\"^__cfduid$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"concordeurope.org\" f=\"concordeurope.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"concourse.ci (partial)\" f=\"concourse.ci.xml\"><rule from=\"^http://www\\.concourse\\.ci/\" to=\"https://concourse.ci/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Conference Manager.dk (resources)\" platform=\"mixedcontent\" f=\"conferencemanager.dk-resources.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Conference Manager.dk (partial)\" f=\"conferencemanager.dk.xml\"><exclusion pattern=\"^http://files\\.conferencemanager\\.dk/(?!.+\\.pdf(?:$|\\?))\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Connect6.com\" f=\"connect6.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ConnectEDU.net\" f=\"connectedu.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"connectid.no\" f=\"connectid.no.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Connect to Support.org (partial)\" f=\"connecttosupport.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Constitute Project\" f=\"constitute.xml\"><rule from=\"^http://constituteproject\\.org/\" to=\"https://www.constituteproject.org/\"/><rule from=\"^http:\" to=\"https:\"/><securecookie host=\"^\\.constituteproject\\.org$\" name=\".+\"/></ruleset>", "<ruleset name=\"consultant.ru\" f=\"consultant.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Content Reserve.com\" f=\"contentreserve.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"continuousdelivery.com\" f=\"continuousdelivery.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"continuousphp.com\" f=\"continuousphp.com.xml\"><rule from=\"^http://www\\.continuousphp\\.com/\" to=\"https://continuousphp.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"continuum.io\" f=\"continuum.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"contrasterra.ru\" f=\"contrasterra.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Contrast Security.com\" f=\"contrastsecurity.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://contrastsecurity\\.com/\" to=\"https://www.contrastsecurity.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Convert Experiments.com\" f=\"convertexperiments.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cookiepedia.co.uk\" default_off=\"failed ruleset test\" f=\"cookiepedia.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.cookiepedia\\.co\\.uk/\" to=\"https://cookiepedia.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cooley.com\" f=\"cooley.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cooltrainer.org\" f=\"cooltrainer.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Coop Hotellkupp.com\" f=\"coophotellkupp.com.xml\"><securecookie host=\"^\\.\" name=\"^_ga\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"copay.io\" f=\"copay.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Copeland.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"copeland.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"copilotgps.com\" f=\"copilotgps.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"copy.me (partial)\" f=\"copy.me.xml\"><rule from=\"^http://copy\\.me/\" to=\"https://www.etoro.com/people/\"/></ruleset>", "<ruleset name=\"copyninja.info\" f=\"copyninja.info.xml\"><exclusion pattern=\"^http://(?:[^./]+\\.){2,}copyninja\\.info/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Coralproject\" f=\"coralproject.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Core.ac.uk\" f=\"core.ac.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CoreTime.FM\" f=\"coretime.fm.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Corporate Travel Money.com\" f=\"corporatetravelmoney.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://corporatetravelmoney\\.com/\" to=\"https://www.corporatetravelmoney.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"corrupcia.net\" default_off=\"failed ruleset test\" f=\"corrupcia.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cosmonova.net\" f=\"cosmonova.net.xml\"><rule from=\"^http://www\\.cosmonova\\.net/\" to=\"https://cosmonova.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cotswold.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"cotswold.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://consult\\.cotswold\\.gov\\.uk/\" to=\"https://cotswold-consult.objective.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Couchsurfing.com (partial)\" f=\"couchsurfing.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"counterpath.com (partial)\" default_off=\"failed ruleset test\" f=\"counterpath.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Courant.com (false MCB)\" platform=\"mixedcontent\" f=\"courant.com-falsemixed.xml\"><securecookie host=\"^\\.\" name=\"^(?:_gat?$|gat_|optimizely)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://courant\\.chictrib\\.netdna-cdn\\.com/\" to=\"https://courant-chictrib.netdna-ssl.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Courant.com (partial)\" f=\"courant.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:_gat?$|_gat_|optimizely)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://advertise\\.courant\\.com/[^?]*\" to=\"https://placeanad.courant.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Course Directory Provider Portal.org.uk\" f=\"coursedirectoryproviderportal.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CourseSmart.com\" f=\"coursesmart.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Court Theatre.org.nz\" f=\"courttheatre.org.nz.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Covent Garden.london\" f=\"coventgarden.london.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Coventry.gov.uk (false MCB)\" platform=\"mixedcontent\" f=\"coventry.gov.uk-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Coventry.gov.uk (partial)\" f=\"coventry.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.www\\.\" name=\".\"/><rule from=\"^http://coventry\\.gov\\.uk/\" to=\"https://www.coventry.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cpaste\" default_off=\"failed ruleset test\" f=\"cpaste.xml\"><securecookie host=\"^cpaste\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cpeople.ru\" f=\"cpeople.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cpiz.net\" default_off=\"failed ruleset test\" f=\"cpiz.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cpx.to\" f=\"cpx.to.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cpy.re (partial)\" f=\"cpy.re.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cquotient.com\" f=\"cquotient.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?cquotient\\.com/.*\" to=\"https://demandware.com/#cquotient\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Craftilldawn.com\" f=\"craftilldawn.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Craig Murray.org.uk\" f=\"craigmurray.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Craig Smith.net\" f=\"craigsmith.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cravatar\" f=\"cravatar.eu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"crazespaces.pw\" default_off=\"failed ruleset test\" f=\"crazespaces.pw.xml\"><securecookie host=\"^(www\\.)?crazespaces\\.pw$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"creationkit.com\" f=\"creationkit.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"crechi.tw\" f=\"crechi.tw.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Crick.ac.uk\" f=\"crick.ac.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://webmail\\.crick\\.ac\\.uk/+\" to=\"https://emea.centrify.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Crimestoppers-UK.org\" default_off=\"failed ruleset test\" f=\"crimestoppers-uk.org.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cron-job.org\" f=\"cron-job.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"crondash.com\" default_off=\"failed ruleset test\" f=\"crondash.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cross Keys Homes.co.uk\" f=\"crosskeyshomes.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://crosskeyshomes\\.co\\.uk/\" to=\"https://www.crosskeyshomes.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"crossorigin.me\" f=\"crossorigin.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CrowdStrike.com\" f=\"crowdstrike.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid$|_gat?$|_gat_|cf_clearance$)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Crowthorne PC.org.uk\" default_off=\"mismatched\" platform=\"mixedcontent\" f=\"crowthornepc.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Croydon.gov.uk (partial)\" f=\"croydon.gov.uk.xml\"><securecookie host=\"^\\.my\\.\" name=\".\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://croydon\\.gov\\.uk/\" to=\"https://www.croydon.gov.uk/\"/><rule from=\"^http://jobs\\.croydon\\.gov\\.uk/.*\" to=\"https://www.croydon.gov.uk/jobs\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CryptoCoding\" f=\"cryptocoding.xml\"><securecookie host=\"^cryptocoding\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CryptoNote.org\" f=\"cryptonote.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CryptoNote Foundation.org\" f=\"cryptonotefoundation.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CryptoNote Starter.org\" f=\"cryptonotestarter.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cryptostore.ru\" f=\"cryptostore.ru.xml\"><rule from=\"^http://www\\.cryptostore\\.ru/\" to=\"https://cryptostore.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CryptoTec.com\" f=\"cryptotec.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cryptovpn.me\" f=\"cryptovpn.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"crystalmark.info\" f=\"crystalmark.info.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CSC Portal.org.uk\" default_off=\"failed ruleset test\" f=\"cscportal.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"csmonitor.com\" f=\"csmonitor.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ctc.ru\" f=\"ctc.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ctkarch.org\" f=\"ctkarch.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cublinux.com\" default_off=\"failed ruleset test\" f=\"cublinux.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cuckoo Sandbox.org\" f=\"cuckoosandbox.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cumbria.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"cumbria.gov.uk.xml\"><securecookie host=\"^(?!localoffer\\.)\\w\" name=\".\"/><rule from=\"^http://cumbria\\.gov\\.uk/\" to=\"https://www.cumbria.gov.uk/\"/><rule from=\"^http://localoffer\\.cumbria\\.gov\\.uk/\" to=\"https://search3.openobjects.com/\"/><exclusion pattern=\"^http://localoffer\\.cumbria\\.gov\\.uk/(?!.+/(?:contact|register|sign_in)\\.page)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cumhuriyet.com.tr (partial)\" default_off=\"expired, self-signed\" f=\"cumhuriyet.com.tr.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cuteness.com\" default_off=\"failed ruleset test\" f=\"cuteness.com.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://cuteness\\.com/\" to=\"https://www.cuteness.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CuteSoft.net (partial)\" f=\"cutesoft.net.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"CVVnumber.com\" f=\"cvvnumber.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cwrap.org\" f=\"cwrap.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"cyberpowerpc.com\" f=\"cyberpowerpc.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Cybrary.it\" f=\"cybrary.it.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\.www\\.\" name=\".\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"czechorchidsociety.org\" f=\"czechorchidsociety.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Daily Edge.ie\" f=\"dailyedge.ie.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://dailyedge\\.ie/\" to=\"https://www.dailyedge.ie/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Daily Star.com.lb (partial)\" f=\"dailystar.com.lb.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dailystavropol.ru\" f=\"dailystavropol.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dalee.ru\" f=\"dalee.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"danluu.com\" f=\"danluu.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Daofile.com\" f=\"daofile.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"darebee.com\" default_off=\"failed ruleset test\" f=\"darebee.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"darkmatter.ae\" f=\"darkmatter.ae.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Darktrace.com\" f=\"darktrace.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Darktrace.jp\" f=\"darktrace.jp.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"data.gov.hk\" f=\"data.gov.hk.xml\"><rule from=\"^http://www\\.data\\.gov\\.hk/\" to=\"https://data.gov.hk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Data.gov.uk (partial)\" f=\"data.gov.uk.xml\"><securecookie host=\"^\\.\" name=\"^__utm\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dryad Digital Repository\" f=\"datadryad.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Data Exchange Wales.org.uk\" f=\"dataexchangewales.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DataFile.com (resources)\" platform=\"mixedcontent\" f=\"datafile.com-resources.xml\"><exclusion pattern=\"^http://(?:www\\.)?datafile\\.com/(?!/*(?:css/|favicon\\.ico|fonts/|images/|stylesheet/))\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DataFile.com (partial)\" f=\"datafile.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?datafile\\.com/(?!/*(?:getpremium|login)\\.html)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DataMotion.com (partial)\" default_off=\"failed ruleset test\" f=\"datamotion.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"datei.li\" f=\"datei.li.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Date Link Networks.com (partial)\" f=\"datelinknetworks.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dating Lab.net (partial)\" platform=\"mixedcontent\" f=\"datinglab.net.xml\"><exclusion pattern=\"^http://is\\.i2\\.datinglab\\.net/(?!/*(?:css|pht/\\d+|pics)/)\"/><securecookie host=\"^\\.\" name=\"_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://is\\.i2\\.datinglab\\.net/\" to=\"https://secure2.datinglab.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"david-dm.org\" f=\"david-dm.org.xml\"><rule from=\"^http://www\\.david-dm\\.org/\" to=\"https://david-dm.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"David Walsh.name\" f=\"davidwalsh.name.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"day.org.ru\" f=\"day.org.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"daydeal\" f=\"daydeal.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dbstatic.no\" platform=\"mixedcontent\" f=\"dbstatic.no.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DBTV.no\" f=\"dbtv.no.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dc121677.com\" f=\"dc121677.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dcard.tw\" f=\"dcard.tw.xml\"><securecookie host=\"^\\.dcard\\.tw$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DCERPC\" default_off=\"failed ruleset test\" f=\"dcerpc.org.xml\"><rule from=\"^http://(?:www\\.)?dcerpc\\.org/\" to=\"https://www.dcerpc.org/\"/></ruleset>", "<ruleset name=\"DCOS.io (partial)\" f=\"dcos.io.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DCT.org.uk\" f=\"dct.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DD-WRT.com (self-signed)\" default_off=\"self-signed\" f=\"dd-wrt.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ddcdn\" f=\"ddcdn.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DD IT Services.com (partial)\" f=\"dditservices.com.xml\"><exclusion pattern=\"^http://(?:(?:[^./]+\\.){2}|speedtest\\.|speedtest\\.\\w{3}\\.)dditservices\\.com/\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DDLValley.cool\" platform=\"mixedcontent\" f=\"ddlvalley.cool.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DDLValley.eu\" f=\"ddlvalley.eu.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DDLValley.rocks\" f=\"ddlvalley.rocks.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ddos-guard.net\" f=\"ddos-guard.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"deSEC\" default_off=\"failed ruleset test\" f=\"deSEC.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Deakin and Francis.co.uk\" f=\"deakinandfrancis.co.uk.xml\"><securecookie host=\"^\\.\" name=\"^(?:currency|frontend)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dealabs.com (partial)\" f=\"dealabs.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid$|_gat?$|_gat_|cf_clearance$)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Deal Interactive.com (partial)\" default_off=\"failed ruleset test\" f=\"dealinteractive.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dear Mummy Blog.com\" f=\"dearmummyblog.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Debenhams.com (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"debenhams.com.xml\"><exclusion pattern=\"^http://int\\.debenhams\\.com/(?!(?!.+\\.js(?:$|\\?))/*(?:ad/+(?:gifts|shop)/|micro/|wcsstore/|webapp/wcs/stores/servlet/))\"/><exclusion pattern=\"^http://www\\.debenhams\\.com/(?!(?!.+\\.js(?:$|\\?))/*(?:favicon\\.ico|wcsstore/))\"/><securecookie host=\"^\\.\" name=\"^s_(?:per|ses)s$\"/><rule from=\"^http://debenhams\\.com/\" to=\"https://www.debenhams.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DECC.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"decc.gov.uk.xml\"><exclusion pattern=\"^http://(?:(?:aka-etl|blog|ceo|chp|chpqa|chptools|coal|www\\.coal|corwm|mrws|og|restats|www)\\.)?decc\\.gov\\.uk/(?!/*(?:$|\\?))\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?decc\\.gov\\.uk/.*\" to=\"https://www.gov.uk/government/organisations/department-of-energy-climate-change\"/><rule from=\"^http://aka-etl\\.decc\\.gov\\.uk/.*\" to=\"https://www.gov.uk/energy-technology-list\"/><rule from=\"^http://blog\\.decc\\.gov\\.uk/.*\" to=\"https://decc.blog.gov.uk/\"/><rule from=\"^http://ceo\\.decc\\.gov\\.uk/.*\" to=\"https://www.gov.uk/community-energy\"/><rule from=\"^http://chp\\.decc\\.gov\\.uk/.*\" to=\"https://www.gov.uk/combined-heat-and-power\"/><rule from=\"^http://chpqa\\.decc\\.gov\\.uk/.*\" to=\"https://www.gov.uk/combined-heat-power-quality-assurance-programme\"/><rule from=\"^http://chptools\\.decc\\.gov\\.uk/.*\" to=\"https://www.gov.uk/government/publications/combined-heat-and-power-chp-technology\"/><rule from=\"^http://(?:www\\.)?coal\\.decc\\.gov\\.uk/.*\" to=\"https://www.gov.uk/government/organisations/the-coal-authority\"/><rule from=\"^http://corwm\\.decc\\.gov\\.uk/.*\" to=\"https://www.gov.uk/government/organisations/committee-on-radioactive-waste-management\"/><rule from=\"^http://mrws\\.decc\\.gov\\.uk/.*\" to=\"https://www.gov.uk/government/policies/managing-the-use-and-disposal-of-radioactive-and-nuclear-substances-and-waste\"/><rule from=\"^http://og\\.decc\\.gov\\.uk/.*\" to=\"https://www.gov.uk/government/organisations/department-of-energy-climate-change\"/><rule from=\"^http://restats\\.decc\\.gov\\.uk/.*\" to=\"https://www.gov.uk/government/collections/renewables-statistics\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Decide the Future.org\" f=\"decidethefuture.org.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Deciso.com\" f=\"deciso.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"declaredthoughtfulness.co\" default_off=\"failed ruleset test\" f=\"declaredthoughtfulness.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"defacto2.net\" f=\"defacto2.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"delfi.lv (partial)\" f=\"delfi.lv.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"deliverydom.com\" f=\"deliverydom.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Delovie Linii (transport company)\" f=\"dellin.ru.xml\"><securecookie host=\"(.+\\.)?dellin\\.ru$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/><exclusion pattern=\"^http://m\\.dellin\\.ru/.*\"/></ruleset>", "<ruleset name=\"delovoe.tv\" f=\"delovoe.tv.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Democracy Club.org.uk\" default_off=\"failed ruleset test\" f=\"democracyclub.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"democracyos.org (partial)\" default_off=\"failed ruleset test\" f=\"democracyos.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"democrator.ru\" f=\"democrator.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"demonoid.cc\" default_off=\"failed ruleset test\" f=\"demonoid.cc.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"demozoo.org\" f=\"demozoo.org.xml\"><rule from=\"^http://www\\.demozoo\\.org/\" to=\"https://demozoo.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"deploybot.com\" default_off=\"failed ruleset test\" f=\"deploybot.com.xml\"><rule from=\"^http://dploy\\.io/\" to=\"https://www.dploy.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Derbyshire.gov.uk (partial)\" f=\"derbyshire.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://bline\\.derbyshire\\.gov\\.uk/.*\" to=\"https://derbyshireyouthinc.com/default.asp?rd=bline\"/><rule from=\"^http://derbyshiremaps\\.derbyshire\\.gov\\.uk/.*\" to=\"https://www.derbyshire.gov.uk/council/partnerships/derbyshire_mapping_portal/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Derbyshire Alert.co.uk\" f=\"derbyshirealert.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Derbyshire Prepared.org.uk\" platform=\"mixedcontent\" f=\"derbyshireprepared.org.uk.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Derbyshire YouthInc.com\" f=\"derbyshireyouthinc.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"derStandard.at (partial)\" f=\"derstandard.at.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DETI NI.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"detini.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://detini\\.gov\\.uk/\" to=\"https://www.detini.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"deutschepost\" f=\"deutschepost.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"deutschland-spielt.de\" default_off=\"failed ruleset test\" f=\"deutschland-spielt.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Devalate.com\" default_off=\"failed ruleset test\" f=\"devalate.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"devbridge.com\" f=\"devbridge.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Develop-online.net\" f=\"develop-online.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Develop 100.com\" f=\"develop100.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://(?:www\\.)?develop100\\.com/[^?]*\" to=\"https://www.develop-online.net/develop-100\"/></ruleset>", "<ruleset name=\"develz.org\" f=\"develz.org.xml\"><rule from=\"^http://www\\.develz\\.org/\" to=\"https://develz.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Devon Jobs.gov.uk (partial)\" f=\"devonjobs.gov.uk.xml\"><exclusion pattern=\"^http://www\\.devonjobs\\.gov\\.uk/+(?!(?:CommonFileStorage(?:Fil|Imag)eGrab|ForgottenPassword|Register|Signin)\\.aspx|categories(?:$|[?/])|(?:[\\w-]+/)?client/\\d+/(?:css|graphics|upload)/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DFO.no (partial)\" f=\"dfo.no.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DFT.gov.uk (partial)\" f=\"dft.gov.uk.xml\"><exclusion pattern=\"^http://shop\\.dft\\.gov\\.uk/+(?!THINKShop/(?:_assets/css|_assets/images|ProductImages)/)\"/><securecookie host=\"^(?!shop\\.)\\w\" name=\".\"/><rule from=\"^http://bikeability\\.dft\\.gov\\.uk/+\" to=\"https://bikeability.org.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dftoutiao.com\" f=\"dftoutiao.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DHI-scotland.com\" default_off=\"failed ruleset test\" f=\"dhi-scotland.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DHSSPS NI.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"dhsspsni.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://dhsspsni\\.gov\\.uk/\" to=\"https://www.dhsspsni.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dialogic.com (partial)\" f=\"dialogic.com.xml\"><securecookie host=\"^\\.www\\.\" name=\".\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://dialogic\\.com/\" to=\"https://www.dialogic.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dianping.com (partial)\" f=\"dianping.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Diapers.com\" f=\"diapers.com.xml\"><securecookie host=\".\" name=\"^ps-trtmnt$\"/><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://diapers\\.com/\" to=\"https://www.diapers.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dictation.io\" f=\"dictation.io.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dietmardreier.de\" f=\"dietmardreier.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"difficulties.de\" f=\"difficulties.de.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"digiguide.tv\" f=\"digiguide.tv.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.digiguide\\.tv/\" to=\"https://digiguide.tv/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"digital.report\" f=\"digital.report.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Digitale-Gesellschaft.ch\" f=\"digitale-gesellschaft.ch.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"digitalrights.center\" f=\"digitalrights.center.xml\"><rule from=\"^http://www\\.digitalrights\\.center/\" to=\"https://digitalrights.center/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"digwebinterface.com\" f=\"digwebinterface.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dimonvideo.ru\" f=\"dimonvideo.ru.xml\"><rule from=\"^http://www\\.dimonvideo\\.ru/\" to=\"https://dimonvideo.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dinglisch.net\" default_off=\"expired\" f=\"dinglisch.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DingTalk.com (partial)\" f=\"dingtalk.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dinside.no (false MCB)\" platform=\"mixedcontent\" f=\"dinside.no-falsemixed.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid$|_ga|cf_clearance$)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dinside.no (partial)\" f=\"dinside.no.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid$|_ga)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://dinside\\.no/\" to=\"https://www.dinside.no/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Direct Lyrics.com\" f=\"directlyrics.com.xml\"><securecookie host=\"^\\.\" name=\"^_ga\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Discover Carlisle.co.uk\" f=\"discovercarlisle.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Discover Hong Kong\" f=\"discoverhongkong.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dissernet.org\" f=\"dissernet.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"divShare.com\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"divShare.xml\"><securecookie host=\"^(?:.*\\.)?divshare\\.com$\" name=\".*\"/><rule from=\"^http://divshare\\.com/\" to=\"https://www.divshare.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dizzyjam.com\" f=\"dizzyjam.com.xml\"><securecookie host=\"^\\.\" name=\"^PHPSESSID\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Djoser.nl\" f=\"djoser.nl.xml\"><securecookie host=\"^\\.\" name=\"^_ga\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DLang.org\" f=\"dlang.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.dlang\\.org/\" to=\"https://dlang.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dlink.ru (partial)\" f=\"dlink.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dltags.com\" default_off=\"failed ruleset test\" f=\"dltags.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dlvr.it\" f=\"dlvr.it.xml\"><rule from=\"^http://(blog|dev|support)\\.dlvr\\.it/\" to=\"https://$1.dlvrit.com/\"/><rule from=\"^http://www\\.dlvrit\\.com/\" to=\"https://dlvrit.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dn.se\" f=\"dn.se.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DNAinfo.com\" f=\"dnainfo.com.xml\"><securecookie host=\"^\\.\" name=\"^__qca$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://dnainfo\\.com/\" to=\"https://www.dnainfo.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dniester.ru\" f=\"dniester.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DNS-Shop.ru (partial)\" f=\"dns-shop.ru.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"docs.tw\" f=\"docs.tw.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"documentup.com\" f=\"documentup.com.xml\"><rule from=\"^http://www\\.documentup\\.com/\" to=\"https://documentup.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dods.co.uk (partial)\" default_off=\"failed ruleset test\" f=\"dods.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dods Shop.co.uk\" f=\"dodsshop.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DoE MEISPP.org\" f=\"doemeispp.org.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Doki Fansubs\" f=\"doki.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DoL.gov (false MCB)\" platform=\"mixedcontent\" f=\"dol.gov-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DoL.gov\" default_off=\"failed ruleset test\" f=\"dol.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(askebsa\\.)?dol\\.gov/\" to=\"https://www.$1dol.gov/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dolphin Browser\" f=\"dolphin.com.xml\"><securecookie host=\"^(www\\.)?dolphin\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Domain Discount 24\" f=\"domaindiscount24.xml\"><securecookie host=\"^(www\\.|webmail\\.|login\\.)?domaindiscount24\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"domainer.ru\" f=\"domainer.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Domain Punch.com\" f=\"domainpunch.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DomainSite.com\" default_off=\"failed ruleset test\" f=\"domainsite.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"domashka.net (partial)\" f=\"domashka.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Domeny.cz\" f=\"domeny.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Domeny.sk\" f=\"domeny.sk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"domofond.ru\" f=\"domofond.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"domonet.ua\" f=\"domonet.ua.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"domtele.com\" default_off=\"failed ruleset test\" f=\"domtele.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"donejs.com (partial)\" f=\"donejs.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.donejs\\.com/\" to=\"https://donejs.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"donmai.us\" f=\"donmai.us.xml\"><securecookie host=\"^(?:danbooru|safebooru)?\\.donmai\\.us$\" name=\".+\"/><rule from=\"^http://(www\\.)?donmai\\.us/\" to=\"https://danbooru.donmai.us/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dont break our phones.org\" f=\"dontbreakourphones.org.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://dontbreakourphones\\.org/\" to=\"https://www.dontbreakourphones.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dorar.net\" platform=\"mixedcontent\" f=\"dorar.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dorset Alert.co.uk\" f=\"dorsetalert.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dot.swiss\" f=\"dot.swiss.xml\"><rule from=\"^http://nic\\.swiss/\" to=\"https://www.nic.swiss/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dota2.ru\" f=\"dota2.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dotcom-tools.com\" f=\"dotcom-tools.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DotNetKicks.com\" f=\"dotnetkicks.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|ARRAffiniy|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Douban.fm\" f=\"douban.fm.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.douban\\.fm/\" to=\"https://douban.fm/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Doubanio.com\" default_off=\"failed ruleset test\" f=\"doubanio.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dp.ru (partial)\" f=\"dp.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dpd.co.uk\" f=\"dpd.co.uk.xml\"><rule from=\"^http://www\\.careers\\.dpd\\.co\\.uk/\" to=\"https://careers.dpd.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dpfile.com\" f=\"dpfile.com.xml\"><rule from=\"^http://(qcloud|www)\\.dpfile\\.com/\" to=\"https://$1.dpfile.com/\"/><rule from=\"^http://(i|j|m|si|t)(\\d+)\\.(s1\\.|s2\\.|s3\\.)?dpfile\\.com/\" to=\"https://i2.dpfile.com/\"/><exclusion pattern=\"^http://m\\d+\\.dpfile\\.com/\"/><exclusion pattern=\"^http://si\\d+\\.dpfile\\.com/\"/></ruleset>", "<ruleset name=\"DPstatic.com\" platform=\"mixedcontent\" f=\"dpstatic.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DrApt.com\" platform=\"mixedcontent\" f=\"drapt.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DreamBox.com (partial)\" f=\"dreambox.com.xml\"><exclusion pattern=\"^http://www2\\.dreambox\\.com/(?!/*(?:$|\\?|[els]/|emailPreference/|unsubscribe/|webmail/))\"/><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^(?!www2\\.)\\w\" name=\".\"/><rule from=\"^http://www-static\\.dreambox\\.com/\" to=\"https://www.dreambox.com/\"/><rule from=\"^http://www2\\.dreambox\\.com/+(?:\\?.*)?$\" to=\"https://www.dreambox.com/\"/><rule from=\"^http://www2\\.dreambox\\.com/\" to=\"https://go.pardot.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dribper.com\" default_off=\"failed ruleset test\" f=\"dribper.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"drive.ru\" f=\"drive.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Driving.co.uk\" default_off=\"failed ruleset test\" f=\"driving.co.uk.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://driving\\.co\\.uk/\" to=\"https://www.driving.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DSMLTools.org\" f=\"dsmltools.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DTVP.de\" f=\"dtvp.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"du00.cc\" f=\"du00.cc.xml\"><exclusion pattern=\"^http://www\\.du00\\.cc/read/\\d+/\\d+/\\d+\\.html\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"duapp.com\" f=\"duapp.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"duckduckhack.com\" f=\"duckduckhack.com.xml\"><rule from=\"^http://www\\.duckduckhack\\.com/\" to=\"https://duckduckhack.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dudley FoI.org.uk\" f=\"dudleyfoi.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Due-North.com (partial)\" f=\"due-north.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"duoshuo.com\" default_off=\"failed ruleset test\" f=\"duoshuo.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"durchmesser.ch\" f=\"durchmesser.ch.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dutch Crafters.com\" f=\"dutchcrafters.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DVDpaytech.com (partial)\" platform=\"mixedcontent\" f=\"dvdpaytech.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"DVLabs.com (partial)\" f=\"dvlabs.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Deutscher Wetterdienst\" f=\"dwd.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dxy.com\" f=\"dxy.com.xml\"><rule from=\"^http://www\\.dxy\\.com/\" to=\"https://dxy.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dy.fi\" f=\"dy.fi.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Dynamic 1001.eu (partial)\" default_off=\"failed ruleset test\" f=\"dynamic1001.eu.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dynastyfdn.com\" f=\"dynastyfdn.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"dyncdn.me\" f=\"dyncdn.me.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"e-btc.com.ua\" f=\"e-btc.com.ua.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"e-fense.com\" f=\"e-fense.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"e-pay Capita.com\" f=\"e-paycapita.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"e-scrooge.is\" f=\"e-scrooge.is.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"e17-stuff.org\" f=\"e17-stuff.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eBid.net\" f=\"eBid.net.xml\"><rule from=\"^http://([A-Za-z]+\\.)?ebid\\.net/\" to=\"https://$1ebid.net/\"/></ruleset>", "<ruleset name=\"eGenix.com\" default_off=\"failed ruleset test\" f=\"eGenix.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eHarmony (partial)\" f=\"eHarmony.xml\"><exclusion pattern=\"^http://(?:advice|photos)\\.eharmony\\.com/\"/><exclusion pattern=\"^http://www\\.eharmony\\.com/\"/><securecookie host=\"^(?:.*\\.)?eharmony\\.com$\" name=\".*\"/><rule from=\"^http://([\\w\\-]+)\\.eharmony\\.com/\" to=\"https://$1.eharmony.com/\"/></ruleset>", "<ruleset name=\"eHoiva\" f=\"eHoiva.fi.xml\"><rule from=\"^http://(?:www\\.)?ehoiva\\.fi/\" to=\"https://ehoiva-fi.directo.fi/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eHow (partial)\" platform=\"mixedcontent\" f=\"eHow.xml\"><securecookie host=\"^www\\.ehow\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?ehow\\.com/\" to=\"https://$1ehow.com/\"/><rule from=\"^http://(?:test\\d-)?(?:img|v5-static)\\.ehow(?:cdn)?\\.com/\" to=\"https://www.ehow.com/\"/></ruleset>", "<ruleset name=\"eNovance\" default_off=\"failed ruleset test\" f=\"eNovance.xml\"><securecookie host=\"^(?:.*\\.)?eno(?:cloud|vance)\\.com$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?enocloud\\.com/\" to=\"https://www.enovance.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ePUAP.gov.pl (partial)\" f=\"ePUAP.gov.pl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eadaily.com\" f=\"eadaily.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eagereyes.org\" f=\"eagereyes.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EarthCam.net\" f=\"earthcam.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EarthCam CDN.com\" platform=\"mixedcontent\" f=\"earthcamcdn.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Earth Observations.org (partial)\" f=\"earthobservations.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"earthvpn.com\" f=\"earthvpn.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"east.ru (partial)\" default_off=\"failed ruleset test\" f=\"east.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"East Dane.com\" f=\"eastdane.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:aps-trtmnt|bopVisitorData$|s_v)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"East Staffs BC.gov.uk (partial)\" f=\"eaststaffsbc.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www1\\.eaststaffsbc\\.gov\\.uk/\" to=\"https://mcr.eaststaffsbc.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"East Sussex.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"eastsussex.gov.uk.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.new\\.\" name=\".\"/><rule from=\"^http://eastsussex\\.gov\\.uk/\" to=\"https://www.eastsussex.gov.uk/\"/><rule from=\"^http://consult\\.eastsussex\\.gov\\.uk/\" to=\"https://eastsussex-consult.objective.co.uk/\"/><rule from=\"^http://mylimehouse\\.eastsussex\\.gov\\.uk/\" to=\"https://eastsussex.objective.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"East Sussex 1 Space.co.uk\" f=\"eastsussex1space.co.uk.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://eastsussex1space\\.co\\.uk/\" to=\"https://www.eastsussex1space.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"East Sussex Learning.org.uk\" f=\"eastsussexlearning.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://eastsussexlearning\\.org\\.uk/\" to=\"https://www.eastsussexlearning.org.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"easycron.com\" f=\"easycron.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"easyicon.net\" f=\"easyicon.net.xml\"><rule from=\"^http://(www\\.)?easyicon\\.net/\" to=\"https://www.easyicon.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EatNow.com.au\" f=\"eatnow.com.au.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Eatsa.com\" f=\"eatsa.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://eatsa\\.com/\" to=\"https://www.eatsa.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eBay Classifieds.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"ebayclassifieds.com-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eBay Classifieds.com (partial)\" default_off=\"failed ruleset test\" f=\"ebayclassifieds.com.xml\"><exclusion pattern=\"^http://(?:blog|info)\\.ebayclassifieds\\.com/\"/><exclusion pattern=\"^http://(?:[^./]+\\.){2,}ebayclassifieds\\.com/\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://ebayclassifieds\\.com/\" to=\"https://www.ebayclassifieds.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ECGD.gov.uk (partial)\" f=\"ecgd.gov.uk.xml\"><rule from=\"^http://www\\.ecgd\\.gov\\.uk/.*\" to=\"https://www.gov.uk/government/organisations/export-credit-guarantee-department\"/><exclusion pattern=\"^http://www\\.ecgd\\.gov\\.uk/(?!/*(?:$|\\?))\"/></ruleset>", "<ruleset name=\"Echo24.cz\" default_off=\"failed ruleset test\" f=\"echo24.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eclkmpsa.com\" f=\"eclkmpsa.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ecoin.eu\" f=\"ecoin.eu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eCops.org.uk\" f=\"ecops.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ecotelecom.ru\" f=\"ecotelecom.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EDEKA (partial)\" f=\"edeka.xml\"><exclusion pattern=\"^http://edeka\\.de/$\"/><exclusion pattern=\"^http://www\\.edeka\\.de/$\"/><exclusion pattern=\"^http://www\\.edeka-verbund\\.de/$\"/><rule from=\"^http://(www\\.)?edeka\\.de/media/\" to=\"https://www.edeka.de/media/\"/><rule from=\"^http://(www\\.)?edeka-verbund\\.de/Unternehmen/media/\" to=\"https://www.edeka-verbund.de/Unternehmen/media/\"/><rule from=\"^http://bms\\.edeka\\.de/\" to=\"https://bms.edeka.de/\"/><rule from=\"^http://mein\\.edeka\\.de/\" to=\"https://mein.edeka.de/\"/><rule from=\"^http://static\\.edeka\\.de/\" to=\"https://static.edeka.de/\"/></ruleset>", "<ruleset name=\"Ed Fringe.com (partial)\" f=\"edfringe.com.xml\"><securecookie host=\"^\\.\" name=\"^_ga\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"edina.ac.uk (partial)\" default_off=\"failed ruleset test\" f=\"edina.ac.uk.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://aqmensrv\\.edina\\.ac\\.uk/\" to=\"https://www.aqmen.ac.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EdSurge.com (partial)\" f=\"edsurge.com.xml\"><securecookie host=\".\" name=\"^optimizely\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Education.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"education.gov.uk.xml\"><exclusion pattern=\"^http://(?:www\\.)?education\\.gov\\.uk/+(?!$|\\?|(?:help|piwik)(?:$|[?/]))\"/><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^(?!www\\.)\\w\" name=\".\"/><securecookie host=\"^www\\.\" name=\"^PIWIK_\"/><rule from=\"^http://aka\\.education\\.gov\\.uk/.*\" to=\"https://www.gov.uk/government/organisations/department-for-education\"/><exclusion pattern=\"^http://aka\\.education\\.gov\\.uk/+(?!$|\\?)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"education.ie\" f=\"education.ie.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EducationUSA.info\" f=\"educationusa.info.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eduroam.de\" f=\"eduroam.de.xml\"><rule from=\"^http://eduroam\\.de/\" to=\"https://www.eduroam.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Eduserv.org.uk (partial)\" f=\"eduserv.org.uk.xml\"><securecookie host=\"^\\.\" name=\"^(?:_gat?$|_gat_|incap_ses_|visid_incap_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"edusupportcenter.com\" f=\"edusupportcenter.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eer.ru\" platform=\"mixedcontent\" f=\"eer.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eff.cat\" f=\"eff.cat.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Effusion.co.uk\" f=\"effusion.co.uk.xml\"><securecookie host=\"^\\.\" name=\"^SESS\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EForms.gov.ie\" f=\"eforms.gov.ie.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Efsyn.gr\" default_off=\"failed ruleset test\" f=\"efsyn.gr.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eg-online.ru\" f=\"eg-online.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"egais.ru\" f=\"egais.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ehsan Akhgari.org\" f=\"ehsanakhgari.org.xml\"><exclusion pattern=\"^http://(?:[^./]+\\.){2,}ehsanakhgari\\.org/\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eigenLab\" f=\"eigenLab.xml\"><securecookie host=\"^(?:[^:@\\.]+\\.)?eigenlab\\.org$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eigenstate.org\" f=\"eigenstate.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ejtaal.net\" f=\"ejtaal.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ekovolga.com\" f=\"ekovolga.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"elbalad.news\" f=\"elbalad.news.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"elec.ru\" default_off=\"failed ruleset test\" f=\"elec.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Election Mentions.org\" f=\"electionmentions.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"electric-cloud.com\" default_off=\"failed ruleset test\" f=\"electric-cloud.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ELEKTRO PALOUČEK\" f=\"elektro-paloucek.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Elephorm.com (partial)\" f=\"elephorm.com.xml\"><securecookie host=\"^\\.\" name=\"^_ga\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"elkosmas.gr\" default_off=\"failed ruleset test\" f=\"elkosmasgr.xml\"><rule from=\"^http://(?:www\\.)?elkosmas\\.gr/\" to=\"https://elkosmas.gr/\"/></ruleset>", "<ruleset name=\"EllisLab.com\" f=\"ellislab.com.xml\"><exclusion pattern=\"^http://(?:[^./]+\\.){2}ellislab\\.com/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"elrippoisland.net\" default_off=\"missing certificate chain\" f=\"elrippoisland.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Elttam.com.au\" f=\"elttam.com.au.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Email-Compare the Market.com\" default_off=\"failed ruleset test\" f=\"email-comparethemarket.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eme.moe\" f=\"eme.moe.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EMF camp.org\" default_off=\"failed ruleset test\" f=\"emfcamp.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Empire Blue.com (partial)\" default_off=\"failed ruleset test\" f=\"empireblue.com.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://empireblue\\.com/\" to=\"https://www.empireblue.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"empirehost.me\" default_off=\"failed ruleset test\" f=\"empirehost.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EMS Software.com (partial)\" default_off=\"failed ruleset test\" f=\"emssoftware.com.xml\"><exclusion pattern=\"^http://pages\\.emssoftware\\.com/(?!/*(?:$|\\?|css/|images/|rs/))\"/><securecookie host=\"^\\.\" name=\"^(?:_gat?$|_gat_|ARRAffinity$)\"/><securecookie host=\"^(?!pages\\.)\\w\" name=\".\"/><rule from=\"^http://pages\\.emssoftware\\.com/+(?:\\?.*)?$\" to=\"https://www.emssoftware.com/Page-not-found\"/><rule from=\"^http://pages\\.emssoftware\\.com/\" to=\"https://na-ab04.marketo.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"emule-security.org (partial)\" f=\"emule-security.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Encrypt The Planet.com\" default_off=\"needs clearnet testing\" f=\"encrypt-the-planet.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"End Clothing.com\" f=\"endclothing.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid$|_gat?$|_gat_|cf_clearance$)\"/><securecookie host=\"^\\.www\\.\" name=\".\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Endgame.com (partial)\" default_off=\"failed ruleset test\" f=\"endgame.com.xml\"><securecookie host=\"^(?!pages\\.)\\w\" name=\".\"/><rule from=\"^http://pages\\.endgame\\.com/+(?:\\?.*)?$\" to=\"https://www.endgame.com/\"/><rule from=\"^http://pages\\.endgame\\.com/\" to=\"https://na-abk.marketo.com/\"/><exclusion pattern=\"^http://pages\\.endgame\\.com/(?!/*(?:$|\\?|css/|images/|rs/))\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"energie.vellum.cz\" f=\"energie.vellum.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Radio Energy\" platform=\"mixedcontent\" f=\"energy.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Energylinx.co.uk\" f=\"energylinx.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"enisey.tv\" f=\"enisey.tv.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"enlightenment-themes.org\" f=\"enlightenment-themes.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ensi- ja turvakotien liitto\" f=\"ensijaturvakotienliitto.xml\"><rule from=\"^http://(?:www\\.)?ensijaturvakotienliitto\\.fi/\" to=\"https://ensijaturvakotienliitto-fi.directo.fi/\"/><rule from=\"^http://ensijaturvakotienliitto-fi\\.directo\\.fi/\" to=\"https://ensijaturvakotienliitto-fi.directo.fi/\"/><securecookie host=\"ensijaturvakotienliitto-fi\\.directo\\.fi\" name=\".*\"/></ruleset>", "<ruleset name=\"Entangled States.org\" f=\"entangledstates.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"enter.ru\" f=\"enter.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"enterbrain.co.jp\" default_off=\"failed ruleset test\" f=\"enterbrain.co.jp.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"entropia.de\" default_off=\"failed ruleset test\" f=\"entropia.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"entstix.com\" f=\"entstix.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Environment-Agency.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"environment-agency.gov.uk.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:(?:(?:aka-)?publications|cdn|www2?)\\.)?environment-agency\\.gov\\.uk/.*\" to=\"https://www.gov.uk/government/organisations/environment-agency\"/><exclusion pattern=\"^http://(?:(?:(?:aka-)?publications|cdn|www2?)\\.)?environment-agency\\.gov\\.uk/(?!/*(?:$|\\?))\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"E.ON IT Hungary\" f=\"eon.xml\"><securecookie host=\"^www\\.eon-hungaria\\.com$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Epilepsy Research.org.uk\" f=\"epilepsyresearch.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ePrivacy.eu\" f=\"eprivacy.eu.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://eprivacy\\.eu/\" to=\"https://www.eprivacy.eu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eQSL\" f=\"eqsl.cc.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Erewash.gov.uk (partial)\" f=\"erewash.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Eric Rafaloff.com\" f=\"ericrafaloff.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.ericrafaloff\\.com/\" to=\"https://ericrafaloff.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Erik Lundblad.com\" f=\"eriklundblad.com.xml\"><exclusion pattern=\"^http://(?:[^./]+\\.){2,}eriklundblad\\.com/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"erlang.ru (partial)\" f=\"erlang.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"es-static.us\" platform=\"mixedcontent\" f=\"es-static.us.xml\"><securecookie host=\"^\\.\" name=\"^__cfduid\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Escapia.com\" platform=\"mixedcontent\" f=\"escapia.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eSchools.co.uk (partial)\" default_off=\"failed ruleset test\" f=\"eschools.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eshuyuan.net\" f=\"eshuyuan.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"esnextb.in\" f=\"esnextb.in.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"espiv.net (false MCB)\" platform=\"mixedcontent\" f=\"espiv.net-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"espiv.net (partial)\" f=\"espiv.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://gr\\.contrainfo\\.espiv\\.net/\" to=\"https://gr-contrainfo.espivblogs.net/\"/><rule from=\"^http://perasma\\.espiv\\.net/\" to=\"https://perasma.espivblogs.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Espivblogs.net (false MCB)\" platform=\"mixedcontent\" f=\"espivblogs.net-falsemixed.xml\"><exclusion pattern=\"^http://(?:[^./]+\\.){2,}espivblogs\\.net/\"/><exclusion pattern=\"^http://(?:adelante|burntheboredom|espeir|insideout|mperntes|saltadoroi|skya)\\.espivblogs\\.net/\"/><securecookie host=\"^(?!\\.espivblogs\\.net$).\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Espivblogs.net (partial)\" f=\"espivblogs.net.xml\"><exclusion pattern=\"^http://(?:[^./]+\\.){2,}espivblogs\\.net/\"/><exclusion pattern=\"^http://(?:adelante|adespoto-sinafi|aestia|aithrio|ajde|aneyarxon|anokatopatision|anwthrwskw|asyrmatos|autodiaxirizomenosyros|bastards|burntheboredom|diamedia|espapei|espeir|freedomtrekking|immigrants-asoee|insideout|kaiussparilus|katalipsi-virwnos-3|katalipsianalipsis|koinonikoiatreionfnx|kpapasotiriou|mavroprasino|mperntes|musaferat|nogoldthess|nolagerthess|oikodiktyo|olikiarnisi|paidikostekiftoukselefteria|peiratikokafeneio|proledialers|prosfygika|psalidi|rioters|saher|sakana|saltadoroi|sasta|skya|stekiantipnoia|stepanyantsp|strouga|syl-kat-exarcheion|syneleusivolos|syntonistikokyriakes|vogliamotutto|zsol)\\.espivblogs\\.net/\"/><securecookie host=\"^(?!\\.espivblogs\\.net$).\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ESPN.com (MCB)\" platform=\"mixedcontent\" f=\"espn.com-mixedcontent.xml\"><securecookie host=\"^\\.\" name=\"^optimizely\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ESPN.com (partial)\" f=\"espn.com.xml\"><securecookie host=\"^\\.\" name=\"^optimizely\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eternallybored.org\" f=\"eternallybored.org.xml\"><rule from=\"^http://www\\.eternallybored\\.org/\" to=\"https://eternallybored.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ETmirror.com\" default_off=\"failed ruleset test\" f=\"etmirror.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eToro.com (false MCB)\" platform=\"mixedcontent\" f=\"etoro.com-falsemixed.xml\"><securecookie host=\"^\\.help\\.\" name=\".\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eToro static.com\" f=\"etorostatic.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Eugene Kolo.com\" f=\"eugenekolo.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EU most wanted.eu\" f=\"eumostwanted.eu.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EurekAlert.org (partial)\" f=\"eurekalert.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://chinese\\.eurekalert\\.org/[^?]*\" to=\"https://www.eurekalert.org/zh/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eurobilltracker.com\" f=\"eurobilltracker.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"europaplus.ru\" f=\"europaplus.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Europe1.fr (partial)\" default_off=\"failed ruleset test\" f=\"europe1.fr.xml\"><rule from=\"^http://club\\.europe1\\.fr/\" to=\"https://clube1.europe1.fr/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Europeana.eu (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"europeana.eu.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"euroradio.fm\" platform=\"mixedcontent\" f=\"euroradio.fm.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eutelsatnetworks.ru\" f=\"eutelsatnetworks.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Eventbrite.de\" f=\"eventbrite.de.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Eventsforce.net\" f=\"eventsforce.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eveonline.com (partial)\" f=\"eveonline.com.xml\"><exclusion pattern=\"^http://(?:fanfest)\\.eveonline\\.com/\"/><rule from=\"^http://(?:www\\.)?eveonline\\.com/\" to=\"https://www.eveonline.com/\"/><rule from=\"^http://(forums|community|truestory|wiki|secure|gate|support)\\.eveonline\\.com/\" to=\"https://$1.eveonline.com/\"/></ruleset>", "<ruleset name=\"evilsocket.net\" f=\"evilsocket.net.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"evo73.ru\" f=\"evo73.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ewebcart.com\" f=\"ewebcart.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eweiqi (partial)\" f=\"eweiqi.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Excel At Life.com\" f=\"excelatlife.com.xml\"><securecookie host=\"^\\.\" name=\"(?:incap_ses_|visid_incap)_\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Excellence Gateway.org.uk (partial)\" f=\"excellencegateway.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"exelab.ru\" f=\"exelab.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Exercise.com (partial)\" f=\"exercise.com.xml\"><securecookie host=\"^\\.\" name=\"^_ga\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"exler.ru\" f=\"exler.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Exonet.nl\" f=\"exonet.nl.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Expat Partner Survival.com\" f=\"expatpartnersurvival.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Explore.co.uk\" f=\"explore.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Exporting Is Great.gov.uk\" f=\"exportingisgreat.gov.uk.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"expressjs.com\" f=\"expressjs.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"exsila\" f=\"exsila.ch.xml\"><rule from=\"^http://(?:www\\.)?exsila\\.ch/\" to=\"https://www.exsila.ch/\"/></ruleset>", "<ruleset name=\"extra.to\" f=\"extra.to.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ExtraTorrent live.com\" default_off=\"failed ruleset test\" f=\"extratorrentlive.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Extreme Restraints.com\" f=\"extremerestraints.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"extyl-pro.ru\" f=\"extyl-pro.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Eyeo.com\" f=\"eyeo.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"eyeota.net\" default_off=\"failed ruleset test\" f=\"eyeota.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"EZTV\" f=\"eztv.ag.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"f4map.com\" f=\"f4map.com.xml\"><securecookie host=\"^(www\\.|demo\\.)f4map\\.com\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Face Detection.com\" f=\"facedetection.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FACTgroup\" default_off=\"failed ruleset test\" f=\"fact.group.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"factor.io\" default_off=\"failed ruleset test\" f=\"factor.io.xml\"><rule from=\"^http://www\\.factor\\.io/\" to=\"https://factor.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Factorio\" f=\"factorio.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"factus.ru\" f=\"factus.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"fail0verflow\" f=\"fail0verflow.xml\"><rule from=\"^http://(?:www\\.)?fail0verflow\\.com/\" to=\"https://fail0verflow.com/\"/></ruleset>", "<ruleset name=\"Faiumoni.de\" f=\"faiumoni.de.xml\"><exclusion pattern=\"^http://(?:[^./]+\\.){2,}faiumoni\\.de/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"fakena.me\" f=\"fakena.me.xml\"><securecookie host=\"^fakena\\.me$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"fam-ad.com (partial)\" f=\"fam-ad.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fancy Brideness.com\" default_off=\"failed ruleset test\" f=\"fancybrideness.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fans.fm\" f=\"fans.fm.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"fastcast.nz\" f=\"fastcast.nz.xml\"><rule from=\"^http://www\\.fastcast\\.nz/\" to=\"https://fastcast.nz/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fat Wreck.com\" f=\"fatwreck.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"fe.ru\" f=\"fe.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"febo.com\" f=\"febo.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Feds Hire Vets.gov\" f=\"fedshirevets.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Feed.Press (partial)\" f=\"feed.press.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FeedPress.it\" f=\"feedpress.it.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"femen.org\" platform=\"mixedcontent\" f=\"femen.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FGDC.gov\" f=\"fgdc.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"fiddler2.com\" f=\"fiddler2.com.xml\"><securecookie host=\"^(?:www\\.)?fiddler2\\.com\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"fieldnation.com\" f=\"fieldnation.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fife.gov.uk (partial)\" f=\"fife.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?fife\\.gov\\.uk/\" to=\"https://www.fifedirect.org.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fight Copyright Trolls.com\" f=\"fightcopyrighttrolls.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"file.pizza\" f=\"file.pizza.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Filecrypt.cc\" f=\"filecrypt.cc.xml\"><securecookie host=\"^(www\\.)?filecrypt\\.cc\" name=\".+\"/><exclusion pattern=\"^http://filecrypt\\.cc/helper\\.html\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Filesharingpremium.com\" f=\"filesharingpremium.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.filesharingpremium\\.com/\" to=\"https://filesharingpremium.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FileSharingShop.com\" f=\"filesharingshop.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FilesMonster.com\" f=\"filesmonster.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"film.ru\" f=\"film.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FilmAffinity.com\" f=\"filmaffinity.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Filmarkivet.no\" platform=\"mixedcontent\" f=\"filmarkivet.no.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://filmarkivet\\.no/\" to=\"https://www.filmarkivet.no/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"finalbuilder.com\" f=\"finalbuilder.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Finalist.nl\" f=\"finalist.nl.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid$|_ga|cf_clearance$)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"finam.ru\" f=\"finam.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"financial-net.com\" f=\"financial-net.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Finanzcheck.de\" f=\"finanzcheck.de.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"findchildcare.taipei\" f=\"findchildcare.taipei.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Find IP-Address.com\" default_off=\"missing certificate chain\" f=\"findip-address.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Finlex\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"finlex.xml\"><rule from=\"^http://(?:www\\.)?finlex\\.fi/\" to=\"https://www.finlex.fi/\"/></ruleset>", "<ruleset name=\"Finseth.com\" default_off=\"expired\" f=\"finseth.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"fir.im (partial)\" default_off=\"failed ruleset test\" f=\"fir.im.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"firehol.org\" default_off=\"failed ruleset test\" f=\"firehol.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Firmstep.com (MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"firmstep.com-mixedcontent.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.(?:epetitionslincolnshire|richmondshire)\\.\" name=\".\"/><rule from=\"^http://www\\.douglas\\.firmstep\\.com/\" to=\"https://douglas.firmstep.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Firmstep.com (partial)\" f=\"firmstep.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://firmstep\\.com/\" to=\"https://www.firmstep.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"First Direct.com (resources)\" default_off=\"testing\" platform=\"mixedcontent\" f=\"firstdirect.com-resources.xml\"><exclusion pattern=\"^http://(?:www\\.)?amazingcareers\\.firstdirect\\.com/(?!(?!.+\\.js(?:$|\\?))/*(?:css/|favicon\\.ico|fd\\w+Plugin/|images/))\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"First Direct.com (partial)\" default_off=\"failed ruleset test\" f=\"firstdirect.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?amazingcareers\\.firstdirect\\.com/(?!/*login(?:$|\\?))\"/><securecookie host=\"^(?!amazingcareers\\.|www\\.amazingcareers\\.)\\w\" name=\".\"/><rule from=\"^http://(newsroom\\.)?firstdirect\\.com/\" to=\"https://www.$1firstdirect.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"First Things.com\" f=\"firstthings.com.xml\"><securecookie host=\"^\\.\" name=\"^_(?:_qca$|ga)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"fitchratings.ru\" f=\"fitchratings.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"fixstars.com (partial)\" default_off=\"failed ruleset test\" f=\"fixstars.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Flag Counter.com\" f=\"flagcounter.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Flashpoint-Intel.com\" f=\"flashpoint-intel.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FleetBoard.com\" f=\"fleetboard.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"flightgear.org\" f=\"flightgear.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Flightradar24.com\" f=\"flightradar24.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"flinkster\" f=\"flinkster.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Flirt4Free.com (partial)\" f=\"flirt4free.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Florida Lobbyist.gov\" f=\"floridalobbyist.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FL Senate.gov (partial)\" f=\"flsenate.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"flughafen-zuerich.ch\" f=\"flughafen-zuerich.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"flynet.by (partial)\" f=\"flynet.by.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Peach Aviation\" f=\"flypeach.com.xml\"><rule from=\"^http://flypeach\\.com/\" to=\"https://www.flypeach.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Flyspray.org (partial)\" f=\"flyspray.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FM-World.co.uk (partial)\" f=\"fm-world.co.uk.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"focus.ua\" f=\"focus.ua.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FollowMail.com\" default_off=\"expired, mismatched, untrusted root\" f=\"followmail.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"foobar2000\" f=\"foobar2000.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Food.gov.uk (partial)\" f=\"food.gov.uk.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid$|_gat?$|_gat_|cf_clearance$)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"foodsharing.de\" f=\"foodsharing.de.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"forceline.net\" f=\"forceline.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Forestry.gov.uk (partial)\" f=\"forestry.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ForgeRock.com (partial)\" f=\"forgerock.com.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Forge World.co.uk\" f=\"forgeworld.co.uk.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid$|_gat?$|_gat_|cf_clearance$)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Formget.com\" f=\"formget.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Formsite.com\" default_off=\"failed ruleset test\" f=\"formsite.com.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"forum-3dcenter.org\" f=\"forum-3dcenter.org.xml\"><rule from=\"^http://forum-3dcenter\\.org/\" to=\"https://www.forum-3dcenter.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"fosshub.com\" f=\"fosshub.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fossies.org\" f=\"fossies.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Four Sign Posts.com\" f=\"foursignposts.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FPF.org\" f=\"fpf.org.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fraedom-CDN.com\" f=\"fraedom-cdn.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fraedom.com (partial)\" f=\"fraedom.com.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www2\\.fraedom\\.com/+(?:\\?.*)?$\" to=\"https://www.fraedom.com/\"/><rule from=\"^http://www2\\.fraedom\\.com/\" to=\"https://pi.pardot.com/\"/><exclusion pattern=\"^http://www2\\.fraedom\\.com/+(?!$|\\?|l/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"France Inter.fr\" f=\"franceinter.fr.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://nouveau\\.franceinter\\.fr/\" to=\"https://www.franceinter.fr/\"/><rule from=\"^http://touspolitiques\\.franceinter\\.fr/\" to=\"https://www.franceinter.fr/emissions/tous-politiques/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"francescopalazzo.com\" f=\"francescopalazzo.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Franceinfo (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"francetvinfo.fr.xml\"><rule from=\"^http://francetvinfo\\.fr/\" to=\"https://www.francetvinfo.fr/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Francis Frith.com\" f=\"francisfrith.com.xml\"><securecookie host=\"^\\.\" name=\"^_(?:country_ip|locale)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://francisfrith\\.com/\" to=\"https://www.francisfrith.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"fraudmetrix.cn\" f=\"fraudmetrix.cn.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fredrik Olofsson.com\" f=\"fredrikolofsson.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Free-artwork.org\" f=\"free-artwork.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"free-torrents.org\" f=\"free-torrents.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"freeboard.io\" f=\"freeboard.io.xml\"><rule from=\"^http://www\\.freeboard\\.io/\" to=\"https://freeboard.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"freech.net\" f=\"freech.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.freech\\.net/\" to=\"https://freech.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"freecode.club\" default_off=\"failed ruleset test\" f=\"freecode.club.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Freedom-Leisure.co.uk\" f=\"freedom-leisure.co.uk.xml\"><securecookie host=\"^\\.\" name=\"^_ga\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"freedom-vrn.ru (partial)\" f=\"freedom-vrn.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Freedom Munitions.com\" f=\"freedommunitions.com.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\.www\\.\" name=\".\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Freedoms Phoenix.com\" f=\"freedomsphoenix.com.xml\"><securecookie host=\"^\\.www\\.\" name=\".\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Free Hookup Search.com (partial)\" f=\"freehookupsearch.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Freelyshout.com\" f=\"freelyshout.com.xml\"><securecookie host=\"^\\.\" name=\"_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"freenode\" f=\"freenode.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"free OVI.com\" default_off=\"failed ruleset test\" f=\"freeovi.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://freeovi\\.com/\" to=\"https://www.freeovi.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"freerunet.ru\" platform=\"mixedcontent\" f=\"freerunet.ru.xml\"><rule from=\"^http://www\\.freerunet\\.ru/\" to=\"https://freerunet.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Free Talk Live.com\" platform=\"mixedcontent\" f=\"freetalklive.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://amp\\.freetalklive\\.com/(?=$|\\?)\" to=\"https://www.freetalklive.com/amp\"/><rule from=\"^http://amp\\.freetalklive\\.com/\" to=\"https://www.freetalklive.com/amp/\"/><rule from=\"^http://cam\\.freetalklive\\.com/(?=$|\\?)\" to=\"https://www.freetalklive.com/studio\"/><rule from=\"^http://cam\\.freetalklive\\.com/\" to=\"https://www.freetalklive.com/studio/\"/><rule from=\"^http://gear\\.freetalklive\\.com/(?=$|\\?)\" to=\"https://ftl.secure-decoration.com/\"/><rule from=\"^http://gear\\.freetalklive\\.com/\" to=\"https://ftl.secure-decoration.com//\"/><rule from=\"^http://listen\\.freetalklive\\.com/(?=$|\\?)\" to=\"https://www.freetalklive.com/listen/live\"/><rule from=\"^http://listen\\.freetalklive\\.com/\" to=\"https://www.freetalklive.com/listen/live/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FreeType.org\" f=\"freetype.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"freewebsitetemplates.com\" f=\"freewebsitetemplates.com.xml\"><rule from=\"^http://(?:www\\.)?freewebsitetemplates\\.com/\" to=\"https://www.freewebsitetemplates.com/\"/></ruleset>", "<ruleset name=\"fregat.net (partial)\" f=\"fregat.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Freifunk Rheinland\" f=\"freifunk-rheinland.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Freizeitparkweb\" platform=\"mixedcontent\" f=\"freizeitparkweb.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"freshmeat.club\" default_off=\"failed ruleset test\" f=\"freshmeat.club.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"fri-gate.org\" f=\"fri-gate.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"friday.ru\" f=\"friday.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Friends of NRA.org\" f=\"friendsofnra.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"frnci.com\" f=\"frnci.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"from-ua.com\" platform=\"mixedcontent\" f=\"from-ua.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fronter.com (partial)\" f=\"fronter.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FSOA.org.uk\" f=\"fsoa.org.uk.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"fsrar.ru (partial)\" default_off=\"failed ruleset test\" f=\"fsrar.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FT-static.com (partial)\" f=\"ft-static.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FT.com (MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"ft.com-mixedcontent.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ftp.rnl.tecnico.ulisboa.pt\" default_off=\"failed ruleset test\" f=\"ftp.rnl.tecnico.ulisboa.pt.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Full30.com\" f=\"full30.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:cfduid|__qca|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"fullstackpython.com\" f=\"fullstackpython.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"functions-online.com\" f=\"functions-online.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fun Over IP.net\" f=\"funoverip.net.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"funtip.de\" f=\"funtip.de.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Fusion.net (partial)\" f=\"fusion.net.xml\"><securecookie host=\".\" name=\"^optimizely\"/><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.fusion\\.net/\" to=\"https://fusion.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FVAP.gov\" f=\"fvap.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"FX Site Compat.com\" f=\"fxsitecompat.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"g0v.news\" f=\"g0v.news.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"g10 Code.com\" f=\"g10_Code.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"G4S.com (partial)\" default_off=\"failed ruleset test\" f=\"g4s.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.(africajobs|amejobs|canadajobs|empleos|eventsjobsuk|greaterchinajobs|job|jobsat|technologycareers|ukjobs|usajobs)\\.g4s\\.com/\" to=\"https://$1.g4s.com/\"/><rule from=\"^http://specialisttraining\\.g4s\\.com/\" to=\"https://www.specialisttraining.g4s.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"galette.eu\" f=\"galette.eu.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gallery of Guns.com\" f=\"galleryofguns.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"galpon.org\" f=\"galpon.org.xml\"><rule from=\"^http://galpon\\.org/\" to=\"https://www.galpon.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gama-gama.ru\" f=\"gama-gama.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GAMECRAFT.CZ\" default_off=\"failed ruleset test\" f=\"gamecraft.cz.xml\"><rule from=\"^http://www\\.gamecraft\\.cz/\" to=\"https://gamecraft.cz/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"gamefaqs.com\" f=\"gamefaqs.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"garant-tv.by\" f=\"garant-tv.by.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"gardners.com\" default_off=\"missing certificate chain\" f=\"gardners.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gargoyle-Router.com\" default_off=\"failed ruleset test\" f=\"gargoyle.xml\"><securecookie host=\"^\\.gargoyle-router\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Garmin\" f=\"garmin.xml\"><rule from=\"^http://(?:www\\.)?garmin\\.com/\" to=\"https://www.garmin.com/\"/><rule from=\"^http://([^/:@]*)\\.garmin\\.com/\" to=\"https://$1.garmin.com/\"/></ruleset>", "<ruleset name=\"Garrys Mods.org\" f=\"garrysmods.org.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"garstelecom.ru\" f=\"garstelecom.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gateway to Home Choice.org.uk\" default_off=\"failed ruleset test\" f=\"gatewaytohomechoice.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://gatewaytohomechoice\\.org\\.uk/\" to=\"https://www.gatewaytohomechoice.org.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gavick.com\" f=\"gavick.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gawker Media Group.com\" default_off=\"failed ruleset test\" f=\"gawkermediagroup.com.xml\"><exclusion pattern=\"^http://(?:[^./]+\\.){2,}gawkermediagroup\\.com/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.gawkermediagroup\\.com/\" to=\"https://gawkermediagroup.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gay-Lounge.net\" f=\"gay-lounge.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gay Times.co.uk (partial)\" default_off=\"failed ruleset test\" f=\"gaytimes.co.uk.xml\"><securecookie host=\"^\\.\" name=\"^(?:__qca$|_gat?$|_gat_|incap_|visid_incap_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gay Times Magazine.com\" platform=\"mixedcontent\" f=\"gaytimesmagazine.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:_gat?$|_gat_|ARRAffinity$)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"gazellegames.net\" f=\"gazellegames.xml\"><rule from=\"^http://(?:www\\.)?gazellegames\\.net/\" to=\"https://gazellegames.net/\"/></ruleset>", "<ruleset name=\"gazeta.uz\" f=\"gazeta.uz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"gblwebcen.com\" f=\"gblwebcen.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.gblwebcen\\.com/\" to=\"https://secure.leadforensics.com/\"/></ruleset>", "<ruleset name=\"GCSip.com\" f=\"gcsip.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GeekDad.com\" f=\"geekdad.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Geek Faeries.fr\" f=\"geekfaeries.fr.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Geek Flare.com\" f=\"geekflare.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Geenstijl\" f=\"geenstijl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"geetest (partial)\" f=\"geetest.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"generations-futures.fr\" f=\"generations-futures.fr.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Genetic Literacy Project.org (partial)\" f=\"geneticliteracyproject.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GenieeSSP.com\" f=\"genieessp.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Genius.com\" f=\"genius.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|__qca|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"geniusdisplay.com\" f=\"geniusdisplay.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Genode.org\" f=\"genode.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"genotek.ru\" f=\"genotek.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"genua.de\" f=\"genua.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Geofeedia.com (partial)\" f=\"geofeedia.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Geo IP Tool.com (partial)\" f=\"geoiptool.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"geokrety.org\" f=\"geokrety.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"geokretymap.org\" f=\"geokretymap.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Georgetown.edu (MCB)\" platform=\"mixedcontent\" f=\"georgetown.edu-mixedcontent.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"gept.org.tw\" f=\"gept.org.tw.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Get.no (partial)\" default_off=\"failed ruleset test\" f=\"get.no.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GetApp.com\" f=\"getapp.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid$|_gat?$|_gat_|cf_clearance$)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Get Gophish.com\" f=\"getgophish.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"get Postman.com (partial)\" f=\"getpostman.com.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GFI.com (false MCB)\" platform=\"mixedcontent\" f=\"gfi.com-falsemixed.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ggdns.de\" f=\"ggdns.de.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.ggdns\\.de/\" to=\"https://ggdns.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"giffgaff\" f=\"giffgaff.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Giftcloud.com\" f=\"giftcloud.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://giftcloud\\.com/\" to=\"https://www.giftcloud.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"giftofspeed.com\" f=\"giftofspeed.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GIMP\" f=\"gimp.org.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Girls Out West.com (false MCB)\" platform=\"mixedcontent\" f=\"girlsoutwest.com-falsemixed.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://forums\\.girlsoutwest\\.com/\" to=\"https://forum.girlsoutwest.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"gismeteo.by\" f=\"gismeteo.by.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"gismeteo.lt\" f=\"gismeteo.lt.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"gismeteo.lv\" f=\"gismeteo.lv.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"gismeteo.md\" f=\"gismeteo.md.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"gismeteo.pl\" f=\"gismeteo.pl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"githost.io\" default_off=\"failed ruleset test\" f=\"githost.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"gitignore.io\" f=\"gitignore.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Giving What We Can.org\" f=\"givingwhatwecan.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"glandium.org\" f=\"glandium.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Glasgow Consult.co.uk\" f=\"glasgowconsult.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://glasgowconsult\\.co\\.uk/\" to=\"https://www.glasgowconsult.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Glassdoor.ca\" f=\"glassdoor.ca.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid$|_gat?$|_gat_|cf_clearance$)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Glassdoor.co.in\" f=\"glassdoor.co.in.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid$|_gat?$|_gat_|cf_clearance$)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Glassdoor.co.uk\" f=\"glassdoor.co.uk.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid$|_gat?$|_gat_|cf_clearance$)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Glassdoor.com.au\" f=\"glassdoor.com.au.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid$|_gat?$|_gat_|cf_clearance$)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"glavbukh.ru\" f=\"glavbukh.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Glee.co.uk\" f=\"glee.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Glen-L.com\" platform=\"mixedcontent\" f=\"glen-l.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:incap_ses|visid_incap)_\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Glittering.Blue\" f=\"glittering.blue.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.glittering\\.blue/\" to=\"https://glittering.blue/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GLL Jobs.org\" f=\"glljobs.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Global Action Plan.org.uk\" f=\"globalactionplan.org.uk.xml\"><securecookie host=\"^(?!\\.globalactionplan\\.org\\.uk$).\" name=\".\"/><rule from=\"^http://globalactionplan\\.org\\.uk/\" to=\"https://www.globalactionplan.org.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Global Reach.com\" f=\"globalreach.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://bairdmounts\\.globalreach\\.com/+\" to=\"https://www.bairdmounts.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"glot.io\" f=\"glot.io.xml\"><rule from=\"^http://www\\.glot\\.io/\" to=\"https://glot.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Glx-Dock.org\" f=\"glx-dock.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"gmodmp.jp (partial)\" f=\"gmodmp.jp.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"gnucitizen.org\" f=\"gnucitizen.org.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"go.cd\" f=\"go.cd.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"go2yd.com\" f=\"go2yd.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"go!Mokulele\" default_off=\"failed ruleset test\" f=\"goMokulele.xml\"><rule from=\"^http://(?:www\\.)?iflygo\\.com/\" to=\"https://www.iflygo.com/\"/></ruleset>", "<ruleset name=\"gobolinux.org\" f=\"gobolinux.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"God Literatury.ru\" f=\"godliteratury.ru.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Godot Engine.org\" f=\"godotengine.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://docs\\.godotengine\\.org/\" to=\"https://godot.readthedocs.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gofore.com\" f=\"gofore.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gogs.io\" f=\"gogs.io.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"go Hugo.io\" f=\"gohugo.io.xml\"><securecookie host=\"^\\.\" name=\".\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"gokgs.com (partial)\" f=\"gokgs.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"goldenpass.ch\" f=\"goldenpass.xml\"><rule from=\"^http://goldenpass\\.ch/\" to=\"https://www.goldenpass.ch/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"goldesel.to\" default_off=\"failed ruleset test\" f=\"goldesel.to.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"golos-ameriki.ru\" f=\"golos-ameriki.ru.xml\"><rule from=\"^http://golos-ameriki\\.ru/\" to=\"https://www.golos-ameriki.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"golosinfo.org\" f=\"golosinfo.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"go NightShift.com\" f=\"gonightshift.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"goodline.info\" f=\"goodline.info.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Googletagmanager.com\" f=\"googletagmanager.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Googletagservices.com\" f=\"googletagservices.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"gorcom.ru (partial)\" f=\"gorcom.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"go Roost.com (partial)\" f=\"goroost.com.xml\"><securecookie host=\"^\\.\" name=\"^optimizely\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://docs-rest\\.goroost\\.com/\" to=\"https://roost.readme.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"gov-murman.ru\" default_off=\"failed ruleset test\" f=\"gov-murman.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GovDelivery.com (false MCB)\" platform=\"mixedcontent\" f=\"govdelivery.com-falsemixed.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"government-nnov.ru\" f=\"government-nnov.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"governmentjobs.com\" f=\"governmentjobs.com.xml\"><rule from=\"^http://governmentjobs\\.com/\" to=\"https://www.governmentjobs.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GovLoop.com (partial)\" f=\"govloop.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid$|_gat?$|_gat_|cf_clearance$)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"govoritmoskva.ru\" f=\"govoritmoskva.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"gp-digital.org\" f=\"gp-digital.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"grad.ua\" f=\"grad.ua.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"gradle.com\" f=\"gradle.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"granularproject.org\" f=\"granularproject.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"grape.ru (partial)\" default_off=\"failed ruleset test\" f=\"grape.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Great-Yarmouth.gov.uk (partial)\" f=\"great-yarmouth.gov.uk.xml\"><exclusion pattern=\"^http://(?:www\\.)?great-yarmouth\\.gov\\.uk/+(?!media/|themes/)\"/><securecookie host=\"^[^.wg]\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"green.ch\" default_off=\"failed ruleset test\" f=\"green.ch.xml\"><rule from=\"^http://www\\.colocation-datacenter\\.com/\" to=\"https://colocation-datacenter.com/\"/><rule from=\"^http://greenserver\\.ch/\" to=\"https://www.greenserver.ch/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"greencubes.org\" f=\"greencubes.org.xml\"><rule from=\"^http://www\\.greencubes\\.org/\" to=\"https://greencubes.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"greenhouseci.com\" f=\"greenhouseci.com.xml\"><rule from=\"^http://www\\.greenhouseci\\.com/\" to=\"https://greenhouseci.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Grindr.com\" f=\"grindr.com.xml\"><securecookie host=\"^\\.\" name=\"_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://grindr\\.com/\" to=\"https://www.grindr.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Grist.org\" f=\"grist.org.xml\"><securecookie host=\"^\\.\" name=\"^__qca$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"groovl.com\" f=\"groovl.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"growerscup.coffee\" default_off=\"failed ruleset test\" f=\"growerscup.coffee.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"growingio\" default_off=\"failed ruleset test\" f=\"growingio.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"gruntjs.com\" f=\"gruntjs.com.xml\"><rule from=\"^http://www\\.gruntjs\\.com/\" to=\"https://gruntjs.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GSM Security Map\" f=\"gsmmap.org.xml\"><rule from=\"^http://www\\.gsmmap\\.org/\" to=\"https://gsmmap.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"gsspat.jp\" f=\"gsspat.jp.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"gtnet.ru (partial)\" f=\"gtnet.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"gtrk.tv\" platform=\"mixedcontent\" f=\"gtrk.tv.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Guardian apps.co.uk\" f=\"guardianapps.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Guardtime.com\" f=\"guardtime.com.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GUEP.org\" f=\"guep.org.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Guildford.gov.uk (partial)\" f=\"guildford.gov.uk.xml\"><exclusion pattern=\"^http://bookings\\.guildford\\.gov\\.uk/(?!/*(?:assets/|favicon\\.ico|mysite/(?!.+\\.js)|themes/))\"/><exclusion pattern=\"^http://www\\.guildford\\.gov\\.uk/(?!/*(?:favicon\\.ico|login(?:$|[?/])|media/)|.+/(?:cs|image)s/)\"/><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^(?!bookings\\.|www\\.)\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"gulli.com (partial)\" platform=\"mixedcontent\" f=\"gulli.com.xml\"><rule from=\"^http://(?:www\\.)?gulli\\.com/\" to=\"https://www.gulli.com/\"/><rule from=\"^http://(apps|login|static)\\.gulli\\.com/\" to=\"https://$1.gulli.com/\"/></ruleset>", "<ruleset name=\"Gumtree.com (partial)\" default_off=\"failed ruleset test\" f=\"gumtree.com.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\.my\\.\" name=\".\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(boston|chicago|newyork)\\.gumtree\\.com/\" to=\"https://$1.ebayclassifieds.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"GunsAmerica.com\" f=\"gunsamerica.com.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"guoshipartners.com (partial)\" f=\"guoshipartners.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"guru.de\" f=\"guru.de.xml\"><securecookie host=\"^(?:www\\.)?guru\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?guru\\.de/\" to=\"https://guru.de/\"/></ruleset>", "<ruleset name=\"gwdang\" f=\"gwdang.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Gym Aesthetics.de\" f=\"gymaesthetics.de.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"gzt-sv.ru\" platform=\"mixedcontent\" f=\"gzt-sv.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hackaday.com\" f=\"hackaday.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hackint.org\" f=\"hackint.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hacktivity.com\" f=\"hacktivity.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"haixia-info.com\" f=\"haixia-info.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Halton.gov.uk (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"halton.gov.uk-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Halton.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"halton.gov.uk.xml\"><exclusion pattern=\"^http://careandsupportforyou\\.halton\\.gov\\.uk/+(?![^/]+\\.css|Account/(?:Login|PasswordRecovery)\\.aspx|App_Themes/|[Cc]ontent/|common/images/|secure(?:$|[?/])|uploadedFiles/|uploaded[Ii]mages/)\"/><exclusion pattern=\"^http://(?:councillors|moderngov)\\.halton\\.gov\\.uk/+(?![Ss]ite[Ss]pecific/|jquery-ui/)\"/><securecookie host=\"^(?!(?:careandsupportforyou|councillors|moderngov)\\.)\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"handylinux.org\" f=\"handylinux.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HangerProject.com\" f=\"hangerproject.com.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\.www\\.\" name=\".\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HannahCranston.com\" f=\"hannahcranston.xml\"><rule from=\"^http:\" to=\"https:\"/><securecookie host=\"^hannahcranston\\.com$\" name=\".+\"/></ruleset>", "<ruleset name=\"Hao123.com (MCB)\" platform=\"mixedcontent\" f=\"hao123.com-mixedcontent.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://hao123\\.com/\" to=\"https://www.hao123.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hao123img.com (partial)\" default_off=\"mismatched\" f=\"hao123img.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Happy Bear Software.com\" f=\"happybearsoftware.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HardBase.FM\" f=\"hardbase.fm.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HardForum.com\" f=\"hardforum.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hardwareluxx.ru\" platform=\"mixedcontent\" f=\"hardwareluxx.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hashcrack.org\" f=\"hashcrack.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hashkiller.co.uk\" f=\"hashkiller.co.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Havant.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"havant.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Haxx.se (partial)\" f=\"haxx.se.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://bookcurl\\.haxx\\.se/(?:\\?.*)?$\" to=\"https://www.gitbook.com/book/bagder/everything-curl/details\"/><rule from=\"^http://bookcurl\\.haxx\\.se/\" to=\"https://www.gitbook.com/book/bagder/everything-curl/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hayloft-Plants.co.uk (partial)\" f=\"hayloft-plants.co.uk.xml\"><securecookie host=\".\" name=\"^optimizely\"/><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hazro.com\" default_off=\"failed ruleset test\" f=\"hazro.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HBO.com (false MCB)\" platform=\"mixedcontent\" f=\"hbo.com-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:i|render)\\.lv3\\.hbo\\.com/\" to=\"https://www.hbo.com/\"/><rule from=\"^http://cdn\\.www\\.hbo\\.com/\" to=\"https://www.hbo.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HBO Kids.com\" f=\"hbokids.com.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://hbokids\\.com/\" to=\"https://www.hbokids.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HBO Now.com\" f=\"hbonow.com.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://hbonow\\.com/\" to=\"https://www.hbonow.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hbooker.com\" f=\"hbooker.com.xml\"><rule from=\"^http://(www\\.)?hbooker\\.com/\" to=\"https://www.hbooker.com/\"/><exclusion pattern=\"^http://app\\.hbooker\\.com/$\"/><rule from=\"^http://app\\.hbooker\\.com/resources/\" to=\"https://app.hbooker.com/resources/\"/></ruleset>", "<ruleset name=\"HBO Shop EU.com\" f=\"hboshopeu.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://hboshopeu\\.com/\" to=\"https://www.hboshopeu.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HCStx.org\" default_off=\"failed ruleset test\" f=\"hcstx.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HDClub\" f=\"hdclub.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hdslb.com\" f=\"hdslb.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HD Vest\" default_off=\"failed ruleset test\" f=\"hdvest.com.xml\"><securecookie host=\"www\\.hdvest\\.com$\" name=\".+\"/><securecookie host=\".*\\.hdvlink\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Health Net.com (partial)\" default_off=\"failed ruleset test\" f=\"healthnet.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"heartland-interiors\" f=\"heartland-interiors.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hebdo.ch\" default_off=\"failed ruleset test\" f=\"hebdo.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Higher Education Employment Information e-Platform (HKSARG)\" f=\"hee.gov.hk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"helbing.ch\" f=\"helbing.ch.xml\"><rule from=\"^http://helbing\\.ch/\" to=\"https://www.helbing.ch/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Helixo.fr\" f=\"helixo.fr.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Helping Rhinos.org\" f=\"helpingrhinos.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://helpingrhinos\\.org/\" to=\"https://www.helpingrhinos.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"helptorrents.com\" f=\"helptorrents.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hengxinli.com\" default_off=\"failed ruleset test\" f=\"hengxinli.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"heritage.gov.hk\" f=\"heritage.gov.hk.xml\"><rule from=\"^http://(www\\.)?heritage\\.gov\\.hk/\" to=\"https://www.heritage.gov.hk/\"/><securecookie host=\".+\" name=\".+\"/></ruleset>", "<ruleset name=\"HexChat.net\" f=\"hexchat.net.xml\"><securecookie host=\"^\\.\" name=\"(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hi5.com\" f=\"hi5.xml\"><securecookie host=\"^\\.hi5\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hidester.com\" f=\"hidester.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hieber\" f=\"hieber.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Highland.gov.uk (partial)\" f=\"highland.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.www\\.\" name=\".\"/><rule from=\"^http://consult\\.highland\\.gov\\.uk/\" to=\"https://highland-consult.objective.co.uk/\"/><rule from=\"^http://libraries\\.highland\\.gov\\.uk/.*\" to=\"https://capitadiscovery.co.uk/highland/\"/><exclusion pattern=\"^http://libraries\\.highland\\.gov\\.uk/(?!$|\\?)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hightown HA.org.uk\" f=\"hightownha.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Highways.gov.uk (partial)\" f=\"highways.gov.uk.xml\"><securecookie host=\"^\\.\" name=\"^__utm\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:aka\\.|www\\.)?highways\\.gov\\.uk/.*\" to=\"https://www.gov.uk/government/organisations/highways-england\"/><exclusion pattern=\"^http://(?:aka\\.|www\\.)?highways\\.gov\\.uk/+(?!$|\\?)\"/><rule from=\"^http://(assets|data)\\.highways\\.gov\\.uk/\" to=\"https://s3.amazonaws.com/$1.highways.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hipercontas.com.br (partial)\" f=\"hipercontas.com.br.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://hipercontas\\.com\\.br/\" to=\"https://www.hipercontas.com.br/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hipertextual.com\" f=\"hipertextual.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Histats.com (partial)\" f=\"histats.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hitfile.net (partial)\" platform=\"mixedcontent\" f=\"hitfile.net.xml\"><exclusion pattern=\"^http://(?:www\\.)?hitfile\\.net/(?!/*(?:favicon\\.ico|favicon/|(?:fd[12]|platform)/(?:css|img)/|locale/[^/]+/css/))\"/><securecookie host=\"^\\w\" name=\"^__utm\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hitta.se\" f=\"hitta.se.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hong Kong Exchanges and Clearing Limited\" f=\"hkex.com.hk.xml\"><securecookie host=\"^www\\.hkex\\.com\\.hk$\" name=\".+\"/><rule from=\"^http://(www\\.)?hkex\\.com\\.hk/\" to=\"https://www.hkex.com.hk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HK Express\" f=\"hkexpress.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HKJC Lotteries Limited\" f=\"hkjc.com.xml\"><exclusion pattern=\"^http://txn01\\.hkjc\\.com/BetSlip/index\\.aspx\"/><exclusion pattern=\"^http://txn02\\.hkjc\\.com/BetSlip/index\\.aspx\"/><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hong Kong Public Libraries\" f=\"hkpl.gov.hk.xml\"><rule from=\"^http://hkpl\\.gov\\.hk/\" to=\"https://www.hkpl.gov.hk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hkqf.gov.hk\" f=\"hkqf.gov.hk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The University of Hong Kong\" default_off=\"failed ruleset test\" f=\"hku.hk.xml\"><rule from=\"^http://cedars\\.hku\\.hk/\" to=\"https://www.cedars.hku.hk/\"/><rule from=\"^http://centennialcollege\\.hku\\.hk/\" to=\"https://www.centennialcollege.hku.hk/\"/><rule from=\"^http://fbe\\.hku\\.hk/\" to=\"https://www.fbe.hku.hk/\"/><rule from=\"^http://hkupop\\.hku\\.hk/\" to=\"https://www.hkupop.hku.hk/\"/><rule from=\"^http://its\\.hku\\.hk/\" to=\"https://www.its.hku.hk/\"/><rule from=\"^http://www\\.lib\\.hku\\.hk/\" to=\"https://lib.hku.hk/\"/><rule from=\"^http://med\\.hku\\.hk/\" to=\"https://www.med.hku.hk/\"/><rule from=\"^http://ppaweb\\.hku\\.hk/\" to=\"https://www.ppaweb.hku.hk/\"/><rule from=\"^http://www\\.sites\\.sociology\\.hku\\.hk/\" to=\"https://sites.sociology.hku.hk/\"/><rule from=\"^http://versitech\\.hku\\.hk/\" to=\"https://www.versitech.hku.hk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hobby PCB.com\" f=\"hobbypcb.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hobsons.com (partial)\" default_off=\"needs clearnet testing\" f=\"hobsons.com.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://hobsons\\.com/\" to=\"https://www.hobsons.com/\"/><rule from=\"^http://www\\.postgrad\\.hobsons\\.com/\" to=\"https://www.postgrad.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hoccer\" f=\"hoccer.com.xml\"><securecookie host=\"^(www|faq|invite)\\.hoccer\\.com$\" name=\".+\"/><rule from=\"^http://(www\\.)?hoccer-project\\.com/\" to=\"https://hoccer.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Holbi.co.uk\" f=\"holbi.co.uk.xml\"><securecookie host=\"^\\.\" name=\"^_ga\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Holiday Pirates.com\" f=\"holidaypirates.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid$|_gat?$|_gat_|cf_clearance$)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Holyrood.com\" default_off=\"failed ruleset test\" f=\"holyrood.com.xml\"><securecookie host=\"^\\.\" name=\"^_ga\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Home-school.com (partial)\" f=\"home-school.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HomeAway.com (resources)\" platform=\"mixedcontent\" f=\"homeaway.com-resources.xml\"><exclusion pattern=\"^http://software\\.homeaway\\.com/(?!/*Themes/)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://images\\.mailaway\\.homeaway\\.com/\" to=\"https://s225508597.t.eloqua.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HomeAway.com (partial)\" default_off=\"failed ruleset test\" f=\"homeaway.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://app\\.mailaway\\.homeaway\\.com/\" to=\"https://s225508597.t.eloqua.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Homebid.org.uk\" default_off=\"missing certificate chain\" f=\"homebid.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://homebid\\.org\\.uk/\" to=\"https://www.homebid.org.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Homeless.org.uk\" default_off=\"mismatched\" f=\"homeless.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Home Office.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"homeoffice.gov.uk.xml\"><exclusion pattern=\"^http://(?:(?:(?:www\\.)?(?:apc|bia|biapreview|ind|oisc|ukba)|lifeintheuktest\\.ukba|www)\\.)?homeoffice\\.gov\\.uk/(?!/*(?:$|\\?))\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?homeoffice\\.gov\\.uk/.*\" to=\"https://www.gov.uk/government/organisations/home-office\"/><rule from=\"^http://(?:www\\.)?apc\\.homeoffice\\.gov\\.uk/.*\" to=\"https://www.gov.uk/government/organisations/animals-in-science-committee\"/><rule from=\"^http://(?:www\\.)?bia(?:preview)?\\.homeoffice\\.gov\\.uk/.*\" to=\"https://www.gov.uk/government/organisations/uk-visas-and-immigration\"/><rule from=\"^http://(?:www\\.)?crimereduction\\.homeoffice\\.gov\\.uk/[^?]*\" to=\"https://www.gov.uk/government/policies/crime-prevention\"/><rule from=\"^http://elearning\\.homeoffice\\.gov\\.uk/\" to=\"https://www.elearning.homeoffice.gov.uk/\"/><rule from=\"^http://(?:www\\.)?(?:ind|ukba)\\.homeoffice\\.gov\\.uk/.*\" to=\"https://www.gov.uk/government/organisations/uk-visas-and-immigration\"/><rule from=\"^http://live\\.irtl\\.homeoffice\\.gov\\.uk/\" to=\"https://terrorismlegislationreviewer.independent.gov.uk/\"/><rule from=\"^http://(?:www\\.)?oisc\\.homeoffice\\.gov\\.uk/.*\" to=\"https://www.gov.uk/government/organisations/office-of-the-immigration-services-commissioner\"/><rule from=\"^http://preventreview\\.homeoffice\\.gov\\.uk/[^?]*\" to=\"https://www.gov.uk/government/policies/counter-terrorism\"/><rule from=\"^http://(?:www\\.)?probation\\.homeoffice\\.gov\\.uk/[^?]*\" to=\"https://www.gov.uk/government/policies/crime-prevention\"/><rule from=\"^http://lifeintheuktest\\.ukba\\.homeoffice\\.gov\\.uk/.*\" to=\"https://www.gov.uk/life-in-the-uk-test\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Honeynet.org.mx (partial)\" f=\"honeynet.org.mx.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?honeynet\\.org\\.mx/.*\" to=\"https://blog.honeynet.org.mx/\"/><exclusion pattern=\"^http://(?:www\\.)?honeynet\\.org\\.mx/+(?!$|\\?)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Honeynet.org\" default_off=\"failed ruleset test\" f=\"honeynet.org.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hong Kong International Airport\" f=\"hongkongairport.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hong Kong Free Press\" f=\"hongkongfp.com.xml\"><securecookie host=\"^www\\.hongkongfp\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hongkong Post e-Cert\" f=\"hongkongpost.gov.hk.xml\"><rule from=\"^http://(?:www\\.)?hongkongpost\\.gov\\.hk/\" to=\"https://www.hongkongpost.gov.hk/\"/></ruleset>", "<ruleset name=\"hook.io\" f=\"hook.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hostalite.com\" f=\"hostalite.com.xml\"><rule from=\"^http://(www\\.)?hos\\.hostalite\\.com:2096/\" to=\"https://$1hos.hostalite.com:2096/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hosted-ci.com\" default_off=\"failed ruleset test\" f=\"hosted-ci.com.xml\"><rule from=\"^http://www\\.hosted-ci\\.com/\" to=\"https://hosted-ci.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hosting (partial)\" default_off=\"refused\" f=\"hosting.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hosting.cz\" f=\"hosting.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hpHosts\" f=\"hosts-file.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hotel.ch\" default_off=\"failed ruleset test\" f=\"hotel.ch.xml\"><rule from=\"^http://(?:www\\.)?hotel\\.ch/\" to=\"https://www.hotel.ch/\"/></ruleset>", "<ruleset name=\"Hotjar.com (partial)\" f=\"hotjar.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HouseTime.FM\" f=\"housetime.fm.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hoverwatch.com\" f=\"hoverwatch.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Howard-Cottage.co.uk\" default_off=\"failed ruleset test\" f=\"howard-cottage.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://howard-cottage\\.co\\.uk/\" to=\"https://www.howard-cottage.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"How Entrepreneur.com\" platform=\"mixedcontent\" f=\"howentrepreneur.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid$|__utm|cf_clearance$)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HPS.org\" f=\"hps.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hromadskeradio.org\" f=\"hromadskeradio.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HSBC.co.in (partial)\" f=\"hsbc.co.in.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://hsbc\\.co\\.in/\" to=\"https://www.hsbc.co.in/\"/><rule from=\"^http://www\\.assetmanagement\\.hsbc\\.co\\.in/+\" to=\"https://www.assetmanagement.hsbc.com/in\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HSBC.co.jp (partial)\" default_off=\"testing\" f=\"hsbc.co.jp.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://hsbc\\.co\\.jp/\" to=\"https://www.hsbc.co.jp/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HSBC.co.kr (partial)\" default_off=\"testing\" f=\"hsbc.co.kr.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://hsbc\\.co\\.kr/\" to=\"https://www.hsbc.co.kr/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HSBC.co.uk (partial)\" default_off=\"testing\" f=\"hsbc.co.uk.xml\"><exclusion pattern=\"^http://(?:[^./]+\\.){2,}apply\\.business\\.hsbc\\.co\\.uk/\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.financialplanning\\.hsbc\\.co\\.uk/\" to=\"https://financialplanning.hsbc.co.uk/\"/><rule from=\"^http://www\\.mychoice\\.staff\\.hsbc\\.co\\.uk/.*\" to=\"https://hsbc.tbs.aon.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HSBC.com (resources)\" default_off=\"testing\" platform=\"mixedcontent\" f=\"hsbc.com-resources.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://images\\.cmbinsight\\.hsbc\\.com/\" to=\"https://secure.p03.eloqua.com/\"/></ruleset>", "<ruleset name=\"HSBC.com.bd\" default_off=\"testing\" f=\"hsbc.com.bd.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://hsbc\\.com\\.bd/\" to=\"https://www.hsbc.com.bd/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HSBC.com.bh\" default_off=\"testing\" f=\"hsbc.com.bh.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HSBC.com.eg\" default_off=\"testing\" f=\"hsbc.com.eg.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HSBC.com.hk (partial)\" f=\"hsbc.com.hk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HSBC.com.lb\" default_off=\"testing\" f=\"hsbc.com.lb.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HSBC.com.mu\" default_off=\"testing\" f=\"hsbc.com.mu.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://hsbc\\.com\\.mu/\" to=\"https://www.hsbc.com.mu/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HSBC.com.om\" default_off=\"testing\" f=\"hsbc.com.om.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HSBC.com.qa\" default_off=\"testing\" f=\"hsbc.com.qa.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HSBC.com.vn\" default_off=\"testing\" f=\"hsbc.com.vn.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://hsbc\\.com\\.vn/\" to=\"https://www.hsbc.com.vn/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HSBCnet.com\" f=\"hsbcnet.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://hsbcnet\\.com/\" to=\"https://www.hsbcnet.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HSBCtrinkaus.de\" default_off=\"testing\" f=\"hsbctrinkaus.de.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://hsbctrinkaus\\.de/\" to=\"https://www.hsbctrinkaus.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HSCIC.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"hscic.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HSE.gov.uk (partial)\" f=\"hse.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hska.info\" f=\"hska.info.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"html-online.com\" f=\"html-online.com.xml\"><rule from=\"^http://www\\.html-online\\.com/\" to=\"https://html-online.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"httpoxy.org\" f=\"httpoxy.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"httpstatuses.com\" f=\"httpstatuses.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"huaban.com\" f=\"huaban.com.xml\"><rule from=\"^http://www\\.huaban\\.com/\" to=\"https://huaban.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hubnotify.com\" f=\"hubnotify.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"huboard.com\" f=\"huboard.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hubpeople.com (partial)\" f=\"hubpeople.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hugendubel.info\" f=\"hugendubel.info.xml\"><rule from=\"^http://hugendubel\\.info/\" to=\"https://www.hugendubel.info/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hungryhowies.com\" f=\"hungryhowies.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hunton Privacy Blog.com\" f=\"huntonprivacyblog.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hurl.it\" f=\"hurl.it.xml\"><rule from=\"^http://hurl\\.it/\" to=\"https://www.hurl.it/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Huuto.net (resources)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"huuto.net-resources.xml\"><exclusion pattern=\"^http://(?:salattu|www)\\.huuto\\.net/(?!/*(?:favicon\\.ico|module/|[\\d.]+/module/))\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Huuto.net (partial)\" f=\"huuto.net.xml\"><exclusion pattern=\"^http://(?:www\\.)?huuto\\.net/(?!/*(?:keskustelu|kirjaudu|ohjeet|osasto|palaute|rekisteroidy|uusi-ilmoitus)(?:$|[?/]))\"/><exclusion pattern=\"^http://salattu\\.huuto\\.net/(?!/*osasto(?:$|[?/]))\"/><securecookie host=\"^\\.\" name=\"^_ga\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hybrid -- Cryptocurrency Combined\" default_off=\"expired\" f=\"hyb.pw.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hydra-billing.com (partial)\" f=\"hydra-billing.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hydranodes.de\" f=\"hydranodes.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hydraproxy.party\" default_off=\"failed ruleset test\" f=\"hydraproxy.party.xml\"><securecookie host=\"^.*\\.hydraproxy\\.party$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"hydrogenaud.io\" f=\"hydrogenaud.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hyper Island.com (partial)\" f=\"hyperisland.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:_ga|optimizely)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hyper Ledger.org\" f=\"hyperledger.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"HypeStat.com\" default_off=\"failed ruleset test\" f=\"hypestat.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"i4wifi.cz\" default_off=\"failed ruleset test\" f=\"i4wifi.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iCarol\" f=\"iCarol.xml\"><securecookie host=\"^webapp\\.icarol\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iCloud.com\" f=\"iCloud.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iEntry (partial)\" platform=\"mixedcontent\" f=\"iEntry.xml\"><securecookie host=\"^www\\.ientry\\.com$\" name=\".*\"/><rule from=\"^http://(www\\.)?ientry\\.com/\" to=\"https://$1ientry.com/\"/><rule from=\"^http://cdn\\.ientry\\.com/\" to=\"https://d195lklsc86qb5.cloudfront.net/\"/></ruleset>", "<ruleset name=\"iHub_ Nairobi\" default_off=\"expired, self-signed\" f=\"iHub_-Nairobi.xml\"><securecookie host=\"^ihub\\.co\\.ke$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?(research\\.)?ihub\\.co\\.ke/\" to=\"https://$1ihub.co.ke/\"/></ruleset>", "<ruleset name=\"iPerceptions.com (partial)\" f=\"iPerceptions.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.universal\\.iperceptions\\.com$\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iQiyi.com (partial)\" f=\"iQiyi.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iSideWith.com\" f=\"iSideWith.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iTerm2\" f=\"iTerm2.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iTunes.com\" f=\"iTunes.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iWork.com\" default_off=\"failed ruleset test\" f=\"iWork.com.xml\"><rule from=\"^http://iwork\\.com/\" to=\"https://www.iwork.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stichting IAPC\" f=\"iapc.utwente.nl.xml\"><rule from=\"^http://([^/:@]*)\\.iapc\\.utwente\\.nl/\" to=\"https://$1.iapc.utwente.nl/\"/><rule from=\"^http://([^/:@]*)\\.iapc\\.nl/\" to=\"https://$1.iapc.utwente.nl/\"/><rule from=\"^http://(?:[^/:@]*\\.)?isdewinkelopen\\.nl/\" to=\"https://isdewinkelopen.iapc.utwente.nl/\"/><rule from=\"^http://(?:[^/:@]*\\.)?startjesucces\\.nl/\" to=\"https://startjesucces.iapc.utwente.nl/\"/><securecookie host=\"(?:^|\\.)iapc.utwente.nl$\" name=\".*\"/></ruleset>", "<ruleset name=\"IBM.biz\" f=\"ibm.biz.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.ibm\\.biz/\" to=\"https://ibm.biz/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ibutsu.org\" f=\"ibutsu.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.ibutsu\\.org/\" to=\"https://ibutsu.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IBX.com (partial)\" default_off=\"failed ruleset test\" f=\"ibx.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://wc2\\.ibx\\.com/+\" to=\"https://www.amerihealthnj.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"I CAN.org.uk (partial)\" f=\"ican.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iCBdr.com\" platform=\"mixedcontent\" f=\"icbdr.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://img\\.icbdr\\.com/\" to=\"https://secure.icbdr.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ictv.ua (partial)\" default_off=\"failed ruleset test\" f=\"ictv.ua.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IDeA.gov.uk (partial)\" f=\"idea.gov.uk.xml\"><rule from=\"^http://www\\.communities\\.idea\\.gov\\.uk/.*\" to=\"https://khub.net/\"/><exclusion pattern=\"^http://www\\.communities\\.idea\\.gov\\.uk/(?!$|\\?)\"/></ruleset>", "<ruleset name=\"Ideal Conceal.com\" f=\"idealconceal.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IdeaScale.com (partial)\" f=\"ideascale.com.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ideco.ru\" f=\"ideco.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"idelreal.org\" f=\"idelreal.org.xml\"><rule from=\"^http://idelreal\\.org/\" to=\"https://www.idelreal.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"idms-linux.org\" default_off=\"failed ruleset test\" f=\"idms-linux.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iDNES.cz\" f=\"idnes-cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"idox group.com (partial)\" f=\"idoxgroup.com.xml\"><exclusion pattern=\"http://www\\.compliance\\.idoxgroup\\.com/+(?!(?:aktuelles/newsletter|en/login|login)\\.html|fileadmin/|typo3temp/|uploads/)\"/><securecookie host=\"^(?!www\\.compliance\\.)\\w\" name=\".\"/><rule from=\"^http://fskills\\.idoxgroup\\.com/.*\" to=\"https://www.researchonline.org.uk/sds/index.do\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IDS-NF.org\" default_off=\"expired, untrusted root\" f=\"ids-nf.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ievaphone.com\" f=\"ievaphone.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ifengimg.com\" f=\"ifengimg.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ifolor.ch\" platform=\"mixedcontent\" f=\"ifolor.ch.xml\"><rule from=\"^http://(?:www\\.)?ifolor\\.ch/\" to=\"https://www.ifolor.ch/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iformula.ru (partial)\" f=\"iformula.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IFS.org.uk\" f=\"ifs.org.uk.xml\"><securecookie host=\"^\\.\" name=\"^_ga\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iii.com\" f=\"iii.com.xml\"><rule from=\"^http://iii\\.com/\" to=\"https://www.iii.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iknowwhatyoudownload.com\" f=\"iknowwhatyoudownload.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ilca.ru (partial)\" f=\"ilca.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Illuminateed.com (partial)\" f=\"illuminateed.com.xml\"><exclusion pattern=\"^http://go\\.illuminateed\\.com/(?!/*(?:$|\\?|[els]/|emailPreference/|unsubscribe/|webmail/))\"/><securecookie host=\"^(?!go\\.)\\w\" name=\".\"/><rule from=\"^http://bi\\.illuminateed\\.com/(?:\\?.*)?$\" to=\"https://www.gitbook.com/book/christineolah/illuminate-bi-tool-guide/details\"/><rule from=\"^http://bi\\.illuminateed\\.com/\" to=\"https://www.gitbook.com/book/christineolah/illuminate-bi-tool-guide/\"/><rule from=\"^http://go\\.illuminateed\\.com/+(?:\\?.*)?$\" to=\"https://www.illuminateed.com/\"/><rule from=\"^http://go\\.illuminateed\\.com/\" to=\"https://go.pardot.com/\"/><rule from=\"^http://support\\.illuminateed\\.com/\" to=\"https://illuminate.zendesk.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"illustre.ch\" default_off=\"failed ruleset test\" f=\"illustre.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"im9.eu\" f=\"im9.eu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"imagecurl\" f=\"imagecurl.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"imagelayers.io\" default_off=\"failed ruleset test\" f=\"imagelayers.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Image Raider.com\" f=\"imageraider.com.xml\"><securecookie host=\"^\\.\" name=\"^__utm\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"images4et.com\" f=\"images4et.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"imena.ua\" f=\"imena.ua.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"imercer.com\" default_off=\"failed ruleset test\" f=\"imercer.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"img.ifcdn.com\" f=\"img.ifcdn.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"imgix.com\" f=\"imgix.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"imgking\" f=\"imgking.co.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"imgkings\" f=\"imgkings.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"imgops.com\" f=\"imgops.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ImgTec.com (partial)\" f=\"imgtec.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"imgwe.com\" f=\"imgwe.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Immerda.ch\" f=\"immerda.ch.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"immunicity.uk\" default_off=\"failed ruleset test\" f=\"immunicity.uk.xml\"><securecookie host=\"^.*\\.immunicity\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Imperian\" f=\"imperian.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"import.io (partial)\" f=\"import.io.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"impressiondesk.com\" f=\"impressiondesk.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"imwukong.com\" default_off=\"failed ruleset test\" f=\"imwukong.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"In-tend.co.uk\" f=\"in-tend.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"In-tendhost.co.uk\" f=\"in-tendhost.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Incandescent.xyz\" platform=\"mixedcontent\" f=\"incandescent.xyz.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Indie Style Store.com\" f=\"indiestylestore.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"indikom.ru\" f=\"indikom.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"industry-incentive.taipei\" f=\"industry-incentive.taipei.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Indymedia.ie\" default_off=\"self-signed\" f=\"indymedia.ie.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://indymedia\\.ie/\" to=\"https://www.indymedia.ie/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"inedo.com (partial)\" f=\"inedo.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"inetcom.ru (partial)\" f=\"inetcom.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"inetvl.ru\" default_off=\"failed ruleset test\" f=\"inetvl.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"infinum.co\" default_off=\"failed ruleset test\" f=\"infinum.co.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"infocity.az\" f=\"infocity.az.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"infoculture.ru\" f=\"infoculture.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"infolan.by\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"infolan.by.xml\"><rule from=\"^http://www\\.infolan\\.by/\" to=\"https://infolan.by/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"infolink.ru (partial)\" f=\"infolink.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"inforesist.org\" f=\"inforesist.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"inforos.ru\" platform=\"mixedcontent\" f=\"inforos.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"infosactu.com\" f=\"infosactu.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"init.sh\" default_off=\"failed ruleset test\" f=\"init.sh.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"initial-website.com\" f=\"initial-website.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:diy2_frontend_user_hash|fe_typo_user)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iniy.org\" default_off=\"failed ruleset test\" f=\"iniy.org.xml\"><rule from=\"^http://www\\.iniy\\.org/\" to=\"https://iniy.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"INL.gov (partial)\" default_off=\"failed ruleset test\" f=\"inl.gov.xml\"><exclusion pattern=\"^http://(?:amwtp|www\\.amwtp|nuclear)\\.inl\\.gov/(?!/*(?:$|\\?))\"/><securecookie host=\"^(?!amwtp\\.|www\\.amwtp\\.|nuclear\\.)\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?amwtp\\.inl\\.gov/.*\" to=\"https://idahocleanupproject.com/\"/><rule from=\"^http://nuclear\\.inl\\.gov/.*\" to=\"https://inlportal.inl.gov/portal/server.pt?open=512&objID=277&mode=2\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"inosmi.ru\" f=\"inosmi.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Inovem.com (partial)\" default_off=\"mismatched, self-signed\" f=\"inovem.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"inpearls.ru\" f=\"inpearls.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"inside-security.de\" f=\"inside-security.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"installments.com\" f=\"installments.com.xml\"><securecookie host=\"^www\\.installments\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"InstantAtlas.com (partial)\" f=\"instantatlas.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^ARRAffinity$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"InstaSync.com\" default_off=\"failed ruleset test\" f=\"instasync.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Intagme.com\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"intagme.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Integrity Global.com\" f=\"integrityglobal.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IntelliPoker.bg\" default_off=\"failed ruleset test\" f=\"intellipoker.bg.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IntellNews.net\" default_off=\"failed ruleset test\" f=\"intellnews.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://intellnews\\.net/\" to=\"https://www.intellnews.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IntelNews.org\" f=\"intelnews.org.xml\"><securecookie host=\".\" name=\"^aps-trtmnt$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"interactivepython.org\" f=\"interactivepython.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"interfax.az\" platform=\"mixedcontent\" f=\"interfax.az.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"interfax.kz\" f=\"interfax.kz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Internet Essentials.com\" default_off=\"failed ruleset test\" f=\"internetessentials.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Internet Freedom Festival.org\" f=\"internetfreedomfestival.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"intertelecom.ru.com (partial)\" default_off=\"failed ruleset test\" f=\"intertelecom.ru.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IntSig.com (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"intsig.com.xml\"><securecookie host=\"^\\.\" name=\"^_isstat\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IntSig.net (partial)\" default_off=\"failed ruleset test\" f=\"intsig.net.xml\"><securecookie host=\"^\\.\" name=\"^_isstat\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Invincea Labs.com\" f=\"invincealabs.com.xml\"><exclusion pattern=\"^http://(?:[^./]+\\.){2,}invincealabs\\.com/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"InvisibleThings.org\" f=\"invisiblethings.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ioke.org (partial)\" f=\"ioke.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ion Interactive.com (partial)\" f=\"ioninteractive.com.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^(?!www\\.)\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?ioninteractive\\.com/.*\" to=\"https://meet.ioninteractive.com/home\"/><exclusion pattern=\"http://(?:www\\.)?ioninteractive\\.com/(?!$|\\?)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ionitcom.ru (partial)\" f=\"ionitcom.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IoT.uk\" f=\"iot.uk.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IO Visor.org\" f=\"iovisor.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ip-home.net (partial)\" f=\"ip-home.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ipair.com\" f=\"ipair.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ipchicken.com\" f=\"ipchicken.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iphones.ru\" f=\"iphones.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ipify.org\" f=\"ipify.org.xml\"><rule from=\"^http://ipify\\.org/\" to=\"https://www.ipify.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ipip.net\" f=\"ipip.net.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ipleak.net\" f=\"ipleak.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iplocation.net\" f=\"iplocation.net.xml\"><securecookie host=\"^www\\.iplocation\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iqdb\" f=\"iqdb.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Iran Cyber Crime.org\" f=\"irancybercrime.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"irc.lc\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"irc.lc.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ircity.ru\" f=\"ircity.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IRE.org\" f=\"ire.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ireceivesmsonline.com\" f=\"ireceivesmsonline.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IREX.org (partial)\" f=\"irex.org.xml\"><securecookie host=\"^\\.\" name=\"^SESS\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IRfree.com\" f=\"irfree.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"irknet.ru\" f=\"irknet.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IronGeek.com\" f=\"irongeek.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"irrlab.com\" f=\"irrlab.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"irs01.com\" f=\"irs01.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"is.gd\" f=\"is.gd.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"is74.ru (partial)\" default_off=\"failed ruleset test\" f=\"is74.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ISOC.ch (partial)\" f=\"isoc.ch.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ispserver.com\" f=\"ispserver.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ispserver.ru\" f=\"ispserver.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ispsystem.com\" f=\"ispsystem.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ispsystem.ru\" f=\"ispsystem.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Is Steam Down.com\" f=\"issteamdown.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Is the Internet On Fire.com\" f=\"istheinternetonfire.com.xml\"><securecookie host=\"^(?:.*\\.)?istheinternetonfire\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iStock img.com\" f=\"istockimg.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iStockphoto.com (partial)\" default_off=\"failed ruleset test\" f=\"istockphoto.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://deutsch\\.istockphoto\\.com/+\" to=\"https://www.istockphoto.com/de/\"/><rule from=\"^http://espanol\\.istockphoto\\.com/+\" to=\"https://www.istockphoto.com/es/\"/><rule from=\"^http://francais\\.istockphoto\\.com/+\" to=\"https://www.istockphoto.com/fr/\"/><rule from=\"^http://hangul\\.istockphoto\\.com/+\" to=\"https://www.istockphoto.com/kr/\"/><rule from=\"^http://italiano\\.istockphoto\\.com/+\" to=\"https://www.istockphoto.com/it/\"/><rule from=\"^http://jezykpolski\\.istockphoto\\.com/+\" to=\"https://www.istockphoto.com/pl/\"/><rule from=\"^http://nihongo\\.istockphoto\\.com/+\" to=\"https://www.istockphoto.com/jp/\"/><rule from=\"^http://portugues\\.istockphoto\\.com/+\" to=\"https://www.istockphoto.com/pt/\"/><rule from=\"^http://portuguesbrasileiro\\.istockphoto\\.com/+\" to=\"https://www.istockphoto.com/br/\"/><rule from=\"^http://russki\\.istockphoto\\.com/+\" to=\"https://www.istockphoto.com/ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"it-ccs.com\" f=\"it-ccs.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"it-tv.org\" f=\"it-tv.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iTao.com\" platform=\"mixedcontent\" f=\"itao.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"itce.ru\" f=\"itce.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"itefix.net\" f=\"itefix.net.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"itella.fi\" platform=\"mixedcontent\" f=\"itella.fi.xml\"><rule from=\"^http://(?:www\\.)?itella\\.fi/\" to=\"https://itella.fi/\"/><securecookie host=\"^(?:www)?\\.?itella\\.fi\" name=\".*\"/><exclusion pattern=\"^http://(?:www\\.)?itella\\.fi/itemtracking/\"/></ruleset>", "<ruleset name=\"ItemName.com\" f=\"itemname.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"itex.ru\" default_off=\"failed ruleset test\" f=\"itex.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ITIF.org (partial)\" f=\"itif.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ITK.org\" f=\"itk.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ITProPortal.com (partial)\" platform=\"mixedcontent\" f=\"itproportal.com.xml\"><rule from=\"^http://cdn\\.itproportal\\.com/\" to=\"https://d3j36zdwwifgna.cloudfront.net/\"/></ruleset>", "<ruleset name=\"itsoft.ru\" f=\"itsoft.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IUS.io\" f=\"ius.io.xml\"><exclusion pattern=\"^http://(?:[^./]+\\.){2,}ius\\.io/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ivi.ru\" f=\"ivi.ru.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ivi.tv\" f=\"ivi.tv.xml\"><securecookie host=\"^\\.\" name=\"^(?:_ga|user_ab_bucket$)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ivoting.taipei\" f=\"ivoting.taipei.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ivsezaodnogo.ru\" default_off=\"missing certificate chain\" f=\"ivsezaodnogo.ru.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ivteleradio.ru\" f=\"ivteleradio.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iwantmyname.com\" f=\"iwantmyname.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://like\\.iwantmyname\\.com/.*\" to=\"https://facebook.com/iwantmyname\"/><rule from=\"^http://status\\.iwantmyname\\.com/\" to=\"https://iwantmyname.statuspage.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iway.ch\" f=\"iway.ch.xml\"><exclusion pattern=\"^http://netbackup\\.iway\\.ch\"/><exclusion pattern=\"^http://statistik\\.iway\\.ch\"/><rule from=\"^http://iway\\.ch/\" to=\"https://www.iway.ch/\"/><rule from=\"^http://([^/:@]+)?\\.iway\\.ch/\" to=\"https://$1.iway.ch/\"/></ruleset>", "<ruleset name=\"iWeb.co.uk\" default_off=\"failed ruleset test\" f=\"iweb.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IWI-I-Info Studenten App\" f=\"iwi-i.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"iwill.org.uk\" default_off=\"mismatched\" platform=\"mixedcontent\" f=\"iwill.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ix.br\" f=\"ix.br.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ixIRC\" f=\"ixIRC.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"IXmaps.ca\" f=\"ixmaps.ca.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"jamestown.org\" f=\"jamestown.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"jankratochvil.net\" f=\"jankratochvil.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Journal of American Osteopathic Association\" default_off=\"missing certificate chain\" f=\"jaoa.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"japlusu.com\" f=\"japlusu.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jasons Movie Blog.com\" f=\"jasonsmovieblog.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jast USA.com (partial)\" f=\"jastusa.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^frontend$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"jauce.com\" f=\"jauce.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"javascript.ru\" default_off=\"failed ruleset test\" f=\"javascript.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Javascript Obfuscator.com\" f=\"javascriptobfuscator.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JBox.com\" f=\"jbox.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^frontend$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JDi-Solutions.co.uk\" f=\"jdi-solutions.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JDownloader.org (partial)\" f=\"jdownloader.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JEDEC.org\" f=\"jedec.org.xml\"><securecookie host=\"^\\.\" name=\"^SESS\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jeded.com\" f=\"jeded.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jekyll\" f=\"jekyllrb.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"jeman.de\" default_off=\"failed ruleset test\" f=\"jeman.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"jenkins.io\" f=\"jenkins.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jeremy Morgan.com\" f=\"jeremymorgan.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jewish Virtual Library.org\" default_off=\"missing certificate chain\" f=\"jewishvirtuallibrary.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"jibbed.org\" default_off=\"failed ruleset test\" f=\"jibbed.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JM.com (partial)\" default_off=\"failed ruleset test\" f=\"jm.com.xml\"><exclusion pattern=\"^http://www2\\.jm\\.com/(?!/*[el]/)\"/><securecookie host=\"^(?!www2\\.)\\w\" name=\".\"/><rule from=\"^http://www2\\.jm\\.com/\" to=\"https://go.pardot.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JMConnexus.com\" f=\"jmconnexus.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://jmconnexus\\.com/\" to=\"https://www.jmconnexus.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Job Corps.gov (resources)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"jobcorps.gov-resources.xml\"><exclusion pattern=\"^http://(?:www\\.)?jobcorps\\.gov/(?!/*(?:[Aa]pp_[Tt]hemes/|[Ii]mages/|[Ll]ibraries/(?:[Ii]mages|[Pp]df)/|WebResource\\.axd|favicon\\.ico))\"/><exclusion pattern=\"^http://(?:www\\.)?jobcorps\\.gov/.+\\.(?:js|json|swf)(?:$|\\?)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Job Corps.gov (partial)\" f=\"jobcorps.gov.xml\"><securecookie host=\"^[^.jw]\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"jobs.ch\" f=\"jobs.ch.xml\"><rule from=\"^http://([^/:@]*)\\.jobs\\.ch/\" to=\"https://$1.jobs.ch/\"/><rule from=\"^http://([^/:@]*)\\.jobcloud\\.ch/\" to=\"https://$1.jobcloud.ch/\"/></ruleset>", "<ruleset name=\"Interactive Employment Service Labour Department (HKSARG)\" f=\"jobs.gov.hk.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Joe Julian.name\" default_off=\"failed ruleset test\" f=\"joejulian.name.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"jolicloud.com\" f=\"jolicloud.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"jonasboserup.dk\" f=\"jonasboserup.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"joomla-security.de\" f=\"joomla-security.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"joomlainfo.ch\" f=\"joomlainfo.ch.xml\"><rule from=\"^http://cdn-media\\.joomlainfo\\.ch/\" to=\"https://www.joomlainfo.ch/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Josip Franjkovic.com\" f=\"josipfranjkovic.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"joycasino.com\" default_off=\"failed ruleset test\" f=\"joycasino.com.xml\"><rule from=\"^http://www\\.(joy-cazino\\.com|joy-kazino\\.com|joycazino\\.com|joykazino\\.com|joycasino9\\.com)/\" to=\"https://$1/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"jqplay.org\" f=\"jqplay.org.xml\"><rule from=\"^http://www\\.jqplay\\.org/\" to=\"https://jqplay.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Jrnl.ie\" f=\"jrnl.ie.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://(?:b0|static)\\.jrnl\\.ie/\" to=\"https://b0.thejournal.ie/\"/><rule from=\"^http://s\\d\\.jrnl\\.ie/\" to=\"https://d1icb8fuiosdrj.cloudfront.net/\"/></ruleset>", "<ruleset name=\"js.org\" default_off=\"failed ruleset test\" f=\"js.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"jsFiddle.net\" f=\"jsFiddle.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.jsfiddle\\.net/\" to=\"https://jsfiddle.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"jsbin.com\" default_off=\"failed ruleset test\" f=\"jsbin.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"jsDelivr.com\" f=\"jsdelivr.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"jsonformatter.org\" f=\"jsonformatter.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JSonline.com\" f=\"jsonline.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"jsrdn.com\" f=\"jsrdn.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"jtreminio.com\" f=\"jtreminio.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"juick.com\" f=\"juick.com.xml\"><rule from=\"^http://www\\.juick\\.com/\" to=\"https://juick.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JumpShare.com\" f=\"jumpshare.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"junge Welt\" f=\"jungewelt.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JUSO.ch\" f=\"juso.ch.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JustCloud.com (partial)\" f=\"justcloud.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:CUBEXSESSIONID|LC_CURRENCY)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"justdelete.me\" f=\"justdelete.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Just Eat\" default_off=\"failed ruleset test\" f=\"justeat.xml\"><rule from=\"^http://just-eat\\.com/\" to=\"https://www.just-eat.com/\"/><exclusion pattern=\"^http://www\\.just-?eat\\.(co\\.uk|ca|dk|no|es|be|nl|it|ie)/(blog|apps)\"/><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"JustGiving.com (false MCB)\" platform=\"mixedcontent\" f=\"justgiving.com-falsemixed.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"justseed.it\" f=\"justseedit.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"jwz.org\" f=\"jwz.org.xml\"><securecookie host=\"(^|\\.)www\\.jwz\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"k7r.eu\" f=\"k7r.eu.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"kabelbw\" f=\"kabelbw.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"kafanews.com\" f=\"kafanews.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"kaimi.ru\" f=\"kaimi.ru.xml\"><securecookie host=\"^(?:[\\w-]+\\.)?kaimi\\.ru$\" name=\".+\"/><rule from=\"^http://([\\w-]+\\.)?(kaimi\\.ru)/\" to=\"https://$1$2/\"/></ruleset>", "<ruleset name=\"kamchatinfo.com\" f=\"kamchatinfo.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"kamensktel.ru (partial)\" f=\"kamensktel.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"kancloud.cn\" default_off=\"failed ruleset test\" f=\"kancloud.cn.xml\"><exclusion pattern=\"^http://box\\.kancloud\\.cn/(?!cover)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"kannz.com (mixedcontent)\" platform=\"mixedcontent\" f=\"kannz.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Schweizer Kantonalbanken\" default_off=\"failed ruleset test\" f=\"kantonalbanken.xml\"><exclusion pattern=\"http://events\\.akb\\.ch\"/><exclusion pattern=\"http://(www\\.)?100jahre\\.akb\\.ch\"/><exclusion pattern=\"http://(www\\.)?mobilebanking\\.(akb|blkb)\\.ch\"/><exclusion pattern=\"http://(blog|gb)\\.blkb\\.ch/\"/><exclusion pattern=\"http://gb\\.bkb\\.ch/\"/><exclusion pattern=\"http://chart\\.bancastato\\.ch\"/><exclusion pattern=\"http://test\\.bcf\\.ch\"/><exclusion pattern=\"http://structures\\.bvc\\.ch\"/><exclusion pattern=\"http://art\\.bcvs\\.ch\"/><exclusion pattern=\"http://grow\\.gkb\\.ch/\"/><exclusion pattern=\"http://www\\.mobile\\.gkb\\.ch\"/><exclusion pattern=\"http://mobile\\.(appkb|gkb|glkb|nkb|owkb|sgkb|tkb)\\.ch\"/><exclusion pattern=\"http://(?:wap|ina)\\.lukb\\.ch\"/><exclusion pattern=\"http://galerie\\.sgkb\\.ch\"/><exclusion pattern=\"http://bcm\\.szkb\\.ch\"/><exclusion pattern=\"http://kredit\\.tkb\\.ch/\"/><exclusion pattern=\"http://mail\\.yourmoney\\.ch\"/><securecookie host=\"^(?:.*\\.)?(?:akb|appkb|bancastato|bcf|bcge|bcj|bcn|bcv|bcvs|bekb|bkb|blkb|gkb|glkb|lukb|nkb|owkb|sgkb|shkb|szkb|tkb|urkb|yourmoney|zkb|zugerkb).ch$\" name=\".+\"/><rule from=\"^http://(akb|appkb|bancastato|bcf|bcge|bcj|bcn|bcv|bcvs|bekb|bkb|blkb|gkb|glkb|lukb|nkb|owkb|sgkb|shkb|szkb|tkb|urkb|yourmoney|zkb|zugerkb)\\.ch/\" to=\"https://www.$1.ch/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"kaosx.us\" f=\"kaosx.us.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"kapital.kz\" default_off=\"failed ruleset test\" f=\"kapital.kz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kaprica.com\" default_off=\"failed ruleset test\" f=\"kaprica.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"karelia.pro (partial)\" f=\"karelia.pro.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Freifunk Karlsruhe\" f=\"karlsruhe.freifunk.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"kartoteka.ru\" f=\"kartoteka.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"karusel-tv.ru\" f=\"karusel-tv.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kasiopea\" f=\"kasiopea.matfyz.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Katsomo.fi (partial)\" platform=\"mixedcontent\" f=\"katsomo.fi.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"kavkaz-uzel.eu\" f=\"kavkaz-uzel.eu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"kavkaz-uzel.ru\" f=\"kavkaz-uzel.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"kazanfirst.ru\" f=\"kazanfirst.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"kazgorset.ru (partial)\" f=\"kazgorset.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"kazned.ru\" f=\"kazned.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"kbpravda.ru\" f=\"kbpravda.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KCRW.com (resources)\" platform=\"mixedcontent\" f=\"kcrw.com-resources.xml\"><exclusion pattern=\"^http://(?:capitalcampaign|events|test-events)\\.kcrw\\.com/(?!/*wp-(?:content|includes)/)\"/><exclusion pattern=\"^http://(?:capitalcampaign|events|test-events)\\.kcrw\\.com/.+\\.js(?:$|\\?)\"/><securecookie host=\"^\\.\" name=\"^_ga\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KCRW.com (partial)\" f=\"kcrw.com.xml\"><exclusion pattern=\"^http://blogs\\.kcrw\\.com/(?!/*(?:$|\\?))\"/><securecookie host=\"^\\.\" name=\"^_ga\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://blogs\\.kcrw\\.com/+\" to=\"https://www.kcrw.com/blogs\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"keenetic.net\" f=\"keenetic.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"keepkey.com\" f=\"keepkey.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kennedy-Center.org (partial)\" default_off=\"failed ruleset test\" f=\"kennedy-center.org.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.artsedge\\.kennedy-center\\.org/\" to=\"https://artsedge.kennedy-center.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kernel Newbies.org\" f=\"kernelnewbies.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.kernelnewbies\\.org/\" to=\"https://kernelnewbies.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"keywee.co\" f=\"keywee.co.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"kf5.com\" default_off=\"failed ruleset test\" f=\"kf5.com.xml\"><exclusion pattern=\"^http://(agents|d)\\.kf5\\.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"kfc.ru\" f=\"kfc.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"khabarovskadm.ru\" f=\"khabarovskadm.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"khabkrai.ru\" f=\"khabkrai.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Khashaev.ru\" f=\"khashaev.ru.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KHL.ru (partial)\" f=\"khl.ru.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://tv\\.khl\\.ru/.*\" to=\"https://www.khl.ru/tv/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"khotkovo.ru (partial)\" f=\"khotkovo.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kids.org.uk (partial)\" f=\"kids.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"kids.taipei\" f=\"kids.taipei.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kik.com (false MCB)\" platform=\"mixedcontent\" f=\"kik.com-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kik.com (partial)\" f=\"kik.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://kik\\.com/\" to=\"https://www.kik.com/\"/><rule from=\"^http://help\\.kik\\.com/\" to=\"https://kikinteractive.zendesk.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kikisso.com\" default_off=\"failed ruleset test\" f=\"kikisso.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"kinimatorama.net\" f=\"kinimatorama.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kink.com (partial)\" f=\"kink.com.xml\"><securecookie host=\".\" name=\"^optimizely\"/><securecookie host=\"^\\.\" name=\"(?:__cfduid$|_gat?$|_gat_|cf_clearance$)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"kinoX.to\" f=\"kinoX.to.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kinogo.co\" default_off=\"failed ruleset test\" f=\"kinogo.co.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kinogo.net\" default_off=\"failed ruleset test\" f=\"kinogo.net.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kinopoisk.ru\" f=\"kinopoisk.ru.xml\"><securecookie host=\"^[^.kw]\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"kirlism.ga\" default_off=\"failed ruleset test\" f=\"kirlism.ga.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"kirpich-ors.ru\" f=\"kirpich-ors.ru.xml\"><rule from=\"^http://www\\.kirpich-ors\\.ru/\" to=\"https://kirpich-ors.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kitware.com (partial)\" f=\"kitware.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"kivikakk.ee\" f=\"kivikakk.ee.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"kiwibyrd.org\" f=\"kiwibyrd.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KiyOh.nl\" f=\"kiyoh.nl.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"klerk.ru\" f=\"klerk.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Klick2Contact.com\" default_off=\"failed ruleset test\" f=\"klick2contact.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Klick2Contact sales.com\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"klick2contactsales.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Klikki.fi\" default_off=\"failed ruleset test\" f=\"klikki.fi.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Klinikum Ludwigshafen\" default_off=\"failed ruleset test\" f=\"klilu.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"klops.ru\" default_off=\"failed ruleset test\" f=\"klops.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KLS.rs\" f=\"kls.rs.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"klyaznik.ru (partial)\" f=\"klyaznik.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"km.com\" f=\"km.com.xml\"><rule from=\"^http://km\\.com/\" to=\"https://www.km.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KMD.dk (resources)\" platform=\"mixedcontent\" f=\"kmd.dk-resources.xml\"><exclusion pattern=\"^http://event\\.kmd\\.dk/(?!(?!.+\\.js(?:$|\\?))/*(?:css/|favicon\\.ico|js/))\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KMD.dk (partial)\" f=\"kmd.dk.xml\"><exclusion pattern=\"^http://event\\.kmd\\.dk/(?!/*(?:$|\\?|[^/]+/(?:eksternt-login|sign-up|tilmelding)\\.html))\"/><securecookie host=\"^(?!event\\.)\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"knigafund.ru\" default_off=\"failed ruleset test\" f=\"knigafund.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Knot-Resolver.cz\" f=\"knot-resolver.cz.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Knowingly.com\" f=\"knowingly.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"komi-news.ru\" default_off=\"failed ruleset test\" f=\"komi-news.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"komikz.ru\" f=\"komikz.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"kommersant.ru (partial)\" f=\"kommersant.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"konsumentverket.se\" f=\"konsumentverket.se.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Koolspan.com\" f=\"koolspan.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"koptevo.net (partial)\" default_off=\"failed ruleset test\" f=\"koptevo.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Korpijaakko.com\" f=\"korpijaakko.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"kprf.ru\" f=\"kprf.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"kr-znamya.ru\" f=\"kr-znamya.ru.xml\"><rule from=\"^http://www\\.kr-znamya\\.ru/\" to=\"https://kr-znamya.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"krasno.ru (partial)\" f=\"krasno.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"krasnodar.ru\" default_off=\"failed ruleset test\" f=\"krasnodar.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"krasnoturinsk.info\" platform=\"mixedcontent\" f=\"krasnoturinsk.info.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"kremlinpress.ru\" f=\"kremlinpress.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"krskstate.ru (partial)\" f=\"krskstate.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Krystal.info\" default_off=\"expired\" f=\"krystal.info.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ksk66.ru\" f=\"ksk66.ru.xml\"><rule from=\"^http://www\\.ksk66\\.ru/\" to=\"https://ksk66.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"KSP MFF UK\" f=\"ksp.mff.cuni.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"kt.kz\" platform=\"mixedcontent\" f=\"kt.kz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"kuangxiangit.com\" f=\"kuangxiangit.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"kuna.io\" default_off=\"failed ruleset test\" f=\"kuna.io.xml\"><rule from=\"^http://www\\.kuna\\.io/\" to=\"https://kuna.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"kurs.expert\" default_off=\"failed ruleset test\" f=\"kurs.expert.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"kva\" default_off=\"failed ruleset test\" f=\"kva.se.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Kylie.com\" platform=\"mixedcontent\" f=\"kylie.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"L214\" f=\"l214.com.xml\"><rule from=\"^http://visuel\\.l214\\.com/\" to=\"https://visuels.l214.com/\"/><rule from=\"^http://l214\\.com/\" to=\"https://www.l214.com/\"/><rule from=\"^http://paris\\.l214\\.com/\" to=\"https://www.l214.com/paris/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"lackname.org\" default_off=\"failed ruleset test\" f=\"lackname.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"lada.kz\" f=\"lada.kz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lads Holiday Guide.com\" f=\"ladsholidayguide.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://ladsholidayguide\\.com/\" to=\"https://www.ladsholidayguide.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Laiwang.com (partial)\" default_off=\"failed ruleset test\" f=\"laiwang.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?laiwang\\.com/(?!/*(?:favicon\\.ico|/event/(?:feed|share)\\.htm|qr\\.html))\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lambeth.gov.uk (false MCB)\" platform=\"mixedcontent\" f=\"lambeth.gov.uk-falsemixed.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lambeth.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"lambeth.gov.uk.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\.housingmanagement\\.\" name=\".\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://yourcareyourway\\.lambeth\\.gov\\.uk/+([^?]*)(?:\\?.*)?\" to=\"https://www.careplace.org.uk/$1\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"lan.ua\" f=\"lan.ua.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"lanbilling.ru\" f=\"lanbilling.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lancashire.gov.uk (MCB)\" platform=\"mixedcontent\" f=\"lancashire.gov.uk-mixedcontent.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lancashire.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"lancashire.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lancaster.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"lancaster.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"landaire.net\" f=\"landaire.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://landaire\\.net/\" to=\"https://www.landaire.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"lanet.ua (partial)\" f=\"lanet.ua.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"lansp.ru (partial)\" f=\"lansp.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"lanta-net.ru (partial)\" f=\"lanta-net.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"lantek.ru (partial)\" f=\"lantek.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Late Rooms.com (partial)\" f=\"laterooms.com.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lattice Challenge.org\" f=\"latticechallenge.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Laughing Squid.com (partial)\" f=\"laughingsquid.com.xml\"><securecookie host=\"^\\.\" name=\"^_(?:_qca|gat?)$\"/><securecookie host=\"^(?!links\\.)\\w\" name=\".\"/><rule from=\"^http://feeds\\.laughingsquid\\.com/\" to=\"https://feeds.feedburner.com/\"/><rule from=\"^http://links\\.laughingsquid\\.com/facebook.*\" to=\"https://www.facebook.com/laughingsquid/#_=_\"/><exclusion pattern=\"^http://links\\.laughingsquid\\.com/(?!facebook(?:$|\\?))\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lawfare Blog.com\" f=\"lawfareblog.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LBO-News.com\" f=\"lbo-news.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LBP.me\" f=\"lbp.me.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://lbp\\.me:80/\" to=\"https://lbp.me/\"/><rule from=\"^http://i[0-3]\\.lbp\\.me/\" to=\"https://d1yraiabw9jigr.cloudfront.net/\"/><rule from=\"^http://i[4-7]\\.lbp\\.me/\" to=\"https://del66yf95fbfs.cloudfront.net/\"/><rule from=\"^http://i[89ab]\\.lbp\\.me/\" to=\"https://d22ru9akokrpj3.cloudfront.net/\"/><rule from=\"^http://i[c-f]\\.lbp\\.me/\" to=\"https://d141hmy29x8qy7.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"lcdcomps.com\" f=\"lcdcomps.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://lcdcomps\\.com/\" to=\"https://www.lcdcomps.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"lduhtrp.net\" f=\"lduhtrp.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"lead-analytics-1000.com\" f=\"lead-analytics-1000.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.lead-analytics-1000\\.com/\" to=\"https://www.leadforensics.com/\"/></ruleset>", "<ruleset name=\"leader-id.ru\" f=\"leader-id.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Leadin.com (partial)\" f=\"leadin.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LearnerTrack.net\" f=\"learnertrack.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LeBonCoin\" f=\"leboncoin.fr.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"lebsanft.org\" f=\"lebsanft.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LEDE-project.org (partial)\" default_off=\"failed ruleset test\" f=\"lede-project.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Leeds.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"leeds.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Leerstandsmelder.de\" f=\"leerstandsmelder.de.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"legapallacanestro.com\" f=\"legapallacanestro.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Leggiero.uk\" f=\"leggiero.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Legislation.gov.uk (partial)\" f=\"legislation.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LEGOLAND Holidays\" platform=\"mixedcontent\" f=\"legolandholidays.co.uk.xml\"><securecookie host=\"www\\.legolandholidays\\.co\\.uk$\" name=\".+\"/><rule from=\"^http://legolandholidays\\.co\\.uk/\" to=\"https://www.legolandholidays.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bb.lekumo.jp\" f=\"lekumo.jp.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lend.me\" default_off=\"failed ruleset test\" f=\"lend.me.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"lenizdat.ru\" f=\"lenizdat.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LENR-Forum.com\" f=\"lenr-forum.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lenta.ru (partial)\" default_off=\"failed ruleset test\" f=\"lenta.ru.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"leonidvolkov.ru\" f=\"leonidvolkov.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LEquipe.fr\" f=\"lequipe.fr.xml\"><rule from=\"^http://adrenaline\\.lequipe\\.fr/\" to=\"https://www.lequipe.fr/Adrenaline/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lesbian Porn Fan.com\" f=\"lesbianpornfan.com.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lesershop 24\" f=\"lesershop24.de.xml\"><exclusion pattern=\"^http://www\\.lesershop24\\.de/$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"lesestoff.ch\" f=\"lesestoff.ch.xml\"><rule from=\"^http://lesestoff\\.ch/\" to=\"https://www.lesestoff.ch/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"less.works\" f=\"less.works.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LessButtons.com\" f=\"lessbuttons.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"letvcdn\" f=\"letvcdn.xml\"><exclusion pattern=\"^http://static\\.letvcdn\\.com/$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"letvimg\" f=\"letvimg.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lewes.gov.uk (partial)\" default_off=\"missing certificate chain\" f=\"lewes.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lewisham.gov.uk (resources)\" platform=\"mixedcontent\" f=\"lewisham.gov.uk-resources.xml\"><exclusion pattern=\"^http://councilmeetings\\.lewisham\\.gov\\.uk/(?!(?!.+\\.js(?:$|\\?))/*(?:jquery-ui|mgimages|[Ss]ite[Ss]pecific)/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lewisham.gov.uk (partial)\" f=\"lewisham.gov.uk.xml\"><exclusion pattern=\"^http://councilmeetings\\.lewisham\\.gov\\.uk/(?!/*(?:documents/|ieLogon\\.aspx|ieRegisterUser\\.aspx|mgRegisterKeywordInterest\\.aspx))\"/><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^(?!councilmeetings\\.)\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"lezhin.com\" default_off=\"failed ruleset test\" f=\"lezhin.com.xml\"><rule from=\"^http://lezhin\\.com/\" to=\"https://www.lezhin.com/\"/><rule from=\"^http://(\\d+)www\\.lezhin\\.com/\" to=\"https://$1www.lezhin.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LFG.com (partial)\" f=\"lfg.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://lfg\\.com/\" to=\"https://www.lfg.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LFScript.org\" f=\"lfscript.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"lgbtnet.org\" f=\"lgbtnet.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Libcom\" f=\"libcom.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Liberis.co.uk\" f=\"liberis.co.uk.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Library eBooks.co.uk (partial)\" f=\"libraryebooks.co.uk.xml\"><exclusion pattern=\"^http://(?:bolton|bwdlibraries|miltonkeynes)\\.libraryebooks\\.co\\.uk/(?!/*site/EB/(?:.+\\.(?:css|gif|jpg|png)(?:$|\\?)|ebooks/co(?:ntactu|okie)s\\.asp))\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Libraryreserve.com\" f=\"libraryreserve.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?libraryreserve\\.com/+\" to=\"https://www.overdrive.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"libreCMC.org\" f=\"librecmc.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"libregamewiki.org\" f=\"libregamewiki.org.xml\"><exclusion pattern=\"^http://(?:[^./]+\\.){2,}libregamewiki\\.org/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.libregamewiki\\.org/\" to=\"https://faiumoni.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lichfield DC.gov.uk (partial)\" f=\"lichfielddc.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lidl.co.uk (partial)\" default_off=\"failed ruleset test\" f=\"lidl.co.uk.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lidl Community.co.uk\" f=\"lidlcommunity.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://lidlcommunity\\.co\\.uk/\" to=\"https://www.lidlcommunity.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Life.ru\" f=\"life.ru.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"lifehacker.ru\" f=\"lifehacker.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Light Reading.com (partial)\" f=\"lightreading.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://img\\.lightreading\\.com/\" to=\"https://d2x7anl33w5mmo.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LightWidget.com\" default_off=\"failed ruleset test\" f=\"lightwidget.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"liginc.co.jp\" platform=\"mixedcontent\" f=\"liginc.co.jp.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Likey Loans.com\" f=\"likelyloans.com.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lime-Technology.com\" f=\"lime-technology.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://dnld\\.lime-technology\\.com/\" to=\"https://s3.amazonaws.com/dnld.lime-technology.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"limetorrents.com\" f=\"limetorrents.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Linear.Enterprises\" default_off=\"failed ruleset test\" f=\"linear.enterprises.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"link-page.info\" default_off=\"missing certificate chain\" f=\"link-page.info.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"link-region.ru (partial)\" f=\"link-region.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"linkline.ru (partial)\" f=\"linkline.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LinkSnappy.com\" f=\"linksnappy.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LinuxConfig.org\" f=\"linuxconfig.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Linux Graphic.org\" platform=\"mixedcontent\" f=\"linuxgraphic.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"linuxliteos.com\" f=\"linuxliteos.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Linux Mint.com (false MCB)\" platform=\"mixedcontent\" f=\"linuxmint.com-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Linux Mint.com (partial)\" f=\"linuxmint.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Linux Penguins.xyz\" f=\"linuxpenguins.xyz.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Literary Review.co.uk\" f=\"literaryreview.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"livecomm.ru\" default_off=\"failed ruleset test\" f=\"livecomm.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Living Wage.org.uk\" f=\"livingwage.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ljsear.ch\" f=\"ljsear.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"lkk-zkh.ru\" f=\"lkk-zkh.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lloyds Banking Group.com (partial)\" f=\"lloydsbankinggroup.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"lmgtfy.com\" f=\"lmgtfy.com.xml\"><exclusion pattern=\"^http://(api|foo\\.bar|blog|shop)\\.lmgtfy\\.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LMMS.io\" f=\"lmms.io.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"local.com.ua\" f=\"local.com.ua.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Locality.com\" f=\"locality.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Localizejs.com\" f=\"localizejs.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Local Motors.com\" f=\"localmotors.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Localphone.com (partial) and related sites\" f=\"localphone.com.xml\"><securecookie host=\"^(www\\.)?freecalls(canada|to(singapore|usa))\\.co\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LocationSmart.com\" f=\"locationsmart.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"lockscalecompare.com (partial)\" default_off=\"failed ruleset test\" f=\"lockscalecompare.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"lofter (partial)\" f=\"lofter.xml\"><exclusion pattern=\"^http://www\\.lofter\\.com/(?!.+\\.(gif|jpg|jpgx|png))\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"logcg.com\" f=\"logcg.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"logincasino.com\" f=\"logincasino.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"lomolenobl.ru\" f=\"lomolenobl.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"London-Fire.gov.uk (partial)\" f=\"london-fire.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"London Trust Media.com\" f=\"londontrustmedia.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"lostfilm.info\" f=\"lostfilm.info.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"lostfilm.tv\" f=\"lostfilm.tv.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"lotro.com (partial)\" default_off=\"failed ruleset test\" f=\"lotro.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"lovebizhi.com\" f=\"lovebizhi.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"lpgenerator.ru\" f=\"lpgenerator.ru.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LRens.ch\" f=\"lrens.ch.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LSC.gov.uk\" f=\"lsc.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LSCPT.ch\" f=\"lscpt.ch.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"lsm.lv (partial)\" f=\"lsm.lv.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"lua.org\" f=\"lua.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lubaki Agenda.net\" f=\"lubakiagenda.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Luca-Steeb.com\" default_off=\"failed ruleset test\" f=\"luca-steeb.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid$|_ga|cf_clearance$)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LuckyReferrals.com\" default_off=\"failed ruleset test\" f=\"luckyreferrals.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lukasa.co.uk\" f=\"lukasa.co.uk.xml\"><exclusion pattern=\"^http://(?:[^./]+\\.){2}lukasa\\.co\\.uk/\"/><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"luna1.co\" f=\"luna1.co.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"lunik.xyz (partial)\" f=\"lunik.xyz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"luosimao.com\" f=\"luosimao.com.xml\"><exclusion pattern=\"^http://my\\.luosimao\\.com/$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lush Stories.com (partial)\" f=\"lushstories.com.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Lusternia\" f=\"lusternia.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"lutte-ouvriere.org\" f=\"lutte-ouvriere.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Luukku.com\" f=\"luukku.com.xml\"><securecookie host=\"^\\.\" name=\"(?:-UAT|Stat)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LVFTV.com\" f=\"lvftv.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"lyngsat.com\" f=\"lyngsat.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"LZone.de\" f=\"lzone.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"m2c.ru\" f=\"m2c.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"m3connect\" f=\"m3connect.xml\"><rule from=\"^http://partner\\.m3connect\\.de/\" to=\"https://partner.m3connect.de/\"/><rule from=\"^http://portal\\.m3-connect\\.de/\" to=\"https://portal.m3-connect.de/\"/></ruleset>", "<ruleset name=\"maam.ru\" f=\"maam.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MadAds Media.com (partial)\" default_off=\"failed ruleset test\" f=\"madadsmedia.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Madbarz.com\" f=\"madbarz.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Madgex.com\" default_off=\"failed ruleset test\" f=\"madgex.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://support\\.madgex\\.com/\" to=\"https://madgex.zendesk.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MadinaTube.com\" f=\"madinatube.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mag Jeunes LGBT\" f=\"mag-jeunes.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"magnum-ci.com\" default_off=\"failed ruleset test\" f=\"magnum-ci.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yaziba webmail\" f=\"mail.yaziba.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MailChimp.com (resources)\" platform=\"mixedcontent\" f=\"mailchimp.com-resources.xml\"><exclusion pattern=\"^http://kb\\.mailchimp\\.com/(?!/*(?:binarie|cs|image)s/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"maist.jp\" f=\"maist.jp.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"make 8 bit art.com\" f=\"make8bitart.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Make a Gif\" f=\"makeagif.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"maksukaista.fi\" f=\"maksukaista.fi.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Maldon.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"maldon.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.www\\.\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"malls.ru\" f=\"malls.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MAMP.info\" f=\"mamp.info.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"manager.mijndomeinreseller.nl\" f=\"manager.mijndomeinreseller.nl.xml\"><rule from=\"^http:\" to=\"https:\"/><securecookie host=\"^manager\\.mijndomeinreseller\\.nl$\" name=\".*\"/></ruleset>", "<ruleset name=\"Manchester Digital.com\" f=\"manchesterdigital.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mandiant (partial)\" f=\"mandiant.com.xml\"><rule from=\"^http://(?:www\\.)?mandiant\\.com/\" to=\"https://www.mandiant.com/\"/></ruleset>", "<ruleset name=\"mangagamer.com\" f=\"mangagamer.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"manning.com (partial)\" f=\"manning.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mansfield.gov.uk\" platform=\"mixedcontent\" f=\"mansfield.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MantisBT.org\" f=\"mantisbt.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Manything.com\" f=\"manything.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"maplecroft.com\" f=\"maplecroft.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mark Billingham.com\" f=\"markbillingham.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Marks Daily Apple.com\" default_off=\"refused\" f=\"marksdailyapple.xml\"><rule from=\"^http://(?:www\\.)?marksdailyapple\\.com/\" to=\"https://www.marksdailyapple.com/\"/></ruleset>", "<ruleset name=\"maryno.net\" f=\"maryno.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"masilla.org\" f=\"masilla.org.xml\"><rule from=\"^http://masilla\\.org/\" to=\"https://www.masilla.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MasterCard.us\" f=\"mastercard.us.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://mastercard\\.us/\" to=\"https://www.mastercard.us/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"matbea.com\" f=\"matbea.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"matchtv.ru\" f=\"matchtv.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MathJax (partial)\" f=\"mathjax.xml\"><securecookie host=\"^\\.?mathjax\\.org$\" name=\"^__cfduid$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"matraxis.net\" f=\"matraxis.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Matricien.org\" f=\"matricien.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mattermap.nl\" f=\"mattermap.nl.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mattermark.com\" default_off=\"failed ruleset test\" f=\"mattermark.com.xml\"><securecookie host=\"^\\.\" name=\"^mkt_referer$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mBitCasino.com\" f=\"mbitcasino.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MBNA.co.uk\" f=\"mbna.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MCC.gov\" default_off=\"failed ruleset test\" f=\"mcc.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mcdonalds.ru\" f=\"mcdonalds.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mclaut.com\" f=\"mclaut.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MCV UK.com\" f=\"mcvuk.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mebsd.com\" f=\"mebsd.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"media5.com\" f=\"media5.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mediaconnect.no\" f=\"mediaconnect.no.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mediaklik.com\" f=\"mediaklik.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"medialaben.no\" f=\"medialaben.no.xml\"><securecookie host=\"^\\.\" name=\"^__cfduid$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mediamarkt.de\" default_off=\"failed ruleset test\" f=\"mediamarkt.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mediametrics.ru\" f=\"mediametrics.ru.xml\"><rule from=\"^http://(pro|old|www)\\.mediametrics\\.ru/\" to=\"https://mediametrics.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MediaRoots.org\" f=\"mediaroots.org.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Medicaid.gov (partial)\" default_off=\"failed ruleset test\" f=\"medicaid.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Medicare.gov (partial)\" default_off=\"failed ruleset test\" f=\"medicare.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^_gat?$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"medikforum.ru\" platform=\"mixedcontent\" f=\"medikforum.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MeetMeCDNa.com\" f=\"meetmecdna.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MegaAdventure.com.au (partial)\" default_off=\"failed ruleset test\" f=\"megaadventure.com.au.xml\"><securecookie host=\"tickets\\.megaadventure\\.com\\.au$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Megamozg.ru (partial)\" f=\"megamozg.ru.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Megaphone.fm\" f=\"megaphone.fm.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.megaphone\\.fm/\" to=\"https://megaphone.fm/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"megatel.ru\" f=\"megatel.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"member-HSBC-group.com\" f=\"member-hsbc-group.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"membersaccounts.com (partial)\" f=\"membersaccounts.com.xml\"><exclusion pattern=\"^http://membersaccounts\\.com/(?!/*(?:$|\\?))\"/><securecookie host=\"^[^.m]\" name=\".\"/><securecookie host=\"^\\.secure\\.\" name=\".\"/><rule from=\"^http://membersaccounts\\.com/.*\" to=\"https://secure.membersaccounts.com/selfservice/ActivateMyCard.aspx\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mental Health.org.uk\" f=\"mentalhealth.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MentalHelp.net (partial)\" f=\"mentalhelp.net.xml\"><securecookie host=\".\" name=\"^optimizely\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Menulog.com.au\" default_off=\"failed ruleset test\" f=\"menulog.com.au.xml\"><securecookie host=\"^\\.\" name=\"^(?:__qca$|incap_|visid_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mercola\" f=\"mercola.xml\"><rule from=\"^http://(?:www\\.)?mercola\\.com/\" to=\"https://www.mercola.com/\"/><rule from=\"^http://products\\.mercola\\.com/\" to=\"https://products.mercola.com/\"/></ruleset>", "<ruleset name=\"Mercy Corps.org (partial)\" f=\"mercycorps.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Merkle Inc.com (partial)\" f=\"merkleinc.com.xml\"><exclusion pattern=\"^http://www2\\.merkleinc\\.com/(?!/*(?:$|\\?|[els]/|emailPreference/|unsubscribe/|webmail/))\"/><securecookie host=\"^\\.\" name=\"^_ga\"/><securecookie host=\"^(?!www2\\.)\\w\" name=\".\"/><rule from=\"^http://www2\\.merkleinc\\.com/\" to=\"https://pi.pardot.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MET.no\" f=\"met.no.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Met.Police.uk (partial)\" default_off=\"failed ruleset test\" f=\"met.police.uk.xml\"><securecookie host=\"^\\.\" name=\"_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MetaFAQ.com\" f=\"metafaq.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"metro-set.ru\" f=\"metro-set.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MFCimg.com\" f=\"mfcimg.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mgmmirage.com\" default_off=\"failed ruleset test\" f=\"mgmmirage.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MH Education.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"mheducation.com-falsemixed.xml\"><exclusion pattern=\"^http://info\\.mheducation\\.com/(?!/*(?:cs|image|r)s/)\"/><securecookie host=\"^(?!info\\.)\\w\" name=\".\"/><rule from=\"^http://info\\.mheducation\\.com/+\" to=\"https://na-sj03.marketo.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MH Education.com (partial)\" default_off=\"failed ruleset test\" f=\"mheducation.com.xml\"><exclusion pattern=\"^http://info\\.mheducation\\.com/(?!/*(?:$|\\?|rs/.+\\.pdf(?:$|\\?)))\"/><securecookie host=\"^\\.\" name=\"^dtCookie$\"/><securecookie host=\"^(?!info\\.)\\w\" name=\".\"/><rule from=\"^http://mheducation\\.com/\" to=\"https://www.mheducation.com/\"/><rule from=\"^http://careers\\.mheducation\\.com/+\" to=\"https://mhecareers.silkroad.com/\"/><rule from=\"^http://info\\.mheducation\\.com/+(?:\\?.*)?$\" to=\"https://www.mheducation.com/notfound.html\"/><rule from=\"^http://info\\.mheducation\\.com/\" to=\"https://na-sj03.marketo.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mhfi.com\" f=\"mhfi.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MI Pro.co.uk (partial)\" f=\"mi-pro.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"middlemanapp.com\" f=\"middlemanapp.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Midkemia online\" default_off=\"failed ruleset test\" f=\"midkemiaonline.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"midnightbsd.org\" f=\"midnightbsd.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"miha.tw\" f=\"miha.tw.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"miit.ua\" f=\"miit.ua.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mijn Usenet.nl\" f=\"mijnusenet.nl.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://mijnusenet\\.nl/\" to=\"https://www.mijnusenet.nl/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Military Friendly.com\" f=\"militaryfriendly.com.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"militarymaps.info\" f=\"militarymaps.info.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mindleaking.org\" f=\"mindleaking.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MineTrack\" f=\"minetrack.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MiniFree.org\" f=\"minifree.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Minotar.net\" f=\"minotar.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MIPT.ru\" f=\"mipt.ru.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mir-politika.ru\" default_off=\"failed ruleset test\" f=\"mir-politika.ru.xml\"><rule from=\"^http://www\\.mir-politika\\.com/\" to=\"https://mir-politika.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"miracl.com (partial)\" f=\"miracl.com.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://miracl\\.com/\" to=\"https://www.miracl.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mirea.ru\" f=\"mirea.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mirtv33.ru\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"mirtv33.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"miuipolska.pl\" f=\"miuipolska.pl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mjdk.dk\" f=\"mjdk.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MK.co.kr\" platform=\"mixedcontent\" f=\"mk.co.kr.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mkt51.net\" f=\"mkt51.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://content\\.mkt51\\.net/\" to=\"https://d24q9byeq1ve1q.cloudfront.net/\"/><rule from=\"^http://contentz\\.mkt51\\.net/\" to=\"https://dlr5p9uhe3oaq.cloudfront.net/\"/><rule from=\"^http://www\\.mkt51\\.net/\" to=\"https://www.silverpop.com/\"/></ruleset>", "<ruleset name=\"MN ULtimate\" f=\"mnultimate.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"moakt.com\" f=\"moakt.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mobile.de\" default_off=\"failed ruleset test\" f=\"mobile.de.xml\"><exclusion pattern=\"^http://www\\.mobile\\.de/$\"/><exclusion pattern=\"^http://www\\.mobile\\.de/\\?lang=\\w+\"/><exclusion pattern=\"^http://www\\.mobile\\.de/pl/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mobileapptracking.com\" f=\"mobileapptracking.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mobile World Congress.com\" f=\"mobileworldcongress.com.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mobilism.me\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"mobilism.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Moderngov.co.uk (partial)\" default_off=\"failed ruleset test\" f=\"moderngov.co.uk.xml\"><exclusion pattern=\"^http://(?:rbwm|sheffielddemocracy)\\.moderngov\\.co\\.uk/(?!/*(?:[Ss]ite[Ss]pecific/|documents/|ie(?:[Ll]ogon|RegisterUser)\\.aspx|mgimages/|jquery-ui/|UserData/))\"/><exclusion pattern=\"^http://(?:hastings|rutlandcounty)\\.moderngov\\.co\\.uk/(?!/*(?:[Ss]ite[Ss]pecific/|documents/|ie[Ll]ogon\\.aspx|mgimages/|jquery-ui/))\"/><securecookie host=\"^(?!(?:hastings|rbwm|rutlandcounty|sheffielddemocracy)\\.)\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"modx.pro\" f=\"modx.pro.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mole Valley.gov.uk (partial)\" f=\"molevalley.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"molotro.ru\" f=\"molotro.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"monazilla.org\" f=\"monazilla.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"moncompteformation.gouv.fr\" f=\"moncompteformation.gouv.fr.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Le Monde Diplomatique\" f=\"monde-diplomatique.fr.xml\"><rule from=\"^http://abo\\.monde-diplomatique\\.fr/\" to=\"https://boutique.monde-diplomatique.fr/abonnements/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MoneroPool.com\" f=\"moneropool.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"moneycorp.com\" f=\"moneycorp.com.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MoneyGeek.com\" f=\"moneygeek.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Montana Linux.org\" f=\"montanalinux.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://montanalinux\\.org/\" to=\"https://www.montanalinux.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mont Pelerin.org\" f=\"montpelerin.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MoodleRooms.com (false MCB)\" platform=\"mixedcontent\" f=\"moodlerooms.com-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MoodleRooms.com (partial)\" f=\"moodlerooms.com.xml\"><exclusion pattern=\"^http://page\\.moodlerooms\\.com/(?!/*(?:[els]|emailPreference|unsubscribe|webmail)/)\"/><securecookie host=\"^(?!page\\.)\\w\" name=\".\"/><rule from=\"^http://page\\.moodlerooms\\.com/\" to=\"https://go.pardot.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Moodscope.com\" f=\"moodscope.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"moodys.com (partial)\" default_off=\"failed ruleset test\" f=\"moodys.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"morawa-buch.at\" f=\"morawa-buch.at.xml\"><rule from=\"^http://morawa-buch\\.at/\" to=\"https://www.morawa-buch.at/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"moslenta.ru\" default_off=\"failed ruleset test\" f=\"moslenta.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mosnet.ru (partial)\" f=\"mosnet.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mosoblgaz.ru\" f=\"mosoblgaz.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"motive.com (partial)\" default_off=\"failed ruleset test\" f=\"motive.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"motor.ru\" f=\"motor.ru.xml\"><rule from=\"^http://(www|old|super)\\.motor\\.ru/\" to=\"https://motor.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"motoslave.net\" f=\"motoslave.net.xml\"><rule from=\"^http://(ftp|mail)\\.motoslave\\.net/\" to=\"https://www.motoslave.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MouseJack.com\" default_off=\"failed ruleset test\" f=\"mousejack.com.xml\"><securecookie host=\"^\\.\" name=\"^__qca$\"/><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.www\\.\" name=\".\"/><rule from=\"^http://mousejack\\.com/\" to=\"https://www.mousejack.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"moz.com\" f=\"moz.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mozfr.org\" f=\"mozfr.org.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mozillaZine-fr.org (partial)\" f=\"mozillazine-fr.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.mozillazine-fr\\.org/\" to=\"https://mozillazine-fr.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mp3scene.info\" f=\"mp3scene.info.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MPF Employers.org.uk\" f=\"mpfemployers.org.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MPF Members.org.uk\" f=\"mpfmembers.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MPFund.uk\" f=\"mpfund.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MPP Global.com (partial)\" f=\"mppglobal.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Msgme.com\" default_off=\"failed ruleset test\" f=\"msgme.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"msra.cn (partial)\" f=\"msra.cn.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mstrok.ru\" f=\"mstrok.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Michigan State University (partial)\" f=\"msu.edu.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mtel.ru (partial)\" default_off=\"failed ruleset test\" f=\"mtel.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MTS.ru (partial)\" f=\"mts.ru.xml\"><exclusion pattern=\"^http://(?:www\\.)?shop\\.mts\\.ru/(?!/*(?:$|\\?|bitrix/(?:components|templates|tmp)/|design/css/|design/jscroll/.+\\.css|favicon\\.ico|images/|personal/basket/export/[^/]+\\.css|upload/))\"/><securecookie host=\"^[^.sw]\" name=\".\"/><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><rule from=\"^http://vm\\.mts\\.ru/\" to=\"https://vm.ssl.mts.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MTS Welding.co.uk (partial)\" default_off=\"failed ruleset test\" f=\"mtswelding.co.uk.xml\"><exclusion pattern=\"^http://(?:www\\.)?mtswelding\\.co\\.uk/+(?!wp-content/)\"/><rule from=\"^http://www\\.mtswelding\\.co\\.uk/\" to=\"https://mtswelding.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mtt.ru\" default_off=\"failed ruleset test\" f=\"mtt.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MTV.fi (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"mtv.fi.xml\"><securecookie host=\"^\\.\" name=\"^(?:_ga|evid_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mtvmedia.fi\" f=\"mtvmedia.fi.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mulle-kybernetiK.com (partial)\" f=\"mulle-kybernetik.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://mulle-kybernetik\\.com/\" to=\"https://www.mulle-kybernetik.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Mulliner.org\" f=\"mulliner.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"multistre.am\" f=\"multistre.am.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"multitran.ru\" f=\"multitran.ru.xml\"><rule from=\"^http://multitran\\.ru/\" to=\"https://www.multitran.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"muob.ru\" f=\"muob.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mupdf.com\" f=\"mupdf.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Muse.mu (mismatched)\" default_off=\"mismatched\" f=\"muse.mu-problematic.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mutts.com (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"mutts.com.xml\"><exclusion pattern=\"^http://(?:staging|www)\\.mutts\\.com/(?!/*(?:favicon\\.ico|misc/|news(?:$|[?/])|sites/))\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mvd.ru\" f=\"mvd.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"my-chrome.ru\" f=\"my-chrome.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"My-History.co.uk\" f=\"my-history.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"My-Zone.net\" f=\"my-zone.net.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"myGov\" f=\"myGov.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"My Affiliate Program.com (partial)\" f=\"myaffiliateprogram.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?myaffiliateprogram\\.com/(?!/*(?:1pxlclr\\.gif|u/))\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"myapp.com (partial)\" f=\"myapp.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MYbank.cn\" f=\"mybank.cn.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mycelium.com\" default_off=\"failed ruleset test\" f=\"mycelium.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mydigitallife.net\" f=\"mydigitallife.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"MyFreeCams.com (partial)\" f=\"myfreecams.com.xml\"><securecookie host=\"^\\.\" name=\"^company_id$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"myNYP.org\" f=\"mynyp.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"myregextester.com\" f=\"myregextester.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"myrusakov.ru\" f=\"myrusakov.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mysku.ru\" f=\"mysku.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"myslo.ru\" f=\"myslo.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"My Star.org.uk\" f=\"mystar.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"My Subway Card.com\" f=\"mysubwaycard.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Switzerland Tourism\" platform=\"mixedcontent\" f=\"myswitzerland.com.xml\"><rule from=\"^http://(?:www\\.)?myswitzerland\\.com/\" to=\"https://www.myswitzerland.com/\"/></ruleset>", "<ruleset name=\"mytalkdesk.com\" f=\"mytalkdesk.com.xml\"><securecookie host=\"^.*\\.mytalkdesk\\.com$\" name=\".+\"/><rule from=\"^http://mytalkdesk\\.com/\" to=\"https://www.mytalkdesk.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mytrinity.com.ua\" f=\"mytrinity.com.ua.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"myttk.ru (partial)\" f=\"myttk.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Myuni-form.com (partial)\" f=\"myuni-form.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"My World of Work.co.uk\" f=\"myworldofwork.co.uk.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://myworldofwork\\.co\\.uk/\" to=\"https://www.myworldofwork.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Myzuka.fm\" default_off=\"failed ruleset test\" f=\"myzuka.fm.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"n-tv.de (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"n-tv.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"n210adserv.com\" default_off=\"failed ruleset test\" f=\"n210adserv.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nachrichtendienstgesetz.ch\" default_off=\"failed ruleset test\" f=\"nachrichtendienstgesetz.ch.xml\"><exclusion pattern=\"^http://(?:[^./]+\\.){2,}nachrichtendienstgesetz\\.ch/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NamesCon.com\" f=\"namescon.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Napster.com (partial)\" f=\"napster.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:_gat?$|_gat_|optimizely)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Český národní panel\" f=\"narodnipanel.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nasawestprime.com\" platform=\"mixedcontent\" f=\"nasawestprime.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nashnet.ua\" f=\"nashnet.ua.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"National Interest.org (partial)\" platform=\"mixedcontent\" f=\"nationalinterest.org.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"National Parks.gov.uk (partial)\" f=\"nationalparks.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"natoonline.org\" f=\"natoonline.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Naukimg.com\" platform=\"mixedcontent\" f=\"naukimg.com.xml\"><exclusion pattern=\"\\.js(?:$|\\?)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Naukri.com (false MCB)\" platform=\"mixedcontent\" f=\"naukri.com-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nav.no (partial)\" f=\"nav.no.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ncar.cc\" f=\"ncar.cc.xml\"><exclusion pattern=\"^http://(bbs|beiyong)\\.ncar\\.cc/$\"/><exclusion pattern=\"^http://(bbs|beiyong)\\.ncar\\.cc/[\\w/-]+\\.(html|php)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nchr.io\" f=\"nchr.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NCIP Hub.org\" f=\"nciphub.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NCP-E.com (partial)\" f=\"ncp-e.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NCZOnline.net (partial)\" f=\"nczonline.net.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://nczonline\\.net/\" to=\"https://www.nczonline.net/\"/><rule from=\"^http://feeds\\.nczonline\\.net/blog\" to=\"https://feeds.feedburner.com/nczonline\"/><exclusion pattern=\"^http://feeds\\.nczonline\\.net/(?!blog/*(?:$|\\?))\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ndm9.net (partial)\" f=\"ndm9.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Neighbourhood Alert.co.uk (partial)\" f=\"neighbourhoodalert.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Neighbourhood Link.co.uk\" f=\"neighbourhoodlink.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nemui.org\" f=\"nemui.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"neotelecom.ru\" f=\"neotelecom.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Neovim.io\" f=\"neovim.io.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"neptuneos.com\" f=\"neptuneos.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nerdster\" f=\"nerdster.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"net-entreprises.fr\" f=\"net-entreprises.fr.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"net.cn (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"net.cn.xml\"><securecookie host=\"^w\" name=\".\"/><rule from=\"^http://help\\.www\\.net\\.cn/(?:KnowledgeD|knowledge_d)etail\\.html?\\?knowledgeId=(\\d+)(?:&categoryId=\\d+)?\" to=\"https://help.aliyun.com/knowledgeIdMapping.html?url=/help-net-cn/knowledge_detail.htm?knowledgeId=$1\"/><exclusion pattern=\"^http://help\\.www\\.net\\.cn/(?!(?:KnowledgeD|knowledge_d)etail\\.html?\\?knowledgeId=\\d+(?:&categoryId=\\d+)?$)\"/><rule from=\"^http://www\\.net\\.cn/+(?=$|\\?)\" to=\"https://wanwang.aliyun.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"netams.com (partial)\" f=\"netams.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nethserver.org\" f=\"nethserver.org.xml\"><rule from=\"^http://nethserver\\.org/\" to=\"https://www.nethserver.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"netis.ru\" f=\"netis.ru.xml\"><rule from=\"^http://netis\\.ru/\" to=\"https://www.netis.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"netorn.ru (partial)\" f=\"netorn.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"netsalesnetwork.com\" f=\"netsalesnetwork.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"netts.ru\" f=\"netts.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Netwheels.fi\" f=\"netwheels.fi.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"netzclub\" platform=\"mixedcontent\" f=\"netzclub.xml\"><rule from=\"^http://(?:www\\.)?netzclub\\.net/\" to=\"https://www.netzclub.net/\"/><rule from=\"^http://profil\\.netzclub\\.net/\" to=\"https://profil.netzclub.net/\"/></ruleset>", "<ruleset name=\"NeuroTalk.org\" f=\"neurotalk.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"neuvoo.com\" f=\"neuvoo.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Newcastle-Staffs.gov.uk (partial)\" f=\"newcastle-staffs.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"New Family Social.org.uk\" platform=\"mixedcontent\" f=\"newfamilysocial.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"newferre.com\" f=\"newferre.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"New Humanist.org.uk\" f=\"newhumanist.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.newhumanist\\.org\\.uk/\" to=\"https://newhumanist.org.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"newkaliningrad.ru\" default_off=\"failed ruleset test\" f=\"newkaliningrad.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"news.am\" f=\"news.am.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Newsela.com (partial)\" f=\"newsela.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://static\\.newsela\\.com/\" to=\"https://newsela-test-files-f331e.s3.amazonaws.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"newsko.ru\" f=\"newsko.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"newsland.com\" f=\"newsland.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"News Ledge.com\" f=\"newsledge.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"News That Moves.org\" f=\"newsthatmoves.org.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"newstube.ru\" f=\"newstube.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"newtalk.tw\" f=\"newtalk.tw.xml\"><rule from=\"^http://\\S+\\.newtalk\\.tw/\" to=\"https://newtalk.tw/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"newtonew.com\" f=\"newtonew.com.xml\"><rule from=\"^http://www\\.newtonew\\.com/\" to=\"https://newtonew.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nginx.com\" f=\"nginx.com.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ngs.ru\" default_off=\"failed ruleset test\" f=\"ngs.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nibusinessinfo.co.uk (partial)\" default_off=\"failed ruleset test\" f=\"nibusinessinfo.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://events\\.nibusinessinfo\\.co\\.uk/\" to=\"https://www.events.nibusinessinfo.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Niche.com.au\" f=\"niche.com.au.xml\"><securecookie host=\"^\\.\" name=\"^optimizely\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nickelled.com\" f=\"nickelled.com.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://nickelled\\.com/\" to=\"https://www.nickelled.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nidirect.gov.uk\" f=\"nidirect.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://nidirect\\.gov\\.uk/\" to=\"https://www.nidirect.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nieman.de\" default_off=\"failed ruleset test\" f=\"nieman.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NitroFlare.com (resources)\" platform=\"mixedcontent\" f=\"nitroshare.com-resources.xml\"><exclusion pattern=\"^http://(?:www\\.)?nitroflare\\.com/(?!/*(?:css/|favicon\\.ico|img/|plugins/))\"/><exclusion pattern=\"^http:/.+\\.(?:js|swf)(?:$|\\?)\"/><securecookie host=\"^\\.\" name=\"^_(?:_cfduid$|gat?$|gat_)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NitroFlare.com (partial)\" f=\"nitroshare.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?nitroflare\\.com/(?!/*(?:login|payment|register|view)(?:$|[?/]))\"/><securecookie host=\"^\\.\" name=\"^_(?:_cfduid$|gat?$|gat_)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nixon Library.gov\" default_off=\"failed ruleset test\" f=\"nixonlibrary.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nkj.ru\" f=\"nkj.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nllapps\" f=\"nllapps.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nlx.org (false MCB)\" platform=\"mixedcontent\" f=\"nlx.org-falsemixed.xml\"><rule from=\"^http://(?:www\\.)?nlx\\.org/+(?:\\?.*)?$\" to=\"https://us.jobs/\"/><rule from=\"^http://(?:www\\.)?nlx\\.org/+\" to=\"https://us.jobs/?404;https://nlx.org:443/\"/></ruleset>", "<ruleset name=\"nlx.org (partial)\" f=\"nlx.org.xml\"><rule from=\"^http://(?:css|png)\\.nlx\\.org/\" to=\"https://d2e48ltfsb5exy.cloudfront.net/\"/><rule from=\"^http://de\\.nlx\\.org/\" to=\"https://s3.amazonaws.com/de.nlx.org/\"/><rule from=\"^http://seo\\.nlx\\.org/\" to=\"https://dn9tckvz2rpxv.cloudfront.net/\"/></ruleset>", "<ruleset name=\"nobelprize.org\" f=\"nobelprize.org.xml\"><rule from=\"^http://nobelprize\\.org/\" to=\"https://www.nobelprize.org/\"/><rule from=\"^http://(images|static)\\.nobelprize\\.org/\" to=\"https://www.nobelprize.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"noblogs.org\" f=\"noblogs.org.xml\"><exclusion pattern=\"^http://stats\\.noblogs\\.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nodeny-plus.com.ua (partial)\" default_off=\"failed ruleset test\" f=\"nodeny-plus.com.ua.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NoDistribute\" f=\"nodistribute.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nominet.uk\" f=\"nominet.uk.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid$|_ga|cf_clearance$)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nordjyske.dk\" platform=\"mixedcontent\" f=\"nordjyske.dk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nordportal.ru\" f=\"nordportal.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Norfolk.gov.uk (partial)\" f=\"norfolk.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://digitallibrary\\.norfolk\\.gov\\.uk/.*\" to=\"https://norfolk.overdrive.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Norsk-Tipping.no\" f=\"norsk-tipping.no.xml\"><exclusion pattern=\"^http://(?:[^./]+\\.){2,}norsk-tipping\\.no/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Northamptonshire.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"northamptonshire.gov.uk.xml\"><exclusion pattern=\"^http://(?:www\\.)?northamptonshire\\.gov\\.uk/(?!/*(?:.*/)?(?:_layouts|FooterImages|PublishingImages|[Ss]tyle%20[Ll]ibrary)/)\"/><securecookie host=\"^(?!www\\.n)\\w\" name=\".\"/><rule from=\"^http://(www\\.)?librarycatalogue\\.northamptonshire\\.gov\\.uk/+(?=$|\\?)\" to=\"https://$1librarycatalogue.northamptonshire.gov.uk/web/arena\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"North East Jobs.org.uk\" f=\"northeastjobs.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"North Lincs.gov.uk (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"northlincs.gov.uk-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"North Lincs.gov.uk (partial)\" f=\"northlincs.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Northumberland.gov.uk (partial)\" f=\"northumberland.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://childrencentresnorth\\.northumberland\\.gov\\.uk/\" to=\"https://3860.eschools.co.uk/\"/><rule from=\"^http://ngfl\\.northumberland\\.gov\\.uk/\" to=\"https://457-northumberland.eschools.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"North Yorks.gov.uk (partial)\" f=\"northyorks.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nosdeputes.fr\" f=\"nosdeputes.fr.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nossenateurs.fr\" f=\"nossenateurs.fr.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Not Always\" f=\"notalways.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NoteHub.org\" f=\"notehub.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nottinghamshire Alert.co.uk\" f=\"nottinghamshirealert.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Notts Business Watch.co.uk\" f=\"nottsbusinesswatch.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NousRandom.net\" default_off=\"failed ruleset test\" f=\"nousrandom.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"novayagazeta.ru\" default_off=\"failed ruleset test\" f=\"novayagazeta.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"novostivoronezha.ru\" f=\"novostivoronezha.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nowere.net\" f=\"nowere.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nowwhere.com.au (false MCB)\" platform=\"mixedcontent\" f=\"nowwhere.com.au-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nowwhere.com.au (partial)\" f=\"nowwhere.com.au.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"noxa.de\" default_off=\"failed ruleset test\" f=\"noxa.de.xml\"><securecookie host=\"^(?:admin\\.|webmail\\.|www\\.)?noxa\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?noxa\\.de/\" to=\"https://www.noxa.de/\"/><rule from=\"^http://(admin|webmail)\\.noxa\\.de/\" to=\"https://$1.noxa.de/\"/><rule from=\"^http://noxamail\\.de/$\" to=\"https://www.noxa.de/?noxamail\"/></ruleset>", "<ruleset name=\"New People's Party\" f=\"npp.org.hk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NRA.org (resources)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"nra.org-resources.xml\"><exclusion pattern=\"^http://(?:careers|clubs|competitions|hservices|le|mqp|nrasports|recruiting|training|women|youth)\\.nra\\.org/(?!/*(?:cs|document|image)s/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NRA.org (partial)\" f=\"nra.org.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NRA Blog.com\" f=\"nrablog.com.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NRA Defense Fund.org\" f=\"nradefensefund.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NRA Family.org\" default_off=\"failed ruleset test\" f=\"nrafamily.org.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NRA HQ.org\" default_off=\"failed ruleset test\" f=\"nrahq.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NRA ILA.org\" f=\"nraila.org.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NRA Member Services.org\" f=\"nramemberservices.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NRA News.com\" f=\"nranews.com.xml\"><exclusion pattern=\"^http://(?:[^./]+\\.){2,}nranews\\.com/\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NRA PVF.org\" f=\"nrapvf.org.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NRA Ring of Freedom.com\" f=\"nraringoffreedom.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NRA RoF Co Chairs\" f=\"nrarofcochairs.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NRA Store.com\" f=\"nrastore.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NRostatic.com\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"nrostatic.com.xml\"><securecookie host=\"^\\.\" name=\"^__cfduid$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NSIS.ro\" f=\"nsis.ro.xml\"><securecookie host=\"^nsis\\.ro$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nslovo.info\" platform=\"mixedcontent\" f=\"nslovo.info.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nso.ru\" default_off=\"failed ruleset test\" f=\"nso.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NSPCC.org.uk\" f=\"nspcc.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NS Publieksprijs.nl\" default_off=\"failed ruleset test\" f=\"nspublieksprijs.nl.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ntkstatic.org\" f=\"ntkstatic.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NTLite.com\" f=\"ntlite.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ntv.ru (partial)\" f=\"ntv.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NuevoCloud.com\" f=\"nuevocloud.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nulled.cc\" f=\"nulled.cc.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nullschool.net\" f=\"nullschool.net.xml\"><securecookie host=\"^\\.\" name=\"^__cfduid\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"numenta.com\" f=\"numenta.com.xml\"><rule from=\"^http://(www\\.)?numenta\\.com/\" to=\"https://numenta.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Nuneaton and Bedworth.gov.uk\" f=\"nuneatonandbedworth.gov.uk.xml\"><securecookie host=\"^\\.www\\.\" name=\".\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nuomi.com (partial)\" platform=\"mixedcontent\" f=\"nuomi.com.xml\"><exclusion pattern=\"^http://www\\.nuomi\\.com/(?!/*static/)\"/><securecookie host=\"^d\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NUS.org.uk (false MCB)\" platform=\"mixedcontent\" f=\"nus.org.uk-falsemixed.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NUS.org.uk (partial)\" f=\"nus.org.uk.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NUS extra.co.uk (partial)\" f=\"nusextra.co.uk.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nutyx.org\" f=\"nutyx.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nux.ro\" f=\"nux.ro.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nvrnet.ru\" f=\"nvrnet.ru.xml\"><rule from=\"^http://www\\.nvrnet\\.ru/\" to=\"https://nvrnet.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nyantec\" f=\"nyantec.xml\"><rule from=\"^http://([^/:@]+\\.)?nyantec\\.com/\" to=\"https://$1nyantec.com/\"/><securecookie host=\"^(?:.+\\.)?nyantec\\.com$\" name=\".*\"/></ruleset>", "<ruleset name=\"NYC Mesh.net\" f=\"nycmesh.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.nycmesh\\.net/\" to=\"https://nycmesh.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NYPF.org.uk\" default_off=\"failed ruleset test\" f=\"nypf.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NYPost.com (partial)\" f=\"nypost.com.xml\"><securecookie host=\".\" name=\"^optimizely\"/><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nzbs.org\" f=\"nzbs.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"nzpug.org\" default_off=\"failed ruleset test\" f=\"nzpug.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"NZZ\" f=\"nzz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"o0bc.com\" f=\"o0bc.com.xml\"><rule from=\"^http://c0\\.o0bc\\.com/\" to=\"https://c.o0bc.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"o0bg.com\" f=\"o0bg.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"o3.ua\" f=\"o3.ua.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"oFono.org\" f=\"oFono.xml\"><rule from=\"^http://(?:www\\.)?ofono\\.org/$\" to=\"https://01.org/ofono\"/><rule from=\"^http://(?:www\\.)?ofono\\.org/\" to=\"https://01.org/ofono/\"/></ruleset>", "<ruleset name=\"Oaklands.ac.uk (partial)\" default_off=\"failed ruleset test\" f=\"oaklands.ac.uk.xml\"><exclusion pattern=\"^http://proportal\\.oaklands\\.ac\\.uk/(?!/*(?:$|\\?))\"/><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^(?!proportal\\.)\\w\" name=\".\"/><rule from=\"^http://oaklands\\.ac\\.uk/\" to=\"https://www.oaklands.ac.uk/\"/><rule from=\"^http://autodiscover(?:\\.student)?\\.oaklands\\.ac\\.uk/.*\" to=\"https://cas.oaklands.ac.uk/owa/auth/logon.aspx?url=https%3a%2f%2fcas.oaklands.ac.uk%2fowa&reason=0\"/><rule from=\"^http://proportal\\.oaklands\\.ac\\.uk/.*\" to=\"https://portal.oaklands.ac.uk/dana/home/launch.cgi?url=http%3A%2F%2Fproportal.oaklands.ac.uk\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OBI\" f=\"obi.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"obit.ru\" f=\"obit.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ObiTalk.com\" f=\"obitalk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Objective.co.uk (partial)\" default_off=\"failed ruleset test\" f=\"objective.co.uk.xml\"><securecookie host=\"^\\.\" name=\"^(?:_gat?$|_gat_|ANONID|VISID)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Oboom.com\" f=\"oboom.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"oclasrv.com\" f=\"oclasrv.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Oddschecker.com\" f=\"oddschecker.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"odessa.tv\" default_off=\"failed ruleset test\" f=\"odessa.tv.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ÖBB\" f=\"oebb.at.xml\"><rule from=\"^http://oebb\\.at/\" to=\"https://www.oebb.at/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ofsted.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"ofsted.gov.uk.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.(?:contact|employerview|learnerview|mobile\\.learnerview|parentview|reports)\\.\" name=\".\"/><rule from=\"^http://(?:www\\.)?ofsted\\.gov\\.uk/.*\" to=\"https://www.gov.uk/government/organisations/ofsted\"/><exclusion pattern=\"^http://(?:www\\.)?ofsted\\.gov\\.uk/(?!/*(?:$|\\?))\"/><rule from=\"^http://dataview\\.ofsted\\.gov\\.uk/(?=$|\\?)\" to=\"https://public.tableau.com/views/Dataview/Viewregionalperformanceovertime\"/><rule from=\"^http://dataview\\.ofsted\\.gov\\.uk/\" to=\"https://public.tableau.com/views/Dataview/Viewregionalperformanceovertime/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ogilvy.co.uk (partial)\" f=\"ogilvy.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.ogilvy\\.co\\.uk/\" to=\"https://ogilvy.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ogilvy.com\" f=\"ogilvy.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Oikotie.fi (partial)\" f=\"oikotie.fi.xml\"><securecookie host=\"^\\.\" name=\"^_ga\"/><securecookie host=\"^(?!\\.oikotie\\.fi$).\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"okchanger.ru\" f=\"okchanger.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OKFN.de\" f=\"okfn.de.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OKFn.org (false MCB)\" platform=\"mixedcontent\" f=\"okfn.org-falsemixed.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OKLigaTV.com\" f=\"okligatv.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ola Bini.se\" f=\"olabini.se.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"oldi.ru\" f=\"oldi.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"olympic.org\" f=\"olympic.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OMIM.org (partial)\" f=\"omim.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.omim\\.org/\" to=\"https://omim.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Omise.co\" f=\"omise.co.xml\"><exclusion pattern=\"^http://(?:(?:[^./]+\\.)(?!(?:dashboard|www)\\.omise\\.co/)(?:[^./]+\\.)+|(?:[^./]+\\.){2,}(?:dashboard|www)\\.)omise\\.co/\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"omkc.ru (partial)\" f=\"omkc.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Omni.Media\" f=\"omni.media.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OmniaTV.com\" f=\"omniatv.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"omniweb.ru (partial)\" default_off=\"failed ruleset test\" f=\"omniweb.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"on1.com\" f=\"on1.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"onclasrv.com\" f=\"onclasrv.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OnClkds.com\" f=\"onclkds.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OnDeck.com\" f=\"ondeck.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OneClickdigital.eu (partial)\" f=\"oneclickdigital.eu.xml\"><exclusion pattern=\"^http://(?:[^./]+\\.[^./]+|www)\\.oneclickdigital\\.eu/\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OneClickReseller.com\" f=\"oneclickreseller.com.xml\"><securecookie host=\"^\\.\" name=\"_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"One Health Commission.org\" f=\"onehealthcommission.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://onehealthcommission\\.org/\" to=\"https://www.onehealthcommission.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"One Kings Lane.com\" f=\"onekingslane.com.xml\"><securecookie host=\".\" name=\"^optimizely\"/><securecookie host=\"^\\.\" name=\"^(?:incap_ses|visid_incap)_\\d+$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"onelink.me\" f=\"onelink.me.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ONLINESHOP.CZ\" f=\"onlineshop.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ONR.org.uk (partial)\" f=\"onr.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"onride.de\" f=\"onride.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OnTheHub (partial)\" platform=\"mixedcontent\" f=\"onthehub.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ontraport.com\" f=\"ontraport.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ony.ru\" f=\"ony.ru.xml\"><rule from=\"^http://www\\.ony\\.ru/\" to=\"https://ony.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Open-Groupe.nl\" f=\"open-groupe.nl.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"open-stand.org\" f=\"open-stand.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"open27.ru\" default_off=\"failed ruleset test\" f=\"open27.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"openDesktop.org\" f=\"openDesktop.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"openbank.ru\" default_off=\"failed ruleset test\" f=\"openbank.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"opencaching.de\" f=\"opencaching.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"opencaching.pl\" default_off=\"failed ruleset test\" f=\"opencaching.pl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Opendata.ch\" f=\"opendata.ch.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"opendatacity\" f=\"opendatacity.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"openeffect.ca\" f=\"openeffect.ca.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"openfoo.org\" f=\"openfoo.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"opengg.me\" f=\"opengg.me.xml\"><exclusion pattern=\"^http://(www\\.)?opengg\\.me/$\"/><rule from=\"^http://(www\\.)?opengg\\.me/wp-(content|includes)/\" to=\"https://opengg.me/wp-$2/\"/></ruleset>", "<ruleset name=\"Opening-Times.co.uk\" f=\"opening-times.co.uk.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"openmamba.org\" f=\"openmamba.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://lists\\.openmamba\\.org/+\" to=\"https://www.openmamba.org/lists/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenNIC project\" f=\"opennicproject.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenRepos.net\" f=\"openrepos.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"openrunet.org\" f=\"openrunet.org.xml\"><rule from=\"^http://www\\.openrunet\\.org/\" to=\"https://openrunet.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"opensocietyfoundations.org\" f=\"opensocietyfoundations.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenStat.com (partial)\" f=\"openstat.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"openwebrtc.org\" default_off=\"failed ruleset test\" f=\"openwebrtc.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"openwebtorrent.com\" f=\"openwebtorrent.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenX.com (resources)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"openx.com-resources.xml\"><exclusion pattern=\"^http://(?:www\\.)?openx\\.com/(?!/*(?:wp-)(?:content|includes)/(?!.+\\.js(?:$|\\?)))\"/><exclusion pattern=\"^http://welcome\\.openx\\.com/(?!/*(?:cs|image|r)s/)\"/><rule from=\"^http://welcome\\.openx\\.com/\" to=\"https://na-sjl.marketo.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OpenXmarket.asia\" f=\"openxmarket.asia.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Opera CDN.com\" f=\"operacdn.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Optimizely.com (resources)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"optimizely.com-resources.xml\"><exclusion pattern=\"^http://pages\\.optimizely\\.com/(?!/*(?:cs|image|r)s/)\"/><rule from=\"^http://pages\\.optimizely\\.com/\" to=\"https://na-sjn.marketo.com/\"/></ruleset>", "<ruleset name=\"Optum.com\" default_off=\"failed ruleset test\" f=\"optum.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OR.is\" f=\"or.is.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Orange Plant.co.uk\" default_off=\"failed ruleset test\" f=\"orangeplant.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.orangeplant\\.co\\.uk/\" to=\"https://orangeplant.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OriginStamp\" f=\"originstamp.org.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"oroboro.com\" default_off=\"failed ruleset test\" f=\"oroboro.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Orphus.ru\" f=\"orphus.ru.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.orphus\\.ru/\" to=\"https://orphus.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ORR.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"orr.gov.uk.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"osalt.com\" f=\"osalt.com.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OSC.gov\" f=\"osc.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OSDisc.com\" f=\"osdisc.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"osdn.net\" f=\"osdn.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OSMC.tv\" f=\"osmc.tv.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.osmc\\.tv/\" to=\"https://osmc.tv/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"osnews.com\" f=\"osnews.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ostermiller.org\" default_off=\"failed ruleset test\" f=\"ostermiller.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OSTIF.org\" f=\"ostif.org.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OSU Foundation.org\" default_off=\"mismatched\" f=\"osufoundation.org.xml\"><rule from=\"^http://osufoundation\\.org/\" to=\"https://www.osufoundation.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OSU OSL.org (partial)\" f=\"osuosl.org.xml\"><securecookie host=\".*\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OSVehicle.com\" f=\"osvehicle.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"osvita.ua\" f=\"osvita.ua.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"otaserve.net\" f=\"otaserve.net.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"otr-online.ru\" f=\"otr-online.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ots-net.ru\" default_off=\"failed ruleset test\" f=\"ots-net.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OTTO's\" f=\"ottos.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ouedkniss.com\" f=\"ouedkniss.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"our-work.com.tw\" f=\"our-work.com.tw.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OurPowerBase.net\" f=\"ourpowerbase.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ourproject.org\" f=\"ourproject.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Our Skillsforce.co.uk (partial)\" default_off=\"failed ruleset test\" f=\"ourskillsforce.co.uk.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ourwatchmember.org.uk\" f=\"ourwatchmember.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"outnow.ch\" f=\"outnow.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ovdinfo.org\" f=\"ovdinfo.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"overpass-turbo.eu\" f=\"overpass-turbo.eu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ovva.tv\" f=\"ovva.tv.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Owler.com (partial)\" f=\"owler.com.xml\"><securecookie host=\"^\\.\" name=\"^_ga\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OX4.li\" default_off=\"missing certificate chain\" f=\"ox4.li.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Oxford.gov.uk (false MCB)\" platform=\"mixedcontent\" f=\"oxford.gov.uk-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Oxford.gov.uk (partial)\" f=\"oxford.gov.uk.xml\"><securecookie host=\"^\\.www\\.\" name=\".\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:leaseholder|repair|tenant)shandbook\\.oxford\\.gov\\.uk/\" to=\"https://www.oxford.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"OxfordCC.co.uk (partial)\" f=\"oxfordcc.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Oxfordshire.gov.uk (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"oxfordshire.gov.uk-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Oxfordshire.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"oxfordshire.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://myopac\\.oxfordshire\\.gov\\.uk/.*\" to=\"https://libcat.oxfordshire.gov.uk/web/opac\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Oxford Web Apps.co.uk\" f=\"oxfordwebapps.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"oyoony\" f=\"oyoony.xml\"><securecookie host=\"^(?:www\\.)?oyoony\\.(?:at|de|net)$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?oyoony\\.(at|de|net)/\" to=\"https://oyoony.de/\"/></ruleset>", "<ruleset name=\"pCloud\" default_off=\"failed ruleset test\" f=\"pCloud.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PAC-UK.org\" default_off=\"expired, self-signed\" f=\"pac-uk.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Packagist.org\" f=\"packagist.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"packetflagon.is\" f=\"packetflagon.is.xml\"><securecookie host=\"^.*\\.packetflagon\\.is$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"packetflagon.uk\" default_off=\"failed ruleset test\" f=\"packetflagon.uk.xml\"><securecookie host=\"^.*\\.packetflagon\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Packrafting-Store.de\" f=\"packrafting-store.de.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Page Six.com\" f=\"pagesix.com.xml\"><securecookie host=\".\" name=\"^optimizely\"/><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PageSuite-professional.co.uk (partial)\" f=\"pagesuite-professional.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PageUp People.com (partial)\" f=\"pageuppeople.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pandasoph.de\" f=\"pandasoph.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Panera Bread.com (partial)\" f=\"panerabread.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://panerabread\\.com/\" to=\"https://www.panerabread.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"panorama.am\" default_off=\"failed ruleset test\" f=\"panorama.am.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Paperspace.com (partial)\" f=\"paperspace.com.xml\"><securecookie host=\"^\\.\" name=\"^__cfduid\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"paralympic.org\" f=\"paralympic.org.xml\"><rule from=\"^http://paralympic\\.org/\" to=\"https://www.paralympic.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Paras Chetal.in\" f=\"paraschetal.in.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Paris-Web.fr (partial)\" default_off=\"failed ruleset test\" f=\"paris-web.fr.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Paris Vega.com\" f=\"parisvega.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"parlamentri.ru\" f=\"parlamentri.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Parliament.uk (false MCB)\" platform=\"mixedcontent\" f=\"parliament.uk-falsemixed.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid$|_gat?$|_gat_|cf_clearance$)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Parliament.uk (partial)\" f=\"parliament.uk.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid$|_gat?$|_gat_|cf_clearance$)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(shop\\.)?parliament\\.uk/\" to=\"https://www.$1parliament.uk/\"/><rule from=\"^http://epetitions\\.scottish\\.parliament\\.uk/+([^?]*).*\" to=\"https://www.parliament.scot/gettinginvolved/petitions/$1\"/><rule from=\"^http://www\\.scottish\\.parliament\\.uk/+\" to=\"https://www.parliament.scot/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"parlmany.com \" f=\"parlmany.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"parrotsec.org\" f=\"parrotsec.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"partedmagic.com\" f=\"partedmagic.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Passwordless.net\" f=\"passwordless.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PasswordsCon (partial)\" default_off=\"failed ruleset test\" f=\"passwordscon.org.xml\"><securecookie host=\"^\\.?passwordscon\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PasswordWolf.com\" f=\"passwordwolf.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"path-trail.com\" f=\"path-trail.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://(?:www\\.)?path-trail\\.com/\" to=\"https://secure.leadforensics.com/\"/></ruleset>", "<ruleset name=\"PatronBase.co.uk\" f=\"patronbase.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PatronBase.com\" default_off=\"failed ruleset test\" f=\"patronbase.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Paul Irish.com\" f=\"paulirish.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"paulschou.com\" f=\"paulschou.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Paxum.com\" f=\"paxum.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PAX Vapor.com\" f=\"paxvapor.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__qca$|_gat?$|_gat)\"/><securecookie host=\"^(?!\\.paxvapor\\.com).\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"payback.pl\" f=\"payback.pl.xml\"><securecookie host=\"^\\.\" name=\"_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PayPal objects.com\" f=\"paypalobjects.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PBBans.com\" f=\"pbbans.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|__qca|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PC-Cooling.de\" f=\"pc-cooling.de.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://pc-cooling\\.de/\" to=\"https://www.pc-cooling.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PCA Predict.com (partial)\" f=\"pcapredict.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?pcapredict\\.com/(?!/*(?:(?:en-us/contact-us|register|[Ss]upport|status)(?:$|[?/])|favicon\\.ico|[Ii]mages/))\"/><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^a\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pccomponentes.com\" platform=\"mixedcontent\" f=\"pccomponentes.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pcgarage.ro\" f=\"pcgarage.ro.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pckeyboard.com\" f=\"pckeyboard.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PCPer.com\" f=\"pcper.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__qca$|SESS)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PCR-online.biz\" f=\"pcr-online.biz.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PCR Dist.com\" f=\"pcrdist.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.www\\.\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PCRM.org\" f=\"pcrm.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pdf-online.com\" f=\"pdf-online.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PDF-Tools.com\" f=\"pdf-tools.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://pdf-tools\\.com/\" to=\"https://www.pdf-tools.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PDFill.com\" f=\"pdfill.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"peachosi.com\" platform=\"mixedcontent\" f=\"peachosi.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PeekVids.com\" f=\"peekvids.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"peercloud.io\" default_off=\"failed ruleset test\" f=\"peercloud.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PE Hub.com\" f=\"pehub.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pejs.net\" f=\"pejs.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pentest-tools.com\" f=\"pentest-tools.com.xml\"><rule from=\"^http://www\\.pentest-tools\\.com/\" to=\"https://pentest-tools.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PeopleBank.com\" f=\"peoplebank.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pep.Foundation\" default_off=\"failed ruleset test\" f=\"pep.foundation.xml\"><rule from=\"^http://www\\.pep\\.foundation/\" to=\"https://pep.foundation/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"peppermintos.com\" f=\"peppermintos.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"perfecthair.ch\" f=\"perfecthair.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"perfora.net (partial)\" f=\"perfora.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Perimeter Institute.ca\" f=\"perimeterinstitute.ca.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"permkrai.ru\" default_off=\"failed ruleset test\" f=\"permkrai.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Peter Kieser.com\" f=\"peterkieser.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PetHelpful.com\" f=\"pethelpful.com.xml\"><securecookie host=\"^\\.\" name=\"^ru(?:txt)?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PGL.co.uk\" f=\"pgl.co.uk.xml\"><securecookie host=\"^\\.\" name=\"^_ga\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pgtrk.ru\" f=\"pgtrk.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PharmGKB.org\" default_off=\"failed ruleset test\" f=\"pharmgkb.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"phil.camera\" f=\"phil.camera.xml\"><securecookie host=\"^phil\\.camera$\" name=\".+\"/><rule from=\"^http://www\\.phil\\.camera/\" to=\"https://phil.camera/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"phoenix.de\" f=\"phoenix.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"phonekeeper.ru\" f=\"phonekeeper.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"phonostar.de\" f=\"phonostar.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"phpans.com\" f=\"phpans.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PHPBoost.com (partial)\" f=\"phpboost.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"phptesting.org\" f=\"phptesting.org.xml\"><rule from=\"^http://phptesting\\.org/\" to=\"https://www.phptesting.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Phys.org\" f=\"phys.org.xml\"><securecookie host=\"^\\.\" name=\"^__qca\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pi-hole.net\" default_off=\"failed ruleset test\" f=\"pi-hole.net.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pichesky.ru (partial)\" f=\"pichesky.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pieperhome.de\" f=\"pieperhome.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pinall.ru\" f=\"pinall.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pindrop.com\" f=\"pindrop.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://pindrop\\.com/\" to=\"https://www.pindrop.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pindrop Security.com (partial)\" default_off=\"failed ruleset test\" f=\"pindropsecurity.com.xml\"><securecookie host=\"^(?!info\\.)\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"(?:__cfduid|cf_clearance)$\"/><rule from=\"^http://info\\.pindropsecurity\\.com/+(?:\\?.*)?$\" to=\"https://pindropsecurity.com/\"/><rule from=\"^http://info\\.pindropsecurity\\.com/\" to=\"https://na-sji.marketo.com/\"/><exclusion pattern=\"^http://info\\.pindropsecurity\\.com/+(?!$|\\?|css/|images/|rs/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pingler.com\" f=\"pingler.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Piraadipartei.ee\" default_off=\"expired\" platform=\"mixedcontent\" f=\"piraadipartei.ee.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.piraadipartei\\.ee/\" to=\"https://piraadipartei.ee/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Piraattipuolue.fi (partial)\" f=\"piraattipuolue.fi.xml\"><securecookie host=\"^(?!\\.piraattipuolue\\.fi$).\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pirata.cat (partial)\" default_off=\"missing certificate chain\" f=\"pirata.cat.xml\"><securecookie host=\"^(?!\\.pirata\\.cat$).\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pirate-Party.us (partial)\" f=\"pirate-party.us.xml\"><exclusion pattern=\"^http://(?:www\\.)?pirate-party\\.us/(?!/*(?:$|\\?))\"/><securecookie host=\"^[^.pw]\" name=\".\"/><rule from=\"^http://(?:www\\.)?pirate-party\\.us/.*\" to=\"https://blog.pirate-party.us/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Piraten-Aargau.ch\" f=\"piraten-aargau.ch.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Piraten-Basel.ch\" default_off=\"failed ruleset test\" f=\"piraten-basel.ch.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Piraten.lu\" default_off=\"failed ruleset test\" f=\"piraten.lu.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pirate Partei.lu\" f=\"piratepartei.lu.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pirate Party.gr (partial)\" f=\"pirateparty.gr.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://liquid\\.pirateparty\\.gr/+lf(?=$|\\?)\" to=\"https://liquid.pirateparty.gr/lf/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"piratpartiet.dk\" f=\"piratpartiet.dk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pirogov.ru\" f=\"pirogov.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pit-format-online.pl\" f=\"pit-format-online.pl.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"piter.tv\" f=\"piter.tv.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"piwikpro.com\" f=\"piwikpro.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pixel.ad\" f=\"pixel.ad.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pixhost.org\" f=\"pixhost.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pixxxels.org\" f=\"pixxxels.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PizzaPortal.pl (partial)\" f=\"pizzaportal.pl.xml\"><securecookie host=\"^\\.\" name=\"^(?:_gat?$|_gat_|ident$|latestAddressData$|referer$)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.pizzaportal\\.pl/\" to=\"https://pizzaportal.pl/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PK Community Watch.co.uk\" f=\"pkcommunitywatch.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Plain English.co.uk\" default_off=\"failed ruleset test\" f=\"plainenglish.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"planeta.ru\" f=\"planeta.ru.xml\"><rule from=\"^http://www\\.planeta\\.ru/\" to=\"https://planeta.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Planet Rulers\" default_off=\"failed ruleset test\" f=\"planetrulers.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Planet Syria.org\" f=\"planetsyria.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Planned Parenthood Action.org\" f=\"plannedparenthoodaction.org.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid$|_gat?$|_gat_|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Planning Portal.gov.uk (partial)\" f=\"planningportal.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Plarium.com (partial)\" f=\"plarium.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?plarium\\.com/(?!/*forum(?:$|[?/]))\"/><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Plasso.co\" f=\"plasso.co.xml\"><exclusion pattern=\"^http://(?:[^./]+\\.){2,}plasso\\.co/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Platba.cz\" f=\"platba.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"platformio.org (partial)\" f=\"platformio.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"plop.at\" f=\"plop.at.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pluralsight.com\" f=\"pluralsight.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Plymouth.gov.uk (partial)\" f=\"plymouth.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PMF.gov\" f=\"pmf.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pnp.ru\" f=\"pnp.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pocketmags.com\" f=\"pocketmags.com.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Podfilter.de\" f=\"podfilter.de.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"podrobnosti.ua\" f=\"podrobnosti.ua.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Podtrac.com (partial)\" f=\"podtrac.com.xml\"><exclusion pattern=\"^http://dts\\.podtrac\\.com/redirect\\.(?!mp3/rss\\.art19\\.com/)\"/><exclusion pattern=\"^http://www\\.podtrac\\.com/pts/redirect\\.\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pogliad.ua\" f=\"pogliad.ua.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"poiskvps.ru\" f=\"poiskvps.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PokerStars.com\" f=\"pokerstars.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.www\\.\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PokerStars apps.com\" f=\"pokerstarsapps.com.xml\"><securecookie host=\"^\\.\" name=\"^__utm\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PokerStars Partners.com\" default_off=\"missing certificate chain\" f=\"pokerstarspartners.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Policy Alternatives.ca (partial)\" f=\"policyalternatives.ca.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Polska Partia Piratow.pl (partial)\" f=\"polskapartiapiratow.pl.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"poltava.to\" platform=\"mixedcontent\" f=\"poltava.to.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"polymus.ru\" f=\"polymus.ru.xml\"><rule from=\"^http://www\\.polymus\\.ru/\" to=\"https://polymus.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Polyvore.com (partial)\" f=\"polyvore.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?polyvore\\.com/(?!/*(?:(?:android|iOS)(?:$|\\?)|cgi/img-|favicon\\.ico|rsrc/.+\\.(?:css|gif|png|svg)))\"/><rule from=\"^http://help\\.polyvore\\.com/\" to=\"https://polyvore.zendesk.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Polyvore img.com\" f=\"polyvoreimg.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:ak\\d|akwww|cfc)\\.polyvoreimg\\.com/\" to=\"https://www.polyvore.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ponyfoo.com\" default_off=\"failed ruleset test\" f=\"ponyfoo.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"popcorntime.sh\" f=\"popcorntime.sh.xml\"><rule from=\"^http://status\\.popcorntime\\.sh/\" to=\"https://popcorntime.statuspage.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Poradte.cz\" f=\"poradte.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pornBB\" f=\"pornBB.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Porndig.com\" f=\"porndig.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pornolab.net\" f=\"pornolab.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"portal-credo.ru\" f=\"portal-credo.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Portsmouth.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"portsmouth.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.(emas|jsna|mediastore)\\.portsmouth\\.gov\\.uk/\" to=\"https://$1.portsmouth.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"porvoo.fi\" f=\"porvoo.fi.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Postcode Anywhere.co.uk\" f=\"postcodeanywhere.co.uk.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"posti.fi\" platform=\"mixedcontent\" f=\"posti.fi.xml\"><rule from=\"^http://(?:www\\.)?posti\\.fi/\" to=\"https://posti.fi/\"/><securecookie host=\"^\\.?(?:www)?\\.?posti\\.fi\" name=\".*\"/><securecookie host=\"^[^@/:\\.]\\.?posti\\.fi\" name=\".*\"/><exclusion pattern=\"^http://(?:www\\.)?posti\\.fi/itemtracking/\"/></ruleset>", "<ruleset name=\"Postovoy.org\" f=\"postovoy.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.postovoy\\.org/\" to=\"https://postovoy.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pottermore.com\" f=\"pottermore.com.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://pottermore\\.com/\" to=\"https://www.pottermore.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pouet.net\" f=\"pouet.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Powys.gov.uk (partial)\" f=\"powys.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?powys\\.gov\\.uk/\" to=\"https://secure.powys.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PP-International.net (partial)\" f=\"pp-international.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pr0gramm\" f=\"pr0gramm.com.xml\"><securecookie host=\"^pr0gramm\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Praktikpladsen\" f=\"praktikpladsen.dk.xml\"><rule from=\"^http://(?:www\\.)?praktikpladsen\\.dk/\" to=\"https://www.praktikpladsen.dk/\"/></ruleset>", "<ruleset name=\"pravda-kr.com.ua\" f=\"pravda-kr.com.ua.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pravdatyt.com\" f=\"pravdatyt.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pravobraz.ru\" default_off=\"failed ruleset test\" f=\"pravobraz.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Precedent.com\" f=\"precedent.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"predb.me\" f=\"predb.me.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"premiagi.ru\" f=\"premiagi.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Premium-Link.ninja\" f=\"premium-link.ninja.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid$|_ga|cf_clearance$)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Premium Issuer.com\" f=\"premiumissuer.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PremiumLeech.eu\" default_off=\"mismatched, self-signed\" platform=\"mixedcontent\" f=\"premiumleech.eu.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Premium Link Generator.com\" f=\"premiumlinkgenerator.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pressbooks.ch\" f=\"pressbooks.ch.xml\"><rule from=\"^http://pressbooks\\.ch/\" to=\"https://www.pressbooks.ch/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pressidium.com\" f=\"pressidium.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pressplay.cc\" f=\"pressplay.cc.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Preston.gov.uk (partial)\" f=\"preston.gov.uk.xml\"><securecookie host=\"^\\.\" name=\"^cadata\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://my\\.preston\\.gov\\.uk/\" to=\"https://www.my.preston.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"prestoris.com\" f=\"prestoris.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pretty 52.com\" default_off=\"failed ruleset test\" f=\"pretty52.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pretty Good Goods.org\" f=\"prettygoodgoods.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://prettygoodgoods\\.org/\" to=\"https://www.prettygoodgoods.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"priceshoes.com\" f=\"priceshoes.com.xml\"><securecookie host=\"^www\\.priceshoes\\.com$\" name=\".+\"/><rule from=\"^http://priceshoes\\.com/\" to=\"https://www.priceshoes.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"prichernomorie.com.ua\" platform=\"mixedcontent\" f=\"prichernomorie.com.ua.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PrimeLocation.com (partial)\" f=\"primelocation.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?primelocation\\.com/(?!/*(?:myaccount|register|signin)(?:$|[?/]))\"/><securecookie host=\"^\\.primelocation\\.com$\" name=\"^primelocationp?sid$\"/><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><rule from=\"^http://primelocation\\.com/\" to=\"https://www.primelocation.com/\"/><rule from=\"^http://inspiration\\.primelocation\\.com/+\" to=\"https://clippings.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Primustel.ca (partial)\" f=\"primustel.ca.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Prisguide.no\" f=\"prisguide.no.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Privacy Foundation.ch (partial)\" f=\"privacyfoundation.ch.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"privatebin.info\" f=\"privatebin.info.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"prnt.sc\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"prnt.sc.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pro.hostingas.lt\" f=\"pro.hostingas.lt.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"proXPN\" default_off=\"failed ruleset test\" f=\"proXPN.xml\"><securecookie host=\"^.*\\.proxpn\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"profesia.sk\" f=\"profesia.sk.xml\"><rule from=\"^http://profesia\\.sk/\" to=\"https://www.profesia.sk/\"/><rule from=\"^http://www\\.profesia\\.sk/\" to=\"https://www.profesia.sk/\"/></ruleset>", "<ruleset name=\"profibeer.ru\" f=\"profibeer.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"profintel.ru\" f=\"profintel.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Profiseller\" f=\"profiseller.de.xml\"><rule from=\"^http://(p\\d+)\\.profiseller\\.de/\" to=\"https://www.profiseller.de/shop1/index.php3?ps_id=$1\"/><rule from=\"^http://www\\.(p\\d+)\\.profiseller\\.de/\" to=\"https://www.profiseller.de/shop1/index.php3?ps_id=$1\"/><rule from=\"^http://(www\\.)?profiseller\\.de/\" to=\"https://www.profiseller.de/\"/></ruleset>", "<ruleset name=\"progressivetech.org\" f=\"progressivetech.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"projectatomic.io\" f=\"projectatomic.io.xml\"><rule from=\"^http://projectatomic\\.io/\" to=\"https://www.projectatomic.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"projectdev.org\" default_off=\"failed ruleset test\" f=\"projectdev.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Project Gus.com\" f=\"projectgus.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"prokopievsk.ru\" default_off=\"failed ruleset test\" f=\"prokopievsk.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"promisejs.org\" f=\"promisejs.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"proovl.com\" f=\"proovl.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"propolevskoy.ru\" f=\"propolevskoy.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"prostovpn.org\" f=\"prostovpn.org.xml\"><rule from=\"^http://www\\.prostovpn\\.org/\" to=\"https://prostovpn.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Prototype Fund.de\" f=\"prototypefund.de.xml\"><exclusion pattern=\"^http://(?:[^./]+\\.){2,}prototypefund\\.de/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"protvino.net (partial)\" default_off=\"failed ruleset test\" f=\"protvino.net.xml\"><rule from=\"^http://www\\.protvino\\.net/\" to=\"https://protvino.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Provider Central.org.uk\" default_off=\"failed ruleset test\" f=\"providercentral.org.uk.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://providercentral\\.org\\.uk/\" to=\"https://www.providercentral.org.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pro Visu.ch\" f=\"provisu.ch.xml\"><exclusion pattern=\"^http://(?:[^.]+\\.){2,}provisu\\.ch/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"proxybay.one\" default_off=\"failed ruleset test\" f=\"proxybay.one.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"proxybay.pl\" f=\"proxybay.pl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"proxyportal.org\" default_off=\"failed ruleset test\" f=\"proxyportal.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"proxyshard.uk\" default_off=\"failed ruleset test\" f=\"proxyshard.uk.xml\"><securecookie host=\"^.*\\.proxyshard\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"proza.ru\" f=\"proza.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"prtimes.jp (partial)\" f=\"prtimes.jp.xml\"><rule from=\"^http://prtimes\\.jp/(common/|i/|prn/)\" to=\"https://prtimes.jp/$1\"/><exclusion pattern=\"^http://prtimes\\.jp/$\"/></ruleset>", "<ruleset name=\"PSC.gov (partial)\" default_off=\"failed ruleset test\" f=\"psc.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"psiphon.ca\" f=\"psiphon.ca.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pskovline.ru (partial)\" f=\"pskovline.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PsychCentral.com\" f=\"psychcentral.com.xml\"><securecookie host=\"^\\.\" name=\"(?:^__qca|sessionhash)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PTC.com (partial)\" f=\"ptc.com.xml\"><exclusion pattern=\"http://support\\.ptc\\.com/(?!/*appserver/(?:auth/authenticate\\.jsp|common/(?:account/(?:createAccount\\.jsp|password\\.jsp|ssl/)|login/ssl/)))\"/><securecookie host=\"^\\.\" name=\"^_ga\"/><securecookie host=\"^(?!support\\.)\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"PTC User Community.com\" f=\"ptcusercommunity.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pub2srv.com\" f=\"pub2srv.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Public Affairs News.com\" f=\"publicaffairsnews.com.xml\"><securecookie host=\"^\\.\" name=\"^_ga\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Publish2.me\" f=\"publish2.me.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Publish Partner.com.au (partial)\" f=\"publishpartner.com.au.xml\"><securecookie host=\"^\\.\" name=\"^frontend$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Publons.com\" f=\"publons.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pubsqrd.com\" f=\"pubsqrd.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://ads\\.pubsqrd\\.com/\" to=\"https://secure.adnxs.com/\"/></ruleset>", "<ruleset name=\"Puget Systems.com\" f=\"pugetsystems.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"puhtml.com\" f=\"puhtml.com.xml\"><exclusion pattern=\"^http://(?!(?:pl\\d+\\.|www\\.)?puhtml\\.com/)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"puphpet.com\" default_off=\"failed ruleset test\" f=\"puphpet.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Putlocker.is\" platform=\"mixedcontent\" f=\"putlocker.is.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pwSafe\" f=\"pwSafe.xml\"><securecookie host=\"^pwsafe\\.info$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pyeongchang2018.com\" default_off=\"failed ruleset test\" f=\"pyeongchang2018.com.xml\"><rule from=\"^http://(www\\.)?pyeongchang2018\\.org/\" to=\"https://$1pyeongchang2018.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pygmy Boats.com (false MCB)\" platform=\"mixedcontent\" f=\"pygmyboats.com-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pygmy Boats.com (partial)\" f=\"pygmyboats.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?pygmyboats\\.com/blog(?:$|[?/])\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pyra-Handheld.com (partial)\" f=\"pyra-handheld.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pytamy.pl\" platform=\"mixedcontent\" f=\"pytamy.pl.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Pythian.com\" f=\"pythian.com.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Q-assets.com\" f=\"q-assets.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"q4os.org\" f=\"q4os.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"QA Cafe.com (partial)\" f=\"qacafe.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"qdaily.com\" default_off=\"failed ruleset test\" f=\"qdaily.com.xml\"><rule from=\"^http://qdaily\\.com/\" to=\"https://www.qdaily.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"qdcdn.com\" default_off=\"failed ruleset test\" f=\"qdcdn.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"QElectroTech.org\" f=\"qelectrotech.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Qatar Foundation\" default_off=\"failed ruleset test\" f=\"qf.org.qa.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"qfcdn.com\" f=\"qfcdn.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"qiwi.me\" default_off=\"failed ruleset test\" f=\"qiwi.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"QiYuKeFu\" f=\"qiyukf.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"qntm.org\" f=\"qntm.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"qrator.net\" f=\"qrator.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"quartztelecom.ru (partial)\" f=\"quartztelecom.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"quay.io\" f=\"quay.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Quebec solidaire.net (partial)\" f=\"quebecsolidaire.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Quickline\" default_off=\"failed ruleset test\" f=\"quickline.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Quidsi.com\" f=\"quidsi.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://quidsi\\.com/\" to=\"https://www.quidsi.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"quran-online.ru\" f=\"quran-online.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"qwebirc.org\" f=\"qwebirc.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"r46.ru (partial)\" default_off=\"failed ruleset test\" f=\"r46.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Radiocane.info\" platform=\"mixedcontent\" f=\"radiocane.info.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Radio Kniga.com\" default_off=\"failed ruleset test\" f=\"radiokniga.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"radiokot.ru\" f=\"radiokot.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"radiotochka.kz\" f=\"radiotochka.kz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Raglan 23.co.nz\" platform=\"mixedcontent\" f=\"raglan23.co.nz.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rainier Arms.com\" f=\"rainierarms.com.xml\"><securecookie host=\"^\\.www\\.\" name=\".\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rakuten-static.com (partial)\" f=\"rakuten-static.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"randombit.net\" f=\"randombit.net.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Randy Westergren.com\" f=\"randywestergren.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ranking Digital Rights.org\" f=\"rankingdigitalrights.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RapidMoviez.eu\" f=\"rapidmoviez.eu.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid$|_gat?$|_gat_|cf_clearance$)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RapidRAR.com\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"rapidrar.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Raptr CDN.com\" f=\"raptrcdn.com.xml\"><rule from=\"^http://b\\d\\.raptrcdn\\.com/\" to=\"https://d1ut3nrduxpo26.cloudfront.net/\"/></ruleset>", "<ruleset name=\"Rarbg\" f=\"rarbg.xml\"><exclusion pattern=\"^http://(?:[^./]+\\.){2,}rarbg\\.(?:com|to)/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rarus.ru (partial)\" f=\"rarus.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rascal999.co.uk\" default_off=\"failed ruleset test\" f=\"rascal999.co.uk.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rate Your Locale Service.co.uk\" f=\"rateyourlocalservice.co.uk.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rational CDN.com\" f=\"rationalcdn.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ravenjs.com\" default_off=\"failed ruleset test\" f=\"ravenjs.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"raxcdn.com\" f=\"raxcdn.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"razor1911.com\" f=\"razor1911.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rbc.ua\" f=\"rbc.ua.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RB Digital.com\" f=\"rbdigital.com.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rbfi\" f=\"rbfi.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RBKC.gov.uk (partial)\" f=\"rbkc.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(consultation\\.|eforms\\.)?rbkc\\.gov\\.uk/\" to=\"https://www.$1rbkc.gov.uk/\"/><rule from=\"^http://www\\.planningconsult\\.rbkc\\.gov\\.uk/\" to=\"https://planningconsult.rbkc.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RBTH.com (partial)\" f=\"rbth.com.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.rbth\\.com/\" to=\"https://rbth.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RBWM.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"rbwm.gov.uk.xml\"><securecookie host=\"^(?!directory\\.|www\\.)\\w\" name=\".\"/><securecookie host=\"^\\.www3\\.\" name=\".\"/><rule from=\"^http://directory\\.rbwm\\.gov\\.uk/\" to=\"https://search3.openobject.com/\"/><exclusion pattern=\"^http://directory\\.rbwm\\.gov\\.uk/(?!/*(?:kb5/\\w+/directory/(?:image|stylesheet)s/))\"/><rule from=\"^http://www\\.rbwm\\.gov\\.uk/.*\" to=\"https://www3.rbwm.gov.uk/\"/><exclusion pattern=\"^http://www\\.rbwm\\.gov\\.uk/(?!/*(?:$|\\?|index\\.htm))\"/><rule from=\"^http://consult\\.rbwm\\.gov\\.uk/\" to=\"https://rbwm-consult.objective.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RBWM Car Share.co.uk\" default_off=\"missing certificate chain\" f=\"rbwmcarshare.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rc4nomore.com\" f=\"rc4nomore.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Roller Coaster DataBase\" f=\"rcdb.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RCM.org.uk (partial)\" f=\"rcm.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Reach Boarding.com (partial)\" f=\"reachboarding.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Realfavicongenerator.net\" f=\"realfavicongenerator.net.xml\"><rule from=\"^http://www\\.realfavicongenerator\\.net/\" to=\"https://realfavicongenerator.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RealtimeBoard.com (partial)\" f=\"realtimeboard.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://status\\.realtimeboard\\.com/\" to=\"https://realtimeboard.statuspage.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rebecca Wait.com\" f=\"rebeccawait.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"receive-a-sms.com\" f=\"receive-a-sms.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"receivefreesms.net\" f=\"receivefreesms.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"receivesmsonline.net\" f=\"receivesmsonline.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Recorded Books.com\" default_off=\"failed ruleset test\" f=\"recordedbooks.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Record Not Found.com\" f=\"recordnotfound.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Recruitee.com\" f=\"recruitee.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Recruiter.co.uk (partial)\" f=\"recruiter.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Recycle for Surrey.org.uk\" f=\"recycleforsurrey.org.uk.xml\"><securecookie host=\"^\\.\" name=\"^(?:incap_ses|visid_incap)_\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Redcare.com\" default_off=\"failed ruleset test\" f=\"redcare.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"redcom.ru (partial)\" default_off=\"failed ruleset test\" f=\"redcom.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Reddit Blog.com\" f=\"redditblog.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Reddit Bot.com\" f=\"redditbot.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Redditch BC.gov.uk (partial)\" f=\"redditchbc.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"reddituploads.com\" f=\"reddituploads.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Redington India.com\" f=\"redingtonindia.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"redirectingat.com\" f=\"redirectingat.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"redkestrel.co.uk\" f=\"redkestrel.co.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"reflets.info\" f=\"reflets.info.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"refugee.ru\" f=\"refugee.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"regexbuddy.com\" f=\"regexbuddy.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ren.tv\" f=\"ren.tv.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Renoise.com (partial)\" f=\"renoise.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"repl.it\" f=\"repl.it.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Reporo.net (partial)\" f=\"reporo.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"republic.ru\" f=\"republic.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"requestb.in\" f=\"requestb.in.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rescue.org (false MCB)\" platform=\"mixedcontent\" f=\"rescue.org-falsemixed.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rescue.org (partial)\" default_off=\"failed ruleset test\" f=\"rescue.org.xml\"><exclusion pattern=\"^http://(?:diy\\.|m\\.|www\\.)?rescue\\.org/+(?!(?:donate|user)(?:$|[?/])|sites/)\"/><exclusion pattern=\"^http://gifts\\.rescue\\.org/+(?!files/|sites/)\"/><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^(?!(?:diy|gifts|m|www)\\.)\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Research Online.org.uk\" f=\"researchonline.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Respekt.cz\" default_off=\"Broken login form, may work seamlessly with platform='mixedcontent'\" f=\"respekt.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Responsetek.com\" f=\"responsetek.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rethink.org\" f=\"rethink.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://rethink\\.org/\" to=\"https://www.rethink.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RethinkDB.com\" f=\"rethinkdb.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"reuffel.de\" f=\"reuffel.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Reuters.TV\" f=\"reuters.tv.xml\"><securecookie host=\"^\\.\" name=\"^(?:_gat|optimizely)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"reutov.ru\" f=\"reutov.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Revcontent.com (partial)\" f=\"revcontent.com.xml\"><securecookie host=\"^\\.\" name=\"^_ga\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RevolverMaps.com (partial)\" f=\"revolvermaps.com.xml\"><exclusion pattern=\"^http://r\\w\\.revolvermaps\\.com/.+\\.(?:js|swf)(?:$|\\?)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Revolversweeper.com\" f=\"revolversweeper.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rezdy\" f=\"rezdy.com.xml\"><securecookie host=\"^.*\\.rezdy\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rg.ru\" default_off=\"failed ruleset test\" f=\"rg.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rhap.com\" f=\"rhap.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RI.gov\" f=\"ri.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Richmond.gov.uk (partial)\" f=\"richmond.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://richmond\\.gov\\.uk/\" to=\"https://www.richmond.gov.uk/\"/><rule from=\"^http://consult\\.richmond\\.gov\\.uk/\" to=\"https://richmond-consult.objective.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ride Compare.com\" default_off=\"failed ruleset test\" f=\"ridecompare.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ridus.ru\" f=\"ridus.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rio2016.com\" default_off=\"failed ruleset test\" f=\"rio2016.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RIP Medical Debt.org\" f=\"ripmedicaldebt.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"risingstack.com\" f=\"risingstack.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rivals.com\" f=\"rivals.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://rivals\\.com/\" to=\"https://www.rivals.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RKH.co.uk (partial)\" f=\"rkh.co.uk.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|_gat?$|_gat_|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RKHD.in\" default_off=\"failed ruleset test\" f=\"rkhd.in.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rns.online\" f=\"rns.online.xml\"><exclusion pattern=\"^http://cdn\\.rns\\.online/$\"/><exclusion pattern=\"^http://cdn\\.rns\\.online/\\?\"/><exclusion pattern=\"^http://cdn\\.rns\\.online/#\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Roadtrippers.com (resources)\" platform=\"mixedcontent\" f=\"roadtrippers.com-resources.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"roadworks.org\" f=\"roadworks.org.xml\"><securecookie host=\"^\\.\" name=\"^_(?:_utm|gat?$|gat_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.roadworks\\.org/\" to=\"https://roadworks.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Roar Mag.org\" f=\"roarmag.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"robolinux.org\" f=\"robolinux.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RobustIRC.net\" f=\"robustirc.net.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rockfile.eu (partial)\" f=\"rockfile.eu.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><exclusion pattern=\"^http://(www\\.)?rockfile\\.eu/[A-z0-9]+\\.html\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rocksbox.com\" f=\"rocksbox.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://rocksbox\\.com/\" to=\"https://www.rocksbox.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rofreesbie.org\" f=\"rofreesbie.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rol.im\" f=\"rol.im.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rom1504.fr\" f=\"rom1504.fr.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Roof Climb Adelaide Oval\" f=\"roofclimb.com.au.xml\"><securecookie host=\"roofclimb\\.com\\.au$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rootless.org (partial)\" default_off=\"missing certificate chain\" f=\"rootless.org.xml\"><exclusion pattern=\"^http://(?:www\\.)?rootless\\.org/(?!/*(?:$|\\?|webmail(?:$|[?/])))\"/><rule from=\"^http://www\\.rootless\\.org/\" to=\"https://rootless.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rosbank.ru\" f=\"rosbank.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"roseurosud.org\" f=\"roseurosud.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"roskomzakon.ru\" platform=\"mixedcontent\" f=\"roskomzakon.ru.xml\"><rule from=\"^http://www\\.roskomzakon\\.ru/\" to=\"https://roskomzakon.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rosminzdrav.ru\" default_off=\"failed ruleset test\" f=\"rosminzdrav.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rossp.ru\" f=\"rossp.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rostov.press\" f=\"rostov.press.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rostrud.ru\" f=\"rostrud.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rosyama.ru\" f=\"rosyama.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"roszkh.ru\" f=\"roszkh.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"routingpacketsisnotacrime.uk\" f=\"routingpacketsisnotacrime.uk.xml\"><securecookie host=\"^routingpacketsisnotacrime\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RoyalDNS.net\" f=\"royaldns.net.xml\"><securecookie host=\"^(www\\.)?royaldns\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Royal Voluntary Service.org.uk (resources)\" platform=\"mixedcontent\" f=\"royalvoluntaryservice.org.uk-resources.xml\"><exclusion pattern=\"^http://(?:www\\.)?royalvoluntaryservice\\.org\\.uk/(?!/*U(?:I|ploads)/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Royal Voluntary Service.org.uk (partial)\" f=\"royalvoluntaryservice.org.uk.xml\"><exclusion pattern=\"^http://(?:www\\.)?royalvoluntaryservice\\.org\\.uk/(?!/*(?:contact-us/contact-form$|register$|sign-in$))\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"roysac.com\" f=\"roysac.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rsdn.org (partial)\" default_off=\"failed ruleset test\" f=\"rsdn.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rsl.ru\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"rsl.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rsload.net\" f=\"rsload.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rtbpopd.com\" f=\"rtbpopd.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.rtbpopd\\.com/\" to=\"https://rtbpopd.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rtr-vesti.ru\" f=\"rtr-vesti.ru.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://cdn\\.static1\\.rtr-vesti\\.ru/\" to=\"https://cdn-st1.rtr-vesti.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RUAG\" f=\"ruag.xml\"><rule from=\"^http://(?:www\\.)?ruag\\.com/\" to=\"https://www.ruag.com/\"/></ruleset>", "<ruleset name=\"rubixlinux.org\" f=\"rubixlinux.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ruguoapp.com\" f=\"ruguoapp.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RunnersConnect.net\" f=\"runnersconnect.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Runnymede.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"runnymede.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Runtime Verification.com\" f=\"runtimeverification.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rupture it.com\" f=\"ruptureit.com.xml\"><exclusion pattern=\"^http://(?:[^./]+\\.){2,}ruptureit\\.com/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rusradio.ru\" f=\"rusradio.ru.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"russia.tv\" f=\"russia.tv.xml\"><rule from=\"^http://www\\.russia\\.tv/\" to=\"https://russia.tv/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"russiain.space\" f=\"russiain.space.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"russian-malta.com\" f=\"russian-malta.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Rutland.gov.uk (partial)\" default_off=\"missing certificate chain\" f=\"rutland.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rutracker.org\" f=\"rutracker.org.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://(www\\.)?rutracker\\.(org|cr|net|nl)/\" to=\"https://rutracker.$2/\"/></ruleset>", "<ruleset name=\"rutrk.org\" f=\"rutrk.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"rutube.ru\" f=\"rutube.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RW-online.co.uk\" default_off=\"failed ruleset test\" f=\"rw-online.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"RWE.de\" default_off=\"failed ruleset test\" f=\"rwe.de.xml\"><securecookie host=\".\" name=\"^(?:_vm_u|ist)$\"/><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://rwe\\.de/\" to=\"https://www.rwe.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"s-t-d.org\" f=\"s-t-d.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"s81c.com\" f=\"s81c.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"s8bbs.com\" f=\"s8bbs.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Saba.com (partial)\" default_off=\"failed ruleset test\" f=\"saba.com.xml\"><exclusion pattern=\"^http://www1\\.saba\\.com/(?!/*(?:$|\\?|css/|images/|rs/))\"/><securecookie host=\"^(?!www1\\.)\\w\" name=\".\"/><rule from=\"^http://www1\\.saba\\.com/+(?:\\?.*)?$\" to=\"https://www.saba.com/\"/><rule from=\"^http://www1\\.saba\\.com/\" to=\"https://na-sj07.marketo.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SABB.com\" default_off=\"testing\" f=\"sabb.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://sabb\\.com/\" to=\"https://www.sabb.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SafeOrNot.net\" default_off=\"failed ruleset test\" f=\"safeornot.net.xml\"><securecookie host=\"^safeornot\\.net$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"safervpn.com\" f=\"safervpn.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sahih-bukhari.com\" f=\"sahih-bukhari.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"saint-petersburg.ru\" f=\"saint-petersburg.ru.xml\"><rule from=\"^http://www\\.saint-petersburg\\.ru/\" to=\"https://saint-petersburg.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"saintcon.org\" f=\"saintcon.org.xml\"><exclusion pattern=\"^http://(?:[^./]+\\.){2,}saintcon\\.org/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SaintGimp.org\" f=\"saintgimp.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SAIS Observer.com\" f=\"saisobserver.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sakhalin.info\" f=\"sakhalin.info.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"salesmedia.pl (partial)\" f=\"salesmedia.pl.xml\"><securecookie host=\"^\\.\" name=\"_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Salford.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"salford.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"salixos.org\" f=\"salixos.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"salt.zone\" f=\"salt.zone.xml\"><rule from=\"^http://www\\.salt\\.zone/\" to=\"https://salt.zone/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"saltpack.org\" f=\"saltpack.org.xml\"><exclusion pattern=\"^http://(?:[^./]+\\.){2,}saltpack\\.org/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"samaratoday.ru\" default_off=\"failed ruleset test\" f=\"samaratoday.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"samltool.com\" f=\"samltool.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Smape Long Beach.org\" default_off=\"mismatched\" f=\"sampelongbeach.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"samy.pl\" default_off=\"failed ruleset test\" f=\"samy.pl.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sandwell.gov.uk (partial)\" f=\"sandwell.gov.uk.xml\"><securecookie host=\"^\\.www\\.\" name=\".\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://sandwell\\.gov\\.uk/\" to=\"https://www.sandwell.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sankaku Complex.com\" f=\"sankakucomplex.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sanomacloud.net (resources)\" platform=\"mixedcontent\" f=\"sanomacloud.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sanomakauppa.fi\" f=\"sanomakauppa.fi.xml\"><securecookie host=\"^\\.\" name=\"^_ga\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://sanomakauppa\\.fi/\" to=\"https://www.sanomakauppa.fi/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"santafelinux.com\" f=\"santafelinux.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SatoshiLabs.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"satoshilabs.com-falsemixed.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SatoshiLabs.com (partial)\" f=\"satoshilabs.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"saturn.de\" default_off=\"failed ruleset test\" f=\"saturn.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Save.org\" f=\"save.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Say.ac\" f=\"say.ac.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SCambs.gov.uk (partial)\" f=\"scambs.gov.uk.xml\"><securecookie host=\"^(?!plan\\.)\\w\" name=\".\"/><rule from=\"^http://plan\\.scambs\\.gov\\.uk/.*\" to=\"https://www.scambs.gov.uk/services/planning-applications\"/><exclusion pattern=\"^http://plan\\.scambs\\.gov\\.uk/+(?!$|\\?)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Scarborough.gov.uk (partial)\" f=\"scarborough.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"schelkovo-net.ru\" f=\"schelkovo-net.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"schema.org\" default_off=\"failed ruleset test\" f=\"schema.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"schlicht-moebel.de\" f=\"schlicht-moebel.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Schneier Facts.com\" f=\"schneierfacts.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Schotty.com\" f=\"schotty.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"schraubenluchs.de\" f=\"schraubenluchs.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"schulthess.com\" f=\"schulthess.com.xml\"><rule from=\"^http://schulthess\\.com/\" to=\"https://www.schulthess.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SciAm Digital.com (partial)\" f=\"sciamdigital.com.xml\"><rule from=\"^http://(?:www\\.)?sciamdigital\\.com/[^?]*\" to=\"https://www.scientificamerican.com/page/welcome-scientific-american-digital-customers\"/></ruleset>", "<ruleset name=\"ScienceAlert.com\" f=\"sciencealert.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ScienceDirect.com\" platform=\"mixedcontent\" f=\"sciencedirect.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SC Magazine.com (partial)\" platform=\"mixedcontent\" f=\"scmagazine.com.xml\"><securecookie host=\".\" name=\"^optimizely\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://scmagazine\\.com/\" to=\"https://www.scmagazine.com/\"/><rule from=\"^http://media\\.scmagazine\\.com/\" to=\"https://dw5yb2c18zulu.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"scnsrc.net\" f=\"scnsrc.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"scoding.de\" f=\"scoding.de.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.scoding\\.de/\" to=\"https://scoding.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Score Assured.com\" default_off=\"failed ruleset test\" f=\"scoreassured.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Scotland.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"scotland.gov.uk.xml\"><exclusion pattern=\"^http://www\\.marine\\.scotland\\.gov\\.uk/+(?!$|\\?|[Ff][Ee][Aa][Ss][Tt]/(?:[Ii]mag|[Ss]tyl)es/)\"/><securecookie host=\"^(?!www\\.marine\\.)\\w\" name=\".\"/><rule from=\"^http://news\\.scotland\\.gov\\.uk/\" to=\"https://scottishgovernment.presscentre.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Scotland.Police.uk (MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"scotland.police.uk-mixedcontent.xml\"><exclusion pattern=\"^http://www\\.scotland\\.police\\.uk/(?!/*(?:contact-us/$|your-community/))\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Scotland.Police.uk (partial)\" default_off=\"failed ruleset test\" f=\"scotland.police.uk.xml\"><exclusion pattern=\"^http://www\\.scotland\\.police\\.uk/(?!/*(?:domestic-abuse|hate-crime|secureforms)(?:$|[?/]))\"/><securecookie host=\"^(?!www\\.s)\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ScrumbleShip.com\" f=\"scrumbleship.com.xml\"><exclusion pattern=\"^http://(?:[^./]+\\.){2,}scrumbleship\\.com/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"scrutinizer-ci.com\" default_off=\"failed ruleset test\" f=\"scrutinizer-ci.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SDK.cn\" f=\"sdk.cn.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Se-Sy.org\" f=\"se-sy.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.se-sy\\.org/\" to=\"https://se-sy.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SE.no\" platform=\"mixedcontent\" f=\"se.no.xml\"><securecookie host=\"^\\.\" name=\"^(?:_gat?$|_gat_|optimizely)\"/><securecookie host=\"^(?!\\.se\\.no$).\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Search Engine Journal.com (partial)\" f=\"searchenginejournal.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"searchlock.com\" f=\"searchlock.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"searchteria.co.jp\" f=\"searchteria.co.jp.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"secdev-foundation.org\" f=\"secdev-foundation.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"secure-decoration.com\" f=\"secure-decoration.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Secure-USB.co.uk\" default_off=\"failed ruleset test\" f=\"secure-usb.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.www\\.\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"securedatejoin.com\" f=\"securedatejoin.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sediarreda\" f=\"sediarreda.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sedmitza.ru\" f=\"sedmitza.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Seguro Social.gov\" f=\"segurosocial.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Select.Auction\" f=\"select.auction.xml\"><securecookie host=\"\\.\" name=\"^ARRAffinity$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"selfharm.co.UK\" f=\"selfharm.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SelfHTML\" f=\"selfhtml.org.xml\"><securecookie host=\"^(wiki\\.|forum\\.|blog\\.)?selfhtml\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sell2UK.co.uk\" f=\"sell2uk.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?sell2uk\\.co\\.uk/+\" to=\"https://sell2.in-tend.co.uk/\"/></ruleset>", "<ruleset name=\"semantic-mediawiki.org\" f=\"semantic-mediawiki.org.xml\"><rule from=\"^http://(?:www\\.)?semantic-mediawiki\\.org/\" to=\"https://semantic-mediawiki.org/\"/></ruleset>", "<ruleset name=\"semaphoreapp.com\" f=\"semaphoreapp.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"semver.io\" f=\"semver.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"semya.tv\" f=\"semya.tv.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SEOmon.com\" f=\"seomon.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SEPA.org.uk (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"sepa.org.uk-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SEPA.org.uk (partial)\" f=\"sepa.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://sepa\\.org\\.uk/\" to=\"https://www.sepa.org.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sergiopizza.ru\" f=\"sergiopizza.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SerieB.tv\" f=\"serieb.tv.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"serovglobus.ru\" platform=\"mixedcontent\" f=\"serovglobus.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ServerBase\" default_off=\"failed ruleset test\" f=\"serverbase.xml\"><securecookie host=\".*\\.serverbase\\.ch$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"servers.ru\" f=\"servers.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Servery.cz\" f=\"servery.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SESplan.gov.uk\" default_off=\"mismatched\" f=\"sesplan.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"setcronjob.com\" f=\"setcronjob.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"seven-sky.net (partial)\" default_off=\"failed ruleset test\" f=\"seven-sky.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sevenforums.com\" f=\"sevenforums.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sex Toy Club.com (partial)\" f=\"sextoyclub.com.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sg-logiciels.fr\" platform=\"mixedcontent\" f=\"sg-logiciels.fr.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shaanig.org\" f=\"shaanig.org.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"shareNice\" default_off=\"refused\" f=\"shareNice.xml\"><rule from=\"^http://(?:www\\.)?sharenice\\.org/\" to=\"https://sharenice.org/\"/></ruleset>", "<ruleset name=\"sharedrop.io\" f=\"sharedrop.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sharetobuy.com\" f=\"sharetobuy.com.xml\"><securecookie host=\"^(?:.*\\.)?sharetobuy\\.com$\" name=\".+\"/><rule from=\"^http://sharetobuy\\.com/\" to=\"https://www.sharetobuy.com/\"/><rule from=\"^http://([^/:@]+)?\\.sharetobuy\\.com/\" to=\"https://$1.sharetobuy.com/\"/></ruleset>", "<ruleset name=\"Sheetsu.com\" f=\"sheetsu.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"shields.io\" f=\"shields.io.xml\"><rule from=\"^http://www\\.shields\\.io/\" to=\"https://shields.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ShinyStat.com\" f=\"shinystat.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"shippable.com\" f=\"shippable.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"shm.ru\" f=\"shm.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shooting Illustrated.com\" default_off=\"failed ruleset test\" f=\"shootingillustrated.com.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"shopandmall.ru\" f=\"shopandmall.ru.xml\"><rule from=\"^http://www\\.shopandmall\\.ru/\" to=\"https://shopandmall.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shopbop.com\" f=\"shopbop.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:aps-trtmnt|bopVisitorData)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shop Orca.com\" default_off=\"failed ruleset test\" f=\"shoporca.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ShopSite.com (false MCB)\" platform=\"mixedcontent\" f=\"shopsite.com-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shop Spring.com (partial)\" f=\"shopspring.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ShortNote.jp (false MCB)\" platform=\"mixedcontent\" f=\"shortnote.jp-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ShortNote.jp (partial)\" f=\"shortnote.jp.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://s\\.shortnote\\.jp/\" to=\"https://d1zxaq39zvefje.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Short of the Week.com\" f=\"shortoftheweek.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shoutlet.com\" f=\"shoutlet.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"showapi.com\" f=\"showapi.com.xml\"><rule from=\"^http://bbs\\.showapi\\.com/(archiver|data|source|static)/\" to=\"https://bbs.showapi.com/$1/\"/><exclusion pattern=\"^http://bbs\\.showapi\\.com/$\"/><rule from=\"^http://(www\\.|admin\\.|api\\.|appimg\\.|image\\.|img\\.|manager\\.|mng\\.|page\\.|route\\.|static\\.|test\\.|upload\\.)?showapi\\.com/\" to=\"https://$1showapi.com/\"/></ruleset>", "<ruleset name=\"Shrek's Adventure\" default_off=\"failed ruleset test\" f=\"shreksadventure.com.xml\"><securecookie host=\"www\\.shreksadventure\\.com$\" name=\".+\"/><rule from=\"^http://shreksadventure\\.com/\" to=\"https://www.shreksadventure.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shrew Soft\" f=\"shrew.net.xml\"><securecookie host=\"^.*\\.shrew\\.net$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shrib.com\" f=\"shrib.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Shropshire.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"shropshire.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Siamo Geek.com\" default_off=\"failed ruleset test\" f=\"siamogeek.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"siberianet.ru (partial)\" f=\"siberianet.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sibinfo.su\" default_off=\"failed ruleset test\" f=\"sibinfo.su.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sibttk.ru (partial)\" default_off=\"failed ruleset test\" f=\"sibttk.ru.xml\"><exclusion pattern=\"^http://bill\\.sibttk\\.ru:8080/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sicurezzarete.com\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"sicurezzarete.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Signal v Noise.com\" f=\"signalvnoise.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Silencer Forum.com\" f=\"silencerforum.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Silent Sparks.com\" f=\"silentsparks.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"silverstripe.org (partial)\" f=\"silverstripe.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Simpel.nl\" default_off=\"failed ruleset test\" f=\"simpel.nl.xml\"><securecookie host=\"^(?:.*\\.)?simpel.nl$\" name=\".*\"/><securecookie host=\"^(?:.*\\.)?mijnsimpel.nl$\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Simple Machines\" f=\"simplemachines.xml\"><exclusion pattern=\"^http://media\\.simplemachinesweb\\.com/$\"/><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SimpleSAMLphp.org\" f=\"simplesamlphp.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"simplewebrtc.com\" default_off=\"failed ruleset test\" f=\"simplewebrtc.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Simplify Digital.co.uk\" platform=\"mixedcontent\" f=\"simplifydigital.co.uk.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Simply Zesty.com (partial)\" f=\"simplyzesty.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"simtechdev.ru\" default_off=\"failed ruleset test\" f=\"simtechdev.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sirin Labs.com\" f=\"sirinlabs.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:incap_ses|nlbi|visid_incap)_\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SirsiDynix.com (resources)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"sirsidynix.com-resources.xml\"><exclusion pattern=\"^http://go\\.sirsidynix\\.com/(?!/*(?:cs|image|r)s/)\"/><rule from=\"^http://go\\.sirsidynix\\.com/\" to=\"https://na-ab02.marketo.com/\"/></ruleset>", "<ruleset name=\"SirsiDynix.com (partial)\" default_off=\"failed ruleset test\" f=\"sirsidynix.com.xml\"><exclusion pattern=\"^http://go\\.sirsidynix\\.com/(?!/*rs/.+\\.(?:docx?|pdf)(?:$|\\?))\"/><securecookie host=\"^(?!go\\.)\\w\" name=\".\"/><rule from=\"^http://go\\.sirsidynix\\.com/\" to=\"https://na-ab02.marketo.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sitejam.com\" default_off=\"missing certificate chain\" f=\"sitejam.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://sitejam\\.com/\" to=\"https://www.sitejam.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SiteLabs.co.uk\" default_off=\"failed ruleset test\" f=\"sitelabs.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sitesoft.ru\" f=\"sitesoft.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Six Apart.com\" f=\"sixapart.com.xml\"><rule from=\"^http://(?:www\\.)?sixapart\\.com/.*\" to=\"https://movabletype.com/\"/><rule from=\"^http://help\\.sixapart\\.com/\" to=\"https://movabletype.com/\"/></ruleset>", "<ruleset name=\"siz.ch\" f=\"siz.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SJPL.org\" f=\"sjpl.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sk.ru\" f=\"sk.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SKA Telescope.org (partial)\" f=\"skatelescope.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Skeptoid.com\" f=\"skeptoid.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.skeptoid\\.com/\" to=\"https://skeptoid.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Falls Creek Lift (partial)\" f=\"skifalls.com.au.xml\"><securecookie host=\"estore\\.skifalls\\.com\\.au$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Skift.com\" default_off=\"failed ruleset test\" f=\"skift.com.xml\"><securecookie host=\"^\\.\" name=\"_(?:gat?$|gat_|_qca$)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Skills Development Scotland.co.uk\" f=\"skillsdevelopmentscotland.co.uk.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://skillsdevelopmentscotland\\.co\\.uk/\" to=\"https://www.skillsdevelopmentscotland.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sknt.ru\" default_off=\"failed ruleset test\" f=\"sknt.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ŠKOLA ONLINE a.s.\" f=\"skolaonline.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Skycure.com (partial)\" f=\"skycure.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"skyline.tw\" f=\"skyline.tw.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Skytal.es\" default_off=\"failed ruleset test\" f=\"skytal.es.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"slant.co\" f=\"slant.co.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Slashdot.org (false MCB)\" platform=\"mixedcontent\" f=\"slashdot.org-falsemixed.xml\"><securecookie host=\"^\\.\" name=\"^__qca$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sledcom.ru\" f=\"sledcom.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SLiMG\" default_off=\"failed ruleset test\" f=\"sli.mg.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SlimerJS\" f=\"slimerjs.org.xml\"><securecookie host=\"^.*\\.?slimerjs\\.org$\" name=\".+\"/><rule from=\"^http://(www\\.)?slimerjs\\.org/\" to=\"https://slimerjs.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Soulseek\" f=\"slsknet.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"smart-DSL GmbH\" f=\"smart-DSL.xml\"><rule from=\"^http://(www\\.)?smart\\-dsl\\.net/\" to=\"https://www.smartone.de/\"/><rule from=\"^http://(www\\.)?smartone\\.de/\" to=\"https://www.smartone.de/\"/></ruleset>", "<ruleset name=\"Smart-Places.org\" f=\"smart-places.org.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"smart-soft.ru\" f=\"smart-soft.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"smartbear.com\" f=\"smartbear.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"smartcity.taipei\" f=\"smartcity.taipei.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"smarthead.ru\" f=\"smarthead.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"smartmontools.org\" f=\"smartmontools.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"smava\" f=\"smava.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"smeserver.org\" f=\"smeserver.org.xml\"><rule from=\"^http://www\\.smeserver\\.org/\" to=\"https://smeserver.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"smile-net.ru (partial)\" f=\"smile-net.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Smokefree.gov (partial)\" f=\"smokefree.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^_gat?$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Smoozed.com\" f=\"smoozed.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"smozaika.ru\" f=\"smozaika.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sms-online.co\" f=\"sms-online.co.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"smsreceiveonline.com\" f=\"smsreceiveonline.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"snag.gy\" f=\"snag.gy.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"snap-ci.com\" default_off=\"failed ruleset test\" f=\"snap-ci.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Snap Surveys.com\" f=\"snapsurveys.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^_gat?$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sneaker Freaker.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"sneakerfreaker.com-falsemixed.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid$|__qca$|_gat?$|_gat_|cf_clearance$)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sneaker Freaker.com (partial)\" f=\"sneakerfreaker.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid$|__qca$|_gat?$|_gat_|cf_clearance$)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sneakers Addict.com\" f=\"sneakersaddict.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SNS.gov.uk\" default_off=\"failed ruleset test\" f=\"sns.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.sns\\.gov\\.uk/\" to=\"https://admin.sns.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"snssdk.com\" f=\"snssdk.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"snyk.io\" f=\"snyk.io.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"so36.NET\" f=\"so36.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sobytiya.info\" default_off=\"failed ruleset test\" f=\"sobytiya.info.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Social Democrats.ie\" f=\"socialdemocrats.ie.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid$|_ga|cf_clearance$)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"softline.ru (partial)\" f=\"softline.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Softnik.com\" f=\"softnik.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"software.ac.uk\" f=\"software.ac.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sojern.com\" f=\"sojern.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"soku.com\" f=\"soku.com.xml\"><rule from=\"^http://static\\.soku\\.com/\" to=\"https://static.youku.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sol.no (partial)\" default_off=\"failed ruleset test\" f=\"sol.no.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"solanolabs.com\" f=\"solanolabs.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"solariz.de\" f=\"solarizde.xml\"><securecookie host=\"^solariz\\.de$\" name=\".+\"/><rule from=\"^http://(?:www\\.)?solariz\\.de/\" to=\"https://solariz.de/\"/></ruleset>", "<ruleset name=\"solidarites.ch\" f=\"solidarites.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"solydxk.com\" default_off=\"failed ruleset test\" f=\"solydxk.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SomaFM\" f=\"somafm.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Songkick\" f=\"songkick.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://songkick\\.com/\" to=\"https://www.songkick.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sony.co.uk (partial)\" default_off=\"needs clearnet testing\" f=\"sony.co.uk.xml\"><exclusion pattern=\"^http://(?:www\\.)?sony\\.co\\.uk/(?!bravia/|res/)\"/><rule from=\"^http://outlet\\.sony\\.co\\.uk/\" to=\"https://centresdirect.co.uk/c-66-Refurbished.aspx\"/><exclusion pattern=\"^http://outlet\\.sony\\.co\\.uk/(?!$)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"soobi.org\" f=\"soobi.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Soom.cz\" f=\"soom.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"soso.com\" f=\"soso.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sostav.ru (partial)\" f=\"sostav.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sourcefoundry.org\" f=\"sourcefoundry.org.xml\"><securecookie host=\"^(www\\.)?sourcefoundry\\.org$\" name=\".+\"/><rule from=\"^http(s)?://www.sourcefoundry.org/\" to=\"https://sourcefoundry.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sourcemod.net\" f=\"sourcemod.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"South-Wales.Police.uk (partial)\" default_off=\"failed ruleset test\" f=\"south-wales.police.uk.xml\"><securecookie host=\"^\\.www\\.\" name=\".\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"South Downs.gov.uk (partial)\" f=\"southdowns.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Southend-on-the-move.org.uk\" default_off=\"failed ruleset test\" f=\"southend-on-the-move.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"South Oxon.gov.uk (partial)\" f=\"southoxon.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"South Ribble.gov.uk (partial)\" default_off=\"mismatched\" f=\"southribble.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"southrivertech.com\" f=\"southrivertech.com.xml\"><rule from=\"^http://(www\\.)?southrivertechnologies\\.com/\" to=\"https://$1southrivertech.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sovcombank.ru\" default_off=\"failed ruleset test\" f=\"sovcombank.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sovrn.com\" f=\"sovrn.com.xml\"><securecookie host=\"^\\.\" name=\"(?:^_gat?$|^_gat_|^mp_|mixpanel$|^optimizely)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sovsekretno.ru\" f=\"sovsekretno.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spacecraft.co.uk\" default_off=\"failed ruleset test\" f=\"spacecraft.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spacecraft.Digital\" f=\"spacecraft.digital.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SpaceNews.com\" default_off=\"failed ruleset test\" f=\"spacenews.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SpamCop\" f=\"spamcop.xml\"><rule from=\"^http://(www\\.)?spamcop\\.net/\" to=\"https://www.spamcop.net/\"/></ruleset>", "<ruleset name=\"sparanoid\" f=\"sparanoid.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SpareBank 1.no (partial)\" default_off=\"failed ruleset test\" f=\"sparebank1.no.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"spark-com.ru (partial)\" f=\"spark-com.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sparkasse.at (partial)\" f=\"sparkasse.at.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"spdb.com.cn\" default_off=\"failed ruleset test\" f=\"spdb.com.cn.xml\"><rule from=\"^http://eservice\\.spdb\\.com\\.cn/$\" to=\"https://eservice.spdb.com.cn/eservice/welcome.do\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"spdbccc.com.cn\" f=\"spdbccc.com.cn.xml\"><exclusion pattern=\"^http://cardsonline\\.spdbccc\\.com\\.cn/$\"/><exclusion pattern=\"^http://ecentre\\.spdbccc\\.com\\.cn/$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spectator.co.uk (false MCB)\" platform=\"mixedcontent\" f=\"spectator.co.uk-mixedcontent.xml\"><exclusion pattern=\"^http://(?:www\\.)?spectator\\.co\\.uk/comic(?:$|[?/])\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spectator.co.uk (partial)\" f=\"spectator.co.uk.xml\"><rule from=\"^https?://cdn\\.spectator\\.co\\.uk/\" to=\"https://d31orrwkxpucnl.cloudfront.net/\"/><rule from=\"^https?://cdn2\\.spectator\\.co\\.uk/\" to=\"https://d35f2nn85hoamp.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Speech-Language-Therapy-Jobs.org\" f=\"speech-language-therapy-jobs.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"speech.leseweb.dk\" f=\"speech.leseweb.dk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Speedwell Software.com\" f=\"speedwellsoftware.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"speedyline.ru\" default_off=\"failed ruleset test\" f=\"speedyline.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spektrix.com\" f=\"spektrix.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spelthorne.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"spelthorne.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spendvision.com\" f=\"spendvision.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://spendvision\\.com/\" to=\"https://www.spendvision.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sphere.ly (partial)\" f=\"sphere.ly.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"spkrb.de\" default_off=\"failed ruleset test\" f=\"spkrb.de.xml\"><securecookie host=\"^(?:www\\.|info\\.|banking\\.)?spkrb\\.de$\" name=\".*\"/><rule from=\"^http://(?:www\\.|info\\.)?spkrb\\.de/\" to=\"https://info.spkrb.de/\"/><rule from=\"^http://banking\\.spkrb\\.de/\" to=\"https://banking.spkrb.de/\"/></ruleset>", "<ruleset name=\"splitpdf.com\" f=\"splitpdf.com.xml\"><securecookie host=\"^www\\.splitpdf\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"spnet.ru\" f=\"spnet.ru.xml\"><rule from=\"^http://www\\.spnet\\.ru/\" to=\"https://spnet.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spongecell.com (partial)\" f=\"spongecell.com.xml\"><exclusion pattern=\"^http://www\\.spongecell\\.com/(?!/*(?:favicon\\.ico|sites/))\"/><exclusion pattern=\"^http://www2\\.spongecell\\.com/(?!/*(?:$|\\?|[el]/))\"/><securecookie host=\"^\\.\" name=\"^spongekey$\"/><securecookie host=\"^(?!www2?\\.)\\w\" name=\".\"/><rule from=\"^http://www2\\.spongecell\\.com/+(?:\\?.*)?$\" to=\"https://www.spongecell.com/\"/><rule from=\"^http://www2\\.spongecell\\.com/\" to=\"https://go.pardot.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sport-express.ru\" default_off=\"failed ruleset test\" f=\"sport-express.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sportbox.ru\" default_off=\"failed ruleset test\" f=\"sportbox.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sportdepot.co.il\" f=\"sportdepot.co.il.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sportmaster.ru\" f=\"sportmaster.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sportradar.com (partial)\" f=\"sportradar.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sporx.com (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"sporx.com.xml\"><securecookie host=\"^\\.\" name=\"_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://mdcdn\\.sporx\\.com/\" to=\"https://img-sporx.mncdn.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Spotlight\" f=\"spotlight-media.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Springer.com (false MCB)\" platform=\"mixedcontent\" f=\"springer.com-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sprinklr.com\" f=\"sprinklr.com.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SPŠCHG Ostrava\" f=\"spsch.eu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sputnik News.com\" f=\"sputniknews.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"spydus.co.uk\" f=\"spydus.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Square CDN.com\" f=\"squarecdn.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"squat.gr (partial)\" f=\"squat.gr.xml\"><exclusion pattern=\"http://(?:[^./]+\\.){2,}squat\\.gr/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"squat.net (partial)\" f=\"squat.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.([^.]+)\\.squat\\.net/\" to=\"https://$1.squat.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"srad.jp\" f=\"srad.jp.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SRG SSR\" default_off=\"failed ruleset test\" f=\"srg-ssr.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"srv2020real.com\" f=\"srv2020real.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.srv2020real\\.com/\" to=\"https://secure.leadforensics.com/\"/></ruleset>", "<ruleset name=\"SSA.gov\" f=\"ssa.gov.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ssk.uk.com\" f=\"ssk.uk.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SSL-Tools.net\" f=\"ssl-tools.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sspai.com\" f=\"sspai.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SSPL.org (partial)\" f=\"sspl.org.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SStaffs.gov.uk (partial)\" f=\"sstaffs.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SS USA.org\" f=\"ssusa.org.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"st.uz\" default_off=\"failed ruleset test\" f=\"st.uz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"st65.ru (partial)\" default_off=\"failed ruleset test\" f=\"st65.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"stableit.ru\" f=\"stableit.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"stackedit.io\" f=\"stackedit.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"StackPath.com\" default_off=\"failed ruleset test\" f=\"stackpath.com.xml\"><exclusion pattern=\"^http://(?:[^./]+\\.){2}app\\.stackpath\\.com/\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"stadium.ru\" f=\"stadium.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stämpfli Verlag\" f=\"staempfliverlag.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stafford BC.gov.uk (partial)\" f=\"staffordbc.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"St Albans.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"stalbans.gov.uk.xml\"><securecookie host=\"^(?!search\\.)\\w\" name=\".\"/><rule from=\"^http://search\\.stalbans\\.gov\\.uk/\" to=\"https://search3.openobjects.com/\"/><exclusion pattern=\"^http://search\\.stalbans\\.gov\\.uk/(?!.+/includes/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"stalkscan.com\" f=\"stalkscan.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"stamus-networks.com\" f=\"stamus-networks.com.xml\"><rule from=\"^http://stamus-networks\\.com/\" to=\"https://www.stamus-networks.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Starfish Solutions.com (partial)\" f=\"starfishsolutions.com.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"starlink.ru (partial)\" f=\"starlink.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Startovač\" f=\"startovac.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"startsmile.ru\" f=\"startsmile.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"State.gov (false MCB)\" platform=\"mixedcontent\" f=\"state.gov-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Statistics.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"statistics.gov.uk.xml\"><exclusion pattern=\"^http://www\\.statistics\\.gov\\.uk/+(?!$|\\?)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.statistics\\.gov\\.uk/.*\" to=\"https://www.gov.uk/government/statistics/announcements\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"status.io\" default_off=\"failed ruleset test\" f=\"status.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"stavklass.ru\" f=\"stavklass.ru.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stay in the Know.co.uk\" f=\"stayintheknow.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"stealthy.co\" default_off=\"failed ruleset test\" f=\"stealthy.co.xml\"><rule from=\"^http://stealthy\\.co/\" to=\"https://www.stealthy.co/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"steamstat.ru\" default_off=\"failed ruleset test\" f=\"steamstat.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"steamstat.us\" f=\"steamstat.us.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stella Dot CDN.com\" f=\"stelladotcdn.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://s3static\\.stelladotcdn\\.com/\" to=\"https://s3.amazonaws.com/com.stelladot.static/\"/></ruleset>", "<ruleset name=\"stelligent.com\" f=\"stelligent.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ste williams.com\" f=\"stewilliams.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"StGeorge.com.au (partial)\" f=\"stgeorge.com.au.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"stihi.ru\" f=\"stihi.ru.xml\"><rule from=\"^http://new\\.stihi\\.ru/\" to=\"https://www.stihi.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stockport.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"stockport.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stoke.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"stoke.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"stoloto.ru (partial)\" f=\"stoloto.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stonewall.org.uk (partial)\" f=\"stonewall.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stonewall Cymru.org.uk\" f=\"stonewallcymru.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stonewall Scotland.org.uk\" f=\"stonewallscotland.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Storehouse.co (partial)\" default_off=\"failed ruleset test\" f=\"storehouse.co.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Strana.ua\" f=\"strana.ua.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://amp\\.strana\\.ua/\" to=\"https://strana.ua/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Strange Remains.com\" f=\"strangeremains.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"StrategyPage.com\" f=\"strategypage.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stratford.gov.uk\" f=\"stratford.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Streak.com (partial)\" f=\"streak.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://streak\\.com/\" to=\"https://www.streak.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"StreamAMG.com\" default_off=\"failed ruleset test\" f=\"streamamg.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Streamline.com\" f=\"streamline.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://streamline\\.com/\" to=\"https://www.streamline.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"StreamUK.com (partial)\" f=\"streamuk.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?streamuk\\.com/+\" to=\"https://www.streamamg.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Street Epistemology\" f=\"streetepistemology.xml\"><rule from=\"^http://www\\.streetepistemology\\.com/\" to=\"https://streetepistemology.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Streetlife.com\" f=\"streetlife.com.xml\"><securecookie host=\"^\\.\" name=\"^_qca$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Streetlink.org.uk\" default_off=\"mismatched\" f=\"streetlink.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"strelatelecom.ru (partial)\" f=\"strelatelecom.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"stresslinux.org\" f=\"stresslinux.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Stripchat.com\" f=\"stripchat.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"strongSwan\" f=\"strongSwan.xml\"><securecookie host=\"^(?:.*\\.)?strongswan\\.org$\" name=\".+\"/><rule from=\"^http://(\\w+\\.)?strongswan\\.org/\" to=\"https://$1strongswan.org/\"/></ruleset>", "<ruleset name=\"Student Privacy Pledge.org\" f=\"studentprivacypledge.org.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Study in Sweden.se\" f=\"studyinsweden.se.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"studyjamscn.com\" f=\"studyjamscn.com.xml\"><rule from=\"^http://studyjamscn\\.com/\" to=\"https://www.studyjamscn.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"stuffgate.com\" f=\"stuffgate.com.xml\"><rule from=\"^http://www\\.stuffgate\\.com/\" to=\"https://stuffgate.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sub.FM\" f=\"sub.fm.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sublime Textbook.com\" f=\"sublimetextbook.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.sublimetextbook\\.com/\" to=\"https://sublimetextbook.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Submittable.com (partial)\" f=\"submittable.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"subnet05.ru\" f=\"subnet05.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Subscene.com\" f=\"subscene.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Subscribe on Android.com\" f=\"subscribeonandroid.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"subtraxion.com\" default_off=\"failed ruleset test\" f=\"subtraxion.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sudact.ru\" f=\"sudact.ru.xml\"><rule from=\"^http://mail\\.sudact\\.ru/\" to=\"https://sudact.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sumatrapdfreader.org\" f=\"sumatrapdfreader.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sumo.com\" f=\"sumo.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sumome.com\" f=\"sumome.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sumtel.ru\" default_off=\"failed ruleset test\" f=\"sumtel.ru.xml\"><rule from=\"^http://www\\.sumtel\\.ru/\" to=\"https://sumtel.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sundance.TV (partial)\" platform=\"mixedcontent\" f=\"sundance.tv.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://sundance\\.tv/\" to=\"https://www.sundance.tv/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sunmotors.co.uk\" default_off=\"failed ruleset test\" f=\"sunmotors.co.uk.xml\"><exclusion pattern=\"^http://(?:www\\.)?sunmotors\\.co\\.uk/(?!/*(?:account(?:$|[?/])|motors-cdn/))\"/><securecookie host=\"^\\.\" name=\"_ga(?:t?$|t_)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Suntech.cz\" f=\"suntech.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Suomi.fi\" f=\"suomi.fi.xml\"><securecookie host=\"^[^@:/\\.]+\\.suomi\\.fi\" name=\".+\"/><rule from=\"^http://((?:www|asiointitili|tunnistus)\\.)?suomi\\.fi/\" to=\"https://$1suomi.fi/\"/></ruleset>", "<ruleset name=\"Supagro.fr\" f=\"supagro.fr.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SuperBreak.com\" f=\"superbreak.com.xml\"><securecookie host=\".\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Superdesk.org\" f=\"superdesk.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Superstranka.cz\" f=\"superstranka.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Surrey CC.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"surreycc.gov.xml\"><securecookie host=\"^\\.classic\\.\" name=\".\"/><securecookie host=\"^\\.\" name=\"^(?:_gat?$|_gat_|incap_|nlbi_|visid_incap_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Surreyheath-Online.gov.uk (partial)\" f=\"surreyheath-online.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.public\\.surreyheath-online\\.gov\\.uk/\" to=\"https://www.staffportal.surreyheath-online.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Surrey Heath.gov.uk (partial)\" f=\"surreyheath.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Surrey Outdoor Learning.uk\" f=\"surreyoutdoorlearning.uk.xml\"><securecookie host=\"^\\.\" name=\"^(?:incap|visid_incap)_\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"surveyserver.net\" f=\"surveyserver.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"suspiciousumbrella.uk\" default_off=\"failed ruleset test\" f=\"suspiciousumbrella.uk.xml\"><securecookie host=\"^.*\\.suspiciousumbrella\\.uk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sustrans.org.uk (partial)\" f=\"sustrans.org.uk.xml\"><exclusion pattern=\"^http://(?:www\\.)?sustrans\\.org\\.uk/(?!/*(?:misc|sites)/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sutton.gov.uk\" f=\"sutton.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sutton Homechoice.org.uk\" f=\"suttonhomechoice.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://suttonhomechoice\\.org\\.uk/\" to=\"https://www.suttonhomechoice.org.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sutton Housing Partnership.org.uk (partial)\" f=\"suttonhousingpartnership.org.uk.xml\"><exclusion pattern=\"^http://(?:www\\.)?suttonhousingpartnership\\.org\\.uk/(?!/*(?:Document|Image|SiteElement)s/)\"/><securecookie host=\"^(?!www\\.)\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"suumo.com\" f=\"suumo.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SVA Zürich\" f=\"svazuerich.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"svoboda.org\" f=\"svoboda.org.xml\"><rule from=\"^http://svoboda\\.org/\" to=\"https://www.svoboda.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"svyaznoy.ru\" f=\"svyaznoy.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Straßenverkehrszentrale Baden-Württemberg\" f=\"svz-bw.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"svzt.ru (partial)\" f=\"svzt.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Swale.gov.uk (false MCB)\" platform=\"mixedcontent\" f=\"swale.gov.uk-falsemixed.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Swale.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"swale.gov.uk.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Swarm app.com\" f=\"swarmapp.com.xml\"><securecookie host=\"^\\.\" name=\"^bbhive$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SWAT Mag.com\" f=\"swatmag.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"swiss-prime-site.ch\" f=\"swiss-prime-site.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Schweizer Regierung\" f=\"swissgov.xml\"><securecookie host=\"^www\\.somed\\.bfs\\.admin\\.ch$\" name=\".+\"/><exclusion pattern=\"http://www.efk.admin.ch/$\"/><rule from=\"^http://be\\.ch/\" to=\"https://www.be.ch/\"/><rule from=\"^http://jura\\.ch/\" to=\"https://www.jura.ch/\"/><rule from=\"^http://sh\\.ch/\" to=\"https://www.sh.ch/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"swtch.com\" f=\"swtch.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sydney.edu.au (partial)\" default_off=\"failed ruleset test\" f=\"sydney.edu.au.xml\"><securecookie host=\"^(?:\\w|\\.whatson\\.)\" name=\".\"/><securecookie host=\"^\\.\" name=\"^_(?:gat?$|_utm)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"syllable.org\" platform=\"mixedcontent\" f=\"syllable.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"symphonyos.com\" f=\"symphonyos.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SynapsePay (partial)\" f=\"synapsepay.com.xml\"><securecookie host=\"^(discuss|docs)\\.synapsepay\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"syncaccess.net\" f=\"syncaccess.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sysadmins.ru\" f=\"sysadmins.ru.xml\"><rule from=\"^http://forum\\.sysadmins\\.ru/\" to=\"https://sysadmins.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sysax.com\" platform=\"mixedcontent\" f=\"sysax.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SyScan360.org\" f=\"syscan360.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Sysdig.com\" f=\"sysdig.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.sysdig\\.com/\" to=\"https://sysdig.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"sysprovide (partial)\" platform=\"mixedcontent\" f=\"sysprovide.xml\"><securecookie host=\".*\\.sysproserver\\.de$\" name=\".*\"/><securecookie host=\"^www\\.sysprovide\\.de$\" name=\".*\"/><rule from=\"^http://(srv|webmail)(\\d\\d)\\.sysproserver\\.de/\" to=\"https://$1$2.sysproserver.de/\"/><rule from=\"^http://(www\\.)?sysprovide\\.de/\" to=\"https://$1sysprovide.de/\"/></ruleset>", "<ruleset name=\"System-Rescue-Cd.org\" default_off=\"failed ruleset test\" f=\"system-rescue-cd.org.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"szfw.org (partial)\" f=\"szfw.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"T-Analytics.com\" f=\"t-analytics.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"T-mobilebankowe.pl (partial)\" default_off=\"failed ruleset test\" f=\"t-mobilebankowe.pl.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://konto\\.t-mobilebankowe\\.pl/[^?]*\" to=\"https://www.t-mobilebankowe.pl/porownywarka-kont\"/><exclusion pattern=\"^http://konto\\.t-mobilebankowe\\.pl/+(?!$|\\?)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"t-ru.org (partial)\" f=\"t-ru.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"t2-project.org\" f=\"t2-project.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"t66y.com\" f=\"t66y.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"t6k.co\" f=\"t6k.co.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tab-Beim-Bundestag.de\" f=\"tab-beim-bundestag.de.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://tab-beim-bundestag\\.de/\" to=\"https://www.tab-beim-bundestag.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TA CDN.com\" f=\"tacdn.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tactical secret.com\" f=\"tacticalsecret.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"taganrogprav.ru\" f=\"taganrogprav.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tagboard.com (partial)\" f=\"tagboard.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://account\\.tagboard\\.com/$\" to=\"https://account.tagboard.com/u/\"/><rule from=\"^http://account\\.tagboard\\.com/\\?.*\" to=\"https://account.tagboard.com/search\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tagesschau.de (partial)\" f=\"tagesschau.de.xml\"><securecookie host=\"^www\\.tagesschau\\.de$\" name=\".+\"/><exclusion pattern=\"^http://wetter\\.tagesschau\\.de/unwetter\"/><rule from=\"^http://tagesschau\\.de/\" to=\"https://www.tagesschau.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tagilka.ru\" f=\"tagilka.ru.xml\"><rule from=\"^http://www\\.tagilka\\.ru/\" to=\"https://tagilka.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"taiget.ru\" f=\"taiget.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Taiwan Trade Shows.com.tw\" f=\"taiwantradeshows.com.tw.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"takevoucher.com\" f=\"takevoucher.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"talentbrew.com\" f=\"talentbrew.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Talkable.com (partial)\" f=\"talkable.com.xml\"><securecookie host=\"^\\.\" name=\"^_ga\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"talks.by\" f=\"talks.by.xml\"><rule from=\"^http://www\\.talks\\.by/\" to=\"https://talks.by/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tameside.gov.uk (MCB)\" platform=\"mixedcontent\" f=\"tameside.gov.uk-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tameside.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"tameside.gov.uk.xml\"><exclusion pattern=\"http://whatson\\.tameside\\.gov\\.uk/+(?!Account/|[Cc]ommunity[Gg]roup/|Content/|EmailSubscription/|Event/(?:Recurrence|Thumbnail)/|eventscalendar/)\"/><securecookie host=\"^(?!whatson\\.)\\w\" name=\".\"/><rule from=\"^http://adultportal\\.tameside\\.gov\\.uk:14500/\" to=\"https://adultportal.tameside.gov.uk:14500/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tamworth.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"tamworth.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tanx.com (partial)\" f=\"tanx.com.xml\"><exclusion pattern=\"^http://mu\\.tanx\\.com/index\\.htm\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tapochek.net\" f=\"tapochek.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tattelecom.ru (partial)\" f=\"tattelecom.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TAW.org.uk (partial)\" f=\"taw.org.uk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TCS Schweiz (partial)\" f=\"tcs.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tdnetdiscover.com\" f=\"tdnetdiscover.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"te-st.ru\" f=\"te-st.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Teachable.com (partial)\" f=\"teachable.com.xml\"><securecookie host=\".\" name=\"^optimizely\"/><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://status\\.teachable\\.com/\" to=\"https://teachable.statuspage.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Teachers Pensions.co.uk (partial)\" default_off=\"failed ruleset test\" f=\"teacherspensions.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://teacherspensions\\.co\\.uk/\" to=\"https://www.www.teacherspensions.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"team29.org\" f=\"team29.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Team Fortress (partial)\" f=\"teamfortress.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"teamup.com\" f=\"teamup.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TeaTime.FM\" f=\"teatime.fm.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tech Anarchy.net\" f=\"techanarchy.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TechnoBase.FM\" f=\"technobase.fm.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"technologyconversations.com\" f=\"technologyconversations.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TechnologyReview.in\" f=\"technologyreview.in.xml\"><rule from=\"^http://(?:www\\.)?technologyreview\\.in/+\" to=\"https://www.technologyreview.com/\"/></ruleset>", "<ruleset name=\"telebasel.ch\" platform=\"mixedcontent\" f=\"telebasel.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"teleguide.info\" default_off=\"failed ruleset test\" f=\"teleguide.info.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"telenet.ru (partial)\" f=\"telenet.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"teleport2001.ru\" f=\"teleport2001.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"telesign.com\" default_off=\"failed ruleset test\" f=\"telesign.com.xml\"><securecookie host=\"^\\.\" name=\"_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TeleTrusT.de\" f=\"teletrust.de.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://teletrust\\.de/\" to=\"https://www.teletrust.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Telford.gov.uk (false MCB)\" platform=\"mixedcontent\" f=\"telford.gov.uk-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://securetheatre\\.telford\\.gov\\.uk/.*\" to=\"https://theplacetelford.com/\"/></ruleset>", "<ruleset name=\"Telford.gov.uk (partial)\" f=\"telford.gov.uk.xml\"><securecookie host=\"^\\.\" name=\"^cadata\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://consult\\.telford\\.gov\\.uk/\" to=\"https://telford-consult.objective.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TellApart.com\" f=\"tellapart.com.xml\"><securecookie host=\"^\\.\" name=\"^_\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tellme Scotland.gov.uk\" f=\"tellmescotland.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"terrariaotherworld.com\" f=\"terrariaotherworld.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tersee\" default_off=\"failed ruleset test\" f=\"tersee.xml\"><rule from=\"^http://([^/:@]+\\.)?tersee\\.com/\" to=\"https://$1tersee.com/\"/><securecookie host=\"^(?:.+\\.)?tersee\\.com$\" name=\".*\"/></ruleset>", "<ruleset name=\"TES Global.com\" default_off=\"failed ruleset test\" f=\"tesglobal.com.xml\"><securecookie host=\"^\\.\" name=\"^_ga\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tesla.com (partial)\" f=\"tesla.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:_gat?$|_gat_|optimizely)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"test\" f=\"test.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Testament-Erbe-und-Pflichtteil.de\" f=\"testament-erbe-und-pflichtteil.de.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Testfabrik.com\" f=\"testfabrik.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"testling.com (partial)\" f=\"testling.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Teta drogerie\" f=\"tetadrogerie.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TextMechanic.com\" platform=\"mixedcontent\" f=\"textmechanic.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tfgamessite.com\" f=\"tfgamessite.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tfm.ro (partial)\" f=\"tfm.ro.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Thames Valley.Police.uk (partial)\" f=\"thamesvalley.police.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Thames Valley Alert.co.uk\" f=\"thamesvalleyalert.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"THCServers.com (partial)\" f=\"thcservers.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"the-I.de\" f=\"the-i.de.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The42.ie\" f=\"the42.ie.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://the42\\.ie/\" to=\"https://www.the42.ie/\"/><rule from=\"^http://static\\.the42\\.ie/\" to=\"https://b0.thejournal.ie/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"theCHIVE.com\" f=\"theCHIVE.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Adult Hub.com (false MCB)\" platform=\"mixedcontent\" f=\"theadulthub.com-falsemixed.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Adult Hub.com (partial)\" f=\"theadulthub.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The American Genius.com\" f=\"theamericangenius.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Body Shop.id\" default_off=\"failed ruleset test\" f=\"thebodyshop.co.id.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Cipher Brief.com\" f=\"thecipherbrief.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Communication Trust.org.uk\" f=\"thecommunicationtrust.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TheCustomizeWindows.net\" f=\"thecustomizewindows.net.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http://(www\\.)?thecustomizewindows\\.net/\" to=\"https://thecustomizewindows.com/\"/></ruleset>", "<ruleset name=\"The Debrief.co.uk\" default_off=\"failed ruleset test\" f=\"thedebrief.co.uk.xml\"><securecookie host=\"^\\.\" name=\"_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Diplomat.com (resources)\" platform=\"mixedcontent\" f=\"thediplomat.com-resources.xml\"><exclusion pattern=\"^http://(?:www\\.)?thediplomat\\.com/(?!/*(?:ads/|dpl-web/|favicon\\.ico|wp-content/|wp-includes/))\"/><securecookie host=\"^\\.\" name=\"^(?:_gat?$|_gat_|__cfduid$)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Firing Line.com\" f=\"thefiringline.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|bbsessionhash|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Foreman.org (partial)\" f=\"theforeman.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Genealogist.co.uk\" f=\"thegenealogist.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"thegyllenhall.com\" f=\"thegyllenhall.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Hubpeople.com (partial)\" f=\"thehubpeople.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://cdna\\.thehubpeople\\.com/\" to=\"https://static-hubpeople.netdna-ssl.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Infosphere.org\" f=\"theinfosphere.org.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"theinquirer.net\" default_off=\"failed ruleset test\" f=\"theinquirer.net.xml\"><rule from=\"^http://research\\.theinquirer\\.net/\" to=\"https://www.theinquirer.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Lad Bible.com (partial)\" f=\"theladbible.com.xml\"><securecookie host=\"^\\.\" name=\"^_(?:_cfduid|gat?$|gat_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Lad Bible Group.com\" platform=\"mixedcontent\" f=\"theladbiblegroup.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Late Rooms Group.com\" f=\"thelateroomsgroup.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TheLayoff.com\" f=\"thelayoff.com.xml\"><securecookie host=\"www\\.thelayoff\\.com$\" name=\".+\"/><rule from=\"^http://thelayoff\\.com/\" to=\"https://www.thelayoff.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Local.at\" f=\"thelocal.at.xml\"><securecookie host=\"^\\.\" name=\"^_ga\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Local.ch (partial)\" f=\"thelocal.ch.xml\"><securecookie host=\"^\\.\" name=\"^_ga\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Local.de (partial)\" f=\"thelocal.de.xml\"><securecookie host=\"^\\.\" name=\"^_ga\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Local.dk\" f=\"thelocal.dk.xml\"><securecookie host=\"^\\.\" name=\"^_ga\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Local.es\" f=\"thelocal.es.xml\"><securecookie host=\"^\\.\" name=\"^_ga\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Local.fr (partial)\" f=\"thelocal.fr.xml\"><securecookie host=\"^\\.\" name=\"^_ga\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Local.it\" f=\"thelocal.it.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Local.no\" f=\"thelocal.no.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Local.se (partial)\" f=\"thelocal.se.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Moscow Times.com\" f=\"themoscowtimes.com.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.themoscowtimes\\.com/\" to=\"https://themoscowtimes.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Odds Bible.com\" f=\"theoddsbible.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Pensions Regulator.gov.uk (partial)\" f=\"thepensionsregulator.gov.uk.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://help\\.thepensionsregulator\\.gov\\.uk/\" to=\"https://tpr.metafaq.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"thephoenixbay.com\" default_off=\"failed ruleset test\" f=\"thephoenixbay.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Pirate Bay legacy\" f=\"thepiratebay-legacy.xml\"><rule from=\"^http://(www\\.)?piratebay\\.se/\" to=\"https://$1thepiratebay.org/\"/><rule from=\"^http://(www\\.)?thepiratebay\\.(?:gl|sx|ac|pe|gy|gs|la|vg|am|mn|gd|is)/\" to=\"https://$1thepiratebay.org/\"/></ruleset>", "<ruleset name=\"thepriatebay-proxylist.org\" f=\"thepiratebay-proxylist.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"thepirateportal.org\" f=\"thepirateportal.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Place Telford.com\" platform=\"mixedcontent\" f=\"theplacetelford.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.theplacetelford\\.com/\" to=\"https://theplacetelford.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Theravive.com\" platform=\"mixedcontent\" f=\"theravive.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The RealReal.com (partial)\" f=\"therealreal.com.xml\"><securecookie host=\".\" name=\"^optimizely\"/><securecookie host=\"^\\.\" name=\"^_(?:_qca$|gat?$|gat_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"therebellin.com\" f=\"therebellin.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"theregister.co.uk\" f=\"theregister.co.uk.xml\"><rule from=\"^http://theregister\\.co\\.uk/\" to=\"https://www.theregister.co.uk/\"/><rule from=\"^http://(books|downloads|edit|ns[1-6])\\.theregister\\.co\\.uk/\" to=\"https://www.theregister.co.uk/\"/><rule from=\"^http://comments\\.theregister\\.co\\.uk/\" to=\"https://forums.theregister.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"therunet.com\" f=\"therunet.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Science Geek.org\" f=\"thesciencegeek.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Scottish Sun.co.uk (partial)\" f=\"thescottishsun.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Theses.fr\" f=\"theses.fr.xml\"><rule from=\"^http://theses\\.fr/\" to=\"https://www.theses.fr/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Sport Bible.com\" f=\"thesportbible.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Sun.co.uk (partial)\" f=\"thesun.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Sun.ie (partial)\" f=\"thesun.ie.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Syria Campaign.org\" default_off=\"failed ruleset test\" f=\"thesyriacampaign.org.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Truth About Guns.com\" f=\"thetruthaboutguns.com.xml\"><securecookie host=\"^\\.\" name=\"^s_v\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"thinkmoney.co.uk\" f=\"thinkmoney.co.uk.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Think Up Themes.com\" platform=\"mixedcontent\" f=\"thinkupthemes.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Thirty Miles of Corruption.com\" f=\"thirtymilesofcorruption.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Thomas Hunter.name\" default_off=\"failed ruleset test\" f=\"thomashunter.name.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Thomson Innovation.com (partial)\" f=\"thomsoninnovation.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Thomson Reuters.com (resources)\" platform=\"mixedcontent\" f=\"thomsonreuters.com-resources.xml\"><exclusion pattern=\"^http://legalsolutions\\.thomsonreuters\\.com/(?!/*(?:favicon\\.ico|law-products/(?:_ui|onlineopinionV5|static|stylesheets)/|medias/))\"/><exclusion pattern=\"^http://uklawstudent\\.thomsonreuters\\.com/(?!/*wp-content/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Thomson Reuters.com.ar\" f=\"thomsonreuters.com.ar.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ThreatMatrix.com\" default_off=\"failed ruleset test\" f=\"threatmatrix.com.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"thregr.org\" f=\"thregr.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Thrillist.com\" f=\"thrillist.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:_gat?$|_gat_|PINNF$)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://thrillist\\.com/\" to=\"https://www.thrillist.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"thumbalizr\" f=\"thumbalizr.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tibia.com\" f=\"tibia.com.xml\"><rule from=\"^http://forum\\.tibia\\.com/$\" to=\"https://secure.tibia.com/forum/\"/><rule from=\"^http://(www|forum)\\.tibia\\.com/\" to=\"https://secure.tibia.com/\"/><rule from=\"^http://forum\\.test\\.tibia\\.com/$\" to=\"https://secure.test.tibia.com/forum/\"/><rule from=\"^http://(www|forum)\\.test\\.tibia\\.com/\" to=\"https://secure.test.tibia.com/\"/><securecookie host=\"^secure\\.(test\\.)?tibia\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tibiamaps.io\" f=\"tibiamaps.io.xml\"><rule from=\"^http://(?:www\\.)?tibiamaps\\.io/\" to=\"https://tibiamaps.io/\"/><securecookie host=\"^tibiamaps\\.io$\" name=\".*\"/></ruleset>", "<ruleset name=\"Tibus.com (partial)\" f=\"tibus.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ticket4u\" default_off=\"failed ruleset test\" f=\"ticket4u.xml\"><securecookie host=\"^(www\\.)?ticket4u\\.com\\.my$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TicketSource.co.uk (partial)\" f=\"ticketsource.co.uk.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid$|_ga|cf_clearance$)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tiera.ru (partial)\" f=\"tiera.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tifbs.net\" f=\"tifbs.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"times.am\" f=\"times.am.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tinkernut.com\" f=\"tinkernut.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tinymce.com\" f=\"tinymce.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TipeeeStream.com\" f=\"tipeeestream.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tippebannere.no\" f=\"tippebannere.no.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tiras.ru\" f=\"tiras.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tivision.ru\" f=\"tivision.ru.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tkgorod.ru\" default_off=\"failed ruleset test\" f=\"tkgorod.ru.xml\"><rule from=\"^http://www\\.tkgorod\\.ru/\" to=\"https://tkgorod.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TLA Secure.com\" f=\"tlasecure.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://tlasecure\\.com/\" to=\"https://www.tlasecure.com/\"/><rule from=\"^http://static\\.tlasecure\\.com/\" to=\"https://images.tlasecure.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tldpros.com\" f=\"tldpros.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tldr.io (partial)\" default_off=\"missing certificate chain\" f=\"tldrio.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tlgrm.ru\" f=\"tlgrm.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tmall.com (partial)\" f=\"tmall.com.xml\"><rule from=\"^http://tmall\\.com/\" to=\"https://www.tmall.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TMS-Media.co.uk (partial)\" default_off=\"failed ruleset test\" f=\"tms-media.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TMS.pl\" f=\"tms.pl.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\"\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tn123.org\" f=\"tn123.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tns-cs.net (partial)\" f=\"tns-cs.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://(\\w+)\\.tns-cs\\.net/\" to=\"https://ssl-$1.tns-cs.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tnwcdn.com (partial)\" f=\"tnwcdn.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Together Trust.org.uk (partial)\" f=\"togethertrust.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tokenly.com\" f=\"tokenly.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tokyo2020.jp\" f=\"tokyo2020.jp.xml\"><rule from=\"^http://www\\.tokyo2020\\.jp/\" to=\"https://tokyo2020.jp/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tomgate.net\" f=\"tomgate.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tomtel.ru (partial)\" f=\"tomtel.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tonicdev.com\" f=\"tonicdev.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tonmo.com\" f=\"tonmo.com.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tools4noobs.com\" f=\"tools4noobs.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"topg.org\" f=\"topg.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Toppreise.ch (partial)\" f=\"toppreise.ch.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Topshop.com (partial)\" default_off=\"failed ruleset test\" f=\"topshop.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__qca|_ga|s_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://insideout\\.topshop\\.com/+\" to=\"https://www.topshop.com/blog/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"topspb.tv\" f=\"topspb.tv.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Top Universities\" f=\"topuniversities.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"topwar.ru\" f=\"topwar.ru.xml\"><rule from=\"^http://www\\.topwar\\.ru/\" to=\"https://topwar.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tori.net (partial)\" platform=\"mixedcontent\" f=\"tori.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://media\\.tori\\.net/\" to=\"https://d38a5rkle4vfil.cloudfront.net/\"/></ruleset>", "<ruleset name=\"torrentdownload.ch\" f=\"torrentdownload.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TorrentDownloads\" f=\"torrentdownloads.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"torrenthound.com\" f=\"torrenthound.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Torrents-Time.com\" f=\"torrents-time.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Torrents.me\" f=\"torrents.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"torrentsstorage.net\" default_off=\"failed ruleset test\" f=\"torrentsstorage.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"torrentz.ht\" f=\"torrentz.ht.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"torrentz.site\" f=\"torrentz.site.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"torrentz2.eu\" f=\"torrentz2.eu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"toshiba-tec.com.cn\" f=\"toshiba-tec.com.cn.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TotalPolitics.com\" f=\"totalpolitics.com.xml\"><securecookie host=\"^\\.\" name=\"^_ga\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tough Choices.co.uk\" f=\"toughchoices.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"towelroot\" f=\"towelroot.xml\"><rule from=\"^http://(?:www\\.)?towelroot\\.com/\" to=\"https://towelroot.com/\"/></ruleset>", "<ruleset name=\"Tox Stats.com\" f=\"toxstats.com.xml\"><exclusion pattern=\"^http://(?:[^./]+\\.){2,}toxstats\\.com/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ToyNews-online.biz\" default_off=\"testing\" f=\"toynews-online.biz.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"toyou.co.uk\" f=\"toyou.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tpblist.xyz\" default_off=\"failed ruleset test\" f=\"tpblist.xyz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tpprf.ru\" f=\"tpprf.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TPU CDN.com\" f=\"tpucdn.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tqn.com\" f=\"tqn.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"traceroute-online.com\" f=\"traceroute-online.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tradeadexchange.com\" f=\"tradeadexchange.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TrafficJunky.com (partial)\" f=\"trafficjunky.com.xml\"><exclusion pattern=\"^http://(?:www\\.)?trafficjunky\\.com/(?!/*(?:member/forgotpassword|signin|signup)(?:$|\\?))\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"trafficrouter.io\" f=\"trafficrouter.io.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TrafficStars.com\" f=\"trafficstars.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Training Journal.com\" f=\"trainingjournal.com.xml\"><securecookie host=\"^\\.\" name=\"^_ga\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"trakt\" f=\"trakt.xml\"><securecookie host=\"^(\\.|www\\.)?trakt\\.tv$\" name=\".+\"/><securecookie host=\"^\\.?support\\.trakt\\.tv$\" name=\".*\"/><securecookie host=\"^\\.trakt\\.us$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TranceBase.FM\" f=\"trancebase.fm.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trane.com\" f=\"trane.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"transfer.sh\" default_off=\"failed ruleset test\" f=\"transfer.sh.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Transip\" f=\"transip.de.xml\"><securecookie host=\"^(www\\.)?transip\\.de$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Translations.com (partial)\" default_off=\"failed ruleset test\" f=\"translations.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://translations\\.com/\" to=\"https://www.translations.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Transparency.hu\" f=\"transparency.hu.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"transparency.org.ru\" f=\"transparency.org.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TransPerfect.com (missing certificate chain)\" default_off=\"missing certificate chain\" f=\"transperfect.com-problematic.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TransPerfect.com (partial)\" f=\"transperfect.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"trashbox.ru\" f=\"trashbox.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trashy.com\" f=\"trashy.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"trend.az\" f=\"trend.az.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"trezor.io\" default_off=\"failed ruleset test\" f=\"trezor.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trial Interactive.com (partial)\" f=\"trialinteractive.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TribePad.com (false MCB)\" platform=\"mixedcontent\" f=\"tribepad.com-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://tribepad\\.com/\" to=\"https://www.tribepad.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TribePad.com (partial)\" f=\"tribepad.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tribuna.pl.ua\" f=\"tribuna.pl.ua.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tricolor.tv\" f=\"tricolor.tv.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Trilight Zone.org\" f=\"trilightzone.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TripAdvisor.ca\" f=\"tripadvisor.ca.xml\"><securecookie host=\"^\\.\" name=\"^(?:ServerPool|TAUnique)$\"/><securecookie host=\"^\\.www\\.\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TripAdvisor.co.nz\" f=\"tripadvisor.co.nz.xml\"><securecookie host=\"^\\.\" name=\"^(?:ServerPool|TAUnique)$\"/><securecookie host=\"^\\.www\\.\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TripAdvisor.co.uk\" f=\"tripadvisor.co.uk.xml\"><securecookie host=\"^\\.\" name=\"^(?:ServerPool|TAUnique)$\"/><securecookie host=\"^\\.www\\.\" name=\".\"/><rule from=\"^http://help\\.tripadvisor\\.co\\.uk/+\" to=\"https://www.tripadvisorsupport.com/hc/en-gb/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TripAdvisor Support.com\" f=\"tripadvisorsupport.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tripletex.no (partial)\" f=\"tripletex.no.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"troyhunt.com\" f=\"troyhunt.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"truebsd.pw\" f=\"truebsd.pw.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TrueCommerce.com\" f=\"truecommerce.com.xml\"><securecookie host=\"^\\.\" name=\"^_ga\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"True Corporation\" f=\"truecorp.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"trv-science.ru\" f=\"trv-science.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"trybooth.com\" f=\"trybooth.com.xml\"><securecookie host=\"^trybooth\\.com$\" name=\".+\"/><rule from=\"^http://www\\.trybooth\\.com/\" to=\"https://trybooth.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"T.S.BOHEMIA a.s.\" f=\"tsbohemia.cz.xml\"><securecookie host=\"^tsbohemia\\.cz$\" name=\".+\"/><securecookie host=\"^\\.tsbohemia\\.cz$\" name=\".+\"/><securecookie host=\"^www\\.tsbohemia\\.cz$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tsn.ua\" f=\"tsn.ua.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TSP.gov\" f=\"tsp.gov.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ttk-chita.ru (partial)\" default_off=\"failed ruleset test\" f=\"ttk-chita.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TUC.org.uk\" f=\"tuc.org.uk.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid$|_ga|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://tuc\\.org\\.uk/\" to=\"https://www.tuc.org.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TUC Education.org.uk\" f=\"tuceducation.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tumba.ch\" default_off=\"failed ruleset test\" f=\"tumba.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tummy.com\" f=\"tummy.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tunbridge Wells.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"tunbridgewells.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://consult\\.tunbridgewells\\.gov\\.uk/\" to=\"https://tunbridgewells-consult.objective.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tune.com (partial)\" f=\"tune.com.xml\"><exclusion pattern=\"^http://in\\.tune\\.com/(?!/*(?:$|\\?|[el]/))\"/><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^(?!in\\.)\\w\" name=\".\"/><rule from=\"^http://in\\.tune\\.com/+(?:\\?.*)?$\" to=\"https://www.tune.com/\"/><rule from=\"^http://in\\.tune\\.com/\" to=\"https://go.pardot.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TunnelsUp.com\" f=\"tunnelsup.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tuquito.org.ar\" default_off=\"failed ruleset test\" f=\"tuquito.org.ar.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Turistické známky\" f=\"turisticke-znamky.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Turku.fi\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"turku.fi.xml\"><rule from=\"^http://(?:www\\.)?turku\\.fi/\" to=\"https://www.turku.fi/\"/><rule from=\"^http://opaskartta\\.turku\\.fi/\" to=\"https://opaskartta.turku.fi/\"/><exclusion pattern=\"^http://(?:www\\.)?turku\\.fi/(?!bussit$|buses$|bussar$)[\\w-]+$\"/><rule from=\"^http://www\\.bussit\\.turku\\.fi/$\" to=\"https://www.turku.fi/public/default.aspx?nodeid=11916\"/><rule from=\"^http://(?:www\\.)?turku\\.fi/bussit$\" to=\"https://www.turku.fi/public/default.aspx?nodeid=11916&contentlan=1\"/><rule from=\"^http://(?:www\\.)?turku\\.fi/buses$\" to=\"https://www.turku.fi/public/default.aspx?nodeid=11916&contentlan=2\"/><rule from=\"^http://(?:www\\.)?turku\\.fi/bussar$\" to=\"https://www.turku.fi/public/default.aspx?nodeid=11916&contentlan=3\"/><securecookie host=\"^\\w+\\.turku\\.fi\" name=\".+\"/></ruleset>", "<ruleset name=\"Turnoff\" f=\"turnoff.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tushino.com\" f=\"tushino.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tushuku.net\" f=\"tushuku.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tutti.ch\" f=\"tutti.ch.xml\"><exclusion pattern=\"http://www\\.tutti\\.ch/[\\w/-]+\\d{3,}\\.htm$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TuxFamily.net\" default_off=\"mismatched\" f=\"tuxfamily.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TuxFamily.org (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"tuxfamily.org-falsemixed.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.([^.]+)\\.tuxfamily\\.org/\" to=\"https://$1.tuxfamily.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tvQuran.com\" f=\"tvQuran.com.xml\"><securecookie host=\"^www\\.tvquran\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TV Addons.ag\" default_off=\"failed ruleset test\" f=\"tvaddons.ag.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TV Addons.org\" default_off=\"failed ruleset test\" f=\"tvaddons.org.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tvc.ru\" default_off=\"failed ruleset test\" f=\"tvc.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tvcom-tv.ru\" f=\"tvcom-tv.ru.xml\"><rule from=\"^http://www\\.tvcom-tv\\.ru/\" to=\"https://tvcom-tv.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tverigrad.ru\" f=\"tverigrad.ru.xml\"><rule from=\"^http://www\\.tverigrad\\.ru/\" to=\"https://tverigrad.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tverweek.com\" f=\"tverweek.com.xml\"><rule from=\"^http://www\\.tverweek\\.com/\" to=\"https://tverweek.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tvkultura.ru\" f=\"tvkultura.ru.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.tvkultura\\.ru/\" to=\"https://tvkultura.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"TVmaze CDN.com\" platform=\"mixedcontent\" f=\"tvmazecdn.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tvrain.ru\" f=\"tvrain.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Tweetamonial.com\" f=\"tweetamonial.com.xml\"><securecookie host=\"^\\.\" name=\"^PHPSESSID$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"twinery.org\" f=\"twinery.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Twistlock.com\" f=\"twistlock.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"twitchstatus.com\" f=\"twitchstatus.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tygem.com\" f=\"tygem.com.xml\"><rule from=\"^http://tygem\\.com/\" to=\"https://www.tygem.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"tyumedia.ru\" default_off=\"failed ruleset test\" f=\"tyumedia.ru.xml\"><rule from=\"^http://www\\.tyumedia\\.ru/\" to=\"https://tyumedia.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"u-f.ru\" platform=\"mixedcontent\" f=\"u-f.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"µTorrent\" f=\"uTorrent.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"uVPN\" default_off=\"refused\" f=\"uVPN.xml\"><rule from=\"^http://(?:www\\.)?uvpn\\.de/+\" to=\"https://fremaks.de/\"/></ruleset>", "<ruleset name=\"uainfo.org\" f=\"uainfo.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ualinux.com\" f=\"ualinux.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"uberflip.com (partial)\" f=\"uberflip.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ucanet.ru (partial)\" f=\"ucanet.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ucarp.org\" f=\"ucarp.org.xml\"><rule from=\"^http://(www\\.)?ucarp\\.org/\" to=\"https://www.pureftpd.org/project/ucarp\"/></ruleset>", "<ruleset name=\"uclick.com\" platform=\"mixedcontent\" f=\"uclick.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UCU.org.uk\" f=\"ucu.org.uk.xml\"><securecookie host=\"^\\.\" name=\"^_ga\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"udifo.com\" f=\"udifo.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ufanet.ru (partial)\" default_off=\"failed ruleset test\" f=\"ufanet.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ugmk-telecom.ru (partial)\" f=\"ugmk-telecom.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"uhulinux.hu\" f=\"uhulinux.hu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"uibk.ac.at\" f=\"uibk.ac.at.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UK Constitutional Law.org\" f=\"ukconstitutionallaw.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ukrcash.com\" f=\"ukrcash.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ukw.jp\" f=\"ukw.jp.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ukxcam.co.uk\" default_off=\"failed ruleset test\" f=\"ukxcam.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UL.se\" f=\"ul.se.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ulgov.ru\" f=\"ulgov.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ulogin.ru\" f=\"ulogin.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ultimarc.com\" f=\"ultimarc.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ultimate-guitar.com\" f=\"ultimate-guitar.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ultimateeditionoz.com\" default_off=\"failed ruleset test\" f=\"ultimateeditionoz.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ultimedecathlon.com\" f=\"ultimedecathlon.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"umblr.com\" default_off=\"mismatched\" f=\"umblr.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"umeng (partial)\" default_off=\"failed ruleset test\" f=\"umeng.xml\"><exclusion pattern=\"^http://salon\\.umeng\\.com/(detail_\\d+\\.html)?$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"umftgm.ro\" f=\"umftgm.ro.xml\"><rule from=\"^http://umftgm\\.ro/\" to=\"https://www.umftgm.ro/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Université de Montpellier\" f=\"umontpellier.fr.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"unbubble.eu\" f=\"unbubble.eu.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"unet.by\" default_off=\"failed ruleset test\" f=\"unet.by.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Uni-Ulm.de (partial)\" f=\"uni-ulm.de.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://uni-ulm\\.de/\" to=\"https://www.uni-ulm.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UNIAN\" platform=\"mixedcontent\" f=\"unian.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"unichange.me\" f=\"unichange.me.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Unimatrix.si (resources)\" platform=\"mixedcontent\" f=\"unimatrix.si-resources.xml\"><exclusion pattern=\"^http://hosting\\.unimatrix\\.si/(?!/*(?:asset|template)s/)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Unimatrix.si (partial)\" f=\"unimatrix.si.xml\"><exclusion pattern=\"^http://hosting\\.unimatrix\\.si/(?!/*(?:cart|cart|clientarea|contact|domainchecker|pwreset|serverstatus|supporttickets)\\.php)\"/><securecookie host=\"^(?!hosting\\.)\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"uniongang.net\" f=\"uniongang.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Unionlearn.org.uk\" f=\"unionlearn.org.uk.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Union Pacific.jobs\" f=\"unionpacific.jobs.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://unionpacific\\.jobs/\" to=\"https://www.unionpacific.jobs/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Union Reps.org.uk\" f=\"unionreps.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Unit4.com (resources)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"unit4.com-resources.xml\"><exclusion pattern=\"^http://info\\.unit4\\.com/(?!/*(?:cs|image|r)s/)\"/><rule from=\"^http://info\\.unit4\\.com/\" to=\"https://na-ab12.marketo.com/\"/></ruleset>", "<ruleset name=\"Unit4.com (partial)\" default_off=\"failed ruleset test\" f=\"unit4.com.xml\"><exclusion pattern=\"^http://info\\.unit4\\.com/(?!/*rs/.+\\.(?:docx?|pdf)(?:$|\\?))\"/><exclusion pattern=\"^http://pub\\.nieuwsbrief\\.unit4\\.com/(?!/*r/)\"/><securecookie host=\"^\\.\" name=\"^_ga\"/><securecookie host=\"^(?!info\\.|pub\\.nieuwsbrief\\.)\\w\" name=\".\"/><rule from=\"^http://info\\.unit4\\.com/\" to=\"https://na-ab12.marketo.com/\"/><rule from=\"^http://pub\\.nieuwsbrief\\.unit4\\.com/\" to=\"https://mailing.finalist.nl/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Universal Coin.com\" f=\"universalcoin.com.xml\"><securecookie host=\"^\\.\" name=\"^_(?:_qca$|gat?$|gat_)\"/><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.www\\.\" name=\".\"/><rule from=\"^http://universalcoin\\.com/\" to=\"https://www.universalcoin.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"unlocator.com\" f=\"unlocator.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Unruly.co (partial)\" f=\"unruly.co.xml\"><exclusion pattern=\"^http://go\\.unruly\\.co/(?!/*(?:$|\\?|[el]/))\"/><securecookie host=\"^\\.\" name=\"_ga(?:t?$|t_)\"/><securecookie host=\"^(?!go\\.)\\w\" name=\".\"/><rule from=\"^http://go\\.unruly\\.co/+(?:\\?.*)?$\" to=\"https://unruly.co/\"/><rule from=\"^http://go\\.unruly\\.co/\" to=\"https://go.pardot.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Unrulymedia.com (resources)\" platform=\"mixedcontent\" f=\"unrulymedia.com-resources.xml\"><exclusion pattern=\"^http://console\\.unrulymedia\\.com/(?!/*resource/(?!.+\\.js(?:$|\\?)))\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Unrulymedia.com (partial)\" f=\"unrulymedia.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UP.com\" f=\"up.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://up\\.com/\" to=\"https://www.up.com/\"/><rule from=\"^http://m\\.up\\.com/gateres(?:\\?.*)?$\" to=\"https://m.up.com/c02/wet-mobile/jas/index?command=gateTrace\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UP.jobs\" f=\"up.jobs.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http://www\\.up\\.jobs/\" to=\"https://up.jobs/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UPC Cablecom\" default_off=\"failed ruleset test\" f=\"upc-cablecom.xml\"><securecookie host=\"^\\.horizon\\.tv$\" name=\".+\"/><rule from=\"^http://upc-cablecom\\.ch/\" to=\"https://www.upc-cablecom.ch/\"/><rule from=\"^http://upc-cablecom\\.biz/\" to=\"https://www.upc-cablecom.biz/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UPDS.com\" f=\"upds.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://upds\\.com/\" to=\"https://www.upds.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Upload.af\" f=\"upload.af.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"uppr.de (partial)\" f=\"uppr.de.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Uprising.org.uk\" platform=\"mixedcontent\" f=\"uprising.org.uk.xml\"><securecookie host=\"^\\.\" name=\"^SESS\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UPrr.com (false MCB)\" platform=\"mixedcontent\" f=\"uprr.com-falsemixed.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"UPrr.com (partial)\" f=\"uprr.com.xml\"><securecookie host=\"^\\.\" name=\"^wt_up$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(streamline\\.)?uprr\\.com/\" to=\"https://www.$1uprr.com/\"/><rule from=\"^http://v0g\\.prod-e\\.web\\.apps\\.uprr\\.com/\" to=\"https://www.up.com/\"/><rule from=\"^http://v007\\.ax2600ab\\.om(?:dx|hq)\\.uprr\\.com/\" to=\"https://www.upds.com/\"/><rule from=\"^http://v015\\.ax2600ab\\.omdx\\.uprr\\.com/\" to=\"https://www.unionpacific.jobs/\"/><rule from=\"^http://v034\\.ax2600ab\\.om(?:dx|hq)\\.uprr\\.com/\" to=\"https://www.unionpacific.jobs/\"/><rule from=\"^http://v084\\.ax2600ab\\.omhq\\.uprr\\.com/\" to=\"https://www.streamline.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"uptimeinstitute.com\" default_off=\"failed ruleset test\" f=\"uptimeinstitute.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Uptime Robot\" f=\"uptimerobot.xml\"><rule from=\"^http:\" to=\"https:\"/><securecookie host=\"^(?:.*\\.)?uptimerobot\\.com$\" name=\".+\"/></ruleset>", "<ruleset name=\"uptobox.com\" default_off=\"failed ruleset test\" f=\"uptobox.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"uptodown.com\" f=\"uptodown.com.xml\"><exclusion pattern=\"^http://\\S+\\.downloads\\.uptodown\\.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"uptodown.net\" f=\"uptodown.net.xml\"><rule from=\"^http://(www\\.|gstatic\\.|stat\\.|stc\\.)?uptodown\\.net/\" to=\"https://$1uptodown.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"URA.gov.sg\" f=\"ura.gov.sg.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"url.cn (partial)\" f=\"url.cn.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"urlQuery.net\" f=\"urlQuery.net.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"urlaubspiraten\" f=\"urlaubspiraten.xml\"><rule from=\"^http://(?:www\\.)?urlaubspiraten\\.de/\" to=\"https://www.urlaubspiraten.de/\"/></ruleset>", "<ruleset name=\"urldecode.org\" f=\"urldecode.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"US.jobs\" platform=\"mixedcontent\" f=\"us.jobs.xml\"><securecookie host=\"^\\.\" name=\"^__qca$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://images\\.us\\.jobs/\" to=\"https://d1rap9luh07sve.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"usainteanne\" default_off=\"failed ruleset test\" f=\"usainteanne.xml\"><rule from=\"^http://(?:www\\.)?usainteanne\\.ca/\" to=\"https://www.usainteanne.ca/\"/><rule from=\"^http://webmail\\.usainteanne\\.ca/\" to=\"https://webmail.usainteanne.ca/\"/><rule from=\"^http://smtp\\.usainteanne\\.ca/\" to=\"https://smtp.usainteanne.ca/\"/><rule from=\"^http://moodle\\.usainteanne\\.ca/\" to=\"https://moodle.usainteanne.ca/\"/><rule from=\"^http://login\\.usainteanne\\.ca/\" to=\"https://login.usainteanne.ca/\"/><rule from=\"^http://vpn\\.usainteanne\\.ca/\" to=\"https://vpn.usainteanne.ca/\"/></ruleset>", "<ruleset name=\"usefedora.com\" platform=\"mixedcontent\" f=\"usefedora.com.xml\"><exclusion pattern=\"^http://(?:[^./]+\\.){2,}usefedora\\.com/\"/><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"US Embassy.gov (partial)\" default_off=\"failed ruleset test\" f=\"usembassy.gov.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://usembassy\\.gov/\" to=\"https://www.usembassy.gov/\"/><rule from=\"^http://osce\\.usembassy\\.gov/+\" to=\"https://osce.usmission.gov/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Usenetter.nl\" default_off=\"failed ruleset test\" f=\"usenetter.nl.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://usenetter\\.nl/\" to=\"https://www.usenetter.nl/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"userapi.com\" f=\"userapi.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"userstory.ru\" default_off=\"failed ruleset test\" f=\"userstory.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Userstyles.org\" f=\"userstyles.org.xml\"><securecookie host=\"^\\.userstyles\\.org$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"usrportage.de\" f=\"usrportage.de.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"The Hong Kong University of Science and Technology (partial)\" f=\"ust.hk.xml\"><securecookie host=\"access\\.ust\\.hk$\" name=\".+\"/><securecookie host=\"cas\\.ust\\.hk$\" name=\".+\"/><securecookie host=\"canvas\\.ust\\.hk$\" name=\".+\"/><securecookie host=\"career\\.ust\\.hk$\" name=\".+\"/><securecookie host=\"adfs\\.connect\\.ust\\.hk$\" name=\".+\"/><securecookie host=\"myaccount\\.ust\\.hk$\" name=\".+\"/><securecookie host=\"psft\\.ust\\.hk$\" name=\".+\"/><securecookie host=\"sqmail\\.ust\\.hk$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"USyd.edu.au (partial)\" default_off=\"failed ruleset test\" f=\"usyd.edu.au.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?usyd\\.edu\\.au/+\" to=\"https://sydney.edu.au/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Utbm.fr\" f=\"utbm.fr.xml\"><rule from=\"^http://(www\\.)?utbm\\.fr/\" to=\"https://www.utbm.fr/\"/><rule from=\"^http://ae\\.utbm\\.fr/\" to=\"https://ae.utbm.fr/\"/></ruleset>", "<ruleset name=\"utdstc.com\" f=\"utdstc.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"utex-telecom.ru (partial)\" f=\"utex-telecom.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Utopia-AD.org\" f=\"utopia-ad.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"V-Dem.net\" f=\"v-dem.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"v.gd\" f=\"v.gd.xml\"><securecookie host=\"v\\.gd$\" name=\".*\"/><securecookie host=\"\\.v\\.gd$\" name=\"^__cfduid$\"/><rule from=\"^http://v\\.gd/\" to=\"https://v.gd/\"/></ruleset>", "<ruleset name=\"V4C.org (partial)\" f=\"v4c.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vadino.com\" f=\"vadino.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VaGoSec.org\" f=\"vagosec.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"valdikss.org.ru\" f=\"valdikss.org.ru.xml\"><rule from=\"^http://www\\.valdikss\\.org\\.ru/\" to=\"https://valdikss.org.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vale Learning.com (partial)\" f=\"valelearning.com.xml\"><securecookie host=\"^\\.\" name=\"^cadata\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Valuate.com\" f=\"valuate.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"vanguard.com\" f=\"vanguard.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"variantweb.net\" f=\"variantweb.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Váš-hosting.cz\" f=\"vas-hosting.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"vasexperts.ru\" f=\"vasexperts.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vaultoro.com (partial)\" f=\"vaultoro.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:incap_ses|visid_incap)_\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vauva.fi (partial)\" platform=\"mixedcontent\" f=\"vauva.fi.xml\"><exclusion pattern=\"^http://(?:www\\.)?vauva\\.fi/(?!/*(?:s3fs-css/|sites/|tilaa/*(?:$|\\?)))\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vedomosti.ru (false MCB)\" platform=\"mixedcontent\" f=\"vedomosti.ru-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vedomosti.ru (partial)\" f=\"vedomosti.ru.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"vedtver.ru\" f=\"vedtver.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"vegatele.com (partial)\" f=\"vegatele.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"veggiekarte.de\" f=\"veggiekarte.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Veloplus\" f=\"veloplus.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vendini.com (partial)\" default_off=\"failed ruleset test\" f=\"vendini.com.xml\"><exclusion pattern=\"^http://landing\\.vendini\\.com/(?!/*(?:cs|image|r)s/)\"/><securecookie host=\"^(?!landing\\.)\\w\" name=\".\"/><rule from=\"^http://landing\\.vendini\\.com/\" to=\"https://na-ab05.marketo.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Venuu.fi (partial)\" f=\"venuu.fi.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Veritas.com\" f=\"veritas.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Verizon.net (partial)\" default_off=\"failed ruleset test\" f=\"verizon.net.xml\"><securecookie host=\"^(?:www\\.)?verizon\\.net$\" name=\".+\"/><rule from=\"^http://verizon\\.net/\" to=\"https://www.verizon.net/\"/><rule from=\"^http://businessforums\\.verizon\\.net/.*\" to=\"https://business.verizon.com/MyBusinessAccount/one.portal?_nfpb=true&_pageLabel=gb_mycommunity\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Verizon Business.com\" f=\"verizonbusiness.com.xml\"><rule from=\"^http://www\\.verizonbusiness\\.com/\" to=\"https://www.verizonenterprise.com/\"/></ruleset>", "<ruleset name=\"verkaufen.ch\" f=\"verkaufen.ch.xml\"><rule from=\"^http://verkaufen\\.ch/\" to=\"https://www.verkaufen.ch/\"/><rule from=\"^http://reparieren\\.ch/\" to=\"https://www.reparieren.ch/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"vermont-it.ru (partial)\" f=\"vermont-it.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VerseOne.com (partial)\" default_off=\"failed ruleset test\" f=\"verseone.com.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://hc\\.verseone\\.com/+\" to=\"https://www.howard-cottage.co.uk/\"/><rule from=\"^http://hightown\\.verseone\\.com/+\" to=\"https://myaccount.hightownha.org.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Versia.ru\" f=\"versia.ru.xml\"><exclusion pattern=\"^http://(?:(?![^./]+\\.(?:ch|kavkaz|neva|rb|saratov|tat)\\.versia\\.ru/)(?:[^./]+\\.){2,}|(?:[^./]+\\.){2,}\\.(?:ch|kavkaz|neva|rb|saratov|tat)\\.)versia\\.ru/\"/><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"version6.ru\" f=\"version6.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Versionista.com\" f=\"versionista.com.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Verywell.com\" f=\"verywell.com.xml\"><securecookie host=\"^\\.\" name=\"^_ga\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"vesti.ru\" f=\"vesti.ru.xml\"><rule from=\"^http://vesti\\.ru/\" to=\"https://www.vesti.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"vevent.com\" default_off=\"failed ruleset test\" f=\"vevent.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vex.net\" f=\"vex.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://vex\\.net/\" to=\"https://www.vex.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"vexor.io\" f=\"vexor.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VG247.com\" f=\"vg247.com.xml\"><rule from=\"^http://images\\.vg247\\.com/\" to=\"https://d2f23iedlijwim.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VGTRK.com\" f=\"vgtrk.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.chorus\\.vgtrk\\.com/\" to=\"https://chorus.vgtrk.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"vhf.de\" f=\"vhf.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VHFFS.org\" f=\"vhffs.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"vhs Karlsruhe\" f=\"vhs-karlsruhe.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Volkshochschule Ludwigshafen\" f=\"vhs-lu.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Viceland.com\" f=\"viceland.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__qca$|optimizely)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Victoria forms.com\" default_off=\"failed ruleset test\" f=\"victoriaforms.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Video-Download.online\" f=\"video-download.online.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid$|_ga|cf_clearance$)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Toypics\" platform=\"mixedcontent\" f=\"videos.toypics.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Viewable Media.net\" default_off=\"failed ruleset test\" f=\"viewablemedia.net.xml\"><rule from=\"^http://(?:www\\.)?viewablemedia\\.net/\" to=\"https://www.viewablemedia.net/\"/></ruleset>", "<ruleset name=\"viewsourceconf.org\" default_off=\"failed ruleset test\" f=\"viewsourceconf.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"viidii.info\" f=\"viidii.info.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"vim-cn.com\" f=\"vim-cn.com.xml\"><securecookie host=\"^chat\\.vim-cn\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"vinelinux.org\" f=\"vinelinux.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Virtual Global Task Force.com\" default_off=\"expired, self-signed\" f=\"virtualglobaltaskforce.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.virtualglobaltaskforce\\.com/\" to=\"https://virtualglobaltaskforce.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"SEA LIFE\" f=\"visitsealife.com.xml\"><securecookie host=\"www2\\.visitsealife\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Visma.no (partial)\" default_off=\"failed ruleset test\" f=\"visma.no.xml\"><securecookie host=\"^\\.\" name=\"^_ga\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"visma.no\" f=\"vismaservices.no.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VitalSource.com\" f=\"vitalsource.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://status\\.vitalsource\\.com/\" to=\"https://vitalsource.statuspage.io/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vitrinepix\" default_off=\"failed ruleset test\" f=\"vitrinepix.xml\"><rule from=\"^http://(www\\.)?vitrinepix\\.com\\.br/\" to=\"https://www.vitrinepix.com.br/\"/></ruleset>", "<ruleset name=\"ViuTV\" f=\"viu.tv.xml\"><exclusion pattern=\"^http://(www\\.)?viu\\.tv/encore/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"viz-info.de\" f=\"viz-info.de.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"vkarpinsk.info\" platform=\"mixedcontent\" f=\"vkarpinsk.info.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"vluki.ru\" f=\"vluki.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"vm.de\" f=\"vm.de.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"vnews34.ru\" f=\"vnews34.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VenatusMedia\" f=\"vntsm.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"vnu.ru (partial)\" default_off=\"failed ruleset test\" f=\"vnu.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VOA.gov.uk (partial)\" f=\"voa.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?voa\\.gov\\.uk/.*\" to=\"https://www.gov.uk/government/organisations/valuation-office-agency\"/><exclusion pattern=\"^http://(?:www\\.)?voa\\.gov\\.uk/+(?!$|\\?)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vocab.com\" f=\"vocab.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vocabulary.com\" f=\"vocabulary.com.xml\"><securecookie host=\"^\\.\" name=\"^AWSELB$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vocoll.com\" f=\"vocoll.com.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"vodkamethod.com\" f=\"vodkamethod.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vogogo\" default_off=\"failed ruleset test\" f=\"vogogo.com.xml\"><securecookie host=\"^.*\\.?vogogo\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Void Linux.eu (partial)\" f=\"voidlinux.eu.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"voidtools.com\" f=\"voidtools.com.xml\"><rule from=\"^http://www\\.forum\\.voidtools\\.com/\" to=\"https://www.voidtools.com/forum/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VOIP user portal.co.uk\" default_off=\"missing certificate chain\" f=\"voipuserportal.co.uk.xml\"><securecookie host=\".\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Volafile.io\" f=\"volafile.io.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"volistob.ru\" f=\"volistob.ru.xml\"><rule from=\"^http://www\\.volistob\\.ru/\" to=\"https://volistob.ru/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Voltairenet.org\" platform=\"mixedcontent\" f=\"voltairenet.org.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"volumio.org\" f=\"volumio.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"voluumtrk2.com\" f=\"voluumtrk2.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Voog.com (partial)\" f=\"voog.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"vortexbox.org\" platform=\"mixedcontent\" f=\"vortexbox.org.xml\"><rule from=\"^http://vortexbox\\.org/\" to=\"https://www.vortexbox.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"voterinfo.gov.hk\" f=\"voterinfo.gov.hk.xml\"><rule from=\"^http://voterinfo\\.gov\\.hk/\" to=\"https://www1.voterinfo.gov.hk/\"/><rule from=\"^http://www\\.voterinfo\\.gov\\.hk/\" to=\"https://www1.voterinfo.gov.hk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"vott.ru\" f=\"vott.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VoucherCloud.com\" default_off=\"failed ruleset test\" f=\"vouchercloud.com.xml\"><securecookie host=\"^(?!\\.vouchercloud\\.com$).\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VoucherCodes.co.uk (partial)\" f=\"vouchercodes.co.uk.xml\"><securecookie host=\"^(?!\\.vouchercodes\\.co\\.uk$).\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vox Media.com (resources)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"voxmedia.com-resources.xml\"><exclusion pattern=\"^http://(?:marketing|product|www)\\.voxmedia\\.com/(?!/*(?:favicon\\.ico|styles/))\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VPN.AC\" f=\"vpn.ac.xml\"><securecookie host=\"^(blog\\.|www\\.)?vpn\\.ac$\" name=\".+\"/><securecookie host=\"^vpnac\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VPN.Asia\" f=\"vpn.asia.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"vpsFree.cz\" f=\"vpsFree.cz.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VRBO.com\" f=\"vrbo.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Vrijstelling Oldtimer\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"vrijstellingoldtimer.nl.xml\"><rule from=\"^http://vrijstellingoldtimer\\.nl/\" to=\"https://vrijstellingoldtimer.nl/\"/><rule from=\"^http://www\\.vrijstellingoldtimer\\.nl/\" to=\"https://www.vrijstellingoldtimer.nl/\"/></ruleset>", "<ruleset name=\"vs4.com\" f=\"vs4.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://vs4\\.com/\" to=\"https://www.vs4.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"vsemetri.com\" f=\"vsemetri.com.xml\"><rule from=\"^http://www\\.vsemetri\\.com/\" to=\"https://vsemetri.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"vsenovostint.ru\" f=\"vsenovostint.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"vtb24.ru\" default_off=\"failed ruleset test\" f=\"vtb24.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VuXML.org\" default_off=\"failed ruleset test\" f=\"vuxml.org.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"vxlabs.com\" f=\"vxlabs.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"VXSBill.com (partial)\" f=\"vxsbill.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"w3techs.com\" f=\"w3techs.com.xml\"><rule from=\"^http://www\\.w3techs\\.com/\" to=\"https://w3techs.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wag.com\" f=\"wag.com.xml\"><securecookie host=\".\" name=\"^aps-trtmnt$\"/><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://wag\\.com/\" to=\"https://www.wag.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wakefield.gov.uk (partial)\" f=\"wakefield.gov.uk.xml\"><securecookie host=\"^\\w\" name=\"\"/><rule from=\"^http://aces\\.wakefield\\.gov\\.uk/+(?:\\?.*)?$\" to=\"https://aces.wakefield.gov.uk/WebSite/WACES/default.aspx\"/><rule from=\"^http://consult\\.wakefield\\.gov\\.uk/\" to=\"https://wakefield-consult.objective.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"wald0.com\" f=\"wald0.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"walkit.com\" platform=\"mixedcontent\" f=\"walkit.xml\"><rule from=\"^http://(?:www\\.)?walkit\\.com/\" to=\"https://walkit.com/\"/></ruleset>", "<ruleset name=\"Walla.co.il (partial)\" f=\"walla.co.il.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Walsall.gov.uk (MCB)\" platform=\"mixedcontent\" f=\"walsall.gov.uk-mixedcontent.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Walsall.gov.uk (partial)\" f=\"walsall.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://walsall\\.gov\\.uk/\" to=\"https://www.walsall.gov.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WAO.gov.uk\" default_off=\"failed ruleset test\" f=\"wao.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wareable.com\" f=\"wareable.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"War Is Boring.com\" f=\"warisboring.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(www\\.)?warisboring\\.com/\" to=\"https://warisboring.com/\"/></ruleset>", "<ruleset name=\"War Thunder.com (false MCB)\" platform=\"mixedcontent\" f=\"warthunder.com-falsemixed.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\"^session_id$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"War Thunder.com (partial)\" f=\"warthunder.com.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\"^session_id$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"War Thunder.ru (false MCB)\" platform=\"mixedcontent\" f=\"warthunder.ru-falsemixed.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\"^session_id$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"War Thunder.ru (partial)\" f=\"warthunder.ru.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\"^session_id$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Warwick DC.gov.uk (partial)\" f=\"warwickdc.gov.uk.xml\"><exclusion pattern=\"^http://estates5\\.warwickdc\\.gov\\.uk/(?!/*(?:HomeChoice2010RSL|HomeHoice2015|pcn)(?:$|[?/]))\"/><securecookie host=\"^\\.www\\.\" name=\".\"/><securecookie host=\"^(?!estates5\\.)\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Warwickshire.gov.uk (partial)\" f=\"warwickshire.gov.uk.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Washington Blade.com\" platform=\"mixedcontent\" f=\"washingtonblade.com.xml\"><securecookie host=\"^\\.\" name=\"^_ga\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Washington Post.com (false MCB)\" platform=\"mixedcontent\" f=\"washingtonpost.com-falsemixed.xml\"><rule from=\"^http://wpcomics\\.washingtonpost\\.com/\" to=\"https://www.uclick.com/\"/></ruleset>", "<ruleset name=\"Waterfall.com (partial)\" f=\"waterfall.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Watford.gov.uk (partial)\" f=\"watford.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><securecookie host=\"^\\.www\\.\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Watson.ch\" f=\"watson.ch.xml\"><rule from=\"^http://(?:www\\.)?watson\\.ch/\" to=\"https://www.watson.ch/\"/></ruleset>", "<ruleset name=\"Waverly.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"waverly.gov.uk.xml\"><securecookie host=\"^\\.www\\.\" name=\".\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"waywire.com\" f=\"waywire.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Will Bond\" f=\"wbond.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wealden.gov.uk (partial)\" f=\"wealden.gov.uk.xml\"><exclusion pattern=\"^http://(?:www\\.)?wealden\\.gov\\.uk/(?!/*(?:(?:Wealden)?Login\\.aspx|favicon\\.ico|web/StyleSheets/|web/multimediafiles/|Upload/))\"/><securecookie host=\"^(?!www\\.)\\w\" name=\".\"/><rule from=\"^http://wealden\\.gov\\.uk/\" to=\"https://www.wealden.gov.uk/\"/><rule from=\"^http://consult\\.wealden\\.gov\\.uk/\" to=\"https://wealden-consult.objective.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Webcaster.pro\" f=\"webcaster.pro.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"webconverger.com\" f=\"webconverger.com.xml\"><rule from=\"^http://www\\.webconverger\\.com/\" to=\"https://webconverger.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"webcron.org\" f=\"webcron.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Web Enrol.com\" f=\"webenrol.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://webenrol\\.com/\" to=\"https://www.webenrol.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"webleads-tracker.com\" f=\"webleads-tracker.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"webliberty.ru\" f=\"webliberty.ru.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"webm.red\" f=\"webm.red.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.webm\\.red/\" to=\"https://linear.enterprises/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Webmasterpro.de (partial)\" f=\"webmasterpro.de.xml\"><securecookie host=\"^\\.fc\\.\" name=\".\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"webnames.ru\" f=\"webnames.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"webrover.ru\" f=\"webrover.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WebSetNet.com\" f=\"websetnet.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.websetnet\\.com/\" to=\"https://websetnet.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"weburg.me\" f=\"weburg.me.xml\"><rule from=\"^http://www\\.weburg\\.me/\" to=\"https://weburg.me/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WeCamgirls.com\" f=\"wecamgirls.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Weekendjeweg.nl\" f=\"weekendjeweg.nl.xml\"><securecookie host=\".\" name=\".*\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"weicaifu.com\" f=\"weicaifu.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://weicaifu\\.com/\" to=\"https://www.weicaifu.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Weill Cornell.org (partial)\" f=\"weillcornell.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.weillcornell\\.org/\" to=\"https://weillcornell.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Weimarnetz.de\" f=\"weimarnetz.de.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.weimarnetz\\.de/\" to=\"https://weimarnetz.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wellcome.ac.uk (partial)\" default_off=\"failed ruleset test\" f=\"wellcome.ac.uk.xml\"><securecookie host=\"^\\.\" name=\"^(?:__qca|_gat?)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://library\\.wellcome\\.ac\\.uk/+\" to=\"https://wellcomelibrary.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wellcome Library.org (partial)\" f=\"wellcomelibrary.org.xml\"><securecookie host=\"^\\.\" name=\"^_gat?$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.wellcomelibrary\\.org/\" to=\"https://wellcomelibrary.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"wercker.com\" f=\"wercker.com.xml\"><rule from=\"^http://wercker\\.com/\" to=\"https://www.wercker.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wesnoth.org (false MCB)\" platform=\"mixedcontent\" f=\"wesnoth.org-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"West-Norfolk.gov.uk (partial)\" f=\"west-norfolk.gov.uk.xml\"><securecookie host=\"^(?!\\.west-norfolk\\.gov\\.uk$).\" name=\".\"/><rule from=\"^http://consult\\.west-norfolk\\.gov\\.uk/\" to=\"https://west-norfolk-consult.objective.co.uk/\"/><rule from=\"^http://mylimehouse\\.west-norfolk\\.gov\\.uk/\" to=\"https://west-norfolk.objective.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"West Berks.gov.uk (partial)\" f=\"westberks.gov.uk.xml\"><exclusion pattern=\"^http://(?:www\\.)?westberks\\.gov\\.uk/(?!/*(?:CHttpHandler\\.ashx|index\\.aspx\\?(?:.*&)?articleid=(?:2798[89]|28004|2801[39]|28023|28034|2824[01]|29089|29609|31065|32455)(?:$|&)|media/image/|service/assets/css/|service/template/|servicerequests/(?:describe_case|reg_user)\\.aspx|shared/css/|shared/img/))\"/><securecookie host=\"^[^.fsw]\" name=\".\"/><rule from=\"^http://(?:fis|scip)\\.westberks\\.gov\\.uk/\" to=\"https://search3.openobjects.com/\"/><exclusion pattern=\"^http://(?:fis|scip)\\.westberks\\.gov\\.uk/(?!.+/(?:(?:cs|image)s/|(?:contact|register|sign_in)\\.page))\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"westbyte.com\" f=\"westbyte.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"westlan.ru (partial)\" f=\"westlan.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"West Lancs.gov.uk (false MCB)\" platform=\"mixedcontent\" f=\"westlancs.gov.uk-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"West Lancs.gov.uk (partial)\" f=\"westlancs.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"West Lancs DC.gov.uk (partial)\" f=\"westlancsdc.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://online\\.westlancsdc\\.gov\\.uk/\" to=\"https://secure.westlancs.gov.uk/\"/></ruleset>", "<ruleset name=\"West Lothian.gov.uk (false MCB)\" platform=\"mixedcontent\" f=\"westlothian.gov.uk-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"West Lothian.gov.uk (partial)\" f=\"westlothian.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Hong Kong Wetland Park\" f=\"wetlandpark.gov.hk.xml\"><rule from=\"^http://(www\\.)?wetlandpark\\.gov\\.hk/\" to=\"https://www.wetlandpark.gov.hk/\"/></ruleset>", "<ruleset name=\"wh0rd.org\" f=\"wh0rd.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WhatCulture.com (partial)\" f=\"whatculture.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.whatculture\\.com/\" to=\"https://whatculture.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"whatismyreferer.com\" f=\"whatismyreferer.com.xml\"><rule from=\"^http://whatismyreferer\\.com/\" to=\"https://www.whatismyreferer.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WhatsApp Brand.com\" f=\"whatsappbrand.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"whisky.de\" platform=\"mixedcontent\" f=\"whisky.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Whitehatters.Academy\" default_off=\"failed ruleset test\" f=\"whitehatters.academy.xml\"><securecookie host=\"^\\.\" name=\"^ARRAffinity$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"White Helmets.org\" f=\"whitehelmets.org.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"White House History.org\" f=\"whitehousehistory.org.xml\"><securecookie host=\"^\\.\" name=\"^(?:incap_ses|visid_incap)_\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"White Label Dating.com (partial)\" f=\"whitelabeldating.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Who Can I Vote For.co.uk\" f=\"whocanivotefor.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"whois.net\" f=\"whois.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"why! open computing\" default_off=\"failed ruleset test\" f=\"whyopencomputing.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Widgit-Online.com\" f=\"widgit-online.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Widgit.com\" f=\"widgit.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Widgit Online.com\" f=\"widgitonline.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"wien.gv.at\" f=\"wien.gv.at.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wij gaan naar EG.nl\" f=\"wijgaannaareg.nl.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wikiwand.com\" f=\"wikiwand.com.xml\"><securecookie host=\"^(?:www\\.)?wikiwand\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wilhelm Tux.ch\" f=\"wilhelmtux.ch.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wilkinsons-Auctioneers.co.uk\" f=\"wilkinsons-auctioneers.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wiltshire.Police.uk (resources)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"wiltshire.police.uk-resources.xml\"><exclusion pattern=\"^http://www\\.wiltshire\\.police\\.uk/(?!/*(?:cache|components|images|media|modules|plugins|templates)/)\"/><exclusion pattern=\"^http://www\\.wiltshire\\.police\\.uk/.+\\.js(?:on)?(?:$|\\?)\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wiltshire.Police.uk (partial)\" f=\"wiltshire.police.uk.xml\"><exclusion pattern=\"^http://www\\.wiltshire\\.police\\.uk/(?!/*contact-us(?:/click-on/domestic-abuse-contact-form|/click-on/sarah-s-law/child-sex-offenders-disclosure-form)?(?:$|\\?))\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"wiltsmessaging.co.uk\" f=\"wiltsmessaging.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"windstar.com\" f=\"windstar.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"winxdvd.com\" f=\"winxdvd.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"wipe.de\" f=\"wipe.de.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wired.co.uk\" f=\"wired.co.uk.xml\"><rule from=\"^http://wired\\.co\\.uk/\" to=\"https://www.wired.co.uk/\"/><rule from=\"^http://cdni\\.wired\\.co\\.uk/\" to=\"https://d2f0ban6dhfdsw.cloudfront.net/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wiremask.eu\" f=\"wiremask.eu.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wiroos.com\" f=\"wiroos.com.xml\"><securecookie host=\"^\\.\" name=\"^language$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WKU.edu (partial)\" default_off=\"failed ruleset test\" f=\"wku.edu.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://(?:www\\.)?bookstore\\.wku\\.edu/.*\" to=\"https://www.wkustore.com/\"/><rule from=\"^http://portal\\.wku\\.edu/+\" to=\"https://www.wku.edu/it/portal-redirect/\"/><rule from=\"^http://webmail\\.wku\\.edu/+\" to=\"https://www.wku.edu/it/webmail\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WKU Store.com\" f=\"wkustore.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"wlresources.com\" f=\"wlresources.com.xml\"><exclusion pattern=\"\\.js(?:$|\\?)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Woking.gov.uk (partial)\" f=\"woking.gov.uk.xml\"><exclusion pattern=\"^http://(?:www\\.)?woking\\.gov\\.uk/(?!/*(?:(?:community/edsi/harm|community/edsi/harm/harrasdisc|contact/form|council/election/electoraloffences/fraudform|environment/env(?:crime/flytipping/flypostingform|services/deadanimals/deadanimalsform|services/publictoilets/publictoiletsreportform)|gateway/for(?:gotpin|pass)|transport/streets/(?:boroughboundarysigns/boundarysigns|busshelters/bussheltersform|footpaths/footpathspavementsform))(?:$|\\?)|images/|res/))\"/><securecookie host=\"^(?!www\\.)\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wokingham.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"wokingham.gov.uk.xml\"><exclusion pattern=\"^http://(?:www\\.)?wokingham\\.gov\\.uk/(?!/*(?:contact(?:-u)?s/*(?:$|\\?)|[Ee]asy[Ss]ite[Ww]eb/))\"/><exclusion pattern=\"^http://directory\\.wokingham\\.gov\\.uk/(?!/*kb5/wokingham/directory/(?:assets/|sign_in\\.page))\"/><securecookie host=\"^(?!directory\\.|www\\.)\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wondershare.com (false MCB)\" platform=\"mixedcontent\" f=\"wondershare.com-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wondershare.com (partial)\" f=\"wondershare.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Woodland Trust.org.uk\" f=\"woodlandtrust.org.uk.xml\"><securecookie host=\"^\\.\" name=\"^_ga\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Worcestershire.gov.uk (false MCB)\" platform=\"mixedcontent\" f=\"worcestershire.gov.uk-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Worcestershire.gov.uk (partial)\" default_off=\"failed ruleset test\" f=\"worcestershire.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"word.camera\" default_off=\"failed ruleset test\" f=\"word.camera.xml\"><rule from=\"^http://www\\.word\\.camera/\" to=\"https://word.camera/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"workaround.ch\" f=\"workaround.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Working at Booking.com\" f=\"workingatbooking.com.xml\"><securecookie host=\"^\\.\" name=\"^_ga\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"worksmart.org.uk\" f=\"worksmart.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Work Zone Safety.org\" f=\"workzonesafety.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"World-Airport-Codes.com\" f=\"world-airport-codes.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"World-Lotteries.org\" f=\"world-lotteries.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"wormly.com\" f=\"wormly.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"wpa_supplicant\" default_off=\"broken\" f=\"wpa_supplicant.xml\"><rule from=\"^http://hostap\\.epitest\\.fi/\" to=\"https://hostap.epitest.fi/\"/></ruleset>", "<ruleset name=\"WPimg.pl (partial)\" f=\"wpimg.pl.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://b\\.wpimg\\.pl/\" to=\"https://a.wpimg.pl/\"/><rule from=\"^http://c\\.wpimg\\.pl/\" to=\"https://i.wp.pl/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"wrelease.nl\" default_off=\"failed ruleset test\" f=\"wrelease.nl.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Written Chinese.com\" f=\"writtenchinese.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://writtenchinese\\.com/\" to=\"https://www.writtenchinese.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WRZRU.com\" default_off=\"mismatched\" f=\"wrzru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WSJ.com (partial)\" default_off=\"failed ruleset test\" f=\"wsj.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:_gat?$|_gat_|s_v)\"/><securecookie host=\"^\\.customercenter\\.\" name=\".\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"bankia.es\" f=\"www.bankia.es.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"www.browserscope.org\" f=\"www.browserscope.org.xml\"><rule from=\"^http:\" to=\"https:\"/><securecookie host=\"^www\\.browserscope\\.org$\" name=\".*\"/></ruleset>", "<ruleset name=\"www.decathlon.es\" f=\"www.decathlon.es.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"elcorteingles.es\" f=\"www.elcorteingles.es.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"jobandtalent.com\" f=\"www.jobandtalent.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"mediamarkt.es\" f=\"www.mediamarkt.es.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"movistar.es\" f=\"www.movistar.es.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"pepephone.com\" f=\"www.pepephone.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"zaragoza.es\" f=\"www.zaragoza.es.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"WWWPromoter.com\" f=\"wwwpromoter.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"wxWidgets.org (partial)\" f=\"wxwidgets.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wychavon.gov.uk (partial)\" f=\"wychavon.gov.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wyre.gov.uk\" f=\"wyre.gov.uk.xml\"><securecookie host=\"^\\.www\\.\" name=\".\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://consult\\.wyre\\.gov\\.uk/\" to=\"https://wyrebc-consult.objective.co.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Wyre Forest DC.gov.uk (partial)\" f=\"wyreforestdc.gov.uk.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"x-pay.cc\" f=\"x-pay.cc.xml\"><rule from=\"^http://www\\.x-pay\\.cc/\" to=\"https://x-pay.cc/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"x-Plarium.com\" f=\"x-plarium.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"x.ai\" f=\"x.ai.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"xServers (partial)\" f=\"xServers.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XanMod.org\" f=\"xanmod.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"xchange.cc\" default_off=\"failed ruleset test\" f=\"xchange.cc.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"xchange.is\" default_off=\"failed ruleset test\" f=\"xchange.is.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"xda-cdn.com\" f=\"xda-cdn.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xen.org (partial)\" f=\"xen.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xfinity.com (false MCB)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"xfinity.com-falsemixed.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xfinity.com (partial)\" default_off=\"failed ruleset test\" f=\"xfinity.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:_gat?$|s_v)\"/><securecookie host=\"^\\.referafriend\\.\" name=\".\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://serviceo\\.xfinity\\.com/\" to=\"https://xfinity.112.2o7.net/\"/><rule from=\"^http://store\\.xfinity\\.com/\" to=\"https://securestore.xfinity.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"xiala.net (partial)\" default_off=\"failed ruleset test\" f=\"xiala.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"xkcd\" f=\"xkcd.xml\"><rule from=\"^http://www\\.store\\.xkcd\\.com/\" to=\"https://store.xkcd.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xlove.com\" default_off=\"failed ruleset test\" f=\"xlove.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"мособлеирц.рф\" default_off=\"failed ruleset test\" f=\"xn--90aijkdmaud0d.xn--p1ai.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"xpda.com\" f=\"xpda.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xperience Days.com (resources)\" platform=\"mixedcontent\" f=\"xperiencedays.com-resources.xml\"><exclusion pattern=\"^http://(?:www\\.)?xperiencedays\\.com/(?!assets/|min/)\"/><exclusion pattern=\"^http://(?:www\\.)?xperiencedays\\.com/(?:.+\\.js(?:$|\\?)|min/.+_js(?:$|[?&]))\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XR LLC.com\" default_off=\"missing certificate chain\" f=\"xrllc.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"xsport.ua\" f=\"xsport.ua.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Xtreme Guns and Ammo.com\" default_off=\"missing certificate chain\" f=\"xtremegunsandammo.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:external_no_cache|frontend)$\"/><securecookie host=\"^\\.www\\.\" name=\".\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XVideos.com (partial)\" f=\"xvideos.com.xml\"><rule from=\"^http://img(?:-l3|100|100-\\d+)\\.xvideos\\.com/\" to=\"https://img-hw.xvideos.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"XXX Hubba.com\" f=\"xxxhubba.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"xxxYours.com\" default_off=\"failed ruleset test\" f=\"xxxyours.com.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"yWorks.com\" f=\"yWorks.com.xml\"><rule from=\"^https?://(?:www\\.)?yworks\\.(?:com|de)/\" to=\"https://www.yworks.com/\"/></ruleset>", "<ruleset name=\"YADG.cc\" f=\"yadg.cc.xml\"><rule from=\"^http://(?:www\\.)?yadg\\.cc/\" to=\"https://yadg.cc/\"/></ruleset>", "<ruleset name=\"yanao.ru\" f=\"yanao.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"yaostrov.ru\" f=\"yaostrov.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"yapfiles.ru\" f=\"yapfiles.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"yaplakal.com\" f=\"yaplakal.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"yarcube.ru\" f=\"yarcube.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"yartv.ru\" default_off=\"failed ruleset test\" f=\"yartv.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"YC BI.com (partial)\" default_off=\"failed ruleset test\" f=\"ycbi.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yell.com (partial)\" default_off=\"failed ruleset test\" f=\"yell.com.xml\"><exclusion pattern=\"^http://marketing\\.yell\\.com/+(?!$|help(?:$|[?/]))\"/><securecookie host=\"^\\.\" name=\"^(?:_gat?$|s_v\\w)\"/><securecookie host=\"^(?!marketing\\.)\\w\" name=\".\"/><rule from=\"^http://marketing\\.yell\\.com/$\" to=\"https://business.yell.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yelp.com.br\" f=\"yelp.com.br.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yelp Blog.com\" f=\"yelpblog.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yelp Reservations.com\" f=\"yelpreservations.com.xml\"><securecookie host=\"^\\.\" name=\"^_ga\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"yerkramas.org\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"yerkramas.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yes.co.il (partial)\" f=\"yes.co.il.xml\"><securecookie host=\"^\\.\" name=\"^(?:_gat?$|_gat_|TS[\\da-f]{8})\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"yfrog.com\" default_off=\"failed ruleset test\" f=\"yfrog.xml\"><securecookie host=\"^\\.twitter\\.yfrog\\.com$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"yidianzixun.com\" f=\"yidianzixun.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"yilan.io\" f=\"yilan.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ykimg.com\" f=\"ykimg.com.xml\"><rule from=\"^http://res\\.mfs\\.ykimg\\.com/\" to=\"https://mfs.ykimg.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Ylilauta.org\" f=\"ylilauta.xml\"><securecookie host=\"^\\.ylilauta\\.org$\" name=\"^(?:__cfduid|cf_clearance)$\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yoast.com (partial)\" f=\"yoast.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yoogis Closet.com\" f=\"yoogiscloset.com.xml\"><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"yota.ru\" f=\"yota.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yottos.com (partial)\" f=\"yottos.com.xml\"><exclusion pattern=\"^http://(?:[^./]+\\.){2,}cdn\\.yottos\\.com/\"/><securecookie host=\"^\\.\" name=\"^_ga\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.cdn\\.yottos\\.com/\" to=\"https://cdn.yottos.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"yotuku.cn\" f=\"yotuku.cn.xml\"><rule from=\"^http://(www\\.)?yotuku\\.cn/\" to=\"https://yotuku.cn/\"/></ruleset>", "<ruleset name=\"yougetsignal.com\" f=\"yougetsignal.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"youla.io\" f=\"youla.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Young Stonewall.org.uk\" f=\"youngstonewall.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Your Choice Your Home.org.uk\" f=\"yourchoiceyourhome.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://yourchoiceyourhome\\.org\\.uk/\" to=\"https://www.yourchoiceyourhome.org.uk/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"yourls.org\" f=\"yourls.org.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Your Pension Service.org.uk\" f=\"yourpensionservice.org.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"yousuu.com\" f=\"yousuu.com.xml\"><rule from=\"^http://yousuu\\.com/\" to=\"https://www.yousuu.com/\"/><rule from=\"^http://js\\.yousuu\\.com/\" to=\"https://img.yousuu.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Youthscape.co.uk\" f=\"youthscape.co.uk.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yoyo.com\" f=\"yoyo.com.xml\"><securecookie host=\".\" name=\"^ps-trtmnt$\"/><securecookie host=\"^\\.\" name=\"^_ga(?:t?$|t_)\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://yoyo\\.com/\" to=\"https://www.yoyo.com/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Yoyogames.com\" default_off=\"failed ruleset test\" f=\"yoyogames.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"yp.ru\" default_off=\"failed ruleset test\" f=\"yp.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"yr.no (partial)\" default_off=\"failed ruleset test\" f=\"yr.no.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://api\\.yr\\.no/\" to=\"https://api.met.no/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"yts.ag\" f=\"yts.ag.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"yuga.ru\" default_off=\"failed ruleset test\" f=\"yuga.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"yunaq.com (partial)\" f=\"yunaq.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Z.cash\" f=\"z.cash.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"zabmedia.ru\" f=\"zabmedia.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"zaks.ru\" f=\"zaks.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"zamos.ru\" f=\"zamos.ru.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"zarunet.org\" f=\"zarunet.org.xml\"><rule from=\"^http://www\\.zarunet\\.org/\" to=\"https://zarunet.org/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZChat.com (partial)\" f=\"zchat.com.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZDF (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"zdf.xml\"><rule from=\"^http://zdfsport\\.de/\" to=\"https://www.zdfsport.de/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZDoom\" f=\"zdoom.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zeal docs.org\" f=\"zealdocs.org.xml\"><securecookie host=\"^\\.\" name=\"^(?:__cfduid|cf_clearance)$\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"zeczec.com\" f=\"zeczec.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"zenhub.io\" f=\"zenhub.io.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zenodo.org\" f=\"zenodo.org.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"zentralbahn.ch\" f=\"zentralbahn.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zero Anthropology.net\" f=\"zeroanthropology.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"zerogate.tk\" f=\"zerogate.tk.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"zhukovsky.net\" f=\"zhukovsky.net.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"zicguzoo.com\" default_off=\"failed ruleset test\" f=\"zicguzoo.com.xml\"><securecookie host=\".+\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZmtCDN.com\" f=\"zmtcdn.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"znak.com\" f=\"znak.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zongheng.com (partial)\" platform=\"mixedcontent\" default_off=\"failed ruleset test\" f=\"zongheng.com.xml\"><securecookie host=\"^\\.\" name=\"^PassportCaptchaId$\"/><securecookie host=\"^\\.passport\\.\" name=\".\"/><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZooCDN.com\" platform=\"mixedcontent\" f=\"zoocdn.com.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zoom.us\" f=\"zoom.us.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"zr.ru\" f=\"zr.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"zrey.com\" f=\"zrey.com.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"zrkuban.ru\" f=\"zrkuban.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zucks.co.jp\" f=\"zucks.co.jp.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http://www\\.zucks\\.co\\.jp/\" to=\"https://zucks.co.jp/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zucks.net\" f=\"zucks.net.xml\"><securecookie host=\".\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"zuerich.ch\" f=\"zuerich.ch.xml\"><rule from=\"^http://zuerich\\.ch/\" to=\"https://www.zuerich.ch/\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zugaina.net\" f=\"zugaina.net.xml\"><securecookie host=\"^\\w\" name=\".\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"Zuoyebang\" f=\"zuoyebang.xml\"><rule from=\"^http://www\\.zuoyebang\\.com/\" to=\"https://www.zybang.com/\"/><securecookie host=\"^ws-s\\.zuoyebang\\.cc$\" name=\".+\"/><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"ZVV.ch\" platform=\"mixedcontent\" f=\"zvv.ch.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>", "<ruleset name=\"zyxel.ru\" default_off=\"failed ruleset test\" f=\"zyxel.ru.xml\"><rule from=\"^http:\" to=\"https:\"/></ruleset>"], "targets": {"www.cloudmagic.com": [3289], "dl.aia.ag": [2024], "blackboard.usc.edu": [17366], "80spurple.com": [238], "cpnck.uk": [2024], "drbq.co": [2024], "higgy.be": [2024], "hasb.ro": [2024], "ppshop.me": [2024], "s.urlb.ag": [2024], "santos.cat": [2024], "prcc.us": [2024], "www.readitlaterlist.com": [13667], "icogr.com": [2024], "jme.oxfordjournals.org": [12222], "render-eu.worldofwarcraft.com": [18542], "penango.us": [2024], "www.liberal.ca": [9309], "samarskaya-obl.beeline.ru": [1778], "www.adulttoys4u.com.au": [699], "hxtrs.co": [2024], "parallella.org": [12419], "bogatyesaby.startsmile.ru": [21980], "6to4.nro.net": [11616], "mu1.sinaimg.cn": [14910], "www.tinyteenpass.com": [16566], "www.blot.im": [2137], "qubb.es": [2024], "www.websitealive8.com": [18242], "news.piratenpartei.de": [12755], "rgdo.de": [2024], "penso.me": [2024], "lipetsk.biglion.ru": [19375], "10.wsls.com": [2024], "members.firedoglake.com": [5840], "api.gogobot.com": [6791], "youre.bad.mn": [2024], "nas-staff.org": [2024], "i.naijamuse.com": [2024], "getergo.com": [2024], "ctvt.link": [2024], "gfycat.com": [6608], "s.kumapon.jp": [9049], "speqit.co": [2024], "teen-wolf.friday.ru": [20175], "services-federation.renater.fr": [13826], "bretly.us": [2024], "samainn.com": [2024], "www.cyberagent.co.jp": [3950], "fahrplan.zvv.ch": [22733], "leal.im": [2024], "c.zoocdn.com": [22723], "harn.es": [2024], "spreadshirt.fi": [15371], "urlpro.us": [2024], "on.handbag.com": [2024], "aedc.gov.au": [1413], "www.lenovo.com.cn": [9266], "be-nl.norton.com": [11545], "dan.kent.ac.uk": [17402], "www.bizx.info": [19396], "spreadshirt.fr": [15371], "wd-edge.sharethis.com": [14730], "thegr.id": [2024], "order.humanevents.com": [7613], "img11.360buyimg.com": [148], "cila.co": [2024], "bizzy.in": [2024], "iportal.nso.ru": [21192], "pysmpl.com": [2024], "a.rch.io": [2024], "tools.xsolla.com": [18685], "g-gy.in": [2024], "voronezh.beeline.ru": [1778], "svn.netfilter.org": [11265], "appworks.tw": [19221], "ylp.fr": [2024], "nairobi.usembassy.gov": [22406], "www.nva.org": [11134], "pthblog.amnesty.org.uk": [1015], "hire.jobvite.com": [8616], "*.enecto.com": [5239], "blurb.erize.me": [2024], "eglasser.us": [2024], "thinkmissionexcellence.maine.edu": [17407], "fb.ecn.api.tiles.virtualearth.net": [17840], "www.campact.de": [2790], "on.mixpo.co": [2024], "ratfishoil.com": [13636], "fls-eu.amazon.es": [19175], "2018.championat-rostov.ru": [19557], "www.molevalley.gov.uk": [21007], "cdn.tectonic.com": [16120], "pov.streamuk.com": [22008], "f59.co": [2024], "alphabankbonusredemptionen.aegeanair.com": [6896], "gestioacademicavirtual.esci.upf.edu": [17471], "beyondthebubble.stanford.edu": [15448], "mbook.flypeach.com": [20126], "r.om.id.au": [2024], "nar.link": [2024], "*.cpcache.com": [2730], "paja.ro": [2024], "img.qz.com": [13443], "jhilario.com": [2024], "signup.litmus.com": [9483], "hyde.so": [2024], "img.ulule.com": [17224], "www.flashgot.net": [5883], "swm.li": [2024], "s.phansoft.ca": [2024], "gen10.co": [2024], "bugzilla.freedesktop.org": [6102], "us.ae.alibaba.com": [857], "aspirations.sbi.co.in": [14140], "engri.sh": [2024], "originwww.lovebizhi.com": [20878], "orgg.in": [2024], "install.1up.fm": [2024], "femsmi.oxfordjournals.org": [12222], "i.mtgjudge.net": [2024], "hastings.moderngov.co.uk": [21005], "www.opsmate.com": [12098], "photos2.demandmedia.com": [4325], "www.a2hosting.com": [266], "www.nationaleombudsman.nl": [11172], "verrag.io": [2024], "www.usenetter.nl": [22407], "myportaladmissions.rbwm.gov.uk": [21597], "aam904.com": [2024], "pikes.co": [2024], "mm.sitecompass.com": [14931], "parles.upf.edu": [17471], "peak.to": [2024], "rsi.ch": [21957], "l.dcdesi.com": [2024], "interi.ms": [2024], "*.istheinternetonfire.com": [20593], "mxr.mx": [2024], "on.today.com": [2024], "hypr.vc": [2024], "www.q8car.com": [13321], "mmymkt.co": [2024], "www.regexbuddy.com": [21625], "searchcloudcomputing.de": [16083], "www.4pda.uz": [191], "www.overheid.nl": [11172], "13strid.es": [2024], "northlincs.greenparty.org.uk": [6908], "inkscape.org": [8152], "bmcbioinformatics.biomedcentral.com": [1931], "virginaustralia.com": [17820], "www.atinternet-solutions.com": [423], "heureka.sk": [7377], "api.eutelsatnetworks.ru": [20038], "mq.oxfordjournals.org": [12222], "*.janalta.com": [8521], "illuminatinginteriors.cca.edu": [2547], "www.spongecell.com": [21940], "tward.us": [2024], "cdn.loc.gov": [9541], "yed24hr.com": [18758], "fcsys.co": [2024], "www.thestorefront.com": [16385], "ngpvan.com": [10947], "li.nkg.pt": [2024], "visit.berkeley.edu": [17329], "www.shareasale.com": [14722], "scubbly.com": [14489], "turikhay.cdnvideo.ru": [19536], "22.mvd.ru": [21055], "pix.telekom.de": [4397], "vpolo.fr": [2024], "jsqmt.qq.com": [13329], "store.warframe.com": [18073], "billscenter.paytrust.com": [8300], "fotopigeon.com": [6052], "*.nciphub.org": [21096], "help-en-gb.nike.com": [11440], "i4g8.com": [2024], "eroglu.ca": [2024], "wdrt.co": [2024], "bit.cheang.tk": [2024], "www.greensmoke.co.uk": [6911], "www.netapp.com": [11221], "jpstore.dell.com": [4317], "teign.fitness": [2024], "dcme.co": [2024], "www.logilab.fr": [9568], "www.gpgtools.org": [6348], "jamtrackcentral.com": [8509], "s.100s.nl": [2024], "mluv.co": [2024], "kimage.playerauctions.com": [12840], "hpestorage.me": [2024], "ebank.sz2.cmbchina.com": [2639], "m-tv.fr": [2024], "swimbc.me": [2024], "kontakt.get.no": [20237], "s.yoko14145.com": [2024], "hb.biligame.com": [1903], "www.userium.com": [17519], "14.cbsm.at": [8782], "static.autobytel.com": [1450], "linaro.org": [9377], "ahj.me": [2024], "nzbmatrix.com": [11043], "t3w.us": [2024], "admin.radioplayer.co.uk": [13581], "cn.calameo.com": [2747, 2748], "dev.metasploit.com": [10335], "cancerimagingjournal.biomedcentral.com": [1931], "voterregistration.ct.gov": [2695], "apps2.am730.com.hk": [19163], "merus.link": [2024], "webservice.1prime.ru": [83], "iais.fraunhofer.de": [6091], "open-source.holidayextras.com": [7459], "ad.androdis.xyz": [2024], "microsoftventures.com": [10403], "kutne.ws": [2024], "www.goc.io": [6342], "l.frumyk.me": [2024], "siue.starfishsolutions.com": [21977], "kundencenter.kevag-telekom.de": [8878], "anonymouse.me": [1090], "mupdf.com": [21052], "hr.rbth.com": [21596], "webdev.zotac.com": [18855], "amung.us": [18363], "hi.metafoto.de": [2024], "oelri.ch": [2024], "www.alumniweekend.ox.ac.uk": [17359], "static6.flixster.com": [5913], "i.cx": [7657], "crash.io": [2024], "www.cines.fr": [2621], "jrpass.me": [2024], "ih0.redbubble.net": [13721], "ru.theanarchistlibrary.org": [16290], "vs2vl.co": [2024], "www.teevox.com": [16126], "amp.cnn.com": [2649], "indi.rocks": [2024], "direct.samsungfire.com": [14329], "o2s.me": [2024], "click4assistance.co.uk": [3243], "www.djkit.com": [4030], "homespot.falkirk.gov.uk": [5630], "masstea.ch": [2024], "l.urlto.info": [2024], "confiscated.utb.ru": [17538], "sms.cxplaza.com": [2024], "sales-images1.therealreal.com": [22180], "woak.in": [2024], "www.verseone.com": [22445], "www.skyscanner.com.au": [15006], "wwwdyn.zdf.de": [22709], "greenit-bb.de": [6900], "login.kuleuven.ezproxy.kuleuven.be": [8832], "comnap.aq": [2653], "mjs.jobs": [2024], "actu.lemonde.fr": [9204], "gstylmg.com": [2024], "urhip.us": [2024], "www.indymedia.org.uk": [8089], "*.nautil.us": [11147], "csulb.edu": [2761], "di.simpen.in": [2024], "img1.aquagear.com": [1175], "www.vtecdirect.com": [17604], "wiki.sigxcpu.org": [14846], "jemi.ma": [2024], "m-comcred.utb.ru": [17538], "www.clubtime.fm": [19627], "iphone-api.fitbit.com": [5867], "lovesuje.co": [2024], "freetalklive.com": [20167], "mister.ws": [2024], "xchange.is": [22646], "banis.us": [2024], "rede.ink": [2024], "panamapapers.icij.org": [7689], "w.uptolike.com": [17466], "epuap.gov.pl": [19928], "pingless.co.il": [12720], "4info.xyz": [2024], "bas.la": [2024], "qatar.usembassy.gov": [22406], "kcar.me": [2024], "*.trkclk.net": [16829], "s.marketwatch.com": [10029], "torrentz.site": [22250], "*.impact-ad.jp": [8013], "specialcollections.blog.lib.cam.ac.uk": [17332], "www.conted.ox.ac.uk": [17359], "goshenbkc.com": [2024], "invodo.com": [8325], "irknet.ru": [20581], "ejuden.me": [2024], "okst.secure-endpoints.com": [14542], "widgets.elpais.com": [5126], "adastradev.its.sfu.ca": [14708], "modernrepo.com": [10560], "sk.link.at.tf": [2024], "img2.glassdoor.com.au": [20261], "hellowebapp.com": [7299], "*.ientry.com": [20462], "gonoir.co": [2024], "greatnonprofits.org": [6892], "accessoires.t-mobile.nl": [15836], "login.ccccloud.com": [2554], "go.edatwork.com": [2024], "www.kbs.de": [8953], "apply.berklee.edu": [1817], "nchls.co": [2024], "sstats.topshop.com": [22238], "s24.li": [2024], "brcproducts.net": [2024], "abclinuxu.cz": [462], "houseoffraser.co.uk": [7570], "s24.lc": [2024], "secure.cica.ca": [2813], "vdo.li": [2024], "dljy.co": [2024], "xenbits.xenproject.org": [18647], "arigus-tv.ru": [19232], "tr.boell.org": [19422], "ap1.pccu.edu.tw": [12250], "www.the109.org": [16319], "www.sv.uio.no": [17414], "partner.ulozenka.cz": [17212], "note.cyberplat.ru": [3965], "eastbay.com": [5008], "curejoy.io": [2024], "thebestirs.co": [2024], "financnahitparada.sk": [5812], "www.librecmc.org": [20830], "1kbhkort.kk.dk": [8748], "becbc.co.uk": [2024], "healthtoday.mims.com": [9756], "n.3m.com": [2024], "rcbris.co": [2024], "sflogo.sourceforge.net": [15242], "www.payoneer.com": [12515], "rpxcorp.com": [13508], "m.zalando.nl": [18877], "brobx.com": [2024], "adroll.com": [590], "rhein-neckar-loewen.de": [13916], "service.gmx.net": [6330], "www.ub.uni-mainz.de": [17410], "e-gold.com": [4846], "www.relate.org.uk": [13812], "management.ident.indapass.hu": [8055], "ipruapps.iciciprulife.com": [7917], "www.geology.illinois.edu": [17346], "mobygames.com": [10542], "shared.qwknetllc.com": [13339], "trib.ent.sirsidynix.net.uk": [14927], "m.superpages.com": [15698], "www.junglee.com": [8696], "firehol.org": [20107], "brainbench.com": [2284], "hosterbox.com": [7529], "gigabyte.com": [6628], "chemse.oxfordjournals.org": [12222], "www.hackinparis.com": [7125], "spvtest.tocco.ch": [16600], "www.sensepost.com": [14647], "www.migrosbank.ch": [10414], "act.demandprogress.org": [4328], "mbox1.belwue.de": [1802], "www.mobile01.com": [10533], "amzn.to": [2024], "fici.sme.sk": [14198], "ml.ms": [2024], "secure.jsonline.com": [20662], "appsecusa.org": [1163], "musicda.sh": [2024], "lwscomdtq8.lowes.com": [9645], "hits.golem.de": [6804], "blog.stackoverflow.com": [15424], "thepublicindex.org": [16279], "szakirodalom.atlatszo.hu": [1349], "business.ftc.gov": [5710], "playerstribu.ne": [2024], "www.anonbox.net": [1083], "tv-release.net": [16932], "p9m.it": [2024], "mpfemployers.org.uk": [21033], "updates.jenkins.io": [20638], "stopsoftwarepatents.eu": [15553], "adcentre.magnetisemedia.com": [9879], "zane.tips": [2024], "hg0.sv.gnu.org": [6337], "stavropol.europaplus.ru": [20034], "www.servicenow.com": [14682], "www.gismeteo.lt": [20249], "s0.jrnl.ie": [20656], "truthinadvertising.org": [16872], "*.divide.com": [4572], "manage.qcloud.com": [13346], "zeedpic69.com": [18908], "myqn.my": [2024], "www.gdata.co.jp": [6272], "dds.dji.com": [4029], "s.mirr.jp": [2024], "www.geeknetmedia.com": [6488], "jotw.at": [2024], "a0.ifengimg.com": [20487], "octopart.com": [11751], "sprecherapp.com": [2024], "www.centreon.com": [2965], "treasurecoast.aclufl.org": [297], "s9.cnzz.com": [3328], "dtsmedia.co": [2024], "*.ng.bluemix.net": [2166], "www.internot.info": [8289], "maxw.co": [2024], "datacard.com": [4190], "10.url.cn": [22399], "schneideroptics.com": [14422], "randstad.us": [2024], "lb.boell.org": [19422], "boyshout.com": [2024], "www.mutts.com": [21054], "sccsheriff.org": [14401], "store.ancestry.com": [1035], "sflb.net": [2024], "kye.ch": [2024], "bg4.me": [2024], "infopackets.com": [8115], "www.turisticke-znamky.cz": [22312], "economize.catracalivre.com.br": [2917], "krcr.co": [2024], "shop.sandsmedia.com": [14274], "deals.ghacks.net": [6307], "*.nevillholtopera.net": [11326], "compass.illinois.edu": [17346], "hukd.mydealz.de": [10800], "transfo.squat.net": [21955], "ads.undertone.com": [17245], "sise.gr": [2024], "studentinvolvement.wustl.edu": [18089], "www.nuevocloud.com": [21198], "subscription-assets.time.com": [15884], "netis.cis.vutbr.cz": [17609], "nietzs.ch": [2024], "www.shopware.de": [14793], "fs.clp.com.hk": [2636], "searchworks.stanford.edu": [15448], "*.offerscdn.net": [11777], "www.aa.com": [273], "go.pardot.com": [12428], "fanda.co": [2024], "habarovsk.europaplus.ru": [20034], "pop6.com": [12948], "music.xbox.com": [18639], "fernando.tips": [2024], "*.quizaction.de": [13425], "drupal7.april.org": [1171], "app.mouseflow.com": [10664], "*.livejournal.com": [9503], "a.bayi.com.my": [2024], "kserver.mastermindpro.com": [10067], "grdc.com.au": [6871], "oceanconference.un.org": [17057], "src.ac.pld-linux.org": [12298], "link.ibfd.org": [2024], "dgt.gl": [2024], "npnow.news": [2024], "www.citymapper.com": [3195], "akwww.polyvoreimg.com": [21459], "wwws.loc.gov": [9541], "z.play-asia.com": [12828], "assets.gyazo.com": [7019], "pkids.co": [2024], "www.biostat.wustl.edu": [18089], "git.replicant.us": [13840], "rkcpr.com": [2024], "intranet.inria.fr": [8161], "my.bracknell-forest.gov.uk": [19440], "kiwicon.org": [8942], "r24626504.sync.app.asana.com": [1265], "pages.email.time.com": [15884], "bestvpn.com": [1839], "qpr.ba": [2024], "buho.im": [2024], "lizb.it": [2024], "host80.top": [2024], "wapp.baidu.com": [1641], "www.yr.no": [22699], "techendo.com": [16092], "www.aiib.org": [347], "nano.osu.edu": [11797], "youtube.pt": [18800], "myaccount.globalcapacity.com": [6704], "framalab.org": [6075], "www.zeroblock.com": [18939], "naukri.com": [11146], "specialisten.at": [2024], "patty4ia.com": [2024], "t2t.pw": [2024], "r24822922.sync.app.asana.com": [1265], "ga.doubanio.com": [19889], "lhc.church": [2024], "kctcs-lod.edusupportcenter.com": [19962], "events.cornell.edu": [3676], "deakin.edu.au": [4241], "lbp.me": [20789], "500.chromeexperiments.com": [3122], "vespermarine.com": [17738], "jujub.it": [2024], "mymediamagnet.com": [10854], "blog.vrr.de": [17954], "ms-i.us": [2024], "my.lambeth.gov.uk": [20773], "bizta.lk": [2024], "bt.gd": [2024], "iridscnt.me": [2024], "by.far.al": [2024], "kngs.me": [2024], "frab.camp.ccc.de": [2553], "rtsn.tk": [2024], "www.get-digital.es": [6546], "www.guidancesoftware.com": [6988], "tprk.us": [2024], "kngs.mn": [2024], "nter.dk": [2024], "luckymarmot.com": [9659], "pixmix.co": [2024], "www4.lubw.baden-wuerttemberg.de": [19302], "henanguan.jd.com": [8434], "static-cdn.mackeeper.com": [9834], "link.sabio.tv": [2024], "philp.al": [2024], "valdikss.org.ru": [22423], "jiffyfreescore.com": [8582], "dky.bz": [2024], "cdn3.vox-cdn.com": [17939], "society.49gov.ru": [187], "1.ie.edu": [2024], "*.nyu.edu": [11334], "static.soup.io": [15235], "jenkins.labs.nic.cz": [11418], "emc2.cornell.edu": [3676], "akademie.nic.cz": [11418], "kxlogo.knet.cn": [8757], "www.canadianwebhosting.com": [2809], "images-3.gog.com": [6343], "thepiratebay.pe": [22175], "op.vitamins.nl": [2024], "eiu.com": [5053], "assets.juicer.io": [8681], "uhd.ayyo.ru": [19292], "puerguan.jd.com": [8434], "n.uuus.be": [2024], "s3.plymouth.ac.uk": [12873], "support.aerofs.com": [736], "bri.gd": [2024], "storage1b.censor.net.ua": [19538], "www.ethnologue.com": [5372], "www.xiaomi.cn": [18661], "podjetje.hofer.si": [357], "assets.activision.com": [556], "myip.subgraph.com": [15623], "wayf.dsi.cnrs.fr": [6174], "w.csmonitor.com": [19737], "dlros.com": [2024], "www.planet-energy.de": [12797], "www.amnesty.org": [1000], "eventbrite.de": [20039], "m.lurkmore.so": [9683], "x.ngt.no": [2024], "s.sh.adingo.jp": [646], "gerritcro.es": [2024], "stats.thermoscientific.com": [16421], "apnaindia.com": [1127], "on.tdo.com": [2024], "mail.ferrara.linux.it": [9419], "telnic.org": [16169], "img.shields.io": [21801], "melbc.it": [2024], "rmpl.me": [2024], "cryptonote.org": [19729], "quup.com": [13440], "favu.vutbr.cz": [17609], "citya.tl": [2024], "office.engg.hku.hk": [20387], "t.maxpreps.com": [2024], "multimedia.upf.edu": [17471], "encoding.com": [5224], "ibec.me": [2024], "jvel.in": [2024], "harperreed.com": [7201], "link.mwt.tw": [2024], "rmcd.eu.org": [2024], "www.freedomhouse.org": [6152], "kaiserf.am": [2024], "loadxl.exelator.com": [4988], "nckr.es": [2024], "frozen-yogurt-franchise.org": [6211], "am.medialaben.no": [20948], "featurefile.com": [2024], "timesheets.opm.gov": [11690], "cams.tm.com.my": [16150], "wzr.io": [2024], "webstyle.ch": [18252], "ehn.emoryhealthcare.org": [5203], "fm.rtvs.sk": [13536], "www.trust-it.gr": [16852], "hobbypcb.com": [20388], "uae.europaplus.ru": [20034], "coderouge.co": [3375], "sony-europe.com": [15211], "nchow.ca": [2024], "go.hw.is": [2024], "cloudshark.org": [19626], "piggeldy.workaround.ch": [22613], "tw.voicepro.it": [2024], "consortium.gephi.org": [6536], "darkhim.re": [2024], "manual.macromates.com": [9849], "msturm.htwk-leipzig.de": [7596], "sc.rgstatic.net": [13481], "bbyz.co": [2024], "cusa.onl": [2024], "letsencrypt.status.io": [21983], "unistream.ru": [17291], "opencaching.pl": [21269], "shibboleth.highwire.org": [7404], "ajax.microsoft.com": [10396], "crowneplaza.nz": [2024], "www.flowingdata.com": [5925], "penza.sledcom.ru": [21858], "straw.bz": [2024], "vbradm.khabkrai.ru": [20709], "getpocket.com": [6566], "templetonusd.illuminateed.com": [20494], "ggab.tv": [2024], "glorios.us": [2024], "jh13.ga": [2024], "vn.usembassy.gov": [22406], "halans.co": [2024], "www.careerbuilder.co.uk": [19511], "lidlcommunity.co.uk": [20834], "telethon2015.fr": [2024], "strava.cz": [15582], "pfm.psbank.ru": [13231], "yoyogames.com": [22697], "a.txtr.se": [2024], "www.fundaciontelevisa.org": [6238], "hezuo.1688.com": [51], "heartland-interiors.co.uk": [20361], "www.fluxbb.org": [5936], "tkts.us": [2024], "www.railsschool.org": [13591], "hsi.la": [2024], "www.gourmet.mcdonalds.ru": [20941], "1statebank.org": [2024], "chrdnet.com": [19587], "s1.srf.ch": [21957], "quickbase.com": [8300], "www.jepso.com": [8568], "iwbcollaboration.educ.cam.ac.uk": [17332], "www.muspy.com": [10770], "marca.bankinter.com": [1674], "westberks.spydus.co.uk": [21952], "sw12.squat.net": [21955], "login.xmarks.com": [18671], "pw4.com": [2024], "www.kororaproject.org": [9001], "democratic.warwickshire.gov.uk": [22532], "loak.loak.org": [2024], "api.element14.com": [5148], "piratebay.unlockproject.download": [22259], "lstbrl.in": [2024], "hxgn.biz": [2024], "fitbit.link": [2024], "e.tobuy.tips": [2024], "r24820193.sync.app.asana.com": [1265], "old.majordomo.ru": [9914], "ellecan.ca": [2024], "eecs.berkeley.edu": [17329], "www.data.gov.uk": [19762], "cseah.lc": [2024], "photos.offog.org": [11793], "cst.stu.126.net": [40], "1.bp.blogspot.com": [2122], "www.herts.police.uk": [7332], "tunisia-sat.com.tn": [16903], "www.ozvoucher.com.au": [12227], "*.uscis.gov": [17134], "a.alodady.com": [2024], "b2b.migrol.ch": [10413], "ja.martinus.sk": [10044], "conce.pro": [2024], "dcp.psc.gov": [21528], "prebb.bz": [2024], "files.williamhill.com": [18407], "auslieferung.commindo-media-ressourcen.de": [3483], "www.readthenburn.com": [13672], "pt.pornworms.com": [12974], "bugreports.qt.io": [13365], "accounts.cca.edu": [2547], "tyjo.us": [2024], "e.fastcompany.net": [5670], "flypeach.com": [20126], "nordichardware.se": [11511], "www.tigerdirect.com": [16516], "v5.windowsupdate.microsoft.com": [10395], "n2u.jp": [2024], "www.mir.afisha.ru": [19107], "deploy-domeos.bjcnc.scs.sohucs.com": [15173], "www.imn.htwk-leipzig.de": [7596], "ulan-ude.beeline.ru": [1778], "render.fineartamerica.com": [5828], "www.hashbang.ca": [7217], "cmspromo.alipay.com": [864], "www.mycotopia.net": [10868], "2.dbstatic.no": [19775], "songsterr.com": [15205], "0-t.imgbox.com": [7997], "forum.ovh-hosting.fi": [12205], "kropotkin.startsmile.ru": [21980], "silana.no": [2024], "panop.to": [2024], "omin.es": [2024], "www.auctionbunker.com": [1372], "www.punto.ar": [13275], "sherlock.livingsocial.com": [9530], "www.baztab.net": [1738], "setonc.net": [2024], "artsts.de": [2024], "sealey.in": [2024], "s21.cnzz.com": [3328], "www.caskstore.com": [2894], "pyatigorsk.startsmile.ru": [21980], "www.youtube.com.ua": [18800], "ticketing.calacademy.org": [2746], "entangledstates.org": [20001], "rimg09.rl0.ru": [13972], "quest.karelia.pro": [20687], "nutrimom.co": [2024], "kalmykiya.beeline.ru": [1778], "helpdesk.malwarebytes.org": [9941], "mountainview.gov": [3193], "ess.re": [2024], "360myte.ch": [2024], "gemr.it": [2024], "www.mofobian.com": [10566], "krsta.me": [2024], "fusionr.ec": [2024], "www.dr-qubit.org": [4730], "desr.dict.cc": [4442], "weoly.com": [2024], "stu.onl": [2024], "services.account.lego.com": [9082], "pd-c.at": [2024], "valvesoftware.com": [17636], "getbb.io": [2024], "*.liquidweb.com": [9457], "uat.splash.riverbed.com": [13964], "muo.co": [2024], "www.secure.me": [14552], "es.gizmodo.com": [6677], "icehost.is": [7913], "www.lynxtech.no": [9694], "www.discovery.com": [4543], "bbqg.us": [2024], "portal.2kom.ru": [128], "media.washpost.com": [18084], "jd.1688.com": [51], "px.at.atwola.com": [377], "picexplore.com": [2024], "en-ro.dict.cc": [4442], "fls-na.amazon.com": [963], "msti.me": [2024], "kreator.kei.pl": [8855], "jbfavre.org": [8552], "myseiu.be": [2024], "onfs.net": [2024], "ebx.mx": [2024], "sharalike.co": [2024], "s88.cnzz.com": [3328], "chainflyer.bitflyer.jp": [1958], "bmby.ml": [2024], "post.polymus.ru": [21457], "commcoach.tips": [2024], "8.lmk.is": [2024], "twittab.co": [2024], "dcminfo.wustl.edu": [18089], "missionislam.com": [10493], "www.events.nibusinessinfo.co.uk": [21135], "hrd.cm": [2024], "frontroe.co": [2024], "factoryexpohomes.com": [5616], "standagainstspying.net": [15441], "w3.grupobbva.com": [1744], "disc.yandex.com.tr": [18740], "cyweo.me": [2024], "thefightagainstcorruption.unodc.org": [17075], "www.ipk.fraunhofer.de": [6091], "customers.anpdm.com": [1091], "tb-gui.de": [2024], "go.gitt.io": [2024], "x.zvy.xyz": [2024], "factorioforums.com": [20068], "poopjournal.rocks": [12946], "blog.netspi.com": [11245], "bpb.de": [19437], "fraserxu.me": [6088], "ww2451.smartadserver.com": [15049], "s.sti.st": [2024], "whois.registro.br": [13796], "s8.gismeteo.md": [20251], "ecfr.xyz": [2024], "www.zemanta.com": [18912], "url.deathe.org": [2024], "il.norton.com": [11545], "www.cashplatoon.com": [2889], "s.r15.ch": [2024], "sbkc.us": [2024], "ams.org": [367], "herbal-nutrition2.net": [7322], "rochdale.spydus.co.uk": [21952], "admin.oktd.kent.gov.uk": [8867], "iwa.admin.test.octopuspop.com": [11754], "securityinnovation.com": [14592], "jwelb.oxfordjournals.org": [12222], "www.libtoxcore.so": [9337], "airbnb.com.au": [793], "www.mijnd66.nl": [10419], "www.acluaz.org": [295], "myskai.ch": [10886], "demotb.ubrr.ru": [17173], "my.tryapka.com": [2024], "i.meituan.com": [10248], "bcal.co": [2024], "writtenchinese.com": [22623], "ratas.sanoma.fi": [14351], "www.softaculous.com": [15162], "mbl.teljari.is": [10123], "www.trollingeffects.org": [16832], "j.pdsla.net": [2024], "tahoesha.re": [2024], "www.ratgeber-verbraucherzentrale.de": [17706], "go.votare.net": [2024], "vr.force.com": [17729], "www.komments.net": [8977], "lp.nanigans.com": [11067], "prozeny.blesk.cz": [2088], "www.koldfront.dk": [8973], "demandfood.co": [2024], "localsearch.courierpostonline.com": [3713], "www209.americanexpress.com": [979], "force.com": [14311], "go.zvo.io": [2024], "wpch.co": [2024], "www.instra.com": [8197], "www.deezer.com": [4288], "js.tv.itc.cn": [8401], "bppub.net": [2024], "mwick.es": [2024], "clujne.ws": [2024], "www.sci-hub.ac": [14436], "directspace.net": [4513], "revv.rubiconproject.com": [14066], "otf.msn.com": [9810], "www.fakena.me": [20072], "nslp.co": [2024], "sandbox.pagseguro.uol.com.br": [17079], "unbridled.info": [17241], "delivery.w00tads.com": [17978], "balashikha-22-mr.beeline.ru": [1778], "etn.li": [2024], "www.catchthemes.com": [19524], "adp.s8bbs.com": [21709], "www.torrentz.com": [16663], "blog.brightfort.com": [2337], "blog.entropia.de": [20004], "es.ca.anthem.com": [19206], "tfit.ch": [2024], "new.familysearch.org": [5636], "htcinsi.de": [2024], "on.styo.me": [2024], "www.ant.ulaval.ca": [17319], "static.chartbeat.com": [3024], "growhq.com": [6961], "xfin.tv": [2024], "*.footholds.net": [5992], "console.magnetisemedia.com": [9879], "l.jrunn.in": [2024], "*.blogspot.co.at": [2127], "*.travelingnuker.com": [16770], "m.yandex.by": [18739], "*.listrakbi.com": [9467], "metrics.sky.com": [14989], "api.runabove.com": [14090], "mi.gl": [2024], "kerriis.ms": [2024], "wholelivingdaily.wholeliving.com": [10040], "risd.mu": [2024], "ross.to": [2024], "unbnd.me": [2024], "erdely.atlatszo.hu": [1349], "www.nordvpn.com": [11519], "licensing.havant.gov.uk": [20347], "receivingmail.osu.edu": [11797], "cdn-my.nanorep.com": [11071], "0.lokonline.com": [2024], "frd.hm": [2024], "agentapi.ipip.net": [20570], "skm.ms": [2024], "it.socialclub.rockstargames.com": [13997], "getrxn.io": [2024], "cloud.boell.de": [2192], "s5.pstatp.com": [16680], "blng.co": [2024], "kpsh.us": [2024], "cxmst.jd.com": [8436], "children.brent.gov.uk": [2324], "cdn2.doitgarden.ch": [4629], "hoppy.co": [2024], "*.cloudsigma.com": [3291], "www.rssinclude.com": [13523], "www.xiscosoft.info": [18668], "se.norton.com": [11545], "wh2.gm.163.com": [50], "m.anhe.im": [2024], "www.vlada.gov.sk": [15037], "uadm.uu.se": [17153], "shibboleth.usc.edu": [17366], "life.gt": [2024], "cdna.thehubpeople.com": [22155], "rov.im": [2024], "buyiphone3.apple.com": [1151], "go.roastrabb.it": [2024], "www.armedforcesday.org.uk": [1228], "smld.rs": [2024], "c1.nwtime.org": [11306], "servicios.upo.es": [17479], "cpr.io": [2024], "www.pb.uillinois.edu": [17034], "in-tendhost.co.uk": [20517], "www.symfony.fi": [15783], "www3.lcsd.gov.hk": [7067], "seller.alibaba.com": [857], "gem106.co": [2024], "sifterapp.com": [11398], "userpub.itunes.apple.com": [1151], "users.venturebeat.com": [17700], "cgdl.mx": [2024], "io.hanselwei.me": [2024], "forum.hkgolden.com": [7058], "ma5.us": [2024], "mail.spnet.ru": [21939], "s3.uczzd.cn": [17003], "westernunion.com": [18310], "www.1ty.me": [89], "www.mastermindpro.com": [10067], "www.wykop.pl": [18577], "voronezh.auto.ru": [19276], "wldts.co": [2024], "jtg.me": [2024], "adjug.com": [580], "moviemaps.org": [10676], "thetqp.com": [2024], "www.managedforexprogram.com": [9952], "gate.telphin.ru": [16170], "www.justitie.nl": [11172], "zhumadian.jd.com": [8434], "www.speech-language-therapy-jobs.org": [21929], "*.ag.gov.au": [1367], "www.weekendjeweg.nl": [22555], "shop.time.com": [15884], "trtworld.co": [2024], "crawleybc.firmstep.com": [20109], "i.ban.jo": [2024], "s.xfeng.me": [2024], "ar.godaddy.com": [6755], "www.movelia.es": [10671], "visitor-service-eu-west-1.tealiumiq.com": [16060], "www.canon.com.tr": [2822], "clkrev.com": [3271], "ana.ostad.ma": [2024], "local.speed.khotkovo.net": [20712], "i.swapsocks.com": [2024], "research.buffalo.edu": [17382], "vda.cm": [2024], "www.crysys.hu": [3834], "online.pochtabank.ru": [12876], "studyinthestates.dhs.gov": [4026], "sacq.co": [2024], "*.ravensoft.com": [13640], "bahbah.co": [2024], "stopgame.rocketbank.ru": [13994], "staging2.python.org": [13314], "tours.sasve.com": [2024], "www.last.fm": [9174], "dostan.mondediplo.com": [10578], "cloudflarestatus.com": [3301], "wapo.st": [2024], "genotek.ru": [20229], "www.nxtblocks.info": [11024], "culturetalks.tv": [2024], "punchout.digikey.de": [4457], "o.coolto.com.br": [2024], "www.ovh.nl": [12205], "www.otr-online.ru": [21308], "osumarion.osu.edu": [11797], "abcdent.in": [2024], "landscape.curse.com": [3927], "m.melbourneaquarium.com.au": [10253], "actete.ch": [2024], "j0uw.nl": [2024], "tstitt.me": [2024], "www.connectedu.net": [19668], "www.telefonica.cz": [16141], "alice.sg": [2024], "a.zhng.me": [2024], "r.trix.nz": [2024], "*.nonexiste.net": [11504], "abcmusicpublishing.com.au": [283], "*.powweb.com": [13033], "www.imm.hs-karlsruhe.de": [7587], "mbogeni.us": [2024], "a4.hitravel.xyz": [2024], "cdn.yourpshome.net": [18818], "www.passwordless.net": [21353], "techinasia.com": [16090], "californiasunday.com": [2766], "u.tpx.mx": [2024], "lymecomms.co.uk": [2024], "*.data.aad.gov.au": [1407], "hushmail.com": [7636], "flashrom.org": [5884], "nasazilina.sme.sk": [14198], "cdn4.sportxx.ch": [15362], "patcholo.gy": [2024], "workspace.boell.de": [2192], "*.o2.cz": [16141], "www.duba.com": [4782], "*.spreadshirt.fi": [15371], "community.flixster.com": [5913], "dsalumni3.ds.leeds.ac.uk": [17403], "crp.gov.sk": [15037], "vai.gopale.org": [2024], "wiki.allizom.org": [904], "j16.co": [2024], "api.discogs.com": [4529], "astrol.is": [2024], "joeb.me": [2024], "crewfi.re": [2024], "estoniaevoting.org": [5357], "itspa.org.uk": [7854], "www.fiddler2.com": [20085], "freeflixtv.ga": [2024], "sentry.ideco.ru": [20480], "toogl.com": [16626], "ausleihe.hslu.ch": [7589], "commonfund.nih.gov": [11090], "dev.thegaz.us": [2024], "lingyi.qidian.com": [13349], "efl.georgetown.edu": [6531], "sverdlovskaya-obl.beeline.ru": [1778], "support.spotify.com": [15367], "coaching.co": [2024], "sakha.tpprf.ru": [22260], "wirelessleiden.nl": [18459], "exa.gen.in": [2024], "rkn.gov.ru": [13971], "service.enum.ru": [5292], "cubek.me": [2024], "tnyn.gs": [2024], "music.163.com": [50], "dvgf.nl": [2024], "www.drm.info": [4074], "wag.q-assets.com": [21551], "sartre.tk": [2024], "webmail.active24.com": [19061], "gifttool.com": [6624], "www.ostermiller.org": [21301], "gop.ac": [2024], "glsdrt.co": [2024], "*.apmebf.com": [17629], "images.gunosy.com": [7005], "gpac.link": [2024], "*.eprize.com": [4937], "partner.xfinity.com": [22650], "sheppyware.net": [14761], "img.mk.co.kr": [20997], "red-bean.com": [13725], "tnsinfo.com": [15907], "masilla.org": [20929], "irf.se": [7816], "www.semantic-mediawiki.org": [21777], "discusslr.com": [4548], "*.coupons.com": [3711], "der.heiko.in": [2024], "*.towerfts.csbf.nasa.gov": [10909], "bdgr.ws": [2024], "gerr.it": [2024], "account.services.tv4play.se": [15947], "i1.3conline.com": [169], "pen.fo": [2024], "m.localphone.com": [20866], "shopzilla.com": [14794], "psic.in": [2024], "bugzilla.kairo.at": [8782], "downloads.openwrt.org": [12025], "scoretarot.tuxfamily.org": [22319], "testpypi.python.org": [13314], "stapi.snacktools.com": [15083], "links.kma1.com": [2024], "libregamewiki.org": [20831], "sozialministerium.baden-wuerttemberg.de": [19302], "rewaq.co": [2024], "www.motigo.com": [10653], "happyfoto.sk": [7193], "www.gmw.nhs.uk": [10953], "edsm.co": [2024], "onetimesecret.com": [11889], "tools1.cisco.com": [3165], "www.thetoadfly.com": [16599], "stm.degica.com": [3333], "www.rdns.im": [13656], "cvent.com": [3941], "btbadge.tv": [2024], "www.vooplayer.com": [17928], "www.free-artwork.org": [20153], "op.certification.openid.net": [11980], "*.sites.usa.gov": [17110], "mem.bo": [2024], "www.hackerspace.pl": [7136], "cdn4.xda-developers.com": [18598], "q.beaufort.coop": [2024], "sdd.bz": [2024], "store.lessigforpresident.com": [9276], "forums.bad-dragon.com": [19300], "srds.com": [14232], "www.zucks.co.jp": [22728], "bursar.indiana.edu": [8070], "skola.bozg.se": [2024], "ledr.tech": [2024], "cyp.halton.gov.uk": [20335], "images.shaklee.com": [14715], "p1.ssl.qhimg.com": [13347], "darwin.affiliatewindow.com": [4472], "ubuntu-de.org": [17175], "yinchuan.jd.com": [8434], "www.cambridgesoft.com": [2782], "www.midnight-commander.org": [10408], "ignit.ee": [2024], "www.doubleclickbygoogle.com": [4702], "www.sec.gov": [17104], "bitcoinapi.de": [2008], "dev.mi.com": [10361], "cdn.engine.adsupply.com": [598], "www.medarbejdersignatur.dk": [10153], "go.158db.com.ph": [2024], "go.yokhlo.com": [2024], "www.vtiger.com": [17959], "eljoseur.me": [2024], "wpbeg.in": [2024], "idaho.worldcat.org": [18536], "netmoms.eu": [2024], "jow.me": [2024], "www.boerse-frankfurt.de": [2193], "*.hostgator.com": [7520], "gothron.es": [2024], "hps.nhs.uk": [10953], "insight.36kr.com": [154], "ashw.us": [2024], "protonrad.io": [2024], "live.goodline.info": [20288], "seo.nlx.org": [21146], "secure1.heifer.org": [7283], "i.mnew.us": [2024], "www.joycasino7.com": [20654], "tyopaikat.oikotie.fi": [21234], "kir.hu": [11815], "*.copernic.com": [3653], "r24820151.sync.app.asana.com": [1265], "vefpna.com": [2024], "karma.mg": [8813], "forum.lpice.eu": [9109], "cms.clickability.com": [4821], "filippidis.biz": [2024], "blogs.walthamforest.gov.uk": [18061], "mrrevillz.link": [2024], "trk.ukdeals.co": [2024], "physi.uk": [2024], "www.premiumleech.eu": [21486], "qis.verwaltung.uni-hannover.de": [17255], "menoslobos.eu": [2024], "git.reviewboard.kde.org": [8735], "nazyvaevsk.biglion.ru": [19375], "www.3dcenter.org": [159], "sen16rs.com": [2024], "bstry.nl": [2024], "gpi.gs": [2024], "iplay.com": [8342], "pugetsystems.com": [21540], "kage.info": [2024], "femspla.in": [2024], "www.letterboxd.com": [9281], "i7.lbp.me": [20789], "jmls.it": [2024], "y8s.us": [2024], "oseems.com": [12154], "www.base64-image.de": [19321], "www.escuela.elpais.com": [5126], "go.cinestir.tv": [2024], "ssl-hints.netflame.cc": [11267], "ramsis.osu.edu": [11797], "g-web.in": [2024], "contacts.world-lotteries.org": [22618], "iphone.vodafone.co.uk": [17900], "www.vofzpwh.com": [3484], "brandmonitor.domaintools.com": [4653], "*.myheritage.br": [10875], "www.pthree.org": [13238], "wshbrn.com": [2024], "29th.net": [2024], "*.londoncityairport.com": [9592], "docs.mopidy.com": [10625], "img.fark.net": [5653], "voicenet.akixi.com": [19129], "hsf.isis.poly.edu": [12933], "*.westconsincu.org": [18309], "biolmoodanxietydisord.biomedcentral.com": [1931], "static.warthunder.com": [22528], "eyeb.ee": [2024], "phot.li": [2024], "*.www.o2.cz": [16141], "me.qidian.com": [13349], "reading.udn.com": [17020], "j.rudish.net": [2024], "www.starrez.com": [15458], "*.hawaii.gov": [7237], "z.36kr.com": [154], "download.mailvelope.com": [9907], "www.extremetech.com": [18959], "gk.tpprf.ru": [22260], "cc.amediateka.ru": [19186], "videos.play-asia.com": [12828], "poole.objective.co.uk": [21225], "www.hsbcnet.com": [20433], "www.freefind.com": [6103], "www.dissernet.org": [19848], "ckv-mia.nl": [2024], "*.gamezebo.com": [6425], "albiero.videolan.org": [17775], "et00.xhcdn.com": [18605], "www.teespring.com": [16125], "storm-club.cz": [2024], "link.sofun.tw": [2024], "www.wupd.wustl.edu": [18089], "phpnet.org": [12281], "credittrends.moodys.com": [21020], "www.webcron.org": [22544], "stats.cyanogenmod.org": [3947], "i.nyx.cz": [11638], "gplus.today": [2024], "vancityinsurance.com": [17643], "vssut.sledcom.ru": [21858], "bkstge.at": [2024], "pelink.us": [2024], "fishermedia.me": [2024], "myxk.in": [2024], "calsi.us": [2024], "www.buzzfocus.com": [2490], "pwiz.la": [2024], "kazan.te-st.ru": [22103], "my.auto.ru": [19276], "www.amoena.de": [1023], "email.asda.com": [407], "www.chimeric.de": [3084], "www.cuckoosandbox.org": [19741], "capacitar.se": [2024], "twit.truekc.com": [2024], "67.mvd.ru": [21055], "53970da1.play-asia.com": [12828], "n-e-a.ca": [2024], "www.fust.ch": [6258], "www.ifa.ch": [7726], "hkuesd.hku.hk": [20387], "agar.io": [762], "www.dandwiki.com": [4131], "fblosc.com": [2024], "i8.c.dk": [2512], "tommify.com": [2024], "uk-skyonline.sky.de": [14990], "www.tibia.com": [22203], "candk.co": [2024], "soa.org": [14210], "wulife.wustl.edu": [18089], "pjointe.com": [79], "softoni.cc": [2024], "html5.gd": [2024], "pdmbw.nl": [2024], "vin.ac": [2024], "lenscaper.be": [2024], "www.showcase-tv.com": [14801], "zndg.tl": [2024], "grainful.co": [2024], "skysa.ga": [2024], "mss.a1.net": [261], "sundaypeo.pl": [2024], "b.55s.me": [2024], "livezilla.net": [9512], "www2.bgbl.de": [19367], "blog.europe1.fr": [20035], "fnc.io": [2024], "*.chemspider.com": [14048], "help.yandex.by": [18739], "ims.osu.edu": [11797], "rackspace.nl": [13565], "frillo.me": [2024], "und.starfishsolutions.com": [21977], "go.geeksyfe.net": [2024], "kontakt.immobilienscout24.de": [8008], "aarocha.io": [2024], "xsplatfor.ms": [2024], "stat.erlang.ru": [20014], "dd15.me": [2024], "*.goaruna.com": [6752], "www.zomato.com": [18990], "go.msuaa.com": [2024], "notaryne.ws": [2024], "omniref.com": [11837], "vini.uk": [2024], "p6r.com": [12234], "mc.tune.com": [22309], "emas.portsmouth.gov.uk": [21467], "ogc.stanford.edu": [15448], "forms.westlaw.com": [18312], "dec.loak.org": [2024], "manage.webhost.biz": [18215], "jusaiprieto.com": [2024], "on.be.net": [2024], "store.zentyal.com": [18932], "partner.webgo24.de": [18162], "*.thepublicindex.org": [16279], "www.abestpremium.com": [19040], "user.centrum.sk": [19548], "l.grantbook.org": [2024], "spam.fit.edu": [5922], "r24617821.sync.app.asana.com": [1265], "www.enthought.com": [5286], "mtnpoint.co": [2024], "baylibre.com": [1726], "api.gawker.com": [6454], "img.rl0.ru": [13972], "sputnik.a-3.ru": [258], "ianho.us": [2024], "www.scg.ulaval.ca": [17319], "troos.info": [2024], "hiring.*.monster.com": [10602], "apps4.lbhf.gov.uk": [9078], "www.chris-lamb.co.uk": [3107], "natoonline.org": [21090], "www.elster.de": [5180], "appsurprise.de": [2024], "getbeagle.co": [6572], "maykop.startsmile.ru": [21980], "go.trafficrouter.io": [22266], "www.commandlinefu.com": [3477], "cs10.myzuka.fm": [21079], "k8e.co": [2024], "rd.kntkr.net": [2024], "*.baxterbulletin.com": [1723], "fer.egisz.rosminzdrav.ru": [21674], "enerskin.info": [2024], "www.niche.com.au": [21136], "mymitcloud.com": [2024], "textmagic.com": [16230], "alrdyhrd.uk": [2024], "www.splitpdf.com": [21938], "cr.agency": [2024], "pavlraion.tpprf.ru": [22260], "govdelivery.com": [6846], "robemri.ch": [2024], "www.action-intell.com": [546], "ftao.tv": [2024], "shop.cei.org": [3524], "bit.svb.com": [2024], "img3.xcart.com": [18596], "volarephoto.me": [2024], "*.mybuys.com": [10793], "quecomi.co": [2024], "www.nradefensefund.org": [21179], "ti.com": [15880, 16225], "osh.utm.edu": [17426], "wgaz.ca": [2024], "eztv.yt": [20063], "my.ti.com": [16225], "y2.ifengimg.com": [20487], "myaloecleanse.com": [10843], "gryazi.startsmile.ru": [21980], "hspc.openhost.net.nz": [12067], "ubmchannel.com": [16999], "pkkn.tk": [2024], "livefyre.com": [9521], "cdn2.gbot.me": [6791], "*.adrxmedia.com": [17628], "thepl.us": [2024], "jee.oxfordjournals.org": [12222], "oskarblu.es": [2024], "secure.arb-forum.com": [11085], "s.sentmenat.com": [2024], "altsneed.co": [2024], "*.hammacher.com": [7170], "shopbootsusa.com": [2233], "www.fad.fss.ulaval.ca": [17319], "mbc.me.uk": [2024], "r24625345.sync.app.asana.com": [1265], "arvid.me": [2024], "mciotta.us": [2024], "my.cryptovpn.com": [3859], "en.elbalad.news": [19975], "drsamwill.is": [2024], "*.assetspost.com": [2992], "ryngln.com": [2024], "calameo.com": [2748], "images.playboy.com": [12836], "lpr.oxfordjournals.org": [12222], "news.citrixonline.com": [3181], "gtms03.alicdn.com": [853], "welwynhatfield.greenparty.org.uk": [6908], "www.dr.com.tr": [4071], "rnis.admtyumen.ru": [19082], "antitrust.oxfordjournals.org": [12222], "*.cdn.cloudfiles.rackspacecloud.com": [13567], "shopyourway.com": [14784], "tchlp.com": [2024], "djyx.hao123.com": [20339], "images.fineartamerica.com": [5828], "rating.jenkins.io": [20638], "static.javadoc.io": [8543], "devimages.apple.com": [1151], "www.sbs.nhs.uk": [10953], "c.bgent.net": [2024], "www.research.ibm.com": [7679], "datacell.com": [4169], "*.bestofferbuy.com": [1836], "brighton-hove.spydus.co.uk": [21952], "store.imgtec.com": [20508], "www.englandconsult.forestry.gov.uk": [20135], "globalscaletechnologies.com": [6720], "dl.ubnt.com": [17164], "www.chevereto.com": [3074], "gpodder.net": [6354], "opentechfund.com": [12019], "2o2p.com": [2024], "bugs.dragonflybsd.org": [4734], "jumio.com": [8688], "www.ecoff.org": [5047], "cynwen.co": [2024], "views.play-asia.com": [12828], "www.youtube.es": [18800], "www.kub.nl": [16521], "journalxtra.com": [8656], "www.nodc.noaa.gov": [11121], "e360.yale.edu": [18732], "support.optimizely.com": [12107], "vitr.io": [2024], "liberis.co.uk": [20827], "nifty.jp": [2024], "r24626647.sync.app.asana.com": [1265], "k9.vc": [2024], "tags.expo9.exponential.com": [5503], "hdp.link": [2024], "bbya.org": [2024], "login.creativecommons.org": [3774], "newspaperdirect.com": [11387], "beroeinc.co": [2024], "app.barfi.ch": [1695], "madbarz.com": [20903], "hck.link": [2024], "www.transifex.net": [16742], "secure-static-cdn1.ustream.tv": [17536], "*.parsecdn.com": [12448], "pygmyboats.com": [21546, 21547], "chpv.me": [2024], "apps.aldi-suisse.ch": [357], "www.maven.co": [10098], "nightweb.net": [11436], "reformal.ru": [13780], "www.xnet-x.net": [18672], "findit.state.gov": [17146], "denv.co": [2024], "englearn.engineering.osu.edu": [11797], "thethinkingvegan.com": [16316], "www.ges.bell.ca": [1792], "e19.xhamsterpremiumpass.com": [18607], "conoha.jp": [3590], "oxon.link": [2024], "www.excitations.com": [5475], "frelia.me": [2024], "ioplex.com": [7784], "doc.yunohost.org": [18841], "anonfiles.com": [1079], "www.cimb-principal.com.my": [2618], "email.stackoverflow.com": [15424], "catbanks.co": [2024], "help.songkick.com": [21900], "www.mentoringcentral.net": [10285], "debconf7.debconf.org": [4257], "stmp.co": [2024], "bufferapp.com": [2419], "www.fau.org": [5543], "newca.st": [2024], "amsterdam.hackerspaces.nl": [7137], "www.synapsepay.com": [22066], "fil.fm": [2024], "translate.google.com.*": [6821], "uccf.at": [2024], "dvlgll.me": [2024], "thehive.xbee.net": [18637], "gps.cabinetoffice.gov.uk": [2716], "pittsburgstate.worldcat.org": [18536], "ovh.lt": [12205], "lowthian.co.uk": [2024], "coca-cola.ru": [19633], "themarshallproject.org": [16371], "rostov.rt.ru": [13529], "rss.art19.com": [19238], "burgerking.ru": [19474], "*.softlayer.com": [15160], "gouchercollege.worldcat.org": [18536], "play-as-kid.com": [2024], "huizen.nl": [11172], "jadidlar.com": [2024], "enumdemobank.enum.ru": [5292], "blackznc.net": [2062], "brwn.ps": [2024], "www.connect6.com": [19667], "db.ulule.com": [17224], "westconsincuhb.org": [18309], "www.opinionlab.com": [12090], "onion.direct": [16638], "www.nintendo.de": [11458], "images.lady.mail.ru": [9891], "p2ipc.us": [2024], "internet.yandex.by": [18739], "mohrretail.axonify.com": [1502], "blog.eatsa.com": [19944], "pwsafe.info": [21544], "www.adreducation.org": [19088], "*.upenn.edu": [17361], "jtf.co": [2024], "runso.co": [2024], "sunnah.com": [15668], "redey.es": [2024], "changeliv.es": [2024], "ctwn.info": [2024], "go.k2cinc.com": [2024], "physicalsecurity.ucsc.edu": [17389], "aging.stanford.edu": [15448], "heihe.jd.com": [8434], "http.cdnlayer.com": [8253], "cld.so": [2024], "cld.sh": [2024], "riplr.co": [2024], "stardrifter.org": [15466], "scl.im": [2024], "globaldatabase.wustl.edu": [18089], "cld.sg": [2024], "smir.nf": [2024], "www.foia.state.gov": [17146], "ftp.infinum.co": [20526], "anybalance.com": [1112], "webmaster.yandex.com.tr": [18740], "afteroffer.link": [2024], "notesappstore.com": [10115], "amursk.startsmile.ru": [21980], "canvas.tnwcdn.com": [22227], "wf.gm.163.com": [50], "jasonchr.in": [2024], "www.valtiolle.fi": [17623], "venuscafem.com": [17701], "store.cardsagainsthumanity.com": [2848], "predictiveservices.nifc.gov": [10964], "risell.link": [2024], "accl.do": [2024], "knowledgehub.local.gov.uk": [17046], "www.microblink.com": [10385], "radiowave.350.org": [140], "www.pccomponentes.com": [21368], "url.inxco.be": [2024], "www.openstack.org": [12011], "couchsurfing.org": [19696], "jonasboserup.dk": [20650], "gdnr.ch": [2024], "888.163.com": [50], "www.theartstack.com": [16323], "hby.sc": [2024], "piano.kairo.at": [8782], "id.theguardian.com": [16364], "www.linuxtv.org": [9431], "www.pebbleconfig.iwi-i.info": [20617], "teamfitdom.com": [2024], "agarh.permkrai.ru": [21390], "spk.tv": [2024], "absmob.co": [2024], "www.thesmokinggun.com": [16382], "form.tamago.co": [2024], "engage.vevent.com": [22451], "kdc.re": [2024], "mail.jourdan.ens.fr": [4922], "www.isak.liu.se": [9097], "82.rkn.gov.ru": [13971], "ttb.im": [2024], "boe.es": [1563], "metrica.ya.ru": [18716], "cyph.team": [2024], "bstph.com": [2024], "cestudiantes.uniovi.es": [17282], "s01.flagcounter.com": [20115], "nasnovohrad.sme.sk": [14198], "maps.ngs.ru": [21134], "b2bc.me": [2024], "www.immunitysec.com": [8011], "www.localizejs.com": [20864], "w.cyat.es": [2024], "include.reinvigorate.net": [13809], "bihira.com": [1896], "vipk.mvd.ru": [21055], "www.speedcrunch.org": [15323], "www.notepad-plus-plus.org": [11564], "lgam.es": [2024], "www.alumni.utah.edu": [17374], "seniorgift.stanford.edu": [15448], "rev.vet": [2024], "www.ohnopodcast.com": [15399], "www.biglion.ru": [19375], "dltags.com": [19854], "cards.psbank.ru": [13231], "*.overclockers.com": [12197], "blog.centreformentalhealth.org.uk": [19544], "secure.barclaycard.co.uk": [1690], "res.youku.com": [18804], "iberiabank.com": [7897], "iceheberg.fr": [7910], "*.sueddeutsche.de": [15642], "identity.kde.org": [8735], "solar.engineering.osu.edu": [11797], "ir.deferia.mx": [2024], "ad.adorika.com": [13937], "jliberty.me": [2024], "www.halsnaes.dk": [7166], "cloudsleuth.net": [3292], "aidsmap.com": [783], "thebakers.co": [2024], "new3c.tmall.com": [22222], "paris.ulule.com": [17224], "peakpg.co": [2024], "www.admin.cam.ac.uk": [17332], "www.bitcoin.at": [1989], "dl.bandisoft.com": [1664], "secure8.pipni.cz": [12287], "gamecraft.cz": [20200], "uu.com.br": [2024], "www.progressive.hu": [13179], "trans.chbtc.com": [3041], "prepaid.congstar.de": [3580], "shkids.co": [2024], "fireckr.uk": [2024], "www.teatime.fm": [22109], "eurovision.tv": [5422], "n.noltelauth.de": [2024], "truebsd.pw": [22295], "test.m.qdaily.com": [21554], "msddjournal.biomedcentral.com": [1931], "akademy2010.kde.org": [8735], "webdev.in.th": [2024], "www.as.hannover.fau.org": [5543], "jukes.in": [2024], "wku.edu": [22602], "romy.rocks": [2024], "pvlink.net": [2024], "blkb.ch": [20683], "realwiv.es": [2024], "torrentday.com": [16650], "*.behance.net": [1786], "wonga.com": [18503], "ratm.deathmask.net": [4254], "tparke.us": [2024], "onestart.iu.edu": [8069], "pgc.cc": [2024], "tucbik.es": [2024], "20ss.nyc": [2024], "www.cheapoz.com.au": [3044], "images.washingtonpost.com": [18086], "www.pronosticuri-tenis.com": [7736], "ext.dynamicyield.com": [4822], "www.mosqueedeparis.net": [10644], "enablingdrea.ms": [2024], "3questionsgetthegirl.com": [17804], "ytwn.in": [2024], "newsletter.geany.org": [6463], "gannan.jd.com": [8434], "mthr.ml": [2024], "www.arts.kairo.at": [8782], "l.qran.io": [2024], "nflux.us": [2024], "isisaccreditation.imrg.org": [8238], "customwheelconnection.com": [3931], "nmnt.in": [2024], "jehb.us": [2024], "loric.us": [2024], "www.ubuntu-mate.community": [17187], "users.admin.badgeville.com": [1631], "r.sa-seo.com": [2024], "mrcry.us": [2024], "dailypix.me": [4112], "dmql8.me": [2024], "xxx.arxiv.org": [1180], "*.sb-innovation.de": [14136], "www.svnlab.com": [14266], "staging.nvcc.edu": [11627], "www.plannedparenthoodaction.org": [21434], "*.grnet.gr": [6894], "sony.se": [15214], "thenutro.co": [2024], "forum.ideco.ru": [20480], "ambar.org": [2024], "go.hbfoods.info": [2024], "uwe.su": [2024], "eclass.me": [2024], "dp.specificclick.net": [15314], "go.tendatta.com": [16181], "www.playstationnetwork.com": [12833], "amg.sx": [2024], "fairb.at": [2024], "19r6dntidnx9a1u0y68vzsqtcjo3oqmfjxh4esyi.ipleak.net": [20571], "geschenkefinder.saturn.de": [21736], "uberbe.be": [2024], "kinded.com": [2024], "dept.ly": [2024], "beyon.me": [2024], "www.oxfordlearnersdictionaries.com": [12223], "access.ust.hk": [22412], "prisguide.tek.no": [16128], "foodpros.co": [2024], "si0.twimg.com": [16949], "m.airbnb.ru": [793], "mahasarakhamuniv.worldcat.org": [18536], "*.inbox.lv": [8042], "vse.sk": [17955], "afcad.engineering.osu.edu": [11797], "www.rapid7.com": [13613], "boag.me": [2024], "infocentral.state.gov": [17146], "comlaude.com": [3460], "lists.netfilter.org": [11265], "paws.hk": [2024], "r24820191.sync.app.asana.com": [1265], "pas2.us": [2024], "arg.wtf": [2024], "jcra.in": [2024], "empirehost.me": [19989], "sl.unutsan.com": [2024], "sh.esfli.com": [2024], "*.checkm8.com": [3050], "www.etarget.hu": [5360], "pcbrowser.dd.qq.com": [13329], "hlt.me": [2024], "u.etc.io": [2024], "www.maltris.org": [9935], "coner.gy": [2024], "www.cir.ca": [3156], "cs.dr.adingo.jp": [646], "ua.icecat.biz": [7912], "ckrs.in": [2024], "www.fastsoft.com": [5664], "jneurodevdisorders.biomedcentral.com": [1931], "iu.edu": [8069], "scottk.us": [2024], "microsoft.com": [10396], "lnk.mantry.com": [2024], "trklnks.com": [16830], "relate.kde.org": [8735], "aquent.us": [1176], "j-t.me": [2024], "careers.thomascook.com": [16450], "new-girl.friday.ru": [20175], "hubs.pocketgamer.co.uk": [12881], "www.trustly.com": [16867], "aiswiki.wustl.edu": [18089], "info.internet.org": [8276], "yelp.fr": [18766], "post.sme.sk": [14198], "uni.xkcd.com": [22652], "rpblcfnmd.info": [2024], "tpb.host": [22259], "www.appveyor.com": [19220], "chiefo.pt": [2024], "tek.no": [16128], "s.ldk.io": [2024], "themuslimvi.be": [2024], "irc.tfes.org": [16237], "marketdojo.com": [10019], "www.ballerup.dk": [1653], "sip.x5.ru": [18590], "search.szfw.org": [22074], "www.dnshistory.org": [4055], "studifit.htwk-leipzig.de": [7596], "beeline.ru": [1778], "www1.cisco.com": [3165], "jndory.com": [2024], "promotions.autotrader.co.uk": [19280], "o100.cz": [2024], "erinn.org": [5332], "apsislead.com": [1172], "m.yahoo.co.jp": [18730], "m.rasp.yandex.by": [18739], "nginx.org": [11413], "p3.raasnet.com": [13716], "secure-media.msg.dotomi.com": [4698], "du00.cc": [19901], "brunei.usembassy.gov": [22406], "nhst.be": [2024], "static-ak.hypem.net": [7648], "partner.pricegrabber.com": [13099], "rcccm.dwd.de": [19911], "3c.1688.com": [51], "www.zeeland.nl": [11172], "www.socializer.cc": [15138], "*.pickaweb.co.uk": [12692], "go.pohyby.uk": [2024], "demo.1wt.eu": [66], "kmalx.co": [2024], "immerda.ch": [20510], "www.educatetheworld.com.au": [5084], "j1c.co": [2024], "datag.uy": [2024], "studenthealth.wustl.edu": [18089], "provost.msu.edu": [21040], "blog.coinjar.com": [3397], "maritimowest.us": [2024], "thrmp.co": [2024], "imang.us": [2024], "library.un.org": [17057], "specker.me": [2024], "www.eloedge.com": [4915], "greenpeace-energy.de": [6916], "staging.etrend.sk": [5383], "live.paloaltonetworks.com": [12378], "twt.ccwink.com": [2024], "goip.de": [6794], "i.embed.ly": [5188], "stlr.co": [2024], "www.coloradoattorneygeneral.gov": [3440], "nerdi.st": [2024], "nolance.net": [2024], "shdn.one": [2024], "static.lanet.ua": [20780], "demos.emojione.com": [5202], "badosoft.com": [1633], "eshop.upc.cz": [17081], "jbiomedsem.biomedcentral.com": [1931], "playonlinux.com": [12830], "tracking.websitealive.com": [18242], "u.mberd.com": [2024], "folkets.dk": [5965], "mailman.jcea.es": [8554], "cdn.static-economist.com": [15491], "ratiobeer.com": [2024], "irk.sledcom.ru": [21858], "www.banking.co.at": [1673], "webmailer.telecolumbus.net": [16138], "sevensk.49gov.ru": [187], "www.telebasel.ch": [22114], "liaison.uic.edu": [17321], "autotraderstatic.com": [1445], "jth.li": [2024], "p.9gag.com": [252], "murmansk.startsmile.ru": [21980], "www.cwc.tid.gov.hk": [7069], "secure.xdomain.ne.jp": [18643], "blog.avast.com": [1469], "lnkto.jp": [2024], "cpa-api.kyivstar.ua": [9067], "hwrd.eu": [2024], "active.cardiff.gov.uk": [19509], "my.smoothwall.org": [15076], "tracking.tribepad.com": [22285], "www.pajustice.org": [12572], "git50.rostrud.ru": [21677], "*.sec.s-msft.com": [14114], "t.onride.de": [21259], "schleuder.nadir.org": [11049], "marvelkids.marvel.com": [10047], "www.j1visa.state.gov": [17146], "silverpop.com": [14865], "channelx.biz": [3011], "aliyun_portal_storage.oss.aliyuncs.com": [19143], "www.dlvr.it": [19855], "images.dailykos.com": [4110], "vincek.me": [2024], "berlinint.im": [2024], "*.lighthouseapp.com": [9360], "lann.es": [2024], "cmis.alfresco.com": [850], "www.usask.ca": [17421], "precursorapp.com": [13068], "www.kenexa.com": [8864], "go.zeio.com": [2024], "viewfromtheedge.progress.com": [13178], "games.sport-express.ru": [21941], "iamjai.me": [2024], "nces.ed.gov": [4881], "landalskilife.*": [18579], "nerdsnook.com": [11199], "ww2.play-asia.com": [12828], "w3.gtalumni.org": [2024], "podnapisi.net": [12890], "www.curseinc.com": [3927], "*.iacr.org": [8254], "order.mi.com": [10361], "share.flipboard.com": [5905], "www.broadcast.ch": [21957], "bhg.re": [2024], "teeny.xyz": [2024], "jwz.org": [20674], "yituf.jozz.xyz": [2024], "s.suntravel.xyz": [2024], "www2.cisco.com": [3165], "www.zefflin.com": [18909], "terveysportti.fi": [16204], "fortbragg.illuminateed.com": [20494], "www.gymglish.com.br": [7022], "skbb.us": [2024], "support.qq.com": [13329], "gaiaonline.com": [6382], "www.xubuntu.org": [18696], "www.ctt.org": [3900], "store.globalresearch.ca": [6713], "addons.instantbird.org": [8187], "aspec.ws": [2024], "www.gaia-gis.it": [6381], "dwd.de": [19911], "www.dpea.scotland.gov.uk": [21755], "www.jusek.se": [8704], "g.engelhardt.li": [2024], "webcontrol.savana.cz": [14370], "hsbctrinkaus.de": [20434], "benchmarking.greenit-bb.de": [6901], "cellcon.co": [2024], "ddg.gg": [4785], "soycr.com": [2024], "game.timezero.ru": [16533], "www.hexagon.cc": [7381], "nyaa.eu": [11634], "www.coindl.com": [3392], "fpm1.co": [2024], "www.kasperskypartners.com": [8824], "mariooliv.es": [2024], "sunval.ly": [2024], "geogebra.org": [6522], "www.anidb.net": [1065], "www.hotmail.co.jp": [7563], "proc.koptevo.net": [20749], "helfen.global2000.at": [6702], "leprintempsenexil.webdocs.mediapart.fr": [10194], "kb.iweb.com": [7874], "naymarinho.com": [2024], "mylnks.tk": [2024], "www.sina.is": [14906], "git.mate-desktop.co": [9727], "members.bitcoinfoundation.org": [2005], "s16.postimage.org": [13024], "be.edn.re": [2024], "lazoadm.khabkrai.ru": [20709], "hspd12.ssa.gov": [21959], "wom.us": [2024], "soyou.nz": [2024], "nature.cnr.berkeley.edu": [17329], "l.lumikids.com": [2024], "immi.fm": [2024], "bugzilla.xfce.org": [18603], "livestat.derstandard.at": [19814], "linuxplumbersconf.com": [9411], "intranet.hkuspace.hku.hk": [20387], "topspb.tv": [22239], "hih.io": [2024], "memphis.ml": [2024], "esta.cbp.dhs.gov": [4026], "www.physics.osu.edu": [11797], "depts.washington.edu": [17376], "www.maths.ox.ac.uk": [17359], "theswirlworld.com": [1330], "entimg.s-msn.com": [14115], "goeshow.com": [6781], "mit.cx": [2024], "kofiannan.ch": [2024], "ctmne.ws": [2024], "connecthelp.wustl.edu": [18089], "wweek.com": [18404], "www.ukonlinecentres.com": [17051], "linuxaria.com": [9442], "www.lifars.com": [9343], "pgm.hk": [2024], "x.sep.io": [2024], "pokerstarsapps.com": [21452], "bnksm.pl": [2024], "cdn.playstationnetwork.com": [12833], "www2-ext-s.nflximg.net": [11269], "1mno.de": [2024], "ewh.ieee.org": [7719], "standorte.deutschepost.de": [19816], "talkhealthpartnership.com": [15995], "pwe.me": [2024], "www.popcorntime-online.io": [21461], "www.laup.nu": [9183], "*.norrgruppen.se": [11528], "vhajm.be": [2024], "kemp.info": [2024], "hosting.jino.ru": [8589], "static.webplatform.org": [18176], "www.libreoffice-from-collabora.com": [9326], "mariagames.mobi": [2024], "franklinpierce.worldcat.org": [18536], "media.richrelevance.com": [13927], "mroumen.me": [2024], "fashiondip.com": [5656], "www.4joycasino.com": [20654], "run.red": [2024], "s.mxmcdn.net": [10784], "inc1.nl": [2024], "dxo.io": [2024], "*.omise.co": [21243], "cn.cryptonator.com": [3873], "l.reynella.net": [2024], "natur.me": [2024], "nb.4.boardgamearena.com": [2182], "ws.amazon.com": [960], "dol.gov": [19867], "i5.hitravel.xyz": [2024], "gocf.church": [2024], "www.over-blog.com": [12188], "mits.khabkrai.ru": [20709], "www.altex.ro": [936], "buzzurl.jp": [2496], "*.alluremedia.com.au": [912], "lib.al": [2024], "judge.la.welt.de": [18290], "gtbl.me": [2024], "redis.qcloud.com": [13346], "nt.uni-ulm.de": [22368], "www.ncjrs.gov": [10925], "kadr.government-nnov.ru": [20295], "s5.postimg.io": [13024], "weihr.sinaapp.com": [14907], "www.betterplace.org": [1857], "www.eqsl.cc": [20010], "www.sektioneins.de": [14625], "css.loveplanet.ru": [9635], "kevag-telekom.de": [8878], "www.library.ecc-platform.org": [4871], "img.cnblogs.com": [19631], "giogra.ph": [2024], "secure.bookhostels.com": [18138], "excitations.com": [5475], "represent.colorofchange.org": [3439], "marketplace.plenti.com": [12852], "elancs.cc": [2024], "fbt.link": [2024], "picktwitter.com": [2024], "emye.us": [2024], "s.mgick.com": [2024], "scro.stanford.edu": [15448], "*.engineering.com": [5256], "soop.link": [2024], "analytics.socialblade.com": [15136], "www.richmond.gov.uk": [21649], "chap.mn": [2024], "app.intergi.com": [8246], "svspr.me": [2024], "facedetection.com": [20065], "gfx5.hotmail.com": [7565], "www.tpfrb.dk": [16696], "natholdet.link": [2024], "tancity.de": [16003], "sip.upc.ie": [17082], "ttu.ee": [15999], "static.spiceworks.com": [15338], "link.trever.co": [2024], "tdm.ag": [2024], "farm.rs": [2024], "rias.space": [2024], "www.dmoruzzi.com": [4043], "www.silverstripe.org": [21828], "on.magfs.io": [2024], "www.esellerate.net": [5346], "www.sohopelesslybroken.com": [14213], "l.pfeuro.ru": [2024], "webmail.xs4all.nl": [18625], "www.path-trail.com": [21356], "chat.lgbtnet.org": [20825], "alove.in": [2024], "valoancaptain.com": [17553], "techcommons.stanford.edu": [15448], "www.ipqualityscore.com": [7799], "lmsa.stanford.edu": [15447], "beta.kneon.com": [8955], "bestbuy.ugc.bazaarvoice.com": [1832], "www.millwardbrown.com": [10435], "founders.stanford.edu": [15448], "www.janestreet.com": [8522], "tique.cc": [2024], "inbnd.co": [2024], "www.skillsfundingagency.bis.gov.uk": [17039], "www.a3li.li": [268], "em.gov.au": [1414], "k.rushvora.com": [2024], "hoax.pw": [2024], "alxf.me": [2024], "georgia.usembassy.gov": [22406], "skrill.com": [14984], "sys-prod.memberdirect.net": [10265], "cinema.rocketbank.ru": [13994], "weiapplets.sos.wa.gov": [14215], "www.societyforscience.org": [15145], "forum9.hkgolden.com": [7058], "edsgn.it": [2024], "shop.flixbus.cz": [5911], "www.shubh.am": [14810], "supersec.com": [15699], "corrent.org": [3687], "login.tnsinfo.com": [15907], "short.lobao.com": [2024], "provisu.ch": [21521], "donate.alternet.org": [925], "buimg.com": [16509], "endgame.com": [19994], "bzzz.in": [2024], "mysolarcity.com": [15179], "community.logentries.com": [9563], "www.godotengine.org": [20278], "shbpool.uk": [2024], "www.ar.ch": [22061], "voodoofest.co": [2024], "drawyoo.hdslb.com": [20358], "ebev.nav.gov.hu": [10912], "weblogs.unfpa.org": [17062], "lddg.co": [2024], "s.gpc-gis.ae": [2024], "download.libreswan.org": [9332], "api.kannz.com": [20682], "www.rbwm.gov.uk": [21597], "*.flashtalking.net": [5885], "revchilhistnat.biomedcentral.com": [1931], "auth.airbitz.co": [19121], "windowmaker.org": [18430], "brdvw.com": [2024], "bitspi.re": [2024], "its-prod-www2-1.ucsc.edu": [17390], "kakao.com": [8721], "go.usa.gov": [17110], "l.sung.am": [2024], "mplinks.tk": [2024], "xfce-look.org": [18602], "www.cryptocoinsnews.com": [3851], "paokfc.mobi": [2024], "pirateproxy.net": [22174], "stealthy.co": [21986], "s2.citilink.ru": [19594], "pixel.industrybrains.com": [8084], "git67.rostrud.ru": [21677], "oranjeboom.cafe": [2024], "www.tidbits.com": [16505], "hey.cx": [2024], "2008.asiabsdcon.org": [1281], "powerschool.lasallehs.net": [9173], "account.ipvanish.com": [7803], "www.censorship.govt.nz": [2948], "8d.cm": [2024], "meyne.co": [2024], "www.im.baden-wuerttemberg.de": [19302], "www.verfassungsschutz.de": [2441], "thepiratebay.torrentdr.com": [22174], "creditrepairtrust.com": [3786], "bits.media": [2036], "nvg.io": [2024], "www.bafoegonline.bva.bund.de": [5706], "plym.co": [2024], "123444.bjctc.scs.sohucs.com": [15173], "www.caller.com": [2768], "kinotehnik.com": [8924], "talk.jekyllrb.com": [20636], "vm2.in": [2024], "account.dyn.com": [4814], "dashboard.synapsepay.com": [22066], "webmail.popehat.com": [12962], "url.thoh.us": [2024], "arkivist.com": [2024], "www.mc.vanderbilt.edu": [17647], "stream.1tv.ru": [88], "centreon.com": [2965], "a.mart-jaap.nl": [2024], "sloanconsortium.org": [15033], "www7.cbox.ws": [19525], "dsm.gsfc.nasa.gov": [10909], "kovrov.startsmile.ru": [21980], "url.cattt.com": [2024], "dl.11er.at": [2024], "mc.camp": [2024], "images.ddlvalley.eu": [19786], "w-jack.com": [2024], "my.otenet.gr": [12164], "img2.wlresources.com": [22604], "i4.go2yd.com": [20274], "3mba.us": [2024], "katescomment.com": [8831], "zran.ir": [2024], "causes.com": [2918], "uwf.im": [2024], "psta.rs": [2024], "rare.us": [13624], "lifewelltravelled.cathaypacific.com": [2913], "www.hipeac.org": [7391], "img.alibaba.com": [857], "deine.ws": [2024], "mensch.es": [2024], "vni.fr": [2024], "www.slac.stanford.edu": [15448], "alumni.kcl.ac.uk": [8914], "p3.qhimg.com": [13347], "www.essex.gov.uk": [5354], "browserhacker.com": [2391], "www.yt-dl.org": [18834], "logs.rom1504.fr": [21668], "360he.re": [2024], "www.utopia.ai": [17542], "darkstar.ist.utl.pt": [16097], "seeq.us": [2024], "xpay.ecom.raiffeisen.ru": [13587], "wwwimages2.adobe.com": [669], "khai.me": [2024], "ifaston.com": [2024], "z.cash": [22703], "stat.st65.ru": [21967], "kmbs.us": [2024], "sidwe.bz": [2024], "tr.norton.com": [11545], "www.politicalwire.com": [12918], "centresdirect.co.uk": [19545], "fbf.im": [2024], "packrafting-store.de": [21335], "images.sh.cn.criteo.net": [3798], "www.mybenefitscalwin.net": [10791], "lyncdiscover.bl.uk": [2358], "blogs.yahoo.co.jp": [18730], "ssapp.io": [2024], "popchi.ps": [2024], "uainfo.org": [22339], "www.codeclimate.com": [3361], "go.porowski.pro": [2024], "blendedlearning.th-nuernberg.de": [16239], "lwks.co": [2024], "admin.clubtime.fm": [19627], "putlockerhd.ga": [2024], "klips.ch": [2024], "reiseauskunft-iat.bahn.de": [1640], "blog.kik.com": [20715], "www.wildstar-online.com": [18394], "ir.arm.com": [398], "goli.mp": [2024], "gibraltar.gov.gi": [6621], "bcool.bz": [2024], "crksde.com": [2024], "www.careerdean.com": [2854], "www.x-info.org": [18586], "geekhack.org": [6485], "cvke.tl": [2024], "app-us-lb1.resrc.it": [13659], "cdn.doubleverify.com": [4703], "bitcoin-otc.com": [1990], "nraila.org": [21182], "a.blip.tv": [2098], "api.wiz.cn": [18475], "l.fahy.eu": [2024], "www.mshare.net": [10451], "k5bs.tocco.ch": [16600], "pdfpatcher.cnblogs.com": [19631], "*.startssl.us": [15472], "dashboard.rapleaf.com": [13611], "cje.oxfordjournals.org": [12222], "www.diffoscope.org": [4451], "debconf0.debconf.org": [4257], "usnautic.com": [17143], "r24616985.sync.app.asana.com": [1265], "openid.net": [11980], "buildbot.buildbot.net": [19469], "login.manning.com": [20921], "www.karwansaraypublishers.com": [8815], "www.humanresources.illinois.edu": [17346], "blackfire.io": [2070], "raabassociat.es": [2024], "www.globalmarinenet.com": [6697], "vote.debian.org": [4263], "ia529.us": [2024], "end.pr": [2024], "beteiligungsportal.baden-wuerttemberg.de": [19302], "on.lor.ne": [2024], "haitao.nosdn2.127.net": [41], "plst.co": [2024], "menz.is": [2024], "www.ardamis.com": [1202], "helpspanish.cbp.gov": [2537], "service.groceries.asda.com": [407], "isis.poly.edu": [12933], "strt.bz": [2024], "godis.co": [2024], "files.agava.ru": [765], "i1.code.msdn.microsoft.com": [10396], "www.sparked.com": [15290], "mail.sina.com.cn": [14904], "www.gargoyle-router.com": [20204], "creativecommons.org": [3774], "d.getboxer.com": [2024], "bksp.es": [2024], "www.sport.uni-mainz.de": [17410], "bah.ourproject.org": [21314], "*.movies.netflix.com": [11270], "xbetsport.com": [18638], "wpi.today": [2024], "www.aetherflyff.com": [740], "edata.ssa.gov": [21959], "ems.sbi.co.in": [14140], "ab.alipay.com": [864], "s.haxim.us": [2024], "assets.musicwindow.com": [628], "ad.xtendmedia.com": [18690], "hg.instantbird.org": [8187], "gir.gr": [2024], "islandscommercial.lloydsbank.com": [9537], "augst.in": [2024], "biz-form.ec.yahoo.co.jp": [18730], "sha2sslchecker.com": [14175], "api.cloudmagic.com": [3289], "3dqcaseofmonth.stanford.edu": [15448], "click.google-analytics.com": [6823], "www.silentsender.com": [14849], "*.gp.se": [6346], "*.rtklive.com": [13533], "s.imobile.co.jp": [2024], "blog.crowdin.com": [3823], "presov.korzar.sme.sk": [14198], "engels.beeline.ru": [1778], "blog.prediction.io": [13069], "www.cloudorado.com": [3310], "www.hkqf.gov.hk": [20386], "p3pwiz.com": [11215], "stylessl.aliunicorn.com": [866], "on.mahajan.xyz": [2024], "thinksteroids.com": [9750], "s.kavaj.com": [2024], "on.entaah.com": [2024], "roundcube.xeneris.net": [18649], "atmk.co": [2024], "yang.1688.com": [51], "ir.telecolumbus.com": [16138], "safonovo.startsmile.ru": [21980], "kl.la": [2024], "iasadmin.belregion.ru": [19353], "charli.es": [2024], "gomsba.co": [2024], "mein.radioeins.de": [13578], "klee.llvm.org": [9103], "jogorama.com.br": [8623], "*.hunch.com": [7621], "mvk.cx": [2024], "video28.0xdb.org": [10], "mvk.cc": [2024], "fev.co": [2024], "applications.kennedy-center.org": [20703], "armorybids.com": [1229], "espace2013.cern.ch": [2588], "www.muslimissues.com": [10763], "www.longnow.org": [9603], "f.j81.nl": [2024], "it.godaddy.com": [6755], "identity.moneycorp.com": [21013], "whisky.de": [22577], "reseller.ssl.com": [14241], "www.cs.sfu.ca": [14708], "sewat.ch": [2024], "jobs.smartbrief.com": [15052], "us.playstation.com": [12832], "studio.bi": [2024], "www.beauteprivee.fr": [1766], "vrp.outbrain.com": [12182], "blip.tv": [2098], "axps.tk": [2024], "ptog.uk": [2024], "jilupian.youku.com": [18804], "tiqiq.us": [2024], "voicethread.com": [17909], "tdf-telecom.fr": [15867], "host22.top": [2024], "lima.osu.edu": [11797], "naromax.com": [11076], "www.fftfef.org": [5752], "izhcombank.dengisend.ru": [4344], "box.twoshots.pl": [2024], "clyck.com.ar": [2024], "sun-tim.es": [2024], "messenger.providesupport.com": [13218], "cesta.stanford.edu": [15448], "li-ve.mn": [2024], "www.accessofficeproducts.com": [506], "emfrc.ca": [2024], "static.tagboard.com": [22085], "www.graysofwestminster.co.uk": [6886], "formulabuckeyes.engineering.osu.edu": [11797], "rtl-videoclip-player.rtl.de": [13534], "sprdtrth.co": [2024], "schoolpress.cdn.whipplehill.net": [18338], "www.accessdata.fda.gov": [5551], "daytrips.to": [2024], "fls-na.amazon-adsystem.com": [958], "realty.newsru.com": [11388], "paymentwall.com": [12511], "meirong.taobao.com": [16015], "www.yourpshome.net": [18818], "met.org": [2024], "hipkd.co": [2024], "elearn.tenable.com": [16179, 16180], "lfe.news": [2024], "bld.pm": [2024], "www.cimbclicks.in.th": [2620], "ep.rg.ru": [21646], "www.rbfi.io": [21594], "mobilelending.anz.com": [374], "ocelot.li": [11747], "pro.sportmaster.ru": [21944], "www.idris-lang.org": [7947], "garrysmods.org": [20206], "services.domofond.ru": [19876], "flyn.org": [5945], "nswebmail.uk.clara.net": [3213], "webadvisor.uchastings.edu": [17015], "register.maxdome.de": [10106], "partners.centrify.com": [19546], "www.shop.skanetrafiken.se": [14962], "*.pirate-party.ch": [12314], "at.fee.org": [2024], "bitcoin-contact.org": [1986], "thedn.cc": [2024], "astyle.alicdn.com": [853], "propgk.uk": [2024], "sankakucomplex.com": [21730], "autodiscover.yandex.by": [18739], "sglms.biligame.com": [1903], "businesscompanion.info": [2476], "www.recurse.com": [13714], "islamweb.net": [8373], "www.airbitz.co": [19121], "esa.un.org": [17057], "gofamz.me": [2024], "www.lucina.net": [9656], "tripwire.com": [16825, 16826], "gigglymemori.es": [2024], "dba.sedo.de": [14602], "cinema.arte.tv": [19239], "refactor.hu": [13773], "s.mojareuma.sk": [2024], "kuvandyk.startsmile.ru": [21980], "*.socialshows.net": [15127], "*.starmoney.de": [15456], "tnfl.co": [2024], "dot.douyucdn.cn": [4712], "secure.itradecimb.com.my": [2618], "www.cda.nl": [10975], "vpn.upf.edu": [17471], "intensitylab.com": [8224], "tf8.com.au": [2024], "jmp.re": [2024], "*.tlug.jp": [16610], "discussionsjapan.apple.com": [1151], "next.westlaw.com": [18312], "gorelovo.beeline.ru": [1778], "geekflare.com": [20220], "avado.re": [2024], "public.web.cern.ch": [2588], "barnaul.europaplus.ru": [20034], "*.virool.com": [17827], "w.icetravel.xyz": [2024], "www.nwppn.nhs.uk": [10953], "www.hardcoreteengirls.com": [7195], "16chan.nl": [53], "nnow.co": [2024], "balashikha.biglion.ru": [19375], "dorsetalert.co.uk": [19883], "cas.ki.se": [8743], "img5.wlresources.com": [22604], "kvn.town": [2024], "ml.seohacks.net": [2024], "*.giac.org": [6309], "un.org": [17057], "dtphxpod.com": [2024], "www.bfs.admin.ch": [22061], "militari.ly": [2024], "www.isc2cares.org": [7825], "go2.vpml.net": [2024], "www.amt24.sachsen.de": [14279], "aura.gsfc.nasa.gov": [10909], "www.missionislam.com": [10493], "mntlt.de": [2024], "g.stateofg.com": [2024], "canterbury.gov.uk": [2824], "www.hakkalabs.co": [7159], "www.abbo-shop.ch": [459], "rhlk.cz": [2024], "e-disclosure.ru": [4844], "ioninteractive.com": [20561], "oneplus.net": [11880], "www.pofssavecredit.co.uk": [13002], "brent.gov.uk": [2324], "*.vcint.com": [17757], "moskovskiy.beeline.ru": [1778], "movie.youku.com": [18804], "www.valu.va.gov": [17100], "ian.ozlabs.org": [12228], "nalchik.mediamarkt.ru": [10188], "www.avoiceformen.com": [444], "community.sony.com": [15215], "apnews.com": [392], "web.cvs0.sv.gnu.org": [6337], "clk.wareing.xyz": [2024], "chf.to": [2024], "edexchange.adobe.com": [669], "ess.edina.ac.uk": [19955], "estilo.catracalivre.com.br": [2917], "cdn.raymond.cc": [13645], "livreiro.us": [2024], "arukereso.hu": [1261], "blog.trezor.io": [22282], "vip.bilibili.com": [1904], "portal.mxlogic.com": [10126], "sydneystudent.sydney.edu.au": [22063], "stmarg.sc": [2024], "www.moviefone.com": [10680], "soasta.io": [2024], "www.kalveboderne-rundt.hvidovrekajakklub.dk": [7641], "faq.distributed.net": [4564], "www.osvita.ua": [21306], "sharefile.com": [14724], "www.secureserver.net": [14574], "www.simrussia.com": [14869], "www.apachecon.com": [1120], "training.manageengine.com": [9951], "geschenkkarte.migros.ch": [10417], "cms.eutelsatnetworks.ru": [20038], "blog.shopstyle.*": [14780], "hongkongairport.com": [20402], "*.bytelove.se": [2504], "www.trbimg.com": [3076], "ggagency.us": [2024], "teleguide.info": [22115], "opfoc.us": [2024], "ittprovider.education.gov.uk": [19957], "elista.rt.ru": [13529], "www.functions-online.com": [20187], "mpct.co": [2024], "resource.awempire.com": [700], "salekhard.startsmile.ru": [21980], "matthewclark.co": [2024], "t1v.co": [2024], "jira.fitbit.com": [5867], "colins.link": [2024], "admin.admtyumen.ru": [19082], "l.nettklipp.no": [2024], "*.npssa.nps.gov": [11122], "magadanskaya-obl.beeline.ru": [1778], "washingtonblade.com": [22533], "sf.cdn.gmru.net": [6329], "s30.cnzz.com": [3328], "kemi.se": [8736], "www.cronometer.com": [2674], "www.pehub.com": [21381], "hbsmoney.tips": [2024], "www.alt-sheff.org": [921], "r24626566.sync.app.asana.com": [1265], "*.fordela.com": [5999], "www.tomorrow-focus-media.de": [16617], "www.sinacloud.com": [14908], "tek.io": [2024], "bridgeinvest.in": [2024], "interhome.ch": [8247], "www.telegram.me": [16145], "www.agmk.net": [772], "amnesty.se": [1016], "bezopasnik.org": [19363], "disl.osu.edu": [11797], "itu.int": [7855], "vidplay.net": [17789], "oagtravel.com": [16999], "www.basket.genotek.ru": [20229], "www.myip.ms": [10849], "q.e4r.net": [2024], "shopnwf.org": [11126], "cdn.trgt.eu": [16794], "snapengage.com": [15090, 15091], "cdn.xignite.com": [18664], "www.tuquito.org.ar": [22311], "*.torproject.org": [16647], "www.demisexuality.org": [4334], "whwl.me": [2024], "www.unirand.uio.no": [17414], "web.tlgrm.ru": [22221], "cdn.theawl.com": [16253], "office365.vutbr.cz": [17609], "iaapa.org": [7666], "discounttheatre.com": [4533], "colorlines.com": [3446], "*.hifxonline.co.uk": [7390], "maps.yandex.kz": [18743], "sms.search.ch": [14504], "kirklees.objective.co.uk": [21225], "demo1.mashery.com": [10055], "csr.mvd.ru": [21055], "transmissionbt.com": [16751], "ixicorp.com": [7878], "i.ase.dk": [2024], "search.ams.usda.gov": [17299], "landmktg.com": [2024], "app-de3.resrc.it": [13659], "www.xav.com": [18635], "jianguoyun.com": [8580], "iah.im": [2024], "iml.osu.edu": [11797], "gateshead.gov.uk": [6446], "fav.agency": [2024], "one.com": [11865], "imaginasium.co": [2024], "registrar.uic.edu": [17321], "www3.netflix.com": [11269], "logs.tvaddons.ag": [22321], "giving.givingprograms.com": [6673], "managedforexprogram.com": [9952], "esue.ohio-state.edu": [11798], "*.pixinsight.com.tw": [12288], "*.justhost.com": [8707], "www.browser.yandex.by": [18739], "rutgon.tin8.co": [2024], "infi.ml": [2024], "picch.io": [2024], "www.openhost.co.nz": [12067], "www.networktimefoundation.org": [11306], "mercu.re": [2024], "stell.am": [2024], "mysite.somerset.org.uk": [15198], "api.paymentwall.com": [12511], "www.t0.com": [15842], "s.xnimg.cn": [18673], "spts.tv": [2024], "l.uicart.com": [2024], "s.realleads.net": [2024], "go.dave.tw": [2024], "unternehmen.hofer.at": [357], "ekaterinburg.auto.ru": [19276], "browser-update.org": [19457], "risesmart.us": [2024], "*.moneyandmarkets.com": [18281], "intra.lshtm.ac.uk": [9588], "whenhewants.com": [2024], "shangheguan.jd.com": [8434], "bb24.csob.sk": [3888], "ofl.io": [2024], "mail.st.uz": [21966], "www.skyscanner.at": [15006], "mybuys.com": [10793], "*.usconstitution.net": [17118], "www.castlebridge.ie": [2901], "appeal.jdpay.com": [8441], "ubt2.fanli.com": [5645], "hpls.me": [2024], "jkst.in": [2024], "hyrd.us": [2024], "www.skyscanner.ae": [15006], "qquote.me": [2024], "se.sitestat.com": [14952], "sfrce.co": [2024], "webhost.biz": [18215], "go8.edu.au": [6750], "pprtp.in": [2024], "calendarwiz.com": [2753], "link.ebisi.be": [2024], "pdc.refedd.org": [13471], "ryrb.co": [2024], "sociob.it": [2024], "chlk.ch": [2024], "link.from.pw": [2024], "tbbhd.me": [2024], "secure.kellytarltons.co.nz": [8860], "kev.tw": [2024], "wcmsprd.unicef.org": [17069], "cdn.jolla.com": [8636], "www.kenneth.io": [8865], "ccadenver.illuminateed.com": [20494], "tags.liveperson.net": [9505], "www.megastock.ru": [10243], "mcjctxn.hkjc.com": [20384], "ekoodit.fi": [5124], "memory.loc.gov": [9541], "clwo.co": [2024], "www.thedilbertstore.com": [16345], "excelsior-usa.com": [5473], "www.valueshop.co.uk": [17632], "bmcresnotes.biomedcentral.com": [1931], "epic.hpi.uni-potsdam.de": [17258], "ssl.meetme.com": [10224], "r24616624.sync.app.asana.com": [1265], "*.apnic.net": [1280], "www.nachhaltigesbauen.htwk-leipzig.de": [7596], "forum.alwaysdata.com": [946], "www.colocore.ch": [3436], "linux.slashdot.org": [15012], "major.io": [9913], "dkinney.co": [2024], "store.naturalskinshop.com": [11139], "ql.hitravel.xyz": [2024], "img.metaboli.fr": [10327], "splt.ws": [2024], "jobs.asmallorange.com": [259], "flahk.com": [2024], "m.help.1and1.com": [69], "www.elbalad.news": [19975], "go.checkroom.ru": [2024], "acs.bystrobank.ru": [2500], "perez.digital": [2024], "www.vh2.vutbr.cz": [17609], "gls.sr": [2024], "jkprop.co": [2024], "elbalad.news": [19975], "econom.nso.ru": [21192], "hj.io": [2024], "www.practiceheartbeat.bankofamerica.com": [1669], "les.chetv.ru": [19577], "s.devop.ca": [2024], "www.tuceducation.org.uk": [22305], "static.miasto.payback.pl": [21363], "archive.today": [1194], "wsampod.com": [2024], "pastee.org": [12479], "soft.islamictech.com": [8380], "aestas.me": [2024], "m.amica.com": [999], "*.shpock.com": [14806], "northants.greenparty.org.uk": [6908], "tibbt.com": [2024], "btp.co": [2024], "*.rsa.com": [13513], "tgg.io": [2024], "postdocs.ucsf.edu": [17387], "px.tmall.com": [22222], "app.fark.com": [5653], "b.cambooth.net": [2024], "https-everywhere.badssl.com": [1634], "dvd.xakep.ru": [18628], "www.digitalis.leeds.ac.uk": [17403], "3r1c.me": [2024], "*.buddypress.org": [2408], "omsk.auto.ru": [19276], "static.adlantis.jp": [19078], "www.tandlakarforbundet.se": [16005], "s8.gismeteo.pl": [20252], "*.indymedia.nl": [8088], "itru.co": [2024], "informatica.uv.es": [17544], "reg.demos.ru": [4342], "gw.vtrenz.net": [14865], "www.th-mittelhessen.de": [15874], "fbk.info": [5691], "www.fixubuntu.com": [5876], "ligatus.com": [9356], "app.whappodo.com": [18323], "secure.pepperfish.net": [12587], "johannes.sipsolutions.net": [14184], "www.anonymox.net": [1087], "medyaslan.com": [2024], "ar.chaturbate.com": [3040], "activemelody.com": [553], "on.mbga.jp": [2024], "clenguas.ual.es": [17162], "notification.alibaba.com": [857], "i.bspb.ru": [2398], "www.aggemam.dk": [769], "*.portforward.com": [12977], "z.suntravel.xyz": [2024], "gplus.ly": [2024], "www.bccla.org": [1530], "images.yandex.by": [18739], "course.cse.ust.hk": [22412], "www.relayrides.com": [13813], "apprenticeshipvacancymatchingservice.lsc.gov.uk": [20881], "www.2x.com": [134], "autodiscover.comscore.com": [3454], "on.freep.com": [2024], "ktgt.co": [2024], "l.kvc.me": [2024], "intgovforum.org": [8200], "p4.zdassets.com": [18905], "frascatitheater.nl": [6087], "erthshft.com": [2024], "i3.letvimg.com": [20818], "tripadvisor.co.uk": [22291], "listen-stage.tokenly.com": [22229], "encryptmas.org": [5228], "od.o2.cz": [2024], "consultants.apple.com": [1151], "a.youryou.us": [2024], "support.akixi.com": [19129], "learningdesign.usc.edu": [17366], "vgmne.ws": [2024], "www.steepandcheap.com": [15528], "7kbhkort.kk.dk": [8748], "fga.pw": [2024], "masterh5.adriver.ru": [588], "*.telegram.com": [16143], "cultrix.it": [2024], "festfoods.axonify.com": [1502], "www.ecma-international.org": [5044], "offworld.gizmodo.com": [6677], "streifband.de": [7595], "panet.andover.edu": [12653], "kinox.am": [20720], "c5app.com": [2024], "www.certs.vutbr.cz": [17609], "de.pornworms.com": [12974], "www.neomailbox.com": [11194], "static2.dditscdn.com": [4228], "trusteetoolkit.thepensionsregulator.gov.uk": [22173], "alternative.auto.ru": [19276], "ej.eastday.com": [5010], "ful.cambeywest.com": [2778], "links.aasinc.ca": [2024], "denfri.dk": [4343], "umu.se": [17229], "stats.wmtransfer.com": [18173], "www.telmasters.com": [16131], "docs.sencha.com": [14637], "niveusluna.org": [9679], "old.xchan.pw": [18641], "arma3.com": [1227], "www.montanalinux.org": [21015], "prgmr.com": [13093], "thestaradvisers.com": [16383], "www.readability.com": [13675], "extrafloris.com": [2024], "deft.xyz": [2024], "www.checkin.mcdonalds.ru": [20941], "catalog.update.microsoft.com": [10396], "a.bhemciclo.org": [2024], "www.belgacoin.com": [1790], "tracker.zentyal.org": [18933], "gamasutra.com": [16086], "institucional.us.es": [17502], "forums.warframe.com": [18073], "secnd.uk": [2024], "www.npac.com": [10985], "ljw.bz": [2024], "putianguan.jd.com": [8434], "thost.link": [2024], "gupiao.jd.com": [8436], "docs.demonsaw.com": [4341], "3scale.net": [175], "xtwo.ne.jp": [18695], "nicehash.com": [11423], "www.getify.com": [6597], "webpreserver.co": [2024], "jowitt.at": [2024], "u.syxy.fr": [2024], "www.gigenetcloud.com": [6639], "d0t.ro": [2024], "downloads.malwarebytes.com": [9940], "preview.smartadserver.com": [15049], "deutschebkk.de": [4393], "sledsto.re": [2024], "www.weechat.org": [18268], "broderick.cc": [2024], "astrakhan.beeline.ru": [1778], "www.buckid.osu.edu": [11797], "map.bike": [2024], "spaceindustrynews.com": [15279], "treaties.un.org": [17057], "news.ae": [2024], "www.ssc.osu.edu": [11797], "ex.ai": [2024], "hi.alipay.com": [864], "dev.wercker.com": [22561], "informationsecurity.wustl.edu": [18089], "stash.tfm.ro": [22135], "www.cambeywest.com": [2778], "nl.havering.gov.uk": [7236], "system76.com": [15823], "cdn.tripadvisor.com": [16817], "freerainbowtables.com": [6125], "www.tpbay.co": [22174], "l.bruji.com": [2024], "wallet.la": [18055], "desk.permkrai.ru": [21390], "s-lp.xyz": [2024], "litl.br3n.net": [2024], "silvawoodflooring.co.uk": [14861], "bit.pregame.com": [2024], "testadro.me": [2024], "www.sierraware.com": [14833], "lbcr.tv": [2024], "tick.net": [2024], "aleguy.co": [2024], "link.djegl.in": [2024], "shop.list.co.uk": [16273], "www.receive-a-sms.com": [21606], "yjtag.yahoo.co.jp": [18730], "s.yux.ch": [2024], "woolworthsonline.com.au": [18511], "note.chiebukuro.yahoo.co.jp": [18730], "www.apps.asiapacific.hsbc.com": [7090], "forum.ouedkniss.com": [21311], "secdev.ca": [14521], "fws.me": [2024], "www.bd.hsbc.com": [7090], "www.bernina-lugano.ch": [1827], "lyubertsy.beeline.ru": [1778], "comtrade.un.org": [17057], "www.fz.htwk-leipzig.de": [7596], "zuo.in": [2024], "standard.difi.no": [4452], "entroware.com": [5289], "drive.doublerobotics.com": [4707], "adbl.co": [2024], "psychsocgerontology.oxfordjournals.org": [12222], "www.fishnetsecurity.com": [5863], "connectproxy.wilmerhale.com": [18410], "hkwallet.price.com.hk": [13095], "www.surfline.com": [15716], "ct.googleapis.com": [6823], "knol.es": [2024], "mjk.im": [2024], "netbanking.hdfcbank.com": [7249], "zhytomyr.o3.ua": [21219], "berlin-airport.de": [1820], "support.webhost.co.nz": [12067], "cbsn.ws": [2024], "p5.qhimg.com": [13347], "datacvr.virk.dk": [17826], "www.steamcommunity.com": [15517], "groups.cern.ch": [2588], "pxtrr.com": [2024], "neuro-oncology.oxfordjournals.org": [12222], "mlio.it": [2024], "kolt.at": [2024], "www.backpackerslucerne.ch": [1625], "stats.companieshouse.gov.uk": [3509], "m2m.kyivstar.ua": [9067], "ayn.su": [2024], "efm.is": [2024], "newmysky.sky.com": [14989], "gprecruitment.hee.nhs.uk": [10953], "www.gentlelabs.com": [6514], "clrkwlmt.uk": [2024], "www.rbcommons.com": [13459], "hsgk.in": [2024], "lotte.ac": [2024], "sprc.me": [2024], "godpraksis.no": [6785], "fasthosts.co.uk": [5674], "mahabharata.friday.ru": [20175], "bgl.st": [2024], "froglabs.froscon.org": [6071], "kar.kent.ac.uk": [17402], "physics.illinois.edu": [17346], "iseek-external.un.org": [17057], "stip.so": [2024], "docsonline.wto.org": [18025], "m.srf.ch": [21957], "especiales.smoda.elpais.com": [5126], "heraclit.us": [2024], "gerv.net": [6543], "wiki.piratepartei.lu": [21418], "*.leanpub.com": [9223], "uploads.dailystavropol.ru": [19753], "mycommerce.com": [10798], "cherryui.bittorrent.com": [1974], "dzne.de": [6541], "mymdauto.com": [2024], "www.bankuralsib.ru": [1677], "widg.yt": [2024], "servedby.openxmarket.jp": [12030], "mrws.decc.gov.uk": [19795], "m.amap.com": [19165], "patntadvsr.co": [2024], "secure.chemistwarehouse.com.au": [3064], "ays-go.com": [2024], "reserve.dji.com": [4029], "m.portuguese.alibaba.com": [857], "tpcl.as": [2024], "s.dorabak.gr": [2024], "pledgie.com": [12851], "1und1.de": [91], "toystud.io": [2024], "eroom.un.org": [17057], "admin.octopuspop.com": [11754], "bit.tr.eco.br": [2024], "socialmediascanner.eset.com": [5347], "a1.twimg.com": [16949], "cu3.uicdn.net": [17032], "welovepromo.biz": [2024], "www.jpcert.or.jp": [8459], "original.youku.com": [18804], "powerdns.net": [13037], "wiki.sugarlabs.org": [15646], "www.stalkscan.com": [21975], "archives.un.org": [17057], "bitshares.org": [1972], "www.inl.gov": [20537], "belle.ly": [2024], "cdn.wl.easydategroup.com": [832], "shawnw.me": [2024], "copernicus.cnes.fr": [2647], "emergencymanagement.georgetown.edu": [6531], "sdfestaticassets-us-west-2.sciencedirectassets.com": [21750], "cdn.slant.co": [21856], "love2d.org": [9636], "t.embed.ly": [5188], "youtube.pr": [18800], "karl.oxfam.org.uk": [12221], "nortonhealth.ly": [2024], "jnci.oxfordjournals.org": [12222], "www.listenerapproved.com": [9465], "saintscal.co.uk": [2024], "youtube.pl": [18800], "links.datata.mx": [2024], "papi.tv4play.se": [15947], "pica71.ub.uni-mainz.de": [17410], "e210.johnshopkins.edu": [8626], "www.1dedic.ru": [76], "rollapp.com": [14011], "api.mtvnn.com": [17748], "monosby.ws": [2024], "kumapon.jp": [9049], "ke.boell.org": [19422], "padlet.com": [12354], "www.mighty-hoernsche.de": [2606], "crhrs.us": [2024], "jimar.me": [2024], "pixel.1und1.de": [91], "ic-live.com": [7905], "youtube.pe": [18800], "activate.rockstargames.com": [13997], "www.sysconfig.org.uk": [15817], "www.zadarastorage.com": [18870], "office.telphin.ru": [16170], "www.otalliance.org": [11718], "ssl13.ovh.net": [12205], "mag.zafafi.com": [2024], "blp.me": [2024], "store.gomohu.com": [6776], "i1.nyt.com": [11035], "www.bostonglobe.com": [2253], "host20.top": [2024], "roadtrippers.com": [13974], "forums.mydigitallife.net": [21064], "kinesis-ergo.com": [8910], "mwl.co": [2024], "www.x-lift.jp": [18587], "2recover.org": [2024], "msgkh.permkrai.ru": [21390], "s.lurkmore.ru": [9683], "intellichat.com": [8707], "tipico.de": [16568], "snkr.io": [2024], "abk.kasel-it.de": [2024], "www.adingo.jp": [646], "frontiersin.org": [6204], "cpn.cd": [2024], "smart.microad.jp": [10377], "static.isu.pub": [8396], "search.stanford.edu": [15448], "www.vuejs.org": [17963], "bt4asth.ma": [2024], "owncloud.lebsanft.org": [20797], "iosgeni.us": [2024], "www.codinghorror.com": [3384], "pragprog.com": [13058], "go.trivn.net": [2024], "*.4shared.com": [192], "3taps.com": [177], "yelp.com.sg": [18766], "stillres.olympic.org": [21241], "*.worldwinner.com": [6394], "coal.decc.gov.uk": [19795], "flightradar24.com": [20119], "demisexuality.org": [4334], "www.beego.me": [1776], "confused.com": [3576], "can.fm": [2024], "iwmsurveys.com": [2024], "xs4all.nl": [18625], "psp.re": [2024], "dsimg.ubm-us.net": [16998], "*.real.com": [13682], "ivegotkids.com": [8413, 8414], "dl.tinyjuke.com": [2024], "juicycanvas.com": [8683], "www.binarybiz.com": [1919], "wva.me": [2024], "www.professormesser.com": [13173], "cmbr.us": [2024], "t.amerion.nl": [2024], "sas.pspr.fi": [2024], "www.twistedmatrix.com": [16958], "on.bien.hu": [2024], "content001.bet365.com": [1841], "ir.homedepot.com": [7479], "www.brandsaver.ca": [13168], "inside.cias.rit.edu": [13493], "3dqlab.stanford.edu": [15448], "s141.cnzz.com": [3328], "ace-host.net": [526], "matepod.ca": [2024], "*.unblocked.red": [17237], "mylearnville.in": [2024], "grad.washington.edu": [17376], "mehring.com": [10246], "skin.issuu.com": [8392], "shop.aalto.fi": [447], "sabbah.in": [2024], "1688.com": [51], "store.dji.com": [4029], "cdrellc.com": [2024], "scandinavianphoto.fi": [14394], "www.xiscosoft.com": [18668], "www.venatusmedia.com": [22481], "postmaster.live.com": [9495], "innovolt.info": [2024], "www.syscoding.com": [15816], "fotosocher.de": [2024], "www.companieshouse.gov.uk": [3509], "t.9tee5.com": [2024], "kinderaerztetest.tocco.ch": [16600], "hustlermagazine.com": [7637], "cdn3.kongcdn.com": [8987], "go.fuzzd.nl": [2024], "www.mycalendarbook.com": [10794], "wiki.feide.no": [5729], "billing.qth.com": [13336], "gismeteo.lt": [20249], "snkcr.sh": [2024], "manheiml.lc": [2024], "nn-realty.rambler.ru": [13600], "www.eolewater.com": [5304], "aei.org": [335], "twitchstatus.com": [22333], "cleoph.us": [2024], "archive.brent.gov.uk": [2324], "zlavadna.sk": [18978], "thegay.report": [2024], "onepass.westlaw.com": [18312], "comic.pixiv.net": [12778], "smartcity.taipei": [21866], "sic.sans.org": [14128], "*.assembla.com": [1302], "digigov.cardiff.gov.uk": [19509], "www.ed.gov": [4881], "fus.walla.co.il": [22521], "govdex.gov.au": [6847], "rakemade.co": [2024], "gowv.co": [2024], "dun.163.com": [50], "cloudproven.net": [3299], "nghtyd.gs": [2024], "weallsew.bernina.com": [1827], "dognition.co": [2024], "compte.gresille.org": [6927], "www.net-security.org": [11219], "support.subscriptiongenius.com": [15629], "obi.pl": [21222], "bdvs.co": [2024], "forecast.smartadserver.com": [15049], "secure.municode.com": [10742], "74.rkn.gov.ru": [13971], "piratebay.unlockproject.online": [22259], "gils.me": [2024], "fki.cc": [2024], "newsru.com": [11388], "bitrix.gov-murman.ru": [20293], "i-origin.ligatus.com": [9356], "paper.li": [12408], "blogs.adobe.com": [669], "wetter.at": [11766], "www.gnu.org": [6337], "smoothieblend.com": [15075], "m.feedback.yandex.kz": [18743], "nano.kyivstar.ua": [9067], "www.saic.com": [14123], "*.cadetnet.gov.au": [2728], "api.irccloud.com": [8351], "gutvertreten.boell.de": [2192], "xifrat.pirata.cat": [21413], "g.viedemerde.fr": [2024], "ish.tek.no": [16128], "hub.am": [2024], "df.eu": [4020], "pdf.wondershare.com": [22608], "help.barclaycard.co.uk": [1690], "secure.registration.olympic.org": [21241], "haveproof.com": [7234], "*.introweb.hu": [8298], "mail2.stoloto.ru": [21996], "xmkd.mk": [2024], "*.whistleout.com": [18344], "r24616981.sync.app.asana.com": [1265], "www.innovation.cms.gov": [19630], "m.weheartit.com": [18115], "visuels.l214.com": [20767], "abhijan.me": [2024], "nranews.com": [21184], "bytename.com": [2504], "www.bpsshop.org.uk": [19439], "about.yahoo.co.jp": [18730], "rly.pt": [2024], "www.register.acs.org": [974], "magnitogorsk.tpprf.ru": [22260], "svn.r-project.org": [13447], "bbil.co": [2024], "magazin.spiegel.de": [15342], "safetyinhealth.biomedcentral.com": [1931], "imapfis.ct.infn.it": [7771], "vsix.whmcs.com": [17997], "inco.me": [2024], "www.useitandsee.com": [5171], "jauce.com": [20628], "t7.pixhost.org": [21426], "umol.me": [2024], "on.twfgllc.com": [2024], "waisttrain.ml": [2024], "stream.francetvinfo.fr": [20149], "musalbas.com": [10744], "galvoti.co": [2024], "risk.wusm.wustl.edu": [18089], "cryptbin.com": [3844], "islands.yandex.by": [18739], "dgrevie.ws": [2024], "www.truthinadvertising.org": [16872], "pt.4.boardgamearena.com": [2182], "synthetix.com": [15807], "forum.bitcoin.co.id": [1992], "lifehacker.ru": [20836], "dev.pipl.com": [10054], "bmcmedgenomics.biomedcentral.com": [1931], "secureaccess.sonymusic.com": [15217], "severodvinsk.startsmile.ru": [21980], "soap.com": [15118], "on.msre.ly": [2024], "art.yaplakal.com": [22668], "st-div.web.cern.ch": [2588], "freem.social": [2024], "48f.de": [2024], "www.namecoin.info": [11062], "eloquentjavascript.net": [5173], "*.4chan-ads.org": [196], "hornstrafarms.com": [7505], "*.symanteccontent.com": [15780], "phototass2.cdnvideo.ru": [19536], "os3.nl": [11700], "hostmonster.com": [7544], "mmbl.co": [2024], "dnw.ninja": [2024], "redditbot.com": [21617], "static.skynews.com.au": [14994], "thbk.to": [2024], "vntage.co": [2024], "prnt.sc": [21502], "www.culturalsurvival.org": [3911], "static-overpwn.cursecdn.com": [3927], "svn.verisignlabs.com": [17713], "www.calgaryoutdoorcentre.ca": [17016], "taxact.com": [16044], "wpdev.ms": [18019], "on.jci.com": [2024], "cpis.me": [2024], "www.vsemetri.com": [22510], "s.vinas.com": [2024], "on.listal.it": [2024], "redy.edp.pt": [4888], "advertising.amazon.ca": [19167], "shu2.ga": [2024], "alecomm.com": [835], "edixml.melkweb.com": [2797], "s.olar.us": [2024], "cdnl.tblsft.com": [16049], "www.t35.com": [15844], "www.chefkoch-blog.de": [3062], "url.nhefner.com": [2024], "suhs.co": [2024], "s.b12e.be": [2024], "zmeit.jd.com": [8436], "15u5ytww4ck1611a6rr82pukca97iti3j0uok4id.ipleak.net": [20571], "b.mdnalapat.com": [2024], "360az.co": [2024], "orlandoloc.al": [2024], "static.bufferapp.com": [2419], "nzmilk.bar": [2024], "floorplan.immobilienscout24.de": [8008], "q.vr-cruise.com": [2024], "payusvisafee.rsb.ru": [14058], "ptp.ourpowerbase.net": [21313], "s.jcky.ca": [2024], "ad.a-ads.com": [260], "bchor.us": [2024], "ncptt.nps.gov": [11122], "www.fossil.energy.gov": [5243], "www.printink.si": [13120], "link.ryberg.org": [2024], "pd2.anthem.com": [19206], "bdsuperhero.es": [2024], "pix.rlives.in": [2024], "www.yourlibcat.staffordshire.gov.uk": [15435], "download.taiwantradeshows.com.tw": [22089], "s7.pimg.tw": [12709], "s.ligamx.net": [2024], "help.xsolla.com": [18685], "alaskarobotics.com": [823], "rests.afisha.ru": [19107], "git29.rostrud.ru": [21677], "re.niki.ai": [2024], "corporate.unionpay.com": [17281], "www.theverge.com": [16286], "facebook.jp": [5612], "ashlandfiber.net": [1276], "www.garron.me": [6441], "www.youtube.cl": [18800], "cdn.ruguoapp.com": [21692], "bkle.in": [2024], "www.o2-tv.cz": [16141], "privacy.yahoo.co.jp": [18730], "www.theweekendedition.com.au": [18273], "dittdistrikt.no": [4567], "allyou.net": [889], "*.cdn.sapo.io": [14130], "www.aeup.eu": [337], "order.exede.com": [5479], "eservices.ficora.fi": [5757], "checkout.ulule.com": [17224], "m.avito.ru": [19287], "flippa.com": [5907], "ofaa.gumc.georgetown.edu": [6531], "abo.lequipe.fr": [20811], "www.yougetsignal.com": [22688], "*.i3d.net": [7664], "okts.co": [2024], "jugger.ru": [8680], "www.coinpay.in.th": [3408], "jles.es": [2024], "verisign.fr": [17712], "at.naturea.gr": [2024], "commerce.reuters.com": [13893], "tipp10.com": [16569], "app.codefund.io": [3368], "stats.0xbadc0de.be": [9], "s.t2p0films.ca": [2024], "www.internetfreedomfestival.org": [20554], "dmlp.org": [4036], "odags.tocco.ch": [16600], "hkuspace.hku.hk": [20387], "army.unian.ua": [22369], "newit.co.uk": [11336], "opensuse.org": [12007], "www.bremer.com": [2320], "perypetie-informacji.panoptykon.org": [12395], "aff.biz": [741], "mobil.derstandard.at": [19814], "dtunnel.com": [4080], "mugenmonkey.com": [10727], "gsfund.ml": [2024], "*.subscribe.scientificamerican.com": [14446], "iaata.info": [7667], "www.readrboard.com": [13677], "byerssci.us": [2024], "digi.diet": [2024], "www.dutchcrafters.com": [19908], "oneadmin.cz": [11677], "18uciravn6fqxexrus8sb9j09zlzxi7cp368e0s3.ipleak.net": [20571], "green.mn": [2024], "cstau.de": [2024], "richmond.gov.uk": [21649], "dkb.de": [4031], "medwiki.stanford.edu": [15448], "goza.gs": [2024], "de.sitestat.com": [14952], "go.ostp.gov": [2024], "mfw.fyi": [2024], "cr8.is": [2024], "record.wustl.edu": [18089], "sitelock.com": [14934], "wealthytheatre.org": [6873], "lvrtn.ai": [2024], "medwatch.dk": [10152], "asp.readspeaker.net": [13670], "wtgc.co": [2024], "plnk.co": [2024], "www.bem.info": [1537], "secure.footprint.net": [5993], "accounts.babbel.com": [1614], "www.simplyhired.com": [14894], "blipp.com": [2099], "j2mepk.com": [2024], "no-bl.co": [2024], "advisingconnect.osu.edu": [11797], "worldofwarcraft.com": [18542], "i.phang.org": [2024], "designers.hubspot.com": [7599], "webm.rapida.ru": [13619], "www.biglinux.com.br": [19374], "account.windowsazure.com": [18434], "cs17.myzuka.fm": [21079], "srksg.tocco.ch": [16600], "pyatnica-news.friday.ru": [20175], "payee.globalpay.westernunion.com": [18310], "zimbatm.com": [18967], "on-disk.com": [11845], "pic9.qiyipic.com": [13354], "ukinusa.fco.gov.uk": [5548], "t.recommend.rakuten.co.jp": [13594], "newspapers.sos.wa.gov": [14215], "www.eurekalert.org": [20032], "asaweb2.wku.edu": [22602], "counter.li.org": [9406], "chicdfr.co": [2024], "i4.sndcdn.com": [15096], "msb.georgetown.edu": [6531], "t.avecomics.com": [2024], "aqtv.co": [2024], "bmmobile.bm.ru": [2176], "spiider.xyz": [2024], "exelab.ru": [20048], "tescoshareandearn.com": [16212], "www.git-public.kairo.at": [8782], "gtms01.alicdn.com": [853], "webhungary.hu": [18218], "b.osoe.jp": [2024], "rasth.wyreforestdc.gov.uk": [22639], "faculty.washington.edu": [17376], "skortekaas.nl": [14190], "zeze.sci-hub.cc": [14436], "lists.logilab.org": [9569], "service.bernina.com": [1827], "viu.tv": [22475], "wpsc.me": [2024], "www.nzpug.org": [21215], "livejournal.com": [9502], "jnbrk.se": [2024], "beingtahsan.cf": [2024], "risa.link": [2024], "clook.it": [2024], "cheetosmuseum.com": [19570], "labs.youku.com": [18804], "photo.trend.az": [22281], "ethx.me": [2024], "etherpad.indieweb.org": [8076], "classic.zattoo.com": [18900], "amltd.pw": [2024], "developer.gitbook.com": [6655], "w.org": [18520], "static-stg.gbot.me": [6791], "dfit.io": [2024], "webmail.his.com": [7292], "vice.fm": [2024], "irea.ch": [2024], "cremeri.us": [2024], "www.bayproxy.site": [21524], "youthorchestra.stanford.edu": [15448], "www.oniontip.com": [11901], "s.snpy.co": [2024], "*.hr.wvu.edu": [18306], "rctlk.com": [2024], "intevation.de": [8293], "my.ihc.ru": [7740], "*.jamanetwork.com": [8423], "www.almaany.com": [19155], "info.sumologic.com": [15658], "gpgtools.org": [6348], "ftepaper.ft.com": [5810], "www.polisforbundet.se": [12913], "jd.com": [8435], "on.iqinside.xyz": [2024], "csj.georgetown.edu": [6531], "*.exinda.com": [5484], "chcmd.me": [2024], "www.xmms2.org": [18613], "uakron.edu": [17161], "help.podio.com": [12889], "bostonbuilt-org.hoaxdevice.com": [2251], "inth.me": [2024], "lela.im": [2024], "users.wix.com": [18473], "www.microsoft.com": [10396], "www.fshare.vn": [6217], "www.socrata.com": [15149], "www.hobbypcb.com": [20388], "shanghu.alipay.com": [864], "thecottages.me": [2024], "hudson.vervehosting.com": [17732], "www.profitbricks.com": [13176], "web-ext.sviaz-bank.ru": [15740], "www.heanet.ie": [7266], "technical.ly": [16099], "roammobility.com": [13975], "bitrix.genotek.ru": [20229], "appworld.blackberry.com": [2068], "portrait.gov.au": [11111], "www.spritesmods.com": [15387], "www.hacktionlab.org": [7147], "preorder.muse.mu": [21053], "blog.websterwood.com": [18251], "tripadvisor.ca": [22289], "techsupportalert.com": [16118], "bss.sch.bme.hu": [1556], "marketing.democrats.org": [4338], "paris-luttes.info": [12430], "smetrics.mastercardintl.com": [10060], "appdynamics.com": [1134], "systemcenteradvisor.com": [15825], "s.kariba.co.ke": [2024], "www.findip-address.com": [20103], "activity.hdslb.com": [20358], "on.nem.ec": [2024], "its.jbinfo.xyz": [2024], "rapidhealth.biz": [2024], "ab.tc": [2024], "go.liveramp.com": [9509], "www.linuxserver.io": [9449], "campinaopschool.nl": [2797], "blorderform.bl.uk": [2358], "ahrc.cms.gov": [19630], "gistr.at": [2024], "content.mery.jp": [9749], "lerner.ccf.org": [3237], "api.viglink.com": [17797], "go.stengard.org": [2024], "wp.appadvice.com": [1143], "fora.demonoid.cc": [19807], "dota2.backpack.tf": [1624], "huque.com": [7631], "oc.libreoffice.org": [9327], "intersectalliance.com": [8291], "shop.teslamotors.com": [16213], "intelligence.businessinsider.com": [2471], "friendme.sonyentertainmentnetwork.com": [15219], "kaliningrad.rt.ru": [13529], "kolireg.ktk.bme.hu": [1556], "git.coin-or.org": [2652], "www.intelliot.com": [8218], "static.kancloud.cn": [20681], "osutravel.osu.edu": [11797], "getdigital-blog.de": [6555], "www.gradle.com": [20301], "cryptologie.net": [3867], "www6.memberdirect.net": [10265], "saturn.de": [21736], "support.pckeyboard.com": [21370], "racjonalista.pl": [13554], "cccu.ca": [3337], "shibboleth.buffalo.edu": [17382], "go.chichbong.vn": [2024], "subscribe.wsj.com": [22625], "forum.manjaro.org": [9966], "actucarlotta.fr": [2024], "f.etchuk.com": [2024], "courses.wesbos.com": [18297], "askattic.us": [2024], "s.ryan.ma": [2024], "go.sf.edu": [2024], "ge.boell.org": [19422], "info34.top": [2024], "ta5.us": [2024], "a.furnish.ng": [2024], "shutterstock.com": [14816], "www.barnard.edu": [1701], "isidewith.com": [20466], "ntcr.in": [2024], "armavir.startsmile.ru": [21980], "*.algonquincollege.com": [851], "www.wonga.com": [18503], "keepup.virginmedia.com": [17822], "www.housing.illinois.edu": [17346], "*.ogt.jp": [8110], "l.polvi.eu": [2024], "sdsu-dspace.calstate.edu": [2745], "ub.retargeter.com": [13660], "learningzone.hants.gov.uk": [7185], "www.leader-id.ru": [20793], "*.2gis.ru": [115], "0800buster.co.uk": [20866], "gotlandring.com": [6838], "www.invoiceocean.com": [8326], "www.elliptictech.com": [5164], "api.eply.com": [4936], "livemu.sc": [2024], "kodem.kr": [2024], "chm.li": [2024], "unblockbay.com": [22174], "s52.cnzz.com": [3328], "www.manageengine.jp": [9950], "www.awesome-it.de": [1487], "toledo.kuleuven.be": [8832], "www.vehiclevisuals.com": [17682], "www.vtbrussia.ru": [17602], "dino101.ca": [2024], "maseratiusa.co": [2024], "catawba.worldcat.org": [18536], "*.stocktwits.net": [15546], "alt.3dcenter.org": [159], "bit-url.info": [2024], "www.karger.com": [8809], "r.teads.tv": [16059], "aniart.com.ua": [19199], "analytics.pressfreedomfoundation.org": [6150], "www.boxcar.io": [2275], "deviceids-medp-id2.wdr.de": [18113], "lumafor.ge": [2024], "search.1and1.com": [69], "www5.citymapper.com": [3195], "www.strato-pro.com": [14257], "*.shopmania.es": [14778], "leadch.at": [2024], "mobile.ensi.ch": [22061], "euin.jp": [2024], "www.4.cn": [179], "secure.store.apple.com": [1151], "schulte.org": [14431], "vouchercloud.com": [22501], "idc.com": [7707], "allstartire.com": [894], "adserverams.adtech.de": [691], "www.spendvision.com": [21935], "americanunivofnigeria.worldcat.org": [18536], "origin-www.seagate.com": [14499], "abcn.ws": [2024], "ltmom.co": [2024], "account.mackeeper.com": [9834], "assets.cdn-otto.de": [12168], "store.storeimages.cdn-apple.com": [2567], "altardstate.axonify.com": [1502], "secureimages.capwiz.com": [2838], "www.iwight.com": [7876], "umg.dk": [2024], "akademy2009.kde.org": [8735], "sustainability.cornell.edu": [3676], "desolation.co": [2024], "chat.livezilla.net": [9512], "tgsm.us": [2024], "www.resrc.it": [13659], "nationaldefensemagazine.org": [11087], "plt.tips": [2024], "open.krasnodar.ru": [20754], "www.dino.sr": [2310], "link.makee.net": [2024], "*.efinancialnews.com": [11361], "intranet.open-groupe.nl": [21263], "app.bjcnc.scs.sohucs.com": [15173], "f2fgam.es": [2024], "static.mediapart.fr": [10194], "viztrans.com": [2024], "dl.savannah.gnu.org": [6337], "www.asi.org.ru": [19255], "gacela.itc.mx": [7846], "fmg.link": [2024], "www.convox.com": [3634], "answerology.delish.com": [4312], "www.wakelet.com": [18047], "sfgt.co": [2024], "ts7.jp": [2024], "wx3.sinaimg.cn": [14910], "www.cnre.vt.edu": [17825], "131002.net": [42], "thnkngof.gd": [2024], "i1.sinaimg.cn": [14910], "libvirt.org": [9338], "events.adform.com": [639], "webenrol.com": [22545], "causes.meetme.com": [10224], "121nex.us": [2024], "dnn.siia.net": [15166], "on.dhb.io": [2024], "mod.postimage.org": [13024], "stec-t00.xhcdn.com": [18605], "*.reelseo.com": [13768], "images.static.shropshire.gov.uk": [21819], "cihr.eu": [2615], "bip.io": [1941], "deepin.org": [4287], "i5k.nal.usda.gov": [17299], "buildd.raspbian.org": [13630], "a.jsy.us": [2024], "stresstimul.us": [2024], "www.zg.ch": [22061], "miken.co": [2024], "inbm.it": [2024], "forms2.bl.uk": [2358], "vpn.asia": [22505], "js6.me": [2024], "www.extreme-light-infrastructure.eu": [5518], "specialcollections.nal.usda.gov": [17299], "prospect.org": [16320], "piratebays.co.uk": [22176], "4.vgc.no": [17569], "roundcube.net": [14039], "es.premium.members.webs.com": [18237], "www.securepurchaseserver.com": [14573], "forums.girlsoutwest.com": [6648, 20247], "hghts.me": [2024], "d2b.play-asia.com": [12828], "ssl1.mbank.pl": [9733], "bizetto.biz": [2024], "forum.keenetic.net": [20701], "i.srijit.com": [2024], "anchorchur.ch": [2024], "thehackernews.com": [16407], "neovim.io": [21104], "rbl.ms": [2024], "*.cj.com": [3484], "cdn3.xda-developers.com": [18598], "r24616994.sync.app.asana.com": [1265], "shin.es": [2024], "purplebox.ghostery.com": [6613], "www.osadl.org": [11701], "app.movableink.com": [10667], "dini.lu": [2024], "l.paws.org": [2024], "www.1cart.co.nz": [61], "cf2.100r.org": [12], "news.mims.com": [9756], "dakar.usembassy.gov": [22406], "rssing.com": [13524], "feedback.adcenter.microsoft.com": [10396], "biz.mail.ru": [9891], "gbot.me": [2024], "portal.fraudmetrix.cn": [20151], "newzsec.com": [11393], "www.sum.uio.no": [17414], "pl.socialclub.rockstargames.com": [13997], "wwwdc.hertzentertainment.com": [7371], "blog.tosdr.org": [16597], "www.magento.com": [9868], "www.poste.ch": [12996], "livechat.startech.com": [15459], "tmbtp.co": [2024], "www.kenexa.jobs": [8863], "jp.cloudflare.com": [3284], "intranet.ku.dk": [17336], "www.nextbit.com": [11403], "m.lenna.at": [2024], "molecular-cancer.biomedcentral.com": [1931], "lib.vutbr.cz": [17609], "rp.zemanta.com": [18912], "elibraryusa.state.gov": [17146], "islam-guide.com": [8364], "esda.xyz": [2024], "m.jhu.edu": [16370], "cfderive.co": [2024], "pro-data.btcc.com": [2400], "zivte.ch": [2024], "*.serienjunkies.de": [14658], "mc.cran.at": [2024], "epclmn.co": [2024], "www.youm7.com": [18805], "www.support.earthlink.net": [4997], "scm.dataconservancy.org": [4184], "sos-addictions.org": [14214], "fla-best.biz": [2024], "img9.wlresources.com": [22604], "nhbox.co.uk": [2024], "yoursav.com": [18828], "bastion.desy.de": [4386], "www.rosminzdrav.ru": [21674], "insure.kyivstar.ua": [9067], "blutmagie.de": [2175], "static.strawpoll.me": [15583], "uk-www.sky.de": [14990], "www.stallman.org": [15438], "cdncz1.img.sputniknews.com": [21951], "www.zenhub.io": [22713], "get.erchima.net": [2024], "ads.whichmba.com": [18337], "www.beszerzes.khb.hu": [8739], "se.ucsd.edu": [17012], "a.cbsowasso.com": [2024], "statistik.netcologne.de": [11226], "www.amrathea-test.kairo.at": [8782], "webhostingstuff.com": [18164], "yim.by": [2024], "directactioneverywhere.com": [4511], "mantenimiento.uned.es": [17248], "store.shopsite.com": [14779], "www.phoenix.com": [12663], "www.geo.admin.ch": [22061], "repo.mysql.com": [10825], "www.yannick.net": [18750], "mfile.im": [2024], "jws01.tk": [2024], "support.mailpoet.com": [9896], "easy2coach.net": [5013], "orueagl.es": [2024], "portal.stalbans.gov.uk": [21974], "www.valleyfirstcu.org": [17621], "boxtv.in": [2024], "ural.te-st.ru": [22103], "yahoo.tumblr.com": [16897], "arewewebextensionsyet.com": [19228], "blog.smashfly.com": [15065], "thesyriacampaign.org": [22190], "l.beden.net": [2024], "uzoo.rocks": [2024], "cloudflare.com": [3284], "sensi.media": [2024], "seton.care": [2024], "www.megashare.im": [10242], "bob.re": [2024], "www.fazjob.net": [5545], "debij.me": [2024], "*.image-gmkt.com": [13359], "tracking-rce.veeseo.com": [17677], "pages.thewarehouse.co.nz": [16425], "www.alibaba-inc.com": [19139], "docs.upyun.com": [17492], "wikihow.com": [18383], "www.lovettpublishinghouse.com": [9642], "transitionnetwork.org": [16745], "naacpimageawards.net": [10903], "apx.sc": [2024], "link.kls.org": [2024], "www.it-ccs.com": [20596], "*.interlan.se": [8251], "mft.cambridgeshire.gov.uk": [19496], "eastern.greenparty.org.uk": [6908], "bucknell.worldcat.org": [18536], "jobs.sciencecareers.org": [14440], "sgmr.me": [2024], "solutionpartnerdashboard.cisco.com": [3165], "twittercounter.com": [16964], "www.investments.osu.edu": [11713], "www.majestic12.co.uk": [9912], "tv.pluska.sk": [12870], "stackmonkey.com": [15427], "maps.sheffield.gov.uk": [14755], "admin.gear.mycelium.com": [21063], "www.bookstore.mtu.edu": [9816], "b.jhn.fm": [2024], "netid-mgmt.georgetown.edu": [6531], "cache.send.microadinc.com": [10380], "alhur.es": [19137], "senditnowuat.courierpost.co.nz": [3714], "kissanime.to": [8933], "sms.islamweb.net": [8373], "login.arkena.com": [1224], "hip.mk": [2024], "img.welt.de": [18290], "www.its.hku.hk": [20387], "www.thumbzilla.com": [16476], "www.sibinfo.su": [21822], "3fm.nu": [2024], "www.ganglandnews.com": [6433], "s-and-s.us": [2024], "savvyhawk.com": [14378], "fashion.zalando.com": [18877], "firmcentral.westlaw.com": [18312], "cache-rmg.cdnvideo.ru": [19536], "stat.rbth.com": [21596], "op.hn": [2024], "skvw.net": [2024], "cf-voam.com": [2024], "www.sas.com": [14132], "54s.co": [2024], "laneblog.stanford.edu": [15448], "www.lifeinsurance.firstdirect.com": [20111], "icfy.ch": [2024], "awp.is": [1316], "www.stewilliams.com": [21991], "en.panoptykon.org": [12395], "sql6.endora.cz": [5237], "cdn.instaemail.net": [8180], "arriel.unizar.es": [17441], "sense.alfabank.ru": [849], "go.minhit.com": [2024], "wiki.freedesktop.org": [6102], "www.rethinkdb.com": [21638], "x.myspacecdn.com": [10889], "scg.ms": [2024], "d42.me.uk": [2024], "luu.org.uk": [9122], "my.osu.edu": [11797], "account.1and1.ca": [70], "axeon.cc": [2024], "blog.pfsense.org": [12637], "s.colinross.me": [2024], "iecisa-ift.axosoft.com": [1504], "sgn.me": [2024], "infousa.com": [8112], "rd.netramz.com": [2024], "surgut.beeline.ru": [1778], "www.mydrive.ch": [10870], "on.rgj.com": [2024], "www.gls.de": [6320], "ectc-online.org": [5011], "ktuin.es": [2024], "ws1.ems.eosdis.nasa.gov": [10909], "www.220volt.hu": [96], "l.angp.in": [2024], "mydante-public.georgetown.edu": [6531], "www.skyriderplay.com": [15005], "so.stellr.co": [2024], "skr.nlm.nih.gov": [11090], "s2.postimg.org": [13024], "www.fiercefinance.com": [5761], "livi.link": [2024], "www.shoeshow.com.au": [14774], "git.openwrt.org": [12025], "clarityray.com": [3215], "tj.valdikss.org.ru": [22423], "pbesignup.na.leagueoflegends.com": [9220], "speakeasy.net": [15305], "bagmovi.es": [2024], "static.broadcasthe.net": [2371], "www.xetum.com": [18657], "macromates.com": [9849], "en.ulule.com": [17224], "berliner-energietisch.net": [1822], "www.studiopress.com": [15609], "pcoast.co": [2024], "libdrc.org": [9308], "www.technicalcommunity.com": [16100], "www.reggi.ru": [13788], "dealnews.com": [4250], "28degrees-online.gemoney.com.au": [6293], "hoccer.com": [20390], "cominm.ag": [2024], "www.nymity.ch": [11637], "tech.just-eat.com": [20671], "knzo.com.ar": [2024], "msk.kprf.ru": [20751], "ta.nnerl.com": [2024], "engineering.adform.com": [639], "www.gittip.com": [6667], "forms.essex.gov.uk": [5354], "esn.im": [2024], "www.politico.com": [12919], "share.intercom.io": [8241], "assets-broadly.vice.com": [17754], "acluofnc.org": [306], "s7r.io": [2024], "oreil.ly": [2024], "bojangl.es": [2024], "tati.io": [2024], "pic2.zhimg.com": [18956], "www.times.am": [22210], "www.masteringemacs.org": [10066], "asifp.info": [2024], "makrotex.hu": [9930], "bjaed.oxfordjournals.org": [12222], "tc3.edu": [16618], "fast.fnal.gov": [5741], "f1.help.mindtouch.us": [10446], "grist.me": [2024], "j.konex.us": [2024], "evolve.axonify.com": [1502], "images0.cnblogs.com": [19631], "hseinfo.info": [2024], "beauty.migros.ch": [10417], "places.tomtom.com": [16615], "desq.dict.cc": [4442], "nzz.at": [21216], "blog.namecheap.com": [11060], "time.paycheckrecords.com": [12505], "maps.bl.uk": [2358], "aclu-mo.org": [303], "download.formsanity.com": [6020], "partners.livechatinc.com": [9492], "www.eclipse.org": [5040], "www.internetgovernance.org": [8270], "mini.eastday.com": [5010], "www.ccdcoe.org": [2560], "dev.sign-up.to": [14842], "hlab.co": [2024], "scsynod.us": [2024], "qf.org.qa": [21557], "portal.wusm.wustl.edu": [18089], "go.s4h.co": [2024], "login.politico.com": [12919], "brighton.com": [2348], "ctc.engineering.osu.edu": [11797], "*.fundinfo.com": [6241], "www.myitcv.org.uk": [10878], "rwanda.usembassy.gov": [22406], "api-taojinbi.taobao.com": [16015], "www.thm.de": [15876], "*.bcy.ca": [6876], "pt.m.xhamster.com": [18606], "lilacrn.us": [2024], "ngvpn15.nvidia.com": [11022], "composer.typo3.org": [15959], "s108.cnzz.com": [3328], "campaign.dji.com": [4029], "local.whsmith.co.uk": [18000], "www.apomedifot.de": [1128], "diagrid.org": [4428], "lombardigala.georgetown.edu": [6531], "stunnel.org": [15613], "login.ezproxy.utm.edu": [17426], "www.hubnotify.com": [20442], "static.glassdoor.co.uk": [20260], "crdnl.club": [2024], "sellercentral.amazon.ca": [19167], "qzapp.qlogo.cn": [13355], "nole.li": [2024], "patriziape.pe": [2024], "russia2all.com": [14100], "podvertiseonline.com": [12883], "arabic.cnn.com": [2649], "sh.eastday.com": [5010], "dkate.ly": [2024], "live.bilibili.com": [1904], "e4k.tv": [2024], "tripbod.com": [16820], "developers.xsolla.com": [18685], "assets1.enphaseenergy.com": [5271], "ffgs.tocco.ch": [16600], "orderit.stanford.edu": [15448], "www.poole.nhs.uk": [10953], "gmu.edu": [6529], "rpc1.mail.aol.com": [380], "s4.ssl.qhimg.com": [13347], "faca.mp": [2024], "iis.net": [7745], "www.events.ch": [5435], "buttercoin.com": [2479], "www.asteriskexchange.com": [1323], "rpt.anchorfree.net": [1037], "gartner.com": [6442], "gottman.com": [6841], "chase.leeds.ac.uk": [17403], "m.pizza.de": [12783], "kp.blog.br": [2024], "www.eindbazen.net": [5113], "mail2.pipni.cz": [12287], "mrgood.co": [2024], "www.nordicsemi.com": [11514], "tpbpro.xyz": [21524], "community.wwe.com": [18027], "beta.counterpath.com": [19697], "cf3.100r.org": [12], "eatno.sh": [2024], "www.govoritmoskva.ru": [20298], "identity.atechmedia.com": [428], "broadinstitute.org": [2364], "facepic.qidian.com": [13349], "www.nottingham.ac.uk": [11567], "sociedad.elpais.com": [5126], "www.linuxplumbersconf.org": [9411], "www.desktopsummit.org": [4380], "ars.usda.gov": [17299], "rightsmanager.fb.com": [5687], "jdj.jd.com": [8436], "extranet.nic.fr": [340], "auto.ngs.ru": [21134], "secureffs.capwiz.com": [2838], "cleg.al": [2024], "bit.therua.net": [2024], "my.ayo.co": [2024], "www.locationsmart.com": [20867], "www.nssc.nasa.gov": [10909], "blog.bitsighttech.com": [1973], "gemp.re": [2024], "packages.frugalware.org": [6213], "loopliving.wustl.edu": [18089], "ufhlhja8wisek9sjdyej2bz8j61jyc9bah2960sp.ipleak.net": [20571], "akamai.mathtag.com": [10083], "www.kryptologika.com": [9031], "*.aiasurety.com": [346], "praktica.de": [14421], "es.m.xhamster.com": [18606], "secure.legolanddiscoverycentre.co.uk": [9249], "sycm.1688.com": [51], "drft.tips": [2024], "almeshkat.net": [19158], "eurowin.gs": [2024], "to.roseanna.fr": [2024], "www2.olx.com.br": [11668], "notesplace.wustl.edu": [18089], "x.cilf.cz": [2024], "sgr.guru": [2024], "on.norvine.com": [2024], "go.mount.xxx": [2024], "hsconv.com": [2024], "kdoma.klops.ru": [20735], "gradadmissions.osu.edu": [11797], "ooda.co": [2024], "build.tizen.org": [16580], "www.searchcommander.com": [14505], "esb.ie": [4944], "webmail.variomedia.de": [17658], "j3n.us": [2024], "cdown.me": [2024], "888.qq.com": [13328], "wmg.li": [2024], "endymion.stalkr.net": [15437], "redvase.bravenet.com": [2313], "mail.boum.org": [2261], "donate.epilepsyresearch.org.uk": [20008], "lft.life": [2024], "ident.indapass.hu": [8055], "rog42.tv": [2024], "*.aftenposten.no": [755], "de.gamigo.com": [6426], "brunoavi.la": [2024], "www.behindthename.com": [19348], "forums.manning.com": [20921], "dive.pub": [2024], "docs.freebsd.org": [6097], "www.tildedave.com": [16522], "sotm.xyz": [2024], "sciencenode.org": [14442], "canterbury-consult.objective.co.uk": [21225], "ido.pasportaservo.org": [12457], "property.pub": [2024], "www.altontowers.com": [942], "www.selz.com": [14631], "help.mycanvas.com": [10795], "market.huobi.com": [7628], "sanomakauppa.fi": [21732], "axiaurl.co": [2024], "new-support.drweb.com": [4776], "go.arsempro.com": [2024], "www.tchibo.cz": [16050], "www.thenew10.treasury.gov": [16778], "pre.zohodiscussions.com": [18986], "dfndhlth.com": [2024], "commscope.com": [3475], "rbkc.gov.uk": [21595], "lynk.apload.ch": [2024], "schweissgut.net": [12151], "i.mfcimg.com": [20972], "pharma.st": [2024], "www.tchibo.ch": [16050], "forms.netsuite.com": [11248], "krkr.nl": [2024], "js.washingtonpost.com": [18086], "faq.i3wm.org": [7665], "www.tip4commit.com": [16567], "to.piola.fr": [2024], "career.udacity.com": [17192], "heerenveen.nl": [11172], "www.mesosphere.com": [10314], "www.amnesty.de": [1004], "m.soundcloud.com": [15231], "fr.verbling.com": [17704], "oauth2.axeso5.com": [1500], "youtube.com.sg": [18800], "naqshbandi.org": [11075], "tcbh.oxfordjournals.org": [12222], "businesswire.com": [1818], "tv.khl.ru": [20711], "fitnessmarket.com.au": [5869], "ghoori.co": [2024], "omd.me": [2024], "wintertrex.me": [2024], "openafs.mit.edu": [9763], "*.hideman.net": [7397], "keyworddiscovery.com": [8884], "chuanyan.huxiu.com": [7638], "*.isp.nflxvideo.net": [11269], "i.somethingawful.com": [15200], "mami-kawada.com": [2024], "geekio.co": [2024], "ceop.police.uk": [19549], "account.oneplus.net": [11880], "huxiu.com": [7638], "auth.360buy.com": [147], "bmcchembiol.biomedcentral.com": [1931], "www.divxpress.com": [4569], "www.engineering.illinois.edu": [17346], "hver.it": [2024], "lsy.st": [2024], "dust.to": [2024], "marketing.htwk-leipzig.de": [7596], "touch.daft.ie": [4100], "improvely.com": [8024], "cjoint.net": [79], "f6l.co": [2024], "zh-cn.boardgamearena.com": [2182], "udmurtia.auto.ru": [19276], "git.fr33tux.org": [6070], "*.ur.wvu.edu": [18306], "wiki.hidekisaito.com": [7396], "c2.ewebcart.com": [20044], "poets.org": [12892], "www.how-to-box.com": [7576], "www.southampton.ac.uk": [17364], "freiwilligenportal.wwf.ch": [18028], "trusted.kaspersky.com": [8820], "aristoteliansupp.oxfordjournals.org": [12222], "stat.indikom.ru": [20520], "prsly.me": [2024], "www.ez-web-hosting.com": [4991], "www.shevibe.com": [14753], "www.freerainbowtables.com": [6125], "www.kolabnow.com": [8972], "manage2.cpanel.net": [2667], "schlicht-moebel.de": [21743], "*.indstate.edu": [8071], "akonaladit.rtvs.sk": [13536], "es.boardgamearena.com": [2182], "stamizade.nl": [2024], "www.lazykush.com": [9197], "health.google.com": [6818], "www.bernina-wil.ch": [1827], "38bridges.us": [2024], "files.gscapp.co": [2024], "ruesch.georgetown.edu": [6531], "monitor.returnpath.net": [13891], "path-trail.com": [21356], "*.modcloth.com": [10548], "buf.me": [2024], "atspro.net": [2024], "aus.travel": [2024], "www.sss.ias.edu": [7673], "nizhneudinsk.startsmile.ru": [21980], "whatculture.com": [22574], "docs.centrify.com": [19546], "cordaid.co": [2024], "manything.com": [20924], "coinworker.com": [3401], "app.vssps.visualstudio.com": [17872], "m.hathitrust.org": [7230], "csail.mit.edu": [9763], "suitsupp.ly": [2024], "reporting.sunlightfoundation.com": [15667], "prhty.us": [2024], "forum15.hkgolden.com": [7058], "piol.in": [2024], "secure.nuuvem.com": [11624], "retailhosting.fi": [13881], "searsecommercejobs.com": [14510], "muse.j-26.com": [2024], "scnce.com": [2024], "istella.it": [8395], "vm.baden-wuerttemberg.de": [19302], "www.quantamagazine.org": [13386], "alxb.me": [2024], "www.scottish.parliament.uk": [21349], "classics.georgetown.edu": [6531], "nxtbx.co": [2024], "findmyorder.com": [5825], "secure.healthcheckusa.com": [7254], "www.bluejeans.com": [2153], "www1.saba.com": [21710], "jira.cms.gov": [19630], "2.vegelobby.tw": [2024], "www.hi5.com": [20371], "www.uppsite.com": [17480], "coverforyou.com": [3730], "flavourjournal.biomedcentral.com": [1931], "tbse.me": [2024], "www.hfo-telecom.de": [7041], "dayan.at": [2024], "prodigi.bl.uk": [2358], "www.altquick.co": [922], "lu.taobao.com": [16015], "cm-openwebmail.stanford.edu": [15448], "www.rtsentreprise.ch": [21957], "www.medicinescomplete.com": [10207], "europe.f-secure.com": [5533], "content.aggregateknowledge.com": [770], "secure.ogone.com": [11795], "www.uppmax.uu.se": [17153], "status.inoreader.com": [8158], "startssl.eu": [15472], "2014.cursosvirtuales.uned.es": [17248], "mtevx.com": [2024], "biz.jdpay.com": [8441], "sxsw.is": [2024], "www.mattwilcox.net": [10093], "pub.mims.com": [9756], "j1v.eu": [2024], "syn.gy": [2024], "capitaloneconnect.*": [2830], "financestatic.baidu.com": [1641], "sw-t.ch": [2024], "student.dyc.edu": [4089], "grsecurity.net": [6360], "getinvolved.bucknell.edu": [2406], "www.golfcourseindustry.com": [6807], "docs.unity3d.com": [17310], "alwayslvlup.com": [2024], "www.lesscss.org": [9083], "bandcamp.mu": [1662], "idea.qiwi.com": [13352], "tmobile.nl": [15900], "javascriptkicks.com": [8540], "flynet.by": [20125], "4buy.cf": [2024], "media.tchibo-content.de": [16050], "auto.zr.ru": [22725], "www.gidapp.com": [6310], "images.forbes.com": [5995], "bilder.rtl.de": [13534], "auth.curse.com": [3927], "in-n-out.co": [2024], "support.onelogin.com": [11874], "newsletter.refresher.cz": [13781], "www.konachan.com": [8983], "reutov.tpprf.ru": [22260], "threatpost.ru": [16470], "newplacement.tocco.ch": [16600], "lby.co": [2024], "ibd.georgetown.edu": [6531], "valuecommerce.com": [17630], "s120.cnzz.com": [3328], "ecommons.ucsc.edu": [17390], "itnow.oxfordjournals.org": [12222], "dta.adv.br": [2024], "weilos.co": [2024], "duf.news": [2024], "secure2.convio.net": [3632], "w.ya.ru": [18716], "thefederalistpapers.org": [16351, 16352], "muttscomics.com": [10775], "www.ubank.com.au": [17002], "secure.moneycorp.com": [21013], "technologyconversations.com": [22112], "thepirateproxy.info": [22174], "e6.xhamsterpremiumpass.com": [18607], "epoxate.com": [5315], "www.necessaryandproportionate.net": [11168], "nikosdano.com": [11444], "an.tacoda.net": [378], "de-hr.dict.cc": [4442], "www.heml.is": [7315], "m.zalando.se": [18877], "election.freebsd.org": [6097], "update.lb.delfi.lv": [19800], "cdn.arstechnica.net": [1242], "therapists.psychologytoday.com": [13236], "leanpub.com": [9223], "archlinuxarm.org": [19226], "www.law.ox.ac.uk": [17359], "huntr.me": [2024], "flowtab.com": [5928], "www.bytename.com": [2504], "foxgr.am": [2024], "sme.io": [2024], "l.nebjak.net": [2024], "www.irf.se": [7816], "origami-build.ft.com": [5810], "hhdx.co": [2024], "map.local.ch": [9548], "downloads.gratipay.com": [6882], "info.tangerine.ca": [16008], "voronezh.startsmile.ru": [21980], "sks.jetzt": [2024], "www.applianceshop.eu": [1155], "npscu.ca": [11533], "younited.com": [18810], "strtwi.se": [2024], "assets2.jimstatic.com": [8585], "bhap.ca": [2024], "go.cloudwp.pro": [2024], "www.gwhois.org": [6377], "ssa.tips": [2024], "www.anilist.co": [1063], "forum.yunohost.org": [18841], "contactus.sky.com": [14989], "www.libav.org": [9306], "ideco.ru": [20480], "www.netclean.com": [11225], "box-signup.uillinois.edu": [17034], "cdn.cquotient.com": [19711], "snglrty.co": [2024], "nvd.nist.gov": [11089], "www.derpibooru.org": [4368], "ordermychecks.com": [7199], "goto.blitzd.uk": [2024], "www.missinglinkelectronics.com": [10492], "sctmom.com": [2024], "carli.sl": [2024], "www.hiig.de": [7051], "lk.lantek.ru": [20783], "salonla.la": [2024], "pd2.secure.anthem.com": [19206], "go.pix11.com": [2024], "www.water-challenge.com": [18095], "rpls.news": [2024], "www.foundationbeyondbelief.org": [6057], "tinylogin.busybox.net": [19479], "s3.carltonbale.com": [2866], "su.mtv.it": [2024], "cwe.st": [2024], "qcim.co": [2024], "ram.city": [2024], "www.morningstar.co.uk": [10635], "shisei.do": [2024], "i.v2ex.co": [17549], "cfash.net": [2024], "www.zeltser.com": [18911], "sso.knet.cn": [8757], "rhasm.net": [2024], "*.readersdigest.com": [13676], "www.centrinvest.ru": [2966], "ref.sg": [2024], "www.ianonym.com": [7677], "apps.sf.net": [14167], "www.bugparis.tuxfamily.org": [22319], "www.probank.gr": [6893], "www.inc.com": [8045], "marzi.win": [2024], "www.givedirect.org": [6669], "ussuriisk.europaplus.ru": [20034], "outlook.utsystem.edu": [17370], "malum.at": [2024], "adde.re": [2024], "lens.af": [2024], "*.pega.com": [12560], "www.crocs.com": [3805], "yth.bz": [2024], "p1.hitravel.xyz": [2024], "www.serverpilot.io": [14669], "confirmit.com": [3573], "kcts.tv": [2024], "mydio.me": [2024], "globalnetworkinitiative.org": [6709], "miui.nu": [2024], "static.trustdale.com": [16856], "mail-tester.com": [9887], "go.moraitis.org": [2024], "*.viddler.com": [17769], "wp.secure.me": [14552], "i.pglf.org": [2024], "conditionsurveys.southampton.gov.uk": [15259], "ads2.contentabc.com": [3614], "wwf.ch": [18028], "gpmfg.us": [2024], "hpnt.me": [2024], "i3.iis.net": [7745], "attach4.mobile01.com": [10533], "*.mtgox.com": [10717], "visana.tocco.ch": [16600], "mobile.otpbank.ru": [12165], "aliho.lc": [2024], "www.tribecafilminstitute.org": [16802], "t5s.uk": [2024], "mikul.la": [2024], "infogf.com": [2024], "ugr.ue.ucsc.edu": [17390], "job.ceredigion.gov.uk": [2972], "nonk.it": [2024], "hya.tt": [2024], "lille.indymedia.org": [8090], "4channel.org": [196], "westdevon.gov.uk": [18303], "snapsurveys.com": [21879], "www.2checkout.com": [113], "onlinebanking.becu.org": [1535], "h5n.us": [7028], "estes.pw": [2024], "fitzdonc.cc": [2024], "www.nvidia.com": [11022], "trns.fr": [2024], "wrbb.it": [2024], "community.smartbear.com": [21865], "freepressunlimited.org": [6124], "dizzcloud.com": [4579], "trinity.neooffice.org": [11190], "go.kengold.net": [2024], "harun.me": [2024], "feelsoftly.co": [2024], "act.gp": [2024], "d.me": [3986], "hieber.de": [20373], "eform.southoxon.gov.uk": [21911], "baltijsk.klops.ru": [20735], "binbox.io": [1923], "www.vouchercodes.co.uk": [22502], "sc01.alicdn.com": [853], "wowcss.zamimg.com": [18878], "blog.2k.com": [116], "dev.gogobot.com": [6791], "cbiz.us": [2024], "answers.stanford.edu": [15448], "blog.goeswhere.com": [6788], "ensijaturvakotienliitto-fi.directo.fi": [20000], "wiq.me": [2024], "ph1.sh": [2024], "jstuff.co": [2024], "*.xiti.com": [18660], "lv.com": [9524], "api.openstreetmap.org": [12015], "footprint.osu.edu": [11713], "usblog.kaspersky.com": [8820], "pp.ceneo.pl": [2944], "support.rapida.ru": [13619], "l.ogisz.de": [2024], "millionenklick.gmx.net": [6330], "iphou.se": [2024], "apoteket.se": [1130], "rancher.it": [2024], "*.inmotionhosting.com": [8037], "m.basco.io": [2024], "tunisia.usembassy.gov": [22406], "tribe.ms": [2024], "districtsentinel.com": [4565], "cdn2.campuslabs.com": [2800], "80.93.17.242": [4499], "www.a-3.ru": [258], "id.chef.io": [3061], "goodeg.gs": [2024], "video-download.online": [22462], "jobs.capitalone.com": [2831], "kdzn.ru": [2024], "blyp.me": [2024], "collectdata.education.gov.uk": [19957], "www.hofstra.edu": [7452], "www.mygirlfund.com": [10808], "ohtoday.us": [2024], "tantrum.surf": [2024], "atlas.minecraft.net": [10452], "studentactivities.uchicago.edu": [17334], "moniker.com": [8880], "parabol.canaldigital.no": [2817], "www.printfriendly.com": [13115], "*.passion-radio.com": [12463], "voit.to": [2024], "admin.5min.com": [217], "www.devolo.com": [4413], "packagesearch.zuji.com.hk": [19021], "s.mglg.info": [2024], "test.asi.ru": [19256], "d.udimg.com": [17022], "10wp.de": [2024], "ostra.in": [2024], "queervids.com": [13400], "my.comparethemarket.com": [3513], "www.fronter.com": [20179], "netts.ru": [21114], "url.xodaa.net": [2024], "*.motherjones.com": [10647], "www.riksgalden.se": [13946], "fete.lutte-ouvriere.org": [20894], "pad.eigenlab.org": [19971], "gstatic.com": [6823], "blog.nvisium.com": [11023], "www.devmonk.com": [4412], "d.sam.best": [2024], "healthcheckusa.com": [7254], "rcm-uk.amazon.co.uk": [19170], "check.ledgerscope.com": [9235], "orion.library.usyd.edu.au": [22413], "ycl.pt": [2024], "mountain.lp0.eu": [9648], "oshko.sh": [2024], "www.domeinenrz.nl": [11172], "servers.opennicproject.org": [21277], "checkip.org": [17877], "secure.ar.ikea.com": [7962], "law.moldseo.org": [2024], "www.rizon.net": [13968], "alumni.nottingham.ac.uk": [11567], "vetnadzor.government-nnov.ru": [20295], "visa.qiwi.ru": [13352], "noble.worldcat.org": [18536], "hef.cc": [2024], "r24820173.sync.app.asana.com": [1265], "beachfitbod.com": [2024], "www.icij.org": [7689], "bugs.drweb.com": [4776], "libravatar.org": [9325], "img-comic.pixiv.net": [12778], "www.mudgum.net": [10723], "jump.cvanb.de": [2024], "ebank.spdb.com.cn": [21925], "mslnk.bz": [2024], "coinjar.com": [3397], "it.play-asia.com": [12828], "www.vrr.de": [17954], "c2.xkcd.com": [22652], "startingpage.com": [15476], "d7.danil.sknt.ru": [21851], "immersion.media.mit.edu": [9763], "www.klimaschutzpartner-berlin.de": [8946], "kent.spydus.co.uk": [21952], "301.sh": [2024], "mezhdurechensk.startsmile.ru": [21980], "forums.yabause.org": [18718], "json10.ringrevenue.com": [13949], "www.openuserjs.org": [12022], "www.garant-tv.by": [20202], "ave1.me": [2024], "dsp.io": [4780], "zwijndrecht.nl": [11172], "sv.boardgamearena.com": [2182], "reynir.dk": [13909], "webapp.ftb.ca.gov": [2759], "www.reflexphoto.eu": [13778], "vp4fitness.me": [2024], "sourcemaking.com": [15243], "40.mvd.ru": [21055], "chart.bt": [2024], "notebookitalia.it": [11561], "trashbox.ru": [22279], "partner.skolaonline.cz": [21852], "rss.freifunk.net": [6170], "damtp.cam.ac.uk": [17332], "www.edirectdebit.com": [4895], "tryzen99.com": [16877], "lists.swift.org": [15752], "l.albehery.com": [2024], "realbis.net": [2024], "longdate.pl": [9600], "www.bonadza.com": [2210], "ivi-f72-vcp.cdnvideo.ru": [19536], "www.unicef.fi": [17065], "provocativequestions.nci.nih.gov": [11090], "german.austria.usembassy.gov": [22406], "img.createsend1.com": [3770], "www.yaupspe.com": [5216], "w.thangsapp.com": [2024], "baitiao.jd.com": [8436], "webstaurantstore.com": [18250], "www.bayproxy.date": [21524], "paycheckrecords.com": [12505], "via.juthilo.com": [2024], "www.calyx.net": [2775], "redplum.com": [13723], "asset.vegasinc.com": [17678], "na.doski.uz": [2024], "en.aravot.am": [19225], "adocean.delfi.lv": [19800], "uac.advertising.com": [713], "www.smava.de": [21869], "git.vinilox.eu": [17809], "u15404278.onlinehome-server.com": [5400], "ww147.smartadserver.com": [15049], "africanstudies.georgetown.edu": [6531], "www.secureprosoftware.com": [14557], "son.gd": [2024], "aetv.us": [2024], "www.axelname.ru": [1498], "www.ceasefiremagazine.co.uk": [2934], "tilt.com": [16524], "extcss.kaspersky.com": [8820], "motherlessmedia.com": [10649], "www.gsl-co2.com": [6366], "www.hdsa.org": [7037], "mmsut.sledcom.ru": [21858], "www.freelansim.ru": [6156], "ktri.ps": [2024], "bulbman.com": [2428], "mag.sapo.pt": [14131], "zhichang.qidian.com": [13349], "track.effiliation.com": [5099], "unmitigatedrisk.com": [17446], "jjshow.me": [2024], "resizing.flixster.com": [5913], "www.tierra.net": [16510], "ppcw.osu.edu": [11713], "email.fbk.info": [5691], "rick.890m.com": [2024], "www.giving.jhu.edu": [16370], "aps.hdfcbank.com": [7249], "zum.as": [2024], "staging.gitlab.com": [6658], "cqrcengage.com": [2668], "co.nnex.in": [2024], "knowingly.com": [20743], "ayzw.me": [2024], "creative.adform.com": [639], "chat.study.163.com": [49], "rphar.ms": [2024], "*.sc.omtrdc.net": [11844], "cfm.nom.co": [2024], "connect.wku.edu": [22602], "parking.nic.ru": [11419], "virustotal.com": [17842], "jaball.us": [2024], "thepiratebay.gl": [22175], "nmbl.osu.edu": [11797], "support.shazam.com": [14750], "www.techpinions.com": [16113], "luvbl.fr": [2024], "elaring.dfo.no": [19824], "leaders.nwf.org": [11126], "lajor.mx": [2024], "www.subsignal.org": [15630], "antpool.com": [1108], "www.touchandtravel.de": [16683], "mufin.com": [10726], "video25.0xdb.org": [10], "rescope.me": [2024], "www.studiengangstest.de": [16239], "www.hu.liu.se": [9097], "www.creativity-online.com": [3756], "autodiscover.estates.leeds.ac.uk": [17403], "thepbproxy.pw": [22174], "stbo.us": [2024], "craftsy.me": [2024], "www.ethlife.ethz.ch": [4966], "6gwc-kbhkort.kk.dk": [8748], "manage.smartadserver.com": [15049], "www.zwame.pt": [19025], "www.guardianescapes.com": [6984], "it.williams.edu": [18408], "www.nanorep.com": [11071], "go.najbo.ch": [2024], "pbridge.heifer.org": [7283], "go.eti.eu.com": [2024], "meet.here.com": [7325], "onioncat.org": [11899], "net-a-porter.com": [11210], "aquagear.com": [1175], "orgcns.org": [2024], "secure3.vend-o.com": [17695], "chat.online.citi.com": [3171], "holidayextras.co.uk": [7459], "www.chrysalisventures.com": [3130], "eager.io": [4995], "gldwll.co": [2024], "bit2c.co.il": [1951], "openfoo.org": [21273], "lu.norton.com": [11545], "d.asset.soup.io": [15235], "blog.obdev.at": [11732], "www.arneswinnen.net": [19235], "d.olibenu.com": [2024], "exportawards.gov.au": [1416], "www.holidaybreak.co.uk": [7461], "online.norfolk.gov.uk": [21154], "assets.acs.org": [974], "btctrader.com": [1586], "deutsche-rentenversicherung-bund.de": [4394], "www.montpelerin.org": [21016], "*.startssl.com": [15472], "asa.org.uk": [19245], "icrav.it": [2024], "theworkdept.com": [16396], "darthotr.com": [2024], "physiol.gy": [2024], "www.legislationsurveys.com": [9246], "www.scandinavianphoto.se": [14394], "skept.net": [2024], "sbcom.ms": [2024], "pdfcrowd.com": [12532], "onebillion.org.uk": [11891], "community.manageengine.com": [9951], "workshops.350.org": [140], "staging.nsidc.org": [11100], "mdho.me": [2024], "www1.plymouth.ac.uk": [12873], "mastr.tech": [2024], "fullshow.esy.es": [2024], "superuser.com": [15424], "milobit.lugons.org": [9121], "www.scepsis.ru": [14407], "sbjsbd.biz": [2024], "www.gatorchrysler.net": [4244], "thompsonhotels.com": [16452, 16453], "*.vueling.com": [17964], "jfeds.org": [2024], "shibb-idp.georgetown.edu": [6531], "tomsk.europaplus.ru": [20034], "www.ponychat.net": [12943], "hccf.support": [2024], "www.ip3.htwk-leipzig.de": [7596], "orear.ws": [2024], "www.vidyard.com": [17792], "outw.mobi": [2024], "coupons.com": [3711], "quadpoint.org": [13371], "cdn3.micasa.ch": [10370], "pfiff.us": [2024], "www.charter.net": [3027], "plutof.ut.ee": [17148], "spinlab.osu.edu": [11797], "osso.uvt.nl": [16521], "maldon.firmstep.com": [20109], "bill.aironetsp.ru": [19124], "oakpt.org": [2024], "devon-cornwall.police.uk": [4416], "thetruthaboutguns.com": [22191], "blogs.kde.org": [8735], "jopd.co": [2024], "braski.co": [2024], "emso.bristol.gov.uk": [19451], "verkkouutiset.fi": [17719], "bdisgusting.com": [2024], "sixxs.net": [14957], "feedback.hootsuite.com": [7497], "html-online.com": [20438], "l.marganian.com": [2024], "webservices.iciciprulife.com": [7917], "testvpn.ambest.com": [369], "spkcn.com": [15349], "telenor.se": [16158], "entrpy.co": [2024], "minec.astrobl.ru": [19264], "menseninnood.nu": [2024], "www.libregraphicsworld.org": [9331], "photos-b.ak.fbcdn.net": [5689], "www.webftp.admin.ch": [22061], "labcorp.com": [9139], "a8s.co": [2024], "www.merton.gov.uk": [10311], "hush.com": [7636], "michel.in": [2024], "responsibleflying.ba.com": [1513], "zapadnayadivna.startsmile.ru": [21980], "mail.lansp.ru": [20781], "ns.adobe.com": [669], "finna.fi": [5835], "prvt.to": [2024], "pics.filmaffinity.com": [20095], "fworks.link": [2024], "letenky.etrend.sk": [5383], "l.e-societe.com": [2024], "birthdayinabox.com": [1944], "gdata.es": [6272], "preemie.us": [2024], "d.ivancevic.nl": [2024], "admin.ufl.edu": [17340], "virtualglobaltaskforce.com": [22469], "shop.flixbus.se": [5911], "statse.webtrendslive.com": [18265], "l1veh3re.tk": [2024], "pbttbc.bt.motive.com": [21025], "worlddr.us": [2024], "fortune.yahoo.co.jp": [18730], "mercksafebychoice.axonify.com": [1502], "ciw.me": [2024], "kyjo.style": [2024], "78.rkn.gov.ru": [13971], "link.wnep.com": [2024], "mwmbilling.com": [2024], "nlg.org": [10976], "lespaceclient.fr": [9084], "npa4.me": [2024], "pcsupport.lenovo.com": [9265], "www.backloggery.com": [1623], "yesile.co": [2024], "learning.internetessentials.com": [20553], "cc.fp.ps.netease.com": [11228], "t.boyabunda.net": [2024], "*.tutor.com": [16924], "www.ice.gov": [17102], "www.golucid.co": [6775], "mackeeper.com": [9834], "dukefuqua.biz": [2024], "readthenburn.com": [13672], "zabbix.com": [18868], "cphvpn.unicef.org": [17069], "securitykiss.com": [14584], "teamra.ch": [2024], "clock.yandex.by": [18739], "s26.postimg.io": [13024], "www2.gotoassist.com": [6768], "nagios2.ulpgc.es": [17213], "charlesm.us": [2024], "storify.com": [15564], "secure.newegg.com": [11356], "further.co.uk": [6249], "mbs.eu": [2024], "links.adbka.com": [2024], "web2.securitymetrics.com": [14585], "www.theads.me": [16401], "pkvrtx.com": [2024], "bookcurl.haxx.se": [20348], "pubster.twitch.tv": [16961], "www.hsbc.co.in": [20419], "radioalmere.nl": [2024], "dataspace.pl": [4178], "alinw.alicdn.com": [853], "fuar5.beget.com": [19347], "report.meituan.com": [10248], "data.abuledu.org": [19044], "recrutamento.cgd.pt": [2984], "iaddict.co": [2024], "branham.tk": [2024], "pictures.aircrack-ng.org": [794], "ticket-ituat.courierpost.co.nz": [3714], "homepage.newsblur.com": [11366], "m.ntd.tv": [2024], "smu.gs": [2024], "www.mochajs.org": [10545], "pix4.me": [2024], "autodiscover.dfs.un.org": [17057], "dev.socrata.com": [15149], "partner.arbornetworks.com": [1185], "frc.tl": [2024], "owlverkehr.de": [12212], "allepizza.ru": [19147], "kr.usembassy.gov": [22406], "aws-portal.amazon.com": [963], "glasgowconsult.co.uk": [20257], "blog.mariadb.org": [9996], "l.sword-int.com": [2024], "test.bvg.de": [1605], "tv.adobe.com": [669], "consult.eastriding.gov.uk": [5006], "www.youngrewiredstate.org": [18809], "s16.postimg.org": [13024], "www.gsmhosting.com": [6972], "sms.e-paycapita.com": [19919], "static.legalsolutions.thomsonreuters.com": [16456], "www.theswirlworld.com": [1330], "yopto.com": [18786], "nl.sitestat.com": [14952], "m.huobi.com": [7628], "patrolo.gy": [2024], "i.psky.no": [2024], "wiki.gephi.org": [6536], "amma.do": [2024], "myi.es": [2024], "library.weill.cornell.edu": [3676], "s.datacore.com": [2024], "todo.x2go.org": [18589], "instantchat.io": [8185], "jess.buzz": [2024], "cetic.be": [2599], "baoxian.163.com": [50], "www.avv.de": [1485], "www.hoeringsportalen.dk": [7451], "p3a.pstatp.com": [16680], "sos.state.co.us": [3444], "dragonsreach.it": [4737], "jamie.cc": [2024], "recet.in": [2024], "tilburguniversity.nl": [16521], "research.faq.rakuten.co.jp": [13594], "www.115.com": [28], "yakutsk.europaplus.ru": [20034], "wishmich.org": [9915], "viguer.info": [2024], "shft.ws": [2024], "cwd.es": [2024], "bookfusion.com": [19425], "t4us.org": [2024], "go.cq-p.com": [2024], "rrs.co": [2024], "www.acorns.com": [531], "blog.ipredator.se": [7808], "lenovo.com": [9267], "cliente.meo.pt": [10286], "osmc.jp": [2024], "edsurge.com": [19956], "krl.tc": [2024], "vanillaforums.com": [17648], "silentsender.com": [14849], "kugler.ninja": [2024], "wkle.in": [2024], "interworx.com": [8232], "www.balkanleaks.eu": [1651], "www.complex-systems.com": [3528], "msm.ag": [2024], "prppr.com": [2024], "*.t.domdex.com": [4661], "al.sharq.cf": [2024], "l.aliexpress.io": [2024], "m.yandex.kz": [18743], "forum.xakep.ru": [18628], "*.ecoscentric.com": [4878], "blckc.hn": [2024], "mtsensk.beeline.ru": [1778], "mirt.net": [10486], "s.felem.com": [2024], "easydns.com": [5016], "www.aclutx.org": [309], "aising.ca": [2024], "m.transport.imhd.sk": [8004], "cdnk.osalt.com": [21295], "russian.alibaba.com": [857], "thestandnews.com": [16315], "bradford.gov.uk": [2282], "rdbe.fr": [2024], "gresille.org": [6927], "tota.ly": [2024], "drnk.ly": [2024], "www.webink.com": [18165], "supercard.ch": [3647], "www.ispserver.ru": [20589], "apps.wscu.com": [18314], "tmpwebeng.com": [15896], "recruiting.jobcorps.gov": [20645], "r24820162.sync.app.asana.com": [1265], "webindicator.siteheart.com": [14933], "sndnc.tv": [2024], "i.max-stone.jp": [2024], "www-s.ks.uiuc.edu": [17030], "lianjiang.jd.com": [8434], "*.alternate-b2b.nl": [929], "jp.cointelgraph.com": [19644], "5min.com": [217], "b97.yahoo.co.jp": [18730], "www.cloudshark.org": [19626], "rsdo.gsfc.nasa.gov": [10909], "trantor.stalkr.net": [15437], "www.petstore.com": [12632], "wspnt.co": [2024], "r3.res.outlook.com": [12185], "b.poulin.fr": [2024], "forum.feathercoin.com": [5694], "8sha.re": [2024], "paypal-forward.com": [12501], "hrreview.uk": [2024], "mycouncil.oxfordshire.gov.uk": [21327], "ripper.us": [2024], "kurs.expert": [20764], "s.derz.co": [2024], "dds.studentdoctor.net": [15603], "itcar.co": [2024], "kisa.tk": [2024], "di.gulamo.com": [2024], "sl.3.boardgamearena.com": [2182], "i.bartar.com": [2024], "img3.picload.org": [12693], "twb.im": [2024], "accounts.havant.gov.uk": [20347], "obdev.at": [11732], "crbr.co": [2024], "lantea.kairo.at": [8782], "delivery.gettyimages.com": [6604], "fctp.pro": [2024], "www.6wunderkinder.com": [223], "www.goubiquiti.com": [6779], "postaffiliatepro.com": [13001], "o.evandro.co": [2024], "s.chbtc.com": [3041], "workatcase.com": [2024], "cdn2.spectator.co.uk": [21928], "www.hsbc.com.bh": [20425], "boutique.l214.com": [20767], "colorofchange.org": [3439], "on.boeff.de": [2024], "*.mtac.org": [9813], "hls.dianping.com": [19830], "antizapret.info": [1107], "zdravezdravotnictvo.etrend.sk": [5383], "tynda.startsmile.ru": [21980], "www.nationalcareersservice.direct.gov.uk": [4519], "r24616968.sync.app.asana.com": [1265], "workbench.connextra.com": [3588], "www.developers.elsevier.com": [5177], "v1click.bystrobank.ru": [2500], "voronezh.tpprf.ru": [22260], "my2.ukfast.co.uk": [17043], "stck.so": [2024], "enlightenment-themes.org": [19999], "www.kinox.ag": [20720], "news.sqcp.com": [2024], "mtafcle.com": [2024], "www.vauva.fi": [22431], "forum.peppermintos.com": [21386], "webmail06.register.com": [13793], "civitas.ru": [19603], "hcsm.me": [2024], "raulfp.info": [2024], "cnrsweetdeals.newsreview.com": [11380], "simplewebrtc.com": [21832], "www.urlparser.com": [17096], "allinvestments.ru": [19152], "www.lensrentals.com": [9269], "goto.akdira.com": [2024], "www.conservatives.com": [3592], "ad.afy11.net": [643], "a4e.me": [2024], "pirateproxy.club": [21522], "support.fortinet.com": [6033], "gls.de": [6320], "www.complinet.com": [19659], "i24.us": [2024], "www.chipin.com": [3089], "www.bluez.org": [2152], "l.kreuzer-bb.de": [2024], "www.vendorportal.ecms.va.gov": [17100], "mfw.baden-wuerttemberg.de": [19302], "crowdjustice.co.uk": [3819], "stage-api.autoscout24.ch": [1457], "l.myszka.us": [2024], "gmat.economist.com": [5052], "cheeseshop.python.org": [13314], "variety.com": [17656], "a.lscdn.net": [9115], "rufus.akeo.ie": [14081], "linuxfound.info": [9426], "staging-charts.ycharts.com": [18704], "oakmil.info": [2024], "touch.meetme.com": [10224], "www.alkasir.com": [869], "*.internationalsos.com": [8266], "marinsm.com": [10003], "xamarin.com": [18629], "w.nicnac.net.au": [2024], "cf5.100r.org": [12], "planning.westlothian.gov.uk": [22571], "bloombg.org": [2024], "m.asuka.jp": [2024], "www.stevesie.com": [15539], "xpr.li": [2024], "ent.u-bordeaux.fr": [16990], "web.adblade.com": [615], "dng.link": [2024], "regrow.xyz": [2024], "gktr.pl": [2024], "hr.kfc.ru": [20707], "saga.co.uk": [14298], "gpipk.in": [2024], "businessnews.com.au": [19478], "hardforum.com": [20343], "www.lib.umd.edu": [17351], "status.namecheap.com": [11060], "jtip.co": [2024], "cdes.oebb.at": [21230], "revealnews.org": [13898], "rectpweb.admin.uillinois.edu": [17034], "images4et.com": [20500], "applyku.com": [2024], "il.boell.org": [19422], "www.partnernetprogram.com": [12452], "hub.olympic.org": [21241], "finn.no": [5833], "go.takeshi.cc": [2024], "a.meltycasa.com": [2024], "efochesa.com": [2024], "cryptabyte.com": [3838], "visitor-service.tealiumiq.com": [16060], "www.appolicious.com": [1161], "c360.io": [2024], "neighbourhoodlink.co.uk": [21101], "bike24.de": [1899], "mir.inl.gov": [20537], "jeann.es": [2024], "pccapply.com": [2024], "www.belive.ru": [19351], "www.sitola.cz": [14954], "*.r-kom.de": [13445], "api-uat.dwolla.com": [4809], "secure.test.tibia.com": [22203], "portal.cachefly.com": [2723], "gourmetgiftbaskets.com": [6842], "connect.internetsociety.org": [8273], "wwwww.play-asia.com": [12828], "catnrvn.co": [2024], "code.org": [3343], "c.t2o.es": [2024], "wipmania.com": [18003], "peiwo-download.bjcnc.scs.sohucs.com": [15173], "nmbr.fr": [2024], "busmag.mu": [2024], "www.webropolsurveys.com": [18234], "frztag.me": [2024], "ordos.jd.com": [8434], "zemanta.com": [18912], "alanreed.org": [19130], "services.maidstone.gov.uk": [9885], "rvw.church": [2024], "www.logisztika.bme.hu": [1556], "liveonline.gq": [2024], "paloaltou.org": [2024], "portal.polyu.edu.hk": [12936], "danmk.com": [2024], "1one.click": [2024], "status.parse.com": [12445], "www.topspb.tv": [22239], "app.mailerlite.com": [9897], "codeofconduct.wustl.edu": [18089], "digitalhands.tk": [2024], "findlegalforms.com": [5822], "extra.cr": [2024], "maryno.net": [20928], "joueravecletemps.cff.ch": [15756], "cdn3.optimizely.com": [12107], "motly.us": [2024], "go.jeannie.io": [2024], "www.redbubble.com": [13721], "*.wpvulndb.com": [18017], "valever.de": [2024], "www.finalist.nl": [20098], "l2.hitravel.xyz": [2024], "thepiratebay.org": [16306], "jining.jd.com": [8434], "dnoid.me": [19807], "shop.flixbus.nl": [5911], "www.kolab.org": [8970], "my.astaro.com": [1321], "washpostco.com": [18085], "fpdbs.paypal.com": [12500], "8.jd.com": [8436], "xxxhubba.com": [22661], "jgrn.us": [2024], "newyorkvocalcoaching.com": [11341], "www.geektechlabs.com": [6482], "carlospuech.org": [2024], "santoku-linux.com": [14356], "static.commando.io": [3478], "hoiio.co": [2024], "fnlst.co": [2024], "osm.lp0.eu": [9648], "afiliados.amazon.com.mx": [19173], "2.jddean.com": [2024], "shibboleth.net": [14763], "fwd.sh": [2024], "swoo.me": [2024], "jellynote.com": [8564], "blssd.link": [2024], "imva.in": [2024], "s4a.pw": [2024], "fingrad.sovcombank.ru": [21914], "legacy.vg": [9243], "promotion.aliyun.com": [868], "xo.pe": [2024], "www.waarschuwingsdienst.nl": [11172], "mankier.com": [9967], "biallo.de": [1867], "my.axelname.ru": [1498], "symbol.yr.no": [22699], "sp.velaro.com": [17684], "growingio.com": [20312], "gsc.mit.edu": [9763], "www.dmsguild.com": [11867], "voguefr.fr": [2024], "tds.gs": [2024], "forum.ovh.com": [12205], "pushpopcorn.com": [13294], "steveb.me": [2024], "s31.postimage.org": [13024], "sppd.state.gov": [17146], "dgl.li": [2024], "webmail05.un.org": [17057], "beta.mail.bg": [9889], "www.diapers.com": [19831], "www.cabinetoffice.gov.uk": [2716], "*.rollcall.com": [14010], "www.ukbusiness.hsbc.com": [7090], "www.walthers.com": [18062], "www.micropartsusa.com": [10391], "admin.mobile.de": [21001], "s.najlabs.com": [2024], "passport.alibaba.com": [857], "sarah.williams.edu": [18408], "www.tmdb.org": [15894], "punchout.digikey.com": [4457], "edin.ac": [2024], "getitviral.in": [2024], "a0.io": [2024], "www.mdws.coastcapitalsavings.com": [3335], "*.portlandmercury.com": [12984], "becu.org": [1535], "grmp.li": [2024], "z.wandr.me": [2024], "products.mercola.com": [20965], "cdn0.vox-cdn.com": [17939], "inotv.rt.com": [13528], "www.giffgaff.com": [20243], "nevillholtopera.net": [11326], "29.rkn.gov.ru": [13971], "bethesignal.org": [1847], "www.data-informed.com": [4185], "www.bme.hu": [1556], "thanku.att.com": [2024], "310ei.xyz": [2024], "www.yaler.net": [18733], "www.bitcoinarmory.com": [2002], "*.utdallas.edu": [17373], "medr.me": [2024], "www2.per.cuhk.edu.hk": [2704], "globalpromote.com": [6712], "*.datacenterknowledge.com": [4170], "dnglr.de": [2024], "www.couchsurfing.org": [19696], "aesewi.ng": [2024], "on.scava.be": [2024], "crondash.com": [19722], "tlok.us": [2024], "celebda.ch": [2024], "www.limesurvey.org": [9372], "bogtv.im": [2024], "account.cyngn.com": [3974], "go.mdk.mx": [2024], "youtube.com.co": [18800], "www.posti.fi": [21470], "store.laughingsquid.com": [20786], "editorial02.newsnetz.ch": [11371], "ivotts.readspeaker.com": [13670], "sunsport.stanford.edu": [15448], "iup-qihoo360.cdnvideo.ru": [19536], "sediarreda.com": [21770], "normer.uio.no": [17414], "tarifnso2.nso.ru": [21192], "comic.youku.com": [18804], "kuban.tpprf.ru": [22260], "david-dm.org": [19771], "ajrnz.info": [2024], "info.dwyr.com": [2024], "www6.smartadserver.com": [15049], "ehel.me": [2024], "navam.in": [2024], "subnet05.ru": [22023], "minecraft.cdnvideo.ru": [19536], "cfcb.me": [2024], "cpib.ac.uk": [2659], "codereview.chromium.org": [3124], "sact.atdmt.com": [10393], "lsi.science": [2024], "abas.co": [2024], "pbp.rocks": [21522], "mbsy.co": [10125], "builds.cyngn.com": [3974], "www.work4labs.com": [18527], "fine.pe": [2024], "motorsports.osu.edu": [11797], "zena.centrum.sk": [19548], "chris-lamb.co.uk": [3107], "joycasino13.com": [20654], "markj.co": [2024], "engineering.jhu.edu": [16370], "hulu.ly": [2024], "www.computerworld.ch": [3544], "centrify.com": [19546], "woodm.ag": [2024], "up.com": [22384], "gitian.org": [6663], "www.crunchboard.com": [3831], "wjns.co": [2024], "ec-media.sndcdn.com": [15096], "karlexwatch.com": [2024], "dealzon.com": [4014], "c9.nrostatic.com": [21189], "fourdo.com": [189], "aplicaciones.ulpgc.es": [17213], "nycw.co": [2024], "vorstand.entropia.de": [20004], "pc.tedcdn.com": [15871], "smggo.com": [2024], "auth.xda-developers.com": [18598], "image-proxy-origin.twimg.com": [16949], "conf.un.org": [17057], "intranet.irisa.fr": [7818], "*.foodl.org": [5981], "s.mcknote.com": [2024], "insurance.wustl.edu": [18089], "www.voices.com": [17911], "member.impactradius.com": [8015], "d11g.ms": [2024], "gftz.co": [2024], "*.dmu.ac.uk": [4038], "s.apadv.co": [2024], "gks.rocks": [2024], "fck.me": [2024], "jae.oxfordjournals.org": [12222], "www.mvps.org": [9822], "bison.inl.gov": [20537], "r.icetravel.xyz": [2024], "secure.qfxsoftware.com": [13325], "get.popcorntime.sh": [21461], "tpspd.co": [2024], "my.upc.cz": [17081], "packetflagon.is": [21333], "s.180dc.org": [2024], "short.roiup.es": [2024], "banan.cz": [1514], "www.searchmarketingnow.com": [16441], "www.jtreminio.com": [20664], "dev.greencubes.org": [20306], "fran.bz": [2024], "schoolmeals.warrington.gov.uk": [18079], "www.lh.co.th": [9298], "minjust.nso.ru": [21192], "sarov.startsmile.ru": [21980], "charmd.me": [2024], "l.scholz.net": [2024], "elvtn.co": [2024], "bkgrts.xyz": [2024], "orui.mvd.ru": [21055], "ono.im": [2024], "behavioralandbrainfunctions.biomedcentral.com": [1931], "www.dolphin.com": [19868], "www.vovici.com": [17938], "verkhnee-dubrovo.beeline.ru": [1778], "matchtv.ru": [20932], "hr.uic.edu": [17321], "go.sirsidynix.com": [21837, 21838], "gymnut.biz": [2024], "iwantmyname.com": [20614], "img3.wlresources.com": [22604], "ipzl.co": [2024], "nwg.so": [2024], "media.soundcloud.com": [15231], "qub.ac.uk": [13398], "chukotka.rt.ru": [13529], "a.jean-paul.biz": [2024], "www.kollegorna.se": [8975], "www.slon.ru": [15034], "www.cce.com": [2881], "keycard.ninja": [2024], "www.hosokawa-alpine.com": [7507], "www.xyratex.com": [18700], "api.codacy.com": [19634], "s.ruteway.com": [2024], "wiki.projectdev.org": [21511], "cdn.ideastations.org.s3.amazonaws.com": [7929], "webmail.sk": [15742], "www.prettyincash.com": [13086], "goto.nuola.de": [2024], "static.huobi.com": [7628], "dri.freedesktop.org": [6102], "slac.stanford.edu": [15448], "ar.squat.net": [21955], "www.flypeach.com": [20126], "architect.49gov.ru": [187], "youtube.com": [18800], "scontent.igcdn.com": [7953], "www.jayisgames.com": [8547], "go.sentinel.org": [2024], "client.smarthead.ru": [21867], "manosphere.me": [2024], "ltar.nal.usda.gov": [17299], "hollywoodfund.justgive.org": [8709], "www.nos.pt": [11552], "helpsu.stanford.edu": [15448], "woodtreeswing.com": [18509], "y.oryza.asia": [2024], "antigu.ru": [2024], "pad3.qdaily.com": [21554], "store.ccccloud.com": [2554], "www.gidforums.com": [6311], "blog.kissmetrics.com": [8745], "chile.usembassy.gov": [22406], "share.state.gov": [17146], "*.wooga.com": [18510], "m.dutch.alibaba.com": [857], "zv.imhd.sk": [8004], "mb.severgazbank.ru": [14697], "beta.pubpeer.com": [13245], "3c.taobao.com": [16015], "cluster.alibaba.com": [857], "mhoff.co": [2024], "sbi.sberbank.ru": [14383], "feedbra.in": [2024], "linuxfoundation.org": [9427], "bioamy.me": [2024], "nu.hackn.us": [2024], "*.mybigcommerce.com": [1881], "sso.oxforddictionaries.com": [12223], "telehealthcare.holyrood.com": [20393], "kundencenter.web.de": [18146], "trifi.ro": [2024], "in.effectivemeasure.net": [5096], "www.linuxdistrocommunity.com": [9436], "staging.amazonsupply.com": [961], "www.litmus.com": [9483], "check24.de": [3049], "ovr.khabkrai.ru": [20709], "nrelate.com": [11585], "www.vulnhub.com": [17965], "dotcounter.douyucdn.cn": [4712], "rusty.ozlabs.org": [12228], "ongo.uk": [2024], "www.djangogirls.org": [4582], "medmark.link": [2024], "ergo.zone": [2024], "keystone.cern.ch": [2588], "images.e.switchadhub.com": [15764], "m.dell.com": [4317], "go.irwin.ws": [2024], "blog.maxmind.com": [10109], "sof.me": [2024], "montgomery.play-asia.com": [12828], "www.nearlyfreespeech.net": [11162], "s-eu.btstatic.com": [1603], "www.youtube.com.gr": [18800], "superyard4.info": [2024], "varrs.co": [2024], "www.wyndhamjobs.com": [18578], "www.uowdubai.ac.ae": [17434], "www.360yield.com": [146], "ajn.mx": [2024], "cldp.ly": [2024], "5mc.me": [2024], "tree.taiga.io": [15976], "fm.bnr.nl": [2024], "www.thestar.com": [16646], "cimbclicks.in.th": [2620], "novgorodskaya-obl.beeline.ru": [1778], "kpny.cc": [2024], "s3-ak.buzzfeed.com": [2489], "ctovision.com": [2700], "academy.oracle.com": [12116], "bbs.es.gy": [5342], "psychcentral.com": [21531], "gnome-look.org": [6742], "static.spiceworksstatic.com": [15339], "sinacloud.com": [14908], "citizen.ac": [2024], "9.*.wdfiles.com": [18387], "rimg02.rl0.ru": [13972], "www.directbox.ch": [4517], "www.filmlinc.com": [5793], "gabi.tips": [2024], "rosevrobank.ru": [14024], "t0.com": [15842], "ptls.us": [2024], "www.youtube.com.gh": [18800], "postmaster.hotmail.com": [7565], "kettering.gov.uk": [8877], "www.adpselect.com": [328], "444.hu": [183], "billing.airbites.net.ua": [19120], "hostcreo.com": [7509], "sthmb.in": [2024], "api.geekzone.co.nz": [6491], "www.sverigesradio.se": [15738], "netlock.hu": [11236], "setcronjob.com": [21791], "w.ftbp.ro": [2024], "smrtr.co": [2024], "cyphar.com": [3975], "links.andyb.org": [2024], "www.art2po.com": [1245], "clients.auto.ru": [19276], "jcb.bz": [2024], "www.fullstackpython.com": [20186], "www.adoption.state.gov": [17146], "www.uclan.ac.uk": [17392], "tracking.testfabrik.com": [22130], "cdn.lfrs.sl": [9297], "thepiratebay.unblocked.faith": [21524], "hpme.co": [2024], "rca.lu": [2024], "1tw.org": [2024], "a.sharsidd.com": [2024], "flamingspork.com": [5881], "fltsim.me": [2024], "www.berliner-energietisch.net": [1822], "dplaw.info": [2024], "opics.co": [2024], "stayfriends.de": [15510], "video.khl.ru": [20711], "portale-sisinfo.infn.it": [7771], "blog.awe.sm": [1486], "suggest.search.sky.com": [14989], "amwu.as": [2024], "niche.com.au": [21136], "customerservice.aldi.co.uk": [357], "propertylicensing.walthamforest.gov.uk": [18061], "piwik.brandl-services.com": [2304], "www.vumanity.net": [17968], "linds.im": [2024], "endesa.pt": [5236], "mobilemail.secureserver.net": [14574], "smartone.de": [21862], "asd.dea.com": [4251], "ptsco.jp": [2024], "*.digg.com": [4456], "www.micropython.org": [10384], "www.kuiken.co": [21522], "legolanddiscoverycentre.co.uk": [9249], "omgwh.at": [2024], "hivelab.academy": [2024], "*.wrapadviser.co.uk": [18563], "2020minds.com": [2024], "www.youtube.com.hr": [18800], "netreg.stanford.edu": [15448], "emdl.osu.edu": [11797], "www.cambridgeshire.net": [19497], "finance.socrata.com": [15149], "www.takevoucher.com": [22090], "ja.mesmoo.re": [2024], "aho.lt": [2024], "womenonweb.org": [18496], "fhk.io": [2024], "www.youtube.com.hk": [18800], "helmich.de": [7302], "googlewww.flightradar24.com": [20119], "crinc.co": [2024], "www.honeynet.org.mx": [20400], "springer.com": [15380], "*.ukr.net": [17208], "my.absolute.com": [487], "www.zugaina.com": [19018], "assets.victorinox.com": [17761], "bh-pkskil.co": [2024], "www.ukxcam.co.uk": [22354], "sah.tocco.ch": [16600], "myb.ug": [2024], "aclu-nj.org": [315], "deptrans.government-nnov.ru": [20295], "f.superfrank.dk": [2024], "admin.1and1.com": [69], "shop.marthastewart.com": [10040], "foxitsoftware.com": [6065], "auth.dtu.dk": [16096], "tdesktop.com": [16053], "www.tagasauris.com": [15971], "commoncrawl.org": [3489], "touch2.groupon.com": [6953], "s.iwanaga.org": [2024], "www.wefightcensorship.org": [18117], "www.showrss.info": [14805], "firstdraft.news": [2024], "rushtix.co": [2024], "analytics.supplyframe.com": [15703], "cryptrader.com": [3837], "www.saturn.de": [21736], "play.vidyard.com": [17792], "dev.deluge-torrent.org": [4321], "ignitiondeck.com": [7955], "www.opinionmeter.com": [12091], "knld.co": [2024], "cspforum.eu": [2690], "maildomain.web.de": [18146], "support.greenqloud.com": [6902], "my.uic.edu": [17321], "printpin.nottingham.ac.uk": [11567], "use-data.adsrvr.org": [688], "www.55chan.org": [211], "enterprisecenter.verizon.com": [17715], "epaper.apps.welt.de": [18290], "dfurn.es": [2024], "go.apkftp.com": [2024], "sprav.yandex.kz": [18743], "tsherfy.us": [2024], "storage.360buyimg.com": [148], "kirov.biglion.ru": [19375], "www.ioke.org": [20560], "www.cereproc.com": [2971], "gju3.alicdn.com": [853], "samhar.uk": [2024], "joesent.me": [2024], "penza.beeline.ru": [1778], "buswk.co": [2024], "*.cufp.org": [2703], "imercer.com": [20502], "go.ec-tool.com": [2024], "*.googlevideo.com": [18800], "data.fm": [4167], "static.popads.net": [12949], "opencart.com": [11963], "speakyoursilence.org": [15304], "jobs.sbb.ch": [15756], "static.zoomerang.com": [19003], "bornhe.re": [2024], "heino-cykler.dk": [7287], "mega.inforos.ru": [20532], "www.rspb.org.uk": [13520], "travl.rs": [2024], "wallet.95516.com": [248], "frshjc.ca": [2024], "ma2jic.engineering.osu.edu": [11797], "ap4a.co": [2024], "myaccount.runnymede.gov.uk": [21694], "buzzdoes.com": [2493], "ardamis.com": [1202], "www.cms.iprsoftware.com": [7800], "gusev.klops.ru": [20735], "www7.lowes.com": [9645], "myvc.us": [2024], "untappd.akamaized.net": [808], "www.springer.com": [15380], "lists.libreswan.org": [9332], "jobs.brassring.com": [19443], "www.dia-grid.org": [4428], "psylin.plymouth.ac.uk": [12873], "www.powervoip.com": [13052], "*.interworx.com": [8232], "rad-r.us": [2024], "isic.info": [2024], "stats.domashka.net": [19873], "wddk.co": [2024], "www.mathworks.com": [10077], "www.sigxcpu.org": [14846], "huntcal.com": [7626], "hdme.biz": [2024], "just-eat.ie": [20671], "dm.ladepeche.fr": [9128], "www.twit.tv": [15957], "urbn.in": [2024], "sgk.mn": [2024], "hrw.org": [7616], "www.tumblr.com": [16898], "culturemass.net": [2024], "merchant.unionpay.com": [17281], "rochdale.greenparty.org.uk": [6908], "*.overlakehospital.org": [12198], "clickb.us": [2024], "www.immunicity.org": [8010], "origin.www.virginmedia.ie": [17823], "tup.ly": [2024], "b.ali-najafi.ir": [2024], "mbist.ro": [2024], "customers.gfi.com": [6303], "tuc.org.uk": [22304], "ln.wg211.uk": [2024], "*.bcf.ch": [20683], "moodlerooms.com": [21017], "account.soku.com": [21893], "ads.ibtracking.com": [7904], "platzr.it": [2024], "www.tecnologia.elpais.com": [5126], "www.illiad.wustl.edu": [18089], "infoinf.ml": [2024], "www.exploringscienceinthestudio.cca.edu": [2547], "chat.hska.info": [20437], "visit.stanford.edu": [15448], "t411.io": [15847], "app-community.teespring.com": [16125], "dadcod.es": [2024], "gmx.li": [6330], "wpo.pw": [2024], "voodooping.com": [17930], "static.greatnonprofits.org": [6892], "1.bonradio.com": [2024], "www.pleasuredome.org.uk": [12850], "login.jiveon.com": [8599], "mammth.co": [2024], "www.btcmedia.org": [1591], "glassesusa.com": [6685], "my.malwarebytes.com": [9940], "www.criticalmuslim.io": [3801], "blogs.tnr.com": [11349], "2015.osdc.com.au": [11703], "bidp.in": [2024], "wwfau.org": [2024], "team.ushahidi.com": [17528], "*.blogspot.co.za": [2127], "hapu.us": [2024], "education.iwill.org.uk": [20618], "ozzzy.co": [2024], "support.ca.com": [2525], "kkarski.com": [2024], "dig.hm": [2024], "www.globaleaks.org": [6694], "strategicplan.iu.edu": [8069], "gazeta.uz": [20215], "bitm.nu": [2024], "slickedit.com": [15022], "onthemedia.org": [11856], "m.qiwi.com": [13352], "translate.yandex.com": [18742], "mcc.lol": [2024], "daveda.ws": [2024], "jayk.work": [2024], "globaleaks.org": [6694], "tienda.boe.es": [1563], "www.thinkprogress.org": [16435], "mianyang.jd.com": [8434], "crds.ch": [2024], "shop.boingboing.net": [2197], "*.craigslist.co.uk": [3753], "admin.shortlist.com": [14795], "sec.1688.com": [51], "ondemand.webtrends.com": [18264], "sneakerbox.us": [2024], "1.if.qidian.com": [13348], "qianxiguan.jd.com": [8434], "identrust.com": [7936], "clippercard.com": [19615], "kobobooks.com": [8962], "nb.boardgamearena.com": [2182], "enma.ga": [2024], "www.maxspeedcdn.com": [10104], "forums.play-asia.com": [12828], "mart.fyi": [2024], "www.statushub.io": [15504], "webde-freemail-cards.web.de": [18146], "atomiccowlick.com": [1352], "rk.belregion.ru": [19353], "www.genome.ucsc.edu": [17390], "cdn-media.amplience.com": [19192], "s3.rr.itc.cn": [8401], "mail.ixsystems.com": [7882], "nr-test.egisz.rosminzdrav.ru": [21674], "luna.bzh": [2024], "www.docker.com": [4605], "what-if.xkcd.com": [22652], "www.liveinternet.ru": [9500], "mad.mx": [2024], "t4f.bz": [2024], "s.ung-inc.com": [2024], "www1.lsbu.ac.uk": [9111], "stat.ethz.ch": [4967], "188.165.140.80.ip.samy.pl": [21728], "notifications.console.aliyun.com": [868], "ethercalc.net": [5366], "iamn.at": [2024], "www.mcafee.com": [10129], "freightforwarduat.courierpost.co.nz": [3714], "sds-staff.kent.ac.uk": [17402], "funnelch.at": [2024], "f5.hitravel.xyz": [2024], "ohne.ws": [2024], "cdn.us.playstation.com": [12832], "seom.im": [2024], "vrenes.is": [2024], "assets.delvenetworks.com": [4322], "alterupload.com": [79], "snka.tk": [2024], "shibain.us": [2024], "www.playframework.com": [12835], "tushuku.net": [22316], "cias.rit.edu": [13493], "artbeat.ly": [2024], "ntlite.com": [21196], "starship.xyz": [15468], "isle.oxfordjournals.org": [12222], "media.auto.ru": [19276], "syktyvkar.psbank.ru": [13231], "www.baidupcs.com": [1643], "www.cgd.pt": [2984], "www.newyorkvocalcoaching.com": [11341], "www.equity.org.uk": [5324], "www.voffka.com": [17905], "now.unicef.org.nz": [17067], "www.finkmanufacturing.com": [1932], "images.ccbill.com": [2549], "sitepoint.com": [14937], "io.quanders.com": [2024], "mba.incae.edu": [2024], "journalism.stanford.edu": [15448], "gonzaga.edusupportcenter.com": [19962], "www.canlii.org": [2802], "j7.chaucanh.net": [2024], "i.msdn.microsoft.com": [10396], "paetec.com": [12236], "www.scripps.edu": [14479], "mpnt.in": [2024], "wapy.com": [17987], "b.robiotic.net": [2024], "data-informed.com": [4185], "adifferentdialogue.studentaffairs.georgetown.edu": [6531], "lntecc.com": [9105], "production.agima.ru": [19112], "ys.sakh.com": [21719], "iron.start.me": [15470], "www.pcrm.org": [21374], "repo.parabolagnulinux.org": [12413], "www.ovh.sn": [12205], "serieb.tv": [21785], "diary.thesyriacampaign.org": [22190], "spot.im": [15364], "healthdirect.gov.au": [7261], "www.heinlein-support.de": [7286], "fresh-hotel.org": [6178], "www.viber.com": [17751], "ja.functions-online.com": [20187], "smtns.com": [2024], "gdb.tv": [2024], "alice.de": [858], "leshoz.49gov.ru": [187], "s.admaster.com.cn": [584], "j1.hitravel.xyz": [2024], "ssl-munchkin.marketo.net": [10024], "ww135.smartadserver.com": [15049], "pazaruvaj.com": [12524], "utas.info": [2024], "redmine.documentfoundation.org": [16295], "www.skm.dk": [14965], "wx4.sinaimg.cn": [14910], "bnjm.in": [2024], "www.workwithcolor.com": [18528], "intranet.mecheng.ohio-state.edu": [11798], "wiki.opnsense.org": [11692], "chost.co": [2024], "jbmodo.com": [2024], "entsu.st": [2024], "manager.submittable.com": [22022], "kkin.tl": [2024], "mgn.to": [2024], "gtn.is": [2024], "piwik.nic.cz": [11418], "orapps.osu.edu": [11797], "wwwcf.nlm.nih.gov": [11090], "cccliparts.org": [19528], "sung.co": [2024], "mmwd.ca": [2024], "fmylife.com": [5570], "www.accessprivacy.com": [507], "alrr.oxfordjournals.org": [12222], "alandroidnet.com": [822], "nocha.in": [2024], "s.ibukiyama.tv": [2024], "cliks.info": [2024], "ppatel.me": [2024], "assets.uits.iu.edu": [8069], "49.mvd.ru": [21055], "qihuan.qidian.com": [13349], "moodle.ut.ee": [17148], "roseurosud.org": [21672], "mobile.sportmaster.ru": [21944], "req.io": [2024], "reviewingcomics.com": [13901], "matura97.cbsm.at": [8782], "magazine.magix.com": [9718], "europeanssl.eu": [5418], "www.okcoin.cn": [11664], "solutions.liveperson.com": [9506], "test.metooo.io": [10343], "ealerts.nature.com": [11140], "services.amazon.it": [19178], "blogernet.asia": [2024], "w.narhar.co": [2024], "piwik.inspirehep.net": [8178], "cmpny.co.uk": [2024], "t4.be": [2024], "clubpeng.in": [2024], "www.ipa.go.jp": [7791], "tly.mx": [2024], "www.skanetrafiken.se": [14962], "newpaltz.worldcat.org": [18536], "pcbooking.lambeth.gov.uk": [20773], "fancybrideness.com": [20074], "elink.eee.hku.hk": [20387], "wiki.umiacs.umd.edu": [17351], "hf-aka.de": [2024], "whol.st": [2024], "srcclr.help": [15405], "labs.giffgaff.com": [20243], "programm.froscon.org": [6071], "www.join.tv": [8630], "*.idg.com.au": [7708], "www.cultofmac.com": [3909], "blog.mog.com": [9788], "sweavegas.se": [2024], "wxwidgets.org": [22636], "cges.georgetown.edu": [6531], "jstnwrnr.com": [2024], "www.nal.usda.gov": [17299], "conversejs.org": [3628], "getawaygrey.com": [6551], "j.o2pros.com": [2024], "boardzoo.com": [2184], "soulmates.theguardian.com": [16364], "www.ga-innocenceproject.org": [6532], "rwd.is": [2024], "chdr.tv": [2024], "www.ghostbin.com": [6612], "app.getbeagle.co": [6572], "*.editmysite.com": [5075], "tmx.rr.nu": [2024], "las.cm": [2024], "bilbe.co": [2024], "www.bloadr.com": [2100], "themes.tiki.org": [16520], "*.usefedora.com": [22405], "*.wishpot.com": [18464], "sgtppr.com": [2024], "grants.wellcome.ac.uk": [22559], "squirrel.carezone.cz": [2859], "www.watchmaxx.com": [18094], "games-others.sport-express.ru": [21941], "carlisleeden.greenparty.org.uk": [6908], "ne.ucsd.edu": [17012], "www.star.bnl.gov": [19418], "static.bpddn.com": [1764], "cmh.fyi": [2024], "www2.lse.ac.uk": [9587], "*.blogspot.com.eg": [2127], "*.blogspot.com.ee": [2127], "oso.io": [2024], "i.km.com": [20738], "vn.hsbc.com": [7090], "www.sspl.org": [21963], "atdu.net": [2024], "*.blogspot.com.es": [2127], "resegaranti.ul.se": [22355], "*.planetemu.net": [12803], "vrr.de": [17954], "openbl.org": [11954], "s.nikkei.co.jp": [2024], "build.tox.chat": [16690], "i3.media": [2024], "www.everyanglemedia.com": [5442], "artsn.co": [2024], "www.blackgate.net": [19402], "d-mn.pl": [2024], "privacy.org.au": [13133], "www.usyd.edu.au": [22413], "wusmregistrar.wustl.edu": [18089], "reseller.seagate.com": [14499], "stayclassy.org": [15506], "support.tropo.com": [16835], "3susfb2k48brm1m447gx3h4l74f7cq9a1xangmms.ipleak.net": [20571], "52bak.es": [2024], "ips-invite.iperceptions.com": [20464], "tivo.li": [2024], "intego.com": [8202], "ec.libsyn.com": [9336], "ecf.ca9.uscourts.gov": [17135], "i.mad.ph": [2024], "static.stubhub.com": [15602], "issues.kolab.org": [8970], "peercloud.io": [21380], "creativewriting.stanford.edu": [15448], "api.bufferapp.com": [2419], "profor.to": [2024], "11.mvd.ru": [21055], "*.fishwrapper.com": [5866], "onedrive.com": [11869], "signup.live.com": [9495], "bolton.spydus.co.uk": [21952], "61.mvd.ru": [21055], "andsc.eu": [2024], "new.stihi.ru": [21993], "thecoastnews.com": [16336], "chrch.ly": [2024], "bugs.opera.com": [12086], "edponline.edp.pt": [4888], "purevpn.com": [13285], "waymoot.org": [18108], "scwd.stockport.gov.uk": [21994], "www.kaisersysteme.com": [8784], "act.ju.taobao.com": [16015], "discshop.se": [4546], "oma.sanoma.fi": [14351], "*.tinypng.com": [16560], "www.asl19.org": [410], "api.flattr.com": [5889], "trucrowd.is": [2024], "fveydocs.org": [5599], "cdn.betacie.net": [1845], "playboystore.com": [12837], "bassett.illuminateed.com": [20494], "www.postalheritage.org.uk": [13006], "www.strato-hosting.co.uk": [14255], "www.justtomatoes.com": [8711], "*.stopsoftwarepatents.eu": [15553], "aerohosting.cz": [737], "wiki.openvas.org": [12023], "cultr.me": [2024], "acctprin.us": [2024], "www.fas.htwk-leipzig.de": [7596], "go.c66.me": [2024], "pad.mn": [2024], "news.66option.com": [220], "fuzhuang.1688.com": [51], "support.snapchat.com": [15093], "timmil.es": [2024], "brokn.co": [2024], "eb13.play-asia.com": [12828], "io.bystrobank.ru": [2500], "service.immobilienscout24.de": [8008], "stylist.co.uk": [15617], "www.julieannenoying.com": [8687], "webauth.uvm.edu": [17154], "thirtymilesofcorruption.com": [22194], "tinderfoundation.org": [16545], "trendmac.ro": [2024], "www.brasil247.com": [2308], "www.sovereignman.com": [15266], "ci.concourse.ci": [19664], "build.al": [2024], "bosco.soy": [2024], "Spielfuerdeinland.de": [15343], "eumail.opensocietyfoundations.org": [21280], "paperspace.io": [12410], "nedlinux.com": [11171], "lingyun.aliyun.com": [868], "melb.it": [2024], "comwww.unistream.ru": [17291], "psup.men": [2024], "*.hark.com": [7198], "www.snip2code.com": [15100], "debathena.mit.edu": [9763], "zy.youku.com": [18804], "newhols.co": [2024], "bluenotes.anz.com": [374], "newsko.ru": [21126], "jobs.wellcome.ac.uk": [22559], "lpievent.lpice.eu": [9109], "renxga.me": [2024], "lbhf.spydus.co.uk": [21952], "status.pivotaltracker.com": [12767], "3f1e9bab-2a1a-f366-e93c-28f1be319d3b-rum.cdnvideo.ru": [19536], "s1.qhimg.com": [13347], "fanolo.gy": [2024], "s2.lsm.lv": [20883], "amazon.com.mx": [19173], "ter.je": [2024], "hideman.net": [7397], "www.raptr.com": [13622], "login.sparebank1.no": [21922], "cs.bme.hu": [1557], "i0.lbp.me": [20789], "jpb.gs": [2024], "webui_89858412.asana.com": [1265], "sudn.org": [2024], "bxtr.us": [2024], "ukhta.startsmile.ru": [21980], "facultypositions.usc.edu": [17366], "www.friendfinder.com": [6192], "analysis2.ligatus.com": [9356], "pr0gramm.com": [21476], "redaz.in": [2024], "cloudscaling.com": [3313], "przelewy.mbank.pl": [9733], "roddis.net": [13998], "thisismynext.com": [16445], "www.chromestatus.com": [3123], "svn.mplayerhq.hu": [9798], "alias.io": [856], "on.omskman.com": [2024], "www.anybalance.ru": [1112], "dx.com": [4242], "nerds.link": [2024], "swarmapp.com": [22058], "tlou.tk": [2024], "mobile.enter.ru": [20002], "pnky.co": [2024], "ctt.org": [3900], "uxjw.me": [2024], "eastsussex.gov.uk": [19938], "www.codefund.io": [3368], "32.mvd.ru": [21055], "haa.li": [2024], "drvm.co": [2024], "mirror.hydra.gnu.org": [6337], "auth.beget.com": [19347], "www.joycasino13.com": [20654], "bccserve.sunybroome.edu": [2382], "www.pyweek.org": [13310], "support-chat.beeline.ru": [1778], "www.libanywhere.com": [9320], "ictu.nl": [7698], "cmlj.oxfordjournals.org": [12222], "games.icq.com": [7695], "userprovisioning.courierpost.co.nz": [3714], "igniterealtime.org": [7954], "trfg.in": [2024], "extweb.utm.edu": [17426], "redmine.april.org": [1171], "mittidg.idg.se": [7709], "sync.adaptv.advertising.com": [713], "f80s.com": [2024], "*.ripoffreport.com": [13954], "www.a-ads.com": [260], "musikerforbundet.se": [10756], "geest.tk": [2024], "www.nuuvem.com": [11624], "sflo.me": [2024], "mncd.in": [2024], "cs.serverdensity.com": [14675], "bit.g6p.net": [2024], "whoami.cesnet.cz": [2598], "m.wildlifesydney.com.au": [18400], "portfo.ly": [2024], "*.ca.eprncdn.com": [5316], "www.dreambox.com": [19895], "mybexley.firmstep.com": [20109], "elearning.vutbr.cz": [17609], "jitsi.org": [8596], "www.iula.upf.edu": [17471], "syntax.cr": [2024], "help.meetme.com": [10224], "www.wlb.at": [18376], "employers.sciencecareers.org": [14440], "bwll.co": [2024], "cset.inl.gov": [20537], "www.andytyson.com": [1053], "gplusbrand.com": [2024], "sizzlesitesinc.com": [14958], "blog.wordpress.tv": [18519], "www.zooko.com": [18998], "www.mxgm.org": [9825], "searchranking.yahoo.co.jp": [18730], "search.roblox.com": [13980], "*.opensrs.com": [12005], "2009.asiabsdcon.org": [1281], "welfare.bournemouth.gov.uk": [2268], "s.zaitech.com": [2024], "liski.startsmile.ru": [21980], "ib.ubrr.ru": [17173], "gztsp.tv": [2024], "camden.greenparty.org.uk": [6908], "smolensk.europaplus.ru": [20034], "bmcpsychiatry.biomedcentral.com": [1931], "force11.org": [5576], "dev.plexapp.com": [12855], "mobile.bankcoop.ch": [3647], "solar-energy-installers.com": [15176], "glnk.eu": [2024], "secondop.tv": [2024], "www.dropdav.com": [4762], "books.rakuten.co.jp": [13593], "assets.wantful.com": [18070], "uslugi.admtyumen.ru": [19082], "wiki.pacbsd.org": [12337], "coindaddy.io": [3393], "transmode.se": [16752], "ddig.in": [2024], "static.guim.co.uk": [6996], "*.mnaonline.org": [10375], "www.boxun.com": [19436], "playm.cc": [2024], "www.speedyshare.com": [15331], "*.makemytrip.com": [9917], "www.legolanddiscoverycenter.cn": [9249], "ggstuff.net": [2024], "food.piliapp.com": [12706], "datacentrum.wedos.com": [17993], "blog.patternsinthevoid.net": [12492], "concourse.quay.io": [21564], "bahrain.usembassy.gov": [22406], "lloydsw.co": [2024], "webshoprevolution.com": [18182], "shop.wwf.or.jp": [18029], "ski.lemonde.fr": [9204], "b4in.us": [2024], "static.apiary.io": [19213], "www.smileysnetwork.com": [15070], "flygirl.photo": [2024], "*.blogspot.mx": [2127], "*.blogspot.my": [2127], "yahoosearch.tumblr.com": [16897], "*.blogspot.md": [2127], "www.logotype.se": [9573], "sendmail.com": [14643], "foip.me": [2024], "cwil.me": [2024], "demo.f4map.com": [20064], "*.blogspot.mk": [2127], "hastexo.com": [7224], "kktvkj.tmall.com": [22222], "www.anonysurfer.com": [1085], "magl.us": [2024], "stevenroddis.com": [15537], "redmine.org": [13754], "l.emre.gs": [2024], "www.royaldns.net": [21681], "bener.gy": [2024], "j.jqian.net": [2024], "valuedial.com": [17634], "www.youngcancer.scot.nhs.uk": [10953], "ashlands.net": [10597], "nesterov.pw": [11206], "zsz.newsnetz.ch": [11371], "azmp.cc": [2024], "gptrs.vc": [2024], "www.easycottages.com": [18579], "sas.buzz": [2024], "r24820199.sync.app.asana.com": [1265], "fb.nosiboo.com": [2024], "account.metartnetwork.com": [10320], "*.modx.com": [9786], "youtube.com.tn": [18800], "community.letsencrypt.org": [9279], "link.wtvr.com": [2024], "armenian.armenia.usembassy.gov": [22406], "www.mni.th-mittelhessen.de": [15874], "*.ustc.edu.cn": [17131], "www.ybin.me": [18756], "jllm.tk": [2024], "www.zueriwieneu.ch": [19017], "pay.chinabank.com.cn": [3086], "mail.xeneris.net": [18649], "ieee.illinois.edu": [17346], "epetitions.scottish.parliament.uk": [21349], "mediastorehouse.com": [10160], "www.conferencemanager.dk": [19666], "gocard.georgetown.edu": [6531], "*.slickdeals.net": [15024], "auth.ut.ee": [17148], "abr.ai": [2024], "m.zyxel.ru": [22734], "g-3.me": [2024], "shm.oxfordjournals.org": [12222], "associates.amazon.cn": [19168], "analytics.amediateka.ru": [19186], "s.nickclark.ca": [2024], "neurology.georgetown.edu": [6531], "gelendzhik.tpprf.ru": [22260], "apli.fyi": [2024], "bela.link": [2024], "lifeaftrdnm.co": [2024], "pilot.ethernetportal.equinix.com": [5322], "2xi.st": [2024], "x.hck.in": [2024], "wnclug.ourproject.org": [21314], "sheg-preview.stanford.edu": [15448], "www.l-rz.de": [9253], "success.acrobat.com": [536], "hts.crick.ac.uk": [19719], "localist.com": [9553], "search.rpxcorp.com": [13508], "www.youtube.no": [18800], "www.youtube.nl": [18800], "www.adv.ru": [19097], "millc.us": [2024], "scarborough-consult.objective.co.uk": [21225], "partners.exacttarget.com": [5465], "www.youtube.ng": [18800], "ogimages.bl.uk": [2358], "www.kitapyurdu.com": [8934], "www.inforesist.org": [20531], "*.medibankhealth.com.au": [10198], "high5.info": [2024], "getinvolved.georgetown.edu": [6531], "unstats.un.org": [17057], "sandstorm.de": [14345], "nlyo.mx": [2024], "ebanking.cimbthai.com": [2620], "smp.mcafee.com": [10129], "llant.as": [2024], "neobux.com": [11188], "*.spreadshirt.fr": [15371], "www.dailynk.com": [4116], "csonlab.yanao.ru": [22665], "secure13.pipni.cz": [12287], "www.webmaster.yandex.by": [18739], "paliw.al": [2024], "wykd.ca": [2024], "clubcouture.me": [2024], "www.trideci.com": [16796], "www.extratorrent.cc": [5516], "forum.beeline.kz": [19345], "mmak.es": [2024], "pacepathlive.co": [2024], "inconshreveable.com": [8051], "readonly.tangerine.ca": [16008], "domace.aktuality.sk": [1507], "on.conit.co": [2024], "gz.khabkrai.ru": [20709], "www.justgiving.com": [8710], "wrld.ly": [2024], "readcomicsinpublic.com": [13665], "u-r-l.in": [2024], "tws.io": [2024], "m.airbnb.be": [793], "sysdream.com": [15818], "vi.mvd.ru": [21055], "fujian.jd.com": [8434], "zb.oschina.net": [11702], "hailst.at": [2024], "www.anthrocon.org": [1101], "partner.avm.de": [1478], "www.gamefly.com": [6397], "www.myvisaapplication.com": [17643], "agileit.co": [2024], "code.html5video.org": [7097], "phnxs.nl": [2024], "www1.cs.fau.de": [17396], "dyanat.duoshuo.com": [19906], "ps5.ca": [2024], "ge4.me": [2024], "vooplayer.com": [17928], "morenobhlv.co": [2024], "*.blackmesh.com": [2058], "onepr.in": [2024], "streetartutopia.com": [15588], "trap4.us": [2024], "s-passets-cache-ak0.pinimg.com": [12724], "uploads.interfax.kz": [20552], "c.iphonepal.com": [2024], "csgaming.space": [2024], "brdcstlinks.com": [2024], "community.obi.de": [21222], "swein.st": [2024], "correoold.uv.es": [17544], "axial.co": [2024], "ftw.li": [2024], "hello.gs": [2024], "jlyou.org": [2024], "*.kernelconcepts.de": [8874], "nhbr.us": [2024], "getpelican.com": [6564], "cryptography.informatik.fh-nuernberg.de": [16239], "short.sisi.ga": [2024], "sso.childrensmarketplace.mycareinbirmingham.org.uk": [10845], "fu11m0v13.tk": [2024], "www.reztrip.com": [13910], "updates.curseapp.net": [3927], "7j1yxi.com1.z0.glb.clouddn.com": [17], "cont.lu": [2024], "cran-archive.r-project.org": [13447], "npcc.me": [2024], "s130.cnzz.com": [3328], "leadscor.es": [2024], "eu.art.com": [1244], "www.eventoverload.com": [5429], "www.lanik.us": [9162], "securenscb.newcastle.gov.uk": [11355], "railsschool.org": [13591], "helpdesk.umd.edu": [17351], "account.smartertools.com": [15058], "media.corp.whiskeymedia.com": [18340], "malliard.link": [2024], "freakyfabulo.us": [2024], "kinkontap.com": [8922], "pushkin.tpprf.ru": [22260], "marketplace.appcelerator.com": [1144], "bl.asaez.eu": [2024], "koge.to": [2024], "www.getdigital.de": [6594], "go.del-mi.org": [2024], "dtp.rg.ru": [21646], "phrmdr.me": [2024], "www.mfw.baden-wuerttemberg.de": [19302], "uanhc.net": [2024], "dailyjok.es": [2024], "www.prolific.com.tw": [13192], "phone-analytics.com": [12665], "r24820182.sync.app.asana.com": [1265], "opnrmz.com": [2024], "zattoo.com": [18900], "www.forum.islamacademy.net": [8366], "atlss.in": [2024], "fime.me": [5565], "echo24.cz": [19948], "okdt.io": [2024], "sg.xms.d.mi.com": [10361], "discuss.xilo.net": [18608], "vip.youku.com": [18804], "congdongduoc.vn": [2024], "www.km.com": [20738], "unidadseguridad.unizar.es": [17441], "gr8p.pl": [2024], "secure.gladrags.com": [6678], "bda.is": [2024], "junge-piraten.de": [8695], "aolu.co": [2024], "jnet.me": [2024], "saikorivi.com": [2024], "webmail.wippies.com": [18450], "get.uber.com": [17169], "bwne.ws": [2024], "webservices.hmrc.gov.uk": [7076], "www.rapidssl.com": [13617], "realty.yandex.kz": [18743], "svc.so": [2024], "www.hig.se": [7050], "www.jitbit.com": [8593], "massagemag.com": [10058], "rpgnow.com": [11867], "linksquar.es": [2024], "maps.nso.ru": [21192], "ss.prbrds.com": [13158], "ua.siteground.com": [14932], "clevelandstate.worldcat.org": [18536], "piraten-oberpfalz.de": [12749], "lsdl.es": [2024], "www.snob.ru": [15103], "affiliates.bookdepository.com": [2217], "uzman.yandex.com.tr": [18740], "change.nature.org": [11141], "hxp.us": [2024], "counter.yadro.ru": [18721], "fokus.no": [5960], "flwr.it": [2024], "webmail04.register.com": [13793], "mancphoto.uk": [2024], "hnsy.us": [2024], "muhlenberg.worldcat.org": [18536], "www.thepirateproxybay.xyz": [22174], "artsinstitute.stanford.edu": [15448], "jhmas.oxfordjournals.org": [12222], "wiki.bitcoin-otc.com": [1990], "www.jabberes.org": [8488], "secure.websimages.com": [18237], "www.intohigher.com": [8294], "vsut.mvd.ru": [21055], "jobs.barclays.co.uk": [1688], "www.docs.zone": [4610], "www.aclu.org": [312], "n.live.yt": [2024], "www.uclinics.com": [17018], "partners.xhamster.com": [18606], "*.wiki.zoho.com": [18984], "img3.dditscdn.com": [4228], "weeklyplus.com": [18274], "turuca.me": [2024], "www.cta-observatory.org": [3065], "jecoenv.biomedcentral.com": [1931], "avtrade.co.uk": [1482], "ethereum.org": [5367], "act-on.co.uk": [19052], "v.l.youku.com": [18804], "msndata.jp.msn.com": [9808], "pension.fbk.info": [5691], "cos.sc": [2024], "qni.fr": [2024], "ap.port.rocks": [2024], "f.e.ccs.com": [2565], "brooksidefund.com": [2381], "partners.devon.gov.uk": [4415], "eyes.jpl.nasa.gov": [10909], "www.moto-g.com": [10655], "www.letstalkbitcoin.com": [9280], "www.4.cbsm.at": [8782], "www.heritage.gov.hk": [20369], "minjust.gov-murman.ru": [20293], "cdn.exactag.com": [5467], "sikur.com": [14847], "twitter.yfrog.com": [22678], "www.kosmas.cz": [8759], "irc.stalkr.net": [15437], "*.staysmartonline.gov.au": [15508], "assets.bt.com": [1578], "de.noisey.com": [2024], "www.pte.hu": [12333], "gservice.maryno.net": [20928], "social.un.org": [17057], "pay.115.com": [28], "hia.li": [2024], "*.austrade.gov.au": [1404], "www.kurier.at": [9055], "shutthebackdoor.net": [14813], "www.takeaway.com": [15980], "lists.freebsd.org": [6097], "www.betcoin.tm": [1843], "fuk.ly": [2024], "www.pivotal.io": [12765], "we.co": [2024], "freechelsea.com": [6116], "vip.t-mobile.com": [15837], "uklik.me": [2024], "easel.ly": [5001], "m.bk55.ru": [19398], "upstream.where.com": [18334], "www.phpboost.com": [21401], "www.yaha.no": [18723], "sbg.astrobl.ru": [19264], "lede-project.org": [20798], "p5.sinaimg.cn": [14910], "www.recapthelaw.org": [13705], "open27.ru": [21265], "sigfig.com": [14836], "namsh.in": [2024], "cs.sportradar.com": [21945], "www.kimberly-clark.com": [8905], "jfrat.us": [2024], "www.dontspyonus.org.uk": [4674], "www.smuxi.im": [15080], "www.privacyassociation.org": [8262], "vnrk.co": [2024], "reethus-adeline.de": [13771], "umtl.ca": [2024], "oit.umd.edu": [17351], "studentrecords.wustl.edu": [18089], "*.espncdn.com": [6341], "*.paymentssource.com": [12510], "koios.works": [2024], "www.jxself.org": [8718], "mobile.welt.de": [18290], "www.jpcsp.org": [5216], "falcon.binbank.ru": [1922], "www2.geneseephoto.com": [6511], "www.qiwi.ru": [13352], "garmin.com": [20205], "justcloud.com": [20669], "epa-dccs.ornl.gov": [11730], "v.eroshare.com": [5338], "sticky.al": [2024], "slackin.community.metaebene.me": [10322], "t.getgalley.com": [2024], "www.verisign.com.au": [17712], "*.revoltgames.com": [13905], "email.stanford.edu": [15448], "forum.cnes.fr": [2647], "chipdip.ru": [19582], "f.my.netease.com": [11228], "demo.joomla.org": [8641], "chrstphrswn.co": [2024], "everlast.sg": [2024], "itemzbs.ru": [2024], "s.fobl.sk": [2024], "pl.hd.sohu.com": [15171], "ox.digi.hu": [4458], "on.wtae.com": [2024], "bbrigad.com": [2024], "alltubedownload.net": [911], "i4.code.msdn.s-msft.com": [14114], "lopo.me": [2024], "getname.ru": [6599], "weltbild.ch": [18291], "swagshop.spiceworks.com": [15338], "*.tags.sitetagger.co.uk": [14940], "dje.li": [2024], "www.joycasino12.com": [20654], "m.carphonewarehouse.com": [2871], "dionyziz.com": [6897], "www.tracking-point.com": [16705], "subs.fm-world.co.uk": [20128], "airbnb.it": [793], "coo.georgetown.edu": [6531], "about.ayyo.ru": [19292], "aobpla.oxfordjournals.org": [12222], "www.zarkzork.com": [18897], "www.smartertrack.com": [15059], "keyserver.pgp.com": [12275], "delano.ly": [2024], "www.labelsbythesheet.com": [9143], "uat.billdesk.com": [1906], "hmps.se": [2024], "www.geoamigo.com": [6520], "demandware.com": [4331], "*.winzip.com": [18423], "shop.m-budget.migros.ch": [10417], "phabcontent.cooltrainer.org": [19682], "people.yandex.by": [18739], "go.chinchin.vn": [2024], "cinesport.com": [3145], "bonus.games.mail.ru": [9891], "researchposters.open.ac.uk": [11947], "anilorak.net": [2024], "oniontip.com": [11901], "quantixtickets8.com": [13389], "editorial01.newsnetz.ch": [11371], "s3.gismeteo.pl": [20252], "fafsa.gov": [5541], "venmo.com": [17696], "hlrnt.de": [2024], "t-com.sk": [16155], "go.spin.com": [2024], "www.research.vt.edu": [17825], "*.iggcdn.com": [8078], "gog.com": [6343], "sndo.ps": [2024], "dvp.st": [2024], "investor.marvell.com": [16455], "websitealive4.com": [18242], "your-file-system.com": [18811], "vkt.la": [2024], "x.geekdrop.com": [2024], "datacloud-us-west-1.tealiumiq.com": [16060], "no.boardgamearena.com": [2182], "apideva.hertz.com": [7371], "www.reflets.info": [21623], "ad.harrenmedianetwork.com": [7202], "www.verywell.com": [22449], "www.deliveras.gr": [4314], "totvs.vc": [2024], "*.sestatic.fi": [14165], "kblon.com": [2024], "www.tms.va.gov": [17100], "dave.sg": [2024], "cheema.com": [3058], "ex.mail.ovh.net": [12205], "advisormailout.com": [718], "bind10.isc.org": [7823], "go.abhi.pro.np": [2024], "engineering.tumblr.com": [16898], "c.rwa.me": [2024], "blocket.se": [2109], "img-novel.pixiv.net": [12778], "covad.net": [3723], "blog.bitbucket.org": [1982], "jevra.org": [2024], "mightyfares.com": [2024], "link.alfabank.ru": [849], "vivoen.ch": [2024], "perimeterinstitute.ca": [21389], "www.bentasker.co.uk": [1803], "helse.sparebank1.no": [21922], "djmaster.soy": [2024], "s.rein.cc": [2024], "chrismatic.io": [3113], "knkybts.co": [2024], "www2.unicef.org": [17069], "sifomedia.tidningsnatet.se": [16508], "ru.calameo.com": [2747, 2748], "perspectives-project.org": [12617], "bls.tn": [2024], "enshi.jd.com": [8434], "choiceofgames.com": [3102], "go.nws.co": [2024], "desire.cf": [2024], "www.britishairways.com": [1513], "imgsm.it": [2024], "cz.sputniknews.com": [21951], "www-cache5.extensis.com": [5513], "karma.duckduckgo.com": [4785], "whizbang.in": [2024], "e-ksf.org": [4835], "airgun.bz": [2024], "support.greenbone.net": [6912], "s4.biz.itc.cn": [8401], "huflink.nl": [2024], "allyoucanarcade.com": [895], "dfout.mvd.ru": [21055], "cdn-st1.rtr-vesti.ru": [21689], "kommunal.se": [8978], "blognone.com": [2125], "*.examiner.com": [5469], "*.toxstats.com": [22256], "c.o0bc.com": [21217], "www.kyn.me": [9069], "southampton.gov.uk": [15259], "usa.visa.com": [17846], "redingtonindia.com": [21620], "rosaa.co": [2024], "icb.oxfordjournals.org": [12222], "a-fram.es": [2024], "www.firefox.com": [5842], "*.thumbshots.net": [16475], "media.eurekalert.org": [20032], "tfes.org": [16237], "yvan.me": [2024], "www.pooi.tk": [3536], "lrbs.ch": [2024], "practicesightssupportportal.axosoft.com": [1504], "nonsn.se": [2024], "robot.lenovo.com.cn": [9266], "fhn.mobi": [2024], "ncseo.xyz": [2024], "abc.twgogo.org": [2024], "biomarkerres.biomedcentral.com": [1931], "afcom.com": [339], "i.scrolldit.com": [2024], "dashboard.bitgravity.com": [1959], "i0.gmx.com": [6330], "www.bitcoinforum.com": [2004], "bestlink.ambest.com": [369], "www.brown.edu": [2384], "www.ada.lt": [601], "bssk.co": [2024], "ashiato.travel.rakuten.co.jp": [13594], "gloss.bz": [2024], "images.deals.woot.com": [18514], "www.tetu.com": [16221], "www.mtekk.us": [10719], "www.picostocks.com": [12696], "ingushetia.kavkaz-uzel.ru": [20694], "tasteofthenorthend.org": [16035], "sukebei.nyaa.eu": [11634], "akemi.photos": [2024], "art-secure.wsj.net": [18021], "refund.ws": [2024], "www.howto.gov": [7575], "erk3.us": [2024], "proddigital.co": [2024], "13f.io": [2024], "zaakshops.nl": [2024], "tucowsinc.com": [16887], "www.chaisdoeuvre.fr": [2988], "www.polskapartiapiratow.pl": [21455], "scm.osdn.net": [21298], "bequiet.com": [1753], "mllrit.de": [2024], "arkhangelsk.biglion.ru": [19375], "agent.stoloto.ru": [21996], "lbridge.co": [2024], "lndv.st": [2024], "www.hpi.uni-potsdam.de": [17417], "password-reset.fnal.gov": [5741], "fakeplasticcubes.demozoo.org": [19808], "support.earthlink.net": [4997], "www.ruderich.org": [14078], "s.cevela.net": [2024], "r24616638.sync.app.asana.com": [1265], "seanoc.co": [2024], "cdn.crushable.com": [908], "rim.ponemon.org": [12941], "chk.pt": [2024], "jshua.us": [2024], "forums.lastpass.com": [9175], "belgorod.startsmile.ru": [21980], "raiffeisen.ru": [13587], "megabusgold.com": [10244], "urls.nazul.net": [2024], "blsr.co": [2024], "pviq.com": [13304], "syncshop.sonymusic.com": [15217], "intly.me": [2024], "swf.to": [2024], "video6.0xdb.org": [10], "quay.io": [21564], "lezhin.com": [20822], "kipko.us": [2024], "de.canon.ch": [2822], "www.dltags.com": [19854], "a-lo.co": [2024], "ze.lle.rip": [2024], "www.aip.org": [349], "savingscatcher.walmart.com": [18059], "4.ncgcam.co": [2024], "www.autisticadvocacy.org": [1437], "iakn.us": [2024], "cz.norton.com": [11545], "imgwe.com": [20509], "10ws.co": [2024], "eddie.ds.uillinois.edu": [17033], "davie3.me": [2024], "www.w3techs.com": [22516], "cp.sweb.ru": [15277], "rmble.co": [2024], "system3.deprexis.com": [4362], "b.dianping.com": [19830], "whoiam.sportbox.ru": [21942], "hdconsu.lt": [2024], "wesbos.com": [18297], "service.ibx.com": [20473], "codementor.io": [3370], "commencement.stanford.edu": [15448], "healthunlocked.com": [7257], "mine.im": [2024], "www.sledcom.ru": [21858], "blue-store.wsj.com": [22625], "www.shaklee.com": [14715], "gigya.com": [6641], "repos.wine-staging.com": [18440], "t-shirtmojo.com": [15840], "help.polyvore.com": [21458], "au.support.tomtom.com": [16615], "fattorrents.ws": [22174], "r24628002.sync.app.asana.com": [1265], "kishan.co": [2024], "hilfe.freemail.web.de": [18146], "flipagram.com": [5904], "factorio.com": [20068], "*.globat.com": [6723], "support.viglink.com": [17797], "csrsupport.com": [2691], "es.theanarchistlibrary.org": [16290], "www.db.tt": [4763], "kass.am": [2024], "forum.kde.org": [8735], "eu4all.adenu.ia.uned.es": [17248], "l.writhem.com": [2024], "m.ftc.co": [2024], "images.hostels.com": [18138], "account.domaintools.com": [4653], "bg.boardgamearena.com": [2182], "mat1.gtimg.com": [6975], "dtfx.co": [2024], "justflix.eu": [2024], "gstv.us": [2024], "directory.services.live.com": [9495], "go.airspace.net": [2024], "s.wst9.com": [2024], "becran.ky": [2024], "go.dobt.co": [2024], "e-mielenterveys.fi": [4850], "og.decc.gov.uk": [19795], "plugin.mediavoice.com": [12904], "cafeett.com": [2024], "shutl.me": [2024], "link.skg.com.np": [2024], "sarasota.aclufl.org": [297], "images.cars.ru": [19518], "w.cg": [2024], "etalonsm.sportmaster.ru": [21944], "*.realmedia.com": [102], "solu.to": [2024], "f.hitravel.xyz": [2024], "media.simplemachinesweb.com": [21830], "piatnik.de": [12688], "medleyads.com": [10213], "s.cpclicker.jp": [2024], "as.wiz.cn": [18475], "i4.zst.com.br": [19015], "forsvarsforbundet.se": [6030], "solutionshealthcare.com": [15195], "rdc.nz": [2024], "url2.io": [2024], "translate.google.co.*": [6821], "staging.flightradar24.com": [20119], "google.usc.edu": [17366], "avuecentral.com": [1483], "mighty-hoernsche.de": [2606], "link.tidybag.uk": [2024], "s.sgbwd.com": [2024], "psr.iq.harvard.edu": [7211], "archos.com": [1199], "livecomm.ru": [20855], "list-china.jd.com": [8436], "portal.acs.ncsu.edu": [11531], "socrates.stanford.edu": [15447], "hswrk.eu.tf": [2024], "webapps.mbank.pl": [9733], "link.trovata.nl": [2024], "new.utm.edu": [17426], "a1f.org": [2024], "research.wustl.edu": [18089], "chat.hostican.com": [7531], "www.sraoss.co.jp": [14230], "gsc.my": [2024], "ohloh.org": [11803], "secure14.pipni.cz": [12287], "admin.events.nibusinessinfo.co.uk": [21135], "hi.jobnotify.me": [2024], "g.prjct.la": [2024], "glkb.ch": [20683], "my.greenparty.org.uk": [6908], "estore.skifalls.com.au": [21848], "smtlkf.me": [2024], "dangshan.jd.com": [8434], "oapi.io": [2024], "geriatrics.stanford.edu": [15448], "sens.sc": [2024], "x.kamildada.com": [2024], "atlantic.net": [1344], "onphr.ma": [2024], "groceryout.lt": [2024], "commlink.org": [3474], "ir.exp3rto.com": [2024], "dpmca.mp": [2024], "3.f.ix.de": [8417], "forgeapi.puppetlabs.com": [13276], "alum.kuleuven.be": [8832], "www.hilversum.nl": [11172], "etretouchy.com": [5382], "fork.cc": [2024], "www.bowenpress.com": [19434], "www.smsreceiveonline.com": [21876], "mysort.symantec.com": [15780], "apps.bbg.gov": [19334], "moviii.liu.se": [9097], "sueddeutsche.kaufdown.de": [8837], "isoc.ch": [20587], "flokinet.is": [5918], "on.ozrs.co": [2024], "bru.gl": [2024], "rad6.ly": [2024], "scorem.ag": [2024], "www.tribuna.pl.ua": [22286], "lucidsolutions.co.nz": [9653], "san.ofo.so": [11794], "seymour.so": [2024], "radikale.dk": [13574], "otm.wustl.edu": [18089], "dev.laptop.org": [11667], "links.iaswc.org": [2024], "www.landscapephotographymagazine.com": [9156], "misterc.link": [2024], "*.r01.ru": [13449], "vphd.info": [2024], "pigeonhole.dovecot.org": [4713], "muon.fnal.gov": [5741], "vhs-karlsruhe.de": [22458], "www.disconnect.me": [4531], "boots.com": [2233], "s.click.taobao.com": [16015], "m-pw.in": [2024], "upref.us": [2024], "boutique.monde-diplomatique.fr": [21011], "www.phptesting.org": [21402], "mapp.youku.com": [18804], "www.bourgeois.me": [2266], "*.louhi.net": [9628], "forum-de.msi.com": [9806], "geekgirlsguide.com": [6480], "daron.me": [2024], "www.synopsys.co.jp": [15804], "becca.io": [2024], "mrshl.me": [2024], "flowlove.me": [2024], "blogtopsites.com": [2120], "www.tf.uio.no": [17414], "auth.hackaday.io": [7127], "go.sav2880.net": [2024], "snowtrex.me": [2024], "mh21.de": [10357], "ad.reklamport.com": [13811], "box.gm.163.com": [50], "*.gotvape.com": [6837], "honest.com": [7491], "mmbiz.qpic.cn": [13360], "uc.jcloud.com": [8555], "ulule.com": [17224], "ecatering.irctc.co.in": [7814], "m1.hkgolden.com": [7058], "www.urel.feec.vutbr.cz": [17609], "www.imensa.de": [7990], "community-uat.akamai.com": [806], "pxid.us": [2024], "dynatech.de": [4826], "memisa.nu": [2024], "nrastore.com": [21188], "credit.psbank.ru": [13231], "derbyshireprepared.org.uk": [19812], "choko.ml": [2024], "smsch.us": [2024], "www.environment-agency.gov.uk": [20006], "canlialem.com": [2821], "webwewant.org": [18193], "selfservice.slough.gov.uk": [15036], "cualu.ms": [2024], "geneticliteracyproject.org": [20224], "bynd.ie": [2024], "lake.lp0.eu": [9648], "*.radboudnet.nl": [13570], "misc.360buyimg.com": [148], "static.oschina.net": [11702], "woopra.com": [18513], "dclife.us": [2024], "rmte.co": [2024], "dnevnik.play-asia.com": [12828], "domainreport.domaintools.com": [4653], "www.pen.org": [12268], "berita.papua.us": [2024], "thepermitstore.com": [16304], "polymer-project.org": [12938], "1.ssl.schmidtcom.de": [14419], "static3.businessinsider.com": [2471], "duo.com": [4797], "rgb.fyi": [2024], "rgede.eu": [2024], "t0d.co": [2024], "m2.baidu.com": [1641], "assets.dutchcrafters.com": [19908], "api.wosign.com": [18483], "onesearch4-2.newsvine.com": [11390], "realty.yandex.by": [18739], "intrepidmuseum.org": [8295], "thng.bz": [2024], "mae-hpc.osu.edu": [11797], "jbinsfo.me": [2024], "yex.tt": [2024], "belui.mvd.ru": [21055], "rebekahr.com": [2024], "www.etrend.sk": [5383], "static4.dditscdn.com": [4228], "www.twosigma.com": [16971], "twrp.me": [15956], "wiki.fitbit.com": [5867], "mouthsmums.com": [2024], "tv.search.ch": [14504], "www.archlinuxarm.org": [19226], "play0ad.com": [12829], "url.aris.do": [2024], "eweka.nl": [5458], "shop.piratenpartei.de": [12755], "norfolk.spydus.co.uk": [21952], "mrsk.in": [2024], "www.parkrun.com": [12438], "aka-cdn.adtech.de": [691], "dl.yala.fm": [2024], "js3.t.sinajs.cn": [14909], "aaronparecki.com": [453], "www.demandware.com": [4331], "antioch.worldcat.org": [18536], "redmine.corelan.be": [3675], "jcarlo.me": [2024], "timeline.debian.net": [4261], "www.gpul.org": [6352], "corbinfisher.com": [3662], "trackme.lanbilling.ru": [20775], "zsl.org": [19000], "only-be.me": [2024], "vip.tfb.ru": [16236], "*.stubhubstatic.com": [15602], "v3.co.uk": [17550], "cdn.revcontent.com": [21642], "help.yammer.com": [18738], "tgcafe.it": [2024], "db2.play-asia.com": [12828], "lnyx.cnaf.infn.it": [7771], "a-bout.cf": [2024], "monetizer.snacktv.de": [15086], "i8.lbp.me": [20789], "connecticon.org": [3585], "attach.sciencedirect.com": [21750], "static.ndr.de": [11159], "kicks.link": [2024], "nativ.link": [2024], "dotfully.co": [2024], "indiegogo.com": [8078], "tvesco.la": [2024], "absrad.io": [2024], "partners.moodle.com": [10613], "nadim.computer": [11048], "jumpeyecomponents.com": [8690], "techreport.com": [16115], "stst.fm": [2024], "community-cache.freescale.com": [6161], "cgi.umd.edu": [17351], "gtms02.alicdn.com": [853], "admin.aerohosting.cz": [737], "kei.pl": [8856], "www.loadimpact.com": [9542], "x.ajcolores.com": [2024], "support.niteflirt.com": [11464], "mps.click": [2024], "cspf.us": [2024], "dvdd.tk": [2024], "pingupod.de": [12721], "mapdis.ndc.nasa.gov": [10909], "d.agkn.com": [761], "production.moodys.com": [21020], "gpd.government-nnov.ru": [20295], "en.rsf.org": [13844], "dl.ring.cx": [13947], "imgssl.superpages.com": [15698], "community.futurezone.at": [6263], "bither.net": [19391], "avnn.co": [2024], "*.upforitnetworks.com": [832], "www.cpib.ac.uk": [2659], "productioncommunity.publicmobile.ca": [13257], "dv.youku.com": [18804], "ekkl.es": [2024], "l.duc.as": [2024], "puronator.com": [2024], "cma.is": [2024], "ulchiadm.khabkrai.ru": [20709], "mgpr.uk": [2024], "www.se.no": [21762], "finalb.im": [2024], "arul.ink": [2024], "alau.io": [2024], "doh.so": [2024], "jekyllrb.com": [20636], "lyssanews.com": [2024], "help.redbubble.com": [13721], "ederdrom.de": [5068], "ptrani.me": [2024], "cdn4.i-scmp.com": [15255], "lastlog.de": [9176], "pcgarage.ro": [21369], "fromorbit.com": [6201], "iiphighlights.state.gov": [17146], "*.eharmony.com": [19924], "jhf.tw": [2024], "espivblogs.net": [20023], "abc.tv": [2024], "wiki.t411.li": [15847], "vremya.yandex.com.ua": [18741], "blog.fusiondigital.io": [6256], "ovark.de": [2024], "tradeleaks.com": [16709], "man.com": [9947], "domaincamp.de": [4644], "connect2.northamptonshire.gov.uk": [21156], "lawdai.ly": [2024], "www.bbbonline.org": [1519], "mybbcentral.com": [10790], "www.keepkey.com": [20702], "glnfll.ws": [2024], "blogs.manageengine.com": [9951], "chwk.us": [2024], "usee.at": [2024], "www.sandilands.info": [14342], "brockh.at": [2024], "www.robinbarnard.com": [13979], "cfa.is": [2024], "www.123systems.net": [38], "technet.microsoft.com": [10396], "national.virginmedia.com": [17822], "static.nobelprize.org": [21147], "ondemand.manageengine.com": [9951], "peas.es": [2024], "autodiscover.student.oaklands.ac.uk": [21221], "p24.qhimg.com": [13347], "smssecure.org": [14201], "evnt.bz": [2024], "ah.pricegrabber.com": [13099], "rlcf.us": [2024], "refer.ml": [2024], "search.stalbans.gov.uk": [21974], "microster.pl": [10381], "westy.bz": [2024], "rule.tmall.com": [22222], "carswell.in": [2024], "ga.utam.me": [2024], "download.tvnz.co.nz": [15951], "uark.starfishsolutions.com": [21977], "mithic.al": [2024], "*.rsvp.com.au": [13526], "www.videopros.com": [17776], "websupport.at": [18188], "r24820222.sync.app.asana.com": [1265], "cdn.engine.phn.doublepimp.com": [4711], "forum10.hkgolden.com": [7058], "q1.qlogo.cn": [13355], "s.lf.io": [2024], "www.it.jhu.edu": [16370], "www.orxrdr.com": [12149], "blogs.un.org": [17057], "www.moztw.org": [10704], "waw.ipleak.net": [20571], "pbrts.com": [2024], "images.mydealz.de": [10800], "globalmarinenet.com": [6697], "go.con4pas.com": [2024], "www.matalan.co.uk": [10072], "kev2.link": [2024], "abend.co": [2024], "tracksne.ws": [2024], "valtiolle.fi": [17623], "bcge.ch": [20683], "go.orbi.im": [2024], "pmlo.co": [2024], "www2.sfu.ca": [14708], "www.pasteur.fr": [12480], "m.vevo.com": [17566], "wgshop.cdnvideo.ru": [19536], "litenog.net": [2024], "worklife.stanford.edu": [15448], "www.sharenice.org": [21797], "khj.me": [2024], "krazy.us": [2024], "10years.lifehacker.ru": [20836], "assetmanagement.holyrood.com": [20393], "p3.zdassets.com": [18905], "pardot.com": [12428], "store.unity3d.com": [17310], "*.subscribenww.com": [11308], "apoadhoc.de": [2024], "git.savannah.gnu.org": [6337], "gexpro.com": [6605], "articlehtml.hkgolden.com": [7058], "login.sina.com.cn": [14904], "mtck.co": [2024], "charmngrace.com": [2024], "photo.friday.ru": [20175], "moinmo.in": [10568], "8bbd.info": [2024], "www.ucollege.wustl.edu": [18089], "snl.com": [14206], "development.freebiblesoftware.com": [6115], "narno.co": [2024], "anderso.nu": [2024], "ahrenste.in": [2024], "de.xhamster.com": [18606], "bmcgastroenterol.biomedcentral.com": [1931], "mlpt.me": [2024], "findagrave.com": [5826], "asd.leeds.ac.uk": [17403], "quotes.beaglestreet.com": [1755], "lotusoriginals.com": [9625], "minavardkontakter.se": [10848], "synaesthesie.net": [15788], "wildfire.paloaltonetworks.com": [12378], "s.netzblau.de": [2024], "go.mediabox.lv": [2024], "finance.youku.com": [18804], "strasweb.fr": [15575], "thnkc.de": [2024], "csr.yahoo.co.jp": [18730], "chat1a.livechatinc.com": [9492], "workitout.vevo.com": [17566], "r.gmsousa.me": [2024], "bfern.co": [2024], "www.libraryebooks.co.uk": [20828], "tq.ma": [2024], "newsbbc.tk": [2024], "tinyteenpass.com": [16566], "enctr.co": [2024], "git.debian.org": [4263], "www.untappd.com": [17455], "short.vemo.in": [2024], "mccafetogo.mcdonalds.ru": [20941], "hdpp.ca": [2024], "www.icq.com": [7695], "account.aylesburyvaledc.gov.uk": [19291], "staticlive.douyucdn.cn": [4712], "www.smuxi.net": [15080], "tapad.app10.hubspot.com": [16017], "artsandsciences.osu.edu": [11797], "centralfield.com": [2961], "ecampus.no": [4875], "lab.alipay.com": [864], "reg.taobao.com": [16015], "tte.pw": [2024], "www.hideme.today": [7398], "www.umassulearn.net": [17353], "www.mosis.com": [9793], "cbt.im": [2024], "3dr.com": [171], "inglewood.illuminateed.com": [20494], "iplayerhelp.external.bbc.co.uk": [1524], "parking.dover.gov.uk": [4714], "*.factorydirectcabins.com": [5616], "health.admtyumen.ru": [19082], "speedrun.com": [15329], "carnegie.io": [2024], "d.parcyvall.com": [2024], "login.monster.com": [10602], "file1.answcdn.com": [1095], "chiefsblog.stanford.edu": [15448], "mak.es": [2024], "moed.us": [2024], "wiki.earthdata.nasa.gov": [10909], "fundersclub.com": [6239], "www.prospera.ca": [13207], "s.martvalja.com": [2024], "community.velaro.com": [17683], "f1.psbank.ru": [13231], "www.tweetamonial.com": [22330], "www.trybooth.com": [22299], "*.sigfig.com": [14836], "cdn-www.merethis.com": [10304], "bjf.me": [2024], "checktls.com": [3057], "ua-hosting.com.ua": [17160], "s.sportbox.ru": [21942], "press.pr.co": [13053], "sempf.me": [2024], "bldnk.co": [2024], "secure.wowinterface.com": [18484], "blau.de": [2079], "learningexchange.ptc.com": [21532], "casp.io": [2024], "isc2.sans.org": [14128], "static-cdn.ubuntu-de.org": [17175], "coursedirectoryproviderportal.org.uk": [19700], "kleyn.eu": [2024], "sh.enjoyb.fr": [2024], "fiber7.ch": [5756], "captive.v2ex.co": [17549], "r24820186.sync.app.asana.com": [1265], "ij.am": [2024], "on.fox47ne.ws": [2024], "blog.blackphone.ch": [2066], "secure.legolanddiscoverycentre.de": [9249], "wap.dating.sxnarod.com": [14698], "www.steadfast.net": [15512], "betclair.com": [7736], "sslvpn2.ntu.edu.tw": [11010], "scribd.com": [14475], "us-ads.openx.net": [12026], "prospectmagazine.co.uk": [13205], "zite.to": [2024], "xenobite.eu": [18653], "wavelength.asana.com": [1265], "services.hinckley-bosworth.gov.uk": [7415], "s75.cnzz.com": [3328], "at.sany.me": [2024], "vladimirskaya-obl.beeline.ru": [1778], "aq.chaucanh.net": [2024], "ryazan.rt.ru": [13529], "ius.io": [20608], "www.kinox.to": [20720], "guides.patronbase.com": [21358], "www.plastc.com": [12816], "rate-and.review": [2024], "widgets.yandex.kz": [18743], "southandvale-consult.objective.co.uk": [21225], "triph5.m.taobao.com": [16015], "anglomedia.net": [1059], "*.gomoxie.com": [10685], "kanal.squat.net": [21955], "semen.koptevo.net": [20749], "ssh.ocf.berkeley.edu": [17329], "i.sumotive.com": [2024], "xmpp.net": [18616], "nwk-buyiphone.apple.com": [1151], "ams.iu.edu": [8069], "e.newsela.com": [21125], "www.bauermedia.co.uk": [19329], "www.intrepidusgroup.com": [8296], "www.damnsmalllinux.org": [4123], "fuzeqna.com": [1435], "ibario.com": [7682], "jlstr.co": [2024], "www.lizdenys.com": [9533], "stats.junge-piraten.de": [8695], "www.mol.gov.sa": [14368], "www.stamus-networks.com": [21976], "scapsync.com": [14146], "www.movie2k.cm": [10674], "havant.gov.uk": [20347], "badgeville.com": [1630], "khm.uio.no": [17414], "billing.stablehost.com": [15423], "reports.keywee.co": [20705], "amadeu-antonio-stiftung.de": [954], "www.cahiersdedroit.fd.ulaval.ca": [17319], "romania.usembassy.gov": [22406], "it.seeus4it.com": [2024], "on.amviq.com": [2024], "ssl.hiconversion.com": [7389], "tropmedhealth.biomedcentral.com": [1931], "www.garfield.com": [6440], "s33.postimage.org": [13024], "wlot.us": [2024], "www.neomailbox.net": [11194], "protocols.nature.com": [11140], "codemilltech.com": [3354], "jgno.me": [2024], "bgrat.de": [2024], "careers.g4s.com": [20195], "s3.camelcamelcamel.com": [2787], "www.sciencemag.org": [14444], "go.vetxray.com": [2024], "stat100.ameba.jp": [971], "grbch.net": [2024], "mail2.alpenverein.de": [19159], "www.myoptimizerplus.com": [10856], "wiki.nwtime.org": [11306], "retro.auto.ru": [19276], "www.wincent.com": [18426], "americanhunter.org": [19188], "www.se-sy.org": [21761], "yearago.unian.net": [22369], "bookings.ibizarocks.com": [7899], "*.as.utexas.edu": [17371], "eu2.factorio.com": [20068], "forum.adf.ly": [577], "teclan.co": [2024], "tiw.al": [2024], "t.nsn.io": [2024], "static.localphone.com": [20866], "*.bpt.bz": [2383], "cascade.conted.ox.ac.uk": [17359], "halowaypoint.com": [7165], "sccvote.org": [14401], "snsbank.nl": [14207], "sharemenot.cs.washington.edu": [17376], "www.handbrake.fr": [7173], "account.newspaperdirect.com": [11387], "lt.cm": [2024], "m.nr.imhd.sk": [8004], "scrs.gc.ca": [2816], "www.fraudmetrix.cn": [20151], "*.clickbank.net": [3244], "www.geneva.unicef.org": [17069], "cor.bo": [2024], "www.netdna.com": [11227], "ldh.fr": [2024], "dcosta.me": [2024], "anonymousads.com": [1089], "mcjcinfo02.hkjc.com": [20384], "herbi.es": [2024], "www.skycure.com": [21853], "e.admaster.com.cn": [584], "www.forrester.com": [6026], "www.nature.org": [11141], "www.affutd.com": [742], "timashevsk.startsmile.ru": [21980], "www.faith.hku.hk": [20387], "caxi.am": [2024], "www.e-learning.uni-mainz.de": [17410], "sodahead.com": [15150], "coldvideo.karusel-tv.ru": [20690], "terezakis.im": [2024], "tracking.hubspot.com": [7599], "l.uakix.com": [2024], "jbuy.se": [2024], "u.veteplus.com": [2024], "ftpmirror.savannah.gnu.org": [6337], "ffxivrp.org": [2024], "tr3.gtimg.com": [6975], "www.digcoin.com": [4455], "images.gl.wupper.freifunk-rheinland.net": [20171], "www2.ual.es": [17162], "ashiato.rakuten.co.jp": [13594], "c-base.org": [2506], "affiliatetracking.com": [746], "modgov.waverly.gov.uk": [22538], "slice.mit.edu": [9763], "pushbullet.com": [13295], "www.torchlightgame.com": [16644], "m.tryreside.com": [2024], "m.gazeta.ru": [6460], "corporate.digitalriver.com": [4469], "www.byte.com": [8126], "haltestellenmonitor.vrr.de": [17954], "hellolife.net": [7296], "empflix.com": [5205], "j.surfads.com": [2024], "sazout.co": [2024], "l11.co": [2024], "www.airbnb.co.kr": [793], "allianz.com": [19151], "o2extra.cz": [16141], "secure.webdam.com": [18156], "www.sitetrustnetwork.com": [14941], "baikal-daily.ru": [19305], "www.komikz.ru": [20745], "www.gaos.com": [6890], "assets.web.sapo.io": [14130], "dl.4spins.com": [2024], "securusglobal.com": [14598], "comment.bilibili.com": [1904], "bengbu.jd.com": [8434], "adrion.me": [2024], "angel.co": [1057], "gfsnd.jt2k.com": [2024], "www.pcicomplianceguide.org": [12254], "os.inf.tu-dresden.de": [15937], "developers.onedrive.com": [11869], "www.portal.uni-muenchen.de": [9104], "autodiscover.illinois.edu": [17346], "bkgin.com": [2024], "seventorrents.org": [14695], "placeanad.courant.com": [19699], "www.1und1.de": [91], "www.defsounds.com": [4299], "tlug.jp": [16610], "gwinnettcounty.com": [7018], "www.bnymellonim.com": [19421], "nipte.ch": [2024], "my-direct.link": [2024], "blnk.st": [2024], "aas.is": [2024], "module.zdf.de": [22709], "scanningpens.co.uk": [14397], "status.okcupid.com": [11809], "ocean.ly": [2024], "ip.bitcointalk.org": [1987], "i2r.in": [2024], "bpos.xyz": [2024], "sharefilesupport.com": [14726], "store.mzstatic.com": [10893], "forum.skift.com": [21849], "mraz.co": [2024], "archaicbinary.net": [1190], "www.ub.uio.no": [17414], "kjuhsd.illuminateed.com": [20494], "connectu.re": [2024], "demo.nginx.com": [21133], "rik.nz": [2024], "email.1and1.com": [69], "openoffice.org": [1117], "api.audioboom.com": [19272], "rndmlrky.us": [2024], "ocwms.worldcat.org": [18536], "serverapi.arcgisonline.com": [1187], "cmis.hertsdirect.org": [7334], "flights.webjet.co.nz": [18219], "committees.williams.edu": [18408], "download.qidian.com": [13349], "u.openx.net": [12026], "detail.1688.com": [51], "carvi.ga": [2024], "www.skyscanner.nl": [15006], "blog.xtgem.com": [18688], "nl.pornworms.com": [12974], "www.masspirgedfund.org": [9725], "lady.tsn.ua": [22301], "serail.co": [2024], "ceg.osu.edu": [11797], "ffblg.com": [2024], "synthes.io": [2024], "www.betternet.co": [19360], "fr.ulule.com": [17224], "libraries.wakefield.gov.uk": [22518], "*.kaiserslautern.de": [8785], "test.ssltrust.us": [15415], "sunbelt.me": [2024], "tushino.com": [22315], "securecode.com": [10060], "jklt.co": [2024], "sharc.info": [2024], "*.newscred.com": [11367], "rossppd.us": [2024], "*.shockmedia.nl": [14772], "t.imehop.com": [2024], "wiki.se.inf.ethz.ch": [4966], "noteapp.com": [11560], "lhcdashboard-images.web.cern.ch": [2588], "bankofkazan.dengisend.ru": [4344], "b.eibrain.org": [2024], "blog.pardot.com": [12428], "www.office365.vutbr.cz": [17609], "grvc.us.es": [17502], "business.danskebank.dk": [4138], "photoshelter.com": [12673], "cdn.spacetelescope.org": [15275], "zwiebelfreunde.de": [19026], "digiret.co": [2024], "10antz.co.jp": [20], "ftlgame.com": [5598], "cars.unm.edu": [17073], "amnesty.fi": [1005], "bmel-durchblicker-redaktion.ble.de": [19406], "lock.cmpxchg8b.com": [2641], "irctc.co.in": [7814], "nowwhere.com.au": [21173], "roses.cbsm.at": [8782], "webtables.cryptohaze.com": [3864], "cache.btrll.com": [2339], "sec-i0.1und1.de": [91], "wiki.mondediplo.com": [10578], "8prin.info": [2024], "rvtra.de": [2024], "www.halle.fau.org": [5543], "cdn.katescomment.com": [8831], "www.smfta.com": [14199], "liftware.com": [9355], "amnesty.fr": [1006], "gtn.events": [2024], "disruptionlab.org": [4560], "offr.at": [2024], "loyal.ms": [2024], "www.cheezburger.com": [3060], "developer.act-on.com": [19054], "karty-kredytowe.money.pl": [10584, 10585], "l.suntravel.xyz": [2024], "blagoveshensk.europaplus.ru": [20034], "alpe.adenu.ia.uned.es": [17248], "ken.lu": [2024], "tcblome.link": [2024], "s.bs.sa": [2024], "smtp.york.edu": [18787], "myrem.co": [2024], "gmur.ph": [2024], "maillift.com": [9894], "sexy-de.com": [2024], "www.flagcounter.com": [20115], "assets-fusion.20mn.fr": [94], "pl.xhamster.com": [18606], "agoteasoc.com": [2024], "cn.earthvpn.com": [19934], "word.bz": [2024], "engage.intel.com": [8211], "adamb.ro": [2024], "www.emcraft.com": [5192], "nascis.hscic.gov.uk": [20435], "giving.umd.edu": [17351], "cryptanalysis.eu": [3843], "uppsite.com": [17480], "iso.500px.com": [205], "blog.mediacru.sh": [10183], "fb-assets.com": [6180], "ifolor.ch": [20488], "*.shop.royalmail.com": [14051], "law.resource.org": [13253], "link.4xd.co.kr": [2024], "www.bulletin.net": [2431], "posportal.com": [12311], "b105.co": [2024], "b.khaz.io": [2024], "to.dbsi-inc.com": [2024], "myhappyoffice.com": [10874], "a.slack-edge.com": [15008], "lkfn.illuminateed.com": [20494], "bktwtr.us": [2024], "users.wholefoodsmarket.com": [18360], "www.kkh-allianz.de": [8750], "wiley.be": [2024], "www.livechatinc.com": [9492], "*.bt.no": [1815], "mbronste.in": [2024], "url.zon.cl": [2024], "filebyid.com": [5783], "wpsy.co": [2024], "www.hardwarebug.org": [7197], "biteasy.com": [2016], "www.thepiratesbay.pw": [21522], "brgall.ml": [2024], "unanimis.co.uk": [17232], "judo.lemonde.fr": [9204], "*.campuspack.eu": [2799], "gsta.lt": [2024], "gaytimes.co.uk": [20212], "internap.com": [8253], "tapatalk.com": [16018], "jobs.cisco.com": [3165], "careernavigator.naukri.com": [11146], "feedbacklogin.xbox.com": [18639], "www.2kgames.com": [117], "crdx.us": [2024], "n.iice.co": [2024], "bevard.me": [2024], "chtp.co": [2024], "sb118.net": [2024], "f3d.it": [2024], "whistleblower.tv2.dk": [15946], "portal.geni.net": [6296], "tailfeather.twimg.com": [16949], "nepomuk.kde.org": [8735], "pfp.sina.com.cn": [14904], "music.cbc.ca": [2810], "on.gonefans.com": [2024], "lokalsystem-test.ub.uni-mainz.de": [17410], "lrnr.in": [2024], "www.nab.org": [10904], "manage.gigenet.com": [6638], "cjcjournal.biomedcentral.com": [1931], "dcm-ich.jp": [2024], "cc-uc.netease.com": [11228], "esper.net": [5350], "thesportbible.com": [22187], "ciifad.cornell.edu": [3676], "member.doteasy.com": [4697], "royalnavy.mod.uk": [14046], "merlin.oxfam.org.uk": [12221], "szshop.sueddeutsche.de": [15641], "apps.icard.uillinois.edu": [17034], "blogs.mcafee.com": [10129], "www.siliconrepublic.com": [14852], "cr8.link": [2024], "vc.church": [2024], "www.mbnet.fi": [9734], "jpldataeval.jpl.nasa.gov": [10909], "fnex.us": [2024], "pixel.tapad.com": [16017], "hokej.idnes.cz": [20483], "outlook.giphy.com": [6646], "on.elle.es": [2024], "goo.ee": [2024], "savannah.gnu.org": [6337], "wolfsonmicro.com": [18491], "r.yotta.net.br": [2024], "online.t-mobilebankowe.pl": [22076], "myfpt.net": [2024], "goldcre.st": [2024], "securetls.transperfect.com": [22278], "login.geant.org": [6292], "secserv.adtech.de": [691], "www.unblockbay.com": [22174], "s1.uczzd.cn": [17003], "abcusd.illuminateed.com": [20494], "corp.wamba.com": [18063], "store.drdobbs.com": [16086], "oskol.europaplus.ru": [20034], "mamp.info": [20916], "forr.com": [2024], "infoq.com": [8103], "dsp-us.link": [2024], "ptt.br": [12334], "*.nomadesk.com": [11500], "celebspirat.in": [2024], "act.ai": [2024], "vin.ai": [2024], "woot.com": [18514], "corpmail.otenet.gr": [12164], "ar.crowdin.com": [3823], "www.codepicnic.com": [3349], "ajm.link": [2024], "www.komplett.no": [8981], "go.kenlefeb.com": [2024], "yelp.co.uk": [18766], "callink.berkeley.edu": [17329], "images2015.cnblogs.com": [19631], "iaaf.wtf": [2024], "i.pickin.gs": [2024], "www.irex.org": [20579], "scrutinizer-ci.com": [21759], "guru3d.com": [7006], "*.netmng.com": [8156], "medals.bizrate.com": [2054], "wallet.rapida.ru": [13619], "login.citilink.ru": [19594], "1t.eu": [2024], "vc2.me": [2024], "c.pcs.baidu.com": [1641], "*.thankyou4caring.org": [16247], "www.pirateproxy.red": [21522], "affiliates.bigstockphoto.com": [1895], "epw.me": [2024], "subscribe.livingsocial.com": [9530], "groklearning-cdn.com": [6944], "openweb.or.kr": [12059], "monopoly.mcdonalds.ru": [20941], "mondrian.net.br": [2024], "jrowens.us": [2024], "cce.osu.edu": [11797], "on.wmur.com": [2024], "pics-photo.co": [2024], "qje.oxfordjournals.org": [12222], "south.land": [2024], "xmp.ro": [2024], "mygrp.co": [2024], "lstart.it": [2024], "smart-dsl.net": [21862], "www.national.com": [16225], "medatmich.org": [2024], "cardinalatwork.stanford.edu": [15448], "fs2.formsite.com": [20139], "ly.magliulo.org": [2024], "ro.boardgamearena.com": [2182], "docs.modx.pro": [21006], "gsma.at": [2024], "n1.sinaimg.cn": [14910], "affiliate.rakuten.co.jp": [13593], "methodk.it": [2024], "movienewsletters.net": [10682], "pads.subsignal.org": [15630], "give.berkeley.edu": [17329], "2017.ruguoapp.com": [21692], "*.nyantec.com": [21210], "www.datafile.com": [19765, 19766], "games.bet365.com": [1841], "beartful.co": [2024], "open.nlnetlabs.nl": [10980], "gi.lt": [2024], "teach1.today": [2024], "pocasi.blesk.cz": [2088], "m3.ifengimg.com": [20487], "schoeller.de": [11209], "www.beckerproxy.wustl.edu": [18089], "new.livestream.com": [9527], "update.rambler.ru": [13600], "aoe.com": [375], "jhbasics.com": [2024], "fftlive.org": [5558], "yoda.ygnition.com": [18770], "rugstudio.com": [14082], "x.mufasa.space": [2024], "www.nihms.nih.gov": [11090], "alpp.us": [2024], "314.buzz": [2024], "rebel.so": [2024], "grs.link": [2024], "media-thelab.cursecdn.com": [3927], "www.dea.com": [4251], "aspenphar.ma": [2024], "metro.yandex.kz": [18743], "my.southend.gov.uk": [15261], "services.adr.org": [19086], "telegram.org": [16146], "passets-cdn.pinterest.com": [12731], "bdl.baidu.com": [1641], "fpgis.uaa.alaska.edu": [17323], "x.hugo.pw": [2024], "seclab.stanford.edu": [15448], "divshot.com": [4573], "go.career.vn": [2024], "bfd.me": [2024], "opnsense.org": [11692], "stu.kundenserver42.de": [11319], "jrgn.nl": [2024], "upsrg.pw": [2024], "www.visitor.wustl.edu": [18089], "dapy.in": [2024], "adultplay.no": [2024], "utopia.ly": [2024], "mail2.anadolu.edu.tr": [1029], "sebs.to": [2024], "www.2600.com": [111], "tracks.www.zazzle.com": [18903], "on.cuong.me": [2024], "conscallhome.com": [3591], "upc.ie": [17082], "bdtweet.info": [2024], "r24820152.sync.app.asana.com": [1265], "support.lucidchart.com": [9654], "smb-strategy.tpprf.ru": [22260], "ye.1688.com": [51], "itex.ru": [20603], "compassislam.com": [3517], "www.codeclub.org.uk": [3352], "hlk.ag": [2024], "eyetechds.com": [5524], "slavyansk.tpprf.ru": [22260], "*.iproduction.com": [7809], "kurganinsk.tpprf.ru": [22260], "s.methylium.com": [2024], "blog.nodejs.org": [11492], "z4p.in": [2024], "secure.zenmate.com": [18917], "www.zap2it.com": [18886], "secure.serve.com": [14661], "voxility.com": [17944], "plan.gs": [15533], "blockstream.com": [2114], "www.glen-l.com": [20264], "semestriel.framapad.org": [6075], "srvy.nl": [2024], "npwf.info": [2024], "bcdi.me": [2024], "shop.bt.com": [1578], "wwwear.it": [2024], "monitoring-internal.stanford.edu": [15448], "cdn02.mir.afisha.ru": [19107], "gkz1.co": [2024], "*.anl.gov": [1212], "i.kabam.com": [2024], "laeditorialupr.com": [9129], "ordbogen.com": [12130], "documentup.com": [19861], "bconnected.berkeley.edu": [17329], "studienwuerdig.htwk-leipzig.de": [7596], "www.thegreatcourses.com": [16269], "*.switch.co": [15763], "askgareth.com": [2024], "js.stripe.com": [15594], "sketchthemes.com": [14972], "www.index.about.com": [19043], "pform.net": [12643], "go.ziqi.co.uk": [2024], "examideas.ml": [2024], "cgit.freedesktop.org": [6102], "kwndrl.in": [2024], "mathcircle.stanford.edu": [15448], "incandescent.xyz": [20518], "c.affil.walmart.com": [18059], "pc.realms.minecraft.net": [10452], "cultm.ac": [2024], "moodle.dkit.ie": [4032], "all-about-security.de": [890], "via.intercom.io": [8241], "www.tog.ie": [15909], "nowere.net": [21171], "sprt.ms": [2024], "wao.gov.uk": [22524], "s8n.us": [2024], "www.btcturk.com": [1587], "z1.sinaimg.cn": [14910], "www.socialcube.net": [15137], "instantarticles.fb.com": [5687], "mwl.li": [2024], "ultimate-guitar.com": [22359], "marketplace.eclipse.org": [5040], "www.ecustomeropinions.com": [4880], "on.viewing.nyc": [2024], "jmochon.info": [2024], "madmarx.espiv.net": [20021], "oi.sidwell.io": [2024], "cdn.bgr.com": [1541], "isbn13.info": [2024], "ifrk.ch": [2024], "neodrive.co": [11189], "media.msi.com": [9806], "static.gosuslugi.ru": [6835], "fandom.fashion": [2024], "www.thinkfaster.co": [16433], "tandridge-consult.objective.co.uk": [21225], "releases.gpgtools.org": [6348], "my.leeds.gov.uk": [20799], "automotive.linuxfoundation.org": [9427], "btrandol.ph": [2024], "pc-sicherheit.web.de": [18146], "jobs.ncsu.edu": [11531], "123secur.it": [2024], "downloads.xenproject.org": [18647], "toorcon.net": [16630], "www.engr.ncsu.edu": [11531], "3al.me": [2024], "enth.to": [2024], "media.glassdoor.com": [6683], "www.gearsourceeurope.com": [6465], "yoshi.to": [2024], "jen.to": [2024], "www.software-univention.de": [17315], "pjtv.com": [12292], "*.kryo.se": [9029], "fb.gamedom.net": [2024], "wkustore.com": [22603], "vid.alarabiya.net": [19131], "otk.ovh": [2024], "cc.chango.com": [3003], "ciweb.co.uk": [2024], "*.lumension.com": [9671], "www.sampelongbeach.org": [21727], "storywrite.com": [15570], "tath.co": [2024], "cccure.com": [2555], "bmedia.info": [2024], "*.theinternetco.net": [16369], "skoa.co": [2024], "ca.isidewith.com": [20466], "vimeo.freifunk.net": [6170], "jich.cz": [2024], "skw.gs": [2024], "insight.eastriding.gov.uk": [5006], "trx.so": [2024], "ini3.co": [2024], "www.airbnb.es": [793], "cex.io": [2600], "stkhb.de": [2024], "mail.sedo.com": [14604], "ebis.ne.jp": [5031], "stats.juliareda.eu": [8685], "joelikes.me": [2024], "yns.me": [2024], "pagano.events": [2024], "link.arvas.se": [2024], "teacherspensions.co.uk": [22105], "docs.webarch.net": [18204], "stateau.to": [2024], "kitapyurdu.com": [8934], "bfgmexi.co": [2024], "lifesafer.co": [2024], "onreiss.com": [2024], "s142.cnzz.com": [3328], "bgi.io": [2024], "nysuits.co": [2024], "h4nn.es": [2024], "darujme.ludialudom.sk": [9661], "www.lifehacker.ru": [20836], "passport.qidian.com": [13349], "evazils.com": [2024], "djp.pw": [2024], "www2.eduid.cz": [5087], "www.speeddl.com": [10134], "status.kuleuven.be": [8832], "c-bake.com": [2024], "frca.pcisecuritystandards.org": [12253], "www.webstaurantstore.com": [18250], "msng.gr": [2024], "gnucash.org": [6743], "icwe.se": [2024], "login.sourcefabric.org": [15248], "kwp.io": [2024], "upsd.io": [2024], "dom.bg": [4638], "wow.curse.com": [3927], "edit.staging.dol.gov": [19867], "*.khronos.org": [8889], "*.pcs.com": [12258], "r24617856.sync.app.asana.com": [1265], "www.endclothing.com": [19993], "antisocial.demozoo.org": [19808], "2big.org": [2024], "directory.web.cern.ch": [2588], "www.optimizely.com": [12107], "mdws.kscu.com": [8993], "oa.mondediplo.com": [10578], "fruit.jd.com": [8434], "s.xdroi.de": [2024], "w.flatme.it": [2024], "interhemd.de": [10322], "www.domeny.cz": [19874], "subscribeonandroid.com": [22025], "powerbuy.co.th": [13044], "rgu.permkrai.ru": [21390], "scandinavianphoto.no": [14394], "essia.co": [2024], "1001.ly": [2024], "my.carousell.com": [2870], "taco.visualstudio.com": [17872], "kyri.ba": [2024], "l.noxinbox.com": [2024], "enhu.dict.cc": [4442], "my.govmetric.com": [6850], "affiliate-b.com": [745], "piano-dev.kairo.at": [8782], "ershou.taobao.com": [16015], "lh5.google.*": [6821], "onre.at": [2024], "reys.me": [2024], "www.jabbi.pl": [8490], "20.play-asia.com": [12828], "codaye.tech": [2024], "s1.gwdang.com": [20327], "public.media.smithsonianmag.com": [15073], "myaccount.aber.ac.uk": [473], "go.ncsu.edu": [11531], "support.myrusakov.ru": [21068], "gumstix.com": [7003], "v-identity.com": [17547], "ivy.pconline.com.cn": [12263], "hpstr.co": [2024], "autodiscover.lubs.leeds.ac.uk": [17403], "jne.li": [2024], "citzn.in": [2024], "mypassword.dfs.un.org": [17057], "edge.halldata.com": [7164], "jpp.link": [2024], "www.sydsvenskan.se": [15776], "combp.ro": [2024], "w3.chaucanh.net": [2024], "iinfa.ru": [2024], "delivery.pizzahut.co.uk": [12786], "st2.gismeteo.ru": [6650], "drunkn.co": [2024], "vkontakte.ru": [17579], "a.stripecdn.com": [15595], "www.archsd.gov.hk": [7060], "demo.lighttpd.net": [9362], "ajuda.vodafone.pt": [17903], "www.bia2.com": [1866], "kermis.fm": [2024], "wcgc.news": [2024], "www.wetter.at": [11766], "gab.cookie.oup.com": [12224], "molcelltherapies.biomedcentral.com": [1931], "ubj.news": [2024], "diyrv.co": [2024], "negotiatingsalary.com": [11176], "jenkins-ci.org": [8565], "simplyhired.com": [14894], "www.bund.de": [17734], "squareoffs.co": [2024], "front3.ulule.com": [17224], "bluffm.ag": [2024], "ordnancesurvey.co.uk": [12132], "*.iisp.org": [7747], "www.hartvoorinternetvrijheid.nl": [7207], "vro.li": [2024], "hcnw.co": [2024], "earcu.com": [4862], "inclu2016.te-st.ru": [22103], "go.deliverydom.com": [19801], "www.heiseshop.de": [7288], "ithaca.edu": [8404], "bugs.scribus.net": [14478], "www.middlemanapp.com": [20978], "coverity.com": [3731], "kit.mondediplo.com": [10578], "faxian.youku.com": [18804], "www.bouncycastle.org": [2264], "scientific.net": [14447], "smo.in": [2024], "smo.io": [2024], "nxtjct.com": [2024], "soak.meldium.com": [10254], "spieldeslebens.sky.de": [14990], "lathatatlangyerekek.444.hu": [183], "tboo.bz": [2024], "url.pepbiz.biz": [2024], "mjs.sinaimg.cn": [14910], "wa.wipe.de": [22598], "sxott.com": [2024], "www.streetlink.org.uk": [22011], "bitstampede.com": [1979], "sciamdigital.com": [21748], "demo.webassign.net": [18150], "aziende.tiscali.it": [16572], "www.hertz.ca": [7340], "iplantcore.status.io": [21983], "thebrighttag.com": [2341], "thkr.us": [2024], "www.ticketingnetworkeastmidlands.co.uk": [16494], "shandong.jd.com": [8434], "www.hertz.ch": [7366], "www.hertz.cn": [7341], "api.accounts.firefox.com": [5842], "rdio.com": [13655], "cldb.de": [2024], "fra1.dl.elementary.io": [5150], "osd.im": [2024], "mobile.vtb24.ru": [22512], "sysadmins.ru": [22068], "www.hobocomp.com": [7447], "wsjstream.wsj.net": [18021], "stylese.at": [2024], "bs.to": [2459], "r24625115.sync.app.asana.com": [1265], "www.freechelsea.com": [6116], "s.prsir.co": [2024], "logo.refaktor.hu": [13773], "*.siteblindado.com": [14943], "gamesites.cz": [6418], "spectator.alarabiya.net": [19131], "www.discoveryplace.org": [4545], "artemis-ia.eu": [1254], "drbg.co": [2024], "provenance.org": [13216], "mtbo.ca": [2024], "img1.userscontent.net": [17522], "iheart.com": [7743], "nightlf.com": [2024], "www.33.cbsm.at": [8782], "adf.ly": [577], "secure.medleyads.com": [10213], "secure.security.nl": [14586], "travel.files.bbci.co.uk": [19332], "jobs.datacenterknowledge.com": [14893], "allianz-fuer-cybersicherheit.de": [900], "st.mycdn.me": [10866], "everymomentcounts.cancerresearchuk.org": [19501], "elbw.me": [2024], "kompany.com": [8980], "help-all.nike.com": [11440], "mail.quartztelecom.ru": [21563], "www.clarityray.com": [3215], "www.leicestershire.gov.uk": [9254], "go.shop.ca": [2024], "www.stayclassy.org": [15506], "clstrc.us": [2024], "www.hertsdirect.org": [7334], "on.depokita.com": [2024], "spicethy.me": [2024], "sugr.it": [2024], "allegro.pl": [897], "www.doodle.com": [4675], "idp.shibboleth.ox.ac.uk": [17359], "jbfit.co": [2024], "hp1d.nu": [2024], "apianalytics.com": [390], "ads.vidstore.com": [17763], "customersupport-prod.mcafee.com": [10129], "wms-eu.amazon-adsystem.com": [958], "secure.stage-gettyimages.co.nz": [6604], "ns.sascdn.com": [15049], "api.litmus.com": [9483], "biostars.org": [1939], "microblog.dunkelangst.org": [4795], "goldenline.pl": [6799], "telw.in": [2024], "spedlogswisstest.tocco.ch": [16600], "*.360cities.net": [143], "jfrank.us": [2024], "superbabyo.nl": [2024], "static4.uk.businessinsider.com": [2471], "zen.co.uk": [18913], "www.ixit.cz": [7881], "medschooldiversity.wustl.edu": [18089], "www.linear.enterprises": [20843], "newyork.gumtree.com": [20323], "apps.1688.com": [51], "s.darrenoia.com": [2024], "www.opendns.com": [11969], "loveletters.boston.com": [2252], "www.charter.com": [3026], "lld.llvm.org": [9103], "grpcemx.org": [2024], "lvox.co": [2024], "www.pagefair.com": [12358], "x.carib.pro": [2024], "go.dbox.us": [2024], "api.map.baidu.com": [1641], "ballotready.org": [1655], "pdadb.net": [12531], "www.johnlewis.ie": [8625], "www.torrentbutler.eu": [16649], "tps.tips": [2024], "trafohou.se": [2024], "www.wifiwx.com": [18378], "sysys.axosoft.com": [1504], "bit.9kp.de": [2024], "www.sky.com": [14989], "cdn.torrents-time.com": [22246], "kopgl.as": [2024], "www.fr.ch": [22061], "forms.sign-up.to": [14842], "www.libanswers.com": [9301], "www.bitcointalk.org": [1987], "www.eaglerockreservation.org": [4996], "dexinzhai.tmall.com": [22222], "v-g.eus": [2024], "www.demandprogress.org": [4328], "uploads.www.theplatform.com": [16308], "www.searchcode.com": [14506], "above.com": [486], "plusone.google.com": [6818], "www.pfennigparade.de": [12639], "ibank.finam.ru": [20099], "vora.cc": [2024], "i.lav.im": [2024], "job.beeline.ru": [1778], "healthnet.com": [20360], "yee.land": [2024], "s.thblvrd.nl": [2024], "dtnav.nal.usda.gov": [17299], "ittfwb.cool": [2024], "globalclimatemarch.org": [6718], "www.asia.citibank.com": [3174], "blnk.it": [2024], "darkha.xyz": [2024], "v-sports.link": [2024], "kouio.com": [9008], "www.hd-bits.com": [7247], "temp.my.nih.gov": [11090], "doimporter.asana.com": [1265], "bingo.nu": [2024], "www.osdc.com.au": [11703], "004d7f9a-3e37-6fbb-1fa0-32122b639810-rum.cdnvideo.ru": [19536], "my.leadpages.net": [9209], "dfblog.iweb.co.uk": [20616], "docs.univention.de": [17315], "m.terbaru.co.id": [2024], "*.ezimg.it": [4994], "licensing.kirklees.gov.uk": [8929], "iview.hscic.gov.uk": [20435], "www.mysciencework.com": [10826], "eios.us": [2024], "jobs.cityoflondon.gov.uk": [3192], "castroloft.com": [2024], "pter.me": [2024], "ffaus.co": [2024], "ke.fandom.id": [2024], "blkfth.rs": [2024], "scoutapark.co": [2024], "idfpr.com": [7968], "url.memy.cz": [2024], "secure.kreativmedia.ch": [9020], "payments.basildon.gov.uk": [19324], "fuelpl.us": [2024], "ratanagiri-163c.kxcdn.com": [13632], "352.fm": [2024], "go.romk.im": [2024], "mycloud.rackspace.com": [13566], "data.aliyun.com": [868], "static.shortoftheweek.com": [21813], "www.cryptome.org": [3869], "cdsurl.co": [2024], "www.cinnamon-look.org": [3152], "jrd.im": [2024], "techservices.illinois.edu": [17346], "online.westernunion.com": [18310], "mail.freecycle.org": [6138], "m.ond.tue.nl": [15940], "12free.de": [2024], "shr.25k.it": [2024], "*.hp.com": [7379], "on.kobi5.com": [2024], "cocubes.com": [3332], "*.helsinki.fi": [17343], "gji.49gov.ru": [187], "pope.works": [2024], "txpr.de": [2024], "merc.ht": [2024], "events.kde.org": [8735], "nom.gy": [2024], "www.tdc-wholesale.com": [15862], "smclaw.tv": [2024], "informahealthcare.com": [8122], "nbzp.cz": [2024], "widget.shopstyle.co.uk": [14780], "mvp.government-nnov.ru": [20295], "wikifur.com": [18382], "on.varmag.com": [2024], "ie.norton.com": [11545], "liquid.pirateparty.gr": [21419], "sharerepo.com": [14728], "wwii.cc": [2024], "go.theregister.co.uk": [22182], "consult.environment-agency.gov.uk": [20006], "www.pressreader.com": [13081], "xtips.co": [2024], "seabags.me": [2024], "learnquery.infinum.co": [20526], "its.hkuspace.hku.hk": [20387], "go.pub2srv.com": [21534], "emarketing2.1and1.com": [69], "fres.ca": [2024], "visit.bicos.be": [2024], "ws-24.de": [2024], "*.investingchannel.com": [8314], "plugins.gitbook.com": [6655], "fotovs.com": [2024], "cdn.grahamcluley.com": [6870], "sort.symantec.com": [15780], "portal.unwire.dk": [17461], "admin.cj2.nl": [2629], "store.calchamer.com": [2740], "fileformat.info": [5776], "18.mvd.ru": [21055], "gkre.co": [2024], "bill.sibttk.ru": [21823], "m.icetravel.xyz": [2024], "op.is.nl": [2024], "cmstool.youku.com": [18804], "edv.my": [2024], "wildtravl.com": [2024], "team-cymru.org": [16064], "e-mail-made-in-germany.de": [4836], "zenhub.io": [22713], "supplier.carters.com": [2878], "playstation.sport-express.ru": [21941], "risney.net": [2024], "www.urhome.umd.edu": [17351], "courses.erc.edu": [4941], "apri.re": [2024], "packages.debian.org": [4263], "donate.fsf.org": [5590], "my.domoticz.com": [4668], "www.psc.edu": [12329], "blpc.bl.uk": [2358], "www.smefund.tid.gov.hk": [7069], "bg.gy": [2024], "yaroslavskaya-obl.beeline.ru": [1778], "nnm-club.me": [10982], "www.tickerassist.co.uk": [10389], "www.youtube.sk": [18800], "www.idearcmedia.com": [15679], "freepress.intel.com": [8211], "yunos.tmall.com": [22222], "svn.sv.gnu.org": [6337], "www.verkaufen.ch": [22443], "cj.com": [3484], "www.illustre.ch": [20495], "atlas.sk": [19269], "pkg.jenkins.io": [20638], "gucms-ui.georgetown.edu": [6531], "bnds.me": [2024], "ftp.fau.de": [17396], "usa.gov": [17110], "respekt.cz": [21635], "*.uni-wuerzburg.de": [17261], "xservers.ro": [22643], "www.baldershage.se": [1650], "enyc.co": [2024], "link.omd.com.br": [2024], "admin.trancebase.fm": [22270], "media.sailthru.com": [14304], "facebookcorewwwi.onion": [5610], "gamesports.net": [6401], "cdnstatic.reuters.tv": [21640], "afe.specificclick.net": [15314], "www.wahiduddin.net": [18043], "ideastorm.com": [7930], "citilink.ru": [19594], "register.state.gov": [17146], "assets.virginmedia.com": [17822], "scu.re": [2024], "nulleuro.yesss.at": [18769], "ftp.motoslave.net": [21027], "pngfd.tk": [2024], "beylegion.co": [2024], "www.cfif.org": [2955], "perel.eu": [17685], "wiki.kuleuven.be": [8832], "www.u-f.ru": [22336], "oesrc.researchcompliance.vt.edu": [17825], "shaw.ca": [14748], "www.ciclops.org": [2614], "devdocs.io": [4404], "hwh.jp": [2024], "cavfarms.ca": [2024], "licensing.rbwm.gov.uk": [21597], "savercards.hertsdirect.org": [7334], "vk.com": [17578], "tokenly.com": [22229], "pub.cookie.oup.com": [12224], "www.admissionsonline.norfolk.gov.uk": [21154], "tracking.reiner-sct.com": [13808], "kell.gg": [2024], "ecni.me": [2024], "s.buzzfeed.com": [2489], "clic.sc": [2024], "balashikha.beeline.ru": [1778], "taw.kn": [2024], "1fichier.com": [79], "m.jalles.co": [2024], "mail4.hkgolden.com": [7058], "kk.dk": [8748], "bit.glu.com": [2024], "vxcom.duoshuo.com": [19906], "m.capitalone.com": [2831], "capatholo.gy": [2024], "metrics.stellaservice.com": [14253], "server3.web-stat.com": [18143], "autodiscover.riverbed.com": [13964], "zrom.tk": [2024], "jive.cc": [2024], "royalvoluntaryservice.org.uk": [21682, 21683], "www.nintendoworldreport.com": [11459], "u.briza.co.uk": [2024], "skepticalscience.com": [14971], "nspe.es": [2024], "u.funshop.co.kr": [2024], "links.is": [2024], "static.magento.com": [9868], "www.kontalk.org": [8990], "www.telford.gov.uk": [22121], "xprs.it": [2024], "www.valvesoftware.com": [17636], "statuschecker.fgdc.gov": [20084], "www.conformal.com": [3575], "steeljoi.st": [2024], "www.testequipmentdepot.com": [16218], "calendar.yahoo.co.jp": [18730], "codin.me": [2024], "v1de0.tk": [2024], "goodzer.com": [6816], "youtube.es": [18800], "dsxn.de": [2024], "mobile.si.edu": [2024], "www.handsomecode.com": [7179], "support.wattpad.com": [18103], "on.airou.de": [2024], "www.internews.org": [8288], "bdesk.in": [2024], "hbb.me": [2024], "www.piraten-ufr.de": [12751], "shareideas.parature.com": [12425], "grants.nih.gov": [11090], "newse.la": [2024], "p1.qhimg.com": [13347], "www.bahnshop.de": [1640], "sec.gov": [17104], "www.nra.org": [21177], "elastic.co": [5131], "pwn.skee.me": [2024], "sportrevue.isport.blesk.cz": [2088], "go.ccpm.com": [2024], "jwp.cc": [2024], "kazan.psbank.ru": [13231], "centena.ro": [2024], "developer.xamarin.com": [18629], "stanford25blog.stanford.edu": [15448], "economist.com": [5052], "stat.ntv.ru": [21197], "kemerovo.europaplus.ru": [20034], "detne.ws": [2024], "steg-electronics.ch": [14252], "london.gov.uk": [9590], "www.traintimes.org.uk": [16731], "www.lung.ca": [2808], "tbb.link": [2024], "webhost4life.com": [18163], "secured.sandbag.uk.com": [14339], "m01.eu": [9705], "suntech.cz": [22034], "www.thepirate.pw": [22174], "ig.red.paris": [2024], "les.pp.ua": [2024], "mrph.us": [2024], "www.diskusjonsforum.uio.no": [17414], "*.myspace.com": [10888], "www.the-i.de": [22139], "www.magnetsearch.org": [22174], "r.inkhotels.com": [2024], "scheduler.here.com": [7325], "vispashop.com": [17867], "track.brighteroption.com": [2346], "buddybuild.com": [19467], "bmcmicrobiol.biomedcentral.com": [1931], "www.directbox.info": [4517], "forum.www.radartv.nl": [13569], "i.fameal.com.ar": [2024], "demo-merchant.xsolla.com": [18685], "shop.infinet.com.au": [8096], "gamersfirst.com": [6414], "erdv.co": [2024], "zabmedia.ru": [22704], "mrbr.gr": [2024], "st.lacasta.jp": [2024], "difficulties.de": [19834], "www.debuggify.net": [4267], "resources.kairo.at": [8782], "dvrx.eu": [2024], "southwark.greenparty.org.uk": [6908], "kinderze.lt": [2024], "angrybir.de": [2024], "www.aclukansas.org": [299], "guest.cvent.com": [3941], "djmsc.nl": [2024], "ddc.cr": [2024], "www.topfox.co.uk": [16634], "croak.eu": [2024], "nosh.cc": [2024], "f4az.us": [2024], "git.hackerspace.pl": [7136], "jrv.is": [2024], "volodymyr.lanet.ua": [20780], "fileshare.symantec.com": [15780], "tracking-point.com": [16705], "flickr.tumblr.com": [16897], "order.freezone.co.uk": [6165], "*.kayako.com": [8841], "ca.reuters.com": [13893], "dgbf.li": [2024], "success.mindtouch.com": [10445], "www.wpp.com": [18014], "gremlin2.bakerlab.org": [1646], "27.mvd.ru": [21055], "kundarea.wopsa.se": [18515], "job.oschina.net": [11702], "widgets.amazon.cn": [19168], "mygoldencharter.co.uk": [6797], "www.crossorigin.me": [19724], "www.tracfone.com": [16699], "benw.co": [2024], "mjm.us": [2024], "groznyy-realty.rambler.ru": [13600], "docs.servicenow.com": [14682], "www.stgeorges.nhs.uk": [10953], "freebieber.org": [5769], "linuxjournal.com": [9444], "casa.q-assets.com": [21551], "*.sfdcstatic.com": [14311], "gmoregistry.com": [6326], "engine.phn.doublepimp.com": [4711], "www.khabkrai.ru": [20709], "reep.oxfordjournals.org": [12222], "www.mansfield.osu.edu": [11797], "partner.uk.gigabyte.com": [6628], "*.dot5hosting.com": [4685], "manchester.gov.uk": [9954], "chat.jd.com": [8436], "beastnode.com": [1763], "www.anonymouse.me": [1090], "randstadsr.com": [2024], "s1.pimg.tw": [12709], "cpementalhealth.biomedcentral.com": [1931], "blogs.cpanel.net": [2667], "portuguese.101domain.com": [14, 15], "www.huboard.com": [20443], "fstools.macosforge.org": [9835], "*.bbb.org": [1852], "grey.qidian.com": [13349], "stellaservice.com": [14253], "www.ort.fi": [15675], "computeruniverse.net": [3543], "health.khabarovskadm.ru": [20708], "weike.taobao.com": [16015], "kaliningrad.beeline.ru": [1778], "sidearmsports.com": [14824], "assets.resultspage.com": [13875], "www.citra-emu.org": [19597], "www.ch-open.ch": [19554], "cur8.com": [2024], "nqs.nice264.com": [11422], "cardiff.squat.net": [21955], "mdcus.com": [9741], "snkrdstrct.com": [2024], "my.thephone.coop": [16418], "rcfs.oxfordjournals.org": [12222], "laird.xyz": [2024], "labintel.dsi.cnrs.fr": [6174], "afip.gob.ar": [19105], "tierhe.im": [2024], "openmp.llvm.org": [9103], "www.chinafile.com": [19581], "git.tasktools.org": [16034], "exchange.permkrai.ru": [21390], "s.manga-lib.pl": [2024], "reverseip.domaintools.com": [4653], "u.kmp.me": [2024], "*.wiggle.co.uk": [18380], "www.trustedcomputinggroup.org": [16862], "apk91.ml": [2024], "www.mir-politika.com": [20991], "d.dc121677.com": [19777], "www.mijnsimpel.nl": [21829], "*.crimecommission.gov.au": [1411], "www.newyorkneedsyou.org": [11353], "asset-c.soupcdn.com": [15236], "sd.zyxel.ru": [22734], "www.peniaze.sme.sk": [14198], "mozshot.nemui.org": [21102], "eyenov.at": [2024], "www.dxtorrent.com": [4810], "showroom.adform.com": [639], "www.amnesty.tw": [1017], "secure1.store.apple.com": [1151], "binary.getdigital.de": [6594], "adamj.me": [2024], "mail.masilla.org": [20929], "developers.slashdot.org": [15012], "www.apc.org": [1318], "mate-desktop.info": [9727], "blake.mn": [2024], "www14.pipni.cz": [12287], "www.malwaredomainlist.com": [9942], "portal.vitelity.net": [17882], "nraringoffreedom.com": [21186], "l.pixsheep.com": [2024], "www.hugedomains.com": [7605], "morningstaronline.co.uk": [10634], "apps.lenovo.com": [9267], "www.demandbase.com": [4324], "l.domjg.com.ve": [2024], "www.barclaycard.co.uk": [1690], "colinize.me": [2024], "l.k7add.com": [2024], "mail.sudact.ru": [22027], "legaci.de": [2024], "secure.admin.illinois.edu": [17346], "tlsupr.info": [2024], "gdo-sns.jp": [2024], "mrge.us": [2024], "*.trauer.de": [16763], "www.elderscrolls.com": [18928], "www.celartem.com": [2939], "auth.brightidea.com": [2347], "g-ro.co": [2024], "www.joycasino.com": [20654], "go.artylabs.com": [2024], "static.goexplore.net": [6759], "www.thedailygreen.com": [7269], "yoel.co": [2024], "ww129.smartadserver.com": [15049], "digital.nhs.uk": [10953], "assets.getapp.com": [20238], "boulder.swri.edu": [15265], "gruss-u.info": [2024], "api.url2png.com": [17498], "r420.co": [2024], "www.med.stanford.edu": [15448], "bmvis.co": [2024], "cepa.stanford.edu": [15448], "dannymekic.com": [4137], "blogs.thomsonreuters.com": [16456], "book.km.com": [20738], "bdbm.tv": [2024], "penic.uk": [2024], "forum.silkroad.ws": [14857], "ymcastlouis.org": [18709], "jobs.voxmedia.com": [17941], "ws4.bakerlab.org": [1646], "front-admin.voyage-prive.it": [17947], "ta3m.al": [2024], "sltr.me": [2024], "ribs.mx": [2024], "lonniedos.com": [2024], "www.irknet.ru": [20581], "promo.ots-net.ru": [21309], "ssusa.org": [21965], "*.outwit.com": [12181], "albertathome.org": [5115], "wiki.opendnssec.org": [11970], "c5.nrostatic.com": [21189], "client.stage.qrator.net": [21562], "a.agentoink.uk": [2024], "www.elsevierhealth.com": [5179], "casalink.nl": [2024], "www.greensmoke.com": [6911], "nassau.usembassy.gov": [22406], "www.clickssl.com": [3252], "url.pcheaven.eu": [2024], "bt.mcubed.gr": [2024], "media.giphy.com": [6646], "gass.ph": [2024], "autodiscover.ya.ru": [18716], "static.dingtalk.com": [19842], "video.cartercenter.org": [2877], "exchange.1and1.co.uk": [71], "git21.rostrud.ru": [21677], "democracy.islington.gov.uk": [8384], "www.weatherspark.com": [18131], "go.arkm.de": [2024], "www.amazontrust.com": [964], "erhvervkundeservice.tdc.dk": [15862], "ice2.org": [2024], "www.gotlandring.com": [6838], "i.tgu.ca": [2024], "cdn.cloudfiles.mosso.com": [10645], "io-test-gw.vutbr.cz": [17609], "mail.ntmx.de": [11594], "via.kye.io": [2024], "ninite.com": [11456], "perez.ly": [2024], "cab.siberianet.ru": [21821], "my.segpay.com": [14618], "bcpd.x7y24z365.com": [2142], "slipta.lk": [2024], "lbam.co": [2024], "3d.xkcd.com": [22652], "maxn.us": [2024], "lyncmeet.dfs.un.org": [17057], "minfin.gov-murman.ru": [20293], "*.webmail.pair.com": [12365], "myzeen.ml": [2024], "bizwww.play-asia.com": [12828], "oxmhj.biligame.com": [1903], "kalveboderne-rundt.hvidovrekajakklub.dk": [7641], "danluu.com": [19755], "ww299.smartadserver.com": [15049], "www.blogs.fau.de": [17396], "r1.calamida.ch": [2024], "affiliate.sky.de": [14990], "hatne.ws": [2024], "www.zeromq.org": [18944], "www.html5video.org": [7097], "web.pcbsd.org": [12247], "trav.es": [2024], "suppliers.bezeq.co.il": [19362], "pocasi.idnes.cz": [20483], "richmond-consult.objective.co.uk": [21225], "set.io": [14691], "wtec.us": [2024], "ngtr.uk": [2024], "*.world-television.com": [18549], "probmods.org": [13165], "bigstockimages.com": [1895], "dev.0xdb.org": [10], "wilmu.edu": [18411], "go.wlsa.news": [2024], "trysgb.com": [2024], "joo.bz": [2024], "biotech.nature.com": [11140], "media.boingboing.net": [2197], "volunteering.oxfordshire.gov.uk": [21326], "payments.sccgov.org": [14401], "portugues.witness.org": [18472], "thumbs.xmarks.com": [18671], "www.idnet.net": [7710], "s32.postimg.org": [13024], "de.malwarebytes.com": [9940], "cdn.dota2lounge.com": [4692], "mspp.georgetown.edu": [6531], "newsletter.refresher.sk": [13781], "www.purduealum.org": [13277], "*.ehow.com": [19926], "schwarzerkanal.squat.net": [21955], "tucd.co": [2024], "krasnoe-na-volge.beeline.ru": [1778], "docserver.yanao.ru": [22665], "rewards.dbs.com": [4001], "f.mfcimg.com": [20972], "detail.play-asia.com": [12828], "campaign.odw.sony-europe.com": [15211], "www.dhsspsni.gov.uk": [19828], "blog.lizardwrangler.com": [9534], "www.hcia.cms.gov": [19630], "a21.tv": [2024], "channelink.xo.com": [18623], "signup.active24.de": [19063], "davidshar.es": [2024], "kirjoitusalusta.fi": [8928], "c.fastcompany.net": [5670], "login.fronter.com": [20179], "web31.play-asia.com": [12828], "login.thesun.ie": [22189], "wfvv.eu": [2024], "qry.ca": [2024], "www.bbthat.com": [19336], "pluralsight.com": [21441], "spark-summit.org": [15287], "thepiratebay.webypass.xyz": [21524], "*.discovermagazine.com": [4535], "dev.snip2code.com": [15100], "mathsys.aalto.fi": [447], "unpac.org": [17231], "lgbtnet.org": [20825], "rt.nuug.no": [11017], "fragmcd.de": [2024], "tchouk.ch": [2024], "b0.jrnl.ie": [20656], "www.or.is": [21289], "mjh.fyi": [2024], "www.xelerance.com": [18644], "thewi.uk": [2024], "semalimentos2014.unizar.es": [17441], "icsidreview.oxfordjournals.org": [12222], "dropid.tk": [2024], "nbld.us": [2024], "ostagram.ru": [12160], "www.lolnet.org": [9580], "gudly.axosoft.com": [1504], "antifascistnetwork.org": [19208], "mail.receivefreesms.net": [21607], "finanse.money.pl": [10585], "mail.muslimissues.com": [10763], "ete.buzz": [2024], "minec.gov-murman.ru": [20293], "static-promo.citilink.ru": [19594], "batmanarkhamknight.com": [1716], "shutme.in": [2024], "l1s.it": [2024], "freemium-cdn.appadvice.com": [1143], "sxd.co": [2024], "t.h.is": [2024], "h4ckr.us": [2024], "ssl.bing.com": [1926], "electroscience-new.engineering.osu.edu": [11797], "secure.vend-o.com": [17695], "y3.ifengimg.com": [20487], "hipchip.me": [2024], "fxbnk.ca": [2024], "www.rcpmag.com": [13464], "*.wikifur.com": [18382], "research.visa.com": [17846], "*.infinitysystems.com": [7200], "image.emails.thewarehouse.co.nz": [16425], "c13.cl": [2024], "conferencemanager.dk": [19666], "*.vcomstatic.com": [17802], "amp.to": [2024], "snipbfp.org": [2024], "agentportal.westernunion.com": [18310], "www.informationweek.com": [8126], "images.politicopro.com": [12920], "gihyo.jp": [6642], "www.in-the-sky.org": [8031], "prfctennis.com": [2024], "gorod.yandex.by": [18739], "www.ozbargain.com.au": [12227], "chicbyshay.in": [2024], "clavardage.videotron.com": [17787], "www.itpc.uillinois.edu": [17034], "spirit.com": [15348], "projects.csail.mit.edu": [9763], "*.likes.com": [9366], "mail.atlas.sk": [19269], "go.intphoto.co": [2024], "1u1s.de": [90], "feminfo.444.hu": [183], "www.reflex.cz": [13777], "sunite.jd.com": [8434], "focusatwill.co": [2024], "js.hubspotqa.com": [7600], "d.fastcompany.net": [5670], "xiaozhao.wx.cmbchina.com": [2639], "*.hostmonster.com": [7544], "cdn.heapanalytics.com": [7268], "ut.ee": [17148], "l.1gf.pw": [2024], "chatsexo.co": [2024], "m.hava.yandex.com.tr": [18740], "shenka.95516.com": [248], "drvtht.pw": [2024], "order.zen.co.uk": [18913], "status.appuio.ch": [1168], "cast.google.com": [6818], "badgekit.org": [1629], "actioncenter.unicefusa.org": [17070], "wap.golem.de": [6804], "s19.postimg.org": [13024], "www.pop.com.br": [12309], "qlroo.co": [2024], "cdn.sencha.io": [14637], "water.lp0.eu": [9648], "dnld.lime-technology.com": [20841], "immrs.in": [2024], "legco.tv": [2024], "login.proxy.library.georgetown.edu": [6531], "odc.officeapps.live.com": [9495], "esc.edu": [5207], "tw.xxxxx.tw": [2024], "mediabistro.com": [10182], "m.mbank.sk": [9733], "etrtbb1.smartstream.tv": [15064], "mychasetek.com": [2024], "forums.solydxk.com": [21898], "www.unblockthepiratebay.net": [22174], "admissions.warwickshire.gov.uk": [22532], "www.tpc.com": [15914], "mdsi.us": [2024], "bitmarket.pl": [1963], "www.websitealive7.com": [18242], "tyumen.beeline.ru": [1778], "l.giyf.in": [2024], "lnk.kippnyc.org": [2024], "www.bitbay.net": [1954], "envato.com": [5294], "fbz.co": [2024], "ssl.atbar.org": [425], "mwcb.in": [2024], "resourcecentre.techweekeurope.co.uk": [11238], "ln.doitwell.tw": [2024], "ceonex.com": [2969], "naeem.cc": [2024], "cublinux.com": [19740], "img.rasset.ie": [13631], "f-ox.co": [2024], "nhktest.tocco.ch": [16600], "login.constantcontact.com": [3594], "www.wageningen.nl": [11172], "animefigures.co": [2024], "brnd.it": [2024], "dvbook.plus": [2024], "iop.org": [8196], "forum.backbox.org": [1621], "s.hatyati.jp": [2024], "reclog.jp": [13702], "connect.charterbusiness.com": [3028], "hipertextual.com": [20378], "www.comodogroup.com": [3507], "iot.open.qq.com": [13329], "de.topshop.com": [22238], "www.damtp.cam.ac.uk": [17332], "repo.magento.com": [9868], "ricardoshops.ch": [13924], "tcreativo.es": [2024], "fedgeno.com": [5715], "tchibo.com.tr": [16050], "umonitor.com": [17056], "heslo.centrum.sk": [19548], "blogs.lshtm.ac.uk": [9588], "emh.cc": [2024], "8to.me": [2024], "dev.iphoneincanada.ca": [8340], "www.devilteam.pl": [4411], "eumostwanted.eu": [20031], "phto.play-asia.com": [12828], "www.bundespublikationen.admin.ch": [22061], "gazbank.a-3.ru": [258], "usrportage.de": [22411], "post.cz": [14705], "w-u-p.com": [2024], "img.inkfrog.com": [8149], "orenburg-realty.rambler.ru": [13600], "conny.co": [2024], "post.cr": [2024], "linuxfr.org": [9425], "glasgow.life": [2024], "www.sumologic.com": [15658], "support.zattoo.com": [18900], "www51.jimdo.com": [8586], "*.withgoogle.com": [18470], "post.ch": [12996], "www.happyfoto.cz": [7193], "thesims3.com": [5141], "url.makeawe.so": [2024], "piwik-hal.ccsd.cnrs.fr": [6174], "j.umomoking.com": [2024], "edibleco.de": [2024], "soco.ps": [2024], "abs.ispsystem.com": [20590], "developer.spotify.com": [15367], "*.chalmers.se": [2993], "flvrprnt.co": [2024], "*.kobobooks.it": [8962], "icon.unicef.org": [17069], "dona.st": [2024], "mx.redhat.com": [13735], "dev.onedrive.com": [11869], "boyr.it": [2024], "wpn.wizards.com": [18477], "d.ncs.pw": [2024], "go.caio.tv": [2024], "webhostinggeeks.com": [18199], "radio.ualinux.com": [22340], "mabris.co": [2024], "shareit.com": [14731], "alumni.uvm.edu": [17154], "ws-na.assoc-amazon.com": [1312], "whiskeyice.co": [2024], "go.shr.lc": [2024], "*.nokiasiemensnetworks.com": [11499], "www.prestashop.com": [13085], "dyhu.co": [2024], "community.okta.com": [11814], "pa.tedcdn.com": [15871], "orenburg.europaplus.ru": [20034], "s0.percona.com": [12589], "vmcdn.de": [17893], "albennet.com": [826], "update.openmpt.org": [11987], "v4c.org": [22420], "1.heartotr.com": [2024], "u1.sinaimg.cn": [14910], "extranet.um.baden-wuerttemberg.de": [19302], "cygnus.cc.kuleuven.be": [8832], "sailplay.cdnvideo.ru": [19536], "postimage.io": [13024], "m.turkish.alibaba.com": [857], "philc.us": [2024], "signup.nj.com": [10971], "www.sivers.org": [14955], "portrait8.sinaimg.cn": [14910], "emblem.cancer.gov": [2819], "rhk.today": [2024], "pxl.ie": [2024], "psy.pub": [2024], "www.fdf.org.uk": [5552], "f150.ws": [2024], "*.etrade.com": [5379], "cpix.tv": [2024], "news.marvel.com": [10047], "becoquin.com": [1748], "idp.scc.kit.edu": [8812], "mouseflow.nl": [10664], "collect-eu-central-1.tealiumiq.com": [16060], "gunowners.me": [2024], "www.11main.com": [31], "storenvy.com": [15563], "vladimir.startsmile.ru": [21980], "websitesettings.com": [18245], "windows.mouselike.org": [16141], "franceinter.fr": [20147], "www.digitalmars.com": [4479], "rt.active24.cz": [19062], "jadu.net": [8502], "www.bter.com": [2401], "briteb.in": [2024], "davaug.com": [2024], "myhomephone.primus.ca": [13112], "www.umftgm.ro": [22364], "mail-01.uformia.com": [17197], "m.slate.fr": [15015], "aut.bme.hu": [1556], "low-prices.asda.com": [407], "contract.adingo.jp": [646], "forums.deathmask.net": [4254], "nationalgrid.com": [11119], "www.labcorp.com": [9139], "telmasters.com": [16131], "www.obfs.uillinois.edu": [17034], "www.gymglish.*": [7021, 7022], "conservatoire.montpellier3m.fr": [10609], "www.directa.cat": [4516], "rtbd.es": [2024], "b11.yahoo.co.jp": [18730], "www.torrentproject.se": [16659], "fell.be": [2024], "ictrecht.nl": [7697], "www.canaldigital.se": [2817], "ileansigma.engineering.osu.edu": [11797], "secure.ikea.com": [7962], "tomnapl.es": [2024], "bragazeta.ru": [19441], "go.age-sht.net": [2024], "www.mp3-juices.com": [10706], "rpsays.com": [2024], "web4.login.cornell.edu": [3676], "wof-piwik2.desy.de": [4386], "health.springer.com": [15380], "foxth.co": [2024], "www.ch9.ms": [2985], "tpbmirror.us": [22176], "freak.im": [2024], "*.crowdscience.com": [3817], "sues.stanford.edu": [15448], "on.jehiah.cz": [2024], "*.blob.core.windows.net": [18433], "www.fiercepharma.com": [5763], "a.troublion.com": [2024], "u.mud.lk": [2024], "www.wearechoosy.com": [1214], "cot.ag": [2024], "aukce.datart.cz": [3998], "www.coindesk.com": [3394], "password.uic.edu": [17321], "b.dcxg.co": [2024], "wikispaces.com": [16182], "on.dgap.org": [2024], "upxth.com": [17491], "cdn.gigya.com": [6641], "affiliate.eurodns.com": [5396], "isc2.org": [7824], "gtclsr.com": [2024], "go.hafnium.vc": [2024], "gowork.pl": [6773], "foreignpolicy.com": [6002], "wwv.play-asia.com": [12828], "kopete.kde.org": [8735], "www.control.isy.liu.se": [9097], "jesus4nativ.es": [2024], "dous.re": [2024], "ypkrd.co": [2024], "shop.f-secure.com": [5533], "bibr.li": [2024], "developers.airmap.com": [790], "wepwr.it": [2024], "library.osu.edu": [11797], "foiaonline.regulations.gov": [13804], "www.riskiq.com": [13959], "*.artday.co.kr": [1252], "elrn.in": [2024], "www.sessioncam.com": [14690], "www.clippercard.com": [19615], "position.dftoutiao.com": [19826], "secure.logmeinrescue.com": [9561], "dnscurve.com": [4054], "myheritage.br": [10875], "www.citysearch.com": [3199], "www.ubuntulinux.jp": [17186], "myloc.de": [10815], "cjbrie.se": [2024], "planning.angus.gov.uk": [1062], "academy.air.io": [19119], "dis.criteo.com": [3798], "addon-service.curse.com": [3927], "img20.360buyimg.com": [148], "knobli.ch": [2024], "botan.randombit.net": [21578], "support.xchange.cc": [22645], "head-face-med.biomedcentral.com": [1931], "go.trendmicro.com": [16791], "privacysolutions.no": [13137], "www.ibx.com": [20473], "findnsave.nj.com": [10971], "toggl.com": [16606], "www.topbuy.com.au": [16632], "365ticketscentral.com": [151], "carya.gr": [2024], "calendars.mit.edu": [9763], "l.yulian.biz": [2024], "progma.us": [2024], "info.gigya.com": [6641], "s.ghac.in": [2024], "hipchat.cms.gov": [19630], "on.zom.al": [2024], "id.aliexpress.com": [19140], "files.rsdn.org": [21685], "ssi.gs": [2024], "hoy.pub": [2024], "pi.minecraft.net": [10452], "worts.pl": [2024], "to.ehow.com": [2024], "seulonta.fi": [15809], "jiglink.uk": [2024], "app.sina.com.cn": [14904], "baja-radio.com": [2024], "www.immunicity.uk": [20511], "dbdinc.co": [2024], "dean.williams.edu": [18408], "www.migrol.ch": [10413], "taganrogprav.ru": [22084], "uk.crowdin.com": [3823], "802.es": [2024], "app.clicktools.com": [3264], "www.bahn-bkk.de": [1639], "egei.sh": [2024], "ino.to": [2024], "virtuwi.se": [2024], "neimenggu.jd.com": [8434], "sprvx.co": [2024], "*.privacysolutions.no": [13137], "beeldengeluid.nl": [1777], "yemen.usembassy.gov": [22406], "faby.me": [2024], "lists.cypherpunks.ca": [3977], "r.nextbib.com": [2024], "ultfan.live": [2024], "www.benetech.org": [1809], "host18.top": [2024], "s.skimresources.com": [14977], "mozfr.org": [21030], "elgnts.nl": [2024], "cruises.webjet.com.au": [18219], "a5.hitravel.xyz": [2024], "drumb3.at": [2024], "meu.bz": [2024], "pi.cr.yp.to": [3745], "ncbar.org": [10932], "jeti.kh.hu": [8739], "*.dotcomhost.com": [4687], "bin.smwcentral.net": [14203], "nativo.net": [11130], "www.govcert.nl": [11172], "nsr.oxfordjournals.org": [12222], "www.savage2.com": [14118], "tripadvisor.com": [16817], "*.qub.ac.uk": [13398], "www.snap-ci.com": [21878], "liveseries.ga": [2024], "cas.criteo.com": [3798], "tnd.al": [2024], "theme-fusion.com": [16410], "jenr.gy": [2024], "securycast.com": [14599], "archives.mondediplo.com": [10578], "www.priberam.pt": [13094], "mattz.me": [2024], "myhbs.me": [2024], "c0ff.in": [2024], "cdn.officiel-des-vacances.com": [11791], "crics.in": [2024], "khimki.biglion.ru": [19375], "self.achieveservice.com": [19051], "blog.tinfoilsecurity.com": [16547], "a.seino.biz": [2024], "rcdroneshq.com": [2024], "klikki.fi": [20733], "mobile.uw.edu": [17156], "www.ppb.cancer.gov": [2819], "franchising.hungryhowies.com": [20446], "morriseywv.com": [2024], "scheme.bikeability.org.uk": [19376], "spvlad.com": [2024], "livmob.nl": [2024], "www.scientificamerican.com": [14446], "on.nakedcrm.com": [2024], "downloads.theregister.co.uk": [22182], "bernerzeitung.newsnetz.ch": [11371], "cfin.us": [2024], "www.goenergetix.com": [5240], "yaroslavl.psbank.ru": [13231], "www.huxiu.com": [7638], "iste.am": [2024], "w7.chaucanh.net": [2024], "wpg-api.biligame.com": [1903], "www.webjet.co.nz": [18219], "ssl.price.ua": [13097], "webpayments.sevenoaks.gov.uk": [14696], "mbay.ly": [2024], "philau.starfishsolutions.com": [21977], "go.lmh.news": [2024], "community.cs.hku.hk": [20387], "au.rss.news.yahoo.com": [18725], "problo.gr": [2024], "vovici.com": [17938], "www.cmxlog.com": [3326], "1.ilovestyle.be": [2024], "mobilehelp.mybank.cn": [21062], "help.getpocket.com": [6566], "*.bloombergsports.com": [2134], "interactive.guim.co.uk": [6996], "sferra.com": [14707], "wrt.cu.cc": [2024], "atlchp.co": [2024], "www.peepd.com": [12544], "s.zk.gl": [2024], "lye.cc": [2024], "compose.io": [3530], "wovex.tv": [2024], "www.openswan.org": [12080], "*.reg.ru": [13783], "mqa.life": [2024], "planning.lichfielddc.gov.uk": [20832], "www.savvysme.com.au": [14379], "mnatx.tk": [2024], "cdn1.sure-assist.com": [15709], "kozelsk.startsmile.ru": [21980], "www.freejeremy.net": [6117], "rt.io": [2024], "yandex.st": [18746], "www.wbf.admin.ch": [22061], "piwik.xiala.net": [22651], "c2v.co": [2024], "*.cert.at": [2593], "updr.in": [2024], "happyplanetindex.org": [7190], "www.zenmate.lt": [18917], "www.zenmate.lv": [18917], "letu.it": [2024], "l.gabe.bz": [2024], "tinyrio.com": [2024], "zhenan.jd.com": [8434], "kuwait.usembassy.gov": [22406], "cheltenham.greenparty.org.uk": [6908], "www.neelwafurat.com": [11174], "news.herefordshire.gov.uk": [7326], "www.zenmate.li": [18917], "blocked.org.uk": [2107], "servers.ru": [21788], "mozuw.com": [2024], "picasaweb.google.com.*": [6821], "s.ticketon.kz": [2024], "www.isc2.org": [7824], "partner.just-eat.be": [20671], "autodraw.com": [1440], "www.ulaval.ca": [17319], "boinc.bakerlab.org": [1646], "plr.vn": [2024], "xiangqing.taobao.com": [16015], "s.acetheme.com": [2024], "heyue.mi.com": [10361], "l.guib.ca": [2024], "os.gravity4.com": [6885], "tmgb.co": [2024], "ciifad.cals.cornell.edu": [3676], "forum.mamp.info": [20916], "img13.bizrate-images.com": [2054], "mla.com.au": [10148], "gizmodo.com": [6677], "www.west-midlands.police.uk": [18302], "promin.live": [2024], "11888.ote.gr": [12164], "btp.link": [2024], "*.tradedoubler.com": [16713], "nordvpn.com": [11519], "mml.ink": [2024], "nsr.nso.ru": [21192], "mindap.pl": [2024], "feikar.net": [2024], "www.redditbot.com": [21617], "pgdt.gtimg.cn": [6974], "reax.co": [2024], "r.nexg.tv": [2024], "doublethedonation.com": [4708], "frmply.co": [2024], "dmnw.us": [2024], "jrrt.org.uk": [8645, 8646], "vik.wiki": [1556], "thm.de": [15876], "apereo.org": [1121], "on.pndhs.org": [2024], "static.slough.gov.uk": [15036], "www.kde-look.org": [8733], "www.publikdemand.com": [13264], "khe.me": [2024], "hslda.org": [7091], "sqrl.ly": [2024], "report.qcloud.com": [13346], "consultation.gateshead.gov.uk": [6446], "hbkn.it": [2024], "l.jezzza.com": [2024], "www.holidayextras.com": [7459], "pingfore.qq.com": [13329], "pavot.april.org": [1171], "developer.similarweb.com": [14875], "support.itbit.com": [8398], "brkcv.com": [2024], "go.rnjr.work": [2024], "u.ds0.info": [2024], "*.webcontrolcenter.com": [18208], "foryou.stanford.edu": [15448], "berniw.org": [1828], "niggaplea.se": [2024], "s.miguel.ms": [2024], "www.ishares.com": [8363], "zotacusa.com": [18855], "team8.voz48.xyz": [2024], "verispect.us": [2024], "step.theses.fr": [22186], "larica.me": [2024], "s139.cnzz.com": [3328], "social.dw.de": [4084], "www.theblackpooltower.com": [16254], "ociolaportal.osu.edu": [11797], "citius.usc.es": [17506], "on.chronique.ca": [2024], "warwickdc.gov.uk": [22531], "lenr-forum.com": [20808], "yegfit.ca": [2024], "s.dac.co.jp": [2024], "ep2014.europython.eu": [5399], "a.burne.tt": [2024], "www.polls.newsvine.com": [11390], "7dg.tl": [2024], "farns.us": [2024], "developer2014.sinacloud.com": [14908], "parker.jd.com": [8436], "tac2.in": [2024], "ict-webtools.plymouth.ac.uk": [12873], "limited2art.com": [9374], "l.cjs.io": [2024], "www.paragonie.com": [12417], "www.hostingxtreme.com": [7539], "deepin.com": [4287], "on.wlwt.com": [2024], "globalchallenges.uow.edu.au": [17434], "cdn-txweb.pressidium.com": [21489], "a.pressacco.com": [2024], "zwap.co": [2024], "jpattison.us": [2024], "krasnoyarsk.beeline.ru": [1778], "www.jessfraz.com": [8569], "prcache.microad.jp": [10377], "urltrends.com": [17499], "pnp4nagios.org": [12305], "xirt.ca": [2024], "mbg.fyi": [2024], "www.hizook.com": [7439], "www.pkracv.com": [3484], "forum.fullrate.dk": [6234], "w5.hkuspace.hku.hk": [20387], "hr.vanderbilt.edu": [17647], "m.ibm.com": [7679], "extratorrentlive.com": [20058], "lk-dealer.tricolor.tv": [22287], "forums.databricks.com": [4189], "go.8fit.com": [2024], "www.castle-technology.co.uk": [2900], "jobs.bridgend.gov.uk": [19449], "open.weather.sina.com.cn": [14904], "secure.gettyimages.es": [6604], "b4j.co": [2024], "p.ppfa.org": [2024], "ingrass.me": [2024], "fcle.es": [2024], "www.apple.com": [1151], "www.mog.com": [9788], "*.razoo.com": [13649], "whitman.worldcat.org": [18536], "www.ivoox.com": [7870], "www.100r.org": [12], "cl.phncdn.com": [12661], "automo.bi": [2024], "brent.greenparty.org.uk": [6908], "www.purduealumni.org": [13277], "mwcip01.hkjc.com": [20384], "zenmate.ch": [18917], "fonts.walmart.com": [18059], "foxciti.es": [2024], "brek.co": [2024], "r24616680.sync.app.asana.com": [1265], "netapp.com": [11221], "intelligence.brent.gov.uk": [2324], "www.hvosting.ua": [7642], "udmurtiya.beeline.ru": [1778], "hosteurope.de": [7524], "www.dtu.dk": [16096], "fics.lp0.eu": [9648], "www.clicktools.com": [3264], "help.mindtouch.us": [10446], "semya.tv": [21780], "brkn.gs": [2024], "git11.rostrud.ru": [21677], "cki.io": [2024], "qtdeveloperdays.com": [13367], "www.safesource.org.nz": [14290], "on.vomu.org": [2024], "displayomat.snacktv.de": [15086], "accuenmedia.com": [521], "www.spsch.eu": [21950], "*.website-start.de": [18241], "tron-delta.org": [15921], "maer.sk": [2024], "unlocator.com": [22380], "s8.cnzz.com": [3328], "widgets.twimg.com": [16949], "m.onlinesbi.com": [11911], "dccp.co": [2024], "seu1902.tk": [2024], "images.affiliatewindow.com": [4472], "de.rbth.com": [21596], "*.mozillalabs.com": [10699], "lt.osu.edu": [11797], "ifly.to": [2024], "getbon.us": [2024], "inetp.ro": [2024], "info.evidon.com": [5448], "mindmodeling.org": [10444], "static.hubspot.com": [7599], "shop.newint.org": [11337], "cac.c-nuage.jp": [2024], "img.wildwestdomains.com": [18391], "*.cch.com": [2562], "forum.sv.no": [14264], "remind.asana.com": [1265], "www.cash.me": [15396], "cdn.dexmedia.com": [4422], "s4.postimg.org": [13024], "pt.pornhub.com": [12972], "akrec.co": [2024], "cdn.media.ccc.de": [2553], "1776.ly": [2024], "serbakuis.id": [2024], "cntraveler.com": [3558], "bne.cc": [2024], "i18n.debian.org": [4263], "ste.pm": [2024], "pims.copernico.net": [3654], "met4auto.com": [2024], "www.theses.cz": [16422], "i01.c.aliimg.com": [861], "www.certsimple.com": [2973], "*.tieto.com": [16512], "su.itunes.apple.com": [1151], "m.scheper.ca": [2024], "ps-us.amazon-adsystem.com": [958], "distorted.pl": [2024], "staytoday.com": [15509], "www.valuecommerce.ne.jp": [17630], "ig.swy.fit": [2024], "mandtbank.spatialpoint.com": [9701], "spg.to": [2024], "corp.mail.ru": [9891], "fr.boardgamearena.com": [2182], "grechkometr.unian.ua": [22369], "learn.chef.io": [3061], "shared.php.net": [12280], "mrxl.us": [2024], "jlab.audio": [2024], "www.civil-forum.ru": [19600], "www.billycreative.com": [1915], "1.hbcdenham.org": [2024], "www.sbucciami.com": [14385], "isisblogs.poly.edu": [12933], "es.norton.com": [11545], "www.test.tibia.com": [22203], "on.rawfol.io": [2024], "www.quality-abo.de": [13379], "careers.weather.com": [18129], "praee.com": [2024], "luxsci.mobi": [9685], "www.bernstein.com": [899], "*.e2ma.net": [4857], "zdrav.te-st.ru": [22103], "assets.brandfolder.com": [2301], "pacunion.us": [2024], "websitealive5.com": [18242], "go.repeal2a.com": [2024], "web.synch.hu": [15793], "*.stroeerdigitalmedia.de": [15598], "piwik.ethz.ch": [4967], "en-hu.dict.cc": [4442], "tcrn.ch": [2024], "daddy.do": [2024], "www.trofire.com": [15920], "mep.engineering.osu.edu": [11797], "banner3.utm.edu": [17426], "csrr.us": [2024], "www.mint.ca": [10469], "go.mattjdev.com": [2024], "tippps.de": [2024], "www.heino-cykler.dk": [7287], "usatwi.sc": [2024], "raidcomp.mmo-champion.com": [3927], "togbc.com": [2024], "sk.3.boardgamearena.com": [2182], "intl.st": [2024], "wmgo.me": [2024], "diplomovka.sme.sk": [14198], "videos.toypics.net": [22463], "intl.sh": [2024], "www.ticketweb.co.uk": [16495], "kongregate.com": [8988], "ausaid.govspace.gov.au": [6851], "widget.newsinc.com": [11376], "belgorod.tpprf.ru": [22260], "support.humblebundle.com": [7619], "directory.umd.edu": [17351], "dly.do": [2024], "hadalog.jp": [14801], "cdre.nyc": [2024], "ad.atdmt.com": [10393], "forum.adguard.com": [19077], "fzue.tk": [2024], "www.sportys.com": [15363], "mail.blueonyx.it": [19413], "hmf.williams.edu": [18408], "bit.tm": [2024], "usue.co": [2024], "dex.ma": [2024], "msg.dimonvideo.ru": [19840], "npo.justgive.org": [8709], "s10.histats.com": [20379], "spfc.vc": [2024], "cl1ckme.tk": [2024], "sta.carloha.com": [2024], "www.exilebuddy.com": [2250], "search.literotica.com": [9479], "m4.ykimg.com": [22681], "reports.duckduckgo.com": [4785], "vodafone.tiqcdn.com": [16060], "lcnsng.biz": [2024], "s.h4x.pw": [2024], "pocasie.aktuality.sk": [1507], "lrgup.co": [2024], "praetorian.cc": [2024], "myrr.org": [2024], "cojaviem.rtvs.sk": [13536], "www.lib.vutbr.cz": [17609], "slug.squat.net": [21955], "www.thegreatdiscontent.com": [16361], "notary.icsi.berkeley.edu": [17329], "www.neas.nhs.uk": [10953], "rocawear.me": [2024], "rg.fyi": [2024], "hn.hnonline.sk": [7445], "profis.golem.de": [6804], "xx5.us": [2024], "www.familychristian.com": [5635], "bluegiga.com": [2162], "www.cint.com": [3153], "m0.ifengimg.com": [20487], "mnatu.re": [2024], "*.picdn.net": [14816], "www.usvisas.state.gov": [17146], "www.artpractical.com": [1243], "edwi.in": [2024], "dl.lib.brown.edu": [2384], "fcc.osu.edu": [11797], "www.3dglassesfree.com": [170], "secure.filmlinc.com": [5793], "g-pa.ws": [2024], "jpgtv.net": [2024], "www.squareup.com": [15396], "rlgh.in": [2024], "abc.xyz": [461], "valme.io": [17617], "www.youtube.com.ph": [18800], "arkhangelsk.beeline.ru": [1778], "secure.datapipe.com": [4203], "www.alumni.kit.edu": [8812], "minixperiment.twitch.tv": [16961], "nswk.es": [2024], "owner.io": [12218], "webmaster.yandex.kz": [18743], "canonistas.eu": [2024], "www.caa.co.uk": [3205], "gospir.it": [2024], "go.jawad.ir": [2024], "www.windowmaker.org": [18430], "sput.me": [2024], "sportisimo.pl": [14223], "torlink.co": [16638], "www.dwolla.com": [4809], "passport.2345.com": [98], "zxmth.us": [2024], "pda.guvm.mvd.ru": [21055], "go.nq.gl": [2024], "dalrun.co": [2024], "shl.tocco.ch": [16600], "thecools.co": [2024], "ln.magitech.xyz": [2024], "www2.sitetagger.co.uk": [14939], "mommyslittlesunshine.com": [10575], "goods.1688.com": [51], "img.badische-zeitung.de": [1632], "www.dorsetalert.co.uk": [19883], "swa.mail.ru": [9891], "bugs.llvm.org": [9103], "*.boxee.tv": [2276], "kasandbox.org": [8888], "s26.cnzz.com": [3328], "g.msn.com": [9810], "admin.carezone.cz": [2859], "customerevents.netflix.com": [11269], "forum.kryptronic.com": [9034], "basea.me": [2024], "b.ztj.io": [2024], "t.thebrighttag.com": [2342], "wwwdc2.hertzentertainment.com": [7371], "www.dug.net.pl": [4081], "arcs.ly": [2024], "bitsighttech.com": [1973], "media.w3.org": [17980], "ping-cdn.appadvice.com": [1143], "skyremoteaccess.sky.de": [14990], "kidspot.me": [2024], "tver-region.auto.ru": [19276], "www.myaccount.avira.com": [1474], "secure.eth-0.nl": [5365], "lvdm.org": [2024], "paymybill.illinois.edu": [17346], "smuir.click": [2024], "*.gridserver.com": [6933], "moja.tatrabanka.sk": [10569], "get2.adobe.com": [669], "blog.nature.org": [11141], "*.lkmart.com.au": [9101], "x.yaui.me": [2024], "www.ngrok.com": [11414], "*.fitstudio.com": [5868], "parrot.org": [12444], "support.clever.com": [3239], "wzp.in": [2024], "segments.adap.tv": [608], "psql.active24.cz": [19062], "www.theoldreader.com": [16303], "login.livingsocial.com": [9530], "mobile.sb.vdopia.com": [17672], "shop.rsi.ch": [21957], "rtbpopd.com": [21688], "*.newrelic.com": [11331], "www.iknowwhatyoudownload.com": [20492], "pda-bes.amazon.com": [960], "l.oj.io": [2024], "craftysyntax.com": [3751], "onthewire.io": [11857], "cnstl.is": [2024], "*.service.mirror-image.net": [10483], "rus-irn.tpprf.ru": [22260], "boe.is": [2024], "www.membershiprewards.com": [10267], "fre.gg": [2024], "core.tcl.tk": [16051], "okta.com": [11814], "lchost.co.uk": [9080], "static.cf.ac.uk": [2847], "www.ielm.ust.hk": [22412], "seowizard.ru": [14650], "justiceinspectorates.gov.uk": [3794], "cachewww.mirrorbingo.com": [10482], "amnesty.org.nz": [1011], "rbll.de": [2024], "*.upstart.com": [17485], "on.ny.gov": [2024], "dcs.lt": [2024], "severobaikalsk.europaplus.ru": [20034], "qibla.com": [13350], "find.business.t-mobile.com": [15837], "safari.tampermonkey.net": [16002], "assess.cocubes.com": [3331], "skuid.co": [2024], "goco.re": [2024], "etl.decc.gov.uk": [19795], "nz2050.com": [2024], "mysql.pastebin.ca": [12477], "*.presslabs.com": [13077], "euhsd.illuminateed.com": [20494], "images.branch.domofond.ru": [19876], "netdna.com": [11227], "static2.anidb.net": [1065], "media.tracfonewireless.com": [16700], "bloop.ws": [2024], "worksource.co": [2024], "aiwa.us": [2024], "webmail02.un.org": [17057], "ward1.me": [2024], "s1.playscdn.tv": [12847], "youtube.com.my": [18800], "friends.meetme.com": [10224], "order.kagi.com": [8781], "www.scalingbitcoin.org": [14390], "ybin.me": [18756], "lovoo.ly": [2024], "insight.bn-mclp.org": [2178], "sustainability.georgetown.edu": [6531], "ave.ch": [2024], "ce.jhu.edu": [16370], "jsk.stanford.edu": [15449], "sig3.info": [2024], "carecareersdevon.org.uk": [19510], "on.danmob.bz": [2024], "ads.creative-serving.com": [3773], "m.martinus.sk": [10044], "myub.buffalo.edu": [17382], "on.center": [2024], "m.exactag.com": [5467], "d1.aztravel.xyz": [2024], "stat.my.mail.ru": [9891], "pipr.co": [2024], "pearson.eps.harvard.edu": [7211], "old.dp.ru": [19890], "ssologin.palmcoastd.com": [12375], "eu.api.ovh.com": [12205], "www.d.pr": [3987], "help.rubygems.org": [14075], "kkh.se": [8751], "jhfi.sh": [2024], "office.auto.ru": [19276], "franchisegator.com": [6078], "cari.me": [2024], "aleksandrovsk.sakh.com": [21719], "a.suntravel.xyz": [2024], "rsna.org": [13580], "ysmay.us": [2024], "netgroup.dk": [11274], "www.liliani.com.br": [9368], "toughchoices.co.uk": [22254], "www.marketwire.com": [10030], "spectare.ucl.slu.se": [14195], "ja.ma": [2024], "es.thinksteroids.com": [9750], "www.die-linke.de": [4443], "go.mtricht.com": [2024], "buergerbeteiligung.sachsen.de": [14279], "img8.qiyipic.com": [13354], "*.finalsite.com": [5805], "in.cyt.org": [2024], "www.meningitis-trust.org": [10278], "dryr.me": [2024], "www.mbsportsweb.ca": [9732], "capw.me": [2024], "wyre.gov.uk": [22638], "yourhosting.nl": [18827], "autoconfig.yandex.com": [18742], "csync.yahooapis.com": [18729], "www.nebrija.com": [11166], "chbtc.com": [3041], "ads8.contentabc.com": [3614], "movimen.to": [2024], "kaluga.europaplus.ru": [20034], "libri.de": [9333], "asset-2.netbeans.org": [11223], "www.emojione.com": [5202], "ggmusic.co": [2024], "flametr.com": [2024], "mtt.ru": [21044], "optimize-stats.voxmedia.com": [17941], "www.grr.la": [6987], "piwik.mozfr.org": [21030], "intranet.sydney.edu.au": [22063], "trumba.com": [16849], "secure.naiadsystems.com": [11052], "login.hwb.wales.gov.uk": [18051], "zena.centrum.cz": [19547], "crrc.lt": [2024], "agnesscott.starfishsolutions.com": [21977], "odevzdej.cz": [11763], "www.move.va.gov": [17100], "travel.mongabay.com": [10589], "kawasa.ki": [2024], "mailman.owncloud.org": [12215], "orglogo.difi.no": [4452], "facebook.foxnewsinsider.com": [6064], "global.latin.epson.com": [5318], "thijsalkema.de": [16426], "reg.ru": [13783], "www.trafficjunky.com": [22265], "postck.com": [2024], "fkie.fraunhofer.de": [6091], "webjet.co.nz": [18219], "fav.me": [4409], "read.moorhou.se": [2024], "domaindiscount24.net": [19869], "aws.amazon.com": [963], "www.danskebank.dk": [4138], "vitalads.com": [17874], "rboot.us": [2024], "status.mythic-beasts.com": [10891], "www.geektimes.ru": [6490], "etalonsmtestim.sportmaster.ru": [21944], "hhz.dj": [2024], "netvibes.com": [11298], "*.shacknews.com": [14711], "hbsp.me": [2024], "s5.postimage.org": [13024], "*.typesafe.com": [16986], "m.gripom.com.br": [2024], "tickets.zvv.ch": [22733], "mwsjr.me": [2024], "wpereira.xyz": [2024], "www.nottinghamshirealert.co.uk": [21166], "jcale.me": [2024], "*.wordpress.org": [18520], "media.team29.org": [22106], "de.godaddy.com": [6755], "hd.findory.tk": [2024], "www.sneakerfreaker.com": [21881], "d.perubatan.org": [2024], "crystalc.at": [2024], "visitor-service-us-west-1.tealiumiq.com": [16060], "cemetech.net": [2942], "gamesonly.at": [6415], "m.hebrew.alibaba.com": [857], "training.witness.org": [18472], "ekiga.org": [5118], "honeybeeloans.com": [7493], "epi-resurs.slu.se": [14195], "burundi.usembassy.gov": [22406], "www.fortune.com": [6038], "fortnite.com": [6034], "jmcc.cf": [2024], "heal.dog": [2024], "zonza.tv": [18854], "www.law.hku.hk": [20387], "qbs.me": [2024], "linux-sunxi.org": [9416], "www.creatis.insa-lyon.fr": [7777], "59.mvd.ru": [21055], "phfam.us": [2024], "avia.yandex.ua": [18747], "www.postoffice.co.uk": [13002], "www.get-digital.nl": [6548], "wwwa.play-asia.com": [12828], "service-portal.web.cern.ch": [2588], "www.guru3d.com": [7006], "abbo.tt": [2024], "store.ubnt.com": [17164], "svc079.wic859dp.server-web.com": [5296], "g.ohohoh.org": [2024], "*.blog.alwaysdata.com": [946], "lists.apc.org": [1318], "www.lrz.eu": [9253], "primesecoenergie.com": [13110], "q.huhapp.com": [2024], "www.regalii.com": [13786], "www.boomerang.com": [2228], "dcand.us": [2024], "mczn.ca": [2024], "xavier.worldcat.org": [18536], "shop.networktimefoundation.org": [11306], "b2.hitravel.xyz": [2024], "analytics.trafficfactory.biz": [16723], "php.radford.edu": [13571], "carsgui.de": [2024], "sv.inco.com.sv": [2024], "s13.cnzz.com": [3328], "on.merkur.de": [2024], "aumdn.es": [2024], "pusdk12.illuminateed.com": [20494], "lnt.llvm.org": [9103], "controlpanel.gradwellcloud.com": [6869], "mtsu.worldcat.org": [18536], "gmo.jp": [6325], "webservices.amazon.co.jp": [19169], "linuxtv.org": [9431], "lk.ttk.ru": [16881], "www.datenschutz-ist-buergerrecht.de": [4208], "autodiscover.yandex.com": [18742], "*.mobileenterprise360.com": [10537], "pubei.jd.com": [8434], "logbuch-netzpolitik.de": [10322], "media-overpwn.cursecdn.com": [3927], "forsec.nl": [6028], "www.fattorrents.ws": [22174], "www.emjcd.com": [3484], "media-yttrium.cursecdn.com": [3927], "business.tkbbank.ru": [16583], "r24616642.sync.app.asana.com": [1265], "mefd.tv": [2024], "trustworthyinternet.org": [16871], "videotron.com": [17787], "www.simtechdev.ru": [21835], "feedback.aol.com": [380], "www.twoseventy.net": [16972], "www.snapitoff.nus.org.uk": [21204], "transparency.atlatszo.hu": [1349], "www.whiteout.io": [18351], "www.opengl.org": [11976], "zona.skylink.sk": [15002], "scrap.re": [2024], "twitpic.com": [16963], "epayments.aylesburyvaledc.gov.uk": [19291], "francais.istockphoto.com": [20595], "www.theladbiblegroup.com": [22159], "www.gunosy.com": [7005], "menswaterpolo.clubs.bucknell.edu": [2406], "pod.ro.lt": [2024], "cruise.thomascook.com": [16450], "shibboleth2.lsbu.ac.uk": [9111], "my.jh.edu": [8447], "wkit.co": [2024], "www.caddyserver.com": [2726], "url.devel.sa": [2024], "downloads.ohiobar.org": [11800], "rpr.me": [2024], "ptgmedia.pearsoncmg.com": [12538], "gpz.me": [2024], "ngvpn31.nvidia.com": [11022], "bbs.linuxdistrocommunity.com": [9436], "s2.percona.com": [12589], "gradawards.sfu.ca": [14708], "sbpr.es": [2024], "www.entagroup.com": [5276], "www.sikur.com": [14847], "forms.westoxon.gov.uk": [18316], "mk.cx": [2024], "wp-eng-static.washingtonpost.com": [18086], "tahoeti.me": [2024], "*.jumio.com": [8688], "*.bj.bcebos.com": [19337], "www.streammygame.com": [15585], "canvasndecor.com": [2827], "intrepidusgroup.com": [8296], "*.tuwien.ac.at": [17794], "sba-research.org": [14138], "searchmu.es": [2024], "naiin.com": [11053], "www.healthyeater.com": [7264], "crv.im": [2024], "stfan.co": [2024], "mizzma.in": [2024], "to.dmus.fr": [2024], "cncr.me": [2024], "2.dopa.mn": [2024], "www.ti.to": [16482], "ccdcoe.org": [2560], "m.hushmail.com": [7636], "courrielweb.videotron.ca": [17786], "www.securingthehuman.org": [14579], "www.pvac-cms.leeds.ac.uk": [17403], "veriguide4.cse.cuhk.edu.hk": [2704], "nl.cdnetworks.com": [2574], "secure.somethingawful.com": [15200], "file.pt": [2024], "www.great-yarmouth.gov.uk": [20304], "login.thescottishsun.co.uk": [22185], "*.gs-media.de": [6362], "r669.pl": [2024], "*.frontier.co.uk": [6203], "doc.pfsense.org": [12637], "kinox.sg": [20720], "media.quantopian.com": [13390], "cdn-st3.rtr-vesti.ru": [21689], "www.wiki.ed.ac.uk": [5059], "www.pfizer.com": [12640], "jsnts.co": [2024], "*.couchbase.com": [3700], "sms-online.co": [21875], "www.darkmail.info": [4146], "lyncws.ntv.ru": [21197], "s.able.co": [2024], "*.overstock.com": [12202], "elle.sapo.pt": [14131], "campbestiv.al": [2024], "static.readyflowers.com": [13680], "midnightbsd.org": [20980], "www.moneygeek.com": [21014], "ls.sportradar.com": [21945], "3ds.sdm.ru": [14494], "davedpt.com": [2024], "about.yammer.com": [18738], "showrss.info": [14805], "vba.sh": [2024], "notalwaysromantic.com": [21164], "merchant.livingsocial.com": [9530], "n-kesteven-ss.achieveservice.com": [19051], "f.00f.net": [0], "activecollab.sandstorm.de": [14345], "www.zabbix.com": [18868], "fma.cash": [2024], "sanitarium.se": [14348], "alv.cm": [2024], "s9.pimg.tw": [12709], "www.aptdeco.com": [1173], "t6.qlogo.cn": [13355], "akesu.jd.com": [8434], "jenkins.qa.ubuntu.com": [17183], "summercollege.stanford.edu": [15448], "www.bury.gov.uk": [19476], "tojarieh.com": [2024], "bor.startsmile.ru": [21980], "portal-stage.cca.edu": [2547], "omtimes.co": [2024], "get.asp.net": [413], "10o3.com": [2024], "kronox-rapport.slu.se": [14195], "jobs.cdc.gov": [19532], "signin.verizon.com": [17715], "on.bild.de": [2024], "air.lincoln.gov.uk": [9378], "suppliers.cheshire.gov.uk": [3069], "trstd.im": [2024], "devzing.com": [4406], "linq2.us": [2024], "www.mrsmcnastys.com": [10714], "*.daad.de": [6538], "datasift.me": [2024], "www.nabers.com": [11047], "hcu.link": [2024], "jackson-it.de": [8495], "repozitar.cz": [13846], "on.ncaa.com": [2024], "vkc.kk.dk": [8748], "www.osu.edu": [11797], "lewlife.net": [2024], "www.kam.vutbr.cz": [17609], "hds.nerc.ac.uk": [11136], "static.gosquared.com": [6766], "bukowski.in": [2024], "who.wildwestdomains.com": [18391], "dns.norton.com": [11545], "imagefile.51fanli.com": [209], "forums.wesnoth.org": [18298], "*.cibc.com": [2613], "*.micgadget.com": [9755], "rv-l.com": [2024], "l.icetravel.xyz": [2024], "sherwa.re": [2024], "obsssd.co": [2024], "migros.ch": [10417], "ads.integral-marketing.com": [8203], "alpha.pro-linux.de": [13155], "shevibe.com": [14753], "mytp.info": [2024], "lirias.kuleuven.be": [8832], "vir.sch.bme.hu": [1556], "uw.edu": [17156], "nilk.es": [2024], "drinkju.st": [2024], "usarug.by": [2024], "media-seawolf.cursecdn.com": [3927], "nhattao.com": [11416], "code.dlang.org": [19852], "git14.rostrud.ru": [21677], "scalesystemweb.tdcserviceonline.com": [15864], "aheslo.centrum.cz": [19547], "vir.link": [2024], "kijkfoto.nl": [2024], "crypto.di.ens.fr": [4922], "itne.ws": [2024], "exklusiv.web.de": [18146], "*.cosmosmagazine.com": [2654], "homepages.th-mittelhessen.de": [15874], "meet.valleyfirst.com": [17620], "image.migros.ch": [10417], "secure.thedungeons.com": [16263], "omakaseweb.com": [11826], "www.knappschaft.de": [8953], "www.minetrack.me": [20987], "choopa.com": [3104], "go.sainta.org": [2024], "evn.am": [2024], "s.wiadomoto.pl": [2024], "gubkin.startsmile.ru": [21980], "*.stpete.usf.edu": [17363], "wallace.sc": [2024], "s28.postimg.org": [13024], "help.douban.com": [4701], "t.ulaan2015.com": [2024], "duolink.co": [2024], "f1gate.co": [2024], "www.westberks.gov.uk": [22564], "nodistribute.com": [21150], "policies.usc.edu": [17366], "ez-web-hosting.com": [4991], "tangshan.jd.com": [8434], "static1.boligportal.dk": [2207], "www.owlfolio.org": [12211], "ls.ayucs.net": [2024], "www.spiceworks.com": [15338], "saucenao.com": [14364], "go.website99.ml": [2024], "chroni.cl": [2024], "extranet.ikoula.com": [7966], "tfws.co": [2024], "navut.cz": [11046], "beta.talky.io": [15998], "on.gricizgi.com": [2024], "www.bapco.com": [1515], "powys.moderngov.co.uk": [21005], "*.profile.live.com": [9495], "adrz.ml": [2024], "kpa.co": [2024], "feeder.livingsocial.com": [9530], "uds.ubuntu.com": [17183], "alpn.gl": [2024], "developer.appear.in": [1145], "media.8ch.net": [243], "terasic.com.tw": [16023], "icanhazip.com": [7906], "www.hostgator.com": [7519], "s.dnld.mobi": [2024], "access.leeds.ac.uk": [17403], "www.adblockbrowser.org": [19073], "omnirom.org": [11838], "www.add.org": [19075], "www.pensionsmyndigheten.se": [12573], "f7.chaucanh.net": [2024], "bpe.georgetown.edu": [6531], "ssimag.es": [2024], "bitly.com": [2022], "multiconex.net": [2024], "b.bwieg.us": [2024], "jro.pe": [2024], "www.gdr-meso.phys.ens.fr": [4922], "hbt.buzz": [2024], "01ze.it": [2024], "southcentral-kctcs.edusupportcenter.com": [19962], "s.418.be": [2024], "desa.link": [2024], "rosebakes.co": [2024], "wpar.co": [2024], "youtube.com.hr": [18800], "yuanxian.youku.com": [18804], "*.gymglish.com.br": [7021], "youtube.com.hk": [18800], "drspree.de": [2024], "www.sonycsl.co.jp": [15218], "r24626396.sync.app.asana.com": [1265], "centr.ec": [2024], "app.zuno.eu": [18861], "hydra.aufbix.org": [1391], "flnt.rehab": [2024], "www.ace-analyzer.com": [524], "markmonitor.com": [10011], "piratepartei.lu": [21418], "elbulin.com": [2024], "www.li.ru": [9499], "go.elhashif.net": [2024], "cdy.pm": [2024], "afiliados.amazon.es": [19175], "lawgeex.com": [9188], "track.adform.net": [638], "via.bcarr.me": [2024], "mfc.unizar.es": [17441], "auth.york.edu": [18787], "cnrg.link": [2024], "it.pcpartpicker.com": [12529], "zagat.bz": [2024], "zalando.nl": [18877], "de.squat.net": [21955], "balakovo.startsmile.ru": [21980], "ssn.tocco.ch": [16600], "mkt.tips": [2024], "choquecultural.catracalivre.com.br": [2917], "www.unionpacific.jobs": [22375], "students.mercatus.org": [10296], "l.eka.pw": [2024], "docs.wpstartbox.com": [15471], "ds.aupho.to": [2024], "braincert.org": [2287], "link.idig.la": [2024], "gsmhosting.com": [6972], "nightsky.jpl.nasa.gov": [10909], "corporatecardapplication.com": [3682], "www.pokerstarsapps.com": [21452], "fm.ozonico.ca": [2024], "the-i.de": [22139], "3k8.in": [2024], "cbcrypt.org": [2536], "coloredcoins-staging.mtree.mycelium.com": [21063], "ktzr.us": [2024], "delivery.rakuten.co.jp": [13593], "ksp.mff.cuni.cz": [20760], "dbo.forabank.ru": [5994], "beacon.worldcat.org": [18536], "cfr.georgetown.edu": [6531], "a5.chaucanh.net": [2024], "a.j7.no": [2024], "mnstrs.co": [2024], "webmail.active24.cz": [19062], "store.kaspersky.com": [8820], "singh.social": [2024], "sifomedia.citypaketet.se": [3198], "www.bitsquare.io": [2042], "go.alzanki.com": [2024], "www.digitalbond.com": [4467], "culture.zomato.com": [18990], "cadzow.net.au": [2024], "paradoxplaza.com": [12414], "wlc.alibaba-inc.com": [19139], "pblx.us": [2024], "beacon-apac-hkg1.rubiconproject.com": [14066], "p.extrahint.net": [2024], "glerups.dk": [6690], "www.bitdrift.org": [2014], "libsyn.com": [9336], "rgplu.us": [2024], "*.fourdo.com": [189], "ecotelecom.ru": [19952], "go.megc.pt": [2024], "web.chip-chap.com": [3088], "on.adampeer.com": [2024], "m.163.com": [50], "itservices.gmu.edu": [6529], "mymail.asus.com": [417], "liukocyte.tv": [2024], "go.foltz.me": [2024], "discv.co": [2024], "blackboardhelp.usc.edu": [17366], "connect.wilmerhale.com": [18410], "blog.korelogic.com": [8997], "booksroar.com": [2024], "lacuisinedannie.20minutes.fr": [94], "comparis.ch": [3515], "propellerpops.com": [13201], "piwik.derpy.me": [4369], "pxl.biglion.ru": [19375], "enrollmentcenter.medicare.gov": [20953], "www.deliverunion.fau.org": [5543], "list.girlsoutwest.com": [6648], "centra.mn": [2024], "azar.im": [2024], "www.wdr2.de": [18113], "nate.in": [2024], "communities.adobe.com": [669], "mdws.integriscu.ca": [8204], "cbpg.ca": [2024], "vcpl.me": [2024], "csub.co": [2024], "tci.to": [2024], "41.mvd.ru": [21055], "*.vanilladev.com": [17648], "videogold.de": [17773], "see.rallydm.com": [2024], "careers.dpd.co.uk": [19891], "wiki.freeswitch.org": [6106], "stableit.ru": [21968], "*.wunderground.com": [18128], "sso.jetbrains.com": [8573], "otak.hu": [2024], "internetsafetyproject.org": [8272], "rostov.sumtel.ru": [22031], "static2.51fanli.net": [209], "l.tesbihane.org": [2024], "rwdfx.com": [2024], "trstp.io": [2024], "si.libreoffice.org": [9327], "piwik.avm.de": [1478], "www.abosgratis.de": [479], "imi.is": [2024], "elev8links.com": [2024], "full30.com": [20185], "du.itunes.apple.com": [1151], "l.kyle.media": [2024], "www.jboss.com": [8428], "ucmerced.worldcat.org": [18536], "calendar.boell.de": [2192], "blogpris.co": [2024], "vultr.com": [17966], "45sp.in": [2024], "cwn.link": [2024], "go.sellmojo.com": [2024], "cfp.me": [2024], "news.ncsu.edu": [11531], "webmail.webstyle.ch": [18252], "rk.imhd.sk": [8004], "devcentral.f5.com": [5537], "www.stonewall.org.uk": [21997], "exex.link": [2024], "whatsmydns.net": [18331], "bundesprogramm-prered.ble.de": [19406], "eatveggi.es": [2024], "apmne.ws": [2024], "syrcrun.ch": [2024], "qweather.ssl.qhimg.com": [13347], "busting.in": [2024], "www.umbel.com": [17227], "compare.aliexpress.com": [854], "s.swiftypecdn.com": [15753], "langne.se": [2024], "cups.org": [2705], "emrgncy.net": [2024], "beta.domainskate.com": [4650], "www.corvisacloud.com": [3689], "darl.ink": [2024], "discussion.evernote.com": [5440], "www.mtailor.com": [9818], "ww.v-hotels.com": [2024], "gfty.in": [2024], "hillaryclinton.com": [7412], "sysprovide.de": [22072], "csb.link": [2024], "www.betclair.com": [7736], "piratemedia.net": [12748], "services.amazon.fr": [19176], "s.benj.io": [2024], "mghty.io": [2024], "ugc.taobao.com": [16015], "www.p2p.kurs.expert": [20764], "lipreading.org": [9455], "youtube.jo": [18800], "ochome.info": [2024], "*.techwebonlineevents.com": [16086], "tianyu.gm.163.com": [50], "kentico.com": [8869], "element.yandex.com.tr": [18740], "icares.wustl.edu": [18089], "videodirect.amazon.com": [960], "novayagazeta.ru": [21169], "alumni.law.ox.ac.uk": [17359], "developer.magento.com": [9868], "speedppc.com": [15324], "www.folkets.dk": [5965], "cognition.plymouth.ac.uk": [12873], "revenuesbenefits.rossendale.gov.uk": [14027], "sedran.net": [2024], "go.lgic.co": [2024], "imgssl.constantcontact.com": [3594], "kunshan.jd.com": [8434], "wiki.diasporafoundation.org": [4438], "mobile.united.com": [17302], "sqlite.org": [14229], "bellinghamschools.org": [1796], "experian.com": [5495], "sso.airmap.io": [790], "marketo.com": [10025], "linux-magazin.de": [9407], "110-b.360.cn": [142], "popk.co": [2024], "kadml.tk": [2024], "ttm.ag": [2024], "sfgate.findnsave.com": [5820], "canvas.andover.edu": [12653], "data.api.autoscout24.de": [1458], "s3.parature.com": [12425], "lizaona.ir": [2024], "cubby.com": [3903], "pravobraz.ru": [21480], "wiki.mutt.org": [10773], "i.monk.co.in": [2024], "cpnwz.us": [2024], "ekomi.*": [4913], "secure.voyage-prive.com": [17946], "staging.lubswww.leeds.ac.uk": [17403], "forums.lenovo.com": [9267], "ad.iqt.io": [2024], "u.lapunt.cat": [2024], "smetrics.aclu.org": [312], "online.americanexpress.com": [979], "webassign.net": [18150], "wimo.com": [18370], "partnernet-temp.symantec.com": [15780], "s.ttc.im": [2024], "f35.com": [5534], "hauke-m.de": [7231], "vendors.paddle.com": [12353], "en-gb.loak.org": [2024], "lexusoftulsa.us": [2024], "s9.pixxxels.org": [21427], "on.tz.de": [2024], "giftoftravel.thomascook.com": [16450], "britannica.com": [2353], "inside.com": [8166], "kuther.net": [9059], "www.sparkle-project.org": [15292], "ssl.hu": [2024], "cimg.filemobile.com": [5786], "www.hupstream.com": [7630], "*.truecrypt.ch": [16839], "9seeds.com": [253], "r.rjweb.in": [2024], "awn.how": [2024], "static.symanteccloud.com": [15780], "cloudlinux.com": [3288], "getninj.as": [2024], "nydailynews.com": [11028, 11029], "url.busam.trade": [2024], "wiki.hacdc.org": [7121], "ppc.ipswich.gov.uk": [8348], "collaborateext.verizon.com": [17715], "*.surveymonkey.com": [15724], "online.aberdeencity.gov.uk": [471], "foryoutou.se": [2024], "ja-sig.org": [8535], "z.sopov.org": [2024], "ensighten.com": [5273], "marias.menu": [2024], "j-w.link": [2024], "peterborough.gov.uk": [12625], "m.2345.com": [98], "grozniy.auto.ru": [19276], "uk.logmein.com": [9559], "sit.fraunhofer.de": [6091], "hyprch.nl": [2024], "v-dem.net": [22418], "rj1.pw": [2024], "go.twinset.com": [2024], "photomath.net": [12671], "lukeri.ch": [2024], "tenderapp.com": [4924], "saniha.ch": [2024], "coinsquare.io": [3410], "centerlinebeta.net": [2957], "u.bpratik.in": [2024], "sickbits.net": [14820], "scripts.omniture.com": [11842], "shmtraveler.com": [2024], "i7.c.dk": [2512], "www.rareconnect.org": [13626], "visualidentity.georgetown.edu": [6531], "nutritionj.biomedcentral.com": [1931], "app.shareconnect.com": [14723], "qr.canduu.mobi": [2024], "www.easterncheshireccg.nhs.uk": [10953], "*.blogspot.com.uy": [2127], "www2.bristol.gov.uk": [19451], "fyia.worldwildlife.org": [18544], "embeddedarm.com": [5189], "smartcity.wien.gv.at": [22588], "motm.me": [2024], "mytrinity.com.ua": [21075], "brandsolutions.adform.com": [639], "paydirekt.de": [12506], "www.youtube.com.co": [18800], "r.troop1998.com": [2024], "rizhie.friday.ru": [20175], "*.witopia.net": [18371], "video.yaplakal.com": [22668], "gtcsonline.mycashflow.fi": [6369], "mm.derevents.de": [2024], "af.1688.com": [51], "g5r.co": [2024], "www.allepizza.ru": [19147], "fp5.in": [2024], "www.bernina-lausanne.ch": [1827], "netswarm.net": [11292], "sa.ed.gov": [4881], "utsystem.edu": [17370], "www.rc4nomore.com": [21599], "www.xetra.com": [18656], "www.skytal.es": [21855], "www.livezilla.net": [9512], "www.littlesvr.ca": [9490], "www.ovh.cz": [12205], "albbd.de": [2024], "stvnst.at": [2024], "vip.vetbiz.gov": [17100], "voting.pirateparty.org.au": [12746], "budgetkredit.ch": [2411], "blackboard.caltech.edu": [2771], "vino.etrend.sk": [5383], "r.ixis.co.uk": [2024], "2edu.de": [2024], "go.music.com.bd": [2024], "everydayhealth.com": [5443], "guide.boum.org": [2261], "index.srad.jp": [21956], "g.jessedavis.me": [2024], "www.justapple.com": [8708], "bbnc-dev.vanaqua.org": [17637], "omsk.rt.ru": [13529], "sakh.com": [21719], "desfichiers.com": [79], "jabbi.pl": [8490], "flendr.net": [2024], "moderngov.lambeth.gov.uk": [20772], "es-us.perryellis.com": [12609], "mir-politika.ru": [20991], "tools.manageengine.com": [9951], "anb.com.sa": [372], "shutte.rs": [2024], "*.causes.com": [2918], "bgpmon.net": [1540], "tryprocleanse.com": [10843], "s18.postimg.io": [13024], "cusosp.com": [2024], "cathaypacificcargo.com": [2913], "video35.0xdb.org": [10], "ask.libreoffice.org": [9327], "clinic.dxy.com": [19912], "coham.osu.edu": [11797], "*.rascal999.co.uk": [21586], "s.d2h.net": [2024], "beiyong.ncar.cc": [21094], "*.spreadshirt.com": [15371], "youhui.95516.com": [248], "3.bp.blogspot.com": [2122], "pokylinux.org": [12902], "loot.lt": [2024], "rimg07.rl0.ru": [13972], "vatican.usembassy.gov": [22406], "health.mail.ru": [9891], "ybitcoinmagazine.com": [18703], "www.kubuntuforums.net": [9043], "itselfservice.plymouth.ac.uk": [12873], "media-strawpoll.cursecdn.com": [3927], "tontonroger.org": [6075], "u.sw4.de": [2024], "en.curtar.cu.cc": [2024], "blnkd.co": [2024], "www.acromediainc.com": [535], "www.ucc.ie": [17006], "www.gazellegames.net": [20214], "plus.sme.sk": [14198], "www.avantar.com": [1466], "tula.biglion.ru": [19375], "help.hbonow.com": [20353], "*.northclicks.com": [11534], "epsilon-telecom.de": [5317], "w.kuruc.org": [9058], "myatos.mobi": [2024], "*.stayfriends.de": [15510], "www.magnum-ci.com": [20907], "sd3.jalan.net": [2024], "kamensk-uralskiy.europaplus.ru": [20034], "57.rkn.gov.ru": [13971], "to.tteggel.org": [2024], "www.nosdeputes.fr": [21162], "picard.linux.it": [9419], "s.grumpa.me": [2024], "frzt.us": [2024], "g.sar.gent": [2024], "aloh.as": [2024], "b2b-assets.glassdoor.com": [6683], "cot.food.gov.uk": [20132], "meltin.net": [10260], "gateway.ncl.ac.uk": [10926], "english-country-cottages.co.uk": [18579], "dutchdpa.nl": [4806], "sii.itcelaya.edu.mx": [7847], "ehoiva.fi": [19925], "o-zone.vanco.co.uk": [17645], "www.martus.org": [10045], "bazaar.tf": [1733], "fluctishosting.com": [5929], "timor-leste.unfpa.org": [17062], "www4-static4.gog.com": [6343], "ad.where.com": [18334], "s.kevn.de": [2024], "fnapo.li": [2024], "sctt.xxx": [2024], "pqn.me": [2024], "s.frogi.co.il": [2024], "go.chiam.me": [2024], "autohits.vn": [1441], "slf.li": [2024], "torvenygyartok.atlatszo.hu": [1349], "consult.defra.gov.uk": [4298], "mofobian.com": [10566], "secure-resumption.com": [14548], "eio.io": [2024], "zheleznovodsk.beeline.ru": [1778], "845a.co": [2024], "login.naplesnews.com": [11073], "signup.socialsecurity.gov": [15126], "info.getsatisfaction.com": [6601], "www.assessment.sia.homeoffice.gov.uk": [20399], "www.yelpblog.com": [22674], "pinpo.it": [2024], "lecture2go.uni-hamburg.de": [17025], "digitop.nal.usda.gov": [17299], "secure.fortuneaffiliates.com": [6039], "onward.st": [2024], "computer-bild.de": [19660], "dxdialog.wusm.wustl.edu": [18089], "mcdn.newsnetz.ch": [11371], "xgo5z39munkomzhe.asana.com": [1265], "landfill.bugzilla.org": [2425], "learnup.co": [2024], "www.theiphonemom.com": [16408], "www2.gajim.org": [6383], "go.cinco45.com": [2024], "photosynth.net": [12680], "uklz.info": [2024], "webmail.htwk-leipzig.de": [7596], "cbfp.eu": [2024], "gfx.dbtv.no": [19776], "www.dailyhiit.com": [4109], "printchomp.com": [13118], "www.phonekeeper.ru": [21398], "globalaction.unicefusa.org": [17070], "dl.ruptur.co": [2024], "ssl.lidl.co.uk": [20833], "irex.org": [20579], "yandex.ua": [18747], "topshop.com": [22238], "tchkr.us": [2024], "ads.glassdoor.com": [6683], "unrealitytv.co.uk": [17451], "hnnh.info": [2024], "dox4.me": [2024], "hosting9000.com": [7535], "api.justgiving.com": [8710], "newsela.com": [21125], "s.mil.ru": [2024], "community.lincolnshire.gov.uk": [9380], "mail.anadolu.edu.tr": [1029], "app.bundesnetzagentur.de": [2445], "*.cl.ly": [3208], "www.ccrjustice.org": [2564], "rus-isr.tpprf.ru": [22260], "reup.today": [2024], "aukcie.ludialudom.sk": [9661], "i.rchb.sh": [2024], "user.ipip.net": [20570], "toh.fyi": [2024], "planet.mate-desktop.com": [9727], "zifei.amap.com": [19166], "www2.youm7.com": [18805], "f1.success.mindtouch.com": [10445], "36.rkn.gov.ru": [13971], "blog.opengroup.org": [18518], "ailink.me": [2024], "site.madgex.com": [20904], "dsp.bidtellect.com": [1876], "wiki.wxwidgets.org": [22636], "erics.tv": [2024], "marya.ms": [2024], "bflow.security-portal.cz": [14582], "www.kastatic.org": [8888], "redandblackumbrella.squat.net": [21955], "www.streamamg.com": [22006], "www.fmod.org": [5946], "www.shop.harman.com": [7200], "mkin.mobi": [2024], "serov.europaplus.ru": [20034], "*.thinkingchristian.net": [16438], "hao.xiaomi.com": [18662], "covad.com": [3721], "ik.apps123.com": [2024], "*.myheritage.es": [10875], "susanmb.me": [2024], "files.zone": [2024], "www.wrzru.com": [22624], "coatofar.ms": [2024], "zemt.io": [2024], "benj.mn": [2024], "*.iapc.nl": [20470], "storage.msn.com": [9810], "nicek.io": [2024], "www.sensiolabs.com": [14648], "store.netveano.com": [11296], "uscma.cc": [2024], "jdgaby.us": [2024], "i.mhj.tc": [2024], "www.tenpay.com": [16185], "ask.openmrs.org": [11989], "s1.skyscnr.com": [15006], "support.noblehour.com": [11485], "rentalpro.zillow.com": [18964], "www.modernpgp.org": [10559], "ak.chaucanh.net": [2024], "lws.co": [2024], "robbiejwood.com": [2024], "quattro.ly": [2024], "mynxt.info": [10817], "aber.ac.uk": [473], "20fab.com": [2024], "metrica.yandex.com.tr": [18740], "viz.berlin.de": [1821], "www.lscpt.ch": [20882], "id.scene.org": [8267], "akademy2013.kde.org": [8735], "link.burge.im": [2024], "crumb.cc": [2024], "franziskawellner.de": [6084], "video3.0xdb.org": [10], "ru.pcisecuritystandards.org": [12253], "video.rakuten.co.jp": [13593], "nxtbnk.com": [2024], "lynd.it": [2024], "www.tt.se": [15932], "companyaccount.kaspersky.com": [8820], "ad1.play-asia.com": [12828], "www.beeline.kz": [19345], "knowledgeblog.org": [8961], "dev.mashery.com": [10055], "go.omreddy.com": [2024], "www.thetinhat.com": [16390], "lib.debug.so": [2024], "sm.stanford.edu": [15447], "es.isidewith.com": [20466], "wyn.gp": [2024], "data.getadblock.com": [571], "comodo.com": [3507], "go.saves.co": [2024], "rckt.co": [2024], "lott.ie": [2024], "s.startown.tw": [2024], "www.exoclick.com": [5489], "jobs.rakuten.co.jp": [13593], "*.royalmail.com": [14051], "selecta.update.ideco.ru": [20480], "rilis.web.cern.ch": [2588], "www.jpfox.fr": [8665], "www.pcper.com": [21371], "utorrent.com": [22337], "istp.hnonline.sk": [7445], "sendspace.com": [14645], "derbyshiremaps.derbyshire.gov.uk": [19810], "www.streamline.com": [22007], "img100-108.xvideos.com": [22660], "tuah.fyi": [2024], "icracked.com": [7706], "baryshnya.friday.ru": [20175], "webmail.usainteanne.ca": [22404], "barrstg.co": [2024], "www.pilgrimagesoftware.com": [12705], "appb.us": [2024], "tongji.cnzz.com": [3328], "www.rossulbricht.org": [14026], "www.bitcoinwisdom.com": [2000], "touch.groupon.com": [6953], "budgetgolf.se": [2410], "www.axosoft.com": [1504], "pgsql.cesky-hosting.cz": [19553], "checkout.stripe.com": [15594], "link.kplr11.com": [2024], "cloud-video.unrulymedia.com": [22383], "wiki.jqueryui.com": [8465], "smuxi.com": [15080], "dlydrp.com": [2024], "www.americanenglish.state.gov": [17146], "www14.software.ibm.com": [7679], "studentreports.andover.edu": [12653], "www.odesk.by": [11762], "smallbusiness.verizon.com": [17715], "net-backup.com": [11212], "shop.linux-magazin.de": [9407], "nfb.org": [11133], "mspik.es": [2024], "go.2checkout.com": [112], "abytx.co": [2024], "mail.freifunk-rheinland.net": [20171], "privacyfix.com": [13140], "stak.ly": [2024], "on.fayard.re": [2024], "www.leics.police.uk": [9255], "dav-i.es": [2024], "www.nmap.org": [11472], "opnw.at": [2024], "esr.cc": [2024], "www.thamesvalleyalert.co.uk": [22137], "wusmeducation.wusm.wustl.edu": [18089], "mycampus.hslu.ch": [7589], "sanpi.homecomputing.fr": [7487], "on.cfr.org": [2024], "in.myblogs.pw": [2024], "pci.im": [2024], "cdn.pictimgs.com": [3917], "marshall.usc.edu": [17366], "www.digifense.com": [4465], "a1-images.myspacecdn.com": [10889], "selfserve.hants.gov.uk": [7185], "www.gvccu.com": [6375], "www.geekhack.org": [6485], "vaclin.com": [2024], "demoresdex.naukri.com": [11146], "portal.mkk.com.tr": [9770], "ape.st": [2024], "resources.mit.edu": [9762], "expert.yandex.com": [18742], "www.simmtester.com": [14878], "changxing.jd.com": [8434], "feeds.nczonline.net": [21098], "toulouse.squat.net": [21955], "sland.site": [2024], "gilopez.mx": [2024], "doppler.paas.uninett.no": [17280], "c1.atdmt.com": [10393], "hws.uchastings.edu": [17015], "sertolovo.beeline.ru": [1778], "www.noao.edu": [11091], "ek8whxe.cloudimg.io": [19624], "upcmail.upc.ie": [17082], "*.jubii.dk": [8674], "merr.me": [2024], "www.whistleout.com.au": [18344], "go.esucces.dk": [2024], "wpenginestatus.com": [18015], "deis.com": [4303], "tmall.com": [22222], "museum.php.net": [12280], "s1b.tv": [2024], "sfwmd.link": [2024], "go.b1sat.com": [2024], "www.openleaks.org": [11985], "testweb.crossref.org": [3812], "www.onebillion.org.uk": [11891], "jay.pub": [2024], "www.atbank.nl": [418], "providerportal.communitycares.com": [19654], "posti.fi": [21470], "lbbooking.ust.hk": [22412], "gentoo.zugaina.org": [19019], "www.consultations.southwark.gov.uk": [15264], "www.zerotier.com": [18942], "www.freecause.com": [6135], "api.adsnative.com": [19091], "tmmy.us": [2024], "*.cgc.gov.au": [3496], "by.12sm.us": [2024], "stec-t09.xhcdn.com": [18605], "www.pfsense.org": [12637], "bstrdchld.co": [2024], "my.jdownloader.org": [20633], "skillsfundingagency.bis.gov.uk": [17039], "car.saturn.de": [21736], "console.appnexus.com": [1139], "www.sourceforge.jp": [15241], "www.costco.com": [3695], "palliativefellowship.stanford.edu": [15448], "license.magentocommerce.com": [9869], "adbit.co": [570], "myid.threema.ch": [16473], "floatinghospital.org": [5914], "www.mivacentral.com": [10500], "www-static.dreambox.com": [19895], "kraze.me": [2024], "upload.lighttpd.net": [9362], "dr.pe": [2024], "www.ikoula.com": [7966], "to.mher.pro": [2024], "sierracollege.starfishsolutions.com": [21977], "www.sfsite.com": [14170], "efa.vrr.de": [17954], "u.najafiali.com": [2024], "www.backstreetmerch.com": [1627], "switchip.info": [3536], "em60.nl": [2024], "bigv.io": [1883], "www.ipgmail.com": [7796], "vip-stat.youku.com": [18804], "joinnra.nra.org": [21177], "www.iono.fm": [8335], "wsharks.com": [2024], "www.sas.kaspersky.com": [8820], "soc.tl": [2024], "health.unian.ua": [22369], "digikeytest.digikey.de": [4457], "ehs.wustl.edu": [18089], "f1.a1le.bz": [2024], "jxself.org": [8718], "sc.dealtime.com": [4243], "*.thesecuritypractice.com": [16381], "mail.ohns.stanford.edu": [15448], "runl.me": [2024], "*.fcns.eu": [6202], "enbs.dict.cc": [4442], "tutorcom.vc": [2024], "tnee.me": [2024], "*.miranda-im.org": [10478], "aanc.me": [2024], "step.state.gov": [17146], "jeja.pl": [8563], "www.movie4k.me": [10675], "francetv.in": [2024], "geronj.oxfordjournals.org": [12222], "image.captchas.net": [2836], "beefymiracle.org": [1775], "forum.xda-developers.com": [18598], "smetrics.ikea.com": [7962], "www.contribs.org": [3621], "sanmenxia.1688.com": [51], "www.picnichealth.com": [12694], "www.gficloud.com": [6300], "ubnt.com": [17164], "elearning.hslu.ch": [7589], "yahoo.com": [18728], "consumerreports.org": [3601, 3604], "www.qntm.org": [21561], "portal.cyberplat.ru": [3965], "security-master.debian.org": [4263], "*.csc.gov.au": [3497], "tr.pcisecuritystandards.org": [12253], "tuxic.nl": [16930], "cfg.im": [2024], "deu.gd": [2024], "docs.feide.no": [5729], "indm.us": [2024], "klastele.com": [2024], "img0.thejournal.ie": [16299], "rgau.uk": [2024], "static.csmonitor.com": [19737], "reflected.net": [13776], "telegram.me": [16145], "fehlersuche.spiel.tivi.de": [22709], "sta.travel": [2024], "pref.walsall.gov.uk": [22523], "sov.mn": [2024], "ukpayments.org.uk": [17050], "wpgr.es": [2024], "www.advent.com": [706], "feedback2.yandex.kz": [18743], "opensource.mail.ru": [9891], "www.adsupply.com": [598], "*.snolab.ca": [15640], "hastings.firmstep.com": [20108], "wiki.cites.illinois.edu": [17346], "wpad.leeds.ac.uk": [17403], "m.lenta.ru": [20809], "blog.verslu.is": [17724], "track.courierpost.co.nz": [3714], "4dm.in": [2024], "pinkpaislee.com": [12726], "yelp.fi": [18766], "shareholder.ru": [14740], "xdomain.ne.jp": [18643], "pharmacievirtuelle.pha.ulaval.ca": [17319], "www.gottman.com": [6841], "qubes-os.org": [13394], "meta.stackoverflow.com": [15424], "www.ipse.co.uk": [7801], "pbi.bz": [2024], "www-group.slac.stanford.edu": [15448], "t.im9.eu": [20496], "happiness.bufferapp.com": [2419], "xsla.me": [2024], "f1.blick.ch": [2091], "www.satsymposium.org": [14134], "dchs.worldcat.org": [18536], "www.recon.cx": [13476], "csc.hetnet.nl": [8760], "tung.ly": [2024], "scriptmp3.com": [14485], "o2.cz": [16141], "www.s1-adfly.com": [577], "theduk.es": [2024], "dch.to": [2024], "id.guardian.co.uk": [6982], "base64decode.org": [19322], "fitness-tips.pw": [2024], "static-sls.smf.aws.sanomacloud.net": [21731], "www.imercer.com": [20502], "go-mtd.cu.cc": [2024], "democracy.canterbury.gov.uk": [2824], "dashboard.longtailvideo.com": [9601], "portlandonline.com": [3197], "hosting.cz": [20409], "visitbam.org": [2024], "m.musicinfo.co": [2024], "screencraft.org": [14469], "kingston.usembassy.gov": [22406], "router.bede.tfm.ro": [22135], "freakshow.fm": [10322], "blog.xenproject.org": [18647], "piratebaynew.co.uk": [22177], "childrensinfosharing.holyrood.com": [20393], "wiki.osmfoundation.org": [11710], "i3.hdslb.com": [20358], "meet.clp.com.hk": [2636], "sci-hub.cc": [14436], "certification.canonical.com": [2823], "www.ccc-ch.ch": [19527], "images.wambacdn.net": [18064], "store.taobao.com": [16015], "nsfwcorp.com": [11589], "r3r.co": [2024], "ballots.golfdigest.com": [6808], "auto-moto.lemonde.fr": [9204], "wiki.hfo-telecom.de": [7041], "secure-donor.com": [14545], "tlkto.me": [2024], "support.curated.co": [3918], "*.forgottenlands.eu": [6016], "nl.canon.be": [2822], "acromediainc.com": [535], "*.amsa.gov.au": [1422], "tacoda.at.atwola.com": [377], "www.bspb.ru": [2398], "okupesbcn.squat.net": [21955], "sogo.uv.es": [17544], "in.rbth.com": [21596], "rrlead.us": [2024], "wp.mail.qq.com": [13329], "assets.theatlantic.com": [16324], "oboom.com": [21226], "gourl.io": [6772], "m1st.be": [2024], "adserver.juicyads.com": [8682], "matte.in": [2024], "on.chirrup.com": [2024], "mfb.im": [2024], "*.rackcdn.com": [13556], "static.owncloud.com": [12214], "support.infinet.com.au": [8096], "dashboard.rapidleaf.com": [13616], "www.heg.co.uk": [7510], "static.media.smithsonianmag.com": [15073], "*.cspforum.eu": [2690], "box.gb.com": [2024], "sstk.co": [2024], "viamont.es": [2024], "seed.stanford.edu": [15448], "linuxmint.com": [20852], "s2.uczzd.cn": [17003], "*.jawbone.com": [8546], "*.comcourts.gov.au": [3494], "thejournal.ie": [16299], "r.popin.cc": [12954], "tpglnk.com": [2024], "secpriv.wusm.wustl.edu": [18089], "esd.mit.edu": [9763], "rntr.us": [2024], "www.binera.de": [7209], "its-prod-www2-2.ucsc.edu": [17390], "agileu.com": [771], "thinglink.com": [16429], "status.greenqloud.com": [6902], "account.rovio.com": [14042], "batuki.ca": [2024], "ptphu.net": [2024], "bulletproofexec.com": [2433], "flem.in": [2024], "nuclearcat.com": [11607], "www.cpanel.net": [2667], "mansfield.osu.edu": [11797], "bizapp.xyz": [2024], "jotm.rocks": [2024], "www.uptimeinstitute.com": [22393], "effusion.co.uk": [19965], "lists.princeton.edu": [13113], "www.gnome-look.org": [6742], "na1.www.gartner.com": [6442], "xagyl.com": [18591], "www.live.bbc.co.uk": [19331], "s131.cnzz.com": [3328], "telecolumbus.com": [16138], "mobileapp.hkpl.gov.hk": [20385], "blackarch.org": [2056], "grasswire.com": [6880], "ted.ly": [2024], "userapi.com": [22408], "1101.jp": [2024], "shop.mcafee.com": [10129], "www.cxense.com": [2709], "ox-d.openxadexchange.com": [12032], "forum.subterraneangames.com": [15632], "go.nwlb.us": [2024], "poc.anthem.com": [19206], "loopte.ch": [2024], "cine.ws": [2024], "coopstats.com": [2024], "effect.ly": [2024], "www.kuro5hin.org": [9056], "c2.nrostatic.com": [21189], "www.finanstilsynet.dk": [5816], "mir.wustl.edu": [18089], "happyk.at": [2024], "finanstilsynet.dk": [5816], "svnweb.cern.ch": [2588], "techiebud.me": [2024], "xirr.us": [2024], "www.tescocompare.com": [16208], "im.price.com.hk": [13095], "gambling-affiliation.com": [7737], "www.directbox.biz": [4517], "actu-golf.lemonde.fr": [9204], "opn-asmb.ly": [2024], "api3.geo.admin.ch": [22061], "grace.clinic": [2024], "www.industrymailout.com": [8083], "cdn.dota2.com": [4693], "vidadememe.tk": [2024], "www-jp.mysql.com": [10825], "commbank.com.au": [3480], "my.uw.edu": [17156], "home.1und1.de": [91], "conference2004.kde.org": [8735], "stats.opkode.com": [12093], "surreyoutdoorlearning.uk": [22043], "lists.fit.edu": [5922], "www.telesign.com": [22118], "emeastr.at": [2024], "www.bgpstream.com": [1539], "tdsne.ws": [2024], "www.tug.org": [16055], "nl.pornhub.com": [12972], "zabbix.spnet.ru": [21939], "a3.lscdn.net": [9115], "ecologylab.net": [8243], "itcan.me": [2024], "hotels.com": [7562], "www.gruenewirtschaft.admin.ch": [22061], "www.ujd.gov.sk": [15037], "wcfan.de": [18112], "www.cesiumjs.org": [2980], "yay.pw": [2024], "www.facebook.fr": [5612], "piratebay.ukbypass.online": [22259], "landingpage.maxon.net": [10110], "a.pikof.com": [2024], "www.childrenscommissioner.gov.uk": [19580], "bafs.blue": [2024], "cmon.co": [2024], "abwrs.co": [2024], "directory.eoportal.org": [5303], "afgp.co": [2024], "pitstop.manageengine.com": [9951], "dwncff.com": [2024], "r24626559.sync.app.asana.com": [1265], "istyl.es": [2024], "asjcme.oxfordjournals.org": [12222], "api.futurezone.at": [6263], "socitmreporting.govmetric.com": [6850], "ch.dcpndsgn.com": [2024], "4y.de": [2024], "buhonline.ru": [19468], "www.youtube.co.hu": [18800], "mail1.play-asia.com": [12828], "www.netmundial.net": [11252], "boutique.rtbf.be": [14063], "lcd.re": [2024], "ealfa.ro": [2024], "s.pc.qq.com": [13329], "help.edgar-online.com": [4884], "insider.windows.com": [18432], "u.ophir.li": [2024], "christiene.ws": [2024], "rgsbank.dengisend.ru": [4344], "openfoundry.org": [11975], "www.coochey.net": [3636], "willb.me": [2024], "*.bitnamihosting.com": [1971], "www.swarmapp.com": [22058], "nbcu.me": [2024], "bilz.cf": [2024], "isp.oxfordjournals.org": [12222], "slaveryfootprint.org": [15016], "cvrp.de": [2024], "i.accu.fm": [2024], "*.community.wholeliving.com": [10040], "cdn.torrents.me": [22247], "*.linuxpenguins.xyz": [20853], "www.vircurex.com": [17818], "forum.mobilism.org": [21004], "developer.gitter.im": [6666], "www.biicode.com": [1897], "gay180.com": [6456], "wiki.cacert.org": [2534], "mindea.co": [2024], "account.tagboard.com": [22085], "www.solariz.de": [21896], "shop.breakingmuscle.com": [19445], "rocksbox.com": [21665], "www.ktk.de": [8769], "www.cru-inc.com": [2675], "www.solarflare.com": [15183], "a.ichiba.jp.rakuten-static.com": [21577], "nuwear.com": [11625], "www.voice.fi": [17907], "www.ztunnel.com": [18859], "cmpth.me": [2024], "clippod.com": [3269], "epa-bdcc.ornl.gov": [11730], "mfw.rocks": [2024], "comquas.com": [19662], "clmpr.gs": [2024], "uckg.info": [2024], "www.seflorida.bbb.org": [1851], "www.echo.nasa.gov": [10908], "cl1ckth1s.ml": [2024], "mail.techxpress.net": [16087], "www.freifunk-ansbach.de": [6167], "jonbilo.us": [2024], "socopm.us": [2024], "ssl-www.static.rtbf.be": [14063], "go.hsb.com": [2024], "www.pravobraz.ru": [21480], "on.flatoday.com": [2024], "myaccount.chorley.gov.uk": [19586], "css.createsend1.com": [3770], "occ.london": [2024], "cdn0.tnwcdn.com": [22227], "stryv.in": [2024], "839iat.se": [2024], "f-feil.de": [2024], "afont.es": [2024], "biostat.wustl.edu": [18089], "www.otpdirekt.sk": [12166], "ci.popcorntime.sh": [21461], "rechten.uvt.nl": [16521], "btcgear.com": [1589], "viaforensics.com": [17745], "*.aedc.gov.au": [1413], "pass.yandex.ua": [18747], "evm.bz": [2024], "web.eecs.umich.edu": [17354], "www.jsclasses.org": [8671], "t.wmf.ms": [2024], "www.mobility.vutbr.cz": [17609], "*.redbullusa.com": [13726], "xii.ie": [2024], "fb.com": [5687], "t.tykz.net": [2024], "ideoclick.com": [7943], "macalester.worldcat.org": [18536], "www.alternativet.dk": [933], "pub.dfo.no": [19824], "mv.treehousei.com": [16780], "ncwtv.tv": [2024], "6xth.se": [2024], "s.taiki.net": [2024], "www.newsru.com": [11388], "tivi.cas.sk": [1507], "www.allafrica.com": [19145], "www.knsaber.com": [16624], "vab.li": [2024], "share.sbndev.net": [14141], "www.openid.net": [11980], "kah.lt": [2024], "max-refund.com": [2024], "imagesrv.gartner.com": [6442], "admin.test.octopuspop.com": [11754], "drought.gov": [4766], "cvs.savannah.gnu.org": [6337], "mcgam.es": [2024], "apps.dagbladet.no": [4102], "wesnothd.wesnoth.org": [18298], "style.news.am": [21124], "sakh.sledcom.ru": [21858], "lambdaops.com": [9152], "mrporter.com": [9801], "idento.link": [2024], "cronometer.com": [2674], "www.external.ameslab.gov": [19191], "www.history.com": [7422], "yscn.co": [2024], "www.cloudflarechallenge.com": [3285], "cumulus.akixi.com": [19129], "internet.yandex.kz": [18743], "investor.vanguard.com": [22426], "lh6.google.*": [6821], "fanz.ly": [2024], "blife.at": [2024], "www.kanotix.org": [8797], "www.*.anl.gov": [1212], "*.alaska.edu": [17324], "orb-international.com": [11695], "my-dw.com": [2024], "research.vt.edu": [17825], "apis.google.com": [6818], "domains.servenets.com": [14662], "*.schulte.org": [14431], "*.analytics.edgekey.net": [1031], "www.thunderbird-mail.de": [16478], "justwi.ne": [2024], "unitedrepublic.org": [17307], "durnushek-net.friday.ru": [20175], "www.batmanarkhamknight.com": [1716], "jewelosco.com": [8576], "orchid.cs.illinois.edu": [17346], "api.jwplatform.com": [8479], "www.nlayer.net": [10979], "mail.sans.org": [14128], "devans.info": [2024], "*.vtcsec.ru": [17603], "url.lukchun.com": [2024], "jef.fm": [2024], "liga.sovcombank.ru": [21914], "link.to.it": [2024], "soymr.info": [2024], "rc.rests.afisha.ru": [19107], "bugs.ispsystem.ru": [20591], "auth.sandstorm.de": [14345], "forum11.djicdn.com": [4029], "adam.law.harvard.edu": [7211], "www.wtfuzz.com": [18024], "sp.gifts": [2024], "elimtr.co": [2024], "pvac.leeds.ac.uk": [17403], "junodownload.com": [8700], "www.kommunal.se": [8978], "my.calpoly.edu": [2764], "cf1.100r.org": [12], "tm.techmens.com": [2024], "www.imagestash.org": [7987], "diversity.mit.edu": [9761], "shop.askthebuilder.com": [1290], "www.uu.se": [17153], "global.riverbed.com": [13964], "102.bz": [2024], "account.zanesvilletimesrecorder.com": [18883], "www.ccedk.com": [2561], "po.garstelecom.ru": [20207], "tuva.la": [2024], "*.marconisida.com": [3928], "recuperaciones.bbva.es": [1744], "skdys.com": [2024], "cashier.95516.com": [248], "passion-radio.com": [12463], "dev.kik.com": [20716], "www.baselland.ch": [22061], "asta.fnal.gov": [5741], "thedebrief.co.uk": [22149], "www.padmapper.com": [12352], "info.ornl.gov": [11730], "go.nico.is": [2024], "u.proxmts.net": [2024], "sdwl.pjtj.net": [2024], "tranphong.net": [2024], "careers.next.co.uk": [11399], "discourse.brew.sh": [19447], "blog.userecho.com": [17515], "jth.io": [2024], "community.ican.org.uk": [20474], "www.berkeleylug.com": [1816], "kwasi.co": [2024], "m2.quel.jp": [2024], "l.cvepdb.fr": [2024], "dev.thegreatcoursesplus.com": [16360], "syncaccess.net": [22067], "abestpremium.com": [19040], "www.irancybercrime.org": [20574], "*.thethemefoundry.com": [16389], "kb.threatmetrix.com": [16467], "35d.us": [2024], "svn.freebsd.org": [6097], "www.acm.org": [317], "picnichealth.com": [12694], "www.djoser.nl": [19851], "www.aolcdn.com": [381], "li.lamantia.biz": [2024], "lettre-de-motivation-facile.com": [9282], "www.anquan.org": [19204], "z.nder.com.au": [2024], "www.demonoid.pw": [4340], "menssoccer.clubs.bucknell.edu": [2406], "static.zhihu.com": [18956], "www.redstate.com": [13724], "s.nieder.me": [2024], "services.tineye.com": [16543], "images.offerpop.com": [11776], "*.storage.live.com": [9495], "www.bitlendingclub.com": [1961], "uww.me": [2024], "slz.slinez.net": [2024], "go.huje.co": [2024], "www.proovl.com": [21515], "utrgv.link": [2024], "vpolyany.europaplus.ru": [20034], "unt.edu": [17357], "s.lenovo.com": [9267], "www.demonoid.ph": [4340], "ybx.yahoo.co.jp": [18730], "apps.wku.edu": [22602], "insili.co": [2024], "copy.com": [3657], "arel.io": [2024], "cgoo.se": [2024], "optionsanimal.com": [12110], "yanao.sledcom.ru": [21858], "disbi.co": [2024], "remotedesktop.web.cern.ch": [2588], "buy-static.norton.com": [11545], "chartbeat.com": [3024], "copdrp.biomedcentral.com": [1931], "es.internetessentials.com": [20553], "pair.com": [12365], "blntq.co": [2024], "www.mercatus.org": [10296], "ads.webtrends.com": [18264], "tech.zalando.de": [18877], "reginavychod.rtvs.sk": [13536], "www.socialsecurity.gov": [15126], "www.dearmummyblog.com": [19793], "iuf.alternatifbilisim.org": [930], "www.svyaznoy.ru": [22053], "patrimoniocultural.unizar.es": [17441], "schooladmissions.northyorks.gov.uk": [21161], "van.physics.illinois.edu": [17346], "api.qrserver.com": [13330], "redf.in": [2024], "static.vg.no": [17569], "ttj.pw": [2024], "lafargeholc.im": [2024], "on.isb.ro": [2024], "linear.com": [9385], "git08.rostrud.ru": [21677], "g02.s.alicdn.com": [853], "www.team29.org": [22106], "login.mcafee.com": [10129], "p2p.alfaportal.kz": [849], "www.elgiganten.dk": [5154], "kolabnow.com": [8972], "sibfout.mvd.ru": [21055], "accuvant.com": [523], "www.yourvideofile.org": [18830], "arab.tn": [2024], "api.twitch.tv": [16961], "7169itan4di925r4w158r2owdzs7rn8ejsy1huwx.ipleak.net": [20571], "www.edeka.de": [19953], "schwab.com": [14432], "media.apnaindia.com": [1127], "i1.hdslb.com": [20358], "abenteuermako.tivi.de": [22709], "media-spacejam.cursecdn.com": [3927], "fooq.de": [2024], "yoursupportservices.co.uk": [18823], "gmm.to": [2024], "ssoci.al": [2024], "ypl.io": [2024], "uassi.st": [2024], "img3.linuxdeepin.com": [4287], "packages.zuji.com.hk": [19021], "www.healthystart.nhs.uk": [10953], "biologydirect.biomedcentral.com": [1931], "www.cis.vutbr.cz": [17609], "www.caisse-epargne.fr": [2736], "www.digitaltransactions.net": [4470], "r24617940.sync.app.asana.com": [1265], "api.yandex.com.tr": [18740], "gogoair.com": [6790], "law.cuny.edu": [3190], "secureassets.clickmotive.com": [3249], "airbnb.fi": [793], "rog.asus.com": [416, 417], "www.aphis.usda.gov": [17299], "calbt.co": [2024], "libguides.com": [9304], "hungryhowies.com": [20446], "*.cashforcontracts.com": [2890], "www.glose.com": [6729], "put.io": [13300], "mim.ec": [2024], "www.divshare.com": [19849], "airbnb.fr": [793], "adinquiry.bingads.microsoft.com": [10396], "seal.pro": [2024], "cms.executive.mit.edu": [9763], "content.mkt51.net": [20998], "www.geokrety.org": [20233], "bouncycastle.org": [2264], "0x.co": [5], "mobile.cmbchina.com": [2639], "mintrud.nso.ru": [21192], "mtchmilr.me": [2024], "mailarray.stalbans.gov.uk": [21974], "jira.svyaznoy.ru": [22053], "financing.dell.com": [4317], "tbulo.us": [2024], "www.nfb.org": [11133], "dp.pe": [2024], "prelaunch.techxpress.net": [16087], "t4sya.ga": [2024], "stumble.it": [2024], "nos.pt": [11552], "ndla.no": [11158], "www.linode.com": [9401], "vs6.bdstatic.com": [1642], "elements.yandex.com.tr": [18740], "*.lippu.fi": [9454], "dallon.co": [2024], "robert.sesek.com": [14689], "islington.greenparty.org.uk": [6908], "*.reactos.org": [13664], "at.lymphy.com": [2024], "ruch.me": [2024], "eatsterling.co": [2024], "learn.flexport.com": [5893], "nutn.info": [2024], "ntdgm.biligame.com": [1903], "www.uned.es": [17248], "w.w3cinc.com": [2024], "vp.lc": [2024], "s.pkvdesigns.nl": [2024], "flocabulary.com": [5915], "mcgrell.is": [2024], "m4.hkgolden.com": [7058], "airmap.io": [790], "android.git.linaro.org": [9377], "www.censor.net.ua": [19538], "irishvetjournal.biomedcentral.com": [1931], "sspot.ly": [2024], "www.sedo.fr": [14606], "link.dealq.co": [2024], "www.ffa.ro.vutbr.cz": [17609], "orel.sledcom.ru": [21858], "bugparis.tuxfamily.org": [22319], "sendguide.bedford.gov.uk": [19341], "mods.simplemachines.org": [21830], "edge.ly": [2024], "doc.rust-lang.org": [14102], "unian.info": [22369], "44.rkn.gov.ru": [13971], "www.lourdas.name": [9632], "ctd2.nci.nih.gov": [11090], "vicetorrent.com": [21522], "rss.imensa.de": [7990], "winzi.gs": [2024], "api.pachube.com": [12342], "linx-cache.microad.jp": [10377], "canvasholidays.co.uk": [18579], "yuedun.duapp.com": [19902], "globalsign.com.*": [6700], "www.bartbania.com": [1709], "vilnius.usembassy.gov": [22406], "blog.oneplus.net": [11880], "member-admin.neighbourhoodalert.co.uk": [21100], "go.shopvop.in": [2024], "girls4u.info": [2024], "static.exoclick.com": [5489], "txrealto.rs": [2024], "qubevu.biz": [2024], "mcjcinfo.hkjc.com": [20384], "www.torrentdownloads.net": [22244], "parrable.com": [12441], "apiok.ru": [11806], "ssb.auction": [2024], "www.termsofservicegenerator.com": [6698], "vio.ma": [2024], "www.randomhouse.biz": [13603], "syncproxy2.eu.debian.org": [4263], "irrs.in": [2024], "leit.es": [2024], "www.daringfireball.net": [4140], "weddingmovie.us": [2024], "rainm.kr": [2024], "forum.zdoom.org": [22710], "www.nowsecure.com": [11573], "foto.delfi.lv": [19800], "sahih-bukhari.com": [21714], "site.physics.georgetown.edu": [6531], "in.eric.pe": [2024], "jobsuche-hochschulanzeiger.fazjob.net": [5545], "www.cloudafrica.net": [3280], "b.freedoh.net": [2024], "*.elitepartner.de": [5161], "ssllin1.123-secure.com": [33], "unionlearn.org.uk": [22374], "resource.duapp.com": [19902], "kingstar.mobi": [2024], "ads.okcimg.com": [11808], "vasco.microad.jp": [10377], "zh.4.boardgamearena.com": [2182], "ymem.us": [2024], "firmy.prace.cz": [13054], "epson.com.mx": [5318], "ffrf.org": [6141], "web.fnal.gov": [5741], "pwnag.com": [2024], "www.alkutubcafe.com": [19144], "redca.me": [2024], "docs.codecov.io": [3365], "mynapkin.us": [2024], "onride.de": [21259], "flight.baidu.com": [1641], "createwp.customer.mheducation.com": [20974], "art4mil.com": [2024], "gpc.wustl.edu": [18089], "fnsi.egisz.rosminzdrav.ru": [21674], "dl5.oo-software.com": [11929], "imail.iu.edu": [8069], "bullockinc.com": [2436], "www.metro.mastercard.ru": [10065], "lunarmods.com": [624], "i.lsimg.net": [9510], "nw0.uk": [2024], "l.frltcs.at": [2024], "taian.jd.com": [8434], "l.undgst.co": [2024], "imfreedom.org": [8184], "polisforbundet.se": [12913], "oceanf.it": [2024], "crm.newint.org": [11337], "derf.me": [2024], "dump.bitcoin.it": [1989], "hunchlab.com": [7622], "go.ggypo.com": [2024], "ra.gtimg.com": [6975], "res-1.cloudinary.com": [3306], "northdevontheatres.org.uk": [11535], "adminlb.imodules.com": [7766], "clearxchange.com": [3232], "nebelwelt.net": [11164], "prb.aps.org": [976], "themeroller.jquerymobile.com": [8464], "fisch.migros.ch": [10417], "letsp.in": [2024], "go.satsangi.xyz": [2024], "postel.it": [13015], "finance.lemonde.fr": [9204], "hse.cern": [2588], "forum.1und1.de": [91], "forum.pjrc.com": [12291], "piratebay.unlockproject.xyz": [22259], "rbtweb.vodafone.pt": [17903], "sup3rst4r.ml": [2024], "www.netbeans.org": [11223], "governmentattic.org": [6856], "jgill.me": [2024], "freshbsd.org": [6179], "m-gat.es": [2024], "ftri.co": [2024], "chanks.co": [2024], "brightoncollectibles.com": [2348], "tgau.co": [2024], "go.apkpro.net": [2024], "mail.muslimsfacingtomorrow.com": [10768], "h2.ifengimg.com": [20487], "www.couponcabin.com": [3710], "minselhoz.49gov.ru": [187], "restapi.amap.com": [19166], "connect.cryptoseal.com": [3857], "www.box.osu.edu": [11797], "gltr.in": [2024], "www.mydatapipe.com": [10846], "ad-stir.com": [567], "commons.commondreams.org": [3490], "cntrck.co": [2024], "gg365.me": [2024], "sso.kabelmail.de": [8775], "start.vendoservices.com": [17695], "golfsuisse.ch": [6809], "freecode.com": [6137], "csctrustedsecure.com": [2681], "ibutinfo02.hkjc.com": [20384], "yelp.pt": [18766], "soyjo.xyz": [2024], "static.ziffdavis.com": [18960], "at.nickjr.com": [2024], "form.digikey.com": [4457], "rdk.al": [2024], "freevip.96.lt": [2024], "woba.co": [2024], "contentz.mkt51.net": [20998], "www.stellaservice.com": [14253], "orsk.startsmile.ru": [21980], "mcordis.ly": [2024], "takecontrolbooks.com": [15979], "klick2contactsales.com": [20732], "psb.im": [2024], "afcd.gov.hk": [7059], "www.matnat.uio.no": [17414], "strkup.com": [2024], "membersaccounts.com": [20961], "a.8bitfirst.com": [2024], "blnds.co": [2024], "nwamrcn.co": [2024], "blnds.cm": [2024], "prpty.co": [2024], "www.cbs.mpg.de": [9794], "docs.kolab.org": [8970], "vbk.me": [2024], "versia.ru": [22446], "s71.cnzz.com": [3328], "*.getclicky.com": [6593], "seals.trust-guard.com": [16851], "cy.on.gt": [2024], "scheduleonce.com": [14412], "ni.elfak.net": [2024], "marketplace.plannedparenthood.org": [12809], "thalescomminc.com": [16242], "cadsoft.de": [2725], "company.yandex.com.tr": [18740], "eseu.megabus.com": [10244], "undergradresearch.wustl.edu": [18089], "my.joinos.com": [8633], "www.dreamsolution.nl": [4748], "leeds.ac.uk": [17403], "*.briggs-riley.com": [2334], "hallmark.justgive.org": [8709], "*.davidsontutoring.com": [4217], "l.fmelos.com.br": [2024], "15oocmfxz9lrwyso26yymbh3jzcb6sar5vi650kw.ipleak.net": [20571], "etsy.me": [2024], "net.bme.hu": [1556], "www.brooksidefund.com": [2381], "marketing.plot.ly": [12860], "u.abimayu.com": [2024], "ioff.to": [2024], "*.met.vgwort.de": [17568], "rbbk.me": [2024], "pcvlab.engineering.osu.edu": [11797], "damnsmalllinux.org": [4123], "www.voscast.com": [17934], "nylon.cm": [2024], "community.broadcom.com": [2372], "assets.area17.com": [1208], "torreycommerce.net": [16664], "ajax.cloudflare.com": [3284], "www.fms.treas.gov": [17139], "t.suumo.jp": [2024], "zozs.se": [19011], "www.billboard.com": [1909], "tgml.co": [2024], "datacloud-us-east-1.tealiumiq.com": [16060], "qin.ec": [2024], "emergency.weill.cornell.edu": [3676], "empop.us": [2024], "bf.cl": [2024], "doorbell.io": [4679], "n4g.me": [2024], "*.decorrespondent.nl": [4234], "kan.taobao.com": [16015], "www.apichangelog.com": [19214], "*.spoki.lv": [15356], "www.anirena.com": [1064], "ssb.io": [2024], "sescu.ro": [2024], "jyme.co": [2024], "hague.in": [2024], "sugarlabs.org": [15646], "web.pirateleaks.cz": [12738], "assets.devsbuild.it": [4420], "hin.ge": [2024], "mdj.onl": [2024], "netpartnerstudent.wustl.edu": [18089], "tqtold.me": [2024], "partners.blackberry.com": [2068], "avn.nu": [2024], "www.1tv.ru": [88], "www.uw.edu": [17156], "on.rbcgam.com": [2024], "www.mirc.com": [9760], "khakassia.tpprf.ru": [22260], "tuan.jd.com": [8436], "www.ctc.ru": [19738], "kavkaz-uzel.eu": [20693], "christianforums.com": [3116], "infra2-1.slu.se": [14195], "unternehmen.aldi-suisse.ch": [357], "l.nerdynaut.com": [2024], "sescoops.com": [14163], "unblockthepiratebay.org": [22174], "www.leadertech.com": [9213], "rutracker.org": [21702], "www.sufficientlysecure.org": [15645], "store.boingboing.net": [2197], "*.static.flickr.com": [5898], "swefair.engineering.osu.edu": [11797], "agenda.weforum.org": [17994], "licensing.warrington.gov.uk": [18079], "bless.rocketbank.ru": [13994], "kntr.co": [2024], "b2.elnovel.com": [2024], "sync.security.pp.regruhosting.ru": [13803], "www.t411.ch": [15847], "compte-citoyen.montpellier3m.fr": [10609], "foodics.link": [2024], "arig.me": [2024], "hexspoorwms.nl": [7384], "scans.io": [14398], "www.plex.tv": [12854], "*.ic-live.com": [7905], "film.qq.com": [13328], "www.blackpearlpdm.com": [2059], "api.readcube.com": [13666], "audioprointernational.com": [8225], "sublimetextbook.com": [22021], "*.messagingengine.com": [10315], "wpsoftware.net": [18016], "insideygs.com": [8170], "smchamb.com": [2024], "twik.it": [2024], "sideshowtoy.com": [14826], "differencebetween.net": [4450], "*.certifiedsecure.com": [2977], "stsdb.co": [2024], "www.grassroots.org": [6879], "downloadverse.com": [4722], "img.secureserver.net": [14574], "ergsu.re": [2024], "calvert.guru": [2024], "t0uchm3n90.ml": [2024], "data.wien.at": [22588], "ceaa.osu.edu": [11797], "yts.ag": [22700], "www.eadaily.com": [19929], "mla.stanford.edu": [15448], "api.paradoxplaza.com": [12414], "track.venatusmedia.com": [22481], "micro.seas.harvard.edu": [7211], "get.rallydm.com": [2024], "note.lc": [2024], "zrnbs.cc": [2024], "www.coindaddy.io": [3393], "online.uen.org": [17537], "li.schart.net": [2024], "quest.rocketbank.ru": [13994], "d-jembut.ga": [2024], "vernalbug.com": [2024], "www-01.ibm.com": [7679], "nwsdy.li": [2024], "www.opengg.me": [21274], "zcn.mx": [2024], "licai.jd.com": [8436], "www.thestaradvisers.com": [16383], "cid.oxfordjournals.org": [12222], "forums.grsecurity.net": [6360], "openhost.co.nz": [12067], "static.rubyforge.org": [14074], "ilive.bury.gov.uk": [19476], "heg.co.uk": [7510], "kingmil.es": [2024], "propnolo.gy": [2024], "www.quickleak.se": [13413], "alessio.link": [2024], "www.beta.mcafee.com": [10129], "gsk.worldcat.org": [18536], "rocktc.de": [2024], "wpvulndb.com": [18017], "clck.info": [2024], "*.ahm.com.au": [779], "r24625277.sync.app.asana.com": [1265], "southeastdorset.greenparty.org.uk": [6908], "transfer.xe.com": [18599], "*.glamorousuk.com": [6680], "audit.wales": [19273], "nesea.org": [10942], "*.us0.cloud.oracle.com": [12116], "subscription.timeinc.com": [16535], "static.pornolab.net": [21465], "statisch.marktplaats.com": [10034], "societyforscience.org": [15145], "quickstarts.asp.net": [413], "bg.chaucanh.net": [2024], "cdn.adf.ly": [577], "url2.dk": [2024], "teach-ats.ed.gov": [4881], "blog.codinghorror.com": [3384], "honda.engineering.osu.edu": [11797], "rentacar.aegeanair.com": [6896], "aconn.me": [2024], "theanarchistlibrary.org": [16290], "authors.appadvice.com": [1143], "form.percona.com": [12589], "s.eupathdb.org": [2024], "mat.boum.org": [2261], "somni.sky.de": [14990], "freef.ly": [2024], "layout.web.cern.ch": [2588], "3d.sviaz-bank.ru": [15740], "www.pocketmags.com": [21445], "crypto.is": [3849], "heim.ifi.uio.no": [17414], "www.camsis.cam.ac.uk": [17332], "apps.ncl.ac.uk": [10926], "blog.library.leeds.ac.uk": [17403], "ccob.be": [2024], "*.crashspace.org": [3759], "download.jitsi.org": [8596], "lk.mtel.ru": [21041], "logilab.org": [9569], "jquery.org": [8462], "chat.yes.co.il": [22677], "rc.afisha.ru": [19107], "rdg.ac": [2024], "ocsr.fnal.gov": [5741], "freifunk-karlsruhe.de": [6169], "qnt.beeline.kz": [19345], "klckr.de": [2024], "www.cleverbridge.org": [3241], "temple.worldcat.org": [18536], "cpkids.cp.pt": [3741], "v5.darkreading.com": [4143], "sikkerhed.tdc.dk": [15862], "oneonline.devon.gov.uk": [4415], "nightly.gpgtools.org": [6348], "static.tek.no": [16128], "citychsf.co": [2024], "m.newkaliningrad.ru": [21123], "secure.interq.or.jp": [8231], "raionosipenkoadm.khabkrai.ru": [20709], "powertothepooch.com": [13043], "www.annotum.org": [19203], "go.uv.es": [17544], "aimatmelanoma.org": [19118], "plus.104.com.tw": [18], "5dwww.play-asia.com": [12828], "www.vitalsource.com": [22473], "image-maps.com": [7978], "stuar.tl": [2024], "gc2.me": [2024], "s4.cn.bing.net": [1925], "lowtax.es": [2024], "aspsys.com": [1298], "www.ifs.org.uk": [20490], "elogin02.hkjc.com": [20384], "matth.ws": [2024], "fb.knowcx.com": [2024], "glype.com": [6735], "www.plug.dj": [12862], "sp.oxfordjournals.org": [12222], "pcmd.ac.uk": [12569], "www.splashdata.com": [15350], "ym.heart.org": [2024], "*.sodahead.com": [15150], "sviaz-bank.ru": [15740], "hhcdn.ru": [7046], "ct.de": [7288], "secure.dvdpaytech.com": [19909], "forum.kasperskyclub.ru": [8823], "lms.uibk.ac.at": [22350], "kpr-kom.me": [2024], "*.simplekb.com": [14891], "in.kfc.ru": [20707], "ftp-master.metadata.debian.org": [4262], "*.on-disk.com": [11845], "nyb.lt": [2024], "yokw.es": [2024], "hakasia.sledcom.ru": [21858], "samb.al": [2024], "cache-uat.freescale.com": [6161], "adhocracy.de": [641], "mobile.geek.com": [6472], "openshift.com": [12009], "blocketsannonswebb.se": [2110], "mytmb.me": [2024], "www.unity.com": [17310], "garant-tv.by": [20202], "connect.tape.tv": [16019], "shopify.com": [14786], "bandcamp.com": [1662], "rem.jsbin.com": [20659], "beebe.be": [2024], "qinghaiguan.jd.com": [8434], "evoice.co.uk": [4979], "onesolution.cz": [11683], "mail.sedoholding.com": [14607], "fi.3.boardgamearena.com": [2182], "community.oxfam.org.uk": [12221], "sipexternal.upc.ie": [17082], "www.mpg.de": [9794], "secure.engineering.wustl.edu": [18089], "shri.me": [2024], "www.wizbangblog.com": [18478], "www.recombu.com": [13710], "slant.co": [21856], "leaderlandnews.com": [9214], "mail.aliyun.com": [868], "maximintegrated.com": [10108], "smela.mclaut.com": [20942], "autodiscover.hinxton.wellcome.ac.uk": [22559], "uninett.no": [17280], "cas.nebezi.cz": [11165], "4gamer.net": [198], "oncap.it": [2024], "ad5.udn.com": [17020], "yfclnk.us": [2024], "cpanel.fe.ru": [20078], "barkbks.me": [2024], "track.movad.net": [10665], "ara1.me": [2024], "legcobe2016.thestandnews.com": [16315], "peixun.tmall.com": [22222], "*.domainrendelo.hu": [4659], "ghostnoteapp.com": [6616], "uc.kartoteka.ru": [20689], "bucketlistly.com": [2404], "explorers.gsfc.nasa.gov": [10909], "kortelink.com": [2024], "at.goalpost.net": [2024], "www.docusign.net": [4620], "games.mail.ru": [9891], "www.nslovo.info": [21191], "education.gov.au": [4353], "ryansm.it": [2024], "thegirl.co": [2024], "cronius.nl": [3807], "community.centminmod.com": [2959], "www.dubfire.net": [4783], "ditis.tv": [2024], "setbeerfr.ee": [2024], "l.x8g.nl": [2024], "u.subscene.com": [22024], "ampravda.ru": [19194], "1.ly": [2024], "www.bigchangeuk.co.uk": [1879], "forum.thinkpads.com": [16439], "rtcetsy.com": [2024], "code.flickr.net": [5897], "www.chipworks.com": [3092], "dvps.me": [2024], "lillab.lu": [2024], "www17.pipni.cz": [12287], "pokecon.link": [2024], "venner.ws": [2024], "it.norton.com": [11545], "maps.googleapis.com": [6825], "*.gulli.com": [20322], "id.apple.com": [1151], "on.7ruh.com": [2024], "post.dessaly.com": [4382], "unwantedwitness.or.ug": [17459], "community.newegg.com": [11356], "oip.usda.gov": [17299], "xx.tpytw.com": [2024], "www.theamericangenius.com": [22144], "link.rm.dk": [2024], "cs.segpay.com": [14618], "downloads10.mamp.info": [20916], "sensic.net": [11620], "zhiyuanzhe.taobao.com": [16015], "www.ciscoconnectcloud.com": [3166], "mobile.bm.ru": [2176], "tinyapps.org": [16563], "justchris.co": [2024], "ticket.freifunk-rheinland.net": [20171], "farmd.co.uk": [2024], "d2jsp.org": [3989], "truecrypt71a.com": [16840], "www.zdnet.com.au": [18848], "*.pusher.com": [13296], "pins.tips": [2024], "klops.ru": [20735], "wabi.com": [18032], "justeat.nl": [20671], "frid.co": [2024], "bnjam.in": [2024], "www.exchangewire.com": [5474], "www.wigglestatic.com": [18380], "s.afogh.dk": [2024], "webedi.coop.ch": [3647], "peterborough-consult.objective.co.uk": [21225], "bookboon.com": [2213], "westmercia.police.uk": [18301], "www.seomon.com": [21781], "themes.piwik.org": [12768], "i1.daumcdn.net": [4210], "gss3.bdstatic.com": [19339], "new-op.certification.openid.net": [11980], "mkbk.it": [2024], "bugs.alpinelinux.org": [918], "zenmate.ae": [18917], "kf.photos": [2024], "www.tr0n.net": [16698], "ubt3.fanli.com": [5645], "www.firefox.net.cn": [5843], "s.creare.io": [2024], "static.dining.rakuten.co.jp": [13594], "ckla.us": [2024], "theamericangenius.com": [22144], "download.rom1504.fr": [21668], "yllwpn.cl": [2024], "go.mclion.eu": [2024], "nmfc.osu.edu": [11797], "l.ri-co.eu": [2024], "vet.astrobl.ru": [19264], "c4es.pk": [2024], "store.rdg.ac": [2024], "map.bookdepository.com": [2217], "help.blackberry.com": [2068], "map.virustracker.net": [17844], "*.aeriastatic.com": [735], "render-api-us.worldofwarcraft.com": [18542], "start.peppermintos.com": [21386], "brx.co": [2024], "cshcatering.com": [2024], "tmdb.org": [15894], "fabri.me": [2024], "m.parlmany.com": [21350], "mcd.worldcat.org": [18536], "l.mamartes.com": [2024], "sixb.co": [2024], "baer.ly": [2024], "www.nber.org": [11116], "www.inf.uni-hamburg.de": [17025], "revs.me": [2024], "t.getkeypad.co": [2024], "minip.co": [2024], "picpcapi.dftoutiao.com": [19826], "beta.gismeteo.ru": [6650], "on.webmd.com": [2024], "nfhsnet.work": [2024], "www2.surreycc.gov.uk": [22040], "www.zarafa.com": [18893], "numenta.com": [21201], "support.xamarin.com": [18629], "okfn.de": [21236], "readr.me": [2024], "sunmotors.co.uk": [22033], "peacecenter.org": [12536], "rob.ertwalte.rs": [2024], "images.g.switchadhub.com": [15764], "hostit.hu": [7543], "str.sh": [2024], "w.suntravel.xyz": [2024], "ipo.gov.uk": [17048], "bulu.io": [2024], "cdn.images.dailystar-uk.co.uk": [4106], "www.lntecc.com": [9105], "www1.amazon.co.uk": [19170], "s.devstl.com": [2024], "digem.io": [2024], "bit.nacao.us": [2024], "kima.me": [2024], "lifeatyahoo.tumblr.com": [16897], "kassini10.beget.com": [19347], "media.charter.com": [3026], "tehm.ml": [2024], "top.alovi.ch": [2024], "*.aan.com": [980], "vayable.com": [17666], "freesecure.timeanddate.com": [16536], "track.netshelter.net": [11247], "toxlearn.nlm.nih.gov": [11090], "piwik.pso-vertrieb.de": [13232], "www.wierden.nl": [11172], "hongkonggames.lcsd.gov.hk": [7067], "*.adscale.de": [680], "nyr.kr": [2024], "za.norton.com": [11545], "siteprotect.neustar.biz": [11320], "www.resortquestsecure.com": [18579], "thebao.ch": [2024], "i.mdm.ru": [10143], "socialtyzetracking.com": [15140], "travel.yam.com": [18734], "hktr.hkma.gov.hk": [7062], "www.medipreis.de": [10156], "www.wallabag.org": [18054], "static.gtimg.com": [6975], "my.gov.au": [21059], "acs.rshb.ru": [14059], "3dnews.cz": [2024], "corecommerce.com": [3664], "l.studyflow.ru": [2024], "gmx.lu": [6330], "iamplify.com": [7676], "aluga.vc": [2024], "rs.aol.co.uk": [379], "urhood.co.za": [2024], "messenger1.providesupport.com": [13218], "www.hkupress.hku.hk": [20387], "astore.amazon.de": [19174], "foxel.org": [2024], "links.gon.to": [2024], "order.aliyun.com": [868], "i-ca.mp": [2024], "on.tech.eu": [2024], "piwik.heanet.ie": [7267], "www.securityevaluators.com": [14589], "timgrey.me": [2024], "go.m17.nl": [2024], "ktlh.dk": [2024], "pbscore.biz": [2024], "static.ssl7.net": [14559], "*.dp.yieldmanager.net": [13937], "status.lunik.xyz": [20890], "aa.mail.ru": [9891], "haaksbergen.nl": [11172], "mvo-online.ble.de": [19406], "ericrafaloff.com": [20012], "www.segpay.com": [14618], "corporate.zalando.de": [18877], "www.verisign.es": [17712], "icukhosting.co.uk": [7699], "l.tutorando.com": [2024], "fmchr.ch": [2024], "gitlab.schmidtcom.de": [14419], "acol.es": [2024], "www.citizensadvice.org.uk": [19596], "pitt.rocks": [2024], "rwm.press": [2024], "help-it-eu.nike.com": [11440], "leadershipacademy.nhs.uk": [10953], "www.condor.com": [3564], "igd.fraunhofer.de": [6091], "www.yourchoiceyourhome.org.uk": [22691], "covacations.com": [3620], "mcvuk.com": [20943], "ypw.me": [2024], "*.appspot.com": [6833], "kngnpn.co": [2024], "russ.link": [2024], "christydan.com": [2024], "bck.li": [2024], "www.live.com": [9495], "icfla.me": [2024], "pard.ee": [2024], "portlandstate.worldcat.org": [18536], "*.vacenza.com": [17615], "www.subtraxion.com": [22026], "www.equityzen.com": [5325], "allybank.com": [914], "*.npario.com": [10991], "k-ra.be": [2024], "wdstk.ga": [2024], "pornhublive.com": [12973], "www.rt.isy.liu.se": [9097], "www.kprf.ru": [20751], "l.bostah.com": [2024], "ecoin.eu": [19950], "orangechickenlove.com": [12385], "cshp.co": [2024], "*.static.img-dpreview.com": [4483], "kokhma.beeline.ru": [1778], "sapi.me": [2024], "www.velofinder.ch": [22437], "stayfriends.ch": [15510], "naro-fominsk.biglion.ru": [19375], "kiera.nl": [2024], "volusion.co.uk": [17926], "poci.us": [2024], "e.qenr.org": [2024], "dril.us": [2024], "ss.acentar.es": [2024], "www.arisebitcoin.com": [1219], "burstmedia.com": [2463], "ido.justgive.org": [8709], "gallery.lugons.org": [9121], "drhoades.us": [2024], "www.gamegeek-denter.de": [6410], "files.emule-security.org": [19991], "time.yandex.com.ua": [18741], "tutele.mx": [2024], "mansfield.objective.co.uk": [21225], "seniorit15.co": [2024], "stirit.com": [2024], "client-online.rsb.ru": [14058], "gxd.amap.com": [19166], "tinyjpg.com": [16558], "t.tomontech.com": [2024], "store.griffintechnology.com": [6936], "arris.com": [1239], "*.misco.co.uk": [10489], "m.sport-express.ru": [21941], "raeng.org.uk": [14044], "cdn.openculture.com": [12039], "www.ifpa.ie": [7728], "www.payonline.ru": [12516], "www.hizliresim.com": [7438], "wsps.news": [2024], "kultour.infinum.co": [20526], "idn.serveriai.lt": [14677], "s.namu.it": [2024], "volgodonsk.startsmile.ru": [21980], "forms.preston.gov.uk": [21491], "info.veracode.com": [17703], "content.zemanta.com": [18912], "men.pwm.cc": [2024], "piwik.icts.kuleuven.be": [8832], "m.webmail.earthlink.net": [4997], "i4.piimg.com": [16509], "trauer.de": [16763], "git.nlnetlabs.nl": [10980], "www.brainbench.com": [2284], "www.gitlab.com": [6658], "colum.worldcat.org": [18536], "th.itradecimb.com.sg": [2619], "yasi.nyc": [2024], "acw.sciencedirect.com": [21750], "me.sailthru.com": [14304], "bit.mrockz.com": [2024], "secure.counterpath.com": [19697], "lnzr.at": [2024], "cs.piliapp.com": [12706], "quanben.qidian.com": [13349], "www.stelligent.com": [21990], "passport.youku.com": [18804], "precedent.com": [21481], "ssae.symantec.com": [15780], "coolcart.net": [3639], "www.math.uni-heidelberg.de": [17262], "entropay.com": [5287], "my.aerofs.com": [736], "etel.net": [2024], "bymia.be": [2024], "cache3.integriscu.ca": [8204], "prokopievsk.ru": [21513], "yousendit.com": [18799], "eyefilm.nl": [4990], "bit.schlos.net": [2024], "search.nasa.gov": [10909], "microchip.com": [10386], "duba.com": [4782], "pplwssvcs.lowes.com": [9645], "b.n.io": [2024], "oepwebp.centennialcollege.hku.hk": [20387], "pic-viewers.net": [2024], "url.olma.me": [2024], "go.whnt.com": [2024], "mail.his.com": [7292], "api.embed.ly": [5188], "xpns.us": [2024], "firehost.com": [5837], "go2.camp": [2024], "www.glavbukh.ru": [20262], "static.bluejeans.com": [2153], "pic1.58cdn.com.cn": [213], "headers.electrum.org": [5145], "sdc.cmbchina.com": [2639], "danmaku.js.org": [20657], "dragonflybsd.org": [4734], "spabol.sparebank1.no": [21922], "orde.ms": [2024], "cryptorave.org": [3856], "a.flox.co.za": [2024], "cdn1.ustream.tv": [17535], "techlive.adobe.com": [669], "*.chaosreigns.com": [3012], "www.redingtonindia.com": [21620], "dacorum.greenparty.org.uk": [6908], "www.kargo.com": [8810], "beta.flightradar24.com": [20119], "www.canon.ru": [2822], "impact.democrats.org": [4338], "tstea.co": [2024], "ktev.fnal.gov": [5741], "tbnet.me": [2024], "myonecitizenportallive.oxfordshire.gov.uk": [21327], "git.x2go.org": [18589], "www.cloudscaling.com": [3313], "compliance.westlaw.com": [18312], "team.websitealive.com": [18242], "tintup.com": [16553], "theatln.tc": [2024], "mpx.no": [10710], "blankonlinux.or.id": [19405], "www.triplemint.com": [16821], "got.nwtime.org": [11306], "www.guildmc.com": [6994], "dmnd.cndl.es": [2024], "xiscosoft.com.es": [18668], "www.dig.domains": [4453], "www.votewatch.eu": [17935], "minzdrav.gov-murman.ru": [20293], "forums.playwarz.com": [18071], "viborg.europaplus.ru": [20034], "wtru.st": [2024], "login.run.pivotal.io": [12765], "austrian.com": [1431], "rfon.es": [2024], "stuf.ly": [2024], "success.adobe.com": [669], "dougd.me": [2024], "bundeskanzlerin.de": [2442], "static4.meetupstatic.com": [10231], "loath.es": [2024], "zaguan.unizar.es": [17441], "www.laynepublications.com": [9195], "www.kevinajacobs.com": [8879], "people.fedoraproject.org": [5716], "mbk.to": [2024], "idp.lsbu.ac.uk": [9111], "sandbox.gogetssl.com": [6762], "chewelahk12.illuminateed.com": [20494], "cmk.nu": [2024], "alexa.com": [843], "obsev.it": [2024], "bun.bz": [2024], "steinerlib.us": [2024], "rewardz.vodafone.co.uk": [17900], "schulinfo.zvv.ch": [22733], "s15.cnzz.com": [3328], "b2.aztravel.xyz": [2024], "url.munjeet.com": [2024], "stbmt.in": [2024], "*.greensky.com": [6903], "www.mapquest.com": [9979], "reclaim-your-privacy.com": [13707], "puc.ms": [2024], "media.nasaspaceflight.com": [10910], "support.virginmedia.ie": [17823], "*.bekb.ch": [20683], "www.jasonsmovieblog.com": [20626], "cam.wienerstadtwerke.at": [18376], "iz.gd": [2024], "demandbase.demandbase.com": [4324], "vdi-wissensforum.de": [17562], "ih2.redbubble.net": [13721], "www.schoeller.de": [11209], "scontent.cdninstagram.com": [2572], "ns1.lansp.ru": [20781], "partnernet.amazon.de": [19174], "www.craftcoffee.com": [3750], "pda.sakh.com": [21719], "tk.ilius.net": [10228], "tedxsac.us": [2024], "secure.esupport.com": [4964], "ofl.link": [2024], "www.ift.ulaval.ca": [17319], "chf.bz": [2024], "seagate.com": [14499], "lindtusa.com": [9382], "t.brand-server.com": [2296], "seeyou.th-nuernberg.de": [16239], "kasperskypartners.ru": [8825], "mjk.bz": [2024], "r24820154.sync.app.asana.com": [1265], "www.youtube.com.ee": [18800], "opac.ulpgc.es": [17213], "at.hng.tw": [2024], "www.securifera.com": [14578], "*.crowdtangle.com": [3820], "events.golem.de": [6804], "g.icetravel.xyz": [2024], "ibutinfo.hkjc.com": [20384], "go.mail.ru": [9891], "www.askives.com": [1291], "gsrce.soe.ucsc.edu": [17390], "aesa.oxfordjournals.org": [12222], "npinsecure.cdc.gov": [19532], "zentrum.piraten.lu": [21417], "thestranger.com": [16386], "api.gitbook.com": [6655], "assets.stelladot.com": [15531], "act.hrc.org": [7609], "f14y.com": [2024], "wilderssecurity.com": [18398], "anderson.leadershipacademy.nhs.uk": [10953], "immunome-research.biomedcentral.com": [1931], "go.kudhen.com": [2024], "www.oag.ca.gov": [2762], "thesciencegeek.org": [22184], "www.paraschetal.in": [21344], "minimed.wustl.edu": [18089], "img.dell.com": [4317], "tr-a.co": [2024], "www.treasurydirect.gov": [16779], "sitepen.com": [14936], "app.convertkit.com": [3630], "oxchi.co": [2024], "*.radiowoodstock.com": [13577], "forums.mediatemple.net": [10177], "code.homecomputing.fr": [7487], "www.thepiratebay.link": [22174], "2cy.qidian.com": [13349], "klo.io": [2024], "sochi.tpprf.ru": [22260], "euler.vc": [2024], "go.bebubam.vn": [2024], "archives.zataz.com": [18899], "koenrouwhorst.nl": [8967], "fafsalivehelp01.ed.gov": [4881], "clds.co": [2024], "tummy.com": [22307], "techwebonlineevents.com": [16086], "krasnodar.startsmile.ru": [21980], "u.khbn.net": [2024], "wil.by": [2024], "dhq.so": [2024], "s.rebelic.nl": [2024], "voc.tv": [2024], "somafm.com": [21899], "amnesty.ie": [1008], "piedmont.illuminateed.com": [20494], "chiragv.in": [2024], "deit.dict.cc": [4442], "eclipse.org": [5040], "www3.energy.gov": [5243], "www.ello.co": [5165], "on.nc5.co": [2024], "service.projectplacedocs.com": [13189], "x.penguins.ml": [2024], "www.nii.ac.jp": [10967], "strick.biz": [2024], "video26.0xdb.org": [10], "www.digitec.ch": [4494], "p9.pstatp.com": [16680], "broker.247exchange.com": [105], "blkarb.se": [2024], "register.pearsoncmg.com": [12539], "edfringe.com": [19954], "kadesoto.com": [2024], "sn.imhd.sk": [8004], "www.inachinashop.com": [11662], "everyoneisgay.com": [5446], "r.turn.com": [16911], "www.tm.com.my": [16150], "x.f67.us": [2024], "www.energiwatch.dk": [5241], "svastha.info": [2024], "rsty.co": [2024], "atl.so": [2024], "kateso.co": [2024], "sport24.aktualne.atlas.sk": [19269], "poliisi.fi": [12912], "stubhub.axonify.com": [1502], "reformgovernmentsurveillance.com": [13779], "x.enat.in": [2024], "n-m4.in": [2024], "try.opisnet.com": [2024], "hicw.co": [2024], "api.vgc.no": [17569], "www.instagrampartners.com": [8183], "www.dei.com.gr": [6897], "greshams.cn": [2024], "*.plasso.co": [21437], "podlove.org": [10322], "ag.cm": [2024], "tnspostalplatformswex.tnsglobal.com": [15906], "dota2lounge.com": [4692], "mysumm.it": [2024], "cweb.axosoft.com": [1504], "userreport.com": [17521], "developer.aimpulse.com": [786], "kinect.fruitninja.com": [6214], "l.shck.it": [2024], "baifubao.baidu.com": [1641], "aiiexpress.net": [2024], "it-dep-redir.web.cern.ch": [2588], "shkybts.co": [2024], "www.cerberusapp.com": [2970], "filtr.tv": [2024], "wjsz.bme.hu": [1556], "kan.vote": [2024], "on.msg.com": [2024], "ajpg.co": [2024], "www.mapquestapi.com": [9979], "nickg.me": [2024], "*.wgcdn.net": [18321], "tumble.oauth.net": [11645], "buddyver.se": [2024], "git.oschina.net": [11702], "facebook360.fb.com": [5687], "shop.harman.com": [7200], "expre.so": [2024], "mm2.cool": [2024], "www.immunology.nature.com": [11140], "www.neos.eu": [10941], "map.amap.com": [19166], "www.qualcomm.com": [13378], "filterdigital.com": [5798], "w0y.de": [2024], "l.mrguilt.com": [2024], "www.mersenne.org": [10310], "go.curns.me": [2024], "*.drugsforum.eu": [4770], "mobile.hertz247.com": [7371], "credit-suisse.com": [3788], "interdiscount.ch": [3647], "rivieratours.com": [13966], "anypoint.mulesoft.com": [10729], "housing.georgetown.edu": [6531], "*.doubleclick.net": [4710], "maketecheasier.com": [9921], "1koa.me": [2024], "www.goldmann.pl": [6801], "blog.arbornetworks.com": [1185], "pf-cdn.printfriendly.com": [13115], "www.host-tracker.com": [7511], "lovelens.li": [9638], "clicktale.com": [3253], "lab-nation.com": [9138], "rss.sina.com.cn": [14904], "www.rkn.gov.ru": [13971], "domains.play-asia.com": [12828], "www.edialogue.org": [4892], "ewebcart.com": [20044], "www.beginnertriathlete.com": [1784], "girdle-assets.net-a-porter.com": [11210], "stur.ml": [2024], "*.nostarch.com": [11483], "mitsloan.mit.edu": [9763], "topstr.ee": [2024], "api.2k.com": [116], "www.primus.ca": [13112], "www.zena.atlas.cz": [1346], "peerio.com": [12554], "tumblelog.3v1n0.net": [178], "thepiratebay.bypassed.me": [21524], "dpo.st": [2024], "raw.githubusercontent.com": [6661], "www.zeuscat.com": [18953], "see.to": [2024], "debuginfo.clearlinux.org": [3233], "b.115.com": [28], "www.hkgolden.com": [7058], "hsc.is": [2024], "www.covad.com": [3721], "sesame.cnrs.fr": [6174], "infonline.de": [7772], "help.moniker.com": [8880], "ww84.smartadserver.com": [15049], "webmail.skynet.ie": [16283], "www.mutterschaftsgeld.de": [10774], "artof.co": [2024], "rs.vip.miui.com": [9765], "partner.skylink.sk": [15002], "kho.li": [2024], "nownet.me": [2024], "orenburg.beeline.ru": [1778], "www.flixbus.it": [5911], "wiki.deepin.org": [4287], "cmnt.ca": [2024], "www.elska.ble.de": [19406], "ck.juicyads.com": [8682], "app.95516.com": [248], "yongchun.jd.com": [8434], "f.etao.com": [4965], "*.sptimes.com": [14225], "pcicomplianthosting.com": [12568], "vegancocina.net": [2024], "www.vocativ.com": [17898], "megatel.ru": [20959], "www.emergency.wustl.edu": [18089], "bmcneurol.biomedcentral.com": [1931], "openprovider.ru": [12074], "maphpy.org": [2024], "pvi.me": [2024], "gameselectors.com": [6417], "7lb.co.uk": [2024], "pub.idqqimg.com": [7926], "es.pornworms.com": [12974], "equity.org.uk": [5324], "cwa.re": [2024], "www.hertz.se": [7365], "sho.wth.is": [2024], "m.myzacky.id": [2024], "www.hertz.si": [7361], "*.unigine.com": [17275], "sta.sh": [15422], "log.newsvine.com": [11390], "short.zunovi.cz": [2024], "lonr.link": [2024], "volley.lemonde.fr": [9204], "malwaretech.net": [9938], "go.firef.ly": [2024], "caisse-epargne.com": [2736], "mapraider.com": [9984], "bluewalr.us": [2024], "manufacturing.osu.edu": [11797], "selfservice.bassetlaw.gov.uk": [1714], "dialogs.com": [4431], "tracking.mediamarkt.de": [20949], "jakea.uk": [2024], "na.download.webconverger.com": [22543], "www.shopsite.com": [21809], "flughafen-zuerich.ch": [20124], "www.centrance.com": [2601], "squiz.ly": [2024], "otr.cypherpunks.ca": [3977], "transformationmadeeasy.com": [16739], "test.qdaily.com": [21554], "freifunk-gera-greiz.de": [6171], "macruby.org": [9837], "ceas.osu.edu": [11797], "sonypictures.co.uk": [15221], "by.du.st": [2024], "www.trademoremargin.com": [16710], "carinhas.de": [2024], "clientapi.lovebizhi.com": [20878], "www.evo.com": [5452], "hongbao.alipay.com": [864], "pages.e.debenhams.com": [19794], "ifjrc.org": [2024], "gogo.to": [2024], "catalog.hathitrust.org": [7230], "krautchan.net": [9017], "www.scriptmp3.com": [14485], "tenser.org": [2024], "hornbach.at": [7504], "www.mebank.com.au": [9748], "eshop.hnonline.sk": [7445], "dan.langille.org": [9159], "hits.theguardian.com": [16364], "austiners.com": [1403], "www.efukt.com": [4906], "l.daniil.it": [2024], "an-aus.com": [2024], "s140.cnzz.com": [3328], "mara.gov.au": [11787], "ace.advertising.com": [713], "www.swift.im": [15751], "docs.buildbot.net": [19469], "surveys.adelphi.de": [635], "issues.jenkins-ci.org": [8565], "trafficfactory.biz": [16723], "rxss.co": [2024], "spotxchange.com": [15365], "fokus-europa.de": [10322], "apt.linode.com": [9401], "www.venmo.com": [17696], "business.gutefrage.net": [7011], "www.kasperskycontenthub.com": [8826], "myersgroup.engineering.osu.edu": [11797], "www.howinerd.com": [7578], "mdws.prospera.ca": [13207], "img.cash.ch": [19522], "rapt.media": [2024], "*.nicekicks.com": [11424], "www.nkj.ru": [21143], "jobs.foreignpolicy.com": [6002], "research.ibm.com": [7679], "whichmba.com": [18337], "www.ewebcart.com": [20044], "ecommerce.apple.com": [1151], "dreams.bz": [2024], "events.microsoft.com": [10396], "godaddymobile.com": [6756], "candida.migros.ch": [10417], "www.kth.se": [8768], "sm4.co": [2024], "on.in-mommy.com": [2024], "ccf16.ca": [2024], "7-eleven.me": [2024], "upcpromociok.hu": [2024], "start-u.ps": [2024], "jneuroinflammation.biomedcentral.com": [1931], "go.jiagm.me": [2024], "volksverschluesselung.sit.fraunhofer.de": [17918], "unidadcalidad.unizar.es": [17441], "aberdeencity.gov.uk": [470], "douban.fm": [19888], "nbamex.com": [2024], "go.x2764te.ch": [2024], "wmktg.us": [2024], "6-s.imgbox.com": [7997], "static.cnblogs.com": [19631], "b3n.org": [1512], "proxy2.switchadhub.com": [15764], "ru.boardgamearena.com": [2182], "feedback.yammer.com": [18737], "fglz.mx": [2024], "cime.im": [2024], "imgt0.bdstatic.com": [19339], "ruweb.ru": [14104], "tauday.com": [16041], "g.bendl.me": [2024], "www.stratechery.com": [15576], "l.markm.ac": [2024], "fun.youku.com": [18804], "monitor.spatialbuzz.com": [15300], "getcom.cc": [2024], "pcmedia.ign.com": [7734], "k.innteach.com": [2024], "acex.ch": [2024], "userbase.kde.org": [8735], "iofr.me": [2024], "www.software.ac.uk": [21891], "ksnr.info": [2024], "piwik.almayadeen.net": [19157], "genesandnutrition.biomedcentral.com": [1931], "stats.webleads-tracker.com": [22546], "go.sonce.net": [2024], "nerekhta.beeline.ru": [1778], "www.boldchat.com": [2203], "tek.fyi": [2024], "plan.rs": [2024], "grey1k.beget.com": [19347], "dewey.is": [2024], "lolxsmh.com": [2024], "jintensivecare.biomedcentral.com": [1931], "piwik.typo3.org": [15959], "gettested.cdc.gov": [19532], "heroes.cdnvideo.ru": [19536], "ad.sohu.com": [15171], "iuma.unizar.es": [17441], "oraweb.slac.stanford.edu": [15448], "verlagsherstellung.de": [7595], "www.matildajaneplatinum.com": [10085], "tmtl.us": [2024], "thepiratebay-proxylist.org": [16306], "thewebindex.org": [16393], "ikal.me": [2024], "online.instantatlas.com": [20543], "mappstst.unicef.org": [17069], "on.kisura.de": [2024], "konkurs.tms.pl": [22224], "codewithdan.me": [2024], "s.jwpltx.com": [9601], "hostcentric.com": [7517], "my.vultr.com": [17966], "shop.wildstar-online.com": [18394], "go.iglar.net": [2024], "benhr.net": [2024], "community.theme.co": [16411], "lkshrp.com": [2024], "www.odevzdej.cz": [11763], "*.onion.cab": [16638], "zappos.com": [18889], "*.digi.insightmgr.com": [4493], "feed.livingsocial.com": [9530], "miga.org": [8258], "l.graland.org": [2024], "static.svyaznoy.ru": [22053], "stmh.us": [2024], "www.physics.ohio-state.edu": [11798], "www.kit.edu": [8812], "rpmtc.us": [2024], "mininfocom.permkrai.ru": [21390], "blog.audioboom.com": [19272], "store6.esellerate.net": [5346], "stlpublicrad.io": [2024], "crm-fusioncrm.oracle.com": [12116], "ssl.qdcdn.com": [21555], "www.freeovi.com": [20165], "sso.uvt.nl": [16521], "assayassured.co.uk": [1299], "planet.frugalware.org": [6213], "ft0gw5jhwige8dc8328dkgoi19s28bdpui4bglvg.ipleak.net": [20571], "tools3.cisco.com": [3165], "friendpaste.com": [6195], "news.kde.org": [8735], "sgm.co": [2024], "products.drweb.com": [4776], "documentfreedom.org": [4617], "echo.wlec.de": [2024], "www.tanomail.com": [16011], "tula.sledcom.ru": [21858], "thalia.de": [16244], "cdn.mathjax.org": [20933], "eze.im": [2024], "cf-ms.org": [2024], "swbts.us": [2024], "lx1.dyncdn.cc": [4815], "smarthide.com": [15053], "controlpanel.vgocom.com": [17570], "cdn.recombu.com": [13710], "admin.webonic.hu": [18229], "www.deutschebahn.com": [4398], "quin.so": [2024], "amays.im": [2024], "thegenealogist.co.uk": [22153], "entrust.net": [5291], "solidalert.com": [15188], "isohunt.to": [8385], "wander.life": [2024], "dareboost.com": [4139], "adultportal.tameside.gov.uk": [22095], "www.4pda.ru": [191], "www.comparethemarket.com": [3513], "go.aws.org": [2024], "www.techpresident.com": [16079], "resharper-support.jetbrains.com": [8573], "realart.is": [2024], "sstern.us": [2024], "assets-production.rovio.com": [14042], "www.1and1.com": [69], "agra-net.com": [775], "www.auchan.ru": [1370], "i.bpublic.com": [2024], "gobvn.link": [2024], "img3.tbcdn.cn": [16047], "nico2c.ovh": [2024], "rsrc2.psychologytoday.com": [13236], "luneta.nearbuysystems.com": [11161], "qvivid.co": [2024], "auk.life": [2024], "devuan.org": [4421], "www.bikebiz.com": [19377], "gpadmissions.osu.edu": [11797], "1frm.me": [2024], "www.techsupportalert.com": [16118], "communitycares.com": [19654], "rihle.com": [2024], "bit.mazlink.com": [2024], "lgs.to": [2024], "wwwcdn.channel5.com": [3004], "www.trafficjunky.net": [16721], "uk.accessorize.com": [510], "secure.assets.tumblr.com": [16898], "www.uscyberchallenge.org": [17137], "jensge.org": [8567], "developer.3taps.com": [177], "fer.mn": [2024], "www.randomhouse.com": [13604], "t7.fi": [2024], "admissions.peterborough.gov.uk": [12625], "www.c3tag.com": [2516], "mobil.teltarif.de": [16173], "www.kickflip.io": [8896], "claff.co": [2024], "ed2go.com": [2946], "www.recrute.parrot.com": [12443], "jurnalpoli.tk": [2024], "veristore.info": [2024], "shopstyle.com.au": [14781], "hcjoe.us": [2024], "s3.addthis.com": [626], "vastagbor.atlatszo.hu": [1349], "u.sivy.net": [2024], "www.drivestyle.co.uk": [4758], "petfndr.co": [2024], "petv.co": [2024], "corp.april.org": [1171], "www.easywallet.org": [5028], "learningcenter.netapp.com": [11221], "namecorp.link": [2024], "www.irfree.com": [20580], "getsatisfaction.com": [6601], "stat.ttk-chita.ru": [22303], "*.hospitality.swisscom.com": [15761], "45.mvd.ru": [21055], "www.vonage.com": [17927], "www.imd.ox.ac.uk": [17359], "btstp.co": [2024], "scofo.ofo.so": [11794], "on.mtvasia.com": [2024], "form.taobao.com": [16015], "ulule-dev.ulule.com": [17224], "blog.kapsi.fi": [8806], "www.flightradar24.com": [20119], "www.elizabethsmartfoundation.org": [5162], "mvl.me": [2024], "itrdo.usa.cc": [2024], "fresalina.co": [2024], "rof.to": [2024], "forum.subscene.com": [22024], "*.visiblegains.com": [17857], "polyvore.com": [21458], "fischbestaende-prered.ble.de": [19406], "at.alicdn.com": [853], "filepicker.io": [5787], "lekar.pluska.sk": [12870], "images.summitpost.org": [15656], "maxroam.com": [9728], "www.centerlinebeta.net": [2957], "dentolo.me": [2024], "blog.gaborszathmari.me": [6379], "boerse.to": [19423], "key2.co": [2024], "*.lovefilm.com": [9633], "*.suntrust.com": [15661], "pptform.state.gov": [17146], "www.kenexagovernmentsolutions.com": [8863], "gammagroup.com": [6429], "supermapy.atlas.cz": [1346], "status.litmus.com": [9483], "www.suckup.de": [15638], "eshop.in.net": [2024], "sss.play-asia.com": [12828], "m.hivos.org": [7436], "static02.vg.no": [17569], "total.migros.ch": [10417], "www.municode.com": [10742], "idp-dev.feide.no": [5729], "www.methodactingstrasberg.com": [10341], "creativelittlereaders.com": [3780], "new.lostfilm.tv": [20876], "mattrunks.link": [2024], "cdn.static.malwarebytes.org": [9941], "payment.tnaflix.com": [16594], "trac.nginx.org": [11413], "hotel.ch": [20411], "stubhub.co.uk": [15602], "push.gitbook.io": [6656], "track.bvg.de": [1605], "link.gho.nl": [2024], "img3.wsimg.com": [14570], "*.pgeveryday.ca": [13168], "www.disabilitystudies.osu.edu": [11797], "cleca.rs": [2024], "conference.scipy.org": [14437], "cc.dcsec.uni-hannover.de": [17255], "edwardsu.axonify.com": [1502], "readrobreid.com": [13669], "wyreforest.greenparty.org.uk": [6908], "assets.theinquirer.net": [22157], "sawurl.co": [2024], "lmgtfy.com": [20860], "*.reputation.com": [13849], "zlrph.com": [2024], "heapanalytics.com": [7268], "ads.businessclick.com": [19477], "www.imperativeideas.com": [8018], "info2.ntu.edu.tw": [11010], "russian-humour.friday.ru": [20175], "www.ccianet.org": [2563], "complaint.ic3.gov": [17103], "4wrd.ca": [2024], "selbst.im": [2024], "*.ohloh.net": [11803], "www.yakala.co": [18731], "partner.mamba.ru": [9944], "downloads.sourceforge.net": [15242], "dialin.ntv.ru": [21197], "nvsb.rosevrobank.ru": [14024], "clrbrk.com": [2024], "bauwesen.htwk-leipzig.de": [7596], "q.amitd.co": [2024], "s.bth.is": [2024], "crbn.es": [2024], "chn4.me": [2024], "www.bitcoinwatch.com": [19390], "www.kcvids.com": [8730], "www.networkredux.com": [11302], "tello.com": [16167], "10-instant.okcupid.com": [11809], "sp.usatlas.bnl.gov": [19418], "assessments.un.org": [17057], "home.mobile.de": [21001], "yeeahtv.cf": [2024], "adsonar.com": [593], "sel4.systems": [14495], "tenantbus.cyberport.hk": [3967], "milancreat.es": [2024], "www.yota.ru": [22685], "on.wesh.com": [2024], "webhostlist.de": [18217], "rottentomatoes.com": [14034], "login.idm.telekom.com": [16154], "ecity.qf.org.qa": [21557], "cwaud.io": [2024], "storminternet.co.uk": [15565], "dialogueiwb.educ.cam.ac.uk": [17332], "spayne.co": [2024], "a1b.me": [2024], "wp-dev.grc.nasa.gov": [10909], "seller.aliexpress.com": [19140], "as.sexad.net": [14700], "flowbtc.com": [5924], "www.brighteroption.com": [2346], "www.echoplex.us": [5038], "www.scai.fraunhofer.de": [6091], "benefitsolutions.bankofamerica.com": [1669], "ixian.jd.com": [8434], "valu.es": [2024], "leaves.www.uprr.com": [22392], "prometheusgroup.com": [13195], "435bymjc.com": [182], "gilc.co": [2024], "dot.swiss": [19884], "cloud.centrify.com": [19546], "services.amazon.com.mx": [19173], "np.radioplayer.co.uk": [13581], "consult.leeds.gov.uk": [20799], "www.microsofttranslator.com": [10402], "qpig.me": [2024], "toynews-online.biz": [22257], "gravatar.com": [6883], "www.itvstatic.com": [7856], "img4.yeggi.com": [18760], "aggie.country": [2024], "sorry.hosting.cornell.edu": [3676], "www.pages05.net": [12362], "interview.marshall.usc.edu": [17366], "q2.qlogo.cn": [13355], "share.ptc.com": [21532], "go.ju5t.in": [2024], "hs.io": [2024], "r24626576.sync.app.asana.com": [1265], "thepiratebay.net.pl": [22174], "lpice.eu": [9109], "www.agoravoting.com": [774], "mobile.virginmedia.com": [17822], "jainsusa.tips": [2024], "www.sportdepot.co.il": [21943], "*.pocketmatrix.com": [12877], "chinesepod.oss.aliyuncs.com": [19143], "2012.qiyi.com": [13353], "csc.rocks": [2024], "www.eshuyuan.net": [20018], "llphoto.co": [2024], "technology.cca.edu": [2547], "clients.easy-hebergement.fr": [5024], "go.einladung.io": [2024], "accessofficeproducts.com": [506], "rsd.me.uk": [2024], "xecura.asana.com": [1265], "crowdsourcing.yahoo.co.jp": [18730], "dakvpn.unicef.org": [17069], "load.wpm.neustar.biz": [11320], "deviceids-meda-id1.wdr.de": [18113], "download.sp.f-secure.com": [5533], "*.rdsecure.org": [13572], "blog.userstory.ru": [22409], "smpl.bt": [2024], "triodos.com": [16815], "xenogamers.org": [18652], "apps.db.ripe.net": [13953], "shop.verkaufen.ch": [22443], "d16.do": [2024], "mail.wza.us": [18582], "lyv.io": [2024], "assets.netnewscheck.com": [11240], "ishim-mr.admtyumen.ru": [19082], "www.bleutrade.com": [2090], "guaranibitcoin.com": [6979], "plas.1688.com": [51], "g2.std3.ru": [15511], "www.zenmate.at": [18917], "top100bo.com": [2024], "ifosslr.org": [8259], "pds.nasa.gov": [10909], "atk.dj": [2024], "www.santafelinux.com": [21733], "frontlinedefenders.org": [6205], "ebuzzing.de": [5035], "devolverdigital.com": [4414], "cdn.zenfolio.net": [18926], "www.xmind.net": [18619], "secure.csob.sk": [3888], "rayman.beget.com": [19347], "lists.idms-linux.org": [20482], "hiwp.me": [2024], "handsomecode.com": [7179], "foca.io": [2024], "miteinander.mariahilf.wien.gv.at": [22588], "myzuka.fm": [21079], "secureweb.inl.gov": [20537], "bseed.in": [2024], "depvet.49gov.ru": [187], "ma1.twimg.com": [16949], "autoblog.com": [1447], "0dd.me": [2024], "download.tvquran.com": [22320], "swp.me": [2024], "help-pt-br.nike.com": [11440], "projects.centos.org": [2950], "distel.li": [2024], "eurexchange.com": [5390], "my.eset.com": [5347], "1337x.to": [44], "mivacentral.com": [10500], "auto.mail.ru": [9891], "s.rdm.io": [2024], "btvn.club": [2024], "oas.biomedcentral.com": [1931], "smartadserver.com": [15049], "sao.stanford.edu": [15448], "afcs.dell.com": [4317], "join.wwf.or.jp": [18029], "i.bl.uk": [2358], "discoveryplace.org": [4545], "blackvpn.com": [2061], "inpros.net": [8160], "kura.io": [9054], "r.vox.vg": [2024], "slotsgaminator.com": [6427], "oceandiscovery.xprize.org": [18584], "lmlk.me": [2024], "hostingreviews.com": [7532], "www.glaad.org": [6318], "ctstravel.co": [2024], "www.sott.net": [15225], "german.germany.usembassy.gov": [22406], "netstatus.earthlink.net": [4997], "poste.ch": [12996], "www.upplandsvasby.se": [17481], "supportcenter.godaddy.com": [6755], "jigsaw.w3.org": [17980], "jerseyne.ws": [2024], "nanohub.org": [11068], "*.ivwbox.de": [8416], "trac.tools.ietf.org": [7725], "cwl.la": [2024], "api.lavaboom.com": [9186], "builds.piwik.org": [12768], "gocoin.com": [6753], "s5.gismeteo.lt": [20249], "designaddict.com": [4374], "uxmojo.co": [2024], "compendium.com": [3519], "prd-www.imercer.com": [20502], "ezerkolibri.444.hu": [183], "bitsof.love": [2024], "ask.nice.li": [2024], "www.ext.vt.edu": [17825], "hos.bezeqint.net": [1862], "www.womenshealth.de": [18500], "pst.kit.edu": [8812], "inside-security.de": [20541], "www.beefymiracle.org": [1775], "go.subaykan.com": [2024], "en-support.psm.playstation.net": [12831], "mytax.is": [2024], "gosmile.info": [2024], "www.browser-statistik.de": [2386], "spacescout.uw.edu": [17156], "global.udn.com": [17020], "www.ostagram.ru": [12160], "*.dot429.com": [4684], "powerhosting.dk": [13046], "eminno.de": [2024], "sciencematte.rs": [2024], "passport.twitch.tv": [16961], "atms01.alicdn.com": [853], "static.formstack.com": [6023], "www.ntldstats.com": [11002], "wzn.io": [2024], "s2.sinaimg.cn": [14910], "gfort.es": [2024], "zic.ht": [2024], "ncards.org": [2024], "tekka.in": [2024], "www.microsoftstore.com": [10400], "www.cascadingmedia.com": [2883], "targus.co": [2024], "taskforceonshalegas.uk": [16032], "a.oagi.com": [2024], "crlock.tk": [2024], "xww.ro": [18697], "www.eiu.com": [5053], "webmproject.org": [18170], "io9.gizmodo.com": [6677], "pvac-cms.leeds.ac.uk": [17403], "afine.ws": [2024], "ernw.de": [4942], "www.winterswijk.nl": [11172], "tolyatti.startsmile.ru": [21980], "www.burnley.gov.uk": [2460], "bit.crick.me": [2024], "partner.just-eat.ie": [20671], "www.01.org": [1], "sg.redhat.com": [13735], "l.n24.de": [2024], "exlibris.ch": [5486], "wsu.mn": [2024], "orbitba.by": [2024], "openstat.ru": [12013], "myrt.us": [2024], "qconnewyork.com": [13323], "wrap.bz": [2024], "easports.com": [4861], "shedweb.com": [2024], "www.distrowatch.com": [4566], "boldchat.com": [2203], "ndpeeps.mobigum.com": [10529], "img4.thalasseo.com": [16241], "norbe.st": [2024], "3bbwifi.com": [167], "go.cccu.org": [2024], "buch.de": [16244], "tree.sci-hub.cc": [14436], "ireceivesmsonline.com": [20578], "*.rd.com": [13676], "sp-test.feide.no": [5729], "sheff.info": [2024], "ubmcmm.baidustatic.com": [1641], "j1.58cdn.com.cn": [213], "s.vny.md": [2024], "www.crick.ac.uk": [19719], "beta.devon.gov.uk": [4415], "forge.tips": [2024], "radiox.ch": [13576], "ssc.bundesnetzagentur.de": [2445], "cnun.es": [2024], "co.teamgnh.it": [2024], "pgr.io": [2024], "rg.gg": [2024], "slashs.net": [2024], "cdn.videos.bloomberg.com": [2131], "fashion.piliapp.com": [12706], "minusinsk.startsmile.ru": [21980], "quiz.toogl.com": [16626], "info14.top": [2024], "www.ams-ix.net": [1025], "encrypteverything.ca": [5227], "bmclogostore.com": [1554], "go.a1party.la": [2024], "fbp.digital": [2024], "store.checkpoint.com": [3052], "ymp1.us": [2024], "jalles.co": [2024], "files.lolnet.org": [9580], "wiki.opencaching.pl": [21269], "ssl.phpnet.org": [12281], "zorz.it": [2024], "l.sztuhar.com": [2024], "domanhanteraren.sedirekt.se": [14601], "r24626524.sync.app.asana.com": [1265], "syllable.org": [22064], "clockworkmod.com": [3272], "ane.capitalone.com": [2831], "rollcall.com": [14010], "informer.com": [8128], "cari.net": [2532], "gastro.hugb.de": [2024], "go.ghortho.com": [2024], "www.tamesidehospital.nhs.uk": [10952], "www1.ifc.org": [8257], "developer.vodafone.com": [17904], "hebrew.israel.usembassy.gov": [22406], "dkdn.co": [2024], "pix.vg": [2024], "a1.sndcdn.com": [15096], "img30.360buyimg.com": [148], "beloretsk.biglion.ru": [19375], "intern.contest.yandex.com": [18742], "blog.websupport.at": [18188], "n.wwe4arabs.com": [2024], "cancerresearchuk.org": [19501], "www.insideygs.com": [8170], "plcy.mp": [2024], "wbiz.me": [2024], "www.mosaicscience.com": [10643], "8byt.in": [2024], "www.darkmoney.cc": [4142], "cher.europaplus.ru": [20034], "cache-kintavr.cdnvideo.ru": [19536], "emwil.es": [2024], "www.bulletproofmeteor.com": [2430], "images.jxt.net.au": [8480], "flt.rs": [2024], "www.true-security.nl": [15923], "idp.infn.it": [7771], "c.icq.com": [7695], "*.modelmayhem.com": [10554], "b.nexs.co": [2024], "business.un.org": [17057], "infst.co": [2024], "k1ssme1st.ml": [2024], "storage-bin.com": [15558], "coastdigital.co.uk": [3336], "ffgg.ulaval.ca": [17319], "ntt.com": [11006], "soas.hku.hk": [20387], "login.adfox.ru": [578], "htss.io": [2024], "iihe.info": [2024], "*.schd.ws": [14411], "sdr.osmocom.org": [12159], "medicine.stanford.edu": [15447], "sebcre.me": [2024], "cciio.cms.gov": [19630], "r24616664.sync.app.asana.com": [1265], "alxv.co": [2024], "kalo.cat": [2024], "internetdefenseleague.org": [8281], "webhosting.web.com": [18144], "c.cotton.netease.com": [11228], "news-gazette.com": [11362], "immv.re": [2024], "sh.ch": [22061], "svn.uhulinux.hu": [22349], "jmln.co": [2024], "ccatolicas.me": [2024], "customercenter.liveperson.com": [9506], "hashkiller.co.uk": [20346], "selvasmail.com": [2024], "link.weluc.com": [2024], "www.flix123.com": [5910], "www.sis.umd.edu": [17351], "www.amwtp.inl.gov": [20537], "city.wsj.com": [22625], "i5c.us": [2024], "*.jacksonsun.com": [8496], "haka.funet.fi": [6242], "1sand0s.nl": [84], "rtr.cm": [2024], "www.posthaven.com": [13023], "www.ycharts.com": [18704], "upsight.adsrvr.org": [688], "sta1.org": [2024], "youandyou.rs": [2024], "actlog.dftoutiao.com": [19826], "www.bell-cranel.net": [19352], "lfhair.com": [9088], "solarwx.info": [2024], "gp.net.nz": [2024], "m4.hitravel.xyz": [2024], "fi.4.boardgamearena.com": [2182], "delia.cc": [2024], "www.nyx.cz": [11638], "yiddi.sh": [2024], "tula.rt.ru": [13529], "volistob.ru": [22493], "dnct.co": [2024], "foecvliab.com": [5950], "www.google-analytics.com": [6823], "55.mvd.ru": [21055], "static-content.springer.com": [15380], "consultre.me": [2024], "ajsa.cf": [2024], "eu5.startingpage.com": [15476], "publishers.kontera.com": [8991], "pddoc.com": [12264], "bioinfobank.com": [1930], "bookings.rottnestexpress.com.au": [14036], "digital.kent.gov.uk": [8867], "0.env.sh": [2024], "fmed.it": [2024], "globalperspectivescanada.com": [6710], "tpmn.co": [2024], "www.civitas.ru": [19603], "buy.kuna.io": [20763], "hectorprats.es": [2024], "pfcycl.es": [2024], "www.bidbubble.com": [1872], "m.mbank.cz": [9733], "l.live.net": [9494], "studentcentral.indiana.edu": [8070], "www.packet.net": [12345], "www.hscj.ufl.edu": [17340], "whm.ag": [2024], "specificmedia.co.uk": [15312], "jamesfarmer.umw.edu": [17349], "rumstat.cdnvideo.ru": [19536], "chas.link": [2024], "us-ne.ws": [2024], "de.piliapp.com": [12706], "www.publica.ch": [22061], "cnetes.co": [2024], "contenta.mkt1710.com": [14865], "affiliates.allposters.com": [882], "violetindigo.com.au": [17814], "cedar.agency": [2024], "thejam.es": [2024], "primo.aber.ac.uk": [473], "*.getsafeonline.org": [6585], "autodiscover.mbox1.belwue.de": [1802], "www.upc.ie": [17082], "spap.adingo.jp": [646], "2016.cursosvirtuales.uned.es": [17248], "www.thepbproxy.pw": [22174], "cri.pld-linux.org": [12298], "www.encrypt-the-planet.com": [19992], "jia.1688.com": [51], "afisha.teleport2001.ru": [22117], "cabling.play-asia.com": [12828], "europe.hostingcon.com": [7536], "kaleo.in": [2024], "ufwx.org": [2024], "oshub.co": [2024], "ums.unionpaysecure.com": [17281], "console.aolonnetwork.com": [383], "calligra-suite.org": [2769], "wesnoth.org": [18298], "openuni.io": [12084], "designer.media": [2024], "emep.org": [5196], "hip.hopshiz.com": [2024], "user.lightsource.ca": [2814], "www.codespeak.net": [3379], "mfo.rapida.ru": [13619], "*.ergon.ch": [5328], "gentooexperimental.org": [6518], "api.doc.bookmyname.com": [2215], "pearup.us": [2024], "developers.gettyimages.com": [6604], "prindi.co": [2024], "iw.piliapp.com": [12706], "berkeley.worldcat.org": [18536], "awaps.yandex.com.ua": [18741], "oblcc.io": [2024], "fabiankeil.de": [5606], "edm.nci.nih.gov": [11090], "ensy.st": [2024], "www.tpbproxy.pw": [22174], "www.blogs.uni-erlangen.de": [17396], "ads.govoritmoskva.ru": [20298], "www.ulisses-ebooks.de": [11867], "mongolia.usembassy.gov": [22406], "premium.youmail.com": [18797], "rocksho.ws": [2024], "knowledge.servicenow.com": [14682], "fijiwtr.co": [2024], "zdtronic.com": [18849], "www.billiondigital.com": [1912], "www.webstyle.ch": [18252], "pubchem.ncbi.nlm.nih.gov": [11090], "*.gsis.gr": [6894], "api.immobilienscout24.de": [8008], "user.centrum.cz": [19547], "www.newsvine.com": [11390], "studyabroad.rit.edu": [13493], "sbgc.biz": [2024], "m.alicdn.com": [853], "www.knewone.com": [8956], "www.swiftype.com": [15753], "pdcs.skat.dk": [14963], "eflex.ly": [2024], "status.nadir.org": [11049], "www.mariadb.com": [9995], "ask.springshare.com": [15383], "zsim.de": [19014], "help.automattic.com": [1452], "uidaho.worldcat.org": [18536], "www.secure-u.de": [14550], "resource.fastspring.com": [5666], "saisobserver.org": [21718], "agoravoting.com": [774], "thrfty.me": [2024], "support.continuum.io": [19676], "cas.org": [3063], "people.gl.ciw.edu": [2867], "avatars.lushstories.com": [20892], "inviacv.com": [2024], "tswx.us": [2024], "www.softwareplattform.d115.de": [2443], "helsingor.dk": [7312], "www.moon-ray.com": [10618], "cinfo.ucsd.edu": [17012], "timeweb.ru": [16532], "webcorporativa.bankinter.com": [1674], "me2.adsfrom.us": [2024], "pantherpass.fit.edu": [5922], "a.dryday.in": [2024], "private-names.ru": [13148], "www.strongvpn.com": [15600], "nl.m.xhamster.com": [18606], "e58781c7-946e-c074-3ca2-67c5f14167c1-rum.cdnvideo.ru": [19536], "radsafety.wustl.edu": [18089], "portale-utente.infn.it": [7771], "www.exherbo.org": [5482], "*.naturfotografen-forum.de": [6044], "it.pcisecuritystandards.org": [12253], "u.pushka.co": [2024], "lua.org": [20884], "s.myvmv.com": [2024], "bobrovytsya.o3.ua": [21219], "nycvpn.unicef.org": [17069], "www.telethon.it": [16162], "www.favrskov.dk": [5681], "svn.inf.mit.bme.hu": [1557], "azm1.co": [2024], "sportsauthority.com": [15361], "ellin.us": [2024], "raneys.co": [2024], "ekovolga.com": [19974], "bbtri.be": [2024], "s4bweb.raiffeisen.ru": [13587], "mytct.co": [2024], "webaccess.alpenverein.de": [19159], "zpravy.idnes.cz": [20483], "kadij.nl": [2024], "studenaffairs.usc.edu": [17366], "www.cspbuilder.info": [3889], "zaltbommel.nl": [11172], "emmi.co": [2024], "www.filezilla-project.org": [5782], "act.unicef.org.uk": [17068], "souq.link": [2024], "xpress.epaysol.com": [5306], "gifts.dreamhost.com": [4743], "application.blinksale.com": [2096], "git.dgit.debian.org": [4263], "ccc.co.il": [2551], "space.housing.illinois.edu": [17346], "dudley.gov.uk": [4788], "wmg.cc": [2024], "m.enter.ru": [20002], "ox.cx": [7646], "wxb.1688.com": [51], "static.youku.com": [18804], "www.wareable.com": [22525], "c.tile.openstreetmap.org": [12015], "feed.alarabiya.net": [19131], "www.ee.leeds.ac.uk": [17403], "permid.thomsonreuters.com": [16456], "sdgo.io": [2024], "partners.webmasterplan.com": [18224], "verify.mebank.com.au": [9748], "estaffprofile.nottingham.ac.uk": [11567], "kreyol.aclufl.org": [297], "app03.actionfraud.police.uk": [19056], "cce.com": [2881], "hwy1.co": [2024], "online.tkbbank.ru": [16583], "southwest.greenparty.org.uk": [6908], "link.hagu.re": [2024], "www.superevr.com": [15693], "www2.dastelefonbuch.de": [4161], "gdgtph.co": [2024], "fbph.us": [2024], "cdnmundo2.img.sputniknews.com": [21951], "sso.nikhef.nl": [11441], "npp.org.hk": [21175], "www.urx.com": [17097], "www.ranallolawoffice.com": [11427], "avtr.co": [2024], "rbt.asia": [13653], "msf.org.uk": [9803], "www.app.college.police.uk": [19645], "es.t-mobile.com": [15837], "www.schulthess.com": [21747], "s.ic-2000.com": [2024], "m.glavbukh.ru": [20262], "unicef.org.nz": [17067], "www.traffichaus.com": [16725], "dvsut.sledcom.ru": [21858], "www.retailhosting.fi": [13881], "naif.jpl.nasa.gov": [10909], "www.repeaterstore.com": [13838], "toc.taleo.net": [15986], "secure.dice.com": [4440], "areweslimyet.com": [1206], "groups.google.co.*": [6821], "www.terasic.com.tw": [16023], "fullrate.dk": [6234], "console.hiconversion.com": [7389], "mipt.ru": [20990], "*.1nsk.ru": [80], "css.nyt.com": [11035], "ffell.de": [2024], "static.elec.ru": [19976], "www.ifightsurveillance.com": [7886], "forms.thepensionsregulator.gov.uk": [22173], "owncloud.hackerspace.pl": [7136], "mozilla.org": [10696], "musliminstitute.org": [10762], "sign.unionpay.com": [17281], "pwapi.washingtonpost.com": [18086], "www.ewh.ieee.org": [7719], "jclouds.ci.cloudbees.com": [19622], "loveloz.co": [2024], "www.amnesty.it": [1009], "go.empy.re": [2024], "severodvinsk.beeline.ru": [1778], "cerberusapp.com": [2970], "uci.worldcat.org": [18536], "cdn01.mir.afisha.ru": [19107], "blog.soundcloud.com": [15231], "blog.formsite.com": [20139], "penza.startsmile.ru": [21980], "www.amnesty.ie": [1008], "login.gmu.edu": [6529], "reestr.astrobl.ru": [19264], "partners.rt.com": [13528], "sklep.polskieradio.pl": [12932], "csawctf.poly.edu": [12933], "thav.is": [2024], "downloads5.mamp.info": [20916], "www.fimfiction.net": [5801], "controlcambios.ourproject.org": [21314], "myt.im": [2024], "bestpgh.com": [2024], "i.apkdot.com": [2024], "ct5.addthis.com": [626], "on.dr-zr.net": [2024], "cpsg.ws": [2024], "cede.ch": [19537], "innovationfactory.saturn.de": [21736], "*.foxnews.com": [6064], "chocolatey.org": [3099], "cockpit.kolabnow.com": [8972], "prescancerpanel.cancer.gov": [2819], "hsw.oxfordjournals.org": [12222], "www.globaltradeday.org": [6715], "idn.infnx.com": [8091], "*.aplus-flint-river-ranch.com": [443], "www.smartlivingnetwork.com": [15057], "ksf.me": [2024], "susestudio.com": [14263], "*.hotels.nationalrail.co.uk": [11093], "1slr.com": [2024], "merlin-images.autotrader.co.uk": [19279], "et.boardgamearena.com": [2182], "www.more-ip-event.net": [10626], "*.fedex.com": [5697], "cloud.tyk.io": [16976], "cdn.sencha.com": [14637], "nvidia.co.uk": [11020], "pdsloginblack.bl.uk": [2358], "www.youtube.co.ke": [18800], "justdg.co": [2024], "skyticket.sky.de": [14990], "r.melvyn.info": [2024], "steam.degica.com": [3333], "blog.flickr.net": [5897], "wset.co": [2024], "atx.re": [2024], "*.b-europe.com": [14205], "rssinclude.com": [13523], "parrotsec.org": [21351], "millionhearts.osu.edu": [11797], "www.coinjabber.com": [3396], "xtra.li": [2024], "xpms.hyd.gov.hk": [7063], "hls-ren-vod.cdnvideo.ru": [19536], "media.stellaservice.com": [14253], "proxybay.pl": [21523], "4mn.ca": [2024], "selby.mysql.cesky-hosting.cz": [19553], "img2.wmxstatic.com": [4163], "www.1177.se": [29], "backcountry.com": [1622], "tvax2.sinaimg.cn": [14910], "www.consultant.ru": [19672], "g.savoir.online": [2024], "p2.pstatp.com": [16680], "hir.si": [2024], "family.yandex.com.tr": [18740], "e-funi.axonify.com": [1502], "publicknowledge.org": [13251], "videos.ti.com": [16225], "flowdvd.link": [2024], "adb.psmd.plymouth.ac.uk": [12873], "www.slfacilities.osu.edu": [11797], "www.eagereyes.org": [19930], "wedding.rakuten.co.jp": [13593], "emails.tips": [2024], "www3.hmv.co.uk": [7077], "dro.si": [2024], "chervonograd.lanet.ua": [20780], "csssoft.info": [2024], "share.servicenow.com": [14682], "weblications.guj.de": [6977], "r.garstelecom.ru": [20207], "jobs.theguardian.com": [16364], "nnsa.energy.gov": [5243], "www.kaseya.com": [8816], "www-cs-faculty.stanford.edu": [15448], "25.rkn.gov.ru": [13971], "dhurl.co": [2024], "thelocal.dk": [22165], "*.ulakbim.gov.tr": [17054], "bmcemergmed.biomedcentral.com": [1931], "videomind.ooyala.com": [11935], "app.sunosunao.com": [15669], "dealabs.com": [19791], "vapid.link": [2024], "a.dy.si": [2024], "*.spanair.com": [15285], "www.noelia.fi": [11494], "www.minbank.ru": [10442], "outer.rg.ru": [21646], "xj.ca": [2024], "*.gamcare.org.uk": [6389], "content.adriver.ru": [588], "securemetrics.apple.com": [1151], "wedos.com": [17993], "s3.gismeteo.md": [20251], "ahrcvo.cms.gov": [19630], "explori.ca": [2024], "planet.python.org": [13314], "www.infospyware.com": [8131], "virt-manager.org": [17828], "bitcointrezor.com": [19389], "static.onride.de": [21259], "*.popcrunch.com": [12953], "users.auto.ru": [19276], "s133.cnzz.com": [3328], "bbm.cm": [2024], "fthmb.tqn.com": [22262], "eugenekolo.com": [20030], "komentare.hnonline.sk": [7445], "avia.yandex.kz": [18743], "www.chroniclebooks.com": [10133], "handelsblatt.com": [7175], "dn-b5jibpwe.qbox.me": [13344], "img4.km.com": [20738], "cru.mp": [2024], "www.mentalhelp.net": [20963], "ux.joomla.org": [8641], "mins.pub": [2024], "verizonwireless.com": [17717], "torrentprivacy.com": [16653], "*.brussels.indymedia.org": [8090], "d.diqits.be": [2024], "on.kthv.com": [2024], "wallet.rsb.ru": [14058], "*.nexternal.com": [11405], "discuss.neos.io": [11196], "citizenlab.org": [16258], "homail.play-asia.com": [12828], "www.galois.com": [6388], "elektra.ksh.hu": [8766], "cs.cf.ac.uk": [2847], "cod.ed.gov": [4881], "go.shming.com": [2024], "bmcproc.biomedcentral.com": [1931], "myaccount.stoke.gov.uk": [21995], "im.ft-static.com": [20182], "forums.untangle.com": [17454], "www.gettyimages.it": [6604], "go.brittnei.com": [2024], "onepanel.digitalpacific.com.au": [4482], "registry.npmjs.org": [11580], "dutch.alibaba.com": [857], "www.gettyimages.in": [6604], "www.lumovies.com": [9678], "s.jilin.com.tw": [2024], "cdn.feedbackify.com": [5722], "haku.valtiolle.fi": [17622], "www.bulletinoftheschoolofmedicine.wustl.edu": [18089], "plus.net": [12868], "www.gettyimages.ie": [6604], "4ho.me": [2024], "*.siteblindado.com.br": [14943], "donder.ga": [2024], "bear.mynavi.jp": [2024], "marketing.zalando.com": [18877], "primabanka.sk": [13105], "active24.sk": [19067], "spbas.com": [14217], "mbj.fyi": [2024], "webservices.admin.cam.ac.uk": [17332], "gic4.mycdn.me": [10866], "*.m2pub.com": [9706], "cajamar.info": [2024], "glmr.me": [2024], "svpubs.com": [2024], "getfal.co": [2024], "foebud.org": [5957], "a.xoxe.es": [2024], "wt-club.oss.aliyuncs.com": [19143], "alashort.com": [2024], "ms-vote.xyz": [2024], "greenpeace-jugend.de": [6917], "humpbump.com": [2024], "dypk.me": [2024], "my.freecycle.org": [6138], "b.loide.net": [2024], "x.tecnotur.us": [2024], "bbjo.me": [2024], "atlsso.amd.com": [970], "www.certigna.fr": [2978], "www.mtt.ru": [21044], "abonent-auth.sknt.ru": [21851], "on.lsj.com": [2024], "qdaily.com": [21554], "wiki.freebsd.org": [6097], "protectthehuman.amnesty.org.uk": [1015], "agrr.sknt.ru": [21851], "ajnet.us": [2024], "wfpman.us": [2024], "u.bretwalda.net": [2024], "developers.basekit.com": [19323], "account.radiusnetworks.com": [13583], "api.oxforddictionaries.com": [12223], "travel.rsb.ru": [14058], "smtp.anadolu.edu.tr": [1029], "s.inyaland.com": [2024], "occupywallst.org": [11746], "www.ourwatchmember.org.uk": [21316], "shopnc.la": [2024], "www.sedo.com": [14604], "bugs.exherbo.org": [5482], "doaj.de": [2024], "drivethrucards.com": [11867], "engels.startsmile.ru": [21980], "s10a.co": [2024], "packagesapi.zuji.com.hk": [19021], "symplecticservices.leeds.ac.uk": [17403], "ecowatch.com": [5056], "direct.yandex.com.ua": [18741], "mailigen.com": [9901], "ptbl.ly": [2024], "www.law.uw.edu": [17156], "www-k.ext.ti.com": [16225], "ct360.tk": [2024], "networktimefoundation.org": [11306], "exus.ml": [2024], "ir.amtel.com": [1026], "support.thingiverse.com": [16431], "go.skype.com": [15003], "cldup.com": [3224], "koshiatsu.tocco.ch": [16600], "i.jandan.net": [8518], "www.jit.su": [8592], "tandemcal.com": [16004], "www.infosec.ox.ac.uk": [17359], "www.rothaconference.leeds.ac.uk": [17403], "infomaniak.com": [8114], "hydraproxy.party": [20454], "www.jpgmag.com": [8460], "cnrd.us": [2024], "m.auto.ru": [19276], "vonage.ca": [17927], "ruelala.com": [14080], "hass.de": [7223], "cliph.me": [2024], "drupal.osu.edu": [11797], "kcentrum.vutbr.cz": [17609], "www.sll.org.uk": [15143], "ps.eyeota.net": [20062], "www.lonesurvivor.co.uk": [9597], "mail.koptevo.net": [20749], "belgorod.biglion.ru": [19375], "radio-piatniza.friday.ru": [20175], "kune.ourproject.org": [21314], "r24822923.sync.app.asana.com": [1265], "www.minecraft.net": [10452], "www.sharerepo.com": [14728], "fontspri.ng": [2024], "bth.se": [1595], "*.globalsign.eu": [6700], "buycott.com": [2487], "tag.onscroll.com": [11851], "jazz.mu": [2024], "lostfilm.tv": [20876], "cryptonotefoundation.org": [19730], "on.acura.com": [2024], "s.mbls.fr": [2024], "gafloors.net": [2024], "slma.tips": [2024], "aff.onenetworkdirect.com": [11877], "www.umag.ca": [17159], "thesaurus.abuledu.org": [19044], "www.ipleak.net": [20571], "u.lfi.cl": [2024], "de.ioam.de": [7787], "hbonow.com": [20353], "www.pjak.eu": [12787], "go.epxsdr.cf": [2024], "signup.linkshare.com": [13595], "my.begun.ru": [1785], "go.gugler.at": [2024], "site.adform.com": [639], "jonyx.info": [2024], "kk84.eu": [2024], "i4.pixiv.net": [12778], "pentacon.de": [14421], "streaming.osu.edu": [11797], "support.tierra.net": [16510], "focalp.in": [2024], "www.barnardos.org.uk": [19316], "aaw.host": [2024], "cdn2.thr.com": [15878], "iwdg.nl": [2024], "www.sprinklr.com": [21949], "cruzbuy.ucsc.edu": [17390], "bryansk.startsmile.ru": [21980], "wob.li": [2024], "www.videogamer.com": [17782], "condenast.com": [3555], "link.ogrp.de": [2024], "mpus.hr": [2024], "jobs.n-somerset.gov.uk": [10898], "www.nzbplanet.net": [11639], "gohpl.com": [2024], "travelterra.co": [2024], "odeals.in": [2024], "www.aarhus.dk": [449], "lmktg.co": [2024], "hallsbudd.io": [2024], "diannao.jd.com": [8436], "shrein.co": [2024], "www.psyc.sfu.ca": [14708], "tuapse.europaplus.ru": [20034], "*.mediaplex.com": [17629], "courses.cites.illinois.edu": [17346], "vbfa.media": [2024], "www.gimmebar.com": [6643], "blogger.com": [2122], "www.torrentz.ch": [16663], "argos.ie": [1214], "*.sxnarod.com": [14698], "perceptivepixel.com": [12588], "*.tcpalm.com": [15859], "a.eyeoftree.com": [2024], "iz-apple.hs-karlsruhe.de": [7587], "frama.link": [6075], "summit.sharethrough.com": [14742], "bikebiz.com": [19377], "www.thehubpeople.com": [22155], "*.cc.umanitoba.ca": [17348], "my.gem.co": [6497], "tokobitcoin.com": [16609], "www.onfleet.com": [11896], "www.oplata.info": [12094], "web2.wechat.com": [18116], "www.esue.ohio-state.edu": [11798], "cutd.co": [2024], "lookback.io": [9608], "bhosted.nl": [1544], "cdn.sedo.com": [14604], "zerobin.net": [18938], "ubuntulinux.jp": [17186], "m.clappmail.net": [2024], "*.shopstyle.co.jp": [14781], "sulit.tips": [2024], "femsec.oxfordjournals.org": [12222], "macs.pm": [2024], "listserv.techdirt.com": [5919], "www.hitfile.net": [20380], "contentwatch.com": [3613], "www.knightswarm.com": [8957], "www.time2play.mobi": [16529], "defin.io": [2024], "eastsussex1space.co.uk": [19939], "idp.leeds.ac.uk": [17403], "payroll.rocketbank.ru": [13994], "golfpac.us": [2024], "spice.ly": [2024], "digi.fund": [2024], "gamma.act-on.com": [19054], "invitar.suop.es": [2024], "hst.la": [2024], "apc.homeoffice.gov.uk": [20399], "www.cyberaide.ca": [3970], "go2kb.me": [2024], "tweakhound.com": [16937], "www.techverse.com.au": [16085], "versitech.hku.hk": [20387], "fieldhockey.clubs.bucknell.edu": [2406], "www.ecode360.com": [5046], "store.3drobotics.com": [161], "vietnap.co": [2024], "www.packetwerk.com": [12347], "rev3.co": [2024], "trialsupplierportal.hkjc.com": [20384], "s.salekalns.com": [2024], "desktop-api.fitbit.com": [5867], "infinitydev.org": [8097], "www.tz.de": [15960], "pngu.mgh.harvard.edu": [7210], "www.clickdimensions.com": [19611], "wdxy.co": [2024], "fifo.fail": [2024], "insyg.com": [2024], "krimi.aktuality.sk": [1507], "www.jariangibson.com": [8534], "www.canon.de": [2822], "avemariauniversity.worldcat.org": [18536], "cnnctth.ink": [2024], "www.irill.org": [7817], "ark.intel.com": [8211], "lpayne.me": [2024], "metadata.itunes.apple.com": [1151], "www.t-mobilebankowe.pl": [22076], "kirov.beeline.ru": [1778], "cftw7l0gsrg4rzgerefkitbwk09pn251ty7ook83.ipleak.net": [20571], "datapipe.cn": [4202], "chil.cc": [2024], "www.scc.kit.edu": [8812], "static.firefoxosdevices.org": [5844], "support.socrata.com": [15149], "alexr.at": [2024], "blog.evidon.com": [5448], "invstd.co": [2024], "smartlife.swisscom.com": [15761], "www.swiss-virtual.com": [15758], "s.vette.jp": [2024], "swedn.me": [2024], "go.alt.ac.uk": [2024], "blog.sinacloud.com": [14908], "www.chessbase.com": [3073], "image.tsn.ua": [22301], "liven.ws": [2024], "nordu.net": [11518], "www.geekzone.co.nz": [6491], "widget.screencast-o-matic.com": [14471], "hilxry.com": [2024], "readplaintext.com": [13674], "*.lukasa.co.uk": [20888], "studentwellness.stanford.edu": [15448], "www.irisa.fr": [7818], "taxandbenefits.bolton.gov.uk": [19424], "forum.ovh.co.uk": [12205], "sitemason.vanderbilt.edu": [17647], "apps.pubmatic.com": [13241], "b94.yahoo.co.jp": [18730], "pet-nanny.net": [12618], "youtube.co.id": [18800], "bar.rw": [2024], "safervpn.com": [21713], "egzwl.de": [2024], "thmp.tk": [2024], "youtube.co.in": [18800], "95516.com": [248], "youtube.co.il": [18800], "*.honest.com": [7491], "s3static.stelladotcdn.com": [21989], "support.gmocloud.com": [6323], "my.fsf.org": [5590], "ouvaton.coop": [12187], "planet.hackerspaces.org": [7138], "gzguan.jd.com": [8434], "rvdealer.bankofamerica.com": [1669], "gwtm.co.uk": [2024], "producthunt.com": [13169], "versioneye.com": [17723], "www.sofn.com": [15153], "dwar.mail.ru": [9891], "lexl.ink": [2024], "www.leshop.ch": [10417], "constituteproject.org": [19671], "fischerportal.axosoft.com": [1504], "ekmsecure22.co.uk": [5123], "l.bizequity.com": [2024], "j.son.bz": [2024], "safesource.org.nz": [14290], "airww.co": [2024], "www.hertz.com.au": [7335], "utel.ly": [2024], "legonew.com": [2024], "i-d.vice.com": [17754], "de.3.boardgamearena.com": [2182], "journalism.co.uk": [8659], "knowfife.fife.gov.uk": [20087], "web-analytics.fco.gov.uk": [5548], "holylpstck.com": [2024], "s.gego.co.ke": [2024], "uc.edu": [17393], "w3schools.com": [17982], "sje.im": [2024], "pear.php.net": [12280], "adfs.coct.edu": [2656], "dr.nctrn.co": [2024], "well.com": [18359], "center2.top": [2024], "www.memcached.org": [10268], "msgme.com": [21037], "msisac.cisecurity.org": [2628], "phpserver115.anadolu.edu.tr": [1029], "s1-adfly.com": [577], "forum.anidb.net": [1065], "holidayinn.nz": [2024], "ijmhs.biomedcentral.com": [1931], "astrakhan.tpprf.ru": [22260], "scls.pl": [2024], "i.ping-go.com": [2024], "dive.im": [2024], "ecwid.to": [2024], "www.ping-fast.com": [12713], "ru.indacoin.com": [8054], "no.b9.com.br": [2024], "z.hdtsg.com": [2024], "isports.li": [2024], "editor.wix.com": [18473], "english.stanford.edu": [15448], "files.yandex.com.tr": [18740], "archive.informationactivism.org": [8127], "secure.citizensforethics.org": [2671], "kotte-zeller.de": [9006], "files.1f0.de": [78], "gametracker.com": [6423], "www.magazines.whsmith.co.uk": [18000], "thl.gy": [2024], "go.lbapps.net": [2024], "italiano.istockphoto.com": [20595], "charitywater.org": [3017], "uncc.worldcat.org": [18536], "l.avon39.org": [2024], "images1.sanalmarket.com.tr": [14338], "data.maine.gov": [9908], "jnglr.com": [2024], "www.sqlite.org": [14229], "cluster1.ahosting.cz": [782], "www.ovhtelecom.fr": [11725], "microblink.com": [10385], "www.ssafa.org.uk": [14236], "einvoicepayments.hants.gov.uk": [7185], "securehomes.esat.kuleuven.be": [8832], "entertainment.rakuten.co.jp": [13593], "atmilb.com": [2024], "profile.freepik.com": [6159], "mooculus.osu.edu": [11797], "news.mail.ru": [9891], "jct.fyi": [2024], "qabel.de": [13343], "pthe.me": [2024], "brthr.co": [2024], "*.eukhost.com": [4971], "amnistia.org.pe": [1022], "autosport.com.ru": [19278], "*.bethsoft.com": [1848, 1849], "jone.us": [2024], "p24.cc": [2024], "infinow.net": [8099], "x.esquire.co.uk": [2024], "auspo.st": [2024], "go.pravaapp.com": [2024], "titleix.stanford.edu": [15448], "invi.qa": [2024], "dobruchut.azet.sk": [1507], "st.unitedplatform.com": [17309], "toms.it": [2024], "bvz.tocco.ch": [16600], "www.zenmate.se": [18917], "e.dinda.com.br": [2024], "*.internetsuccess.at": [8287], "secure-nikeplus.nike.com": [11440], "orgchart.mit.edu": [9763], "support.realvnc.com": [13687], "walthers.com": [18062], "chpta.cl": [2024], "07.mvd.ru": [21055], "zalando.se": [18877], "mav.im": [2024], "cmw-leipzig.de": [7595], "x.0b00000000.me": [2024], "bundlestars.com": [2452], "kutz.link": [2024], "www.bernina-mels.ch": [1827], "a.ruess.me": [2024], "ent.umontpellier.fr": [22365], "rec-2-1.webcaster.pro": [22542], "*.schneider-electric.com": [14420], "nationalinterest.org": [21088], "debianforum.de": [4264], "www.stuttgart.fau.org": [5543], "spr.st": [2024], "www-cs.ucsd.edu": [17012], "docs.joomla.org": [8641], "novouralsk.startsmile.ru": [21980], "www.nokiausa.com": [11498], "chicncheeky.co": [2024], "business.idealo.com": [7931], "central-lincs.org.uk": [19541], "www.techrepublic.com": [16080, 16081], "go.back.vn": [2024], "pjak.eu": [12787], "f.eeder.co.il": [2024], "free-artwork.org": [20153], "www.nixsrv.com": [11470], "torchlightgame.com": [16644], "tshirts.ml": [2024], "dshw.co": [2024], "www.barbican.org.uk": [1687], "www.postnewsads.com": [13027], "js.net.finam.ru": [20099], "nanxie.taobao.com": [16015], "red.mg": [2024], "lk.beirel.ru": [19349], "l.nurtury.us": [2024], "lists.sourceforge.net": [15242], "go.saidblog.com": [2024], "l.sysops.at": [2024], "earth.hackerspaces.org": [7138], "fgmprevention.unfpa.org": [17062], "log.dmtry.com": [4592], "onevoice.unfpa.org": [17062], "petition.parliament.uk": [21349], "link.f1.org.uk": [2024], "mars.bet": [2024], "www.amnesty.org.pl": [1012], "www.triodos.nl": [16816], "kzenm.be": [2024], "warwick.ac.uk": [17432], "szepkartya.kh.hu": [8739], "styleguide.dinside.no": [19844], "0fa006a9-41ee-3da3-91e8-17fd66461db9-rum.cdnvideo.ru": [19536], "www.centreformentalhealth.org.uk": [19544], "sparxtrading.com": [15298, 15299], "betanews.tradepub.com": [16712], "bzzm.ch": [2024], "s105.cnzz.com": [3328], "www.paymium.com": [12512], "m.martinus.cz": [10044], "old.polymus.ru": [21457], "in.angop.ao": [2024], "opf.ooyala.com": [11936], "cloud-images.ubuntu.com": [17183], "iomtt.com": [8330], "cdn.shptrn.com": [14785], "gay-torrents.net": [6458], "*.pitt.edu": [17416], "host16.top": [2024], "go.xpim3d.com": [2024], "orenda.host": [2024], "bit.rednod.be": [2024], "wwwssl.coveritlive.com": [3732], "dfoc.us": [2024], "www.codecademy.com": [3359], "short.beskow.de": [2024], "img01.sogoucdn.com": [15169], "gallery.mailchimp.com": [9893], "clickequations.net": [3246], "ott.odessa.tv": [21229], "vad.li": [2024], "www.fca.org.uk": [5547], "minobr2.astrobl.ru": [19264], "thepiratebay.lv": [22174], "wujingjing.com": [2024], "erp.digitecgalaxus.ch": [4495], "fuelcdn.com": [6221], "ja.4.boardgamearena.com": [2182], "www.nycla.org": [11027], "hhslink.sccgov.org": [14401], "*.bbcomcdn.com": [2191], "hi.fidorbank.uk": [2024], "tradein.vodafone.co.uk": [17900], "dine.sh": [2024], "ishim.admtyumen.ru": [19082], "ribf.riken.jp": [13489], "frc.st": [2024], "tizer.medikforum.ru": [20954], "wlcact.us": [2024], "to.971.gr": [2024], "act-jshop.jd.com": [8436], "frckadv.sr": [2024], "lowl.info": [2024], "www.kolektiva.com": [8974], "jmais.co": [2024], "webapps.cs.umd.edu": [17351], "connect.idoxgroup.com": [20484], "fbrd.co": [2024], "gigenetcloud.gigenet.net": [6639], "www.parapoupar.com": [12411], "v.tcprods.com": [2024], "blog.xkcd.com": [22652], "dubfire.net": [4783], "ostrike.com": [2024], "ese.espiv.net": [20021], "torrentz.ch": [16663], "lorca.io": [2024], "dashboard.gocoin.com": [6753], "gritb.it": [2024], "ediss.uni-goettingen.de": [17253], "ultrahdtv.net": [17219], "accessassistant.becu.org": [1535], "m8.baidu.com": [1641], "vitrinepix.com.br": [22474], "psfw.jd.com": [8436], "masch.tv": [2024], "mnpl.us": [2024], "outlet.sony.co.uk": [21901], "eettang.us": [2024], "vub.sk": [17962], "hecg.info": [2024], "neb.justgive.org": [8709], "rpm4.zarb.org": [18894], "shop.sowka.dosowisko.net": [4683], "fru.sk": [2024], "aclum.org": [314], "www.temp-mail.org": [16176], "blacknight.com": [2072], "api.daft.ie": [4100], "theresumator.com": [16312], "kdelive.org": [8846], "swsblog.stanford.edu": [15448], "serviceonline.spdbccc.com.cn": [21926], "realtime.api.biligame.com": [1903], "*.zerista.com": [18936], "math.350.org": [140], "freecallstosingapore.co.uk": [20866], "rss.martinus.sk": [10044], "m.stubhub.com": [15602], "www.totalfanshop.net": [16674], "www.i-koruna.com": [7755], "www.tushuku.net": [22316], "buttons.blogger.com": [2122], "2.asset.soup.io": [15235], "bi-fusioncrm.oracle.com": [12116], "whatismyreferer.com": [22575], "erkesia.kavkaz-uzel.ru": [20694], "gmane.ws": [2024], "www.polymus.ru": [21457], "www.in-tendhost.co.uk": [20517], "cri900.me": [2024], "www.larrysalibra.com": [9170], "whiteout.io": [18351], "www.goldenadventures.com": [6796], "my.tiera.ru": [22208], "uymncqf7gqdp7khsi02nb72fqcqncb46xt27iz0a.ipleak.net": [20571], "cincincy.com": [2024], "www.ilo.org": [7756], "varietylatino.com": [17657], "secure.somerset.gov.uk": [15197], "zakon.belregion.ru": [19353], "wct.bz": [2024], "www.streetepistemology.com": [22009], "www.welcometometlife.com": [18283], "spp.seagate.com": [14499], "*.cheetahmail.com": [3059], "dephormation.org.uk": [4357], "adygeya.beeline.ru": [1778], "www.thefederalistpapers.org": [16351, 16352], "a.tripriff.com": [2024], "blog.feedly.com": [5724], "*.wvu.edu": [18307], "adpeepshosted.com": [600], "go.elike.com.br": [2024], "boomstarter.ru": [19429], "xara.com": [18631], "a.hornos.eu": [2024], "dawateislami.net": [4223], "rmit.edu.au": [13496], "content001.bet365affiliates.com": [19358], "*.org.edgesuite.net": [805], "jobs.crick.ac.uk": [19719], "blog.ashampoo.com": [1273], "edit.php.net": [12280], "schedule.law.georgetown.edu": [6531], "www.c4ss.org": [2517], "jmtech.co": [2024], "www.untergeschoss.ch": [17456], "labanimals.stanford.edu": [15448], "www.android-port.de": [1048], "brgss.co": [2024], "tpros.co": [2024], "salekhard.beeline.ru": [1778], "sceper.ws": [14406], "brokerportal.va.anthem.com": [19206], "hertz247.be": [7338], "islamqa.info": [8370], "instagram.com": [8182], "support.weixin.qq.com": [13329], "podpora.nic.cz": [11418], "partner.cyberport.de": [3966], "www.kde.org": [8735], "marius.tips": [2024], "download.owncloud.org": [12215], "s.50811.net": [2024], "rckb.co": [2024], "castlebridge.ie": [2901], "www.choosealicense.com": [3105], "www.7headlines.com": [228], "res.government-nnov.ru": [20295], "3sr.me": [2024], "fuyang.jd.com": [8434], "york.cuny.edu": [18788], "*.uh.edu": [17400], "www.tribler.org": [16804], "units.arma3.com": [1227], "i.cuisillos.com": [2024], "www.ncbi.nlm.nih.gov": [11090], "www.recalll.co": [13704], "blog.netbsd.org": [11222], "rlf.me": [2024], "blog.jolla.com": [8636], "stats.uptobox.com": [22395], "sdrl.tv": [2024], "hdtracks.com": [7039], "virginiamason.org": [17824], "*.advocatesforyouth.org": [721], "eyem.ag": [2024], "digital.lib.washington.edu": [17376], "www.mortgages.hsbc.co.uk": [20422], "beta.amara.org": [956], "rec.udn.com": [17020], "i2g.be": [2024], "*.proxmox.com": [13223], "metrics.aclu.org": [312], "go.nelwel.com": [2024], "temperos.alhur.es": [19137], "mdn.mozillademos.org": [10697], "my.monash.edu": [10577], "wiki.cloudbees.com": [19622], "mdws.gvccu.com": [6375], "zona.skylink.cz": [15002], "taganrog.tpprf.ru": [22260], "c.teilin.net": [2024], "sbdr.co": [2024], "openstat.net": [12012], "courses.theguardian.com": [16364], "vvro.us": [2024], "b.thechive.com": [22141], "ftech.vc": [2024], "netb.us": [2024], "i.tr.cx": [2024], "karischur.ch": [2024], "annals-general-psychiatry.biomedcentral.com": [1931], "referfriends.etoro.com": [4970], "srclib.org": [15407], "special.dreampass.jp": [4747], "6.*.wdfiles.com": [18387], "teyt.in": [2024], "hackhands.com": [7122], "go.ofrf.org": [2024], "gfihispana.com": [6301], "hboc.osu.edu": [11797], "www.pythonhosted.org": [13317], "download1.rpmfusion.org": [14056], "sellaband.com": [14630], "sfit.ca": [2024], "geophysics.stanford.edu": [15448], "mebank.com.au": [9748], "hr.wustl.edu": [18089], "bridge.io": [2024], "enter.enaza.ru": [5222], "blogmint.com": [2124], "*.standup2cancer.org": [15442], "url.slowik.eu": [2024], "www.oikotie.fi": [21234], "fmlyt.ch": [2024], "kitenet.net": [8937], "www.coinjar.com": [3397], "services.devon-cornwall.police.uk": [4416], "m.movidb.co.uk": [2024], "voicelessonstotheworld.com": [11341], "ntr.nasa.gov": [10909], "lat.ms": [2024], "bkng.it": [2024], "tvprogram.upc.cz": [17081], "www.aldimobile.com.au": [358], "forbes.cdnvideo.ru": [19536], "www.tchibo-ideas.de": [16050], "discover.justgive.org": [8709], "blog.okcupid.com": [11809], "h.brme.us": [2024], "img0.wlresources.com": [22604], "users.rust-lang.org": [14102], "www.royalfree.nhs.uk": [10953], "infolan.by": [20529], "www.airpair.com": [791], "www.globalweb.co.uk": [6717], "mba.illinois.edu": [17346], "ie.iexp.in": [2024], "www.rev.com": [13894], "*.eurovision.tv": [5422], "convn.org": [2024], "im.virgilyo.com": [2024], "bitre.gov.au": [2456], "www.cloudwear.com": [3315], "its.freebsoft.org": [6100], "expr.se": [2024], "system-rescue-cd.org": [22073], "link.sdlug.com": [2024], "srv1.bakerlab.org": [1646], "media.ayyo.ru": [19292], "wiki.fool.com": [5984], "drc.st": [2024], "*.marsupi.org": [10039], "leamington.greenparty.org.uk": [6908], "jobsat.g4s.com": [20195], "help.aweber.com": [436], "ntt.ie": [2024], "tnw.to": [2024], "order.ikoula.com": [7966], "lanark.spydus.co.uk": [21952], "schrts.com": [2024], "internet-banking.dbs.com.sg": [4001], "wallapop.to": [2024], "theie.info": [2024], "cccdf.org": [2024], "hertz247.pt": [7358], "cahiers-antispecistes.org": [2733], "xitr.us": [2024], "serviceevents.blogs.bucknell.edu": [2406], "abcild.com": [2024], "nerfnow.com": [11200], "mc-author.com": [2024], "www.umano.me": [17226], "opinion.udn.com": [17020], "ftp.uni-erlangen.de": [17396], "peds.oxfordjournals.org": [12222], "updatecenter.norton.com": [11545], "arbitrage.webmoney.ru": [18173], "fwwat.ch": [2024], "mx1.play-asia.com": [12828], "myview.torbay.gov.uk": [16641], "fsolo.co": [2024], "store.intsig.net": [20557], "anidb6.anidb.net": [1065], "blog.tapatalk.com": [16018], "www.technologyreview.in": [22113], "*.echothrust.com": [5039], "onen.link": [2024], "apps1.seagate.com": [14499], "deb.send.microad.jp": [10377], "thegef.org": [8258], "ttap.co": [2024], "www.tuakiri.ac.nz": [16883], "fders.osu.edu": [11797], "mediencenter.vrr.de": [17954], "earv.in": [2024], "www.internetfonden.se": [8286], "p2.ivideo.sina.com.cn": [14904], "elizon.do": [2024], "mail.163.com": [49], "s.tvapp.it": [2024], "netmarble.com": [11283], "offmet.ro": [2024], "u-2.im": [2024], "couchpota.to": [3699], "www.provost.umd.edu": [17351], "cdn6.sure-assist.com": [15709], "wpml.org": [18013], "france-universite-numerique-mooc.fr": [6076], "url.mrwilde.com": [2024], "amsa.gov.au": [1422], "va.gov": [17100], "metrics.aem.playstation.com": [12832], "www2.lubw.baden-wuerttemberg.de": [19302], "foto.happyfoto.sk": [7193], "suck.at": [2024], "bsw.li": [2024], "cms.msi.com": [9806], "wemail.play-asia.com": [12828], "www-cs.stanford.edu": [15448], "roda.io": [2024], "nettitude.co.uk": [11294], "www1.maths.ox.ac.uk": [17359], "taras.yandex.com.ua": [18741], "www.std3.ru": [15511], "store.tequipment.net": [16189], "assets.time.com": [15884], "www.zip.ch": [18972], "l3l.co": [2024], "tene.mu": [2024], "login.pochtabank.ru": [12876], "geotrust.com": [6534], "downloads.php.net": [12280], "community.mobify.me": [10530], "paxex.me": [2024], "racked.cc": [2024], "terpconnect.umd.edu": [17351], "mhlth.info": [2024], "www.hyperspin.com": [7653], "sparklabs.com": [15289], "whatbrowser.org": [18324], "*.iplay.com": [8342], "haarlemmermeer.nl": [11172], "hardrock.co": [2024], "img0.tv4cdn.se": [15947], "www.rnl.ist.utl.pt": [16098], "ew.com": [5284], "mips.com": [9759], "on.incridea.com": [2024], "oraweb.ulaval.ca": [17319], "www.srcf.net": [15406], "gigshift.co": [2024], "www2.leboncoin.fr": [20796], "twiki.nevis.columbia.edu": [3449], "aan.com": [980], "go.mxgnv.com": [2024], "www.internetsociety.org": [8273], "soundo.ps": [2024], "cortex.to": [2024], "rybo.co": [2024], "br.support.tomtom.com": [16615], "www.e-pages.dk": [4852], "www.yuga.ru": [22701], "www.secure.citizensforethics.org": [2671], "www.agra-net.com": [775], "sm.yoozlr.com": [2024], "forums.contribs.org": [3621], "www.linuxfoundation.org": [9427], "clck.fj0.ru": [2024], "profiles.live.com": [9495], "agor.co": [2024], "ads4.contentabc.com": [3614], "jdd.me": [2024], "link.agh3.us": [2024], "www.studentchaptergrants.acs.org": [974], "login.aau.dk": [446], "www.xdebug.org": [18642], "www.logout.hu": [9574], "finseth.com": [20105], "s.ytkg.org": [2024], "www.simplifydigital.co.uk": [21833], "www.strava.cz": [15582], "voggle.co": [2024], "htbx.eu": [2024], "flightaware.com": [5899], "live.bitmissile.com": [1965], "spots.pics": [2024], "imguol.com": [7996], "rfk.rocks": [2024], "iplocation.net": [20572], "www.spark-summit.org": [15287], "x.djfuji.com": [2024], "usage.jenkins-ci.org": [8565], "www.benedikt-bitterli.me": [1806], "lms.nzqa.govt.nz": [11044], "ca.jubilo.ca": [2024], "static.infnx.com": [8091], "dutch.tags.literotica.com": [9479], "trvs.io": [2024], "mango.bike": [2024], "exchange.cex.io": [2600], "*.yelpcdn.com": [18766], "docs.run.pivotal.io": [12765], "www.sebastian-siebert.de": [14519], "kostroma.beeline.ru": [1778], "go.sukarne.mx": [2024], "www.handelsbanken.fi": [7174], "zh.gm.163.com": [50], "www.kavkaz-uzel.eu": [20693], "chi.me": [2024], "s.president.jp": [2024], "chi.mg": [2024], "fortinet.com": [6033], "wrctr.co": [2024], "ems.doncaster.gov.uk": [4672], "clever.news": [2024], "cntrl.ca": [2024], "lifeh.ac": [2024], "on.qrtr.ly": [2024], "skypeweb-ext.bl.uk": [2358], "pennhigh.cc": [2024], "2joycasino.com": [20654], "ellerslie.us": [2024], "cloud.datart.cz": [3998], "www.moonpig.com.au": [10619], "www.slettmeg.no": [4206], "payments.mppglobal.com": [21036], "www.novell.com": [11569], "tz.nu": [2024], "www.tpb.press": [22174], "roundhouse.org.uk": [14040], "committees.web.cern.ch": [2588], "phone.coop": [12666], "golflink.com": [6805], "www.onenews.cz": [11680], "*.fout.jp": [6062], "tva2.sinaimg.cn": [14910], "pingu.im": [2024], "fau.starfishsolutions.com": [21977], "www.glueckspost.ch": [6733], "bdp.st": [2024], "qmcd.ca": [2024], "login.johnshopkins.edu": [8626], "1.dbstatic.no": [19775], "old-webmail.hermes.cam.ac.uk": [17332], "opac-test.ub.uni-mainz.de": [17410], "iosdevweekly.com": [7786], "manual.phpdoc.org": [12684], "*.personforce.com": [12616], "www.seekingarrangement.com": [14616], "portal.apple.com": [1151], "m.zalando.de": [18877], "cair.com": [2528], "images.encyclopediadramatica.se": [5231], "l.fry.fm": [2024], "lib.openmpt.org": [11987], "soe.stanford.edu": [15447], "news.infoseek.co.jp": [8130], "plcylk.org": [2024], "www.bluesnews.com": [2169], "www.youtube.co.uk": [18800], "livingroutes.org": [9531], "lykk.es": [2024], "*.gitlab.io": [6659], "cirrus.akixi.com": [19129], "front.ly": [2024], "wwhts.com": [2024], "cprza.co": [2024], "darkag.es": [2024], "i18n.geany.org": [6463], "joshb.co": [2024], "support.ookla.com": [11931], "coastcapitalsavings.com": [3335], "lnk.geekpov.com": [2024], "*.wennect.info": [18294], "fllw.me": [2024], "static.itch.io": [8402], "modulo.cc": [2024], "smetrics.aem.playstation.com": [12832], "talrt.co": [2024], "*.redbullmobile.com.au": [13730], "clubillico.videotron.com": [17787], "www.research.brown.edu": [2384], "display.tagboard.com": [22085], "l.theefc.ca": [2024], "youtourho.me": [2024], "go.zdemo.net": [2024], "t.flayvr.com": [2024], "cookie.fdih.dk": [6004], "secure.ace-tag.advertising.com": [713], "auth.xe.com": [18599], "s.dingtalk.com": [19842], "dpko-mobile-reporting.un.org": [17057], "edge3.digicert.com": [4461], "deke.it": [2024], "registrace.seznam.cz": [14705], "eu.gcsip.com": [20217], "www.aldi.nl": [357], "i.pwp9.pw": [2024], "yesss.at": [18769], "yescapta.in": [2024], "footre.st": [2024], "tr.aliexpress.com": [854], "go.lucatnt.com": [2024], "m.companynet.mbank.pl": [9733], "opengg.me": [21274], "cgit.cyrus.foundation": [3981], "www.pixelh8.co.uk": [12774], "giarola.it": [2024], "darktable.org": [4147], "www.bitmi.de": [2448], "connect.me": [3583], "gluster.org": [6734], "*.gaia.hs.llnwd.net": [6382], "phoronix.net": [12668], "bryanskaya-obl.beeline.ru": [1778], "rosyama.ru": [21678], "assistenza.tiscali.it": [16572], "scanmail.trustwave.com": [16870], "alp.onl": [2024], "code.nasa.gov": [10909], "cgfang.taobao.com": [16015], "growf.io": [2024], "*.adk2.com": [652], "iv.lt": [8410], "script.crazyegg.com": [3762], "jntco.co": [2024], "map.fnal.gov": [5741], "git33.rostrud.ru": [21677], "i.superlawyers.com": [15686], "tambov.sledcom.ru": [21858], "uttarlton.worldcat.org": [18536], "fnd.gs": [2024], "b.cink.es": [2024], "spyderco.com": [15393], "airtime.pro": [799], "tech.slashdot.org": [15012], "nl.gamigo.com": [6426], "url.mactech.com": [2024], "www.wirelessleiden.nl": [18459], "unc.gd": [2024], "helpdesk.auto.ru": [19276], "mlnd.ir": [2024], "m.mibi.mi.com": [10361], "www.geekevents.org": [6484], "a0.thelateroomsgroup.com": [22160], "people.codeforamerica.org": [3357], "feedback.userreport.com": [17521], "hypeshell.com": [14226], "wbh3.ws": [2024], "nxtg.ms": [2024], "financialaid.stanford.edu": [15448], "www.ybitcoin.com": [18702], "vps.gmocloud.com": [6323], "stuk.co": [2024], "www.cgs.osu.edu": [11797], "board.jdownloader.org": [20633], "securejoinsite.com": [14565], "subscriptions.independent.co.uk": [8058], "exard.io": [2024], "metadata.feide.no": [5729], "*.s3.envato.com": [5295], "rms.ble.de": [19406], "www.domainer.ru": [19870], "www.blottr.com": [2138], "wpx.in": [2024], "www.hotscripts.com": [7558], "krvl.co": [2024], "rentyoursong.cbsm.at": [8782], "offhe.im": [2024], "r0k.su": [2024], "xto.ph": [2024], "kr36.co": [9014], "ct3.addthis.com": [626], "flowr.me": [2024], "*.dualshockers.com": [4781], "dwdr.ms": [2024], "*.rightscale.com": [13940], "be.winner.com": [2024], "go.perlur.cz": [2024], "www.lob.com": [9546], "uso.me": [2024], "searchmarketingexpo.com": [16441], "leok.at": [2024], "twt.sk": [2024], "go.demian.is": [2024], "www.dnc.org": [4050], "library.ucc.ie": [17006], "vpn.che.severgazbank.ru": [14697], "woj.pwm.cc": [2024], "1gbl.me": [2024], "news.brown.edu": [2384], "thesolems.com": [2024], "gkic.me": [2024], "r24617959.sync.app.asana.com": [1265], "whyy.org": [18001], "xavisys.com": [18636], "infocity.az": [20527], "tabl.in": [2024], "tv.infowars.com": [8132], "www.webmon.com": [18227], "*.admtl.com": [738], "www.sanoma.com": [14350], "room.eiffel.com": [5111], "www.umassmag.com": [17352], "secure.goabroad.com": [6751], "sfter.me": [2024], "link.losego.it": [2024], "dashboard.readcube.com": [13666], "syslog-ng.org": [15819], "shaanxi.jd.com": [8434], "raystack.co": [2024], "www.mlr.baden-wuerttemberg.de": [19302], "leslie.bz": [2024], "www.icewarp.com": [7911], "ebay.play-asia.com": [12828], "isle.jp": [8382], "smugglr.in": [2024], "shucheng.jd.com": [8434], "www.montpellier.fr": [10608], "www.oeticket.com": [11769], "logilab.fr": [9568], "smp.reviews": [2024], "tirori.ro": [2024], "erinfrom.nyc": [2024], "shopandmall.ru": [21806], "gifts.rescue.org": [21633], "market.elec.ru": [19976], "anyurlhere.com": [2024], "dce2015.thestandnews.com": [16315], "citibank.com": [3174], "thematt.net": [2024], "www.achaea.com": [19050], "databases.ohiolink.edu": [11799], "passport-ckicheck.yandex.kz": [18743], "landon.co": [2024], "imagine.magento.com": [9868], "rsc.org": [14048], "pic.k.sohu.com": [15171], "www.worksmart.org.uk": [22615], "domainstore.dotcologne.de": [4689], "exaccess.ru": [12821], "btl.st": [2024], "*.which.co.uk": [18336], "smart.ly": [15051], "humanevents.com": [7613], "memoryweb.infinum.co": [20526], "s-e-f.info": [2024], "tmag.co": [2024], "www.blackboard.com": [2069], "index.rsf.org": [13844], "r.aizzard.net": [2024], "newgrounds.com": [11357], "advo.pp.ua": [2024], "www.aktuality.sk": [1507], "spartanspiritshop.msu.edu": [21040], "www.tmall.com": [22222], "forestsangha-163c.kxcdn.com": [6007], "bitcoin-central.net": [1985], "*.ugr.es": [17399], "platinumperformance.com": [12823], "cp3support.netdna.com": [11227], "a6.hitravel.xyz": [2024], "medaid.co": [2024], "dpchm.de": [2024], "*.unt.edu": [17357], "lazycoins.com": [9196], "blog.polleverywhere.com": [12925], "moodle.nic.cz": [11418], "spamgourmet.com": [15283], "search.citrix.com": [3180], "atu.cr": [2024], "biobeat.nigms.nih.gov": [11090], "www.vzaar.com": [17976], "aliyunsolution.oss.aliyuncs.com": [19143], "tgdgtbk.info": [2024], "ecfc.co": [2024], "css.washingtonpost.com": [18086], "l.duosia.id": [2024], "www.webliberty.ru": [22547], "wpro.me": [2024], "lincense.ayyo.ru": [19292], "shellterproject.com": [14758], "nic.ru": [11419], "piedc.environment-agency.gov.uk": [20006], "nazwa.pl": [11156], "www.passed.cc": [12462], "services.khabarovskadm.ru": [20708], "s.pvtpt.com": [2024], "sbisrilanka.com": [2024], "www.swm-infrastruktur-region.de": [14269], "www.calsky.com": [2742], "vpo.st": [2024], "jaxz.in": [2024], "www.strategyanalytics.com": [15578], "aerh.co": [2024], "ww684.smartadserver.com": [15049], "gaminatorslots.com": [6427], "inside.law.yale.edu": [18732], "*.cbsistatic.com": [2542], "blogs.harvard.edu": [7211], "gcentr.al": [2024], "pduty.me": [2024], "*.racjonalista.pl": [13554], "docker.bober.sknt.ru": [21851], "tobethe.church": [2024], "libanswers.wustl.edu": [18088], "secure.adultfriendfinder.com": [696], "www.myresumeagent.com": [10824], "third.li": [2024], "secusmart.com": [14600], "primedice.com": [13109], "www.anthem.com": [19206], "element.yandex.kz": [18743], "goldengate.inyt.com": [7778], "ft.com": [5810], "gradle.com": [20301], "govc.at": [2024], "*.suresupport.com": [15710], "*.gfycat.com": [6608], "uni-erlangen.de": [17396], "www262.americanexpress.com": [979], "tpc.tv": [2024], "buckeyelink.osu.edu": [11797], "ugookn.nso.ru": [21192], "haixia-info.com": [20333], "www.whatsmydns.net": [18331], "okchanger.ru": [21235], "aut.ac": [2024], "claimlisting.superpages.com": [15698], "mozdev.org": [10687], "emea.cdnetworks.com": [2574], "tns-e.a-3.ru": [258], "forums.thechive.com": [22141], "git.tfgamessite.com": [22134], "www.pcre.org": [12257], "mobile.altoonamirror.com": [943], "a4uexpo.com": [270], "www.skyscanner.co.kr": [15006], "b2bmarketing.bizo.com": [2052], "www.addbooks.se": [625], "wvw.caredent.es": [2024], "status.keen.io": [8852], "www.youtube.com.sg": [18800], "arondad.com": [2024], "*.citadium.com": [3169], "whbaldw.in": [2024], "kidshealth.org": [8899], "verification.tpprf.ru": [22260], "touch.deti.mail.ru": [9891], "nalog.tpprf.ru": [22260], "rewards.comparethemarket.com": [3513], "seomon.com": [21781], "nvdd.info": [2024], "blog.docker.com": [4605], "ptclr.com": [2024], "ir.tcw.mx": [2024], "healthonnet.org": [7258], "go.mystady.com": [2024], "filmlinc.com": [5793], "dynavision.de": [4827], "mixrad.li": [2024], "laptoponline.hu": [9167], "www.my-chrome.ru": [21056], "book.360buy.com": [147], "t.vallier.ca": [2024], "l.ynn.me": [2024], "ilovedogs.ws": [2024], "mail.centrum.cz": [19547], "www.synergistscada.com": [15800], "biysk.europaplus.ru": [20034], "www.moodle.com": [10613], "blog.peerj.com": [12548], "ndnx.us": [2024], "crmu.se": [2024], "movie4k.me": [10675], "technical.lavaboom.com": [9186], "imgcache.gtimg.cn": [6974], "www.wilhelm-gym.net": [18402], "bsteg.me": [2024], "xwallet.tokenly.com": [22229], "ubrzap.me": [2024], "ticketweb.*": [16495], "terresoubliees.com": [16202], "faesmi.it": [2024], "www.rw-online.co.uk": [21705], "linuxforums.org": [9437], "provesga.upf.edu": [17471], "insideout.topshop.com": [22238], "costarica.usembassy.gov": [22406], "cloud.idg.se": [7709], "blog.buzzfeed.com": [2489], "eerdmans.com": [5093], "static.gimp.org": [20246], "wrkr.bz": [2024], "drv4.cc": [2024], "suffolkcoastal.greenparty.org.uk": [6908], "debconf5.debconf.org": [4257], "assembly.com": [1305], "share.bjornf.tw": [2024], "community.c9.io": [3279], "s.frd.mn": [2024], "new-rp.certification.openid.net": [11980], "store.sony.com.mx": [15220], "www.parkmodelsdirect.com": [12433], "dkny.co": [2024], "picdor.co": [2024], "scienceathome.org": [14443], "bba.bloomberg.net": [2132], "forum.openmandriva.org": [11992], "autoconfig.yandex.by": [18739], "odg.link": [2024], "www.victoriassecret.com": [17759], "benjm.info": [2024], "itsyner.gy": [2024], "shwr.us": [2024], "www.*.umaine.edu": [17406], "a.animos.us": [2024], "bcs.dengisend.ru": [4344], "carbonma.de": [2024], "astyle-src.alicdn.com": [853], "*.tnnet.fi": [15903], "samhar.ro": [2024], "cdmi.engineering.osu.edu": [11797], "kosar.in": [2024], "cdn.3news.co.nz": [166], "tickertech.com": [16486], "blockexplorer.com": [2101], "kryton.mysql.cesky-hosting.cz": [19553], "ads.adfox.ru": [578], "www.luxurycustomwheels.com": [9687], "bank.unistream.ru": [17291], "bjps.oxfordjournals.org": [12222], "hastrk1.com": [7226], "linux.org.ru": [9423], "www.benmarshall.me": [1804], "www.cavium.com": [2920], "www.access.caltech.edu": [2771], "www.notalwaysromantic.com": [21164], "img.ui-portal.de": [17026], "help.discussions.zoho.com": [18984], "iojs.org": [8332], "pxlspt.co": [2024], "www.clockworkmod.com": [3272], "blog.pay4bugs.com": [12499], "hacks.owlfolio.org": [12211], "csgo.backpack.tf": [1624], "www.bicomsystems.com": [19371], "pt.witness.org": [18472], "storyso.be": [2024], "61dn.se": [2024], "agenda.athaliasoft.fr": [1337], "proxery.com": [13221], "amsleep.co": [2024], "sallybeauty.com": [14314], "price.ua": [13096], "letsencrypt.org": [9279], "www.whitehatters.academy": [22578], "yc2.biz": [2024], "apply.coastcapitalsavings.com": [3335], "www.vianet.co.uk": [17750], "fyurl.tk": [2024], "bluekrypt.com": [2146], "bclaconnect.ca": [1533], "dfzrad.io": [2024], "sigmabeauty.com": [14840], "jmj.link": [2024], "nextag.com": [11402], "l.benny.id": [2024], "giz.lv": [2024], "s8.pimg.tw": [12709], "codeplex.com": [3373], "erfolgscenter.1und1.de": [91], "mmrjournal.biomedcentral.com": [1931], "pyra-handheld.com": [21548], "support.plot.ly": [12860], "www.extensis.com": [5513], "www.exavault.com": [5462], "royaltalens.us": [2024], "www.secure.discoverhongkong.com": [19847], "my.3dg.is": [2024], "knsaber.com": [16624], "c.hris.me": [2024], "weiadmin.sos.wa.gov": [14215], "www.cgmarketingsystems.com": [2983], "f5s.us": [2024], "lfurls.com": [2024], "docutiles.cnrs.fr": [6174], "online-mahnantrag.de": [11903], "techverse.com.au": [16085], "8.sparkxt.space": [2024], "wnd.ms": [2024], "beta.mvv-muenchen.de": [9823], "www.highcharts.com": [7408], "edscpnews.com": [2024], "cibc.com": [2613], "impls.bz": [2024], "kintera.org": [8926], "www.edrs.sfa.bis.gov.uk": [17039], "monitor-lb.memberdirect.net": [10265], "investors.marchex.com": [16454], "l.navit.ie": [2024], "tddhq.com": [2024], "nuclear.osu.edu": [11797], "c2c.websupport.novell.com": [11569], "onlinesinav6.anadolu.edu.tr": [1029], "forum.middlemanapp.com": [20978], "maps.google.co.*": [6825], "sts.unicef.org.nz": [17067], "porya.dk": [2024], "ressources.w4a.fr": [17983], "blagoveshchensk.beeline.ru": [1778], "id.lbp.me": [20789], "cgmarketingsystems.com": [2983], "careers.opendns.com": [11969], "7terminals.com": [236], "atlasop.cern.ch": [2587], "oma.aalto.fi": [447], "webmail.srcf.net": [15406], "www.1shoppingcart.com": [64], "doid.co": [2024], "brokentoaster.com": [2376], "lhdiet.co": [2024], "www.positivessl.com": [12992], "www.morethantwo.com": [10628], "www.aberdeenshire.gov.uk": [472], "37signals.com": [155], "atby.us": [2024], "www.javadoc.io": [8543], "lyncdiscover.2kgames.com": [117], "wanwang.aliyun.com": [868], "stavropol.sledcom.ru": [21858], "banks.ly": [2024], "on.hbazaar.es": [2024], "api.thestandnews.com": [16315], "id.baden-wuerttemberg.de": [19302], "wilhelmtux.ch": [22591], "api.oscar.aol.com": [380], "marker.openstat.com": [21281], "senmusi.cc": [2024], "www.rapidgator.net": [13620], "testpolitique.fr": [16217], "*.nathnac.org": [11125], "mnib.ca": [2024], "ci.debian.net": [4261], "ifex.org": [7727], "login.liu.se": [9097], "cuny.edu": [3191], "www.xagyl.com": [18591], "manof.me": [2024], "myny.it": [2024], "cdn2.kongcdn.com": [8987], "zagreb.usembassy.gov": [22406], "su.magento.com": [9868], "drgn.do": [2024], "kraftsingl.es": [2024], "adfunnel3.microad.jp": [10377], "pit.lc": [2024], "e.bcmazda.com": [2024], "www.nhlbi.nih.gov": [10966], "mayocl.in": [2024], "piraten-mfr.de": [12740], "business.zoho.com": [18984], "developer.ibm.com": [7679], "blogs.simplemachines.org": [21830], "uiux.io": [2024], "discussion.dreamhost.com": [4743], "heinlein-support.de": [7286], "meso.gd": [2024], "she.tc": [2024], "dscvrn.pt": [2024], "hotelbook.cdnvideo.ru": [19536], "app.democracyos.org": [19805], "ibuttxn02.hkjc.com": [20384], "xda-developers.com": [18598], "tag.beanstock.co": [1760], "cmbb.in": [2024], "www.cloudlinux.com": [3288], "cell.fixstars.com": [20114], "webcrm.bookboon.com": [2213], "www.montazar.net": [10605], "zeid.co": [2024], "www.resourceadvisor.anthem.com": [19206], "insight.gunosy.com": [7005], "242.fyi": [2024], "support.amd.com": [970], "autodiscover.ee.leeds.ac.uk": [17403], "www.cipherlawgroup.com": [3154], "www.bunchball.net": [2439], "typef.com": [4325], "usw-lax2.adsrvr.org": [688], "www.sharedvalue.org": [14735], "telford.roadworks.org": [21660], "blwtr.co": [2024], "sportonline.calderdale.gov.uk": [2752], "otvet.yuga.ru": [22701], "bt.me": [2024], "statickfc.cdnvideo.ru": [19536], "frid.ge": [6190], "www.scipy.org": [14437], "bss.to": [2024], "on.criscara.com": [2024], "tracking.adjug.com": [580], "embed.wakelet.com": [18047], "www.t-mobile.com": [15837], "dig.ma": [2024], "darkcoinfoundation.org": [4144], "ssco.gsfc.nasa.gov": [10909], "yampp.de": [2024], "bwc188113.bw.fh-nuernberg.de": [16239], "dig.ms": [2024], "randischumann.dk": [13602], "cows.im": [2024], "ecntr.io": [2024], "sprts.is": [2024], "bizappstoday.progress.com": [13178], "indico.fnal.gov": [5741], "museu.tk": [2024], "tod.ly": [2024], "members.mlive.com": [9777], "www.edx.org": [5062], "maec.mitre.org": [10497], "lichtblick.de": [9340], "chat.cesky-hosting.cz": [19553], "marketing.on1.com": [21248], "grlgn.us": [2024], "catedradpzdesarrollolocal.unizar.es": [17441], "packagelab.com": [12344], "smithhou.se": [2024], "sprts.in": [2024], "c.ichiba.jp.rakuten-static.com": [21577], "oppo.yidianzixun.com": [22679], "shrib.com": [21818], "nfadmin.net": [10946], "s.i-i-news.com": [2024], "escfl.info": [2024], "lt4l.co.uk": [2024], "safwth.us": [2024], "boostbybenz.com": [2231], "link.ne9la.com": [2024], "scribus.net": [14478], "neteller.com": [12103], "forums.comcast.com": [3462], "rt03.epimg.net": [5126], "sthelens.greenparty.org.uk": [6908], "my.variomedia.de": [17658], "otr.im": [11719], "jfr.oxfordjournals.org": [12222], "mix.buzz": [2024], "anch.co": [2024], "static-resource.np.community.playstation.net": [12831], "invisionpower.com": [8319], "duellspiele.web.de": [18146], "rostrud.ru": [21677], "www.365ticketsscotland.com": [153], "b.ad.am": [2024], "api.orgsync.com": [12137], "download.moodle.org": [10616], "nepal.usembassy.gov": [22406], "chrgng.co": [2024], "*.uva.nl": [17545], "www.nartac.com": [11077], "strm.link": [2024], "zhidao.163.com": [50], "viavidoc.com": [2024], "m.rubygems.org": [14075], "restauracie.etrend.sk": [5383], "youraccount.leeds.gov.uk": [20799], "img1.1tv.ru": [88], "staff.lib.ncsu.edu": [11531], "c8v.tv": [2024], "static.a-3.ru": [258], "planningconsult.rbkc.gov.uk": [21595], "tts.tips": [2024], "bigmack.co": [2024], "hackdiet.lp0.eu": [9648], "onlinefamily.norton.com": [11545], "smre.co": [2024], "bowenpress.com": [19434], "go.emsman.nl": [2024], "carepl.us": [2024], "sozialwissenschaften.htwk-leipzig.de": [7596], "revdev.it": [2024], "hyer.co": [2024], "www.respectnetwork.com": [13869], "wired.com": [18454], "www.reelhd.com": [13767], "trial.turbine.com": [16906], "yarbank.dengisend.ru": [4344], "api.creator.zoho.com": [18984], "crbnl.cc": [2024], "*.hafner-ips.com": [7151], "cntpk.tk": [2024], "wiki.enigmabox.net": [5262], "ecburl.com": [2024], "sbarmen.no": [14382], "support.subgraph.com": [15623], "22.rkn.gov.ru": [13971], "tokofbku.co": [2024], "wurfschei.be": [2024], "zest.fm": [2024], "telegram.com": [16143], "achkar.net": [2024], "skat.sk.ru": [21845], "legalsolutions.thomsonreuters.com": [22197], "boem.sk": [2024], "www2.postdanmark.dk": [13010], "nbviewer.ipython.org": [7811], "s114.cnzz.com": [3328], "movableink.com": [10667], "webmailer.1und1.de": [91], "thefire.org": [16353], "*.espivblogs.net": [20022, 20023], "www.holarse-linuxgaming.de": [7454], "norac.co": [2024], "nrod.inl.gov": [20537], "vdata.amap.com": [19166], "edmnw.com": [2024], "www1-cdn.dell.com": [4317], "chenyufei.disqus.com": [4559], "refunds.stanford.edu": [15448], "securetrial.dealinteractive.com": [19792], "www.crossref.org": [3812], "www.davidlazar.org": [4215], "demo.logilab.fr": [9568], "www.ubuntuforums.org": [17185], "urgk.khabkrai.ru": [20709], "join.gay180.com": [6456], "ihbb.htwk-leipzig.de": [7596], "accountsolution.courierpostonline.com": [3713], "www.blackfoot.co.uk": [2071], "s.youn.jp": [2024], "fmgo.to": [2024], "recombu.com": [13710], "*.infojobs.net": [8102], "www.finseth.com": [20105], "api.gettyimages.com": [6604], "go.shsu.ca": [2024], "bbs.sina.com.cn": [14904], "summit.digitalgov.gov": [4475], "db4.play-asia.com": [12828], "ws.alfacashier.com": [19135], "eb.st": [2024], "frng.fr": [2024], "adj.li": [2024], "wiki.servicenow.com": [14682], "my.sandwell.gov.uk": [21729], "smck.me": [2024], "bcgk.co": [2024], "acst.zapsibkombank.ru": [18890], "docs.mesosphere.com": [10314], "newscientistsubscriptions.com": [11339], "x.crpg.info": [2024], "viceland.com": [22460], "www.lansforsakringar.se": [9164], "blogs.yandex.kz": [18743], "dznad.com": [2024], "greyhound.com": [6929], "es.functions-online.com": [20187], "pay.2345.com": [98], "diff.is": [2024], "media.wix.com": [18473], "static.bia2.com": [1866], "feathers.li": [2024], "music.xrec.net": [2024], "securelogin.bp.poste.it": [13013], "bank-enisey.dengisend.ru": [4344], "www.jensge.org": [8567], "piwik.baden-wuerttemberg.de": [19302], "drupalweb.forestry.oregonstate.edu": [12134], "adultfriendfinder.com": [696], "theisp.dk": [2024], "cryptopp.com": [3879], "www.specialisttraining.g4s.com": [20195], "www-master.debian.org": [4263], "ldrtribe.com": [2024], "kabeliasnet.tk": [2024], "capti.me": [2024], "izh.europaplus.ru": [20034], "portal.rfsuny.org": [13480], "www.cam.illinois.edu": [17346], "ch4d.co": [2024], "tempolibero2.ffs.ch": [15756], "agogistest.tocco.ch": [16600], "api.bl.uk": [2358], "about.amara.org": [956], "korostyshiv.o3.ua": [21219], "www.minohubs.com": [10468], "bmcbiophys.biomedcentral.com": [1931], "justiceandpeace.georgetown.edu": [6531], "www.acoustid.org": [532], "skeptic.org.uk": [14968], "www.bitcoinshop.us": [1996], "on.getold.com": [2024], "l.mcent.me": [2024], "climate-diplomacy.org": [3266], "plc-jspg.link": [2024], "social.anz.com": [374], "parking.cambridgeshire.gov.uk": [19496], "e-services.worcestershire.gov.uk": [22611], "r2.ykimg.com": [22681], "timeinc.com": [16535], "rainn.org": [13454], "gratisoft.us": [6881], "rt0.map.gtimg.com": [6975], "fusionhelp.oracle.com": [12116], "dealers.autosite.com": [1459], "www.readplaintext.com": [13674], "*.spi-inc.org": [15163], "china-henan.jd.com": [8434], "www.arewee10syet.com": [19227], "xoc.fnal.gov": [5741], "to.iag.me": [2024], "ad.rmxads.com": [13937], "on.spiceworks.com": [15338], "maxspeedcdn.com": [10104], "saasurl.us": [2024], "hex-rays.com": [7380], "l-auto-entrepreneur.org": [9071], "jdh.oxfordjournals.org": [12222], "luzhou.jd.com": [8434], "tndy.me": [2024], "wwte8.com": [18031], "www.blueturn.earth": [2171], "easycruit.com": [5015], "*.fvn.no": [6029], "freedomdefined.org": [6145], "www.wordfence.com": [18524], "webstac.wustl.edu": [18089], "bit.andyrus.ch": [2024], "s.kende.fr": [2024], "advconversion.com": [704], "bmcbiotechnol.biomedcentral.com": [1931], "ecocar3.osu.edu": [11797], "web-ex.tfb.ru": [16236], "www.trustkeeper.net": [16853], "ld-4.itunes.apple.com": [1151], "bvue.co": [2024], "bio.tv": [2024], "exca.li": [2024], "gonyc.co": [2024], "promo.d-noy.net": [2024], "hamradio.fe.linux.it": [9419], "www2.erlang.org": [5333], "gutsytech.com": [2024], "draytek.com": [4741], "qrky.co": [2024], "player.music.tokenly.com": [22229], "incrv.co": [2024], "*.ekomi.de": [4913], "app-community.canvaslms.com": [2826], "www.sydney.edu.au": [22063], "tune.yandex.kz": [18743], "mail.aalto.fi": [447], "armedforcesday.org.uk": [1228], "pphm.direct": [2024], "kc.sdamcc.org": [2024], "static7.businessinsider.com": [2471], "bbob.co": [2024], "pkfcp.uk": [2024], "game.hdslb.com": [20358], "1.kakunosh.in": [2024], "tvguide.quickline.com": [21566], "members.breakingmuscle.com": [19445], "www.mobilitaet2050.vcd.org": [17560], "kth.bme.hu": [1556], "alta.life": [2024], "tagil.beeline.ru": [1778], "airtime-demo.sourcefabric.org": [15248], "www.sec.escapistexpo.com": [16264], "status.feral.io": [5736], "g5.chaucanh.net": [2024], "profitbricks.co.uk": [13174], "www.hku.hk": [20387], "euroflorist.no": [5397], "cue.tc": [2024], "www.shrib.com": [21818], "mall.brands.com.tw": [2305], "aj.aas.org": [280], "mars.fnal.gov": [5741], "quranproject.org": [13435], "alivenotdead.com": [867], "img5.timeinc.net": [16535], "twigfil.ms": [2024], "milg.pw": [2024], "kk2go.com": [2024], "simpa.na": [2024], "audible.de": [1377], "webanalytics.library.cornell.edu": [3676], "acen.jd.com": [8436], "dictionaryblog.cambridge.org": [18518], "vcpurl.tk": [2024], "l.easyapple.org": [2024], "xoab.me": [2024], "www.ibario.com": [7682], "eai.org": [5140], "smos.cnes.fr": [2647], "jyba.tk": [2024], "alpha.linuxfr.org": [9425], "www.toughchoices.co.uk": [22254], "s.studio040.nl": [2024], "nto.pn": [2024], "static.site24x7.com": [14928], "app.dialshield.com": [1490], "www.getmeadow.com": [6582], "forum.processing.org": [13167], "www.anatoomikum.ut.ee": [17148], "online.havering.gov.uk": [7236], "url.dakodi.eu": [2024], "ashared.5min.com": [217], "s.moxbit.com": [2024], "static.couponcabin.com": [3710], "wiki.rtems.org": [13532], "www.pruefungsamt.jura.uni-mainz.de": [17410], "dl.phpboost.com": [21401], "l.faithtoday.ca": [2024], "fibr.it": [2024], "www.365tickets.co.uk": [149], "mail.telekom.sk": [16155], "spu.taobao.com": [16015], "pub.vecoma.org": [2024], "assets.whicdn.com": [17996], "m.tigerair.com": [16515], "printz.li": [2024], "sbmk.us": [2024], "lib.ncsu.edu": [11531], "properpet.com": [13202], "wsocx.com": [2024], "srm.x5.ru": [18590], "*.tremendesk.com": [624], "www.troyhunt.com": [22294], "ads.golem.de": [6804], "blackboard.com": [2069], "www.webrover.ru": [22551], "turizm.ngs.ru": [21134], "www.b3n.org": [1512], "investor.shareholder.com": [14739], "linuxmusicians.com": [9429], "secure.market.unicef.org.uk": [17068], "evertou.ch": [2024], "marmotte.net": [10036], "changelog.wesnoth.org": [18298], "bugs.tizen.org": [16580], "rcksnd.tv": [2024], "activatemychannels.sky.com": [14989], "ecrimeresearch.org": [4879], "pitchford.co": [2024], "dmp.data.jhu.edu": [16370], "help.gocoin.com": [6753], "salenames.ru": [14309], "unirand.uio.no": [17414], "khub.net": [8742], "link.santo.so": [2024], "www.linuxfound.info": [9426], "hic.la": [2024], "cdn.reedbusiness.com": [13763], "www.wammo.co.nz": [8941], "www.wechat.com": [18116], "bitcoinshop.us": [1996], "nasaimages.org": [4083], "factoryhomesale.com": [5616], "socialsell.in": [2024], "ahca.media": [2024], "de-de.facebook.com": [5609], "www.yuilibrary.com": [18715], "6fig.es": [2024], "www.projectdev.org": [21511], "apple4.pro": [2024], "www.opencsw.org": [11962], "o.twimg.com": [16949], "www.metro-set.ru": [20971], "alphm.xyz": [2024], "planet.qt.io": [13365], "sfchron.cl": [2024], "request.lloydsbank.com": [9537], "domainwho.is": [4654], "energylinx.co.uk": [19997], "pinkoi.me": [2024], "hydro.quebec": [2024], "lsdev.sir.sportradar.com": [21945], "taelite.co": [2024], "lb.ca": [9198], "www.islamicboard.com": [8378], "qr.youku.com": [18804], "go.teamgnh.it": [2024], "chembiofinder.cambridgesoft.com": [2782], "xlove.com": [22653], "uiowa.link": [2024], "lb.cx": [2024], "emop.fnal.gov": [5741], "birch.ly": [2024], "alditalk.de": [357], "photos-c.ak.fbcdn.net": [5689], "tfs.bz": [2024], "byezf.com": [2024], "www.dbs.com": [4001], "cloudtrax.com": [3295], "lib.hku.hk": [20387], "passport.lenovo.com": [9267], "adserver.adreactor.com": [587], "collector.githubapp.com": [6661], "postwire.com": [13030], "ktk.de": [8769], "cr-q.us": [2024], "05.rkn.gov.ru": [13971], "en.nullday.de": [11613], "d.riwi.com": [2024], "www.cumbria.police.uk": [3913], "notalwaysworking.com": [21164], "promotions1.newegg.com": [11356], "lyrk.de": [9697], "www.forsten.sachsen.de": [14279], "awsbeta.wired.com": [18454], "virtkick.com": [17830], "clvr.li": [2024], "auth.alipay.com": [864], "p-tano.com": [12232], "c-champ.rambler.ru": [13600], "sestroretsk.beeline.ru": [1778], "cdn.iphonelife.com": [8341], "newsletter.raiffeisen.ch": [13588], "interc.pt": [2024], "my.htw-berlin.de": [7103], "uc.udn.com.tw": [17020], "veye.ca": [2024], "2010.mondediplo.com": [10578], "utsandiego.com": [17149], "www.sit.fraunhofer.de": [6091], "cvlbe.at": [2024], "origin-cdn.rawgit.com": [13641], "bcene.ws": [2024], "www.eminhuseynov.com": [5201], "hi.chip.vn": [2024], "www.pixhost.org": [21426], "frazier.click": [2024], "blade20.ual.es": [17162], "www.mappedinisrael.com": [9982], "*.gatwickairport.com": [6448], "*.transmode.se": [16752], "coro.la": [2024], "photos1.zillowstatic.com": [18965], "iOSBStxn01.hkjc.com": [20384], "s.motta.jp": [2024], "www.vszp.sk": [17958], "en-contrainfo.espiv.net": [20021], "casam.at": [2024], "search.us.checkpoint.com": [3051], "dcft.co": [2024], "parsely.com": [12447], "thred.me": [2024], "zavodoukovsk.admtyumen.ru": [19082], "xnsd.de": [2024], "hotspot.norton.com": [11545], "feralhosting.com": [5737], "pfts.nl": [2024], "joomlatools.co": [2024], "gritdigital.co.uk": [6939], "jcsu.jesus.cam.ac.uk": [2777], "hd4.us": [2024], "go.ozcan.me": [2024], "media6.congstar-media.de": [3579], "ht.pornhub.com": [12972], "vbnmkt.me": [2024], "gocargo.x5.ru": [18590], "active24.nl": [19065], "s.bonn.fm": [2024], "www.wrongplanet.net": [18566], "www.5dec.ru": [216], "bxffc.bz": [2024], "blog.onedrive.com": [11869], "support.webmoney.ru": [18173], "ja.3.boardgamearena.com": [2182], "privateinternetaccess.com": [13145], "beta.mol.org": [10521], "sbn.cc": [2024], "thaiapp.tk": [2024], "www.techjourney.net": [16088], "aclu-ms.org": [302], "rus-embc.tpprf.ru": [22260], "mei.1688.com": [51], "x.oo0.eu": [2024], "www.proxify.com": [13222], "mcalp.in": [2024], "conversionsbox.com": [3629], "photoboothto.co": [2024], "m.airbnb.it": [793], "*.blogspot.fi": [2127], "packages.exherbo.org": [5482], "www.mamp.info": [20916], "img.staticmy.com": [15497], "heimatshop-bayern.de": [7284], "status.bintray.com": [1928], "bcptransparent.avenirclimatique.org": [1472], "*.blogspot.fr": [2127], "bstn.to": [2024], "ief.tocco.ch": [16600], "bmcwomenshealth.biomedcentral.com": [1931], "overlakehospital.org": [12198], "upa.unionpaysecure.com": [17281], "jeunes.cnes.fr": [2647], "spcts.nyc": [2024], "*.server314.com": [14665], "stat.seven-sky.net": [21792], "smartyield-mgr.smartstream.tv": [15064], "cdn.banx.io": [1683], "pics-view.info": [2024], "mca.re": [2024], "techstore.msu.edu": [21040], "rodriguez.ml": [2024], "www.verlagsherstellung.de": [7595], "*.ucm.es": [17009], "*.griffith.edu.au": [6937], "dev.te-st.ru": [22103], "shop.12wbt.com": [10373], "www.ncei.noaa.gov": [11121], "rmbln.gs": [2024], "middelburg.nl": [11172], "image.inforesist.org": [20531], "timos.me": [16483], "mprnts.co": [2024], "blogfm.europaplus.ru": [20034], "pure.city": [2024], "logentries.com": [9563], "www.apc.homeoffice.gov.uk": [20399], "www.tigerair.com.au": [16515], "indexing.familysearch.org": [5636], "easy.ps": [2024], "www.speed-burger.com": [15322], "ifbx.co": [2024], "marketo.justgiving.com": [8710], "csites.ornl.gov": [11730], "to.saqqa.jo": [2024], "databases.library.jhu.edu": [16370], "www.l-auto-entrepreneur.org": [9071], "lnk.basicer.com": [2024], "www.firebase.com": [5838], "my.glee.co.uk": [20263], "freshfem.refresher.cz": [13781], "pda.blogs.yandex.by": [18739], "associates.amazon.co.jp": [19169], "vpn.hkuspace.hku.hk": [20387], "ldcu.ca": [9146], "addo.cc": [2024], "bathnes.gov.uk": [1715], "dot-bit.org": [4686], "www.guru.de": [20326], "hubnotify.com": [20442], "modloft.co": [2024], "d313.co": [2024], "piratenpartei.at": [12754], "campususa.state.gov": [17146], "check.egais.ru": [19969], "npmjs.org": [11580], "wartsi.la": [2024], "catalyst.library.jhu.edu": [16370], "cloudmining.guru": [3309], "ieee-elearning.org": [7722], "eto.bb": [2024], "blog.netdna.com": [11227], "www.notalwayshopeless.com": [21164], "pjt.rs": [2024], "authorization.api.qbrick.com": [13345], "enfuseconference.com": [6988], "bnts.me": [2024], "*.freshdesk.com": [6183], "acml.osu.edu": [11797], "geneva.unicef.org": [17069], "moderngovwebpublic.redditchbc.gov.uk": [21618], "cluster2.ahosting.cz": [782], "sud.khabkrai.ru": [20709], "apply.naukri.com": [11146], "amrph.com": [2024], "puhtml.com": [21541], "xubuntu.org": [18696], "flossprize.apc.org": [1318], "pokerstarspartners.com": [21453], "picasaweb.google.*": [6821], "files.kartfighter.com": [8814], "ja.pastebin.ca": [12477], "helpdesk.earthcam.net": [19931], "ppro.me": [2024], "altmetric.com": [941], "wennect.info": [18294], "jsrt.tk": [2024], "vts.permkrai.ru": [21390], "org.mangolanguages.com": [9960], "newsinhealth.nih.gov": [11090], "gajim.org": [6383], "*.makeuseof.com": [9919], "err.taobao.com": [16015], "married.dance": [2024], "*.vichan.net": [17755], "jdamii.jd.com": [8436], "www.tn123.org": [22225], "agenda.ct.infn.it": [7771], "taki.hizlisaat.com": [7437], "fenamp.co": [2024], "http.kali.org": [8786], "intuitlabs.com": [8301], "fl.uy": [2024], "www.hostdime.com": [7518], "cloud.st.uz": [21966], "orbu.ch": [2024], "dnfsbstg.prod.acquia-sites.com": [4294], "bweave.me": [2024], "walker.news": [2024], "support.eiffel.com": [5111], "s43.io": [2024], "n.jagongan.org": [2024], "i3.services.social.s-msft.com": [14114], "jerot.us": [2024], "vjd.io": [2024], "ineedservice.un.org": [17057], "pocketmatrix.com": [12877], "inch-ci.org": [8048], "aidsrestherapy.biomedcentral.com": [1931], "oascentral.post-gazette.com": [12762], "www.iedgmbh.de": [7716], "kvcstms.com": [2024], "www.webprospector.de": [18177], "kyivpost.com": [9066], "www.jaspan.com": [8537], "itel.georgetown.edu": [6531], "hivene.ws": [2024], "secure.raynersw.com": [13646], "kera.st": [2024], "sha2.kuix.de": [9045], "rheden.nl": [11172], "vyksa.startsmile.ru": [21980], "rebeccawait.com": [21605], "*.bancastato.ch": [20683], "wiki.galpon.org": [20198], "deel.dict.cc": [4442], "www.thepbproxy.website": [22174], "sharepoint.coop.ch": [3647], "vsoeapp1.vsoe.usc.edu": [17366], "l.kaustavdm.in": [2024], "hap.cm": [2024], "audiogo.com": [1385], "who.godaddy.com": [6755], "www.tid.gov.hk": [7069], "ifap.ed.gov": [4881], "xplosion.de": [18677], "aldi-mobile.ch": [357], "sonar.tocco.ch": [16600], "download.simplemachines.org": [21830], "cmn.gd": [2024], "lambda-tek.com": [9151], "www.inetvl.ru": [20525], "forum.lugons.org": [9121], "digital.report": [19836], "dsrv.it": [2024], "marketplace.cms.gov": [19630], "fireside.events": [2024], "watch.yandex.com": [18742], "opensource.com": [12078], "www.bluemix.net": [2166], "diplode.mondediplo.com": [10578], "pp.omikk.bme.hu": [1556], "moh.bi": [2024], "dd19.tk": [2024], "ntx.lv": [2024], "service.maxdome.de": [10106], "brandspankingnew.net": [2299], "www.legolanddiscoverycenter.com": [9249], "firetv.ga": [2024], "h105.nl": [2024], "*.asu.edu": [1220], "more-onion.com": [10627], "community.giffgaff.com": [20243], "episodewww.play-asia.com": [12828], "kalw.at": [2024], "www.ees.elsevier.com": [5175], "j.joiha.com": [2024], "jp.pornhub.com": [12972], "towerfts.nsbf.nasa.gov": [10909], "www.turn.com": [16911], "login.mailchimp.com": [9893], "zona.refresher.sk": [13781], "eportfolio.plymouth.ac.uk": [12873], "montpellier3m.fr": [10609], "help.sharethis.com": [14730], "sync.st": [2024], "www.techsay.com": [16082], "groups.live.com": [9495], "max.fyi": [2024], "ims.to": [2024], "cerit-sc.cz": [2584], "cmems.stanford.edu": [15448], "content.cws.iop.org": [8195], "petrozavodsk.biglion.ru": [19375], "calt.cms.gov": [19630], "dfat.gov.au": [4355], "*.ticketone.it": [16488], "kirov.europaplus.ru": [20034], "kbeav.com": [2024], "bf.chaucanh.net": [2024], "www.theproxy.site": [22174], "ads.mda.net.co": [2024], "bcontrol.bezeqint.net": [1862], "www.hastings.gov.uk": [7225], "www.hotmail.co.uk": [7564], "s.tccl.info": [2024], "www.kemi.se": [8736], "www.lyft.me": [9690], "m-dt.co": [2024], "oracle.taleo.net": [15986], "buzz.kora11.com": [2024], "secure.blogtalkradio.com": [2118], "www.finanswatch.dk": [5813], "go.ewall.org": [2024], "vopros.belregion.ru": [19353], "scienceconference.stanford.edu": [15448], "idm.mit.edu": [9763], "woodstock.georgetown.edu": [6531], "custhelp.consumerreports.org": [13938], "im7.kommersant.ru": [20746], "thumbnails.5min.com": [217], "*.pearsonvue.com": [12539], "coma.la": [2024], "ver.shipp.tv": [2024], "luissilva.co": [2024], "asseenonresponsetv.com": [1300], "as112.net": [403], "pwr.my": [2024], "www.givetolocal.stanford.edu": [15448], "www.needmorehits.com": [11173], "*.alternate.be": [929], "geo-assets.tedcdn.com": [15871], "fio.cc": [2024], "swo.pe": [2024], "m.hr.ma": [2024], "www.membercentral.com": [10262], "us4.startingpage.com": [15476], "spl.jobs": [2024], "vauva.fi": [22431], "elgour.me": [2024], "www.govmetric.com": [6850], "documents.un.org": [17057], "geekhoodi.es": [2024], "thesexyhouse.com": [14704], "xfire.com": [18658], "features.play-asia.com": [12828], "sbn-nd.fnal.gov": [5741], "support.cloudshark.org": [19626], "shop.entheogene.de": [5285], "tox.chat": [16690], "www.spielfuerdeinland.de": [15343], "rpdz.me": [2024], "sbshare.co": [2024], "liagriffith.me": [2024], "www.slproweb.com": [15040], "apus.agency": [19223], "www.fornex.com": [6024], "nhale.co": [2024], "workorder.console.aliyun.com": [868], "beta.minecraft.net": [10452], "stupino.europaplus.ru": [20034], "s104.cnzz.com": [3328], "s3.skyscnr.com": [15006], "newfarmers.usda.gov": [17299], "dot429.com": [4684], "cdn.broadcasthe.net": [2371], "office.majordomo.ru": [9914], "cts.sanoma.fi": [14351], "www.creativeskills.be": [3782, 3783], "on.jsonl.in": [2024], "*.wimpmusic.com": [18369], "www.wpad.leeds.ac.uk": [17403], "t1m.bz": [2024], "www.surfingip.info": [3536], "cadso.co": [2024], "consultldf.tauntondeane.gov.uk": [16042], "rango.li": [2024], "cdn.lutte-ouvriere.org": [20894], "shop.wattpad.com": [18103], "www.nrk.no": [11586], "doublepower.sport-express.ru": [21941], "g.stir.li": [2024], "download.calibre-ebook.com": [2757], "mgaphn.com": [2024], "iab.org": [7668], "2ave.us": [2024], "btckan.com": [1584], "stackexchange.com": [15424], "cloud.digitalocean.com": [4481], "bdbd.us": [2024], "pdfill.com": [21377], "fits.gsfc.nasa.gov": [10909], "confluence.isc.org": [7823], "sog.objective.co.uk": [21225], "solid.kde.org": [8735], "transparency.org": [16754], "fab.yt": [2024], "img1.picload.org": [12693], "translate.hootsuite.com": [7497], "pgsql.pipni.cz": [12287], "mail.bookdepository.co.uk": [2216], "swi.pe": [2024], "alibaba.com": [857], "wikimedia.cz": [18388], "community.g4s.com": [20195], "hastrk3.com": [7227], "1d4.us": [75], "events.unicefusa.org": [17070], "www.is.gd": [20585], "zndr.vn": [2024], "s.news.com.au": [2024], "www.siteground.com": [14932], "go.eu.bbelements.com": [1742], "uedas.qidian.com": [13349], "a.dilcdn.com": [4505], "intranet.havering.gov.uk": [7236], "r24820242.sync.app.asana.com": [1265], "mailman.boum.org": [2261], "blue1.pspr.fi": [2024], "medportal.wustl.edu": [18089], "myucsdchart.ucsd.edu": [17012], "bap.navigator.web.de": [18146], "slth.co": [2024], "secure.oron.com": [12147], "kanbox.com": [8794], "hereplus.me": [7327], "learning.oxfordshire.gov.uk": [21327], "mirror.fxprime.com": [5600], "ww1325.smartadserver.com": [15049], "hengshu-imagebucket.oss.aliyuncs.com": [19143], "knst.mn": [2024], "*.spench.net": [15332], "s2.ifengimg.com": [20487], "nullrefer.com": [11612], "rockpaperphoto.com": [13990], "files.5min.com": [217], "shexian.jd.com": [8434], "www.governmentattic.org": [6856], "hpfl.at": [2024], "logitech.com": [9571], "mednogorsk.startsmile.ru": [21980], "*.campuspack.net": [2799], "om.nl": [12062], "api.digicert.com": [4461], "vilma.co": [2024], "mm.boell.org": [19422], "brd.nci.nih.gov": [11090], "admin.websupport.cz": [18189], "srv00.epimg.net": [5126], "soldad.us": [2024], "gradwell.com": [6868], "shah.es": [2024], "www.rateyourlocalservice.co.uk": [21587], "stch.me": [2024], "mr.ilysoft.info": [2024], "classymotherfucker.com": [3220], "m.myfreecams.com": [21065], "syw.co": [2024], "mozhaisk.tpprf.ru": [22260], "*.sw-in.de": [15434], "photo-rlh.com": [2024], "link.padlad.com": [2024], "5ed.us": [2024], "auspol.info": [2024], "members.literotica.com": [9479], "ewrks.co": [2024], "login.nemlog-in.dk": [11184], "cqh.harvard.edu": [7211], "static.ypautos.com": [15679], "static.x-plarium.com": [22641], "sportisimo.cz": [14223], "bombe.rs": [2024], "soutenir.amnesty.fr": [1006], "www.calderdale.gov.uk": [2751], "www.hlat.us": [7113], "www.spdns.de": [14219], "moviii.isy.liu.se": [9097], "psgs.us": [2024], "l.welaika.com": [2024], "blog.247exchange.com": [105], "cms.fnal.gov": [5741], "app.adjust.com": [651], "advnt.st": [2024], "www.gameselectors.com": [6417], "iwscamps.com": [2024], "kens.io": [2024], "www.withsix.com": [18469], "bs3.doubanio.com": [19889], "media.uow.edu.au": [17434], "gdsr.ch": [2024], "support.vevent.com": [22451], "accounts.logme.in": [9557], "sedirekt.se": [14601], "www.qualityagent.com": [13380], "ode.tj": [2024], "citaprevia.ual.es": [17162], "particleandfibretoxicology.biomedcentral.com": [1931], "go.drod.io": [2024], "www.price.ua": [13096], "norilsk.beeline.ru": [1778], "x.nola411.com": [2024], "squid.buzz": [2024], "gs66-vdclambda.ndc.nasa.gov": [10909], "www.privacyisawesome.com": [5769], "*.ebaystatic.com": [4867, 4868], "harass.stanford.edu": [15448], "baobao.taobao.com": [16015], "thc.ac": [2024], "tapochek.net": [22098], "oxhorn.it": [2024], "factoryexpodirect.com": [5616], "jtopol.oxfordjournals.org": [12222], "www.ellak.gr": [6897], "islamictech.com": [8380], "*.facilities.udel.edu": [17337], "mypassword.andover.edu": [12653], "www.apple.com.cn": [1150], "www.pace.com": [12339], "mintne.ws": [2024], "bmk.nu": [2024], "blog.rosettacode.org": [14023], "bwnews.co": [2024], "www.healths.biz": [7263], "13joycasino.com": [20654], "support.pingdom.com": [12719], "li.loschev.com": [2024], "www.shoryuken.com": [14798], "op-co.de": [11937], "bitcoin.pl": [1993], "nextv.so": [2024], "m.lequipe.fr": [20811], "imrp.oxfordjournals.org": [12222], "www.ca.com": [2525], "mitne.ws": [2024], "www.video.ecc-platform.org": [4871], "jobcenter.jammerbugt.dk": [8517], "ms.4.boardgamearena.com": [2182], "applicationstemp.barnsley.gov.uk": [19318], "sv.no": [14264], "newsletter.bitcoin.co.id": [1992], "www.javascriptobfuscator.com": [20630], "x2go.org": [18589], "saintcon.org": [21716], "ccc-mannheim.de": [2550], "assets.cdn.gamigo.com": [6426], "www.greyhound.ca": [6929], "yro.slashdot.org": [15012], "dashboard.buddybuild.com": [19467], "consentmgt.wayf.dk": [17988], "kfs.usc.edu": [17366], "ultim.kr": [2024], "tax.foundation": [2024], "2fimage1.play-asia.com": [12828], "imageproxy.pimg.tw": [12709], "chelyabinsk.biglion.ru": [19375], "brandsaver.ca": [13168], "rtrpics.com": [2024], "www.kissanime.to": [8933], "on.hisaor.org": [2024], "www.newsdaily.com": [11368], "be.beperk.com": [2024], "static.internet.org.nz": [8275], "out.otaserve.net": [21307], "pwg3.gtimg.cn": [6974], "osm.homecomputing.fr": [7487], "eikn.ch": [2024], "www.cloudworks.nu": [3296], "www.hdserviceproviders.com": [7038], "www.decadent.org.uk": [4268], "static.sharethrough.com": [14742], "js.rating-widget.com": [13637], "videocaption.djicdn.com": [4029], "engine.trklnks.com": [16830], "*.googleusercontent.com": [6828], "mys.mn": [2024], "daniel.haxx.se": [20348], "www.cheema.com": [3058], "www.cccu.ca": [3337], "prmr.ly": [2024], "bw7bhsxwenarhr1j1ypkdn7a1xkoy7masba6i8mw.ipleak.net": [20571], "muenchen.tv": [10725], "onesignal.com": [11882], "since1880.be": [2024], "krivoyrog.o3.ua": [21219], "newde.al": [2024], "pages.zend.com": [18920], "chrds.xyz": [2024], "www.kallithea-scm.org": [8787], "unsearcher.org": [17453], "gotjio.tk": [2024], "invet.permkrai.ru": [21390], "ahorroentinta.com": [16601], "equi.link": [2024], "teku.at": [2024], "dotd.club": [2024], "cuaes.cals.cornell.edu": [3676], "wrkvr.nl": [2024], "scambs.gov.uk": [21739], "www.manhattan-institute.org": [9961], "www.liberty-human-rights.org.uk": [9315], "*.morrisons.co.uk": [10641], "news.ad-stir.com": [567], "go2.xnite.org": [2024], "directory.jpl.nasa.gov": [10909], "gimlaim.bezeq.co.il": [19362], "store.snort.org": [15106], "questadmin.net": [6262], "superhexagon.com": [15685], "www.mobile.yandex.com.tr": [18740], "api.enhancedsteam.com": [5261], "www.99bitcoins.com": [251], "invest.timeinc.com": [16535], "api.youla.io": [22689], "www.abine.com": [477], "www.thehiddenbay.xyz": [21522], "corpssl.hdfcbank.com": [7249], "mndsh.re": [2024], "trw.trmb.co": [2024], "www.community.spot.im": [15364], "lars.space": [2024], "bill.westlan.ru": [22566], "wiki.mate-desktop.net": [9727], "linkmaker.itunes.apple.com": [1151], "monthlyreview.org": [10607], "porvir.catracalivre.com.br": [2917], "wachtwoord.xs4all.nl": [18625], "up.tips": [2024], "www.acm.wustl.edu": [18089], "minyust.khabkrai.ru": [20709], "acomp.stanford.edu": [15447], "s4g.co": [2024], "tocco.tocco.ch": [16600], "heatmap.me": [7277], "www.dozuki.com": [4727], "m.lowes.com": [9645], "tdtmvjournal.biomedcentral.com": [1931], "spartak.openbank.ru": [21267], "quakenet.org": [13376], "ziggo.nl": [18962], "sundayworld.com": [15664], "www.wienit.at": [18376], "apts.es": [2024], "imbo.vgc.no": [17569], "fr.thinksteroids.com": [9750], "portfolio.it.ox.ac.uk": [17359], "crwd.fr": [2024], "cache1.artprintimages.com": [1251], "www.airbnb.com.br": [793], "peeringdb.com": [12553], "gotige.rs": [2024], "www.less.works": [20815], "get3.adobe.com": [669], "jobscore.com": [8604], "flatrate.co": [2024], "m.majordomo.ru": [9914], "vzp.cz": [17611], "www.maryno.net": [20928], "www.noxa.de": [21174], "dominium.help": [2024], "bodypo.com": [2024], "go.ennui.tv": [2024], "www.zimbatm.com": [18967], "bankrate.com": [1676], "cwrap.org": [19747], "www.walletgenerator.net": [18056], "devices.live.com": [9495], "unes.lequipe.fr": [20811], "53eig.ht": [2024], "tangoc.co": [2024], "extras.ooyala.com": [11936], "animoto.com": [1070], "kultura.sme.sk": [14198], "aydenwd.net": [2024], "fliesen.sr": [2024], "futglo.co": [2024], "exmn.me": [2024], "go.e2.ma": [2024], "connect.over-blog.com": [12188], "pack.google.com": [6818], "wikis.oracle.com": [12116], "extranet.cosmos.dfs.un.org": [17057], "static.openmandriva.org": [11992], "go.alirezah.net": [2024], "bezrealitky.cz": [19364], "apex.go.sonobi.com": [15209], "mobile.lesinrocks.com": [9273], "api.unbounce.com": [17239], "speakpipe.com": [15303], "f.emi.ovh": [2024], "www.cse.unsw.edu.au": [17076], "www.privatbanka.sk": [13144], "*.owkb.ch": [20683], "efast.dol.gov": [19867], "img1.cache.netease.com": [11228], "skyfi.xyz": [2024], "fdsj.nl": [2024], "cabletv.com": [2718], "help.apple.com": [1151], "magazine.wustl.edu": [18089], "www.spa.wustl.edu": [18089], "superstarm.ag": [2024], "s.canaltours.dk": [2024], "icho.se": [2024], "fdl.me": [2024], "qnre.ws": [2024], "w00tads.com": [17978], "usdalinc.sc.egov.usda.gov": [17299], "branstark.uk": [2024], "omniti.com": [11833], "www.lgbtnet.org": [20825], "wiki.unrulymedia.com": [22383], "app.dn.se": [19856], "*.sdsc.edu": [14152], "blogs.loc.gov": [9541], "onsiteconcierge.com": [13450], "*.tadst.com": [15961], "imps.adentifi.com": [636], "www.safe-in-cloud.com": [14286], "krvn.us": [2024], "www.it.cornell.edu": [3676], "qr.tickuant.com": [2024], "sharedance.pureftpd.org": [13282], "vice.com": [17754], "biddl.me": [2024], "erc.edu": [4941], "kylie.com": [20766], "m.oxfordshire.gov.uk": [21327], "wiki.debianforum.de": [4264], "tratamento.in": [2024], "www.mvptitle.com": [9821], "cercor.oxfordjournals.org": [12222], "www.gigasize.com": [6627], "direct.asda.com": [407, 19247], "intro.maxon.net": [10110], "shahsel.be": [2024], "www.youtube.co.nz": [18800], "inapub.co.uk": [8040], "ludicrous.theme.co": [16411], "www.italliance.com": [7845], "cdn-blog.opendns.com": [11969], "www.orangeplant.co.uk": [21290], "wolber.me": [2024], "www.zocalopublicsquare.org": [18981], "git.lysator.liu.se": [9097], "scrntxtr.co": [2024], "www.mutualart.com": [10776], "alphab.gr": [2024], "filer.anst.uu.se": [17153], "www.qf.org.qa": [21557], "documentfreedom.net": [4617], "ludios.org": [9662], "web5.uottawa.ca": [17358], "tobtr.com": [16598], "ssl.scz.li": [2024], "64700.play-asia.com": [12828], "f5.com": [5537], "dbricks.co": [2024], "redmine.hackerspace.pl": [7136], "parkingpermits.west-norfolk.gov.uk": [22563], "g.tnw.so": [2024], "s4.pstatp.com": [16680], "bru.bz": [2024], "wiki.awesome-it.de": [1487], "imglf1.nosdn.127.net": [41], "umicheng.in": [2024], "project.webplatform.org": [18176], "l.financefox.ch": [2024], "cgi.pub.qq.com": [13329], "classroom.udacity.com": [17193], "aclu-sc.org": [308], "www.cityoflondon.gov.uk": [3192], "1.vapel1fe.com": [2024], "pypip.in": [13309], "glambeauty.co": [2024], "l.djdb.me": [2024], "*.federalreserve.gov": [5708], "mae.li": [2024], "l.hale.ee": [2024], "my.libreoffice.org": [9327], "democracy.bathnes.gov.uk": [1715], "betterfutu.re": [2024], "addons.privacyfix.com": [13140], "sixapart.jp": [14956], "www.dntx.com": [4063], "p4cm.info": [2024], "int2.autoscout24.ch": [1457], "slac.com": [15007], "un4.me": [2024], "gtnr.it": [2024], "www.pobox.com": [12875], "trustly.se": [16868], "lsa.umich.edu": [17354], "www.iss.leeds.ac.uk": [17403], "www.kivo.com": [8940], "www.violetdarkling.com": [17813], "go.belahze.com": [2024], "eqfx.co": [2024], "charityrun.am730.com.hk": [19163], "www.smuxi.com": [15080], "login.facebook.com": [5609], "acoat.me": [2024], "bme.ust.hk": [22412], "ckyrc.co": [2024], "velofinder.ch": [22437], "edubuntu.org": [5060], "on.rl.tv": [2024], "juego.pl": [2024], "national.za.net": [2024], "palfrader.org": [12371], "de.rateyourmusic.com": [13633], "www.codepunker.com": [3350], "tfgo.de": [2024], "tpb.tormirror.download": [22259], "highschoolbioethics.georgetown.edu": [6531], "go.logect.com": [2024], "actrb.co": [2024], "gds.sg": [2024], "link.ctri.info": [2024], "svz-bw.de": [22054], "orange.sk": [12121], "planet-search.debian.org": [4263], "zxv.me": [2024], "rabota.ya.ru": [18716], "pipr.es": [2024], "s.jukucore.jp": [2024], "bao.wallstreetcn.com": [18057], "*.www.suburban.nl": [15634], "phoot.play-asia.com": [12828], "www.ferienhaus-emsland-suzan.de": [5739], "pub.mate-desktop.com": [9727], "icka.idnes.cz": [20483], "spu.ac.th": [14224], "www.pygmyboats.com": [21546, 21547], "mail.exherbo.org": [5482], "infodev-d7-live.nsms.ox.ac.uk": [17359], "analytics.skyscanner.net": [15006], "www.keygens.nl": [8882], "galaxis.at": [6384], "volgodonsk.europaplus.ru": [20034], "berniesanders.com": [1826], "luxe.ly": [2024], "jobs.southglos.gov.uk": [15257], "usan.co": [2024], "www.ourskillsforce.co.uk": [21315], "cmc.tanx.com": [22097], "eks.primbank.ru": [13107], "www.idrix.fr": [7711], "justpit.ch": [2024], "hotmail.play-asia.com": [12828], "college.artsci.wustl.edu": [18089], "epp.sheffield.gov.uk": [14755], "oss-in.brandl-services.com": [2304], "svn.ffx.subsignal.org": [15630], "www.droplr.com": [4765], "ukir.cf": [2024], "bbeagle.nl": [2024], "images.thebookpeople.co.uk": [16292], "rpxsso.rpxcorp.com": [13508], "rum4.cdnvideo.ru": [19536], "topdesk.bls.ch": [1552], "nsrc.org": [10998], "static.junge-piraten.de": [8695], "hdfcbank.com": [7249], "www.tokenly.com": [22229], "email.wku.edu": [22602], "store.linux.com": [9417], "pwrm.ch": [2024], "akp.thecthulhu.com": [16403], "ghostbin.com": [6612], "alternate.nl": [929], "*.pof.com": [12853], "jcfilms.co": [2024], "vsta.pr": [2024], "weatherzone.com.au": [18133], "publichealth.wustl.edu": [18089], "fogcreek.com": [5959], "nesse.link": [2024], "secure.stacklet.com": [15429], "cohnreznick.com": [3389], "*.sape.ru": [14359], "servix.idnes.cz": [20483], "wyrebc.objective.co.uk": [21225], "stz.cc": [2024], "rstudio.com": [13527], "ypo.st": [2024], "forexpamm.info": [2024], "sportbox.ru": [21942], "alte.in": [2024], "bh.bh": [2024], "hzf.us": [2024], "uploads.democrats.org": [4338], "www.private-names.ru": [13148], "*.fyleio.com": [2378], "skype.com": [15003], "robinbarnard.com": [13979], "www.redbooks.ibm.com": [7679], "lambd.as": [2024], "tel.local.ch": [9548], "downloads.cms.gov": [19630], "www.upsploit.com": [17465], "dfblink.info": [2024], "oms.rsb.ru": [14058], "a.amptastic.com": [2024], "maillist.anadolu.edu.tr": [1029], "burden.in": [2024], "postscapes.com": [13029], "scheduler.einsteinathome.org": [5115], "panolacollege.worldcat.org": [18536], "club.alfabank.ru": [849], "www.postaonline.cz": [2981], "ssl8.ovh.net": [12205], "maidstone.firmstep.com": [20109], "lsmc.co": [2024], "cre.im": [2024], "video1.0xdb.org": [10], "doc.mediaconnect.no": [20946], "*.53.com": [5766], "smolensk.biglion.ru": [19375], "www.funker530.com": [6244], "pentestit.ru": [12575], "mm.mtv.com": [2024], "www.ucalgarymag.ca": [17017], "beej.us": [19344], "www.cve.mitre.org": [10497], "preisvergleich.golem.de": [6804], "cuku.us": [2024], "33.mvd.ru": [21055], "dupoux.co": [2024], "flmd.info": [2024], "l.mloclam.in": [2024], "freeflay.ga": [2024], "voronezh.sumtel.ru": [22031], "finalbuilder.com": [20097], "sage.nasa.gov": [10909], "krasnodar.kavkaz-uzel.ru": [20694], "cc.ddcdn.com": [19783], "www.aldeparty.eu": [19134], "hotrill.co": [2024], "3rw.in": [2024], "irlist.microad.jp": [10377], "url.lzrp.xyz": [2024], "archive.4plebs.org": [200], "ccavenue.com": [2548], "apergi.es": [2024], "dwrk.me": [2024], "rp2w.com": [2024], "br.isidewith.com": [20466], "ecly.co": [2024], "soap.q-assets.com": [21551], "blinkenlights.metaebene.me": [10322], "m-anti.tk": [2024], "www.ejabberd.im": [5117], "shadowhawk.co": [2024], "www.coveritlive.com": [3732], "proxyshard.uk": [21525], "auspice.augur.io": [1392], "spic0.51fanli.net": [209], "wiki.t411.io": [15847], "www.strawpoll.me": [15583], "helsingebilpleje.dk": [7310], "*.visitestonia.com": [17865], "git.lede-project.org": [20798], "www.chartsinfrance.net": [3031], "*.findagrave.com": [5826], "phsg.tocco.ch": [16600], "onlyoi.info": [2024], "pingtune.fm": [2024], "hitech.newsru.com": [11388], "dyn.emetriq.de": [18677], "sens.is": [2024], "www.scientificlinux.org": [14448], "*.exposure.co": [5506], "marinellarose.com": [10008], "llyd.me": [2024], "hax.5july.org": [215], "pqnq.co": [2024], "wiki.sos.wa.gov": [14215], "dedra.cz": [4015], "jpfox.fr": [8665], "weld.so": [2024], "cdn1.sbnation.com": [14137], "www.tokyo-tosho.net": [16612], "on.ksgf.com": [2024], "www.cloudconvert.org": [19623], "www.radioshackwireless.com": [13575], "jbir.ch": [2024], "revv-static.rubiconproject.com": [14066], "www.boxoffice.com": [2272], "bburner.co": [2024], "truck.infinum.co": [20526], "lists.gnumonks.org": [6748], "*.facebook-studio.com": [5611], "dson.co": [2024], "services.sccgov.org": [14401], "www.piratebay.site": [21524], "gooni.es": [2024], "mkb.ru": [10512], "bburl.ca": [2024], "git73.rostrud.ru": [21677], "stubhub.com": [15602], "ic.networktimefoundation.org": [11306], "indonesia.bitcoin.co.id": [1992], "*.getcloudapp.com": [9388], "vvect.org": [2024], "hsbc.com.vn": [20432], "www.webmate.io": [18225], "bloo.ie": [2128], "test.findlegalforms.com": [5822], "wmsy.me": [2024], "technovelty.org": [16111], "experts.adelphi.de": [635], "www.kyhwana.org": [9065], "*.apicasystem.com": [1123], "s.wti.com.au": [2024], "chocobo.co": [2024], "machtfaktorerde.zdf.de": [22709], "socrazvitie.ulgov.ru": [22356], "mozdevgroup.com": [10688], "vpage.us": [2024], "www.monkeyguts.com": [10595], "read.worldreader.org": [18555], "login.trialinteractive.com": [22283], "wiki.tfes.org": [16237], "www.forabank.ru": [5994], "photon-science.desy.de": [4386], "photopit.ch": [2024], "paleofuture.gizmodo.com": [6677], "lvgmktg.com": [2024], "www.gentoo-blog.de": [6515], "manage.stripe.com": [15594], "origin.business.upc.ie": [17082], "bc.worldcat.org": [18536], "go.delphian.org": [2024], "nextevol.co": [2024], "guide.discoverhongkong.com": [19847], "better.tg": [2024], "*.cwrap.org": [19747], "b6.aztravel.xyz": [2024], "www.wwte12.com": [18031], "*.tweetriver.com": [10057], "cuiserve.it": [2024], "jptri.be": [2024], "epos.ly": [2024], "l.elnaharda.com": [2024], "www.jujucharms.com": [8684], "postbox-inc.com": [13008], "usajobs.g4s.com": [20195], "css.cdn.audiko.net": [1384], "ck.sendmoments.com": [14644], "tp2.sinaimg.cn": [14910], "just.ly": [2024], "suas.ie": [15618], "*.www.poppysports.com": [12963], "eir.cisco.com": [3165], "*.securepcissl.com": [14571], "smsng.mx": [2024], "eloedge.com": [4915], "s7.sinaimg.cn": [14910], "nelincs.objective.co.uk": [21225], "www.pentestit.ru": [12575], "bedford.firmstep.com": [20109], "go.a5barcom.ml": [2024], "tunnelbear.com": [16904], "solarcity.com": [15179], "seasonste.ps": [2024], "eventbrite.co.uk": [5431], "blog.inspectlet.com": [8176], "operation-cambridge.linux-mips.org": [9428], "redmatrix.me": [13737], "imgd.nxjimg.com": [11630], "transit.wtf": [2024], "throb.gizmodo.com": [6677], "www.admin.swish.mycelium.com": [21063], "www.scrypt.cc": [14487], "slate.me": [2024], "l.rvnx.org": [2024], "*.wikicdn.com": [16182], "curatdtrvl.co": [2024], "uxc.io": [2024], "www.insurance.asiapacific.hsbc.com": [7090], "images.dice.com": [4440], "itssb.web.cern.ch": [2588], "s.tasmo.de": [2024], "gorickshaw.com": [6777], "summercollegeacademy.stanford.edu": [15448], "castle.inforos.ru": [20532], "www.fiannafail.ie": [5754], "c-ares.haxx.se": [20348], "midlothian-consult.objective.co.uk": [21225], "uit.stanford.edu": [15448], "vean.tk": [2024], "www.rusi.org": [13541], "subscene.com": [22024], "www.investorflow.com": [14862], "expapi.oscar.aol.com": [380], "news.browser.miui.com": [9765], "dc.3.cn": [135], "uc.mvd.ru": [21055], "brett.im": [2024], "gestaoconsumos.edp.pt": [4888], "ulib.co": [2024], "svn.keksbude.net": [8857], "www1.jobs.gov.hk": [20647], "s.tostring.it": [2024], "gomez.com": [3547], "secure.sipsolutions.net": [14184], "laiwang.com": [20771], "oas.theguardian.com": [16364], "voyagin.sslcs.cdngc.net": [19533], "i2.pixiv.net": [12778], "tjc4.com": [2024], "blu.is.berkeley.edu": [17329], "www.aimatch.com": [785], "blog.onlive.com": [11850], "pub.dartlang.org": [4150], "engineering.wustl.edu": [18089], "liuzhou.1688.com": [51], "fashionwalker.com": [5657], "www.adobetag.com": [674], "buzz.gq": [2024], "virg.re": [2024], "connect.just-eat.co.uk": [20671], "go.grep.sr": [2024], "inforesist.org": [20531], "buzz.gt": [2024], "edge1.digicert.com": [4461], "spcinc.co": [2024], "www.stefan-betz.net": [15529], "attendesource.com": [1364], "myfinances.nottingham.ac.uk": [11567], "uniquefiler.com": [17283], "admin.nativo.net": [11130], "elixr.cc": [2024], "dogwheelchairscenter.com": [4624], "*.superforum.org": [14698], "pokecon.info": [2024], "gotvape.com": [6837], "piraadipartei.ee": [21411], "c.mmntv.info": [2024], "dbm.media": [2024], "setup.boldchat.com": [2203], "abg.bz": [2024], "tt.glo.co": [2024], "66.mvd.ru": [21055], "dixo.me": [2024], "sandbox.simplewebrtc.com": [21832], "www.astro.cardiff.ac.uk": [2847], "*.portalhelp.hosting.ru.nl": [13570], "programs.nra.org": [21177], "www.klops.ru": [20735], "nabers.com": [11047], "as.max.as": [2024], "badafair.co.uk": [2024], "www.office.vutbr.cz": [17609], "na2.brightidea.com": [2347], "governance.georgetown.edu": [6531], "www.ecops.org.uk": [19951], "nescafegold.afisha.ru": [19107], "dyode.dynamicyield.com": [4822], "specialitytraining.hee.nhs.uk": [10953], "about.9gag.com": [252], "vodafone.co.nz": [17899], "origin.mt-cdn.net": [9812], "sburris.me": [2024], "bit.dotarai.com": [2024], "esmuy.cool": [2024], "about.usc.edu": [17366], "*.sdsu.edu": [14153], "jshi.me": [2024], "sorbetto.tocco.ch": [16600], "knowledgeportal.pageuppeople.com": [21338], "www.projecteuclid.org": [13184], "mceps.com": [2024], "miljodata.slu.se": [14195], "premiumlinkgenerator.com": [21487], "99xt.co": [2024], "eshop.kensington.com": [8866], "zuonline.newsnetz.ch": [11371], "www.defenseindustrydaily.com": [4293], "en.ony.ru": [21262], "vtkr.co": [2024], "hugg-link.com": [2024], "www.orbitalatk.com": [12127], "www.xap.com": [18593], "brdr.us": [2024], "wiki.grml.org": [6359], "glyph.im": [6736], "zpos.it": [2024], "outmkt.com": [2024], "avallalat.aldi.hu": [357], "*.vitaminshoppe.com": [17881], "ifyousee.it": [2024], "gunn.to": [2024], "youtube.freifunk.net": [6170], "ewmag.ca": [2024], "oascentral.datasphere.com": [4179], "www.findnsave.com": [5820], "lpo.org.uk": [9110], "retriever-info.com": [13883], "redmine.unizar.es": [17441], "cdn3.sure-assist.com": [15709], "www2.dreambox.com": [19895], "skur.io": [2024], "zeno.im": [2024], "go.onekarlo.com": [2024], "dashboard.nvcc.edu": [11627], "zvuki.sport-express.ru": [21941], "play-best.96.lt": [2024], "ms8.co": [2024], "fieldguide.gizmodo.com": [6677], "spot.spoted.com": [2024], "humanrightsdefensecenter.org": [7614], "lm.facebook.com": [5609], "bizchannel.cimb.com.sg": [2619], "dot.844196.com": [2024], "www.stpeter.im": [15571], "www.mychatagent.com": [8707], "yaupspe.com": [5216], "*.bytelove.us": [2504], "www.peterbroderick.com": [12620], "coup-ins.com": [2024], "www.coloradonocall.com": [3441], "benbus.ch": [2024], "app.getpostman.com": [20240], "schulbuchportal.vgwort.de": [17568], "www.alternativelibertaire.org": [931], "clop.be": [2024], "cinchouse.com": [3140], "www.smuxi.org": [15080], "nielsenknow.pro": [2024], "gerd.fm": [2024], "trocasverdes.ourproject.org": [21314], "piwik.tutanota.de": [16923], "ut12.xhcdn.com": [18605], "on.mnp.ro": [2024], "www.abc.xyz": [461], "pnx.me": [2024], "developer.amazon.com": [960], "playframework.com": [12835], "m11.baidu.com": [1641], "www.goip.de": [6794], "heli.valtiolle.fi": [17622], "extractives.companieshouse.gov.uk": [3509], "o.ju.taobao.com": [16015], "www.451unavailable.org": [185], "l.toastin.space": [2024], "media.dyson.com": [4831], "gluca.us": [2024], "member1.taobao.com": [16015], "luiz.ml": [2024], "go.sully.it": [2024], "www.newlook.com": [11348], "release.theplatform.com": [16308], "koo.gl": [2024], "a3.itc.cn": [8401], "bagnet.org": [1638], "nantuck.it": [2024], "join1.stoloto.ru": [21996], "mass.is": [2024], "manage-itx5.smartadserver.com": [15049], "static.jdpay.com": [8441], "research.illinois.edu": [17346], "cdn.migros.ch": [10417], "www.amazingweb.co": [957], "kindling.la": [2024], "banking.co.at": [1673], "media.don.is": [2024], "*.fuskator.com": [6257], "capnproto.org": [2835], "mngmvnt.com": [2024], "www.baycitizen.org": [1728], "www.botaanikaaed.ut.ee": [17148], "marketplace.ucsd.edu": [17012], "penfoldgolf.com": [12566], "jjug.co": [2024], "w.jerw.in": [2024], "www.tradeadexchange.com": [22264], "home-insurance.asda.com": [407], "aldi.be": [357], "jred.co": [2024], "xact.so": [2024], "homegrwn.com": [2024], "www.wings.buffalo.edu": [17382], "stryhk.co": [2024], "discovery.unizar.es": [17441], "duiven.nl": [11172], "aan.af": [2024], "*.aereo.com": [734], "knlg.net": [2024], "bgbe.at": [2024], "quack.cf": [2024], "go.fouad.co": [2024], "minerva.usc.es": [17506], "b.newho.pe": [2024], "policyreview.info": [12911], "assets.noisey.com": [11497], "found.cern.ch": [2588], "*.brinkster.com": [2351], "wiki.sc2mapster.com": [3927], "www.best-pariuri-online.com": [7736], "invincealabs.com": [20558], "www.claimconnect.net": [4886], "statictest.fraudmetrix.cn": [20151], "www.falkvinge.net": [5631], "acmc.mn": [2024], "mdot.uw.edu": [17156], "twcinc.link": [2024], "cit.cornell.edu": [3676], "angie.li": [2024], "manage.dediserve.com": [4280], "stra.co": [2024], "maglib.boum.org": [2261], "franciskim.co": [6079], "www.centili.com": [2958], "xdk.intel.com": [8211], "www.activemelody.com": [553], "heatmap.gemius.com": [6500], "banksup.com": [2024], "xakep.ru": [18628], "ecte.ch": [2024], "aei-u.com": [2024], "m3.baidu.com": [1641], "partner.just-eat.co.uk": [20671], "tr-contrainfo.espiv.net": [20021], "apps.cardiff.gov.uk": [19509], "file.kelleybluebookimages.com": [8859], "eseries.pajustice.org": [12572], "lsdfe.net": [2024], "aldera.co": [2024], "widgets.pinterest.com": [12731], "hazing.cornell.edu": [3676], "filt.co": [2024], "rtsr.ch": [21957], "vendorexpress.amazon.co.jp": [19169], "advertising.bostonglobemedia.com": [2254], "ndandp.it": [2024], "mps.cnbc.com": [2645], "templates.conferencemanager.dk": [19665], "kh.hu": [8739], "www.ticketea.com": [16493], "www.central-lincs.org.uk": [19541], "obsv.co": [2024], "admin.emojione.com": [5202], "errata.univention.de": [17315], "27.rkn.gov.ru": [13971], "officevi.be": [2024], "studyu4u.com": [2024], "dunc.in": [2024], "ref.xlww.net": [2024], "nzfx.us": [2024], "go.ipvm.com": [2024], "judicialwatch.org": [8677], "g-b.co": [2024], "*.net-results.com": [11218], "evlbvr.us": [2024], "login.incites.thomsonreuters.com": [16456], "www.css.gov.au": [2693], "*.libri.de": [9333], "forums.robertsspaceindustries.com": [13978], "sf.taobao.com": [16015], "www.firstthings.com": [20112], "moodle.com": [10613], "*.3min.de": [173], "*.otsuka-shokai.co.jp": [12167], "mdra.me": [2024], "www.washingtonpost.com": [18086], "go.bunchball.com": [2438], "kejia.jd.com": [8434], "cus.muhrid.com": [2024], "*.dfat.gov.au": [4355], "j-ho.lt": [2024], "kirklees.connecttosupport.org": [19670], "www.infousa.com": [8112], "noip.com": [11482], "pc2.mypreferences.com": [10822], "www.macmillandictionary.com": [9847], "pwow.me": [2024], "www.calastone.com": [19492], "rbuesd.illuminateed.com": [20494], "www.fairssl.se": [5620], "bundesradio.de": [10322], "themis.asu.edu": [1221], "fw.sg": [2024], "s12.sinaimg.cn": [14910], "analytics.profitbricks.com": [13176], "vll.ge": [2024], "www.metallica.com": [10332], "medm.us": [2024], "g.obijan.com": [2024], "static.domainsigma.com": [4649], "shop.msu.edu": [21040], "longre.biz": [2024], "*.moovweb.com": [10624], "vapr.me": [2024], "pass.kinopoisk.ru": [20723], "minohubs.com": [10468], "cltspok.es": [2024], "www.charitynavigator.org": [3015], "molecularneurodegeneration.biomedcentral.com": [1931], "goff.me": [2024], "m.hotukdeals.com": [7556], "www.webmailer.hosteurope.de": [7524], "www.atomicobject.com": [1354], "shop.vhf.de": [22456], "lgrd.co": [2024], "on.rizzarr.com": [2024], "www.viglink.com": [17797], "l.nexse.com": [2024], "support.academiccommons.columbia.edu": [3449], "ahmi.co": [2024], "lexmachina.com": [9294], "k7lty.com": [2024], "scarborough.greenparty.org.uk": [6908], "pix.bit.ly": [2023], "cavi.xyz": [2024], "je-s.rcuk.ac.uk": [13466], "wog.ch": [18541], "lbre-apps.stanford.edu": [15448], "basicseo.co": [2024], "cdn.pardot.com": [12428], "linuxplumbersconf.net": [9411], "www.sebijk.com": [7473], "fixcongress.us": [2024], "paxtonrecord.net": [12497], "loisirs.cff.ch": [15756], "kursk.rt.ru": [13529], "dropship.amazon.de": [19174], "travel.mdm.ru": [10143], "r.abhis.ws": [2024], "syn1.co": [2024], "fnhw.us": [2024], "wfs.oracle.com": [12116], "www.qdaily.com": [21554], "www.whatculture.com": [22574], "*.nibcdirect.nl": [10956], "www.codeweavers.com": [3351], "www.mims.com.tw": [9756], "orkut.co.in": [12145], "speakerinvitation.state.gov": [17146], "app.appsflyer.com": [1162], "live.europaplus.ru": [20034], "www.tuv.com": [3626], "modernlivingmedia.com": [17628], "www.leisurebookings.birmingham.gov.uk": [19380], "tikl.io": [2024], "smtp.usainteanne.ca": [22404], "www.dustin.se": [4804], "db-wallet.bitcoinchain.com": [19387], "i03.c.aliimg.com": [861], "eastbayteamservices.com": [5009], "oauthwiki.oauth.net": [11645], "prisonedata.ssa.gov": [21959], "a.jorgenova.cl": [2024], "4sq.com": [2024], "on.v4s.it": [2024], "togethertrust.org.uk": [22228], "adm.leeds.ac.uk": [17403], "help-fr-fr.nike.com": [11440], "www.bigconcerts.co.za": [1886], "*.e-fibank.bg": [5755], "hub.to": [2024], "*.heckrath.net": [7279], "barnaul.beeline.ru": [1778], "sli-systems.com": [14192], "blogi.piraattipuolue.fi": [21412], "evox.us": [2024], "www.junodownload.com": [8700], "netsekure.org": [11290], "peabra.in": [2024], "virtualedge.com": [329], "my.uprr.com": [22392], "nvon.tk": [2024], "gwbweb.wustl.edu": [18089], "arba.unizar.es": [17441], "frozencpu.com": [6210], "novovoronezh.startsmile.ru": [21980], "uclouvain.be": [17320], "labo.ly": [2024], "weather.mercurynews.com": [10173], "ads.stickyadstv.com": [15542], "bnfr.me": [2024], "mcpe.cu.cc": [2024], "bank.simple.com": [14884], "computersnyou.com": [3542], "ctlog.wosign.com": [18483], "reef.wwf.ch": [18028], "herefordshire.greenparty.org.uk": [6908], "blog.adsnative.com": [19091], "r24820217.sync.app.asana.com": [1265], "janhendrikpeters.de": [8520], "ivi-f21-vcp.cdnvideo.ru": [19536], "nab.org": [10904], "dearmummyblog.com": [19793], "dcdb.qcloud.com": [13346], "frtextmessaging.capitalone.com": [2831], "fobos.de": [5951], "*.seafile-server.de": [14497], "lati.us": [2024], "2.standaardcdn.be": [15444], "i.oba.bg": [2024], "bravelc.com": [2024], "belgorod.beeline.ru": [1778], "git.gnupg.org": [6744], "www.datapipe.cn": [4202], "sk7.xyz": [2024], "lead.pm": [2024], "cdn.x-lift.jp": [18587], "ssp-csync.smartadserver.com": [15049], "lvntrns.it": [2024], "www.cz.o2.com": [16141], "orec.umontpellier.fr": [22365], "*.dmcloud.net": [4119], "fr.foursquare.com": [6061], "arch.usc.edu": [17366], "www.lifesaving.com": [9349], "recrut.in": [2024], "www.libvirt.org": [9338], "tnn24.tv": [2024], "fslr.co": [2024], "static.discojuice.org": [4530], "addons.xt-commerce.com": [18687], "members.girlsoutwest.com": [6648], "tiny.cc": [16554], "colecciones.elpais.com": [5126], "vnz.anh18.net": [2024], "kdhck.com": [2024], "www.ascenderfonts.com": [1269], "workforce.oracle.com": [12116], "go.rawai3.com": [2024], "thepiratebay.bypassed.club": [21524], "stat.forceline.net": [20134], "novrs.citilink.ru": [19594], "metrics.penton.com": [12577], "cpf.fit": [2024], "blhill.co": [2024], "leap.neustar.biz": [11320], "us-cert.gov": [17501], "openeffect.ca": [21272], "zillowstatic.com": [18965], "sclpt.co": [2024], "dm.realtimeregister.com": [13693], "bt.menacela.com": [2024], "wakefield.objective.co.uk": [21225], "go.hew.com": [2024], "foreconshist.oxfordjournals.org": [12222], "conformal.com": [3575], "ppfas.co": [2024], "www.control.tierra.net": [16510], "www.dnscrypt.eu": [4053], "p.cpx.to": [19709], "go.enterta.ru": [2024], "sfgra.ph": [2024], "www.contextweb.com": [3618], "fncy.gr": [2024], "c.jcw.me": [2024], "s.poly4.fr": [2024], "mk.permkrai.ru": [21390], "jp.mcafee.com": [10129], "www.ffprofile.com": [5751], "smtp.spnet.ru": [21939], "amus.co": [2024], "my.sky.com": [14989], "netindex.com": [11250], "cdn.viaduct.io": [17749], "plotcon.plot.ly": [12860], "mnrasl.oxfordjournals.org": [12222], "*.ix.nflxvideo.net": [11269], "nico.cc": [2024], "shop.ccs.com": [2565], "fitforgood.fitbit.com": [5867], "browser.yandex.ua": [18747], "paxvapor.com": [21362], "twou.co": [2024], "media.pocketgamer.biz": [12880], "mail.comscore.com": [3454], "clientupdate-v6-mac.cursecdn.com": [3927], "www.appear.in": [1145], "paul.my": [2024], "notalwaysright.com": [21164], "go.illinois.edu": [17346], "kdp.amazon.com": [960], "audio.rambler.ru": [13600], "vip.de": [17573], "instalacja.tms.pl": [22224], "www.untangle.com": [17454], "img1.glassdoor.com.au": [20261], "www.schaafpc.com": [14408], "download.taobaocdn.com": [16016], "signup.active24.nl": [19065], "b1.de": [2024], "segger.com": [14619], "fir.mx": [2024], "campfireunion.com": [2795], "eli.bz": [2024], "*.younited.com": [18810], "www.waffle.io": [18038], "ostermiller.org": [21301], "familie.bw.aok.de": [376], "blog.kapsobor.de": [8807], "www.rem.co": [13818], "digitalcreations.no": [4476], "ti.me.uk": [2024], "ogmovie.me": [2024], "prodc.in": [2024], "uitcomms.stanford.edu": [15448], "kshr.us": [2024], "conference.vinilox.eu": [17809], "eu-st.xhcdn.com": [18605], "b.v0lu.me": [2024], "muleman.co": [2024], "getpebble.com": [12541], "web-cdn.ttvnw.net": [16961], "statements.css.gov.au": [2693], "*.minavardkontakter.se": [10848], "api.elsevier.com": [5177], "happymus.es": [2024], "www.memrise.com": [10273], "my.firstvds.ru": [5855], "archdg.st": [2024], "ariporad.link": [2024], "www.madadsmedia.com": [20902], "www.err.ee": [5358], "*.adtarget.me": [690], "smrt.in": [2024], "smrt.io": [2024], "*.modernlivingmedia.com": [17628], "dhsspsni.gov.uk": [19828], "ptanews.co": [2024], "jobp.ag": [2024], "www.crypto.is": [3849], "api.demo.bitmask.net": [2027], "newsound.refresher.cz": [13781], "tracks.unhcr.org": [17063], "nubits.com": [11600], "w.agarciatv.com": [2024], "hr-s.co.jp": [7087], "www.getcloak.com": [6553], "kati.li": [2024], "xper.co": [2024], "wsd.nlm.nih.gov": [11090], "m.uece.br": [2024], "poppyuk.com": [12964], "data9.top": [2024], "fallenberg.eu": [2024], "n.ideia.co": [2024], "www.gionn.net": [6645], "www.airasiamegastore.com": [789], "hmapps.net": [7443], "frantv.us": [2024], "media.progress.com": [13178], "cllb.link": [2024], "olb2.nationet.com": [11129], "zerodayinitiative.com": [18943], "schuilenburg.org": [14430], "community.infoblox.com": [8108], "cler.ch": [3647], "vryjn.it": [2024], "i.scrolly.nl": [2024], "fossil-scm.org": [6048], "2011.pcto.ca": [2024], "id.foursquare.com": [6061], "go.huge.io": [2024], "j25.eu": [2024], "cga.ct.gov": [2695], "go.infinidy.ca": [2024], "studrep.co": [2024], "vm.mts.ru": [21042], "www.hometheaterreview.com": [7483], "www.evermap.com": [5436], "t.webtracker.jp": [18258], "nextco.nf": [2024], "decm.in": [2024], "lmgr.ph": [2024], "www.geekisp.com": [6474], "imagefile2.51fanli.net": [209], "brenau.worldcat.org": [18536], "cptv.at": [2024], "hosting.de.adjug.com": [580], "srfc.bz": [2024], "irongeek.com": [20582], "a14electronics.com": [262], "www.mims.com": [9756], "dl.aircrack-ng.org": [794], "hgapp.co": [2024], "url.ipqb.org": [2024], "visual-paradigm.com": [17869], "mcollier.net": [2024], "gw2.freifunk-gera-greiz.de": [6171], "www.dogzonline.com.au": [4627], "sktny.co": [2024], "fcom.us.es": [17502], "sls14.co": [2024], "www.legacy.vg": [9243], "obses.se": [2024], "af.alicdn.com": [853], "impactstory.org": [8017], "assets.slid.es": [15025], "news.am": [21124], "rheinland24.info": [13917], "arstechnica.co.uk": [19237], "base.ac": [2024], "childcare.bury.gov.uk": [19476], "nxtrd.xyz": [2024], "*.patreon.com": [12490], "sourcefoundry.org": [21906], "victo.rs": [2024], "cwei.ch": [2024], "ide.st": [2024], "slovakrail.sk": [15038], "v.vungle.com": [17970], "i.sctechie.com": [2024], "www.illuminatinginteriors.cca.edu": [2547], "sharepoint.webtrends.com": [18264], "todo.ly": [16602], "nize.cz": [2024], "upload.proxer.me": [13220], "at.matoski.com": [2024], "en-hr.dict.cc": [4442], "login.citrixonline.com": [3181], "clubs.union.rpi.edu": [13832], "playosmo.com": [12158], "my.siteimprove.com": [14947], "reciperepr.com": [2024], "epckrs.link": [2024], "deb.globaleaks.org": [6694], "www22.anthem.com": [19206], "mywebsite.1and1.com": [69], "www.sweflix.to": [15749], "l.tyneo.net": [2024], "greentechmedia.com": [6921], "piwik.dfo.no": [19824], "colelibrary.worldcat.org": [18536], "social.unian.net": [22369], "musketeers.9tv.co.il": [257], "tasteb.gs": [2024], "paste.hska.info": [20437], "www.chronicle.com": [3127], "ktm.ppl.cz": [12313], "gin.collabora.co.uk": [3418], "we1b3.play-asia.com": [12828], "boau.link": [2024], "mcklr.me": [2024], "eforms.state.gov": [17146], "iacademy.oracle.com": [12116], "www.zybang.com": [22732], "*.forensicinstitute.nl": [6005], "emjb.us": [2024], "lk.yashsoni.com": [2024], "clg.gg": [2024], "stlo.es": [2024], "fclblog.com": [2024], "woo.kz": [2024], "joylf.us": [2024], "account.aol.com": [380], "link.odysii.us": [2024], "syj.tw": [2024], "wiki.thm.de": [15876], "s25.postimg.org": [13024], "www.datadirect.com": [4172], "yabs.yandex.ua": [18747], "gmplib.org": [6328], "bookorget.info": [2024], "jayla.co": [2024], "www.surbitcoin.com": [15708], "d35.nl": [2024], "rick.ly": [2024], "emapawards.com": [5187], "www.multibit.org": [10732], "dyn.com": [4814], "seo.com": [14161], "shortu.me": [2024], "live.sportbox.ru": [21942], "*.scopus.com": [14453], "intsig.com": [20556], "www40.polyu.edu.hk": [12936], "analytics.sylvancompany.com": [15779], "a.sharshi.com": [2024], "cs9.myzuka.fm": [21079], "stk.uio.no": [17414], "rstr.me": [2024], "totsleg.it": [2024], "support.socialblade.com": [15136], "ganglandnews.com": [6433], "nvy.gd": [2024], "esc.re": [2024], "bbmusic.top": [2024], "aedenny.us": [2024], "eservices.solihull.gov.uk": [15192], "www.alertlogic.com": [838], "identrustssl.com": [7937], "b.atverskapi.delfi.lv": [19800], "developers.google.com": [6818], "support.cloud.engineyard.com": [5255], "onlineccredemption.hdfcbank.com": [7249], "widget.intercom.io": [8241], "r2w.co": [2024], "my.rit.edu": [13493], "exiledonline.com": [4989], "democratic.lincoln.gov.uk": [9378], "rbeard.co": [2024], "ballicom.co.uk": [1654], "schotty.com": [21745], "subscription.economist.com": [5052], "*.adextent.com": [576], "admissions.wustl.edu": [18089], "jos.jd.com": [8436], "tofour.net": [16596], "nmrk.it": [2024], "s.40-02.ru": [2024], "sip.2kgames.com": [117], "zh-tw.osdn.net": [21298], "billing.odessa.tv": [21229], "kaspersky-cyberstat.com": [8819], "sigep.utm.edu": [17426], "www.aetolia.com": [19101], "gudongchun.1688.com": [51], "site.kaltura.com": [8790], "content.ott.sky.com": [14989], "1bst.pw": [2024], "meetrics.net": [10230], "ww1.smartadserver.com": [15049], "webassetsh.scea.com": [14148], "*.fox-toolkit.net": [5579], "graphite.tocco.ch": [16600], "dgi.to": [2024], "www.usertags.com": [17167], "cms.sydney.edu.au": [22063], "mlz.me": [2024], "www.followmail.com": [20130], "go.peter.bio": [2024], "s.bbybike.com": [2024], "www.bgentry.io": [1864], "*.www.cta-observatory.org": [3065], "a.s.kqed.net": [8764], "www.amoena.com": [1023], "m.chetv.ru": [19577], "lnk.ayrs.co": [2024], "codetree.com": [19639], "vsct.us": [2024], "prf.hn": [12599], "ruby-doc.org": [14072], "www.snacktv.de": [15086], "melpa.org": [10259], "tutor.104.com.tw": [18], "2.hirecurt.info": [2024], "bangordailynews.com": [1667], "qis3.hs-karlsruhe.de": [7587], "b3.io": [2024], "meethk.net": [2024], "develop.untangle.com": [17454], "blue.mmo-champion.com": [3927], "wera.cc": [2024], "upperbrand.link": [2024], "watch-series.ml": [2024], "kirishi.startsmile.ru": [21980], "philrob.co.uk": [2024], "mansfield-consult.objective.co.uk": [21225], "giroloyal.web.de": [18146], "ski.do": [2024], "blastfra.me": [2024], "www.zeedpic69.com": [18908], "s.imgbox.com": [7997], "www.webcompat.com": [18207], "new.kartoteka.ru": [20689], "www.hertz247.de": [7345], "ble.de": [19406], "tll.mit.edu": [9763], "huge.is": [2024], "elast.co": [2024], "ox-data.adsrvr.org": [688], "link.mguvla.net": [2024], "astronauts.nasa.gov": [10909], "urban.re": [2024], "blog.selectricity.org": [14627], "gnrcty.org": [2024], "yel.onl": [2024], "forum.sublimetext.com": [15626], "photos1.blogger.com": [2122], "share.dp2.co": [2024], "ipwnage.com": [7810], "nsk.oldi.ru": [21240], "guag.chorley.gov.uk": [19586], "sdmetal.us": [2024], "www.milbencheck.at": [10427], "3har.es": [2024], "toy.tl": [2024], "www.perform.illinois.edu": [17346], "www.domaindiscount24.com": [19869], "ccrjustice.org": [2564], "*.envato-static.com": [5293], "www.html-online.com": [20438], "cdn.vluki.ru": [22478], "mirror.bitmissile.com": [1964], "5vf4i183j7rpwruywq7oipwpud7g7e2nz352pqwp.ipleak.net": [20571], "blog.linuxmint.com": [20851], "gwusd.illuminateed.com": [20494], "ekaterinburg.biglion.ru": [19375], "convox.com": [3634], "www.strikingly.com": [15592], "cdn.adexcite.com": [574], "www.torlock.com": [16640], "app.napster.com": [21084], "ageuk.org.uk": [19109], "l9pt.com": [2024], "psarips.com": [12328], "widget.kassa.rambler.ru": [13600], "zmr.co": [2024], "a.reezaptv.de": [2024], "debt.webmoney.ru": [18173], "www.arts.leeds.ac.uk": [17403], "appliedcr.biomedcentral.com": [1931], "forms.richmond.gov.uk": [21649], "www.rcm.org.uk": [21601], "belgorod.rt.ru": [13529], "www.obi.cz": [21222], "geldmann.se": [2024], "aiiexpres.com": [2024], "pingjs.qq.com": [13329], "www.apan.net": [387], "www.phonostar.de": [21399], "jni.la": [2024], "tee.olytee.com": [2024], "www.alimama.com": [862], "www.obi.ch": [21222], "coxtn.net": [2024], "advertising.amazon.it": [19178], "eurosport.metro-set.ru": [20971], "www.teacherspensions.co.uk": [22105], "digitaldoor.subscriberconcierge.com": [10020], "jimm.biz": [2024], "wmt.cl": [2024], "www.btobonline.com": [3755], "www.alternatifbilisim.org": [930], "www.intelfreepress.com": [8212], "u.zackboe.co": [2024], "i8.go2yd.com": [20274], "adnet.ph": [2024], "www.me.bme.hu": [1556], "j-lo.net": [2024], "*.ijreview.com": [7750], "trans.opendata.ch": [21270], "india.alibaba.com": [857], "trafikozeti.yandex.com.tr": [18740], "odnoklassniki.ru": [11764], "forge.univention.org": [17315], "cos.h-cdn.co": [7024], "ja.osdn.net": [21298], "york.greenparty.org.uk": [6908], "www.lyngsat.com": [20897], "tps40.doubleverify.com": [4703], "smstaging.stanford.edu": [15448], "ywcct.oxfordjournals.org": [12222], "www.ea.financial-net.com": [20100], "kuiken.co": [21522], "1.jir.af": [2024], "maps-secure.stanford.edu": [15448], "audemarspiguet.com": [1375], "www.maldives.hsbc.com": [7090], "f.mgame.netease.com": [11228], "santafenewmexican.com": [16281], "img-carrefour.mncdn.com": [10516], "o.ooo.io": [2024], "rr5.us": [2024], "mobile.flibusta.is": [5895], "s32.postimg.io": [13024], "epnbc-consult.objective.co.uk": [21225], "g.taobao.com": [16015], "cdn2.smartadserver.com": [15049], "www.udistrital.edu.co": [17195], "ibatull.in": [2024], "classic.storminternet.co.uk": [15565], "www.pandoblog.com": [12388], "forum.salixos.org": [21722], "staging.blog.gigya.com": [6641], "nelly.com": [11179], "lnk.glwdcs.tv": [2024], "geoced.smartadserver.com": [15049], "dkwa.co": [2024], "www.lacrossealerts.com": [9135], "s58.cnzz.com": [3328], "schule.sachsen.de": [14279], "api.taobao.com": [16015], "i.lvme.me": [9504], "extpln.co": [2024], "zenmate.hu": [18917], "hissjournal.biomedcentral.com": [1931], "www.nczonline.net": [21098], "parse.com": [12445], "preview.nobelprize.org": [21147], "community.offerpop.com": [11776], "design-live.eu": [2024], "syntra.nu": [2024], "pc1.gtimg.com": [6975], "burnstrauma.biomedcentral.com": [1931], "console.run.pivotal.io": [12765], "z9.sinaimg.cn": [14910], "obchody.atlas.cz": [1346], "aisle.pe": [2024], "passport.yeah.net": [18757], "ciuvo.com": [3201], "brstyl.es": [2024], "dhits.co": [2024], "89.mvd.ru": [21055], "up.risi.ng": [2024], "dbs.breitbandmessung.de": [2319], "www.googleapis.com": [6823], "m.zv.imhd.sk": [8004], "kicked.to": [2024], "www.xn--bernina-zrich-4ob.ch": [1827], "jira.calacademy.org": [2746], "bargainmoose.ca": [19315], "www.newtonew.com": [21132], "prokuror.fbk.info": [5691], "aprendizaje.internetessentials.com": [20553], "rsr.me": [2024], "tstrm.li": [2024], "velmedia.net": [17686], "onfaith.co": [2024], "irantu.be": [2024], "www.spdbccc.com.cn": [21926], "frnkwrrn.com": [2024], "image2.sina.com.cn": [14904], "www.clck.ru": [19607], "*.grenet.fr": [6924], "americalatina.adelphi.de": [635], "nl.mk": [2024], "sdetc.co": [2024], "dplusg.co": [2024], "www.plays.tv": [12847], "lnk.brandner.at": [2024], "www.vhs-lu.de": [22459], "static5.businessinsider.com": [2471], "indieweb.org": [8076], "news.constantcontact.com": [3594], "ualacademico.ual.es": [17162], "blsp.lt": [2024], "images1.variety.com": [17656], "m.srad.jp": [21956], "git62.rostrud.ru": [21677], "img13.360buyimg.com": [148], "green.ch": [20305], "ja.libreoffice.org": [9327], "auto.yandex.by": [18739], "hostoople.com": [7546, 7547], "url.adcwa.de": [2024], "frch.in": [2024], "conrey.me": [2024], "osvehicle.com": [21305], "*.maxymiser.com": [10111], "www.dcos.io": [19780], "sbss-api.kyivstar.ua": [9067], "shervs.me": [2024], "www.one2buy.com": [11866], "m.saturn.de": [21736], "autolink.me": [2024], "stw.re": [2024], "zenmate.com.ar": [18917], "www.square.com": [15396], "xr.lc": [2024], "lband.co": [2024], "darcs.debian.org": [4263], "kprf.ru": [20751], "s.topics.nl": [2024], "310ei.space": [2024], "invest.ec": [2024], "tklf.me": [2024], "www.hplusdigitalseries.com": [7084], "w5.ab.ust.hk": [22412], "markbillingham.com": [20926], "sfgrr.com": [2024], "ccis.co": [2024], "kvm1.friday.ru": [20175], "yaroslavl.biglion.ru": [19375], "www.mobilepki.org": [10540], "famousdav.es": [2024], "vtb24.ru": [22512], "psc.press": [2024], "www.arris.com": [1239], "alfredxing.com": [19136], "media.uic.edu": [17321], "levoleague-wordpress.s3.amazonaws.com": [9290], "printserver.ad.arch.hku.hk": [20387], "wltr.men": [2024], "blogjp.ashleymadison.com": [1277], "www.ic3.gov": [17103], "secure.bluebird.com": [2159], "gigpl.ug": [2024], "ansa.it": [1092], "howz.to": [2024], "link2waze.com": [2024], "static.malwarebytes.org": [9941], "www.tripadvisor.com": [16817], "3logic.no": [2024], "moviefox.ga": [2024], "perm.biglion.ru": [19375], "business.quickline.ch": [21566], "www.superfast-openreach.co.uk": [15694], "bg.4.boardgamearena.com": [2182], "l.snug.ug": [2024], "pay.alibaba-inc.com": [19139], "go.janlay.com": [2024], "insdu.de": [2024], "sct.cat": [2024], "spcache.microsoft.com": [10396], "www.deis.com": [4303], "towerproject.blog.lib.cam.ac.uk": [17332], "www.newscientist.com": [11338], "annekle.in": [2024], "i.fesj.fr": [2024], "s.bemit.eu": [2024], "pet-portal.eu": [12270], "www.m-fanshop.ch": [9698], "classiccatalogue.essex.gov.uk": [5354], "clinicalhypertension.biomedcentral.com": [1931], "go.shft.ru": [2024], "c2dy.com": [2024], "muji.lu": [2024], "www.anskaffelser.no": [19205], "nrel.gov": [11095], "go.amirsp.com": [2024], "url.anadolu.edu.tr": [1029], "torymart.in": [2024], "gcoma.me": [2024], "widget.aggregage.com": [19110], "forum.qt.io": [13365], "zola.cf": [2024], "lerelais.org": [9205], "a.rat.ro": [2024], "sims.cr-an.es": [2024], "twthr.ee": [2024], "imemories.us": [2024], "www.herdprotect.com": [7323], "buzzfeed.com": [2489], "rtb.techdirt.com": [16091], "www.seetickets.com": [14609], "isom.ws": [2024], "perfectmoney.com": [12595], "saturey.es": [2024], "www.cooley.com": [19681], "genesis-technologies.com": [6512], "www.rubenerd.com": [14065], "domreg.flirble.org": [16267], "www.acrylicwifi.com": [540], "www.personaldemocracy.com": [12612], "rsty.gr": [2024], "nova.mediatemple.net": [10177], "ntrs.nasa.gov": [17107], "priceza.com": [13103], "mnmdl.engineering.osu.edu": [11797], "reviews.llvm.org": [9103], "www.justice.gov.uk": [10465], "wzdlz.us": [2024], "htz.io": [2024], "jackimaging.com": [8492], "1823.gov.hk": [56], "mobile.staticlocal.ch": [9548], "gogob.us": [2024], "smtulsa.co": [2024], "upi.com": [17086], "pastri.es": [2024], "r.hustleisep.fr": [2024], "nancy.red": [2024], "www.itsoft.ru": [20607], "mycollege.sunybroome.edu": [2382], "live-ssl.cdn.spongecell.com": [21940], "it-tv.org": [20597], "www.hailavenger.com": [7154], "transip.de": [22273], "eds.com": [7379], "www.enomcentral.com": [4925], "go-g.co": [2024], "www.uclahealth.org": [17008], "de.usembassy.gov": [22406], "ctlink.me": [2024], "9gwc-kbhkort.kk.dk": [8748], "studentrecord.aber.ac.uk": [473], "www.ul.se": [22355], "creative.aggregateknowledge.com": [770], "f45seaforth.com": [2024], "linotype.com": [9402], "ridus.ru": [21651], "easypress.ca": [5021], "postaffiliatenetwork.com": [13000], "softmatter.georgetown.edu": [6531], "mdaikuan.2345.com": [98], "service.alibaba.com": [857], "hr.stanford.edu": [15448], "trcr.io": [2024], "hlk.cl": [2024], "james.dog": [2024], "mktpnch.com": [2024], "btpne.ws": [2024], "dbiweb.us": [2024], "adfs.wales.gov.uk": [18051], "www.visaeurope.at": [17847], "oppohd.ga": [2024], "aehom.es": [2024], "shchyolkovo.tpprf.ru": [22260], "*.chistescortosbuenos.com": [3093], "stavropol.auto.ru": [19276], "heinekenonequity.tnsglobal.com": [15906], "isc.sans.edu": [14127], "g.virtuaniz.com": [2024], "coverfx.co": [2024], "myrdc.tk": [2024], "www.snag.gy": [21877], "ghirardelligiftguides.com": [6610], "www.jitscale.com": [8594], "thyperadvsr.com": [2024], "on.aaslh.org": [2024], "www.myaccount.charter.com": [3026], "*.thing.net": [16428], "www.multivu.com": [2946], "solar.rwe.de": [21706], "www.coinurl.com": [3399], "recepty.blesk.cz": [2088], "fitsell.nl": [2024], "nibp.us": [2024], "g2.twimg.com": [16949], "api.biglion.ru": [19375], "bch.me": [2024], "0nk.net": [2024], "r24625213.sync.app.asana.com": [1265], "idefix.com": [7935], "www.breakingmuscle.com": [19445], "www.khanacademy.org": [8888], "www.nips.cc": [10970], "synd.co": [2024], "www.gunsamerica.com": [20324], "medias2.prestashop.com": [13085], "wamblog.us": [2024], "evlvgn.ws": [2024], "blog.safeshepherd.com": [14297], "eyeboot.com": [5525], "billing.purevpn.com": [13285], "www.pantarhei.sk": [12399], "www.rebeccawait.com": [21605], "n2clic.me": [2024], "physics.georgetown.edu": [6531], "flmsp.ly": [2024], "www.nat.ms": [11080], "apt3.photo": [2024], "p.o0bc.com": [21217], "officeworks.com.au": [11790], "cs19.myzuka.fm": [21079], "kgeek.co": [2024], "bdsams.com": [2024], "at.imal.tv": [2024], "wsw.afip.gob.ar": [19106], "websmith.me": [2024], "ghandlin.me": [2024], "water-challenge.com": [18095], "ryska.mp": [2024], "more.pet": [2024], "chrisr.at": [2024], "mixx.com": [10508], "afwf.co": [2024], "toccotest.tocco.ch": [16600], "gijs.to": [2024], "www.masterspaswi.com": [10064], "tdconline.se": [15865], "www.prometheus-group.com": [13195], "securemail.healthnet.com": [20360], "intraweb.hku.hk": [20387], "ispsystem.com": [20590], "www.desilva.biz": [4236], "be.rtgit.com": [2024], "valf.atm.youku.com": [18804], "thai.alibaba.com": [857], "villahostels.com": [17801], "gadvnt.rs": [2024], "www.oeis.org": [11656], "anpha.be": [2024], "catup.pw": [2024], "migrolcard.ch": [10413], "lnks.to": [2024], "www.zalando.be": [18877], "cdn.syndication.twimg.com": [16949], "apply.capitalone.com": [2831], "www.gradwell.com": [6868], "blog.adform.com": [639], "aimpulse.com": [786], "cooper.vc": [2024], "code.toofishes.net": [16625], "alpha.freeboard.io": [20155], "endenburg.be": [2024], "portuguese.brazil.usembassy.gov": [22406], "it.provost.usc.edu": [17366], "phre.am": [2024], "usshortcodes.com": [3488], "secure.us.playstation.com": [12832], "samsungshop.com.cn": [14325], "balakovo.beeline.ru": [1778], "www.1sand0s.nl": [84], "starmotorcycles.com": [15454], "sogou.com": [15168], "matrox.com": [10091], "rules.ws": [2024], "myresearch.uillinois.edu": [17034], "www.bww.com": [937], "rtklive.com": [13533], "siteorigin.com": [14935], "www.rshb.ru": [14059], "www.mdcus.com": [9741], "www.studentaid.ed.gov": [4881], "rwkr.ch": [2024], "rpwi.se": [2024], "crosswire.org": [3813], "callcenter.afisha.ru": [19107], "clientservice-upload.curse.com": [3927], "order.jd.com": [8436], "12and.us": [2024], "za.usembassy.gov": [22406], "www.n210adserv.com": [21081], "brfd.nl": [2024], "hostooplecms.hostooplecom.netdna-cdn.com": [7547], "careers.richmond.gov.uk": [21649], "hd.se": [7035], "europlat.rapida.ru": [13619], "all.auto.ru": [19276], "www.kabelkiosk.de": [8776], "l18.co": [2024], "tescobank.com": [16207], "inbm.co": [2024], "xap.com": [18593], "*.yelp.dk": [18766], "*.yelp.de": [18766], "brds.tw": [2024], "*.iupui.edu": [7867], "fotoha.us": [2024], "gustavus.edu": [7009], "pq-direct.revsci.net": [13897], "alljoyn.org": [879], "cpncrz.com": [2024], "www.testament-erbe-und-pflichtteil.de": [22129], "pirmax.fr": [2024], "communities.ptc.com": [21532], "www.iwantmytvmagazine.com": [11012], "www.sucuri.net": [15639], "idrp.nikkei.com": [11442], "lolip.in": [2024], "secure.wealden.gov.uk": [22541], "fjmg.es": [2024], "usher.ttvnw.net": [16961], "www.planeta.ru": [21431], "dixy.ru": [4576], "onewrld.co": [2024], "upu.nso.ru": [21192], "4dlabs.sfu.ca": [14708], "portal.velleman.be": [17685], "mgs.pw": [2024], "ichkoche.at": [7916], "sharethefiles.com": [14741], "explore.thestorefront.com": [16384], "wicker.tw": [2024], "licensing.jamendo.com": [8512], "sbalink.me": [2024], "bdygrdz.co": [2024], "www.transparency.org": [16754], "order.trustico.com": [16865], "onwgtc.com": [2024], "dashboard.towerdata.com": [16688], "lists.opnsense.org": [11692], "crystaldelights.com": [3884], "holidaybullshit.com": [7458], "trendero.us": [2024], "www.qiyukf.com": [21560], "hmlnk.co": [2024], "heelnormaal.snsbank.nl": [14207], "www.nvenergy.com": [11018], "www.google.org": [6820], "fi.isatya.in": [2024], "tacheng.jd.com": [8434], "l1t.it": [2024], "support.elsevier.com": [5177], "jobs.roblox.com": [13980], "www.consumersniper.com": [3602], "beta.cedars.hku.hk": [20387], "regulatory.usc.edu": [17366], "aclnz.co": [2024], "kdbl.gs": [2024], "www.pinknews.co.uk": [12725], "event.dfh.de": [2024], "*.nokia.com": [11498], "bmcearnosethroatdisord.biomedcentral.com": [1931], "go.symantec.com": [15780], "lv.lostkat.com": [2024], "fsd7.co": [2024], "*.ouya.tv": [11722], "www.tisarana.ca": [16571], "api.domaintools.com": [4653], "eqsl.cc": [20010], "terri.es": [2024], "lds.org": [16293], "wwwdc.cinelease.com": [7371], "a4f.cc": [2024], "selection.migros.ch": [10417], "a4f.co": [2024], "www.poste.it": [13013], "lincolnlibrary.worldcat.org": [18536], "blogs.coreboot.org": [3670], "origin-www.nbcudigitaladops.com": [10917], "app.airmap.io": [790], "*.stratusexpress.com": [14668], "my.bezeq.co.il": [19362], "ourevents.co": [2024], "secure.comodo.net": [3507], "gwkl.de": [2024], "*.servicetick.com": [14683], "www.nycris.nhs.uk": [10953], "demo.refaktor.hu": [13773], "srclick.co": [2024], "l.24tender.ru": [2024], "omuru.ga": [2024], "timezero.ru": [16533], "softwareplattform.115.de": [2443], "makelaa.rs": [2024], "4link.click": [2024], "wis.ntu.edu.sg": [11072], "beacon.walmart.com": [18059], "ec.consumerreports.org": [3601], "*.zopim.com": [19008], "eqf.org": [2024], "www.ias.edu": [7673], "i0.newstube.ru": [21130], "www.elviajero.elpais.com": [5126], "sss.audioboom.com": [19272], "o2.chaucanh.net": [2024], "www.specto.io": [15316], "www.jibbed.org": [20641], "acceso40.uned.es": [17248], "koding.com": [8966], "trackandtraceuat.courierpost.co.nz": [3714], "stop-snoring-mouthpiece.org": [15549], "tunespeak.com": [16901], "www.localmotors.com": [20865], "dj5.nl": [2024], "secure.adzerk.net": [726], "forum.khabkrai.ru": [20709], "co.ncr.com": [2024], "bugs.96boards.org": [249], "community.openvpn.net": [12024], "adaymag.co": [2024], "offer.hertz.com": [7371], "democracy.stratford.gov.uk": [22004], "e.bodur.co": [2024], "festivusgames.com": [5747], "lv.hertzequip.com": [7371], "re6s.com": [2024], "community.crossref.org": [3812], "goy.cz": [2024], "www.scraperwiki.com": [14467], "italian.italy.usembassy.gov": [22406], "www.committedgiving.uk.net": [19651], "techrepublic.com": [16081], "crsex.org": [2024], "secure.startlogic.com": [15474], "e.ntd.tv": [2024], "nantong.jd.com": [8434], "dacre.link": [2024], "acton.li": [2024], "prihlasenie.sme.sk": [14198], "www.hcstx.org": [20356], "android-build.linaro.org": [9377], "www.myzuka.fm": [21079], "datascri.be": [2024], "ubisoftgroup.com": [17172], "lists.internet2.edu": [8277], "www.ruggedsoftware.org": [14084], "lightup.pridewatch.tw": [13104], "o.maldicore.com": [2024], "baumglueck.de": [19330], "www.ffa.vutbr.cz": [17609], "mobilebill.virginmedia.com": [17822], "corsem.co": [2024], "o.grublabs.org": [2024], "staging-assets-news.vice.com": [17754], "www.etouches.com": [5377], "cdn.viglink.com": [17797], "ingress.com": [8144], "bighor.se": [2024], "qfxsoftware.com": [13325], "corp.telphin.ru": [16170], "bdv.bz": [2024], "crg.st": [2024], "pe.cheur.fr": [2024], "*.museodelprado.es": [10748], "blog.jtlebi.fr": [8672], "pornhub.com": [12972], "imine.co": [8006], "tsyn.cc": [2024], "go.kswbtv.com": [2024], "c01.my.uprr.com": [22392], "m.polar.me": [2024], "src.nu": [2024], "www.coinomat.com": [3407], "bluestargolf.com": [8443], "c-i.io": [2024], "datenschutz.de": [17831], "remote.bridgend.gov.uk": [19449], "jinhuaguan.jd.com": [8434], "tsg.nz": [2024], "secure.hkma.gov.hk": [7062], "d-b.fm": [2024], "secure.syllabushare.com": [15778], "www.deb.li": [4255], "email.wildwestdomains.com": [18391], "virusdesk.kaspersky.ru": [8821], "httpstatuses.com": [20440], "pfbd.uk": [2024], "zeit.to": [2024], "www5b.wolframalpha.com": [18487], "*.producthunt.com": [13169], "mentors.debian.net": [4261], "tver.sumtel.ru": [22031], "mediamarkt.se": [10189], "www.nraringoffreedom.com": [21186], "aok-gesundheitspartner.de": [376], "secure4.vend-o.com": [17694], "jr.jd.com": [8436], "url.driph.com": [2024], "montazar.net": [10605], "icc.tips": [2024], "chgobrs.com": [2024], "globalsau.de": [2024], "aldimobile.com.au": [358], "cltom.com": [2024], "mail.webonic.hu": [18229], "lanik.us": [9162], "www.camscanner.com": [19500], "go.milomodo.com": [2024], "*.simplereach.com": [14886], "eur-ukp.adsrvr.org": [688], "images.bwbx.io": [2497], "incapsula.com": [8047], "darbgv.de": [2024], "bod.fitness": [2024], "s1.ltrbxd.com": [9281], "rg.ru": [21646], "mobilism.me": [21004], "sport.lemonde.fr": [9204], "woolworths.axonify.com": [1502], "vr.fruitninja.com": [6214], "cert.uni-stuttgart.de": [17260], "www.kazned.ru": [20697], "pad.seajade.com": [2024], "ytdl.ruguoapp.com": [21692], "freec.cf": [2024], "www.stadt-zuerich.ch": [15431], "dealers.cadlink.com": [19491], "stdhivtraining.org": [2760], "freeapi.ipip.net": [20570], "zoomerang.com": [19003], "yunbi.com": [18840], "delivery04.dhe.ibm.com": [7679], "bgr.me": [2024], "www.icard.uillinois.edu": [17034], "forum.test.tibia.com": [22203], "nightdev.com": [11433], "sbyd.es": [2024], "dary.us": [2024], "team.fbk.info": [5691], "t.on.aol.com": [380], "cbyt.es": [2024], "verify.adobe.com": [669], "kent.objective.co.uk": [21225], "jdor.it": [2024], "freetype.freedesktop.org": [6102], "kp0.me": [2024], "uwinnipeg.ca": [17158], "aai.kuleuven.be": [8832], "licensing.lancaster.gov.uk": [20778], "bmccancer.biomedcentral.com": [1931], "code.tinypass.com": [16565], "mnow.in": [2024], "figshare.com": [5772], "pt.boardgamearena.com": [2182], "touch.facebook.com": [5609], "slavcred.dengisend.ru": [4344], "de.pornhub.com": [12972], "cask.scotch.io": [14457], "www02.utm.edu": [17426], "petitions.southglos.gov.uk": [15257], "api-cn.wolframalpha.com": [18487], "api.srcclr.com": [15404], "*.kobobooks.de": [8962], "www.libraryreserve.com": [20829], "exrna.biomedcentral.com": [1931], "charlottenaturemuseum.org": [3020, 19562], "cup.msgfocus.com": [637], "new-brighton.eschools.co.uk": [20017], "repo.puphpet.com": [21542], "no.support.tomtom.com": [16615], "*.kickapps.com": [8891], "uploader.auto.ru": [19276], "amp.strana.ua": [22001], "decouvre.la": [2024], "financeprod.alipay.com": [864], "volgorechensk.beeline.ru": [1778], "payments.eastsussex.gov.uk": [19938], "acwk.us": [2024], "*.csc.com": [2680], "*.my.com": [10788], "wpecdn.paymoapp.com": [12514], "securestoke.stoke.gov.uk": [21995], "vas229.com": [2024], "xian.1688.com": [51], "privatevpn.com": [13143], "bsan.es": [2024], "forum.vuze.com": [17971], "l.delizialy.com": [2024], "status.bitbucket.org": [1982], "open.barnet.gov.uk": [19317], "politico.pro": [2024], "static.stratosphere.msn.com": [9810], "images.groups.adobe.com": [669], "cloud.holyrood.com": [20393], "hds.io": [2024], "www.fitocracy.com": [5870], "websterwood.com": [18251], "wise.gg": [2024], "ca.dinahosting.com": [4506], "elbird.co": [2024], "redmine.clear-code.com": [3228], "on.tassos.gr": [2024], "wise.gt": [2024], "payments.billdesk.com": [1906], "ea-cdn.voxmedia.com": [22503], "www.rosehosting.com": [14022], "vendorexpress.amazon.com": [960], "3dcenter.org": [159], "www.httpbin.org": [7594], "wusmdar1.wustl.edu": [18089], "secure.hostasaurus.com": [7528], "graphics.streamray.com": [15521], "cloudpiercer.org": [3290], "support.secondlife.com": [14527], "ttfinfo.desy.de": [4386], "cna.asia": [2024], "dlcom.co": [2024], "www.appcelerator.com": [1144], "etarget.hu": [5360], "practiceheartbeat.bankofamerica.com": [1669], "edumac.us": [2024], "lg.starlink.ru": [21978], "www.autoitscript.com": [1443], "councillors.halton.gov.uk": [20335], "s.vfserv.net": [2024], "*.eniro.com": [5264], "monitis.com": [10593], "cpfn.us": [2024], "j.weinjobs.com": [2024], "reviewed.pw": [2024], "framapic.org": [6075], "dvmck.us": [2024], "fsa.usda.gov": [17299], "url.bbking.net": [2024], "kickasstorrents.eu": [8894], "r.ccv.com.co": [2024], "www.cex.io": [2600], "www.virustotal.com": [17842], "mcctr.org": [2024], "brdg.one": [2024], "b4.yahoo.co.jp": [18730], "reis.zr.ru": [22725], "*.pheedo.com": [12648], "wop.news": [2024], "www.webmaster.yandex.com.tr": [18740], "www.homedepotfoundation.org": [7481], "syktyvkar.biglion.ru": [19375], "file.tc": [2024], "www.tms.pl": [22224], "www.mtmweb.com": [10202], "duositex.com": [2024], "xiaogan.jd.com": [8434], "scontent.xx.fbcdn23dssr3jqnq.onion": [5610], "my.sacolaph.com": [2024], "wetrain.it": [2024], "www.assoc-amazon.fr": [1314], "www.filepicker.com": [5787], "documentation.scribus.net": [14478], "novweb.novara.ie": [4499], "www.jedec.com": [8442], "s.nickmom.com": [2024], "xtvx99.cf": [2024], "bandicotz.ga": [2024], "my.getclouder.com": [6554], "we.motospeed.tv": [2024], "to.44doors.com": [2024], "www.aab.ru": [19036], "communit.as": [2024], "on.drunkwifi.co": [2024], "kernl.us": [8875], "www.cybercon.com": [3958], "hwrcforms.cardiff.gov.uk": [19509], "mcclurken.org": [17349], "bdss.eu": [2024], "ipd.aws.bakerlab.org": [1646], "altika-saral.cnes.fr": [2647], "isomorphic.com": [8388], "curx.es": [2024], "larisa.la": [2024], "censorship.govt.nz": [2948], "www.zotacusa.com": [18855], "hammu.mx": [2024], "orl.do": [2024], "thsh.re": [2024], "mobileapp.uat.sportmaster.ru": [21944], "heartstn.co": [2024], "popcorn-time.to": [21461], "webcitation.org": [18153], "dlug-assets.grvcdn.com": [6968], "www.enum.ru": [5292], "dl.catta.co": [2024], "www.powertraveller.com": [13051], "rine.ws": [2024], "www.app-coding.de": [1132], "www.providertalk.com": [13064], "at.dwncff.com": [2024], "localhost.asana.com": [1265], "opendz.org": [11971], "blb.uy": [2024], "rom.curseforge.com": [3927], "remaxspb.co": [2024], "bfx.li": [2024], "vpy.co": [2024], "www.bradford.gov.uk": [2282], "checkr.ml": [2024], "tsv.fi": [16511], "ptix.co": [2024], "*.amazonwebservices.com": [963], "frost.cf": [2024], "s.r42.ca": [2024], "planet.linaro.org": [9377], "so.arte": [2024], "www.xmos.com": [18614], "abuledu.org": [19044], "500ish.com": [204], "praegnanz.de": [13056], "webzj.reg.163.com": [50], "tt.glk.io": [2024], "frootvpn.com": [6207], "secure.omg.org": [11737], "www.hm.com": [7075], "gandi.net": [6432], "img2.1tv.ru": [88], "help.rallydev.com": [13598], "erevenues.cambridge.gov.uk": [19494], "hilfe.saturn.de": [21736], "r24626672.sync.app.asana.com": [1265], "wiki.brown.edu": [2384], "coller-iv.tk": [2024], "www.cybersicherheits-allianz.de": [900], "1item.me": [2024], "go.dmann.me": [2024], "plugins.jquery.com": [8463], "db.play-asia.com": [12828], "greengrass.sinaapp.com": [14907], "s.twb.org": [2024], "www.teylingen.nl": [11172], "ndlap4.ndla.no": [11158], "www.nodejs.org": [11492], "tpb.proxyduck.co": [21522], "jack.pe.hu": [2024], "wpacracker.com": [3283], "frh.me": [2024], "www.stellar.org": [15532], "post20brav.es": [2024], "lazo.io": [2024], "www.inetinteractive.com": [7780], "sogo.taz.de": [15853], "cube.58.com": [212], "www.clipperz.is": [3270], "arjmp.de": [2024], "svc.osu.edu": [11797], "hetibeton.444.hu": [183], "miit.ua": [20982], "www.ipo.gov.uk": [17048], "go.mafbla.org": [2024], "ba.boell.org": [19422], "zimbra.com": [18968], "kfuln.es": [2024], "zobri.st": [2024], "365tr.me": [2024], "ho16.majordomo.ru": [9914], "story.tn": [2024], "legal.here.com": [7325], "dkit.ie": [4032], "speedcrunch.org": [15323], "zkr.cm": [2024], "*.bazar.sk": [1737], "lasaguan.jd.com": [8434], "rckt.in": [2024], "nbfx.co": [2024], "www.bunchball.com": [2438], "stats.unodc.org": [17075], "billiondigital.com": [1912], "aqdkt.co": [2024], "super-heroes.friday.ru": [20175], "www.binsearch.net": [1918], "*.staticstuff.net": [6593], "api.foursquare.com": [6061], "documentation.centreon.com": [2965], "zomp.us": [2024], "shop.taz.de": [15853], "ga-innocenceproject.org": [6532], "fnls.co": [2024], "privacyscore.com": [13142], "www.siteadvisor.com": [14930], "go.ntvg.org": [2024], "ldrd.inl.gov": [20537], "grum.us": [2024], "blog.sciencedirect.com": [21750], "kester.co": [2024], "logmeinrescue.com": [9561], "akp.ac": [2024], "hg.mozdev.org": [10687], "autodiscover.yandex.com.tr": [18740], "data.rackspace.com": [13566], "fuzhou.jd.com": [8434], "at.tra.cx": [2024], "jnky.gr": [2024], "o2-tv.cz": [16141], "ljs.cc": [2024], "l.wix.com": [2024], "www.fedshirevets.gov": [20080], "cdn3.colocationamerica.com": [3435], "hi.1688.com": [51], "spcs.stanford.edu": [15448], "permits.camden.gov.uk": [2785], "dn-growing.qbox.me": [20312], "gaof.ru": [2024], "youbetrayedus.org": [18803], "nouveausite.refedd.org": [13471], "secure.cccu.ca": [3337], "www.nuevasync.com": [11609], "wuxia.qidian.com": [13349], "www.coveralls.io": [3727], "www.forums.zoho.com": [18984], "scion.us": [2024], "krasnoyarsk.tpprf.ru": [22260], "nationalserviceresources.org": [11128], "secure.westlancs.gov.uk": [22568], "www.transmarine.org": [16734], "anpdm.com": [1091], "switchvpn.net": [15765], "images1.bovpg.net": [2269], "l0cal.com": [9073], "b.gzhls.at": [13072], "tbop.co": [2024], "cz.redhat.com": [13735], "tranny-tea.se": [2024], "yaler.net": [18733], "projects.triodos.com": [16815], "upswng.me": [2024], "guatemala.usembassy.gov": [22406], "cdn2.vox-cdn.com": [17939], "mobile01.com": [10533], "www.nobelprize.org": [21147], "prod-web.northeastern.edu": [11539], "svn.aircrack-ng.org": [19122], "fbrk.net": [2024], "down1.islamhouse.com": [8368], "at.norton.com": [11545], "hidde.nu": [2024], "myheritage.es": [10875], "enrollmentmanagement.illinois.edu": [17346], "www.zerowater.com": [18945], "idcdn.de": [8343], "s3.calameoassets.com": [2749], "triphip.com": [16818], "compuware.com": [3545], "www.simplyzesty.com": [21834], "www.bse.vt.edu": [17825], "storycubes.com": [15569], "sdm-admissions.mit.edu": [9763], "deutschepost.de": [19816], "www.filepicker.io": [5787], "betogo.eu": [2024], "b.telus.com": [16174], "business.zalando.com": [18877], "devportal.jamendo.com": [8512], "andrw.us": [2024], "www.alterapraxis.com": [927], "vraposo.me": [2024], "il1.pl": [2024], "politie.nl": [11172], "av-ar.com": [2024], "kng.ht": [2024], "gigster.com": [6640], "samc.la": [2024], "artday.co.kr": [1252], "burkhart.bz": [2024], "svn.gnucash.org": [6743], "lotto.de": [9623], "acsportal.oracle.com": [12116], "on.logz.io": [2024], "abc6.wjbf.com": [2024], "markm.cc": [2024], "wello.com": [18288], "www.it2.nl": [7844], "charen.ch": [19561], "oboy.co": [2024], "stratechery.memberful.com": [10266], "azm.me": [2024], "hbll.link": [2024], "halogenonline.dft.gov.uk": [19825], "www.e.switchadhub.com": [15764], "go.udafanz.com": [2024], "quadrant.org.au": [13372], "www.vinothek.hofer.at": [357], "vladivostok.beeline.ru": [1778], "wpp.com": [18014], "community-uat.freescale.com": [6161], "www.gettyimages.be": [6604], "mobildemo.sparebank1.no": [21922], "onquibids.com": [2024], "digiumenterprise.com": [4498], "www.svetlodarsk.com": [15739], "web-hosting.com": [18140], "help.hipchat.com": [7417], "medlab.cc": [2024], "applev.ac": [2024], "www.gchq.gov.uk": [6855], "matchroompool.streamamg.com": [22006], "unb.io": [2024], "gtms04.alicdn.com": [853], "go.luktom.net": [2024], "zalando.ch": [18877], "*.pogo.com": [12893], "fbopen.gsa.gov": [6363], "har.rs": [2024], "*.cntraveler.com": [3559], "www.deprexis.com": [4362], "mail.netams.com": [21109], "tmz.vo.llnwd.net": [15897], "icon.nimg.jp": [11450], "mail1.friday.ru": [20175], "m.teltarif.de": [16173], "config.schmidtcom.de": [14419], "econ.ng": [2024], "www.nixos.org": [11469], "s3.sandbaguk.com.s3.amazonaws.com": [14339], "polybrowser.com": [12934], "grbs.co": [2024], "zee.to": [2024], "search.itunes.apple.com": [1151], "edocs.southglos.gov.uk": [15257], "ksclub.info": [2024], "*.www.patriotssuperbowl.us": [12491], "ssl.soufun.com.tw": [15226], "www.continental.com": [3620], "yaythis.me": [2024], "homtail.play-asia.com": [12828], "www.allposters.com": [882], "secure.valelearning.com": [22424], "*.bundeskanzlerin.de": [2442], "www.rasende.dk": [13628], "jsth.co": [2024], "rss.seagate.com": [14499], "igodigital.com": [7738], "wp-ss.co.uk": [2024], "ct4.cloudtrax.com": [3295], "38www.play-asia.com": [12828], "cirk.me": [2024], "docs.docker.io": [4606], "www.posta-online.it": [13005], "info.pindropsecurity.com": [21409], "ness.uic.edu": [17321], "payhip.com": [12508], "sip.mbank.sk": [9733], "alldaycalm.com": [892], "www.gizmodo.com": [6677], "west.play-asia.com": [12828], "admin.mantisadnetwork.com": [9971], "ssl.xui.ptlogin2.qcloud.com": [13346], "www.zenmate.com.br": [18917], "coevorden.nl": [11172], "gbhub.bz": [2024], "nf.tpprf.ru": [22260], "*.em1.cloud.oracle.com": [12116], "lullabot.com": [9667], "bit.danto.ma": [2024], "muumuu.in": [2024], "ve.oxfordjournals.org": [12222], "lutim.cpy.re": [19710], "envertent.com": [2024], "feeds.centrify.com": [19546], "rtk.nso.ru": [21192], "tapirex.com": [12380], "test.sciencenode.org": [14442], "academy.adform.com": [639], "telekom-partnerwelt.de": [16151], "derbent.startsmile.ru": [21980], "ogilvy.co.uk": [21232], "m.sydneytowereye.com.au": [15774], "solidlogic.com": [15190], "miltonkeynes.libraryebooks.co.uk": [20828], "csis-scrs.gc.ca": [2816], "cdn.shazam.com": [14750], "iptorrents.com": [7802], "rele.bz": [2024], "bisente.com": [1946], "*.globaloneteam.com": [6719], "www.myvoice.earthlink.net": [4997], "www.zenmate.ca": [18917], "icps.psychologicalscience.org": [13235], "creativity-online.com": [3756], "torrentsmirror.com": [16660], "www.zenmate.ch": [18917], "www.zenmate.cl": [18917], "a.walla.by": [2024], "s.shiftboard.jp": [2024], "cdn.lynda.com": [9692], "sl.mts.net.in": [2024], "client.serverfruit.com": [14676], "raff.ag": [2024], "special-1.bl.uk": [2358], "pbcham.ps": [2024], "abopage-mediafiles.tagesanzeiger.ch": [15973], "pequ.in": [2024], "lists.snacktv.de": [15086], "audio-video.gnu.org": [6337], "adbn.co": [2024], "secure.gettyimages.be": [6604], "scorecardresearch.com": [14455], "webmail.redhat.com": [13735], "careerinsider.blogs.bucknell.edu": [2406], "cardcash.com": [2846], "image.ucuzu.com": [17191], "www.grindr.com": [20308], "geni.nidirect.gov.uk": [21138], "kdewa.lt": [2024], "www.fmaba.com": [5637], "novocherkassk.tpprf.ru": [22260], "magnatune.com": [9877], "photographer.io": [12676], "eurodiet.co.uk": [5401], "www.ge.ch": [22061], "bot.id": [2024], "www.secure.pangaea.de": [12238], "blog.peer5.com": [12547], "petit.bz": [2024], "baksan.startsmile.ru": [21980], "wordpress.pastebin.ca": [12477], "valdhaus.co": [17618], "crn.gp": [2024], "open.wien.gv.at": [22588], "lukasa.co.uk": [20888], "cdn.clustrmaps.com": [19628], "dev.vpsfree.cz": [22506], "pix.pn": [2024], "output.jsbin.com": [20659], "freesound.org": [6162], "myuni.sydney.edu.au": [22063], "alzforum.org": [948], "zeusdp.desy.de": [4386], "www.iptc.org": [7853], "tr.zenmate.com": [18917], "30fram.es": [2024], "web-assets.therealreal.com": [22180], "fontdeck.com": [5969], "jiaoling.jd.com": [8434], "www.contentreserve.com": [19673], "yakutsk.startsmile.ru": [21980], "mscbd.fm": [2024], "mfweb.us": [2024], "www.hanwhatechwin.co.kr": [14333], "whoisjoining.us": [2024], "yadi.sk": [18717], "mvd.360buy.com": [147], "mykc.co.nz": [2024], "support.lucidpress.com": [9655], "s9.postimage.org": [13024], "www.gotinder.com": [16544], "ecodissident.net": [5045], "scot.by": [2024], "atdw.tq.com.au": [16686], "go.datapipe.com": [4203], "mx.stoloto.ru": [21996], "static.xhamsterpremiumpass.com": [18607], "uez.unizar.es": [17441], "iweb.co.uk": [20616], "www.it.ox.ac.uk": [17359], "www.bitstampede.com": [1979], "xlwww.play-asia.com": [12828], "abbo-shop.ch": [459], "saveourbank.coop": [14374], "info.giffgaff.com": [20243], "*.rtems.org": [13532], "allyssa.me": [2024], "www.prospect.org": [16320], "rholck.us": [2024], "*.cic.fr": [1679], "programs.wcfia.harvard.edu": [7211], "mrbls.co": [2024], "purehacking.com": [13283], "bfmx.me": [2024], "lyncdiscover.raiffeisen.ru": [13587], "specials.mtvnn.com": [17748], "tribe.cd": [2024], "fr.getsatisfaction.com": [6601], "s.ozn.pw": [2024], "beautifulmosque.com": [1768], "guba.sina.com.cn": [14904], "gdargaud.net": [6995], "amazon.nl": [19179], "openmarket.org": [11993], "h.yper.link": [2024], "l.ogisz.nl": [2024], "hmtk.co": [2024], "go.tojiali.com": [2024], "cimbpreferred.com": [2618], "lons.co": [2024], "maketheirday.co": [2024], "theglw.co": [2024], "alrm.gd": [2024], "sproj.com.br": [2024], "colicobe.be": [2024], "dinn.in": [2024], "r4lv.com": [2024], "*.quattroplay.com": [13393], "dl.ed.gov": [4881], "liikenneturva.fi": [9364], "www.tomtom.com": [16615], "ahi.is": [2024], "wildstar-online.com": [18394], "forums.winehq.org": [18442], "secure.freenet.de": [6158], "www.athleticum.ch": [1339], "www.vanillicon.com": [17650], "www.twitchinstalls.com": [16962], "nass.oxfordjournals.org": [12222], "pic5.qiyipic.com": [13354], "www.9joycasino.com": [20654], "git.sphere.ly": [21936], "hywz.biligame.com": [1903], "tver.sledcom.ru": [21858], "btn.sx": [2024], "ivar.co": [2024], "bh151tt.ml": [2024], "www.corkuniversitypress.com": [3674], "teamweek.com": [16070], "www.wornthrough.com": [18556], "25pt4.me": [2024], "bddy.me": [2024], "go.whats-new.gq": [2024], "ltb.pe.hu": [2024], "s.h2oskierc.com": [2024], "www.dl.ed.gov": [4881], "appleseed.apple.com": [1151], "thias.marmotte.net": [10036], "yaroslavl.sledcom.ru": [21858], "foke.at": [2024], "tidesandcurrents.noaa.gov": [11121], "a.icetravel.xyz": [2024], "tagbuilder.webtrends.com": [18264], "alxis.co": [2024], "deportes.uniovi.es": [17282], "hls-31kz.cdnvideo.ru": [19536], "derbyshireyouthinc.com": [19813], "fls-fe.amazon.co.jp": [19169], "www.eidq.org": [4910], "guichet.jura.ch": [22061], "crowdspring.co": [2024], "hsbc.com.mu": [20429], "seminar.monex.co.jp": [10583], "jamesm.ac": [2024], "www.onlineregistrationcenter.com": [11914], "jonbdz.in": [2024], "snappleweb.nature.com": [11140], "go.kiah-tv.com": [2024], "s5.cnzz.com": [3328], "www.dayshalldeclare.refugee.ru": [21624], "updown-pilot.arin.net": [397], "static8.twilio.com": [16948], "movie.jd.com": [8436], "ls-guan.jd.com": [8434], "i5.c.dk": [2512], "www.core.ac.uk": [19690], "biblioconecta.ulpgc.es": [17213], "w2.sndcdn.com": [15096], "login.monash.edu": [10577], "viewmychart.com": [10797], "www.uofmhealth.org": [17463], "pyeongchang2018.com": [21545], "lso.pw": [2024], "zzw.link": [2024], "wtr.nhtsa.gov": [17108], "betterfap.com": [1856], "staempfliverlag.com": [21972], "gnutls.org": [6745], "hllywdjnkt.co": [2024], "forum.tfes.org": [16237], "edihealth.net": [4886], "www.esnextb.in": [20019], "www.lloydsbank.com": [9537], "phdcourses-socsci.uio.no": [17414], "schnellverkaufen.ricardo.ch": [13923], "psathome.ikea.com": [7962], "hwrdn.org": [2024], "t.maptm.nl": [2024], "www.ups.com": [17088], "esamplesweb.pfizer.com": [12640], "m.lotto.de": [9623], "omniture.groceries.asda.com": [407], "os2.fr": [2024], "ltsusa.us": [2024], "www.rollapp.com": [14011], "rt.trafficfacts.com": [16727], "mus.ms": [2024], "api.vgtrk.com": [22455], "dollarshaveclub.com": [4635], "support.krystal.co.uk": [9037], "*.sockshare.com": [15147], "forum.dug.net.pl": [4081], "s.papworth.me": [2024], "wildplanetphotomagazine.com": [18393], "soft.hao123.com": [20339], "geronimo.apache.org": [1118], "*.jeffmitchell.me": [8559], "emsonline.milton-keynes.gov.uk": [10437], "www.westdevon.gov.uk": [18303], "*.creative.adobe.com": [669], "www.nycmesh.net": [21211], "ntrnbe.at": [2024], "innovation.govspace.gov.au": [6851], "lc2.lcstatic.net": [9277], "wiki.srb2.org": [14231], "olle.be": [2024], "boursorama.smartadserver.com": [15049], "vremya.yandex.by": [18739], "leo.sg": [2024], "www.arcgis.com": [1186], "sportetstyle.lequipe.fr": [20811], "www.e-disclosure.ru": [4844], "firma.skolaonline.cz": [21852], "onion.ink": [16638], "hivoice.hivos.org": [7436], "www.yuri-ism.com": [18842], "auth.fyi": [2024], "firstthings.com": [20112], "www.macosforge.org": [9835], "011.cz": [2024], "serpukhov.tpprf.ru": [22260], "odge.mit.edu": [9763], "dbackpolice.com": [4226], "avl.fm": [2024], "srv2.shoutlet.com": [21814], "m.godaddy.com": [6755], "www.havant.gov.uk": [20347], "hindi.rbth.com": [21596], "www.boounce.com": [2239], "www.talktalk-labs.com": [15991], "eff.cat": [19964], "www.lg.com": [9090], "lessbuttons.com": [20816], "zend2.com": [18921], "s.yourkirei.net": [2024], "ngvpn01.nvidia.com": [11022], "links.bami.ch": [2024], "go.cinii.jp": [2024], "git61.rostrud.ru": [21677], "portal.uned.es": [17248], "kassa.rambler.ru": [13600], "tinyhahm.tk": [2024], "omsk.beeline.ru": [1778], "www.canon.ie": [2822], "no.4.boardgamearena.com": [2182], "beacon.beta.walmart.com": [18059], "www.office.co.uk": [11779], "www.bwl.admin.ch": [22061], "g.arabenet.info": [2024], "orbit.shazamid.com": [14751], "qrad.io": [2024], "www.astra.admin.ch": [22061], "ad.retargeter.com": [13661], "abc30.tv": [2024], "foto.happyfoto.cz": [7193], "facultyaffairs.stanford.edu": [15448], "api.rollbar.com": [14012], "cayuse.rf.ohio-state.edu": [11798], "piraten-schwaben.de": [12750], "aswebstat.stanford.edu": [15448], "green.readcube-cdn.com": [13666], "*.chartbeat.net": [3023], "www.prioritysubmit.com": [13122], "non.tuxfamily.org": [22319], "cdn.thegrindstone.com": [908], "s.jamula.net": [2024], "namebright.com": [11057], "pled.rocketbank.ru": [13994], "c2day.org": [2024], "grinnell.edu": [6938], "drafthouse.com": [820], "www.maxkitap.com": [10105], "aprelevka.biglion.ru": [19375], "members.gwh.nhs.uk": [10953], "ma.otpbank.ru": [12165], "snapm.uk": [2024], "im.qa.bnymellon.com": [19420], "nccgroup.trust": [10922], "manlysealifesanctuary.com.au": [9968], "edit.vas-hosting.cz": [22428], "shny.net": [2024], "creativeskills.be": [3782, 3783], "*.geeksphone.com": [6489], "blog.vshn.ch": [17957], "bugmenot.com": [2422], "spotseeker.cac.washington.edu": [17376], "cli.caava.co": [2024], "aal.ink": [2024], "slantsy.startsmile.ru": [21980], "officersforbundet.se": [11789], "coo.ms": [2024], "*.adallom.com": [606], "eppingcr.uk": [2024], "a.ndy.io": [2024], "sohh.com": [14212], "thpb.co": [2024], "s1-josho.yamedia.tw": [18734], "tentyp.es": [2024], "packages.siedler25.org": [13889], "pp.pingdom.com": [12719], "www.osp.vt.edu": [17825], "rcm.org.uk": [21601], "fora.tv": [5575], "summitroute.com": [15657], "go.tcom.co": [2024], "www.laughingsquid.com": [20786], "carsabi.com": [2875], "apigility.org": [1125], "customs.hmrc.gov.uk": [7076], "www.bizchannel.cimbbank.com.kh": [2616], "samssoftware.com.au": [14323], "parking.wustl.edu": [18089], "www.chase.leeds.ac.uk": [17403], "active24.co.uk": [19060], "pbsrc.com": [12527], "weforum.org": [17994], "oeit-tsa.mit.edu": [9763], "www.avoinministerio.fi": [19288], "rsvq.co": [2024], "kryptnostic.com": [9030], "sparkm.tg": [2024], "egnyte.com": [5102], "cyberduck.io": [3959], "kh.usembassy.gov": [22406], "burger2.me": [2024], "glnd.ca": [2024], "vantageonerealty.com": [17652], "www.irwinlaw.com": [8356], "glose.com": [6729], "nwd.gr": [2024], "mlday.fr": [2024], "waybackmachine.org": [1195], "www.stemcells.ox.ac.uk": [17359], "stk3d.li": [2024], "sendy.dxetech.org": [4511], "vacancies.ncl.ac.uk": [10926], "www.aruc.rlt.ulaval.ca": [17319], "consint.info": [2024], "russian.ashgabat.usembassy.gov": [22406], "ddd.ipleak.net": [20571], "bnk.rs": [2024], "rollte.ch": [2024], "k6.chaucanh.net": [2024], "ms.clicks.actions.aclu.org": [312], "cgp.upf.edu": [17471], "www.postdirekt.de": [19816], "*.flightglobal.com": [5901], "www.amnistia.org.pe": [1022], "r24616612.sync.app.asana.com": [1265], "qmul.co": [2024], "ars.photo": [2024], "www.photomath.net": [12671], "tickets.udn.com": [17020], "www.secular.org": [14536], "megdal.be": [2024], "stal.kr": [2024], "auvergne.ulule.com": [17224], "www.enocloud.com": [19927], "www.thecalmzone.net": [16331], "extremephysiolmed.biomedcentral.com": [1931], "ceo.microad.co.jp": [10376], "m.rk.imhd.sk": [8004], "campingmag.uk": [2024], "jadeinfo.biz": [2024], "tracking.correctiv.org": [3686], "p0.ifengimg.com": [20487], "pic4.qiyipic.com": [13354], "german-design-council.de": [6539], "ads.bluelithium.com": [13937], "l.dew.co.ke": [2024], "dmx-austria.at": [4039], "www.merethis.com": [10304], "www.codebutler.com": [13018], "openttd.org": [12018], "sesplan.gov.uk": [21790], "raph.so": [2024], "sitn.it": [2024], "mycloud.rackspace.co.uk": [13559], "c.s-microsoft.com": [14113], "www.santafenewmexican.com": [16281], "cdn7.sure-assist.com": [15709], "katan.ga": [2024], "pnda.co": [2024], "simcenter.engineering.osu.edu": [11797], "www.my.preston.gov.uk": [21491], "fs30.formsite.com": [20139], "shreve.link": [2024], "sysinfo-15.cnaf.infn.it": [7771], "grem.pw": [2024], "sb21.me": [2024], "tw.popin.cc": [12954], "folksam.se": [5966], "bnch.me": [2024], "articles.hnonline.sk": [7445], "reklama.rambler.ru": [13600], "www.tenable.com": [16180], "*.afsa.gov.au": [1417], "panerabread.com": [21340], "hatatorium.com": [7228], "my1.domonet.ua": [19877], "s18.postimage.org": [13024], "kirov.sledcom.ru": [21858], "anesthesiology.georgetown.edu": [6531], "showingcloud.com": [14804], "leer.amazon.com.mx": [19173], "code42.com": [3344], "extratorrent.cc": [5516], "thepiratebay.mk": [22174], "lawtalk.link": [2024], "io.danjam.es": [2024], "sidereel.com": [14823], "www.andreapaiola.name": [19197], "go.cpalm.dk": [2024], "clearsurvey.at": [2024], "secure-ec.libsyn.com": [9336], "fmm.io": [2024], "mail.uas.biz": [17304], "go.lazaridis.eu": [2024], "www.tcs.ch": [22101], "forum-lw-1.xda-cdn.com": [22647], "nostar.ch": [2024], "secure.robotshop.com": [13983], "wehelp.build": [2024], "riak.co": [2024], "new.teamweek.com": [16070], "familychristian.com": [5635], "cf.geekdo-static.com": [6483], "bndspn.com": [2024], "p8.chaucanh.net": [2024], "mts.oxfordjournals.org": [12222], "plattetv.nu": [2024], "r24823195.sync.app.asana.com": [1265], "mywebsitepersonal.1and1.co.uk": [71], "vuk.ee": [2024], "svn.planet-lab.org": [12801], "selfcare.m-budget.migros.ch": [10417], "labs.douban.com": [4701], "submit.symantec.com": [15780], "m2u.buzz": [2024], "www.mazout-migrol.ch": [10413], "s.hatamoto.biz": [2024], "redir2.info.giffgaff.com": [20243], "gust.com": [7008], "doomworld.com": [4678], "rudi.mediamarkt.de": [20949], "gotowebinar.com": [6771], "2wicke.de": [2024], "www.digforsk.uio.no": [17414], "clx1.co": [2024], "www.gistmarks.com": [6652], "ipchicken.com": [20567], "blog.trendmicro.com": [16787, 16791], "elska.ble.de": [19406], "storesecured.com": [15560], "www.installments.com": [20542], "www.tubeoffline.com": [16886], "tie.li": [2024], "wovn.io": [18008], "m.iwey.mx": [2024], "freewatch.gq": [2024], "support.solanolabs.com": [21895], "s.chilli.mobi": [2024], "nsdx.uk": [2024], "moodle.lasallehs.net": [9173], "secure.aadcdn.microsoftonline-p.com": [10397], "ontr.co": [2024], "gri.pw": [2024], "fepp.state.gov": [17146], "app.compose.io": [3530], "socialrank.co": [15124], "restaurantes.sapo.pt": [14131], "thecisogroup.com": [16257], "torrents.to": [22247], "at.jamjar.gr": [2024], "forge.puppetlabs.com": [13276], "tld.bn.by": [19416], "l1nk.no": [2024], "v6ak.com": [17551], "ip-check.info": [7805], "careers.oculusvr.com": [11760], "awilde.me": [2024], "tihq.uk": [2024], "intnt.nl": [2024], "blackarrowsoftware.com": [19400], "www.just-eat.es": [20671], "zoom.in": [2024], "inachinashop.com": [11662], "manage.windowsazure.com": [18434], "plato.stanford.edu": [15448], "pass.mery.jp": [9749], "www.tahitivahine.lemonde.fr": [9204], "*.netswipe.com": [8688], "whonix.thecthulhu.com": [16403], "qitaihe.jd.com": [8434], "www.afdc.energy.gov": [5243], "www.gluster.org": [6734], "aurarialibrary.worldcat.org": [18536], "www.teleport2001.ru": [22117], "i.aminmkhan.com": [2024], "osmand.cz": [12156], "tracks.fit.edu": [5922], "www.taoeffect.com": [16013], "c.co.za": [2024], "confluence.roblox.com": [13980], "meeting.ntu.edu.tw": [11010], "hfb.tv": [2024], "umassmag.com": [17352], "sparklit.com": [15293], "www.nie-wieder-vds.de": [11432], "zoum.ca": [18856], "ahoy.one": [21522], "i.drakontia.com": [2024], "internationaluat.courierpost.co.nz": [3714], "r24618066.sync.app.asana.com": [1265], "www.consumentenbond.nl": [3598], "careerstar.co": [2024], "www.seasonal.ly": [14513], "s.i879.jp": [2024], "ltc.huobi.com": [7628], "www.zenmate.ae": [18917], "*.16163.com": [48], "mai.aliexpress.com": [19140], "ddp.tips": [2024], "cdn.nursing.osu.edu": [11797], "danblah.com": [4125], "slate.fr": [15015], "vip.qiyi.com": [13353], "atlas.arbornetworks.com": [1185], "solarsystem.nasa.gov": [10909], "northumberland-consult.objective.co.uk": [21225], "docs.woothemes.com": [18505], "pdu.lu": [2024], "54.rkn.gov.ru": [13971], "ual.cc": [2024], "comic-rocket.com": [3468], "monitor.planet-lab.org": [12800], "upload.picload.org": [12693], "hannahcranston.com": [20338], "blog.foolz.us": [5985], "sn.my": [2024], "xdebug.org": [18642], "hmao.sledcom.ru": [21858], "ebx.sh": [2024], "vgre.info": [2024], "www.securejoinsite.com": [14565], "febas.de": [5695], "ips.rosminzdrav.ru": [21674], "ht4w.com": [2024], "web-stat.com": [18143], "cdn2.sbnation.com": [14137], "gafisa.co": [2024], "www.testssl.sh": [16219], "valh.us": [2024], "help.livingsocial.co.uk": [9529], "r24820236.sync.app.asana.com": [1265], "cmrshort.com": [2024], "ies.ikoula.com": [7966], "www.archive.icommons.org": [7703], "fastgam.es": [2024], "hitfarm.com": [7430], "gogs.io": [20280], "criticalvalues.oxfordjournals.org": [12222], "siebelsales.sky.de": [14990], "mail.law.georgetown.edu": [6531], "jond.info": [2024], "dmsjournal.biomedcentral.com": [1931], "binero.se": [1924], "umby.us": [2024], "userstory.ru": [22409], "developer.piwik.org": [12768], "everydayhero.com": [5444], "ucl.ac.uk": [17380], "o.npff.co": [2024], "12d.co": [2024], "www.orderbook.net": [12131], "us.wataru.com": [2024], "ncisf.org": [10924], "artstation.com": [1248], "jdub.in": [2024], "americanstudies.georgetown.edu": [6531], "www.btunnel.com": [1604], "tdcserviceonline.com": [15864], "podio.com": [12889], "www.scoreassured.com": [21754], "wiki.kubuntu.org": [9042], "2ig.pw": [2024], "bitva-salonov.friday.ru": [20175], "d.cloudlotse.de": [2024], "bt.com": [1578], "www.delfogo.com": [4307], "87.mvd.ru": [21055], "*.kldp.org": [8753], "www.smk.sachsen.de": [14279], "exed.hks.harvard.edu": [7211], "ind.homeoffice.gov.uk": [20399], "oberbayern.piratenpartei.de": [12755], "pressfreedomfoundation.org": [6150], "olympic.org": [21241], "forums.hak5.org": [7157], "sync.adap.tv": [608], "sandofsky.com": [14343], "*.uptilo.com": [17486], "www.govdelivery.com": [6846], "paste.lighttpd.net": [9362], "metrics.jpl.nasa.gov": [10909], "www.lhncbc.nlm.nih.gov": [11090], "rndnerds.com": [2024], "shop.glaad.org": [6318], "direct.yandex.kz": [18743], "cosmopolitan.com": [3691], "laverna.cc": [9187], "digforsk.uio.no": [17414], "gmr.osmocom.org": [12159], "kzcdn.itc.cn": [8401], "yoast.com": [22683], "eticketing.co.uk": [16495], "redth.link": [2024], "commvau.lt": [2024], "ra-sfo.moodys.com": [21020], "www.net-entreprises.fr": [21107], "weissinc.com": [18281], "yur.bi": [2024], "2015globalthinkers.foreignpolicy.com": [6002], "data.usaspending.gov": [17114], "btw.bz": [2024], "www.begun.ru": [1785], "b.manojayan.com": [2024], "t-rave.xyz": [2024], "commons.era.nih.gov": [11090], "variantweb.net": [22427], "justice.sk": [15037], "shouji.jd.com": [8436], "mcys.co": [2024], "inolx.co": [2024], "onion.cab": [16638], "mbws.axeso5.com": [1500], "berkeleyed.me": [2024], "love.samaratoday.ru": [21725], "www.ubuntuusers.de": [17184], "www.tfl.gov.uk": [16756], "soldani.info": [2024], "directbox.*": [4517], "civicd.link": [2024], "cogniz.at": [2024], "natv.ad": [2024], "clxns.mx": [2024], "tilburguniversity.edu": [16521], "localview.birmingham.gov.uk": [19380], "cyberaces.org": [3949], "kr.norton.com": [11545], "dailystavropol.ru": [19753], "*.siamogeek.com": [21820], "e-ssl.ligatus.com": [9356], "btn.gs": [2024], "submit.nal.usda.gov": [17299], "www.nyt.com": [11035], "www.serverdensity.io": [14675], "smm.edu.rosminzdrav.ru": [21674], "feedback.yandex.com": [18742], "clubtime.fm": [19627], "alti.cc": [2024], "www.eng.buffalo.edu": [2417], "mcis.erdf.communities.gov.uk": [19653], "djibouti.usembassy.gov": [22406], "www.tobaccofree.osu.edu": [11713], "sberbankdirect.de": [14384], "com.btcchinacdn.com": [1581], "video.wechat.com": [18116], "www.earthvpn.com": [19934], "2.adcstud.io": [2024], "b92.yahoo.co.jp": [18730], "cz.libreoffice.org": [9327], "bc.gwd.io": [2024], "app.piiship.com": [2024], "plum.media": [2024], "www4.citymapper.com": [3195], "www.cyanogenmod.org": [3946], "portal.prnewswire.com": [12317], "bewerbungsstatus.htw-berlin.de": [7103], "becrm.co": [2024], "crfty.co": [2024], "employers.simplyhired.com": [14894], "www.pfizerhelpfulanswers.com": [12641], "scaron.info": [14150], "webento.com": [18210], "studentservicescenter.stanford.edu": [15448], "wi-fi.org": [18366], "www.sourcefoundry.org": [21906], "www.arachnys.com": [1181], "streberix.de": [2024], "www.inps.it": [7776], "webmail.kairo.at": [8782], "molecularbrain.biomedcentral.com": [1931], "it.libreoffice.org": [9327], "benefit.nl": [1807], "www.sapphireforum.com": [14360], "mmail.psbank.ru": [13231], "ne-web.ucsd.edu": [17012], "feedback.assembla.com": [1301], "www.cabal.ws": [2714], "cloudfront.crimethinc.com": [3793], "akademikerf\u00f6rs\u00e4kring.se": [803], "national.com": [16225], "help.saba.com": [21710], "zupy.me": [2024], "jmconnexus.com": [20643], "go.axa.com": [2024], "as2.unm.edu": [17073], "intelliserver.net": [8219], "www.telecolumbus.de": [16138], "open.bbci.co.uk": [19332], "vobytm.com": [2024], "wordpressmultisite.washingtonpost.com": [18086], "inrtm.pl": [2024], "andreapaiola.name": [19197], "l.przenioslo.eu": [2024], "a--c.gq": [2024], "20s.mx": [2024], "righthaven.com": [13941], "www.poweredbypaquin.com": [13045], "www.liferay.com": [9348], "efok.us": [2024], "www.domdex.com": [4661], "thelondonpul.se": [2024], "getthene.ws": [2024], "*.siteor.com": [14950], "gifts.wustl.edu": [18089], "ras.ncl.ac.uk": [10926], "widgets-script.broadagesports.com": [19453], "abccommercial.com": [284], "live.xbox.com": [18639], "e.suntravel.xyz": [2024], "lnk.wdadams.com": [2024], "conradresear.ch": [2024], "bsess.co": [2024], "on.barrons.com": [2024], "brnd.work": [2024], "go4kill.co": [2024], "*.igalia.com": [7951], "msgardenia.co": [2024], "*.forums.sabnzbd.org": [14276], "blog.ashleymadison.com": [1277], "bee.gg": [2024], "go.aatg.net": [2024], "www.lucidchart.com": [9654], "panelsurveys.ic.nhs.uk": [10953], "alz.org": [949], "youtube.com.mx": [18800], "forms.trendmicro.com": [16791], "w.eitz.me": [2024], "x.darkcodex.com": [2024], "passwd.hu": [12466], "destructoid.com": [4384], "gcfr.co": [2024], "deviceids-meds-id4.wdr.de": [18113], "youtube.com.mk": [18800], "bmax.co": [2024], "mbrowser.yandex.by": [18739], "wtsdc.ethz.ch": [4967], "www.alexa.com": [843], "erelay.contentwatch.com": [3613], "serviceinfo.rescue.org": [21633], "rebelmuse.co": [2024], "talkw.me": [2024], "rac.co.uk": [13453], "mkj.es": [2024], "extension.uned.es": [17248], "pics.yaplakal.com": [22668], "asert.arbornetworks.com": [1185], "alphassl.com": [916], "on.omaha.com": [2024], "www.joejulian.name": [20648], "bluebird.com": [2159], "komsomolsk-na-amure.beeline.ru": [1778], "tribepad.com": [22284], "nop.oxfordjournals.org": [12222], "www.simple.com": [14884], "cbsprt.co": [2024], "static.1tv.ru": [88], "secure.nicovideo.jp": [11430], "dashboard.smartstream.tv": [15064], "sandeen.net": [14340], "api.sumologic.com": [15658], "khelil.info": [2024], "qlt.cc": [2024], "royalshell.me": [2024], "www.joomla.org": [8641], "ttower.tv": [2024], "lotto.gmx.net": [6330], "lca2014.linux.org.au": [9421], "nysinsurance.adr.org": [19086], "nokedli.444.hu": [183], "lauradar.by": [2024], "*.footlocker.ca": [5987], "cp.fonality.com": [3740], "conurl.de": [2024], "www.ecocampus.ens.fr": [4922], "r24617887.sync.app.asana.com": [1265], "chenzhe.co": [2024], "www.mtu.edu": [9816], "uu.se": [17153], "full.bnkomi.ru": [19417], "srt.voodoo.ie": [2024], "*.247ilabs.com": [103], "secure.fera.defra.gov.uk": [4298], "www.communityservice.wustl.edu": [18089], "it.iu.edu": [8069], "action.popin.cc": [12954], "pulse.conviva.com": [3633], "gravatar.oschina.net": [11702], "gbnews.tv": [2024], "iovisor.org": [20564], "ftp3.usa.openbsd.org": [11955], "www.shambhalamountain.org": [14717], "taapp.co": [2024], "mediakit.inc.com": [8045], "visualgamer.net": [2024], "add.org": [19075], "phryanjr.co": [2024], "store.bittorrent.com": [1974], "urlf.nl": [2024], "www.buyveteran.com": [2486], "www.aldi.es": [357], "h.pflueger.org": [2024], "deco.proteste.pt": [4275], "www.a1.net": [261], "glo.wustl.edu": [18089], "lfg.com": [20823], "www.waverly.gov.uk": [22538], "jcsho.es": [2024], "gmktg.co": [2024], "ra-ptc.moodys.com": [21020], "s1.marketwatch.com": [10029], "hr.3.boardgamearena.com": [2182], "books.theregister.co.uk": [22182], "*.booredatwork.com": [2229], "dlib.bc.edu": [1527], "thelink.rit.edu": [13493], "www.freemovement.org.uk": [6120], "scripturaengage.com": [14486], "autobytel.com": [1449], "www.zumzi.com": [19023], "krlc.us": [2024], "utro.europaplus.ru": [20034], "omp.md": [2024], "litlmagpi.co": [2024], "bdlne.ws": [2024], "t.omlee.net": [2024], "pb-assets.tedcdn.com": [15871], "crz.gov.sk": [15037], "ipv6.da.gd": [4092], "www.platba.cz": [21438], "emlk.co": [2024], "deepdyve.com": [4282], "www.tweetdeck.com": [16942], "ctrv.us": [2024], "nelonen.fi": [11180, 11181], "senate.gov.ph": [14636], "server.cpmstar.com": [2661], "files.curse.com": [3927], "marvarc.co": [2024], "rage3d.com": [13586], "alaskaair.com": [824], "www.dniester.ru": [19858], "sip.stoloto.ru": [21996], "clickfu.se": [2024], "www.freedesktop.org": [6102], "patchwork.ozlabs.org": [12228], "haslerandkim.ca": [2024], "final4ever.com": [5804], "jfox.cc": [2024], "trouvons.org": [6075], "acluofnorthcarolina.org": [306], "www.tpb.run": [16306], "w.oito.co": [2024], "www.affiliatetracking.com": [746], "groupersocialclub.com.au": [6951], "bitstamp.net": [2043], "smize.me": [2024], "redfern.me": [13752], "atmn.co": [2024], "advntrcats.org": [2024], "agresso.plymouth.ac.uk": [12873], "clicky.visophyte.org": [17866], "cunb.com": [2767], "vjp.me": [2024], "giog.io": [2024], "gem.co": [6497], "corp.7-eleven.com": [227], "on.nrdc.org": [2024], "ciclo.me": [2024], "baty.link": [2024], "tradelab.fr": [16715], "s.ul.com": [2024], "account.liu.se": [9097], "archive.sneakerfreaker.com": [21880], "quartet-web.com": [2024], "ssl.cdne.cpmstar.com": [2661], "www.piratenpartij.nl": [12741], "epicpics.co": [2024], "agilisys.tms-media.co.uk": [22223], "n.que.es": [2024], "mcmichel.info": [2024], "dot.me": [2024], "bin-store.com": [1916], "profile.allnokia.ru": [19153], "weneedtoknow.info": [18120], "cake.ly": [2024], "internal.psychology.illinois.edu": [17346], "gllv.org": [2024], "asl.ink": [2024], "sc.sedo.com": [14604], "dsply.com": [17664], "sf.a2star.com": [2024], "cypherpunk.at": [2711], "rb1.stockport.gov.uk": [21994], "www.kutv.com": [8770], "heise-gruppe.de": [7288], "freelyshout.com": [20163], "businessadvice.anz.com": [374], "r.mechcraft.ru": [2024], "www.bookmarks.offog.org": [11793], "rebs.co": [2024], "enfoto.eu": [2024], "www.medialoot.com": [10187], "qlogo1.store.qq.com": [13329], "shknws.com": [2024], "fuwu.alibaba.com": [857], "intimm.oxfordjournals.org": [12222], "l.hitravel.xyz": [2024], "s2mediadigital.com": [14119], "www.vayable.com": [17666], "tsq.li": [2024], "irc.belwue.de": [1802], "media.lpgenerator.ru": [20879], "oir-jubilee.friday.ru": [20175], "static.fulltraffic.net": [6231], "scenemusic.net": [14403], "ffdo.gs": [2024], "www.yougov.de": [18796], "go.butter.ai": [2024], "adhocracy-cms.liqd.net": [9456], "registry.neustar.biz": [11320], "metcombank.ru": [10336], "lp.im9.eu": [20496], "vu.nl": [17608], "press.dwolla.com": [4808], "www.discovermerchants.com": [4539], "business.cinesport.com": [3145], "images.a.switchadhub.com": [15764], "home.ie.cuhk.edu.hk": [2704], "btb.me": [2024], "it.lastminute.com": [9177], "www.xiscosoft.es": [18668], "vhffs.org": [22457], "gower62.illuminateed.com": [20494], "popcorntime-online.io": [21461], "dlasklepow.ceneo.pl": [2944], "hiref.ly": [2024], "r--r.ml": [2024], "robots.thoughtbot.com": [16462], "www.onlinethreatalerts.com": [11915], "msh.ms": [2024], "hanselman.com": [14458], "ebks.to": [2024], "downloads.mailchimp.com": [9893], "blogs.uv.es": [17544], "test.app.qdaily.com": [21554], "www.dfranke.us": [4091], "z5.hitravel.xyz": [2024], "jamesb.photos": [2024], "origin.collective-media.net": [3422], "t.jrollans.com": [2024], "ecare.primustel.ca": [21498], "vmd.defra.gov.uk": [4298], "*.notex.ch": [11478], "aegon.me": [2024], "s.alc.jp": [2024], "inspiration.primelocation.com": [21497], "www.buycott.com": [2487], "i500.mycdn.me": [10866], "secure-ds.serving-sys.com": [14687], "orders.bittorrent.com": [1974], "www.giving.umd.edu": [17351], "www.hackforums.net": [7139], "a.tbcdn.cn": [16047], "www.nexcess.net": [11396], "overcast.fm": [12193], "www.mlsecproject.org": [9776], "mech.sc": [2024], "slovari.yandex.by": [18739], "www.esper.net": [5350], "smrtwat.ch": [2024], "simplefin.org": [14885], "ccr.cancer.gov": [2819], "www-s.scs.illinois.edu": [17346], "community.adr.org": [19086], "go.cms.gov": [2024], "www.citizenlab.org": [16258], "theca.org": [2024], "www.picert.it": [12289], "www.webmail.kairo.at": [8782], "s.chingkiu.me": [2024], "housting.de": [11216], "s.axbm.us": [2024], "avantar.com": [1466], "elpais.com": [5126], "donanim.link": [2024], "www.warthunder.ru": [22530], "l.gswk.de": [2024], "submissiontechnology.co.uk": [15627], "i0.sinaimg.cn": [14910], "l.isoin.es": [2024], "diasporabrazil.org": [4437], "www.curetheitch.com": [3923], "on.bbz.cc": [2024], "sosstud.io": [2024], "steamspy.com": [15523], "emr.ca": [2024], "tula-region.auto.ru": [19276], "www.btc-e.nz": [19460], "dustystyx.deathmask.net": [4254], "wst.s-msn.com": [14115], "buyfl.at": [2024], "www.witness.org": [18472], "engd.in": [2024], "customsu.it": [2024], "mney.co": [2024], "ctia.it": [2024], "trrd.ca": [2024], "www.frontiersin.org": [6204], "vendosupport.com": [17694], "help.1and1.com": [69], "poivy.com": [12898], "console.appuio.ch": [1168], "www.caadence.bme.hu": [1556], "www.libraries.io": [9319], "ffeeds.co": [2024], "tcfc.bz": [2024], "sd1.jalan.net": [2024], "geekpark-img.qiniudn.com": [6476], "sunur.us": [2024], "www.crm-metrix.com": [2672], "go.haji.ca": [2024], "pervasive.aau.at": [281], "cancersheadneck.biomedcentral.com": [1931], "lh2.google.*": [6821], "tizen.ly": [2024], "aboutcomment.dftoutiao.com": [19826], "www.fandago.com": [5641], "mvideos.stanford.edu": [15448], "youtube.at": [18800], "www.bethesignal.org": [1847], "moncompte.sansfil.primus.ca": [13112], "*.wineaustralia.com": [18441], "link.973.mx": [2024], "www.kpt.ch": [8762], "ads7.contentabc.com": [3614], "www.lsi.us.es": [17502], "partners.friday.ru": [20175], "mdcc.uk": [2024], "go.nboa.org": [2024], "ird.io": [2024], "ti.me": [2024], "www.chitaitext.ru": [19584], "kus.bz": [2024], "www.mobile.learnerview.ofsted.gov.uk": [21231], "git.pwmt.org": [13306], "zapy.com": [2024], "secureimages.mcafee.com": [10129], "l.uptvector.com": [2024], "*.grcmc.org": [6873], "c0.rgstatic.net": [13481], "radio.kingdomofloathing.com": [1331], "*.mmoga.com": [9780], "ianm.biz": [2024], "www.correctiv-upload.org": [3685], "doemeispp.org": [19864], "v1.go2yd.com": [20274], "tired.bz": [2024], "bso.bradford.gov.uk": [2282], "www.pccasegear.com.au": [12251], "wien.neos.eu": [10941], "networksgroup.com": [11249], "na.h1.cz": [2024], "prj.gd": [2024], "louderthanwar.com": [9627], "hilton.7eer.net": [233], "entportal.aws.ieeeusa.org": [7720], "leandr.in": [2024], "ftp-stud.hs-esslingen.de": [7449], "www.adobeexchange.com": [671], "matl.in": [2024], "btbu.co": [2024], "hertzequipsales.com": [7371], "media.arstechnica.com": [1242], "secureimg.allposters.com": [882], "www.futureboy.us": [6264], "support.gravity.com": [6884], "git.goeswhere.com": [6788], "www.proxysite.com": [13226], "s.r2x9.info": [2024], "malem.info": [2024], "grvy.is": [2024], "fortum.com": [6036], "www.indprop.gov.sk": [15037], "cib.st": [2024], "anb.tw": [2024], "t.jibe.com": [2024], "sxscom.uk": [2024], "skbr.info": [2024], "log.affiliate.rakuten.co.jp": [13594], "d-link.jd.com": [8436], "moscow.sci-hub.io": [14436], "vik.so": [2024], "*.duraspace.org": [4800], "weww.ipleak.net": [20571], "www.airbnb.lu": [793], "tictail.com": [16502], "itmanie.cz": [7851], "se.indiza.com": [2024], "dar.fm": [3996], "cpbuswiki.duoshuo.com": [19906], "aleksin.biglion.ru": [19375], "join.girlsoutwest.com": [6648], "nccl.eu": [2024], "grp02.id.rakuten.co.jp": [13594], "omsk.biglion.ru": [19375], "leserservice.kicker.de": [8895], "cdn-3.sundul.us": [2024], "to.joshmal.in": [2024], "scotlandsuniversities.holyrood.com": [20393], "mail.evotronix.com": [5453], "vote.sfconservancy.org": [15165], "waska-anwender.intevation.de": [8293], "idol.pe": [2024], "twitter.com": [16965], "www.kylie.com": [20766], "fr.aegeanair.com": [6896], "shup.me": [2024], "www.wikidevi.com": [18386], "style.aliunicorn.com": [866], "bigde.al": [2024], "ux.jpcyr.com": [2024], "s1-money.yamedia.tw": [18734], "news.rambler.ru": [13600], "cskhviettel.com": [2024], "assets-news.vice.com": [17754], "3nr.de": [2024], "dustin.eu": [4803], "refer.valleyfirst.com": [17620], "jimmykuu.duoshuo.com": [19906], "telecomindustrydialogue.org": [16139], "developer.microsoft.com": [10396], "alphawolf.org": [2024], "u.confetti.cool": [2024], "jahb.li": [2024], "beta.act-on.com": [19054], "ohloh.net": [11803], "link.gregg.io": [2024], "img6.cache.netease.com": [11228], "zephy.ru": [2024], "morm.gent": [2024], "images.pangora.com": [12390], "bikeability.dft.gov.uk": [19825], "kcrns.de": [2024], "moscow.sci-hub.bz": [14436], "flynnlink.com": [2024], "bdlnk.co": [2024], "freshbooks.com": [6180], "secure.promotionalads.yahoo.co.jp": [18730], "www.soldierx.com": [15184], "hungryhouse.co.uk": [7625], "hout.me": [2024], "support.sirsidynix.com": [21838], "purehonda.co": [2024], "s.abc.or.jp": [2024], "blog.bitlendingclub.com": [1961], "www.edg.com": [4883], "dctv.me": [2024], "contributorsystems.gettyimages.com": [6604], "pmisportal.axosoft.com": [1504], "4wd2.us": [2024], "nxtr.co": [2024], "me.shopicks.com": [2024], "www.kickasstorrents.to": [8894], "ebm.im": [2024], "sockassist.com.au": [16172], "www.chakraos.org": [2990], "awisechoice.co": [2024], "www2.oh.cz": [2024], "help.perle.com": [12607], "un.me": [2024], "fokuseuropa.de": [10322], "m-a-g.taobao.com": [16015], "blog.picnichealth.com": [12694], "bit.wetap.com": [2024], "bane.beget.com": [19347], "golf.lemonde.fr": [9204], "js-r.co": [2024], "at.adrlam.com": [2024], "myfcj.me": [2024], "*.yunpan.360.cn": [142], "privacyfoundation.ch": [21500], "act.thesyriacampaign.org": [22190], "dta.to": [2024], "www.vonage.co.uk": [17927], "pics.crucial.de": [3828], "i.cads.cz": [2024], "www.derpiboo.ru": [4368], "tnspostalplatformrmd-uat.tnsglobal.com": [15906], "www.ausinfotech.net": [1400], "wiki.alpinelinux.org": [918], "online.usc.edu": [17366], "octbr.co": [2024], "www.justgetflux.com": [5935], "serverpilot.io": [14669], "caireinc.io": [2024], "harlandclarke.com": [7199], "*.pointroll.com": [12896], "lifesty.ms": [2024], "exeter.ac.uk": [17339], "www.egotastic.com": [5104], "clickdelivery.gr": [3258], "developers.mobile.conduit.com": [3566], "ccc.de": [2553], "sbts.co": [2024], "wh0rd.org": [22573], "amormag.co.uk": [2024], "www.bulkorder.ftc.gov": [5710], "go.cryptelo.com": [2024], "sklep.payback.pl": [21363], "renew.ge": [2024], "api.sedo.com": [14604], "graybox.co": [2024], "la-hora.org": [17203], "madate.ch": [2024], "libraries.midlothian.gov.uk": [10407], "it.m.xhamster.com": [18606], "minkpo.permkrai.ru": [21390], "webmail.noxa.de": [21174], "mca-marines.org": [9737], "jos.sc": [2024], "agent.alfabank.ru": [849], "*.b-static.net": [2185], "groupon.co.uk": [6956], "eer.ru": [19963], "gu360.georgetown.edu": [6531], "oc3.in": [2024], "syb.la": [2024], "vpsfree.cz": [22506], "help.metasploit.com": [10335], "www.facultysenate.wustl.edu": [18089], "clotai.re": [2024], "pbebank.com.my": [13249], "retargeting.sklik.cz": [14980], "go.augusta.edu": [2024], "go.mbbe.org": [2024], "i3.3conline.com": [169], "git45.rostrud.ru": [21677], "jon.cl": [2024], "p5.zdassets.com": [18905], "youtube.lt": [18800], "forums.malwarebytes.org": [9941], "plot.ly": [12860], "*.hs.llnwd.net": [9373], "harp3r.xyz": [2024], "defectivebydesign.org": [4290], "newlook.com": [11348], "www.card.wustl.edu": [18089], "oomphme.com": [11932], "ieee.org": [7719], "verzekeringssite.nl": [17735], "planpa.peterborough.gov.uk": [12625], "s18.postimg.org": [13024], "newspr.es": [2024], "maig.us": [2024], "gobrian.co": [2024], "default.kei.pl": [8855], "barnsley-consult.objective.co.uk": [21225], "atech.io": [426], "avv.de": [1485], "rollingp.in": [2024], "www.passmark.com": [12458, 12459], "www.eurexchange.com": [5390], "*.ford.com": [5998], "buoywt.hr": [2024], "www.sda.it": [14151], "danhlode.com": [4133], "www.gdata.at": [6272], "ml.mageia.org": [9865], "*.customersaas.com": [3935], "link.vietimg.vn": [2024], "consultations.southglos.gov.uk": [15257], "fz.my": [2024], "www.impactradius.com": [8015], "tnspostalplatformwebapi-uat.tnsglobal.com": [15906], "mail.iu.edu": [8069], "telekom.sky.de": [14990], "charter.net": [3027], "www.yourdatelink.com": [18819], "airvpn.org": [792], "mywot.net": [10841], "www.carousell.com": [2870], "jsta.xyz": [2024], "upload.sms.cam.ac.uk": [17332], "techtekk.uk": [2024], "ma.ki": [2024], "pro.hostingas.lt": [21503], "app.ghosteryenterprise.com": [6614], "style.taobao.com": [16015], "enm.ax": [2024], "signup.leagueoflegends.com": [9220], "www.pc-cooling.de": [21366], "tnt.aufbix.org": [1390], "deviceids-medt-id1.wdr.de": [18113], "wetter.tagesschau.de": [22086], "trailers.apple.com": [1151], "www.f5networks.co.jp": [5538], "cio.com.au": [2622], "wiki.documentfoundation.org": [16295], "crm.vdv.de": [17564], "slolpcf.alfabank.ru": [849], "www2.extensis.com": [5513], "forums.offensive-security.com": [11773], "dab.im": [2024], "*.docstoccdn.com": [4611], "intranet.engineering.osu.edu": [11797], "svar.regjeringen.no": [13800], "e-trademark.ige.ch": [15759], "go.shell.com": [2024], "culm.unizar.es": [17441], "rbc.ua": [21592], "und.st": [2024], "cheetahmail.com": [3059], "mazacoin.org": [10120], "detini.gov.uk": [19815], "ms.ligatus.com": [9356], "app.gusto.com": [7010], "unite.unity.com": [17310], "www.ftb.ca.gov": [2759], "www.rhb.ch": [13914], "cloudstor.aarnet.edu.au": [278], "fit-kat.com": [2024], "redli.ne": [2024], "ksa.skyscanner.net": [15006], "ithrive.online": [2024], "img03.sogoucdn.com": [15169], "*.wapy.com": [17987], "www.t66y.com": [22079], "aru.li": [2024], "pidgin.im": [12703], "testdata.de.coremetrics.com": [3665], "josm.openstreetmap.de": [12014], "tixa.to": [2024], "g.liveinternet.ru": [9500], "activatejavascript.org": [547], "stgil.es": [2024], "imss-test-storage.ads.caltech.edu.s3.amazonaws.com": [2771], "actumot.eu": [2024], "synchronicer.dk": [15794], "www.mediciglobal.com": [10204, 10205], "short.cghost.de": [2024], "www.ondeck.com": [21251], "wprk.eu": [2024], "rants.scribus.net": [14478], "clientupdate-v6.cursecdn.com": [3927], "texthelp.com": [16233], "id.redhat.com": [13735], "kliq.us": [2024], "lab.facepunch.com": [5613], "localoffer.cumbria.gov.uk": [19742], "mmpow.com": [2024], "www.okura.nl": [11816], "disili.co": [2024], "www.ccc.de": [2553], "lynxtech.no": [9694], "sgnln.co": [2024], "www.3joycasino.com": [20654], "anthrocon.org": [1101], "is.hkjc.com": [20384], "jobthread.com": [8607], "thetrainline.com": [16317], "www.ticketportal.sk": [16497], "www.cars.com": [2874], "claykil.by": [2024], "www.wintiewin.com": [18422], "www.teamgaslight.com": [16065], "store.unwire.hk": [17460], "alimama.com": [862], "minino.galpon.org": [20198], "starktou.ch": [2024], "odont.uio.no": [17414], "deutschland.isidewith.com": [20466], "www.andrewmunsell.com": [1045], "www-stage.websitealive.com": [18242], "img3.refresher.sk": [13781], "on.theknife.net": [2024], "dlc.com": [2024], "www.flocabulary.com": [5915], "crowd.te-st.ru": [22103], "www.fineproxy.org": [5830], "srtn.co": [2024], "redtri.co": [2024], "www.wingware.com": [18444], "cdn.blog-sap.com": [14129], "www.sunglasswarehouse.com": [15666], "www.qupzilla.com": [13432], "s.dokuha.jp": [2024], "nextregister.com": [11401], "02.rkn.gov.ru": [13971], "cbtpe.co": [2024], "www.7chan.org": [231], "passets-lt.pinterest.com": [12731], "www.t-nation.com": [15838], "img04.static-nextag.com": [11402], "www.tesco.com": [16205], "webconverger.com": [22543], "jobs.netways.de": [11300], "livebeta.dagbladet.no": [4102], "www.zenspider.com": [18931], "static.balboa.io": [1649], "maurus.net": [10097], "www.lvmanagement.com": [9171], "wyn.lv": [2024], "paraschetal.in": [21344], "onlineappointments.becu.org": [1535], "wcma.williams.edu": [18408], "jobs.timeshighereducation.com": [16539], "server.iad.liveperson.net": [2730, 9505], "widgets.membership.microsoft.com": [10395], "*.businesswire.com": [1818], "www.oops.org": [11933], "webapps.nikhef.nl": [11441], "123p2.sogoucdn.com": [15169], "bof.nl": [1564], "vhf.de": [22456], "about.bitso.com": [2040], "rezbar.com": [2024], "www.nitetimetoys.com": [11465], "discourse.codecombat.com": [3362], "ucla.worldcat.org": [18536], "www.monde-diplomatique.fr": [21011], "viana.us": [2024], "tahetorn.ut.ee": [17148], "ja.socialclub.rockstargames.com": [13997], "mca.bz": [2024], "edu.netbeans.org": [11223], "dcc.life": [2024], "jhand.co": [2024], "campusglobal.upf.edu": [17471], "tineye.com": [16543], "*.airasia.com": [789], "txts.be": [2024], "cseo.me": [2024], "webconf2.itsc.cuhk.edu.hk": [2704], "*.infra-fuerth.de": [8134], "www.simply-partner.com": [14895], "n1.octostatic.com": [11757], "wwwu.zr.ru": [22725], "reports.informationweek.com": [16999], "brook.gs": [2024], "seclab.cs.washington.edu": [17376], "www.independentmail.com": [8060], "goge.tv": [2024], "icq.com": [7695], "ibxa1ffl9q5lji2ivql5qdjsio656ovsv48pgf0q.ipleak.net": [20571], "proxmox.com": [13223], "www.davissystem.net": [4220], "www.programmableweb.com": [13177], "m.zalando.dk": [18877], "superdesk.org": [22038], "s.taobao.com": [16015], "www.eee.hku.hk": [20387], "claretsy.com": [2024], "mo.joweg.com": [2024], "www.acluofnorthcarolina.org": [306], "laughingsquid.com": [20786], "hey.satchb.ag": [2024], "srvporta.tpprf.ru": [22260], "digitalnepal.cf": [2024], "www.dnainfo.com": [19857], "the-body-shop.ch": [3646], "ouidad.cm": [2024], "c.yam.com": [18734], "www.cdig.me": [2925], "www.improper.com": [8023], "chfi.cc": [2024], "falpn.ch": [2024], "adserver.71i.de": [14694], "go.mediaco.asia": [2024], "fresques.ina.fr": [7769], "tml.engineering.osu.edu": [11797], "www.ratfishoil.com": [13636], "freedns.afraid.org": [751], "agtoday.us": [2024], "api.7digital.com": [232], "wellness.stanford.edu": [15448], "www.cahiers-antispecistes.org": [2733], "www.userscripts-mirror.org": [17523], "www.apture.com": [6817], "pjmedia.com": [12293], "www.nelly.com": [11179], "drnth.nl": [2024], "www.radiokniga.com": [21572], "*.iljmp.com": [7967], "northbrookne.ws": [2024], "viajo.bi": [2024], "go.flaviu.co.uk": [2024], "pmm.gsfc.nasa.gov": [10909], "gacollege411.org": [6282], "s1.hao123img.com": [20340], "ardour.org": [1204], "lobby.slu.se": [14195], "disqus.com": [4559], "www.hertz.at": [7336], "www.wpx.ne.jp": [18559], "*.pkware.com": [12295], "heckrath.net": [7279], "accounts.9gag.com": [252], "nosax.me": [2024], "embed.newsinc.com": [11376], "dashboard.manyvids.com": [9976], "www3.software.ibm.com": [7679], "startovac.cz": [21979], "duld.es": [2024], "idea.nottingham.ac.uk": [11567], "jdbr.space": [2024], "www.cooltrainer.org": [19682], "knowledge.hsbc.co.uk": [20422], "sfc.hk": [14706], "www.mywot.net": [10841], "defora.org": [4297], "bad-dragon.com": [19300], "www.pccu.edu.tw": [12250], "l.saemi.biz": [2024], "theoddsbible.com": [22172], "t.aquafadas.com": [2024], "ec.sascdn.com": [15049], "im.post.ch": [12996], "edge.centrify.com": [19546], "isetsk.admtyumen.ru": [19082], "trip.dss.un.org": [17057], "sql2.endora.cz": [5237], "pcn.birmingham.gov.uk": [19380], "athleete.co": [2024], "mate-look.org": [10075], "planet.fedoraproject.org": [5716], "itrgo.co": [2024], "www.cfjlab.fr": [2604], "shtl.dk": [2024], "www.steamid.eu": [15520], "zaveadmin.delfi.lv": [19800], "mkt.rocks": [2024], "read.jd.com": [8436], "www.mediawatch.dk": [10178], "dermsk.in": [2024], "yay.deals": [2024], "netstorage.lequipe.fr": [20811], "freemarketlite.cc": [6104], "www.boell.de": [2192], "swp.stanford.edu": [15447], "payments.sky.com": [14989], "akta.me": [2024], "againf.as": [2024], "aaltodoc.aalto.fi": [447], "www.golfdigestinsiders.com": [6808], "andib.tk": [2024], "opentabs.net": [12081], "o.icetravel.xyz": [2024], "forms.valeofglamorgan.gov.uk": [17619], "my.viaduct.io": [17749], "eamf.ca": [2024], "*.inwx.net": [8230], "www.premiagi.ru": [21483], "url.skg.io": [2024], "dct.im": [2024], "hcne.ws": [2024], "blueorigin.com": [2157], "learning.ornl.gov": [11730], "*.blogspot.com.co": [2127], "wiki.tools.ietf.org": [7725], "gucq.org": [2024], "go.erchima.net": [2024], "customercenter.local.ch": [9548], "neowin.net": [11198], "metrix.net": [10345], "fey.li": [2024], "s.fquff.io": [2024], "home.jd.com": [8436], "uk.megabus.com": [10244], "content.dn.se": [19856], "cfengine.com": [2603], "ambercutie.com": [19180], "jygb.us": [2024], "stmp.us": [2024], "toutiao.weibo.cn": [18277], "info.cyberplat.ru": [3965], "smugmug.com": [15078], "huawei.tmall.com": [22222], "bernina-zuerich.ch": [1827], "forum.ovh.pl": [12205], "huobi.com": [7628], "sv.uio.no": [17414], "artsn.in": [2024], "www.machinegunsvegas.com": [9844], "forum.ovh.pt": [12205], "tgrbt.bz": [2024], "www.upc-cablecom.biz": [22386], "skvc2016.com": [2024], "stat.lanta-net.ru": [20782], "l.testa.im": [2024], "pixel.adsafeprotected.com": [592], "mmdia.es": [2024], "atcel.info": [2024], "chromsci.oxfordjournals.org": [12222], "www.vectormediagroup.com": [17676], "www.islam4u.com": [8365], "www.vk.com": [17578], "l.grecnar.sk": [2024], "lkfd.us": [2024], "mymarshall.usc.edu": [17366], "pxlssl.ibpxl.com": [8279], "espo4.me": [2024], "evidens.link": [2024], "www.accessguardian.com": [502], "linutronix.de": [9404], "passport.webmoney.ru": [18173], "thisis.xxx": [2024], "www.madeinafreeworld.com": [9855], "radiocane.info": [21571], "cdn.cdncomputer.com": [2929], "mysw.in": [2024], "imfimg.com": [7992], "4lc.fr": [2024], "www.calameo.com": [2748], "admin.starproductreviews.com": [15461], "www.e4ward.com": [4858], "arb.rt.com": [13528], "es.piliapp.com": [12706], "smartertrack.com": [15059], "panoptique.boum.org": [2261], "systems.cse.iitb.ac.in": [7748], "openview.vc": [2024], "www.nknews.org": [10974], "about.magento.com": [9868], "laustri.at": [2024], "betabls.bertrams.com": [1850], "gdlo.co": [2024], "sparto.be": [2024], "norge.no": [11521], "l.mahifx.com": [2024], "www.codeofconduct.wustl.edu": [18089], "huizespoorloos.squat.net": [21955], "www.playerattack.com": [12838], "events.ya.ru": [18716], "rateip.com": [13634], "gadebate.un.org": [17057], "webpush.wechat.com": [18116], "certification.typo3.org": [15959], "images.autobytel.com": [1450], "assets.lego.com": [9082], "*.trustpass.alibaba.com": [857], "www.ilc.cuhk.edu.hk": [2704], "dev0n.io": [2024], "prism-break.org": [12318], "tabelas.alhur.es": [19137], "www.coolcart.net": [3639], "hmny.co": [2024], "*.myheritage.se": [10875], "www.econda.de": [5050], "lota.co": [2024], "www.silkroad.ws": [14857], "cdme.osu.edu": [11797], "cdn.proxer.me": [13220], "www.hybrid-analysis.com": [7645], "pdp.one": [2024], "affres.org": [2024], "muslimissues.com": [10763], "at.wasaweb.net": [2024], "homer.play-asia.com": [12828], "s.delmore.io": [2024], "www.moz.com": [21029], "community.artemis-ia.eu": [1254], "pic.36krcnd.com": [154], "whatbox.ca": [18328], "fws.jd.com": [8436], "static.nzz.ch": [21216], "x3.chaucanh.net": [2024], "www.thesexyhouse.com": [14704], "live.kent.ac.uk": [17402], "joy-kazino.com": [20654], "pla.nr": [2024], "*.shutterstock.com": [14816], "www.admin.asmp.org": [990], "nlawn.ca": [2024], "energydesk.greenpeace.org": [6920], "www.odessa.tv": [21229], "www.nettitude.com": [11295], "noreplied.com": [11520], "yichun.jd.com": [8434], "www.123contactform.com": [34], "images1.videolan.org": [17775], "www.bitwig.com": [2048], "1984.live": [58], "www.just-eat.ca": [20671], "static.un.org": [17057], "web.north-herts.gov.uk": [11532], "anybalance.ru": [1112], "freifunk.net": [6170], "www.i2p2.de": [7663], "clas.georgetown.edu": [6531], "doki.co": [19865], "www.travelplan.gr": [16768], "tra.visaust.in": [2024], "picktheset.com": [2024], "ttgami.ng": [2024], "ajff.us": [2024], "10wrdnws.com": [2024], "passport.qcloud.com": [13346], "store.origin.com": [12141], "kaidian.amazon.cn": [19168], "wald0.com": [22519], "lxui.de": [2024], "www.mageia.org": [9865], "*.marinedepot.com": [10006], "events.dji.com": [4029], "tijhu.is": [2024], "britiish.esy.es": [2024], "m.seferler.yandex.com.tr": [18740], "static.bauercreative.net": [19328], "cz.mbank.eu": [9733], "www.levo.com": [9290], "xmlrpc.istockphoto.com": [20595], "ln.dotfold.io": [2024], "mentalhealth.org.uk": [20962], "agc.pw": [2024], "web1.login.cornell.edu": [3676], "doth.me": [2024], "www.opentechfund.org": [12019], "jeu.gd": [2024], "www.expresscoin.com": [5508], "s.st-hunter.com": [2024], "sbsfren.ch": [2024], "b.lsr7.com": [2024], "www.openlibrary.org": [12050], "support.vodafone.co.uk": [17900], "pollshare.me": [2024], "swlive.link": [2024], "odense.basekit.com": [19323], "reverse.put.as": [13299], "superplus.sovcombank.ru": [21914], "u.mtk.me": [2024], "*.wishabi.ca": [18462], "plumaz.co": [2024], "subscribe.smithsonianmag.com": [15073], "www.lime-technology.com": [20841], "restorethefourth.net": [13874], "ist.utl.pt": [16098], "qianxi.jd.com": [8434], "www.artvillage.club": [19240], "hiaa.us": [2024], "www.wwte3.com": [18031], "ngkf.dlobel.com": [2024], "www.bettersales.se": [1858], "stores.vodafone.co.nz": [17899], "itsdanbull.com": [4124], "asset-b.soup.io": [15235], "www.om.nl": [12062], "www.babymed.com": [1617], "joegut.com": [2024], "mbitcasino.com": [20938], "www.lesinrocks.com": [9273], "l.trsv.co": [2024], "mirust.permkrai.ru": [21390], "kidcityteam.com": [2024], "audio-video.savannah.gnu.org": [6337], "cdn.localizejs.com": [20864], "mrlv.yt": [2024], "oauth.live.com": [9495], "owl.english.purdue.edu": [12210], "www.tr.im": [16697], "go.desdebox.es": [2024], "webmail.mykolab.com": [10811], "pomdrssg.com": [2024], "wpw.mx": [2024], "anou.biz": [2024], "hip.moe": [2024], "www.training.nih.gov": [11090], "www.airbnb.co.uk": [793], "windowshopping.11main.com": [31], "learnm.re": [2024], "prisma-it.com": [13124], "ghstatus.dge.carnegiescience.edu": [2867], "samara.te-st.ru": [22103], "storeimages.apple.com": [1151], "1da1e103-3b59-8638-dcb3-65860715ffca-rum.cdnvideo.ru": [19536], "www.zpchips.com": [18857], "faq.erc.edu": [4941], "connect.gettyimages.com": [6604], "stjo.me": [2024], "myorders.sky.com": [14989], "athome.axonify.com": [1502], "home.publons.com": [21538], "puyang.jd.com": [8434], "images2.variety.com": [17656], "debconf15.debconf.org": [4257], "j.cuoluo.com": [2024], "s2erc.georgetown.edu": [6531], "grph.me": [2024], "tmi.twitch.tv": [16961], "www.eventim.*": [5433], "www.noscript.net": [11477], "app.paymoapp.com": [12514], "mail.fightaging.org": [5771], "www.ausgamers.com": [1398], "cssiw.gov.wales": [6843], "wild.worldcat.org": [18536], "tnspostalplatformau.tnsglobal.com": [15906], "cnn.com": [2649], "shop.fightforthefuture.org": [5770], "cts.tradepub.com": [16718], "careers.unit4.com": [22378], "yourcounciljobs.co.uk": [18825], "grd.to": [2024], "gmx.com.tr": [6330], "avoiceformen.com": [444], "m.f.ix.de": [8417], "presinst.link": [2024], "huid.ad.360.cn": [142], "www.neighbourhoodalert.co.uk": [21100], "v6.hitravel.xyz": [2024], "*.thumbs.redditmedia.com": [13749], "biodatamining.biomedcentral.com": [1931], "docs.asp.net": [413], "jdidonato.tk": [2024], "www.richarddawkins.net": [13928], "omnia.turris.cz": [16918], "iamro.be": [2024], "postimg.io": [13024], "asecu2016.anadolu.edu.tr": [1029], "istockpho.to": [2024], "trbs.it": [2024], "*.blogspot.sk": [2127], "frisk.in": [2024], "*.blogspot.si": [2127], "*.blogspot.sn": [2127], "www3.hants.gov.uk": [7185], "okl1-scene7.insnw.net": [8175], "disel.enaza.ru": [5222], "www.probation.homeoffice.gov.uk": [20399], "*.blogspot.sg": [2127], "*.blogspot.se": [2127], "poormanmotorsports.com": [12947], "www.voipuserportal.co.uk": [22491], "gdc.georgetown.edu": [6531], "support.okta.com": [11814], "auth.x5.ru": [18590], "adgate.cf": [2024], "www.khpi.com": [8863], "m.airbnb.de": [793], "apd440.gsfc.nasa.gov": [10909], "industrybotnetgroup.org": [8082], "2345.com": [98], "blog.replicant.us": [13840], "to.xploray.com": [2024], "mail.zoho.com": [18984], "*.condosforeveryone.com": [3563], "www.amoena.us": [1023], "madboa.com": [9854], "www.freerunet.ru": [20166], "forums.archlinux.fr": [1189], "so-ve.info": [2024], "media.friendfinder.com": [6192], "wmk.me": [2024], "whosampled.com": [18354], "tny.be": [2024], "frge.co": [2024], "maticulo.us": [2024], "karavaevo.beeline.ru": [1778], "ff.connextra.com": [3588], "*.libravatar.org": [9325], "frcst.co": [2024], "blogs.aalto.fi": [447], "cscglobal.com": [3684], "www.unbridled.info": [17241], "brdgm.xyz": [2024], "happybearsoftware.com": [20341], "trainingcamp.tokyo2020.jp": [22230], "tny.bz": [2024], "fm.baden-wuerttemberg.de": [19302], "awsm.link": [2024], "www.intego.com": [8202], "contact.rapida.ru": [13619], "sbmotor.co": [2024], "redferret.net": [13733], "maps.dwd.de": [19911], "www.tvmazecdn.com": [22328], "*.steelhousemedia.com": [15526], "f.dng.pw": [2024], "mgff.me": [2024], "career.stonybrook.edu": [15548], "it.vanderbilt.edu": [17646], "hcss.me": [2024], "ilove.gs": [2024], "f.mmportal.info": [2024], "roy.bz": [2024], "healthystart.nhs.uk": [10953], "rtna.me": [2024], "b.dora-kou.net": [2024], "casinoestrella.com": [2893], "ckclark.us": [2024], "beauty.taobao.com": [16015], "wakelet.com": [18047], "food.9tv.co.il": [257], "syntax.xtgem.com": [18688], "learn2.moodlerooms.com": [21018], "thrds.io": [2024], "sd1.citilink.ru": [19594], "cyberstreetwise.com": [3969], "u.alicdn.com": [853], "*.2.damoh.golem.de": [6804], "auto.newsru.com": [11388], "microbiology.georgetown.edu": [6531], "fwb40.us": [2024], "ho.ct.de": [2024], "polit.ru": [12914], "my.m.taobao.com": [16015], "on.3nz.it": [2024], "gqm.ag": [2024], "www.litecointalk.org": [9476], "wgtn.cc": [2024], "videos.usatoday.com": [17112], "my.vestacp.com": [17740], "ln.epitaph.name": [2024], "idonot.es": [2024], "www.youtube.tn": [18800], "advent-hub.okta.com": [11814], "v.visionect.com": [2024], "www.pinterest.com": [12731], "cb.ligatus.com": [9356], "www.monarch.co.uk": [10576], "occssl.payback.pl": [21363], "www.tosdr.org": [16597], "agreg.co": [2024], "adsafecontrol.com": [591], "fmc.unizar.es": [17441], "horax.us": [2024], "qconsf.com": [13324], "khabarovsk.biglion.ru": [19375], "www.gephardtinstitute.wustl.edu": [18089], "*.franken.de": [6081], "stoller.adv.br": [2024], "*.handy.de": [7181], "imammb.oxfordjournals.org": [12222], "static.sspai.com": [21962], "vanx.ga": [2024], "apollohq.com": [1156], "go.coscup.org": [2024], "on.wkyc.com": [2024], "jonni.es": [2024], "vrn.europaplus.ru": [20034], "www.strato.*": [14255], "www.nuxx.net": [11626], "distributed.net": [4564], "cache3-res.pressreader.com": [13081], "www.notalwaysfriendly.com": [21164], "miaprjct.com": [2024], "item.rakuten.co.jp": [13593], "support.serverdensity.com": [14675], "*.re.is": [13469], "pudmaf.tk": [2024], "app.littlehotelier.com": [9486], "forum.lightningmaps.org": [9361], "aman.ga": [2024], "europa-apotheek.com": [5409], "usi.vutbr.cz": [17609], "ea.vg": [2024], "ec.osu.edu": [11797], "creativecow.net": [3775], "cdn.c3voc.de": [2514], "ngair.io": [2024], "www.abma.de": [19041], "*.w00t.com": [18514], "gentlelabs.com": [6514], "www.fdopk.org": [5553], "fantasyfootball.telegraph.co.uk": [16149], "4sysops.com": [203], "m.motocaddy.com": [2024], "tyrant.click": [2024], "go.hi.co": [2024], "www.profed.acs.org": [974], "craftilldawn.com": [19712], "al-zh.li": [2024], "dlgn.us": [2024], "libraryfreedomproject.org": [9322], "brmn.us": [2024], "chapman.edu": [3013], "wiki.facepunch.com": [5613], "szn.permkrai.ru": [21390], "rollingstone.com": [14014], "coveyes.com": [2024], "gbatemp.net": [6283], "ocean.sci-hub.io": [14436], "answers.uchicago.edu": [17334], "static.streetlife.com": [22010], "pinellas.aclufl.org": [297], "zenaui.ga": [2024], "community.citrix.com": [3180], "gor.mn": [2024], "www.igh.cnrs.fr": [6174], "l.madhugb.com": [2024], "www.freecallstosingapore.co.uk": [20866], "thechive.com": [22141], "1.artsqwest.com": [2024], "www.optum.com": [21288], "www.insightexpress.com": [8172], "misc.smwcentral.net": [14203], "news.nationalgeographic.com": [11117], "amyh.us": [2024], "georgiegirl.com.au": [6533], "flingel.li": [2024], "cdn-retailers-dbapp.netdna-ssl.com": [4104], "feed2js.org": [5718], "beatsmedia.com": [1765], "kkre.me": [2024], "framabin.org": [6075], "m.runnymede.gov.uk": [21694], "inboxapp.com": [8043], "cy.tl": [2024], "te-st.ru": [22103], "hidden.beeline.kz": [19345], "visibletechnologies.com": [17858], "itug.me": [2024], "*.australianclinicaltrials.gov.au": [1409], "www.pycon.sg": [13308], "focusc.li": [2024], "linkinto.me": [2024], "l.s-f.com": [2024], "jenkins.debian.org": [4263], "www.grove.io": [6960], "secure.vandyke.com": [17638], "crimla.ws": [2024], "zndpt.de": [2024], "library.southampton.gov.uk": [15259], "clai.ma": [2024], "clearista.com": [3234], "mozillaignite.com": [10698], "www.nelonen.fi": [11180, 11181], "fail.by": [2024], "www.cryptotec.com": [19733], "agb.web.de": [18146], "emergency-partners.unicef.org.nz": [17067], "prod.a-3.ru": [258], "www.islamictech.com": [8380], "shotbyrob.co": [2024], "www.esubmission.hkex.com.hk": [20382], "www.searchenginejournal.com": [21763], "*.ceejay.net": [2936], "peakvc.co": [2024], "crwd.vc": [2024], "q9e.co": [2024], "www.chl.it": [2611], "silkroad.ws": [14857], "www.techtarget.com": [16084], "jobs.onr.org.uk": [21258], "writemy.co": [2024], "blog.sucuri.net": [15639], "dev.yandex.com.tr": [18740], "user.ecc.u-tokyo.ac.jp": [16991], "xelerance.com": [18644], "www.sina.cn": [14903], "ei.rlcdn.com": [13494], "ref.danal.com": [2024], "emonight.la": [2024], "donate.accessnow.org": [503], "tvprogram.idnes.cz": [20483], "www.hhid.com": [7047], "www.mer.io": [10291], "www.demonii.com": [4339], "www.cdbaby.com": [19531], "web-content.educ.cam.ac.uk": [17332], "p.ssl.qhimg.com": [13347], "a.ivn.us": [2024], "cm-mail.stanford.edu": [15448], "phy.li": [2024], "konqrunner.de": [2024], "www.balatarin.com": [1648], "fiwic.la": [2024], "media-corp.cursecdn.com": [3927], "cloudmailin.com": [3307], "my.pepipost.net": [2024], "cardcash.co": [2024], "longurl.it": [10814], "sync.com": [15790], "chat.pirate-party.ru": [12736], "brighton.illuminateed.com": [20494], "h.icetravel.xyz": [2024], "fast.animenewsnetwork.com": [19201], "baycare.clinic": [2024], "on.kitv.com": [2024], "snag.gy": [21877], "esp.rt.com": [13528], "saransk.startsmile.ru": [21980], "vstp.co": [2024], "kb.doteasy.com": [4697], "b.wiz1.us": [2024], "landscapephotographymagazine.com": [9156], "cyberghostvpn.com": [3952], "www.lochem.nl": [11172], "jautoimdis.biomedcentral.com": [1931], "bugs.pwmt.org": [13306], "www.sitizens.com": [14953], "contact-sys.com": [3607], "mk2.com": [9769], "ilsoy.co": [2024], "in2.se": [2024], "plrm.me": [2024], "s.we.lc": [2024], "git.vpsfree.cz": [22506], "archive.redhat.com": [13735], "francais.rt.com": [13528], "boligprat.sparebank1.no": [21922], "rgks.us": [2024], "aerofs.com": [736], "cljds.com": [2024], "xyratex.com": [18700], "cxo.news": [2024], "inventos.cdnvideo.ru": [19536], "citrix.mvv-muenchen.de": [9823], "ojls.oxfordjournals.org": [12222], "dis.bz": [2024], "scriptobservatory.org": [14480], "directory.wokingham.gov.uk": [22606], "cadastre.openstreetmap.fr": [12079], "esiaia.rosminzdrav.ru": [21674], "fw.jd.com": [8436], "groupes.renater.fr": [13826], "at.ispy.im": [2024], "ijhpr.biomedcentral.com": [1931], "jc4boe.us": [2024], "pentestgeek.com": [12574], "row.hants.gov.uk": [7185], "app-de4.resrc.it": [13659], "developers.nytimes.com": [11041], "cart.wildwestdomains.com": [18391], "cruzid.ucsc.edu": [17390], "s.morijuku.com": [2024], "go.thefwa.com": [2024], "zendition.net": [18924], "srv.dynamicyield.com": [4822], "c3s.cc": [2513], "content.marketdojo.com": [10019], "tagpr.me": [2024], "*.siteor.pl": [14950], "www.alastore.ala.org": [356], "www.malegislature.gov": [9730], "onjv.co": [2024], "s.udi19.nl": [2024], "a.pitria.com": [2024], "www.facebook.es": [5612], "innovation.wwf.ch": [18028], "l.sharethis.com": [14730], "hexagon.cc": [7381], "www.hex-rays.com": [7380], "openinfosecfoundation.org": [12047], "drks.network": [2024], "portal.dlink.ru": [19853], "edox.finam.ru": [20099], "nlinfo.uk": [2024], "www.kildarestreet.com": [8902], "www.aera.at": [732], "www.thawte.com": [16249], "go.citrs.xyz": [2024], "rump.us": [2024], "*.365ticketsglobal.com": [152], "emergencycommunications.blogs.bucknell.edu": [2406], "binspi.red": [2024], "vd.cm": [2024], "tps.click": [2024], "suntrust.com": [15661], "militaria.ma": [2024], "liv.ac.uk": [9491], "crtz.li": [2024], "sportsgirl.in": [2024], "schedule.timetrade.com": [16530], "www.litehosting.org": [9470], "www.bviphotovideo.com": [1606], "id.rambler.ru": [13600], "cjmk.co": [2024], "l.breandan.org": [2024], "ilust.re": [2024], "indiemerchstore.com": [8075], "pb.tedcdn.com": [15871], "axptravel.americanexpress.com": [979], "slstud.io": [2024], "pc.cd": [21330], "mundobr.ink": [2024], "www.onswitchit.ca": [11854], "al-akhbar.com": [818], "espanol.almayadeen.net": [19157], "badman.azet.sk": [1507], "leeds.ly": [2024], "c2cpicdw.qpic.cn": [13360], "channels.us.dell.com": [4317], "ehrensenf.de": [5108], "tmtm.deals": [2024], "www.liwenhaosuper.com": [9532], "srv4.bakerlab.org": [1646], "pimo.co": [2024], "cdn9.iconfinder.com": [7920], "www.mirt.net": [10486], "hpro.in": [2024], "v.ok.ru": [11806], "puma.com": [13271], "under.gr": [2024], "www.bokborgen.se": [2199], "www.difi.no": [4452], "www.naturalresources.wales": [11138], "mansfield.gov.uk": [20922], "dnld.it": [2024], "*.benzinga.com": [1813], "www.plurk.com": [12867], "*.securepaynet.net": [14570], "www.connochaetos.org": [3589], "m.mediamarkt.ru": [10188], "windlgroup.engineering.osu.edu": [11797], "cdn.arkena.com": [1224], "pd-st.itunes.apple.com": [1151], "m.vodafone.co.nz": [17899], "elv.gg": [2024], "airbnb.ca": [793], "frommar.co": [2024], "cmnt.link": [2024], "bleskenergie.blesk.cz": [2088], "i.ramhost.us": [13455], "cards.asda.com": [407], "www-new.optum.com": [21288], "steel.1688.com": [51], "webftp.pipni.cz": [12287], "opera.com": [12086], "www.reuffel.de": [21639], "amur.sledcom.ru": [21858], "api.showapi.com": [21815], "eic.energy": [2024], "www2.jobs.gov.hk": [20647], "kryptologika.com": [9031], "goodfit.ml": [2024], "s.ocio.net": [2024], "93enh1kt0uno97dau1iv0in71lzkkc1bn4fhucgx.ipleak.net": [20571], "server1.topspb.tv": [22239], "nbc.com": [11086], "ca.libreoffice.org": [9327], "www.open27.ru": [21265], "atsb.gov.au": [1428], "forum.junge-piraten.de": [8695], "www.bancamigros.ch": [10414], "*.branch.com": [2294], "moodle.collyers.ac.uk": [3433], "leninogorsk.startsmile.ru": [21980], "awein.me": [2024], "cloud.staticzacks.net": [18869], "secure.rocketnet.jp": [13995], "backoffice.mydigipass.com": [10869], "app.greenhouseci.com": [20307], "www.codementor.io": [3370], "r-forge.r-project.org": [13447], "jwpltx.com": [9601], "accountportal.uic.edu": [17321], "future.arte.tv": [19239], "items.alitrip.com": [865], "de.calameo.com": [2747, 2748], "reservoir.marketstudio.net": [10028], "4sprts.com": [2024], "services.sfu.ca": [14708], "openmedia.org": [11995], "drev.me": [2024], "strongvpn.com": [15600], "safety.gov-murman.ru": [20293], "dave.us": [2024], "go.rucla.nl": [2024], "www.bournemouth.gov.uk": [2268], "a856-citystore.nyc.gov": [11332], "travish.co": [2024], "content.mobileasiaexpo.com": [10536], "rvls.tk": [2024], "apps2.shareholder.com": [14739], "mail.dlink.ru": [19853], "central.terra.com.mx": [16199], "www.nealpoole.com": [11160], "nimbushosting.co.uk": [11448], "xn--rksmrgs-5wao1o.josefsson.org": [8644], "widgets.skyscanner.net": [15006], "tvaddons.ag": [22321], "nvg.st": [2024], "images.backstreetmerch.com": [1627], "flamehut.just-eat.ie": [20671], "tp.taobao.com": [16015], "track.almayadeen.net": [19157], "url.tdiawo.net": [2024], "s.update.rubiconproject.com": [14066], "as.chango.com": [3003], "geem.axonify.com": [1502], "www.illinois.edu": [17346], "fastserv.com": [5671], "superfi.eu": [2024], "cloud.mobify.com": [10532], "stats.migrosbank.ch": [10414], "www.start.ubrr.ru": [17173], "assets2.getsatisfaction.com": [6601], "sehirfirsati.com": [14624], "azchampion.com": [5616], "reproducible.debian.net": [4261], "4fla.org": [2024], "www.pit-format-online.pl": [21422], "crowdin.com": [3823], "forevernew.com.au": [6009], "onlineshop.cz": [21257], "otal.co": [2024], "iplocator.mail.163.com": [50], "www.kdukvh.com": [3484], "mpc.photo": [2024], "www.blacklotus.net": [2065], "dl.bananian.org": [1660], "whatpulse.org": [18327], "hi.penguins.kr": [2024], "jpabl.us": [2024], "fmod.org": [5946], "dabs.com": [4096], "hpy.co": [2024], "forums.udacity.com": [17193], "chinadoc.tocco.ch": [16600], "www.opera.com": [12086], "antny.link": [2024], "jucy.co.nz": [8475], "modcloth.com": [10548], "freerangekitten.com": [6160], "pingtest.net": [11930], "grw.li": [2024], "datenschutzzentrum.de": [8057], "static.wowhead.com": [18878], "cansecwest.com": [2803], "northsomerset.greenparty.org.uk": [6908], "www.bgamed.de": [1542], "mailtru.com": [2024], "ch.ch": [19555], "tracking.hyde.ligatus.com": [9356], "*.acr.org": [984], "go.cordico.com": [2024], "s2.cn.bing.net": [1925], "z.tm20.net": [2024], "tafewsi.com": [2024], "concur.com": [3553], "open-data.europa.eu": [5411], "lyonl.co": [2024], "r.ezite.ch": [2024], "abgl.ca": [2024], "campusvisit.osu.edu": [11797], "aerospace.osu.edu": [11797], "www.adamcaudill.com": [607], "alternativemeats.co.uk": [19162], "lists.ubuntu.com": [17183], "vzr.tv": [2024], "bmed.it": [2024], "community.progress.com": [13178], "dgh.tocco.ch": [16600], "medocmall.co.uk": [10214], "ar.opera.com": [12086], "server2.topspb.tv": [22239], "driver.tmp.gr": [2024], "360yield.com": [146], "ucm.bingads.microsoft.com": [10396], "d.dreambaits.be": [2024], "hrkey.co": [2024], "colino.net": [3415], "rethink.org": [21637], "*.lsu.edu": [9631], "fbrc.co": [2024], "www.crypteron.com": [3847], "www.owncube.com": [12216], "*.fox-toolkit.org": [5579], "i.makitra.in": [2024], "bcj.ch": [20683], "ct.mindset.jp": [2024], "e2e-uat.ti.com": [16225], "mikulabeutl.tk": [2024], "static3.miniclipcdn.com": [10461], "nobilis.io": [2024], "enroll-qa.moodys.com": [21020], "static-bii.businessinsider.com": [2471], "blog.addthiscdn.com": [19076], "gridforums.nvidia.com": [11022], "sales.mail.ru": [9891], "windstreambusiness.com": [18438], "www.trendmicro.de": [16789], "www.vtb.ru": [8469], "www.frivillighetshuset.no": [6200], "www.emc2.cornell.edu": [3676], "www.superteacherworksheets.com": [15688], "doc.ideco.ru": [20480], "rem.co": [13818], "www.chatlio.com": [19563], "public.era.nih.gov": [11090], "casson.in": [2024], "www.thelocal.com": [9549], "hey.us": [2024], "blogg.dfo.no": [19824], "mvb.pub": [2024], "pdna.me": [2024], "ds1.static.rtbf.be": [14063], "mrsharma.photos": [2024], "www.interhyp.de": [8248], "mmtm.rocks": [2024], "freshmilk.tv": [6185], "joncook.co": [2024], "www.iphonelife.com": [8341], "s.vts.com": [2024], "securityadvisories.paloaltonetworks.com": [12378], "www.escan.com": [17845], "nct.vc": [2024], "chieri.ci": [2024], "usc.edu": [17366], "www1.livenation.*": [9493], "smacktv.co": [2024], "www.qt-apps.org": [13335], "bcn.ch": [20683], "laxmag.us": [2024], "marijuanamajority.com": [10002], "hfh.ph": [2024], "readwrite.com": [13673], "iii.com": [20491], "smply.nyc": [2024], "www.sfconservancy.org": [15165], "www.wbginvestmentclimate.org": [8258], "www.sakittome.com": [5296], "hgst.com": [7043], "wkwine.us": [2024], "o.ada.is": [2024], "download.centreon.com": [2965], "888voip.com": [241], "portal.goldkeys.org": [6800], "miltentacion.es": [2024], "orenburg.rt.ru": [13529], "koe-d.com": [2024], "*.twitter.com": [16965], "nvky.co": [2024], "www.dmx-austria.at": [4039], "get-digital.nl": [6548], "blog.fefe.de": [5728], "r24626574.sync.app.asana.com": [1265], "*.zohostatic.com": [18987], "www.tradeblock.com": [16707], "master.wiki2.dovecot.org": [4713], "support.musixmatch.com": [10758], "kart.hk": [2024], "www.torrentshack.me": [16655], "www12.staffordbc.gov.uk": [21973], "addons.modulus.io": [10563], "www.cciio.cms.gov": [19630], "pnnr.co": [2024], "luxio.us": [2024], "l.ssddink.com": [2024], "www.grad.uw.edu": [17156], "go.umuc.edu": [2024], "gh.cm": [2024], "lemus.mx": [2024], "cvw.fr": [2024], "p0.ssl.qhimg.com": [13347], "bluemovie.net": [2139], "*.herokuapp.com": [7331], "*.adverticum.net": [709], "www.busybox.net": [19479], "www.meituan.com": [10248], "t.mech.sh": [2024], "www.netistrar.com": [11278], "linc.mit.edu": [9763], "bitly.vdaele.be": [2024], "www.nro.net": [11616], "sh-contrainfo.espiv.net": [20021], "api.edgecast.com": [5070], "haushalt2017.baden-wuerttemberg.de": [19302], "buy.aliyun.com": [868], "links.dany94.eu": [2024], "www.casro.org": [2897], "palu.lol": [2024], "necessaryandproportionate.net": [11168], "gburg.us": [2024], "files.bookboon.com": [2213], "adblockbrowser.org": [19073], "www.eugene.kaspersky.com": [8820], "www.systemed.net": [15829], "lrae.it": [2024], "www.ksplice.com": [9039], "www.private.receivesmsonline.net": [21608], "vlku.co": [2024], "www.118information.co.uk": [30], "www.smartos.org": [15054], "secure.silverrushstyle.com": [14863], "thorpepark.com": [16459], "a.okfn.org": [21237], "*.scu.edu": [14353], "adhoc.io": [2024], "kino.web.de": [18146], "sellercentral.amazon.co.uk": [19170], "doriancolor.com": [4680], "jobindex.dk": [8611], "api.usersnap.com": [17524], "free.jkmk.net": [2024], "its.partners": [2024], "techta.sk": [2024], "nurdspace.nl": [11016], "wesgay.net": [2024], "api.go.cd": [20273], "www.secure.denic.de": [4346], "slack.21.co": [95], "developer.doublerobotics.com": [4707], "tesco.com": [16205], "www.suspiciousumbrella.uk": [22045], "delivery.g.switchadhub.com": [15764], "kontakt.hitta.se": [20381], "c.enhance.com": [9993], "clos.io": [2024], "leet.getdigital.de": [6594], "lawumi.ch": [2024], "www.cope-it.at": [3650], "link.ssg.bg": [2024], "rmgn.co": [2024], "url.tinojr.com": [2024], "mywebsite.1and1.co.uk": [71], "d-rtb.microad.jp": [10377], "djsy.biligame.com": [1903], "wot.mail.ru": [9891], "*.nugg.ad": [11610], "intr.ac": [2024], "1.icme.su": [2024], "support.localist.com": [9553], "yosemitenews.info": [18790], "share.kadaza.nl": [2024], "stavrovski.net": [15505], "app.ntsb.gov": [11124], "api.rasp.yandex.com": [18742], "rutrk.org": [21703], "tools.ietf.org": [7725], "cpaptalk.com": [3742], "adcash.com": [622], "auth.withsix.com": [18469], "gem.gemvara.com": [2024], "blog.xs4all.nl": [18625], "engineering.gosquared.com": [6766], "apply.hacklab.to": [7123], "cotuca.me": [2024], "tisr.am": [2024], "mcfra.me": [2024], "esencia.link": [2024], "services.pressreader.com": [13081], "multicastmedia.com": [10736], "shanxiguan.jd.com": [8434], "vocaloid.news": [2024], "refinedproduct.fossil.energy.gov": [5243], "bukkit.org": [19470], "www.yoogiscloset.com": [22684], "sao.ust.hk": [22412], "gold.weicaifu.com": [22556], "ubmelectronics.techinsights-marketing.com": [16999], "embed-cdn.gettyimages.com": [6604], "watkins.edu": [18100], "*.blog.usf.edu": [17362], "gotmerchant.com": [6839], "note.io": [2024], "buyez.co": [2024], "www.riglogix.com": [1948], "nl.malwarebytes.com": [9940], "drlby.com": [2024], "live-trace.bilibili.com": [1904], "psara.abenteuerland.at": [468], "arlanda.se": [1225], "vme.ga": [2024], "secure.m.newegg.com": [11356], "*.parc.com": [12379], "resonant.org": [13867], "*.labaia.ws": [9141], "gosquared.com": [6766], "lfgo.tk": [2024], "lists.openstreetmap.org": [12015], "r.hyt.hm": [2024], "rt-iframe.dengisend.ru": [4344], "mnlpsn.me": [2024], "sfs.wustl.edu": [18089], "www.maths.nottingham.ac.uk": [11567], "bml.io": [2024], "*.necdisplay.com": [10937], "brko.se": [2024], "openculture.com": [12038], "511tactical.com": [207], "chats.cdn.viber.com": [17751], "go.staybay.com": [2024], "samsungpay.rocketbank.ru": [13994], "a.soziotech.org": [2024], "ntk.me": [11593], "xmlsearch.yandex.kz": [18743], "jacksonvilleuniversity.worldcat.org": [18536], "ssl.safaribooksonline.com": [14284], "l.celrank.com": [2024], "members.nearlyfreespeech.net": [11162], "mtn.to": [2024], "britishairways.com": [1513], "media-azeroth.cursecdn.com": [3927], "norb.to": [2024], "beebe.in": [2024], "h8m.com": [2024], "100540.advision-adnw.jp": [19098], "remnux.org": [13473], "nycmesh.net": [21211], "cdig.tl": [2024], "maps.bolton.gov.uk": [19424], "www.politiken.dk": [12922], "travelrepublic.com": [16769], "yahooadvertising.tumblr.com": [16897], "toddm.us": [2024], "trop.lv": [2024], "2015.eurobsdcon.org": [5394], "pgc.rambler.ru": [13600], "www.flixden.com": [5912], "www.gazeta.ru": [6460], "www.hipl.hnfe.vt.edu": [17825], "ivi-f46-vcp.cdnvideo.ru": [19536], "calendar.northeastern.edu": [11539], "www.aclu-nj.org": [315], "www.911.gov": [247], "karele.me": [2024], "www.cwspod.com": [2707], "maps.mail.ru": [9891], "thepiratebay_org.unblocked.lol": [22259], "fusion.ddmcdn.com": [4010], "*.dmtracker.com": [4041], "www.tinyjpg.com": [16558], "akira.org": [810], "filestorage.aclu.org": [312], "nnja.info": [2024], "*.pcwelt.de": [12530], "clwy.us": [2024], "www.nsfwcorp.com": [11589], "bkflpflm.us": [2024], "fcc.gov": [5699], "wvuga.me": [2024], "git.chromium.org": [3124], "a.sparkjoe.com": [2024], "netswipe.com": [8688], "seriebtvpayments.streamamg.com": [22006], "silval.me": [2024], "smartphone.popin.cc": [12954], "unb.worldcat.org": [18536], "autodiscover.boldchat.com": [2203], "www.nextag.de": [11402], "cdn.ncsu.edu": [11531], "gglam.co": [2024], "my.lib.hku.hk": [20387], "webclaim.net": [4886], "sher.at": [2024], "ssl.marketplace.org": [10026], "servercircle.com": [14671], "btc4.cu.cc": [2024], "www.9gag.com": [252], "s5.postimg.org": [13024], "www.spis.korzar.sme.sk": [14198], "viaja.am": [2024], "khimki.tpprf.ru": [22260], "static.censor.net.ua": [19538], "shareweb.kent.gov.uk": [8867], "www.valdhaus.co": [17618], "img.teleguide.info": [22115], "lists.stanford.edu": [15448], "stk.lt": [2024], "shopping.istella.it": [8395], "www.drv-bund.de": [4394], "stm.sovcombank.ru": [21914], "downloads.bitnami.com": [2032], "release.debian.org": [4263], "candhlures.com": [2820], "peak-links.de": [2024], "office.vutbr.cz": [17609], "bioethicsarchive.georgetown.edu": [6531], "laweval.northeastern.edu": [11539], "lanl.in": [2024], "archer.sknt.ru": [21851], "www.mcvpacific.com": [8225], "hs12.snstatic.fi": [14208], "projectprim.us": [2024], "www.gosuslugi.ru": [6835], "suomi.fi": [22035], "flycapture.environment-agency.gov.uk": [20006], "www.roboxchange.com": [13501], "charakter.tk": [2024], "www.helsingor.dk": [7312], "sourcing.alibaba.com": [857], "efroni.net": [2024], "0.4mat.jp": [2024], "north49.co": [2024], "s.meulie.net": [2024], "mpdata.aastocks.com": [19037], "femspd.oxfordjournals.org": [12222], "9-b.it": [2024], "perioperativemedicinejournal.biomedcentral.com": [1931], "aut1sm.com": [2024], "topatoco.com": [16636], "bert.ly": [2024], "openstreetmap.fr": [12079], "www.holland.pk": [7462], "ivg.li": [2024], "lipetsk.europaplus.ru": [20034], "mysql.it": [10825], "catchy.com": [2909], "m.korean.alibaba.com": [857], "forum.ipvanish.com": [7803], "s.mobioinsider.com": [10541], "billing.console.aliyun.com": [868], "developer.ba.com": [1513], "*.solidcactushosting.com": [15189], "ruc.dk": [14025], "go.decopach.com": [2024], "www.docsend.com": [4602], "openregion.gov-murman.ru": [20293], "plusme.net": [12871, 12872], "go.adlinx.com": [2024], "cz-hosting.com": [2712], "engagingnetworks.net": [5252], "piviewerr.com": [2024], "thebluealliance.com": [16402], "p3smysqladmin01.secureserver.net": [14574], "www.textracer.dk": [16234], "u.nwc.co": [2024], "auth.api.sonyentertainmentnetwork.com": [15219], "recruiter.fm-world.co.uk": [20128], "point.vzp.cz": [17611], "go.myrsdca.com": [2024], "calvert.cloud": [2024], "uds.link": [2024], "mice.jd.com": [8436], "eshop.fotolab.cz": [6055], "secureholidays.com": [18579], "www.reddpics.com": [13747], "www.nightdev.com": [11433], "rockett.es": [2024], "r.sys.re": [2024], "stjb.work": [2024], "jbioleng.biomedcentral.com": [1931], "www.consilium.europa.eu": [5411], "arcgis.com": [1186], "go.creinke.me": [2024], "esr.oxfordjournals.org": [12222], "files.slidemypics.com": [15027], "vk.me": [17576], "admin.teatime.fm": [22109], "support.ecampus.no": [4875], "blackberry.com": [2068], "*.midasplayer.com": [8912], "timperis.co": [2024], "contact.informahealthcare.com": [8121], "d-movies.cf": [2024], "webster.re": [2024], "caltech.edu": [2771], "xiiirbmp.uniovi.es": [17282], "url.foulon.net": [2024], "agilefi.us": [2024], "smhttp-nex.nexcesscdn.net": [11397], "ravensoft.com": [13640], "secure.static.tumblr.com": [16898], "www.devzing.com": [4406], "pay.sohu.com": [15171], "on.humilit.com": [2024], "fzy.cl": [2024], "winafy.io": [2024], "s.tkc.edu": [2024], "jipm.oxfordjournals.org": [12222], "site.cmbchina.com": [2639], "www.magix.info": [9717], "pc4.gtimg.com": [6975], "rov.io": [2024], "73s.us": [2024], "proxify.com": [13222], "dis.ciple.us": [2024], "s1-world.yamedia.tw": [18734], "bogoroditsk.startsmile.ru": [21980], "mail.xenproject.org": [18647], "grb.st": [2024], "tram.stanford.edu": [15448], "r22.tv": [2024], "maker.tv": [9922], "www.thevaultbar.co.uk": [16285], "tawk.to": [16043], "zuji.com.hk": [19021], "transenv.eu": [2024], "www.common-lisp.net": [3487], "one.ubuntu.com": [17183], "cbt.gg": [2024], "news.debian.net": [4261], "segment.com": [14621], "traffic.okfn.de": [21236], "live-stranafm.cdnvideo.ru": [19536], "gmx.at": [6330], "42.mvd.ru": [21055], "www.chickensoup.com": [3077], "tkdk.la": [2024], "*.adnxs.com": [666], "go.drive.sg": [2024], "wb.md": [2024], "itsh.bo": [2024], "c.ck101.com": [2024], "pcoffee.co": [2024], "s0.c4tw.net": [2518], "links.laughingsquid.com": [20786], "mpuk.cc": [2024], "tomp.co": [2024], "www.ppl.cz": [12313], "slv.futbol": [2024], "s.couch-blog.de": [2024], "www.urospace.de": [17500], "baymirror.tech": [21524], "news.wmtransfer.com": [18173], "ucalgarymag.ca": [17017], "advertising.microsoft.com": [10396], "whos.amung.us": [18363], "www.muckrock.com": [10722], "hashrates.com": [2024], "hbn.ro": [2024], "anketa.sviaz-bank.ru": [15740], "alliedmods.net": [901], "ercpe.de": [5326], "fmfreedom.com": [2024], "smen.co": [2024], "thespartaninstitute.com": [15296], "*.cyberphoto.se": [3954], "www.encrypt.to": [5226], "subscribe.washingtonpost.com": [18086], "www.centralreg.ru": [2962], "url.dochouse.de": [2024], "galois.com": [6388], "m.tangerine.ca": [16008], "go.myogc.org": [2024], "forum.stratechery.com": [15576], "www.nic.swiss": [19884], "base.liveperson.net": [9505], "parentsweekend.stanford.edu": [15448], "m.sportrevue.isport.blesk.cz": [2088], "terragalleria.com": [16196], "sog-consult.objective.co.uk": [21225], "enrol.bournemouth.gov.uk": [2268], "scandy.link": [2024], "www.docusign.com": [4619], "*.reddit.com": [13748], "support.steadfast.net": [15512], "elastictrace.com": [5132], "*.fmylife.com": [5570], "whsu.gq": [2024], "chrisegg.me": [2024], "tm319.tumblr.com": [16898], "quig.ly": [2024], "www.rockfile.eu": [21664], "developers.kongregate.com": [8988], "www.m-wm.com": [9729], "sgwa.co": [2024], "teso.curseforge.com": [3927], "vwp.su": [17974], "gobierno.usa.gov": [17110], "assistly.com": [4379], "torch.start.me": [15470], "53.mvd.ru": [21055], "api.bigstockphoto.com": [1895], "codestand.ietf.org": [7725], "autodiscover.food.leeds.ac.uk": [17403], "www.srds.com": [14232], "004.img.qf.56.itc.cn": [8401], "go.nsone.net": [2024], "www2.saturn.de": [21736], "vinnymcelwa.in": [2024], "my.netfox.ru": [11271], "augmentedracing.redbull.es": [13726], "bapth.lt": [2024], "myinteriordecorator.com": [10810], "sustainability.wustl.edu": [18089], "*.superbreak.net": [7461], "greaterbay.aclufl.org": [297], "www.csob.sk": [3888], "velleman.be": [17685], "bigbite.link": [2024], "mjh.li": [2024], "villas.com": [17802], "encounters.play-asia.com": [12828], "ios.tv4play.se": [15947], "jsys.io": [2024], "chrs-mln-krs.com": [19588], "bev.bz": [2024], "www.ipsos-na.com": [8347], "360totalsecurity.com": [145], "www-cache-css.extensis.com": [5513], "torrentsstorage.net": [22248], "cs.stanford.edu": [15448], "assets.crossref.org": [3812], "www.postofficeshop.co.uk": [13003], "gismeteo.by": [20248], "www.latex-project.org": [9132], "js.web.de": [18146], "www.bprbzk.nl": [11172], "l.ashmcg.com": [2024], "pimsweb.tameside.gov.uk": [22095], "www.kotulas.com": [9007], "dps.ws.hmrc.gov.uk": [7076], "www.realvnc.com": [13687], "r.tilkema.com": [2024], "*.irish-country-cottages.co.uk": [18579], "alzres.uk": [2024], "www.lolware.net": [9581], "isdspeed.qq.com": [13329], "pbproxy.tech": [22174], "*.intuit.com": [8300], "afpics.link": [2024], "ebookne.ws": [2024], "my.jhu.edu": [16370], "safeassign.com": [14288], "biab.to": [2024], "letlife.in": [2024], "www.simonsfoundation.org": [14881], "*.merlinbreaks.co.uk": [10308], "www.elrepo.org": [4916], "jkls.co": [2024], "app.readspeaker.com": [13670], "awa.is": [2024], "s.gavinr.com": [2024], "marketplace.visualstudio.com": [17872], "api.duckduckgo.com": [4785], "www.liftware.com": [9355], "www.piraten.lu": [21417], "hbnk.co": [2024], "ld-st11.itunes.apple.com": [1151], "m1nd.se": [2024], "haimai.amazon.cn": [19168], "feedback.minecraft.net": [10452], "surprisinglyfree.com": [15720], "www.kids.usa.gov": [17110], "www3.olx.com.br": [11668], "forums.plex.tv": [12854], "hosting90.cz": [7534], "egotasticallstars.com": [5104], "www.fernwaerme-partner.at": [18376], "mediatemple.net": [10177], "www.1in3campaign.org": [11890], "mrt.ovh": [2024], "skb-golf.com": [2024], "search.theregister.co.uk": [22182], "ut00.xhcdn.com": [18605], "www.hr.od.nih.gov": [11090], "antergos.com": [1098], "www.drugs-forum.com": [4772], "ubmaviation.com": [16999], "static.ycharts.com": [18704], "jlow.co": [2024], "jonandjess.me": [2024], "redcross.org": [13732], "cloutoday.nl": [3276], "files.avast.com": [1469], "www.vue.com": [12539], "support.ulteo.com": [17214], "br.reuters.com": [13893], "ablelend.co": [2024], "www.intagme.com": [20545], "privatepaste.com": [13150], "dawgs.us": [2024], "go.jbkc85.com": [2024], "gg.gov.au": [6858], "whmag.co": [2024], "*.store.cox.com": [3736], "skyblu.es": [2024], "lanbilling.ru": [20775], "pirateproxybay.tech": [22174], "www.risiinfo.com": [13492], "www.bb.isy.liu.se": [9097], "s.t-ya.com": [2024], "adspeed.net": [595], "xml.affiliate.rakuten.co.jp": [13594], "m.ssllabs.com": [14243], "api.golem.de": [6804], "cdn.exm.nr": [5469], "rmky.co": [2024], "aktualne.atlas.sk": [19269], "stripe.com": [15594], "raidio.us": [2024], "www.i2coalition.com": [7662], "si.wp.pl": [18012], "pa.drweb.com": [4776], "protu.fi": [13194], "cdn.ch2.stg.comcast.com": [3462], "signup.duo.com": [4797], "wiki.appnexus.com": [1139], "jp.rakuten-static.com": [21577], "www.fsa.go.jp": [5586], "2ip.ru": [127], "res.mmstat.com": [10515], "contz.co": [2024], "www.imgix.com": [20504], "hyts.fr": [2024], "assist.zoho.com": [18984], "cdn.images.dailystar.co.uk": [4106], "prdcts.co": [2024], "img5.wsimg.com": [14570], "www.fsfla.org": [5593], "quackquackgo.nl": [13370], "cuf.link": [2024], "securemail.amica.com": [999], "pl.squat.net": [21955], "biz-group.axonify.com": [1502], "piwik.gunsamerica.com": [20324], "netwheels.fi": [21115], "webmail.primus.ca": [13112], "bbs.2345.cn": [97], "clky.me": [2024], "contactus.netflix.com": [11269], "ixo.gsfc.nasa.gov": [10909], "www.flipboard.com": [5905], "disney.play-asia.com": [12828], "www.asmc.de": [1293], "byu.edu": [1611], "www.emergingthreats.net": [5198], "cxmy.biz": [2024], "nxr.co": [2024], "securepay.rsb.ru": [14058], "bolotnoe.nso.ru": [21192], "rpu.li": [2024], "www.cfengine.com": [2603], "www.usersnap.com": [17524], "nxr.cz": [2024], "volgograd.biglion.ru": [19375], "www.mivolunteers.org": [17924], "auto.kazanfirst.ru": [20695], "www.appworks.tw": [19221], "hr.williams.edu": [18408], "d4r.pw": [2024], "clck.ru": [19607], "assets.realclearpolitics.com": [13683], "jdi.na.vutbr.cz": [17609], "okgo.nu": [2024], "dlhs-umi.ch": [2024], "www.headstrong.de": [7253], "aufeminin.com": [1495], "go.suneel.in": [2024], "ldwg.co": [2024], "subs.yandex.com": [18742], "espacejeux.com": [5349], "nathanwentworth.tumblr.com": [16897], "gotvape.net": [6837], "spotplanet.org": [15368], "blogs.cpanel.com": [2665], "go.csspod.com": [2024], "freedom-to-connect.net": [6142], "kev.to": [2024], "piratebay.inbypass.xyz": [22259], "shs.ucsd.edu": [17012], "mailtracker.livingsocial.com": [9530], "familie.hessen.aok.de": [376], "dl.web.de": [18146], "washn.at": [2024], "wire.innocraft.cloud": [18451], "msr.lc": [2024], "www.myuofmhealth.org": [17463], "www.sentinelone.com": [14649], "lantea-dev.kairo.at": [8782], "4corne.rs": [2024], "perl.org": [12606], "*.vba.va.gov": [17100], "free1.beget.com": [19347], "cdnph.upi.com": [17086], "l.vanloo.biz": [2024], "sync-dsp.ad-m.asia": [19070], "*.employment.gov.au": [4354], "*.vk.me": [17576], "mortgages.hsbc.co.uk": [20422], "eventm.ag": [2024], "rehber.yandex.com.tr": [18740], "dontswe.at": [2024], "dfmd.co": [2024], "company.yandex.com": [18742], "visaeurope.es": [17847], "justitie.nl": [11172], "llvm.org": [9103], "golosinfo.org": [20286], "addons.alfresco.com": [850], "websharks-inc.com": [18181], "foursquare.com": [6061], "ts.knet.cn": [8757], "greenchef.com": [6899], "knot-dns.cz": [8960], "lrb.co.uk": [9594], "leightlab.engineering.osu.edu": [11797], "images.c.switchadhub.com": [15764], "hkd.co": [2024], "raumzeit-podcast.de": [10322], "s5.qhimg.com": [13347], "s.be-ing.co.jp": [2024], "sverhestestvennye.friday.ru": [20175], "s3.thejournal.ie": [16299], "e4s.me": [2024], "on.james.ph": [2024], "www.europa-apotheek.com": [5409], "secure-static-cdn2.ustream.tv": [17536], "media.crikey.com.au": [3792], "ucalgary.ca": [17016], "go2jo.us": [2024], "naturalskinshop.com": [11139], "debaday.debian.net": [4261], "api.uptodown.com": [22396], "smax.co": [2024], "deinde.al": [2024], "erecruit.upu.int": [17089], "changbaishan.jd.com": [8434], "argos.resinfo.org": [13865], "www.valoancaptain.com": [17553], "phyx.es": [2024], "fws.co": [2024], "www.lektorium.tv": [9257], "militarysuper.gov.au": [10432], "sct.io": [2024], "bizz-aps.com": [2024], "rev.works": [2024], "ai.ai": [1453], "www.microad.jp": [10377], "t-b.co": [2024], "bia.homeoffice.gov.uk": [20399], "zoosk.com": [19006], "foursignposts.com": [20143], "earthlink.net": [4997], "kamyshin.startsmile.ru": [21980], "www.pagekite.net": [12359], "dein.dk": [4302], "www.deutschepost.de": [19816], "url.tp321.de": [2024], "voltage-pp-0000.tkbbank.ru": [16583], "www.nay.sk": [10915], "sun-queen.migros.ch": [10417], "cal.ms": [2024], "popflx.com": [2024], "forumimages.somethingawful.com": [15200], "beta.kccmediahub.net": [8729], "tm.com.my": [16150], "wppusher.link": [2024], "fazedores.catracalivre.com.br": [2917], "www.static-immobilienscout24.de": [8008], "zmr.wienit.at": [18376], "bol.de": [16244], "www.nutricentre.com": [11621], "fangamer.net": [5643], "enjoy.1688.com": [51], "theam.cn": [2024], "bhb.rocks": [2024], "abne.ws": [2024], "szl.ms": [2024], "magix.info": [9717], "*.hegerys.com": [7280], "distrowatch.com": [4566], "bluez.org": [2152], "psychology.plymouth.ac.uk": [12873], "g.krbn.co": [2024], "casaameri.ca": [2024], "www.curesec.com": [3922], "outliv.me": [2024], "buchhaus.ch": [19463], "*.spotxchange.com": [15365], "nethserver.org": [21110], "traffic.gemius.com": [6500], "ip2location.com": [7790], "kushner.co": [2024], "amplifi.re": [2024], "alx.re": [2024], "www.youku.com": [18804], "f12.link": [2024], "msc.co": [2024], "furets.co": [2024], "bedrockbluenext.msn.com": [9810], "hnfr.it": [2024], "go.ffntech.com": [2024], "castle-technology.co.uk": [2900], "track.hubspot.com": [7599], "es.support.tomtom.com": [16615], "media.vouchercloud.com": [22501], "en.support.guildwars2.com": [13938], "cti.w55c.net": [17984], "www1.hgst.com": [7043], "www.ibm.biz": [20471], "broward.aclufl.org": [297], "tbx.link": [2024], "babadu.cdnvideo.ru": [19536], "ads.paper.li": [12408], "*.geotrust.net": [6524], "hallgroup.engineering.osu.edu": [11797], "support.ihc.ru": [7740], "xyq.gm.163.com": [50], "b166er.tk": [2024], "purdue.syncplicity.com": [15795], "www.flixbus.fr": [5911], "tweetnacl.cr.yp.to": [3745], "osucentralreceiving.osu.edu": [11797], "ln.ebisu.org": [2024], "r24625683.sync.app.asana.com": [1265], "lists.desy.de": [4386], "autoroot.chainfire.eu": [19556], "stonypla.in": [2024], "www.fundersclub.com": [6239], "a.chromebook.me": [2024], "verisignlabs.com": [17713], "mangagamer.com": [20920], "continuity.georgetown.edu": [6531], "lebedyan.startsmile.ru": [21980], "shared.opendns.com": [11969], "caimao.com": [2734], "www.risingstack.com": [21654], "callig.me": [2024], "secure.consumerfinance.gov": [3603], "facebook.com": [5609], "p1.xyx.hao123img.com": [20340], "purb.cl": [2024], "volgograd.tpprf.ru": [22260], "my.supplychain.nhs.uk": [10953], "tik8.co": [2024], "login.usainteanne.ca": [22404], "parkrun.org.uk": [12439], "stadt-zuerich.ch": [15431], "www.ya.ru": [18716], "archr.gp": [2024], "link.eqtg.biz": [2024], "cosmicsky.media": [2024], "snd.bz": [2024], "12mars.rsf.org": [13844], "acsten.jd.com": [8435], "carmen.osu.edu": [11797], "ymail.com": [18728], "forms.dover.gov.uk": [4714], "wamutd.uk": [2024], "nie.mn": [2024], "40chanc.es": [2024], "my.bigcartel.com": [1878], "www.wienernetze.at": [18376], "w.ronsdorf.info": [2024], "partners.cloudbees.com": [19622], "duckduckhack.com": [19903], "sources.lede-project.org": [20798], "*.mastodon.social": [10069], "secure02.kidshealth.org": [8899], "sc.videoemail.com": [17781], "greerstyr.es": [2024], "www.customtiburon.com": [3932], "www.multisoft.com": [10734], "ilc.fnal.gov": [5741], "goodies.xfce.org": [18603], "faithwork.us": [2024], "www.microad.co.jp": [10376], "wwhisk.co": [2024], "www.kikatek.com": [8901], "consult.wyre.gov.uk": [22638], "adventskalender.saturn.de": [21736], "ebuzzing.com": [5035], "zhn.io": [2024], "altinget.dk": [940], "img02.bizrate-images.com": [2054], "givedirect.org": [6669], "ftnt.net": [2024], "forum.lanbilling.ru": [20775], "delivery.ads-creativesyndicator.com": [3777], "sjha.re": [2024], "*.usfsp.edu": [17363], "worker100.scrutinizer-ci.com": [21759], "media.beabloo.com": [19340], "secure-cdn.maxcdn.com": [10102], "cleanenergyfinancecorp.com.au": [3226], "l.dewet.org": [2024], "i.icetravel.xyz": [2024], "www.btctrader.com": [1586], "www.kcrw.com": [20700], "blogs.manageengine.jp": [9950], "shop.10r.hu": [2024], "www.netpol.org": [11287], "hush.technology": [7635], "tchibo.cz": [16050], "josefsson.org": [8644], "www.evolmed.com": [5454], "agima.ru": [19112], "erinrealtor.com": [2024], "blacktonic.com": [2060], "wera.so": [2024], "tchibo.ch": [16050], "rbfi.io": [21594], "vault.cca.edu": [2547], "research-explorer.dfg.de": [4399], "www.relcom.host": [13814], "www.theedgeclimbing.com": [16347], "commerce.washingtonpost.com": [18086], "*.kununu.com": [9052], "beta.drweb.com": [4776], "get.jlx.cc": [2024], "partnerzy.ceneo.pl": [2945], "bugzilla.quagga.net": [13375], "17s.la": [2024], "zadarastorage.com": [18870], "sovfor.com": [2024], "static.mailchimp.com": [9893], "b2bservices.dell.com": [4317], "merton.gov.uk": [10311], "search.earthdata.nasa.gov": [10909], "www.drweb.com": [4776], "fs20.formsite.com": [20139], "ccourl.com": [2024], "sucuri.net": [15639], "i4.buimg.com": [16509], "connect.liveramp.com": [9509], "tk.tapakita.com": [2024], "jump.ovh": [2024], "magich.at": [2024], "flyfi.sh": [2024], "*.startssl.org": [15472], "cw.org.za": [2024], "1971.ga": [2024], "infusionsoft.com": [8139], "yourb.us": [2024], "freifunk-ansbach.de": [6167], "borgerservice.kk.dk": [8748], "*.energymadeeasy.gov.au": [5244], "i.computer-bild.de": [19660], "mah.xyz": [2024], "ecn.t3.tiles.virtualearth.net": [17840], "moodle.uni-mainz.de": [17410], "pleasuredome.org.uk": [12850], "datacoup.com": [4171], "sin.thecthulhu.com": [16403], "goaw.pl": [2024], "www.technologyreview.com": [16107], "hcv.link": [2024], "pwilson720.us": [2024], "s.yjtag.jp": [18708], "armyoutlet.de": [1231], "delta.lostfilm.tv": [20876], "di7.pl": [2024], "payments.ebay.*": [4866], "shibboleth.aber.ac.uk": [473], "www.kent.ac.uk": [17402], "tempolibero.ffs.ch": [15756], "buddytv.us": [2024], "www.ok.ru": [11806], "ovp.qbrick.com": [13345], "ecn.st": [2024], "glv.cc": [2024], "s.smyplc.me": [2024], "oneandzero.uk": [2024], "pma.wedos.net": [17993], "fluency.xyz": [2024], "vgocom.com": [17570], "www.lezlovevideo.com": [9296], "gfi.com": [6303], "cs.coresecurity.com": [3669], "dinglisch.net": [19841], "fantasycricket.telegraph.co.uk": [16149], "sshirt.co": [2024], "masterplanning.georgetown.edu": [6531], "oig.ssa.gov": [21959], "lnk2.biz": [2024], "www.belregion.ru": [19353], "t.5bs.org": [2024], "fwc.gov.au": [5621], "adsl.by": [19090], "365hbr.org": [2024], "professormesser.com": [13173], "irkutsk.rt.ru": [13529], "www.shapeshift.io": [14721], "www.forex-metal.com": [6010], "community.f-secure.com": [5533], "veru-ne-veru.friday.ru": [20175], "url.jobbied.com": [2024], "www.fiksu.com": [5773], "jsea.rs": [2024], "oodaloop.com": [11688], "shann.la": [2024], "european-privacy-seal.eu": [5398], "sql9.endora.cz": [5237], "t.hrane.nu": [2024], "show.friday.ru": [20175], "www.yworks.com": [22663], "p.qpic.cn": [13360], "www.tiscali.nl": [16165], "*.worldofwarplanes.eu": [18552], "anzeiger.vrr.de": [17954], "clk.specificclick.net": [15314], "aureol.es": [2024], "ocav.eu": [2024], "secure.worldwildlife.org": [18544], "www.rednerd.com": [13756], "huaiyuan.jd.com": [8434], "students.law.yale.edu": [18732], "partners.pornhub.com": [12972], "m.imhd.sk": [8004], "api.unity.com": [17310], "futures.georgetown.edu": [6531], "koz.io": [9012], "bryansk.sledcom.ru": [21858], "ctajournal.biomedcentral.com": [1931], "www.haritalar.yandex.com.tr": [18740], "sudeep.biz": [2024], "portal.victorops.com": [17758], "acct.valdikss.org.ru": [22423], "www.tvnz.co.nz": [15951], "globalactionplan.org.uk": [20267], "i6.lbp.me": [20789], "blockchainbdgpzk.onion": [2106], "www.vendercom.com": [17692], "citysearch.com": [3199], "cst.land": [2024], "klasika.rtvs.sk": [13536], "ivp.im": [2024], "d.p-td.com": [522], "ads.q1media.com": [13318], "gb1.co": [2024], "bitcasa.com": [19385], "*.sublimegit.net": [15625], "pl.libreoffice.org": [9327], "www.bhphotovideo.com": [19370], "maykel.co": [2024], "cart.1688.com": [51], "u.stoneip.info": [2024], "mmwebfonts.comquas.com": [19662], "79.mvd.ru": [21055], "fborn.co": [2024], "unicorntal.es": [2024], "fry.workaround.org": [18530], "on.tesire.com": [2024], "*.fmworld.net": [6223], "www.pirateproxy.press": [21524], "bnj.biligame.com": [1903], "*.brandembassy.com": [2297], "oti.link": [2024], "e.ronaldej.id": [2024], "awg.me": [2024], "app.envie.sg": [2024], "mstr.fr": [2024], "www.codeaurora.org": [3345], "www.lkml.org": [9100], "*.chromedata.com": [3121], "pcft.co": [2024], "youngrewiredstate.org": [18809], "skateho.us": [2024], "wmde.org": [2024], "pximg.net": [12778], "allegra.me": [2024], "tyrus.java.net": [8538], "www.npddecisionkey.com": [4273], "oncvt.com": [2024], "preview.unicef.org.uk": [17068], "www.sig-io.nl": [14834], "www.hubpeople.com": [20444], "*.zerve.com": [18947], "latdsc.org": [2024], "homes.cs.washington.edu": [17376], "www.orange.sk": [12121], "tp.srgssr.ch": [21957], "paymentgate.zapsibkombank.ru": [18890], "jammerbugt.dk": [8516], "ww9.thomascook.com": [16450], "intermundomedia.com": [8252], "blog.jolicloud.com": [20649], "opera.yandex.by": [18739], "growing.aliloan.com": [19141], "blog.cloudflare.com": [3284], "www.piratenpartei-bayern.de": [12753], "issun.cc": [2024], "depressionforums.org": [4361], "gedclai.re": [2024], "www.umiacs.umd.edu": [17351], "cdn.punterlink.co.uk": [13274], "img5.sj.qq.com": [13329], "myfolder.net": [10871], "eprints.nottingham.ac.uk": [11566], "on.cameo.tv": [2024], "pro-xy.com": [8836], "child3.ki.se": [8743], "websocket.org": [18185], "data.cmcore.com": [3665], "cpanel.popehat.com": [12962], "*.ingdirect.com": [7773], "mobile.pochtabank.ru": [12876], "my.alfresco.com": [850], "ule.worldcat.org": [18536], "tbtej.com": [2024], "prblm.in": [2024], "hmpl.sh": [2024], "liberiangeek.net": [9313], "ownedcore.com": [12217], "1and1.com": [69], "fw.adsafeprotected.com": [592], "alternc.org": [928], "warble.us": [2024], "wikinvest.com": [18389], "d5.sinaimg.cn": [14910], "nakedcitizens.eu": [11054], "acluidaho.org": [16250], "identity.jeded.com": [20635], "plainenglish.co.uk": [21430], "senat.us": [2024], "ss13.sinaimg.cn": [14910], "calmail.berkeley.edu": [17329], "libraries.ucsd.edu": [17012], "samc.me": [2024], "dfp.link": [2024], "gtd.alicdn.com": [853], "www.websitealive3.com": [18242], "agnj.co": [2024], "l.fade.ovh": [2024], "www.securenet.com": [14556], "ankaufservice.saturn.de": [21736], "pervouralsk.startsmile.ru": [21980], "admin.sns.gov.uk": [21883], "www.ubi.admin.ch": [22061], "eritrea.usembassy.gov": [22406], "o.basi.co": [2024], "st.developer.here.com": [7325], "fto4u.click": [2024], "modxcloud.com": [9787], "l.johnson.ink": [2024], "advocate-europe.eu": [720], "crowd16.te-st.ru": [22103], "whisper.sh": [18342], "t2c.co": [2024], "www.freedomsphoenix.com": [20161], "atlanta.webconsole.linode.com": [9401], "media.washingtonpost.com": [18086], "na2.www.gartner.com": [6442], "tcll.co": [2024], "americanfuturefund.com": [987], "www.comstern.de": [3458], "kslsydnorth.co": [2024], "de.aldi.lu": [357], "sgk.me": [2024], "n8h.me": [2024], "si.dwistroi.com": [2024], "api.service.hmrc.gov.uk": [7076], "i.mosankuna.com": [2024], "dshd.tk": [2024], "www.stelle.admin.ch": [22061], "developers.thomsonreuters.com": [16456], "hallchen.us": [2024], "ronhjr.me": [2024], "osu.worldcat.org": [18536], "ad.ghfusion.com": [6399], "tch.vc": [2024], "za.boell.org": [19422], "cferraro.us": [2024], "www.froscon.org": [6071], "forum.gephi.org": [6536], "www.ing.org": [7774], "resellers.basekit.com": [19323], "gfx8.hotmail.com": [7565], "*.smartbuy.hdfcbank.com": [7249], "calendar.rakuten.co.jp": [13593], "karts.arma3.com": [1227], "ricardo.ch": [13923], "uber.io": [2024], "jchartk.me": [2024], "www.ubuntustudio.org": [17189], "*.imgur.com": [8003], "www.intgovforum.org": [8200], "executive.mit.edu": [9761], "css.pocketgamer.biz": [12880], "data.stubhub.com": [15602], "ocdway.com": [2024], "s1.jrnl.ie": [20656], "blog.alertbot.com": [836], "securewww.esat.kuleuven.be": [8832], "xilinguole.jd.com": [8434], "horstaandemaas.nl": [11172], "hidi.me": [2024], "exhaleprovoice.org": [5481], "quickhash.com": [13410], "jeez.org": [2024], "lists.w3.org": [17980], "p4.ivideo.sina.com.cn": [14904], "images.miretail.com": [10480], "ueditor.duapp.com": [19902], "manta.com": [9969], "ihc.fyi": [2024], "vfb.cc": [2024], "my.ix.br": [20619], "wbaer.io": [2024], "hosko.me": [2024], "eupt.unizar.es": [17441], "sivers.org": [14955], "www.pkimber.net": [12296], "*.unibe.ch": [17328], "my.textmagic.com": [16230], "www.voxmedia.com": [17941, 22503], "admission.com": [16495], "s.alialien.de": [2024], "static.parastorage.com": [12424], "dpure.co": [2024], "sc4.maps.live.com": [9495], "x.zoca.co": [2024], "outlook.aber.ac.uk": [473], "www.catracalivre.com.br": [2917], "www.directory.umd.edu": [17351], "*.kingsroadmerch.com": [8915], "debug.fastly.com": [5676], "lk.admsys.email": [2024], "www.1btcxe.com": [60], "mksp.io": [2024], "fth.st": [2024], "cefas.co.uk": [2937], "lgf96oublc0clpff2st6vcpxzgyfds3osgmpol1p.ipleak.net": [20571], "*.cobaltmania.com": [3339], "hro.io": [2024], "www.home.hs-karlsruhe.de": [7587], "adscendmedia.com": [681], "translatewiki.net": [16747], "vbulletin.com": [17557], "www.commandfive.com": [3476], "dk.norton.com": [11545], "obi.ch": [21222], "www.kimsufi.com": [8908], "www.ingentaconnect.com": [8142], "www.kinfolk.com": [8911], "u-ww.co": [2024], "blkbld.uk": [2024], "obi.cz": [21222], "player.letvcdn.com": [20817], "vgc.no": [17569], "syktyvkar.europaplus.ru": [20034], "cruzcrew.com": [2024], "cheshireeast-consult.objective.co.uk": [21225], "leeds.greenparty.org.uk": [6908], "instart0.flixster.com": [5913], "www.storminternet.co.uk": [15565], "hackaday.io": [7127], "i.didz.is": [2024], "digg.com": [4456], "jp.sputniknews.com": [21951], "ssl2.ovh.net": [12205], "embed.theguardian.com": [16364], "www.jogorama.com.br": [8623], "apo.gs": [2024], "www.leahscape.com": [9221], "webcast2012.utm.edu": [17426], "www.districtsentinel.com": [4565], "images.contentful.com": [3616], "university.alfresco.com": [850], "enla.dict.cc": [4442], "donetsk.startsmile.ru": [21980], "tuymazy.startsmile.ru": [21980], "piwik.okfn.de": [21236], "association.typo3.org": [15959], "*.mpiweb.org": [9795], "englandconsult.forestry.gov.uk": [20135], "tgablog.com": [2024], "c4.aztravel.xyz": [2024], "nomadicmatt.us": [2024], "tracker.bro.org": [2363], "sprmag.co": [2024], "*.viedemerde.fr": [1845], "issoonline.biomedcentral.com": [1931], "marketingco.de": [2024], "sdprof.us": [2024], "11ckba552tse972zw3oruigprzo873uqtjtvbz0o.ipleak.net": [20571], "*.cbssportsnetwork.com": [2539], "p.twimg.com": [16949], "swapbot.tokenly.com": [22229], "m.hi-tech.mail.ru": [9891], "www.edri.org": [4890], "vspr.me": [2024], "*.austinfitmagazine.com": [1402], "v.hitechnews.us": [2024], "crypt.ncl.ac.uk": [10926], "www3.dudley.gov.uk": [4788], "www.giveto.osu.edu": [11797], "go.vpg.io": [2024], "dataexchangewales.org.uk": [19764], "nexternal.com": [11405], "www.padlet.com": [12354], "orbital-apps.com": [12126], "hipiti.co": [2024], "pstn.it": [2024], "pwrdrs.me": [2024], "sk.boardgamearena.com": [2182], "vitals.lifehacker.com": [9346], "computing-templates.web.cern.ch": [2588], "ycbi.org": [22671], "tyea.gr": [2024], "devel.unikernel.org": [17276], "enjin.com": [5265], "*.cscglobal.com": [3684], "lists.openinfosecfoundation.org": [12047], "bmap.me": [2024], "livenation.co.*": [9493], "www.fau.de": [17396], "fansbr.us": [2024], "consult.charnwood.gov.uk": [3021], "visualisingadvocacy.org": [17873], "ig.amdrd.com": [2024], "www.gotmerchant.com": [6839], "wmktg.co": [2024], "l.noshly.com": [2024], "k.wil.la": [2024], "lib.search.ch": [14504], "anchor.com.au": [1036], "export.ispserver.com": [20588], "mrchr.is": [2024], "be.gbot.me": [6791], "gkm2.co": [2024], "hkti.es": [2024], "portal.scot.nhs.uk": [10953], "foodl.org": [5981], "*.suntimes.com": [15660], "amt.oxfordjournals.org": [12222], "evbrow.se": [2024], "new-webmail.kth.se": [8768], "tnyvsky.me": [2024], "www.speakpipe.com": [15303], "cpyo.ga": [2024], "cdn.adultwork.com": [698], "dragon.ak.fbcdn.net": [5689], "cdn.traceregister.com": [16701], "*.growhq.com": [6961], "marvel.com": [10047], "cream.cf": [2024], "ilecon.ru": [2024], "go.spotapps.co": [2024], "images.scribblelive.com": [14474], "www.datacenter.illinois.edu": [17346], "pravdatyt.com": [21479], "matrixgroup.net": [10090], "dombank.dengisend.ru": [4344], "hxtrack.holidayextras.co.uk": [7459], "app.uformia.com": [17197], "pixel.fsg.ulaval.ca": [17319], "project-syndicate.org": [13182], "www.mijnwestlandutrecht.nl": [18311], "tri.mn": [2024], "cdn.liginc.co.jp": [20839], "ainsdr.co": [2024], "62center.williams.edu": [18408], "ssa.gov": [21959], "m2.hkgolden.com": [7058], "blocktogether.org": [2105], "tmcomponents.travelmarket.com": [16771], "r18.maxon.net": [10110], "accc.gov.au": [1410], "oas.five.tv": [5872], "*.zenfolio.com": [18926], "top.etao.com": [4965], "lgtr.es": [2024], "krg.bz": [2024], "taz.de": [15853], "www.sceneaccess.eu": [14405], "sdpowersre.com": [2024], "hazro.com": [20350], "www.tolaris.com": [16613], "s2.skyscnr.com": [15006], "m.mediapart.fr": [10194], "sheg.stanford.edu": [15448], "elizovo.startsmile.ru": [21980], "walt.im": [2024], "customf.it": [2024], "www.senate.gov.ph": [14636], "docs.pushbullet.com": [13295], "spply.me": [2024], "aprl.in": [2024], "kb.askmonty.org": [1286], "web.kn.vutbr.cz": [17609], "scpro.streamuk.com": [22008], "oroboro.com": [21292], "widgetpay1.beeline.ru": [1778], "www.backstreet-merch.com": [1627], "update6.dedyn.io": [19789], "devel.root.cz": [14020], "www.civicrm.org": [3202], "belgorod.sledcom.ru": [21858], "schaffner.org": [14409], "linshuguan.jd.com": [8434], "c-bu.me": [2024], "baza.inetvl.ru": [20525], "shiana.me": [2024], "www.kinopoisk.ru": [20723], "hi.kyivstar.ua": [9067], "communitylife.cabinetoffice.gov.uk": [2716], "dezeen.com": [4423], "my.ddos-guard.net": [19788], "wwwizzards.com": [2024], "zwheat.com": [2024], "www.essaysreasy.net": [5353], "tuxedocomputers.com": [16931], "proj.at": [2024], "www.xsens.com": [18683], "vlissingen.nl": [11172], "1.han.solar": [2024], "lundi.am": [9681], "pustito.hnonline.sk": [7445], "store.daringfireball.net": [4140], "*.mietek.io": [10410], "ncats.nih.gov": [11090], "ok.ru": [11806], "ngonoo.co": [2024], "wi28.it": [2024], "ubx.io": [2024], "eu1.factorio.com": [20068], "patd.me": [2024], "payrisk.jd.com": [8436], "community.1and1.co.uk": [71], "link.balao.cz": [2024], "www.depositprotection.com": [4360], "www.cottagesdirect.co.uk": [18579], "csrchecker.wosign.com": [18483], "carhirehelp.skyscanner.net": [15006], "avenue.argus.ch": [1215], "billiongraves.com": [1913], "cdn1.smartadserver.com": [15049], "ocf.berkeley.edu": [17329], "cri.gs": [2024], "survey.constantcontact.com": [3594], "thght.works": [2024], "uscurrency.gov": [17136], "on.nutricap.hk": [2024], "wadds.co": [2024], "agava.ru": [765], "www.kevag-telekom.de": [8878], "webhostingtalk.com": [18135], "www.tripbod.com": [16820], "ispgids.com": [7834], "omnitec.com": [11839], "netmath.illinois.edu": [17346], "www.upv.cz": [17090], "sopurr.co": [2024], "bdataanalytics.biomedcentral.com": [1931], "f2.drweb.com": [4776], "www.sourceconference.com": [15245], "help.pinterest.com": [12731], "jrs.oxfordjournals.org": [12222], "fmweb.fm.uic.edu": [17321], "www.upworthy.com": [17489], "ringcentral.com": [13948], "sp.sony-europe.com": [15211], "pqcrypto.org": [12315], "bundesverfassungsgericht.de": [2449], "vstk.co": [2024], "avinoy.com": [2024], "*.pg.com": [13168], "*.everesttech.net": [5437], "fernuni-hagen.de": [5742], "soph.cc": [2024], "www.ebroking.hsbc.com.hk": [20427], "dlrpwr.net": [2024], "jobs.apple.com": [1151], "oyoony.at": [21329], "nikole.us": [2024], "sayar.at": [2024], "g.jak.cx": [2024], "r24627555.sync.app.asana.com": [1265], "doom4.beget.com": [19347], "s57.cnzz.com": [3328], "bugs.ga": [2024], "twinery.org": [22331], "maxim-ic.com": [10107], "cdzr.ly": [2024], "tele.sh": [2024], "rufusgtabinaries.bnymellon.com": [19420], "terreactive.ch": [16201], "www.nxtforum.org": [11631], "cliqc.me": [2024], "rdg.x5.ru": [18590], "crm-metrix.com": [2672], "www.socialtyzetracking.com": [15140], "www.pizza.de": [12783], "asq.solar": [2024], "2x2.ph": [2024], "mid-suffolk.greenparty.org.uk": [6908], "i.tad.im": [2024], "pdpnt.uk": [2024], "ln-k.me": [2024], "*.workable.com": [18529], "linear.enterprises": [20843], "energy.opendata.ch": [21270], "otm.georgetown.edu": [6531], "bit.agme.com.mx": [2024], "snac.worldcat.org": [18536], "blog.suitabletech.com": [18518], "www.petsymposium.org": [12272], "blog.oauth.net": [11645], "sae.sina.com.cn": [14904], "1.mov.nz": [2024], "radiotoday.co": [2024], "postepay.poste.it": [13013], "mp.alipay.com": [864], "short.wedo.com": [2024], "ee.stanford.edu": [15448], "www.cbb.dk": [2922], "wiki.nuug.no": [11017], "spag.es": [2024], "onoff.re": [2024], "marvelj.jp": [2024], "frmstr.co": [2024], "*.fiercemarkets.com": [5762], "www.areweslimyet.com": [1206], "d.conanne.ws": [2024], "nurs.in": [2024], "aris.bz": [2024], "jabberd.org": [8489], "www.circules.com": [7271], "timex.com": [16542], "www.privatebin.info": [21501], "visa.qiwi.com": [13352], "sheffield.gov.uk": [14755], "att.com": [424], "weis.ly": [2024], "freesim.vodafone.co.uk": [17900], "b1z.io": [2024], "giochi.rsi.ch": [21957], "www.mi5.gov.uk": [9753], "images.google.co.*": [6824], "allnokia.ru": [19153], "css.mapreporter.navteq.com": [10914], "www.hosteuropegroup.com": [7510], "truekey.mcafee.com": [10129], "packages.baruwa.com": [19320], "stadium.ru": [21971], "ciencia.elpais.com": [5126], "go.taipei.io": [2024], "morrismc.se": [2024], "wirral.gov.uk": [18461], "platform.gigya.com": [6641], "be.icecat.biz": [7912], "dragonegg.llvm.org": [9103], "plays.tv": [12847], "4freelance.net": [2024], "lacrossetechnology.com": [9136], "*.pathofexile.com": [12487], "www.bricklink.com": [2330], "www.stablehost.com": [15423], "shutter.ly": [2024], "bingo.williamhill.com": [18406], "mineralnyevody.startsmile.ru": [21980], "exacom.sk": [5464], "electrum.org": [5145], "samaratoday.ru": [21725], "service.ble.de": [19406], "bretagne-web.eu": [2325], "bss.fnal.gov": [5741], "kloust.in": [2024], "impulsedriven.com": [8026], "hku.hk": [20387], "jtlebi.fr": [8672], "www.feedburner.com": [5720], "sdel.in": [2024], "www.titanpad.com": [16573], "educ.admtyumen.ru": [19082], "timpn.uk": [2024], "labs.isecpartners.com": [7827], "bats.buzz": [2024], "disq.us": [4559], "weibo.cn": [18277], "co.udn.com": [17020], "search.aol.com": [380], "www.hannovermesse.de": [7184], "www.mousejack.com": [21028], "qf-cafm.qf.org.qa": [21557], "c.m.163.com": [50], "awards.hkgolden.com": [7058], "providesupport.com": [13218], "skr.cm": [2024], "kinja.com": [8920], "kikf.link": [2024], "www.teachers.sky.com": [14989], "api2.auto.ru": [19276], "dev.apigee.com": [1124], "www.pauldreik.se": [12494], "t.sebs.ch": [2024], "truthdig.com": [16873], "link.atsamp.de": [2024], "prettylittlething.com": [13089], "player.cdn.tv1.eu": [15944], "sj.plus": [2024], "j9t.co": [2024], "heyspc.mn": [2024], "cf.bluehost-cdn.com": [2163], "bmcpharmacoltoxicol.biomedcentral.com": [1931], "ilovebluesea.com": [7891], "roundcube.utsc.utoronto.ca": [17427], "mustafic.co": [2024], "cotn.in": [2024], "kort.noijens.eu": [2024], "btbrand.unitech.net": [17266], "secure-usb.co.uk": [21768], "3dsdemo.sdm.ru": [14494], "www.chlomo.org": [3097], "help.anonine.com": [1084], "i.hermansson.io": [2024], "cvi.to": [2024], "wattu.se": [2024], "www.7search.com": [234], "lee.gl": [2024], "url.noeca.org": [2024], "apps.code.sfu.ca": [14708], "www.petfinder.com": [12626], "www.atname.ru": [420], "linglink.de": [2024], "smtp.hska.info": [20437], "uk.wwte4.com": [18031], "jdcb.me": [2024], "z.pracuj.pl": [2024], "www.h2hc.com.br": [7027], "calderdale.gov.uk": [2751], "themuslimtimes.info": [16300], "vds.st.uz": [21966], "ed.geca.se": [2024], "www.admin-smolensk.ru": [19079], "luckyph.one": [2024], "www.cykloteket.se": [3973], "fifedirect.org.uk": [5764], "www.dds2dds.com": [4011], "defensoruniversitario.unizar.es": [17441], "www.csis.dk": [2687], "streetlife.com": [22010], "adhesion.l214.com": [20767], "adv.bostonglobemedia.com": [2254], "rea.anhc.mx": [2024], "stopthehacker.com": [15557], "blog.bit9.com": [1952], "dundeecity.gov.uk": [4794], "go.nazarov.com": [2024], "www.suprizkizlar.com": [15706], "me.effectivemeasure.net": [5096], "noble.tzar.pro": [2024], "docsv2.dwolla.com": [4809], "codacy.com": [19634], "zenmate.com.ve": [18917], "anketa.alfabank.ru": [849], "snapshots.pfsense.org": [12637], "olum.co": [2024], "sciav.fr": [2024], "blsh.cc": [2024], "fiddler2.com": [20085], "go.ergonea.com": [2024], "au.effectivemeasure.net": [5096], "byri.ch": [2024], "www.ricardoshops.ch": [13924], "secure.entrust.com": [5290], "jp.pornworms.com": [12974], "piwik.boell.de": [2192], "bcstilho.tk": [2024], "noudaily.com": [2024], "a.akhbarak.net": [2024], "yuri-ism.net": [18842], "jitbit.com": [8593], "js-hx.newjobs.com": [11358], "booth.social": [2024], "*.wikispooks.com": [18390], "instart1.flixster.com": [5913], "vmgiving.co": [2024], "ctt.pt": [3901], "admin2.play-asia.com": [12828], "whatif.xkcd.com": [22652], "store.lessig2016.us": [9275], "boticar.io": [2024], "nestle.de": [11207], "m.wolverhampton.gov.uk": [18494], "efficios.com": [5098], "smx.enter.ru": [20002], "trustico.com": [16865], "cdn.steamcommunity.com": [15517], "leao.in": [2024], "hvlink.de": [2024], "www.tineye.com": [16543], "novosibirsk.beeline.ru": [1778], "www.filefactory.com": [5775], "t8.pixhost.org": [21426], "cdn.tinymce.com": [22212], "www.npjhub.org": [8312], "painmedicine.oxfordjournals.org": [12222], "itar.iana.org": [7671], "stats.openstreetmap.org": [12015], "sav.mn": [2024], "mathjax.org": [20933], "www.uef.fi": [17338], "corbanworks.com": [3660], "givingcomfort.org": [6672], "static.mixtapeleak.com": [10507], "login.f5.com": [5537], "*.getglue.com": [6560], "tinymce.com": [22212], "gameshiz.com": [2024], "www.veuwer.com": [17743], "kluchi.pro": [2024], "www.mfi.re": [9751], "etext.illinois.edu": [17346], "pawst.ru": [2024], "jmvm.oxfordjournals.org": [12222], "nrgi.se": [2024], "abma.de": [19041], "notice.taobao.com": [16015], "wwww.umweltbundesamt.de": [17230], "hfgl.org": [2024], "globalvoices.atlatszo.hu": [1349], "isale.jd.com": [8436], "advisory.juniper.net": [8698], "www.kaprica.com": [20686], "www17.georgetown.edu": [6531], "www.quran-online.ru": [21568], "selfserve.broxtowe.gov.uk": [19458], "plain.wf": [2024], "www.readynas.com": [13679], "wwwmail.urz.uni-heidelberg.de": [17262], "www-mail.magbio.ens.fr": [4922], "ep3i.net": [2024], "ddst.io": [2024], "www.edoceo.com": [5079], "link.flopper.dk": [2024], "app.cvent.com": [3941], "validator.prestashop.com": [13085], "disneyj.jp": [2024], "ptau.li": [2024], "skyprogrammeinformation.co.uk": [14995], "ronikantor.me": [2024], "wiebetech.com": [18375], "status.runabove.com": [14090], "5-s.imgbox.com": [7997], "apsjobs.gov.au": [394], "i.jeded.com": [20635], "alpha.yaplakal.com": [22668], "coca-cola.axonify.com": [1502], "museum.automattic.com": [1452], "event.sherpa.be": [2024], "www.fdic.gov": [5700], "*.yelp.ie": [18766], "b.natrs.net": [2024], "rgb.link": [2024], "theproxybay.website": [22174], "www.dominustemporis.com": [4667], "feedback.xbox.com": [18639], "enygf.eu": [5416], "be.gogobot.com": [6791], "*.yelp.it": [18766], "ls.islamacademy.net": [8366], "blogoverflow.com": [15424], "vgc.tips": [2024], "member.accesstrade.net": [511], "cumbria.gov.uk": [19742], "link.wasp.io": [2024], "sdprosocial.com": [2024], "*.github.io": [6660], "bober64.sknt.ru": [21851], "portal.upo.es": [17479], "media3.woolworths.com.au": [18511], "touch.livingsocial.com": [9530], "roeck-us.net": [14000], "mi6.ua": [9754], "openbenchmarking.org": [11958], "brwtk.co": [2024], "*.hoover.org": [7498], "directory.domaintools.com": [4653], "www.bitshares.org": [1972], "b.comejo.in": [2024], "git.framasoft.org": [6075], "www.dploy.io": [19809], "ifixit.com": [7731], "freizeit1.sbb.ch": [15756], "licai.renren.com": [13830], "fndrs.net": [2024], "banjul.usembassy.gov": [22406], "divessi.com": [4571], "www.thevideo.me": [16318], "hpcc.usc.edu": [17366], "citadium.com": [3169], "www.atemda.com": [662], "url.locari.jp": [2024], "www.quandl.com": [13385], "de.ulule.com": [17224], "*.usenet.nl": [17512], "onelogin.com": [11874], "static.aboutus.org": [483], "s.hum-ncu.com": [2024], "www.amnesty.no": [1018], "www.press.jhu.edu": [16370], "a.adroll.com": [590], "autodiscover.2kgames.com": [117], "www.serieb.tv": [21785], "www.vxstream-sandbox.com": [17975], "www.handylinux.org": [20336], "a.itech4u.gr": [2024], "mit.bme.hu": [1557], "cdn1.doitgarden.ch": [4629], "l-ee.me": [2024], "learntim.co": [2024], "resus.org.uk": [13877], "x.pe.com": [2024], "intern.alpenverein.de": [19159], "www.varuste.net": [17661], "dydx.io": [4813], "www.sm.baden-wuerttemberg.de": [19302], "www.ecampus.no": [4875], "www.awstrust.com": [434], "apphelp.copilotgps.com": [19686], "www.careerbuilder.no": [19512], "static.event.notifier.rakuten.co.jp": [13594], "dish.stanford.edu": [15448], "mjhs.uk": [2024], "u2.qiyipic.com": [13354], "graphics.cars.com": [2874], "rhcloud.com": [13483], "www.thepiratebay.la": [22175], "bbr-wiki.slac.stanford.edu": [15448], "joyg.me": [2024], "www.educacursos.com": [5083], "music.qq.com": [13329], "m.kennedy-center.org": [20703], "alzr.us": [2024], "ppvt.pro": [2024], "land.secondlife.com": [14527], "www.ssa.gov": [21959], "*.csupomona.edu": [2765], "abc.blesk.cz": [2088], "menoratr.es": [2024], "webstore.illinois.edu": [17346], "map.x5.ru": [18590], "lovies.eu": [2024], "cowww.play-asia.com": [12828], "dashboard.pingxx.com": [12723], "nhm.uio.no": [17414], "wine-staging.com": [18440], "corporate.sky.com": [14989], "global.nature.org": [11141], "sts.cuhk.edu.hk": [2704], "010.io": [2024], "optimize.ly": [2024], "www.iiphighlights.state.gov": [17146], "api-store.nzqa.govt.nz": [11044], "nini.es": [2024], "people.debian.org": [4263], "card2card.banki.ru": [1672], "*.notebooksbilliger.de": [11562], "crowds.newegg.com": [11356], "mccai.gs": [2024], "dropoff.slu.se": [14195], "www.uainfo.org": [22339], "airport-store.osu.edu": [11797], "personal.vanguard.com": [22426], "referral.wustl.edu": [18089], "www.*.uh.edu": [17400], "stuke2.piratenpartei-bayern.de": [12753], "schwrzng.gr": [2024], "bugzilla.fsl.cs.sunysb.edu": [15548], "jwe.bz": [2024], "www.careerbuildercareers.com": [19513], "rigg.in": [2024], "jnet.jesus.cam.ac.uk": [17332], "kasimp3.co.za": [8818], "dmb.cat": [2024], "paramt.co": [2024], "www.intelnews.org": [20549], "paramt.ca": [2024], "jast.moe": [2024], "9ts.de": [2024], "i1.letvimg.com": [20818], "jj2.me": [2024], "*.blogspot.cz": [2127], "h.online-metrix.net": [11907], "egap.britac.ac.uk": [2352], "northcentral.aclufl.org": [297], "www.thelocal.de": [22164], "crawl.develz.org": [19822], "paste.ngx.cc": [11415], "colorlabs.co": [2024], "pensions.northamptonshire.gov.uk": [21156], "vrbn.ca": [2024], "lukenlather.me": [2024], "*.boalt.com": [1562], "on.scorpion.co": [2024], "anidb5.anidb.net": [1065], "hebu.co": [2024], "tal.de": [15981], "www.rrz.uni-hamburg.de": [17025], "morsels.me": [2024], "url.myfini.com": [2024], "publications.europa.eu": [5411], "valpo.worldcat.org": [18536], "inmuebles.bankinter.com": [1674], "d4.biz.itc.cn": [8401], "auth.dn.se": [19856], "payment.adingo.jp": [646], "mdas.me": [2024], "stsmda.us": [2024], "fnal.gov": [5741], "att-i.shoebuy.com": [14775], "www.landalgreenparks.com": [18579], "lmt.co": [2024], "android-arsenal.com": [1047], "kazu69.in": [2024], "dwk.io": [2024], "getwi.se": [2024], "one.actionkit.com": [11676], "www.twitpic.com": [16963], "secure-dev.techxpress.net": [16087], "mtrust.org": [2024], "gitc.finance.gov.au": [3495], "jcp.is": [2024], "app.holidayextras.co.uk": [7459], "ksu.ag": [2024], "esia.gosuslugi.ru": [6835], "xenak.es": [2024], "subs.pcr-online.biz": [21372], "libcat.ornl.gov": [11730], "*.socialbakers.com": [15135], "switchvid.co": [2024], "tim.ly": [2024], "www.selfridges.com": [14629], "ma.rriag.es": [2024], "www.encryptmas.org": [5228], "www.servicesonline.opm.gov": [11690], "www.jailbreakingisnotacrime.org": [8503], "go.grace.ph": [2024], "api.soundcloud.com": [15231], "fakaheda.eu": [5627], "r-f.co": [2024], "yuzhno-sakhalinsk.beeline.ru": [1778], "tugg.com": [16893], "commcns.org": [2024], "parents.stanford.edu": [15448], "my.engr.illinois.edu": [17346], "clema.cc": [2024], "stupid.com": [15614], "www.un.org": [17057], "www.dudley.gov.uk": [4788], "*.solarcity.com": [15179], "syn.tips": [2024], "mirabel.la": [2024], "renewals.cheshire.gov.uk": [3069], "drupal.uninett.no": [17280], "paf-ps2.web.cern.ch": [2588], "www.buhonline.ru": [19468], "vlv.me": [2024], "carcin.oxfordjournals.org": [12222], "i.kommersant.ru": [20746], "dklds.org": [2024], "a0.twimg.com": [16949], "www.venuu.fi": [22439], "bigdataexpress.fnal.gov": [5741], "home.ch": [7474], "en.3.boardgamearena.com": [2182], "s.muy10.com": [2024], "mm.joachimt.com": [2024], "*.intelliworkschat.com": [8221], "slack.javascript.ru": [20629], "journal.r-project.org": [13447], "skylarkapp.net": [2024], "dl.ngrok.com": [11414], "ukonlinecentres.com": [17051], "www.poets.org": [12892], "secure.vxsbill.com": [22515], "fw.vevo.com": [17566], "aatr.co.uk": [2024], "campaign.iciciprulife.com": [7917], "tweetriver.com": [10057], "fr.movim.eu": [10684], "bigp.in": [2024], "pixid.ideeinc.com": [16543], "kcusd.illuminateed.com": [20494], "accesspiratebay.co.uk": [22177], "www.bmi.bund.de": [2443], "londoncityairport.com": [9592], "mctg.co": [2024], "www.stanfordhospital.org": [15451], "p.skimresources.com": [14977], "babylink.scot.nhs.uk": [10953], "6connect.com": [224], "securenet.vodafone.pt": [17903], "www.cr0.org": [3746], "fxsitecompat.com": [20192], "maidsafe.org": [9884], "d3n.in": [2024], "www.passwordwolf.com": [21355], "feed.meetme.com": [10224], "on.ewi.ngo": [2024], "domoticz.com": [4668], "arrival-board.infinum.co": [20526], "albert.rit.edu": [13493], "fop.fnal.gov": [5741], "tibco.cm": [2024], "www.vf.com": [3554], "we4.djicdn.com": [4029], "kodak.ly": [2024], "*.gdatasoftware.com": [6272], "orderng02.ikoula.com": [7966], "automx.org": [1455], "muntenbru.ch": [2024], "52.mvd.ru": [21055], "tutusc.co": [2024], "thelocal.at": [22162], "tubb.co": [2024], "saratov.biglion.ru": [19375], "read.spoke.news": [2024], "msns.osu.edu": [11797], "careers.microsoft.com": [10396], "fragrances.hugoboss.com": [7608], "fulfillment.aliexpress.com": [19140], "url.mastrip.net": [2024], "help.sigmabeauty.com": [14840], "dm.mix1.net": [2024], "dale.am": [2024], "ipv6.root.cz": [14020], "ckerr.net": [2024], "control.anchor.com.au": [1036], "egms.cancerresearchuk.org": [19501], "www.mare-system.de": [9722], "sixfla.gs": [2024], "bankorange.dengisend.ru": [4344], "n2.sinaimg.cn": [14910], "muri.osu.edu": [11797], "familypet.us": [2024], "propertyinvesting.com": [13203], "gunsamerica.com": [20324], "www.zenmate.com.ru": [18917], "4hb.in": [2024], "grn.lt": [2024], "jit.si": [8596], "l.202.be": [2024], "edinburgh.gov.uk": [5074], "www.hastexo.com": [7224], "eshop.roup.eu": [2024], "my.active24.com": [19061], "hupe.sigxcpu.org": [14846], "www.scottishpowerpipeband.com": [14462], "static.zenimax.com": [18929], "axsw.co": [2024], "reimbursements.ibx.com": [20473], "spul.se": [2024], "www.csgolounge.com": [3887], "dicesoft.net": [4441], "jit.su": [8592], "url.slc.fit": [2024], "shop.fairphone.com": [5625], "uhrzeit.org": [17203], "urz.uni-heidelberg.de": [17262], "www.alternativemeats.co.uk": [19162], "www.civilserviceworld.com": [19602], "static.eloqua.com": [5172], "static.duoshuo.com": [19906], "greetingcards.barnardos.org.uk": [19316], "d0.sinaimg.cn": [14910], "enit.dict.cc": [4442], "praha.idnes.cz": [20483], "es-us.ondeck.com": [21251], "cncb.it": [2024], "giftedandtalented.com": [6625], "s127.cnzz.com": [3328], "www.authorea.com": [1434], "www.newsmax.com": [11383], "wiki.piratenpartei.de": [12755], "m.obile.info": [2024], "egedalkommune.dk": [5100], "eas3.emediate.se": [5195], "www.socialtheater.com": [15134], "pbpb.in": [2024], "glmr.fr": [2024], "thumbnail.myheritageimages.com": [10876], "ripe68.ripe.net": [13953], "siste.rs": [2024], "kanste.in": [2024], "4.boardgamearena.com": [2182], "jmoo.re": [2024], "link.plair.ml": [2024], "2006.weblogawards.org": [18221], "asia.adform.net": [638], "okligatv.com": [21238], "www.14.cbsm.at": [8782], "sunpeaksne.ws": [2024], "www.tahina.priv.at": [13128], "s1.jugger.mail.ru": [9891], "www.youtube.de": [18800], "oodi.aalto.fi": [447], "mail.newsinc.com": [11376], "free.ngur.xyz": [2024], "www.allianzfuercybersicherheit.de": [900], "jantarnyj.klops.ru": [20735], "quant.jd.com": [8436], "ideone.com": [7944], "www.us-ignite.org": [17101], "www.law.stanford.edu": [15448], "www.beeg.com": [19343], "go.fox40.com": [2024], "mail.georgetown.edu": [6531], "quero.beer": [2024], "fsf.rocks": [2024], "www.africajobs.g4s.com": [20195], "www.chiliproject.org": [3080], "weillcornell.org": [22557], "whitehatters.academy": [22578], "harlowgigs.info": [2024], "4goat.com": [2024], "infam.us": [2024], "wiki.sequanux.org": [14653], "www.websitealive1.com": [18242], "library.cuhk.edu.hk": [2704], "www.belkin.com": [1791], "gamelink.com": [6393], "apkt.co": [2024], "c.cnzz.com": [3328], "sjani.me": [2024], "joycasino2.com": [20654], "fpliv.in": [2024], "soutien.laquadrature.net": [9126], "de.m.xhamster.com": [18606], "vip.sina.com.cn": [14904], "oagcargo.com": [16999], "pes.georgetown.edu": [6531], "123bay.online": [21522], "l6.hitravel.xyz": [2024], "www.secdev-foundation.org": [21766], "my.kaspersky.com": [8820], "yubico.com": [18835], "phild.in": [2024], "unblocksit.es": [17236], "g.webswamp.net": [2024], "myplace.walthamforest.gov.uk": [18061], "sip.mbank.cz": [9733], "www.javascriptkicks.com": [8540], "ccftl.org": [2024], "www.factbook.ecc-platform.org": [4871], "17.lenovo.com.cn": [9266], "www.vuze.com": [17972], "juniper.net": [8698], "osetia.kavkaz-uzel.ru": [20694], "*.active.com": [550], "nextiva.com": [11408], "files.tested.com": [18340], "reefbuilders.com": [13765], "account.dji.com": [4029], "s.gekiura.com": [2024], "acs.tfb.ru": [16236], "burtsbe.es": [2024], "images.hertz.com": [7371], "firmo.org": [2024], "piratebay.unlockproject.pw": [22259], "shop.malwarebytes.com": [9940], "doxycoutu.re": [2024], "s.qlan.net": [2024], "bezuegerechner.bva.bund.de": [5706], "68.mvd.ru": [21055], "p1.raasnet.com": [13716], "www.jameco.com": [8511], "m.airbnb.com.au": [793], "mandrillapp.com": [9956], "issues.openmrs.org": [11989], "q.promnite.com": [2024], "kr.calameo.com": [2747], "start.salixos.org": [21722], "loncapa.sfu.ca": [14708], "chitaitext.ru": [19584], "sec.xiaomi.com": [18662], "www.zdf.de": [22709], "reserv.astrobl.ru": [19264], "bitcoin.co.th": [1991], "*.unblock-us.com": [17235], "ric.consultant.ru": [19672], "www.obdev.at": [11732], "nev0.com": [2024], "ruby.froscon.org": [6071], "community.cisecurity.org": [2628], "racare.rakuten.co.jp": [13594], "pcktu.com": [2024], "m.moslenta.ru": [21022], "www.infragard.net": [8136], "clickfun.com": [3260], "www.ens-lyon.org": [5272], "cmedl.in": [2024], "screenshotmachine.com": [14472], "museum.ceredigion.gov.uk": [2972], "alternate.be": [929], "p.ivideo.sina.com.cn": [14904], "regiochannel.com": [13791], "hosting2.axelname.ru": [1498], "kinderstem.nu": [2024], "syslab.cs.washington.edu": [17376], "cityoflondon.firmstep.com": [20109], "www.bitmissile.com": [1964], "huntingbears.nl": [7627], "vertx.ci.cloudbees.com": [19622], "jako-o.*": [8506], "www.nvrnet.ru": [21209], "www.bankid.no": [1668], "forums.boounce.com": [2239], "www.mandiant.net": [10193], "t9.qlogo.cn": [13355], "nabo.to": [2024], "dpr.gtgn.co": [2024], "lubswww.leeds.ac.uk": [17403], "genelab-data.ndc.nasa.gov": [10909], "ajk.li": [2024], "itaccounts.iu.edu": [8069], "wsq.umeng.com": [22363], "darkreading.com": [4143], "directory.weill.cornell.edu": [3676], "domainbox.com": [4655], "me.efi.th-nuernberg.de": [16239], "social.aolu.co": [2024], "www.getdigital.eu": [6557], "balboa.io": [1649], "cliara.caltech.edu": [2770], "hrdivision.usc.edu": [17366], "s.yimg.jp": [18778], "itscapps.ust.hk": [22412], "cpan.metacpan.org": [10321], "www.cxsecurity.com": [3943], "resin.io": [13864], "glsns.us": [2024], "styro.link": [2024], "nbwn.de": [10919], "nsdnk.co": [2024], "ilmasto-opas.fi": [7974], "www.digikey.com": [4457], "logging.appuio.ch": [1168], "photo-maraphon.home.svyaznoy.ru": [22053], "gz.bcebos.com": [19337], "heroes.friday.ru": [20175], "muslimsfacingtomorrow.com": [10768], "nz.usembassy.gov": [22406], "jochen-hoenicke.de": [8619], "pehub.com": [21381], "support.saba.com": [21710], "teams.unicef.org": [17069], "puush.me": [13303], "app.webinspector.com": [18136], "4.iliokb.com": [2024], "www.johnrennie.net": [8624], "jaguar.here.com": [7325], "1.glissa.com": [2024], "webvt.nl": [2024], "stuart.in": [2024], "x.assi.st": [2024], "eller.im": [2024], "unblockthepiratebay.net": [22174], "ebanking2.danskebank.dk": [4138], "2.ssl.schmidtcom.de": [14419], "www.xiph.org": [18667], "return.is": [2024], "i.swcw.me": [2024], "su.tien2.net": [2024], "cdnb.kaltura.com": [8790], "forms.torbay.gov.uk": [16641], "assets.guim.co.uk": [6996], "resetmypassword.unicef.org": [17069], "em360.tech": [2024], "mediawatch.dk": [10178], "365tickets.co.uk": [149], "video.yandex.com.tr": [18740], "rndh.se": [2024], "disk.ya.ru": [18716], "digitalmedia.oracle.com": [12116], "*.https.cdn.softlayer.net": [15160], "cert.fi": [2594], "partner.blackberry.com": [2068], "www.unichange.me": [22370], "northlincolnshire.firmstep.com": [20108], "bhr.st": [2024], "client-api.itunes.apple.com": [1151], "haoyunsoon.duapp.com": [19902], "picoville.com": [12697], "mikewal.sh": [2024], "kellwood.us": [2024], "s8.gismeteo.lt": [20249], "kizoom.co": [2024], "www.buzzfeed.com": [2489], "saam.co": [2024], "mktg.clicktools.com": [3264], "myview.wirral.gov.uk": [18461], "thunderbird-mail.de": [16478], "waffle.io": [18038], "fsh.io": [2024], "content.incapsula.com": [8047], "push.sportmaster.ru": [21944], "triongam.es": [2024], "savethelink.org": [14375], "files.gpg4win.org": [6859], "www.foecvliab.com": [5950], "pickaweb.co.uk": [12692], "shop.idg.se": [7709], "www.beckpc.ch": [1772], "pnae.us": [2024], "www1.wolframalpha.com": [18487], "www.paraduxmedia.com": [12415], "www.force11.org": [5576], "eiffel.com": [5111], "search.thewarehouse.co.nz": [16425], "fro.gd": [2024], "res.wx.qq.com": [13329], "www.theconversation.com": [16338], "ch.yaay.ch": [2024], "alb.rocks": [2024], "*.democratandchronicle.com": [4337], "i8.chaucanh.net": [2024], "cas.fit.edu": [5922], "assets.crucial.jp": [3828], "donate.fftfef.org": [5752], "beta.companieshouse.gov.uk": [3509], "simquadrat.de": [14900], "pvm.cc": [2024], "powys.gov.uk": [21474], "physicsforums.com": [12687], "www.newegg.com": [11356], "www.newkaliningrad.ru": [21123], "*.csis-scrs.gc.ca": [2816], "fun.alipay.com": [864], "www.bit.ly": [2023], "*.np-edv.at": [11576], "demode.ninja": [2024], "*.webmdhealth.com": [18168], "hlth.ch": [2024], "fau.de": [17396], "pierdepeso.xyz": [2024], "www.whosampled.com": [18354], "developer.blender.org": [2086], "www.korelogic.com": [8997], "sp.ual.es": [17162], "halfsp.in": [2024], "apps1.lbhf.gov.uk": [9078], "democrats.intelligence.house.gov": [17107], "usrowing.org": [17130], "apps.oseems.com": [12154], "trueloc.al": [2024], "sailthru.com": [14304], "a2.itc.cn": [8401], "fdz.mx": [2024], "dps.illinois.edu": [17346], "i2.calameoassets.com": [2749], "info.unit4.com": [22377, 22378], "www.eyetechds.com": [5524], "untngl.me": [2024], "www4c.wolframalpha.com": [18487], "ubifor.ms": [2024], "svnsxt.co": [2024], "l.hentaisc.net": [2024], "sserp.me": [2024], "ad.netcommunities.com": [11213], "zalando.no": [18877], "www.ercpe.de": [5326], "3n-sev.tk": [2024], "gocase.unodc.org": [17075], "djrc.portal.dowjones.com": [11361], "www.zdoom.org": [22710], "shop.stelladot.com": [15531], "facultysenate.wustl.edu": [18089], "spnc.gq": [2024], "www.builditbreakit.org": [2427], "www.techanarchy.net": [22110], "orgsync.com": [12137], "status.linaro.org": [9377], "app.protectnetwork.org": [13211], "vhq.cc": [2024], "www.frozentux.net": [6212], "www.berryreview.com": [1829], "ljkc.info": [2024], "southcambs.greenparty.org.uk": [6908], "annyung.oops.org": [11933], "finkontrol.49gov.ru": [187], "dutchcrafters.com": [19908], "fb.iinntt.com": [2024], "icc.oxfordjournals.org": [12222], "tracker.lightningmaps.org": [9361], "g16.click": [2024], "popurl.me": [2024], "ftp.darmstadt.ccc.de": [2553], "mspats.cc": [2024], "adon.is": [2024], "www.startsmile.ru": [21980], "ina.org.au": [2024], "oops.udn.com": [17020], "w1.plugrush.com": [12864], "0click.ml": [2024], "005.img.pu.sohu.com.cn": [15170], "conquest.am": [2024], "www.londoneye.com": [9585], "erevenues.cheshireeast.gov.uk": [3071], "uslugi.beeline.kz": [19345], "balashov.startsmile.ru": [21980], "www.uprod.biz": [17092], "portuguese.angola.usembassy.gov": [22406], "castle-hill.eschools.co.uk": [20017], "npm.im": [11578], "support.crowdrise.com": [3825], "participation.usa.gov": [17110], "cti.click": [2024], "techpinions.com": [16113], "*.blogspot.jp": [2127], "www.mygsb.stanford.edu": [15448], "kissmetrics.com": [8745], "trk.kissmetrics.com": [8745], "weekendjeweg.nl": [22555], "rcut.eu": [2024], "wpn.io": [2024], "threegirls.me": [2024], "cbesl.net": [2024], "56.1688.com": [51], "ww2.wizards.com": [18477], "almayadeen.net": [19157], "gettyimages.com": [6604], "walkingmen.com": [18053], "www.kum.com": [9048], "enda.dict.cc": [4442], "popehat.com": [12962], "www.dfa.cornell.edu": [3676], "api.sweden.se": [15746], "rescuebox.us": [2024], "special.hkjc.com": [20384], "fastcast.nz": [20076], "nanawall.ws": [2024], "studenthealth.georgetown.edu": [6531], "getbui.lt": [2024], "social.expression.microsoft.com": [10396], "gymglish.com.br": [7021, 7022], "counter.mit.edu": [9761], "ifpa.ie": [7728], "rublacklist.net": [14068], "desy.de": [4386], "stats.dotsec.com": [4691], "gngr.space": [2024], "www.yfrog.com": [22678], "redlinebik.es": [2024], "www.zenmate.vn": [18917], "rus-svk.tpprf.ru": [22260], "sharia.mobi": [2024], "l.ocxgroup.com": [2024], "a4.sphotos.ak.fbcdn.net": [5689], "www.neck2neck.com": [11169], "appled.duoshuo.com": [19906], "testing.datamotion.com": [19767], "pic.hao123.com": [20339], "internacional.elpais.com": [5126], "www.allclearid.com": [874], "fastclick.com": [17629], "www2.georgetown.edu": [6531], "proovl.com": [21515], "data.btcc.com": [2400], "dashboard.zenhub.io": [22713], "cpclib.worldcat.org": [18536], "pay.i4wifi.cz": [20459], "imagizer.imageshack.us": [7983], "www.medctr.ohio-state.edu": [11798], "origin-www.unicef.org": [17069], "alumni.kit.edu": [8812], "shoesf.it": [2024], "dashboard.open-mesh.com": [11943], "basecamp.com": [1713], "redcare.bt.com": [1578], "*.admeld.com": [661], "publishing-technology.de": [7595], "immobilienscout24.de": [8008], "backoffice.vend-o.com": [17695], "lajt.mbank.pl": [9733], "cdn0.iconfinder.com": [7920], "trash-mail.com": [16760], "ww2.thomascook.com": [16450], "www.unistra.fr": [17265], "nrapvf.org": [21185], "www.verizonenterprise.com": [17716], "idte.ch": [2024], "www.preney.ca": [13075], "2020mobile.es": [93], "shoppb.nl": [2024], "yaroslavl.auto.ru": [19276], "syntaf.in": [2024], "anubis.iseclab.org": [8361], "br2.ac": [2024], "mail.depressionforums.org": [4361], "kdl.cc": [2024], "horizonteuned50.uned.es": [17248], "x.l.qq.com": [13329], "www.imgbox.com": [7997], "www.finse.uio.no": [17414], "fw.dpkg95.by": [2024], "paper.udn.com": [17020], "kna.europaplus.ru": [20034], "m.si.imhd.sk": [8004], "www.bmclogostore.com": [1554], "go.motowi4.it": [2024], "trvlguy.co": [2024], "en-no.dict.cc": [4442], "dgnf.ly": [2024], "*.bcj.ch": [20683], "www.glenscott.net": [6688], "nikkojapan.org": [2024], "speed.python.org": [13314], "libguides.mit.edu": [9761], "wno.io": [2024], "hosokawa-alpine.com": [7507], "www.syscan360.org": [22070], "subs.linuxvoice.com": [9440], "services.renater.fr": [13826], "grprt.in": [2024], "quickgit.kde.org": [8735], "eva.biligame.com": [1903], "telekom.sk": [16155], "www.dorar.net": [19882], "mail.kairo.at": [8782], "mcstr.net": [2024], "alumnicas.princeton.edu": [13113], "skipscreen.com": [15271], "img01.bizrate-images.com": [2054], "posii.tv": [2024], "www.amnesty.org.uk": [1015], "ccamu.co": [2024], "googlewatchblog.de": [6832], "*.collab.net": [3416], "datamonitorhealthcare.com": [4199], "www.mkateb.com": [10511], "thread.guru": [2024], "p.tonymazz.com": [2024], "www.webmaker.org": [10701], "gandg.me": [2024], "developer.palm.com": [12373], "store1.esellerate.net": [5346], "simlar.org": [14876], "juventustest.tocco.ch": [16600], "admin.springer.com": [15380], "*.csdb.dk": [2682], "sdtk.fm": [2024], "www.teksyndicate.com": [16130], "calgunsfoundation.org": [2756], "content.foto.mail.ru": [9891], "bayleaks.com": [1725], "profile.create.msdn.com": [9802], "adfe.ro": [2024], "go.tripstr.com": [2024], "bclev.cash": [2024], "static.opensocietyfoundations.org": [21280], "ed.ted.com": [15871], "founded.cloud": [2024], "crawley.firmstep.com": [20109], "asset.zcache.com": [18904], "sss.ias.edu": [7673], "www.easyhomecontrol.at": [18376], "www.vbi.vt.edu": [17825], "cdn.gotraffic.net": [6840], "void.gr": [6897], "fineproxy.org": [5830], "compass-ssl.xboxlive.com": [18640], "tools.swisscom.ch": [15761], "on.bp.com": [2024], "go.o2more.de": [2024], "fu.gy": [2024], "gr.norton.com": [11545], "www.mimuslimcouncil.org": [9757], "mynr.ma": [2024], "haitao.fanli.com": [5645], "camgirlstars.co": [2024], "mddpk.co": [2024], "myaccount.west.thomson.com": [16457], "www.join.acs.org": [974], "mail.uniregistry.com": [17285], "links.hadley.nz": [2024], "u.spideramn.com": [2024], "ndea.mk": [2024], "www.challenge.gov": [2991], "krdu.mvd.ru": [21055], "dot.aoikumo.jp": [2024], "borovichi.startsmile.ru": [21980], "s2.planeta.ru": [21431], "peltier.us": [2024], "img5.pixhost.org": [21426], "symlms.symantec.com": [15780], "portal.newcastle-staffs.gov.uk": [21119], "css-security.com": [3891], "feature.astaro.com": [1321], "rick.gop": [2024], "wiki.mediagoblin.org": [10167], "curbed.cc": [2024], "murmansk.psbank.ru": [13231], "www.docketalarm.com": [4607], "lurvin.mailchimp.com": [9893], "p2.chaucanh.net": [2024], "evesun.co": [2024], "www.mediametrics.ru": [20950], "rc.rlcdn.com": [13494], "3ring.it": [2024], "faxcritics.com": [5683], "brkn.in": [2024], "tfreeman.us": [2024], "*.mm.bing.net": [1925], "www.cyberpatrol.com": [3953], "www.mag-jeunes.com": [20906], "www.jaymart.co.th": [8548], "pw.md": [2024], "edvar.cl": [2024], "rseo.co": [2024], "*.ketchum.com": [8876], "bar.expert": [2024], "watercrun.ch": [2024], "vpsb.in": [2024], "havana.usembassy.gov": [22406], "developers.soundcloud.com": [15231], "which.net": [18336], "secure.mashery.com": [10055], "posterxxlshoptest.saturn.de": [21736], "origins.cm": [2024], "council.lancashire.gov.uk": [20776], "my.symantec.com": [15780], "pay.btcchina.com": [1581], "www22.pipni.cz": [12287], "mobile.onlinesbi.com": [11911], "beender.co": [1780], "eltonl.in": [2024], "*.hollywoodoutlaws.com": [7466], "pixsa.us": [2024], "comipo.degica.com": [3333], "bikeability.org.uk": [19376], "www.stylist.co.uk": [15617], "admin.kurier.at": [9055], "sacnas.org": [14122], "www.thinkusc.com": [17365], "www.deutsche-rentenversicherung-bund.de": [4394], "yllw.co": [2024], "defi.dict.cc": [4442], "*.tugraz.at": [15941], "pr-ly.co": [2024], "epi.us": [2024], "support.dashlane.com": [4156], "www.charen.ch": [19561], "lacord.ee": [2024], "usar.ws": [2024], "owa.ut.ee": [17148], "10gen.com": [22], "www.blinksale.com": [2096], "www.vh1.vutbr.cz": [17609], "sl.tiz.ma": [2024], "33.rkn.gov.ru": [13971], "bill.aol.com": [380], "www.duoshuo.com": [19906], "www.bitvc.com": [1975], "auth.enfield.gov.uk": [5247], "by.adg.ru": [2024], "squirrelmail.ouvaton.coop": [12187], "lts.cms.here.com": [7325], "ads5.contentabc.com": [3614], "valueshop.co.uk": [17632], "vlgv.net": [2024], "i1i.me": [2024], "feedback.al-quran.info": [817], "wfncnews.com": [17995], "login.insa-lyon.fr": [7777], "archive-4.kali.org": [8786], "mobile.mindfactory.de": [10448], "www.esat.kuleuven.be": [8832, 9047], "www.skillsdevelopmentscotland.co.uk": [21850], "crocko.com": [3804], "spud.so": [2024], "internet-banking.dbs.com.tw": [4001], "biz.waze.com": [18111], "www.chroniclesofgeorge.com": [16335], "r24819976.sync.app.asana.com": [1265], "asset-8.soupcdn.com": [15236], "broadbandconvergent.com": [2366], "alldebrid.fr": [878], "riis.es": [2024], "discovernetwork.com": [4541], "www.rohieb.name": [14004], "joma.sh": [2024], "mirror.clearos.com": [19608], "alex.se": [841], "b8.yahoo.co.jp": [18730], "admbugs.freebsd.org": [6097], "odoo.com": [11765], "tgrdn.co": [2024], "jobs.priorygroup.com": [13123], "letme.uk": [2024], "cpasia.net": [2024], "www.nuigalway.ie": [11102], "sports.south-wales.police.uk": [21908], "mbe.io": [2024], "listn2.it": [2024], "static.businessinsider.com": [2471], "wan.jd.com": [8436], "www.hub.jhu.edu": [16370], "my.xm.com": [18611], "conversations.im": [3627], "www.sccassessor.org": [14400], "fr.squat.net": [21955], "secure.alamy.com": [821], "benchase.me": [2024], "dudu.zhihu.com": [18956], "filin.mail.ru": [9891], "www.eduroam.de": [19960], "cdn1.emediate.dk": [5193], "clockers.at": [12196], "southwark.gov.uk": [15264], "www.b2bmediaportal.com": [1511], "aka.highways.gov.uk": [20376], "java.com": [8539], "docs.ulteo.com": [17214], "74.mvd.ru": [21055], "tap-cdn.rubiconproject.com": [14066], "www.postwire.com": [13030], "shiyanzp.growingio.com": [20312], "oca.ucsc.edu": [17390], "jdav-basislager.alpenverein.de": [19159], "airtop-pc.com": [800], "*.pdu.edu": [12986], "user.ameba.jp": [971], "3dcu.be": [2024], "blwrk.us": [2024], "www.norden.org": [11509], "s4.ft-static.com": [20182], "es.stripchat.com": [22014], "registration.warnerbros.com": [18077], "knopper.net": [8959], "www.euro-ix.net": [5391], "www.cloudpiercer.org": [3290], "www.ifex.org": [7727], "skul.co": [2024], "infob.ae": [2024], "www.drought.gov": [4766], "ngvpn32.nvidia.com": [11022], "bkseri.es": [2024], "hkedcity.net": [7057], "eris.im": [2024], "img7.pixhost.org": [21426], "m.signalvnoise.com": [21825], "r4.ykimg.com": [22681], "check.fidor.de": [2024], "www.fusion-lifestyle.com": [6252], "ariza.co": [2024], "jkr.li": [2024], "www.securetrust.com": [14575], "carvn.in": [2024], "childrenscommissioner.gov.uk": [19580], "store.microsoft.com": [10395], "to.azk.io": [2024], "azc.cc": [2024], "etools-dev.unicef.org": [17069], "http2.akamai.com": [806], "*.foto.mail.ru": [9891], "war.curseforge.com": [3927], "*.pivotallabs.com": [12766], "headingley.greenparty.org.uk": [6908], "crowdsale.mycelium.com": [21063], "repo.varnish-cache.org": [17659], "*.tufts.edu": [16890], "uptolike.com": [17466], "www.sueddeutsche-tickets.de": [15643], "warehouse-13.friday.ru": [20175], "blogs.site24x7.com": [14928], "*.cinemanow.com": [3150], "exchange.nottingham.ac.uk": [11567], "dimauro.osu.edu": [11797], "npm.to": [2024], "therea.co": [2024], "zrfr.us": [2024], "znak.com": [22721], "www.dictation.io": [19832], "uio.no": [17414], "www.thenewpress.com": [16301], "science.srad.jp": [21956], "yubigeek.fr": [2024], "maykop-realty.rambler.ru": [13600], "bitly.kwolsz.pl": [2024], "exn.io": [2024], "nordichosting.com": [11513], "likeyed.com": [9367], "parapoupar.com": [12411], "www.ecologylab.net": [8243], "www.acluca.org": [296], "tecnologia.elpais.com": [5126], "wp.colliertech.org": [3431], "job.yuga.ru": [22701], "*.usenetserver.com": [17513], "*.gammae.com": [6430], "stnfy.com": [2024], "datavis.ch": [2024], "studiochina.dji.com": [4029], "camden.gov.uk": [2785], "support.jobscore.com": [8604], "mp3-juices.com": [10706], "nastrencin.sme.sk": [14198], "www.panicbutton.io": [12392], "www.mondovino.ch": [3647], "tobaccoinduceddiseases.biomedcentral.com": [1931], "falls.co": [2024], "cdn.tekgoblinmedia.com": [16129], "www.duisburg.fau.org": [5543], "zh-cn.libreoffice.org": [9327], "netviewer.com": [11299], "viewhd.890m.com": [2024], "pix.ny.us.criteo.net": [3798], "*.avectra.com": [1471], "crowd.wpm.neustar.biz": [11320], "help.talktalk.co.uk": [15993], "www.web-registry.com": [18141], "stp.dj": [2024], "www.metro.co.uk": [10346], "rngl.fr": [2024], "pfout.mvd.ru": [21055], "ws2.bakerlab.org": [1646], "blog.evenmere.org": [5428], "cab.kamensktel.ru": [20680], "www2.fraedom.com": [20146], "theaus.in": [2024], "lcsa.gateshead.gov.uk": [6446], "wx2.sinaimg.cn": [14910], "owy.mn": [2024], "ctls.us": [2024], "onamae.me": [2024], "www.onesolution.cz": [11683], "disastermilitarymedicine.biomedcentral.com": [1931], "support.ikoula.com": [7966], "marshut.net": [10037], "*.harakah.net.my": [7194], "forum.libcinder.org": [3143], "www.foxydeal.de": [6068], "codetriage.com": [3381], "studentgrantreview.acs.org": [974], "go.ato.org": [2024], "joshbegley.com": [8647], "intra.cs.ut.ee": [17148], "www.kernl.us": [8875], "m.zalando.it": [18877], "www02.fonts.com": [5972], "fuar10.beget.com": [19347], "www.350.org": [140], "pin.ed.gov": [4881], "tlmdo.co": [2024], "to.tobem.jp": [2024], "s113.cnzz.com": [3328], "*.klm.com": [8754], "s.takuhaiben.to": [2024], "bindforum.isc.org": [7823], "*.computeruniverse.net": [3543], "southribble-ss.achieveservice.com": [19051], "wikimedia.ch": [18388], "store.ayyo.ru": [19292], "76.mvd.ru": [21055], "dxdlink.co": [2024], "intb.it": [2024], "shld.nl": [2024], "*.floridatoday.com": [5923], "images.agoramedia.com": [5443], "*.eastsussex1space.co.uk": [19939], "www.imakethingswork.com": [7888], "appnexus.com": [1139], "fbcn.biz": [2024], "media1.giphy.com": [6646], "go.dirkbo.de": [2024], "btobonline.com": [3755], "j2c.me": [2024], "www.negotiatingsalary.com": [11176], "pls.webtype.com": [18191], "www.centralcomputers.com": [2960], "selfserve.bolton.gov.uk": [19424], "apply.internetessentials.com": [20553], "s7.cnzz.com": [3328], "img08.rl0.ru": [13972], "24hund.red": [2024], "www.sudoroom.org": [15644], "surfap.ps": [2024], "www.isomorphic.com": [8388], "commercial.cc.kyivstar.ua": [9067], "domoticz.infradead.org": [8135], "l.gei.lt": [2024], "login.yellowbot.com": [18762], "velartec.com": [2024], "quadsolution.co": [2024], "ltzw.co": [2024], "mktm.ag": [2024], "www.workaround.ch": [22613], "surplus.osu.edu": [11797], "www.kitd.com": [8746], "www.gradschool.umd.edu": [17351], "spotware.com": [15369], "gofoi.org": [2024], "smp.rocks": [2024], "www.vnews34.ru": [22480], "*.colorado.edu": [17335], "goodbyecrash.es": [2024], "www.usvisa-info.com": [2679], "nycla.org": [11027], "www.pushpopcorn.com": [13294], "franchiseradioshack.cloudapp.net": [13575], "uralfout.mvd.ru": [21055], "www.openmandriva.org": [11992], "acecr.usa.cc": [2024], "dyln.xyz": [2024], "campina.ru": [2796], "cdn.gitbook.com": [6655], "faancollegenetwork.org": [5540], "ads.horyzon-media.com": [7506], "www.flashpoint-intel.com": [20116], "wiki.wilhelmtux.ch": [22591], "tmcturf.gs": [2024], "www.hacdc.org": [7121], "hg.prosody.im": [13204], "jcr.oxfordjournals.org": [12222], "sfcne.ws": [2024], "www.ekovolga.com": [19974], "imf.org": [7761], "cubics.com": [3904], "nro.net": [11616], "www.gdata.co.mx": [6272], "gjscomp.com": [2024], "minsk.usembassy.gov": [22406], "jsr311.java.net": [8538], "www.zipler.ru": [18974], "scooter-attack.com": [14452], "api.afisha.ru": [19107], "amsciadmin.eresources.com": [989], "tent.ly": [2024], "democratandchronicle.com": [4337], "hrlr.oxfordjournals.org": [12222], "ccas.georgetown.edu": [6531], "cdn.xfce.org": [18603], "gomoxie.com": [10685], "scripts.irssi.org": [8355], "on.kyber.me": [2024], "toppr.co": [2024], "100pure.asia": [2024], "vdo.ms": [2024], "txtit2.me": [2024], "smd.vc": [2024], "www.gosquared.com": [6766], "ditu.amap.com": [19165], "www.constructor.maps.yandex.com": [18742], "www.bios-mods.com": [1938], "info.fregat.net": [20170], "republic.ru": [21630], "members.efa.org.au": [5142], "cents.style": [2024], "m.gamefly.com": [6397], "go.thefool.it": [2024], "accesorios.poderpda.com": [12888], "ssl12.ovh.net": [12205], "hipchat.com": [7417], "flexweb.warwickdc.gov.uk": [22531], "www.oo-software.com": [11929], "thetfp.com": [16387], "espiv.net": [20021], "tour.ubuntu-fr.org": [17177], "web.ens-lyon.org": [5272], "supportcoda.unit4.com": [22378], "kaluga.beeline.ru": [1778], "debconf14.debconf.org": [4257], "*.datacell.com": [4169], "www.career.ru": [2852], "spruit.me": [2024], "www.vhf.de": [22456], "serve.ads.chaturbate.com": [3040], "vstsem.com": [2024], "gtpla.net": [2024], "status.c9.io": [3279], "100ideen.migros.ch": [10417], "www.domain.de": [4642], "es.chessbase.com": [3073], "www.accellion.com": [498], "jennaswy.com": [2024], "script-o-rama.com": [4752], "rtvote.com": [2024], "kampyle.com": [8793], "www.ypassociation.org": [18761], "lwocd.me": [2024], "36kr.com": [154], "mediakit.about.com": [19043], "greenvehicleguide.gov.au": [6904], "asia.elsevierhealth.com": [5179], "events.sky.de": [14990], "tiaa.ws": [2024], "lnkt.nl": [2024], "www.nyi.net": [11031], "client.wedos.com": [17993], "groupex.pro": [2024], "fpd3a.websafetymark.io": [2393], "www.calligra.org": [2769], "politico.com": [12919], "epitheliner.co": [2024], "gd4.alicdn.com": [853], "wac.rkn.gov.ru": [13971], "geolistening.com": [6525], "xmlgold.eu": [18612], "alumni.buffalostate.edu": [2418], "24pay.me": [108], "us.sinaimg.cn": [14910], "tia.timeinc.net": [16535], "nrk.no": [11586], "pn.md": [2024], "*.acm.org": [318], "video.linux.com": [9417], "www.eff.cat": [19964], "splnt.ru": [2024], "www.bmf-steuerrechner.de": [1558], "www.rpgnow.com": [11867], "t.seq4u.com": [2024], "o.rholas.eu": [2024], "cana.li": [2024], "lith.liu.se": [9097], "www.aldi.us": [357], "status.ghost.org": [6611], "www.dnfsb.gov": [4294], "digitalpacific.com.au": [4482], "paypal.com": [12500], "ambil.ga": [2024], "ios.popcorn-time.to": [21461], "forum.siteground.com": [14932], "www.bringthegig.com": [2350], "mwp.nu": [2024], "dealer-training.sky.de": [14990], "ncei.noaa.gov": [11121], "apps.lenovo.com.cn": [9266], "8020.bz": [2024], "monitor.uv.es": [17544], "three.ie": [16471], "www.familie.plus.aok.de": [376], "www.insidescience.org": [8168], "www.drivethrucards.com": [11867], "shriyash.xyz": [2024], "s128.cnzz.com": [3328], "www.skycityauckland.co.nz": [14188], "it.aliexpress.com": [854], "tux.org": [16928], "lenz.click": [2024], "www.activatejavascript.org": [547], "united-internet.de": [17295], "zalando.be": [18877], "mipsyfair.org": [2024], "bkam.me": [2024], "redmondmag.com": [13755], "nemlogin.wayf.dk": [17988], "campaignforhouston.com": [19498], "www.seotrainingtoronto.com": [14162], "payments.mtsbank.ru": [10720], "ugk.cxpr.in": [2024], "coie.uned.es": [17248], "snap.vidiemi.com": [17788], "admin.uclick.com": [22344], "apidocs.inspectlet.com": [8176], "kd.htw-berlin.de": [7103], "www.vip.de": [17573], "msre.it": [2024], "www.36kr.com": [154], "revenuesbenefits.westminster.gov.uk": [18315], "grad.msu.edu": [21040], "t-jetro.jp": [2024], "forum.ukfur.org": [17044], "www.thebaffler.com": [16325], "socdwar.mail.ru": [9891], "fraudlabs.com": [6090], "enviame.ga": [2024], "tdtpro.co": [2024], "1914.zdf.de": [22709], "music.yandex.kz": [18743], "hu.norton.com": [11545], "seniors.berkeley.edu": [17329], "cesru.sc": [2024], "duurza.me": [2024], "lk.strelkacard.ru": [15590], "cdn.thegloss.com": [908], "coreyabramson.com": [3673], "sftv.co": [2024], "webinars.mirea.ru": [20993], "mstar.link": [2024], "eks.yanao.ru": [22665], "employers.indeed.com": [8056], "account.sourcefabric.com": [15247], "link.pv-bf.de": [2024], "dn-walletla.qbox.me": [13344], "seferler.yandex.com.tr": [18740], "rapid7.com": [13613], "beirel.ru": [19349], "mcafeesecure.com": [10128], "gradadmissions.stanford.edu": [15448], "telford.objective.co.uk": [21225], "chat.stackoverflow.com": [15424], "travelocity.com": [16772], "www.vocalarticles.com": [11341], "s1a.co": [2024], "eiseverywhere.com": [5377], "spith.net": [2024], "r.kurashicom.jp": [2024], "nytexaminer.com": [11039], "caipiao.jd.com": [8436], "3rd.gr": [2024], "orwall.org": [12113], "focd.me": [2024], "coth.co": [2024], "dashs.dk": [2024], "ucarp.org": [22343], "tfsg.me": [2024], "abnewsroom.co": [2024], "*.mailinator.com": [9902], "nn9.biz": [2024], "downloads.askmonty.org": [1286], "www.geek.com": [6472], "wf.cdn.gmru.net": [6329], "www.rankingdigitalrights.org": [21580], "business.instagram.com": [8182], "kilroy.biz": [2024], "htrne.ws": [2024], "static.soku.com": [21893], "flix123.com": [5910], "www.bart.gov": [1708], "coincheck.jp": [3403], "lapchi.co": [2024], "content.digicert.com": [4461], "7.7ru.org": [2024], "upload.alislam.org": [819], "tmp-uat-geo.imercer.com": [20502], "anonymizer.com": [1086], "geo.itunes.apple.com": [1151], "mpp.emea.mxptint.net": [10786], "www.lgscout.com": [9611], "www.tuxingsun.net": [16882], "rdkrs.dk": [2024], "*.champssports.com": [2998], "youtube.qa": [18800], "chrome.duckduckgo.com": [4785], "pizzacharts.com": [12785], "ssl-cdn.static.browser.mi-img.com": [10360], "asset-5.soup.io": [15235], "www.musalbas.com": [10744], "yabause.org": [18718], "blackburn.gov.uk": [19401], "dianomi.com": [4432], "gemnasium.com": [6503], "getenflux.co": [2024], "www.vh3.ro.vutbr.cz": [17609], "unic.un.org": [17057], "www.friendsofnra.org": [20176], "makerfaire.web.sapo.io": [14130], "www.skipscreen.com": [15271], "gamespot.com": [6404], "bayareaamusements.com": [1727], "olabini.se": [21239], "c90.us": [2024], "retail.onlinesbi.com": [11911], "www.weibopay.com": [18280], "*.www.gigaserver.cz": [6636], "gdbox.info": [2024], "view.atdmt.com": [10393], "www.kirsle.net": [8931], "encmp.as": [2024], "clck.yandex.com.tr": [18740], "ful.io": [2024], "lmsint.co": [2024], "pag.golf": [2024], "impl.onscroll.com": [11851], "guenstig.m-budget.migros.ch": [10417], "www.proposal.illinois.edu": [17346], "devhub.dayz.com": [4225], "insurance.valleyfirst.com": [17620], "datasheetcatalog.com": [4205], "twchris.us": [2024], "www.billpay.de": [1907], "planet2017.bilibili.com": [1904], "yamgo.com": [18735], "f70965f2-3b1f-9fc4-9807-0fada78fca5a-rum.cdnvideo.ru": [19536], "live-elbotola.cdnvideo.ru": [19536], "freeswitch.org": [6106], "chuckgo.se": [2024], "lk.hvacne.com": [2024], "kostroma.sledcom.ru": [21858], "husker.la": [2024], "friendsofnra.org": [20176], "passwordbox.mcafee.com": [10129], "meinprivatkaffee.tchibo.de": [16050], "w.idg.de": [2024], "sfs.stanford.edu": [15448], "bv.ms": [2024], "wrte.it": [2024], "kickass.cd": [8894], "m.mobot.net": [7556], "2svh.nl": [2024], "assets.fit.edu": [5922], "ihous.eu": [2024], "blog.osmfoundation.org": [11710], "*.www.kidsfootlocker.com": [8900], "www.metacpan.org": [10321], "o-e.ca": [2024], "pub.brewery.fm": [2024], "imasdk.googleapis.com": [6823], "russia.kavkaz-uzel.ru": [20694], "true.mu": [2024], "ultimatepoker.com": [17216], "farmerdev.tech": [2024], "tmpc.be": [2024], "opentalk.upyun.com": [17492], "scu.edu": [14353], "eww.ipleak.net": [20571], "st.ecrebo.com": [2024], "moodle.net": [10615], "expat.hsbc.com": [7090], "accommodation.aber.ac.uk": [473], "rltiny.com": [2024], "blog.wegohealth.com": [18275], "buzn1029.fm": [2024], "www.chrisnewland.com": [3111], "gwmwp.us": [2024], "www.framalab.org": [6075], "itnig.co": [2024], "tsuchiya.me": [2024], "www.srna.sk": [15409], "5tra.ws": [2024], "mail.booksonislam.org": [2223], "dcmnt.me": [2024], "tmtyl.com": [2024], "www.vinoteka.hofer.si": [357], "patchwork.linuxtv.org": [9431], "roof.news": [2024], "services.dezeen.com": [4423], "ader.tk": [2024], "se.godaddy.com": [6755], "www.hyperelliptic.org": [7650], "toplist.cz": [15912], "www.investigativedashboard.org": [8313], "bolivia.usembassy.gov": [22406], "wiredminds.de": [18455], "4griffs.com": [2024], "galpon.org": [20198], "muse-cdn.warnerartists.com": [10746], "fellca.st": [2024], "reap.mit.edu": [9763], "nick.pub": [2024], "r24617683.sync.app.asana.com": [1265], "community.fastly.com": [5676], "arsnova.thm.de": [15876], "crfsrv.co": [2024], "drk.life": [2024], "l.bobzien.com": [2024], "www.lsbu.ac.uk": [9111], "embed.wistia.com": [18467], "ivarch.com": [8412], "ultratools.com": [17220], "serienjunkies.de": [14658], "syscoding.com": [15816], "htlspk.com": [2024], "www.sheamortgage.com": [8443], "lists.tox.chat": [16690], "outlook.office365.com": [11782], "www.depolitiezoekt.nl": [11172], "hecourse.engineering.osu.edu": [11797], "www.lucidsolutions.co.nz": [9653], "anon-ib.com": [1077], "vivaciti.net": [17884], "www.cambridgelivetrust.co.uk": [19495], "tresc.li": [2024], "ikvc.slovakrail.sk": [15038], "stan.md": [2024], "opacs.stanford.edu": [15448], "global.oup.com": [12224], "wwte7.com": [18031], "img.my.tv.sohu.com.cn": [15170], "www.esc.edu": [5207], "www.rabbitporno.com": [13549], "link.adf.org.au": [2024], "crowdfunding.correctiv.org": [3686], "vanam.co": [2024], "mclu.org": [9738], "ecommercebrasil.com.br": [4877], "mall.jd.com": [8436], "jvat.biomedcentral.com": [1931], "tambov.rt.ru": [13529], "www.searchsecurity.de": [16083], "aprt.at": [2024], "3m.play-asia.com": [12828], "www.gkvnet-ag.de": [6317], "top100.rambler.ru": [13600], "stubhub.de": [15602], "www.redweb.com": [13759], "www.23systems.net": [99], "www.revisium.com": [13903], "www-static.ripe.net": [13953], "*.jet2.com": [8571], "www.netdoktor.se": [11263], "www.loveourlocalbusiness.com": [9637], "isoc24.com": [7832], "yis.to": [2024], "4bet.poker": [2024], "vs4.com": [22509], "c2.jam.net.ve": [2024], "www.patexia.com": [12483], "energy.rakuten.co.jp": [13593], "irkb.me": [2024], "der-lautsprecher.de": [10322], "edublogs.org": [5082], "benest.es": [2024], "form-cdn.pardot.com": [12428], "community.rapid7.com": [13613], "data.li": [2024], "j.ronz.io": [2024], "www.planet.com": [12798], "vtluug.org": [17605], "s14.postimg.io": [13024], "njbe.st": [2024], "cache2.youla.io": [22689], "info.ssl.com": [14241], "rtslv.in": [2024], "*.sharetobuy.com": [21799], "tqr.dk": [2024], "pirateahoy.eu": [22174], "www.zicguzoo.com": [22719], "kemerovo.psbank.ru": [13231], "m-tl.com": [2024], "www.autistici.org": [1438], "cdn.airmap.io": [790], "nsbk.co": [2024], "phtrns.it": [2024], "healthphysics.georgetown.edu": [6531], "local.ch": [9548], "mail.ex.sportmaster.ru": [21944], "logincasino.com": [20871], "ibs.sberbank.sk": [7903], "sbx.vc": [2024], "tweetamonial.com": [22330], "data.bitcoinity.org": [2009], "freizeit.sbb.ch": [15756], "specials.9to5toys.com": [256], "brdcstcmpgn.com": [2024], "footlocker.eu": [5988], "www.seulonta.fi": [15809], "rlbs.ml": [2024], "greatteachersgreatschools.org": [15440], "youthgov.khabkrai.ru": [20709], "nevinnomyssk.startsmile.ru": [21980], "ezimg.it": [4994], "www.blossom.io": [2135], "hda.cl": [2024], "as.blip.tv": [2098], "111pevfyma1i44d92ww5rr4ypq5gsmeetv0nqn1a.ipleak.net": [20571], "dvroof.com": [2024], "123cs3ed7jobrl556v4zwmbi9jog517e58gu2qz2.ipleak.net": [20571], "getmybalance.com": [6598], "denic.de": [4346], "owncloud.zaehlwerk.net": [18872], "help.walmart.com": [18058, 18059], "tv.blesk.cz": [2088], "ly.dpc.fr": [2024], "s1.gismeteo.ua": [6651], "www.poddery.com": [12887], "lovr.in": [2024], "tilecache.kairo.at": [8782], "video.intelexit.org": [8213], "9.dbstatic.no": [19775], "s8.qhimg.com": [13347], "dindator.org": [2024], "cdn.pdc.comcast.com": [3462], "cdn.kde.org": [8735], "*.fmpub.net": [5712], "ajlas.eu": [2024], "lrng.co": [2024], "techflavor.io": [2024], "ufali.mvd.ru": [21055], "prl.aps.org": [976], "muse.cm": [2024], "milk.mu": [2024], "www.alislam.org": [819], "use-enco.com": [17507], "www.extyl-pro.ru": [20060], "anibis.ch": [19200], "amnesty-in-bewegung.de": [1001], "rbwm.objective.co.uk": [21225], "u4.hitravel.xyz": [2024], "www.clkads.com": [3271], "snrworkshop.inl.gov": [20537], "brianclifton.com": [2327], "getwww.play-asia.com": [12828], "educationnext.org": [5085], "ca.pcpartpicker.com": [12529], "cyber-inv.com": [2024], "8.xhcdn.com": [18605], "fj.simple.com": [14884], "my.topshop.com": [22238], "www.boxus.com": [12491], "gleam.io": [6687], "linksbymike.com": [2024], "bdgtsvy.co": [2024], "xc.gm.163.com": [50], "www.kr-znamya.ru": [20752], "debtags.debian.org": [4263], "cio.usc.edu": [17366], "reg.msu.edu": [21040], "247filmz.com": [106], "portal.upr.edu": [17087], "advante.ch": [2024], "www.tesglobal.com": [22126], "topuklu.co": [2024], "tastyln.co": [2024], "kiro.tv": [2024], "shashw.at": [2024], "mail.permkrai.ru": [21390], "support.sendgrid.com": [14638], "ok-radio.europaplus.ru": [20034], "bapt.link": [2024], "download.parrot.com": [12443], "issues.piwik.org": [12768], "www.mir-politika.ru": [20991], "store.particle.io": [12451], "ding.youku.com": [18804], "gq.com": [6356], "keshan.jd.com": [8434], "ce.lijit.com": [9365], "wiki.qcloud.com": [13346], "machines.chromeexperiments.com": [3122], "indacoin.com": [8054], "ee.oxfordjournals.org": [12222], "honey.digital": [2024], "go.dreyf.us": [2024], "pi-hole.net": [21404], "cpj.org": [2660], "mastmo.co": [2024], "mail.websupport.cz": [18189], "frdg.me": [2024], "meant4mo.re": [2024], "chrome.justgiving.com": [8710], "oreef.co": [2024], "osnews.com": [21300], "prototyp.cerit.cz": [2585], "dpro.co": [2024], "www.lend.me": [20806], "www.judge.me": [8675], "spacenews.com": [21919], "s.lucky.nl": [2024], "*.uspto.gov": [17144], "manilaprinciples.org": [9964], "www.taringa.net": [16027], "cz.oxfordjournals.org": [12222], "cdn.sc.rockstargames.com": [13997], "pculr.com": [2024], "bgg2wl.com": [2024], "vh1.vutbr.cz": [17609], "www.sysax.com": [22069], "noo.org.uk": [10983], "aulaga.dis.ulpgc.es": [17213], "wifijan.us": [2024], "aptli.st": [2024], "blog.zoho.com": [18984], "w.sangs.tk": [2024], "cardsonline.spdbccc.com.cn": [21926], "charts.smartmoney.com": [11360], "idsoftware.com": [7927], "nbga.de": [2024], "rdx.red": [2024], "stats.cyscon.net": [3982], "www.jwz.org": [20674], "marknagel.me": [2024], "ts.permkrai.ru": [21390], "skr.spaj.eu": [2024], "minobr.astrobl.ru": [19264], "peekvids.com": [21379], "link.ratex.com": [2024], "fside.co": [2024], "www.sknvibes.com": [14186], "www.jobs.enfield.gov.uk": [5247], "s8.gismeteo.lv": [20250], "terrabank.ru": [16200], "online.unionpay.com": [17281], "4zi.eu": [2024], "wiki.mate-desktop.co": [9727], "go.mcindoe.info": [2024], "catalysthost.com": [2906], "*.backup.com": [11546], "wiki.moztw.org": [10704], "www.uni-potsdam.de": [17417], "undiet.me": [2024], "www.freetalklive.com": [20167], "kanotix.com": [8797], "*.passports.gov.au": [1423], "logout.feide.no": [5729], "t32.us": [2024], "www.handbook.fca.org.uk": [5547], "sairockr.in": [2024], "ubiqq.us": [2024], "acadinfo.wustl.edu": [18089], "teklif.tk": [2024], "cgilink.org": [2024], "edixml.mycampina.com": [2797], "*.oit.umass.edu": [17353], "www.i4wifi.cz": [20459], "www.gitcop.com": [6657], "html.adobe.com": [668], "www.divitup.com": [4568], "batumnang.kr": [2024], "signup.lotro.com": [20877], "tfpr.in": [2024], "www.pictshare.net": [12701], "inapcache.boston.com": [2252], "nebezi.cz": [11165], "dev.virtualearth.net": [17840], "www.tectonic.com": [16120], "events.msu.edu": [21040], "tsd.ooo": [2024], "ttsd.us": [2024], "www.fosdem.org": [6046], "eeco.at": [2024], "soundslice.com": [15234], "www.eide-itc.no": [5110], "www.hsbc.co.jp": [20420], "go.deliver.me": [2024], "nerd.porn": [2024], "faradaysec.com": [5651], "redlnd.cc": [2024], "www.phoronix.net": [12668], "www.scriptfodder.com": [14482], "cyour.ws": [2024], "debian-handbook.info": [16261], "www.host2.bg": [7514], "youtube.lv": [18800], "fmpx.us": [2024], "www.xen-orchestra.com": [18645], "de.chaturbate.com": [3040], "video31.0xdb.org": [10], "typography.com": [16987], "img2.glassdoor.ca": [20258], "sozialismus.info": [15270], "aihl.net": [2024], "ontkc.com": [2024], "emsidata.com": [2024], "tuft.su": [2024], "digipoort.unit4.com": [22378], "www.lulea.se": [9665], "jaast.net": [12380], "btcmarkets.net": [1590], "r.cet.tw": [2024], "js.ifengimg.com": [20487], "blog.miniclip.com": [10460], "www.zerigo.com": [18934], "www.ngs.ru": [21134], "rackspacecloud.com": [13567], "ltv.lsm.lv": [20883], "www.collectd.org": [3420], "t.maiordo.rio": [2024], "player.io": [12841], "*.secunet.com": [14538], "inteli.tk": [2024], "digundivi.de": [2024], "surnames.behindthename.com": [19348], "berkeley.illuminateed.com": [20494], "deploybot.com": [19809], "cms.gov": [19630], "policewolf.co": [2024], "cob.lt": [2024], "exchange.pulsepoint.com": [13270], "jfec.oxfordjournals.org": [12222], "markng.co.uk": [10014], "hg.adblockplus.org": [616], "sydl.me": [2024], "plugwash.raspbian.org": [13630], "services.amazon.in": [19177], "id.mashape.com": [10053], "blog.josefsson.org": [8644], "mail.hivos.org": [7436], "unindented.org": [17279], "smld.uk": [2024], "dn2.play-asia.com": [12828], "jcb.sh": [2024], "cdn.11footballclub.com": [32], "adidas.lifehacker.ru": [20836], "content.aimatch.com": [785], "balfr.co": [2024], "testandtarget.omniture.com": [11842], "act.colorofchange.org": [3439], "web.tameside.gov.uk": [22094], "www.psychcentral.com": [21531], "on.pg4.in": [2024], "kaernten.neos.eu": [10941], "*.wonderlandmovies.de": [18501], "foofighters.com": [5975], "clnq.co": [2024], "www.gentoo-ev.org": [6516], "front.geetest.com": [20222], "datacloud-eu-central-1.tealiumiq.com": [16060], "libanswers.com": [9301], "lnk.airhead.io": [2024], "w.rot-blau.com": [2024], "csjobb.idg.se": [7709], "dugs.pub": [2024], "bse.vt.edu": [17825], "www.swatmag.com": [22059], "airsafe.co": [2024], "www.sainsburys.co.uk": [14305], "studom.at": [2024], "idp.iu.edu": [8069], "unum.co": [2024], "www.webyog.com": [18266], "www.bivol.bg": [2049], "hypestat.com": [20458], "na.mvd.ru": [21055], "pen.gy": [2024], "on.pyxo.me": [2024], "studentaffairs.stonybrook.edu": [15548], "www.kaiseki.me": [8783], "www.cpbonlinebanking.com": [3430], "bill.spnet.ru": [21939], "www.thedebrief.co.uk": [22149], "tmp-uatsrv-www.imercer.com": [20502], "www.kingdomofloathing.com": [1331], "56.mvd.ru": [21055], "splashthat.com": [15351], "bewerbung.htw-berlin.de": [7103], "go.ejd.me": [2024], "x.leecasey.com": [2024], "ubm.io": [2024], "miniconf10.debconf.org": [4257], "obi.hu": [21222], "turngs.com": [16915], "www.ex10.biz": [5459], "sha.ikh.me": [2024], "kri.sc": [2024], "api.pixhost.org": [21426], "cdn.directrev.com": [4522], "su.baidu.com": [1641], "vedtver.ru": [22434], "l.csloomis.com": [2024], "umap.openstreetmap.fr": [12079], "www.idefimusic.com": [7934], "getlogin.rosbank.ru": [21671], "uregister.zybang.com": [22732], "blj.me": [2024], "api.urbandictionary.com": [17494], "s.benad.me": [2024], "www.telenor.se": [16158], "s.twispam.net": [2024], "dawsonera.com": [4224], "developer.gettyimages.com": [6604], "sozone.de": [15116], "netm.ag": [2024], "docs.fedoraproject.org": [5716], "vz.nu": [2024], "auxiliary.georgetown.edu": [6531], "*.momsmedia.com": [17628], "whotargets.me": [18355], "soydo.me": [2024], "reviews.virginmobileusa.com": [17819], "auth.campact.de": [2790], "www.givingcomfort.com": [6672], "account.wildstar-online.com": [18394], "www.apricityos.com": [19222], "ra-wtc.moodys.com": [21020], "olvr.co": [2024], "support.bt.com": [1578], "l.br.it": [2024], "blnce.co.uk": [2024], "imagelayers.io": [20498], "dew.ly": [2024], "linguee.nl": [9390], "www.climate-diplomacy.org": [3266], "fs23.formsite.com": [20139], "kassini12.beget.com": [19347], "dialin.utm.edu": [17426], "folding.stanford.edu": [15448], "www.mbna.co.uk": [20939], "www.lippupalvelu.fi": [16495], "status.popcorntime.sh": [21461], "ands.be": [2024], "www.breuninger.com": [2326], "lutt.me": [2024], "on.ifc.org": [2024], "mein2.dastelefonbuch.de": [4161], "contrainfo.espiv.net": [20021], "mag.osdn.net": [21298], "www.synaptop.com": [15789], "kmzy.uk": [2024], "glowfli.us": [2024], "optse.ztat.net": [18877], "l.lengl.cc": [2024], "y.wpimg.pl": [22621], "cityemail.com": [3185], "edigitalsurvey.com": [4894], "js.weibopay.com": [18280], "www.teltarif.de": [16173], "b0442a08-7db9-b769-3a56-7e53f1c18138-rum.cdnvideo.ru": [19536], "topliners.eloqua.com": [5172], "portal.oxfordshire.gov.uk": [21327], "mail.pipni.cz": [12287], "dspace.usc.es": [17506], "mo.m.taobao.com": [16015], "tour.ubuntuusers.de": [17184], "support.dsi.cnrs.fr": [6174], "xato.net": [18634], "www.samknows.*": [14319], "account.sonyentertainmentnetwork.com": [15219], "tripadv.sr": [2024], "moderngov.halton.gov.uk": [20335], "www.en.uni-muenchen.de": [9104], "neftekamsk.startsmile.ru": [21980], "vs.cfif.org": [2955], "thrombosisjournal.biomedcentral.com": [1931], "pilot.marketplace.equinix.com": [5322], "marketplace.alpnames.com": [919], "adition.com": [648], "jd.cdn.gmru.net": [6329], "spcsv.rs": [2024], "*.fm.alibaba.com": [857], "mariee.tips": [2024], "synergy-foss.org": [15801], "*.omaze.info": [11829], "*.all-inkl.com": [872], "www.tfb.ru": [16236], "ticketing.trch.co.uk": [16494], "biscoi.to": [2024], "go.godeal.co": [2024], "www.crosskeyshomes.co.uk": [19723], "dev.beta.fruitninja.com": [6214], "khms1.google.com": [6825], "valday.startsmile.ru": [21980], "www.wheel.sk": [18333], "b.f42.ag": [2024], "nolager.espiv.net": [20021], "adminguide.stanford.edu": [15448], "zln.do": [2024], "k2s.cc": [8720], "r24626657.sync.app.asana.com": [1265], "www.sanoma.fi": [14351], "evrgr.in": [2024], "bfoot.co": [2024], "oas.org": [12139], "millenniumindicators.un.org": [17057], "www.dicesoft.net": [4441], "secure.holidayextras.co.uk": [7459], "minsexmatch.com": [2024], "bmlau.io": [2024], "www.orbital.com": [12128], "peniaze.sme.sk": [14198], "m.lanthi.com": [2024], "jobshop.gateshead.gov.uk": [6446], "mttq.co": [2024], "salesblog.microad.co.jp": [10376], "mirrors.rpmfusion.org": [14056], "sjofartsverket.tdconline.se": [15865], "lilux.lu": [9299], "captcha.luosimao.com": [20891], "www.aokplus-online.de": [376], "president.williams.edu": [18408], "vladivostok.biglion.ru": [19375], "ahmda.ws": [2024], "*.findthebest.com": [5824], "courses.soe.ucsc.edu": [17390], "rest.contextly.com": [3617], "my.ipswich.gov.uk": [8348], "www.mesamatrix.net": [10312], "support.mobify.com": [10532], "secure.yoursole.com": [18822], "track.newjobs.com": [11358], "go.stfuawsc.com": [2024], "whatsuccesstakes.com": [6698], "wumath.wustl.edu": [18089], "*.svn.sf.net": [14167], "www.bad-dragon.com": [19300], "www.cloudmark.com": [3308], "ogutaku.link": [2024], "xqn.gm.163.com": [50], "anil.work": [2024], "www.buytrezor.com": [2485], "www.iraiser.eu": [8350], "eply.com": [4936], "www.movzeed.com": [18758], "apply.onlinelaw.wustl.edu": [18089], "nerdsyn.cc": [2024], "hbsl.ch": [2024], "nead.me": [2024], "git.eleves.ens.fr": [4922], "djtim.es": [2024], "lists.sudoroom.org": [15644], "gbonus.maryno.net": [20928], "catooh.com": [2916], "fmc.thomsonreuters.com": [16456], "bandisoft-dl.bandicam.cn": [1664], "openmw.org": [11990], "blackberryid.blackberry.com": [2068], "trja.co": [2024], "lifebeam.vi": [2024], "c.exah.ru": [2024], "mjjc.info": [2024], "mylimehouse.cheshirewestandchester.gov.uk": [19575], "crypteianetworks.com": [3846], "www.frederikshavn.dk": [6094], "baise.jd.com": [8434], "gradianh.us": [2024], "www.aastatus.net": [456], "rubi.link": [2024], "schoolforge.net": [14425], "parkplanning.nps.gov": [11122], "sharecare.to": [2024], "whoa.so": [2024], "grpy.co": [2024], "aldeparty.eu": [19134], "avuedigitalservices.com": [1484], "accounts.icontem.com": [7922], "l.kees.io": [2024], "gkstr.com": [2024], "*.ihub.co.ke": [20463], "drv-bund.de": [4394], "myfp.us": [2024], "wrtdb.uk": [2024], "www.verbraucher-sicher-online.de": [17705], "pics.crucial.com": [3828], "eventlogger.soundcloud.com": [15231], "dataprovision.education.gov.uk": [19957], "wastepermitss.northumberland.gov.uk": [21160], "store-skin.nytimes.com": [11041], "wiki.pha.jhu.edu": [16370], "expressjs.com": [20055], "carl.st": [2024], "*.tersee.com": [22125], "ds-exp.a-3.ru": [258], "jankratochvil.net": [20623], "browser.yandex.by": [18739], "siukwan.sinaapp.com": [14907], "admtl.com": [738], "www.techhouse.org": [16077], "fwd.sf3soft.net": [2024], "www.travel.state.gov": [17146], "navteqmedia.com": [10914], "forecastapi.smartadserver.com": [15049], "18f.gsa.gov": [6363], "nbcudigitaladops.com": [10917], "solutions.canon.com": [2822], "search.jd.hk": [8437], "ipre.st": [2024], "kitschi.es": [2024], "www.tcl.tk": [16051], "images.cars.com": [2874], "mtgox.com": [10717], "penta.debconf.org": [4256], "demo.gavick.com": [20209], "mail.aol.co.uk": [379], "myshp.suttonhousingpartnership.org.uk": [22049], "mbj.im": [2024], "ams-login.dotomi.com": [4698], "sirv.ooo": [2024], "orel.tpprf.ru": [22260], "stardock.com": [15465], "s126.cnzz.com": [3328], "pay.amediateka.ru": [19186], "www.decidethefuture.org": [19796], "www.logmeinrescue.com": [9561], "click.intel.com": [8211], "surfmail.rrz.uni-hamburg.de": [17025], "golem.de": [6804], "dncdedupe.hdfcbank.com": [7249], "brkbyr.co": [2024], "restaurants.lastminute.com": [9177], "www.cse.umich.edu": [17354], "deshp.me": [2024], "www.omnirom.org": [11838], "www.supertracker.usda.gov": [17299], "springerzahnmedizin.de": [15381], "b.yabe.jp": [2024], "*.xing.com": [18666], "redmine.pfsense.org": [12637], "elbks.com": [2024], "riknow.co": [2024], "concussion.leeds.ac.uk": [17403], "www.getmailbird.com": [6581], "papadumgeek.com": [2024], "cancel.im": [2024], "demandstudios.com": [4326], "phej.co": [2024], "kkh.de": [8750], "www.discogs.com": [4529], "news.cpanel.com": [2665], "g4.gdl.netease.com": [11228], "empireblu.es": [2024], "shop.threema.ch": [16473], "wwwupdate.un.org": [17057], "m.airbnb.co.uk": [793], "ww7.investorrelations.co.uk": [6696], "moderna-domacnost.datart.sk": [3998], "static.slickdealscdn.com": [15024], "gp-digital.org": [20299], "www.usukita.org": [17147], "in-form-prered.ble.de": [19406], "www.auto.ru": [19276], "tokenpass-stage.tokenly.com": [22229], "chronicle-store.com": [3126], "contextweb.com": [3618], "tests.netsekure.org": [11290], "cox.com": [3736], "ffmedia.co": [2024], "portal.infinity-tracking.com": [8098], "freman.tl": [2024], "www.calyxinstitute.org": [2774], "jouz.es": [2024], "jpa.co": [2024], "ccure.me": [2024], "ebphd.co": [2024], "link.crtx.co": [2024], "tshare.to": [15931], "kars4kids.us": [2024], "myimpact.ncl.ac.uk": [10926], "noreply.mvd.ru": [21055], "*.www.footaction.com": [5990], "meetings.io": [10229], "vdqbulbs.com.au": [17563], "hazem.it": [2024], "www.geovation.uk": [6535], "www.bol.de": [16244], "railsconf.com": [13589], "njcb.co": [2024], "bcomm.wales.gov.uk": [18051], "emt.io": [2024], "orsp.in": [2024], "sustainablelandimaging.gsfc.nasa.gov": [10909], "xenforo.com": [18650], "www.disman.tl": [4553], "couponcabin.com": [3710], "cdn.betrad.com": [5448], "x5.ru": [18590], "dsgn.in": [2024], "kickassapp.com": [8890], "www.b2s.co.il": [19297], "secure1.carlisle.gov.uk": [19516], "strou.be": [2024], "www.ownedcore.com": [12217], "ofx.tangerine.ca": [16008], "media.cnbc.com": [2645], "idcc.me": [2024], "hstl.co": [2024], "*.v.gd": [22419], "qtbl.es": [2024], "t.cuckshare.com": [2024], "delphi.im": [2024], "rvgt.ch": [2024], "28.mvd.ru": [21055], "labs.radioplayer.co.uk": [13581], "pando.com": [12387], "pedagoji.anadolu.edu.tr": [1029], "greenqloud.com": [6902], "mdb1.info": [2024], "sp-ssl.nikkei.com": [11442], "www.hillaryclinton.com": [7412], "upcmail.upc.cz": [17081], "www.bitcoin.co.id": [1992], "anonymox.net": [1087], "vtracy.de": [17960], "statesmanjournal.com": [15488], "xfiles.ictv.ua": [20476], "cerebellumandataxias.biomedcentral.com": [1931], "telford-consult.objective.co.uk": [21225], "reklamport.com": [13811], "reviewjournal.com": [9172], "www.dnswatch.info": [4059], "ohtmail.play-asia.com": [12828], "qqq.ipleak.net": [20571], "glob.st": [2024], "fr.tchibo.ch": [16050], "www.pragprog.com": [13058], "media.amctv.com": [363], "bazaarbay.org": [1734], "crowdcurity.com": [3822], "upload.yubico.com": [18835], "royalties.sonymusic.com": [15217], "maps.gstatic.com": [6825], "netzclub.net": [21116], "srv.cdn-asknet.de": [1292], "eoa.cl": [2024], "prw2016.publons.com": [21538], "rangeservices.nra.org": [21177], "m86security.com": [9711], "isin.gs": [2024], "www.us.elsevierhealth.com": [5179], "dblake.co": [2024], "www.tagesschau.de": [22086], "x.e-7.com": [2024], "ru.m.xhamster.com": [18606], "unserertage.com": [2024], "console.upyun.com": [17492], "staging.foodandwaterwatch.org": [5978], "a.brandonlau.ca": [2024], "irsecure.caltech.edu": [2771], "diskcryptor.net": [4551], "kdab.com": [8732], "time2play.mobi": [16529], "weknow.dental": [2024], "push.burgerking.ru": [19474], "gruen-digital.de": [6964], "hk.thenewslens.com": [16302], "gems.ruby-china.org": [14069], "people.com": [12578], "pcmi.ias.edu": [7673], "nyp.st": [2024], "ksyst.ms": [2024], "www.raglan23.co.nz": [21575], "tetadrogerie.cz": [22132], "blog.torrentbit.net": [16656], "www.retrousb.com": [13885], "fgoo.se": [2024], "lever.co": [9285], "svystw.info": [2024], "www.codecombat.com": [3362], "blog.rosevrobank.ru": [14024], "img0.glassdoor.com.au": [20261], "cjs.leeds.ac.uk": [17403], "dune.bnl.gov": [19418], "lrofpr.co": [2024], "krasnoyarskiy-kr.beeline.ru": [1778], "services28.ieee.org": [7719], "campina.de": [2796], "olb.nationwideinternational.com": [11129], "*.blogspot.ch": [2127], "*.jottit.com": [8651], "helpful.im": [2024], "*.blogspot.cl": [2127], "*.usgs.gov": [17141], "*.blogspot.ca": [2127], "nzu.lu": [2024], "s17.postimage.org": [13024], "cbc.social": [2024], "neoseeker.com": [11197], "sociology.georgetown.edu": [6531], "typo3.org": [15959], "coralproject.net": [19689], "forum.ovh.es": [12205], "br.boell.org": [19422], "kylec.us": [2024], "connect.iso.org": [7829], "californiagenealogicalsoc.worldcat.org": [18536], "opencl.nl": [2024], "pd.rkn.gov.ru": [13971], "mrunr.com": [2024], "beyr.mx": [2024], "*.studyinaustralia.gov.au": [15611], "gstub.be": [2024], "questioncopyright.org": [13407], "*.uptodown.com": [22396], "cpdonline.wku.edu": [22602], "paymants.snelis.com": [15097], "forum.filezilla-project.org": [5782], "link.blurby.co": [2024], "go.ikp.cc": [2024], "gregmorris.biz": [2024], "mojedatovaschranka.cz": [10571], "anonysurfer.com": [1085], "iocareers.state.gov": [17146], "www.genua.de": [20230], "link.mbym.net": [2024], "globr.es": [2024], "ao1tv.com": [2024], "www.esri.ie": [4957], "static.gbot.me": [6791], "10percent.tips": [2024], "domofond.ru": [19876], "www.its.thm.de": [15876], "eet.eu": [4898], "hkbudget2017.hk01.com": [7056], "*.telerik.com": [16161], "www.theexplorercard.com": [16348], "nssc.nasa.gov": [10909], "video.sportbox.ru": [21942], "store.barrons.com": [19319], "da.virginmedia.com": [17822], "myitcv.org.uk": [10878], "www3.camden.gov.uk": [2784], "*.onlineshoes.com": [11912], "www.usainteanne.ca": [22404], "mktom.com": [2024], "www.apsislead.com": [1172], "www.moreinterop.com": [10630], "intranet.eee.hku.hk": [20387], "url.divi.web.id": [2024], "awp1.us": [2024], "test.cultofmac.com": [3909], "ferr.us": [2024], "contest.telphin.ru": [16170], "lvl.li": [2024], "u4.qiyipic.com": [13354], "exm.nr": [2024], "mypoints.com": [10820], "bar.yandex.com": [18742], "rmax.ga": [2024], "*.internap.com": [8253], "us.napster.com": [21084], "camsis.cam.ac.uk": [17332], "leerstandsmelder.de": [20800], "banners.spiceworks.com": [15338], "blogs.kcrw.com": [20700], "lendr.net": [2024], "*.mediahub.com": [10168], "support.anubisnetworks.com": [1109], "ciao.de": [3136], "fsn.tocco.ch": [16600], "fender.com": [5734], "www.metanet.ch": [10334], "www.ru-golos.ru": [13538], "freebiblesoftware.com": [6115], "binder.ga": [2024], "sisu.ut.ee": [17148], "app.xaraonline.com": [18633], "educacursos.com": [5083], "go.sendo.vn": [2024], "mydatapipe.net": [10847], "nxo.do": [2024], "*.amahi.org": [955], "mis.su": [2024], "hwtz.us": [2024], "crm.panoptykon.org": [12395], "macropage.info": [2024], "michelinmexi.co": [2024], "kopp.la": [2024], "m2.cm": [2024], "cartaovb.com": [2024], "static.sinacloud.com": [14908], "gdgtmac.co": [2024], "bettershopping.eu": [1859], "securelist.ru": [14567], "sovcomded.sovcombank.ru": [21914], "purp.ly": [2024], "faiumoni.de": [20071], "api.hitta.se": [20381], "avcosystems.com": [19282], "pek.me": [2024], "lu.avm.de": [1478], "www.dbs.com.tw": [4001], "www.taganrogprav.ru": [22084], "trac.openstreetmap.fr": [12079], "apps.opensocietyfoundations.org": [21280], "dnipro.o3.ua": [21219], "www.quran.com": [13433], "sknrd.co": [2024], "rcla.me": [2024], "vote.coastcapitalsavings.com": [3335], "oxygen.tv": [2024], "www.wildlifeofyourbody.org": [1797], "winspi.re": [2024], "bluemovie.eu": [2139], "l.dynhlx.com": [2024], "evolve.elsevier.com": [5177], "dmgt.co.uk": [4115], "mail.nic.ru": [11419], "www.paperspace.com": [21342], "ssl.buch.de": [16244], "static2.kikisso.com": [20717], "quitnow.smokefree.nhs.uk": [10953], "agh3.me": [2024], "chromestatus.com": [3123], "qtool.leeds.ac.uk": [17403], "edgewall.org": [5073], "www.cohnreznick.com": [3389], "al-quran.info": [817], "globonews.play-asia.com": [12828], "eurjmedres.biomedcentral.com": [1931], "info.akbars.ru": [19128], "kbond.co": [2024], "m-privacy.de": [9704], "twisp.me": [16955], "bitsnoop.com": [2039], "img06.mifile.cn": [10411], "tw.benmau.com": [2024], "sunrise.ura.gov.sg": [22398], "togetherjs.com": [16605], "metazen.info": [2024], "abrn.ca": [2024], "lonesysadmin.net": [9598], "rs.edu.rosminzdrav.ru": [21674], "on.the519.org": [2024], "south-caucasus.kavkaz-uzel.ru": [20694], "www.madbarz.com": [20903], "csexy.co": [2024], "www.blogher.com": [2117], "spravy.aktuality.sk": [1507], "c.revbrands.com": [2024], "news.youku.com": [18804], "cvimellesgriot.com": [2706], "lackname.org": [20768], "tanstt.me": [2024], "sellercentral.amazon.com": [960], "blogs.datadirect.com": [4172], "static.outspark.com": [12186], "okcoin.cn": [11664], "onthe.io": [11926], "npre.illinois.edu": [17346], "go.bong.asia": [2024], "www.ntmx.de": [11594], "binaryapi.ap.org": [1315], "go.gorilla.sg": [2024], "jcg.im": [2024], "audioarchives.oc.usda.gov": [17299], "*.demdex.net": [4333], "go.dttw.nl": [2024], "go.chen.lt": [2024], "secure.webmercs.com": [4164], "subm.at": [2024], "www.secureinthecircle.com": [14561], "backstage.taboola.com": [15963], "my.gather.to": [2024], "helpdesk.infobox.ru": [8109], "justing.co": [2024], "mitcinfo.com": [2024], "loyaloop.tele2.lt": [16134], "*.beenverified.com": [1779], "whit.ht": [2024], "www.qsstats.com": [13333], "pirateaccess.xyz": [22177], "pimienta.org": [13031], "iosbstxn.hkjc.com": [20384], "assets.strikingly.com": [15592], "post.play-asia.com": [12828], "condosforeveryone.com": [3563], "www.privacytool.org": [13138], "subito.migros.ch": [10417], "www.gpsoft.com.au": [4520], "engage.webtrends.com": [18264], "tailormadeanswers.com": [15978], "tyn.ch": [2024], "engineering.intercom.io": [8241], "www.explainxkcd.com": [5497], "loadimpact.com": [9542], "zenmate.jp": [18917], "daili.1688.com": [51], "www.kaufland.cz": [8838], "asmsa.me": [2024], "minecon.khabkrai.ru": [20709], "clbank.minbank.ru": [10442], "grml.org": [6359], "www.consecur.de": [3551], "www.ntw.nhs.uk": [10953], "www.dslchecker.bt.com": [1578], "*.reservationcounter.com": [13861], "www-cdn3.pardot.com": [12428], "vn.norton.com": [11545], "www.redditmedia.com": [13749], "citizenpost.fr": [3176], "s1.mzstatic.com": [10893], "api.twingly.com": [16951], "www.holidaypirates.com": [20392], "cache.gawkerassets.com": [6455], "airbnb.se": [793], "smoo.sh": [2024], "avon4.me": [2024], "r24616955.sync.app.asana.com": [1265], "*.thegrommet.com": [16362], "bline.derbyshire.gov.uk": [19810], "open.kent.gov.uk": [8867], "freeassangenow.org": [6113], "italianrprt.com": [2024], "iron.fm": [2024], "spkrryan.us": [2024], "news.js.org": [20657], "games.mountyhall.com": [10662], "fdn.my": [2024], "www.kaosx.us": [20684], "promospot.meo.pt": [10286], "www.tiki-toki.com": [16519], "gerrit.onosproject.org": [11685], "pc5.gtimg.com": [6975], "ep91prd.acs.ncsu.edu": [11531], "4-instant.okcupid.com": [11809], "www.datamonitorhealthcare.com": [4199], "shopmimigreen.com": [14783], "horde-llc.com": [7503], "bms.so": [2024], "www.eyefilm.nl": [4990], "sobollubov.ru": [15120], "sbphx.com": [2024], "www.premiumissuer.com": [21485], "app.webmate.io": [18225], "letterboxd.com": [9281], "services.autoscout24.de": [1458], "static.scripting.com": [14483], "link.mybrdg.com": [2024], "ziggozakelijk.nl": [18963], "mail01.monex.co.jp": [10583], "streamamg.com": [22006], "s.ihg.bz": [2024], "oka.co.uk": [2024], "www.webconverger.com": [22543], "desktop.telegram.org": [16146], "vouchedfor.co.uk": [17937], "legitscript.com": [9247], "youri.zarb.org": [18894], "unicef.org.uk": [17068], "gwlemon.com": [2024], "reichelt.de": [13805], "pgw.udn.com.tw": [17020], "v007.ax2600ab.omhq.uprr.com": [22392], "cryptocoding.net": [19728], "egow.al": [2024], "fws.tmall.com": [22222], "enrn6ub3jbtviypze6sxo5dfuobnqmwsyp0grnme.ipleak.net": [20571], "tls.mbed.org": [10122], "odmtips.com": [2024], "enterprise.huboard.com": [20443], "bgr.rocks": [2024], "beforeyoudig.nationalgrid.com": [11119], "*.ccc.de": [2552], "moodle.lsbu.ac.uk": [9111], "www.friday.ru": [20175], "chr.sledcom.ru": [21858], "r3.ykimg.com": [22681], "luckyreferrals.com": [20887], "www.researchonline.org.uk": [21634], "app.get.no": [20237], "gameguy.ga": [2024], "tl305.co": [2024], "mail.theatomgroup.com": [16252], "s.posmap.net": [2024], "class.udngroup.com": [17020], "energiewende.baden-wuerttemberg.de": [19302], "allshareplay.com": [885], "www.cam.ac.uk": [17332], "meetings.cms.gov": [19630], "sharerp.co": [2024], "m.kasta.ua": [2024], "sterlitamak.biglion.ru": [19375], "chatlio.com": [19563], "www.institute.nhs.uk": [10953], "careerbuilder.co.uk": [19511], "awm.nz": [2024], "grmypro.co": [2024], "www.rnpdigital.com": [13500], "i1.ztat.net": [18877], "britmilfit.com": [19452], "www.amctheatres.com": [364], "vdblo.gg": [2024], "s.mguy.ca": [2024], "*.latimes.com": [9621], "s.jui.cc": [2024], "mb-c.me": [2024], "fixi.co": [2024], "www.mload.freenet.de": [6158], "swy.si": [2024], "fileforum.betanews.com": [19359], "ollen.work": [2024], "server.ualinux.com": [22340], "ctools.umich.edu": [17354], "buytun.es": [2024], "teisia.click": [2024], "jaq.alibaba.com": [857], "wne.al": [2024], "viaja.la": [2024], "www.krystal.co.uk": [9037], "blog.crazyegg.com": [3762], "thumbalizr.com": [22202], "grp07.ias.rakuten.co.jp": [13594], "www.bayproxy.pw": [22174], "www.uni-goettingen.de": [17253], "video.petfinder.com": [12626], "max.vc": [2024], "stv.columbia.edu": [3449], "morrisonscellar.com": [10642], "oldst.co": [2024], "broadbandmap.gov": [2367], "api.linode.com": [9401], "ixd.cca.edu": [2547], "pic.afisha.mail.ru": [9891], "esportsea.com": [4840], "ce.gs": [2024], "cdn.lesfurets.com": [9272], "www.ruptly.tv": [14095], "njpa.co": [2024], "data.gpo.zugaina.org": [19019], "*.networkworld.com": [11308], "mike.mirt.net": [10486], "m.ffs.ch": [15756], "gcmd.co": [2024], "www.sync.com": [15790], "08.mvd.ru": [21055], "cfp.vim-cn.com": [22467], "icz.link": [2024], "cclw.us": [2024], "stevetemk.in": [2024], "inquirehire.pstprod.peoplestrategy.com": [12581], "support.anybalance.ru": [1112], "irccloud.com": [8351], "awc.link": [2024], "paste.gajim.org": [6383], "learner1.hkuspace.hku.hk": [20387], "www.n-2.org": [10894], "chspk.co": [2024], "bewerbung.boell.de": [2192], "to.fox6now.com": [2024], "jobs.london-fire.gov.uk": [20873], "images-2.gog.com": [6343], "ssl.toplist.cz": [15912], "ssl.zus.pl": [18863], "markt.golem.de": [6804], "www.trustpilot.com": [16869], "cvc.li": [2024], "ehr.sciencedirect.com": [21750], "www.taleo.com": [15987], "sogo.uni-ulm.de": [22368], "l.shiorino.com": [2024], "send.gd": [2024], "dinersaero.rsb.ru": [14058], "gugo.it": [2024], "pvte.ch": [2024], "www.luxuryreplica.net": [9688], "ppcdn.500px.org": [206], "www.lookinglocal.gov.uk": [9610], "*.elevenpaths.com": [5152], "adelaide.edu.au": [634], "l.buzzzy.co": [2024], "*.designaddict.com": [4374], "imap.networktimefoundation.org": [11306], "www.kmu.admin.ch": [22061], "attck.in": [2024], "digitalegesellschaft.de": [4491], "evm.dk": [5451], "community.crosswire.org": [3813], "now.source-elements.com": [15237], "short.tob.uy": [2024], "rtou.ch": [2024], "elista.beeline.ru": [1778], "mvd.ru": [21055], "karger.com": [8809], "www.rocketbank.ru": [13994], "fls-eu.amazon.co.uk": [963], "puri.na": [2024], "yelp.es": [18766], "vptl.stanford.edu": [15448], "www.bfriars.ox.ac.uk": [17359], "eatliv.es": [2024], "powells.com": [13034], "s4te.com": [2024], "wahl.tagesschau.de": [22086], "www.packetflagon.is": [21333], "kidmag.co": [2024], "www.csmonitor.com": [19737], "study.monash": [15610], "gmx.co.in": [6330], "images.paypal.com": [12500], "www.f5.htw-berlin.de": [7103], "www.actor.im": [19068], "farcurry.cf": [2024], "numnu.ms": [2024], "manager.linode.com": [9401], "go.sawa.nu": [2024], "discussions.vtiger.com": [17959], "4ga.me": [2024], "sso.yunaq.com": [22702], "s.slblabs.com": [2024], "static.intranet.tue.nl": [15940], "ajalo.xyz": [2024], "bitinvest.com.br": [2019], "mir-naiznanku.friday.ru": [20175], "special.habrahabr.ru": [7119], "nw.pepipost.net": [2024], "worldhealth.net": [18554], "tst.life": [2024], "www.adscendmedia.com": [681], "amoad.com": [371], "mdws.cccu.ca": [3337], "it.pornworms.com": [12974], "jiay.in": [2024], "sm.mcafee.com": [10129], "overpass-turbo.eu": [21319], "w.xojane.co.uk": [2024], "alldebrid.com": [877], "leonidvolkov.ru": [20810], "www.quay.io": [21564], "lk-legal.tricolor.tv": [22287], "www.otr.to": [11720], "sector.audio": [2024], "smartcard.nih.gov": [11090], "www.uptolike.com": [17466], "*.briansmith.org": [2328], "www.adcash.com": [622], "fi.libreoffice.org": [9327], "www.windowsphone.com": [18436], "codepoet.com": [19638], "www.abis-studien.se": [288], "trustedsec.com": [16860], "electric-cloud.com": [19978], "www.zuno.cz": [18860], "housing.illinois.edu": [17346], "fitcult.refresher.sk": [13781], "blcktb.com": [2024], "shop.opencyclemap.org": [11968], "s.yeoldreader.com": [16303], "a-br.in": [2024], "www.arrisi.com": [1240], "kgnb.am": [8738], "www.m.metro.ya.ru": [18716], "*.london2012.com": [9584], "*.flokinet.is": [5918], "explore.t-mobile.com": [15837], "hmvs.gr": [2024], "prglf.co": [2024], "www.priority.hkjc.com": [20384], "hi.chaturbate.com": [3040], "www.wwte13.com": [18031], "norwegian.com": [11548], "www.shopandmall.ru": [21806], "opsterland.nl": [11172], "*.eventbrite.co.uk": [5431], "g.gay1.ws": [2024], "cdn.realdebrid.xtnetwork.fr": [18692], "orkut.com": [12145], "joliebulle.tuxfamily.org": [22319], "www.birthdayinabox.com": [1944], "theedgeclimbing.com": [16347], "app.onelogin.com": [11874], "ntwrk.biz": [2024], "portal.redpill-linpro.com": [13757], "www.sequencing.uio.no": [17414], "ecma-international.org": [5044], "www.itechnician.co.uk": [7864], "demonsaw.com": [4341], "sklg.net": [2024], "suckup.de": [15638], "cdn.thinkprogress.org": [16435], "clicklivechat.com": [3261], "on.andyet.com": [2024], "raulfp.es": [2024], "*.gostats.com": [6767], "cmit.us": [2024], "dreamedia.us": [2024], "commencement.georgetown.edu": [6531], "addictech.com": [628], "i.samh.fyi": [2024], "www.terminatorx.org": [16195], "riley.in": [2024], "link.getraf.com": [2024], "broadcasting.gamesports.net": [6401], "451.life": [2024], "diy.rescue.org": [21633], "idp.ual.es": [17162], "rrsd.me": [2024], "llgy.co": [2024], "int.mondediplo.com": [10578], "aoreg.ble.de": [19406], "kholmsk.sakh.com": [21719], "dhammaloka.org.au": [1572], "pcphoto.me": [2024], "myvolunteerpage.com": [17923], "mail.aclu.org": [312], "*.base.de": [1516], "a9.hitravel.xyz": [2024], "i.crackedcdn.com": [4325], "scot.sh": [2024], "api-test-store.nzqa.govt.nz": [11044], "biomaterialsres.biomedcentral.com": [1931], "usfsp.edu": [17363], "swfdec.freedesktop.org": [6102], "www.hashkiller.co.uk": [20346], "developer.netflix.com": [10054], "char.ac": [2024], "www.tiki.org": [16520], "bhnmag.co": [2024], "goto.ted.com": [15871], "meyt.al": [2024], "www.fluxcards.de": [5937], "saludable.unizar.es": [17441], "www.visn23.va.gov": [17100], "sl.bangajik.com": [2024], "refferer.disqus.com": [4559], "m.legal.yandex.com": [18742], "codiem.es": [2024], "s.devthon.org": [2024], "store.charitywater.org": [3017], "videotour.me": [2024], "coinsecure.in": [3409], "bitcointoyou.com": [2010], "s29.cnzz.com": [3328], "fork.im": [2024], "www.p-tano.com": [12232], "freshmilk.de": [6184], "www.tridium.com": [16808], "trendsal.es": [2024], "impactradius.com": [8015], "kunde.oeffentliche.de": [11768], "www.samy.pl": [21728], "strongloop.com": [15599], "mhat.ch": [2024], "cab.mytrinity.com.ua": [21075], "df.plugz.me": [2024], "go.todaytix.com": [2024], "turbosquid.com": [16907], "website.1and1.ca": [70], "*.chron.com": [7572], "home.comparethemarket.com": [3513], "zenmate.pl": [18917], "cnr.berkeley.edu": [17329], "misende.ms": [2024], "lvbyt.co": [2024], "hr.un.org": [17057], "www.datavantage.com": [4181], "comics.dailykos.com": [4110], "wff.io": [2024], "online.birmingham.gov.uk": [19380], "we16.cf": [2024], "s73.cnzz.com": [3328], "sta.rw": [2024], "ynis.co": [2024], "888173.net": [240], "www.andrewblum.net": [1044], "tylr.net": [2024], "agencyrev.co": [2024], "s0.cyberciti.org": [3956], "btsport.com": [1599], "api.linksalpha.com": [9395], "r24628105.sync.app.asana.com": [1265], "chap.li": [2024], "examlab.lpice.eu": [9109], "webmail.1and1.co.uk": [71], "socialcampaign.com": [3816], "wedfrwd.co": [2024], "q.quadroi.com": [2024], "d-pix.info": [2024], "www.freedomonlinecoalition.com": [6148], "www.crunchbangplusplus.org": [3832], "elefant.es": [2024], "oebb.at": [21230], "rei.social": [2024], "web.slashdotmedia.com": [15013], "leeaase.me": [2024], "tiyu.qidian.com": [13349], "linuxacademy.com": [9433], "xn--j1aab.xn--90aijkdmaud0d.xn--p1ai": [22654], "giff.ly": [2024], "cybersymposium.isis.poly.edu": [12933], "ebm.do": [2024], "jmsho.es": [2024], "famv.in": [2024], "small-firms.fca.org.uk": [5547], "fosters.ly": [2024], "www.blocktrail.com": [2104], "fpslink.tk": [2024], "qm.hitravel.xyz": [2024], "www-edc.eng.cam.ac.uk": [17332], "*.seattle.gov": [3194], "malwr.com": [9943], "page.gitlab.com": [6658], "hebeiguan.jd.com": [8434], "my.ecosquid.org": [2024], "mrfrm.com": [2024], "www.eydap.gr": [6897], "www.maxon.net": [10110], "guerrillamail.com": [6987], "arexm.co": [2024], "forum.cyanogenmod.org": [3947], "img3.pixhost.org": [21426], "community.namecheap.com": [11060], "sales-images2.therealreal.com": [22180], "alumni.lsbu.ac.uk": [9111], "ttip.state.gov": [17146], "wwl.io": [2024], "pmc.io": [2024], "s.ffggrz.de": [2024], "img.revcontent.com": [21642], "lucoza.de": [2024], "fghtcrft.co": [2024], "marsupi.org": [10039], "www.team-cymru.org": [16064], "msu.bz": [2024], "link.jkorty.com": [2024], "searchsecurity.de": [16083], "bit.glennbb.uk": [2024], "l.hdurer.net": [2024], "krma.me": [2024], "pds.jpl.nasa.gov": [10909], "eurasia.gp": [2024], "form.t-mobilebankowe.pl": [22076], "www.vdoth.com": [17673], "ffprofile.com": [5751], "jinjiang.jd.com": [8434], "storefront.nr-assets.net": [10992], "teknoport.cc": [2024], "seat.tl": [2024], "brick.st": [2024], "1.leadplace.com": [2024], "www.teamintraining.org": [16067], "onenote.com": [11878], "ctstatements.bristol.gov.uk": [19451], "mcgz.us": [2024], "*.mobstac.com": [10527], "static.flickr.com": [5898], "static.shareasale.com": [14722], "mail103.websupport.sk": [18253], "buuteeq.it": [2024], "4.asset.soup.io": [15235], "mailhost.stpeter.im": [15571], "i1.piimg.com": [16509], "famz.in": [2024], "stdo.ms": [2024], "bamsoftware.com": [1659], "a.zencdn.net": [18914], "berry.worldcat.org": [18536], "c1.vbrr.ru": [17668], "doku.ws": [2024], "s.aims.cu.cc": [2024], "de.redhat.com": [13735], "rxnav.nlm.nih.gov": [11090], "prw.io": [2024], "fsawebenroll.ed.gov": [4881], "admin.verkaufen.ch": [22443], "elets.startsmile.ru": [21980], "fife-consult.objective.co.uk": [21225], "nrl.navy.mil": [17109], "rvtr.co": [2024], "content.internetvideoarchive.com": [8284], "www.buimg.com": [16509], "salixos.org": [21722], "48go.co": [2024], "www.citizenpost.fr": [3176], "dwww.play-asia.com": [12828], "advancedligo.mit.edu": [9761], "bitly.wg9s.com": [2024], "online.zammad.com": [18880], "www.scottishpower.co.uk": [14461], "s.sky365.co.jp": [2024], "www.jbfavre.org": [8552], "hg.fanboy.co.nz": [5640], "mrsk.co": [2024], "idmdc.tips": [2024], "lnkdby.me": [2024], "gger.it": [2024], "droplr.com": [4765], "miha.tw": [20981], "bites.audio": [2024], "fus.mn": [2024], "trustkeeper.net": [16853], "3.xhcdn.com": [18605], "www.bulbman.com": [2428], "dist.opendnssec.org": [11970], "sexandthecity.friday.ru": [20175], "support.nvcc.edu": [11627], "hcntr.com": [2024], "cvco.co": [2024], "sovrn.com": [21915], "allflicks.net": [19149], "ringcentr.al": [2024], "deal7.uk": [2024], "udhcp.busybox.net": [19479], "on.nkn.us": [2024], "login.yahoo.co.jp": [18730], "suba.li": [2024], "repository.library.georgetown.edu": [6531], "www.toster.ru": [16669], "account.qt.io": [13365], "www.avito.ru": [19287], "access.earthdata.nasa.gov": [10909], "sell2uk.co.uk": [21776], "www.metafaq.com": [20970], "phonon.kde.org": [8735], "q2.chaucanh.net": [2024], "img07.mifile.cn": [10411], "speedtest.net": [15330], "kindle.amazon.co.uk": [19170], "www.educ.cam.ac.uk": [17332], "tyk.io": [16976], "www.iyouport.com": [7883], "*.ubi.com": [17171], "www.imfimg.com": [7992], "static.intsig.net": [20557], "exac.ly": [2024], "lesk.azet.sk": [1507], "git.osmocom.org": [12159], "haganb.com": [2024], "j.wpimg.pl": [22621], "afterhours.lifehacker.com": [9346], "bitcoinxt.software": [2001], "gawk.us": [2024], "cgran.org": [2605], "casul.in": [2024], "icbit.se": [7687], "www.dsmltools.org": [19899], "booksonislam.org": [2223], "ua.boell.org": [19422], "moon.greenpeace.org": [6920], "docs.alfresco.com": [850], "simplyzesty.com": [21834], "diffu.se": [2024], "installments.com": [20542], "luxv.link": [2024], "iiam.me": [2024], "asi.org.ru": [19255], "client.scribblelive.com": [14474], "members.enlightenedperl.org": [5267], "shop.codecov.io": [3365], "ibc.researchcompliance.vt.edu": [17825], "prep.rci.com": [18579], "img.thalia.at": [16244], "ads6.contentabc.com": [3614], "bem.info": [1537], "www.chip-app.de": [2608], "painte.rs": [2024], "go.nickc.at": [2024], "*.ad-juster.com": [566], "www.redplum.com": [13723], "nq.oxfordjournals.org": [12222], "biesjr.nl": [2024], "www.exclusivex.com": [5476], "cyx4u.com": [2024], "jota.site": [2024], "l.gspn.tv": [2024], "www.tv4.se": [15947], "dota2.ru": [19885], "blogaveli.co": [2024], "kirpich-ors.ru": [20725], "d8.hitravel.xyz": [2024], "e.srf.to": [2024], "solutions.drweb.com": [4776], "connect.ok.ru": [11806], "www.fr.flightgear.org": [20118], "m.lurkmore.net": [9682], "www.kh.hu": [8739], "svn.ninux.org": [11461], "nasmikulas.sme.sk": [14198], "www.parlmany.com": [21350], "pwg1.gtimg.cn": [6974], "*.yelp.com.au": [18766], "wspeed.qq.com": [13329], "sp2.eota.energy.gov": [5243], "www.hds.ucsd.edu": [17012], "www.stc.tid.gov.hk": [7069], "igo.tl": [2024], "go.starmeo.com": [2024], "go.arbahok.com": [2024], "omgw.co": [2024], "kuvalehdet.fi": [12163], "s18.qhimg.com": [13347], "just-eat.no": [20671], "www.quickline.ch": [21566], "tsb.watch": [2024], "www.plus.netzausbau.de": [2445], "altontowers.com": [942], "24.mvd.ru": [21055], "s.roli.me": [2024], "cdn.gsstatic.com": [6767], "d-inside.fr": [2024], "www.bing.com": [1926], "tealiumiq.com": [16060], "t.jorli.com": [2024], "www.wirralccg.nhs.uk": [10953], "reputa.me": [2024], "ckj.oxfordjournals.org": [12222], "m.bankuralsib.ru": [1677], "hc.imhd.sk": [8004], "crfsd.co": [2024], "files.yandex.com": [18742], "engage.microad.jp": [10377], "royalsociety.org": [14053], "homepages.see.leeds.ac.uk": [17403], "help.x5.ru": [18590], "dolphin.fyi": [2024], "freeutopia.org": [6130], "hi5.com": [20371], "zeugha.us": [2024], "his.worldcat.org": [18536], "jqueryui.com": [8466], "discopos.se": [2024], "f7it.com": [2024], "documentation.mamp.info": [20916], "reporting.here.com": [7325], "www.piratebit.tech": [21524], "forum.teksyndicate.com": [16130], "mbakr.me": [2024], "g2f.org": [2024], "cfdn.at": [2024], "stig.gy": [2024], "go.stripped.co": [2024], "ivs.to": [2024], "d0g.gs": [2024], "quik.to": [2024], "lincolnshire.moderngov.co.uk": [21005], "nstr.co": [2024], "staticv2-4.rottentomatoes.com": [14034], "legaldirectories.com": [9244], "autop.co": [2024], "travian.su": [2024], "w2.cedars.hku.hk": [20387], "services.assetmanagement.hsbc.com.hk": [20427], "sreview.debian.net": [4261], "factorable.net": [5615], "www.survivetheclaireperryinter.net": [15726], "at.jchnrd.ca": [2024], "readandjep.pe": [2024], "openmicroscopy.org": [12052], "ikiwiki.info": [7965], "bmcnurs.biomedcentral.com": [1931], "feryn.link": [2024], "static-hp.s-msn.com": [14115], "womensvolleyball.clubs.bucknell.edu": [2406], "www.seattletechnicalbooks.com": [14518], "japanwi.de": [2024], "gentux.co": [2024], "pacsec.jp": [12338], "wrzuta.pl": [18567], "rdg.st": [2024], "cherkassy.mclaut.com": [20942], "*.walgreens.com": [18052], "enttextbook.stanford.edu": [15448], "www.2.cbsm.at": [8782], "cert.unionpay.com": [17281], "pawn.gs": [2024], "www.poloniex.com": [12930], "m.oschina.net": [11702], "www.pamnews.com": [12380], "sherifflivescan.sccsheriff.org": [14401], "ensi.ch": [22061], "sinfb.adsrvr.org": [688], "fwmapps.co.uk": [5660], "amsyste.ms": [2024], "webmail.hosts.co.uk": [7552], "myjd.jd.com": [8436], "www.hostbillapp.com": [7516], "vmail.me": [17892], "vicpk.co": [2024], "evpl.eu": [2024], "r-project.org": [13447], "lodi.illuminateed.com": [20494], "go.urosario.net": [2024], "secure20.pipni.cz": [12287], "mkiss.me": [2024], "thu.uz": [2024], "debconf13.debconf.org": [4257], "consult.manchester.gov.uk": [9954], "s.ndrsn.org": [2024], "afx.fyi": [2024], "rudo.co": [2024], "drownedinsound.com": [4767, 4768], "waivers.stanford.edu": [15447], "nitetimetoys.com": [11465], "*.journal-news.net": [8652], "www.bauundhobby.ch": [3647], "icicibank.intellilink.visa.com": [17846], "cdn.tinypass.com": [16565], "wiki.opencorporates.com": [11967], "www.hebdo.ch": [20362], "mnbar.us": [2024], "gaming.msi.com": [9806], "www.newsledge.com": [21128], "my.playosmo.com": [12158], "jobs.hasgeek.com": [7213], "www.bar.admin.ch": [22061], "file3.answcdn.com": [1095], "ivanovo.beeline.ru": [1778], "traviscistatus.com": [16776], "openflow.stanford.edu": [15448], "www.reach.baden-wuerttemberg.de": [19302], "cc3.dealer.com": [4245], "hitcounter.govmetric.com": [6850], "news.huobi.com": [7628], "www.tcf.org": [15856], "c-cex.com": [2507], "1do.it": [2024], "benelux-france.tpprf.ru": [22260], "sefton.greenparty.org.uk": [6908], "www.univ-smb.fr": [17314], "telvue.com": [16132], "ms.qdaily.com": [21554], "www.altii.de": [938], "mpp.vindicosuite.com": [17806], "l.daed.me": [2024], "kfguan.jd.com": [8434], "d.medw.in": [2024], "idtravel.ba.com": [1513], "pearl.plymouth.ac.uk": [12873], "http.cat": [7100], "master.wiki.dovecot.org": [4713], "www.browser.yandex.com.tr": [18740], "status.yammer.com": [18737], "mcwwr.org": [2024], "www.futbal.rtvs.sk": [13536], "img02.findgravy.com": [5827], "cmod.me": [2024], "www.atstuff.com": [1360], "gstreamer.freedesktop.org": [6102], "esw.osu.edu": [11797], "cofbean.me": [2024], "westpac.com.au": [18317], "n-joy.de": [10896], "images.genius.com": [20226], "*.fastly.net": [5675], "link.wmtransfer.com": [18173], "monitor.haskell.org": [7220], "www.ehostpros.com": [5668], "subs.foreignaffairs.com": [6003], "www.giphy.com": [6646], "grindr.com": [20308], "www.cntraveler.com": [3558], "soylent.com": [15267], "bo.slate.fr": [15014], "www.adsnative.com": [19091], "2ksports.com": [118], "www.weeklyplus.com": [18274], "ny.ckbe.at": [2024], "urlt.de": [2024], "s.benmanns.com": [2024], "urcl.gq": [2024], "www.pinescharter.net": [12712], "geekfaeries.fr": [20219], "xtly.co": [2024], "www.spectrumbusiness.net": [15319], "stopthinkconnect.org": [15554], "cman.link": [2024], "9.vgc.no": [17569], "www.instagram.com": [8182], "www.vedtver.ru": [22434], "bungie.net": [2453], "indexoncensorship.org": [8064], "asm.ag": [2024], "markonefoods.com": [10033], "www.libgen.pw": [9317], "spanair.com": [15285], "www.solarmovie.ph": [15181], "s22.postimg.org": [13024], "7585.duoshuo.com": [19906], "*.thompsonhotels.com": [16452], "kbr.me": [2024], "repository.jisc.ac.uk": [8591], "www.roleplaychat.org": [14008], "www.casper.com": [2895], "mackparty.info": [2024], "cfire.mail.ru": [9891], "ptmt.fi.ncsu.edu": [11531], "giving.buffalostate.edu": [2418], "finanz-bi.de": [2024], "ripe63.ripe.net": [13953], "the.osint.ninja": [2024], "service.snafu.de": [15087], "www.lfait.com": [9086], "*.dhgate.com": [4027], "link.artii.cn": [2024], "shop.union.msu.edu": [21040], "lynchinteractive.com": [9691], "crwded.co": [2024], "w4tchn0w.tk": [2024], "dnes.atlas.sk": [19269], "pixel-secure.solvemedia.com": [15196], "roundcube.c-base.org": [2506], "forms.upo.es": [17479], "id.openmrs.org": [11989], "*.memecenter.com": [10269], "proxy03.newsnetz.ch": [11371], "portal.gradwell.com": [6868], "stjs-gp.com": [2024], "*.easydns.com": [5016], "feedmyinbox.com": [5725], "mycosmo.hk": [2024], "*.creativelittlereaders.com": [3779], "iwethey.us": [2024], "niro.li": [2024], "csect.in": [2024], "rtcc.dfs.un.org": [17057], "x.robisit.com": [2024], "img2.tv4cdn.se": [15947], "naughtyshowreviews.com": [11145], "mmira.co": [2024], "meuvw.vc": [2024], "gfm.news": [2024], "dedup.debian.net": [4261], "widget.quantcast.com": [13387], "www.constructor.maps.yandex.com.tr": [18740], "www.ccc.co.il": [2551], "cl.boell.org": [19422], "secure.gettyimages.com.au": [6604], "server2.web-stat.com": [18143], "url.wkndrs.net": [2024], "image1.thenewslens.com": [16302], "oldebroek.nl": [11172], "m.tiny.pr": [2024], "xadmin.green.ch": [20305], "www.audioboo.fm": [1386], "d.hihex.com": [2024], "www.nifc.gov": [10964], "images.liftshare.com": [9351], "wra.cc": [2024], "ilarjournal.oxfordjournals.org": [12222], "www.pulse.me": [13268], "r24617645.sync.app.asana.com": [1265], "egotastic.com": [5104], "www.sevenforums.com": [21793], "www.jbox.com": [20631], "my.sfu.ca": [14708], "info.ngs.ru": [21134], "totacs.la": [2024], "meetings.internet2.edu": [8277], "r24618079.sync.app.asana.com": [1265], "sucshkr.co": [2024], "10mw18w6efngrqs9ud7qyih952k5qcswiivqndvj.ipleak.net": [20571], "www.ethersheet.org": [5368], "www.pyeongchang2018.com": [21545], "aejournal.biomedcentral.com": [1931], "l1.osdimg.com": [12153], "jsl.im": [2024], "www.crosswire.org": [3813], "cep.news": [2024], "cctor.us": [2024], "lml.ink": [2024], "www.pirata.top": [22174], "volvogrouprex.tnsglobal.com": [15906], "cokecce.com": [3413], "rabota.yandex.kz": [18743], "owa.usc.es": [17506], "rbwm.moderngov.co.uk": [21005], "support.dlvr.it": [19855], "www.rstforums.com": [13525], "s.fxclub.org": [2024], "vi.cdnvideo.ru": [19536], "ytlnk.co": [2024], "southdevon.greenparty.org.uk": [6908], "987.im": [2024], "www.travelrepublic.com": [16769], "a.s.thebrighttag.com": [2342], "bradleyf.id.au": [2283], "clients.electricstudio.co.uk": [5139], "l.leau.ro": [2024], "www.criticalmuslim.net": [3801], "kr3.co": [2024], "dres.lv": [2024], "xuan.jd.com": [8436], "www.blocktogether.org": [2105], "forum.gethashing.com": [6563], "webmail.earthlink.net": [4997], "www.totalrecall.com": [1919], "quirks.com": [13420], "*.launchpadlibrarian.net": [9182], "chip.mx": [2024], "plvn.cz": [2024], "s.bionett.hu": [2024], "oiss.itsc.cuhk.edu.hk": [2704], "chubgtr.me": [2024], "nofuzz.la": [2024], "roadne.ws": [2024], "stufflicio.us": [2024], "cotse.net": [3697], "tv.help.sky.com": [14989], "cdn.habets.se": [7116], "www.wxwidgets.org": [22636], "cdn.app.compendium.com": [3519], "amegy.co": [2024], "*.communigate.com": [3499], "staging.business.leeds.ac.uk": [17403], "wepmail.play-asia.com": [12828], "www.chartio.com": [3030], "cfre.ch": [2024], "t.j-schmitz.net": [8420], "jcienter.me": [2024], "keva.vc": [2024], "r24616634.sync.app.asana.com": [1265], "www.joy-kasino.com": [20654], "corporate.cqrollcall.com": [2669], "aerlingus.com": [731], "botconf.eu": [2259], "pkra.us": [2024], "sidecar.gitter.im": [6666], "rvowl.es": [2024], "sslproxy.getsatisfaction.com": [6601], "issue.swisscom.ch": [15761], "corkuniversitypress.com": [3674], "www.berniw.org": [1828], "apitygem.eweiqi.com": [20045], "selectricity.org": [14627], "givinghistory.stanford.edu": [15448], "pour.l214.com": [20767], "placeimg.com": [12791], "dashboard.temando.com": [16175], "docmakers.mailchimp.com": [9893], "factsheets.inl.gov": [20537], "handelsbanken.fi": [7174], "destroyallsoftware.com": [4383], "image.providesupport.com": [13218], "freestyler.ws": [6109], "evlrecip.es": [2024], "x.ericluan.com": [2024], "jinks-wtd.us": [2024], "www.getmybalance.com": [6598], "www.automotivelinux.org": [1454], "ikesbrewha.us": [2024], "pkgs.alpinelinux.org": [918], "images.cdn.rackspace.com": [13566], "santa.fm": [2024], "media.rsb.ru": [14058], "mbed.org": [10122], "youcaring.com": [18795], "www.so.ch": [22061], "viedemerde.fr": [1845], "canvas.uw.edu": [17156], "*.unoeuro.com": [17448], "rtspzvezda.cdnvideo.ru": [19536], "diapers.com": [19831], "azerbaijan.usembassy.gov": [22406], "s2.gismeteo.lt": [20249], "chukotka.sledcom.ru": [21858], "wiki.kde.org": [8735], "www.lacrossetechnology.com": [9136], "starnet.com": [15457], "www.wizards.com": [18477], "movb.us": [2024], "ak-ns.sascdn.com": [15049], "burma.usembassy.gov": [22406], "dot.nnno.jp": [2024], "*.cafepress.co.uk": [2730], "ipf.li": [2024], "sharefest.me": [14738], "blagodarny.startsmile.ru": [21980], "scontent-a.cdninstagram.com": [2572], "phoenix.symantec.com": [15780], "www.wulife.wustl.edu": [18089], "bbs.16163.com": [48], "*.belezanaweb.net.br": [1789], "luxj.me": [2024], "www.blw.admin.ch": [22061], "l.ttys.me": [2024], "mob4-ntv.cdnvideo.ru": [19536], "www.zerogate.tk": [22717], "localsearch.ch": [9554], "www.machcomedyfest.co.uk": [9843], "cheekywench.com": [2024], "my.samsungknox.com": [14331], "www.uqwimax.jp": [17094], "short.soo.vn": [2024], "a.getonce.com": [2024], "letters.astrobl.ru": [19264], "quanyiwap.spdbccc.com.cn": [21926], "mfpkaty.com": [2024], "www.digiday.com": [4464], "superstranka.cz": [22039], "hints.netflame.cc": [11267], "cloud.gmo.jp": [6325], "r.5zig.eu": [2024], "go.ucsc.edu": [2024], "login.get.no": [20237], "basildon.objective.co.uk": [21225], "sondage.leboncoin.fr": [20796], "*.dailyherald.com": [4105], "*.kantarlatam.com": [8800], "s.delvenetworks.com": [4322], "www.courscrypto.org": [3715], "m.hc.imhd.sk": [8004], "hnsl.mn": [2024], "mybigcommerce.com": [1881], "gulp.linux.it": [9419], "indanc.uk": [2024], "www.gust.com": [7008], "pxls.me": [2024], "www.indymedia.ie": [20522], "www.panoptykon.org": [12395], "dmkt.tk": [2024], "www.filemobile.com": [5786], "fullstackpython.com": [20186], "facturaelectronica.unizar.es": [17441], "onthehub.com": [21260], "on.obvi.fm": [2024], "idgfm.corp.aol.com": [380], "polibuda4life.dosowisko.net": [4683], "c.koda.li": [2024], "www.marketing.htwk-leipzig.de": [7596], "panel.bnc4free.com": [2180], "constructor.maps.yandex.com": [18742], "www.kr.cdnetworks.com": [2574], "x.ntldstats.com": [11002], "thecelebrato.rs": [2024], "diva.aktuality.sk": [1507], "s12.postimage.org": [13024], "on.whio.com": [2024], "safecurves.cr.yp.to": [3745], "secure.rallycongress.com": [13597], "clearlink.com": [3235], "sub.ft.com": [5810], "giffgaff.com": [20243], "firsts.com": [5861], "uptodown.net": [22397], "democracy.bristol.gov.uk": [19451], "frerej.co": [2024], "americanaexchange.com": [991], "*.sgkb.ch": [20683], "cloudswitch.com": [3294], "epub.to": [2024], "cp.zoneedit.com": [18994], "www.servers.agava.ru": [765], "osumychart.osumc.edu": [11714], "platformadmin.com": [12820], "www.partedmagic.com": [21352], "partner.market.yandex.com": [18742], "trashy.com": [22280], "skeptoid.com": [21847], "www.linux.org.au": [9422], "help.compass.microad.jp": [10377], "senat.edu.pl": [14635], "mygoya.de": [10873], "3gimg.qq.com": [13329], "sjcom.ws": [2024], "quox.at": [2024], "www.osec.pl": [11945], "chat.freed0m4all.net": [6139], "public.nurd.space": [11015], "spellon.me": [2024], "springfiles.com": [15376], "img.jf.cmbchina.com": [2639], "yars.eu": [2024], "silasfin.ch": [2024], "cdtr.co": [2024], "vm-waimages-01.cca.edu": [2547], "grenzverglei.ch": [2024], "www.westsussex.gov.uk": [18305], "dev.mheducation.com": [20975], "abcm.ch": [2208], "*.sc.edu": [14143], "jobs.dwolla.com": [4809], "soundrone.tk": [2024], "www.apnaindia.com": [1127], "certs.vutbr.cz": [17609], "secureconnect.com": [14554], "kinopoisk.ru": [20723], "scrt.in": [2024], "zenmate.pt": [18917], "www.ntk.me": [11593], "s.xna.me": [2024], "kmpf.us": [2024], "digil.it": [2024], "lms4.learnshare.com": [9225], "secure.broadland.gov.uk": [19454], "piratehd.com": [12737], "timetable.search.ch": [14504], "unternehmen.geizhals.at": [6494], "lobbyradar.de": [22709], "platform.unifiedsocial.com": [17272], "www.tmz.com": [15897], "ei2.gatech.biz": [2024], "donate.homelessveterans.co.uk": [7489], "daliguan.jd.com": [8434], "zabaykalskiy-kr.beeline.ru": [1778], "ccompt.es": [2024], "freedomboxfoundation.org": [6144, 6151], "ws-s.zuoyebang.cc": [22732], "bacandrology.biomedcentral.com": [1931], "childwatch.uio.no": [17414], "cdn.gusto.com": [7010], "payab.it": [2024], "*.smart-dsl.net": [21862], "maths.350.org": [140], "www.zdmcirc.com": [18851], "xlhost.com": [18609], "sj1.2345.cn": [97], "lavaboom.com": [9186], "*.webfaction.com": [18160], "images.bertrams.com": [1850], "h7.to": [2024], "myme.ms": [2024], "www.phihold.be": [12649], "de-contrainfo.espiv.net": [20021], "www.wired.co.uk": [22599], "www.textpad.com": [16231], "voa-islam.com": [17583], "paulirish.com": [21359], "*.customersvc.com": [3936], "pbl.to": [2024], "myme.me": [2024], "i.hobo.im": [2024], "www.lauramercier.com": [937], "portafirma.ual.es": [17162], "wiki.novell.com": [11569], "tpb.genyaa.org": [22174], "engr.uw.edu": [17156], "mail.python.org": [13314], "login.iis.net": [7745], "cb.cool": [2024], "tchibo.sk": [16050], "bnq1.nl": [2024], "lefas.hn": [2024], "www.sharedrop.io": [21798], "ke.imhd.sk": [8004], "support.ccbill.com": [2549], "er24.joburg": [2024], "blog.matatall.com": [10073], "pieperhome.de": [21406], "www.newsroom.firstdirect.com": [20111], "r24626437.sync.app.asana.com": [1265], "olpl.us": [2024], "joycasino777.net": [20654], "claireshare.me": [2024], "lpac.co.uk": [9107], "box.illinois.edu": [17346], "jezebel.com": [8578], "secure.met.police.uk": [20969], "0ch.in": [2024], "snowdenarchive.cjfe.org": [2630], "esporteweb.com": [2024], "www.wed.is": [18267], "www.sakura.ad.jp": [14124], "www.connect.me": [3583], "zdsk.co": [2024], "attribute.adometry.com": [675], "css.unodc.org": [17075], "pteb.es": [2024], "iskbw.fr": [2024], "worldoftanks.curseforge.com": [3927], "raritetus.cdnvideo.ru": [19536], "stvn.me": [2024], "shortyw.in": [2024], "*.uvcdn.com": [17546], "www.booktype.pro": [2225], "neweuro.pe": [2024], "status.nature.com": [11140], "*.corecode.at": [3663], "go.1lambda.com": [2024], "www.hellosign.com": [7297], "www.localwiki.org": [9551], "elista.startsmile.ru": [21980], "goldenc.link": [2024], "cdnpng.dmjx.dk": [4588], "texastribune.org": [16229], "br.abea-arq.org": [2024], "apps.washingtonpost.com": [18086], "community.mcafee.com": [10129], "environment.leeds.ac.uk": [17403], "www1.accessedge.com": [19048], "hdb.so": [2024], "www.lever.co": [9285], "npauley.im": [2024], "csa.buzz": [2024], "www.sexnarod.ru": [14698], "dermoncall.net": [2024], "jobs.broadcom.com": [2372], "www.bluechip.hu": [2160], "economicimpact.uic.edu": [17321], "p.po.st": [12874], "applicantid.cornell.edu": [3676], "*.aemi.edu.au": [336], "nradefensefund.org": [21179], "www.capitolmachine.com": [2834], "wordtothewise.com": [18522], "www.loanliner.com": [9545], "fryazino.tpprf.ru": [22260], "operations.sumologic.com": [15658], "nes.ncdc.noaa.gov": [11121], "on.wzzm.com": [2024], "www.giving.cornell.edu": [3676], "kohls.com": [8968], "s5.ssl.qhimg.com": [13347], "mm.lp214.me": [2024], "helpcenter.capitalone360.com": [2832], "blog.puphpet.com": [21542], "l.tooky.co.uk": [2024], "indonesia.unfpa.org": [17062], "nkirch.de": [2024], "bodoni.stanford.edu": [15448], "www.phy.ornl.gov": [11730], "elik.es": [2024], "bicicletas.us.es": [17502], "crisispros.co": [2024], "a.gdz.kr": [2024], "zilla.cc": [2024], "pnnx.es": [2024], "www.bytemark.co.uk": [2503], "click.rebate.bg": [2024], "grm.my": [2024], "ptch.io": [2024], "elefant.wdr.de": [18113], "jobs.slashdot.org": [15012], "*.yelp.co.uk": [18766], "www.weicaifu.com": [22556], "*.cashback.co.uk": [2891], "status.docker.com": [4605], "cdn2.illuminateed.com": [20494], "aboutmyvote.co.uk": [484], "fimfiction.net": [5801], "manage.ixwebhosting.com": [7880], "blesta.com": [2089], "r4ve.xyz": [2024], "webmail.pobox.com": [12875], "www.sysmex.com": [15820], "christophurl.co": [2024], "www.vkontakte.ru": [17579], "api.posteo.de": [13016], "www.buttons.social": [19480], "bslatl.com": [2024], "www.rentex.com": [13836], "mail2.activision.com": [556], "outlook.wustl.edu": [18089], "b7.hitravel.xyz": [2024], "thepiratebay.bypassed.date": [21524], "www.aspplayground.net": [415], "crowdstrike.com": [19725], "sailing.clubs.bucknell.edu": [2406], "transactauto.com": [16735], "pervomayskiy.beeline.ru": [1778], "www.freightcalculator.com.au": [6172], "www.samssoftware.com.au": [14323], "georgetown-msb.piwikpro.com": [21424], "srv44c.xxxyours.com": [22662], "freefind.com": [6103], "ebanking.kr.hsbc.com": [7090], "coughjournal.biomedcentral.com": [1931], "personalweb.alipay.com": [864], "www.purdueplantdoctor.com": [13278], "zcsmw.biligame.com": [1903], "yunohost.org": [18841], "portal.cisofy.com": [2627], "dfsweb.web.cern.ch": [2588], "sparebank1.no": [21922], "demo.com": [4018], "estonian.estonia.usembassy.gov": [22406], "explorer.tnsinfo.com": [15907], "benland.is": [2024], "minsh.khabkrai.ru": [20709], "sluc.as": [2024], "www.endpoint.com": [5233], "www.ontrac.com": [11928], "cmnca.us": [2024], "omi.osu.edu": [11797], "ko.osdn.net": [21298], "spkhb.co": [2024], "mntz.lv": [2024], "www.stavklass.ru": [21984], "www.localist.com": [9553], "affiliateshop.aclu.org": [312], "*.shopify.com": [14786], "josr-online.biomedcentral.com": [1931], "woz.ch": [18558], "www.fitnessmarket.com.au": [5869], "don.pasteur.fr": [12480], "jkise.com": [2024], "xy3.gm.163.com": [50], "pong.qubitproducts.com": [13395], "tm.niklas.us": [2024], "upc.cz": [17081], "assets2.blubrry.com": [19412], "tamu.ag": [2024], "brianfor.de": [2024], "www.mjg.in": [9768], "nordea.*": [11508], "engt.co": [2024], "link.phillip.pe": [2024], "mantor.org": [9972], "bleek.in": [2024], "kinkadi.us": [2024], "www.amway.com": [937], "go.idroid.us": [2024], "mail.tools.ietf.org": [7725], "memememe222.gq": [2024], "teamxlink.co.uk": [16071], "aclufl.org": [297], "fuar12.beget.com": [19347], "moderngov.sutton.gov.uk": [22047], "obrl.in": [2024], "admin-survey.usa.gov": [17110], "j-lau.com": [2024], "my.polyu.edu.hk": [12936], "loopia.se": [9616], "blog.musixmatch.com": [10758], "pit-format-online.pl": [21422], "dowk.uk": [2024], "www.earthcam.net": [19931], "img6.sj.qq.com": [13329], "uk.goodho.us": [2024], "directline.com": [4514], "tkbr.me": [2024], "mdev.gogobot.com": [6791], "power.org": [13035], "*.4cdn.org": [196], "eapi.newegg.com": [11356], "www.edileehobby.ch": [3647], "www.polk.com": [12924], "iniego4u.com": [2024], "www.effi.org": [5097], "cjib.nl": [11172], "shop.oebb.at": [21230], "git.gitbook.com": [6655], "dawns.co": [2024], "eduroam.org": [5089], "www.stm.baden-wuerttemberg.de": [19302], "www.everythingfury.com": [3469], "iph1.it": [2024], "bitchmagazine.org": [1983], "ted.ucsd.edu": [17012], "s.itstoni.com": [2024], "histoiredesmondialisations-ens-cfjw.cfjlab.fr": [2604], "abw.aber.ac.uk": [473], "kamchatka.rt.ru": [13529], "emea.littlehotelier.com": [9486], "intelliot.com": [8218], "info.bnymellon.com": [19420], "jstein.ca": [2024], "tuxfamily.org": [16929], "parapa.mail.ru": [9891], "ym.cdnvideo.ru": [19536], "app.newsland.com": [21127], "gml.cz": [6739], "profibeer.ru": [21506], "roundcube.carezone.cz": [2859], "piratebay.red": [22176], "api.almayadeen.net": [19157], "phpc.ws": [2024], "notion.bi": [2024], "good.link": [2024], "avidbl.gs": [2024], "www.brennannovak.com": [2323], "websense.stanford.edu": [15448], "iaf.me": [2024], "x.yes99.tw": [2024], "j.ophan.co.uk": [12089], "api.rasp.yandex.by": [18739], "*.bhosted.nl": [1544], "axs.io": [2024], "peardenver.com": [2024], "bmdo.ca": [2024], "ytwy.tw": [2024], "spb.psbank.ru": [13231], "gju1.alicdn.com": [853], "greencampus.boell.de": [2192], "herego.in": [2024], "matchpoint.rg.ru": [21646], "base.de": [1516], "eventdata.crossref.org": [3812], "www.tape.tv": [16019], "choices.truste.com": [15922], "lscf.me": [2024], "www.zeist.nl": [11172], "data.bilibili.com": [1904], "uhr.stanford.edu": [15448], "azf.io": [2024], "aflplaye.rs": [2024], "f.jdhgroup.com": [2024], "new.backendless.com": [19299], "go.ielabs.org": [2024], "minklink.info": [2024], "tdill.co": [2024], "api.karlsruhe.freifunk.net": [20688], "12.rkn.gov.ru": [13971], "sarahpac.in": [2024], "autodiscover.as.leeds.ac.uk": [17403], "3cub.es": [2024], "brbx.in": [2024], "passport-ckicheck.yandex.by": [18739], "eskp.in": [2024], "www.nos-oignons.fr": [11551], "oses.tm.com.my": [16150], "danblackme.uk": [2024], "www.netsekure.org": [11290], "www.global2000.at": [6702], "motherboard-images.vice.com": [17754], "media.techtarget.com": [16084], "lulea.se": [9665], "xvideosx.tv": [18627], "www.adf.ly": [577], "retir.us": [2024], "profile.we-energies.com": [18114], "bpded.biomedcentral.com": [1931], "tch.fm": [2024], "www.tocco.ch": [16600], "downloads.malwarebytes.org": [9941], "*.ds02.swisscom.com": [15761], "chsen.se": [2024], "anw.hr": [2024], "support.csbs.utah.edu": [17374], "delivery.b.switchadhub.com": [15764], "heartho.me": [2024], "pingidentity.com": [12716], "r.kaam.fr": [2024], "stefanoomes.eu": [2024], "rotherham.gov.uk": [14032], "archive2013.tacticaltech.org": [15966], "apod.gsfc.nasa.gov": [10909], "headbang.geekfaeries.fr": [20219], "tryc3.com": [2024], "www.web-hosting.com": [18140], "www.magictouch.com": [9876], "www.vancityinsurance.com": [17643], "shop.sobaggy.be": [2024], "www.voat.co": [17896], "*.capture.umbel.com": [17227], "trisquel.info": [16827], "www.cbp.gov": [2537], "zbm.be": [2024], "etb.ht": [2024], "import.io": [20513], "meded.dom.wustl.edu": [18088], "script.google.com": [6818], "markets.wallstreetcn.com": [18057], "mainlinehobby.net": [9910], "pandp.club": [2024], "government-nnov.ru": [20295], "*.flurry.com": [5933], "www.strasbourg.eu": [15574], "www.propertyinvesting.com": [13203], "yn.af": [2024], "paulof.com": [2024], "citizensinformation.ie": [3178], "ngvpn10.nvidia.com": [11022], "www.feweb.vu.nl": [17608], "gju2.alicdn.com": [853], "rammstein.pt": [2024], "ethz.ch": [4967], "img.douyucdn.cn": [4712], "m.rambler.ru": [13600], "erb.copeland.gov.uk": [19685], "www.utrecht.nl": [11172], "clearos.com": [19608], "timbro.se": [16528], "servicestatus.sky.com": [14989], "salinasuhsd.illuminateed.com": [20494], "fact.cm": [2024], "ws.amazon.co.uk": [19170], "registryrocket.com": [13798], "act.freepress.net": [6123], "antibodies.cancer.gov": [2819], "zyngaplayersupport.com": [19034], "*.cihar.com": [3138], "img1.xcart.com": [18596], "webmail.dreamhost.com": [4743], "careers.dbs.com": [4001], "rus-esp.tpprf.ru": [22260], "open.manchester.gov.uk": [9954], "on.avalias.com": [2024], "capitolmachine.com": [2834], "bluewin.wemfbox.ch": [2173], "lemar.in": [2024], "servercrate.com": [14667], "go.tylerlin.com": [2024], "drm.info": [4074], "*.pentacon-dresden.de": [14421], "ru.itao.com": [20598], "nsi.rosminzdrav.ru": [21674], "demo.bitmask.net": [2027], "bugs.openmw.org": [11990], "gopb.government-nnov.ru": [20295], "*.emknowledge.gov.au": [1414], "168.mclaut.com": [20942], "dripth.at": [2024], "sitemap.gamefaqs.com": [20201], "appleexpert.net": [2024], "novokuznetsk.beeline.ru": [1778], "www.wildfiregames.com": [18399], "tmaape.me": [2024], "local.com.ua": [20862], "2hm.co": [2024], "aledne.ws": [2024], "archive.sub.fm": [22020], "prf.me": [2024], "*.morrisonscellar.com": [10642], "commerce.microsoft.com": [10396], "jp.popin.cc": [12954], "www.enom.com": [5268], "html5-player.libsyn.com": [9336], "gna.org": [6740], "douban.com": [4701], "prg.smartadserver.com": [15049], "inco.re": [2024], "mvrd.es": [2024], "www-03.ibm.com": [7679], "ilx.media": [2024], "bpt.me": [2383], "connect.jhu.edu": [16370], "flres.uk": [2024], "smetrics.time.com": [15884], "musikskole-tilmelding.dk": [10757], "mmath.is": [2024], "southdistrict.kavkaz-uzel.ru": [20694], "actonsoftware.com": [541], "club.1688.com": [51], "lgbtiq-greens.greenparty.org.uk": [6908], "www.tirerack.com": [16570], "ui.am.bingads.microsoft.com": [10396], "newrelic.com": [11331], "sguid.es": [2024], "pyatigorsk.tpprf.ru": [22260], "offshrw.in": [2024], "btwx.co": [2024], "*.lfhair.com": [9088], "warrencwhite.me": [2024], "www.icracked.com": [7706], "www.heise-medien.de": [7288], "d.aschulman.com": [2024], "jacksfetishtube.com": [8494], "xbne.uk": [2024], "novel-cdn.kuangxiangit.com": [20762], "postgresql.eu": [13021], "vfutur.es": [2024], "www.flixbus.se": [5911], "www.bitcasino.io": [1957], "www.pumo.com.tw": [13273], "spelthorne.firmstep.com": [20109], "b2b.rakuten.co.jp": [13593], "blackoutcongress.org": [2073], "eb.wtf": [2024], "saratov.europaplus.ru": [20034], "playmov.science": [2024], "medca.st": [2024], "o.aolcdn.com": [382], "www.hertz.ie": [7350], "crf.li": [2024], "alternativelibertaire.org": [931], "jdi.na.ro.vutbr.cz": [17609], "smarttv.amediateka.ru": [19186], "www.hertz.it": [7351], "*.solarbotics.com": [15182], "sttq.fr": [2024], "prettier.co": [2024], "kontalk.org": [8990], "kinohod.rocketbank.ru": [13994], "camr.in": [2024], "respectourprivacy.com": [13870], "mitro.co": [10498], "bsim.info": [2024], "sport.unian.ua": [22369], "abuse.vutbr.cz": [17609], "www.smallingerland.nl": [11172], "*.kriso.ee": [9025], "s.wantedly.com": [2024], "beacon-dub-nopii.krxd.net": [9028], "chat.roblox.com": [13980], "multimedia.hrw.org": [7616], "timashyovsk.tpprf.ru": [22260], "pce.uw.edu": [17156], "www.webtraxs.com": [18262], "kb.moodlerooms.com": [21018], "gift.cr": [2024], "adv.ru": [19097], "forum.skyscanner.net": [15006], "profile.europe1.fr": [20035], "aac.direct": [2024], "corelio.be": [3672], "s.matt3o12.de": [2024], "consultant.beeline.ru": [1778], "secure6.pipni.cz": [12287], "pt.fiksu.com": [5773], "linksmail.de": [9396], "law.wustl.edu": [18089], "de-is.dict.cc": [4442], "ets.org": [4968], "nawaf.ws": [2024], "l.vzfy.co": [2024], "stysafe.com": [2024], "hub.ba": [2024], "adm.49gov.ru": [187], "anyang.1688.com": [51], "www.pacbsd.org": [12337], "gwent.greenparty.org.uk": [6908], "www.yourkarma.com": [18820], "own-mailbox.com": [12213], "sts.nso.ru": [21192], "pythonclock.org": [13316], "aqmen.ac.uk": [19224], "tools.wmflabs.org": [18388], "*.brenet.de": [2315], "dinahosting.com": [4506], "swisspost.ch": [12996], "voipdistributor.net": [17895], "pa.oxfordjournals.org": [12222], "tvprogram.blesk.cz": [2088], "fladry.com": [2024], "s3.amediateka.ru": [19186], "adwords.google.*": [6821], "4u2c.pw": [2024], "wsstatic.govmetric.com": [6850], "cleverbridge.com": [3241], "plugins.calibre-ebook.com": [2757], "jkez0x3irw8mxq8mg7igbiidozze46hfjxx9tib4.ipleak.net": [20571], "tac.do": [2024], "ecoscentric.com": [4878], "data.0xdb.org": [10], "dj.lk": [2024], "forum.mythtv.org": [10890], "hiring-assets.careerbuilder.com": [2853], "www.ja.hideki.hclippr.com": [7034], "mdv.to": [2024], "www.slotsfrisoren.dk": [15035], "pit.dirty.ru": [4524], "m.hkuspace.hku.hk": [20387], "miramo.infinum.co": [20526], "ads2.williamhill.com": [18407], "reporting.vismaservices.no": [22472], "economia.elpais.com": [5126], "lb.c-base.org": [2506], "jts.oxfordjournals.org": [12222], "www.schule.sachsen.de": [14279], "stc.uptodown.com": [22396], "golyshmanovo.admtyumen.ru": [19082], "i.sqp.me": [2024], "kund.dn.se": [19856], "dudesvie.ws": [2024], "s.merkel-it.com": [2024], "ecitizen.oxford.gov.uk": [21323], "chblog.us": [2024], "i.4hm.uk": [2024], "axelname.ru": [1498], "sc.cdnma.com": [11218], "sbw.fr": [2024], "myphil.ly": [2024], "kwlnk.us": [2024], "webgility.com": [18213], "www.thegreatcoursesplus.com": [16360], "mirage.io": [10475], "www.seagm.com": [14154], "hmao.tpprf.ru": [22260], "ashops.co.il": [19254], "ko.tn": [2024], "joomla.org": [8641], "smood.it": [2024], "ac2.me": [2024], "loverslab.com": [9641], "nationwide-jobs.co.uk": [11129], "thepiratebay.ar.com": [22174], "safety.stanford.edu": [15448], "img01.static-nextag.com": [11402], "pricegrabber.com": [13099], "images.eurogamer.net": [5406], "fcws.maxon.net": [10110], "taxpayersalliance.com": [16045], "thebntr.net": [2024], "cloudsso1.cisco.com": [3165], "www.ciscolive.com": [3168], "consumersniper.com": [3602], "uploads.strikinglycdn.com": [15593], "merchpl.us": [2024], "pointshound.com": [12897], "bespoke.hertz.com": [7371], "www.lumendatabase.org": [9670], "support.rangenetworks.com": [13608], "fr.3.boardgamearena.com": [2182], "us.gmocloud.com": [6323], "ltlbox.us": [2024], "listes.cru.fr": [3826], "mm-pf.de": [2024], "mypcbackup.com": [8707], "datadryad.org": [19763], "r.swaptor.nl": [2024], "ishopper1.pochtabank.ru": [12876], "eva.cas.sk": [1507], "www.netsparker.com": [11291], "www.bulksms.co.uk": [2429], "fmck.co": [2024], "j.j0.no": [2024], "adm.dynamicyield.com": [4822], "chitika.net": [3094], "l.cjcc.edu.kh": [2024], "media10.congstar-media.de": [3579], "lbs.amap.com": [19165], "sanfrancisco.thedungeons.com": [16263], "*.dyne.org": [4828], "involver.com": [8327], "budgetplanner.adviceguide.org.uk": [716], "fuskator.com": [6257], "buyhouse.yam.com": [18734], "valleyfirst.com": [17620], "mb.srb2.org": [14231], "www.subscribeonandroid.com": [22025], "archivesphysiotherapy.biomedcentral.com": [1931], "docs.nodejitsu.com": [11491], "staging-cq.citrix.com": [3180], "a.chiprip.com": [2024], "site-cdn2.ghosteryenterprise.com": [6614], "www.internet-radio.com": [8271], "co.clickandpledge.com": [3256], "app.resilientsystems.com": [13863], "i2p2.de": [7663], "forum.vodafone.co.nz": [17899], "unixmen.com": [17440], "pixta.st": [2024], "ntru.st": [2024], "redstate.com": [13724], "fb.mizote.net": [2024], "tinyletter.com": [16559], "news.mve.com": [2024], "abc.alipay.com": [864], "brockman.com": [2375], "gosh.msfn.org": [9804], "changwu.jd.com": [8434], "blog.shopstyle.co.uk": [14780], "www.berrange.com": [4135], "s.tickwanndu.de": [2024], "govcert.nl": [11172], "afford.com": [748], "go.drool.me.uk": [2024], "reyza.16mb.com": [2024], "nycfs.hn": [2024], "novokuznetsk.biglion.ru": [19375], "executiveinterviews.biz": [5477], "enrollment-info.empireblue.com": [19988], "www.du00.cc": [19901], "galerievirtuelle.bve.ulaval.ca": [17319], "cker.senta.me": [2024], "p.dandu.be": [2024], "*.collegeboundfund.com": [3425], "map.eduroam.de": [19960], "tnyltr.com": [2024], "truex.io": [2024], "offcloud.com": [11772], "intranet.tigerair.com": [16515], "*.techendo.com": [16092], "www.siemens.com.*": [14831], "l.dafacto.net": [2024], "static.fatwallet.com": [5680], "ipe.gift": [2024], "app.subscriptiongenius.com": [15629], "mrjoe.co": [2024], "pioneercharter.illuminateed.com": [20494], "jmp.velvet.org": [2024], "ilic.co": [2024], "www.fbnstatic.com": [6064], "fstrgdwns.com": [2024], "lsplinks.net": [2024], "c.asset.soup.io": [15235], "www.postimg.cc": [13024], "bns.alibaba.com": [857], "tibetaction.net": [16484], "dn-bterimg.qbox.me": [13344], "docs.nexcess.net": [11396], "sido.pw": [2024], "kitchen.cdnvideo.ru": [19536], "api.pay.xiaomi.com": [18662], "iptorrents.us": [7802], "forms.hnonline.sk": [7445], "vis.occrp.org": [11648], "almaty.europaplus.ru": [20034], "ulisses-ebooks.de": [11867], "myorig.in": [2024], "www.just-eat.be": [20671], "cfm.mobi": [2024], "i.scrollbol.com": [2024], "support.baksman.com": [19307], "on.cajpia.com": [2024], "mapping.milton-keynes.gov.uk": [10437], "ds.tl": [2024], "r24821496.sync.app.asana.com": [1265], "on.extemp.com": [2024], "ddv.fm": [2024], "blustr.pl": [2024], "www.answers.com": [1096], "*.gridzdirect.com": [6934], "vervehosting.com": [17732], "www.fastclick.com": [17629], "t21s.jp": [2024], "rj45.tv": [2024], "guidestar.org": [6989], "ad.dokant.com": [2024], "csgolounge.com": [3887], "strategic.usc.edu": [17366], "brdc.st": [2024], "learning.wales.nhs.uk": [10953], "pyeongchang2018.org": [21545], "fp.my.uh.edu": [17400], "on.wltx.com": [2024], "www.popads.net": [12949], "rdate.me": [2024], "hsrc.worldcat.org": [18536], "u.pjnorris.com": [2024], "blog.plug.dj": [12862], "istanbulhs.org": [8394], "www.juneoven.com": [8694], "www.rte.ie": [13530], "link.101xp.com": [2024], "www.freeprivacypolicy.com": [6698], "partner.robokassa.ru": [13982], "info.whitehatsec.com": [18346], "www.univers-libre.net": [17316], "download.islamtoday.net": [8372], "lists.nongnu.org": [5590], "bill.am": [2024], "www.it.mail.ru": [9891], "visualstudiogallery.msdn.microsoft.com": [10396], "blog.maxcdn.com": [10102], "ntvsp.org": [2024], "ignyte.io": [2024], "www.pcsp-emu.com": [5216], "lib.filezilla-project.org": [5782], "www.metaproducts.com": [10325], "www.bespied-ons-niet.nl": [1831], "webmercs.no": [4163], "globusvoyages.ch": [7561], "*.swetswise.com": [15750], "set-hiring.cs.stonybrook.edu": [15548], "ads.trafficjunky.net": [16721], "account.juno.com": [8699], "www.genymotion.com": [6519], "www-hotel.uu.se": [17153], "res.nimg.jp": [11450], "hirsty.org": [2024], "grr.la": [6987], "ps.bahn.de": [1640], "images.crocs.com": [3805], "bst8.gismeteo.ru": [6650], "on.cbnws.cc": [2024], "clasohlson.se": [3216], "sjms.co": [2024], "vrtxmg.com": [2024], "sosf.me": [2024], "0blu.com": [2024], "www.adium.im": [649], "ablegamers.com": [478], "i.apadv.co": [2024], "arachnys.com": [1181], "kundeforsikring.sparebank1.no": [21922], "ice.gov": [17102], "mkmoore.us": [2024], "framavox.org": [6075], "www.miamire.com": [10365], "www.ntnu.no": [11004], "thumbnail.image.rakuten.co.jp": [13594], "cubehash.cr.yp.to": [3745], "fife.objective.co.uk": [21225], "www.jba.io": [8551], "billing.helpjuice.com": [7308], "vmkt.co": [2024], "yandix.ml": [2024], "conference2005.kde.org": [8735], "admin.1and1.co.uk": [71], "sport.mail.ru": [9891], "nqsb.io": [11584], "svy.mk": [2024], "www.list.co.uk": [16273], "www.viraj.ulaval.ca": [17319], "mrjust.in": [2024], "ezra.cf": [2024], "glossary.knowledgeblog.org": [8961], "dnzl.nz": [2024], "account.bitmain.com": [2025], "s138.cnzz.com": [3328], "islaminspanish.org": [8369], "www.videogamegeek.com": [17772], "cryptostore.ru": [19732], "daiwafi.sh": [2024], "cdn.onenote.net": [11879], "www.talentsmart.com": [15984], "micahri.ch": [2024], "talent.mmo-champion.com": [3927], "intelliworkschat.com": [8221], "www.stubhub.de": [15602], "www.hh.se": [7045], "a.hiveteams.com": [2024], "bitterwallet.com": [7555], "hertz.co.uk": [7370], "karriere.aldi-sued.de": [357], "ondzk.nl": [2024], "r24625267.sync.app.asana.com": [1265], "neptuneos.com": [21105], "*.sidereel.com": [14823], "irb.fraunhofer.de": [6091], "ark.cx": [2024], "drdobbs.com": [16999], "creatavist.com": [3766], "s15.postimg.org": [13024], "www.rk.belregion.ru": [19353], "av.chaucanh.net": [2024], "mobile.swiss.com": [15758], "www.blake2.net": [19404], "tns.so": [2024], "cdn.unibet.com.au": [17268], "www.signal-spam.fr": [14843], "lha-direct.voa.gov.uk": [22483], "atinternet-solutions.com": [423], "cloudfront.debian.net": [4261], "go.elantix.net": [2024], "pgvz.io": [2024], "intelli-direct.com": [8215], "www.kr.hsbc.com": [7090], "piriform.com": [12759], "www.liberis.co.uk": [20827], "ca-n.in": [2024], "www.voidtools.com": [22490], "s.c.je": [2024], "spectator.org": [15315], "youvisit.com": [18802], "mads.li": [2024], "llwebprod2.ll.mit.edu": [9763], "lv.4.boardgamearena.com": [2182], "lds.sachsen.de": [14279], "anyba.by": [2024], "jr.mi.com": [10361], "eacpds.link": [2024], "calendar.google.com": [6818], "www.iamthecavalry.org": [7885], "rambler.ru": [13600], "consult.kirklees.gov.uk": [8929], "trek.kairo.at": [8782], "tao.1688.com": [51], "www.claws-mail.org": [3222], "joycasino14.com": [20654], "jumpingjack.com": [8691], "store.space.com": [15272], "knowledge.allianz.com": [19151], "jsbi.org": [8468], "idsn.ws": [2024], "mol.gov.sa": [14368], "ey.io": [2024], "baxter.mysql.cesky-hosting.cz": [19553], "ndes02.clp.com.hk": [2636], "www.pwsafe.org": [12468], "gui.do": [2024], "jobs.avm.de": [1478], "www.mpagano.com": [10707], "oncourse.iu.edu": [8069], "test.fail": [2024], "lancashire.firmstep.com": [20108], "idp.godaddy.com": [6755], "wikiwand.com": [22590], "acc.nz": [2024], "asset-3.soupcdn.com": [15236], "s15.postimage.org": [13024], "nllgg.nl": [10977], "www.babeljs.io": [1616], "sharing.ashampoo.com": [1273], "robmor.net": [2024], "taxbenefits.sheffield.gov.uk": [14755], "s.bao3.org": [2024], "hotel.meituan.com": [10248], "jbond.xyz": [2024], "tapd.it": [2024], "jobs.sheffield.gov.uk": [14755], "npjhub.org": [8312], "hoco.me": [2024], "adobeconnect.com": [670], "mbjw.ca": [2024], "wubio.wustl.edu": [18089], "dizzy.to": [2024], "nouveau.freedesktop.org": [6102], "www.asacp.org": [404], "*.m-privacy.de": [9704], "angebot.autoscout24.de": [1458], "nlayer.net": [10979], "ssl.net-m.net": [11251], "thersitis.espiv.net": [20021], "manage.storify.com": [15564], "live.1nsk.ru": [81], "cral.us": [2024], "vpn.sviaz-bank.ru": [15740], "pcom.ml": [2024], "suche.gmx.net": [6330], "harland.com": [7199], "firma.money.pl": [10584], "trust-it.gr": [16852], "optout.moodys.com": [21020], "member.hide.me": [7394], "sucor.in": [2024], "detournements.boum.org": [2261], "www.atsec.com": [1359], "insa-strasbourg.fr": [8193], "rbnz.me": [2024], "*.sportifik.com": [15360], "db3.play-asia.com": [12828], "secure.pythian.com": [21550], "oastats.mit.edu": [9763], "midkemiaonline.com": [20979], "www.uk.sogeti.com": [15167], "dhshrt.link": [2024], "static.bn-static.com": [1560], "static.anquan.org": [19204], "www.impactsoftcompany.com": [8016], "wlaun.ch": [2024], "as.dfghj.de": [2024], "sipcraft.co": [2024], "grayl.in": [2024], "etc.tf": [2024], "www.titanfile.com": [16574], "ssq.re": [2024], "web.stanford.edu": [15448], "keys.pbsci.ucsc.edu": [17389], "sa2.roadtrippers.com": [21659], "www.joomlancers.com": [8643], "d.rlcdn.com": [13494], "ves.me": [2024], "peachosi.com": [21378], "rki.de": [13970], "foxrox.me": [2024], "assets1.getsatisfaction.com": [6601], "assets3.thrillist.com": [22201], "rspcashop.co.uk": [13522], "www.travelrepublic.co.uk": [16769], "my.wosign.com": [18483], "1qr.co": [2024], "rogert.me": [2024], "clearspending.ru": [19609], "*.totalwebsecure.com": [16676], "www.gpadmissions.osu.edu": [11797], "swedbank.nl": [15745], "c.genetsis.com": [2024], "mikeweller.me": [2024], "*.bild.de": [1902], "www.oxforddictionaries.com": [12223], "it-offshore.co.uk": [7842], "www.filmlush.com": [5796], "*.scsstatic.ch": [14488], "www.aclu-nm.org": [305], "samsclass.info": [14324], "reading.ac.uk": [17418], "s.arco.mx": [2024], "highland-consult.objective.co.uk": [21225], "hiconversion.com": [7389], "static.t-ru.org": [22077], "tmt.org": [16444], "paygoal.co": [2024], "m.dimonvideo.ru": [19840], "heslo.centrum.cz": [19547], "esl.gg": [2024], "nintendogame.co": [2024], "www.footlocker-inc.com": [5989], "ds4.static.rtbf.be": [14063], "peixun.1688.com": [51], "mobilfunk.tchibo.de": [16050], "computerworld.com": [3537], "civic.mit.edu": [9763], "girl.guide": [2024], "www.cheapssls.com": [3046], "dano.cu.cc": [2024], "soutenir.framasoft.org": [6075], "re-source.adelphi.de": [635], "lite.openbank.ru": [21267], "pathology.georgetown.edu": [6531], "www.david-campbell.org": [4212], "whin.it": [2024], "www.fedgeno.com": [5715], "eye.cr": [2024], "tshark.ly": [2024], "a.dpsgm.de": [2024], "communaltv.sky.com": [14989], "l.lookfor.hk": [2024], "link.infozde.cz": [2024], "infin.ca": [2024], "limun.org": [9375], "de-fr.dict.cc": [4442], "link.icbr.org": [2024], "tron.alloscomp.com": [907], "baomoi.com": [1686], "offers.play-asia.com": [12828], "www.prad.de": [13055], "www.rc.fas.harvard.edu": [7211], "test.metaebene.me": [10322], "www.nllgg.nl": [10977], "sites.fastspring.com": [5666], "forums.bukkit.org": [19470], "www-stage.oracle.com": [12116], "m.unkn0wn3d.com": [2024], "zdnet.asia": [2024], "one-co.co": [2024], "www.nsrc.org": [10998], "adrenaline.lequipe.fr": [20811], "thetradi.es": [2024], "web.git.savannah.gnu.org": [6337], "www.luxomo.com": [9686], "hover.com": [7573], "pl.stripchat.com": [22014], "go.sfvspug.org": [2024], "efax.co.uk": [5094], "link.ntroy.com": [2024], "taeke.ma": [2024], "famlaw.co": [2024], "panda.ly": [2024], "oecc.me": [2024], "exchange.ulaval.ca": [17319], "sharepoint.nexus.ox.ac.uk": [17359], "vivashop.ml": [2024], "mail.zaehlwerk.net": [18872], "*.veruta.com": [17731], "track.adcocktail.com": [323], "thegspl.co": [2024], "panda.li": [2024], "fr.calameo.com": [2747, 2748], "voyage-prive.it": [17947], "ride.gs": [2024], "www.parkrun.org.uk": [12439], "www.dreampass.jp": [4747], "arjansp.nl": [2024], "jiscmail.ac.uk": [8451], "sharedtech.wustl.edu": [18089], "jhpn.biomedcentral.com": [1931], "baby.youku.com": [18804], "guttmacher.org": [7013], "www.linuxnewmedia.de": [9409], "myflavor.is": [2024], "www.osmglobal.com": [11711], "bugs.freebsd.org": [6097], "oir.nih.gov": [11090], "expense.console.aliyun.com": [868], "i.thepen.com.au": [2024], "collier.aclufl.org": [297], "www.lesershop24.de": [20813], "solergo.li": [2024], "pavpn.ambest.com": [369], "kursk.europaplus.ru": [20034], "www.openhunt.co": [12046], "bikeji.com": [1900], "summer.exherbo.org": [5482], "self.alipay.com": [864], "b.kromebody.com": [2024], "cltbrst.co": [2024], "www.ereceptionist.co.uk": [4943], "assets.sharethrough.com": [14742], "costco.cyberpowerpc.com": [19748], "buswaytickets.cambridgeshire.gov.uk": [19496], "anest.wusm.wustl.edu": [18089], "asada.gov.au": [405], "media3.washingtonpost.com": [18086], "shop.godeal.co": [2024], "tcblg.ca": [2024], "dobrochan.com": [4601], "www.proboards.com": [13158], "czone.eastsussex.gov.uk": [19938], "zenmate.be": [18917], "r123.co": [2024], "ca.norton.com": [11545], "mosaicscience.com": [10643], "transfer.sapo.pt": [14131], "ui1.assets-asda.com": [19261], "b.paradroyd.com": [2024], "go.saik0.net": [2024], "whtspc.rs": [2024], "static.focus.de": [5953], "rshsrs.mvd.ru": [21055], "bytelove.*": [2504], "apps2.buckscc.gov.uk": [19465], "affiliates.eblastengine.com": [4869], "docs.travis-ci.com": [16775], "help2.talktalk.co.uk": [15993], "trustsign.com.br": [16854], "www.amara.org": [956], "delivery.hyde.ligatus.com": [9356], "idb.fm": [2024], "www.credit-suisse.com": [3788], "matrix.org": [10089], "zurb.us": [2024], "exchange.contextweb.com": [3618], "www.desertory.de": [4373], "bugzilla.libsdl.org": [9305], "img2.2345.com": [98], "kdp.amazon.de": [19174], "nstatic1.freepik.com": [6159], "brokerportal.anthem.com": [19206], "fsl.cs.sunysb.edu": [15548], "parship.blick.ch": [2091], "pro.ladepeche.fr": [9128], "nic.swiss": [19884], "link.mhex.dk": [2024], "dlv.isc.org": [7823], "www.cryptabyte.com": [3838], "tvf.akixi.com": [19129], "forum.andesi.org": [1041], "fhallot.me": [2024], "at.fdi.ca": [2024], "rodq.tk": [2024], "*.openf2.com": [11973], "lightbluetouchpaper.org": [9358], "mr1.in": [2024], "myass.in": [2024], "jano.sh": [2024], "sapp.unwire.hk": [17460], "ir.supermedia.com": [15679], "www.timeweb.com": [16531], "cs2.myzuka.fm": [21079], "uspirates.org": [17145], "margeliz.com": [2024], "edu.rosminzdrav.ru": [21674], "*.ballou.se": [1657], "webmail.sccgov.org": [14401], "synology.com": [15803], "test.uptobox.com": [22395], "www.swedbank.nl": [15745], "marketplace.cisco.com": [3165], "*.coverforyou.com": [3730], "neon.mn": [2024], "go.eset.it": [2024], "verasafe.com": [17702], "www.glue.umd.edu": [17351], "stamus-networks.com": [21976], "exs.ph": [2024], "golnara.me": [2024], "oo-software.com": [11929], "www.allahsquran.com": [896], "www.girlscouts.org": [6647], "bao.alipay.com": [864], "fastshare.cz": [5663], "*.thewrap.com": [16288], "my.1and1.co.uk": [71], "www.acuityscheduling.com": [558], "srcf.net": [15406], "cypherpunks.ca": [3977], "try.bittorrent.com": [1974], "snackattack.ws": [2024], "www.gmodules.com": [6823], "vologda.tpprf.ru": [22260], "l.tiengnga.net": [2024], "piwik.kevag-telekom.de": [8878], "sas-origin.onstreammedia.com": [11921], "ln.twine.me": [2024], "www.bugzilla.kairo.at": [8782], "svn.tools.ietf.org": [7725], "okmw.net": [2024], "en.4.boardgamearena.com": [2182], "webftp.active24.cz": [19062], "*.backcountry.com": [1622], "*.moikrug.ru": [10567], "www2.osa.cuhk.edu.hk": [2704], "rnrsweetdeals.newsreview.com": [11380], "static1.mailerlite.com": [9897], "frame.neptun.bme.hu": [1556], "vrep.co": [2024], "html5video.org": [7097], "www.govtrack.us": [6852], "arc.am": [2024], "www.aegee-enschede.nl": [334], "e-sirket.mkk.com.tr": [9770], "err.tmall.com": [22222], "stayfray.co": [2024], "mhc.lc": [2024], "www.thoughtworks.com": [16461], "altai.tpprf.ru": [22260], "tile4.bbcimg.co.uk": [19333], "l21.in": [2024], "notification.smartadserver.com": [15049], "bugs.i3wm.org": [7665], "v3.lolagrove.com": [9579], "mytime.com": [10836], "digitaldefen.se": [2024], "www.mozilla-deutsch.kairo.at": [8782], "mcdis.co": [2024], "ecard.ly": [2024], "sndart.us": [2024], "snapengage-8.wpengine.netdna-cdn.com": [15091], "www.martineve.com": [10042], "www.dailydot.com": [4108], "inlingua.tocco.ch": [16600], "z.wiskeng.com": [2024], "nucl.us": [2024], "otpbank.ru": [12165], "share.livingsocial.com": [9530], "play.spotify.com": [15367], "cookie.monster.com": [10602], "*.fetshop.co.uk": [5749], "*.wcl.american.edu": [978], "ok.siomponk.com": [2024], "bao.jd.com": [8436], "blog.serverdensity.com": [14675], "3iii.co": [2024], "www.commercial.hsbc.com.hk": [20427], "discavo.to": [2024], "l.plo.ink": [2024], "engemannshc.usc.edu": [17366], "*.arm.com": [399], "giwps.georgetown.edu": [6531], "answers.uillinois.edu": [17034], "myvoice.earthlink.net": [4997], "gwi.se": [2024], "images.yandex.com": [18742], "forum-static.hummingbird.me": [7620], "hasen.site": [2024], "mortgages.capitalone.com": [2831], "ekma.co": [2024], "realvalue.me": [2024], "pinglun.eastday.com": [5010], "casinoaffiliateprograms.com": [2892], "push.ukeer.de": [17207], "jenkins.lineageos.org": [9384], "security.berkeley.edu": [17329], "amazon.ca": [19167], "scrubb.in": [2024], "1901.tosdr.org": [16597], "www.packetstormsecurity.com": [12346], "sbi.am": [2024], "teamboard.com": [16062], "lichfielddc-consult.objective.co.uk": [21225], "ounce.it": [2024], "s4.wlresources.com": [22604], "moscow.sledcom.ru": [21858], "60minut.es": [2024], "outsyste.ms": [2024], "www.paramountmovies.com": [12422], "windowssecrets.com": [18437], "rpe.tw": [2024], "rb.quanshui.org": [2024], "speedwellsoftware.com": [21931], "nowi.cz": [2024], "admin.leader-id.ru": [20793], "crunchlog.link": [2024], "teacher-programmes.web.cern.ch": [2588], "stemcellres.biomedcentral.com": [1931], "cdn1.therepublic.com": [16280], "support.doublerobotics.com": [4707], "*.pbsrc.com": [12527], "vinelinux.org": [22468], "jobs.swisscom.ch": [15761], "oiss.wustl.edu": [18089], "hosting2go.nl": [7533], "git46.rostrud.ru": [21677], "vnii.mvd.ru": [21055], "www.myitworksevents.com": [10850], "reg.163.com": [50], "dpak.net": [2024], "www.basecamp.com": [1713], "*.shortyawards.com": [14797], "commoncraft.com": [3492], "mfwk.me": [2024], "lk.admtyumen.ru": [19082], "mpsau.com": [2024], "cdn.jandan.net": [8518], "l.parminut.cz": [2024], "clickgoes.com": [2024], "svor.me": [2024], "enhanceie.com": [5260], "www.site24x7.com": [14928], "compiler-rt.llvm.org": [9103], "u.djicdn.com": [4029], "btco.nf": [2024], "mail.piraten-ufr.de": [12751], "mahachkala.rt.ru": [13529], "reservation-desk.com": [13860], "india.tpprf.ru": [22260], "api.wolframalpha.com": [18487], "sunrise.ch": [15670], "www.omniatv.com": [21246], "yourmailinglistprovider.com": [18813], "developer.berkeley.edu": [17329], "admissions.oxfordshire.gov.uk": [21327], "gpr.im": [2024], "qa.debian.org": [4263], "dldp.co": [2024], "bross.in": [2024], "beta.lrens.ch": [20880], "smartcardservices.macosforge.org": [9835], "new.volumio.org": [22495], "cdn1.illuminateed.com": [20494], "nbound.nvidia.com": [11022], "game.taobao.com": [16015], "l.flo.fyi": [2024], "whpub.me": [2024], "bespied-ons-niet.nl": [1831], "dasource.ch": [4158], "l.k.tt": [2024], "www.cdgcommerce.com": [2566], "dyndns.berlin": [4816], "www.foodandwaterwatch.org": [5978], "www.m-connect.ch": [10417], "cashmere.mery.jp": [9749], "www.bluekrypt.be": [2146], "www.aclusandiego.org": [307], "www.paxtonrecord.net": [12497], "attach2.mobile01.com": [10533], "gradschool.utah.edu": [17374], "*.webxakep.net": [18194], "l.j23.co": [2024], "dashboards.cern.ch": [2588], "www.m2c.ru": [20899], "ssend.microad.jp": [10377], "xmpp-ftw.jit.su": [8592], "*.spec.org": [14221], "ur1.me": [2024], "www1.my.commbank.com.au": [3480], "oftd.uk": [2024], "33promo.ru": [2024], "getshirt.us": [2024], "richmondshire.gov.uk": [13933], "www.graasmilk.net": [6862], "mail.krasno.ru": [20753], "www.botconf.eu": [2259], "wrelease.nl": [22622], "7.url.cn": [22399], "docstorepro.com": [4612], "wow.zamimg.com": [18878], "lus.hm": [2024], "southern-electric.co.uk": [15262], "www.appgratis.com": [1135], "mwgblog.link": [2024], "dane.xelerance.com": [18644], "www.connect2.northamptonshire.gov.uk": [21156], "qww.play-asia.com": [12828], "www.oldbayproxy.eu": [22174], "csc.beap.ad.yieldmanager.net": [13937], "vetdepot.com": [17741], "pod.juliareda.eu": [8685], "my.godaddy.com": [6755], "techxpress.net": [16087], "di.papua.us": [2024], "access.here.com": [7325], "prevention.cancer.gov": [2819], "b57.li": [2024], "testcloud.io": [16216], "abosh.lemonde.fr": [9204], "wingspod.com": [2024], "extranet.eee.hku.hk": [20387], "hi.megumi.co": [2024], "cihan.at": [2024], "axz.mx": [2024], "cat.gl": [2024], "passport.36kr.com": [154], "inedg.es": [2024], "p365.in": [2024], "filmdates.co.uk": [5794], "www.audioprointernational.com": [8225], "connectssl.find.ly": [5821], "*.webshoprevolution.com": [18182], "sb.plugz.me": [2024], "html5sec.org": [7096], "vstech.net": [17725], "dditservices.com": [19784], "on.wapt.com": [2024], "live.democrats.org": [4338], "x.ikev.in": [2024], "atrg.it": [2024], "sukiya.us": [2024], "api.addresspicker.io": [632], "to.justpark.com": [2024], "remplan.co": [2024], "cdn.ay.gy": [577], "ssl.comingolstadt.de": [3470], "quickhacks.lifehacker.com": [9346], "snapwidget.com": [15092], "bforge.me": [2024], "prdownloads.sf.net": [14167], "grenoble.indymedia.org": [8090], "www.bairdmounts.com": [19306], "ada.osu.edu": [11797], "proxxy.site": [22174], "celloglas.net": [2024], "ru.foursquare.com": [6061], "khrlzh.fr": [2024], "episode.cf": [2024], "*.yelp.com.ar": [18766], "qrcode.kaywa.com": [8843], "cdn.business.comcast.com": [3462], "ns.newsys.in": [2024], "donate.hrw.org": [7616], "help.proboards.com": [13158], "lnk.xcodeit.net": [2024], "light.1688.com": [51], "*.poppysports.com": [12963], "tinybldc.com": [2024], "outb.ac": [2024], "www.readcube.com": [13666], "etweet.us": [2024], "www.xiscosoft.com.es": [18668], "www.ireceivesmsonline.com": [20578], "l.niablog.com": [2024], "lowes.com": [9645], "seekingarrangement.com": [14616], "p3.pstatp.com": [16680], "soireepr.co": [2024], "on.maxuri.com": [2024], "audio.guim.co.uk": [6996], "magnitogorsk.beeline.ru": [1778], "oios.un.org": [17057], "xlg.in": [2024], "visaeurope.com": [17847], "pdxint.cc": [2024], "pirateunblocked.xyz": [22177], "ncvo.org": [2024], "www.slashdotmedia.com": [15013], "elee.sh": [2024], "301.me": [2024], "mycotopia.net": [10868], "soyoustart.com": [15117], "www.recordnotfound.com": [21610], "www.aamc.org": [277], "www.dkit.ie": [4032], "feedback.chef.io": [3061], "go.dirq.net": [2024], "www.fansub.co": [5647], "moodle.htw-berlin.de": [7103], "www.href.li": [7583], "ktnj.xyz": [2024], "www.edeka-verbund.de": [19953], "www.vpnreviewer.com": [17594], "biotest.t-nation.com": [15838], "www.pingxx.com": [12723], "www.infogr.am": [8111], "bmcb.us": [2024], "tpptraining.com": [15918], "facdev.co": [2024], "hoof.site": [2024], "evts.at": [2024], "paymentsuat.mppglobal.com": [21036], "partners.servicenow.com": [14682], "bea.so": [2024], "support.gitlab.com": [6658], "mofi.bo": [2024], "earthsci.stanford.edu": [15448], "scarborough.objective.co.uk": [21225], "www.thelocal.fr": [22167], "elrn.co": [2024], "mirror.datapipe.com": [4202], "fotojan.net": [2024], "teemi.us": [2024], "websafe.virginmedia.com": [17822], "www.vh2.ro.vutbr.cz": [17609], "l.nbtwiki.net": [2024], "your2.trash.net": [16761], "cinsp.in": [2024], "wuliu.taobao.com": [16015], "www.zerzar.com": [18948], "have.play-asia.com": [12828], "vts.inxpo.com": [8328], "www.tutanota.com": [16922], "www.meetings.acs.org": [974], "ingressos.biz": [2024], "astro.sina.com.cn": [14904], "app.contextly.com": [3617], "widepip.es": [2024], "blogs.nursing.osu.edu": [11797], "www.bitmazk.com": [2028], "www.vagosec.org": [22422], "bulgaria.tpprf.ru": [22260], "www.amnesty.ch": [1003], "d.tibz.co": [2024], "care-hhh.web.cern.ch": [2588], "www.acast.com": [19045], "cfx.jd.com": [8436], "gapgermany.de": [2024], "panelists.golfdigest.com": [6808], "go.mbna.ca": [2024], "www.monash.edu": [10577], "bybanu.co": [2024], "letsgooutsi.de": [2024], "valuate.com": [22425], "iguy.me": [2024], "aclunc.org": [316], "www.firehol.org": [20107], "z.finnlaw.co.uk": [2024], "0.bigdot.gr": [2024], "www.netmarketshare.com": [11237], "fxf.axonify.com": [1502], "members.cloudatcost.com": [3281], "shkaf.friday.ru": [20175], "sbnoir.com": [2024], "kultursal.no": [2024], "marketplace.hubspot.com": [7599], "printpl.us": [2024], "imata.co": [2024], "static7.twilio.com": [16948], "legal.hubspot.com": [7599], "arkn.ws": [2024], "gorno-altaiysk.biglion.ru": [19375], "7.asset.soup.io": [15235], "newyorker.com": [16276], "dispenser.tf": [4557], "s2.pstatp.com": [16680], "*.aspsys.com": [1298], "www.feitbulbs.com": [5730], "slw.io": [2024], "pay.btcc.com": [2400], "www.skepticalscience.com": [14971], "identi.ca": [7938], "www.shabdkosh.com": [14710], "*.spring-tns.net": [15372], "www.notacon.org": [11558], "www.xvideos.com": [22660], "jmall.jd.com": [8436], "alanhenry.lifehacker.com": [9346], "qa.openresty.org": [12076], "go.yanda.com": [2024], "theses.lib.sfu.ca": [14708], "gambleid.com": [6390], "onni.me": [2024], "ma0.twimg.com": [16949], "orgs.fnal.gov": [5741], "jsal.me": [2024], "www.snipcart.com": [15101], "s.ibd.org.au": [2024], "stratten.me": [2024], "shop.digitalcourage.de": [4489], "secure.directorsdesk.com": [10911], "www.safervpn.com": [21713], "aaa.bjcnc.scs.sohucs.com": [15173], "dcuz.us": [2024], "cvoss.me": [2024], "tvpass.legapallacanestro.com": [20801], "z.zaakirh.com": [2024], "aff.bz": [2024], "gaoyouguan.jd.com": [8434], "it.ulule.com": [17224], "s.monib.com": [2024], "s4.marketwatch.com": [10029], "go.iain.in": [2024], "champions.friday.ru": [20175], "edrive-hosting.cz": [5080], "www.megabigpower.com": [10236], "www.stackcommerce.com": [15426], "policy.gmu.edu": [6529], "img.koptevo.net": [20749], "forum.ciphershed.org": [3155], "beget.com": [19347], "ny13.vote": [2024], "bgzlle.com": [2024], "mxb.ca": [2024], "gettyimages.at": [6604], "webmaster.yandex.com": [18742], "powersource.post-gazette.com": [12994], "kbr.sledcom.ru": [21858], "joomlainfo.ch": [20652], "mailus.tnsglobal.com": [15906], "sfsh.in": [2024], "www.elderscrollsonline.com": [5135], "falkvinge.net": [5631], "mobi.drweb.com": [4776], "code.prod.facebook.com": [5609], "r.rinse.it": [2024], "link.ota.moe": [2024], "office.refresher.cz": [13781], "*.nyx.com": [11034], "discovermeteor.com": [4540], "biglion.ru": [19375], "app.accelus.com": [19047], "metrics.tesco.com": [16206], "adminer.pipni.cz": [12287], "uniqe.ly": [2024], "telemetryverification.net": [16157], "contactprivacy.com": [3610], "oran.in": [2024], "guestcentral.bnl.gov": [19418], "forums.unrealengine.com": [17450], "wpt.wipe.de": [22598], "pdcnet.org": [12656], "api.pw": [2024], "framework.web.cern.ch": [2588], "aim.com": [348], "klima.dwd.de": [19911], "hhpprtv.ornl.gov": [11730], "data.bistudio.com": [2195], "internetcoup.org": [8280], "tres.me": [2024], "sara.pe": [2024], "payments.amazon.co.uk": [19170], "ads.dynamicyield.com": [4822], "5july.org": [215], "owncloud.kairo.at": [8782], "lists.linaro.org": [9377], "www.opdc.ox.ac.uk": [17359], "my.ucsc.edu": [17390], "www.dbrgn.ch": [4227], "git87.rostrud.ru": [21677], "jpko.co": [2024], "diy.jd.com": [8436], "cat.eduroam.org": [5089], "kylep.ca": [2024], "oktrends.okcupid.com": [11809], "website.1and1.com": [69], "www.vpstudentsblog.utoronto.ca": [17427], "us-ignite.org": [17101], "myservice.bradford.gov.uk": [2282], "kundenservice.web.de": [18146], "stream.radiox.ch": [13576], "olv.co": [2024], "jogss.oxfordjournals.org": [12222], "papke.me": [2024], "www.zenmate.fr": [18917], "starrez.bucknell.edu": [2406], "go.paul.pp.ua": [2024], "dma.org.uk": [4509], "pds-engineering.jpl.nasa.gov": [10909], "www.markbillingham.com": [20926], "pnwmoto.co": [2024], "tricy.cl": [2024], "drmx.co": [2024], "ola.kent.gov.uk": [8867], "hhid.com": [7047], "etarget.ro": [5361], "help.instagram.com": [8182], "palsolidarity.org": [12367], "www.campbx.com": [2788], "vflm.tv": [2024], "hencc.me": [2024], "aclusandiego.org": [307], "myview.shropshire.gov.uk": [21819], "www.openitp.org": [11984], "handbook.fca.org.uk": [5547], "*.ksl.com": [8767], "awsy.kairo.at": [8782], "www.moviease.com": [10679], "secure2.zylom.com": [19029], "academiapress.be": [492], "www.newcastle.gov.uk": [11355], "platba.cz": [21438], "protect724.arcsight.com": [7379], "eu.api.soyoustart.com": [15117], "salesforce.com": [14311], "websupport.novell.com": [11569], "ohai.lulzbot.com": [9669], "ultra4k.ml": [2024], "i2.social.microsoft.com": [10396], "www.cloudflare.com": [3284], "imerys.com": [7991], "anee.sh": [2024], "secure.netflix.com": [11269], "icg.pm": [2024], "partner.bm.ru": [2176], "zse.sk": [19013], "goeswhere.com": [6788], "www.telnic.org": [16169], "skipme.nu": [2024], "yourvotematters.homeless.org.uk": [20398], "www.worstpills.org": [18557], "hotpics-amateur.com": [7557], "www.yeahtv.com": [18705], "wiredsafety.org": [18456], "orario.search.ch": [14504], "accounts.alibaba.com": [857], "studentbenefits.ca": [15605], "atrativa.com.br": [1358], "eandv.biomedcentral.com": [1931], "admin.mailchimp.com": [9893], "x-pietro.tk": [2024], "www.support.ourlocality.org": [12177], "cryptojedi.org": [3866], "sonic.tw": [2024], "kak.fm": [2024], "cds-global.com": [2578], "pwg0.gtimg.cn": [6974], "i3.calameoassets.com": [2749], "r24820215.sync.app.asana.com": [1265], "masterh2.adriver.ru": [588], "gg.google.com": [6818], "billmaher.com": [1908], "partners.vouchedfor.co.uk": [17937], "www.law.wustl.edu": [18089], "jiffy.sh": [2024], "stratum0.org": [15580], "b.apploft.de": [2024], "online.bystrobank.ru": [2500], "img.litmuscdn.com": [9484], "s.hrink.me": [2024], "accessont.me": [2024], "www.dell.com": [4316, 4317], "sparkstudios.com": [15294], "de-pt.dict.cc": [4442], "beta.ubuntu-nl.org": [17181], "thai.bangkok.usembassy.gov": [22406], "hagvall.eu": [2024], "www.thehiddenbay.eu": [22174], "ldv-m.com": [2024], "*.32red.com": [136], "pro.unet.by": [22367], "www.vb-paradise.de": [17667], "login.taobao.com": [16015], "blog.paperspace.com": [21342], "mi.legacy.com": [9242], "vasco3.microad.jp": [10377], "eefg.me": [2024], "synergy-stage.eamobile.com": [5141], "btbrepresent.me": [2024], "ir.ln.com.ar": [2024], "rdpc.us": [2024], "cdnma.com": [11218], "www.localsearchassociation.org": [18761], "on.ktts.com": [2024], "api.plaza.rakuten.co.jp": [13594], "everydayhero.com.au": [5444], "crsb.it": [2024], "*.riga.lv": [13936], "porpcr.com": [2024], "scr-i.be": [2024], "p1.sinaimg.cn": [14910], "orhy.me": [2024], "researchmap.jp": [13858], "srdrvp.com": [15408], "ixt.gs": [2024], "www.fortresslinux.org": [6035], "demo.mailvelope.com": [9907], "class-central.com": [3217], "go.babbel.com": [1614], "mail.ziggo.nl": [18962], "lexjet.net": [2024], "vapt.me": [2024], "38.rkn.gov.ru": [13971], "dlp.vc": [2024], "f5networks.*": [5536], "1-9.co": [2024], "www.optagelse.dk": [12101], "vinilox.eu": [17809], "thenext.immo": [2024], "akamai.com": [806], "x.topansubs.cf": [2024], "rvws.io": [2024], "tress.guru": [2024], "y.slashdot.org": [15012], "*.serverloft.com": [14678], "*.bpa.gov": [2212], "www.architectsjournal.co.uk": [1192], "link.powerbi.tv": [2024], "geschaeftsbericht.zalando.de": [18877], "at.godaddy.com": [6755], "card.cm": [2024], "deposit.utb.ru": [17538], "www.section9.co.uk": [14534], "telusinternational.com": [16174], "jcto.weill.cornell.edu": [3676], "gc2.in": [2024], "fred.nic.cz": [11418], "www.ewents.ya.ru": [18716], "don8blood.com": [2024], "elst.es": [2024], "jsbin.com": [20659], "becs.me": [2024], "mail.justice.com": [8715], "videohelp.cit.cornell.edu": [3676], "kapsi.fi": [8806], "picviews.org": [2024], "www.zchat.com": [22708], "clayty.pe": [2024], "s.fredalb.com": [2024], "qjmam.oxfordjournals.org": [12222], "www.iplocation.net": [20572], "www.perspectives-project.org": [12617], "go.hud.pw": [2024], "1-s.imgbox.com": [7997], "mdfy.co": [2024], "laiyang.jd.com": [8434], "abrew.co": [2024], "m.tune.yandex.com": [18742], "yun2.org": [2024], "loaded.online": [2024], "box.kancloud.cn": [20681], "baremetal.com": [1692], "comptracker.rigzone.com": [1948], "digikey.de": [4457], "metaebene.me": [10322], "lmot.tk": [2024], "megabus.com": [10244], "www.redbridge.gov.uk": [13742], "shirazlug.ir": [14769], "www.imgking.co": [20505], "autos.aol.com": [380], "www.privacyscore.com": [13142], "inlrecruiting.inl.gov": [20537], "gsprdzoe.fr": [2024], "internal.dynstatus.com": [4817], "www.vadino.com": [22421], "www.domainsite.com": [19872], "a.stand1.biz": [2024], "passport.bigmir.net": [1894], "jelle.io": [2024], "faq-o-matic.net": [5649], "game.youku.com": [18804], "tim.pritlove.org": [10322], "newcases.de": [2024], "eptx.co": [2024], "www.vendini.com": [22438], "www.365tickets.com": [150], "url2png.com": [17498], "afgc.co": [2024], "www.torrentz.in": [16663], "selfservice.nottingham.ac.uk": [11567], "beartracks-new.berkeley.edu": [17329], "cloud.webtype.com": [18191], "vlskvts.co": [2024], "www3.ambest.com": [369], "upload.taobao.com": [16015], "serveis-e.upf.edu": [17471], "www.franciskim.co": [6079], "novikom.dengisend.ru": [4344], "www.police.uk": [12907], "hubs.almayadeen.net": [19157], "webciety.metaebene.me": [10322], "stubconnect.stubhub.de": [15602], "www.holidayextras.co.uk": [7459], "cart.tmall.com": [22222], "www.heute.de": [22709], "krasnoturinsk.info": [20755], "vcse.unsbv.dfs.un.org": [17057], "lavim.co": [2024], "day.tl": [2024], "locus.pub": [2024], "auto.sme.sk": [14198], "www.trove.com": [16837], "b.mie.do": [2024], "dev.pro-linux.de": [13155], "login.deploybot.com": [19809], "s.iks-host.com": [2024], "*.shop.sandsmedia.com": [14274], "www.sailthru.com": [14304], "shreksadventure.com": [21816], "transfer.emea.symantec.com": [15780], "coz.pw": [2024], "planetquest.jpl.nasa.gov": [10909], "documentchecker.com": [4618], "s22.postimage.org": [13024], "mdhero.us": [2024], "www.yandex.ua": [18747], "www.evotronix.com": [5453], "david-t.ec": [2024], "rewire.link": [2024], "clickserv.sitescout.com": [14938], "l.apiguru.org": [2024], "www.eurodns.com": [5396], "mtvty.me": [2024], "partners.tune.com": [22309], "bracknell-forest.achieveservice.com": [19051], "xwim1.zuno.eu": [18861], "edms.cern.ch": [2588], "training.350.org": [140], "checkout.google.com": [6818], "proi.me": [2024], "www.boltbus.com": [2209], "www.immi.is": [7763], "www.derbyshireprepared.org.uk": [19812], "www.sandsmedia.com": [14274], "secureimages.teach12.com": [16284], "retail.garstelecom.ru": [20207], "www.frozencpu.com": [6210], "canada.isidewith.com": [20466], "cdn.sourcefednews.com": [15240], "www.sans.org": [14128], "armservers.com": [400], "awe.st": [2024], "www.adsurve.com": [689], "educationusa.state.gov": [17146], "c6.nrostatic.com": [21189], "www.cassinoestrela.com": [2898], "web.retriever-info.com": [13883], "www.canon.no": [2822], "www.canon.nl": [2822], "fut.bz": [2024], "inarco.fr": [2024], "www.*.unibe.ch": [17328], "iot.one": [2024], "portal.equinix.com": [5322], "aaai.org": [274], "e-btc.com.ua": [19917], "awe.sm": [1486], "nhmrc.gov.au": [11108], "chi.click": [2024], "push.lc": [2024], "www-csli.stanford.edu": [15448], "cdn.backstage.cultofmac.com": [3909], "shrthnd.co": [2024], "qwww.aexp-static.com": [729], "activities.sugarlabs.org": [15646], "revenuesbenefits.blackburn.gov.uk": [19401], "jigsaw.com": [8584], "uwashington.worldcat.org": [18536], "cdn.adrtx.net": [645], "mobiles.islamictech.com": [8380], "archives.jres.org": [8467], "blog.amara.org": [956], "ebill.checkpoint.thomsonreuters.com": [16456], "site24x7.com": [14928], "s.ctnguyen.net": [2024], "img6.qiyipic.com": [13354], "static-cdn.fullcontact.com": [6228], "allseenalliance.org": [884], "30s.ch": [2024], "www.icloud.com": [20461], "sayedha.net": [2024], "forum.worldofwarships.*": [18553], "socialc.am": [2024], "www.axonify.com": [1502], "mea.li": [2024], "vcrpr.com": [2024], "smiletra.in": [2024], "en-cs.dict.cc": [4442], "pma.ocf.berkeley.edu": [17329], "staging.moodys.com": [21020], "secure.disqus.com": [4559], "link.azet.sk": [1507], "ftp-master.debian.org": [4263], "passport.sina.cn": [14903], "wpi.news": [2024], "bynd.link": [2024], "unishop.uow.edu.au": [17434], "securecomputing.stanford.edu": [15448], "www.sphere.com": [15335], "www.oshkosh.com": [12155], "wyntk.co.uk": [2024], "stable-addons.wesnoth.org": [18298], "12ne.ws": [2024], "drp.9tv.co.il": [257], "askollie.warrington.gov.uk": [18079], "bizshark.com": [2055], "libraries.torbay.gov.uk": [16641], "security.illinois.edu": [17346], "sprav.yandex.com.tr": [18740], "blogs.lemonde.fr": [9204], "www.jci.org": [8658], "ucc.click": [2024], "links.myloc.me": [2024], "truckla.ws": [2024], "pandor.am": [2024], "mshn.co": [2024], "minu.to": [2024], "link.hou.io": [2024], "www.apeul.asso.ulaval.ca": [17319], "shop.icracked.com": [7706], "laquadrature.net": [9126], "hryhd.us": [2024], "www.negativesum.net": [11175], "www.verisign.com": [17712], "goibs.us": [2024], "wiki.drweb.com": [4776], "supportion.org": [15705], "dgtl.ag": [2024], "staff.ie.cuhk.edu.hk": [2704], "m.ccs.com": [2565], "tenmarks.com": [16178], "extranet.wienerlinien.at": [18376], "www.nhw.se": [11511], "samgentle.com": [14320], "cg.nu": [2024], "www.oagcargo.com": [16999], "perryellis.com": [12609], "info.enphase.com": [5270], "secure.hosting.vt.edu": [17825], "www.abcmusicpublishing.com.au": [283], "scan.coverity.com": [3731], "efcb.info": [2024], "www.grnh.se": [6940], "oneonline.shropshire.gov.uk": [21819], "adlibris.com": [657], "hertz247.es": [7364], "schema.appadvice.com": [1143], "login.hubspot.com": [7599], "yyan.ca": [2024], "rlrose.co.uk": [13495], "btcnews.co": [2024], "www.securedcontent.net": [14564], "emsonline.lea.sandwell.gov.uk": [21729], "dizonso2.nso.ru": [21192], "lindenwoodcollege.worldcat.org": [18536], "sc.1823.gov.hk": [56], "ashleycraig.com": [2024], "ariav.me": [2024], "vflink.it": [2024], "www.gibill.va.gov": [17100], "ming.social": [2024], "wordfence.com": [18524], "forum.pipni.cz": [12287], "grandcentral.cloudbees.com": [19622], "caseking.biz": [2885], "www.linuxcontainers.org": [9435], "www.landsend.com": [9154], "rebr.de": [2024], "www.web10.dk": [15989], "blamestella.com": [2076], "classes.uaa.alaska.edu": [17323], "www.leadpages.net": [9209], "odesk.by": [11762], "fail0verflow.com": [20070], "nl.movim.eu": [10684], "pagesix.com": [21336], "*.thetestcloud.com": [16216], "blog.ecampus.no": [4875], "subscribe.gq.com": [6356], "go.synbio.info": [2024], "careershub.bbc.co.uk": [1524], "droz.me": [2024], "sc.org": [2024], "s.inviasms.net": [2024], "arbg.it": [2024], "a.udn.com": [17020], "p.lete.li": [2024], "w.liturgia.pl": [2024], "traffic.libsyn.com": [9336], "*.semiaccurate.com": [14633], "dashboard-staging.mtree.mycelium.com": [21063], "mdta.co": [2024], "blog.poltava.to": [21456], "mhaas.co": [2024], "www.hertz-autovermietung.pl": [7357], "www.waag.org": [18034], "www.nhncorp.com": [10949], "hello.myfonts.net": [10805], "www.crocko.com": [3804], "projects.parabola.nu": [12412], "containerbuilder.tokenly.com": [22229], "foto.happyfoto.de": [7193], "www.larotative.info": [9131], "idevelop.ro": [7945], "librecmc.org": [20830], "beta620.nytimes.com": [11041], "cgi.timeinc.net": [16535], "www.emporioalberghiero.com": [5211], "wine.next.co.uk": [11399], "app.youla.io": [22689], "s30.postimg.org": [13024], "amnesty.org.ru": [1013], "www.see.leeds.ac.uk": [17403], "cledsp.georgetown.edu": [6531], "developer.ubuntu.com": [17183], "cabinet.rshb.ru": [14059], "doc.powerdns.com": [13036], "bapco.com": [1515], "ietf.org": [7725], "wenku.baidu.com": [1641], "src.chromium.org": [3124], "inbx.in": [2024], "elef.in": [2024], "hoaumi.ch": [2024], "on.kayak.com": [2024], "s.kit.ac": [2024], "*.greenhouse.io": [6914], "www.nsidc.org": [11100], "t.rasp.yandex.by": [18739], "assets.dt-static.com": [4653], "fallah.mobi": [2024], "stopthehate.hrc.org": [7609], "m.kassa.rambler.ru": [13600], "initex.com": [8148], "jump.mahler.io": [2024], "redbullmobile.at": [13729, 13730], "newsgator.com": [11369], "urls.dalvi.me": [2024], "pe-t.ch": [2024], "www.goslice.com": [15021], "herts.spydus.co.uk": [21952], "sn.nyc.mv": [2024], "1.mcdo.me": [2024], "webinar.informationweek.com": [8126], "aboutads.quantcast.com": [13387], "blog.gotomeeting.com": [6769], "www.april.org": [1171], "jitsi.tools.ietf.org": [7725], "ctea.in": [2024], "iolproperty.co.za": [7782], "psismn.rs": [2024], "publish.roblox.com": [13980], "sellercentral.amazon.co.jp": [19169], "forgerock.com": [20136], "*.pazaruvaj.com": [12524], "daily.afisha.ru": [19107], "asia-www.play-asia.com": [12828], "vant1.ca": [2024], "delivery.e.switchadhub.com": [15764], "uaa.paas.uninett.no": [17280], "l.minhoshim.com": [2024], "nachhaltigkeit2030.adelphi.de": [635], "cloud.oracle.com": [12116], "hbs.me": [2024], "*.statcounter.com": [15482], "mtnews.co": [2024], "pcicomplianceguide.org": [12254], "ejus.tc": [2024], "www.highland.gov.uk": [20374], "fluir.co": [2024], "demoiis.oxfordcc.co.uk": [21325], "astatic.alicdn.com": [853], "www.a1community.net": [261], "rad.microsoft.com": [10396], "z4.sinaimg.cn": [14910], "clickr.ml": [2024], "torusknot.com": [16667], "dh2.gm.163.com": [50], "hbanet.org": [7030], "beian.qcloud.com": [13346], "firstfloor.org": [5860], "fsb.org.uk": [5714], "hotsoon.snssdk.com": [21884], "salfordel.im": [2024], "wbx.de": [2024], "aipmm.io": [2024], "cta.fi": [2024], "www.aneros.com": [1056], "mail.biovendor.cz": [1933], "amiunique.org": [953], "sms.qiwi.ru": [13352], "acjs.aliyun.com": [868], "chptools.decc.gov.uk": [19795], "fabel.io": [2024], "s.occer.click": [2024], "cei.uniovi.es": [17282], "www.nzherald.co.nz": [11045], "webshared.mcore.com": [10658], "cloud.mongodb.com": [10591], "lemerid.ie": [2024], "on.rt.com": [13528], "*.teenrevenue.com": [16124], "tom.vgwort.de": [17568], "winservices.web.cern.ch": [2588], "www.vesselbags.com": [17739], "str.amediateka.ru": [19186], "classp.as": [2024], "wh.hitravel.xyz": [2024], "on.jwj.org": [2024], "1btcxe.com": [60], "www.skyscanner.co.in": [15006], "www.track.courierpost.co.nz": [3714], "on.gei.co": [2024], "accounts.ocf.berkeley.edu": [17329], "*.change.org": [2999], "www.nlm.nih.gov": [11090], "img-3.gizmag.com": [6676], "fvap.gov": [20191], "iopt.us": [2024], "eurovision.de": [5421], "community.netapp.com": [11221], "recruiters.jobs.telegraph.co.uk": [16149], "yoursole.com": [18822], "*.failuremag.com": [5619], "talemetrytoday.com": [15982], "gillard.biz": [2024], "pepephone.com": [22633], "ruhr-uni-bochum.de": [14086], "post2.audioscrobbler.com": [1387], "xen-orchestra.com": [18645], "africane.ws": [2024], "su.diggita.it": [2024], "wikinformatica.unizar.es": [17441], "on.tnr.com": [2024], "www.modalitypartnership.nhs.uk": [10953], "*.pypy.org": [10309], "bpm.otpbank.ru": [12165], "trefis.com": [16781], "*.kpnmail.nl": [8761], "img6.refresher.sk": [13781], "www.optimisemedia.com": [12105], "whitehatsec.com": [18346], "gdata.be": [6272], "udel.edu": [17337], "happyknowledge.com": [7189], "lexus.us": [2024], "img3.yeggi.com": [18760], "webkit.org": [18220], "addons-origin.cursecdn.com": [3927], "cdn.toyfoundry.net": [16692], "l.r-g.me": [2024], "support.us.playstation.com": [12832], "crtl.aimatch.com": [785], "*.ad4game.com": [568], "nugl.ink": [2024], "www.dsc.soic.indiana.edu": [8070], "dtc.umn.edu": [17356], "nl.vfmz.info": [2024], "izea.me": [2024], "design.ubuntu.com": [17183], "www.jeja.pl": [8563], "www.kyberia.sk": [9064], "cbnt.it": [2024], "jeux.ina.fr": [7769], "abo.lemonde.fr": [9204], "jatim.ga": [2024], "www.epuap.gov.pl": [19928], "edulink.bridgend.gov.uk": [19449], "mechanical.illinois.edu": [17346], "store.fruitninja.com": [6214], "vuex.vuejs.org": [17963], "www.irpa.umd.edu": [17351], "www347.americanexpress.com": [979], "shopee.id": [2024], "members.dukeexechealth.org": [4792], "kyak.mobi": [2024], "viewpoints.iu.edu": [8069], "www.monitoring-plugins.org": [10594], "rt.debian.org": [4263], "www.webhostingstuff.com": [18164], "fehm2016.unizar.es": [17441], "www1.vtrenz.net": [14865], "2.taobao.com": [16015], "itunesu.itunes.apple.com": [1151], "aa.chaucanh.net": [2024], "littlesis.org": [9488], "demo.univention.de": [17315], "vols.me": [2024], "piwik.shop.heise.de": [7288], "aa.yayan.com": [2024], "go.lauritz.com": [2024], "portal.smartertrack.com": [15059], "music.usc.edu": [17366], "blog.gitlab.com": [6658], "strt.ch": [2024], "www.nadir.org": [11049], "khl.io": [2024], "www.lesterchan.net": [9277], "en-sv.dict.cc": [4442], "classrecordings.wusm.wustl.edu": [18089], "account.qubitproducts.com": [13395], "roo.li": [2024], "it.malwarebytes.com": [9940], "to.budurl.co": [2024], "myffc.co": [2024], "www.funkyandroid.com": [6245], "mirbsd.org": [10474], "focus.de": [5953], "to.4travel.jp": [2024], "givetolocal.stanford.edu": [15448], "ec.1688.com": [51], "ir.demandmedia.com": [4325], "dtavan.me": [2024], "baremetrics.io": [1693], "dmid.si": [2024], "thepublic.nyc": [2024], "www.nullrefer.com": [11612], "gemius.com": [6500], "ned.li": [2024], "speedtest.ecotelecom.ru": [19952], "secure.gettyimages.co.uk": [6604], "vforms.ryedale.gov.uk": [14111], "go.vsu.edu.ph": [2024], "alaveteli-dev.nuug.no": [11017], "blog.psiphon.ca": [21529], "anct.me": [2024], "civilservicelearning.civilservice.gov.uk": [19601], "ceapa.im": [2024], "s.thezaz.com": [2024], "aarona.ca": [2024], "kiel.fau.org": [5543], "resourcex4.dditscdn.com": [4228], "joesager.com": [2024], "h.ealth.me": [2024], "sbk.bspb.ru": [2398], "goparallel.sourceforge.net": [15242], "www.neodrive.co": [11189], "pages.maxcdn.com": [10102], "go.na9al.com": [2024], "candyey.es": [2024], "csc.jd.com": [8436], "13d.me": [2024], "zeze.sci-hub.ac": [14436], "webmail.onebit.cz": [11678], "cveform.mitre.org": [10497], "passets-ec.pinterest.com": [12731], "www.kir.hu": [11815], "gs1.wac.edgecastcdn.net": [5070], "atv.thestandnews.com": [16315], "www.estv.admin.ch": [22061], "online.businesslink.gov.uk": [2477], "*.jmldirect.com": [8455], "productadvisor.symantec.com": [15780], "lab.geektimes.ru": [6490], "news.warwickshire.gov.uk": [22532], "ncsoft.com": [10933], "partnernet.avira.com": [1474], "world-lotteries.org": [22618], "dev.liveperson.net": [9505], "silv.be": [2024], "helpdesk.cloudlinux.com": [3288], "www.budgetinsurance.com": [2409], "xchatdata.net": [18597], "vsac.nlm.nih.gov": [11090], "t1.openload.co": [12070], "st8.it": [2024], "vols.ga": [2024], "simlystore.com": [14877], "thirddoormedia.com": [16440], "victi.ms": [17756], "mtekk.us": [10719], "www.nevis.columbia.edu": [3449], "www.awin1.com": [4472], "thne.ws": [2024], "ftbl.ma": [2024], "www.industrybotnetgroup.org": [8082], "www.badwarebusters.org": [1635], "mdpl.us": [2024], "www.mindtouch.us": [10446], "atp.alicdn.com": [853], "en.pastebin.ca": [12477], "www.dinahosting.com": [4506], "cfmag.pics": [2024], "xtremepapers.com": [18693], "secure.netpr.pl": [11243], "i2.letvimg.com": [20818], "www.lightningmaps.org": [9361], "blog.core.okfn.org": [21237], "www1.taxactonline.com": [16044], "illowa.us": [2024], "bmcmolbiol.biomedcentral.com": [1931], "nodejs.org": [11492], "zencache.com": [18915], "pgnd.us": [2024], "community.freescale.com": [6161], "www.tpbproxy.cc": [22174], "i.forbesimg.com": [5995], "r1.shop.kyivstar.ua": [9067], "mygap.jp": [2024], "unvd.it": [2024], "dir.jpl.nasa.gov": [10909], "www.imperialviolet.org": [8021], "inaturalist.org": [7779], "jpml.me": [2024], "mail.missionislam.com": [10493], "luvit.me": [2024], "carasutra.co.uk": [2842], "bn.telphin.ru": [16170], "pyatigorsk.psbank.ru": [13231], "pusers.centrum.cz": [19547], "digitalforensicsmagazine.com": [4473], "www.nitroflare.com": [21140, 21141], "kinox.me": [20720], "regex101.com": [13787], "www.dancesafe.org": [4127], "www.thewarehouse.co.nz": [16425], "salesmanago.pl": [14125], "m.3dlion.ru": [2024], "www.spinics.net": [15347], "hackertarget.com": [7132], "firstrand.axonify.com": [1502], "www.stitcher.com": [15544], "*.developerforce.com": [14311], "*.volusion.co.uk": [17926], "gmo-registry.com": [6326], "grassroots.org": [6879], "www.gum.co": [7000], "developer.iconfinder.com": [7920], "2-s.imgbox.com": [7997], "connexity.net": [3587], "www.prxbx.com": [13229], "newjob.me": [2024], "shop.macromates.com": [9849], "cindyshoots.me": [2024], "ronaldp.be": [2024], "argosemails.co.uk": [1214], "kktrvl.com": [2024], "addl.ee": [2024], "www.library.unc.edu": [17058], "zdoom.org": [22710], "ora.georgetown.edu": [6531], "www.tuningworld.com.au": [16902], "ltaa.be": [2024], "stalkscan.com": [21975], "17goon.duoshuo.com": [19906], "www.alzforum.org": [948], "tiles.bbcimg.co.uk": [19333], "bdltest.duapp.com": [19902], "maksukaista.fi": [20913], "wn.wsj.com": [22625], "rla.me": [2024], "newsimg.bbc.co.uk": [19331], "ctsfw.worldcat.org": [18536], "yannick.net": [18750], "bsoc.co": [2024], "cz.usembassy.gov": [22406], "a.hrc.onl": [7582], "blinktrade.com": [2097], "qtime.myportal.im": [10821], "mountsinai.org": [10659], "www.concordeurope.org": [19663], "www.hostoople.com": [7546], "jonz.es": [2024], "aab.ru": [19036], "www.infinitydev.org": [8097], "img3.bdstatic.com": [19339], "sb.scorecardresearch.com": [14455], "secure.pornhublive.com": [12973], "hcda.usc.edu": [17366], "lendeavor.com": [9260], "ditgadelys.dongenergy.dk": [4068], "www.baymirror.date": [21524], "engmt.co": [2024], "www.opencryptoaudit.org": [12037], "www.photonconsulting.com": [12678], "cnsci.us": [2024], "webmail.nyi.net": [11030, 11031], "go.lddg.co": [2024], "filmy.panoptykon.org": [12395], "rebar.me": [2024], "www.kuna.io": [20763], "images-jp.amazon.com": [963], "aftersale.dji.com": [4029], "c.sankakucomplex.com": [21730], "www.banx.io": [1683], "static04.vg.no": [17569], "www.caniusepython3.com": [2804], "www.opendz.org": [11971], "thinkwithgoogle.com": [16437], "www.beersofeurope.co.uk": [19346], "img.askleomedia.com": [1288], "youngintel.com": [2024], "guyb.ca": [2024], "vonage.akixi.com": [19129], "bondstheo.uk": [2024], "imdj.co.il": [2024], "shrt.grabski.me": [2024], "join.kcvids.com": [8730], "www.homelessveterans.co.uk": [7489], "otechtalks.com": [2024], "trac.filezilla-project.org": [5782], "cotswold.objective.co.uk": [21225], "lkar.it": [2024], "gotya.sknt.ru": [21851], "cdn.picstat2.com": [832], "vinberdon.info": [2024], "piratenlogin.de": [12752], "wayf.wayf.dk": [17988], "bugs.swift.org": [15752], "www.imageshack.com": [7983], "0180.info": [16173], "www.compete.org": [3521], "qianjiang.jd.com": [8434], "admin.testandtarget.omniture.com": [11842], "cheboksary-realty.rambler.ru": [13600], "specto.io": [15316], "mac.tpprf.ru": [22260], "mcafeemobilesecurity.com": [10127], "www.netlib.re": [11235], "www.grupfoni.com": [6965], "connect.mheducation.com": [20975], "bldn.gr": [2024], "jax-rs-spec.java.net": [8538], "lehane.pics": [2024], "rlghd.co": [2024], "civicalg.com.au": [19599], "*.savethechildren.org.uk": [14377], "mail.popehat.com": [12962], "dl.wa9.us": [2024], "ad.singpao.com.hk": [14913], "dolphin.kde.org": [8735], "3ne2nr.me": [2024], "git77.rostrud.ru": [21677], "f.njpc.it": [2024], "www.amsterdam.nl": [11172], "cn.vuejs.org": [17963], "powerofthe.link": [2024], "six.swiss": [2024], "i.ktld.co.uk": [2024], "hgrh.de": [2024], "cueims.soc.srcf.net": [15406], "stat.complat.ru": [19658], "amp.kavkaz-uzel.eu": [20693], "securix.org": [14596], "cn.cloudflare.com": [3284], "social.lezhin.com": [20822], "community.yieldmanager.com": [13937], "enhan.co": [2024], "r24617819.sync.app.asana.com": [1265], "www.svenskakyrkan.se": [15736], "schooladmissions.cheshireeast.gov.uk": [3071], "hkm.ma": [2024], "maps.ngdc.noaa.gov": [11121], "report.boldchat.com": [2203], "139qnm6i89rt786m9svz0gfbd3aojuqujygfsbmw.ipleak.net": [20571], "iptvexp.eu": [2024], "aqu.to": [2024], "powervoip.com": [13052], "punchouttest.digikey.de": [4457], "dprt.es": [2024], "phabricator.haskell.org": [7220], "www.ncbar.org": [10932], "www.verisign.com.sg": [17712], "www.hipaatesting.anthem.com": [19206], "sywtt.com": [2024], "to.fbrz.io": [2024], "hostpointpartner.ch": [7549], "fp-int.fraudmetrix.cn": [20151], "knowledgecentral.federalreserve.org": [5707], "tutanota.de": [16923], "my.inedo.com": [20523], "freenode.org": [20164], "magazinesdirect.com": [9864], "go.3v1n0.net": [2024], "www.thenation.com": [16274], "pkp.sfu.ca": [14708], "youtube.com.bh": [18800], "*.huawei.com": [7597], "ws-na.amazon-adsystem.com": [958], "hipointinc.com": [7392], "qwebirc.org": [21569], "ih3.redbubble.net": [13721], "ebiz.tips": [2024], "*.myshannonconnection.org": [14720], "mobile.here.com": [7325], "webelectra.kh.hu": [8739], "mso.me": [2024], "remedy.stanford.edu": [15448], "www.domaintools.com": [4653], "sec.video.qq.com": [13329], "www.thinglinkblog.com": [16430], "sosh.sh": [2024], "www.almayadeen.net": [19157], "griffith.edu.au": [6937], "aftership.com": [756], "whvo.co": [2024], "extranet.klilu.de": [20734], "wiki.t411.me": [15847], "monov.me": [2024], "forum.tampermonkey.net": [16002], "www.smoothieblend.com": [15075], "i1.services.social.s-msft.com": [14114], "chew.se": [2024], "tdw8970.infradead.org": [8135], "xadmin.exchange.1and1.com": [69], "www.how-old.net": [7574], "myhaccp.food.gov.uk": [20132], "rhn.redhat.com": [13735], "services.hon.ch": [7080], "fheba.ca": [2024], "lblprop.info": [2024], "www.apiary.io": [19213], "search1.taobao.com": [16015], "www.digitalwpc.com": [4488], "*.filmtrackonline.com": [5791], "apel.osu.edu": [11797], "fcc.us": [2024], "m.zalando.be": [18877], "www.sittard-geleen.nl": [11172], "stlo.it": [2024], "sgds.io": [2024], "ngvpn20.nvidia.com": [11022], "b.yandex.kz": [18743], "chemistryjobs.acs.org": [974], "quality-abo.de": [13379], "qpr.nu": [2024], "www.ukashcardsatis.com": [17206], "mjac.me": [2024], "foll.ooo": [2024], "ad.amgdgt.com": [995], "tutti.ch": [22317], "geekagnt.us": [2024], "www.dokuwiki.org": [4631], "*.ctpsnet.com": [3795], "www.debian-fr.org": [4260], "en.metooo.io": [10343], "forums.curseforge.com": [3927], "mosobl.sledcom.ru": [21858], "online.drweb.com": [4776], "player.vzaar.com": [17976], "l.bfgrossi.com": [2024], "ww17.smartadserver.com": [15049], "nexcess.net": [11396], "www.novartisart.com": [11568], "mechef.link": [2024], "maps.google.com.*": [6825], "hotmail.co.uk": [7564], "cvut.cz": [3984], "bcp.crwdcntrl.net": [9622], "intl.aliyun.com": [868], "v2.moodys.com": [21020], "ihl1.ca": [2024], "snipurl.xyz": [2024], "priem.nso.ru": [21192], "git.wj32.org": [18480], "www.askebsa.dol.gov": [19867], "t8g.nl": [2024], "bzo.rocks": [2024], "api.iperceptions.com": [20464], "gezg.in": [2024], "profiseller.de": [21508], "netline-d.openx.net": [12026], "merchant.exmo.com": [5488], "shop.blazingthyme.com": [11404], "ssbcpib01.nottingham.ac.uk": [11567], "server.weimarnetz.de": [22558], "squot.es": [2024], "ihit.co": [2024], "www.*.soton.ac.uk": [17364], "51.mvd.ru": [21055], "go.ustrive.com": [2024], "o-zone.vanco-asiapac.com": [17644], "rktn.de": [2024], "sso-prod2.cisco.com": [3165], "*.megworld.co.uk": [10232], "hum.ms": [2024], "zhaobiao.58.com": [212], "thesatanictemple.org": [16380], "et06.xhcdn.com": [18605], "copyrightcompliance.gettyimages.com": [6604], "deviceids-meds-id1.wdr.de": [18113], "hoerbiger.io": [2024], "piratehole.com": [22174], "download.wpsoftware.net": [18016], "srpg.me": [2024], "cdn1.onlinelaw.wustl.edu": [18089], "clicklnk.gq": [2024], "www.darktable.org": [4147], "dc.mit.edu": [9763], "nns1.play-asia.com": [12828], "17ac.re": [2024], "hum.mn": [2024], "v1.std3.ru": [15511], "fs11.formsite.com": [20139], "www.khm.uio.no": [17414], "on.trail411.com": [2024], "acyba.com": [564], "ehrd.udngroup.com": [17020], "my.team.id": [2024], "jcrp.us": [2024], "*.mbsportsweb.com": [9732], "www.securix.org": [14596], "www.n-joy.de": [10896], "erecruitment.wto.org": [18025], "accessguardian.com": [502], "manage.name.com": [11056], "khall.dk": [2024], "vfemail.net": [17567], "*.dassaultfalcon.com": [4159], "applipedia.paloaltonetworks.com": [12378], "www.thainetizen.org": [16240], "charitynucle.us": [2024], "graphics.cams.com": [2801], "www.researchnews.osu.edu": [11797], "pl.vc": [12790], "stats.autoscout24.ch": [1457], "cwired.co": [2024], "login.sunlightfoundation.com": [15667], "go.divogorod.ru": [2024], "exeterfriendly.co.uk": [5480], "on.hagafu.com": [2024], "pxlctl.elpais.com": [5126], "www3.cs.sunysb.edu": [15548], "uk.bazaar.com": [2024], "makin.it": [2024], "es.muri.co": [2024], "carblog.me": [2024], "yixingguan.jd.com": [8434], "sportisimo.ro": [14223], "start.unblu.com": [17238], "redef.it": [2024], "sky-ip.org": [14988], "fogbugz.com": [5958], "groc.press": [2024], "gaming.adobe.com": [668], "godownloadsongs.com": [15271], "jshou.se": [2024], "affiliates.superbreak.com": [22037], "paas.ly": [2024], "www.social-engineer.com": [15122], "ci.vexor.io": [22453], "secure.uac.advertising.com": [713], "live.youku.com": [18804], "engine.surfconext.nl": [14261], "beian.aliyun.com": [868], "cms.iopscience.iop.org": [8195], "scsym.ph": [2024], "wickie.kairo.at": [8782], "verisign.co.jp": [17712], "drm.li": [2024], "sgrs.eu": [2024], "gldn.ch": [2024], "www.nedstat.com": [3454], "www.woolworthsonline.com.au": [18511], "gofm.co": [2024], "sjph.co": [2024], "img.ifcdn.com": [20503], "static.cocubes.com": [3332], "greenwich.greenparty.org.uk": [6908], "tj.video.qq.com": [13329], "zrkuban.ru": [22727], "abmp.us": [2024], "cdn.casualcollective.com": [8747], "msge.me": [2024], "kyte.ws": [2024], "go.blessmy.life": [2024], "www.scene7.com": [14402], "faster.symantec.com": [15780], "cangzhou.jd.com": [8434], "go.resolvd.io": [2024], "ftp.opera.com": [12086], "www.focaljet.com": [5952], "dopravny-servis.aktuality.sk": [1507], "link.wishdd.com": [2024], "10ng.co": [2024], "magazin.io": [9863], "moslenta.ru": [21022], "www.hackerboard.de": [7133], "my.domtele.com": [19878], "pic-viewer.org": [2024], "seotrainingtoronto.com": [14162], "kagi.com": [8781], "wrc.ms": [2024], "pinos.im": [2024], "ptxl.it": [2024], "0utf.it": [2024], "blog.babelzilla.org": [1615], "vremya.yandex.kz": [18743], "marketing.etorostatic.com": [20029], "skidki.europaplus.ru": [20034], "www.metro.ya.ru": [18716], "qais.fyi": [2024], "www.delico.se": [4311], "koldfront.dk": [8973], "ygq.me": [2024], "lindzon.me": [2024], "roar.co": [2024], "www.bitsighttech.com": [1973], "img.drupup.com": [2024], "descss.zamimg.com": [18878], "ibank.alfabank.ru": [849], "officepreview.microsoft.com": [10396], "*.depositfiles.com": [4359], "snoonet.org": [15105], "bestf.it": [2024], "brkn.nl": [2024], "idola.to": [2024], "www.deliver2.com": [4313], "bigchangeuk.co.uk": [1879], "*.libcal.com": [9303], "www.skyscanner.ro": [15006], "*.planetminecraft.com": [12806], "host.cc.ntu.edu.tw": [11010], "to.larisia.com": [2024], "pensions.staffordshire.gov.uk": [15435], "huaban.com": [20441], "u.kmjamaat.com": [2024], "vanmonckautonomousgym.squat.net": [21955], "cloudimage.io": [3305], "treyperry.com": [16793], "osha.gov": [11708], "www.rubicondev.com": [14067], "www.metroethernetforum.com": [10349], "mnv8.us": [2024], "www.xm.com": [18611], "en.islamtoday.net": [8372], "r.sundar.am": [2024], "www.catarse.me": [2908], "internt.slu.se": [14195], "vpngw.dwd.de": [19911], "s.ukrnames.com": [17209], "i.newsvine.com": [11390], "zh.socialclub.rockstargames.com": [13997], "s11.cnzz.com": [3328], "zebr.as": [2024], "s.schr.ag": [2024], "www.cloudfoundry.com": [3298], "www.wealthytheatre.org": [6873], "heatst.com": [7274], "oit.williams.edu": [18408], "ppmn.de": [2024], "hilt.me": [2024], "www.sunnah.com": [15668], "www.jamesthebard.net": [8514], "piwikphpnet.phpnet.org": [12281], "www2.redbridge.gov.uk": [13741], "owa.student.kuleuven.be": [8832], "blubb.eu": [2024], "ssl7.net": [14559], "o.caishin.tw": [2024], "bade.lt": [2024], "www.connect.sensiolabs.com": [14648], "pci-ids.ucw.cz": [12252], "webui_6310997.asana.com": [1265], "nr7.us": [11218], "si.sitch.co": [2024], "watzek.worldcat.org": [18536], "www.schneideroptics.com": [14422], "open-mpi.org": [11942], "asiener.gy": [2024], "go.nh7.in": [2024], "www.meduza.io": [10217], "dad.im": [2024], "sellerportal2.newegg.com": [11356], "glossypictur.es": [2024], "blog.jobvite.com": [8616], "uvalred.uv.es": [17544], "www.invoca.com": [8323], "x.icetravel.xyz": [2024], "*.academia.edu": [494], "www.popularmechanics.com": [12967], "www.fme.vutbr.cz": [17609], "bymobi.us": [2024], "epdp.in": [2024], "jenkind.com": [2024], "megaglest.org": [10238, 10239], "potg.co": [2024], "www.greyhound.com.mx": [6929], "magazakayit.bilio.com": [1905], "www.profibeer.ru": [21506], "ddlvalley.cool": [19785], "ru.uptimeinstitute.com": [22393], "origin.arstechnica.com": [1242], "duckbrand.co": [2024], "www.hsbc.com.om": [20430], "skolaonline.cz": [21852], "compiz.org": [3526], "i2i.me": [2024], "openai.com": [11950], "counterwallet.io": [3707], "coupon.aliexpress.com": [854], "www.yali.state.gov": [17146], "hkg8.aastocks.com": [19037], "bcop.nanog.org": [11529], "enter.ru": [20002], "weights.sccgov.org": [14401], "www.uni-due.de": [17252], "www.cutesoft.net": [19745], "jnen.oxfordjournals.org": [12222], "tcsa.co": [2024], "controller.21.co": [95], "aromashevo.admtyumen.ru": [19082], "e-food.gr": [4845], "tvweb-cache.cdnvideo.ru": [19536], "cnch.ly": [2024], "norwalkreflector.com": [11547], "www.bedd.tk": [3536], "vginfo.co": [2024], "www.standardebooks.com": [15445], "pg.com": [13168], "amazon.cn": [19168], "l.thefox.is": [2024], "nnetworks.co.jp": [11473], "aeq.us": [2024], "shopstyle.co.*": [14781], "i.literotica.com": [9479], "go.max.be": [2024], "www.lrp.nih.gov": [11090], "www.i3wm.org": [7665], "support.zenmate.com": [18917], "www.blankslate.io": [2077], "speedmex.com": [2024], "m-credit.utb.ru": [17538], "delivery.ad.newsnow.net": [11372], "1rw.us": [2024], "ru.socialclub.rockstargames.com": [13997], "gpsfleetportal.cabinetoffice.gov.uk": [2716], "equalitytrust.org.uk": [5319], "glad.org": [6319], "www.directbox.de": [4517], "177ldiwyfisrzmt5x8n7dta6m5qcjrgw7wojj01m.ipleak.net": [20571], "www.extremetracking.com": [5519], "onbeing.org": [11848], "sn.hn4u.de": [2024], "go.itabvn.com": [2024], "m-potrebcred.utb.ru": [17538], "u.bankon.co": [2024], "kernelnewbies.org": [20704], "support.copilotgps.com": [19686], "boaz.pro": [2024], "mentoring.stanford.edu": [15448], "watsi.org": [18101], "w.sharethis.com": [14730], "www.soom.cz": [21903], "tagil.citilink.ru": [19594], "nl.aldi.be": [357], "s40.cnzz.com": [3328], "blog.habets.pp.se": [7115], "wizkid.me": [2024], "ssl.bbc.com": [1523], "bkolb.me": [2024], "4th.me.uk": [2024], "www.ruby-doc.org": [14072], "fossies.org": [20142], "static.hdslb.com": [20358], "go.spacet.me": [2024], "chuma.sh": [2024], "haendler.mobile.de": [21001], "keepingitsimple.envisionfinancial.ca": [5298], "s.p2pdai.com": [2024], "amii.bo": [2024], "ltgo.co": [2024], "gr.support.tomtom.com": [16615], "images.dailystar-uk.co.uk": [4106], "gtbd.gq": [2024], "*.lternet.edu": [9116], "*.oloadcdn.net": [12070], "dsa.csdata1.com": [2694], "zvezdanutie.friday.ru": [20175], "updates.thomsonreuters.com": [16456], "fareham.gov.uk": [5652], "contiki.co": [2024], "www.youtube.co.th": [18800], "jckp.io": [2024], "*.spreadshirt.it": [15371], "mayo.rs": [2024], "kobak.eu": [2024], "cash-f.squarecdn.com": [21953], "developer.qtcloudservices.com": [13366], "enterprise.apiary.io": [19213], "tripi.co": [2024], "maddyis.ms": [2024], "whitepapers.theregister.co.uk": [22182], "es-es.facebook.com": [5609], "lelo.com": [9258], "www1.wdr.de": [18113], "sfs.tips": [2024], "thetcw.uk": [2024], "ecatholic.us": [2024], "sta2fin.co": [2024], "geca.upf.edu": [17471], "ulozenka.cz": [17212], "www.bingplaces.com": [1927], "hkupop.hku.hk": [20387], "on.issue.by": [2024], "it.cdnetworks.com": [2574], "www.ffmpeg.org": [5556], "dialin.unicef.org": [17069], "cbell.in": [2024], "ipv6.nnm-club.me": [10982], "lcmtens.co": [2024], "taringa.net": [16027], "www.maksukaista.fi": [20913], "ap61.co": [2024], "www.opentpx.org": [12016], "email.webtrends.com": [18264], "ptc.com": [21532], "tsw.createspace.com": [3768], "iraq.usembassy.gov": [22406], "metro.srgssr.ch": [21957], "myphilanthropedia.org": [12652], "www.asana.com": [1265], "go.foundi.info": [2024], "wccpensions.surreycc.gov.uk": [22040], "curious4.com": [2024], "sdn.geekzu.org": [6479], "i.atlasdev.nl": [2024], "missouri.worldcat.org": [18536], "hu9em3n90.ml": [2024], "ha.mrick.me": [2024], "*.campaignercrm.com": [2793], "xml.yandex.by": [18739], "synbio.oxfordjournals.org": [12222], "tfoo.it": [2024], "rble.co": [2024], "digitaldefenders.org": [4477], "utilizador.eu": [2024], "rambler.krawlly.com": [9018], "i1.poltava.to": [21456], "invoice.zoho.com": [18984], "pirati.cz": [12756], "www.candhlures.com": [2820], "s.becoder.org": [2024], "store.kagi.com": [8781], "www.toysrus.com": [16694], "o.suntravel.xyz": [2024], "ldr.io": [2024], "1tn.co": [2024], "francesc.as": [2024], "mkcb.co": [2024], "akii.ca": [2024], "on.jg.net": [2024], "m.odnoklassniki.ru": [11764], "chiron.link": [2024], "imxp.co": [2024], "www.kaneva.com": [8795], "rarbg.to": [21584], "mcgr.aw": [2024], "go.amx.one": [2024], "cesar.resinfo.org": [13865], "publications.cabinetoffice.gov.uk": [2716], "forums.wxwidgets.org": [22636], "ecomm.dell.com": [4317], "lobby.clubredgaming.com": [3318], "skyarts.tk": [2024], "oak.im": [2024], "playground.merkur.de": [10306], "torrentproject.com": [16659], "ejemp.la": [2024], "mcrblog.co": [2024], "downloads8.mamp.info": [20916], "heroesofnewerth.com": [14118], "accessweb.publish.uic.edu": [17321], "mobilnihry.idnes.cz": [20483], "i.alipayobjects.com": [864], "kidwatch.kyivstar.ua": [9067], "care-net.org": [2849], "www.vandyke.com": [17638], "cacti.atech.io": [426], "discoverer.ulpgc.es": [17213], "ivoox.com": [7870], "305b.co": [2024], "nespi2.martinus.sk": [10044], "console.cloudbees.com": [19622], "at.nick.asia": [2024], "kozmodemyansk.startsmile.ru": [21980], "www.ecowatch.com": [5056], "telegeography.com": [16136], "creditwise.capitalone.com": [2831], "rdfo.us": [2024], "orezpraw.com": [12136], "apply.submit.kennedy-center.org": [20703], "popatomic.org": [12951], "www.cbo.gov": [17098], "*.mytalkdesk.com": [21074], "developer.alfresco.com": [850], "www.sbfi.admin.ch": [22061], "www.rochester.edu": [13986], "*.creativecow.net": [3775], "remotelyanywhere.com": [13824], "visitor.r20.constantcontact.com": [3594], "exch2-1.slu.se": [14195], "www.proxery.com": [13221], "my.integriscu.ca": [8204], "pit.vc": [2024], "tongji.alicdn.com": [853], "xxxbunker.com": [18699], "wwene.ws": [2024], "www.eofcom.admin.ch": [22061], "blog.cloudpassage.com": [19625], "malflet.ch": [2024], "www.oh-tech.org": [11660], "www.saltstack.com": [14317], "career.ust.hk": [22412], "*.sgizmo.com": [15723], "www.yooco.de": [18784], "healthyiq.co": [2024], "lankao.jd.com": [8434], "www.infobox.ru": [8109], "on.cdoug.net": [2024], "jtm.oxfordjournals.org": [12222], "oldi.ru": [21240], "s27.pixxxels.org": [21427], "przetargi.money.pl": [10584], "images.kurier.at": [9055], "sseo.it": [2024], "glam.rs": [2024], "uisbrookenslibrary.worldcat.org": [18536], "mrtg.us": [2024], "zom.im": [18989], "s.pepijn.io": [2024], "zolotonosha.mclaut.com": [20942], "www.joycasino9.com": [20654], "*.ato.gov.au": [1427], "www.cognitionsecure.com": [3387], "gateway.dynamicyield.com": [4822], "virologyj.biomedcentral.com": [1931], "marksdailyapple.com": [20927], "tfne.ws": [2024], "choosetorrct.us": [2024], "*.svn.sourceforge.net": [15242], "id.carousell.com": [2870], "www.khl.ru": [20711], "shrtscr.net": [2024], "on.wqow.com": [2024], "rdcl.co": [2024], "at.cra.wf": [2024], "communigate.com": [3499], "mdcdn.sporx.com": [21946], "go.laranja.info": [2024], "ge.solidarites.ch": [21897], "ciliajournal.biomedcentral.com": [1931], "own.re": [2024], "img.rt.com": [13528], "vil.rs": [2024], "ampr.gs": [2024], "on.kaioru.co": [2024], "community.nasdaq.com": [10911], "www.thegrandtheatre.com": [16359], "www.datart.sk": [3998], "cun.jd.com": [8436], "kontalk.net": [8990], "ns.ibnlive.in.com": [7768], "www.taobao.com": [16015], "analyzer.huxiu.com": [7638], "es.account.t-mobile.com": [15837], "own.rs": [2024], "blorf.it": [2024], "5.asset.soup.io": [15235], "www.bchydro.com": [1534], "ukwebsolutionsdirect.co.uk": [17042], "e2go.co": [2024], "p2.raasnet.com": [13716], "democracy.brent.gov.uk": [2324], "www.fulcrumbiometrics.com": [6225], "modprac.com": [2024], "g.eist.co": [2024], "dare.kotex.com": [9005], "login.gradwell.com": [6868], "v015.ax2600ab.omdx.uprr.com": [22392], "obang.in": [2024], "webmanager.cronius.net": [3806], "mediamatters.org": [10170], "tue.nl": [15940], "www.justcloud.com": [20669], "stcdems.us": [2024], "muvz.me": [2024], "0xbadc0de.be": [9], "sutn.sk": [15037], "www.opendoors.org": [12042], "ehmlive.n-somerset.gov.uk": [10898], "archive.hkgolden.com": [7058], "*.blogspot.co.uk": [2127], "www.angel.co": [1057], "www.ripe.net": [13953], "www.providesupport.jp": [13217], "kyonyusho.com": [2024], "roundtable.stanford.edu": [15448], "www.tweegy.nl": [16940], "ecom.ambest.com": [369], "sec-i0.mail.com": [9890], "stc.org": [15142], "static-wap-stg.norton.com": [11545], "judao.me": [2024], "www.monster-wow.com": [10604], "lygl.me": [2024], "p9.raasnet.com": [13716], "cdn.sstatic.net": [15424], "rus-cub.tpprf.ru": [22260], "cyber.sci-hub.cc": [14436], "col.stb00.s-msn.com": [14115], "spocc.wakefield.gov.uk": [22518], "pay.paddle.com": [12353], "reliability.seagate.com": [14499], "dl.reg.163.com": [50], "mjthis.me": [2024], "dho.us": [2024], "www.vufind.org": [17961], "solnechniyadm.khabkrai.ru": [20709], "ovh.nserver.ru": [11588], "aetherflyff.com": [740], "api.fastly.com": [5676], "jck.mn": [2024], "service.wienernetze.at": [18376], "www.ocharles.org.uk": [11651], "paste.informatick.net": [8124], "wvu.edu": [18307], "vsemetri.com": [22510], "wilma.porvoo.fi": [21468], "torrentz.com": [16663], "www.runbox.com": [14093], "go.mu.edu": [2024], "azale.as": [2024], "url.lansla.com": [2024], "belgium.usembassy.gov": [22406], "www.bt.no": [1577], "syda.co": [2024], "tourbox.songkick.com": [21900], "www.ruguoapp.com": [21692], "medium.ruguoapp.com": [21692], "ericwilson.ws": [2024], "intohigher.com": [8294], "www.imageforensic.org": [7984], "ns.lansp.ru": [20781], "1000-jb.de": [2024], "softeng.cc": [2024], "bitshare.com": [19394], "www.lsc-group.phys.uwm.edu": [17379], "r24617756.sync.app.asana.com": [1265], "network.progressivetech.org": [21509], "go.drewb.io": [2024], "on1.com": [21248], "tigefa.xyz": [2024], "img8.pixhost.org": [21426], "mobileapp.sportmaster.ru": [21944], "smanuel.in": [2024], "anderson-stage.leadershipacademy.nhs.uk": [10953], "ilias.hs-karlsruhe.de": [7587], "ra.vutbr.cz": [17609], "bso4.me": [2024], "jr.fi": [2024], "daohang.taobao.com": [16015], "pxrpst.co": [2024], "git07.rostrud.ru": [21677], "jdh.xyz": [2024], "s.cipr.es": [2024], "www.soroush.secproject.com": [14530], "www.ag.ch": [22061], "d2.islamhouse.com": [8368], "go.fimadani.com": [2024], "umiacs.umd.edu": [17351], "2buntu.com": [120], "bioscience.oxfordjournals.org": [12222], "www.its.th-mittelhessen.de": [15874], "paycard.rapida.ru": [13619], "zuv.cms.rrze.uni-erlangen.de": [17396], "lists.pld-linux.org": [12298], "photos.infinum.co": [20526], "fotoforensics.com": [6051], "zulip.clear-code.com": [3228], "go.woodsua.com": [2024], "www.mightyupload.com": [10412], "*.www.academiapress.be": [492], "aulani.jobs": [1393], "www.weibo.cn": [18277], "pigeon.to": [2024], "litfl.com": [2024], "brkth.ru": [2024], "daymet.ornl.gov": [11730], "photos.prnewswire.com": [12317], "dagou100com.oss.aliyuncs.com": [19143], "ejb.bz": [2024], "s9.addthis.com": [626], "www.ulgov.ru": [22356], "stec-t10.xhcdn.com": [18605], "stats.distributed.net": [4564], "knigi.zr.ru": [22725], "www.windowssecrets.com": [18437], "omne.ws": [2024], "pulse.me": [13268], "www.rottenecards.com": [14035], "seattleprivacy.org": [14517], "smallbusin.es": [2024], "lvjfarm.jd.com": [8434], "eastmidlands.greenparty.org.uk": [6908], "apps.evozi.com": [5457], "www.slts.osu.edu": [11797], "www.isecpartners.com": [7827], "cdn6.openculture.com": [12039], "ib.sovcombank.ru": [21914], "mntl.org": [2024], "*.radioleaks.se": [13579], "serviceshop.asus.com": [417], "emmrkt.it": [2024], "vpol.stanford.edu": [15448], "dms.khabarovskadm.ru": [20708], "mpuls-demo.intevation.de": [8293], "www.planningconsult.rbkc.gov.uk": [21595], "elearning.un.org": [17057], "imap.schmidtcom.de": [14419], "domanhanteraren.iis.se": [7746], "www.viaverio.com": [17747], "10.vgc.no": [17569], "*.insinuator.net": [8174], "nleu.megabus.com": [10244], "keys.aclufl.org": [297], "jupiter.ysu.edu": [18832], "infra44.smartadserver.com": [15049], "s3.fightforthefuture.org": [5770], "pythondoc.duapp.com": [19902], "112.krskstate.ru": [20757], "login.mobileapptracking.com": [21002], "nfs9.cn": [2024], "redmine.openinfosecfoundation.org": [12048], "dtvp.de": [19900], "b.hontolab.org": [2024], "cdn.hackaday.io": [7127], "www.workzonesafety.org": [22616], "www.xchange.is": [22646], "images.highspeedbackbone.net": [14272], "oas.irex.org": [20579], "p.gr-assets.com": [6861], "evilsocket.net": [20042], "eftri.ps": [2024], "vdogr.am": [2024], "www.abdn.ac.uk": [463], "lbapps.ust.hk": [22412], "subscriptions.wired.com": [18454], "carters.com": [2878], "careers.nature.org": [11141], "api.amediateka.ru": [19186], "printmgmt1.data.slu.se": [14195], "h.javidnia.com": [2024], "s.rasoulj.ir": [2024], "unyq.co": [2024], "mpls.illuminateed.com": [20494], "thul.in": [2024], "opendata.afnic.fr": [340], "liquidmatrix.org": [9459], "portal.manjushri.alibaba.com": [857], "gamigo.com": [6426], "wiki.openwrt.org": [12025], "selecta-hetz.update.ideco.ru": [20480], "provider2.anthem.com": [19206], "www.hnonline.sk": [7445], "jeg.cc": [2024], "bayfiles.net": [1724], "gener.is": [2024], "press.unian.ua": [22369], "m.moodys.com": [21020], "stnr.co": [2024], "s.zainzafar.com": [2024], "support.skysql.com": [14991], "stmbts.com": [2024], "go.tmn.com.au": [2024], "gettag.mobi": [6589], "dback.co": [2024], "tech.lds.org": [16293], "blog.songkick.com": [21900], "corts.hq.nasa.gov": [10909], "www.snort.org": [15106], "stockcharts.com": [15545], "eresearch.osu.edu": [11797], "go.fox61.com": [2024], "bikinadm.khabkrai.ru": [20709], "hyec.jp": [2024], "2.sendvid.com": [14646], "jltorrent.com": [22174], "adserver.cxad.cxense.com": [2709], "mrmcd.net": [9800], "movietickets.com": [10678], "customer.xfinity.com": [22650], "685.jp": [2024], "*.gullipics.com": [20322], "envfl.org": [2024], "l.stian.info": [2024], "lfhck.nl": [2024], "www.mobil.teltarif.de": [16173], "www.simonswain.com": [14880], "warthunder.ru": [22530], "ku.starfishsolutions.com": [21977], "go.youthop.com": [2024], "www.katasterportal.sk": [15037], "www.computerbasedmath.org": [3541], "fedex.com": [5697], "supplyframe.com": [15703], "bwortman.us": [2024], "b.exaktop.tk": [2024], "vicki.im": [2024], "team.devbridge.com": [19819], "timeanddate.com": [16536], "atqp.ac": [2024], "s.porters.jp": [2024], "widgets.outbrain.com": [12182], "m.outlook.com": [12185], "secure.mythic-beasts.com": [10891], "objects.readcube.com": [13666], "stats.scooter-attack.com": [14452], "suppliers.oracle.com": [12116], "analytics.stanford.edu": [15448], "dth.xyz": [2024], "sp.law.georgetown.edu": [6531], "omskaya-obl.beeline.ru": [1778], "n-2.org": [10894], "iw0.in": [2024], "support.emssoftware.com": [19990], "*.projectplace.com": [13189], "kzlnk.co": [2024], "globaleducation.georgetown.edu": [6531], "br1.me": [2024], "www.wijchen.nl": [11172], "www.cybercamp.es": [3951], "cardshopnwf.org": [11126], "www.jako-o.eu": [8506], "medfacilities.stanford.edu": [15447], "pq.oxfordjournals.org": [12222], "o6.hitravel.xyz": [2024], "tnne.ws": [2024], "achei.ca": [2024], "wk3.org": [18481], "mvoce.com": [2024], "shaoshan.jd.com": [8434], "www.waste.org": [18092], "hangul.istockphoto.com": [20595], "bracknell.firmstep.com": [20109], "dkoch.me": [2024], "www.kenexapods.com": [8863], "rackspace.co.uk": [13559], "edileehobby.ch": [3647], "login.evergage.com": [5438], "pangea.stanford.edu": [15448], "www.tv.gsn.com": [6394], "neuraldevelopment.biomedcentral.com": [1931], "www.elotouchexpress.com": [5169], "auth.ted.com": [15871], "enfi.dict.cc": [4442], "depl.dict.cc": [4442], "nspr.click": [2024], "forum.ovh.us": [11724], "deviceids-meds-id3.wdr.de": [18113], "*.support.avast.com": [1469], "dew.yt": [2024], "radiant.gs": [2024], "ntop.org": [11595], "support.unity3d.com": [17310], "aeddo.thomsonreuters.com": [16456], "linguee.es": [9390], "vtbrussia.ru": [17602], "cdn.slidesharecdn.com": [15029], "digiday.com": [4464], "executiveboard.unfpa.org": [17062], "www.portadi.com": [12980], "services.mobile.de": [21001], "tor.stalkr.net": [15437], "ajci.co": [2024], "www.sccsheriff.org": [14401], "r-eqx.sascdn.com": [15049], "secure.unicefusa.org": [17070], "www.go.cd": [20273], "xiangxiguan.jd.com": [8434], "paragu.ai": [2024], "ai.yimg.jp": [18778], "dna-bucket-dna.cf.rawcdn.com": [4480], "biopt.co": [2024], "ttld.ca": [2024], "asean.thenewslens.com": [16302], "*.appthemes.com": [1140], "direct.gov.uk": [4519], "15a20.mx": [2024], "www.nordnet.se": [11516], "worldrad.io": [2024], "sc5.rgstatic.net": [13481], "partners.x-cart.com": [18583], "shop.planeta.ru": [21431], "www.autoblog.com": [1447], "www.ubuntu-mate.boutique": [17179], "idp.brunel.ac.uk": [19459], "veloplus.ch": [22437], "nav.gov.hu": [10912], "www.eat.ch": [4860], "www.active-srv02.de": [549], "ewn.me": [2024], "openxchange.stanford.edu": [15448], "ehr.104.com.tw": [18], "rhone.link": [2024], "iwata777.com": [2024], "the23.co": [2024], "systemcenteradviser.com": [15825], "e16.xhamsterpremiumpass.com": [18607], "shelf.frictionalgames.com": [6189], "www5.plymouth.ac.uk": [12873], "itsc.umd.edu": [17351], "hackpad.com": [7145], "spenden.correctiv.org": [3686], "www.whyblockme.info": [3536], "gruvi.galpon.org": [20198], "go.dhakatim.es": [2024], "go.115.com": [28], "m6d.com": [10163], "nbt.cc": [2024], "u.softbank.jp": [2024], "imhd.sk": [8004], "ohsb.org": [2024], "39dollarglasses.com": [158], "passport-ckicheck.yandex.com.tr": [18740], "thephoenixbay.com": [22174], "gyma.es": [2024], "asset-6.soup.io": [15235], "lttng.org": [9119], "developer.staging.yammer.com": [18738], "paste.flashrom.org": [5884], "www.czechorchidsociety.org": [19750], "u2fa.nl": [2024], "m.cash.ch": [19522], "*.store1.mentor.com": [10284], "sxdr.es": [2024], "baum.anadolu.edu.tr": [1029], "nodpi.org": [11474], "link.ccso.us": [2024], "inkfeet.in": [2024], "www.deaconess.com": [4237], "r24626558.sync.app.asana.com": [1265], "nastoyaschie.friday.ru": [20175], "url.mayanot.edu": [2024], "jobsco.re": [2024], "dprivacyd.info": [2024], "0rbt.us": [2024], "www.crowdin.net": [3824], "l.tiks.be": [2024], "izak.cc": [2024], "kdot.it": [2024], "spin.vision": [2024], "ticketportal.sk": [16497], "*.worldofwarplanes.ru": [18552], "www.saisobserver.org": [21718], "meteo.search.ch": [14504], "jobandtalent.com": [22630], "stepone.co": [2024], "11w.rs": [2024], "omgv.io": [2024], "e180.co": [2024], "*.industrybrains.com": [9993], "filehoot.com": [5777], "s.cctv.net": [2024], "confluence.cms.gov": [19630], "aweirdimagination.net": [445], "acrobatusers.com": [537], "projectplace.*.dimelo.com": [13189], "sauth.webtrends.com": [18264], "webmail.vodafone.co.nz": [17899], "www.globalhumanrights.org": [6707], "survey.cancerresearchuk.org": [19501], "assets1.redbubble.net": [13721], "bn.by": [19416], "staff.aist.go.jp": [802], "tpc.com": [15914], "nylscar.es": [2024], "iceland.usembassy.gov": [22406], "*.tinypass.com": [16564], "images.ichkoche.at": [7916], "bertfeeds.us": [2024], "www.funoverip.net": [20188], "askkim.net": [2024], "www.servers.ru": [21788], "www.elec.ru": [19976], "lp.chartbeat.com": [3024], "goto.wiqi.ml": [2024], "hajj.is": [2024], "chopo.intecca.uned.es": [17248], "www.drive.ru": [19897], "riscosopen.org": [13955], "at.icecat.biz": [7912], "spb.li": [2024], "on.tpt.org": [2024], "attic-backup.org": [1365], "payment.bl.uk": [2358], "assets.patriotpost.com": [16377], "media.weibo.cn": [18277], "develop.backendless.com": [19299], "tracking.verisign.com.tw": [17712], "virtualizationreview.com": [17841], "hostingas.lt": [7542], "ads3.contentabc.com": [3614], "y.qq.com": [13329], "www.nfadmin.net": [10946], "s.gob.cl": [2024], "www.thalasseo.com": [16241], "adamboalt.wpengine.netdna-cdn.com": [1562], "awmedia.ga": [2024], "db.coin.space": [19642], "zz.connextra.com": [3588], "iren.es": [2024], "m.metta.me": [2024], "store.cultofmac.com": [3909], "admx.co": [2024], "send.atechmedia.com": [427], "lms.resus.org.uk": [13877], "admin.publons.com": [21538], "cache.addthis.com": [626], "undrwr.expert": [2024], "i3.answers.microsoft.com": [10396], "dibbley.mysql.cesky-hosting.cz": [19553], "familie.rps.aok.de": [376], "gum.run": [2024], "arch.savannah.gnu.org": [6337], "uploaded.to": [3945], "dccook.com": [2024], "princesstra.de": [2024], "cbstr.fr": [2024], "ebroder.net": [5032], "portrait7.sinaimg.cn": [14910], "hwp.to": [2024], "oaa.osu.edu": [11797], "prih.de": [2024], "www.study.monash": [15610], "l.sean.taipei": [2024], "jobs.carecareers.com.au": [2851], "status.scrutinizer-ci.com": [21759], "w28.naukri.com": [11146], "cjb.me": [2024], "on.reveal.co.uk": [2024], "ctf.isis.poly.edu": [12933], "www.ttl.ut.ee": [17148], "jloft.us": [2024], "evcon.me": [2024], "codeofhonor.com": [3342], "links.auza.net": [2024], "macular.org": [9851], "zndr.co": [2024], "www.bayfiles.net": [1724], "associados.amazon.com.br": [19172], "untied.cr.yp.to": [3745], "cjb.mx": [2024], "bitva-rieltorov.friday.ru": [20175], "origin.myfonts.net": [10805], "acumati.ca": [2024], "wtsdc.electoralcommission.org.uk": [5136], "spatialbuzz.com": [15301], "boarnsterhim.nl": [11172], "secure.eloqua.com": [5172], "wikihub-new.berkeley.edu": [17329], "jb.gs": [2024], "www.three.ie": [16471], "britsc.nl": [2024], "bob131.so": [2187], "s.uicdn.com": [17031], "readit.youmail.com": [18797], "lta.reuters.com": [13893], "z.imjim.im": [2024], "www.j.mp": [8421], "s.rded.nl": [2024], "bcpost.me": [2024], "a315.co": [2024], "luez.tk": [3536], "microent.us": [2024], "tyne.cc": [2024], "bkssl.bdimg.com": [1747], "seth.uk": [2024], "www.goemerchant.com": [6758], "hao.360.cn": [142], "jvjn.es": [2024], "servlet.it.liu.se": [9097], "www.goodsearch.com": [6814], "imgflip.com": [7998], "demo.op5.com": [11938], "open-image.nosdn.127.net": [41], "enga.tocco.ch": [16600], "chita.ru": [19583], "www.thetruthaboutguns.com": [22191], "fam.state.gov": [17146], "twittercommunity.com": [16966], "media.admtyumen.ru": [19082], "m.airbnb.ca": [793], "www.labp.htwk-leipzig.de": [7596], "osprey.golf": [2024], "img.pornhub.com": [12972], "avatar-ssl.xboxlive.com": [18640], "climate.wwf.ch": [18028], "www.cusp.com": [15916], "bgvideos.net": [2024], "projects.cca.edu": [2547], "eatre.al": [2024], "www.putlocker.is": [21543], "mail01.ndc.nasa.gov": [10909], "www.goldenline.pl": [6799], "snaps.opendesktop.org": [21266], "bury.gov.uk": [19476], "commons.georgetown.edu": [6531], "payments.ebay.com.*": [4866], "fsquid.co": [2024], "chita.tpprf.ru": [22260], "*.blogspot.lu": [2127], "*.blogspot.lt": [2127], "*.blogspot.li": [2127], "havering.gov.uk": [7236], "x.dlink.eu": [2024], "intrn.eu": [2024], "zetel.de": [18950], "csod.info": [2024], "www.deimos.fr": [4301], "signup.salesmedia.pl": [21720], "cap.af": [2024], "s.kabam.com": [2024], "sri.pw": [2024], "www.mipay.com": [10473], "pl.piwik.org": [12768], "go.ermrk.it": [2024], "www.safetythermometer.nhs.uk": [10953], "cruci.al": [2024], "gerrit.tocco.ch": [16600], "federation.hugoboss.com": [7608], "m.16163.com": [48], "odir.org": [12040], "etrans.energy.gov": [5243], "sphotos-b.ak.fbcdn.net": [5689], "a.bsn.io": [2024], "flaschenpost.piratenpartei.de": [12755], "winsso-prd.sm.bankofamerica.com": [1669], "e2k.us": [2024], "hamppu.net": [7171], "www.mediastore.portsmouth.gov.uk": [21467], "myaccount.gcion.com": [6286], "1afcu.com": [2024], "cjt.link": [2024], "l3m.me": [2024], "static.stubhub.de": [15602], "cis.rit.edu": [13493], "tpb.accountant": [22259], "ntlds.variomedia.de": [17658], "nysk.mediekompaniet.com": [10208], "connect.gov": [3582], "cdn06.boxcdn.net": [2271], "w.watu.co.za": [2024], "meta.discourse.org": [4534], "counter.goingup.com": [6793], "hivoice-ot.hivos.org": [7436], "wctheat.re": [2024], "www.hak5.org": [7156, 7157], "on.smm.nyc": [2024], "shoef.ly": [2024], "remote.derby.gov.uk": [4367], "static.nytimes.com": [11041], "wallet.btcchina.com": [1581], "resrc.it": [13659], "nenets-ao.auto.ru": [19276], "banners.ero-advertising.com": [5335], "*.adelaide.edu.au": [634], "sotech.me": [2024], "zidisha.org": [18957], "img4.cache.netease.com": [11228], "uat.eceemarketplace.equinix.com": [5322], "www.serverstack.com": [14670], "rca.org": [13461], "scfbm.biomedcentral.com": [1931], "islandrcrds.com": [2024], "eexpats.com": [2024], "numbersusa.com": [11617], "club.volia.com": [17917], "hclsha.re": [2024], "trademoremargin.com": [16710], "chrome64.com": [2024], "www.siteimprove.com": [14947], "twa.lt": [2024], "activision.com": [556], "donate.unicef.org": [17069], "typepad.com": [16985], "wiki.sch.bme.hu": [1556], "rus-eg.tpprf.ru": [22260], "crukip.cancerresearchuk.org": [19501], "ingre.in": [2024], "www1.arun.gov.uk": [19243, 19244], "cdimage.raspbian.org": [13630], "tripletex.no": [22293], "davidwalsh.name": [19772], "fr-fr.facebook.com": [5609], "ondove.co": [2024], "developer.jivesoftware.com": [8598], "nakhodka.startsmile.ru": [21980], "www.uow.edu.au": [17434], "cas.cca.edu": [2547], "womanon.co": [2024], "static.zend.com": [18920], "pcblink.be": [2024], "img.afisha.ru": [19107], "zoom.li": [2024], "devices.get.no": [20237], "pmon.co": [2024], "rec-2-7.webcaster.pro": [22542], "hosting.unimatrix.si": [22371, 22372], "r24617847.sync.app.asana.com": [1265], "www.filecrypt.cc": [20090], "shop.computerbild.de": [19660], "codex.bbpress.org": [1740], "mozillastatus.statushub.io": [15504], "weatherspark.com": [18131], "lists.eduroam.org": [5089], "3rdbell.co": [2024], "e.seosport.com": [2024], "iedra.uned.es": [17248], "www.smart-soft.ru": [21864], "mediaspanonline.com": [10175], "www.acuityplatform.com": [559], "ombudsmanbiz.nso.ru": [21192], "static.ctctcdn.com": [3896], "productforums.google.com": [6818], "farmer.migros.ch": [10417], "vxstream-sandbox.com": [17975], "l.doqk.ml": [2024], "dataplus.jcloud.com": [8555], "frnk.me": [2024], "forum.opengarden.com": [12043], "klimaat.groenlinks.nl": [6942], "su.hk-inc.dk": [2024], "kindlepreview.amazon.co.jp": [19169], "blnr.co": [2024], "tr.functions-online.com": [20187], "mobil.immobilienscout24.de": [8008], "mzgo.co": [2024], "my.a2hosting.com": [266], "dynamitedeals.com": [4824], "service.t-mobile.nl": [15836], "flash.desy.de": [4386], "www.classymotherfucker.com": [3220], "fndly.me": [2024], "cartoons.osu.edu": [11797], "suivi.openstreetmap.fr": [12079], "beta.mcafee.com": [10129], "*.americancensorship.org": [5769], "s.nett00n.org": [2024], "scienceporn.co": [2024], "g.dbands.com.br": [2024], "28th.play-asia.com": [12828], "myua.co": [2024], "www.rackspace.com.hk": [13562], "www.stshrt.com": [15418], "portal.ct.gov": [2695], "aalbc.it": [2024], "f-secure.com": [5533], "apps.asana.com": [1265], "developer.akamai.com": [806], "forum.ovh.nl": [12205], "bxhd.me": [2024], "www.bmvi.de": [19415], "health.knowledgeblog.org": [8961], "www.nominatefellow.acs.org": [974], "media.cmcdn.net": [3323], "promotedstories.com": [19855], "ksawyer.me": [2024], "1ce.co": [2024], "es.my.t-mobile.com": [15837], "io.swisscom.ch": [15761], "ftw.ms": [2024], "i2.code.msdn.s-msft.com": [14114], "bsi.bund.de": [5701], "wap.amap.com": [19166], "we.bz": [2024], "the-fca.org.uk": [16266], "bbcnewsupload.streamuk.com": [22008], "www.ri.gov": [21648], "nicrugman.co.uk": [2024], "cc1.dealer.com": [4245], "go.flameman.pl": [2024], "influ.co": [2024], "*.getshine.com": [6588], "api.islamhouse.com": [8368], "aclu-nm.org": [305], "www.stopwatching.us": [15555], "trustedshops.co.uk": [16858], "legiao.me": [2024], "bbs3.play-asia.com": [12828], "api.snssdk.com": [21884], "images.domofond.ru": [19876], "ohda.mn": [2024], "fairphone.com": [5625], "fonts.googleapis.com": [6823], "hxcc.secureserver.net": [14574], "webmail.server1.firstfind.nl": [18827], "ajilon.co": [2024], "video13.0xdb.org": [10], "cflt.io": [2024], "pictorial.jezebel.com": [8578], "webonic.hu": [18229], "redbubble.com": [13721], "bykr.us": [2024], "b4db0y.ml": [2024], "*.content.ad": [3612], "fruct.org": [5585], "us.norton.com": [11545], "www.sub.fm": [22020], "kettering-consult.objective.co.uk": [21225], "*.buyboard.com": [2483], "mn4.us": [2024], "a.nabble.nl": [2024], "bocasucia.com": [2024], "imports.theses.fr": [22186], "tickets.sueddeutsche.de": [15643], "pefonline.electoralcommission.org.uk": [5136], "athena.dialup.mit.edu": [9763], "img.icefilms.info": [7909], "thepiratebay.unblocked.date": [21524], "*.cdn.yottos.com": [22686], "tigh.co": [2024], "www.gotomeeting.com": [6769], "bercsenyi.bme.hu": [1556], "pace.com": [12339], "humanityplus.org": [7618], "anpost.ie": [1028], "shibboleth.main.ad.rit.edu": [13493], "csoa15gatxs.squat.net": [21955], "agsol.ca": [2024], "ems.calderdale.gov.uk": [2752], "tcwld.me": [2024], "ucc.unizar.es": [17441], "js.icony.com": [7923], "on.maptia.com": [2024], "khakasiya.beeline.ru": [1778], "alphaville-cdn.ft.com": [5810], "bravo.ly": [2024], "r24823147.sync.app.asana.com": [1265], "nhhotel.to": [2024], "evilh.at": [2024], "viewsourceconf.org": [22465], "i.learnict.it": [2024], "www.zuno.sk": [18862], "fitcult.refresher.cz": [13781], "www.active24.pl": [19066], "entropywave.com": [5288], "www.darjeelin.fr": [4141], "serpuhov.europaplus.ru": [20034], "hireolo.gy": [2024], "gau.lt": [2024], "news.genius.com": [20226], "slides.google.com": [6818], "zh.boardgamearena.com": [2182], "deb.bitmask.net": [2027], "on.cbr.cc": [2024], "myxml.is": [2024], "primar.sme.sk": [14198], "help.cbp.gov": [2537], "sseeventsgroup.com": [14238], "www.dcerpc.org": [19779], "www.med.uio.no": [17414], "www.schneierfacts.com": [21744], "preney.ca": [13075], "www.rightmove.co.uk": [13942], "t.cozy.co": [2024], "toplink.weforum.org": [17994], "vodafone.sky.de": [14990], "cimbclicks.com.my": [2618], "prop.cc": [2024], "supplierportal.sandia.gov": [14341], "www.nrahq.org.org": [21181], "datadirect.com": [4172], "recruiting.piazza.com": [12690], "pastebin.sabayon.org": [14275], "www.supportion.org": [15705], "wantful.com": [18070], "doc.owncloud.org": [12215], "sns.ibtimes.co.uk": [7681], "go.bppl.us": [2024], "myportableworld.com": [10857], "imgt1.bdstatic.com": [19339], "askbr.in": [2024], "lincs.fr": [9093], "mmm.ms": [2024], "codewidget.welt.de": [18290], "www.justseed.it": [20673], "l.pggaming.pw": [2024], "community.thefoundry.co.uk": [16354], "home.vinilox.eu": [17809], "my.ispsystem.com": [7837], "social.truelife.com": [16842], "iplocation.zoho.com": [18984], "uvip.xiaomi.cn": [18661], "cseed.it": [2024], "*.cloudswitch.com": [3294], "map.hilton.com": [2024], "www.ske.admin.ch": [22061], "u.insite.co.jp": [2024], "wap.qiwi.com": [13352], "xm.com": [18611], "www.defectivebydesign.org": [4290], "security.google.com": [6818], "wiki.hackerspaces.org": [7138], "on.disalvo.ro": [2024], "www.slashbits.com": [15011], "vle.cam.ac.uk": [17332], "tsl.state.tx.us": [16226], "heroup.com": [7330], "apnic.net": [1280], "meh.bz": [2024], "license.drweb.com": [4776], "www.zenimaxonline.com": [18928], "*.reelstatic.com": [13768], "www.slashdot.org": [15012], "*.identi.ca": [7938], "oied.ncsu.edu": [11531], "assets.nflxext.com": [11269], "reboot.vas-hosting.cz": [22428], "www.btczone.com": [1588], "portal.nccgroup.com": [10921], "www.cryptorave.org": [3856], "polls.newsvine.com": [11390], "hols.me": [2024], "i1.chaucanh.net": [2024], "got.vote": [2024], "events.bc.edu": [1527], "www.raam.org": [13547], "cert.gov.uk": [2591], "nieuws.asnbank.nl": [411], "www.vendosupport.com": [17694], "click.a-ads.com": [260], "congress.gov": [3578], "havn.me": [2024], "link.dvj.me.uk": [2024], "singlehop.com": [14914], "v.gd": [22419], "appmc.hn": [2024], "billetnet.dk": [16495], "sinus.citilink.ru": [19594], "qf-cafmpreprod.qf.org.qa": [21557], "cmcenroe.me": [3324], "eup-network.de": [5386], "lnxtb.lt": [2024], "ovp.vc": [2024], "on.gmti.com": [2024], "dccps.nci.nih.gov": [11090], "*.cognesia.net": [3386], "www.searsecommercejobs.com": [14510], "www.edfringe.com": [19954], "dashboard.gravity.com": [6884], "onair.rs": [2024], "kentsexualhealth.nhs.uk": [10953], "n.openn.eu": [2024], "rwrdn.im": [2024], "st.dizzcloud.com": [4579], "app.datadoghq.com": [4193], "*.santanderbillpayment.co.uk": [14355], "preprod.fr.hispeed.ch": [22386], "usht.biz": [2024], "8.ftcirc.us": [2024], "gewo.ga": [2024], "ictp.uk": [2024], "lilymea.de": [2024], "a360.co": [2024], "orgs.law.harvard.edu": [7211], "cdn.derkeiler.com": [4366], "faryne.at": [2024], "4.integraid.org": [2024], "www.script-o-rama.com": [4752], "g02.a.alicdn.com": [853], "thumbnails-tv.adobe.com": [669], "www.distributed.net": [4564], "www.1984hosting.com": [59], "col.stb01.s-msn.com": [14115], "cspree.com": [2024], "dn-coding-net-production-file.qbox.me": [13344], "www.onlineshop.cz": [21257], "drewjon.es": [2024], "sirportly.com": [14925], "www.esrb.org": [4956], "www.bazzapp.com": [1739], "sltn.jp": [2024], "blue.ag": [2024], "ads.genieessp.com": [20225], "helink.co": [2024], "support.addthis.com": [626], "selfridges.com": [14629], "www.html5rocks.com": [7098], "hgreen.me": [2024], "getjaco.com": [6590], "nandemow.com": [2024], "secure.ww2.autoscout24.de": [1458], "security.mail.ru": [9891], "www.hamradio.fe.linux.it": [9419], "suma.stanford.edu": [15447], "portable.lastpass.com": [9175], "blog.gradescope.com": [6866], "graduateapp.ucsd.edu": [17012], "pbj.im": [2024], "www.aviationweather.gov": [19285], "cf1.vuze.com": [17972], "d.mfcimg.com": [20972], "suspiciousumbrella.uk": [22045], "fr.duo.com": [4797], "scripts.liftshare.com": [9351], "sozialvertraeglicher-klimaschutz.adelphi.de": [635], "bobbuzz.me.uk": [2024], "e11.xhamsterpremiumpass.com": [18607], "img-seeker.newjobs.com": [11358], "*.cloudset.net": [3314], "kremlinpress.ru": [20756], "www.mall.sk": [9934], "ukfast.co.uk": [17043], "u.sooth.it": [2024], "family.georgetown.edu": [6531], "solidarity-us.org": [15191], "*.newtalk.tw": [21131], "www.our-work.com.tw": [21312], "webmail.sigxcpu.org": [14846], "frack.nl": [6072], "wallet.baidu.com": [1641], "oqp.al-quran.info": [817], "siim.ut.ee": [17148], "mypay.thewarehouse.co.nz": [16425], "jobs.hostdime.com": [7518], "video33.0xdb.org": [10], "local.amazon.com": [960], "miodr.eu": [2024], "auth.adfox.ru": [578], "tmp-uat-marketpricer.imercer.com": [20502], "biopharmadealmakers.nature.com": [11140], "colocationamerica.com": [3435], "www.messenger.com": [10316], "kerrys.pub": [2024], "s.gzhls.at": [13071], "mikeconley.ca": [10421], "vnbc.me": [2024], "mapquest.com": [9979], "slag.me": [2024], "onest.mp": [2024], "www.60plus.vcd.org": [17560], "www.smyl.es": [14204], "case.104.com.tw": [18], "athena.krystal.co.uk": [9037], "www.fapmc.ru": [5542], "modu-narodu.friday.ru": [20175], "entdecke.boell.de": [2192], "hlma.math.cuhk.edu.hk": [2704], "sidefx.co": [2024], "*.apply.business.hsbc.co.uk": [20422], "library.cwi.nl": [2967], "gpco.biz": [2024], "acp.planningportal.gov.uk": [21435], "ambcentral.org": [2024], "djoserjunior.nl": [7461], "srfm.link": [2024], "different.money": [2024], "speedtest.sknt.ru": [21851], "legal.yandex.com.tr": [18740], "*.sail-horizon.com": [14303], "deliveras.gr": [4314], "www.ericrafaloff.com": [20012], "shared.doc.ispsystem.ru": [20591], "nanraionadm.khabkrai.ru": [20709], "redmine.honeynet.org": [20401], "www.mastercard.us": [20930], "president.stanford.edu": [15448], "www.technische-aufklaerung.de": [16103], "www.whitehousehistory.org": [22580], "secure2.datinglab.net": [19770], "jp.nzk.club": [2024], "static8.businessinsider.com": [2471], "blog.pirate-party.us": [21414], "gallery.dditscdn.com": [4228], "www.dft.gov.uk": [19825], "developer.buttercoin.com": [2479], "fast.wistia.net": [18466], "europe-miniatures.com": [5413], "rpgi.co": [2024], "*.attracta.com": [1368], "it.civilservice.gov.uk": [19601], "icp-pgh.org": [8376], "git.sysmocom.de": [15821], "www.dongenergy.dk": [4068], "nc3.to": [2024], "sean.wongs.link": [2024], "asgard.paragonie.com": [12417], "nifc.gov": [10964], "baoding.jd.com": [8434], "www.hugendubel.info": [20445], "domainer.ru": [19870], "fsfla.org": [5593], "xetum.com": [18657], "www.ludwig.ox.ac.uk": [17359], "get-digital.es": [6546], "aalv.in": [2024], "*.inwx.at": [8230], "bloggar.aftonbladet.se": [759], "cvh.md": [2024], "registermypassword.dfs.un.org": [17057], "t8.qlogo.cn": [13355], "ager.ch": [2024], "isohunt.com": [8386], "cloud.scoding.de": [21753], "blog.twkn.org": [2024], "dragonflybsd.status.io": [21983], "bees.fyi": [2024], "simplesamlphp.org": [21831], "sta.36krcnd.com": [154], "mobib.nl": [2024], "blackboard.brunel.ac.uk": [19459], "roge.rs": [2024], "learning.rethink.org": [21637], "holidaytrex.me": [2024], "gitt.im": [2024], "www.guidebook.com": [6991], "316space.com": [2144], "hmex.ch": [2024], "cdn.unet.by": [22367], "99des.co": [2024], "clikth.ru": [2024], "search.radioplayer.co.uk": [13581], "tree.sci-hub.io": [14436], "go.sparkie.ws": [2024], "trinityfi.org": [16813], "events.stanford.edu": [15448], "www.szepkartya.kh.hu": [8739], "s.fnb.cc": [2024], "bournemouth.gov.uk": [2268], "terrapass.com": [16198], "g.enterknow.com": [2024], "bradli.tk": [2024], "www.sustrans.org.uk": [22046], "*.telework.gov.au": [16163], "convertexperiments.com": [19679], "zion.ionitcom.ru": [20562], "pnpts.me": [2024], "help.apiary.io": [19213], "boerse-frankfurt.de": [2193], "directory.warwickshire.gov.uk": [22532], "sdln.es": [2024], "aka-cdn.adtechus.com": [692], "c9.aztravel.xyz": [2024], "ynot.gigantic.com": [6633], "edmsho.ws": [2024], "www.uberads.com": [17166], "mynaweb.com": [10881], "antitheft.norton.com": [11545], "map.gl.wupper.freifunk-rheinland.net": [20171], "noticias.walmart.com": [18059], "leg.ac": [2024], "www.prisma-it.com": [13124], "t.uece.br": [2024], "washington.edu": [17376], "sabbagh.be": [2024], "si3.twimg.com": [16949], "m-s-photo.com": [2024], "www.sug.htwk-leipzig.de": [7596], "www.lawnandlandscape.com": [9192], "cruzp.ch": [2024], "www.inventivedesigners.com": [8309], "ai.pricegrabber.com": [13099], "freu.megabus.com": [10244], "www.zaks.ru": [22705], "resume.jeffreifman.com": [8562], "l.don-f.com": [2024], "www.cuusoo.com": [3939], "cdn.sploder.com": [15353], "ca.vas-hosting.cz": [22428], "*.cduniverse.ws": [2581], "dmoruzzi.com": [4043], "www.reason.com": [13696], "static-2.rosminzdrav.ru": [21674], "accio.me": [2024], "scientificlinux.org": [14448], "www.opentransfer.com": [12083], "1sd.co": [2024], "svidanie-so-zvezdoy.friday.ru": [20175], "podupti.me": [12884], "ccc-ch.ch": [19527], "*.nhmrc.gov.au": [11108], "*.cox.net": [3736], "designcentersearch.com": [3554], "wunderground.com": [18128], "dlang.org": [19852], "news.cointrader.net": [3411], "themler.com": [16414], "on.news.me": [2024], "on.defe.ro": [2024], "ipv6.backpack.tf": [1624], "nalchik.rt.ru": [13529], "mywot.com": [10841], "vpn.ashampoo.com": [1273], "i.refresher.sk": [13781], "r.tcpipweb.com": [2024], "110.360.cn": [142], "publishers.esellerate.net": [5346], "jfarellm.us": [2024], "pda.pbo.belregion.ru": [19353], "deferpanic.com": [4296], "now.shimdi.com": [2024], "www.pizzacharts.com": [12785], "s.throwbacks.me": [2024], "ije.oxfordjournals.org": [12222], "www.beefree.io": [1774], "chris.417it.com": [2024], "www.getpopcorntime.org": [21461], "mitei-members.mit.edu": [9763], "www.roc-noc.com": [13984], "fb.zwilling.jp": [2024], "raikl.in": [2024], "typeface.nytimes.com": [11041], "eventim.*": [5433], "lynda.cca.edu": [2547], "kentuckyonehealth.org": [8870], "*.totalhostingplus.com": [16676], "forum.ramhost.us": [13455], "vetmed.illinois.edu": [17346], "www.publications.cabinetoffice.gov.uk": [2716], "profiles.petfinder.com": [12626], "bdgds.co": [2024], "www.guadec.org": [6373], "cybyt.cf": [2024], "arnedo.tv": [2024], "esg.im": [2024], "www.hizlisaat.com": [7437], "www.torrentz.ht": [22249], "azerbaijan.kavkaz-uzel.ru": [20694], "www.adguard.com": [19077], "icedivx.com": [7908], "p2.xyx.hao123img.com": [20340], "capris.no": [657], "avlk.nl": [2024], "lkwdc.it": [2024], "innovations.cms.gov": [19630], "blog.newegg.com": [11356], "www.perfectmoney.is": [12594], "update.virtualbox.org": [17833], "media.148apps.com": [46], "alpenverein.de": [19159], "nsrc.io": [2024], "faq.gymglish.com": [7021], "api.temp-mail.ru": [16176], "isen.nu": [2024], "s.omnom.net": [2024], "www.hvidovrekajakklub.dk": [7641], "fnkits.fnal.gov": [5741], "www.dha.gov.au": [4292], "olympusthe.me": [2024], "www.brainpickings.org": [2286], "*.h5n.us": [7028], "1wpf.cc": [2024], "ip-projects.de": [7789], "www.peelregion.ca": [12543], "www.fifengine.de": [5563], "riversidepr.es": [2024], "pdf-tools.com": [21376], "eforms.gov.ie": [19966], "ad.tek.no": [16128], "yalutorovsk-mr.admtyumen.ru": [19082], "scm.symantec.com": [15780], "crazyegg.com": [3762], "fifa.to": [2024], "forum.disconnect.me": [4531], "v4p.us": [2024], "pravo.openrussia.org": [12077], "hook.io": [20405], "b.strikingly.com": [15592], "www.annalindhfoundation.org": [19202], "pugh.li": [2024], "systematicreviewsjournal.biomedcentral.com": [1931], "u.intenthq.com": [2024], "content.govdelivery.com": [6846], "tbtlr.co": [2024], "wits.worldcat.org": [18536], "*.mycontactual.com": [3611], "onlys.ky": [2024], "poweringthefuture.un.org": [17057], "www.cybersitter.com": [2710], "my.webtapestry.net": [1492], "gmsprt.com": [2024], "www.alchemistowl.org": [830], "www.draytek.com": [4741], "aucklandairport.co.nz": [1371], "k.fotobucht.net": [2024], "mobile.moodys.com": [21020], "service-access-data.web.cern.ch": [2588], "kb.gigaserver.cz": [14651], "fps.sportradar.com": [21945], "www.peliaika.fi": [6369], "familysearch.org": [5636], "askewsandholts.com": [19257], "bitcoin.co.id": [1992], "kptv.tv": [2024], "ohiobar.org": [11800], "ntrls.co": [2024], "www.justaguy.pw": [8713], "lte.mg2mobile.com": [10356], "clocks.yandex.com.ua": [18741], "www.politicaladarchive.org": [12916], "www.youtube.fr": [18800], "hh.gy": [2024], "*.juno.co.uk": [8701], "backoffice2.bookboon.com": [2213], "us.boell.org": [19422], "elco.in": [2024], "ips-portal.iperceptions.com": [20464], "hdp.org.tr": [7250], "mattf.co": [2024], "kannz.com": [20682], "www.jguitar.com": [8446], "www.de-centralize.com": [4230], "belai.ch": [2024], "bosfera.ru": [19430], "dev.elsevier.com": [5177], "old.honeynet.org": [20401], "sysadmin.kde.org": [8735], "12de.li": [2024], "autoact.mobile.de": [21001], "livechatinc.com": [9492], "gallop.nyc": [2024], "secure.altontowers.com": [942], "www.people.com": [12578], "pad.okfn.org": [12049], "uheblog.com": [2024], "es.calameo.com": [2747, 2748], "core.mtree.mycelium.com": [21063], "www.helpspot.com": [7305], "sky.mppglobal.com": [21036], "extintegration.x5.ru": [18590], "manage.chef.io": [3061], "www2.slac.stanford.edu": [15448], "islandesque.net": [2024], "gstatic.uptodown.com": [22396], "faxbigbrother.com": [5684], "tridium.com": [16808], "magnet.ie": [9878], "xpl.be": [2024], "*.sct.gov.au": [15689], "*.schwab.com": [14432], "listen.freetalklive.com": [20167], "forums.tweaktown.com": [16938], "rpmwe.st": [2024], "hao.qq.com": [13329], "stadtvonmorgen.vcd.org": [17560], "download.spotify.com": [15367], "www.888voip.com": [241], "secure.foodandwaterwatch.org": [5978], "magnet.is": [2024], "www.overdrive.com": [12192], "rugne.ws": [2024], "apollo3.ds.leeds.ac.uk": [17403], "pl.python.org": [13314], "playsi.no": [2024], "illuminateed.com": [20494], "www.primelocation.com": [21497], "members.webs.com": [18236, 18237], "godl.es": [2024], "devblog.geekfaeries.fr": [20219], "www.danhlode.com": [4133], "www.mate-desktop.org": [9727], "weathersafe.allianz.com": [19151], "bibbitec.com": [1869], "bevo.adsnative.com": [19091], "status.buttercoin.com": [2479], "bxbr.co": [2024], "caldy.me": [2024], "deichmann.com": [4300], "autodiscover.getech.leeds.ac.uk": [17403], "gradeup.cdnvideo.ru": [19536], "ogr.anadolu.edu.tr": [1029], "b.bhooshan.me": [2024], "ftp.ipchicken.com": [20567], "www.originstamp.org": [21291], "ohloh.com": [11803], "www.librarylicense.org": [9323], "www.superherostuff.com": [15696], "squatchsquad.co": [2024], "www.1and1.ca": [70], "www.afiestas.org": [749], "yarddigital.com": [18753], "wickedfiber.com": [18373], "www.binaryturf.com": [1920], "blog.pcbsd.org": [12247], "www.xvideosx.tv": [18627], "hqpower.eu": [17685], "issoe.co": [2024], "drivee.jp": [4759], "www.officiel-des-vacances.com": [11791], "tbu.gs": [2024], "www.afra-berlin.de": [341], "shop.novell.com": [11569], "www.icardnet.uillinois.edu": [17034], "deviceids-medt-id3.wdr.de": [18113], "aqua.lib.vt.edu": [17825], "your.hispeed.ch": [22386], "ehouse.studio": [2024], "ogcn.fr": [2024], "ansibleworks.com": [1094], "www.paodelicia.com": [12406], "lcsc.ga": [2024], "postmaster.outlook.com": [12185], "img.web.de": [18146], "lesgirofl.es": [2024], "pdfreaders.org": [12533], "cput.worldcat.org": [18536], "brainstorage.me": [2290], "decmech.com": [2024], "webadmin.endora.cz": [5237], "whcg.co": [2024], "blog.silentcircle.com": [14848], "mstnr.me": [2024], "nabchl.citilink.ru": [19594], "gkg.net": [6316], "giuliosnaas.just-eat.ie": [20671], "help.keenetic.net": [20701], "*.yelp.com.tr": [18766], "addison.vt.edu": [17825], "c2.q-assets.com": [21551], "refer.ly": [13774], "vocativ.com": [17898], "refer.lu": [2024], "go.bdrong.com": [2024], "tickets.chef.io": [3061], "learn.visiblebody.com": [17859], "assets.cookieconsent.silktide.com": [14859], "ocpa.us": [2024], "get.sfbuzz.com": [2024], "brabant.nl": [11172], "iniy.org": [20536], "vaka.me": [2024], "www.okturtles.org": [11811], "www.shellterproject.com": [14758], "corneredcat.com": [3677], "weblogin.stanford.edu": [15448], "mmkh.co": [2024], "postaonline.cz": [2981], "brdg.es": [2024], "escrow.aliexpress.com": [854], "www.oig.state.gov": [17146], "33u.link": [2024], "vanlanschot.nl": [17641], "ols.business.yahoo.co.jp": [18730], "asc.wustl.edu": [18089], "www.doublerobotics.com": [4706], "vpnreviewer.com": [17594], "wrms.catalyst.net.nz": [2905], "s.mcwm.co": [2024], "br.malwarebytes.com": [9940], "visitthecapitol.gov": [17864], "rikp.me": [2024], "slidesha.re": [2024], "fgbon.in": [2024], "votkinsk.startsmile.ru": [21980], "manual.pipni.cz": [12287], "www.dunkelangst.org": [4795], "forum.zen.co.uk": [18913], "oderland.se": [11761], "aberdeenshire.spydus.co.uk": [21952], "js.touclick.com": [16679], "*.www.mozdev.org": [10687], "data.bdip.org.uk": [19338], "isyvmon.com": [8397], "www.idr-biz.com": [9756], "elvira.link": [2024], "staging.extranet.nsidc.org": [11100], "catalysis.com": [2904], "www.auswaertiges-amt.de": [19274], "www.ukwebsolutionsdirect.co.uk": [17042], "my.tealiumiq.com": [16060], "www.piscatus.se": [12760], "dl.bayphoto.com": [1732], "pics.librarything.com": [9321], "scrp.io": [2024], "www.encoding.com": [5224], "go.haniezz.com": [2024], "www.a16z.com": [263], "proxy.uchicago.edu": [17334], "oncampus.csr.oberlin.edu": [11735], "25live-a.collegenet.com": [3428], "masterh8.adriver.ru": [588], "esifil.in": [2024], "dn-iyz-file.qbox.me": [13344], "form.mbank.com.pl": [9733], "www.gettyimages.com": [6604], "pubimg-weichouji.sina.com": [14905], "www.edigital.hu": [5520], "scmagazineus.com": [14386], "istobal.tk": [2024], "bnftest.tocco.ch": [16600], "mcintyr.es": [2024], "www.socialrank.co": [15124], "lolchat.cursecdn.com": [3927], "www.aeepcpul.asso.ulaval.ca": [17319], "springfr.ee": [2024], "s4recs.com": [2024], "www.safaribooksonline.com": [14284], "condor.udistrital.edu.co": [17195], "www.spacenews.com": [21919], "wpno.tk": [2024], "abookapart.com": [19042], "s3.ifengimg.com": [20487], "nerdster.org": [21106], "qualityagent.com": [13380], "xyk.cmbchina.com": [2639], "openhunt.co": [12046], "my.cimigo.com": [2024], "yodaberg.me": [2024], "esa.int": [5420], "www.solarpowerrocks.com": [15177], "s0.qhimg.com": [13347], "cat.oplk.com": [2024], "curiouser.work": [2024], "osh.li": [2024], "cdn01.gitter.im": [6666], "gmpg.io": [2024], "www.buch.de": [16244], "linkurious.icij.org": [7689], "www.handelsregister.de": [7176], "rockvalleycollege.edu": [13992], "ebusiness.voa.gov.uk": [22483], "cfsps.co": [2024], "refrm.me": [2024], "dzurl.info": [2024], "go.opie.at": [2024], "ask.linaro.org": [9377], "j.efdapps.com": [2024], "dignityindying.org.uk": [4501], "tdm.sh": [2024], "cph.im": [2024], "redirect.1und1.de": [91], "mogu.li": [2024], "dev.govdelivery.com": [6846], "www.biologie.ens.fr": [4922], "analytics.thevideo.me": [16318], "safety.georgetown.edu": [6531], "mymagnet.magnet.ie": [9878], "blogs.oucs.ox.ac.uk": [17359], "qidian.gtimg.com": [6975], "assets.wired.com": [18454], "on.roof.io": [2024], "sinvideo.adsrvr.org": [688], "fms.treas.gov": [17139], "tlcenter.wustl.edu": [18089], "invest.dha.gov.au": [4292], "m.ca-pca.fr": [2521], "search.cam.ac.uk": [17332], "play.freeciv.org": [6136], "www.skyscanner.pt": [15006], "dbbb.georgetown.edu": [6531], "support.burst.net": [2462], "wpengine.com": [18010], "bbgd.us": [2024], "giphy.com": [6646], "indabamusic.com": [8053], "lws-set.gsfc.nasa.gov": [10909], "screamqueens.co": [2024], "ftar.it": [2024], "mga.im": [2024], "www.riseofthevegan.com": [13958], "lists.osadl.org": [11701], "grt4.us": [2024], "support.wechat.com": [18116], "e4ward.com": [4858], "3dwa.de": [2024], "img.books.ch": [16244], "itaupy.co": [2024], "sco.li": [2024], "www.sgi.com": [14171], "r.sagaaz.org": [2024], "precr.af": [2024], "yulinguan.jd.com": [8434], "www.efk.admin.ch": [22061], "cics.osu.edu": [11797], "outft.us": [2024], "flatpak.opendesktop.org": [21266], "jt.india.com": [8065], "cdn4.gbot.me": [6791], "siwue.com": [2024], "nooch.co": [2024], "jankiz.1688.com": [51], "cbrogan.me": [2024], "forums.uberent.com": [17165], "buffs.me": [2024], "www.bluekrypt.com": [2146], "rbss.wirral.gov.uk": [18461], "mvastorage.microsoft.com": [10396], "murl.me": [2024], "*.ru.nl": [13570], "lbcomet.cern.ch": [2588], "vrid.nikkei.com": [11442], "vids4.me": [2024], "unnuetz.es": [2024], "www.greenparty.org": [6909], "*.mountsinai.org": [10659], "www.1010ez.med.va.gov": [17100], "ag.gov.au": [1367], "wcas.nu": [2024], "vrtv.nl": [2024], "img.xda-cdn.com": [22647], "unipega.so": [2024], "flagforms.org": [2024], "customercenter.wsj.com": [22625], "dre4mtv.cf": [2024], "idemo.bspb.ru": [2398], "origin.business.upc.cz": [17081], "store.litespeedtech.com": [9472], "www.123rf.com": [36], "wi.st": [2024], "chandz.li": [2024], "myaccount.qf.org.qa": [21557], "on.andfarr.me": [2024], "pcbooking.brent.gov.uk": [2324], "mxit.io": [2024], "media.upf.edu": [17471], "documentfoundation.org": [16295], "marcushenry.me": [2024], "goydn.com": [2024], "antoineb.com": [2024], "forum.vodafone.pt": [17903], "rney.co": [2024], "cp.active24.com": [19061], "km.support.apple.com": [1151], "mrtsh.in": [2024], "iq.intel.co.jp": [8208], "grvts.uk": [2024], "airs.com": [795], "tmofay.com": [2024], "library.york.edu": [18787], "support.madgex.com": [20904], "awp.pics": [2024], "lounge.qacafe.com": [21553], "mypages.aldi-mobile.ch": [357], "secured.ols.anthem.com": [19206], "institutodeidiomas.us.es": [17502], "open.dingtalk.com": [19842], "www.actionnetwork.org": [19057], "seedl.es": [2024], "ultrafacil.com.br": [17221], "online.statefarm.com": [15483], "*.printrbot.com": [13121], "jgalm.com": [2024], "www.postcodeanywhere.co.uk": [21469], "myfb.co": [2024], "myop.us": [2024], "www.bc.edu": [1528], "c.v.qq.com": [13329], "wwwwwwwwwwwwwwwwwwwwww.bitnik.org": [2033], "stage.mediamarkt.de": [20949], "p.tahutek.net": [2024], "onlineplanningregister.northyorks.gov.uk": [21161], "fsj.lu": [2024], "www.redditstatic.com": [13750], "asweb.stanford.edu": [15448], "www.biop.ox.ac.uk": [17359], "devconf.cz": [4403], "arq.st": [2024], "proxy.videoplaza.tv": [17785], "ads.mindfactory.de": [10448], "wiki.archlinux.fr": [1189], "stecyk.ca": [2024], "sitemanager.itunes.apple.com": [1151], "ss.phncdn.com": [12661], "collector.cint.com": [3153], "www.ticketsage.com": [15883], "csg.com": [2024], "api.auction.rakuten.co.jp": [13594], "twstr.hu": [2024], "s3.lbrcdn.net.s3-external-3.amazonaws.com": [9189], "808ne.ws": [2024], "ch-open.ch": [19554], "www.2k.com": [116], "support.callrail.com": [19493], "secure.claranetsoho.co.uk": [3213], "gamer.rocketbank.ru": [13994], "757live.co": [2024], "www-ssrl.slac.stanford.edu": [15449], "bmj.co": [2024], "modr.no": [2024], "growleadchange.wustl.edu": [18089], "ask.openmandriva.org": [11992], "nm.nu": [2024], "umary.life": [2024], "gemeentebest.nl": [11172], "quran411.com": [13434], "cdn.movad.net": [10665], "storefront.steampowered.com": [17635], "covert.gop": [2024], "www.campina.ru": [2796], "donorregister.nl": [11172], "observatorioigualdad.unizar.es": [17441], "vcs0.savannah.gnu.org": [6337], "www.bauwesen.htwk-leipzig.de": [7596], "*.bitcasa.com": [19385], "www.examine.com": [5468], "www.test-ipv6.cz": [16214], "links.mendez.ch": [2024], "cvs.sv.gnu.org": [6337], "*.opengroup.org": [16278], "connect.osu.edu": [11797], "gosfincontrol.gov-murman.ru": [20293], "oascentral.comcast.net": [3461], "www.amnesty.or.jp": [1010], "ssl-ccstatic.highwebmedia.com": [7411], "surveys.researchresults.com": [13857], "matomymedia.com": [10087], "*.sescoops.com": [14163], "do3.co": [2024], "mysql.pipni.cz": [12287], "shopp.me": [2024], "online.mbank.cz": [9733], "live1.islamweb.net": [8373], "my.ukfast.co.uk": [17043], "nrg.im": [2024], "www.blueorigin.com": [2157], "mma.ac": [2024], "www.aldi-mobile.ch": [357], "my.vpnglobe.com": [17590], "e621.net": [4859], "asset.dr.dk": [4072], "images.slashdot.org": [15012], "siseveeb.ut.ee": [17148], "www.pushplay.com": [13293], "totalicare.com": [16673], "plbt.uk": [2024], "alexandria.zone": [2024], "www.gayakuman.com": [6459], "actor-s.co": [2024], "msr.io": [2024], "zdmcirc.com": [18851], "m.gazetaexpress.com": [6461], "secure.iphone.mtvn.com": [17748], "ehod.co": [2024], "images.blog.whsmith.co.uk": [18000], "wwwpromoter.com": [22635], "matildajaneclothing.com": [10084], "pbx.telphin.ru": [16170], "cdn1.iconfinder.com": [7920], "www.e-activist.com": [4841], "to.edcs.me": [2024], "govib.es": [2024], "soundonsound.com": [15229], "www.aess.asso.ulaval.ca": [17319], "motorregister.skat.dk": [14963], "facultyaffairs.wusm.wustl.edu": [18089], "kyvan.co": [2024], "l.zndr.co.uk": [2024], "myip.ipip.net": [20570], "www.0xbadc0de.be": [9], "suche.golem.de": [6804], "news.scotland.gov.uk": [21755], "b.mirachem.org": [2024], "cso-berdyuje.admtyumen.ru": [19082], "hccpc.us": [2024], "*.mhsa.aihw.gov.au": [10282], "www.willleathergoods.com": [18403], "nycmixing.net": [2024], "atomz.com": [1356], "m.geektimes.ru": [6490], "taobao.aliloan.com": [19141], "www.securusglobal.com": [14598], "www.domeny.sk": [19875], "b.suntravel.xyz": [2024], "smile.amazon.com": [960], "gltr.me": [2024], "www.cait.wustl.edu": [18089], "bookit.nl": [19426], "it.cornell.edu": [3676], "tiki.vorratsdatenspeicherung.de": [353], "sydney.edu.au": [22063], "pma.quay.io": [21564], "*.blog.upc.edu": [12940], "jslink.me": [2024], "verisign.co.uk": [17712], "e.icetravel.xyz": [2024], "urlpie.com": [2024], "gnumeric.org": [6747], "scci.io": [2024], "www.webdam.com": [18156], "*.meeting.afrinic.net": [752], "wso2.com": [18022], "e.nfiwh.at": [2024], "my.bucknell.edu": [2406], "www.dotcomsecurity.de": [4694], "kub.nl": [16521], "reload.tk": [2024], "www.lwn.net": [9125], "www.antpool.com": [1108], "sos-kd.de": [2024], "nllapps.com": [21144], "app.status.io": [21983], "www.superdesk.org": [22038], "*.mktoresp.com": [10513], "themins.co": [2024], "ebscohost.com": [4864], "websitealive10.com": [18242], "nacp.ornl.gov": [11730], "cbro.info": [2024], "ww690.smartadserver.com": [15049], "wizards.com": [18477], "www.rateyourmusic.com": [13633], "*.alzheimers.org.uk": [950], "crowd.geant.net": [6291], "www.constituteproject.org": [19671], "potts.gg": [2024], "*.search.etargetnet.com": [5364], "webwise.me": [2024], "starokostyantyniv.o3.ua": [21219], "labhle.fit": [2024], "css.chefkoch-cdn.de": [3062], "auto.ya.ru": [18716], "tapestry.tapad.com": [16017], "ricardo.co.tz": [2024], "preview.wolframalpha.com": [18487], "*.gentoo.org": [6517], "repository.cwi.nl": [2967], "ebank.sz1.cmbchina.com": [2639], "totalfanshop.net": [16674], "jshm.co": [2024], "static.breakingmuscle.com": [19445], "devtools.dol.gov": [19867], "www.sustainability.asu.edu": [1221], "*.motorola.com": [10656], "3860.eschools.co.uk": [20017], "pt.gy": [2024], "aamp.nl": [2024], "plannedparenthoodaction.org": [21434], "smetsni.co": [2024], "loaded.uk": [2024], "ipleak.net": [20571], "t-ssl.ligatus.com": [9356], "c.mail.ru": [9891], "tendencias.vozpopuli.com": [17950], "okura.nl": [11816], "financial-advisor.independent.co.uk": [8058], "docs.clusterhq.com": [3319], "janestanford.stanford.edu": [15448], "siguetuli.ga": [2024], "vworp.me": [2024], "slooh.com": [14194], "check.symantec.com": [15780], "www.dmjx.dk": [4588], "extatic.org": [5510], "www.gigster.com": [6640], "ojpc.co": [2024], "m.encendo.co": [2024], "zaragoza.es": [22634], "www.openlinksys.info": [11986], "reports.crowdrise.com": [3825], "bcfak.es": [2024], "t-mobile.co.uk": [15834], "e2ma.net": [4857], "lmblug.tk": [2024], "ramnode.com": [13599], "unikornel.com": [2024], "www.nramemberservices.org": [21183], "www.nl.frieslandcampina.com": [2796], "*.pnc.com": [12304], "my.yieldmanager.com": [13937], "movie.yam.com": [18734], "webmail.boum.org": [2261], "me.courts.de": [2024], "www.nidirect.gov.uk": [21138], "a.udimg.com": [17022], "lenobl.sledcom.ru": [21858], "dj.rasset.ie": [13631], "imlink.info": [2024], "dvtthk.com": [2024], "s59.cnzz.com": [3328], "images.lynku.com": [9693], "korelogic.com": [8997], "members.japantimes.co.jp": [8526], "lists.altlinux.org": [362], "*.ortolo.eu": [12148], "tap.rubiconproject.com": [14066], "amnesty.gr": [1007], "csblog.us": [2024], "aldi.lu": [357], "www.sizzlesitesinc.com": [14958], "01001110.co": [2024], "drjlp.com": [2024], "liladel.re": [2024], "jacoblangvad.com": [8498], "volzhsky.biglion.ru": [19375], "us.megabus.com": [10244], "stackoverflow.email": [15424], "openxmpp.com": [12029], "www.greenparty.org.uk": [6908], "*.flyersrights.com": [5941], "tmk-secure.smartadserver.com": [15049], "ae.tips": [2024], "talkoclock.com": [15997], "visaliatimesdelta.com": [17852], "pt.xhamster.com": [18606], "*.nic.br": [10959], "android-client.fitbit.com": [5867], "www.yadi.sk": [18717], "affiliates.nexcess.net": [11396], "gem5.my": [2024], "api.lenta.ru": [20809], "sl.joeylau.me": [2024], "cafepress.co.uk": [2730], "hcc.lv": [2024], "lurkmore.ru": [9683], "go.uwm.edu": [2024], "jfish.me": [2024], "www.onename.com": [11875], "nee.my": [2024], "nantes.indymedia.org": [8090], "gazen.de": [2024], "lists.parabola.nu": [12412], "mo529.us": [2024], "mediamarkt.de": [20949], "meterreads.g4s.com": [20195], "fokus.fraunhofer.de": [6091], "www.xnet.cz": [18622], "web.clicktools.com": [3264], "strwd.co": [2024], "labs.parabolagnulinux.org": [12413], "cpw.dongenergy.dk": [4068], "indicators.hscic.gov.uk": [20435], "hotukdeals.com": [7556], "www.itrust.org.cn": [8406], "go2.pw": [2024], "cimacorp.net": [5616], "vistech.net": [17868], "www.gktw.org": [6668], "www.accel-ppp.org": [19046], "r24626556.sync.app.asana.com": [1265], "passport.rsl.ru": [21686], "tremendesk.com": [624], "maun.gs": [2024], "help.dkit.ie": [4032], "9po.st": [2024], "riemann.upo.es": [17479], "ias.cs.tum.edu": [16101], "f212.co": [2024], "efcww.com": [2024], "bugs-master.debian.org": [4263], "*.telfort.nl": [16165], "64.mvd.ru": [21055], "www.boston.com": [2252], "fact.so": [2024], "prihlasenie.azet.sk": [1507], "www.myiu.org": [10851], "carina.tk": [2024], "goto.ftino.com": [2024], "zabbix-3.cca.edu": [2547], "*.intelli-direct.com": [8215], "s2.calameoassets.com": [2749], "c.1tw.org": [65], "piraten-aargau.ch": [21415], "www.wiiings.com": [18381], "vineland.dj": [2024], "gwywx.taobao.com": [16015], "csa.canon.com": [2822], "cooley.com": [19681], "insights.ubuntu.com": [17183], "community.vodafone.ie": [17902], "www.safebilling.com": [14292], "flyertown.ca": [5943], "smallbusiness.magento.com": [9868], "jajo.me": [2024], "wiki.ubuntu-nl.org": [17181], "www.northdown.gov.uk": [4518], "thunderkick.com": [16480], "l.adhipg.in": [2024], "zdbb.net": [18850], "getresponse.com": [6567], "lmm.community": [2024], "liaoning.jd.com": [8434], "games.yahoo.co.jp": [18730], "geck.co": [2024], "kolen.ch": [2024], "en.over-blog.com": [12188], "s6.mt-cdn.net": [9812], "www.uploaded.to": [3945], "sftp.sonymusic.com": [15217], "my.njs.ch": [2024], "weburbanist.com": [18192], "boss.rocketbank.ru": [13994], "collab.net": [3416], "cpn.lt": [2024], "gamequitte.rs": [2024], "dubel.in": [2024], "chat.zuno.sk": [18862], "www.plusgirot.se": [12869], "syndi.es": [2024], "pc2.gtimg.com": [6975], "fifly.co": [2024], "cognitionsecure.com": [3387], "rrn.me": [2024], "stats.adobe.com": [669], "irmk.tv": [2024], "prod.akimg.video.rakuten.co.jp": [13594], "www.opal.com.au": [11940], "odagstest.tocco.ch": [16600], "www.ecm74.com": [5043], "tasteof.life": [2024], "www.videa.hu": [17770], "demo1.odoo.com": [11765], "andym.es": [2024], "verizonenterprise.com": [17716], "dl2.oo-software.com": [11929], "adserver.openx.org": [12027], "uofapdx.com": [2024], "admin.adultshopping.com": [697], "dxdet.co": [2024], "roada.me": [2024], "eduncovered.com": [5063], "biointensivo.ourproject.org": [21314], "www.pirateproxy.tv": [22174], "b-lik.es": [2024], "smt.ac": [2024], "honk.dyn.sigxcpu.org": [14846], "netdata.firehol.org": [20107], "ytz.li": [2024], "arr-dep.info": [2024], "venuu.fi": [22439], "mod7.in": [2024], "feedback.userecho.com": [17515], "see.zmovi.gq": [2024], "shellfish.io": [14756], "asset.wsj.net": [18021], "compre.in": [2024], "btcturk.com": [1587], "www.mk2.com": [9769], "admin.na5.acrobat.com": [536], "cestovanie.aktuality.sk": [1507], "csshotels1.cdnvideo.ru": [19536], "glot.io": [20269], "www.hadithbd.com": [7149], "mkssoftware.com": [9771], "mdn.livingsocial.com": [9530], "www.elanex.biz": [5130], "p.palander.se": [2024], "cnda.condenast.co.uk": [3556], "wordpress.tv": [18519], "feeds.feedburner.com": [5720], "fxguide.com": [6268], "coinfloor.co.uk": [3404], "api.pinterest.com": [12731], "alrc.gov.au": [1421], "radoncinternal.stanford.edu": [15448], "s4k.me": [2024], "mirabilia.in": [2024], "light.samsung.net": [14334], "webassetsd.scea.com": [14148], "packages.holidaypirates.com": [20392], "*.epbfi.com": [4931], "www.openshift.com": [12009], "900.co.za": [2024], "gubernator.gov-murman.ru": [20293], "pezn.tv": [2024], "*.meilenrechner.de": [10431], "icrib.link": [2024], "snctycndl.co": [2024], "adar.sh": [2024], "flyam.ps": [2024], "bitcoinstats.com": [1997], "trofire.com": [15920], "my.rusi.org": [13541], "ixmaps.ca": [20621], "saltpack.org": [21724], "permati.me": [2024], "randyrabb.it": [2024], "*.advel.cz": [705], "tom.ms": [2024], "a.fastcompany.net": [5670], "tea.ourproject.org": [21314], "exoplanets.nasa.gov": [10909], "s.ida.io": [2024], "sl.cccp.com": [2024], "www.shepherdsfriendly.co.uk": [14760], "extreme-light-infrastructure.eu": [5518], "blackboardtest.ncl.ac.uk": [10926], "die-sondersendung.de": [10322], "computerworld.com.au": [7708], "wbxu.uk": [2024], "ca6.jp": [2024], "archive.icommons.org": [7703], "www.mega.com": [10233], "habrastorage.org": [7120], "radbulls.com": [2024], "iad.g.163.com": [50], "home.thetimes.co.uk": [16538], "theporti.co": [2024], "janglo.co": [2024], "www.steaw.com": [15525], "imgwx5.2345.com": [98], "rasp.yandex.com.tr": [18740], "tayshet.startsmile.ru": [21980], "www.stat.sfu.ca": [14708], "sslvpn.ntu.edu.tw": [11010], "ap.octopuspop.com": [11754], "eszakinyitas.444.hu": [183], "gol.am": [2024], "flash.bangbang.58.com": [212], "intagme.com": [20545], "loco.yahoo.co.jp": [18730], "b.wal.co": [18048], "www.imgtec.com": [20508], "brandensittich.de": [2300], "git.exherbo.org": [5482], "b5.aztravel.xyz": [2024], "boxus.com": [12491], "pledge.freestateproject.org": [6128], "fanatics.com": [5639], "devpress.com": [4418], "bit.mabaya.com": [2024], "www.german-design-council.de": [6539], "www.charitywater.org": [3017], "remind.com": [13821], "csalert.info": [2024], "sealinfo.websecurity.norton.com": [11545], "boinc.berkeley.edu": [17329], "shape.rs": [2024], "yuilibrary.com": [18715], "weblearn.ox.ac.uk": [17359], "www.cerit.cz": [2585], "exoclick.com": [5489], "m.fazjob.net": [5545], "northeastern.edu": [11539], "www.rejseplanen.dk": [13810], "newsletters.1105pubs.com": [24], "jgl.microad.net": [10378], "glsen.us": [2024], "projectreporter.nih.gov": [11090], "www.errorception.com": [5340], "smrtn.at": [2024], "www.comnap.aq": [2653], "carpromods.com": [2841], "soundte.ch": [2024], "securitymouse.com": [14594], "login1.vtrenz.net": [14865], "b.oscen.no": [2024], "coderbits.com": [3374], "web.geogebra.org": [6522], "marc-stevens.nl": [9989], "andesi.org": [1041], "newscientist.com": [11338], "www.mebsd.com": [20944], "u.hardlyart.com": [2024], "www.asirobots.com": [409], "secure.derby.gov.uk": [4367], "l.924forum.nl": [2024], "mbna.co.uk": [20939], "www.telekom-partnerwelt.de": [16151], "yali.state.gov": [17146], "support.startmail.com": [15475], "m.nz.imhd.sk": [8004], "opticians.asda.com": [407], "glve.co": [2024], "pravda-kr.com.ua": [21478], "www.uvt.nl": [16521], "pes.ca": [2024], "www.gsnmc.dwd.de": [19911], "esct.co": [2024], "ifightsurveillance.com": [7886], "wallet.unistream.ru": [17291], "definitep.com": [2024], "wildfiregames.com": [18399], "hca.twimg.com": [16949], "wlvs.info": [2024], "ete-online.biomedcentral.com": [1931], "www.prometric.com": [13197], "cp.bristol.gov.uk": [19451], "me.stripapp.com": [2024], "tlmv.ca": [2024], "davidlazar.org": [4215], "*.foresight.org": [6006], "allmychanges.com": [880], "cse.ucsd.edu": [17012], "u2.outbrain.com": [12182], "piwik.adelphi.de": [635], "www.sakh.com": [21719], "kostroma.rt.ru": [13529], "css.georgetown.edu": [6531], "veronmaksajat.fi": [17721], "thestorefront.com": [16385], "cctix.com": [2024], "fuwu.taobao.com": [16015], "conso.rs": [2024], "ibg.tw": [2024], "log.soku.com": [21893], "hullcc.firmstep.com": [20109], "one.iu.edu": [8069], "cf2.vuze.com": [17972], "loiita.com": [2024], "apps.nero.com": [11201], "awsadmin.japantimes.co.jp": [8526], "www.moviemagnet.net": [10681], "*.bornthiswayfoundation.org": [2243], "s11.postimage.org": [13024], "m0d.co": [2024], "www.nextbus.com": [11400], "carechoice.info": [2024], "im.jd.com": [8436], "p1.zemanta.com": [18912], "thepiratebay.immunicity.press": [21524], "static.aliyun.com": [868], "tms.pl": [22224], "j.noriom.com": [2024], "lolnet.org": [9580], "dmo.social": [2024], "crim.ms": [2024], "borns.co": [2024], "custom.samsungknox.com": [14331], "docs.docker.com": [4605], "execed.economist.com": [5052], "tvendo.tv": [2024], "r24820218.sync.app.asana.com": [1265], "nti.gr": [2024], "cars.com": [2874], "shann.in": [2024], "thinkerin.gs": [2024], "www.qiyipic.com": [13354], "unitech.net": [17266], "v-poiskah-raya.friday.ru": [20175], "join.acs.org": [974], "www.registro.br": [13796], "*.directline.com": [4514], "it.umd.edu": [17351], "tickets.eth-0.nl": [5365], "db22.play-asia.com": [12828], "foodblo.gs": [2024], "ofono.org": [21220], "mhero.es": [2024], "brewery.show": [2024], "*.ilius.net": [10226], "as.cornell.edu": [3676], "forums.nexusmods.com": [6043], "www.sinsofasolarempire.com": [14920], "proxytpb.nl": [22174], "triphac.kr": [2024], "site.inria.fr": [8161], "dpbk.co": [2024], "cmga.xyz": [2024], "yancheng.jd.com": [8434], "promo.calendar.mail.ru": [9891], "fencecenter.com": [5732], "www.airbnb.be": [793], "cryptonit.net": [3874], "tuftsgiving.org": [16891], "www.skatelescope.org": [21846], "webmail.planet-school.de": [12326], "loret.to": [2024], "bmuir.com": [2024], "m.lyft.link": [2024], "www.fjellner.eu": [3119], "www2.dudley.gov.uk": [4787], "refer.onemonth.com": [11888], "stats.ams-ix.net": [1025], "brz.io": [2024], "smail.websupport.sk": [18253], "dpfc.us": [2024], "daro.me": [2024], "atfp.co": [2024], "r.hitravel.xyz": [2024], "hkuportal.hku.hk": [20387], "dgl.cx": [4426], "*.a4apphack.com": [269], "dev.hellobond.com": [7298], "go.shrtz.de": [2024], "support.calameo.com": [2748], "login-ca.alibaba-inc.com": [19139], "support.start.me": [15470], "lists.asiabsdcon.org": [1281], "homepages.ihug.co.nz": [7959], "nr.egisz.rosminzdrav.ru": [21674], "rpic.douyucdn.cn": [4712], "tunbridgewells.objective.co.uk": [21225], "on.cc.com": [2024], "www.blogs.com": [14380], "www.medistack.com": [10157], "www.rows.io": [14043], "proza.ru": [21526], "arob.co": [2024], "archangelsk.rt.ru": [13529], "defenseindustrydaily.com": [4293], "i2.sinaimg.cn": [14910], "wwww.lostfilm.tv": [20876], "hind.biz": [2024], "www.intellnews.net": [20548], "lists.linux-foundation.org": [9427], "cals.cornell.edu": [3676], "www2.peopleschoicecu.com.au": [12584], "mrjd.co": [2024], "blender.org": [2086], "chriscardone.co": [2024], "marksma.de": [2024], "stormy.es": [2024], "oneticket.info": [2024], "ssl.sifomedia.se": [15908], "dgtl.ink": [2024], "kent-consult.objective.co.uk": [21225], "iglo.tk": [3536], "academy.anadolu.edu.tr": [1029], "tonergiant.co.uk": [16620], "forum.aircrack-ng.org": [19122], "rr.com": [13973], "informer.otpbank.ru": [12165], "navercorp.com": [11152], "ssl.indieweb.org": [8076], "03.imgmini.eastday.com": [5010], "ionline.sapo.pt": [14131], "www.massagemag.com": [10058], "my.vanderbilt.edu": [17647], "sigxcpu.org": [14846], "mdogl.io": [2024], "blog.po.st": [12874], "barnsley.gov.uk": [19318], "gtrgtr.uk": [2024], "notalone.stanford.edu": [15448], "prosci.us": [2024], "pro3x.ml": [2024], "99jo.co": [2024], "www.uwm.edu": [17379], "decryptcryptolocker.com": [4276], "intranet.projectplace.com": [13188], "inbox.lv": [8042], "v.viralimo.com": [2024], "illport.co": [2024], "sv.map.qq.com": [13329], "www.linnrecords.com": [9399], "go.aeris.com": [2024], "www.spla.ulaval.ca": [17319], "bpte.osu.edu": [11797], "media.showcase.ca": [14803], "www.clearspending.ru": [19609], "www.sierraclubgreenhome.com": [14832], "www.christianprayercenter.com": [3115], "*.look.co.uk": [9606], "146ydmkx81k0cravs083yyg0nixaxzogn0ggkf7s.ipleak.net": [20571], "www.foobar2000.org": [20131], "*.topcoder.com": [16633], "elearning.homeoffice.gov.uk": [20399], "*.oas.org": [12139], "w.misl.es": [2024], "trk.helios.ligatus.com": [9356], "a.nuytsjordy.be": [2024], "kvarterhuset.kk.dk": [8748], "hobocomp.com": [7447], "kel.vin.hk": [2024], "wscs.gdl.netease.com": [11228], "ntresvida.club": [2024], "helbing.ch": [20364], "bloggr.ga": [2024], "he.cx": [2024], "getdigital.de": [6594], "*.spreadshirt.net": [15371], "fs16.formsite.com": [20139], "sslchecker.wosign.com": [18483], "canaldigital.se": [2817], "pic1.qiyipic.com": [13354], "www.cbcblueprint.com": [2535], "iwc.oxfordjournals.org": [12222], "tdcanadatrust.com": [15866], "*.yelp.com.mx": [18766], "payments.livingsocial.com": [9530], "forum.kapsi.fi": [8806], "58n.ca": [2024], "xm1math.net": [18670], "swnry.co": [2024], "thereal.show": [2024], "newyorkcasual.com": [11391], "go.adidaphat.tv": [2024], "amnistia.cl": [1020], "ced.sascdn.com": [15049], "www.jbeekman.nl": [8427], "r24823014.sync.app.asana.com": [1265], "www.darkfasel.net": [4145], "thediel.in": [2024], "voice.fi": [17907], "wakka.ly": [2024], "*.readwrite.com": [13673], "get.cm": [6549], "filetransfer.bathnes.gov.uk": [1715], "get.co": [2024], "3bf8l8ni7lwiu836urri0r85vvjou8c37svp2f3d.ipleak.net": [20571], "designsch.eu": [2024], "sjte.uk": [2024], "cdspa.org": [2024], "hosted.telphin.ru": [16170], "wat.life": [2024], "riders.uber.com": [17169], "jej.me": [2024], "smashwords.com": [15067], "serve.quickbitcoin.co.uk": [13412], "*.3scale.net": [175], "www.smarthead.ru": [21867], "fonts.cursecdn.com": [3927], "photo.isu.pub": [8396], "damn.fuh-q.com": [2024], "sumolo.gs": [2024], "cwcw.ca": [2024], "bcgolf.com": [1532], "act.moveon.org": [10670], "nhs.georgetown.edu": [6531], "www.young.hillingdon.gov.uk": [7413], "kiano.sh": [2024], "acgl.co": [2024], "ubj.com": [2024], "s20.qhimg.com": [13347], "insta.hm": [2024], "www.ethercalc.net": [5366], "vacareers.va.gov": [17100], "l.warrenlex.com": [2024], "r24626646.sync.app.asana.com": [1265], "*.skydsl.eu": [14999], "drollette.com": [10092], "*.rtrcdn.com": [13833], "discourse.mozilla-community.org": [10689], "www.jococruise.com": [8602], "kortschakcenter.usc.edu": [17366], "b30.in": [2024], "nl.simg.jp": [14873], "www.digitecgalaxus.ch": [4495], "developer.whitepages.com": [15679], "lvshun.jd.com": [8434], "on.flog.cc": [2024], "lbl.me": [2024], "burgenland.neos.eu": [10941], "s.bigmir.net": [1894], "aws.tracker.squidanalytics.com": [15401], "www.jhu.edu": [16370], "bartels-on.sos.state.co.us": [3444], "www.kernelnewbies.org": [20704], "gmrt.co": [2024], "www.warwickdc.gov.uk": [22531], "clic.im": [2024], "www.websupport.at": [18188], "gap.stanford.edu": [15448], "smar.my": [2024], "prov.pub": [2024], "admin.start.me": [15470], "eprints.dkit.ie": [4032], "www.spin.de": [15346], "*.studentaidcalculator.com": [15604], "barfch.in": [2024], "sc25.co": [2024], "seattletechnicalbooks.com": [14518], "kopeysk.startsmile.ru": [21980], "static.gog.com": [6343], "tv.slashdot.org": [15012], "m.matbea.com": [20931], "recordstoreday.tuneportals.com": [13711], "polk.com": [12924], "sub.cedars.hku.hk": [20387], "shrewsburynorthshropshire.greenparty.org.uk": [6908], "l.animesave.com": [2024], "webmail.sport-express.ru": [21941], "lnk.h10n.me": [2024], "ssl134.penguinhost.net": [12568], "pingxiang.jd.com": [8434], "messenger4.providesupport.com": [13218], "*.ius.io": [20608], "reporting.shop.telegraph.co.uk": [16149], "sg.godaddy.com": [6755], "po.yoni.bz": [2024], "creativecommons.net": [3774], "mx2.stoloto.ru": [21996], "isppweb.tameside.gov.uk": [22095], "fpdownload.adobe.com": [669], "waarschuwingsdienst.nl": [11172], "caps-login.usc.edu": [17366], "dash.org": [4155], "ffwd2.me": [2024], "estee.cm": [2024], "consuwijzer.nl": [3596], "ccfgo.com": [2024], "www.burgerking.ru": [19474], "cdn8.openculture.com": [12039], "www.1time.aero": [86], "s.issa-nl.org": [2024], "start.me": [15469, 15470], "sysresccd.org": [22073], "bmcbiochem.biomedcentral.com": [1931], "perm.tpprf.ru": [22260], "s44.cnzz.com": [3328], "shuddle.us": [14811], "www.hertz247.be": [7338], "mylw.co": [2024], "*.corp.googleusercontent.com": [6828], "www.tripadvisorsupport.com": [22292], "secure.languageediting.nature.com": [11140], "provedordocliente.edp.pt": [4888], "www.monsterdivx.com": [10603], "breon.co": [2024], "www.slideshare.net": [15028], "go.wot.io": [2024], "www.ekmsecure22.co.uk": [5123], "account.edit.yahoo.co.jp": [18730], "go.manso.eu": [2024], "blue-store.barrons.com": [19319], "forum.anwiki.com": [19210], "www.courtesan.com": [6881], "gtchk.it": [2024], "maalde.me": [2024], "netloan.birmingham.gov.uk": [19380], "plaid.pub": [2024], "coinpay.in.th": [3408], "admin.kapsi.fi": [8806], "meetrics.de": [10230], "www.hertz.be": [7338], "rcp.tw": [2024], "www.hertz.bh": [7337], "admin.swish.mycelium.com": [21063], "community.dynamics.com": [4823], "wwraven.com": [2024], "go.befreely.io": [2024], "alpha.ms": [2024], "joycasino9.com": [20654], "u.d41.cl": [2024], "conbx.com": [2024], "ksu.am": [2024], "kzn.citilink.ru": [19594], "pcs.tv": [2024], "saratovskaya-obl.beeline.ru": [1778], "www.vpncritic.com": [17593], "tgerd.es": [2024], "oyoony.de": [21329], "data.virk.dk": [17826], "places.behindthename.com": [19348], "ballotmeasuredomains.com": [1656], "about.gigaom.com": [6626], "www.bonding.de": [2211], "*.abccommercial.com": [284], "tkb.ch": [20683], "www.sunybroome.edu": [2382], "q.niprltd.co.uk": [2024], "myls.cc": [2024], "static.domainnamesales.com": [4648], "s.rocko.me": [2024], "ems.westberks.gov.uk": [22564], "passport.fanli.com": [5645], "164.mclaut.com": [20942], "www.paper.li": [12408], "www.colossal.jp": [3448], "sarava.org": [14361], "l4.hitravel.xyz": [2024], "paymentsportal.dell.com": [4317], "kharma.unity3d.com": [17310], "admin.springfiles.com": [15376], "*.earwolf.com": [5000], "l.tl": [2024], "epaper.nzz.ch": [21216], "bookings.houseoffraser.co.uk": [7570], "lib.newsvine.com": [11390], "helpdesk.proxy.org": [13224], "myjd-crm.jd.com": [8436], "login.rubiconproject.com": [14066], "insolvency.detini.gov.uk": [19815], "vut.worldcat.org": [18536], "resources.vzaar.com": [17976], "tri.ht": [2024], "i.technet.microsoft.com": [10396], "p18.qhimg.com": [13347], "planet.kde.org": [8735], "surveyreport.cetl.hku.hk": [20387], "py-m.es": [2024], "www.eipocimb.com": [2618], "d.zhng.co": [2024], "go.abinfos.com": [2024], "practicas.uned.es": [17248], "kwhou.se": [2024], "sitedev.openmandriva.org": [11992], "snfrw.com": [2024], "aquaticbiosystems.biomedcentral.com": [1931], "help-zh-tw.nike.com": [11440], "*.igl.net": [2887], "ak2.polyvoreimg.com": [21459], "whms.com": [17998], "edt.im": [2024], "www.vaultoro.com": [22430], "parents.asu.edu": [1221], "icu-project.org": [8256], "aryz.us": [2024], "fffun.net": [2024], "cdn.greatnonprofits.org": [6892], "manufrog.com": [9973], "www.lucky2u.net": [9658], "www.pp-international.net": [21475], "so-s.nflximg.net": [11269], "rtumoa.mosnet.ru": [21023], "cjh.am": [2024], "lwb.xyz": [2024], "www.innovation.kit.edu": [8812], "www.superdrug.com": [15692], "anonym-surfen.de": [8637], "rack911.com": [13555], "www.wwte11.com": [18031], "sp.asuka.jp": [2024], "dburk.us": [2024], "coinb.in": [3402], "api.badgekit.org": [1629], "flipkart.com": [5906], "mapbox.com": [9977], "schrodinger.com": [14808], "s.coloni.nl": [2024], "www.picoville.com": [12697], "danny.mantor.org": [9972], "gnusocial.no": [6340], "mnc.ms": [2024], "www.sustainablebusiness.com": [15731], "kldavis.co": [2024], "www.rabbitmq.com": [13548], "www-nova.fnal.gov": [5741], "usercenter.fir.im": [20106], "cache.gizmodo.com": [6677], "poptavka.vutbr.cz": [17609], "code.theads.me": [16401], "*.sculpteo.com": [14490], "flow.ms": [2024], "colors-il.com": [3447], "www.platinumperformance.com": [12823], "bem.bz": [2024], "on.asha.org": [2024], "brevard.aclufl.org": [297], "surveyserver.net": [22044], "getawild.life": [2024], "yokl.com": [18782], "th.silverrushstyle.com": [14863], "foia.state.gov": [17146], "www.0180.info": [16173], "prophet.heise.de": [7288], "online.yuga.ru": [22701], "baratikor.com": [4738], "iweb.com": [7874], "ddeveaux.link": [2024], "why.mail.ru": [9891], "6.da.gd": [4092], "life.youku.com": [18804], "app2.salesmanago.pl": [14125], "www.durham.police.uk": [4802], "chatterbon.es": [2024], "jrr.oxfordjournals.org": [12222], "dev.ssllabs.com": [14243], "success.act-on.com": [19054], "www.gmo.jp": [6325], "uillinois.edu": [17034], "stat.webhostingsearch.com": [18134], "barkpro.com": [2024], "www.webgo24.de": [18162], "lori.link": [2024], "materials.nature.com": [11140], "company.icq.com": [7695], "panorama.am": [21341], "careers.yell.com": [22672], "cdn.imgstat.com": [3917], "www.privacy-cd.org": [13132], "chuvashia.auto.ru": [19276], "www.postgrad.hobsons.com": [20389], "graysofwestminster.co.uk": [6886], "smth.gr": [2024], "svnlab.com": [14266], "short.broll.at": [2024], "www.metasploit.com": [10335], "mail.xmission.com": [18621], "bla1ze.me": [2024], "www.twinery.org": [22331], "*.managers.hr.columbia.edu": [3449], "childabduction.state.gov": [17146], "clkto.me": [2024], "www.gimpphoto.tuxfamily.org": [22319], "drc.ohiolink.edu": [11799], "s33.cnzz.com": [3328], "l.hymu.xyz": [2024], "messagerie.montpellier3m.fr": [10609], "wuxiguan.jd.com": [8434], "www.medconfidential.org": [10151], "support.ixsystems.com": [7882], "projects.puppetlabs.com": [13276], "guangzhou.douban.com": [4701], "www.m.maps.yandex.kz": [18743], "at.pcv.nyc": [2024], "r.jutnux.co.uk": [2024], "plcy.co": [2024], "www.geeksquad.co.uk": [6481], "eforms.lib.hku.hk": [20387], "san.santive.com": [2024], "support.ispbilling.com": [16888], "lucia.unizar.es": [17441], "st.tivision.ru": [22216], "brandisty.com": [2303], "svn.sfu.ca": [14708], "mecn.me": [2024], "apple.com.cn": [1150], "americanflyertrains.com": [985], "hakko.com": [7160], "bttf.duckduckgo.com": [4785], "faq.soylent.com": [15267], "*.bloo.ie": [2128], "www.linux-magazine.com": [9408], "sjs.sinajs.cn": [14909], "mysullivannews.com": [10862], "sa1.www4.irs.gov": [7821], "m.alibaba.com": [857], "eu.mouseflow.com": [10664], "thomascook.com": [16450], "vipreader.qidian.com": [13349], "baike.bdimg.com": [1747], "apply.hdfcbank.com": [7249], "www.pinta-outlet.fi": [12730], "play.bgrap.ch": [2024], "status.rackspace.com": [13566], "*.blutmagie.de": [2175], "rma.demandmedia.com": [4326], "i.brainyquote.com": [2293], "www.riscure.com": [13957], "bind.ga": [2024], "bargains4business.com.au": [1696], "www.auphonic.com": [1395], "nrasports.nra.org": [21176], "ipse.co.uk": [7801], "www.torcache.net": [16642], "sglife.in": [2024], "donate.shadowproof.com": [14714], "demo-ic.tfb.ru": [16236], "img0.glassdoor.co.in": [20259], "questions.medicaid.gov": [20952], "for.tn": [2024], "tjunks.net": [2024], "lists.macosforge.org": [9835], "www.vh3.vutbr.cz": [17609], "visaforchina.org": [17848], "antics.me": [2024], "www.killscreen.com": [8903], "tv.hnonline.sk": [7445], "tiblog.us": [2024], "move.va.gov": [17100], "*.ch.ch": [19555], "wanglibao.com": [18067], "gitlab.clear-code.com": [3228], "surgut.startsmile.ru": [21980], "platform.communicatorcorp.com": [3502], "blog.siteground.com": [14932], "m1ke.us": [2024], "auth.jino.ru": [8589], "wka.ms": [2024], "we-audit.org": [2024], "adsby.webtraffic.se": [18260], "overflow.bufferapp.com": [2419], "qiyukf.com": [21560], "4kbhkort.kk.dk": [8748], "*.qoo10.cn": [13358], "www.fishbase.us": [5862], "moderncrypto.org": [10557], "www.rkh.co.uk": [21656], "dl.free-torrents.org": [20154], "filmandmediastudies.georgetown.edu": [6531], "on.tematriq.com": [2024], "www.imh.liu.se": [9097], "minfin.astrobl.ru": [19264], "www.sherrin.com.au": [14762], "velocitymicro.com": [17687], "wdw.ipleak.net": [20571], "*.yimg.com": [18777], "ssl.bm.ru": [2176], "www.brandl-services.com": [2304], "shubh.am": [14810], "www.evisa-vietnam.com": [5450], "collegeboundfund.com": [3425], "sh.vultus.de": [2024], "torybf.org": [2024], "www.thefightagainstcorruption.unodc.org": [17075], "9to5mac.com": [255], "www.precisionpros.com": [13065], "educationusa.info": [19959], "www.gavinhungry.io": [6452], "boots.no": [2235], "gregj.us": [2024], "vip.chbtc.com": [3041], "ese.engineering.osu.edu": [11797], "www.romdashboard.com": [13506], "r24822929.sync.app.asana.com": [1265], "atrpms.net": [429], "alpinelinux.org": [918], "tolaris.com": [16613], "www.virtualinventions.com": [17837], "supermeet.tv": [2024], "walsall.greenparty.org.uk": [6908], "t.tornify.com": [2024], "*.myleague.com": [10812], "maps.yandex.com": [18742], "www.mercurial-scm.org": [10300], "api.cxense.com": [2709], "*.craftbanter.com": [3748], "clustrmaps.com": [19628], "tssn.co": [2024], "hants.gov.uk": [7185], "*.1984.is": [57], "it.regency.ie": [2024], "*.rsmsecure.com": [13519], "support.upc-cablecom.ch": [22386], "vet.nso.ru": [21192], "resources.superherostuff.com": [15696], "ad1.emediate.dk": [5193], "assetgame.roblox.com": [13980], "crc.id.au": [2670], "hboshopeu.com": [20355], "www.mn.uio.no": [17414], "godiva.cm": [2024], "www.sportradar.com": [21945], "www.slovakrail.sk": [15038], "kareliya.beeline.ru": [1778], "fro.me.uk": [2024], "www.geogebra.org": [6522], "gumcprof.georgetown.edu": [6531], "tzn.is": [2024], "wg1.ipcc.ch": [7793], "xmpp.ru.net": [18618], "*.lunarpages.com": [624], "javi.fr": [2024], "ch.bme.hu": [1556], "a.fsdn.com": [5589], "blog.engineyard.com": [5255], "paste.ubuntu.com.cn": [17174], "www.chcemvediet.sk": [3042], "go.koawach.de": [2024], "www.stedebroec.nl": [11172], "mycology.space": [2024], "wu.cth.lc": [2024], "tui.kapani.de": [2024], "loja.meo.pt": [10286], "evo73.ru": [20043], "i3.mifile.cn": [10411], "pictomania.com": [12699], "bundles.bittorrent.com": [1974], "renttherunway.com": [13833], "apmor.in": [2024], "page.aliexpress.com": [19140], "13ny.vote": [2024], "sts.permkrai.ru": [21390], "pixoto.com": [12782], "coinimal.com": [3405], "khabarovskadm.ru": [20708], "t.dstyle.us": [2024], "manual.tocco.ch": [16600], "rss.mmedia.me": [10302], "vakil.info": [2024], "url.soit.be": [2024], "www.commonapp.org": [3486], "alumni.stanford.edu": [15448], "*.www.starwoodhotels.com": [15479], "yellowpagesoptout.com": [18765], "smith.ly": [2024], "pnasfirstlook.org": [12303], "swinburne.edu.au": [15755], "*.chatter.com": [3039], "ippy.pics": [2024], "publications.dyc.edu": [4089], "russianpost.a-3.ru": [258], "investor.fitbit.com": [5867], "namecentral.com": [11059], "cf.prefetch.xxxbunker.com": [18699], "k.mpbk.us": [2024], "us.pycon.org": [13307], "www.datatables.net": [4180], "keckapps.usc.edu": [17117], "drsha.ms": [2024], "accredible.com": [519], "juwel.ir": [2024], "sape.ru": [14359], "nervous.io": [11202], "thatemil.jsbin.com": [20659], "8qr.co": [2024], "www.ndia.org": [11087], "softlayer.com": [15160], "www.site.yandex.kz": [18743], "nkla.us": [2024], "blogs.office.com": [11780], "rt.fsl.cs.sunysb.edu": [15548], "ipfw.io": [2024], "www.freepracticetests.org": [6132], "fanp.us": [2024], "img.borsen.dk": [2244], "relate.org.uk": [13812], "qnm.li": [2024], "ptrn.it": [2024], "www.flixbus.dk": [5911], "sitedata.xramp.com": [18680], "s.carlcolt.co": [2024], "tradeblock.com": [16707], "discuss.codemirror.net": [3371], "citp.princeton.edu": [13113], "g-am.es": [2024], "allensblog.me": [2024], "identity.autoscout24.ch": [1457], "inside.wpp.com": [18014], "*.smartmoney.net": [11361], "davetapia.biz": [2024], "www.enfield.gov.uk": [5247], "etrux.es": [2024], "mtnacertification.org": [9814], "peoplefinder.gmu.edu": [6529], "go.kaley.co": [2024], "ri.gov": [21648], "cs14.myzuka.fm": [21079], "fullyop.co.uk": [2024], "academy.fleetboard.com": [20117], "dn-sdkcnssl.qbox.me": [13344], "juno.co.uk": [8701], "www.ibm.com": [7679], "de.pastebin.ca": [12477], "coloredcoins.mtree.mycelium.com": [21063], "secure.torrentday.com": [16650], "whmcs.com": [17997], "dn.cdn.gmru.net": [6329], "gtruth.co": [2024], "t1.58cdn.com.cn": [213], "img6.pixhost.org": [21426], "www.soraiseyourglasses.com": [15110], "test.hertzequip.com": [7371], "ijrl.oxfordjournals.org": [12222], "hackover.de": [7144], "zipcloud.com": [8707], "s28.postimage.org": [13024], "netcompetition.org": [11214], "www.playerauctions.com": [12840], "metrics.stanford.edu": [15449], "ezwdt.co": [2024], "dr-qubit.org": [4730], "blog.conformal.com": [3575], "www.ahmia.fi": [780], "nwkd.co": [2024], "cambridge.greenparty.org.uk": [6908], "napoveda.active24.cz": [19062], "hacdc.org": [7121], "joyiswith.in": [2024], "heide-park.de": [7281], "gymaesthetics.de": [20328], "cheznous.com": [18579], "r24628110.sync.app.asana.com": [1265], "zabbix.sumtel.ru": [22031], "www.epson.com.mx": [5318], "cdn.bfm.ru": [19365], "l.esija.com": [2024], "extremerestraints.com": [20059], "www.fossies.org": [20142], "cable6.net": [2717], "ftf.us.es": [17502], "prxy.com": [13230], "www.andesi.org": [1041], "g3.chaucanh.net": [2024], "nra.org": [21177], "www.mwop.net": [10783], "www.colsonservices.com": [19647], "stucomp.stanford.edu": [15448], "cdn.flightradar24.com": [20119], "deals.macobserver.com": [9848], "www.qiwi.me": [21559], "www.gq-magazine.co.uk": [6355], "img.lightreading.com": [20837], "*.aspi.org.au": [1426], "www.careers.dyson.com": [4831], "kurierclub.kurier.at": [9055], "r.qidian.com": [13349], "www.myendnoteweb.com": [5232], "blogs.amnesty.org.uk": [1015], "www.gemklub.hu": [6502], "jira.aniart.com.ua": [19199], "contact.comparethemarket.com": [3513], "manager.travelspecialistsite.com": [16773], "magnum-ci.com": [20907], "www.te-st.ru": [22103], "earncharge.com": [2024], "hcm-fusioncrm.oracle.com": [12116], "connect.ala.org": [356], "www.tornadoweb.org": [16645], "cdn.mysql.com": [10825], "bugs.mageia.org": [9865], "*.yelp.nl": [18766], "dowjones.com": [11360], "s.send.microad.jp": [10377], "down.115.com": [28], "static.mailigen.com": [9901], "snugb.ug": [2024], "12s.ch": [2024], "lab.springer.com": [15380], "www.cacert.org": [2534], "romo.rocks": [2024], "superguarantee.com": [15678], "hdepot.ca": [2024], "*.nextgenautoparts.com": [11407], "board.goldesel.to": [20284], "www.rr.com": [13973], "docuwiki.hearstdigitalnews.com": [7269], "lafiestaviva.mx": [2024], "www.vizury.com": [17888], "www.owler.com": [21321], "www.oneweb.cz": [11684], "rgn.rs": [2024], "www.ots.treas.gov": [17139], "csedweek.org": [2683], "pejs.net": [21382], "www.ulteo.com": [17214], "frat.md": [2024], "clientapi.ipip.net": [20570], "media-minecraftforum.cursecdn.com": [3927], "b2.to": [2024], "c1.next.westlaw.com": [18312], "*.ad.ad-srv.net": [16025], "customer.comcast.com": [3462], "in.reuters.com": [13893], "www.teenshealth.org": [8899], "ctaxdd.cardiff.gov.uk": [19509], "platform.meetme.com": [10224], "asset-0.soup.io": [15235], "sccgov.org": [14401], "*.dl.sourceforge.net": [15242], "hkuems1.hku.hk": [20387], "emberjs.jsbin.com": [20659], "developer.forecast.io": [6001], "kali.li": [2024], "su.zizuu.com": [2024], "drg.io": [2024], "blog.aerofs.com": [736], "images.cdn.static.malwarebytes.org": [9941], "gng.link": [2024], "driz.ly": [2024], "m.jnnfr.net": [2024], "spanish.bolivia.usembassy.gov": [22406], "rest-production.mollom.com": [10573], "l.dbea.st": [2024], "www.exlibris.ch": [5486], "picviewer.org": [2024], "wap.douban.com": [4701], "connect.news.com.au": [11379], "apps.nhsbsa.nhs.uk": [10953], "hotwire.com": [7567], "chocolate-doom.org": [3098], "whoisology.com": [18357], "webshop.ottos.ch": [21310], "ridesk.it": [2024], "tbo.hm": [2024], "www.rutube.ru": [21704], "visualwebsiteoptimizer.com": [17870], "space.cnblogs.com": [19631], "data.appguru.com": [1136], "es.osdn.net": [21298], "internal.bingads.microsoft.com": [10396], "otr-online.ru": [21308], "deansnewsletter.stanford.edu": [15447], "vcno.co": [2024], "s2.rr.itc.cn": [8401], "webmail.hermes.cam.ac.uk": [17332], "*.searchmarketing.com": [14507], "lastfm-z.plexapp.com": [12855], "www.openmedianow.net": [11996], "tjev.mx": [2024], "i.ju.taobao.com": [16015], "itaccounts.nottingham.ac.uk": [11567], "ju.insite.co.jp": [2024], "pzl.no": [2024], "theag.com": [2024], "c.chillyaar.com": [2024], "www.iana.org": [7671], "publicfeed.stubhub.co.uk": [15602], "web.gcmasia.com": [6287], "metrin.us": [2024], "www.ultimate-guitar.com": [22359], "amazingcareers.firstdirect.com": [20110, 20111], "austro.info": [2024], "*.vpnbook.com": [17951], "stu.starfishsolutions.com": [21977], "www.ultimarc.com": [22358], "www.explore.co.uk": [20053], "bndless.com": [2024], "www.linuxluddites.com": [9439], "prettyincash.com": [13086], "kalmykia.tpprf.ru": [22260], "t66y.com": [22079], "re.hn": [2024], "rrcom.nl": [2024], "web01.srvv.net": [15410], "to.oc-x.jp": [2024], "petropavlovsk-kamchatskiy.beeline.ru": [1778], "www.payhip.com": [12508], "library.ohio-state.edu": [11798], "sochi.startsmile.ru": [21980], "reporting.threatmetrix.com": [16467], "avatars3.githubusercontent.com": [6661], "www.poodle.io": [12307], "navigator.web.de": [18146], "adsystem.simplemachines.org": [21830], "mofi.re": [2024], "hire-stg.jobvite.com": [8616], "scorreia.tk": [2024], "winter.oxfordshire.gov.uk": [21326], "www.scieneo.de": [14445], "shalon.co": [2024], "widerruf.saturn.de": [21736], "git.pld-linux.org": [12299], "www1.livenation.co.*": [9493], "id.amap.com": [19166], "www.pornhub.com": [12972], "tryhard.audio": [2024], "l.samho.nl": [2024], "a.popin.cc": [12954], "console.online.net": [11908], "r24820201.sync.app.asana.com": [1265], "on.self.com": [2024], "auzi.co": [2024], "*.frype.com": [4738], "clientforum.curse.com": [3927], "partnerportal.unruly.co": [22381], "*.nadaguides.com": [10907], "www.cinemacon.com": [3149], "ianw.in": [2024], "ma.rnix.nl": [2024], "pss.sk": [13233], "client.presspage.com": [13079], "www.giving.hku.hk": [20387], "hsbcnet.com": [20433], "www.diybanter.com": [4028], "escentu.al": [2024], "fa.lcon.me": [2024], "a.gilani.me": [2024], "online.colchester.gov.uk": [3414], "blog.veracode.com": [17703], "rads.tk": [2024], "dnb.com": [4130], "go.ruffo.me": [2024], "www.piraten-oberpfalz.de": [12749], "mako.si": [2024], "i.suntravel.xyz": [2024], "go.edlisten.com": [2024], "sociol.la": [2024], "sindirect.adsrvr.org": [688], "go.gemod.com.br": [2024], "*.iamplify.com": [7676], "abakus.freenet.de": [6158], "nama.cc": [2024], "s.ta4a.net": [2024], "term.li": [2024], "stream-tv.ga": [2024], "www.bestlawyers.com": [1833], "www.delta.com": [4318], "tdgar.de": [2024], "sealserver.trustkeeper.net": [16853], "ncbi.nlm.nih.gov": [11090], "eaglerockreservation.org": [4996], "videocast.nih.gov": [11090], "u.gijs.me": [2024], "buy.yahoo.com.tw": [18726], "events.ccc.de": [2553], "failover.intel.com": [8207], "rpd.oxfordjournals.org": [12222], "webmail.hcltech.com": [7033], "yelp.com.ph": [18766], "lsi.com": [9113], "zerowater.com": [18945], "pixel.keywee.co": [20705], "bluff.house": [2024], "blve.in": [2024], "www.flybuys.com.au": [5940], "feeds.amung.us": [18363], "odmwheels.com": [11653], "www.general-anzeiger-bonn.de": [6509], "enrollment-info.anthem.com": [19206], "*.webalert.jp": [18149], "www.motherboard.tv": [10648], "threatvault.paloaltonetworks.com": [12378], "on.gooloo.de": [2024], "nz.taobao.com": [16015], "wiki.piratenpartei.at": [12754], "pads.pirateparty.gr": [21419], "dcandies.com": [2024], "www.bloggeek.me": [2116], "bitte.overclockers.at": [12196], "www.editorialmanager.com": [5077], "tbag.net": [2024], "www.erinn.org": [5332], "m.addthisedge.com": [627], "novomoskovsk.beeline.ru": [1778], "stardock.net": [15465], "www.festeirice.com.br": [5746], "www.scapsync.com": [14146], "postident.deutschepost.de": [19816], "duck.co": [4785], "*.gamedesire.net": [6408], "cubetu.be": [2024], "onespace.kcl.ac.uk": [8914], "cms.corporate.walmart.com": [18059], "www.bookshop.theguardian.com": [16364], "rtb.sitescout.com": [14938], "www.truecrypt71a.com": [16840], "falb.me": [2024], "astr.sledcom.ru": [21858], "p.comments.youku.com": [18804], "www.rawgithub.com": [13642], "support.trafficholder.com": [16720], "url.lchau.com": [2024], "oq.oxfordjournals.org": [12222], "pb.switchadhub.com": [15764], "gertenba.ch": [2024], "archiv.mobile.de": [21001], "www.previa.se": [13090], "czar.xxx": [2024], "download.videolan.org": [17775], "kqed.org": [8764], "www.cryptovpn.me": [19734], "jason-3.cnes.fr": [2647], "r24820171.sync.app.asana.com": [1265], "viber.com": [17751], "ful.lc": [2024], "www.wiredsafety.org": [18456], "*.www.eastbay.com": [5008], "corporate.zalando.at": [18877], "onmy.lol": [2024], "drgree.ne": [2024], "robobees.seas.harvard.edu": [7211], "ss14.sinaimg.cn": [14910], "benetech.org": [1809], "*.mediamind.com": [10171], "bcol.barclaycard.co.uk": [1690], "r24627548.sync.app.asana.com": [1265], "cdn.ywxi.net": [18844], "video.qcloud.com": [13346], "73.rkn.gov.ru": [13971], "educationsso.tue.nl": [15940], "support.citrix.com": [3180], "acenet-inc.net": [526], "umd3.mycdn.me": [10866], "spb.startsmile.ru": [21980], "www.envisionfinancial.ca": [5298], "i.grabr.io": [2024], "rashid.tips": [2024], "www.coevorden.nl": [11172], "soyespiritu.al": [2024], "ljx.cc": [2024], "help-en-us.nike.com": [11440], "plt.edu.rosminzdrav.ru": [21674], "sm-dev.kairo.at": [8782], "doc.rt.com": [13528], "cablesurf.de": [2720], "micahflee.com": [10369], "support.dynamicyield.com": [4822], "diav.co": [2024], "www.mysullivannews.com": [10862], "stf.mx": [2024], "user-items.s1.citilink.ru": [19594], "fb.anhc.mx": [2024], "fi.godaddy.com": [6755], "www.catalogue.yandex.by": [18739], "r24626486.sync.app.asana.com": [1265], "z.tomi.cat": [2024], "www.linux.org.ru": [9423], "www.vgtrk.com": [22455], "rmd.x5.ru": [18590], "callcenter.berkeley.edu": [17329], "www.khub.net": [8742], "ihin.es": [2024], "*.kobobooks.nl": [8962], "instantssl.com": [8186], "app.optimizely.com": [12107], "wher.be": [2024], "widget.calameo.com": [2748], "microsoftstudios.com": [10401], "itunes.sfu.ca": [14708], "emily.st": [5200], "www2.bibl.liu.se": [9096], "heml.is": [7315], "bioshockinfinite.com": [1932], "pixel.sojern.com": [21892], "smail.visa.com": [17846], "assembla.com": [1302], "eforms.copeland.gov.uk": [19685], "cam.gy": [2024], "parkrun.com": [12438], "www.pirate-party.us": [21414], "online.maine.edu": [17407], "1.tn.gov": [2024], "fnva.co": [2024], "digitallibrary.norfolk.gov.uk": [21154], "my.netclean.com": [11225], "www.game.co.uk": [6395], "www.facebook.com": [5609], "isites.harvard.edu": [7211], "www.retailsails.com": [13880], "bmt.dj": [2024], "*.plimus.com": [12857], "my.jumpline.com": [8692], "urbina.io": [2024], "www.platt.com": [12825], "www.hdfcbank.com": [7249], "www.subgenius.com": [3133], "c1.aztravel.xyz": [2024], "efm3.com": [2024], "dzn.rocks": [2024], "fieldportal.netapp.com": [11221], "evoapp.co.uk": [2024], "kunden.dwd.de": [19911], "jep.im": [2024], "gocreate.cc": [2024], "ply.li": [2024], "dphrs.in": [2024], "0-60.in": [2024], "connman.net": [3581], "derrierelaporte.cfjlab.fr": [2604], "www.datacenterworld.com": [4183], "signup.ipvanish.com": [7803], "go-to.im": [2024], "bhp.to": [2024], "ytube.ml": [2024], "www.meanstinks.com": [10147], "factbook.ecc-platform.org": [4871], "vip.vodafone.co.uk": [17900], "www.hostvirtual.com": [7526], "mpp2.vindicosuite.com": [17806], "doc.maryno.net": [20928], "pdxinv.us": [2024], "jjco.oxfordjournals.org": [12222], "live.atlas.cz": [1346], "mbmjobs.co": [2024], "edp1.adriver.ru": [588], "rio.mcdonalds.ru": [20941], "mybrand.tmall.com": [22222], "fxly.co": [2024], "nouba.dsi.cnrs.fr": [6174], "testkolab.intevation.de": [8293], "wwc.alicdn.com": [853], "kcsd96.com": [2024], "cheltfe.st": [2024], "cabinet.astrobl.ru": [19264], "mailvelope.com": [9907], "yueqing.1688.com": [51], "relv.so": [2024], "sogeek.co": [2024], "bx.businessweek.com": [2472], "www.uk.adjug.com": [580], "search.library.spu.ac.th": [14224], "buyhom.es": [2024], "*.smfboards.com": [14200], "redbull.co.uk": [13726], "techplus.nvcc.edu": [11627], "prenumeration.idg.se": [7709], "afwkly.com": [2024], "sync.ad-stir.com": [567], "technologyreview.in": [22113], "young.hillingdon.gov.uk": [7413], "utex.as": [2024], "dob.cat": [2024], "danc.tech": [2024], "www.ifttt.com": [7729], "www.omniture.com": [11842], "lib.stanford.edu": [15448], "securem.ikea.com": [7962], "mybrandsho.es": [2024], "pip-s.tips": [2024], "www.ikgalekkerslapen.nl": [7963], "luxr.us": [2024], "pbar.fnal.gov": [5741], "www.profesia.sk": [21505], "www.videotron.com": [17787], "*.jacobinmag.com": [8499], "services.amazon.co.uk": [19170], "fyi.so": [2024], "status.illinois.edu": [17346], "cdils.me": [2024], "zipcar.com": [18973], "homelessworldcup.org": [7490], "wuts.co": [2024], "ar.witness.org": [18472], "staging.quay.io": [21564], "myaccount.laterooms.com": [20784], "partner.justeat.it": [20671], "2x.com": [134], "learningwithoutlimits.educ.cam.ac.uk": [17332], "ic.kommersant.ru": [20746], "oae.uic.edu": [17321], "www.gomez.com": [3547], "shared.sub.infousa.com": [8112], "j0p.nl": [2024], "www.mobil.yandex.com.tr": [18740], "weborder.active24.cat": [19059], "el.3.boardgamearena.com": [2182], "customercare.23andme.com": [100], "www.internacional.elpais.com": [5126], "gcupones.pw": [2024], "ko.libreoffice.org": [9327], "b.clincshop.com": [2024], "wontvotefortrump.democrats.org": [4338], "www.pda.leo.org": [9270], "l24.nl": [2024], "www.elementary.io": [5150], "www.makezine.com": [9928], "go.paul4ta.com": [2024], "ixsystems.com": [7882], "sprtsnt.ca": [2024], "*.getresponse.com": [6567], "ywes.oxfordjournals.org": [12222], "roif.co": [2024], "www.csedweek.org": [2683], "www.mpfemployers.org.uk": [21033], "airbnb.co.nz": [793], "a.sd.ht": [2024], "parisclubportal.state.gov": [17146], "members.cdbaby.com": [19531], "mt.companynet.mbank.pl": [9733], "www.undeb.bangor.ac.uk": [1665], "aboutthedata.com": [485], "go.techyizu.org": [2024], "r.6toys.fr": [2024], "go.martijn.ac": [2024], "dow.it": [2024], "www.forumwizard.net": [6041], "messages.moodle.net": [10614], "veriguide1.cse.cuhk.edu.hk": [2704], "iphoneblog.de": [8339], "www.idi.ntnu.no": [11004], "guard.githost.io": [20253], "info.threatmetrix.com": [16467], "anhui.jd.com": [8434], "recruit.pyeongchang2018.com": [21545], "wlabs.me": [2024], "link.primum.es": [2024], "ecs-store.engineering.osu.edu": [11797], "it.slashdot.org": [15012], "www.wallet.la": [18055], "scip.westberks.gov.uk": [22564], "gst.tocco.ch": [16600], "www.it.lastminute.com": [9177], "f4d.co": [2024], "www.fotpms.plymouth.ac.uk": [12873], "43.rkn.gov.ru": [13971], "tortoisegit.org": [16666], "tucf.co": [2024], "loqu.ca": [2024], "sprt.li": [2024], "*.bitnami.org": [1970], "immunitysec.com": [8011], "ionaudio.com": [7783], "lnk.fahad.space": [2024], "hyperelliptic.org": [7650], "hska.info": [20437], "www.poshliving.com": [12990], "camiel.io": [2024], "www.ubuntu-mate.org": [17180], "assets1.postalheritage.org.uk": [13006], "truspot.in": [2024], "kubuntuforums.net": [9043], "www.greenhouseci.com": [20307], "tcx.x5.ru": [18590], "circle.wustl.edu": [18089], "crut.is": [2024], "l.nali.org": [2024], "count.video.sina.com.cn": [14904], "www.seattleprivacy.org": [14517], "www.awe.sm": [1486], "gradapply.ucsd.edu": [17012], "img.ashampoo.com": [1273], "janson.media": [2024], "nicotine-anonymous.org": [11429], "hay.to": [2024], "mdhj.fr": [2024], "y0utube.ml": [2024], "edelivery.oracle.com": [12116], "stgeorges.nhs.uk": [10953], "4510.co": [2024], "*.tkb.ch": [20683], "extranet.skat.dk": [14963], "lists.gnu.org": [6337], "status.homecomputing.fr": [7487], "www.nti.org": [11001], "fsrwiwi.htwk-leipzig.de": [7596], "m-iclient.utb.ru": [17538], "tycnsys.co": [2024], "vyzva.rtvs.sk": [13536], "l.blivakker.no": [2024], "www.cricketwireless.com": [3791], "cms.vervehosting.com": [17733], "wkzh.ch": [2024], "jouri.be": [2024], "twg.bz": [2024], "fs12.formsite.com": [20139], "gmf.me": [2024], "userhr.centrum.cz": [19547], "we1.djicdn.com": [4029], "archivo.upo.es": [17479], "*.kproxy.com": [8763], "cnblogs.com": [19631], "debconf16.debconf.org": [4257], "api.random.org": [13606], "w.zequi.es": [2024], "fuse.ms": [2024], "community.office365.com": [11782], "m.froscon.de": [6071], "sts.login.vu.nl": [17608], "*.postdocs.ucsf.edu": [17387], "nohun.gr": [2024], "www.nhn.com": [10949], "baku.europaplus.ru": [20034], "otsho.ws": [2024], "hkqf.gov.hk": [20386], "www.clyp.it": [3322], "listes.openstreetmap.fr": [12079], "blog.bitmain.com": [2025], "*.sc.hodesdigital.com": [1825], "risk.thomsonreuters.com": [16456], "apaaspare.me": [2024], "pureftpd.org": [13282], "www.doomworld.com": [4678], "j4t.co": [2024], "tip.soku.com": [21893], "fr.trafficholder.com": [16720], "kwro.se": [2024], "www.hidepay.net": [7400], "*.adjuggler.net": [582], "www.blubrry.com": [19412], "www.beget.com": [19347], "phoeti.co": [2024], "www.certificatedetails.com": [19552], "mtgsy.net": [10404], "cdn.gnd-tech.com": [6332], "advertising.digitalpoint.com": [4484], "informatick.com": [8124], "smills.co": [2024], "www-cdn1.pardot.com": [12428], "inf2011.dosowisko.net": [4683], "wikimedia.org.au": [18388], "socitm.govmetric.com": [6850], "webmail.ovh.net": [12205], "thepiratebay.bypassed.host": [21524], "payperpost.com": [12502], "lh3.google.co.*": [6821], "www.nhsbsadental.nhs.uk": [10953], "geninfo.tk": [2024], "www.rpxcorp.com": [13508], "au.isidewith.com": [20466], "evision.kent.ac.uk": [17402], "my.knightswarm.com": [8957], "i-e-c.in": [2024], "www.zenmate.my": [18917], "ctswholesalesunglasses.com": [2701], "*.oscommerce.com": [12152], "uma.social": [2024], "txsci.net": [2024], "www.pressable.com": [13082], "www.acikakademi.com": [530], "mk.rbth.com": [21596], "*.today.msnbc.msn.com": [9808], "hanford.gov": [7182], "ssk.uk.com": [21960], "extensis.com": [5513], "static.licdn.com": [9098], "www.clearchain.com": [3231], "i-0.us": [2024], "www.paginazero.com.br": [12363], "www.allflicks.net": [19149], "alumni.fit.edu": [5922], "dmitrov.beeline.ru": [1778], "digitec.ch": [4494], "zalando.es": [18877], "pskov.tpprf.ru": [22260], "www.karmankardon.nl": [7200], "hm.com": [7075], "theaba.com": [2024], "opentext.com": [12020], "memberdb.nuug.no": [11017], "space.dtu.dk": [16096], "laeringsplattformen.difi.no": [4452], "tkbbank.ru": [16583], "mhltm.ag": [2024], "endclothing.com": [19993], "tdp.pw": [2024], "bbp.rocks": [2024], "l.ryansicad.com": [2024], "www.mclu.org": [9738], "www.ptka.kit.edu": [8812], "push.web4all.fr": [18148], "hotline.ba.com": [1513], "organdonation.gov.wales": [6843], "thehub.walthamforest.gov.uk": [18061], "go.endr.me": [2024], "gotinder.com": [16544], "comnet.oxfordjournals.org": [12222], "xxxx.qiyukf.com": [21560], "archiveofourown.org": [1196], "freu.be": [2024], "apfmj.biomedcentral.com": [1931], "*.biapy.fr": [1868], "status.nuget.org": [11601], "us.effectivemeasure.net": [5096], "www.seco.admin.ch": [22061], "d.prbrds.com": [13158], "selfhtml.org": [21775], "clubexbox.com": [2024], "tinig.co": [2024], "rsync.net": [14061], "prio.dn.se": [19856], "developer.richrelevance.com": [13927], "stat.lan.ua": [20774], "www.rsload.net": [21687], "hosting.agava.ru": [765], "mysql.vas-hosting.cz": [22428], "college.mirea.ru": [20993], "apps.irs.gov": [7821], "axs.ph": [2024], "wercker.com": [22561], "depaol.is": [2024], "www.tcpacompliance.us": [15858], "studyabroad.state.gov": [17146], "blog.stackpath.com": [21970], "checkout.cnv.com": [19632], "domn.link": [2024], "www.portaldocidadao.pt": [6857], "webdiis.unizar.es": [17441], "www.mapbox.com": [9977], "go.hub.ki": [2024], "static.hosteurope.de": [7524], "snek.us": [2024], "rochester.edu": [13986], "*.v-identity.com": [17547], "iproduction.com": [7809], "*.greystripe.com": [6930], "www.estoniaevoting.org": [5357], "www.kenengba.com": [8862], "i0.letvimg.com": [20818], "www.vungle.com": [17970], "www2.webmetrics.com": [18226], "drchad.us": [2024], "dropbox.wustl.edu": [18089], "status.addthis.com": [626], "l.jmk.me": [2024], "advantageseoservices.com": [703], "vtt.us.es": [17502], "sei.li": [2024], "greasyfork.org": [6888], "fckme.org": [12297], "www.joycasino.info": [20654], "*.neobux.com": [11188], "khabarovsk.rt.ru": [13529], "novorossysk.startsmile.ru": [21980], "wiki.gimp.org": [20246], "ocmb.co": [2024], "sysmex.com": [15820], "store.crimethinc.com": [3793], "freakattack.com": [5583], "nordkappnett.no": [11515], "richmondandtwickenham.greenparty.org.uk": [6908], "vance.pw": [2024], "filmluv.it": [2024], "mnras.oxfordjournals.org": [12222], "accessories.dell.com": [4317], "fun.rambler.ru": [13600], "old.kartoteka.ru": [20689], "portal.cloudpassage.com": [19625], "amebaownd.com": [19185], "snb.fi": [2024], "webcron.org": [22544], "www.nazwa.pl": [11156], "zhouzhi.jd.com": [8434], "www.ameba.jp": [19184], "drlome.li": [2024], "teachingcommons.stanford.edu": [15448], "plews.gd": [2024], "www.gg.gov.au": [6858], "*.factoryexpo.net": [5616], "dz2cdn2.dzone.com": [4090], "external.ak.fbcdn.net": [5689], "detail.tmall.com": [22222], "forensics.sans.org": [14128], "cbsstore.com": [2544], "lists.rpmfusion.org": [14056], "www.borvilag.aldi.hu": [357], "labsafety.jhu.edu": [8449], "mpr.gov-murman.ru": [20293], "www.noip.com": [11482], "48months.ie": [186], "hrfnk.us": [2024], "tsp.ch": [2024], "secure.gettyimages.de": [6604], "dev.globus.org": [6728], "jesusliv.es": [2024], "pt.functions-online.com": [20187], "www.indapass.hu": [8055], "bosfera.bosfera.ru": [19430], "docs.derby.gov.uk": [4367], "crownpa.mx": [2024], "img.revolutiontt.me": [13906], "img.honest.com": [7491], "negativesum.net": [11175], "esiaia-test.rosminzdrav.ru": [21674], "via.vode.com": [2024], "www.sberbankdirect.de": [14384], "pjrc.com": [12291], "techview.link": [2024], "isdewinkelopen.nl": [20470], "cdn-ru.thinksteroids.com": [9750], "images.thalasseo.com": [16241], "how-old.net": [7574], "chatsecure.org": [3036], "s61.cnzz.com": [3328], "torrentz.ht": [22249], "gn3t.ml": [2024], "api.metacpan.org": [10321], "murashi.startsmile.ru": [21980], "wiki.openstreetmap.org": [12015], "aldf.us": [2024], "ipcc.ch": [7793], "share.e-zar.com": [2024], "www.gridcoin.us": [6932], "nbl.osu.edu": [11797], "openknowledge.stanford.edu": [15448], "clb.social": [2024], "www.difficulties.de": [19834], "www.verisigninc.com": [17712], "wiki.edubuntu.org": [5060], "sccjobs.sheffield.gov.uk": [14755], "civil-forum.ru": [19600], "flik.li": [2024], "refugee.ru": [21624], "email.wao.gov.uk": [22524], "www.zerorobotics.org": [18937], "yx.3.cn": [135], "www.strategysignals.com": [15579], "alertscc.com": [14401], "sfwks.co": [2024], "www.pinsentmasons.com": [12179], "ix.equinix.com": [5322], "s.jd.com": [8436], "*.ingenuity.net.au": [8143], "gracecity.ch": [2024], "static-dev.gbot.me": [6791], "git.renater.fr": [13826], "accounts.snapchat.com": [15093], "espd.gsfc.nasa.gov": [10909], "canary.silentcircle.com": [14848], "help.egopay.com": [5103], "www.wellcomelibrary.org": [22560], "idp.mit.edu": [9763], "master.chocolate-doom.org": [3098], "jssam.oxfordjournals.org": [12222], "sebp.due-north.com": [19905], "unifiedtracking.com": [17273], "git.videolan.org": [17775], "www.speedtree.com": [15325], "myfr.us": [2024], "www.education.ie": [19958], "u.malone.io": [2024], "vanacci.eu": [2024], "www.ciphershed.org": [3155], "gentoo.osuosl.org": [21304], "live.piratenpartei.de": [12755], "*.applebees.com": [1154], "aftontrailrun.com": [757], "s13.sinaimg.cn": [14910], "app3.checksconnect.com": [7199], "www-astro.physics.ox.ac.uk": [17359], "jobs.web.cern.ch": [2588], "terrasuisse.migros.ch": [10417], "spb.beeline.ru": [1778], "www.rio2016.com": [21652], "t.co": [15841], "eng.umd.edu": [17351], "orangeplant.co.uk": [21290], "gft.io": [2024], "mate-desktop.org": [9727], "www.onehub.com": [11873], "tinyblue.co": [2024], "scottish.cc": [2024], "nicegraphs.web.cern.ch": [2588], "www.lists.apple.com": [1151], "www.android-arsenal.com": [1047], "pfennigparade.de": [12639], "17a3zase6ofpon2l83lrln7cbrn89kxeihwk0f7j.ipleak.net": [20571], "layerbnc.org": [9194], "mystand.thestandnews.com": [16315], "*.pusherapp.com": [13297], "dn2s.play-asia.com": [12828], "tellapart.com": [22122], "9.asset.soup.io": [15235], "community.kurier.at": [9055], "www.grupoavante.org": [6967], "www.workaround.org": [18530], "search.techmeme.com": [16094], "archives.fedoraproject.org": [5716], "trust-guard.com": [16851], "texaco.com": [16222], "spreadshirt.be": [15371], "chrshnt.com": [2024], "mail.multiseek.net": [10733], "nucleus.nursing.osu.edu": [11797], "jimc.us": [2024], "on.wpxi.com": [2024], "www.attictv.com": [1366], "adwrkmedia.ml": [2024], "wiki.april.org": [1171], "zhongaiyisheng.tmall.com": [22222], "legal.yandex.ua": [18747], "japr.oxfordjournals.org": [12222], "www.cinapalace.com": [3141], "*.poivron.org": [13031], "oracleimg.com": [12116], "habbo.fi": [7112], "gpco.me": [2024], "l.skyrme.net": [2024], "download.geogebra.org": [6522], "www.lordsoftheblog.net": [9619], "m.makanainc.com": [2024], "dnlr.hn": [2024], "hp96315.link": [2024], "cheapassfiction.com": [3048], "marketpress.com": [10018], "www.onenote.com": [11878], "www.gemer.korzar.sme.sk": [14198], "dartmouth.edu": [4151], "www.sexslurp.com": [14699], "piq.to": [2024], "pure-privacy.org": [13281], "tn.ckbe.at": [2024], "craftcoffee.com": [3750], "wiki.sitelock.com": [14934], "www.archaicbinary.net": [1190], "cryptostorm.org": [3882], "icons.newsblur.com": [11366], "www.corbettreport.com": [3661], "channeladvisor.com": [3005], "url.fmk.de": [2024], "ch9.ms": [2985], "paidc.org": [2024], "seoj.in": [2024], "ac.mmstat.com": [10515], "securepaymasterpass.zuji.com.hk": [19021], "oat.re": [2024], "www.youtube.com.my": [18800], "api.bookmyname.com": [2215], "elevenpaths.com": [5152], "artndi.ga": [2024], "www.japlusu.com": [20625], "flexinvestments.net": [5892], "*.tu-harburg.de": [15942], "appload.link": [2024], "it2.nl": [7844], "www.vocoll.com": [22486], "*.spreadshirt.pl": [15371], "audience.tune.com": [22309], "idocs.sviaz-bank.ru": [15740], "*.primus.com": [13111], "www.sspai.com": [21962], "pumodeling.com": [2024], "endur.in": [2024], "citialumninetwork.com": [3172], "nke.me": [2024], "www.staempfliverlag.com": [21972], "www.korndesign.com": [8999], "drugpolicy.org": [4769], "www.tnaflix.com": [16594], "api.mk2.com": [9769], "djcpa.ca": [2024], "*.bodybuilding.com": [2191], "rldd.co": [2024], "pay3.chinabank.com.cn": [3086], "radnhr.com": [2024], "cosmonova.net": [19694], "nfg.me": [2024], "wowimg.zamimg.com": [18878], "*.glimg.net": [6805], "scepsis.ru": [14407], "static.glassdoor.com.au": [20261], "www.bitcoin-contact.org": [1986], "ns3.theregister.co.uk": [22182], "sbac.me": [2024], "nets-danid.dk": [11288], "obermassing.at": [11736], "forum.namecoin.info": [11062], "eotir.link": [2024], "chat.hipercontas.com.br": [20377], "schwabplan.com": [14434], "email-lists.org": [5183], "www.x-pay.cc": [22640], "www.di.dk": [3569], "static.zdbb.net": [18850], "nerd.lavaboom.com": [9186], "eok.edu.rosminzdrav.ru": [21674], "ksut.co": [2024], "chita.europaplus.ru": [20034], "www.kicknews.co.uk": [8893], "vrge.co": [2024], "sogeni.us": [2024], "kycok.sknt.ru": [21851], "darwinbuild.macosforge.org": [9835], "hit.chatdep.com": [2024], "wf.typotheque.com": [16989], "cheshire.police.uk": [19572], "www.ccouc.ox.ac.uk": [12220], "br.redhat.com": [13735], "unet.by": [22367], "1.12-changelog.wesnoth.org": [18298], "vfd2dyn.vodafone.de": [17901], "a15e.com": [2024], "i.sendly.com": [2024], "www.kimberly-clark.com.*": [8905], "hhg.osu.edu": [11797], "*.eis.de": [5116], "genderstats.un.org": [17057], "awac.x5.ru": [18590], "trstmh.oxfordjournals.org": [12222], "315.taobao.com": [16015], "www.fairphone.com": [5625], "bartleby.com": [1711], "hertz247.nl": [7354], "curseapp.net": [3927], "theora.org": [16416], "hci.tech": [2024], "g39.co": [2024], "cdn.xs4all.nl": [18625], "americancensorship.org": [5769], "russian-malta.com": [21700], "2008mail.sina.com.cn": [14904], "freeporngif.com": [6121, 6122], "eurheartj.oxfordjournals.org": [12222], "3s.rs": [2024], "www.buttercoin.com": [2479], "krnl.me": [2024], "armizon.admtyumen.ru": [19082], "tvaddons.org": [22322], "dc3.co": [2024], "rwy.bz": [2024], "www.chooseprivacyweek.org": [19585], "sso.secureserver.net": [14574], "ap.mnocdn.no": [755], "www.ouifm.fr": [12171], "companies.naukri.com": [11146], "r.vsoci.al": [2024], "www.oblic.com": [11646], "www.pugetsystems.com": [21540], "bloom.bg": [2024], "kvid.tv": [2024], "poderpda.com": [12888], "ealing.greenparty.org.uk": [6908], "www.treyperry.com": [16793], "www.questionnaires.ecn.ulaval.ca": [17319], "tfi.io": [2024], "good1.us": [2024], "investsmart.com.au": [8311], "www.hslu.ch": [7589], "embrmr.ch": [2024], "*.eventim.co.uk": [5433], "sbth.net": [2024], "myaccount.houstonchronicle.com": [7572], "forum.t411.me": [15847], "wfplne.ws": [2024], "i.flp.tw": [2024], "www.rdm.ox.ac.uk": [17359], "myjobs.gloucestershire.gov.uk": [6730], "bit.skyjedi.com": [2024], "cache1.neodevlda.netdna-cdn.com": [11188], "meshfi.re": [2024], "ssl2buy.com": [14242], "ps.boell.org": [19422], "www.leadformix.com": [9207], "vsltd.co": [2024], "ads9.contentabc.com": [3614], "act.350.org": [140], "2dud.es": [2024], "daydeal.ch": [19774], "defr.dict.cc": [4442], "e-hi.us": [2024], "marketing.sharethrough.com": [14742], "adacore.com": [602], "geeknetmedia.com": [6488], "www.pipping.org": [12734], "dacha.fbk.info": [5691], "www.netviewer.com": [11299], "support.balabit.com": [1647], "comparitech.com": [3516], "checkout.bernina.com": [1827], "www.vm.baden-wuerttemberg.de": [19302], "www.ntchosting.com": [11000], "skrilnetz.net": [14985], "vllmr.de": [2024], "greyhound.ca": [6929], "casper.infradead.org": [8135], "searchdatacenter.de": [16083], "khrt.co": [2024], "www.meetup.com": [10231], "usmail.opensocietyfoundations.org": [21280], "lat.gr": [2024], "link.taufiq.me": [2024], "www.beget.ru": [1782], "careers.kch.nhs.uk": [10953], "business.visa.com": [17846], "eas8.emediate.eu": [5194], "apps.uat.communities.coverity.com": [3731], "interactivemediaawards.com": [8237], "assets.halowaypoint.com": [7165], "public.enthought.com": [5286], "i03.i.aliimg.com": [861], "sheamortgage.com": [8443], "investorflow.com": [14862], "markets.on.nytimes.com": [11041], "auth.awempire.com": [700], "jura.ch": [22061], "www.mix-computer.de": [9767], "humankindn.es": [2024], "virusec.com": [17845], "craft-staging.atomicobject.com": [1354], "cancer.fi": [15809], "www.pavpanchekha.com": [12495], "jpg.st.audiko.net": [1384], "vbvl.be": [2024], "p.3.cn": [135], "link.ushmid.com": [2024], "trac.linuxcounter.net": [9405], "rwg.li": [2024], "videogamer.com": [17782], "www.qrsolutions.com": [13331], "publicwhip.org.uk": [13262], "spinoff.nasa.gov": [10909], "i.i4shivam.com": [2024], "propolevskoy.ru": [21516], "mitls.org": [10363], "l.leituras.eu": [2024], "ipdt.us": [2024], "my.usembassy.gov": [22406], "spncrbg.gs": [2024], "parship.nzz.ch": [21216], "myplaydirect.com": [10819], "www.onlinenotebook.hu": [9167], "adultswim.com": [19094], "das-labor.org": [4152], "murmanskaya-obl.beeline.ru": [1778], "fpd.gsfc.nasa.gov": [10909], "r24625444.sync.app.asana.com": [1265], "api.data.gov.hk": [19761], "thebea.st": [2024], "www.mouseblocker.com": [10663], "vl.europaplus.ru": [20034], "ga.youcanbook.me": [18794], "taskp.se": [2024], "images.iop.org": [8196], "www.odont.uio.no": [17414], "im.kommersant.ru": [20746], "*.townnews.com": [16689], "www.postaffiliatenetwork.com": [13000], "erik.gs": [2024], "ru.play-asia.com": [12828], "skipb.co": [2024], "www.slides.com": [15030], "rd.io": [13655], "lists.tip.net.au": [15885], "online-perevod.unistream.ru": [17291], "eforms.redbridge.gov.uk": [13742], "cdn.connect.mail.ru": [9891], "hungary.usembassy.gov": [22406], "cjfe.org": [2630], "us.ynuf.alipay.com": [864], "knihy.nic.cz": [11418], "*.tmp.com": [15895], "is.def.lv": [2024], "nips.cc": [10970], "sabayon.org": [14275], "l.rc5.co": [2024], "internetlivestats.com": [8282], "cu-lead.us": [2024], "airbornescience.nasa.gov": [10909], "thema.sh": [2024], "www.systemoverlord.com": [15826], "images.miniclipcdn.com": [10461], "click-sec.com": [3242], "rickmans.me": [2024], "simba3.web.cern.ch": [2588], "www.gtk-apps.org": [6370], "www.moh.nhs.uk": [10953], "www.projet-plume.org": [13190], "scintilla.utwente.nl": [14449], "homr.us": [2024], "www.lambda-tek.com": [9151], "www.cosic.esat.kuleuven.be": [8832], "ulaval.ca": [17319], "static.usatoday.com": [17111], "*.apply2jobs.com": [1157], "witness.org": [18472], "jhsl.ca": [2024], "www.necu.org": [11170], "kompakt.me": [2024], "m.netbet.fr": [11224], "webmail.comscore.com": [3454], "dyn.webtraffic.se": [18260], "www.ci.uchicago.edu": [17334], "my.xmission.com": [18620], "inread.de": [2024], "b-gift.biligame.com": [1903], "bman.tv": [2024], "forum.moztw.org": [10704], "funker530.com": [6244], "mirror.debianforum.de": [4264], "www.payments.bolton.gov.uk": [19424], "r-vr.tk": [2024], "www.zanox.com": [18885], "amen.pics": [2024], "ndtv.in": [2024], "moo.ma": [2024], "a3baf7a6-b0f9-c786-839e-70284aa81dfa-rum.cdnvideo.ru": [19536], "kun.cr": [2024], "33option.com": [139], "adm.to": [2024], "merchant.linksynergy.com": [9397], "r24626644.sync.app.asana.com": [1265], "international.thenewslens.com": [16302], "ofertas.one": [2024], "img4.picload.org": [12693], "harlandclarkewebsmart.com": [7199], "contactus.com": [3608], "services.bournemouth.gov.uk": [2268], "lightwidget.com": [20838], "img.icbdr.com": [20475], "www.exactag.com": [5467], "carphonewarehouse.com": [2871], "www.insa-lyon.fr": [7777], "lambda.gsfc.nasa.gov": [10909], "cdphga.org": [2024], "on.11alive.com": [2024], "youtube.de": [18800], "smokefree.gov": [21872], "cuaes.cornell.edu": [3676], "analytics.zipy.co.il": [18975], "affiliate.montereybayaquarium.org": [10606], "kvick.ly": [2024], "*.rediris.es": [13722], "jake.mx": [2024], "peet.me": [2024], "audioboom.com": [19272], "www.theconversation.edu.au": [16338], "www.realworldocaml.org": [13689], "login.aliexpress.com": [854], "www.sysadmincasts.com": [15815], "my-chrome.ru": [21056], "holidayshirt.co": [2024], "www.fredandpickles.co.uk": [6092], "repo.parabola.nu": [12412], "l.dmzapps.com": [2024], "www.aldi.pt": [357], "thumbs.media.smithsonianmag.com": [15073], "api.kartoteka.ru": [20689], "ubmelectronics.com": [16999], "nnovgorod.rt.ru": [13529], "www.emily.st": [5200], "mrns.us": [2024], "ritchart.com": [2024], "www.humanityplus.org": [7618], "*.deepfield.net": [4283], "www.gavinnewsom.com": [6451], "efcb.co": [2024], "marthastewartweddings.com": [10041], "www.hertz.co.za": [7362], "indi.uno": [2024], "www.nadim.computer": [11048], "www.aldi.pl": [357], "internet.csr.nih.gov": [10966], "tbe.taleo.net": [15986], "imgking.co": [20505], "www.rttire.com": [13537], "vitalsource.com": [22473], "www.nobitcoinlicense.org": [11481], "ets.pw": [2024], "omutinka.admtyumen.ru": [19082], "seal.osu.edu": [11797], "www.logika.net": [9567], "extratorrent.works": [5516], "webmail.cs.cf.ac.uk": [2847], "www.nrablog.com": [21178], "psal.cs.drexel.edu": [4753], "discourse.soylent.com": [15267], "ad.search.ch": [14504], "www.sundayworld.com": [15664], "*.bighugelabs.com": [1882], "www.siia.net": [15166], "pirateproxy.tv": [22174], "support.braintreepayments.com": [2292], "asset-2.soupcdn.com": [15236], "fr.okcupid.com": [11809], "www.padlister.com": [12351], "s.couples.lv": [2024], "pda-passport.yandex.com.tr": [18740], "ellory.us": [2024], "mykl.us": [2024], "locality.com": [20863], "my.commbank.com.au": [3480], "mivsp.cia.gov": [2612], "*.minted.com": [10472], "card2card.unistream.ru": [17291], "brooklinecollege.edu": [2380], "*.renttherunway.com": [13833], "ctftime.org": [2699], "i2.hdslb.com": [20358], "j-ai.tk": [2024], "fflo.es": [2024], "4-s.imgbox.com": [7997], "www.sweetslyrics.com": [15748], "*.getharvest.com": [6562], "www.fife.gov.uk": [20087], "elearnsecurity.com": [4920], "gogoinflight.com": [6790], "rab-asr.ch": [22061], "uds.moscow": [2024], "ipv4.doesnotwork.eu": [4622], "roadiq.axosoft.com": [1504], "gbg2.bundesnetzagentur.de": [2445], "supportkb.riverbed.com": [13964], "lequi.pe": [2024], "tune.yandex.com.tr": [18740], "ucook.info": [2024], "i.rafam.co": [2024], "responder.wt-safetag.com": [18263], "www.twitch.tv": [16961], "londonist.com": [9596], "www.jdeslippe.com": [8481], "vodafone.co.uk": [17900], "blog.bitmex.com": [1962], "dgrt.co": [2024], "cdn.goroost.com": [20292], "www.structuralengineering.de": [7595], "www.fftlive.org": [5558], "chorus.vgtrk.com": [22455], "mobileimages.lowes.com": [9645], "downloads.lede-project.org": [20798], "*.auctions.godaddy.com": [6755], "60ato.ms": [2024], "cndle.co": [2024], "tmovier.me": [2024], "www.sme.sk": [14198], "isolde.web.cern.ch": [2588], "carbonwind.net": [2845], "unitednuclear.com": [17297], "brave.piwikpro.com": [21424], "wosu.pm": [2024], "zcarc.com": [7371], "ws20.bart.gov": [1708], "bugzilla.libav.org": [9306], "*.gunadiframework.com": [509], "www.stihi.ru": [21993], "online.meo.pt": [10286], "mysql.com": [10825], "pch.im": [2024], "*.podbean.com": [12885], "postofficeshop.co.uk": [13003], "amnesty.org": [1000], "tmu-datacloud.tealiumiq.com": [16060], "llc.oxfordjournals.org": [12222], "partners.drweb.com": [4776], "bmg.xyz": [2024], "vanessatorrivilla.com": [7976], "git.libav.org": [9306], "www.virt-manager.org": [17828], "y.zuzo.me": [2024], "thevideo.me": [16318], "on.ssh.io": [2024], "www.itmanie.cz": [7851], "avadirect-freedomusainc1.netdna-ssl.com": [1462], "www.mcitizen.com": [9883], "dnb.no": [4049], "elft.nhs.uk": [10953], "dev.getclouder.com": [6554], "mediacentre.vodafone.co.uk": [17900], "dspcl.co": [2024], "mikeg.biz": [2024], "dot.kosk.me": [2024], "www.sanomakauppa.fi": [21732], "mi-ms.com": [9999], "m7.baidu.com": [1641], "filemobile.com": [5786], "ocaml.janestreet.com": [8522], "www.alliance-media.org.uk": [19150], "ispbilling.com": [16887], "lgscout.com": [9611], "manual.calibre-ebook.com": [2757], "sir.unizar.es": [17441], "www.globalpolicy.org": [6711], "piglit.freedesktop.org": [6102], "kng5.tv": [2024], "blogs.forbes.com": [5995], "www.dynatech.de": [4826], "support.linksys.com": [9398], "tllntd.co": [2024], "xroxy.com": [18682], "siteadvisor.com": [14930], "*.c13.hesecure.com": [7373], "www.medicalxpress.com": [10200], "www.w3.org": [17980], "bareismls.info": [2024], "archive.fo": [1194], "dsam.co": [2024], "www.hslda.org": [7091], "buildsys.contribs.org": [3621], "ensq.dict.cc": [4442], "summit.darkreading.com": [4143], "on.ramon82.com": [2024], "portal.rit.edu": [13493], "supervisor.elearnsecurity.com": [4920], "9.play-asia.com": [12828], "billycreative.com": [1915], "mirrors.fedoraproject.org": [5716], "www.imageoptim.com": [7981], "chaozhou.jd.com": [8434], "drama.epros.co": [2024], "esi2calculator.hmrc.gov.uk": [7076], "filmindep.org": [2024], "www.trendweight.com": [16786], "authzth.alipay.com": [864], "www.online.osu.edu": [11797], "cquotient.com": [19711], "wolfga.ng": [2024], "proxy.org": [13224], "www.gigafreak.net": [6630], "bitvisor.org": [1976], "screencast-o-matic.com": [14471], "uimfaq.us": [2024], "leap-leapj.axonify.com": [1502], "s.iterar.co": [2024], "fps.re": [2024], "claro.tl": [2024], "75.rkn.gov.ru": [13971], "cxsecurity.com": [3943], "app.stackpath.com": [21970], "foscam-bg.com": [6045], "pekwm.org": [12534], "informationweek.com": [8126], "git24.rostrud.ru": [21677], "www.webmail.byte.nl": [2501], "golos-ameriki.ru": [20285], "mms.10gen.com": [22], "12isw227zkcluutzd8clz1rpxkr7tqr77x46pwuc.ipleak.net": [20571], "call.beget.com": [19347], "dogsbodyhosting.net": [4626], "uploading.com": [17478], "fluxcards.de": [5937], "go.aps.org": [2024], "ut03.xhcdn.com": [18605], "rdn.link": [2024], "www.vwp.su": [17974], "wholesale.edgecast.com": [5070], "mail.happyassassin.net": [7192], "www.coolkeywest.com": [3644], "secure.jbeekman.nl": [8427], "wikimedia.de": [18388], "orywn.co": [2024], "www.navteqmedia.com": [10914], "aliyunhelp.oss.aliyuncs.com": [19143], "developer.basespace.illumina.com": [7971], "jar.land": [2024], "hrs.104.com.tw": [18], "arbitration.oxfordjournals.org": [12222], "karpaty.lanet.ua": [20780], "farecompa.re": [2024], "docs.solanolabs.com": [21895], "cdn.w55c.net": [17984], "theweek.com": [16394], "yvar.ca": [2024], "p7.pstatp.com": [16680], "autoho.me": [2024], "hile.mn": [2024], "froglabs.froscon.de": [6071], "code.fairphone.com": [5625], "huboard.com": [20443], "*.startssl.net": [15472], "mailinglist.science.energy.gov": [5243], "leme.digital": [2024], "getgophish.com": [20239], "rutube.ru": [21704], "www.clp.com.hk": [2636], "www.znak.com": [22721], "unmaintained.git.collabora.co.uk": [3418], "ad.targetingmarketplace.com": [1380], "go.samanage.com": [2024], "16cmuqm2lax9n6o1oorg18ob5mfos5xr6hxtx7cy.ipleak.net": [20571], "b-home.bezeq.co.il": [19362], "www.bclaconnect.ca": [1533], "testblog.auto.ru": [19276], "net.geo.opera.com": [12086], "joshfactory.com": [2024], "umd.edu": [17351], "diter.es": [2024], "www.gephi.org": [6536], "yk.onli.ca": [2024], "www.on.lung.ca": [11924], "collectifstoptafta.org": [3421], "amd.com": [970], "nugget.dianping.com": [19830], "mysql9.vas-hosting.cz": [22428], "help.zscaler.com": [19012], "newsthatmoves.org": [21129], "gogt.it": [2024], "support.ssl.com": [14241], "mp.streamamg.com": [22006], "s67.cnzz.com": [3328], "n3.to": [2024], "kolpino.startsmile.ru": [21980], "assets1.vzaar.com": [17976], "links.dylanb.me": [2024], "l.richg.info": [2024], "gdtl.osu.edu": [11797], "www.tbib.org": [16048], "bls.properties": [2024], "testsecurepay.rsb.ru": [14058], "megg.co": [2024], "*.medical-treatments-management.com": [10202], "kaliningradskaya-obl.beeline.ru": [1778], "bish.al": [2024], "www.manageengine.com": [9951], "dragonbyte-tech.com": [4733], "how-to-box.com": [7576], "stgraber.org": [15419], "*.f3images.com": [5535], "asset1.betterplace.org": [1857], "crstl.uk": [2024], "elementary.io": [5150], "cldbrr.net": [2024], "idelreal.org": [20481], "berkman.harvard.edu": [7211], "dsgnr.ca": [2024], "torrent.islamhouse.com": [8368], "chimeric.de": [3084], "yota.ru": [22685], "researchweb.watson.ibm.com": [7679], "earth.play-asia.com": [12828], "rwsis.com": [2024], "charities.org": [3014], "*.cafepress.com": [2730], "www.directbox.tv": [4517], "iosdevtips.com": [2024], "medici.alicdn.com": [853], "ubermedia.com": [17166], "freq.care": [2024], "www.sahih-bukhari.com": [21714], "neilwrit.es": [2024], "gapintl.co": [2024], "account.1and1.com": [69], "admin-staging.mtree.mycelium.com": [21063], "*.imrworldwide.com": [8027], "kwi.lt": [2024], "www.infoculture.ru": [20528], "lists.immunityinc.com": [8011], "lists.grok.org.uk": [6943], "www.afford.com": [748], "grabcad.com": [6863], "www.register.com": [13793], "yy.cx": [2024], "metal-detector-town.com": [10330], "static.trustedreviews.com": [16863], "thefind.com": [16404], "cudahandbook.to": [2024], "www.pollendiary.com": [12927], "www.bitrise.io": [19393], "emfcamp.org": [19987], "freeworld.thc.org": [15875], "defensetravel.dod.mil": [17109], "*.cfr.org": [3702], "datacenter.cj2.nl": [2629], "delivery.c.switchadhub.com": [15764], "citto.admtyumen.ru": [19082], "beta.hrw.org": [7616], "jlie.in": [2024], "www.harland.net": [7199], "ems.bolton.gov.uk": [19424], "i.ngx.cc": [11415], "www.sbi.co.in": [14140], "static.hootsuite.com": [7497], "gettyimages.co.jp": [6604], "dzn.im": [2024], "t.ajeya.me": [2024], "ww1270.smartadserver.com": [15049], "po.imhd.sk": [8004], "*.phobos.apple.com": [1151], "www.gay-lounge.net": [20211], "go.sto.tw": [2024], "*.uimserv.net": [17035], "baustellen.strassen.baden-wuerttemberg.de": [19302], "agmetri.ca": [2024], "millersa.mu": [2024], "www.californiasunday.com": [2766], "images.amcnetworks.com": [19183], "demo.sipgate.io": [14923], "pensionaltair.northyorks.gov.uk": [21161], "www.piwik.iwi-i.info": [20617], "booking.hkjc.com": [20384], "n.jui.cc": [2024], "www.quadrigacx.com": [13374], "eplanning.derby.gov.uk": [4367], "red.datart.cz": [3998], "rsctr.me": [2024], "www1.mediafire.com": [10166], "databricks-prod-cloudfront.cloud.databricks.com": [4189], "www.ggb.hannover.fau.org": [5543], "solerbls.com": [2024], "junglee.com": [8696], "wmag.co": [2024], "beediecommunity.sfu.ca": [14708], "securepoint.de": [14572], "ithelp.centennialcollege.hku.hk": [20387], "link.stuart.sg": [2024], "*.hoovers.com": [7499], "www.livingsocial.com": [9530], "s10.postimg.org": [13024], "kosmetik-per-klick.de": [10210], "epu.iciciprulife.com": [7917], "etfgui.de": [2024], "mward.us": [2024], "mappsprd.unicef.org": [17069], "smartling.com": [15061], "www.ivdopia.com": [17672], "fz.htwk-leipzig.de": [7596], "grupoavante.org": [6967], "on.knicks.com": [2024], "youtube.mk": [18800], "leighmur.me": [2024], "www.effectivemeasure.com": [5095], "www.reconingspeakers.com": [15307], "joeyh.name": [8622], "zyvoxassist.com": [18865], "log.sc": [2024], "mesamatrix.net": [10312], "glaad.org": [6318], "phparch.com": [12682], "scar.to": [2024], "sfhost.info": [2024], "www.codemilltech.com": [3354], "l.aitor.is": [2024], "spelthorne.gov.uk": [21934], "mload.freenet.de": [6158], "www.tsdd.org": [15926], "www.eastbayteamservices.com": [5009], "delivery.api.qbrick.com": [13345], "www.bitpay.com": [1967], "mobile.yandex.by": [18739], "static.amebaownd.com": [19185], "owa.bury.gov.uk": [19476], "linphone.org": [9403], "pop3.spnet.ru": [21939], "www.londondrugs.com": [9591], "cdn1.xamarin.com": [18629], "cdf.capital": [2024], "eprize.net": [4937], "glue.umd.edu": [17351], "bmail.berkeley.edu": [17329], "mybwd.blackburn.gov.uk": [19401], "cyg.com.es": [2024], "cdn.taboola.com": [15963], "lophtus.me": [2024], "upmedia.plymouth.ac.uk": [12873], "c.hezarnews.com": [2024], "rjvn.co": [2024], "ingdirect.com.au": [7773], "kazan.rt.ru": [13529], "download.flashrom.org": [5884], "rfm.clothing": [2024], "temando.com": [16175], "gemal.to": [2024], "us-sonar.sociomantic.com": [15146], "blog.bartbania.com": [1709], "seals.trustsign.com.br": [16854], "appvill.co": [2024], "pareviews.state.gov": [17146], "stabs.js.org": [20657], "rate.taobao.com": [16015], "kjlr.it": [2024], "galaxytint.com": [2024], "con.ai": [2024], "t.cot.mn": [2024], "img3.doubanio.com": [19889], "t.caplanesq.com": [2024], "devinslick.com": [2024], "www.wien.gv.at": [22588], "www2.nationalreview.com": [11112], "mobile.xhamster.com": [18606], "robbshi.re": [2024], "forms.monmouthshire.gov.uk": [10598], "r24820210.sync.app.asana.com": [1265], "h.virus.mu": [2024], "jenkins.ring.cx": [13947], "jark.us": [2024], "rev.com": [13894], "community.kde.org": [8735], "rapbattles.top": [2024], "wiki.flirble.org": [16267], "frascatiproducties.nl": [6086], "jbgrimes.us": [2024], "transplantationresearch.biomedcentral.com": [1931], "everplans.com": [5441], "chatpro.ap.dell.com": [4317], "disco.uv.es": [17544], "demo.globalpay.westernunion.com": [18310], "thinkfaster.co": [16433], "yvo.lv": [2024], "ostel.co": [12161], "civitatis.link": [2024], "britishporn.it": [2024], "myspace.com": [10888], "x.nxnw.net": [2024], "sypa.us": [2024], "cdn2.xvideosx.tv": [18627], "toysrus.com": [16694], "billingsupport.checkpoint.thomsonreuters.com": [16456], "*.unblocked.li": [17237], "fb.mqw.at": [2024], "wheelhouse.link": [2024], "www.ubuntu-nl.org": [17181], "daad.de": [6538], "www2.technologyreview.com": [16107], "www.watsi.org": [18101], "www.zwijndrecht.nl": [11172], "s20.postimg.io": [13024], "a-v.me": [2024], "www.foodsharing.de": [20133], "nid.ph": [2024], "123p1.sogoucdn.com": [15169], "www.theticketfactory.com": [16490], "ed2.it": [2024], "bcs.img.r1.91.com": [246], "billing.camelhost.net": [2786], "img2.glassdoor.co.in": [20259], "to.secretlab.co": [2024], "db.flightradar24.com": [20119], "ukk.li": [2024], "niskanencenter.org": [11463], "admin.linuxfoundation.org": [9427], "compiz-fusion.org": [3526], "thecompassionclub.org": [16337], "deburl.com": [2024], "www.silicon.com": [14851], "udmurtia.tpprf.ru": [22260], "www.woltlab.com": [18493], "status.stormpath.com": [15568], "mail.maryno.net": [20928], "4sl.ee": [2024], "onapp.com": [11847], "www.myfolder.net": [10871], "i.nan.do": [2024], "lovemoney.com": [9639], "si.hkuspace.hku.hk": [20387], "myshr.med.usc.edu": [17366], "go.fomps.org.uk": [2024], "webmail.hslu.ch": [7589], "www.ezgram.com": [4992], "kpbs.us": [2024], "m.ipleak.net": [20571], "rail.media": [2024], "piwik.uninett.no": [17280], "wildcardcorp.com": [18396], "touch.meetic.pt": [10227], "certifiedsecure.com": [2977], "images.recordedbooks.com": [21609], "img.tradepub.com": [16718], "www.haskell.org": [7220], "lbs.netease.im": [11229], "lipetsk.psbank.ru": [13231], "payconnect.net": [4885], "slng.it": [2024], "ssl.perfora.net": [21388], "explr.it": [2024], "studentservices.leeds.ac.uk": [17403], "s.gotomeeting.com": [6769], "shanghaicenter.harvard.edu": [7211], "www.greenit-bb.de": [6900], "login.thetimes.co.uk": [16538], "rtems.org": [13532], "sh.731my.com": [2024], "mbl.is": [10123], "5sgif.me": [2024], "yun.reg.163.com": [50], "elearning.zg.ch": [22061], "faithbrid.ge": [2024], "adig.in": [2024], "*.ebay.com.sg": [4866], "johnn.eu": [2024], "ongo.io": [2024], "www.intersectalliance.com": [8291], "www-test.sec.gov": [17104], "app.etao.com": [4965], "*.tchmachines.com": [16672], "iqualita.link": [8349], "allnativ.es": [2024], "www.vex.net": [22452], "ono.es": [11919], "novgorod.rt.ru": [13529], "madam-magazzino.friday.ru": [20175], "washingtonpostmedia.com": [18085], "www.strasweb.fr": [15575], "fahad.to": [2024], "www.cs.vu.nl": [17608], "ssegs.btrll.com": [2339], "lesosibirsk.startsmile.ru": [21980], "y.stbr.co": [2024], "b.shashi.co": [2024], "nl.3.boardgamearena.com": [2182], "www.mytalkdesk.com": [21074], "es.3.boardgamearena.com": [2182], "npi.org.uk": [10987], "login.ptc.com": [21532], "eduid.cz": [5087], "www.ifolor.ch": [20488], "patchwork.linux-mips.org": [9428], "help.squat.net": [21955], "on.coop": [2024], "dedicacaotta.vc": [2024], "gfm.link": [2024], "l.wedothings.fr": [2024], "skm.io": [14981], "efesto.eigenlab.org": [19971], "www.open-mesh.com": [11943], "rmhl.co": [2024], "url.adamfly.me": [2024], "denverre.us": [2024], "vvztahy.vutbr.cz": [17609], "thepiratebay.id": [22174], "mundi.vc": [2024], "blog.tivi.de": [22709], "interactivepython.org": [20550], "arkane-studios.com": [1223], "diningservices.wustl.edu": [18089], "testi.es": [2024], "nia.nih.gov": [11090], "audac.us": [2024], "irsa.ipac.caltech.edu": [2771], "malvernhills.greenparty.org.uk": [6908], "r24617924.sync.app.asana.com": [1265], "thepiratebay.is": [22175], "publons.com": [21538], "z3.sinaimg.cn": [14910], "xinhui.jd.com": [8434], "treeto.ps": [2024], "cda.click": [2024], "frcc-cng.net": [2024], "linuxplumbersconf.org": [9411], "i.paulb.gd": [2024], "clty.io": [2024], "*.slimerjs.org": [21860], "theblog.blip.tv": [2098], "uasedu.mx": [2024], "manilla.7eer.net": [233], "stat.pskovline.ru": [21530], "thefun.gs": [2024], "thumbnailer.thestudio.condenast.com": [3554], "quattroplay.com": [13393], "api.vpsfree.cz": [22506], "www.hr.uillinois.edu": [17034], "shop.brainyquote.com": [2293], "tramlin.es": [2024], "jzhao.link": [2024], "www.datart.cz": [3998], "go.infonol.com": [2024], "jp.actu.jp": [2024], "coinmarketcap.com": [19643], "git.lavabit.com": [9185], "alkasir.com": [869], "tv.yandex.com.ua": [18741], "to.sfox.com": [2024], "prfct.in": [2024], "z-st.co": [2024], "teacherservices.education.gov.uk": [19957], "www.spatialpoint.com": [15302], "www.professionalprivacypolicy.com": [6698], "lone.im": [2024], "aka-cdn-ns.adtechus.com": [692], "casa.sapo.pt": [14131], "fidose.com": [2024], "rostovnadonu.biglion.ru": [19375], "jfs.jcloud.com": [8555], "counters.gigya.com": [6641], "www.mjam.net": [10510], "unclineberger.org": [17060], "news.cornell.edu": [3676], "31.mvd.ru": [21055], "www.scraporchard.com": [14466], "nachrichtendienstgesetz.ch": [21082], "piazza.com": [12690], "fb.buzzt.at": [2024], "startengine.com": [15473], "fundacion.walmart.com": [18059], "zamos.ru": [22706], "moscow.sci-hub.la": [14436], "ntwrvn.nl": [2024], "www.mediamatters.org": [10170], "www.tittygram.com": [16578], "di.mojok.co": [2024], "font.thoughtbot.com": [16462], "www.spu.ac.th": [14224], "images.brainyquote.com": [2293], "c2rsetup.officeapps.live.com": [9495], "www.greenpolkadotbox.com": [6910], "cap.stanford.edu": [15448], "md.hkgolden.com": [7058], "www.euromail.se": [16158], "secure.democraticservices.coventry.gov.uk": [19705], "static.148apps.com": [46], "www.snapchat.com": [15093], "gr.boell.org": [19422], "afisha.ru": [19107], "url.elcampo.in": [2024], "www.princeton.edu": [13113], "rbselfservice.lewes.gov.uk": [20819], "www.xs4all.nl": [18625], "mrpa.co": [2024], "lists.ffmpeg.org": [5556], "get.as": [2024], "m.20minutes.fr": [94], "presenter.api.qbrick.com": [13345], "mya.godaddy.com": [6755], "cca.click": [2024], "ustrust.bankofamerica.com": [1669], "gojam.in": [2024], "cp.rackspace.com": [13566], "*.citizen-times.com": [1274], "platinumskincare.com": [12824], "openapi.irknet.ru": [20581], "www.aircargoworld.com": [16999], "vletrain.lsbu.ac.uk": [9111], "www.webthumbnail.org": [18256], "cob.as": [2024], "gotoi.sg": [2024], "*.spreadshirt.be": [15371], "leadnow.ca": [9215], "oswatch.net": [11717], "actel.com": [543], "l.sudkish.me": [2024], "www.iptorrents.us": [7802], "thetvdb.com": [16424], "go.jndm.net": [2024], "annalindhfoundation.org": [19202], "images.videolan.org": [17775], "newsletters.unicef.org.uk": [17068], "*.qip.ru": [13326], "f3.hitravel.xyz": [2024], "vaul.lastpass.com": [9175], "lp.liverail.com": [9508], "uat-web1-eipe.imercer.com": [20502], "www.opintoluotsi.fi": [12092], "getg.lu": [2024], "www.eugenekolo.com": [20030], "swapbotembed-stage.tokenly.com": [22229], "bruhin.us": [2024], "www.kovidgoyal.net": [9011], "ias-portal.nso.ru": [21192], "eatw.in": [2024], "moverall.com": [10672], "linux.org.au": [9422], "www.atomicinsights.com": [1353], "e.uprr.com": [22392], "ot12.snstatic.fi": [14208], "mtcr.tc": [2024], "kg9.eu": [2024], "www.theproxybay.website": [22174], "www.nrc.gov": [17301], "dslrmz.com": [2024], "adviceguide.org.uk": [716], "mb2.me": [2024], "sl.libreoffice.org": [9327], "static0.startnext.com": [15478], "*.schetu.net": [14413], "www.soccerpunt.com": [7736], "assets1.roadtrippers.com": [21659], "jobs.businessinsider.com": [14893], "www.sedo.co.uk": [14603], "bellausa.uno": [2024], "store.csiac.org": [2684], "yielaw.oxfordjournals.org": [12222], "www.ada.osu.edu": [11797], "office.cmbchina.com": [2639], "app.unbounce.com": [17239], "slamdmg.co": [2024], "*.explosm.net": [5501], "gitlab.common-lisp.net": [3487], "0tr9qnia4qnm2p0aduayljy88jcgtw6rrh0nmtm3.ipleak.net": [20571], "www.mivamerchant.com": [10501], "foodwise.info": [2024], "tombot.ch": [2024], "evreyskaya-ao.auto.ru": [19276], "rss.sciencedirect.com": [21750], "webmaster.streamray.com": [15521], "open.alipay.com": [864], "earthdata.nasa.gov": [10909], "grid.tv2.dk": [15946], "dmnsgnls.link": [2024], "*.cheapssl.com": [3045], "bks.tg": [2024], "oth.me": [2024], "*.memberclicks.net": [10264], "goreal.estate": [2024], "bks.to": [2024], "btc100.com": [1580], "hkgolden.com": [7058], "troya.net": [2024], "ewhizz.click": [2024], "www.451research.com": [184], "ifl.gd": [2024], "go.hc.gov": [2024], "gerrit.libreoffice.org": [9327], "wiremask.eu": [22600], "www.myfrey.ch": [3100], "www.coralproject.net": [19689], "www.dynadot.com": [4818], "forum.snsbank.nl": [14207], "www.confidence.org.pl": [3572], "d-m.ag": [2024], "minsoc.permkrai.ru": [21390], "peptalk.link": [2024], "bbsey.es": [1743], "make8bitart.com": [20911], "sinner-as-i.am": [2024], "acrobat.com": [536], "exhibitions.lib.cam.ac.uk": [17332], "www.documentfoundation.org": [16295], "mysliderule.com": [10861], "config.anticenz.org": [19207], "rabbit.works": [2024], "spanish.argentina.usembassy.gov": [22406], "jiangmen.jd.com": [8434], "visualstudio.com": [17872], "forums.nvidia.com": [11022], "pauld.tv": [2024], "sr2.liveperson.net": [9505], "2well.us": [2024], "*.webchuckhosting.com": [18151], "realtime.roblox.com": [13980], "hb7.co": [2024], "tourismepourtous.ch": [16687], "jfss.co": [2024], "www.bitmarket.pl": [1963], "amou.co": [2024], "www.mynewsdesk.com": [10882], "*.watershed.co.uk": [18099], "*.publiekeomroep.nl": [13263], "static-1.rosminzdrav.ru": [21674], "terminal.sexy": [16193], "boomerang.com": [2228], "s.uploadhero.com": [17476], "service.egais.ru": [19969], "cars.auto.ru": [19276], "*.kernel.org": [8873], "edpsych.us": [2024], "wpcomics.washingtonpost.com": [22534], "dsu-id.us": [2024], "csync.smartadserver.com": [15049], "go.makigas.es": [2024], "n.smoking.guru": [2024], "mth.lv": [2024], "*.ptpimg.me": [13239], "www.lundi.am": [9681], "jobs.iav.com": [2024], "andwrld.me": [2024], "awsp.us": [2024], "w1.darkreading.com": [4143], "xmos.com": [18614], "secure.websitealive.com": [18242], "*.fwdcdn.com": [6267], "unos.me": [2024], "www.secureuk.net": [14576], "bradmail.bradford.gov.uk": [2282], "mynewsdesk.teamtailor.com": [16068], "vanhaaren.net": [17639], "rreed.me": [2024], "touch.horo.mail.ru": [9891], "farmbit.link": [2024], "www.openfabrics.org": [11974], "url.educris.com": [2024], "errorception.com": [5340], "wiki.unrealengine.com": [17450], "2gis.prokopievsk.ru": [21513], "smo.sh": [2024], "s.mattdodge.net": [2024], "hc4.us": [2024], "home.guidancesoftware.com": [6988], "vpsmanager.vc-server.de": [17558], "www.rebeltorrent.net": [13701], "aaenhunze.nl": [11172], "kg.qq.com": [13329], "texi.exelate.com": [4988], "womenssquash.clubs.bucknell.edu": [2406], "zcomm.org": [18847], "chtv.me": [2024], "curv.it": [2024], "s.tekwiz.us": [2024], "www.particle.io": [12451], "atrack.allposters.com": [882], "*.myheritage.fr": [10875], "contest.pornhub.com": [12972], "get.fedoraproject.org": [5716], "nsw.gr": [2024], "*.myheritage.fi": [10875], "itstrt.in": [2024], "fr.sitestat.com": [14952], "aganyti.me": [2024], "www.topwar.ru": [22241], "thousandeyes.infinum.co": [20526], "kb.internal.ix.br": [20619], "images-1.gog.com": [6343], "belgradexpress.cfjlab.fr": [2604], "ndr.de": [11159], "www.corrupcia.net": [19693], "miga.to": [2024], "www.mobilevikings.com": [10539], "ihq.im": [2024], "www.cede.fd.ulaval.ca": [17319], "usmagazine.com": [17503], "baxterbulletin.com": [1723], "jira.bls.ch": [1552], "data.gov.uk": [19762], "docs.rkn.gov.ru": [13971], "accessibility.utm.edu": [17426], "wwlbd.org": [13253], "www.dmoz.org": [4589], "*.leadnow.ca": [9215], "l.ag4it.nl": [2024], "login.ezproxy.uvm.edu": [17154], "*.acalogadmin.com": [497], "m.sbb.ch": [15756], "www.objectsecurity.com": [11738], "it-bit.nl": [2024], "terena.org": [16191], "www.egypt.hsbc.com": [7090], "bikkel.it": [2024], "apps.georgetown.edu": [6531], "b7.yahoo.co.jp": [18730], "advel.cz": [705], "slb.im": [2024], "hlbeg.jd.com": [8434], "temie.ml": [2024], "marketing.westernunion.com": [18310], "css.skyscnr.com": [15006], "www.sur.ly": [15707], "www.linux-tage.de": [9412], "pixeline.be": [12775], "www.tpbproxy.website": [22174], "mytempjobs.gloucestershire.gov.uk": [6730], "www.stv.columbia.edu": [3449], "www.moon.greenpeace.org": [6920], "obbfl.com": [2024], "sera.stanford.edu": [15448], "z0.sinaimg.cn": [14910], "442ne.ws": [2024], "jes.pe": [2024], "s.andrek.com": [2024], "stu-pics.com": [2024], "cdn.crowdrise.com": [3825], "community.shaw.ca": [14748], "status.easypost.com": [5020], "us.mcafee.com": [10129], "st.tlgrm.ru": [22221], "profiles.stanford.edu": [15448], "downpaymentcenter.bankofamerica.com": [1669], "www.nbg.gr": [6893], "goroost.com": [20292], "r.kissinsights.com": [8744], "ttit.us": [2024], "progay.us": [2024], "curse.com": [3927], "owler.com": [21321], "ru.domaincontext.com": [4646], "temryuk.startsmile.ru": [21980], "vap.rts.ch": [21957], "get.c9.io": [3279], "aneto.unizar.es": [17441], "optoutprescreen.com": [12100], "freedom.voys.nl": [17949], "wiki.opendaylight.org": [11972], "brokenships.infinum.co": [20526], "www.terreactive.ch": [16201], "www.sciencenews.org": [14441], "www.unblocksit.es": [17236], "cn.nytimes.com": [11041], "ekt.rosevrobank.ru": [14024], "bspace.berkeley.edu": [17329], "tikr.tk": [2024], "enroll.samsungknox.com": [14331], "rioseo.co": [2024], "r24820183.sync.app.asana.com": [1265], "js.dmtry.com": [4592], "assets.pinterest.com": [12731], "mycrm360pubsvc.oxfordshire.gov.uk": [21327], "www.cybercompex.org": [3957], "critnet.us": [2024], "www.memberful.com": [10266], "suprurl.com": [2024], "ewebmail.ie.cuhk.edu.hk": [2704], "old.bitcoin.cz": [10463], "rbsc.eu": [2024], "xmas.wtf": [2024], "hdin.in": [2024], "stagingspeak.com": [16901], "www.imss.caltech.edu": [2771], "www.computerbild.de": [19660], "*.rtmcdn.net": [13820], "ptea.house": [2024], "immunicity.uk": [20511], "stk.pe": [2024], "meridian.io": [2024], "yelp.ie": [18766], "mutualofamerica.com": [10777], "nie.washingtonpost.com": [18086], "byte.com": [8126], "www.gearslutz.com": [6468], "ax3.ca": [2024], "email.udacity.com": [17193], "nabconnect2.nab.com.au": [10905], "kaltura.com": [8790], "images.cnblogs.com": [19631], "fishd.co": [2024], "www.websocket.org": [18185], "orcs.ws": [2024], "ohr.oxfordjournals.org": [12222], "static.bbci.co.uk": [19332], "www.new.kairo.at": [8782], "www.nines.nl": [11453], "ihc.wtf": [2024], "upcmail.upc.nl": [17083], "kostroma.tpprf.ru": [22260], "noi.se": [2024], "opendream.io": [2024], "dcrz.jd.com": [8436], "tvassl.weibo.cn": [18277], "landbote.newsnetz.ch": [11371], "faq.nearlyfreespeech.net": [11162], "push.newegg.com": [11356], "warehouse-staging.python.org": [13314], "blog.sandstorm.io": [14346], "tryk.jammerbugt.dk": [8517], "www.tfp-quebec.psy.ulaval.ca": [17319], "cryoutcreations.eu": [3836], "hit.ac": [2024], "webmail.unizar.es": [17441], "wells.as": [2024], "studweb.uio.no": [17414], "s.abfa.org.uk": [2024], "www.apotheke.de": [1131], "*.ticketmaster.com": [16495], "affiliate.amazon.co.jp": [19169], "blog.zimperium.com": [18969], "www.slysoft.com": [15041], "www.parabola.nu": [12412], "cem.events.adobe.com": [669], "*.silobreaker.com": [14860], "atxins.co": [2024], "amp.pandora.com": [12389], "www.moroccanbazaar.co.uk": [10637], "dot.s4kr4.com": [2024], "autodiscover.qf.org.qa": [21557], "www.onebitbug.me": [11892], "www.us.hsbc.com": [7090], "tog.re": [2024], "logistics.alibaba.com": [857], "www.thebodyshop.co.id": [22145], "rt.gnu.org": [6337], "mbsportal.bl.uk": [2358], "visioncritical.com": [17862], "www.badania.mbank.pl": [9733], "mail.tiscali.it": [16572], "raven.cam.ac.uk": [17332], "harrystotle.com": [2024], "web-beta.threema.ch": [16473], "www.superkuh.com": [15697], "voile.lemonde.fr": [9204], "swfilm.co": [2024], "*.sailfishos.org": [14302], "media.mcclatchyinteractive.com": [10131], "www.cs.stonybrook.edu": [15548], "pop.anadolu.edu.tr": [1029], "www.trauer.merkur.de": [10306], "acs.qidian.com": [13349], "tgtap.com": [2024], "osm13.openstreetmap.fr": [12079], "m.nyt.com": [11035], "bmcoralhealth.biomedcentral.com": [1931], "2kbhkort.kk.dk": [8748], "polr.xyz": [2024], "url.getphp.ir": [2024], "www.oumedicine.com": [12172], "www.thepiratebay.ac": [22175], "pkwy.info": [2024], "my.croydon.gov.uk": [19727], "pskovskaya-obl.beeline.ru": [1778], "labs.nic.cz": [11418], "www.ti.com": [15880, 16225], "www.warwick-castle.com": [18081], "www.bizographics.com": [2053], "proxy01.newsnetz.ch": [11371], "www.katzporn.in": [8836], "*.elle.com": [5163], "alumni.cern": [2588], "10years.debconf.org": [4257], "www.limited2art.com": [9374], "www.jupyter.org": [8703], "store.democrats.org": [4338], "firefoxosdevices.org": [5844], "*.compranoexterior.com.br": [3531], "libs.de.coremetrics.com": [3665], "dgmc.ga": [2024], "conversion.7search.com": [234], "www.segment.com": [14621], "webaccess.bassetlaw.gov.uk": [1714], "markit.com": [10031], "product1-uat.aastocks.com": [19037], "au.prime7.yahoo.com": [18725], "atr.im": [2024], "xchain-stage.tokenly.com": [22229], "msrt.us": [2024], "forums.openmandriva.org": [11992], "popshort.com": [2024], "crypto.cat": [3848], "linz.kairo.at": [8782], "re.wbf.co.jp": [2024], "hvs.link": [2024], "donate.fightforthefuture.org": [5770], "go.bigy.com": [2024], "*.mega.co.nz": [10235], "www.cdn.webrtc-experiment.com": [18178], "dl.bintray.com": [1928], "tomtom.com": [16615], "bin.staticlocal.ch": [9548], "promotion.myinteriorsavings.com": [8249], "jsonp.afeld.me": [19102], "www.croscill.com": [3809], "greenpeace.de": [6919], "www.techservices.illinois.edu": [17346], "log3.optimizely.com": [12107], "veranstaltungen.wienenergie.at": [18376], "video.lansp.ru": [20781], "cs.jhu.edu": [16370], "jhp.im": [2024], "*.wpengine.com": [18010], "en.help.roblox.com": [13980], "myregextester.com": [21067], "www.changeinfo.ru": [19560], "portaildescours.ulaval.ca": [17319], "hive.rs": [2024], "rotate.polymus.ru": [21457], "www.funstockdigital.co.uk": [6246], "go.scandia.us": [2024], "www.flickr.com": [5898], "plcl.co": [2024], "ris.bka.gv.at": [13490], "ssl.translatoruser.net": [16749], "remaxfgr.co": [2024], "img.guerrillamail.com": [6987], "fotr.link": [2024], "*.telegr.am": [16142], "www.eloquentjavascript.net": [5173], "www.nodesource.com": [11489], "assets.litmuscdn.com": [9484], "onlinehry.idnes.cz": [20483], "businessapps.swisscom.ch": [15761], "accessibility.nl": [508], "cadu.net.br": [2024], "www.96boards.org": [249], "los-l.ink": [2024], "aoc.curseforge.com": [3927], "easa.europa.eu": [5411], "whb.lu": [2024], "url.sortmypc.uk": [2024], "www.bucknell.edu": [2406], "on.hmmg.co": [2024], "www.timeanddate.com": [16536], "*.computerworld.com.au": [7708], "mail.sapo.pt": [14131], "calendar.comcast.net": [3461], "link.idn48.com": [2024], "www.bakerlab.org": [1646], "www.russian-malta.com": [21700], "zapchain.com": [18887], "ppact.io": [2024], "poradte.cz": [21462], "gemz4.me": [2024], "ulev.co": [2024], "gplnk.co": [2024], "wildhor.se": [2024], "jdsupra.com": [8440], "wifihax.me": [2024], "lirportal.ripe.net": [13953], "hobby.blesk.cz": [2088], "tn.nick.com": [2024], "*.airshowjournal.com": [797], "lobaumer.com": [2024], "mroc.pravobraz.ru": [21480], "clnk.me": [10814], "www.calgunsfoundation.org": [2756], "wweb13.play-asia.com": [12828], "home.java.net": [8538], "iti.ms": [2024], "aplus-flint-river-ranch.com": [443], "tpb.pirateparty.org.uk": [12747], "www.globalhivmeinfo.org": [6706], "www.bitmit.net": [2030], "baycitizen.org": [1728], "test2-skyonline.sky.de": [14990], "www.hautelook.com": [7232], "simferopol.startsmile.ru": [21980], "511t.ac": [2024], "baniya.me": [2024], "alerat.ec": [2024], "x.dkfx.dk": [2024], "www.bosch-sensortec.com": [2246], "mtc.cdn.vine.co": [17807], "nyugta-lotto.hu": [2024], "www.argos-spain.co.uk": [1214], "info.monex.co.jp": [10583], "fanpagegeneratorpro.com": [6698], "2-url.org": [2024], "pc-ostschweiz.ch": [12248], "stats.montpellier3m.fr": [10609], "dailymed.nlm.nih.gov": [11090], "www.proxpn.com": [21504], "bmcmedinformdecismak.biomedcentral.com": [1931], "lwf.re": [2024], "static2.uk.businessinsider.com": [2471], "*.udel.edu": [17337], "fiends.co": [2024], "otakukart.in": [2024], "www.blogs.mcafee.com": [10129], "gscdn.nl": [20221], "lqwb.us": [2024], "mikrotik.com": [10424], "nerve.meetme.com": [10224], "www.yourmechanic.com": [18816], "content.logmein.com": [9559], "static.alipay.com": [864], "dsb.mpg.de": [9794], "ka.libreoffice.org": [9327], "precisionlms.ptc.com": [21532], "flc.cc": [2024], "sac.uol.com.br": [17079], "l.dnbrv.com": [2024], "4.bp.blogspot.com": [2122], "mail.bitcoin-contact.org": [1986], "ko.aliexpress.com": [854], "linbit.com": [9091, 9092], "skyviewinghelp.com": [14992], "cat.postto.me": [13004], "adriver.ru": [588], "www.mzstatic.com": [10893], "fellowsblog.kiva.org": [8939], "www.kccmediahub.net": [8729], "docs.cyrus.foundation": [3981], "80ste.es": [2024], "www.dns-ip.net": [4594], "www.elcom.admin.ch": [22061], "zin.tools.ietf.org": [7725], "*.skilldrum.com": [1141], "bccit.us": [2024], "images.12wbt.com": [10373], "go.nwbc.mn": [2024], "latamfx.co": [2024], "www.ucw.cz": [17305], "m.spokane.wustl.edu": [18089], "b.ichiba.jp.rakuten-static.com": [21577], "www.noodleremover.news": [11506], "nkrk.co": [2024], "sydne.me": [2024], "maqraa.islamacademy.net": [8366], "mstra.co": [2024], "apex.oracle.com": [12116], "www.thorpepark.com": [16459], "zakam.tpprf.ru": [22260], "secure.newrepublic.com": [11350], "libraries.cca.edu": [2547], "u.astronomia.co": [2024], "support.xbox.com": [18639], "oferta.one": [2024], "kidswr.co": [2024], "vpn4all.com": [17588], "www.lrc.usuhs.edu": [17132], "nowb.at": [2024], "www.newswhip.com": [11373], "*.askadmissions.net": [7448], "mmcommunity.mediamarkt.de": [20949], "bitmask.net": [2027], "blazingthyme.com": [2082], "ehr.alibaba-inc.com": [19139], "sgm.link": [2024], "*.wikimedia.es": [18388], "careers.guidancesoftware.com": [6988], "xfinityconnect.mail.comcast.net": [3461], "on-ydr.co": [2024], "stats.webarch.net": [18204], "chichbong.vn": [2024], "jth.press": [2024], "pd.secure.anthem.com": [19206], "gate.crashing.org": [6445], "legacy.golfdigest.com": [6808], "oralb-blendamed.de": [12118], "support.isc.org": [7823], "neatoshop.com": [11163], "cache.k.sohu.com": [15171], "www.discusslr.com": [4548], "www.kqzyfj.com": [3484], "lcdcomps.com": [20790], "cdn.debuggify.net": [4267], "www.sony.com": [15215], "blog.uni-erlangen.de": [17396], "www.viaforensics.com": [17745], "haik.me": [2024], "caits.iu.edu": [8069], "muc.xmpp.org": [18617], "lunarline.com": [9680], "always.gd": [2024], "elo7.me": [2024], "nmap.org": [11472], "s56.cnzz.com": [3328], "www.amadeu-antonio-stiftung.de": [954], "exchangewire.com": [5474], "gismeteo.ru": [6650], "sustainability.asu.edu": [1221], "share.ahgo.us": [2024], "www.softperfect.com": [15161], "vorratsdatenspeicherung.de": [353], "www.cartercenter.org": [2877], "jdaily.co": [2024], "www.dikkenberg.net": [4503], "footlocker.com": [5986], "iuh.me": [2024], "engineering.9gag.com": [252], "daleal.link": [2024], "camm.osu.edu": [11797], "click.messages.medicinenet.com": [10206], "minipay.unionpay.com": [17281], "*.demandware.net": [4330], "misc.www.switch.ch": [15762], "*.whatbox.ca": [18328], "fishelp.wustl.edu": [18089], "www.fifedirect.org.uk": [5764], "www.librato.com": [9324], "calyx.net": [2775], "www.side.cr": [14822], "anti-theft.eset.com": [5347], "lkac.pn": [2024], "www2.mediafire.com": [10166], "artskills.com": [1247], "*.customcare.fender.com": [5733], "hochspannung.ourproject.org": [21314], "www.numato.com": [11615], "ultimedecathlon.com": [22361], "www.quiterss.org": [13421], "go.yajug.lu": [2024], "haaart.ly": [2024], "admin.q1media.com": [13318], "landalcampings.de": [18579], "tyj.fi": [16981], "nds.rub.de": [13539], "jaoa.org": [20624], "downloads.bicomsystems.com": [19371], "glylr.com": [2024], "insurance.va.gov": [17100], "adspaces.ero-advertising.com": [5335], "freed0m4all.net": [6139], "media.readspeaker.com": [13670], "mysubwaycard.com": [21072], "arg.link": [2024], "www.americanaexchange.com": [991], "hmr.biomedcentral.com": [1931], "www.bitcoinity.org": [2009], "2npg.co": [2024], "kazanfirst.ru": [20695], "om.qq.com": [13329], "monkeysaudio.com": [10597], "i3.itc.cn": [8401], "dyncdn.me": [19916], "infos.anz.com": [374], "javadoc.tlgrm.ru": [22221], "esta.mx": [2024], "go.l2c.us": [2024], "app.play-asia.com": [12828], "bbb.org": [1852], "ftp.mplayerhq.hu": [9798], "www.airs.com": [795], "onepass.cuhk.edu.hk": [2704], "www.phil.camera": [21396], "dshan.co": [2024], "wix.com": [18473], "online.gifts.washington.edu": [17376], "donate.salvationarmyusa.org": [14318], "survey.aclu.org": [312], "*.audemarspiguet.com": [1375], "dlrfr.sh": [2024], "r24617883.sync.app.asana.com": [1265], "developer.chrome.com": [3120], "ph.norton.com": [11545], "my-old.o3.ua": [21219], "www.telusmobility.com": [16174], "botm.co": [2024], "lbgfs.co": [2024], "*.infomaniak.ch": [8114], "www.zenmate.co": [18917], "www.lefebvre.org": [9203], "megaskandal.de": [2024], "oka.uk": [2024], "i.rgstatic.net": [13481], "ib24.csob.sk": [3888], "status.netdna.com": [11227], "a.tile.openstreetmap.org": [12015], "www.pet-portal.eu": [12270], "images.bizrate.com": [2054], "tpi.news": [2024], "www.edgar-online.com": [4884], "registrar.georgetown.edu": [6531], "www.timezero.ru": [16533], "turnloo.se": [2024], "www.bayareaamusements.com": [1727], "www.langui.sh": [9161], "www.burstmedia.co.uk": [2463], "epm.uniovi.es": [17282], "i-upv.info": [2024], "checkout.springer.com": [15380], "mailbox.eee.hku.hk": [20387], "pdn.sciencedirect.com": [21750], "www.mcdonalds.ru": [20941], "ea.voyage-prive.it": [17947], "storage.youla.io": [22689], "a.mykbc.org": [2024], "www.deciso.com": [19797], "telfort.nl": [16165], "extranet.wlb.at": [18376], "ssl.jumpline.com": [8692], "impx.tv": [2024], "x.evanp.ca": [2024], "ksiegarniawarszawa.pl": [9038], "*.mediaspanonline.com": [10175], "drive.zipcar.com": [18973], "tescofinance.com": [16207], "www.fafsalivehelp01.ed.gov": [4881], "l.coindera.com": [2024], "herzschlog.de": [2024], "axa.kr": [2024], "onbriga.de": [2024], "www.meteor.com": [10339], "g.enocta.com": [2024], "frhs.cc": [2024], "*.datenretter.de": [3626], "clickho.st": [2024], "help.pressable.com": [13082], "m.bezeq.co.il": [19362], "bnhd.me": [2024], "www.cctld.ru": [2924], "mary.ly": [2024], "rbbit.co": [2024], "www.qksrv.net": [3484], "*.computerworld.com": [3537], "net-security.org": [11219], "unternehmen.aldi-sued.de": [357], "www.strava.com": [15581], "ice.cheshireeast.gov.uk": [3071], "noles.co": [2024], "euets.environment-agency.gov.uk": [20006], "amac.io": [2024], "cdn4.spiegel.de": [15342], "clever.com": [3239], "www.alphadominche.com": [917], "express.servicenow.com": [14682], "mbc.rosevrobank.ru": [14024], "kabeldeutschland.de": [8775], "ana.works": [2024], "admin.conetix.com.au": [3568], "builds.96boards.org": [249], "tagx.nytimes.com": [11041], "*.anglomedia.net": [1059], "twt.f-i.com": [2024], "clubdelectura.uned.es": [17248], "uexp.co": [2024], "s.ta-hiroshi.jp": [2024], "voskresensk.beeline.ru": [1778], "cheapassgamer.com": [3043], "movie0nhd.cf": [2024], "www.isshub.io": [8391], "6erpack.sky.de": [14990], "www.fullcoin.com": [6227], "www.opensourcehacker.com": [12057], "njones.co": [2024], "demonoid.ph": [4340], "travel.sakh.com": [21719], "cvis.vutbr.cz": [17609], "www.rofreesbie.org": [21666], "bit.lilkobi.com": [2024], "craft.xebia.com": [2024], "cpq-1.co": [2024], "blog.mdosche.de": [10144], "es.foundation.walmart.com": [18059], "news.at.zhihu.com": [18956], "demonoid.pw": [4340], "www.torrents.to": [22247], "jun.gs": [2024], "www.opentechfund.com": [12019], "cat5photo.com": [2024], "roy.lc": [2024], "www2.physics.ox.ac.uk": [17359], "home.collyers.ac.uk": [3433], "*.viewmychart.com": [10797], "img.yes.co.il": [22677], "secure2.techxpress.net": [16087], "lists.emergingthreats.net": [5199], "srrz.in": [2024], "www.brieflaufzeiten.de": [19450], "cdc332-www.sciencedirect.com": [21750], "www.libcom.org": [20826], "dkel.ec": [2024], "bi.formstack.com": [6023], "shopd.in": [2024], "www.cuidadodesalud.gov": [3907], "i.prvld.me": [2024], "blog.genua.de": [20230], "newsletter.canon-europe.com": [2822], "simonswain.com": [14880], "ny.people10.com": [2024], "www.freshcode.club": [6182], "pkgs.clearlinux.org": [3233], "dating.zoosk.com": [19006], "r24820192.sync.app.asana.com": [1265], "img3.km.com": [20738], "go.kohlanta.co": [2024], "www.a1webstats.com": [265], "ubuntuusers.de": [17184], "go.aerobyn.com": [2024], "axantum.com": [1493], "h.soni.im": [2024], "cslipublications.stanford.edu": [15448], "www.echoditto.com": [5037], "trustedreviews.com": [16863], "www.connecticon.org": [3585], "go.vzfy.co": [2024], "liv.fm": [2024], "kingat.co": [2024], "sherpa.sh": [2024], "bsirm.com": [2024], "mx.atcs.ms": [2024], "union.uiuc.edu": [17030], "lebeda.spb.ru": [2024], "ubnt.link": [2024], "evreyskaya-ao.beeline.ru": [1778], "www.thalysthecard.com": [16245], "weather.yandex.kz": [18743], "l.richev.me": [2024], "sciencedirect.com": [21750], "*.mesh-internet.co.uk": [10313], "www.x5.ru": [18590], "inzeraty.sme.sk": [14198], "*.spreadshirt.de": [15371], "intranet.fch.vutbr.cz": [17609], "lnk.malchys.net": [2024], "player.megaphone.fm": [20958], "c.blick.ch": [2091], "www.mall.cz": [9934], "www.cpiz.net": [19708], "www.mediademocracyfund.org": [10158], "repomirror.parabolagnulinux.org": [12413], "webmail.shaw.ca": [14748], "lwd.io": [2024], "hsseexed.co": [2024], "www.meetings.io": [10229], "ca.godaddy.com": [6755], "support.comixology.com": [3466], "kaluga.biglion.ru": [19375], "www2.fdic.gov": [5700], "longchuan.jd.com": [8434], "natopera.center": [2024], "ext.ag": [2024], "www.educationusa.info": [19959], "eram.umich.edu": [17354], "getfinal.com": [6576], "ftch.pl": [2024], "ict.swisscom.ch": [15761], "sageoak.co": [2024], "biggestloserclub.com": [1890], "spletnitsa.friday.ru": [20175], "ebanking.cic.ch": [1680], "link.garbas.si": [2024], "www.f-secure.com": [5533], "www.kundeninfo.belwue.de": [1802], "ool.se": [2024], "slanted.de": [15009], "www.laiwang.com": [20771], "www2.environment-agency.gov.uk": [20006], "www.intel.com": [8211], "virid.in": [2024], "cryptdown.eu": [3840], "*.memory-alpha.org": [10271], "corp.balnet.ru": [19310], "testequipmentdepot.com": [16218], "www.cisofy.com": [2627], "gus.al": [2024], "ipower.com": [7798], "feedback.truste.com": [15922], "ru.bem.info": [1537], "www.steamunlock.com": [15524], "yandex.com": [18742], "go.cd": [20273], "footlocker-inc.com": [5989], "t5go.in": [2024], "ardnet.eu": [2024], "s-rtb.send.microadinc.com": [10380], "ljm.co": [2024], "igrill.it": [2024], "domainpunch.com": [19871], "mraud.ee": [2024], "www.postoffice.travelmoneycard.co.uk": [13002], "uer.fr": [2024], "www.fr.lastminute.com": [9177], "haffke.link": [2024], "tickets.amazon.co.uk": [19170], "containerids-id3.wdr.de": [18113], "static.dangpu.com": [4132], "favd.xyz": [2024], "djbx.fr": [2024], "vil.photos": [2024], "fr-ad.ru": [2024], "partners.a2hosting.com": [266], "1.360.cn": [142], "go.gameware.at": [2024], "cloud.mail.ru": [9891], "beta.kontalk.net": [8990], "markshar.es": [2024], "h5-0000.sohusce.com": [15174], "sonobi.com": [15209], "subscribe.foreignpolicy.com": [6002], "tutaev.beeline.ru": [1778], "i.vioa.de": [2024], "networkredux.com": [11302], "img5.refresher.sk": [13781], "gpfi.org": [6347], "forum5.hkgolden.com": [7058], "link.ngin.com": [2024], "swapspace.net": [15743], "syncproxy.cna.debian.org": [4263], "news.sfs.georgetown.edu": [6531], "h.ulpv.nl": [2024], "strategyanalytics.com": [15578], "editor.flipboard.com": [5905], "vkjob.de": [2024], "dongxi.douban.com": [4701], "www.ebroder.net": [5032], "gsb.stanford.edu": [15448], "www.rightscon.org": [13943], "*.javelinstrategy.com": [8544], "www.idrtrade.com": [9756], "1.toptrix.net": [2024], "uneddit.com": [17249], "sbe.anadolu.edu.tr": [1029], "m.focus.de": [5953], "news.bmg.com": [2024], "www.subscriptiongenius.com": [15629], "prettylightsmusic.com": [13088], "www.opus-codec.org": [12112], "maxymiser.com": [10111], "l.daveil.com": [2024], "keio.me": [2024], "arveres.nav.gov.hu": [10912], "entrust.webtrust.org": [18190], "kfwebs.net": [8737], "sbir.cancer.gov": [2819], "htp.ipleak.net": [20571], "pogoda.yuga.ru": [22701], "travelzoo.com": [16774], "tuck.cc": [2024], "quench.io": [2024], "biblio.planeta.ru": [21431], "umc.ub-g.com": [2024], "usg.lc": [2024], "www.swisscom.com": [15761], "http.flightradar24.com": [20119], "w.pb.lc": [2024], "url.keiji.io": [2024], "assets.okfn.org": [12049], "assets.genius.com": [20226], "service.msicomputer.com": [9807], "cgs.osu.edu": [11797], "luzhounong.jd.com": [8434], "*.sweetpepper.org": [13031], "glg.gg": [2024], "offer.gwsuk.com": [2024], "ca-li.co": [2024], "bettercgi.com": [1855], "static.mythic-beasts.com": [10891], "elements.yandex.com.ua": [18741], "www.litecoin.org": [9475], "rskn.us": [2024], "www.smbc-comics.com": [14197], "www.fastly.com": [5676], "jeant.in": [2024], "nuz.li": [2024], "www.kuppingercole.com": [9053], "mklnd.com": [2024], "ccd.fnal.gov": [5741], "go.ciacci.net": [2024], "webmail.kuleuven.be": [8832], "support.ucsf.edu": [17387], "journal.ualinux.com": [22340], "1mar.co": [2024], "www.islington.gov.uk": [8384], "sben.me": [2024], "sott.net": [15225], "plurk.com": [12867], "www.tpprf.ru": [22260], "scrumbleship.com": [21758], "webtransfer.vs.ch": [22061], "my.ifengimg.com": [20487], "mini.afnet.fr": [2024], "mypassword.ysu.edu": [18832], "beanswitch.utm.edu": [17426], "abc.newsland.com": [21127], "tvquran.com": [22320], "sfts.site": [2024], "cdn.evergage.com": [5438], "help.xapo.com": [18630], "lady.taobao.com": [16015], "music.meo.pt": [10286], "marchefo.umontpellier.fr": [22365], "bisformat.nazwa.pl": [11156], "go.gnslk.com": [2024], "sfzcxgg.duapp.com": [19902], "visit.openreach.co.uk": [12075], "cff.ch": [15756], "www.usplusu.com": [17532], "zlr.my": [2024], "stripwax.nyc": [2024], "d.wes.st": [2024], "mor.me": [2024], "xci.pe": [2024], "o2shop.cz": [16141], "pure.fyi": [2024], "hxn.link": [2024], "www4.atomicorp.com": [1355], "support.freezone.co.uk": [6165], "restats.decc.gov.uk": [19795], "community.sh": [2024], "bennetts.co.uk": [1810], "bm.img.com.ua": [7993], "rm.pe": [2024], "accountonline.com": [517], "www.marijuanamajority.com": [10002], "www.trumanlibrary.org": [7206], "txoutdrs.co": [2024], "corporate.zalando.com": [18877], "coinforum.de": [3395], "www.tinkerforge.com": [16551], "www.qidian.com": [13348], "elmnt.rocks": [2024], "mprv.co": [2024], "jiangsuguan.jd.com": [8434], "www.registrar.cornell.edu": [3676], "sl.bf5.pw": [2024], "jerf.us": [2024], "liftsecurity.io": [9352], "ubykotex.com.au": [16994], "*.modcloth.net": [10548], "www.hannahcranston.com": [20338], "survival.tacticaltech.org": [15966], "ning.com": [11455], "yaroslavl.beeline.ru": [1778], "openstack.redhat.com": [13735], "web.nwtime.org": [11306], "in.norton.com": [11545], "just-eat.be": [20671], "www.virusec.com": [17845], "kattare.com": [8834], "pkrlynch.us": [2024], "oami.europa.eu": [5411], "jfdiaz.co": [2024], "kmart.gq": [2024], "onewi.org": [2024], "bongbong1.96.lt": [2024], "union.bjcnc.scs.sohucs.com": [15173], "meta.tagesschau.de": [22086], "*.zapato.ru": [14358], "olyplant.eu": [2024], "airbnb.es": [793], "thearchive.me": [16291], "img-refugeesmigrants.un.org": [17057], "www.net-housting.de": [11216], "issteamdown.com": [20592], "beacon.guim.co.uk": [6996], "library.angus.gov.uk": [1062], "assets.saturn.de": [21736], "karachaevo-cherkesiya.beeline.ru": [1778], "healthia.be": [2024], "download.mcafee.com": [10129], "se.qidian.com": [13349], "rhvld.tk": [2024], "customers.qwk.net": [13338], "trpl.us": [2024], "ykurilsk.sakh.com": [21719], "quikpayasp.com": [13416], "www.polarnopyret.se": [12906], "sovcombank.ru": [21914], "assets.api.qbrick.com": [13345], "craze.no": [2024], "fansub.co": [5647], "tir.teteny.bme.hu": [1557], "*.frys.com": [6216], "blg.psbank.ru": [13231], "freebusy.io": [6101], "bzzz.me": [2024], "barracudanetworks.com": [1707], "storage.outbrain.com": [12182], "fibonacci.uvt.nl": [16521], "channel.jd.com": [8435], "www-cdn.pardot.com": [12428], "cdn.ampproject.org": [19193], "mdcinvite.co": [2024], "arrow.friday.ru": [20175], "a.cranleigh.org": [2024], "mbank.spdbccc.com.cn": [21926], "gw.fark.com": [5653], "standup2cancer.ca": [15442], "rwn.me": [2024], "click.tanx.com": [22097], "checkpointcharlie.cfjlab.fr": [2604], "robp.co": [2024], "support.therocktrading.com": [16379], "iconnect.cathaypacific.com": [2913], "manage-tablet.kaspersky.com": [8820], "wwws.sinaimg.cn": [14910], "old.mediametrics.ru": [20950], "essex.police.uk": [5355], "mijnlandal.nl": [18579], "gitga.me": [2024], "webmail.vancity.com": [17643], "nixsrv.com": [11470], "perthfe.st": [2024], "planet.debianforum.de": [4264], "prediction.io": [13069], "www.tube4.me": [16884], "*.1d4.us": [75], "ekst.me": [2024], "jsick.net": [2024], "mini.pt6.tv": [2024], "i.viraliza.la": [2024], "icrn.hkjc.com": [20384], "afeld.me": [19102], "powerspeaking.com": [13042], "e1.cdn.qnsr.com": [13357], "wiki.webmoney.ru": [18173], "wpchk.it": [2024], "turkmenistan.usembassy.gov": [22406], "fmobi.net": [2024], "newsroom.montereybayaquarium.org": [10606], "app.upatient.com": [17091], "webchat.hackerspace.pl": [7136], "www.freelyshout.com": [20163], "mpres.me": [2024], "glenoit.com": [6689], "2cyr.com": [126], "www.skyscanner.com": [15006], "www.skypeassets.com": [15004], "premium.yahoo.co.jp": [18730], "*.pixnet.cc": [12780], "*.mbsvr.net": [10588], "eliti.tv": [2024], "autodiscover.cyberport.hk": [3967], "www.codeascraft.com": [3356], "cems.me": [2024], "www.wickedfiber.com": [18373], "airmap.com": [790], "pthwy.global": [2024], "to.housser.ca": [2024], "www.renater.fr": [13826], "tmu-my.tealiumiq.com": [16060], "beeline.kz": [19345], "www.cl.cam.ac.uk": [17332], "london.webconsole.linode.com": [9401], "business.wales.gov.uk": [18051], "5kf.co": [2024], "ru.shopbop.com": [21807], "download.gimp.org": [20246], "piwik.enahost.com": [5220], "zbbs.jd.com": [8436], "www.adspeed.com": [596], "wtwnews.org": [2024], "login.csmonitor.com": [19737], "on.mtaf.tv": [2024], "cscprotectsbrands.com": [3684], "short.nikoc.be": [2024], "progje.ws": [2024], "www.chinapaymentservices.com": [3085], "o.aniart.com.ua": [19199], "metasean.jsbin.com": [20659], "s12.postimg.org": [13024], "tlodge.com": [2024], "perle.com": [12607], "lists.xenproject.org": [18647], "stockport.greenparty.org.uk": [6908], "www.bbcshop.com": [1741], "www.literatureandlatte.com": [9478], "wdhrn.co": [2024], "m4s.in": [2024], "www.comlaude.com": [3460], "mesosphere.com": [10314], "huzs.net": [7640], "sams.social": [2024], "*.alliedmods.net": [901], "resilinc.co": [2024], "rdc.bremer.com": [2320], "www.myfreecopyright.com": [10806], "www.judici.com": [8676], "r24820245.sync.app.asana.com": [1265], "afrq.net": [2024], "stats.js.org": [20657], "pamspublic.science.energy.gov": [5243], "wwward.org": [2024], "www.skyscanner.se": [15006], "openforum.westminster.gov.uk": [18315], "*.shopwiki.com": [14782], "artj.us": [2024], "msf.io": [2024], "jobs.zalando.de": [18877], "cmake.org": [19629], "fb1.eu": [2024], "www.cedia.org.ec": [2583], "*.cyberphoto.fi": [3954], "nature.berkeley.edu": [17329], "ipv4.fotoforensics.com": [6051], "bi.illuminateed.com": [20494], "bedfordhospital.nhs.uk": [10953], "ufx.co": [2024], "www.ce1.com": [3772], "stats.zugaina.net": [22731], "go.rozak.net": [2024], "support.t-mobile.com": [15837], "teeth.pk": [2024], "apis.live.net": [9494], "tta.click": [2024], "barnebys.com": [1703], "aanbieding.marktplaats.com": [10034], "cn.bter.com": [2401], "on.bamsl.org": [2024], "mdws.ldcu.ca": [9146], "stiftung.htwk-leipzig.de": [7596], "www.xine-project.org": [18665], "activatie.kuleuven.be": [8832], "www.isoc.org.br": [7830], "filecrypt.cc": [20090], "blog.lighttpd.net": [9362], "prep.fnal.gov": [5741], "assets.windowsphone.com": [18436], "dameiqh.jd.com": [8434], "sports-us.lemonde.fr": [9204], "*.njit.edu": [10972], "info.publicintelligence.net": [13256], "blog.irccloud.com": [8351], "mail.be": [9888], "ui.beta.bingads.microsoft.com": [10396], "mail.bg": [9889], "romiyo.com": [2024], "www.tsbohemia.cz": [22300], "podstolom.lansp.ru": [20781], "sampelongbeach.org": [21727], "yangzhou.jd.com": [8434], "css.naukimg.com": [21091], "www.rfc-editor.org": [13477], "static.tacdn.com": [22082], "earlyhelp.bedford.gov.uk": [19341], "orig.colorofchange.org": [3439], "www.rtbf.be": [14063], "sovsekretno.ru": [21916], "xerox.bz": [2024], "www.nedcc.org": [10938], "abbasm.ir": [2024], "www.biotrimlabs.com": [1940], "www2.madametussauds.com": [9853], "reviv.in": [2024], "www.f5networks.*": [5536], "webmail5.beget.com": [19347], "route.search.ch": [14504], "kaliningrad.tpprf.ru": [22260], "im.gifbt.com": [8067], "www1.pfizerpro.com": [12642], "endg.me": [2024], "login.unifiedsocial.com": [17272], "twnv.jp": [2024], "www.thingiverse.com": [16431], "zalando.it": [18877], "opendata.avv.de": [1485], "eyf.tameside.gov.uk": [22095], "www.ticket4u.com.my": [22206], "www.augur.io": [1392], "assets3.parliament.uk": [21349], "nosdeputes.fr": [21162], "gov.khabkrai.ru": [20709], "demo.openwebrtc.org": [21282], "security-team.debian.org": [4263], "zenmate.nl": [18917], "avgread.me": [2024], "ordersubmission.bl.uk": [2358], "lnk.cmnt.io": [2024], "go.oneguest.co": [2024], "lmg.do": [2024], "et08.xhcdn.com": [18605], "springy.libapps.com": [9302], "www.dedyn.io": [19789], "alzres.biomedcentral.com": [1931], "*.movieth.com": [10677], "1.usa.gov": [2024], "tx.cm": [2024], "vzp.ro": [2024], "lk.zhukovsky.net": [22718], "www.15.cbsm.at": [8782], "workshop.chromeexperiments.com": [3122], "to.rgv.link": [2024], "riotclub.co": [2024], "*.akamaihd.net": [807], "www.antisocial.demozoo.org": [19808], "cdn3.iconfinder.com": [7920], "beards.life": [2024], "cdn1d-static-shared.phncdn.com": [12661], "y0utub3.cf": [2024], "www.zilog.com": [18966], "gamb.li": [2024], "cci.ornl.gov": [11730], "git31.rostrud.ru": [21677], "cdn2.teads.tv": [16059], "mrks.permkrai.ru": [21390], "account.playwarz.com": [18071], "embed.vidyard.com": [17792], "speakerkit.state.gov": [17146], "integration.codacy.com": [19634], "telekom-profis.de": [16152], "s2.gismeteo.ua": [6651], "forms.canterbury.gov.uk": [2824], "kenny.rpgmakerweb.com": [14054], "whatsbroadcast.com": [18332], "lists.aktivix.org": [815], "tres19.com": [2024], "this.ownsyou.de": [2024], "agtpr.com": [2024], "amcla.co": [2024], "dcw.bz": [2024], "dev.solydxk.com": [21898], "www.visiblemeasures.com": [17856], "on.klik.gq": [2024], "assets.gradwellcloud.com": [6869], "tombe.by": [2024], "bcned.in": [2024], "blogs.citrix.com": [3180], "api.paas.uninett.no": [17280], "imageslocal.fineartamerica.com": [5828], "iplayer.metafaq.com": [20970], "oatb.co": [2024], "haas.variety.com": [17656], "dbs.com": [4001], "mobile.bundles.bittorrent.com": [1974], "erickdavid.work": [2024], "www.500px.com": [205], "molevalley.objective.co.uk": [21225], "th.alibaba.com": [857], "w5d.co": [2024], "www.arxiv.org": [1180], "igolder.com": [7957], "towerbridge.dave.org.uk": [3999], "www.gov1.info": [6844], "saifurs.info": [2024], "colorado.edu": [17335], "crossorigin.me": [19724], "mit.tv": [2024], "aph.news": [2024], "nicaragua.usembassy.gov": [22406], "mail.islandsavings.ca": [8381], "adfs.brunel.ac.uk": [19459], "www.agrisupply.com": [777], "s27.postimg.io": [13024], "www.motherlessmedia.com": [10649], "75c2fec7-cb0a-4f98-d96d-7d8ecef99713-rum.cdnvideo.ru": [19536], "bctv.me": [2024], "forums.studentdoctor.net": [15603], "wiki-zeuthen.desy.de": [4386], "ttdrupallb1.uis.georgetown.edu": [6531], "ent.ro.vutbr.cz": [17609], "wiki.eclipse.org": [5040], "www.xrel.to": [18681], "eastlancs.greenparty.org.uk": [6908], "streaming.linux-magazin.de": [9407], "appp.li": [2024], "0kee.360.cn": [142], "mays.fyi": [2024], "hackerbat.ch": [2024], "t2.qlogo.cn": [13355], "zipapps.lincolnshire.gov.uk": [9380], "represent.us": [13847], "www.atlatszo.hu": [1349], "2013-sorokino.admtyumen.ru": [19082], "www.constantcontact.com": [3594], "www.fujitsu-webmart.com": [6223], "darch.ch": [3997], "hackaday.com": [20330], "www.creator.zoho.com": [18984], "imca.ic.nhs.uk": [10953], "rcl.li": [2024], "abo.nzz.ch": [21216], "fusion-lifestyle.com": [6252], "magazine.beer": [2024], "internet.mfpo.cuhk.edu.hk": [2704], "hiip.es": [2024], "fgm.link": [2024], "directory.rbwm.gov.uk": [21597], "tkto.cc": [2024], "go.gru.edu": [2024], "address.ipleak.net": [20571], "altacr.co": [2024], "www.miit.ua": [20982], "zlr.vn": [2024], "frauen.htwk-leipzig.de": [7596], "www.spbas.com": [14217], "news.google.co.*": [6821], "akamai.smartadserver.com": [15049], "djd.link": [2024], "mssqlbackup.active24.com": [19061], "reggi.ru": [13788], "developer.opensignal.com": [12010], "www.foxydeal.com": [6068], "vita.domonet.ua": [19877], "www.bussit.turku.fi": [22313], "www.aviation-safety.net": [19284], "flow.typo3.org": [15958, 15959], "seiji.yahoo.co.jp": [18730], "www.olimex.com": [11819], "spp.oxfordjournals.org": [12222], "secure.acceptiva.com": [500], "may.lt": [2024], "mccourt.georgetown.edu": [6531], "upstart.com": [17485], "bld.to": [2024], "iafl.tv": [2024], "thehigenius.com": [2024], "islamtoday.net": [8372], "ubt7.fanli.com": [5645], "fshare.vn": [6217], "de.trainings.350.org": [140], "*.perfectmarket.com": [12593], "tkool.degica.com": [3333], "d.suntravel.xyz": [2024], "www.llis.dhs.gov": [4026], "bandinelli.net": [1663], "webapps.brunel.ac.uk": [19459], "redm.us": [2024], "pru.sh": [2024], "admin.ias.edu": [7673], "www.de.adjug.com": [580], "buldum.me": [2024], "radv.st": [2024], "hunter.104.com.tw": [18], "game.msi.com": [9806], "www.bankcoop.ch": [3647], "smpc.it": [2024], "macnifi.co": [2024], "warehouse.python.org": [13314], "warwickshire.gov.uk": [22532], "www.infradead.org": [8135], "www.hotelplan.ch": [7561], "www.careers.state.gov": [17146], "slp.slpweb.com": [2024], "developer.baidu.com": [1641], "showmecon.parametersecurity.com": [12421], "www02.bezeq.co.il": [19362], "voa.va.gov": [17100], "psvr.co": [2024], "webmail.opentransfer.com": [12083], "ldn.glass": [2024], "lmes.es": [2024], "joycasino.info": [20654], "www.brixwork.com": [2361], "forums.xfinity.com": [22650], "www.zuse-crew.de": [19024], "www.project-syndicate.org": [13182], "center.cca.edu": [2547], "www.sevenonemedia.de": [14694], "cdnmundo1.img.sputniknews.com": [21951], "ocq.dk": [2024], "www.precisionmarinetools.com": [13066], "agnt.io": [2024], "www.ezaccessory.com": [5527], "*.appsecusa.org": [1163], "mcjctxn01.hkjc.com": [20384], "miya2.net": [2024], "myaccount.aol.com": [380], "vodafone.com": [17904], "my.civilservice.gov.uk": [19601], "support.foursquare.com": [6061], "kull.in": [2024], "hidepay.net": [7400], "lib.doteasy-nocookie.com": [4696], "awakencolumb.us": [2024], "www.videoaidedinstruction.com": [17777], "www.das-parlament.de": [4153], "bedrockformskaw.msn.com": [9810], "*.roundhouse.org.uk": [14040], "www.engadget.com": [5248], "drewmclellan.me": [2024], "cdn.opendemocracy.net": [12063], "awscf.cdngeek.net": [2930], "hp.msn.com": [9810], "betternet.co": [19360], "d.colwill.eu": [2024], "changecopyright.ru": [19559], "xiongdi.jd.com": [8436], "www.verisign.co.jp": [17712], "oldham.greenparty.org.uk": [6908], "euim.mstar.com": [10716], "www.atfonline.gov": [19267], "cdnsl.coveritlive.com": [3732], "larnatur.al": [2024], "a.lindin.es": [2024], "m.netbanking.hdfcbank.com": [7249], "edemat.montpellier3m.fr": [10609], "d.kabam.com": [2024], "support.zoho.com": [18984], "fpfo.co": [2024], "cams.pornworms.com": [12975], "services.retsinformation.dk": [13887], "i1.blogs.msdn.com": [9802], "funni.es": [2024], "t.jaschki.com": [2024], "www.l214.com": [20767], "support.dynatrace.com": [4819], "ssl14.ovh.net": [12205], "www.worldlandscapearchitect.com": [18547], "market.cmbchina.com": [2639], "fluttertoday.com": [5934], "bz.1688.com": [51], "media.go2app.org": [7214], "auth.gfx.ms": [6607], "*.bcge.ch": [20683], "www.roadtrippers.com": [13974], "downloads.canon.com": [2822], "booredatwork.com": [2229], "akamotu.info": [2024], "jandan.net": [8518], "www.ajc.com": [351], "q4.chaucanh.net": [2024], "hi-l.com": [2024], "hmbl.us": [2024], "vapo.us": [2024], "go.isummary.nl": [2024], "socialmed.io": [2024], "guru.sitescout.com": [14938], "uk.act-on.com": [19054], "fya.la": [2024], "mrk.tv": [2024], "vraag.aboma.nl": [2024], "bilet.tkbbank.ru": [16583], "stout.buzz": [2024], "kaimi.ru": [20678], "vlada.gov.sk": [15037], "cdn.cxense.com": [2709], "www.polipayments.com": [12306], "www.scanmarker.com": [14396], "scotturl.com": [2024], "cdn.augur.io": [1392], "gain.inl.gov": [20537], "pivotallabs.com": [12766], "tlpaines.co.uk": [2024], "ea.twimg.com": [16949], "www.randischumann.dk": [13602], "biotek.uio.no": [17414], "www.fmv.se": [5569], "forum.chroniclesofgeorge.com": [16335], "www.ispserver.com": [20588], "*.adjust-net.jp": [650], "pitt.edu": [17416], "snow.search.ch": [14504], "apidev.accuweather.com": [520], "idp.upr.edu": [17087], "sms.vodafone.pt": [17903], "cn.nytstyle.com": [11037], "www.nordkappnett.no": [11515], "www.bisaquran.com": [1945], "quotemedia.com": [13430], "u.bmeyer.me": [2024], "carview.yahoo.co.jp": [18730], "shop.hbo.com": [7031], "go.robillo.name": [2024], "www.transip.nl": [16733], "ttn.asia": [2024], "fbd.sh": [2024], "shop.asana.com": [1265], "www.mashery.com": [10055], "sospechas.es": [2024], "itunes.stanford.edu": [15448], "image.spreadshirtmedia.net": [15371], "app.status.net": [15501], "ip.casalemedia.com": [2880], "kris3d.me": [2024], "*.altlinux.org": [361], "www.lenta.ru": [20809], "www.shopinfo.net": [14787], "www.americanrifleman.org": [19189], "nsbank.dengisend.ru": [4344], "gameladen.com": [6411], "techsay.com": [16082], "icelol.ly": [2024], "api.forecast.io": [6001], "porndig.com": [21464], "jred.me": [2024], "ww.ipleak.net": [20571], "stylelik.eu": [2024], "i.slaxy.com": [2024], "nalog.yuga.ru": [22701], "jmdcg.co": [2024], "www.hdvest.com": [20359], "demworks.org": [4323], "ld-6.itunes.apple.com": [1151], "www.ladsholidayguide.com": [20770], "www.eroakirkosta.fi": [5336], "itwinterclosure.stanford.edu": [15448], "sonderdesign.com": [15203], "orderhlp.com": [14785], "erict.co": [2024], "www.franceinter.fr": [20147], "scholarship.berkeley.edu": [17329], "www.jabjab.de": [8482], "rpmc.co": [2024], "babs.link": [2024], "www.democracyclub.org.uk": [19804], "www.rsbac.org": [13516], "benoni.me": [2024], "university.cpanel.net": [2667], "s.urbie.nl": [2024], "scwer.be": [2024], "hsv.se": [7092], "codemoji.org": [3372], "paste.ubuntu.com": [17183], "sagr.co": [2024], "www.podfilter.de": [21446], "a.baiasu.ro": [2024], "jjkies.ch": [2024], "izuna.xyz": [2024], "sfst.support": [2024], "mygsb.stanford.edu": [15448], "www.naturvardsverket.se": [11143], "nadaguidesstore.com": [10907], "nwk-unbrick1.apple.com": [1151], "api.feide.no": [5729], "www.semaphoreci.com": [14632], "hdguide.hol.es": [2024], "miy.dji.com": [4029], "handbrake.fr": [7173], "www.hitbox.tv": [7428], "www.frascatiproducties.nl": [6086], "www.httpwatch.com": [7102], "urls.getmade.co": [2024], "*.palbin.com": [12369], "*.pairnic.com": [12365], "feedback.yandex.ua": [18747], "myaccount.coventry.gov.uk": [19705], "fxbusa.org": [2024], "b.smurl.in": [2024], "test.khabkrai.ru": [20709], "a2l.co": [2024], "m.xkcd.com": [22652], "t-mobile.com": [15837], "forever.btcchina.com": [1581], "smpla.net": [2024], "modecon.net": [2024], "acs.ucsd.edu": [17012], "mpb.fyi": [2024], "bigcartel.com": [1878], "www3.cs.stonybrook.edu": [15548], "bitcoinfees.21.co": [95], "objectsecurity.com": [11738], "searchcode.com": [14506], "www.mytatasky.com": [16037], "www.gowork.pl": [6773], "*.www.emunews.net": [5216], "ac.ebis.ne.jp": [5031], "dell.com": [4316, 4317], "go.shovan.co.uk": [2024], "rldk.co": [2024], "m13.baidu.com": [1641], "lm615.ga": [2024], "diybanter.com": [4028], "*.force.com": [14311], "fotomarburg.digitale-diathek.net": [4490], "www.sublimetext.com": [15626], "confan.im": [2024], "clicknupload.link": [19614], "lrcd.com": [9651], "forums.digitalpoint.com": [4484], "infographics.mediapart.fr": [10194], "*.santander.co.uk": [14354], "websense.com": [18180], "lciapi.ninthdecimal.com": [11460], "dn.dk": [4045], "*.lu.se": [9120], "givin.ga": [2024], "unsta.in": [2024], "eep.oxfordjournals.org": [12222], "www.wired.com": [18454], "static.alarabiya.net": [19131], "www.thepirateproxy.tech": [22174], "www.academics.de": [495], "directtoyou.derby.gov.uk": [4367], "go.affec.tv": [743], "whitehousehistory.org": [22580], "*.eltatar.com": [5181], "www.gradsch.ohio-state.edu": [11798], "www.quamnet.com": [13384], "blog.mondediplo.net": [10579], "www.cyberplat.ru": [3965], "url.adsfrom.us": [2024], "heasarc.gsfc.nasa.gov": [10909], "www.openmarket.org": [11993], "reiseauskunft.bahn.de": [1640], "www.interhome.ch": [8247], "sevenforums.com": [21793], "im.sohu.net": [15172], "www.tachanka.org": [15965], "ohiounion.osu.edu": [11797], "62.mvd.ru": [21055], "s.wantering.com": [2024], "www.engagemedia.org": [5250], "hdw.artsci.wustl.edu": [18089], "www.ambitiousaboutautism.org.uk": [19182], "breier.cc": [2024], "amarok.kde.org": [8735], "blog.digicert.com": [4461], "culture.play-asia.com": [12828], "www.radartv.nl": [13569], "secure.nature.com": [11140], "*.payson.se": [12520], "ews-sdc.federalreserve.org": [5707], "kamila.mysql.cesky-hosting.cz": [19553], "go.hint.com": [2024], "www.syspectr.com": [15822], "viaf.org": [17572], "media-dominaria.cursecdn.com": [3927], "support.redbubble.com": [13721], "www.hsbc.com.hk": [20427], "nigel.im": [2024], "ecm74.com": [5043], "loxp.co": [2024], "ter.play-asia.com": [12828], "www.slisystems.com": [14192], "assets.aarp.org": [279], "capepub.com": [2024], "snkrb0b.de": [2024], "mirrorreaderoffers.co.uk": [10484], "www.bitso.com": [2040], "nowview.it": [2024], "s5co.us": [2024], "www.mobilism.me": [21004], "zc-paimai.taobao.com": [16015], "www.freecallstousa.co.uk": [20866], "secure.currys.co.uk": [3926], "www.ammec.de": [366], "*.teamsales.eastbay.com": [5008], "slbd.me": [2024], "sws.ec": [2024], "uds.lat": [2024], "blog.ikoula.com": [7966], "dftbubbl.es": [2024], "b2card.tkbbank.ru": [16583], "bookie.io": [2219], "beta.happyplanetindex.org": [7190], "xui.ptlogin2.tenpay.com": [16185], "www.vestacp.com": [17740], "draws.random.org": [13606], "redfin.com": [13753], "co-operativebank.co.uk": [3329], "trnscnd.social": [2024], "ingushetia.sledcom.ru": [21858], "doc.ddg.lth.se": [9117], "dishonored.com": [18928], "passport.bitmain.com": [2025], "blogs.studyinsweden.se": [22017], "www1.voterinfo.gov.hk": [22499], "tracking.verisign.com.au": [17712], "t.ennis.pt": [2024], "ipad.datart.cz": [3998], "myuhc.com": [10837], "www.hardbase.fm": [20342], "portalsp.acs.ncsu.edu": [11531], "mlpforums.com": [9774], "feedback.unity3d.com": [17310], "skya.us": [2024], "connectbyhertz.com": [7371], "www.benefit.nl": [1807], "s.chalkport.com": [2024], "artsedge.kennedy-center.org": [20703], "jhrts.org": [2024], "images.nationalarchives.gov.uk": [11103], "store.calgunsfoundation.org": [2756], "cw.gp": [2024], "subscribe.pcspublink.com": [12259], "croc3.ga": [2024], "www.cacert.net": [2534], "madetech.com": [9857], "urlaubspiraten.de": [22401], "go.markj.me": [2024], "go2.mywaffl.com": [2024], "st4y.tk": [2024], "btrace.video.qq.com": [13329], "www.sesplan.gov.uk": [21790], "ultherapy.md": [2024], "speeds.play-asia.com": [12828], "popbank.us": [2024], "zombeewatch.org": [18991], "br.norton.com": [11545], "soundstrue.com": [15233], "*.r.msn.com": [9810], "www.arlt.com": [1226], "mondemp3.com": [10580], "za.myvirgo.info": [2024], "cbsmw.io": [2024], "mountainreservations.com": [10660], "buyersguide.cultofmac.com": [3909], "pressesenter.sparebank1.no": [21922], "poo.solutions": [12944], "link.adva.io": [2024], "shop.aol.com": [380], "list.taobao.com": [16015], "www.ail.htwk-leipzig.de": [7596], "joey.lu": [2024], "www.cooldestinations.net": [3643], "delfi.vrr.de": [17954], "cdon.fi": [2576], "*.ihgmerlin.com": [7741], "student.societyforscience.org": [15145], "affiliates.esellerate.net": [5346], "p.udn.com.tw": [17020], "*.thenewsmarket.com": [16373], "kultura.aktuality.sk": [1507], "en.exmail.qq.com": [13327], "ctd.me": [2024], "www.interfax.az": [20551], "wokingham.gov.uk": [22606], "o3.ua": [21219], "hacktionlab.org": [7147], "tracking.ulozenka.cz": [17212], "tel.mail.ru": [9891], "bark.gs": [2024], "nick.io": [2024], "smplyq.co": [2024], "vlclb.tk": [2024], "secure.www.mercurynews.com": [10301], "www.admin.ufl.edu": [17340], "cdnm.almayadeen.net": [19157], "musictemp.xbox.com": [18639], "www.typotheque.com": [16989], "ciems.uk": [2024], "museearcheo.montpellier3m.fr": [10609], "apps.calacademy.org": [2746], "*.anb.com.sa": [372], "ipsidixit.net": [8345], "devcenter.wercker.com": [22561], "100r.org": [12], "search.homecomputing.fr": [7487], "blogs.jetbrains.com": [8572], "dev.simplemachines.org": [21830], "login-msol-dc.vtv.aclu.org": [312], "mozilla-russia.org": [10690], "favicon.start.me": [15470], "synology.com.tw": [15802], "alu.ms": [2024], "rcdr.me": [2024], "chucki.es": [2024], "autocredit.bystrobank.ru": [2500], "backoffice.sedo.de": [14605], "bugs.cse.iitb.ac.in": [7748], "forum.openmpt.org": [11987], "selc.link": [2024], "alu.mn": [2024], "vacens.umontpellier.fr": [22365], "a.sunspirit.org": [2024], "tech.safehubcollective.org": [14291], "stag.cntraveler.com": [3558], "penza-realty.rambler.ru": [13600], "www.316space.harralmedia.com": [2144], "portal.rpxcorp.com": [13508], "sk.4.boardgamearena.com": [2182], "www.gradwellcloud.com": [6869], "hello90.444.hu": [183], "www.gesetze-im-internet.de": [6545], "cup-of-tea.it.ox.ac.uk": [17359], "i.li.ru": [9499], "yamaha.us": [2024], "cdn.fronter.com": [20179], "lists.ruhr-uni-bochum.de": [14086], "home.web.cern.ch": [2588], "gammae.com": [6430], "my.appcelerator.com": [1144], "www.echosign.adobe.com": [669], "newapi.autoscout24.ch": [1457], "istore.ccccloud.com": [2554], "refeds.org": [13472], "account.aliyun.com": [868], "xmp.cc": [2024], "care.bluecatnetworks.com": [2140], "s.m1k3.pw": [2024], "accom.brunel.ac.uk": [19459], "media.consumeraffairs.com": [3600], "jumpshare.com": [20666], "link.nelly.com": [2024], "*.ebayclassifieds.com": [19946], "ns1.theregister.co.uk": [22182], "makibox.com": [9929], "oit.ncsu.edu": [11531], "lngs.tv": [2024], "signup.jiveon.com": [8599], "solari.st": [2024], "rpdne.ws": [2024], "zhaocaibao.alipay.com": [864], "www.keksbude.net": [8857], "jdi.jsemvip.cz": [2024], "tcrl.osu.edu": [11797], "bfg.oxfordjournals.org": [12222], "app-us4.resrc.it": [13659], "ucsc.worldcat.org": [18536], "web.tele2.se": [2024], "managers.usc.edu": [17366], "public.chaturbate.com": [3040], "cdn.theladbible.com": [22158], "www.assetmanagement.hsbc.co.in": [20419], "no.godaddy.com": [6755], "apt.ring.cx": [13947], "r24626598.sync.app.asana.com": [1265], "h4hweb.com": [2024], "mlk.md": [2024], "store.xamarin.com": [18629], "www.berlios.de": [1819], "mbrs.tk": [2024], "mirror.oops.org": [11933], "*.crypteianetworks.com": [3846], "linguee.de": [9390], "www.fastwebhost.com": [5668], "www.antergos.com": [1098], "www.allnokia.ru": [19153], "www.uscurrency.gov": [17136], "zynga.my": [2024], "stark.to": [2024], "*.sdss3.org": [15032], "rchd.cf": [2024], "*.cagw.org": [2527], "www.nancysgonegreen.com": [11065], "openprinting.org": [12073], "fstr.co": [2024], "www.globalscaletechnologies.com": [6720], "freestarz-tv.ga": [2024], "me.gravity.com": [6884], "id.popin.cc": [12954], "amatt.as": [2024], "korsakov.sakh.com": [21719], "pay.allabrd.com": [2024], "t1.stormiq.com": [15567], "go.cri.ms": [2024], "static-elerium.cursecdn.com": [3927], "www.svoboda.org": [22052], "*.start.me": [15469], "www.distraction.gov": [4563], "i.simpli.fi": [14892], "bergencc.worldcat.org": [18536], "www.steamspy.com": [15523], "*.ets.org": [4968], "w3t.co": [2024], "www.rsi.ch": [21957], "perm.startsmile.ru": [21980], "getcertified.adform.com": [639], "go-b.co": [2024], "mpi-soft.mpg.de": [10100], "www.adnetexpress.net": [19084], "www.airbnb.ru": [793], "upic.me": [17473], "volkswagenbank.de": [17919], "www.tickermadness.com": [16487], "sltees.com": [2024], "s.hkeeu.org": [2024], "advertisers.dataxu.com": [4182], "katelavie.co": [2024], "help.gitbook.io": [6656], "d.hitravel.xyz": [2024], "readitlaterlist.com": [13667], "tt.vutbr.cz": [17609], "mbahq.co": [2024], "block.malwarebytes.com": [9940], "www.ucuzu.com": [17191], "www.opsterland.nl": [11172], "www.business.spectrum.com": [15318], "scbl.co": [2024], "www.proxer.me": [13220], "chango.com": [3003], "pilegaarden.kk.dk": [8748], "l.evens.eu": [2024], "kffdik.be": [2024], "www.espiv.net": [20021], "voice.megapath.com": [10240], "my.piggli.com": [2024], "vtz.lv": [2024], "s28.postimg.io": [13024], "nor.fronter.com": [20179], "yasukegroup.olx.pt": [11824], "www.cdon.fi": [2576], "community.wareable.com": [22525], "news.usni.org": [17125], "kevinlinks.it": [2024], "media.marketwire.com": [10030], "lk.pap.vn": [2024], "gaz-pay.a-3.ru": [258], "ourlocality.org": [12177], "scholar.google.*": [6821], "ru.aravot.am": [19225], "alp.alicdn.com": [853], "bf1.co": [2024], "blendle.nl": [2087], "mail.protvino.net": [21519], "go.distil.it": [2024], "community.servicenow.com": [14682], "www.ouedkniss.com": [21311], "kinimatorama.net": [20718], "ispid.nl": [7835], "www.cronkitenewsonline.com": [3808], "funkyandroid.com": [6245], "flex.atdmt.com": [10393], "9.xhcdn.com": [18605], "at.redhat.com": [13735], "blog.ludialudom.sk": [9661], "intellilink.visa.com": [17846], "status.fitbit.com": [5867], "123bay.space": [22174], "zenmate.co.id": [18917], "www.personalausweisportal.de": [12613], "go.shbaah.com": [2024], "s.keroup.com": [2024], "ads.rubiconproject.com": [14066], "500nm.ch": [2024], "touchnetrefund.ecsi.net": [4873], "worldofwarplanes.*": [18552], "2ch.cm": [121], "donations.rspca.org.uk": [13521], "utrlink.to": [2024], "portal.johnshopkins.edu": [8626], "stne.co": [2024], "on.planetsyria.org": [21433], "mappingmediafreedom.org": [9983], "gwlaw.worldcat.org": [18536], "si0.rgstatic.net": [13481], "learntm.org": [2024], "penza.europaplus.ru": [20034], "zmtr.zscaler.com": [19012], "cata.ly": [2024], "wp-admin.bisaquran.com": [1945], "www.dlvrit.com": [19855], "go.slide.me": [2024], "capgaz.co": [2024], "www.atomicorp.com": [1355], "ro.ble.to": [2024], "tacticalsecret.com": [22083], "mrhe.at": [2024], "ww797.smartadserver.com": [15049], "piratebay.unlockproject.win": [22259], "gb.youcanbook.me": [18794], "s136.cnzz.com": [3328], "premii.com": [7444], "cms.fightforthefuture.org": [5770], "www.it.umd.edu": [17351], "b93.yahoo.co.jp": [18730], "drafto.ps": [2024], "docdb.fnal.gov": [5741], "b6.yahoo.co.jp": [18730], "ysr.photo": [2024], "img9.warez-bb.org": [18072], "jamieoliver.com": [8515], "*.ctep-ebp.com": [2697], "jole.oxfordjournals.org": [12222], "athom.as": [2024], "artur.flightradar24.com": [20119], "luckyshare.net": [9660], "provision.relay.kaseya.net": [8817], "netloan.kent.gov.uk": [8867], "www.soylent.com": [15267], "*.npd.com": [10986], "limited.guvm.mvd.ru": [21055], "data.cms.gov": [19630], "lopezjd.com": [2024], "www2.smartadserver.com": [15049], "finansportalen.no": [5814], "store.urbandictionary.com": [17494], "akbars.ru": [19128], "www.arte.tv": [19239], "tog.ie": [15909], "samples.mplayerhq.hu": [9798], "vh2.vutbr.cz": [17609], "pqsent.me": [2024], "57.mvd.ru": [21055], "spoiltv.me": [2024], "highland.objective.co.uk": [21225], "app.zingcheckout.com": [18971], "online.ofsted.gov.uk": [21231], "www.gmx.ch": [6330], "gtup.me": [2024], "cogxr.co": [2024], "opc.gov.au": [11786], "nzbplanet.net": [11639], "helpdesk.lastpass.com": [9175], "indymedia.nl": [8088], "anatomiaembriologiagenetica.unizar.es": [17441], "balinesas.net": [2024], "redbullracingadmin.kartfighter.com": [8814], "esuppliers.ic.nhs.uk": [10953], "iamau.ca": [2024], "blog.cpanel.com": [2665], "epdn.co": [2024], "ken.pw": [2024], "decal.mobi": [2024], "cctea.ch": [2024], "physics.williams.edu": [18408], "assets.huggies-cdn.net": [7606], "westandsouthdorset.greenparty.org.uk": [6908], "iasbo.tools": [2024], "cryptotec.com": [19733], "www.pr.co": [13053], "bugzilla.flamingspork.com": [5881], "www.nightlove.me": [11434], "www.airbites.net.ua": [19120], "learning.gov.wales": [6843], "flat.pw": [2024], "irc.jquery.org": [8462], "hotelimages.zuji.com.hk": [19021], "www.coopathome.ch": [3647], "www.bihira.com": [1896], "tools.qubitproducts.com": [13395], "buyiphone2.apple.com": [1151], "horrifying.co": [2024], "gamma.akixi.com": [19129], "bcourses.berkeley.edu": [17329], "publish.aps.org": [976], "s.aac.st": [2024], "radware.com": [13584], "r8.io": [2024], "www.republic.ru": [21630], "viawi.re": [2024], "vhk.li": [2024], "res.mobsec.rub.de": [13539], "kldp.org": [8753], "ziedot.lv": [18958], "cloudshep.co": [2024], "au.gwn7.yahoo.com": [18725], "www.netts.ru": [21114], "protectwise.com": [13210], "altay.beeline.ru": [1778], "mrh.ibizarocks.com": [7899], "www.chtn.org": [19589], "cname.createsend.com": [3769], "lego.gizmodo.com": [6677], "s0.m.hao123img.com": [20340], "digitecgalaxus.ch": [4495], "samsungfire.com": [14329], "foxd.tv": [2024], "treee.es": [2024], "tradeshow.alibaba.com": [857], "publicaccess.nih.gov": [11090], "www.thuisbezorgd.nl": [16474], "virusdesk.kaspersky.com": [8820], "goduke.com": [4792], "wiki.openmamba.org": [21276], "*.cio.com": [2623], "blog.imgix.com": [20504], "help.asana.com": [1265], "www.home-school.com": [20394], "fw.rosminzdrav.ru": [21674], "d-track.send.microad.jp": [10377], "www.cusu.cam.ac.uk": [17332], "sprintrebates.com": [15386], "u-blox.com": [16993], "www.google.com.kapsobor.de": [8807], "it.taobao.com": [16015], "de.opera.com": [12086], "shewrit.es": [2024], "www.tripwell.com": [16824], "pllh.co": [2024], "puppetlabs.com": [13276], "www.xara.com": [18631], "a.lefton.co.uk": [2024], "store.aps.org": [976], "wusmapply.wustl.edu": [18089], "plimus.com": [12857], "on.hubii.com": [2024], "www.abiresearch.com": [289], "members.actiac.org": [19055], "*.clara.net": [3213], "exedweb.cc.uic.edu": [17321], "mail.fa.vutbr.cz": [17609], "www.kulcs-soft.hu": [9046], "www.teststackoverflow.com": [15424], "contrasterra.ru": [19677], "www.permkrai.ru": [21390], "www.bnw.im": [19419], "mxsr.co": [2024], "wcls.co": [2024], "to.hamaka.nl": [2024], "board.muse.mu": [21053], "fb.brayola.com": [2024], "go.omf.org": [2024], "*.asmp.org": [990], "vpnreactor.com": [17591], "www.telushealth.com": [16174], "uknso2.nso.ru": [21192], "alilang.alibaba-inc.com": [19139], "forum.opencaching.pl": [21269], "contests.nvidia.eu": [11021], "cdn4.kongcdn.com": [8987], "sodl.co": [2024], "m.news.mail.ru": [9891], "dillonscott.co": [2024], "studiegids.tue.nl": [15940], "security.ncsa.illinois.edu": [17346], "www.portnerpress.com.au": [12987], "studentprivacypledge.org": [22016], "apha.us": [2024], "www.giftplanning.nature.org": [11141], "heslo.atlas.sk": [19269], "www.newstube.ru": [21130], "www.fluendo.com": [5930], "o2offers.co.uk": [2024], "sandbox.sandvine.com": [14347], "l.drnk.in": [2024], "stockport.objective.co.uk": [21225], "nature.asia": [2024], "assets.mcc.gov": [20940], "www.vlagtwedde.nl": [11172], "mantisbt.org": [20923], "b2bmediaportal.com": [1511], "kassini5.beget.com": [19347], "m.bw.com": [1607], "laptop.hu": [9167], "tywed.co": [2024], "www.forum.1and1.ca": [70], "itif.org": [20604], "i3.gallery.technet.microsoft.com": [10396], "pixel.redditmedia.com": [13749], "otley.greenparty.org.uk": [6908], "pappty.co": [2024], "l.saptak.in": [2024], "www.pcr-online.biz": [21372], "wsm10.scc.kit.edu": [8812], "groups.inovem.com": [20539], "www.binrev.com": [1917], "www.bitsapphire.com": [2037], "subscribe.ft.com": [5810], "blaagaarden.kk.dk": [8748], "tracker.wikimedia.cz": [18388], "mbls.ro": [2024], "vcdx.co": [2024], "sndr.es": [2024], "www.risparmiopostale.it": [13960], "searchmobius.org": [9785], "dalemacartney.com": [4121], "litrs.ee": [2024], "www.mcclurken.org": [17349], "dentalacard.us": [2024], "ud.astrobl.ru": [19264], "www.autotrader.co.uk": [19279, 19280], "stopwatching.us": [15555], "syfy.tv": [2024], "blog.pagefair.com": [12358], "bly.volution.ro": [2024], "maidstone-consult.objective.co.uk": [21225], "business.illinois.edu": [17346], "www.gohugo.io": [20281], "www.whamcat.com": [18322], "www.copyright.com": [3659], "helpcenter.stanford.edu": [15448], "viewphoto.us": [2024], "0.vgc.no": [17569], "pewrsr.ch": [2024], "www.protectnetwork.org": [13211], "policy.greenparty.org.uk": [6908], "www.nuclearcat.com": [11607], "sjw.ms": [2024], "pharmacy.buffalo.edu": [17382], "graphene-lda.com": [6877], "objednavka.active24.cz": [19062], "go.sjsu.edu": [2024], "paralympic.org": [21343], "lbjcrs.ust.hk": [22412], "thegunwire.tw": [2024], "ik.cm": [2024], "www.whatsappbrand.com": [22576], "portalws.udistrital.edu.co": [17195], "*.geotrust.com": [6534], "almet.europaplus.ru": [20034], "maeweb.ucsd.edu": [17012], "jon.gr": [2024], "boundarydevices.com": [19433], "www.sinastorage.com": [14911], "history.lds.org": [16293], "sbdh.ws": [2024], "www.omicron.at": [11671], "popcorn-time.se": [12961], "b.apadv.co": [2024], "hgrn.es": [2024], "facebook.fr": [5612], "www.chef.io": [3061], "pdfmerge.com": [12265], "www.bigstockimages.com": [1895], "ece.osu.edu": [11797], "forum.torrentbit.net": [16656], "lacaixa.es": [9127], "blogs.bing.com": [1926], "www.pizza.fr": [12784], "muscle.ms": [2024], "virtualearth.net": [17840], "en.bn.by": [19416], "www.access-kaiseki-tools.com": [501], "labintel.cnrs.fr": [6174], "apamsa.stanford.edu": [15447], "login.104.com.tw": [18], "www.kiel.fau.org": [5543], "download-mirror.savannah.gnu.org": [6337], "bt.robdyke.com": [2024], "charterbusiness.com": [3028], "chclt.ch": [2024], "lists.linux.it": [9419], "sbucciami.com": [14385], "www.galaxis.at": [6384], "blu.stb.s-msn.com": [14115], "dert.ca": [2024], "twj.tips": [2024], "nbackup.co": [2024], "zwift.me": [2024], "drmb.co": [2024], "l.arranca.me": [2024], "sidebar.issuu.com": [8392], "www.hivelocity.net": [7434], "www.headphone.com": [7252], "acr.uz": [2024], "rainierarms.com": [21576], "lwssvcs.lowes.com": [9645], "thebrauha.us": [2024], "www.comic-con.net": [3467], "www.2020mobile.es": [93], "thrivas.us": [2024], "geodacenter.org": [1220], "*.akg.com": [7200], "ben.ec": [2024], "moja.postovabanka.sk": [13028], "vdfn.pt": [2024], "www.ustream.tv": [17536], "pr.norton.com": [11545], "m.chrisross.cc": [2024], "bkkvpn.unicef.org": [17069], "www.gdatasoftware.co.uk": [6272], "beautybar.com": [1769], "autodiscover.valleyfirst.com": [17620], "manife.st": [2024], "gkinsi.de": [2024], "panel.cj2.nl": [2629], "go.brrice.edu": [2024], "files.vbulletin.com": [17557], "hu.piliapp.com": [12706], "www.sitelabs.co.uk": [21840], "nuxx.net": [11626], "shpd.it": [2024], "kint.ec": [2024], "sudoroom.org": [15644], "thspbx.com": [2024], "djurrattsalliansen.se": [4583], "mendeleevo.beeline.ru": [1778], "*.spreadshirt.ie": [15371], "skydrive.live.com": [9495], "www.cinestar.de": [3146], "www.zealdocs.org": [22711], "ateneutgn.ourproject.org": [21314], "www.gtt.net": [6371], "green.io": [2024], "miwo.me": [2024], "gumc.georgetown.edu": [6531], "i.toyota.com.br": [2024], "ad.shipc.co": [2024], "qiwi.ru": [13352], "analytics.tacticaltech.org": [15966], "m.files.bbci.co.uk": [19332], "www.nkvf.admin.ch": [22061], "url.aru-b.com": [2024], "nvr.de": [11628], "www.url2png.com": [17498], "www.portal.leeds.ac.uk": [17403], "support.microsoft.com": [10396], "bwknr.me": [2024], "*.salford.ac.uk": [17420], "gart.land": [2024], "greatpress.com": [2024], "services.eoportal.org": [5302], "hnd.bz": [2024], "admission.umftgm.ro": [22364], "doctorswithoutborders.org": [4614], "fredrikolofsson.com": [20152], "3-t.imgbox.com": [7997], "www.censornet.com": [19539], "l.de": [9072], "magicalbutter.com": [9875], "buddypress.org": [2408], "*.t.eloqua.com": [5172], "sugarcrm.hostone.com.au": [7525], "mail.capsd.usc.edu": [17366], "*.policymic.com": [12910], "hwb.wales.gov.uk": [18051], "vriq.us": [2024], "static-mercury.cursecdn.com": [3927], "dou.ba": [2024], "img.wbcsrv.com": [18332], "www.codeigniter.com": [19637], "guide.nature.com": [11140], "www.cede.ch": [19537], "www.domainreseller.ru": [4657], "cvsweb.openbsd.org": [11955], "www.cdn.receivesmsonline.net": [21608], "www.raphaelhertzog.com": [13612], "d502.epimg.net": [5126], "www.tradeinchecker.com": [16714], "live.theverge.com": [16286], "cybersecurity.holyrood.com": [20393], "ggoo.me": [2024], "omyk.co": [2024], "soapbox.buzz": [2024], "prlog.gq": [2024], "badnerd.ml": [2024], "statical.beeline.kz": [19345], "delivery.switchadhub.com": [15764], "cetak.me": [2024], "1.life.taobao.com": [16015], "frankfurt.webconsole.linode.com": [9401], "glasgowclub.me": [2024], "www.hostasaurus.com": [7528], "r24625365.sync.app.asana.com": [1265], "dms-q.wiiings.com": [18381], "notenoughshaders.com": [11555], "produkte.migros.ch": [10417], "msft.la": [2024], "thediplomat.com": [16262, 22150], "epic-sb.com": [2024], "gubernator.49gov.ru": [187], "ctlp.unodc.org": [17075], "arkinv.st": [2024], "computing.scs.illinois.edu": [17346], "secure.sigmaaldrich.com": [14839], "n4u.co": [2024], "secure.aarp.org": [279], "internationalsos.com": [8266], "ls.ly": [2024], "cimbsecurities.co.th": [2620], "syncproxy.au.debian.org": [4263], "silentcircle.com": [14848], "dns.dynect.net": [4829], "techpresident.com": [16079], "www2.clearos.com": [19608], "leadlander.com": [9208], "j.gmodmp.jp": [20271], "quin.pw": [2024], "www.anwiki.com": [19210], "*.tu-chemnitz.de": [15935], "www.buffalostate.edu": [2418], "s.atwebs.net": [2024], "careers.microad.co.jp": [10376], "www3.citymapper.com": [3195], "g.maryno.net": [20928], "oss-bh.infinum.co": [20526], "www.digitaldefenders.org": [4477], "enhancedsteam.com": [5261], "zlerr.com": [2024], "guides.web4all.fr": [18148], "www.nesea.org": [10942], "ru.redhat.com": [13735], "researchmatch.org": [13855], "*.secure-zone.net": [14551], "in.flux.com": [2024], "atsevents.neustar.biz": [11320], "democracy.plymouth.gov.uk": [21442], "zfyr.us": [2024], "zamanillo.pro": [2024], "akdt.tk": [2024], "community.liveperson.com": [9506], "kjkh.me": [2024], "uservoice.com": [17526], "www.eztvstatus.com": [20063], "biznessed.co.uk": [2024], "gitcop.com": [6657], "www.unrealengine.com": [17450], "imediaconnection.com": [7765], "www.sacredcrystalsingingbowls.com": [3885], "www.active24.cz": [19062], "www.cardsagainsthumanity.com": [2848], "v4.windowsupdate.microsoft.com": [10395], "albank.dengisend.ru": [4344], "*.provisu.ch": [21521], "ecentral.social": [2024], "clz.co": [2024], "astrakhanskaya-obl.beeline.ru": [1778], "cheshi.re": [2024], "m.webnames.ru": [22550], "my.kprf.ru": [20751], "www.gruen.net": [6361], "wiki.uis.georgetown.edu": [6531], "pendure.me": [2024], "hiawatha-webserver.org": [7393], "www.chbe.illinois.edu": [17346], "hnsdgtl.co": [2024], "risi.com": [13492], "*.sternkom.de": [15536], "*.unr.li": [17452], "join.thescottishsun.co.uk": [22185], "endace.com": [5234], "hosting.earthlink.net": [4997], "www.openprinting.org": [12073], "support.enthought.com": [5286], "rohc-lib.org": [13503], "www.thehoxton.com": [16366], "sze.co": [2024], "sieve.schmidtcom.de": [14419], "bitcore1.trezor.io": [22282], "autodiscover.llu.leeds.ac.uk": [17403], "paywithamazon.amazon.in": [19177], "ba.imhd.sk": [8004], "arh.sledcom.ru": [21858], "delico.se": [4311], "mbdapp.iqiyi.com": [20465], "www.yourlogicalfallacyis.com": [18815], "opkode.com": [12093], "animaux.l214.com": [20767], "asset-2.soup.io": [15235], "dalian.jd.com": [8434], "code.msdn.microsoft.com": [10396], "evernote.com": [5440], "emob.co": [2024], "wldc.us": [2024], "joestra.us": [2024], "*.accordancebible.com": [512], "de.biotrimlabs.com": [1940], "www.hotel.ch": [20411], "nomino.openstreetmap.fr": [12079], "hsny.co": [2024], "csa-cee-summit.eu": [2677], "l.lasunison.uk": [2024], "ffmpeg.mplayerhq.hu": [9798], "www.shop.bt.com": [1578], "printmojo.com": [13116], "n.hashtagdc.com": [2024], "omit.tv": [2024], "www.teamxlink.co.uk": [16071], "betc.lc": [2024], "tvax1.sinaimg.cn": [14910], "www.livestock-transport.com": [9526], "gazduj.etrend.sk": [5383], "searchwww.sec.gov": [17104], "phpbb.com": [12681], "platinum.unizar.es": [17441], "www.eternallybored.org": [20026], "plannedgiving.com": [12810], "lounge.stelladot.com": [15531], "cofam.us": [2024], "wpartyslots.com": [2024], "c1.q-assets.com": [21551], "api.pushover.net": [13298], "loisirs2.cff.ch": [15756], "my.365ide.as": [2024], "theblackpooltower.com": [16254], "www.scottevest.com": [14460], "ads.ign.com": [7734], "vook.com": [17931], "www.enkartya.tervezes.kh.hu": [8739], "bruxelles.indymedia.org": [8090], "cfpp.me": [2024], "jiadian.taobao.com": [16015], "www.it-sicherheit.de": [8194], "www.webfestglobal.com": [18211], "emojione.com": [5202], "www.shareholder.anz.com": [374], "help.duo.com": [4797], "www.shop.express.co.uk": [5507], "lava.to": [2024], "www.lullabot.com": [9667], "p.papierossi.de": [2024], "blab.fyi": [2024], "ams.bike": [2024], "cernvm.web.cern.ch": [2588], "vsty.ca": [2024], "hzw.press": [2024], "toyota.us": [2024], "u.scruf.us": [2024], "go.bigr.us": [2024], "zipth.at": [2024], "www.foresters.biz": [6008], "www.otakumode.com": [12162], "r.notmax.co": [2024], "www.fragdenstaat.de": [6073], "wiki.jenkins-ci.org": [8565], "developers.facebook.com": [5609], "yourar.ch": [2024], "www.golosislama.ru": [6810], "espanol.smokefree.gov": [21872], "leviathansecurity.com": [9288], "apt.intevation.de": [8293], "djzenoth.com": [2024], "hellerlab.stanford.edu": [15448], "by.marshkev.in": [2024], "ohiostatealumni.org": [11801], "g-p-l.us": [2024], "ftapi.info": [2024], "huffingtonpost.com": [7604], "billing.ivacy.com": [8411], "swp.li": [2024], "go.foerstel.com": [2024], "www.questia.com": [13405], "mail.collyers.ac.uk": [3433], "gypsy.freedesktop.org": [6102], "weblogin.inf.ed.ac.uk": [5059], "ursal.es": [2024], "www.bydavidwittig.com": [2499], "goldenpass.ch": [20283], "owa.connect.kent.ac.uk": [17402], "sh.mintama.info": [2024], "www.movieposter.com": [10683], "s3.postimg.org": [13024], "lifewith.dog": [2024], "x.jenn.nu": [2024], "dbforums.com": [4002], "alzu.tk": [2024], "www.hud.gov": [17099], "dushanbe.usembassy.gov": [22406], "s.kyled.me": [2024], "eastie.info": [2024], "www.brulinesfuelsolutions.com": [17750], "developer.leafly.com": [9218], "uwm.co": [2024], "liveinternet.ru": [9500], "smxpo.com": [2024], "www.ruby-china.org": [14069], "secure.stage-gettyimages.com": [6604], "bancamigros.ch": [10414], "partner.walmart.com": [18059], "authr.in": [2024], "*.blackvpn.com": [2061], "ss8.sinaimg.cn": [14910], "s.soplab.net": [2024], "www.checksconnect.com": [7199], "brt.bz": [2024], "www.xroxy.com": [18682], "testssl.sh": [16219], "manitu.net": [9965], "lorenwa.de": [2024], "www.frequentis.com": [6176, 6177], "new.majordomo.ru": [9914], "www.varnish-software.com": [17660], "bit.ocuw.org": [2024], "*.swt.com": [14270], "training.ebsco.com": [4864], "secure.bizland.com": [2050], "mailings.gmx.net": [6330], "ibm.co": [2024], "zh-tw.libreoffice.org": [9327], "zerocater.com": [18941], "autodiscover.utm.edu": [17426], "businesshelp.comcast.com": [3462], "cleancities.energy.gov": [5243], "id.secondlife.com": [14527], "www.seba-geek.de": [15199], "volunteerbooking.london.gov.uk": [9590], "imgurs.cf": [2024], "aveb.me": [2024], "s5.gismeteo.md": [20251], "www.fora.tv": [5575], "princey.me": [2024], "www.carrier-lost.org": [2873], "api-v1.websitealive.com": [18242], "www.vanderbilthealth.com": [17646], "4giv.us": [2024], "verdk.com": [2024], "snkrhnt.rs": [2024], "i2.rgstatic.net": [13481], "on.ezdoo.me": [2024], "*.lockerdome.com": [9556], "vivad.aolcdn.com": [381], "tri.gl": [2024], "kostomuksha.startsmile.ru": [21980], "gorsel.yandex.com.tr": [18740], "*.unilever.com": [17277], "visa.jd.com": [8436], "www.mozo.com.au": [10703], "roxy.bz": [2024], "cdn.mouseflow.com": [10664], "npd.com": [10986], "13mdk16u89mola4egak3guvuzuptlj0qri1pscny.ipleak.net": [20571], "on.wxii.com": [2024], "fr.debconf.org": [4257], "gmx.info": [6330], "winhawille.edu.hel.fi": [18445], "www.mooc-list.com": [9792], "media.tokyo2020.jp": [22230], "keyserver2.pgp.com": [12275], "www.hostingsolutions.cz": [7538], "sbsg.it": [2024], "teenrevenue.com": [16124], "17167bb2-d1ad-f19e-8282-1fa8823859c1-rum.cdnvideo.ru": [19536], "assadi.me": [2024], "obm.io": [2024], "s.joinuz.nl": [2024], "rm79.co": [2024], "lttlmg.ht": [2024], "board.play-asia.com": [12828], "acrgtn.net": [2024], "www.antizapret.info": [1107], "expo.engineering.osu.edu": [11797], "paths.ioninteractive.com": [20561], "video.unrulymedia.com": [22383], "edoceo.com": [5079], "umw.starfishsolutions.com": [21977], "cas.oebb.at": [21230], "examp1e.net": [5470], "m.europaplus.ru": [20034], "audrhb.co.uk": [2024], "www.linux-tips.org": [9413], "www.undergraduateresearch.osu.edu": [11797], "smtrcs.redhat.com": [13735], "salesca.re": [2024], "sqsp.me": [2024], "lists.sans.org": [14128], "docs.eiffel.com": [5111], "assets.myyearbook.com": [10864], "8.360.cn": [142], "www.freewebsitetemplates.com": [20169], "e.mag2.com": [2024], "scholarcommons.usf.edu": [17362], "abf.openmandriva.org": [11992], "ftp.uhulinux.hu": [22349], "www.leibniz-supercomputing-centre.de": [9253], "cdn.playboy.com": [12836], "links.f5.com": [2024], "www.o2tv.cz": [16141], "www.dealspwn.com": [7556], "*.skitch.com": [14979], "atmia.com": [19270], "wdl.me": [2024], "xcentr.al": [2024], "feature.rescue.org": [21632], "math.ias.edu": [7673], "kiwiirc.com": [8943], "lhomes.org.uk": [2024], "www.red-dove.com": [13717], "ci.jenkins.io": [20638], "a.ucsd.edu": [17012], "www.myra.gov": [10823], "fr.norton.com": [11545], "www.microsoftventures.com": [10403], "service.wienit.at": [18376], "p6.qhimg.com": [13347], "drds.us": [2024], "fanlit.net": [2024], "www.loverpi.com": [9640], "dshaw.me": [2024], "www.delivery.com": [4315], "hgyt.cf": [2024], "debenhams.com": [19794], "ovh.biz": [11723], "icur.so": [2024], "www.cstatic-graphics.com": [3892], "x14.eu": [17574], "structures.ucsd.edu": [17012], "go.krib.it": [2024], "jve.linuxwall.info": [9451], "sl.thomas.do": [2024], "tck.x5.ru": [18590], "www.own-mailbox.com": [12213], "asada.govspace.gov.au": [6851], "m.internet.org": [8276], "solola.ca": [15193], "u.herda.me": [2024], "www.niteflirt.com": [11464], "bhamcommunity.nhs.uk": [10953], "cnet.stacksocial.com": [15428], "understanding.webtrends.com": [5170], "umich.edu": [17354], "wsj.com": [22625], "bsocl.com": [2024], "brt.gs": [2024], "www.pkcsecurity.com": [12294], "ubertacc.io": [2024], "10.mvd.ru": [21055], "www.northern-indymedia.org": [11540], "vdio.com": [17671], "portal.vcd.org": [17560], "cs.specificclick.net": [15314], "debbugs.gnu.org": [6337], "conf.kde.org": [8735], "refugeesmigrants.un.org": [17057], "devever.net": [4408], "sbb.rip": [2024], "exoplanets.jpl.nasa.gov": [10909], "www.dg.ens.fr": [4922], "dvui.mvd.ru": [21055], "images.palcdn.com": [12237], "banquemigros.ch": [10414], "fr.pcisecuritystandards.org": [12253], "t4keme0ut.tk": [2024], "www.edigitalresearch.com": [4893], "aulit.ca": [2024], "smc.tocco.ch": [16600], "www.myshadow.org": [10859], "cpics.org": [2024], "www.atomz.com": [1356], "dot.toocheap.jp": [2024], "www.girlsoutwest.com": [6648], "myportal.ti.com": [16225], "cdn.btrcdn.com": [1596], "my.urlby.us": [2024], "wrgrp.social": [2024], "yym.ca": [2024], "integration.quotes.bkb.ch": [20683], "b2b.vse.sk": [17955], "nams.me": [2024], "tickets.london2012.com": [9584], "owa.nottingham.ac.uk": [11567], "skimlinks.com": [14976], "www.linuxvoice.com": [9440], "hbrkt.com": [2024], "new.x2go.org": [18589], "buy.etao.com": [4965], "imagefilter.app.compendium.com": [3519], "yuedu.163.com": [50], "anketa.otpbank.ru": [12165], "www.t-mobile.nl": [15836], "cs.libreoffice.org": [9327], "*.sabayon.org": [14275], "*.networksgroup.com": [11249], "go.taboola.com": [15963], "ethosapp.me": [2024], "discover.com": [4536], "pprzzi.de": [2024], "updateframework.com": [17470], "doc.mageia.org": [9865], "jostir.mx": [2024], "sbxin.co": [2024], "ttms.us": [2024], "telefoniczna-kopalnia.panoptykon.org": [12395], "*.kpn.nl": [8761], "gowav.com": [2024], "www.zenmate.sg": [18917], "jessluna.com": [2024], "www.service.futurequest.net": [6262], "www.unet.by": [22367], "sarthe.me": [2024], "video29.0xdb.org": [10], "blog.hslu.ch": [7589], "www.openinventionnetwork.com": [11941], "canvas.sfu.ca": [14708], "onlinehelp.microsoft.com": [10394], "edirectdebit.com": [4895], "sc2mapster.com": [3927], "t.360.cn": [142], "ambassadors.prestashop.com": [13085], "www.sieciovo.pl": [14829], "bitly.expert": [2024], "go.pwm.pt": [2024], "www.homebello.com": [7476], "trvb.us": [2024], "healthiernorthwestlondon.nhs.uk": [10953], "bnea.se": [2024], "quanyi.spdbccc.com.cn": [21926], "iwork.com": [20469], "www.olin.edu": [6083], "dickie.mn": [2024], "environmental-impact.web.cern.ch": [2588], "miamire.com": [10365], "danw.it": [2024], "ns.pipni.cz": [12287], "informe.org": [8118], "download.icq.com": [7695], "unblocked.red": [17237], "www.icanlocalize.com": [7700], "nedcc.org": [10938], "mobdg.co": [2024], "www.petri.com": [12627], "usfca.edu": [17122], "esp.ap.equinix.com": [5322], "i1.weibopay.com": [18280], "www.gigacampus.no": [17280], "skgov.ca": [2024], "www.joslin.org": [8648], "aldi-sued.de": [357], "*.w.org": [18520], "chlb1.rosevrobank.ru": [14024], "arli.us": [2024], "www.gov.hk": [6848], "www.gwdang.com": [20327], "appletv.ted.com": [15871], "www.icefilms.info": [7909], "l.edm.io": [2024], "*.ally.com": [914], "europython.eu": [5399], "nidirect.gov.uk": [21138], "intelv8.me": [2024], "bri.space": [2024], "omega.mkb.ru": [10512], "secure.teamforge.net": [16063], "research.stonybrook.edu": [15548], "url.miantiao.me": [2024], "rcdb.com": [21600], "open.com.au": [11948], "*.moses.com": [14948], "*.icculus.org": [7907], "acg.taobao.com": [16015], "v-k.pw": [2024], "link.lbmx.de": [2024], "prokid.info": [2024], "login.seznam.cz": [14705], "file.modx.pro": [21006], "git.ozlabs.org": [12228], "nanchang.1688.com": [51], "www.moakt.com": [21000], "static.t-mobilebankowe.pl": [22076], "i0.itc.cn": [8401], "gftplns.org": [15533], "pass.yandex.com.tr": [18740], "siy.li": [2024], "www.widgit-online.com": [22585], "asdne.st": [2024], "mu-se.me": [2024], "on.khou.com": [2024], "itc.mzstatic.com": [10893], "alumni.williams.edu": [18408], "c3.q-assets.com": [21551], "mae-hpc.engineering.osu.edu": [11797], "*.ltu.se": [9666], "smartfacts.cr.yp.to": [3745], "www.tiltedwindmillpress.com": [16526], "media.bizj.us": [16255], "www.citi.com": [3171], "console.ubertags.com": [17168], "m.baselo.com": [2024], "www.translations.com": [22274], "evotronix.com": [5453], "extranet.bfwien.at": [18376], "bulli.es": [2024], "hwl.fm": [2024], "www.zalando.fr": [18877], "*.wyndham.com": [18579], "www.sol.no": [21894], "shades.cc": [2024], "www.voicelessonstotheworld.com": [11341], "api.deferpanic.com": [4296], "rghoff.com": [2024], "pennif.red": [2024], "getmailbird.com": [6581], "www.am730.com.hk": [19163], "nkdalm.net": [2024], "www.webfonts.fonts.com": [5972], "www.consultation.rbkc.gov.uk": [21595], "partner.fastdomain.com": [5661], "wkis.us": [2024], "cecpp.cheshireeast.gov.uk": [3071], "analytics.moz.com": [21029], "mcnsl.co": [2024], "security.alibaba.com": [857], "goodlucktrunk.com": [6812], "jtri.be": [2024], "realdnb.com": [2024], "pinkong.taobao.com": [16015], "amo.bz": [2024], "static.glassdoor.co.in": [20259], "healthysteps.stanford.edu": [15448], "support.wwf.ch": [18028], "u.billgong.com": [2024], "www.zalando.fi": [18877], "suriname.usembassy.gov": [22406], "s.bilal.ca": [2024], "publicfeed.stubhub.de": [15602], "www.understood.org": [17244], "mybetter.com": [10792], "raconte-moi.abuledu.org": [19044], "c4.tv": [2024], "p17.qhimg.com": [13347], "mcmtelecom.akixi.com": [19129], "cdn.digits.com": [4496], "cdn.etrade.net": [5379], "iinet.net.au": [7961], "segue.link": [2024], "merchp.in": [2024], "*.intuitcdn.net": [8300], "courses.it.ox.ac.uk": [17359], "www.cuny.edu": [3191], "www.swtch.com": [22062], "mozilla.com": [10693], "*.secusmart.com": [14600], "munin.debian.org": [4263], "www.atlantis.sk": [1345], "www.365ticketscentral.com": [151], "www.infektionsschutz.de": [8093], "cdn.posteo.de": [13016], "vumanity.net": [17968], "denso-wave.com": [4351], "ony.ru": [21262], "skillselect.govspace.gov.au": [6851], "eyereturnmarketing.com": [5523], "onlinebenefitclaim.basildon.gov.uk": [19324], "publicidees.com": [13250], "auth.pochtabank.ru": [12876], "www.minijob-zentrale.de": [10462], "www.bilibili.com": [1904], "youtubinsk.friday.ru": [20175], "shop.medikamente-per-klick.de": [10210], "cloud.loggn.de": [9565], "www.allstartire.com": [894], "www.alternativlos.org": [935], "ireland.isidewith.com": [20466], "www.dslreports.com": [4075], "static.weboffice.uwa.edu.au": [17378], "cs15.myzuka.fm": [21079], "schmutz.es": [2024], "www.copernico.net": [3654], "aquilaclothing.co.uk": [1178], "go.amco.me": [2024], "popvote.hk": [12959], "www.rottnestfastferries.com.au": [14037], "gtun.es": [2024], "go.csik.net": [2024], "www.mileiq.com": [10429], "olvi.fi": [11823], "flyks.us": [2024], "www.megatel.ru": [20959], "ee.co.uk": [5447], "lists.xenserver.org": [18646], "static.wix.com": [18473], "img.sanet.me": [14135], "kochkurse.ichkoche.at": [7916], "switchplus.ch": [15768], "len.sc": [2024], "tvshowtime.com": [15953], "webmerge.me": [18172], "www.kismetwireless.net": [8932], "click-aici.ml": [2024], "www.thatoneprivacysite.net": [16248], "*.www.dialdirect.co.uk": [4430], "sourcefabric.com": [15247], "benefits.nra.org": [21177], "s.whoscall.com": [2024], "forum.e-hentai.org": [4834], "rtp.vc": [13535], "www.beforeyoudig.nationalgrid.com": [11119], "itcr.cancer.gov": [2819], "euscripts.msi.com": [9806], "labs.chevronwp7.com": [9144], "move1.co": [2024], "awaps.yandex.com.tr": [18740], "hubspot.com": [7599], "i.tomri.ch": [2024], "porntu.be": [2024], "www.1deg.org": [68], "yartv.ru": [22670], "www.wosign.com": [18483], "us.dhl.gl": [2024], "why.hdvest.com": [20359], "trafeze.tf": [2024], "www.shiftpayments.com": [14764], "zeltser.com": [18911], "scra.bo": [2024], "m.xiaomi.cn": [18661], "glows.biz": [2024], "seacloud.cc": [14496], "ranking.brainyquote.com": [2293], "square.com": [15396], "www.sg.cnrs.fr": [6174], "desk.dict.cc": [4442], "garage.maemo.org": [9862], "adminportal.springer.com": [15380], "hppr.co": [2024], "sat.sc": [2024], "musictherapy.oxfordjournals.org": [12222], "go.embooks.com": [2024], "support-fr.upc-cablecom.ch": [22386], "nxthv.com": [2024], "www.btc100.com": [1580], "www.whyopencomputing.fr": [22584], "s.ixiaa.com": [7879], "*.rfecom.com": [13911], "optimisemedia.com": [12105], "images.h.switchadhub.com": [15764], "waterfoxproject.org": [18098], "s.adamlj.com": [2024], "www.optimizegoogle.com": [12106], "www.thebrighttag.com": [2341], "tv.centrum.sk": [19548], "www.jobvite.com": [8616], "pic-gallery.org": [2024], "www3.sunybroome.edu": [2382], "newswatch33.co": [2024], "hfwd.nl": [2024], "mindful.tools": [2024], "arcada.rocketbank.ru": [13994], "www.login.vutbr.cz": [17609], "srv02.epimg.net": [5126], "braunitos.com": [2024], "www.passwordscon.org": [21354], "kuzbass.tpprf.ru": [22260], "gsto.tv": [2024], "wally.pw": [2024], "gospu.rs": [2024], "nessie.maplecroft.com": [20925], "stnt.eu": [2024], "www.mapzen.com": [9987], "au.org": [992], "puck.nether.net": [11276], "www.voyagegroup.com": [17948], "www.115.de": [2443], "www.techfreedom.org": [16076], "alanashar.es": [2024], "ownews.tv": [2024], "kitzy.co": [2024], "hrswiss.tocco.ch": [16600], "fokko.moe": [2024], "tikhoretsk.tpprf.ru": [22260], "jmg.gg": [2024], "2012.guadec.org": [6373], "ct-99.space": [2024], "mzl.la": [2024], "dagbladet.no": [4102], "wiki.myportal.im": [10821], "l.an0.co.uk": [2024], "pixld.in": [2024], "www.vc-kundenservice.de": [17558], "www.icp-pgh.org": [8376], "go.01-d.com": [2024], "passwortwechsel.hslu.ch": [7589], "gtma.co": [2024], "12345679.duoshuo.com": [19906], "karaoke.spiel.tivi.de": [22709], "docxpress.stanford.edu": [15448], "apply-berkeley-edu.cdn.technolutions.net": [16108], "www.ca.niif.hu": [10969], "j-schmitz.net": [8420], "factoryexpo.net": [5616], "turkmen.ashgabat.usembassy.gov": [22406], "burntout.squat.net": [21955], "ttl.nyc": [2024], "cyclisme.lemonde.fr": [9204], "cdn5.thr.com": [15878], "pcrd.co": [2024], "s-im.co": [2024], "justweb.me": [2024], "*.eetgroup.com": [4898], "beeg.com": [19343], "go.sichling.de": [2024], "print-server.st-edmunds.cam.ac.uk": [17332], "asp.mercatus.org": [10296], "mnbrd.com": [2024], "go.zefie.com": [2024], "www.it-cube.net": [7841], "flowgra.de": [2024], "ba.com": [1513], "wkdwn.ch": [2024], "mobypicture.com": [10543], "wbs-law.de": [18397], "www.nedlinux.com": [11171], "img.yuga.ru": [22701], "bleep.com": [2084], "paid.zemanta.com": [18912], "root.cz": [14020], "novosoft.net": [11571], "secure.victoriassecret.com": [17759], "service.usatoday.com": [17112], "stargateatlantis.lostfilm.tv": [20876], "www.cardiff.gov.uk": [19509], "*.opensuse.org": [12007], "aweeuro.pe": [2024], "clbs.bio": [2024], "pythonanywhere.com": [13315], "www.gscdn.nl": [20221], "crmndv.us": [2024], "www.prisonlegalnews.org": [13125], "s.haxney.org": [2024], "thumb.openload.co": [12070], "mdfl.co": [2024], "utengr.ng": [2024], "onecloud.akixi.com": [19129], "earthmil.es": [2024], "i1.iis.net": [7745], "en.bitcoin.it": [1989], "lxcn.co": [2024], "horl.uk": [2024], "mcmelectronics.com": [9739], "u.duetg.com": [2024], "foreverinfamous.com": [8092], "campusactivities.usc.edu": [17366], "0-s.imgbox.com": [7997], "on.meetvi.be": [2024], "ms11.uk": [2024], "s76.cnzz.com": [3328], "iapros.biz": [2024], "help.caltech.edu": [2771], "sh.vpserver.xyz": [2024], "www.cp.pt": [3741], "recaka.yoga": [2024], "splk.it": [2024], "groundgame.bostonglobe.com": [2253], "firstcentralsb.com": [5850], "k12.li": [2024], "lk.goodline.info": [20288], "hosting.wedos.com": [17993], "git64.rostrud.ru": [21677], "www.purechat.com": [13287], "sata-io.org": [14133], "order.nexcess.net": [11396], "*.hungryforchange.tv": [7624], "myheritage.se": [10875], "adfs.aacqa.gov.au": [276], "vsipprogram.com": [17600], "cache.addthiscdn.com": [19076], "andyet.com": [1055], "blog.honest.com": [7491], "bmf-steuerrechner.de": [1558], "rsa.com": [13513], "www.betterbills.com.au": [1853], "tribalfusion.com": [16799], "ms-ds.co": [2024], "da.rned.de": [2024], "www.dental.washington.edu": [17376], "r.nuron.be": [2024], "getbootstrap.com": [6592], "i.computerbild.de": [19660], "prdmo.com": [2024], "myvisaapplication.com": [17643], "www.mi-ms.com": [9999], "koellinglab.engineering.osu.edu": [11797], "www.cert.org": [2596], "security.tiki.org": [16520], "www.fictionpress.com": [5758], "nhk.tocco.ch": [16600], "*.flite.com": [5908], "cridge.co": [2024], "www.h-node.org": [7026], "ess.bart.gov": [1708], "framacalc.org": [6075], "extremetracking.com": [5519], "questia.com": [13405], "thankyou.com": [16246], "www.stgeorge.com.au": [21992], "sdpbne.ws": [2024], "www.youtube.gr": [18800], "oily.eu": [2024], "images.travelnow.com": [16766], "skora.cc": [2024], "ppmkg.com": [2024], "olo.one": [2024], "kulcs-soft.hu": [9046], "bath.greenparty.org.uk": [6908], "mythtv.org": [10890], "admin.net.vodafone.pt": [17903], "cdn-static.liverail.com": [9507], "www.frieslandcampina.com": [2796], "dlink.to": [2024], "invest.ulgov.ru": [22356], "d.alismen.com": [2024], "argos-spain.co.uk": [1214], "images.costco-static.com": [3694], "lmaw.co": [2024], "participant.identrust.com": [7936], "onepiece.click": [2024], "icrsng.com": [2024], "songkick.com": [21900], "*.yahoo.com": [18728], "images.dealnews.com": [4250], "mersenne.org": [10310], "flawd.me": [2024], "trac.webkit.org": [18220], "bt.x-cart.com": [18583], "www.transportstyrelsen.se": [16758], "12c.io": [2024], "updates.html5rocks.com": [7098], "autodiscover.preston.gov.uk": [21491], "metropr.es": [2024], "*.ipxe.org": [7804], "shutterfly.com": [14815], "on.kwav.es": [2024], "ux.lc": [2024], "sweden.se": [15746], "adwords.google.co.*": [6821], "ep00.epimg.net": [5126], "jdweb.info": [2024], "1phads.com": [82], "nm-4.in": [2024], "jinsectscience.oxfordjournals.org": [12222], "gmx.biz": [6330], "cdn.livechatinc.com": [9492], "www.alphassl.com": [916], "www.habets.se": [7116], "nill.es": [2024], "defcon.ru": [4289], "marketplace.gephi.org": [6536], "blogs.cisco.com": [3165], "redmine.replicant.us": [13840], "bricklink.com": [2330], "riverisland.fr": [13963], "my.luosimao.com": [20891], "tampabay.com": [16000], "www.staticwhich.co.uk": [18336], "r.gyan.biz": [2024], "on.tmos.org": [2024], "post3d.xyz": [2024], "safenet-inc.com": [14289], "whea.to": [2024], "complice.spla.ulaval.ca": [17319], "www.mequoda.com": [10289], "shrty.us": [2024], "victorops.com": [17758], "customersupport.mcafee.com": [10129], "ballerup.dk": [1653], "app-us2.resrc.it": [13659], "aka-cdn-ns.adtech.de": [691], "islamic-relief.org": [8377], "company.drweb.com": [4776], "dl.playrapp.com": [2024], "editoraj.us": [2024], "partnerportal.f-secure.com": [5533], "webmail.3dcenter.org": [159], "oscardiaz.es": [2024], "xml.yandex.com": [18742], "store.degica.com": [3333], "metro.mastercard.ru": [10065], "www.gammagroup.com": [6429], "hp6.com.br": [2024], "cas.centennialcollege.hku.hk": [20387], "order.thephone.coop": [16418], "s.simonov.photo": [2024], "clkra.in": [2024], "www.enhanceie.com": [5260], "amt24.sachsen.de": [14279], "checkpointlearning.thomsonreuters.com": [16456], "orpidia.com": [2024], "ciges.upo.es": [17479], "flsd.link": [2024], "dyn.manpages.debian.org": [4263], "adrianaf.tk": [2024], "trk.cetrk.com": [2602], "ofb.net": [11657], "www.da.isy.liu.se": [9097], "www.snyk.io": [21885], "i.mcnary.me": [2024], "j.ustin.co": [2024], "www.mkt51.net": [20998], "events.geogebra.org": [6522], "j.ustin.cc": [2024], "xvtv.ga": [2024], "thepiratebay.immunicity.online": [21524], "*.wwte1.com": [18031], "forum.lowyat.net": [9646], "www.cryptocoincharts.info": [3863], "b.t-prof.me": [2024], "www.uvo.gov.sk": [15037], "8ed7ba21-0d17-323d-b34f-b8519f98c827-rum.cdnvideo.ru": [19536], "www.uoflphysicians.com": [17462], "staticorigin.wixstatic.com": [18474], "usps.com": [17129], "buo.uniovi.es": [17282], "mail.uu.se": [17153], "go2.nhms.org.uk": [2024], "fs.egov.sachsen.de": [14279], "www.opcw.org": [11689], "west-midlands.police.uk": [18302], "smgw.boell.de": [2192], "interna.te-st.ru": [22103], "8www.play-asia.com": [12828], "jobs.ch": [20646], "cafeb.im": [2024], "www.adaway.org": [614], "nbcg.me": [2024], "autodiscover.nso.ru": [21192], "coisas.com": [3412], "talks.stanford.edu": [15448], "elections.dailykos.com": [4110], "*.quora.com": [13428], "export.skat.dk": [14963], "mp.yidianzixun.com": [22679], "unicentre.uow.edu.au": [17434], "webcon.japias.jp": [8529], "tma.tips": [2024], "planetarium-galilee.montpellier3m.fr": [10609], "swale-consult.objective.co.uk": [21225], "prdownloads.sourceforge.net": [15242], "karlsruhe.freifunk.net": [20688], "tms.dfs.un.org": [17057], "5bat.me": [2024], "lnkf.us": [2024], "service.eudoxus.gr": [6894], "opinionmeter.com": [12091], "www.macgamestore.com": [9842], "images.placesonline.com": [12793], "promuze.blesk.cz": [2088], "worker107.scrutinizer-ci.com": [21759], "on.renego.net": [2024], "apiservices.krxd.net": [9028], "static-alias-1.360buyimg.com": [148], "glmn8.com": [2024], "m.feedback.yandex.com": [18742], "scampus.usc.edu": [17366], "1bt.pw": [2024], "rpps.li": [2024], "bellingcat.com": [1795], "sierraware.com": [14833], "www.jankratochvil.net": [20623], "ppj.st": [2024], "il.srgssr.ch": [21957], "hrweb.cdn-apple.com": [2567], "akamaitest.lg.com": [9090], "billing-lan.net": [19378], "rss.acast.com": [19045], "arue.stanford.edu": [15448], "community.norton.com": [11545], "penw.ws": [2024], "namecheap.com": [11060], "bor.bz": [2024], "oas.autotrader.co.uk": [19280], "loadr.exelator.com": [4988], "www.lolzparade.com": [4112], "support.avast.com": [1469], "gms.gsfc.nasa.gov": [10909], "s.ajchan.com": [2024], "reviews.argos.ie": [1213], "si.ly": [2024], "*.serato.com": [14655], "www.ubuntu-de.org": [17175], "*.tudelft.nl": [4309], "secure.dnuk.com": [4468], "www.dot.swiss": [19884], "pixel.crosspixel.net": [3810], "spring.io": [15374], "mdws.vantageone.net": [17652], "sdata.huxiu.com": [7638], "hwsw.hu": [7110], "billing.balnet.ru": [19310], "accounts.adafruit.com": [604], "*.volkswagenbank.de": [17919], "app.peer5.com": [12547], "www.allmend.ch": [905], "mycrk.it": [2024], "htl.sc": [2024], "sies.uniovi.es": [17282], "fonts.typotheque.com": [16989], "energycut.info": [2024], "aseguro.me": [2024], "adperium.com": [678], "www.fobos.de": [5951], "www.domenkozar.com": [4662], "internetbanking.bnz.co.nz": [1561], "biowarestore.com": [1934], "query.yahooapis.com": [18729], "skyprep.co": [2024], "benfisher.me": [2024], "denman.osu.edu": [11797], "ierealtor.info": [2024], "www.piraten-aargau.ch": [21415], "forum.freifunk.net": [6170], "natfol.io": [2024], "wiroos.com": [22601], "dream-ing.it": [2024], "www.govdex.gov.au": [6847], "www.totalboox.com": [16671], "inside.unicefusa.org": [17070], "gatra.id": [2024], "futurefyi.link": [2024], "digium.com": [4497], "blke.co": [2024], "parchmentmag.uk": [2024], "pemphig.us": [2024], "cdn.yemeksepeti.com": [18767], "webedit.medsci.ox.ac.uk": [17359], "api.sli.mg": [21859], "rsoa.tpprf.ru": [22260], "forum.nasaspaceflight.com": [10910], "www.coolwebscripts.com": [3642], "*.netindex.com": [11250], "i.dhaeye.re": [2024], "id.line.st": [2024], "collector.statowl.com": [15480], "*.zassets.com": [18889], "myactioncenter.unicefusa.org": [17070], "tudors.friday.ru": [20175], "idefense.verisign.com": [17712], "biz.tigerdirect.com": [16516], "go.mattdean.ca": [2024], "fellowsblog.ted.com": [15871], "drivertraining.hertsdirect.org": [7333], "www.toshiba-tec.com.cn": [22252], "www.hqpower.eu": [17685], "safebooru.donmai.us": [19880], "pretty52.com": [21493], "trafficholder.com": [16720], "tsp.sh": [2024], "babergh.greenparty.org.uk": [6908], "form.mbank.cz": [9733], "gamegeek-denter.de": [6410], "www.msf.org.uk": [9803], "findip-address.com": [20103], "hims.cumbria.gov.uk": [19742], "pearsonvue.com": [12539], "design.reevoo.com": [13772], "foods.af": [2024], "www.350zevolution.com": [141], "support.hydra-billing.com": [20452], "on.flatsha.re": [2024], "sheim.cf": [2024], "www.sedirekt.se": [14601], "luckylib.me": [2024], "imgsrv.nextag.com": [11402], "v.vikrmn.com": [2024], "alumni.ntnu.no": [11004], "www.newstral.com": [11389], "sw.oxfordjournals.org": [12222], "boingohotspot.net": [2198], "www.wog.ch": [18541], "bookcase.chromeexperiments.com": [3122], "go.petrhroch.cz": [2024], "ad.adsrvr.org": [688], "www.helpdesk.umd.edu": [17351], "11k4t0muphhe4f1vsi12o15rg8jrc3bqn8lg7fv6.ipleak.net": [20571], "nycvpn2.unicef.org": [17069], "iforgot.apple.com": [1151], "tropej.oxfordjournals.org": [12222], "viraldu.mp": [2024], "api-r.bitcoinchain.com": [19387], "thecon.so": [2024], "www.pbbans.com": [21365], "support.livechatinc.com": [9492], "wusmproserv.wustl.edu": [18089], "h.atdmt.com": [10393], "www.dealnews.com": [4250], "secure.blood.co.uk": [2129], "videolab.cc.kuleuven.be": [8832], "static-dev.ycharts.com": [18704], "proxybay.la": [16306], "tatry.imhd.sk": [8004], "partner.quickline.ch": [21566], "u9.qiyipic.com": [13354], "status.framasoft.org": [6075], "nl.xhamster.com": [18606], "naor.in": [2024], "www.climatecentral.org": [3265], "www.siteparc.fr": [14951], "173dc7n63cr8bv02zivjfwnhcahnzet3f35a40jt.ipleak.net": [20571], "i.iot.do": [2024], "amrathea-test.kairo.at": [8782], "willisl.im": [2024], "nwj.me": [2024], "ms-smb.com": [2024], "www.clevelandconnected.co.uk": [19610], "adigolf.co": [2024], "serverbase.ch": [21787], "pinall.ru": [21407], "static.pressable.com": [13082], "chef.gitlab.com": [6658], "www.coin-or.org": [2652], "sh.salas.ovh": [2024], "www.gixen.com": [6675], "www.insidecelebs.com": [8169], "www.nodistribute.com": [21150], "myaccount.creation.co.uk": [3771], "ho13.majordomo.ru": [9914], "discuss.synapsepay.com": [22066], "hereford.greenparty.org.uk": [6908], "visitor-service-eu-central-1.tealiumiq.com": [16060], "images.newrepublic.com": [11350], "modulus.io": [10563], "bnymellon.com": [19420], "www.doncaster.engagedoncaster.co.uk": [5251], "dcstr.es": [2024], "web.tuxfamily.net": [22318], "hebiguan.jd.com": [8434], "poprnt.pl": [2024], "privacy.chainfire.eu": [19556], "www.lostfilm.info": [20875], "s.macaro-ni.jp": [2024], "www.fxphd.com": [6269], "edball.uk": [2024], "campamentos.unizar.es": [17441], "subar.us": [2024], "bbll.us": [2024], "dct.org.uk": [19781], "tanya.bz": [2024], "eseg.me": [2024], "www.accredible.com": [519], "mydf.us": [2024], "on.fuse.tv": [2024], "bl.zoogis.com": [2024], "*.ethn.io": [5371], "mbehr.co": [2024], "s.thiele.me": [2024], "www.rememberthemilk.jp": [13820], "i6.walmartimages.com": [18060], "www.virginiamason.org": [17824], "iao.fm": [2024], "a.delays.io": [2024], "modx.pro": [21006], "umassmed.worldcat.org": [18536], "m.rescue.org": [21633], "www.ringrevenue.com": [13949], "cdn.thejournal.ie": [16299], "kenhin.es": [2024], "lightningmaps.org": [9361], "join.thesun.co.uk": [22188], "gdoc.it": [2024], "bileri.co": [2024], "blog.malcovery.com": [9932], "*.filmdates.co.uk": [5794], "sso.rpxcorp.com": [13508], "funderbe.am": [2024], "*.healthcare.gov": [7259], "www.nces.ed.gov": [4881], "ca.town": [2024], "piwik.piraten-schwaben.de": [12750], "hiring.monster.com": [10602], "lamov.pw": [2024], "gjin.cf": [2024], "www.youtube.ie": [18800], "*.wolfram.com": [18486], "*.eager.io": [4995], "anonabox.com": [1082], "*.vogel.de": [17906], "ezt.be": [2024], "frdr.us": [2024], "mdoo.tk": [2024], "music.umeahackerspace.se": [17228], "countryroad.me": [2024], "ly.yoiks.dk": [2024], "www.likeyed.com": [9367], "ssl.drgnetwork.com": [4073], "ww2234.smartadserver.com": [15049], "an-d.me": [2024], "nscom.jp": [2024], "beas.me": [2024], "chnm.gmu.edu": [6529], "blogs.uw.edu": [17156], "myhds.co": [2024], "wenwa.us": [2024], "*.bookware3000.ca": [19428], "benchmarkjs.com": [19354], "billingproxy.enaza.ru": [5222], "www.schmidtcom.de": [14419], "cf6.100r.org": [12], "23918791-b246-22b1-e9fe-ceb1b132341c-rum.cdnvideo.ru": [19536], "content.capitalone.com": [2831], "arc.ac": [2024], "mobilitaet2050.vcd.org": [17560], "mobile.1und1.de": [91], "online.contractsfinder.businesslink.gov.uk": [2477], "mag.ahkah.jp": [2024], "pirata.online": [22174], "www.ladepeche.fr": [9128], "tyumen.europaplus.ru": [20034], "dgfj.tk": [2024], "forum.porteus.org": [12983], "obs.me": [2024], "brovary.o3.ua": [21219], "desjs.zamimg.com": [18878], "forum.ovh.de": [12205], "s.kzmhr.com": [2024], "sns.mk": [2024], "serve919.org": [2024], "tpprf.ru": [22260], "fsras.htwk-leipzig.de": [7596], "ce3.uicdn.net": [17032], "secure.sharefile.com": [14724], "dudle.inf.tu-dresden.de": [15937], "coed.com": [3385], "s.pimg.tw": [12709], "ronenbkr.mn": [2024], "thinglinkblog.com": [16430], "petrograd.fbk.info": [5691], "domodedovo.beeline.ru": [1778], "1ter.net": [2024], "ilias.uni-mainz.de": [17410], "senl.in": [2024], "b.vuilam.info": [2024], "deviceids-medp.wdr.de": [18113], "rickz.net": [2024], "hackinthebox.org": [7141], "mail.ngs.ru": [21134], "rioexchange.rio2016.com": [21652], "tfg.im": [2024], "tfg.io": [2024], "bdawg.us": [2024], "linuxaudio.org": [9443], "www.assemble.me": [1303], "scistore.cambridgesoft.com": [2782], "l3-1.kiva.org": [8939], "www.securityweek.com": [14587], "zenfolio.com": [18926], "c.kum.com": [9048], "www.runnersconnect.net": [21693], "proxy.library.georgetown.edu": [6531], "ascc.co": [2024], "www.dwarffortresswiki.org": [4807], "wooconf.com": [18504], "ian.lt": [2024], "mevins.info": [2024], "bbyna.me": [2024], "cvlnt.com": [2024], "bhane.co": [2024], "*.blogcatalog.com": [2115], "gmrstm.pl": [2024], "www3.smartadserver.com": [15049], "coverartarchive.org": [3725], "es.indacoin.com": [8054], "blog.roboform.com": [13981], "prezident.sk": [15037], "hcm-nc.com": [2024], "vip.jd.com": [8436], "cnvr.co": [2024], "mupo.ca": [2024], "cwaa.ki.se": [8743], "ad.ipredictive.com": [8344], "iphones.ru": [20568], "cnvr.cc": [2024], "twitcasting.tv": [16959], "i.jmui.net": [2024], "sample-solid.readme.io": [13668], "rainforestrescue.sky.com": [14989], "judcl.es": [2024], "www.sfa.osu.edu": [11797], "80b.co": [2024], "vistumbler.net": [13605], "online.bm.ru": [2176], "lsh.re": [9391], "login.szn.cz": [14705], "slough.gov.uk": [15036], "seewis.dwd.de": [19911], "ct-cds.con-tech.de": [3550], "skiclub.website": [2024], "www.wpveda.com": [18561], "txst.us": [2024], "www.luxhv.com": [9685], "greenserver.ch": [20305], "www.wwf.org": [18030], "url.cawacci.com": [2024], "old.gpgtools.org": [6348], "ch.godaddy.com": [6755], "www.uniformwares.com": [17274], "www.epget.bme.hu": [1556], "french.belgium.usembassy.gov": [22406], "triptag.io": [2024], "trac.ffmpeg.org": [5556], "iffp2.tocco.ch": [16600], "m.hipercor.es": [7418], "bb.osmocom.org": [12159], "othr.ws": [2024], "cupid.com": [3915], "t.imgbox.com": [7997], "hofer.at": [357], "www.modmypi.com": [10549], "telecom2.kommersant.ru": [20746], "*.bankoftaipei.com.tw": [1671], "www.power.org": [13035], "forum.kimsufi.com": [8908], "www.myinteriordecorator.com": [10810], "mczar.me": [2024], "zycie-wsrod-kamer.panoptykon.org": [12395], "4chan.org": [196], "www.getdropbox.com": [4763], "debian.org": [4263], "fxcharts.aastocks.com": [19037], "www.fastcast.nz": [20076], "vpn.ual.es": [17162], "estates4.warwickdc.gov.uk": [22531], "ideat.io": [2024], "dproosnso2.nso.ru": [21192], "photos.travelblog.org": [16764], "dev.sourcefabric.org": [15248], "kontoapi.de": [8992], "www.devolverdigital.com": [4414], "portal.bobcares.com": [2189], "www.zenmate.pl": [18917], "www3.gotomeeting.com": [6769], "guarantorusloans.co.uk": [6980], "www.zenmate.pk": [18917], "apps.law.georgetown.edu": [6531], "sharedrop.io": [21798], "style.codeforamerica.org": [3357], "bnch.co": [2024], "sales.talktalk.co.uk": [15993], "iphonelife.com": [8341], "gdata.it": [6272], "press.sn": [2024], "www.bike24.de": [1899], "www.wecamgirls.com": [22554], "skz.me": [2024], "rat.li": [2024], "www.speakyoursilence.org": [15304], "tilecache2.kairo.at": [8782], "emsonline.eastriding.gov.uk": [5006], "kun.st": [2024], "i.arora.pl": [2024], "codesourcery.com": [10284], "www.fastdomain.com": [5661], "sibay.startsmile.ru": [21980], "bernardportal.axosoft.com": [1504], "lyncdiscover.unicef.org": [17069], "www.immunityinc.com": [8011], "pwp.im": [2024], "get.bcs2005.de": [2024], "*.mediastorehouse.com": [10160], "data.aad.gov.au": [1407], "*.forexct.com": [6012], "ana.ms": [2024], "www.doclerholding.com": [4608], "morebv.info": [2024], "correoweb.usc.es": [17506], "lego.com": [9082], "www.growerscup.coffee": [20311], "swedish.chef.gitlab.com": [6658], "austria.usembassy.gov": [22406], "www.zammad.com": [18880], "iraaa.org": [7813], "*.secure-payment-processing.com": [14547], "certification.unity.com": [17310], "www.bamsoftware.com": [1659], "www.creditdisputeprogram.com": [3785], "energy-dialogue.adelphi.de": [635], "5bits.us": [2024], "www22.glam.com": [6679], "pushkino.biglion.ru": [19375], "apps.bostonglobe.com": [2253], "*.avo.gov.au": [1429], "pathologyservices.wustl.edu": [18089], "justseed.it": [20673], "in.trac.to": [2024], "www.geog.illinois.edu": [17346], "*.cloudhexa.com": [3304], "action.dccc.org": [4005], "pooi.tk": [3536], "phonekeeper.ru": [21398], "stq.bz": [2024], "xplr.com": [18678], "eere.energy.gov": [5243], "eqmi.us": [2024], "www.weoinvoice.com": [18295], "www.codethink.co.uk": [3380], "brno.idnes.cz": [20483], "bit.lnhrt.com": [2024], "static.hupso.com": [7629], "secure.doublerobotics.com": [4707], "www.gtipphotos.state.gov": [17146], "punjabadds.hdfcbank.com": [7249], "israel.usembassy.gov": [22406], "onvo.co": [2024], "go.cucc.io": [2024], "vidling.com": [17799], "tallshop.us": [2024], "www.buzzhosting.org": [2495], "weatherapi.market.xiaomi.com": [18662], "my.boldchat.com": [2203], "hub.jhu.edu": [16370], "www.mailgun.net": [9900], "pdesp.at": [2024], "www.vivaldi.net": [17885], "reyeslaw.net": [2024], "adinfo.aol.com": [380], "clicktrack.cc": [2024], "www.crowdjustice.co.uk": [3819], "yahooaviate.tumblr.com": [16897], "pantherportal.cdnetworks.com": [2574], "bejr.co": [2024], "iraiser.eu": [8350], "zotac.com": [18855], "bbeings.co": [2024], "olat.skolaonline.cz": [21852], "humgenomics.biomedcentral.com": [1931], "beemail.beeline.kz": [19345], "viz.polleverywhere.com": [12925], "btvn.us": [2024], "spreadshirt.ie": [15371], "ccc.berkeley.edu": [17329], "*.ordnancesurvey.co.uk": [12132], "prod.idrix.fr": [7712], "www.andywalsh.com": [1054], "static1.readyflowers.com": [13680], "secure.momentusmedia.com": [10574], "signup.active24.es": [19064], "spreadshirt.it": [15371], "itsecurity.nasa.gov": [10909], "sh.idaimt.jp": [2024], "43.mvd.ru": [21055], "brtedg.co": [2024], "lglintl.net": [2024], "2tim2v15.uk": [2024], "alade3.audio": [2024], "associatie.kuleuven.be": [8832], "cointrader.net": [3411], "illert.biz": [2024], "www.alitrip.com": [865], "www.voicestar.com": [9993], "bratislava.sme.sk": [14198], "www.mtswelding.co.uk": [21043], "express.co.uk": [5507], "radioshack.com": [13575], "digitaljustice.holyrood.com": [20393], "avenirclimatique.org": [1472], "www.oafa.cuhk.edu.hk": [2704], "cinelease.com": [7371], "segpay.com": [14618], "uniu.be": [2024], "atnetpl.us": [2024], "pbc.re": [2024], "metrics.extremetech.com": [5521], "geeq.la": [2024], "misa.si": [2024], "openx.com": [12028, 21284], "s.xixico.com": [2024], "moodle.dyc.edu": [4089], "nuug.no": [11017], "it.rdg.ac": [2024], "sapseod.mindtouch.us": [10446], "feitopra.vc": [2024], "marketplace.leadpages.net": [9209], "stats.economist.com": [5052], "nichd.nih.gov": [11090], "blekko.com": [2085], "link.isher.club": [2024], "qualaris.com": [13377], "opentrackers.org": [12082], "s.wldcdn.net": [18004], "piwik.nuug.no": [11017], "slnts.co": [2024], "foobar2000.org": [20131], "smcd.me": [2024], "studentaccounting.wustl.edu": [18089], "zeo.ist": [2024], "logs.spatialbuzz.com": [15300], "blog.etnasoft.com": [5376], "www.baikal-daily.ru": [19305], "y.fromparis.xyz": [2024], "entrust.ssllabs.com": [14243], "www.ems-ph.org": [5214], "gotin.st": [2024], "kicknews.co.uk": [8893], "l.bekazali.com": [2024], "www.finnchristiansen.de": [5834], "br.codecombat.com": [3362], "febc.online": [2024], "transmarine.org": [16734], "webappstatic.buzzfeed.com": [2489], "s.zst.com.br": [19015], "urb.tf": [2024], "*.wsjpro.com": [11360], "es.localwiki.org": [9551], "taobao.com": [16015], "ita.hsr.ch": [17325], "store.virginmedia.com": [17822], "www.mysitemyway.com": [10885], "www.polleninfo.org": [12928], "wepave.it": [2024], "analytics.1and1.com": [69], "www.visn2.va.gov": [17100], "www.fark.com": [5653], "www.embeddedarm.com": [5189], "iris.vc": [2024], "api.stevesie.com": [15539], "*.tweetreach.com": [16943], "ekmpowershop.com": [5119], "afmkt.us": [2024], "helpum.org": [2024], "cherwell-consult.objective.co.uk": [21225], "vive.ml": [2024], "www.mythicalcreatureslist.com": [10892], "careers.jazz.co": [8549], "www.hkpl.gov.hk": [20385], "ignt.biz": [2024], "loginpilot.silverpop.com": [14865], "www.wienerlinien.at": [18376], "domaintank.hu": [4659], "transbuddhists.org": [16736], "www.andersonvalleypost.com": [4981], "be.redhat.com": [13735], "sportisimo.de": [14223], "mmnd.co": [2024], "it.stripchat.com": [22014], "www.loginza.ru": [9570], "recuer2.me": [2024], "mobile.learnerview.ofsted.gov.uk": [21231], "halo.xbox.com": [18639], "oscweb.biz": [2024], "voices.dyc.edu": [4089], "ms.oxforddictionaries.com": [12223], "fang.taobao.com": [16015], "weishanghuoyuan.duoshuo.com": [19906], "img7.qiyipic.com": [13354], "ny.regjeringen.no": [13800], "calmth.zp.ua": [2024], "www.techempower.com": [16074], "media.yoox.biz": [18785], "hayesnjarv.is": [2024], "cdn.ecoin.eu": [19950], "creare.co.uk": [3765], "skat.dk": [14963], "www.innova.uned.es": [17248], "brvn.net": [2024], "www.eng.umd.edu": [17351], "www.up.com": [22384], "trac.aircrack-ng.org": [19122], "i1.gmx.com": [6330], "www.imo.im": [8012], "on.jconline.com": [2024], "garygoddard.com": [6786], "forum.zentyal.org": [18933], "familie.rh.aok.de": [376], "ucf.me": [2024], "ektgn.eu": [2024], "jipiao.alitrip.com": [865], "forum.opendesktop.org": [21266], "ssl.intevation.de": [8293], "training.moodys.com": [21020], "share.pingdom.com": [12719], "www.gwrymca.org": [7015], "dose.la": [2024], "osws.co": [2024], "my.edinburgh.gov.uk": [5074], "spcc.starfishsolutions.com": [21977], "msb.sbi.co.in": [14140], "enrol.norfolk.gov.uk": [21154], "macpaper.com": [9714], "help.tripadvisor.co.uk": [22291], "lijiang.jd.com": [8434], "photos-a.ak.fbcdn.net": [5689], "id.itradecimb.com.sg": [2619], "zu.wa.de": [2024], "www.adaptivecomputing.com": [612], "itsri.ch": [2024], "md-coord.web.cern.ch": [2588], "auth.getsatisfaction.com": [6601], "www.cihr.eu": [2615], "rc.fas.harvard.edu": [7211], "forum.syllable.org": [22064], "biostatistics.georgetown.edu": [6531], "www.post-gazette.com": [12994], "condor.de": [3564], "notrefrance.webdocs.mediapart.fr": [10194], "weihelp.sos.wa.gov": [14215], "www.tmo.hsbc.co.uk": [20422], "cf0.fr": [2024], "extranet.fkl.fi": [5815], "ukraine.usembassy.gov": [22406], "abgeek.co.uk": [2024], "commercecentral.lexity.com": [9295], "rebeltorrent.net": [13701], "childpoverty.unicef.org.nz": [17067], "gemeentenoordenveld.nl": [11172], "web.jobvite.com": [8616], "office.com": [11780], "hcsm.io": [2024], "www.studium.uni-mainz.de": [17410], "*.inwx.es": [8230], "lifeforb.es": [2024], "slsknet.org": [21861], "www.e-btc.com.ua": [19917], "coolhead.tech": [2024], "cdncss-socialcomediallc.netdna-ssl.com": [16847], "watermarquee.com": [18097], "luxepg.co": [2024], "odmenazadobiti.cz": [16141], "citmedialaw.org": [4036], "t.miyacozi.com": [2024], "s.naokie.net": [2024], "knew.by": [2024], "link.carvers.co": [2024], "filmq.tk": [2024], "cloud.ihme.washington.edu": [17376], "www.rdash.nhs.uk": [10953], "photo.cypouz.com": [3979], "blogs.hopkins-interactive.com": [7502], "tools2.cisco.com": [3165], "pmara.cz": [2024], "cdn-stp.bl.uk": [2358], "2011.asiabsdcon.org": [1281], "wie.gr": [2024], "www.lubw.baden-wuerttemberg.de": [19302], "store.jfklibrary.org": [8444], "images.google.*": [6824], "su.bdimg.com": [1747], "lists.ocaml.org": [11649], "webfonts.fonts.com": [5972], "libreplanet.org": [9329], "thoughtbot.com": [16462], "tri.pet": [2024], "www.v3.co.uk": [17550], "noyabrsk.beeline.ru": [1778], "m.ac.qq.com": [13329], "js.ykimg.com": [22681], "jinhua.1688.com": [51], "d2.nal.usda.gov": [17299], "console.unrulymedia.com": [22382], "www.map.pol.ulaval.ca": [17319], "titania.com": [16575], "poto.play-asia.com": [12828], "in.leonflam.com": [2024], "thecthulhu.com": [16403], "*.staples.com": [15453], "www.qtcloudservices.com": [13366], "sgcdn.startech.com": [15459], "koral.la": [2024], "static-minecraftforum.cursecdn.com": [3927], "baixar.su": [2024], "secure-os.org": [14544], "s2.postimg.io": [13024], "dreamhost.com": [4743], "www.mint.com": [10470], "z.opensakai.org": [2024], "r24616719.sync.app.asana.com": [1265], "www.webmail.juno.com": [8699], "voyagegroup.com": [17948], "laoca.co": [2024], "wmjobs.co.uk": [18006], "ideas.pardot.com": [12427], "edri.org": [4890], "i.buzz.io": [2024], "whf.cm": [2024], "s54.cnzz.com": [3328], "www1.sunybroome.edu": [2382], "canva.link": [2024], "www.songkick.com": [21900], "tandl.me": [2024], "my.nyi.net": [11031], "mvino.co": [2024], "cmip.c-base.org": [2506], "www1.cnsi.ucla.edu": [17330], "16.mvd.ru": [21055], "amatrix.sknt.ru": [21851], "png.dm": [2024], "www.100fans.de": [13], "s90.cnzz.com": [3328], "pirateparty.org.au": [12746], "op22.co": [2024], "latex-project.org": [9132], "*.hostelworld.com": [18138], "ems.staffordshire.gov.uk": [15435], "seda.la": [2024], "vn.lanet.ua": [20780], "ja1.me": [2024], "isham.co": [2024], "go.mintvine.com": [2024], "computerandvideogames.com": [6260], "shrp.ws": [2024], "orange.co.il": [12122], "*.myheritage.com.br": [10875], "www.linkomanija.net": [9394], "mikemcm.xyz": [2024], "scny.co": [2024], "cyanogenmod.org": [3947], "glenscott.net": [6688], "wawr.us": [2024], "abs.twimg.com": [16949], "partner.wosign.com": [18483], "*.uwinnipeg.ca": [17158], "droidpr.es": [2024], "transportation.amazon.es": [19175], "twf.wales.gov.uk": [18051], "neustar.biz": [11320], "static.maemo.org": [9862], "ylw.be": [2024], "a.ln.com.ar": [2024], "kerane.ws": [2024], "flsenate.gov": [20123], "peermonitor.thomsonreuters.com": [16456], "udk.com": [17019], "www.securesuite.co.uk": [13512], "media.nbzh.cf": [2024], "shop.jolla.com": [8636], "www.gearhog.com": [6466], "e-banking.hangseng.com": [7183], "mbco.vtb24.ru": [22512], "reportingvsn.visma.no": [22471], "edu.cookingschools.com": [3638], "g4.ykimg.com": [22681], "ubr.to": [2024], "www.atechmedia.com": [428], "x.c42.in": [2024], "engage.redhat.com": [13735], "api.t411.ch": [15847], "www.skyscanner.no": [15006], "staffaap.georgetown.edu": [6531], "wholefoodsmarket.com": [18360], "switch.co": [15763], "agn.frontend0.savannah.gnu.org": [6337], "g.standby.hk": [2024], "lists.ciphershed.org": [3155], "mathjobs.org": [10081], "www.hengxinli.com": [20368], "goly.es": [2024], "xarxadestudis.squat.net": [21955], "itunes.osu.edu": [11797], "www.haarlemmermeer.nl": [11172], "hnnng.de": [2024], "upload2.calameo.com": [2748], "*.orkut.com": [12145], "secure.imdb.com": [7760], "on.entrepgo.com": [2024], "nareal.me": [2024], "jrs.link": [2024], "pda.baidu.com": [1641], "dap.digitalgov.gov": [4475], "www.dafdirect.org": [4098], "www.sendpepper.com": [14640], "yahoomail.tumblr.com": [16897], "pages.kiva.org": [8939], "ovarianresearch.biomedcentral.com": [1931], "jobs.derbyshire.gov.uk": [19810], "weiter.tk": [2024], "testlk.admtyumen.ru": [19082], "indymedia.org": [8090], "es.malwarebytes.com": [9940], "ppche.ro": [2024], "imbo.vgtv.no": [17569], "ldigit.al": [2024], "cap.lv": [2024], "sjs3.sinajs.cn": [14909], "mm4a.org": [2024], "privacy.rakuten.co.jp": [13594], "mykplan.com": [327], "www.swis2010.dwd.de": [19911], "prpre.us": [2024], "openaccess.bournemouth.gov.uk": [2268], "message.aliexpress.com": [854], "croydon.gov.uk": [19727], "www.finam.ru": [20099], "www.o2.co.uk": [16141], "videa.hu": [17770], "qwapo.es": [2024], "nr.imhd.sk": [8004], "awards.indexoncensorship.org": [8064], "www.schiphol.nl": [14416], "www.themarshallproject.org": [16371], "caniusepython3.com": [2804], "310.fm": [2024], "personforce.com": [12616], "rhul.ac.uk": [13482], "b2b.amoena.us": [1023], "umhb.worldcat.org": [18536], "l.cafe.ac": [2024], "109.201.146.247": [18699], "ddnnews.com": [2024], "tcc.io": [2024], "cds1.yospace.com": [18791], "tehconnection.eu": [16127], "juanma.in": [2024], "brand.wustl.edu": [18089], "jupiter.wyenet.co.uk": [18576], "support.oracle.com": [12116], "malwr.rocks": [2024], "www.icez.net": [7915], "lrnit.lv": [2024], "www.mauivaaircruise.com": [10095], "travelurl.net": [2024], "s303.co": [2024], "www.kr36.co": [9014], "hots69.com": [2024], "eyct.ch": [2024], "www.dutchbulbs.co.uk": [4805], "www.saudi.gov.sa": [14368], "www.mandrillapp.com": [9956], "robinyu.uk": [2024], "wwwbeta2.capitalone.com": [2831], "*.quoracdn.net": [13428], "cazare.umftgm.ro": [22364], "login.umd.edu": [17351], "*.emsisoft.com": [5215], "www.majesticseo.com": [9912], "www.tampermonkey.net": [16002], "awsal.am": [2024], "lfg.li": [2024], "trvw.in": [2024], "lgwk.us": [2024], "www.adum.fr": [331], "reports.ofsted.gov.uk": [21231], "www.brchan.org": [1567], "bill.ccbill.com": [2549], "www.dezeen.com": [4423], "*.carleton.edu": [2863], "filesmonster.com": [20093], "front-admin.voyage-prive.com": [17946], "hbr.tc": [2024], "pirateproxy.click": [22176], "mx5.mclaut.com": [20942], "bcp.hdvlink.com": [20359], "seh.eu": [2024], "pharmgradprograms.usc.edu": [17366], "releases.flowplayer.org": [5927], "securelogin.org": [14568], "pkg.biligame.com": [1903], "meeting.zoho.com": [18984], "piwik.mutantbrains.com": [10771], "designer.rocketbank.ru": [13994], "i3.sinaimg.cn": [14910], "www.brandensittich.de": [2300], "www.pathdefender.com": [12486], "uncg.worldcat.org": [18536], "planet-earth.friday.ru": [20175], "p.simg.uol.com.br": [17079], "b.hiroshi.today": [2024], "www.mysql.de": [10825], "c.msn.com": [9810], "patchofland.com": [12481], "www.secure.avahost.net": [1461], "ltxt.gq": [2024], "watchthis.nyc": [2024], "glen-l.com": [20264], "its.hku.hk": [20387], "solydxk.com": [21898], "docs.go.cd": [20273], "edu.te-st.ru": [22103], "i5.walmartimages.com": [18060], "ln.dogjoys.com": [2024], "supportforums.blackberry.com": [2068], "socrel.oxfordjournals.org": [12222], "a.calameoassets.com": [2749], "stonet.co": [2024], "cassad.cdnvideo.ru": [19536], "docstoc.com": [4611], "hungrygeek.holidayextras.co.uk": [7459], "s.reacter.jp": [2024], "rlp.co": [2024], "www.cryptrader.com": [3837], "www.office365.com": [11782], "royale-ssl.spongecell.com": [21940], "www.msnbc.com": [9811], "on.pbb.co": [2024], "partnerupload1.steampowered.com": [15516], "livechat.ae": [2024], "cdnstage.lynda.com": [9692], "howentrepreneur.com": [20416], "cre-podcast.de": [10322], "benchmarkdevelopment.mitre.org": [10497], "www.nibusinessinfo.co.uk": [21135], "robustirc.net": [21663], "www.myvolunteerpage.com": [17923], "shanv.me": [2024], "static.roblox.com": [13980], "st.panci.org": [2024], "ca.astrobl.ru": [19264], "commsr.us": [2024], "cepr.tk": [2024], "*.tenderapp.com": [4924], "blizz.ly": [2024], "cryptovpn.me": [19734], "chmx.co": [2024], "download.teamviewer.com": [16069], "art.stanford.edu": [15448], "aricjournal.biomedcentral.com": [1931], "search.vuze.com": [17972], "acclaim.rocks": [2024], "sky.nowere.net": [21171], "laugheat.co": [2024], "dnsleaktest.com": [4060], "r24626570.sync.app.asana.com": [1265], "*.sipr.ucl.ac.be": [17320], "nikit.tcl.tk": [16051], "equranclass.com": [4939], "thepiratebay.kr.com": [22174], "nlim.it": [2024], "www.planetrulers.com": [21432], "sp-nls.com": [2024], "sol-pan.co": [2024], "jingzhi.jd.com": [8436], "www.creativelittlereaders.com": [3780], "imt.mind.org.uk": [10443], "btyl.sh": [2024], "www.xmission.com": [18621], "gpgauth.org": [6860], "licensing.plymouth.gov.uk": [21442], "xeodguy.me": [2024], "cecy.co": [2024], "www.le-vpn.com": [9202], "voltaicsystems.com": [17922], "alliance.cisecurity.org": [2628], "journal-inflammation.biomedcentral.com": [1931], "*.beatport.com": [1764], "bristol.gov.uk": [19451], "wber.oxfordjournals.org": [12222], "bh.contextweb.com": [3618], "toddhetrick.me": [2024], "www.kattare.com": [8834], "www.transparency.hu": [22275], "www.ecb.eu": [5411], "www.arsq.asso.ulaval.ca": [17319], "x.myles.io": [2024], "www.hdh.ucsd.edu": [17012], "grouplogic.com": [6949], "www.dignityindying.org.uk": [4501], "prchwl.re": [2024], "mobile.siliconera.com": [14854], "sqnths.co": [2024], "usionline.unileoben.ac.at": [17267], "www.comic-rocket.com": [3468], "s.haleagar.com": [2024], "hdclub.org": [20357], "stanfordmedicine.stanford.edu": [15448], "gbe.me": [2024], "l.prg.com": [2024], "jcpr.us": [2024], "plugins.geany.org": [6463], "www.waitrose.com": [18045], "wells.tips": [2024], "pao-pao.net": [12405], "nationalgeographic.com": [11118], "wdr.bz": [2024], "www.parisvega.com": [21346], "retb.co": [2024], "pianol.es": [2024], "atagar.com": [1332], "flashme.co": [2024], "pulispace.444.hu": [183], "math.williams.edu": [18408], "support.alexa.com": [843], "nulab.co": [2024], "exb.us": [2024], "www.rockhursthawks.com": [13996], "*.explicit.bing.net": [1925], "pmcache.co": [2024], "smr.tl": [2024], "demo.dtvp.de": [19900], "cherkasy.mclaut.com": [20942], "my.maximintegrated.com": [10108], "ciphershed.org": [3155], "archive.kororaproject.org": [9001], "rtsbank.dengisend.ru": [4344], "stanfordwho.stanford.edu": [15448], "alts.trade": [360], "manchester-consult.objective.co.uk": [21225], "yoop.cc": [2024], "youtube.co.kr": [18800], "scout.events": [2024], "cait.wustl.edu": [18089], "megapiranha.me": [2024], "routingpacketsisnotacrime.uk": [21680], "www.projectslice.com": [15021], "pmf.me": [2024], "altvz.co": [2024], "homementors.com": [7482], "roccat.org": [13985], "pullingladies.com": [12297], "bugs.php.net": [12280], "vrsk.co": [2024], "www.blog.kaspersky.com": [8820], "livehlsvgtrk.cdnvideo.ru": [19536], "l.tiwi.be": [2024], "media-cerulean.cursecdn.com": [3927], "info.drweb.com": [4776], "www.floatinghospital.org": [5914], "www.railsconf.com": [13589], "mochahost.com": [10544], "geektavern.fr": [2024], "app.ly": [2024], "*.firstcentralsb.com": [5850], "cmbl.biomedcentral.com": [1931], "www.clic-study.org": [2635], "*.fatcow.com": [5679], "rotator.trafficstars.com": [22267], "www.freebase.com": [6133], "4trade.it": [2024], "siorc.net": [2024], "cbsys.me": [2024], "n2c06k.xyz": [2024], "a1webstats.com": [265], "behr.com": [1788], "mh-pr.eu": [2024], "lsf.uni-due.de": [17252], "thsth.at": [2024], "awrd.me": [2024], "kin.gl": [2024], "startech.com": [15459], "iamk.biz": [2024], "*.export.gov": [17108], "fishy.click": [2024], "www.pentest-tools.com": [21383], "u.ocimblog.com": [2024], "fi.cdnetworks.com": [2574], "login.2345.com": [98], "4lex.me": [2024], "*.fool.com": [10654], "osobnosti.aktuality.sk": [1507], "www.pingvinbolt.hu": [12722], "prima.tv4play.se": [15947], "buffalostate.edu": [2418], "deviceids-medt.wdr.de": [18113], "ww4.sinaimg.cn": [14910], "www.soundonsound.com": [15229], "aes.zr.ru": [22725], "private.receivesmsonline.net": [21608], "babymiam.com": [2024], "i.chlf.re": [2024], "cutsforth.link": [2024], "nemid.dtu.dk": [16096], "ipfs.com": [7795], "pescor.eu": [2024], "login.effectivemeasure.com": [5095], "www.linuxmusicians.com": [9429], "lmont.co": [2024], "docs.maxcdn.com": [10102], "monitor.www6.memberdirect.net": [10265], "sa.ltmin.es": [2024], "www.oauth.net": [11645], "rehatrutnov.eu": [2024], "www.cannockchasedc.gov.uk": [19504], "pro.stubhub.de": [15602], "24mov.es": [2024], "mybenefits.aol.com": [380], "news.ycombinator.com": [7129], "www.website.ws": [18183], "winendine.co": [2024], "ri.gy": [2024], "nightly.geany.org": [6463], "hee.ro": [2024], "thl.osu.edu": [11797], "samara.biglion.ru": [19375], "sentineldiscussion.safenet-inc.com": [14289], "auth.demandbase.com": [4324], "stylat.hm": [2024], "svgnb.com": [2024], "dfvr.co": [2024], "gktw.org": [6668], "www.posterstoreuk.com": [13017], "a.chathome.org": [2024], "www.cs.drexel.edu": [4753], "future.democrats.org": [4338], "domains.live.com": [9495], "tus.dj": [2024], "dsinein.ch": [2024], "www.hidekibin.hidekisaito.com": [7396], "static-yttrium.cursecdn.com": [3927], "www.engr.uw.edu": [17156], "nikolskoe.startsmile.ru": [21980], "meego.com": [10220], "forum.geizhals.de": [6495], "icp-c.com": [2024], "www.infinet.com.au": [8096], "beauteprivee.fr": [1766], "*.vendetta-online.com": [17693], "b.romy.io": [2024], "navo.cat": [2024], "defsounds.com": [4299], "www.vtv.fi": [17625], "www.uniforum.uio.no": [17414], "gvardejsk.klops.ru": [20735], "forum.oxforddictionaries.com": [12223], "qual.io": [2024], "twoseventy.net": [16972], "mypods.club": [2024], "msudrf.astrobl.ru": [19264], "reg.mdm.ru": [10143], "dirs.cis.rit.edu": [13493], "rdgate01.newark.ohio-state.edu": [11798], "citrix.sviaz-bank.ru": [15740], "cdn.ch2.xfinity.com": [22650], "bdgr.co": [2024], "wizbangblog.com": [18478], "cache-www.linksys.com": [9398], "noppai.com": [2024], "bb2b.io": [2024], "tiltbrush.com": [16525], "imgrush.com": [8001], "crea010.com": [2024], "info.thoughtworks.com": [16461], "www.mipt.ru": [20990], "www.barnebys.co.uk": [1702], "www.youtube.com.lv": [18800], "dealer-network.bankofamerica.com": [1669], "www.paloaltonetworks.com": [12378], "dub.duckduckgo.com": [4785], "*.bigdinosaur.org": [1889], "fast.fonts.net": [5973], "ekz.link": [2024], "ksl.fm": [2024], "leader-id.ru": [20793], "www.youtube.com.lb": [18800], "*.actionkit.com": [545], "support.skype.com": [15003], "www.first.org": [5566], "p.raasnet.com": [13716], "identity.languageediting.nature.com": [11140], "*.fool.co.uk": [10654], "glo.st": [2024], "nlleisu.re": [2024], "cdn-d-vid-embed.pornhub.com": [12972], "resurs.slu.se": [14195], "emailsrvr.com": [5185], "mol.astrobl.ru": [19264], "childrens.mycareinbirmingham.org.uk": [10845], "webmail.caltech.edu": [2771], "trialsjournal.biomedcentral.com": [1931], "embeds.audioboom.com": [19272], "blwck.de": [2024], "research.hks.harvard.edu": [7211], "www.springer-gabler.de": [15378], "static.islamqa.info": [8370], "gus.tw": [2024], "zed.live": [2024], "documentation.cpanel.net": [2667], "static.theadex.com": [16400], "js2.t.sinajs.cn": [14909], "map.nso.ru": [21192], "downloads.mariadb.org": [9996], "brendond.es": [2024], "nmbl.tv": [2024], "lpcpayments.streamamg.com": [22006], "japani.ac": [2024], "www.ico.ee": [15999], "new.1lotstp.com": [62], "dlgc.co": [2024], "intra.portal.keenetic.net": [20701], "s2.thejournal.ie": [16299], "apps.lincolnshire.gov.uk": [9379], "bagu.logilab.fr": [9568], "www.digicert.com": [4461], "privacyrights.org": [13141], "gratia.fnal.gov": [5741], "ctn.mywot.com": [10841], "steamcommunity.com": [15517], "oak.ly": [2024], "www.nc.me": [10920], "adminer9.vas-hosting.cz": [22428], "msh.khabkrai.ru": [20709], "smetrics.timeinc.net": [16535], "ugc.nyc": [2024], "htmlarro.ws": [2024], "fool.co.uk": [10654], "myfden.im": [2024], "me.truesdell.ca": [2024], "l.khoanguyen.me": [2024], "go2apa.ga": [2024], "eepl.tc": [2024], "www.sciencedaily.com": [14439], "*.ucsb.edu": [17331], "perimetertrail.stanford.edu": [15448], "www.xkcd.com": [22652], "sbls.info": [2024], "www.discourse.org": [4534], "nkta.cf": [2024], "www.cquotient.com": [19711], "ats.kyivstar.ua": [9067], "vss.la": [2024], "*.infinity-tracking.net": [8098], "www.paralympic.org": [21343], "mitmproxy.org": [10495], "stijl.kuleuven.be": [8832], "lp.leadpages.net": [9209], "kwne.ws": [2024], "apiguard.geetest.com": [20222], "loot.cr": [2024], "outlook.com": [12185], "leonz.me": [2024], "mailarchive.ietf.org": [7725], "footlocker.ca": [5987], "stickwww.play-asia.com": [12828], "dar.li": [2024], "assets.gusto.com": [7010], "hailstormproducts.com": [7154], "www.evdrive.com": [4976], "asmp.org": [990], "lpn.so": [2024], "www.nativo.net": [11130], "11qx4njdf72rsrglplll02vb7olc5avx182gcwhr.ipleak.net": [20571], "btwholesale.com": [1601], "www.defensetravel.dod.mil": [17109], "moneybookers.com": [10588], "dpth.info": [2024], "btdig.com": [19461], "www.quitter.se": [13424], "webapp.halton.gov.uk": [20335], "help.instantatlas.com": [20543], "maps.telford.gov.uk": [22121], "cache.lifehacker.com": [9346], "frmwk.com": [2024], "www.fstoppers.com": [6218], "applyweb.com": [1159], "evan.nz": [2024], "s.dav.is": [2024], "camrn.me": [2024], "tokyo-tosho.net": [16612], "hostinglabs.pe": [7537], "ww.domofond.ru": [19876], "ql.e-c.al": [2024], "www.digitalcourage.de": [4489], "topte.es": [2024], "morals.ias.edu": [7673], "drmfree.calibre-ebook.com": [2757], "r.i.ua": [7659], "www.intern.arch.ethz.ch": [4967], "ding.1688.com": [51], "nczonline.net": [21098], "sciense-environment.friday.ru": [20175], "www.trane.com": [22271], "go.turigo.pl": [2024], "cyberforat.boum.org": [2261], "my.phone.coop": [12666], "unispal.un.org": [17057], "l.mfcimg.com": [20972], "www.osnews.com": [21300], "estpn.gy": [2024], "www.stubhub.co.uk": [15602], "gadget.geekzone.co.nz": [6491], "points.yahoo.co.jp": [18730], "www.identrustssl.com": [7937], "sokkuri.link": [2024], "elstatic.weborama.fr": [18231], "7pockets.link": [2024], "s.spicyapps.com": [2024], "getru.sh": [2024], "sts3.wsj.net": [18021], "l.zeta.net": [2024], "msvos.be": [2024], "www.silabs.com": [14850], "www.crc.id.au": [2670], "a2-content.vouchercloud.com": [22501], "es.biotrimlabs.com": [1940], "*.hetzner.de": [7376], "ctn.calastone.com": [19492], "zelenogradsk.klops.ru": [20735], "education-stage.oracle.com": [12116], "www.thomsoninnovation.com": [22196], "nawww.unistream.ru": [17291], "samples.libav.org": [9306], "s3.chuug.com": [3135], "go.tapdecor.com": [2024], "2avesag.as": [2024], "mbs.microsoft.com": [10396], "xpra.org": [18679], "snc.tv": [2024], "www.gacollege411.org": [6282], "wp.0x539.se": [8], "workwithcolor.com": [18528], "claimconnect.net": [4886], "www.zalando.it": [18877], "www.cmswire.com": [2642], "unknowncheats.me": [17442], "imgwx2.2345.com": [98], "afisha.mail.ru": [9891], "*.rutgers.edu": [14103], "*.www.freelancer.co.uk": [6154], "bovpg.net": [2269], "dclot.to": [2024], "go.pandora.net": [2024], "usersnap.com": [17524], "mannd.us": [2024], "clients.comcate.com": [3463], "www.odoo.com": [11765], "www.tiaa-cref.org": [15881], "dmesg.gr": [4586], "www.rackspace.dk": [13563], "media.regjeringen.no": [13800], "rivals.n.rivals.com": [21655], "cubplat.bidsystem.com": [3904], "lipetsk.sumtel.ru": [22031], "redirect.1and1.co.uk": [71], "www.toorcon.net": [16630], "juniperresearch.com": [8697], "swgoh.org": [2024], "qwi.lt": [2024], "skpm.tk": [2024], "m-pindemo.certivox.org": [2974], "www.guttmacher.org": [7013], "subscriber.pagesuite-professional.co.uk": [21337], "sglivenow.com": [2024], "www.art.com": [1244], "now.eloqua.com": [5171, 5172], "u.zoltis.com": [2024], "w3b.link": [2024], "lth.se": [9117], "brnfam.us": [2024], "delonline.us": [2024], "www.faq.mail.com": [9890], "orioninc.com": [12144], "japhub.com": [8528], "aaa.play-asia.com": [12828], "xmds.biligame.com": [1903], "eqwd.co": [2024], "enterw.in": [2024], "bitlendingclub.com": [1961], "i2.lbp.me": [20789], "sports.epros.co": [2024], "acessa.com": [527], "www.digitalcounterservices.hsbc.com.hk": [20427], "sme.sk": [14198], "whizzy.in": [2024], "dlxa.co": [2024], "samg.bz": [2024], "www.sacnas.org": [14122], "factiva.com": [11361], "www.tinymce.com": [22212], "factura.net": [2024], "unbound.nlnetlabs.nl": [10980], "app.syspectr.com": [15822], "kapiton.se": [8804], "stci.uk": [2024], "www.xperiencedays.com": [18676, 22656], "useful.media": [2024], "www.nccgroupdomainservices.com": [10923], "alleg.me": [2024], "edapps.co": [2024], "zhihu.sogou.com": [15168], "test10.usc.edu": [17366], "australia.isidewith.com": [20466], "www.sourcemod.net": [21907], "bugs.xmms2.org": [18613], "z.chango.com": [3003], "store.theonion.com": [11898], "go.andlauer.de": [2024], "sbiapp.sbi.co.in": [14140], "pontis-api.kyivstar.ua": [9067], "paf-spsu.web.cern.ch": [2588], "www.sli.mg": [21859], "sosmap.co": [2024], "trud.krskstate.ru": [20757], "wiki.mumble.info": [10739], "mnbiz.cc": [2024], "omdf.co": [2024], "tigerair.com.au": [16515], "www.petermolnar.eu": [12623], "clippings.com": [19616], "www.thelocal.it": [22168], "reviews.pe": [2024], "sh.osmdroid.net": [2024], "ssl.cdn-redfin.com": [2568], "builder-assets.unbounce.com": [17239], "www.muut.com": [10778], "f3y.eu": [2024], "irclogs.linaro.org": [9377], "www.soylentnews.org": [15268], "thick.ly": [2024], "mrfibre.nz": [2024], "iggl.co": [2024], "eastriding-consult.objective.co.uk": [21225], "elements.yandex.by": [18739], "go.vegeby.nu": [2024], "radiology.weillcornell.org": [22557], "www.opensc-project.org": [12004], "broadcom.com": [2372], "m.kuruc.info": [9058], "app.overdrive.com": [12192], "supportapj.dell.com": [4317], "posterous.com": [13019], "top.elec.ru": [19976], "www.eforms.gov.ie": [19966], "s00.yaplakal.com": [22668], "cipr.uwm.edu": [17379], "mouseflow.de": [10664], "office.qq.com": [13329], "starr.es": [2024], "sig.ias.edu": [7673], "z.barik.net": [2024], "www.jamtrackcentral.com": [8509], "hype.fyi": [2024], "www.thepiratebay.casa": [22174], "cda.nl": [10975], "www.macromedia.com": [9850], "8ch.net": [243], "wtfuzz.com": [18024], "securepurchaseserver.com": [14573], "bsan.eu": [2024], "cncy.co": [2024], "sportbookings.ipswich.gov.uk": [8348], "www.acunetix.com": [561], "evolvur.biz": [2024], "wvw.nehow.com": [2024], "bt.mdiemer.com": [2024], "fass.se": [5658], "edut.to": [2024], "emia.us": [2024], "hadrons.org": [7150], "freepracticetests.org": [6132], "boerse.migrosbank.ch": [10414], "rtwt.at": [2024], "register.cnbc.com": [2645], "mtafwheels.com": [2024], "perm.europaplus.ru": [20034], "jbr.co": [2024], "service.govdelivery.com": [6846], "www.posteshop.it": [13014], "cryptomator.org": [3868], "forums.shopsite.com": [14779], "www.cbox.ws": [19525], "*.powerhousemuseum.com": [13047], "evohumo.com": [2024], "hcro.nl": [2024], "1.baidu.com": [1641], "matalan.co.uk": [10072], "giganews.com": [6632], "arabic.algeria.usembassy.gov": [22406], "bcks.us": [2024], "anchorveil.us": [2024], "abonnes.lesinrocks.com": [9273], "i5.lbp.me": [20789], "www.timeinc.net": [16535], "renew.acs.org": [974], "wwd.play-asia.com": [12828], "to.merific.com": [2024], "notebook-kisker.hu": [9167], "zh.3.boardgamearena.com": [2182], "unspla.sh": [2024], "pwsafe.org": [12468], "images.curseapp.net": [3927], "deltastix.com": [2024], "ttfy.co": [2024], "mondher.info": [2024], "bookings.preston.gov.uk": [21491], "runoaks.com": [2024], "tagp.co": [2024], "unlimited401k.com": [17445], "static.myitworks.com": [7860], "arc.ht": [2024], "i4wifi.cz": [20459], "kchr.tpprf.ru": [22260], "www.regmedia.co.uk": [13801], "hichatt.ml": [2024], "www.vr.se": [17597], "www.icstars.com": [7925], "thislstruth.com": [2024], "theiphonemom.com": [16408], "scoup.co": [2024], "in.turklr.com": [2024], "pnth.rs": [2024], "www.bitcoin.co.th": [1991], "www.cnnumerique.fr": [2651], "svtsite.tk": [2024], "docs.yahoo.co.jp": [18730], "locl.es": [2024], "auto.bi": [2024], "www.astrakhan.ru": [19263], "storage.nashnet.ua": [21087], "zena.sme.sk": [14198], "opentransfer.com": [12083], "ecsi.com": [4874], "nwp.link": [2024], "gymglish.*": [7021, 7022], "fand.in": [2024], "l3o.me": [2024], "ubank.com.au": [17002], "sfuz.co": [2024], "cdn.assets-phoenix.net": [12664], "on.feewise.com": [2024], "my.opera.com": [12086], "chat.timk.co": [2024], "vicki.fr": [2024], "foundi.ly": [2024], "www.skinflint.co.uk": [14978], "www.demand-driver.com": [4327], "www.velleman.eu": [17685], "home-school.com": [20394], "mtswld.com": [2024], "gongkaike.sinacloud.com": [14908], "ticketsnow.com": [16501], "link.imagiu.com": [2024], "archive-3.kali.org": [8786], "0nl1ne.at": [3], "unum.me": [2024], "www.volafile.io": [22492], "legolanddiscoverycenter.jp": [9249], "register.mitre.org": [10497], "anyfi.net": [1114], "nexac.com": [11394], "www.customwheelconnection.com": [3931], "fkl.fi": [5815], "forums.malwarebytes.com": [9940], "ientry.com": [20462], "aprimeira.fm": [2024], "tl.r7ls.net": [13452], "www.lobbyradar.de": [22709], "greencup.de": [2024], "tube4.me": [16884], "authus.opensocietyfoundations.org": [21280], "samltool.com": [21726], "my.hscic.gov.uk": [20435], "forestry.oxfordjournals.org": [12222], "www.bgr.com": [1541], "cejz.tk": [2024], "gallery.op-co.de": [11937], "sandstorm-media.de": [14344], "go.pesout.eu": [2024], "s.sharethis.com": [14730], "infood.co": [2024], "go.eick.it": [2024], "autoversicherungen.search.ch": [14504], "support.cloudbees.com": [19622], "myworldofwork.co.uk": [21078], "podl.ch": [2024], "img.empstatic.com": [5212], "thejoshc.us": [2024], "www.challenge25.go.jp": [8527], "on.wbir.com": [2024], "www.tweakhound.com": [16937], "static.opml.org": [11691], "www.lihm.net": [9363], "ftg.io": [2024], "s.kylepiira.com": [2024], "away.vk.com": [17578], "meetfriends.rt.com": [13528], "lclly.co": [2024], "ut04.xhcdn.com": [18605], "poiskvps.ru": [21450], "image-store.slidesharecdn.com": [15029], "hurleymc.com": [7632], "clif.fr": [2024], "edy.rakuten.co.jp": [13593], "crnt.osu.edu": [11797], "bulgarian.bulgaria.usembassy.gov": [22406], "wupaymentsolutions.com": [18026], "www.theregister.co.uk": [22182], "s.mnz.ro": [2024], "simmarket.com": [14870], "molk.tv": [2024], "francetvinfo.fr": [20149], "fop.thecthulhu.com": [16403], "short.yeuxa.com": [2024], "songne.ws": [2024], "cmics.co": [2024], "epmajournal.biomedcentral.com": [1931], "nixos.org": [11469], "on.mgmadv.com": [2024], "www.horde-llc.com": [7503], "pse.osu.edu": [11797], "overlay.ringtonematcher.com": [13951], "linode.com": [9401], "donate.naacp.org": [10901], "www.aboutairportparking.com": [12201], "tuji.gm.163.com": [50], "newkaliningrad.ru": [21123], "libreoffice-from-collabora.com": [9326], "wap.mail.ru": [9891], "zz.bdstatic.com": [19339], "www.notanet.com.br": [11557], "nl.getsatisfaction.com": [6601], "emacswiki.org": [5182], "uvm.edu": [17154], "tour.girlsoutwest.com": [6648], "w3ha.us": [2024], "welcome.openx.com": [12028, 21284], "ben.debian.net": [4261], "fuckfriends.nu": [2024], "status.onfleet.com": [11896], "www.plantronics.com": [12815], "thrst.us": [2024], "www.e-onlinedata.com": [4851], "deeppoliticsforum.com": [4286], "dataxu.com": [4182], "mbrk.me": [2024], "dden.co": [2024], "eforms2.westlothian.gov.uk": [22571], "mutts.com": [21054], "befrds.com": [2024], "hmny.me": [2024], "beacon.sina.com.cn": [14904], "cmt.co.ve": [2024], "lpumu.se": [2024], "static.115.com": [28], "url.raylu.net": [2024], "a.aim-vinyl.com": [2024], "wikispaces.asu.edu": [1221], "fourpoints.ht": [2024], "forum.sneakerfreaker.com": [21880], "countryoffice.unfpa.org": [17062], "fr.usembassy.gov": [22406], "u5.qiyipic.com": [13354], "fans.fm": [20075], "e.sdraus.com": [2024], "blogs.oracle.com": [12116], "rwudonate.mobi": [2024], "accessories.sky.com": [14989], "*.mypressplus.com": [13080], "now.com": [11572], "ccm.ddcdn.com": [19783], "msdn.microsoft.com": [10396], "v.amoad.com": [371], "*.jimg.dk": [8587], "report.migros.ch": [10417], "www.jitec.ipa.go.jp": [7791], "rubygems.org": [14076], "*.bay.livefilestore.com": [9515], "www.yubico.com": [18835], "golearn.unodc.org": [17075], "alll.es": [2024], "i.nettklipp.no": [2024], "www2.ipleak.net": [20571], "oculus.com": [11759], "tangxian.jd.com": [8434], "share.oculusvr.com": [11760], "dbtv.no": [19776], "www.cuttlefish.com": [3938], "unicef.org": [17069], "www.nic.ad.jp": [10958], "www.gdata.pt": [6272], "jobs.newcastle.gov.uk": [11355], "everyanglemedia.com": [5442], "qd.alibaba.com": [857], "itprn.rs": [2024], "1smi.co": [2024], "metrika.yandex.kz": [18743], "digid.nl": [11172], "img6.2345.com": [98], "edusoft.hslu.ch": [7589], "salv.in": [2024], "42si.fr": [2024], "epsi.ga": [2024], "aksam.im": [2024], "www.apkmirror.com": [1126], "brnd.cx": [2024], "seafile-server.de": [14497], "sh.zucks.net": [22729], "engineering.osu.edu": [11797], "www.infonline.de": [7772], "www.marum.de": [10046], "doncaster.greenparty.org.uk": [6908], "radler.co": [2024], "www.studyabroad.state.gov": [17146], "publicappointments.cabinetoffice.gov.uk": [2716], "lvfm.biz": [2024], "www.dataconservancy.org": [4184], "api.beeg.com": [19343], "kae.me": [2024], "jrls.oxfordjournals.org": [12222], "www.thurrott.com": [16481], "wholuv.me": [2024], "www.stripe.com": [15594], "partners.skyscanner.net": [15006], "aw.chaucanh.net": [2024], "dreamcity.cc": [2024], "go.eyeopener.tv": [2024], "jbeekman.nl": [8427], "agenda.upo.es": [17479], "post.audioscrobbler.com": [1387], "www.zencoder.com": [18919], "ford.to": [2024], "livenation.*": [9493], "smetrics.samsung.com": [14326], "status.python.org": [13314], "int.nyt.com": [11035], "openrepos.net": [21278], "www.serve.com": [14661], "aliyun.com": [868], "lumension.com": [9671], "crowdsale.kuna.io": [20763], "s.jtvnw.net": [16961], "blog.dbrgn.ch": [4227], "firstfra.me": [2024], "actualidad.rt.com": [13528], "www.forums.playfire.com": [12842], "akncan.me": [2024], "nplsne.ws": [2024], "zhilnadzor.astrobl.ru": [19264], "farmchips.migros.ch": [10417], "mky.bz": [2024], "go.smay.co": [2024], "api.antizapret.info": [1107], "lnk.ghiassy.com": [2024], "www.kinesis-ergo.com": [8910], "ng.boell.org": [19422], "dev.windows.com": [18432], "brte.co": [2024], "employment.gov.au": [4354], "printink.si": [13120], "fpidetour.com": [2024], "fantasy.isport.blesk.cz": [2088], "vvvzld.nl": [2024], "bosslinux.in": [19431], "purefla.sh": [2024], "bank.yuga.ru": [22701], "userium.com": [17519], "cdn1.hubspot.com": [7599], "www.nav.no": [21093], "r.varcoe.com": [2024], "affutd.com": [742], "forexcabinet.finam.ru": [20099], "rightscon.org": [13943], "filmco.ms": [2024], "snap-ci.com": [21878], "spark.ru": [15288], "fr.4.boardgamearena.com": [2182], "fortiguard.com": [6032], "m4.baidu.com": [1641], "ss2.meipian.me": [10247], "img.domaintools.com": [4653], "checkout.virginmedia.com": [17822], "cdays.co": [2024], "w.index.etc.br": [2024], "www.piraadipartei.ee": [21411], "www.anonimag.es": [1081], "galogin.ntu.edu.tw": [11010], "veterinaryresearch.biomedcentral.com": [1931], "www.tinfoil.co": [16547], "video.tkbbank.ru": [16583], "www.aweirdimagination.net": [445], "city.yandex.com": [18742], "tall.it.da.ut.ee": [17148], "shpyrd.co": [2024], "securepaths.com": [14569], "lfsz.vc": [2024], "i.screenplay.cc": [2024], "security.yahoo.co.jp": [18730], "cdn.shortlist.com": [14795], "e2e.ti.com": [16225], "b.psng.me": [2024], "universityofsouthflorida.worldcat.org": [18536], "study.ngs.ru": [21134], "image.logmein-inc.com": [9558], "go.yab.ro": [2024], "radarview.flightradar24.com": [20119], "u-see.ml": [2024], "www.ecotelecom.ru": [19952], "hjr-verlag.de": [7055], "ctracking.gpehosting.com": [6353], "assets2.sendgrid.com": [14638], "sdelka.friday.ru": [20175], "www.acyba.com": [564], "slovari.yandex.ua": [18747], "kb.safenet-inc.com": [14289], "trbs.co": [2024], "kevin.ms": [2024], "jobh.ro": [2024], "www.npdgroup.com": [10986], "presenter.player.qbrick.com": [13345], "onescreen.com": [11881], "on.imnice.com": [2024], "l.jessii.me": [2024], "laker.co": [2024], "ayyo.ru": [19292], "l.forstbach.com": [2024], "liftdna.com": [9353, 9354], "www.ricoh.com.hk": [13935], "joycasino1.com": [20654], "www.leetmedia.com": [9238], "l.z-p.io": [2024], "ukf.me": [2024], "alphaville.ft.com": [5810], "bourde.la": [2024], "www.authorizenet.com": [1435], "wiki.tog.ie": [15909], "gs.permkrai.ru": [21390], "status.rubygems.org": [14075], "npmawesome.com": [11581, 11582], "yelp.com.tr": [18766], "s.lisra.jp": [2024], "awxcnx.de": [1491], "90sot.com": [2024], "pragmaticstudio.com": [13060], "www.townnews365.com": [16689], "implant-us.link": [2024], "qame.us": [2024], "zwk.cc": [2024], "earthflight.friday.ru": [20175], "262.ie": [2024], "www.apoteket.se": [1130], "dl.taz.de": [15853], "zakupy.mbank.pl": [9733], "zp.alfabank.ru": [849], "worldcat.org": [18536], "portal.qf.org.qa": [21557], "www.tmall.hk": [16589], "d4.hitravel.xyz": [2024], "www.trustees.osu.edu": [11713], "apps.adr.org": [19086], "android.to": [2024], "rossp.ru": [21675], "cart.mn": [2024], "vladimir.europaplus.ru": [20034], "qns.bz": [2024], "cibo.cc": [2024], "gmads.mookie1.com": [10617], "recreation.georgetown.edu": [6531], "*.roku.com": [14007], "secure.leadback.advertising.com": [713], "www.audubon.org": [1389], "cdn.tele2.lt": [16134], "m1.ykimg.com": [22681], "hup.hu": [7108], "www.thepiratebay.lu": [21522], "yvnn.us": [2024], "ww1694.smartadserver.com": [15049], "www.badil.info": [19303], "alumni.cartercenter.org": [2877], "shop.interkassa.com": [8250], "rb.ht": [2024], "*.makerble.com": [9924], "search.etargetnet.com": [5364], "hotmail.com": [7565], "ar.usembassy.gov": [22406], "www.genius.com": [20226], "entries.me": [2024], "opticsinfobase.org": [12102], "helsinki.fi": [17343], "truesumm.it": [2024], "go.csarabic.com": [2024], "www.aclusocal.org": [313], "freedompop.com": [6146], "liveperson.com": [9506], "www.amstelveen.nl": [11172], "pasdoc.sipsolutions.net": [14184], "www.thumbalizr.com": [22202], "bonick.me": [2024], "kellyca.in": [2024], "mapd.io": [2024], "mighty.pe": [2024], "outspark.com": [12186], "websitealive3.com": [18242], "upload.tangerine.ca": [16008], "lipetsk.rt.ru": [13529], "hongze.jd.com": [8434], "cphr.us": [2024], "factually.gizmodo.com": [6677], "playertest.longtailvideo.com": [9601], "blog.winkdex.com": [18446], "service-ok.svyaznoy.ru": [22053], "eusb.me": [2024], "nedk.us": [2024], "abr.ms": [2024], "onlinelifeinsurance1.iciciprulife.com": [7917], "occvacantes.com": [2024], "humanism.org.uk": [7617], "www.brockman.com": [2375], "mail.vse.sk": [17955], "mininvest.government-nnov.ru": [20295], "www.welcomecottages.com": [18579], "www.mcc.gov": [20940], "thoughtworks.com": [16461], "fb.hsicloud.com": [7586], "mobil.welt.de": [18290], "s3.wsj.net": [18021], "subscription.time.com": [15884], "achtc.co": [2024], "reg.atlas.sk": [19269], "bancastato.ch": [20683], "www.intentmedia.co.uk": [8226], "mobil.tdc.dk": [15862], "www.bis.gov.uk": [17039], "esf-works.com": [4950], "dmachoice.thedma.org": [16340], "traffic.lan.switch.ch": [15762], "jbsib.ly": [2024], "u.fsf.org": [5590], "gobu.me": [2024], "dycip.com": [2024], "*.pixlr.com": [12779], "www.digipaper.fi": [10154], "wfdh.co": [2024], "ruptureit.com": [21696], "idp.kantarainitiative.org": [8802], "ico.al": [2024], "recycleforsurrey.org.uk": [21613], "wal.is": [2024], "ld.svt.se": [14267], "bbi.edu.au": [2024], "webmail.gigabyte.com": [6628], "fornex.com": [6024], "signals.com": [14844], "www.bsi.de": [5701], "*.agu.org": [344], "go.fame.li": [2024], "cspbuilder.info": [3889], "rredc.nrel.gov": [11095], "www.vellemanusa.com": [17685], "go.unsitoweb.it": [2024], "*.fastclick.net": [17629], "jobsgopublic.com": [8614], "gamepersistence.roblox.com": [13980], "finforms.wigan.gov.uk": [18379], "www.mxlogic.com": [10126], "*.cfda.gov": [2903], "4.groo.pe": [2024], "result.webplatform.org": [18176], "*.blogspot.in": [2127], "glee.co.uk": [20263], "www.spnet.nl": [14227], "*.blogspot.ie": [2127], "brussels.indymedia.org": [8090], "www.lunarmods.com": [624], "avianres.biomedcentral.com": [1931], "m.airbnb.no": [793], "www.whotargets.me": [18355], "autodiscover.mkb.ru": [10512], "*.blogspot.is": [2127], "*.blogspot.it": [2127], "api.gem.co": [6497], "central-lincs-consult.objective.co.uk": [21225], "post.tnsglobal.com": [15906], "guep.org": [20320], "cdn10.trafficjunky.net": [16721], "www.direktmarketingcenter.de": [19816], "zuhah.com": [19020], "codewords.recurse.com": [13714], "www.frederikssund.dk": [6095], "dolnyzemplin.korzar.sme.sk": [14198], "sm.wdjcdn.com": [18066], "quocir.com": [2024], "hd.web.do": [2024], "picture2.cyberport.de": [3966], "static1.wonderwall.com": [18502], "www.cimbniaga.com": [2617], "imancentral.org": [7759], "tdict.leo.org": [9270], "www.dediserve.com": [4280], "www.alex.se": [841], "www.coretime.fm": [19691], "sha.red": [2024], "dfa.cornell.edu": [3676], "l7.hitravel.xyz": [2024], "www.telefonanschluss.de": [7041], "nnovgorod.sledcom.ru": [21858], "ease.media": [2024], "reri.cc": [2024], "forum.ovh.cz": [12205], "track.omguk.com": [11670], "speterburg.biglion.ru": [19375], "sy.taobao.com": [16015], "www.ab9il.net": [282], "*.jotform.com": [8649], "mobile.cc.stonybrook.edu": [15548], "*.advertserve.com": [707], "*.marketingresearch.org": [10022], "www.lendeavor.com": [9260], "www.hs-rm.de": [7585], "uglymugs.ie": [17200], "stbeehive.oracle.com": [12116], "www.ease.ed.ac.uk": [5059], "fr.piliapp.com": [12706], "stats.xmission.com": [18621], "blog.newsru.com": [11388], "www.mplayerhq.hu": [9798], "oep.oxfordjournals.org": [12222], "id.yahoo.co.jp": [18730], "theeld.com": [2024], "digitalmarketing.captora.com": [19508], "www.his.se": [7052], "intelbp.uk": [2024], "infolinks.com": [8113], "sonar.oschina.net": [11702], "lists.openafs.org": [11949], "assis.cf": [2024], "rtr.ch": [21957], "solus-project.com": [15194], "applianceshop.eu": [1155], "hds.ucsd.edu": [17012], "www.spi.ens.fr": [4922], "www.eventsjobsuk.g4s.com": [20195], "exacttarget.com": [5466], "www.pogoplug.com": [12894], "i.metodi.ca": [2024], "help-en-cn.nike.com": [11440], "cache.img.gmo.jp": [6325], "amerigo.me": [2024], "*.webd.am": [18155], "maas360.com": [9832], "www.getbeagle.co": [6572], "mclark.xyz": [2024], "www.boathousecrewshop.com": [2186], "go.garifull.in": [2024], "conference2009.kde.org": [8735], "bpl.ink": [2024], "nasuni.com": [11079], "blog.legitbs.net": [9248], "www.kirpich-ors.ru": [20725], "revt.us": [2024], "contact.bad-dragon.com": [19300], "stats.mediciglobal.com": [10205], "blg.hm": [2024], "soic.indiana.edu": [8070], "te.lenot.es": [2024], "www.diasporafoundation.org": [4438], "trck.biz": [2024], "tnit.biz": [2024], "assange.rt.com": [13528], "community.spotify.com": [15367], "m.vk.com": [17578], "gsn.nso.ru": [21192], "jabber.linuxlovers.at": [9446], "secunia.com": [14539], "plf.zarb.org": [18894], "khabkray.sledcom.ru": [21858], "www.resilientsystems.com": [13863], "lee.aclufl.org": [297], "kotulas.com": [9007], "link.ebdg.cu.cc": [2024], "tssplansregistry.dft.gov.uk": [19825], "my.vt.edu": [17825], "dht.ec": [2024], "zapolyarny-adm.yanao.ru": [22665], "msrlx.com": [2024], "lvgul.ly": [2024], "openmedianow.net": [11996], "ipa.sa": [2024], "honduras.usembassy.gov": [22406], "www.clippod.com": [3269], "www1.eaststaffsbc.gov.uk": [19937], "cdn.executive.mit.edu": [9763], "pinterst.ga": [2024], "makewebeasy.com": [9927], "www.sigdet.nu": [14837], "*.alcatel-lucent.com": [829], "as.hannover.fau.org": [5543], "tp1.sinaimg.cn": [14910], "dwov.in": [2024], "www.poolp.org": [12945], "htc.com": [7095], "naturvardsverket.se": [11143], "madmimi.com": [9852], "www.data.wien.at": [22588], "www.dimauro.osu.edu": [11797], "sqrd1.com": [2024], "www.secondmarket.com": [14526], "link.zhakov.lv": [2024], "www.glype.com": [6735], "sealevel.jpl.nasa.gov": [10909], "jqintl.org": [2024], "resource-allocation.biomedcentral.com": [1931], "tdlcrk.co": [2024], "mail.msfn.org": [9804], "al-islam.org": [816], "www.ukfast.co.uk": [17043], "mcl.ink": [2024], "rothe.me": [2024], "www.ptt.br": [12334], "lshtm.ac.uk": [9588], "dogwoof.org": [2024], "cache.snacktv.de": [15086], "www.greenbillion.org": [6905], "pen.org": [12268], "thebookpeople.co.uk": [16292], "puremi.ch": [2024], "www.sportschau.de": [18113], "xm1.play-asia.com": [12828], "backstreetmerch.com": [1627], "streamuk.com": [22008], "live.ok.ru": [11806], "claims.kfc.ru": [20707], "img2.thalasseo.com": [16241], "accuco.de": [2024], "abf.li": [2024], "hardware.support.eu.playstation.com": [12832], "ipapi.ipip.net": [20570], "we.gg": [2024], "www.dangpu.com": [4132], "rbody.co": [2024], "given.behindthename.com": [19348], "fcm.link": [2024], "www.abhayagiri.org": [475], "winsupersite.com": [18421], "*.sandeen.net": [14340], "pt.norton.com": [11545], "groupon.de": [6956], "go.tamma.ro": [2024], "securitycenter.alipay.com": [864], "cms.arstechnica.com": [1242], "www18.georgetown.edu": [6531], "mailconfig.ovh.net": [12205], "d1.chaucanh.net": [2024], "portal.miun.se": [9766], "whois.webnames.ru": [22550], "stripchat.com": [22014], "static-3.rosminzdrav.ru": [21674], "website.1and1.co.uk": [71], "2dialog.com": [114], "mobile.flightradar24.com": [20119], "www.opentabs.net": [12081], "emn.online": [2024], "www.npower.com": [11583], "www.commandoboxing.com": [3479], "adl.netease.com": [11228], "*.clicksor.com": [3263], "lk.vm63.eu": [2024], "labs.opendatacity.de": [21271], "ele.na.it": [2024], "bgamed.de": [1542], "tradeadexchange.com": [22264], "haitao.nosdn5.127.net": [41], "www.123ehost.com": [37], "login.proxy.lib.ohio-state.edu": [11798], "gftypnts.co": [2024], "grpsd.co": [2024], "unf.li": [2024], "www.its.caltech.edu": [2771], "chroot-me.in": [3129], "my.rackspace.com": [13566], "hotmail.msn.com": [9810], "esr.org": [4999], "yonka.us": [2024], "www.ubuntugnome.org": [17188], "service.wienerstadtwerke.at": [18376], "r24820227.sync.app.asana.com": [1265], "b.shurl.ca": [2024], "mflav.in": [2024], "veterinary.gov-murman.ru": [20293], "zeal.ly": [2024], "api.travis-ci.org": [16775], "show.zoho.com": [18984], "sp.itunes.apple.com": [1151], "abb.to": [2024], "bdrck.co": [2024], "www.deeppoliticsforum.com": [4286], "sy.co.at": [2024], "clpn.co": [2024], "anhc.mx": [2024], "opkino.club": [2024], "wsp.link": [2024], "jackandjillraffle.org": [8491], "old.etnasoft.com": [5376], "preaulaglobal25.upf.edu": [17471], "www.apigility.org": [1125], "help.mail.com": [9890], "webmail.cj2.nl": [2629], "nascarne.ws": [2024], "vanwinkles.com": [17642], "admin.openccc.net": [11960], "iosbsinfo02.hkjc.com": [20384], "ultimarc.com": [22358], "s48.cnzz.com": [3328], "s1.lemde.fr": [9259], "medias1.prestashop.com": [13085], "urbn.is": [2024], "auth.discogs.com": [4529], "nemendafelog.hi.is": [7049], "www.unknowncheats.me": [17442], "usw-lax.adsrvr.org": [688], "n.rbnc.org": [2024], "ship-ment.com": [14766], "www.ludismedia.com": [9663], "starwoodhotels.com": [15479], "docs.us-inv.com": [2024], "ov.kavkaz-uzel.ru": [20694], "spinzo.it": [2024], "ww3.ipleak.net": [20571], "fsntest.tocco.ch": [16600], "hashtalk.org": [7216], "coco.as": [2024], "www.sankakucomplex.com": [21730], "www.fallscreek.com.au": [5633], "eap.cms.gov": [19630], "cdn0.onlinelaw.wustl.edu": [18089], "obninsk.tpprf.ru": [22260], "game.jd.com": [8436], "rjsi.ca": [2024], "tmobile.ecustomersupport.com": [5057], "smart-places.org": [21863], "artist.douban.com": [4701], "freitag.de": [6173], "qimag.uk": [2024], "bpf.deathmask.net": [4254], "sm-il.es": [2024], "*.feralhosting.com": [5737], "*.opensecrets.org": [2953], "mernetwork.com": [10292], "gntr.me": [2024], "devzone.missinglinkelectronics.com": [10492], "www.effusion.co.uk": [19965], "next.place": [2024], "pub.mate-desktop.org": [9727], "aprender.tk": [2024], "www.ablegamers.com": [478], "auth.smext.faa.gov": [5703], "www.srihash.org": [14233], "raiffeisen.ch": [13588], "rowi.ro": [2024], "*.pentontech.com": [12577], "static.justhookup.com": [8438], "*.epfl.ch": [4933], "v.calameo.com": [2747, 2748], "www.enisey.tv": [19998], "ifb.htwk-leipzig.de": [7596], "www.digitalgov.gov": [4474], "go.off2.tk": [2024], "export.anidb.net": [1065], "nd.gt": [2024], "therebellin.com": [22181], "www.pieperhome.de": [21406], "www.mitro.co": [10498], "*.www.final-score.com": [5803], "ymc.yt": [2024], "l2.51fanli.net": [209], "sustainable.stanford.edu": [15448], "www.standishmanagement.com": [15446], "www.do.de": [4640], "ns2.play-asia.com": [12828], "adopt.nature.org": [11141], "catalog.loc.gov": [9541], "ece.ucsd.edu": [17012], "zaehlwerk.net": [18872], "uhrada.vas-hosting.cz": [22428], "pact14.cs.illinois.edu": [17346], "www.krautchan.net": [9017], "accounts-query.9gag.com": [252], "*.shopzilla.com": [14794], "gosuslugi.permkrai.ru": [21390], "mrkt4.me": [2024], "cdn.350.org": [140], "djfd.co": [2024], "copdf.co": [2024], "lipetsk.tpprf.ru": [22260], "metrics.aftonbladet.se": [759], "pictwiitter.co": [2024], "*.dditservices.com": [19784], "assets.nnm-club.ws": [10982], "www.historytoday.com": [7423], "customer.convio.net": [3632], "mpbbank.dengisend.ru": [4344], "a.aist.go.jp": [802], "translink.co.uk": [16750], "www.one.com": [11865], "certdepot.net": [19551], "rome.specificclick.net": [15314], "www.us-cert.gov": [17501], "www.mybitcointrade.com": [1984], "store.digitalriver.com": [4469], "moderngov.rotherham.gov.uk": [14032], "my.antfood.com": [2024], "www.fanfiction.net": [5638], "biosignaling.biomedcentral.com": [1931], "vanillicon.com": [17650], "androidpit.de": [1052], "nixoni.st": [2024], "raionkhbadm.khabkrai.ru": [20709], "s-har.es": [2024], "ioke.org": [20560], "my.plexapp.com": [12855], "experiments.sparanoid.com": [21921], "*.shmoop.com": [14771], "galleries.play-asia.com": [12828], "btfl.pl": [2024], "hilfe.web.de": [18146], "a.wmalumni.com": [2024], "medicinaysalud.uniovi.es": [17282], "thepiratebay.bypassed.party": [21524], "www.scordit.com": [2310], "elementaryos.org": [5151], "webauth.ncsu.edu": [11531], "on.wcsh6.com": [2024], "blindn.es": [2024], "www.yapfiles.ru": [22667], "www.articulate.com": [1258], "trac-plugins.gajim.org": [6383], "www.freebarrettbrown.org": [6114], "go.yrf.me": [2024], "*.maine.edu": [17408], "aa.com": [273], "frangipane.boum.org": [2261], "merchant.pay.sina.com.cn": [14904], "vpb.co": [2024], "s.aa9.sa": [2024], "add-ons.wesnoth.org": [18298], "www.rubyforge.org": [14074], "img-l3.xvideos.com": [22660], "optimise.com.br": [12104], "software.uv.es": [17544], "onehockey.com": [11872], "ifightsurveillance.org": [7886], "razoo.com": [13649], "en.viss.tv": [2024], "pl.cloudflare.com": [3284], "*.phparch.com": [12682], "wiki.unbit.it": [17234], "www.nationalarchives.gov.uk": [11103], "westgateleisure.chichester.gov.uk": [19579], "13ma.tt": [2024], "evct.us": [2024], "lists.x2go.org": [18589], "condenaststore.com": [3560], "bozz.in": [2024], "copernico.net": [3654], "dlevi.com": [2024], "esbie.ie": [4944], "www.zipy.co.il": [18975], "dnmltz.me": [2024], "pa.bandinelli.net": [1663], "r24616653.sync.app.asana.com": [1265], "vitobiz.com": [2024], "s1.citilink.ru": [19594], "r24625069.sync.app.asana.com": [1265], "static.naukimg.com": [21091], "yandex.com.tr": [18740], "*.mediafire.com": [10166], "9sig.co": [2024], "keyform.georgetown.edu": [6531], "pvive.tk": [2024], "weihnachtsbaumspiel.tivi.de": [22709], "skills.im": [2024], "passport.126.com": [39], "hrkgame.com": [7584], "consultation.sepa.org.uk": [21783], "pgsltg.co": [2024], "*.sheetmusicplus.com": [14754], "aaronka.ro": [2024], "www.youtube.kr": [18800], "www.openbenchmarking.org": [11958], "*.r.axf8.net": [3547], "dotmh.co": [2024], "media3.giphy.com": [6646], "*.blogo.it": [2126], "travelhacke.rs": [2024], "atms02.alicdn.com": [853], "*.optionsanimal.com": [12110], "folksy.it": [2024], "webservices.web.cern.ch": [2588], "gamcare.org.uk": [6389], "mail.ru": [9891], "webmail6.hyd.gov.hk": [7063], "www.xfce.org": [18603], "ssl.facebook.com": [5609], "ifixit-meta.dozuki.net": [7730], "www.rocksbox.com": [21665], "www.leviathansecurity.com": [9288], "b.l422y.com": [2024], "go.eb.st": [2024], "cbc.life": [2024], "safe-mail.net": [14287], "www.bs.to": [2459], "flexp.co": [2024], "tuscany.apache.org": [1118], "payment.schibsted.no": [14414], "s.polostudio.es": [2024], "savethekoala.com": [1406], "o2.sk": [16141], "dts.io": [2024], "go.thezed.net": [2024], "go.pierreroy.co": [2024], "whdot.net": [2024], "ihub.co.ke": [20463], "mdh.se": [9743], "i9.3conline.com": [169], "inflammregen.biomedcentral.com": [1931], "usertags.jeremybieger.com": [17167], "portalpilot.equinix.com": [5322], "r24625341.sync.app.asana.com": [1265], "*.media.net": [10162], "sos.wa.gov": [14215], "onetree.site": [2024], "pittsburghzoo.org": [12763], "click.buddy.im": [2024], "azoya.co": [2024], "t.appbb.co": [2024], "www.tkqlhce.com": [3484], "inbenta.com": [8041], "filmlair.com": [5795], "pages.newsblur.com": [11366], "albinoloverats.net": [827], "cos.root.cz": [14020], "seller.flipkart.com": [5906], "www.humanaction.com": [7611], "affiliate.itunes.apple.com": [1151], "www.usb.org": [17115], "www.hostingcon.com": [7536], "crks.me": [2024], "twist.to": [2024], "fred.pe": [2024], "contrarycook.me": [2024], "polskapartiapiratow.pl": [21455], "potreb.khabkrai.ru": [20709], "www.usi.edu": [17322], "bhl.so": [2024], "mednews.wustl.edu": [18089], "i.fuwu.taobao.com": [16015], "www.jekyllrb.com": [20636], "www.servage.com": [14660], "c.jp.msn.com": [9810], "dblenco.re": [2024], "hfus.io": [2024], "mixi.jp": [10505], "shanxi.jd.com": [8434], "www.airbnb.com.au": [793], "apidocs.tokenly.com": [22229], "www.pirogov.ru": [21421], "blog.jcea.es": [8554], "via.eby.io": [2024], "talkactive.net": [15989], "*.lucent.com": [829], "j0e.cc": [2024], "mail.dfs.un.org": [17057], "www.coventgarden.london": [19703], "ep02.epimg.net": [5126], "webfusion.co.uk": [18212], "luvvie.me": [2024], "karbankne.ws": [2024], "people.uwm.edu": [17379], "startlab.sk": [15477], "*.flyingmeat.com": [5944], "adk.to": [2024], "willleathergoods.com": [18403], "krasnogorsk.tpprf.ru": [22260], "*.gsspcln.jp": [6973], "*.cyberghostvpn.com": [3952], "achinsk.europaplus.ru": [20034], "we-go.fr": [2024], "mongodb.org": [10592], "missinglinkelectronics.com": [10492], "www.onthe.io": [11926], "*.qwobl.net": [1379], "maxserv.com": [10103], "patsiprod.upr.edu": [17087], "vysu.al": [2024], "www.appiehein.com": [1147], "cigar.to": [2024], "bdx.me": [2024], "routertips.video.qq.com": [13329], "discuss.tonicdev.com": [22233], "content.solutions.zalando.com": [18877], "a-d-a.tv": [2024], "atlas.web.cern.ch": [2588], "t5c.co": [2024], "ktk.bme.hu": [1556], "wandsworth.greenparty.org.uk": [6908], "help.just-eat.co.uk": [20671], "api.steampowered.com": [15516], "www.unian.ua": [22369], "smk.sachsen.de": [14279], "green-wood.com": [6898], "magadan.sledcom.ru": [21858], "davidtisch.com": [4213], "kiks.auto.ru": [19276], "sperry.co": [2024], "go.gazlee.com": [2024], "japh.co": [2024], "alum.pw": [2024], "l.jacob.io": [2024], "adygeia.kavkaz-uzel.ru": [20694], "nzwooden.toys": [2024], "www.axelarnbak.nl": [1496], "argos.upf.edu": [17471], "lists.secondlife.com": [14527], "www.clinicalkey.com": [3267], "s.hookd.in": [2024], "*.parsely.com": [12447], "biosciences.stanford.edu": [15447], "chetharrison.jsbin.com": [20659], "www.soundonsight.org": [15230], "teruel.stanford.edu": [15448], "kf5.com": [20706], "fb.mobiistar.vn": [2024], "userimages.static.zgncdn.com": [18955], "www.sweb.ru": [15277], "pixel.alexametrics.com": [843], "*.strongloop.com": [15599], "static.pay.xiaomi.com": [18662], "www.davpack.co.uk": [4222], "secure.plymouth.gov.uk": [21442], "cottagesdirect.co.uk": [18579], "meck.co": [2024], "api.curseforge.com": [3927], "shop.m.taobao.com": [16015], "secureus.samsung.com": [14326], "patria.rtvs.sk": [13536], "k.anv.as": [2024], "nasledie.khabkrai.ru": [20709], "www.ooyala.com": [11936], "brukar.difi.no": [4452], "lhc.web.cern.ch": [2588], "st.aastocks.com": [19037], "isc1.sans.org": [14128], "raspbian.org": [13630], "www.tuc.org.uk": [22304], "g3.ykimg.com": [22681], "jart.me": [2024], "*.joomlart.com": [8640], "exchanges.state.gov": [17146], "a.false.guru": [2024], "thepiratebay.uk.net": [22176], "meet.ntv.ru": [21197], "bwilk.co": [2024], "irish-country-cottages.co.uk": [18579], "www.caimao.com": [2734], "www.warosu.org": [18078], "kyivstar.ua": [9067], "gitbook.io": [6656], "game.co.uk": [6395], "www.textmechanic.com": [22133], "www.sfn.org": [15144], "flipca.us": [2024], "www3.adplan-ds.com": [326], "www.redhat.com": [13735], "offon.link": [2024], "www.ambx.com": [968], "my.lanet.ua": [20780], "coma.uned.es": [17248], "matc.at": [2024], "*.elitecastingnetwork.com": [5160], "www.sta.sh": [15422], "cws.link": [2024], "cryptostorm.is": [3881], "new.qiwi.com": [13352], "boldt.in": [2024], "metamap.nlm.nih.gov": [11090], "video23.0xdb.org": [10], "dnll.us": [2024], "www.reservation-desk.com": [13860], "bresl.in": [2024], "witness.theguardian.com": [16364], "campusship.ups.com": [17088], "ajf.io": [2024], "cheapssls.com": [3046], "nrdd.co": [2024], "www.silentsparks.com": [21827], "filmpub.atlas.cz": [1346], "resistsurveillance.org": [13866], "profile.weather.com": [18129], "kalbookings.kirklees.gov.uk": [8929], "btpnk.org": [2024], "popa.ca": [2024], "ibay.ga": [2024], "l.168.25u.com": [2024], "affiliate.niteflirt.com": [11464], "int.erl.ink": [2024], "inc.com": [8045, 8046], "orderstatus.earthlink.net": [4997], "b.piju.es": [2024], "s.tygr.ws": [2024], "www.ctools.umich.edu": [17354], "go.brutsch.in": [2024], "www.w3counter.com": [17981], "www.brabysads.com": [2281], "gettyimages.ae": [6604], "set.tidaltv.com": [16507], "www.wcfia.harvard.edu": [7211], "sprofs.com": [2024], "go.karcis.club": [2024], "zhora.co": [2024], "i2.code.msdn.microsoft.com": [10396], "svn.osgeo.org": [11707], "2.smugen.net": [2024], "elv.tn": [2024], "bugs.linux-mips.org": [9428], "url.jucru.com": [2024], "www.gatag.it": [14277], "cursos.ecommercebrasil.com.br": [4877], "shopperapproved.com": [14788], "cdn.openuni.io": [12084], "*.cirrusmedia.com.au": [3161], "b.keith.ae": [2024], "www.kinox.sg": [20720], "www.wald0.com": [22519], "gabriel.fca.org.uk": [5547], "im5.kommersant.ru": [20746], "cdn.cp.ligatus.com": [9356], "jhupbooks.press.jhu.edu": [16370], "audience.tapad.com": [16017], "search-xp.com": [2024], "cinc.us": [2024], "swty.pe": [2024], "movian.tv": [10673], "mpuls-s-bewerbung-demo.intevation.de": [8293], "acceptonline.leeds.ac.uk": [17403], "sto.ly": [2024], "pda.drweb.com": [4776], "www.waffles.fm": [18039], "dpd.co.uk": [19891], "tetu.com": [16221], "l.kolja.it": [2024], "www.mbank.pl": [9733], "vp1-voiceportal.megapath.com": [10240], "subdu.st": [2024], "branch.com": [2294], "static-mods-curse.cursecdn.com": [3927], "digilinux.ru": [4466], "hi.ala.bs": [2024], "www.recordedbooks.com": [21609], "inq.ph": [2024], "www.engineeringforchange.org": [5257], "ox-d.overdrive.com": [12192], "m.eat.ch": [4860], "sekretnye-materialy-shou-biza.friday.ru": [20175], "10dollar.ca": [21], "jobs.telegraph.co.uk": [16149], "kabelkiosk.de": [8776], "asiabsdcon.org": [1281], "engrave.co": [2024], "ratanagiri.org.uk": [13632], "img5.picload.org": [12693], "www.yed24hr.com": [18758], "www.chiphell.com": [3091], "link.bencao.it": [2024], "ouifm.fr": [12171], "www.heartland.ecsi.net": [4873], "www.youtube.co.id": [18800], "makershed.com": [9923], "sstatic.net": [15424], "jarosz.stanford.edu": [15449], "job.roblox.com": [13980], "jumpinformatiqueportal.axosoft.com": [1504], "www.youtube.co.in": [18800], "okligapayments.streamamg.com": [22006], "www.simplegiver.com": [10558], "www.rostov.press": [21676], "www.mymediamagnet.com": [10854], "hlat.us": [7113], "api.ookla.com": [11931], "leger.migros.ch": [10417], "8joycasino.com": [20654], "privacytool.org": [13138], "www.lis.illinois.edu": [17346], "sso.cc.stonybrook.edu": [15548], "jottit.com": [8651], "verisigninc.com": [17712], "treasurydirect.gov": [16779], "brown.edu": [2384], "p.fr33tux.org": [6070], "static.manutan.fr": [9974], "krakenbenchmark.mozilla.org": [10691], "www.quickhash.com": [13410], "ripoffreport.com": [13954], "southandvale.objective.co.uk": [21225], "walter.difi.no": [4452], "t.takanashi.net": [2024], "monitor.econda-monitor.de": [5049], "vinyledit.co": [2024], "www.stop-snoring-mouthpiece.org": [15549], "tplux.co": [2024], "admissions.calpoly.edu": [2743], "www.sanwork.com": [14357], "fdy.co": [2024], "fbi.gov": [5698], "path-follower.com": [12484], "www.pbwebdev.com": [12243], "*.westjet.com": [18300], "static.apps.welt.de": [18290], "etproxy.com": [5516], "freesnowden.is": [6126], "www.gblwebcen.com": [20216], "www.aldi-sued.de": [357], "www.aylesburyvaledc.gov.uk": [19291], "nine.buildbot.net": [19469], "fc.psbank.ru": [13231], "sry.wtf": [2024], "www.yify-torrent.org": [18707], "ffc9a888-0499-6dbb-55ef-b64c21983342-rum.cdnvideo.ru": [19536], "www.ifc.org": [8257], "p5.raasnet.com": [13716], "zap2it.com": [18886], "hu.libreoffice.org": [9327], "www.hamburg.de": [7169], "blog.activision.com": [556], "cgit.collabora.co.uk": [3418], "documentation.mailgun.com": [9898], "www.ops.ietf.org": [7725], "acmehou.se": [2024], "www.247exchange.com": [105], "*.rdoproject.org": [13467], "dyankov.eu": [4812], "diln.gr": [2024], "ld-2.itunes.apple.com": [1151], "www.flossmanuals.net": [5567], "wpx.ne.jp": [18559], "www.weather.yandex.com.tr": [18740], "my.supermedia.com": [15680], "www.protectedtext.com": [13212], "pxob.me": [2024], "survs.com": [15727], "s.gomu.jp": [2024], "soulmates.guardian.co.uk": [6982], "ttzj.me": [2024], "autodiscover.aacqa.gov.au": [276], "kenexapods.com": [8863], "syn-work.oss.aliyuncs.com": [19143], "registration.bernina.com": [1827], "worldandm.com": [2024], "mail.rambler.su": [13601], "es.support.t-mobile.com": [15837], "i7.3conline.com": [169], "money.udn.com": [17020], "express.navalny.com": [11148], "www.postgresql.eu": [13021], "thelocal.no": [22169], "gbe.oxfordjournals.org": [12222], "norden.org": [11509], "www.cyberleninka.ru": [3963], "testmy.unet.by": [22367], "apobox.com": [393], "www.ffdiaporama.tuxfamily.org": [22319], "ksb2h.com": [2024], "www.cheapies.nz": [19566], "edocs.i4wifi.cz": [20459], "mapzen.com": [9987], "myfreecams.com": [21065], "www.resurs.se": [13876], "ncdn.lezhin.com": [20822], "www.kanotix.de": [8797], "gddc.me": [2024], "lucina.net": [9656], "pbly.co": [2024], "cltvt.re": [2024], "hotvideo.karusel-tv.ru": [20690], "nxt.dj": [2024], "provolib.com": [2024], "content-public-dc2.govdelivery.com": [6845], "homeliv.in": [2024], "www.blockstream.com": [2114], "www.performer.england.nhs.uk": [10953], "nzxt.co": [2024], "www.skeptic.org.uk": [14968], "www.linksmail.de": [9396], "451unavailable.org": [185], "www.companiesintheuk.co.uk": [3510], "myah.xyz": [2024], "bonstore.co": [2024], "bugs.openmpt.org": [11987], "dmca.com": [4035], "explstl.us": [2024], "trkabt.com": [2024], "api.nspublieksprijs.nl": [21194], "dpct.it": [2024], "mtchef.us": [2024], "tpb.run": [16306], "aciv.us": [2024], "m.tn.imhd.sk": [8004], "static5.readyflowers.com": [13680], "cin.ci": [2024], "seatp.it": [2024], "smcc.bz": [2024], "help.elsevier.com": [5177], "www.tradepub.com": [16718], "sbiforsme.sbi.co.in": [14140], "*.meebo.com": [10219], "assets3.getsatisfaction.com": [6601], "crtv.st": [2024], "ptp-admin.upyun.com": [17492], "www.proxy.org": [13224], "video.yandex.by": [18739], "brry.me": [2024], "6abc.cm": [2024], "archiveprints.thetimes.co.uk": [16538], "blog.douban.com": [4701], "mppne.ws": [2024], "static.thinksteroids.com": [9750], "www3.truecorp.co.th": [22297], "mail4.pipni.cz": [12287], "huilang.jd.com": [8436], "mightyupload.com": [10412], "chuxiangyuan.jd.com": [8434], "msp.im": [2024], "bandicam.cn": [1664], "msp.is": [2024], "apps.ubuntu.com": [17183], "usradio.xyz": [2024], "josv.me": [2024], "austin.to": [2024], "jayg.us": [2024], "snfn.co": [2024], "huinan.jd.com": [8434], "www.mulle-kybernetik.com": [21047], "openhub.net": [12045], "blur.by": [2024], "pb.sogou.com": [15168], "profil.topnet.cz": [15910], "cloudafrica.net": [3280], "proxpn.com": [21504], "thmb.inkfrog.com": [8149], "dikit.cf": [2024], "docs.hyper.sh": [7649], "adimages.adnet.pro": [19083], "bans.wcfan.de": [18112], "www.stationlrowingclub.com": [15499], "*.woot.com": [18514], "wirebird.co": [2024], "jcle.oxfordjournals.org": [12222], "smallingerland.nl": [11172], "thchang.link": [2024], "files.play-asia.com": [12828], "ask.threatmetrix.com": [16467], "qc.st": [2024], "joy.as": [2024], "2013.eurobsdcon.org": [5393], "www.mailnull.com": [9895], "undergrad.usc.edu": [17366], "bash.gg": [2024], "moe.vg": [2024], "p2.ssl.qhimg.com": [13347], "public.medicaid.gov": [20952], "www.cardiov.ox.ac.uk": [17359], "video40.0xdb.org": [10], "video18.0xdb.org": [10], "www.courtsofnz.govt.nz": [3719], "i.ree.me": [2024], "easycottages.com": [18579], "assistive.usablenet.com": [17505], "scache.microsoft.com": [10396], "beget.ru": [1782], "wargaming.net": [18074], "arrl.org": [402], "stat.inetvl.ru": [20525], "mirrors.nic.cz": [11418], "st0.unitedplatform.com": [17309], "uxfor.us": [2024], "phiun.it": [2024], "www.mdh.se": [9743], "id.vedomosti.ru": [22432], "freebaselibs.com": [6134], "hammerlane.co": [2024], "beardba.se": [2024], "cawo.kh.hu": [8739], "dental.washington.edu": [17376], "bao.1688.com": [51], "www.userreport.com": [17521], "comcenter.netcologne.de": [11226], "www.opensrs.com": [16887], "scrp.rs": [2024], "sk-nic.sk": [14960], "webapps.alarabiya.net": [19131], "domainmarket.com": [4647], "cuku.tk": [2024], "on.limmidy.com": [2024], "www.zoner.fi": [18995], "jpubhealth.oxfordjournals.org": [12222], "www.adultfriendfinder.com": [696], "eda.sakh.com": [21719], "www.postimage.io": [13024], "200d554e-a2a1-3ccc-1d99-fb0721d318c7-rum.cdnvideo.ru": [19536], "ks.church": [2024], "giger.te-st.ru": [22103], "olasagasti.info": [11818], "dgzct.nl": [2024], "whyblockme.info": [3536], "kipp.la": [2024], "wwf.or.jp": [18029], "www.scubbly.com": [14489], "shrtn.me": [2024], "vabali.de": [17612], "c5.hitravel.xyz": [2024], "hitfile.net": [20380], "hub2.lfg.com": [20823], "hol.bid": [2024], "portsmouth.gov.uk": [21467], "occasion.m-budget.migros.ch": [10417], "bbcdn-bbnaut.ibillboard.com": [7683], "mb2014.es": [2024], "cdc.dwd.de": [19911], "www.dccomics.com": [4006], "account.sydsvenskan.se": [15776], "bitcoinity.org": [2009], "banking.migrosbank.ch": [10414], "dscvrmt.com": [2024], "gn.tl": [2024], "blip.sh": [2024], "naostri.se": [2024], "google.flightradar24.com": [20119], "be.norton.com": [11545], "upload.calameo.com": [2748], "presentation.rsl.ru": [21686], "customercenter2.dynamic1001.eu": [19914], "www2.spongecell.com": [21940], "openhost.net.nz": [12067], "www.4plebs.org": [200], "biztosnetwsact.kh.hu": [8739], "blogs.windows.com": [18432], "test.gnupg.org": [6744], "sprout.im": [2024], "getgrok.in": [2024], "*.heteml.jp": [7375], "www.dailystar.com.lb": [19752], "www.d2jsp.com": [3989], "r.asdonline.com": [2024], "cowehne.tk": [2024], "1mm.ist": [2024], "a1276.ztat.net": [18877], "t.ipag.org.uk": [2024], "zip.ch": [18972], "www.chime.in": [3083], "tv.sohu.com": [15171], "www.aioe.org": [787], "foresight.org": [6006], "tmblog.co": [2024], "knightlab.com": [8958], "ws.mytemp.email": [10834], "justmoon.net": [8716], "naeema.me": [2024], "sar.ac": [2024], "liwenhaosuper.com": [9532], "7pipe.me": [2024], "cohor.se": [2024], "digcoin.com": [4455], "owp.li": [2024], "warframe.com": [18073], "www.hertzarabic.com": [7360], "gidapp.com": [6310], "documentation.red-gate.com": [13718], "nhaap.ornl.gov": [11730], "www.mcgrhill-warez.com": [10134], "cdn-staging.demandstudios.com": [4326], "funkiej.com": [2024], "art.georgetown.edu": [6531], "mwconf.com": [2024], "www.sport.bt.com": [1578], "www.freakattack.com": [5583], "discoveryplus.popin.cc": [12954], "mycj.co": [2024], "8of12.com": [2024], "flt10.net": [2024], "buzz.do": [2024], "fak.at": [2024], "primorsky.sledcom.ru": [21858], "www.linuxmonk.ch": [9447], "www.kabelmail.de": [8775], "www.wolframcloud.com": [18489], "libdlo.freedesktop.org": [6102], "www.ehospice.com": [5105], "manifesto.kde.org": [8735], "company.rbc.ua": [21592], "s.thismo.com": [2024], "www.ccrf.ox.ac.uk": [17359], "vanaqua.org": [17637], "chefjob.co": [2024], "linkna.ga": [2024], "www.peppermintos.com": [21386], "lngspn.com": [2024], "msbestbuys.com": [2024], "bolshoykamen.startsmile.ru": [21980], "www.publicknowledge.org": [13251], "dkdt.me": [2024], "fonts.iu.edu": [8069], "www.canadahelps.org": [2806], "www.bcgolf.com": [1532], "spicebox.co.jp": [15337], "homeoffice.gov.uk": [20399], "purifi.co": [2024], "www.obitalk.com": [21224], "ftp.delfi.lv": [19800], "fr.chaturbate.com": [3040], "goaldet.com": [6783], "montclair.starfishsolutions.com": [21977], "t.ihmc.us": [2024], "s.map.qq.com": [13329], "s60.cnzz.com": [3328], "en.gamigo.com": [6426], "ssl.google-analytics.com": [6823], "*.shopstyle.de": [14781], "www.roddis.net": [13998], "lab.getapp.com": [20238], "www-misc.chpc.utah.edu": [17374], "donate.cartercenter.org": [2877], "support.tribepad.com": [22285], "tags-eu.tiqcdn.com": [16060], "7-t.imgbox.com": [7997], "m.kikisso.com": [20717], "teams.surfconext.nl": [14261], "mapep.inl.gov": [20537], "kyani.net": [9063], "novellaqalive.mheducation.com": [20975], "www.bezopasnik.org": [19363], "s2.qhimg.com": [13347], "sharefor.eu": [2024], "status.theverge.com": [16286], "www.swinburne.edu.au": [15755], "uajobs.hr.uillinois.edu": [17034], "my.gmocloud.us": [6324], "j.crid.land": [2024], "mapit.co": [2024], "upessencia.ml": [2024], "community.ally.com": [913], "strob.es": [2024], "docs.rtems.org": [13532], "webmail.activision.com": [556], "www.hatatorium.com": [7228], "l.rusch.sg": [2024], "sbi.co.in": [14140], "eventspace.genius.com": [20226], "myaccount.earthlink.net": [4997], "pega.com": [12560], "podcast.cpanel.net": [2667], "www.classy.org": [19606], "wattpad.com": [18103], "primetime.unrealitytv.co.uk": [17451], "zzk.cnblogs.com": [19631], "jabber.ietf.org": [7725], "can01.anibis.ch": [19200], "vahg.us": [2024], "web.datemas.de": [4207], "ptne.ws": [2024], "bhiab.se": [1865], "vmm.cern.ch": [2588], "cenov.us": [2024], "getsupport.apple.com": [1151], "chelloo.nu": [2024], "*.greenvilleonline.com": [6922], "www.hee.gov.hk": [20363], "sl-div.web.cern.ch": [2588], "sgc.static.rtbf.be": [14063], "www.scotborders.gov.uk": [14456], "caadence.bme.hu": [1556], "secure.remotelyanywhere.com": [13824], "jointheherd.little.my": [9487], "likem.ag": [2024], "hebook.engineering.osu.edu": [11797], "windhoek.usembassy.gov": [22406], "nuitnoire.mk2.com": [9769], "sendgrid.com": [14638], "knov.io": [2024], "baseball.clubs.bucknell.edu": [2406], "www3.tools.ietf.org": [7725], "winmskhost1.ispserver.com": [20588], "dist.subgraph.com": [15623], "www.tomlee.wtf": [16616], "mauritius.usembassy.gov": [22406], "*.manta.com": [9969], "vau.la": [2024], "en.boardgamearena.com": [2182], "your-freedom.net": [18812], "encrypted.google.com": [6818], "bklynlib.org": [2024], "www.nwf.org": [11126], "fightcopyrighttrolls.com": [20088], "sso.seagate.com": [14499], "registration.tricolor.tv": [22287], "dragonflydigest.com": [4735], "imgry.net": [2024], "*.ggpht.com": [6828], "joa.ag": [2024], "xsport.ua": [22658], "*.crittercism.com": [3803], "f.kumapon.jp": [9049], "www.ch-edoc-passantrag.admin.ch": [22061], "dealerservices.autotrader.co.uk": [19280], "www.hanford.gov": [7182], "rowskey.com": [2024], "chakraos.org": [2990], "i.ronnylam.nl": [2024], "32s.vn": [2024], "tavrich.dengisend.ru": [4344], "backup.com": [11546], "www.sjpl.org": [21844], "tizen.org": [16580], "download.xdk.intel.com": [8211], "link.effdee.com": [2024], "www.orionmagazine.org": [12143], "kvnhg.cc.vg": [2024], "bam.gd": [2024], "cjrlit.com": [2024], "login.variety.com": [17656], "www.news9daily.org": [11365], "www.lightthenight.org": [9359], "domainskate.com": [4650], "video39.0xdb.org": [10], "thebaffler.com": [16325], "igam.es": [2024], "y.ninki123.com": [2024], "go.matbaq.com": [2024], "*.hetnet.nl": [8761], "silverflint.com": [14864], "smsk.io": [2024], "yiduguan.jd.com": [8434], "piwik.vandyke.com": [17638], "nnip.co": [2024], "public.bizo.com": [2052], "kanyebay.co.uk": [22177], "*.suppliesfordreams.org": [15701], "www-coupp.fnal.gov": [5741], "tk.de": [16102], "*.ads.neudesicmediagroup.com": [11321], "yao.io": [2024], "askfredhow.com": [2024], "bity.pw": [2024], "sensepost.com": [14647], "pavelun.gr": [2024], "a.catgirlsare.sexy": [2912], "samara.rt.ru": [13529], "movie4k.org": [10675], "360.play-asia.com": [12828], "www.g5.gov": [6278], "antispam-ev.de": [1104], "www.scambs.gov.uk": [21739], "businessaffairs.stanford.edu": [15448], "tnsselfrecruitment.tnsglobal.com": [15906], "zags.government-nnov.ru": [20295], "opiceb.lu": [2024], "rlin.tk": [2024], "go.mutsol.com": [2024], "netdata2.firehol.org": [20107], "www.ihgplc.com": [7742], "p0.meituan.net": [10249], "job.g4s.com": [20195], "support.lis.illinois.edu": [17346], "uhrady.rtvs.sk": [13536], "lapl.link": [2024], "a3li.li": [268], "*.meritrustcu.org": [10305], "www.cyberfret.com": [3960], "ffbc.link": [2024], "capousd.illuminateed.com": [20494], "drive.google.com": [6818], "ylor.me": [2024], "redbullmobile.com.au": [13730], "cstatic.weborama.fr": [18231], "travel.tkbbank.ru": [16583], "4a.io": [2024], "fuckyoudoug.xyz": [2024], "q.qlogo.cn": [13355], "*.umonitor.com": [17056], "www.requestpolicy.com": [13850], "wsshd.com": [2024], "wp.radioplayer.co.uk": [13581], "lists.openbsd.org": [11955], "cashback.co.uk": [2891], "asj.oxfordjournals.org": [12222], "winzip.com": [18423, 18424], "www.floridalobbyist.gov": [20122], "uk.findlegalforms.com": [5822], "www.allunmanaged.com": [888], "imgt6.bdstatic.com": [19339], "www.projects.unbit.it": [17234], "3suisses.de": [176], "opengl.org": [11976], "radw.in": [2024], "mktplc.org": [2024], "spnk.co": [2024], "nic.ad.jp": [10958], "classic.fastmail.com": [5677], "luukku.com": [20895], "*.itsfogo.com": [7737], "stec-t13.xhcdn.com": [18605], "secure.friendfinder.com": [6192], "images.minalyzer.com": [10441], "avit.al": [2024], "tech.mozfr.org": [21030], "www.elfa.se": [5153], "*.ed2go.com": [2946], "instat.com": [8030], "dwnp.net": [2024], "appbur.st": [2024], "fp.intego.com": [8202], "rfds.co": [2024], "ec-cdn-assets.stitcher.com": [15544], "sakha.rt.ru": [13529], "anchor.net.au": [19196], "blog.symbolab.com": [15781], "schneierfacts.com": [21744], "buxforyou.cz": [2024], "rsvp.com.au": [13526], "hedl.in": [2024], "wfall.co": [2024], "ashle.yt": [2024], "www.skyscanner.jp": [15006], "free.1688.com": [51], "connect.squareup.com": [15396], "secure.paytoll.eu": [12521], "logo.works": [2024], "a2zisus.com": [2024], "sugarball.duapp.com": [19902], "votervoice.net": [17936], "agil.me": [2024], "www.ixwebhosting.com": [7880], "bthlp.com": [2024], "pkts.co": [2024], "gmx.ph": [6330], "local.amazon.co.uk": [19170], "www.defacto2.net": [19799], "murmansk.rt.ru": [13529], "*.jad-journal.com": [8657], "thkk.nl": [2024], "netn.im": [2024], "eqi.md": [2024], "vary.idnes.cz": [20483], "fr.airbnb.be": [793], "s9.wlresources.com": [22604], "www.esiss.ac.uk": [4953], "confettik.it": [2024], "review.opencontrail.org": [11966], "imagesrel.hertz.com": [7371], "cruisersforum.com": [3829], "ssl.connextra.com": [3588], "*.kotaku.com": [9004], "seatgeek.com": [14514], "theopen.golf.hsbc.com": [7090], "ocio.osu.edu": [11797], "mailgun.com": [9898], "tmms.co": [2024], "desv.dict.cc": [4442], "g.microsoftonline.com": [10399], "api.deepin.org": [4287], "messerfinancial.com": [10317], "uslaw.link": [17530], "dftest3.depressionforums.org": [4361], "visaeurope.si": [17847], "kiss.ly": [2024], "www.aspectsecurity.com": [1295], "socmap.nso.ru": [21192], "democracy.eastsussex.gov.uk": [19938], "ondemandui.webtrends.com": [18264], "committeeadmin.lancaster.gov.uk": [20778], "fans.messi.ga": [2024], "tpb.unlockme.online": [22259], "elk.tocco.ch": [16600], "tr.support.tomtom.com": [16615], "open.bufferapp.com": [2419], "ufa.biglion.ru": [19375], "bookafl.at": [2024], "www.seo.com": [14161], "st.diecrew.ml": [2024], "ubuntu-nl.org": [17181], "*.partypoker.com": [12454], "awv.me": [2024], "mail.rkn.gov.ru": [13971], "rio.upo.es": [17479], "fwrd.xyz": [2024], "s6.pstatp.com": [16680], "domeinenrz.nl": [11172], "pl.aliexpress.com": [854], "*.walk.sc": [18284], "www.vvztahy.vutbr.cz": [17609], "aftz.in": [2024], "static.pubmed.gov": [13242], "bluewin.ch": [2173], "d1.biz.itc.cn": [8401], "www.mims.com.sg": [9756], "zoom.dinglisch.net": [19841], "simplemachines.org": [21830], "www.ontology.co": [11927], "poodletest.com": [12308], "*.eukhosting.net": [4972], "beta.umeng.com": [22363], "ccwed.me": [2024], "*.redbullmediahouse.com": [13728], "cdn-search-gateway.appadvice.com": [1143], "4.darkroom.shortlist.com": [14795], "webmail.seven-sky.net": [21792], "proms.ly": [2024], "parnasparty.ru": [12440], "service.xs4all.nl": [18625], "link.ou.edu": [2024], "www.sstic.org": [14248], "szc.tc": [2024], "maps.hants.gov.uk": [7185], "www-935.ibm.com": [7679], "jobs.healthnet.com": [20360], "www.craigmurray.org.uk": [19713], "*.lohud.com": [9575], "nicereply.com": [11426], "filtr.es": [2024], "www.utl.pt": [16098], "netgear.com": [11273], "motor.sport-express.ru": [21941], "dobro.mail.ru": [9891], "apg1.us": [2024], "tox.is": [2024], "www.mountspace.com": [10661], "cdn.makeagif.com": [20912], "kronshtadt.tpprf.ru": [22260], "www.ks.uiuc.edu": [17030], "files.srb2.org": [14231], "vbtt.it": [2024], "asset-0.soupcdn.com": [15236], "checkout.looppay.com": [9615], "www.ourlocality.org": [12177], "news.now.com": [11572], "lyft.it": [2024], "sww.ipleak.net": [20571], "www.sh.ch": [22061], "sysdev.microsoft.com": [10396], "secure-www.6pm.com": [221], "okopnik.com": [11812], "dehr.dict.cc": [4442], "*.consumerreportscdn.org": [3601], "firstvds.ru": [5855], "try.spotlite.io": [2024], "s.ngs.ru": [21134], "www.pep.foundation": [21385], "grupy-dyskusyjne.money.pl": [10585], "www.gemcutter.org": [14076], "tittygram.com": [16578], "tgf.ngo": [2024], "wearebig.org": [2024], "www.asdagoodliving.co.uk": [19249], "mail.x5.ru": [18590], "sby.digital": [2024], "lori.gr": [2024], "btac.es": [2024], "www.socialblade.com": [15136], "clm.globalcapacity.com": [6704], "cushe.us": [2024], "media0.giphy.com": [6646], "unsw.edu.au": [17076], "womenslacrosse.clubs.bucknell.edu": [2406], "cr2c.stanford.edu": [15448], "ebid.net": [19922], "www.freedom-ip.com": [6140], "www.cer.org.uk": [19550], "donate.perlfoundation.org": [12605], "bunniefoo.com": [2454], "lohud.com": [9575], "main.makeuseoflimited.netdna-cdn.com": [9919], "www.git-scm.com": [6654], "deliveredsmartly.courierpost.co.nz": [3714], "leaseholdershandbook.oxford.gov.uk": [21324], "minorcort.es": [2024], "thepiratebay.ac": [22175], "www.efa.org.au": [5142], "r.yunlou.net": [2024], "tla.cc": [2024], "jabe.co": [2024], "fex.rus.uni-stuttgart.de": [17260], "aciw.co": [2024], "6eg.us": [2024], "yabs.yandex.kz": [18743], "wiki.aircrack-ng.org": [794], "lumendatabase.org": [9670], "www.zcarc.com": [7371], "grad.georgetown.edu": [6531], "minobr.49gov.ru": [187], "rjnr.co": [2024], "gotohotel.co.uk": [2024], "washingtonstate.worldcat.org": [18536], "de.isidewith.com": [20466], "www.law.washington.edu": [17376], "piratewiki.info": [22174], "cbdreader.christianbook.com": [3118], "documentation.onesignal.com": [11882], "fsd.illuminateed.com": [20494], "www.jumpshare.com": [20666], "img.airy.co": [2024], "oldham.spydus.co.uk": [21952], "covet.pro": [2024], "raps.wustl.edu": [18089], "to.optune.me": [2024], "cuidadodesalud.gov": [3907], "medicina.unizar.es": [17441], "g-jon.es": [2024], "user.infolink.ru": [20530], "coolkeywest.com": [3644], "arena.westsussex.gov.uk": [18305], "dicht.nlnetlabs.nl": [10980], "blog.zdf.de": [22709], "dl.tdcat.com": [2024], "www.mybenefitscalwin.org": [10791], "www.visahq.com": [17849], "beta.southlanarkshire.gov.uk": [15258], "tursha.info": [2024], "tl63.co.uk": [16584], "fs.tl": [2024], "verenga.org": [2024], "www.ookla.com": [11931], "tva4.sinaimg.cn": [14910], "webmail.fe.ru": [20078], "partner.salenames.ru": [14309], "moneta.trove.com": [16837], "cache.smithmonitoring.com": [15071], "loro.is": [2024], "gmsoap.co": [2024], "subscribe.nypost.com": [21213], "*.janraincapture.com": [8519], "newsinfo1.ml": [2024], "rhrp.de": [2024], "sms.cam.ac.uk": [17332], "hsbc.co.in": [20419], "zoomeye.org": [19002], "aclukansas.org": [299], "alumndb.slu.se": [14195], "medikforum.ru": [20954], "microb.io": [2024], "not.t-t.be": [2024], "rpw.sh": [14057], "de.aegeanair.com": [6896], "y.ziri.fr": [2024], "tsn.ua": [22301], "pp-shop.vodafone.co.uk": [17900], "www.ebenefits.va.gov": [17100], "*.bible.com": [18801], "tuki.zoner.fi": [18995], "anvar.ga": [2024], "compass.fnal.gov": [5741], "ssl.brucon.org": [2394], "bo4.me": [2024], "www.coremetrics.com": [3665], "www.malls.ru": [20915], "eromang.zataz.com": [18898, 18899], "mezco.toys": [2024], "amur.tpprf.ru": [22260], "china.mims.com": [9756], "av-j.com": [2024], "www.trv-science.ru": [22298], "9gag.com": [252], "s.daytraders.jp": [2024], "seznam.cz": [14705], "asset-d.soupcdn.com": [15236], "www.suntech.cz": [22034], "on.leonovel.pro": [2024], "miami.aclufl.org": [297], "addictionhelpchat.com": [629], "mysku.ru": [21069], "amazontrust.com": [964], "shlem.us": [2024], "wr2k.de": [2024], "www.visibletechnologies.com": [17858], "i-cdn.openx.com": [12028], "s.zah.me": [2024], "*.schoolloop.com": [14426], "translationproject.org": [16748], "gotk.co": [2024], "secure.sky.com": [14989], "www.seacloud.cc": [14496], "webxakep.net": [18194], "fshtnkcr.tv": [2024], "innsyn.feide.no": [5729], "www.folksam.se": [5966], "*.usni.org": [17126], "actf.lu": [2024], "www.visiblebody.com": [17859], "www.weltbild.ch": [18291], "maisondelagreve.boum.org": [2261], "allplayers.com": [881], "go.bostonglobemedia.com": [2254], "tickt.club": [2024], "www.oalj.dol.gov": [19867], "demandb.se": [2024], "altc.cc": [2024], "www.swisspost.com": [12996], "yaostrov.ru": [22666], "crainsnewyork.com": [3756], "static.garagegames.com": [6438], "bmo.re": [2024], "ddlvalley.rocks": [19787], "lvmyd.rs": [2024], "usrow.us": [2024], "heroeswm.cdnvideo.ru": [19536], "minusinsk.tpprf.ru": [22260], "us1.siteimprove.com": [14947], "demo.hitbtc.com": [7424], "backend.alumnenet.dtu.dk": [16096], "pick.mx": [2024], "onetoone.apple.com": [1151], "l.nirm.it": [2024], "lod.springer.com": [21948], "lite.socialcube.net": [15137], "dlxcr.tv": [2024], "rvrb.it": [2024], "ceronne.eu": [2024], "us.icecat.biz": [7912], "minigames.mail.ru": [9891], "hyperboria.net": [7651], "gure.li": [2024], "www.cdmp.allianz.com": [19151], "exporter.alibaba.com": [857], "veintreatment.weillcornell.org": [22557], "img4.wlresources.com": [22604], "ublearns.buffalo.edu": [17382], "actives.youku.com": [18804], "www.imp.ulpgc.es": [17213], "www.radiox.ch": [13576], "developer.epa.gov": [4928], "www.bluegiga.com": [2162], "exch-eu.atdmt.com": [10393], "i6.c.dk": [2512], "images.contentreserve.com": [19673], "jubii.dk": [8673], "office365.microsoft.com": [10396], "checkdomain.de": [3053], "help.goodsie.com": [4923], "gsk.to": [2024], "developers.maxon.net": [10110], "piwik.1u1s.de": [90], "nov.europaplus.ru": [20034], "pin.lu": [2024], "hvst.es": [2024], "www.advantageseoservices.com": [703], "optimind.me": [2024], "tokyotoday.net": [2024], "jtekmusic.co": [2024], "status.pagerduty.com": [12361], "go.hiro-t.net": [2024], "sundancechannel.com": [15663], "s3.lbrcdn.net": [9189], "surveillancelaw.org": [15721], "amoena.fr": [1023], "*.eveonline.com": [4977, 20041], "www.coinimal.com": [3405], "www.247filmz.com": [106], "marshallapps.usc.edu": [17366], "pk9.otpbank.ru": [12165], "video.fosdem.org": [6046], "l.umboapp.com": [2024], "uchiyama.link": [2024], "www.evo73.ru": [20043], "businesslink.gov.uk": [2477], "www.braintreepayments.com": [2292], "www.tibetaction.net": [16484], "withsix.com": [18469], "freescorenation.com": [6107], "www.mvo.landesdaten.ble.de": [19406], "r24617935.sync.app.asana.com": [1265], "calcentral.berkeley.edu": [17329], "adultlearning.bristol.gov.uk": [19451], "maps.google.*": [6825], "igorr.tk": [2024], "m.cyberport.de": [3966], "www.goduke.com": [4792], "www.sohh.com": [14212], "hnl.me": [2024], "barnaul.biglion.ru": [19375], "careers.sky.com": [14989], "hdmovie.ml": [2024], "darktrace.jp": [19760], "myagen.se": [2024], "*.yottaa.net": [18792], "scph.at": [2024], "w.naukri.com": [2024], "step.tips": [2024], "metrics.librato.com": [9324], "ibank.rosbank.ru": [21671], "shepway-consult.objective.co.uk": [21225], "www.aartdevos.dk": [454], "jackrabbit.apache.org": [1118], "www.foursignposts.com": [20143], "l.baig.io": [2024], "media.office.co.uk": [11779], "bd.alibaba.com": [857], "hanwhatechwin.co.kr": [14333], "web.eloqua.com": [5171], "haritalar.yandex.com.tr": [18740], "snkr.fr": [2024], "lqttswr.readspeaker.com": [13670], "mike.kaply.com": [8805], "innmb.com": [2024], "help.boell.de": [2192], "opendata.49gov.ru": [187], "0xdb.org": [10], "www.activision.com": [556], "9oh2o.com": [2024], "znshd.tk": [2024], "estmatic.net": [2024], "www.insightcommunity.com": [5920], "s.qoly.jp": [2024], "timrul.es": [2024], "l.fwx.co": [2024], "svn.filezilla-project.org": [5782], "mlksplsh.co": [2024], "c1.thejournal.ie": [16299], "us1.effectivemeasure.net": [5096], "boards.gamefaqs.com": [20201], "enlnks.co": [2024], "handelsregister.de": [7176], "www.hwsw.hu": [7110], "www.uneddit.com": [17249], "cdn1.a1.net": [261], "peere.org": [12552], "delasocial.me": [2024], "curvatude.me": [2024], "djangoeurope.com": [4580], "spthumbnails.5min.com": [217], "tad90.com": [2024], "kimpluscraig.com": [8907], "osdir.com": [11706], "www.cloutoday.nl": [3276], "www.qconnewyork.com": [13323], "www.paris.uio.no": [17414], "b.stripecdn.com": [15595], "femsre.oxfordjournals.org": [12222], "doi.org": [4067], "www.dataprotection.ie": [4165], "wmcc.axonify.com": [1502], "*.infolinks.com": [8113], "linux-magazine.com": [9408], "ecybermission.ideascale.com": [20479], "helpouts.google.com": [6818], "groups.google.*": [6821], "znd.st": [2024], "production-website.snap-ci.com": [21878], "*.ganzestore.com": [6437], "elv8.co": [2024], "m60.digital": [2024], "webmail.gradwell.com": [6868], "videoarchiv.srf.ch": [21957], "content.foto.my.mail.ru": [9891], "bwna.me": [2024], "vag.life": [2024], "www.lplogin.com": [624], "citrix.unicef.org": [17069], "smyl.es": [14204], "buy.aia.ag": [2024], "1.razor.tv": [2024], "ngx.cc": [11415], "tmd.sa": [2024], "sso-prod1.cisco.com": [3165], "redwoodsinyosemite.com": [13760], "hstrs.co": [2024], "cache.boston.com": [2252], "www.talgov.com": [15988], "*.aoe.com": [375], "www.x10hosting.com": [18588], "kryptos.sh": [9032], "ebuyer.com": [5034], "teamg-a.com": [2024], "emplaw.co": [2024], "engineyard.com": [5255], "feedproxy.google.com": [6818], "*.frim.nl": [6199], "nland.ch": [2024], "bean.hn": [2024], "trauer.general-anzeiger-bonn.de": [6509], "mday.biz": [2024], "bild.maxdome.de": [10106], "c1.microsoft.com": [10396], "www.onboardkit.com": [11861], "static.ow.ly": [12208], "on.wlky.com": [2024], "passport.wmtransfer.com": [18173], "k-m.me": [2024], "abatsk.admtyumen.ru": [19082], "personaldemocracy.com": [12612], "snkk.co": [2024], "m-cards.utb.ru": [17538], "www.individual-villas.co.uk": [18579], "weeloy.co": [2024], "www.dolartoday.com": [4632], "dh2011.stanford.edu": [15448], "iopscience.iop.org": [8196], "mail.offline.ee": [11658], "cloudorado.com": [3310], "rprsnt.us": [2024], "www.postscapes.com": [13029], "ceban.ro": [2024], "culture.unian.net": [22369], "www.concrete5.org": [3552], "cdn.sonyentertainmentnetwork.com": [15219], "go.ras.space": [2024], "cub.am": [2024], "bagatoo.se": [1637], "media5.congstar-media.de": [3579], "www.anidex.moe": [1066], "tpbproxy.cc": [22174], "createanad.bostonglobemedia.com": [2254], "www.ebi.co.uk": [5414], "inder.us": [2024], "c9.io": [3279], "70.mvd.ru": [21055], "clk.whatech.com": [2024], "oriol.me": [2024], "litor.al": [2024], "hshq.us": [2024], "assets.post852.com": [12997], "samc.co": [2024], "fw.tmall.com": [22222], "pl.3.boardgamearena.com": [2182], "measuredvoice.com": [2837], "trendblog.deichmann.com": [4300], "player.twitch.tv": [16961], "hollywoodlife.com": [7465], "c1-blog.flirble.org": [16267], "holytransaction.com": [7472], "stacksocial.com": [15428], "spil.tv2.dk": [15946], "magnetsearch.org": [22174], "risparmiopostale.it": [13960], "cpo.st": [2024], "hypn.tc": [2024], "anciensite.refedd.org": [13471], "wiki.contribs.org": [3621], "ct0.addthis.com": [626], "res.cloudinary.com": [3306], "k.zucks.net": [22729], "light.as": [2024], "suppliercenter.walmart.com": [18059], "leap3.singlehop.com": [14914], "ioaw.re": [2024], "billing.globaltap.com": [6721], "plus.google.com": [6818], "alahora.mx": [2024], "xhamster.com": [18606], "www.subterraneangames.com": [15632], "imgs.pocketgamer.biz": [12880], "potins.co": [2024], "www.success.tid.gov.hk": [7069], "edamo.co": [2024], "gloans.co": [2024], "static.wildstar-online.com": [18394], "arh.europaplus.ru": [20034], "sn.mnstr.in": [2024], "www.n0where.org": [10900], "www.lushstories.com": [20892], "feedburner.com": [5720], "*.redcross.org.uk": [2360], "predplatne.dennikn.sk": [4349], "coursefinder.io": [3716], "bmcimmunol.biomedcentral.com": [1931], "www.n-aana.org": [11131], "coreix.net": [3671], "blog.ct.de": [7288], "*.nuggad.net": [11610], "go.iphonehk.cf": [2024], "www.ideasonboard.com": [7932], "rick.ml": [2024], "go.wevance.com": [2024], "arts.leeds.ac.uk": [17403], "c.cloud.tt": [2024], "jesee.co": [2024], "secure.extensis.com": [5513], "login.e.bibl.liu.se": [9097], "ww7.thomascook.com": [16450], "piraten-ufr.de": [12751], "regnum.ru": [13802], "extranet.hongkongairport.com": [20402], "group.iciciprulife.com": [7917], "community.platformio.org": [21439], "*.zkb.ch": [20683], "guardianproject.info": [6983], "www.catersnews.com": [2911], "www.zayo.com": [18901], "gardengrove.illuminateed.com": [20494], "cardiff.gov.uk": [19509], "vins.lemonde.fr": [9204], "randr.com.br": [2024], "e2.emediate.se": [5195], "avonmaquiagem.com.br": [1480], "gko.as": [2024], "common.ofo.so": [11794], "jni.me": [2024], "tboomi.com": [2024], "sumal.ly": [2024], "dmar.co": [2024], "jaim.at": [8504], "www.nicereply.com": [11426], "www.film.ru": [20094], "buzzurl.jp.eimg.jp": [2496], "videodroid.org": [17780], "verdadmedia.com": [17707], "ler.amazon.com.br": [19172], "b28.cdnvideo.ru": [19536], "wwrk.tk": [2024], "hertz.com": [7371], "community.bluejeans.com": [2153], "92.mvd.ru": [21055], "dzone.com": [4090], "l.gamified.uk": [2024], "*.mozdevgroup.com": [10688], "www.hostpointpartner.ch": [7549], "chs.us": [3131], "aacijournal.biomedcentral.com": [1931], "redkestrel.co.uk": [21622], "kriminalvarden.se": [9024], "c.cogdill.co": [2024], "*.heimdalsecurity.com": [7285], "*.tennessee.edu": [17425], "www.domenovyprohlizec.cz": [4665], "webb13.play-asia.com": [12828], "feminy.in": [2024], "dela.dict.cc": [4442], "www.tfgamessite.com": [22134], "blog.bofh.it": [2194], "mychan.nl": [2024], "www.musopen.org": [10769], "b.cssherry.com": [2024], "emm1.samsungknox.com": [14331], "mail.invitel.hu": [8321], "b.reeco.com.ph": [2024], "coy.im": [3738], "img.s8bbs.com": [21709], "l.dieam.com": [2024], "store.axosoft.com": [1504], "partner.skylink.cz": [15002], "www.ashlandfiber.net": [1276], "a1310pp.asana.com": [1265], "freundewerben.congstar.de": [3580], "pfa.idg.se": [7709], "deltager.no": [4320], "pokd.it": [2024], "s.uhfx.net": [2024], "potterytim.es": [2024], "img.fastshare.cz": [5663], "2nos.fr": [2024], "tridge.co": [2024], "hero.ictv.ua": [20476], "*.rbxcdn.com": [13980], "productfor.ge": [2024], "t.shaun.to": [2024], "static.androidpit.info": [1052], "lombardi.georgetown.edu": [6531], "wms-na.amazon-adsystem.com": [958], "my.xilo.net": [18608], "sedo.co.uk": [14603], "www.igd.fraunhofer.de": [6091], "asset-3.soup.io": [15235], "regional.osu.edu": [11797], "www.opennet.ru": [11997], "www.dji.com": [4029], "www4.plymouth.ac.uk": [12873], "www.snapdeal.com": [15094], "mpf.re": [2024], "cntd.es": [2024], "uchechi.co": [2024], "campec.umontpellier.fr": [22365], "cancerci.biomedcentral.com": [1931], "nhseportfolios.org": [10954], "propublica.org": [13159], "www.hertz247.es": [7364], "aristov.org": [2024], "l.instap.io": [2024], "davehe.al": [2024], "d.ij-soft.com": [2024], "easychair.org": [5014], "wego.here.com": [7325], "order.ifolor.ch": [20488], "councildecisions.bury.gov.uk": [19476], "optimized-by.rubiconproject.com": [14066], "cmich.ly": [2024], "www.studentaffairs.illinois.edu": [17346], "emailage.statushub.io": [15504], "abrec.us": [2024], "eblastengine.upickem.net": [17474], "my.alpnames.com": [919], "www.wickedlasers.com": [18372], "mypa.be": [2024], "www.cair.com": [2528], "savecrypto.org": [14372], "novara.media": [2024], "jis.oxfordjournals.org": [12222], "newsletter.f-secure.com": [5533], "www.irctc.co.in": [7814], "kurlykli.ps": [2024], "mstr.uk": [2024], "r.jgrimshaw.com": [2024], "ads.simplyhired.com": [14894], "circl.wustl.edu": [18089], "jobs.onesignal.com": [11882], "wwwdc2.cinelease.com": [7371], "w03.hillingdon.gov.uk": [7413], "play.make.me": [2024], "police-academy-series.friday.ru": [20175], "nwsltr.it": [2024], "carnapi.es": [2024], "gcx.cx": [2024], "cdc310-www.sciencedirect.com": [21750], "macino.it": [2024], "headphone.com": [7252], "nextpowerup.com": [11409], "rblre.ch": [2024], "m.tune.yandex.by": [18739], "gdtmx.com": [2024], "sfca.lv": [2024], "13.mvd.ru": [21055], "*.nykeurope.com": [11032], "kat.how": [8828], "r.catchy.io": [2024], "cornell-classic.univcomm.cornell.edu": [3676], "proxy5.switchadhub.com": [15764], "farmmania.migros.ch": [10417], "www.htwk-alumni.de": [7595], "mrtrp.de": [2024], "go.wos.my.com": [2024], "uni-stuttgart.de": [17260], "rai.eu": [2024], "zenmate.com.br": [18917], "portal.acs.org": [974], "squatting-manual.squat.net": [21955], "www.terveysportti.fi": [16204], "natureshop.com": [11142], "dslreports.ca": [4075], "www.commsys.isy.liu.se": [9096], "peakgam.es": [2024], "www.myedaccount.com": [10801], "www.familie.san.aok.de": [376], "l.tikatravel.pe": [2024], "ilovehw.co": [2024], "ik.to": [2024], "daqing.jd.com": [8434], "telesis.wustl.edu": [18089], "support.click-sec.com": [3242], "blogbeta.namecheap.com": [11060], "reparieren.ch": [22443], "www.auscert.org.au": [1397], "help.channel5.com": [3004], "git.mytrinity.com.ua": [21075], "dj.jd.com": [8436], "www.justfordomino.com": [10114], "a127-ess.nyc.gov": [11332], "rtdru.rt.com": [13528], "restauracie.sme.sk": [14198], "kemp.co": [2024], "art2po.com": [1245], "www.ourcommonplace.com": [12175], "www.api.picatcha.com": [12691], "www.511tactical.com": [207], "applif.to": [2024], "sigmaxi.org": [14841], "history.state.gov": [17146], "retailers.comixology.com": [3466], "GMmeocsi.tnsglobal.com": [15906], "www.th-nuernberg.de": [16239], "gfp.io": [2024], "www.dedicatedgaming.com.au": [4278], "purina.com": [13289], "s.smartgame.jp": [2024], "mai.taobao.com": [16015], "*.objects.dreamhost.com": [4743], "wbplay.com": [17989], "xeromag.com": [18655], "www.myuni-form.com": [21077], "moreinterop.com": [10630], "jrd.mn": [2024], "penza.rt.ru": [13529], "gotpantheon.com": [12402], "cflam.es": [2024], "ext.err.ee": [5358], "fastm.nl": [2024], "piecejointe.net": [79], "greyhole.net": [6928], "suprgamr.tv": [2024], "on.kens5.com": [2024], "njpm.co": [2024], "*.lonap.net": [9106], "developer.uber.com": [17169], "www.admin.ch": [22061], "patches.videolan.org": [17775], "ts-gw.otpbank.ru": [12165], "www.voxility.com": [17944], "healthymeals.nal.usda.gov": [17299], "etumost.me": [2024], "www.gismeteo.ua": [6651], "extensiondefender.com": [5511], "ur.taobao.com": [16015], "u.sardinka.org": [2024], "foml.uk": [2024], "www.lofter.com": [20869], "web.943.tw": [2024], "mail.rzn.dlink.ru": [19853], "help.aliexpress.com": [854], "bluepr.in": [2024], "web.pipni.cz": [12287], "www.iajapan.org": [7675], "*.indabamusic.com": [8053], "rmvets.com": [2024], "url.pouchak.com": [2024], "2.uxd.me": [2024], "woking.gov.uk": [22605], "on.doi.gov": [2024], "lyndon.co": [2024], "build.codepoet.com": [19638], "spitest.tocco.ch": [16600], "s.stakon.gr": [2024], "ngonoo.in": [2024], "syspl.at": [2024], "ajae.oxfordjournals.org": [12222], "ny.lc": [2024], "ok.de": [11663], "fncranks.com": [2024], "account.tectonic.com": [16120], "lstln.co": [2024], "www.alpharatio.cc": [19160], "www.postimg.io": [13024], "cartersoshkosh.ca": [2879], "docs.bleachbit.org": [19407], "mealprep.ly": [2024], "m.samsungfire.com": [14329], "y.115.com": [28], "unitedsafcu.org": [17298], "www.shareholder.com": [14739], "www.math.cuhk.edu.hk": [2704], "e-library.eastsussex.gov.uk": [19938], "focus.ua": [20129], "l.jd-1.dk": [2024], "chg.bz": [2024], "alchemyglobal.com": [831], "opn8.co.uk": [2024], "l.mbdb.jp": [2024], "2brave4.me": [2024], "go.tt.com": [2024], "www.samsung.com": [14326], "www.institutional.hsbc.com": [7090], "svs.gsfc.nasa.gov": [10909], "takou.co": [2024], "ibm.biz": [20471], "www3.physics.ox.ac.uk": [17359], "pubhealth.us": [2024], "bsideslv.org": [1573], "static.wonderwall.com": [18502], "asirobots.com": [409], "w.franc.es": [2024], "www.ims-dm.com": [8236], "wlk.dog": [2024], "doska.chita.ru": [19583], "titb.com": [2024], "o365du.de": [2024], "kids.usa.gov": [17110], "onch.net": [2024], "digitalcentr.al": [2024], "vladivostok.startsmile.ru": [21980], "ui.adsabs.harvard.edu": [7211], "l.rtsp.us": [2024], "nas.bede.tfm.ro": [22135], "www.webpower.nl": [18137], "testreserveaspace.wustl.edu": [18089], "sjburns.co": [2024], "whtp.gs": [2024], "new.shropshire.gov.uk": [21819], "www.ritter.vg": [13961], "rko.utb.ru": [17538], "www.cjs-cdkeys.com": [2631, 2632], "www.wtpx-telekom.com": [18570], "twtanmlpics.com": [2024], "ud-d.in": [2024], "the93q.com": [2024], "on.sgsites.net": [2024], "woodlands.io": [2024], "arvl.gd": [2024], "swift.im": [15751], "ynsfk.co": [2024], "la.irbob.com": [2024], "*.paysafecard.com": [12518], "theconversation.com": [16338], "otto.de": [12168], "*.ahpra.gov.au": [1419], "sgno.org": [14172], "fsfeurope.org": [5592], "*.aleavia.com": [834], "c0.xkcd.com": [22652], "gsp2.baidu.com": [1641], "*.ucsf.edu": [17388], "diabe.life": [2024], "dia.hnonline.sk": [7445], "zenimax.com": [18928], "whitepages.com": [18352], "portal.ripe.net": [13953], "lankaonong.jd.com": [8434], "mqlc.tk": [2024], "gemcutter.org": [14076], "bmcvetres.biomedcentral.com": [1931], "apply.berkeley.edu": [17329], "magyon.co": [2024], "embed.acast.com": [19045], "*.thomas-krenn.com": [16448], "www.atgfw.org": [19268], "www.capitadiscovery.co.uk": [19507], "*.manticoretechnology.com": [9970], "eminhuseynov.com": [5201], "highpeak.objective.co.uk": [21225], "linuxgraphic.org": [20849], "cloud.baidu.com": [1641], "idp.coma.uned.es": [17248], "app1881.no": [2024], "static3.startnext.com": [15478], "electradl.iplayer.bbc.co.uk": [1521], "www.crcpress.com": [8120], "dfw.world": [2024], "editorialmanager.com": [5077], "brnt.cr": [2024], "internal.ncl.ac.uk": [10926], "antiwar.com": [1106], "intlprograms.aces.illinois.edu": [17346], "sp.jd.com": [8436], "lurey.in": [2024], "www.tacticalsecret.com": [22083], "www.tsn.ua": [22301], "eng.rkn.gov.ru": [13971], "demo.sympa.org": [15785], "community.ustream.tv": [17536], "consult.broadland.gov.uk": [2374], "reco.se": [13708], "remo.cc": [2024], "*.savecrypto.org": [14372], "gerrit.chromium.org": [3124], "webnium.co.jp": [18228], "killscreen.com": [8903], "go.yc.sg": [2024], "aap.asana.com": [1265], "std.mn": [2024], "nzpug.org": [21215], "ala.org": [356], "www.zalando.es": [18877], "4ty.co": [2024], "a.drewmj.com": [2024], "helfer.froscon.org": [6071], "www.hezenparastin.com": [7385], "aaja.de": [2024], "iOSBStxn02.hkjc.com": [20384], "www.rightnow.com": [13939], "podarok.majordomo.ru": [9914], "www.bootsthai.com": [2236], "novorossiiysk.biglion.ru": [19375], "suggest2.wandoujia.com": [18066], "*.pbs.org": [12242], "cardshop.nwf.org": [11126], "cklph.com": [2024], "kiphak.es": [2024], "cache.unwire.hk": [17460], "mike2500.us": [2024], "2bl.me": [2024], "earthmaps.co": [2024], "esquina.la": [2024], "join.jolla.com": [8636], "www.kissmetrics.com": [8745], "r.fruitninja.com": [6214], "quiz.infoseek.co.jp": [8130], "support.setcronjob.com": [21791], "i.annihil.us": [1073], "cms.show.afisha.ru": [19107], "sakhalin.europaplus.ru": [20034], "okl.scene7.com": [14402], "sb.tionghoa.com": [2024], "ageing.oxfordjournals.org": [12222], "www.trustico.com": [16865], "nagradnaigra.hofer.si": [357], "upztv.96.lt": [2024], "www.avon.cz": [432], "k.sina.cn": [14902], "link.aps.org": [976], "piflc.xboxlive.com": [18640], "i1.visualstudiogallery.msdn.s-msft.com": [14114], "test1.southend-on-the-move.org.uk": [21910], "grad.ua": [20300], "brkl.worldcat.org": [18536], "webchills.me": [2024], "on.d-k.nu": [2024], "go.piriform.com": [2024], "el.drsimi.mx": [2024], "stanfordhealthcare.org": [15450], "mapcreator.here.com": [7325], "osep.stanford.edu": [15448], "forrester.com": [6026], "emulex.com": [5218], "www2.firstdirect.com": [20111], "www.new-nations.net": [11335], "pic-views.me": [2024], "nruns.com": [11587], "911memorial.io": [2024], "jmc.news": [2024], "lna.io": [2024], "image.tmdb.org": [15894], "dpoll.me": [2024], "entwickler.dhl.de": [4025], "kabinet.r46.ru": [21570], "*.yelp.ch": [18766], "www.westmercia.police.uk": [18301], "*.yelp.cl": [18766], "ws.cex.io": [2600], "dex.media": [2024], "aboutus.lego.com": [9082], "*.everydayhealth.com": [5443], "plugins.roundcube.net": [14039], "cdn.yldbt.com": [18773], "*.yelp.cz": [18766], "www.en.wiki.hidekisaito.com": [7396], "www.askthe.scotland.police.uk": [21757], "www.wbs-law.de": [18397], "letmechoose.barclaycard.co.uk": [1690], "dellchat.ap.dell.com": [4317], "*.americanbar.org": [982], "gcentral.biz": [6271], "popaul77.tuxfamily.org": [22319], "theo.bj": [2024], "ckatz.co": [2024], "bocabearings.resultspage.com": [13875], "static.justromeo.com": [8438], "www.gdata-software.com": [6272], "www.restorethefourth.net": [13874], "static.quidco.com": [13415], "smith.gl": [2024], "v.sdhkresice.cz": [2024], "www.subeta.net": [15622], "gnu-ftpmirror.savannah.gnu.org": [6337], "www.storebot.me": [15561], "www.2cyr.com": [126], "assets.americanhunter.org": [19188], "go.samraj.info": [2024], "ea-consult.objective.co.uk": [21225], "301.z4c.us": [2024], "stat.gorcom.ru": [20291], "portfolio.cnbc.com": [2645], "ped-rheum.biomedcentral.com": [1931], "ing.org": [7774], "queens.mynyp.org": [21066], "groups.tigerair.com": [16515], "dae.unizar.es": [17441], "locationsmart.com": [20867], "falcon11.beget.com": [19347], "fr.lastminute.com": [9177], "d.dsy.me": [2024], "popcriti.ca": [2024], "fins.cc": [2024], "dproos.nso.ru": [21192], "yumpu.com": [18837], "bluejeans.com": [2153], "www.rtek2000.com": [13531], "www.safelinking.net": [14294], "media-titanium.cursecdn.com": [3927], "cooltime.com": [2024], "www.biovendor.cz": [1933], "cnrsformation.cnrs.fr": [6174], "asianfanfics.com": [1282], "a.mytoy.tw": [2024], "careers.nzqa.govt.nz": [11044], "x.raptalk.org": [2024], "ttp.li": [2024], "asmithedtech.co": [2024], "404.foxnews.com.edgesuite.net": [11360], "polle.me": [2024], "bcc.la": [2024], "zrge.eu": [2024], "edfy.us": [2024], "www.fidoalliance.org": [5562], "superm.us": [2024], "confidence.org.pl": [3572], "mayoclinic.com": [10119], "www.gun.io": [7004], "www.unitedrepublic.org": [17307], "thefender.be": [2024], "homeofthefuture.gizmodo.com": [6677], "backup.cursosvirtuales.uned.es": [17248], "staging.svoboda.org": [22052], "iamren.co": [2024], "rights.1688.com": [51], "www.jobcorps.gov": [20644], "www.josefsson.org": [8644], "research.rakuten.co.jp": [13593], "www.airmap.io": [790], "visanatest.tocco.ch": [16600], "weitz.co": [2024], "couix.net": [2024], "www.crowdin.com": [3823], "kropotkin.europaplus.ru": [20034], "vorcu.net": [2024], "secure.echomedia.cz": [19948], "j-tv.me": [2024], "ihla.us": [2024], "login.bundesanzeiger-verlag.de": [19471], "shop.1and1.com": [69], "bmtn.us": [2024], "newsl.zalando.de": [18877], "r24820179.sync.app.asana.com": [1265], "gpm.nasa.gov": [10909], "an.insure": [2024], "psusa.co": [2024], "fortunechina.oss.aliyuncs.com": [19143], "discount.psbank.ru": [13231], "dirtydut.ch": [2024], "medicalresearch.nature.com": [11140], "stat.linkline.ru": [20846], "login.talemetry.com": [15983], "hd-bits.com": [7247], "st.drweb.com": [4776], "corp.mamba.ru": [9944], "secure.php.net": [12280], "sjm.me": [2024], "accessgudid.nlm.nih.gov": [11090], "fwx.in": [2024], "search.sachsen.de": [14279], "adifferentdialogue.georgetown.edu": [6531], "node4.bbcimg.co.uk": [19333], "am2uqrflsjp04r7rwqag453y6mfb8y50caflgel2.ipleak.net": [20571], "www.iwmnetwork.com": [7871], "s.runwanista.jp": [2024], "ftp.spatialbuzz.com": [15300], "rmjh.me": [2024], "tfc.nyc": [2024], "foxemf.com": [2024], "*.ehsanakhgari.org": [19970], "fie.sc": [2024], "go.wgntv.com": [2024], "www.racked.com": [13557], "surfri.de": [2024], "events.webmoney.ru": [18173], "lqdcptl.co": [2024], "haberbak.in": [2024], "webstat.viz-info.de": [22476], "schiet.nu": [2024], "sebb.es": [2024], "itu.dk": [7843], "vogel.de": [17906], "adserver.iminent.com": [8007], "herdict.org": [7324], "oron.com": [12147], "contribute.theguardian.com": [16364], "admin.noxa.de": [21174], "cdn.xww.ro": [18697], "m.maps.yandex.by": [18739], "netguava.com": [11275], "www.popularresistance.org": [12966], "stacksity.com": [15430], "lancaster.gov.uk": [20778], "link.vbase.me": [2024], "khalsacreditunion.ca": [8887], "r.ssw.com": [2024], "cpanda.co": [2024], "content.minimundosonline.com": [10457], "shny.me": [2024], "www.malwarebytes.com": [9940], "*.liv.ac.uk": [9491], "i3.rgstatic.net": [13481], "preprod.en.hispeed.ch": [22386], "tafarm.us": [2024], "feedback2.yandex.com.tr": [18740], "watchmaxx.com": [18094], "qumbr.tk": [2024], "video.rambler.ru": [13600], "tn.oxforddictionaries.com": [12223], "resortpro.net": [13868], "cdn2.tekgoblinmedia.com": [16129], "elpueblo.com": [5127], "blogs.uni-erlangen.de": [17396], "tosback.org": [15913], "*.buzzsprout.com": [19486], "p2p.kurs.expert": [20764], "qw.insure": [2024], "dcln.co": [2024], "townnews365-dot-com.bloxcms.com": [16689], "www.speedwellsoftware.com": [21931], "gwh.moderngov.co.uk": [21005], "s.warp.net": [2024], "*.iberia.com": [7896], "ufr.gs": [2024], "www.history.ox.ac.uk": [12220], "code.ionicframework.com": [8334], "drive.yuga.ru": [22701], "www.cff.ch": [15756], "origin-www.nike.com": [11440], "c0.thejournal.ie": [16299], "s01.appmifile.com": [1138], "trinium.cursecdn.com": [3927], "www.fieldnation.com": [20086], "12z2jo6tbpea23aq4quns7pyvoiklu4xan1424du.ipleak.net": [20571], "venda.cp.pt": [3741], "sport.government-nnov.ru": [20295], "wiki.videolan.org": [17775], "channelspro.ap.dell.com": [4317], "web202.tape.tv": [16019], "housingssp.leeds.gov.uk": [20799], "warmcat.com": [18075], "go.wxmi.com": [2024], "*.komoona.com": [8979], "adriano.ml": [2024], "whskyjlt.co": [2024], "ept.ms": [2024], "idp.geoplatform.gov": [6523], "mailstation.de": [9906], "www.maxim-ic.com": [10107], "www.tumba.ch": [22306], "expandedsupport.com": [5491], "*.cunb.com": [2767], "xnet.cz": [18622], "fs18.formsite.com": [20139], "hviewer.bl.uk": [2358], "my.getambassador.com": [6571], "short.kudok.com": [2024], "tvnetvoz.vodafone.pt": [17903], "gfwd.at": [2024], "i.scroll.am": [2024], "rd.i-aa.jp": [2024], "www.amnestyusa.org": [1019], "cpm.hostanalytics.com": [7523], "go.jlc.org": [2024], "corygardner.co": [2024], "dp6.bi": [2024], "ocharles.org.uk": [11651], "filefactory.com": [5775], "www.kintera.com": [8926], "www.energy.ch": [19996], "hypro.co": [2024], "link.ls.net.ar": [2024], "fwprocircu.it": [2024], "www.openresty.org": [12076], "*.hoseasons.co.uk": [18579], "beta.xmpp.net": [18616], "xxxmovie.ml": [2024], "bmcclinpathol.biomedcentral.com": [1931], "freshpet.co": [2024], "packages.python.org": [13314], "askahmadiyyat.org": [1285], "favn.ir": [2024], "www.blackarch.org": [2056], "sparkbusiness.capitalone.com": [2831], "gyp.rocks": [2024], "www.jungewelt.de": [20667], "ircity.ru": [20576], "www.cygwin.com": [3972], "impo.ch": [3647], "eventlog.centrum.cz": [19547], "bmccomplementalternmed.biomedcentral.com": [1931], "ssl.enfield.gov.uk": [5247], "deimos.fr": [4301], "e.interpol.int": [8290], "www.j-schmitz.net": [8420], "rgh.me": [2024], "zheleznogorsk.startsmile.ru": [21980], "bitmaintech.com": [2026], "s-omniture.yell.com": [22672], "www.cathaypacifichost.com": [2913], "www.sustainablefuture.cornell.edu": [3676], "*.liftconference.com": [9350], "queercom.de": [13399], "www.matkahuolto.info": [10086], "applepartsstore.com": [1153], "secunet.com": [14538], "planet.collabora.com": [3418], "www.movim.eu": [10684], "rtt.sg": [2024], "nlbb.osu.edu": [11797], "kproxy.com": [8763], "orders.tigerdirect.com": [16516], "beam.stanford.edu": [15448], "exe.icq.com": [7695], "reservations.palms.com": [12377], "girly.click": [2024], "i.creativecommons.org": [3774], "sci.lt": [2024], "images.scanalert.com": [14391], "zerodium.com": [18852], "www.elementaryos.org": [5151], "s.hughblong.com": [2024], "postimage.org": [13024], "auf.si": [2024], "webskjema.sparebank1.no": [21922], "abac.us": [2024], "scienceandtechnology.jpl.nasa.gov": [10909], "dvod.us": [2024], "consultations.nidirect.gov.uk": [21138], "office.microsoft.com": [10396], "shop.nero.com": [11201], "bwfd.be": [2024], "vms.api.qbrick.com": [13345], "ldn.linuxfoundation.org": [9427], "www.abiggersociety.com": [442], "www.ceneo.pl": [2945], "apps.rakuten.co.jp": [13594], "www.baremetrics.io": [1693], "status-ksplice.oracle.com": [12116], "static.songcoleta.com": [15204], "*.getoutofdebt.org": [6583], "www.sidibouras.com": [14827], "m.bnz.co.nz": [1561], "stoate.co": [2024], "lftr.mp": [2024], "www.sportsauthority.com": [15361], "www.americanfreedom.com": [986], "*.londonist.com": [9596], "davpack.co.uk": [4222], "www.my-zone.net": [21058], "ruzhou.jd.com": [8434], "age.lenta.ru": [20809], "bluekrypt.be": [2146], "smlbth.co": [2024], "imamci.oxfordjournals.org": [12222], "services.parliament.uk": [21349], "fredca.de": [2024], "www.jonasboserup.dk": [20650], "mjr.wtf": [2024], "arabic.kaspersky.com": [8820], "siteslocaux.amnesty.fr": [1006], "*.systemcenteradviser.com": [15825], "nriapply.hdfcbank.com": [7249], "codefisher.org": [3366], "info2.magento.com": [9868], "l.63.co.za": [2024], "sl.klogmand.dk": [2024], "s.ligatus.com": [9356], "slickdeals.net": [15024], "gestionproyectos-desa2.ulpgc.es": [17213], "lmtr.co": [2024], "www.notebookitalia.it": [11561], "news.anthem.com": [19206], "migrol-olio-combustibile.ch": [10413], "on.rare.us": [2024], "beta.disk.yandex.com": [18742], "nps.gov": [11122], "www.afisha.ru": [19107], "src.responsive.io": [13871], "bloom470.link": [2024], "www.psbank.ru": [13231], "*.ntop.org": [11595], "7digital.com": [232], "clocurto.us": [2024], "sholokhovo.beeline.ru": [1778], "iBUTtxn.hkjc.com": [20384], "nyrange.rs": [2024], "www.user-agents.org": [17514], "medallion.kachingle.com": [8779], "tomorrow-focus-media.de": [16617], "eecm.cr.yp.to": [3745], "blu.berkeley.edu": [17329], "static3.readyflowers.com": [13680], "selfservice.eastlothian.gov.uk": [5005], "anfrage.os-cillation.de": [12150], "102.alibaba.com": [857], "rog.li": [2024], "vps.net": [17595], "news.microsoft.com": [10396], "forum.avira.com": [1474], "tls.li": [16587], "envt.in": [2024], "services1.aastocks.com": [19037], "online.cheshireeast.gov.uk": [3070], "de.crowdin.com": [3823], "logisti.co": [2024], "www.domain.fi": [4643], "remote.hslu.ch": [7589], "www.mylivechat.com": [10853], "fantlab.ru": [5648], "www.csail.mit.edu": [9763], "www.networking4all.com": [11314], "login.adaramedia.com": [613], "www.sicurezzarete.com": [21824], "campbx.com": [2788], "ram-tool.info": [2024], "digitalfreedom.io": [4492], "s.ttactua.be": [2024], "cave.mn": [2024], "neas.nhs.uk": [10953], "teby.tk": [2024], "www.devonjobs.gov.uk": [19823], "lapatilla.com": [9130], "sa123.net": [2024], "www.trustsign.com.br": [16854], "www.gosoapbox.com": [6765], "1rish.tk": [2024], "prefetch-maps.yandex.com": [18742], "chat.rwe.de": [21706], "pop.market": [2024], "www.rlrose.co.uk": [13495], "s.pony.fm": [12942], "mx.24mx.com": [2024], "el.4.boardgamearena.com": [2182], "ghar.at": [2024], "tjportal.worldcat.org": [18536], "nay.sk": [10915], "wald.intevation.org": [18049], "phtshp.us": [2024], "gannettridge.com": [6436], "ludialudom.sk": [9661], "www.virurl.com": [17575], "box.yahoo.co.jp": [18730], "myaccount.mutualofamerica.com": [10777], "www.halcyon.sh": [7161], "img.alicdn.com": [853], "lif.cx": [2024], "telekom.com": [16154], "wayv.it": [2024], "falling-skies.friday.ru": [20175], "ovirt.org": [11728], "www.payeer.com": [12507], "static.3dsupply.de": [172], "sngbx.me": [2024], "www.eztv.tf": [20063], "get.cards.land": [2024], "www.prowebsector.gr": [13162], "www.grist.org": [20309], "anz.rd.rakuten.co.jp": [13594], "tr.netsalesnetwork.com": [21113], "panjin.jd.com": [8434], "gajjar.me": [2024], "www.card2card.mastercard.ru": [10065], "*.givex.com": [6671], "cryptome.thecthulhu.com": [16403], "emilyja.de": [2024], "*.kobobooks.es": [8962], "vendorcentral.amazon.es": [19175], "open.aliexpress.com": [19140], "arne.schuldt.info": [1232], "forums.epicgames.com": [5309], "mynw.me": [2024], "gknz.fr": [2024], "www.condenaststore.com": [3560], "fs22.formsite.com": [20139], "www.gexpro.com": [6605], "lj.rossia.org": [9535], "www.fullcirclestudies.com": [6226], "unit.ec": [2024], "dshield.org": [4078], "m.sohu.com": [15171], "www.userlike.com": [17520], "hastings.gov.uk": [7225], "www.voltaicsystems.com": [17922], "business.upc.ie": [17082], "edlyn.co": [2024], "developer.blackberry.com": [2068], "uss.emetriq.de": [18677], "hellholecheesefactory.org": [7291], "s13.postimage.org": [13024], "zubiri.mx": [2024], "www.johoobuy.com": [8629], "form.mbank.sk": [9733], "s4.postimage.org": [13024], "es.nowf1.com": [2024], "gayromeo.com": [12802], "filter.impactradius.com": [8015], "www.uic.edu": [17321], "askapatient.com": [1289], "www.gn.apc.org": [1318], "*.ausgovboards.gov.au": [1418], "pamconsult.com": [12381], "img.58cdn.com.cn": [213], "meinauto.autoscout24.de": [1458], "community.teespring.com": [16125], "przewodniki.panoptykon.org": [12395], "susn.me": [2024], "j2.hitravel.xyz": [2024], "conab.ly": [2024], "kdmy.co": [2024], "parking.tmbc.gov.uk": [15892], "naro-fominsk.beeline.ru": [1778], "ubt4.fanli.com": [5645], "i.ubn.jobs": [2024], "leloop.org": [9206], "opensrs.net": [12005], "helpx.adobe.com": [669], "slitaz.org": [15020], "musicweek.com": [10751], "piwik.org": [12768], "www.zetel.de": [18950], "feed.press": [20081], "swdp.objective.co.uk": [21225], "www.limeservice.com": [9371], "cor.cab": [2024], "aeon.lib.umd.edu": [17351], "l.jana.com": [2024], "bbap.ps": [2024], "tvplay.beeline.ru": [1778], "webapps.med.cuhk.edu.hk": [2704], "s17.qhimg.com": [13347], "my.balabit.com": [1647], "petart.me": [2024], "*.redbull.de": [13726], "img4.eadaily.com": [19929], "b.mpbk.us": [2024], "site.yandex.com.tr": [18740], "u8.hitravel.xyz": [2024], "mediamath.com": [10169], "showapi.com": [21815], "res.freebase.com": [6133], "p-a.us": [2024], "www.myplatinumpak.com": [12823], "martinell.is": [2024], "test.channel4.com": [3009], "jackjones.co": [2024], "globalconnections.hsbc.com": [7090], "profitlab.agima.ru": [19112], "www.rarediseases.ox.ac.uk": [17359], "store.now.com": [11572], "ks.airinum.com": [2024], "cs.drexel.edu": [4753], "azure.bingads.microsoft.com": [10396], "download.cloud.secondlife.com": [14527], "04.imgmini.eastday.com": [5010], "lk.mamf.com.br": [2024], "mab.sbi.co.in": [14140], "legacy.macfound.org": [9833], "04.static-maxdome.de": [10106], "www.linux-mips.org": [9428], "aqmensrv.edina.ac.uk": [19955], "extranet.bls.ch": [1552], "furvwf.co": [2024], "g6.gdl.netease.com": [11228], "cultura.no": [3910], "raa.link": [2024], "benjib.link": [2024], "shanaproject.com": [14718], "sojc.co": [2024], "www.gaytimesmagazine.com": [20213], "uk.sitestat.com": [14952], "moderation.lego.com": [9082], "plymouth.ac.uk": [12873], "w3w.play-asia.com": [12828], "wiki.gnupg.org": [6744], "biolres.biomedcentral.com": [1931], "pfizerpro.com": [12642], "siwgallery.stanford.edu": [15448], "elibrary.westminster.gov.uk": [18315], "*.unanimis.co.uk": [17233], "arisebitcoin.com": [1219], "www.nvr.de": [11628], "*.religionnews.com": [13817], "static1.eadaily.com": [19929], "dialet.to": [2024], "www.torrentz.to": [16662], "*.hcl.com": [7033], "opensignal.com": [12010], "ace.c9.io": [3279], "siteway.org": [2024], "tgt.guru": [2024], "tracking.thehut.net": [16298], "www.union.illinois.edu": [17346], "dlvroo.it": [2024], "rndwn.com": [2024], "viglink.com": [17797], "r24820238.sync.app.asana.com": [1265], "blb.tl": [2024], "mingkh.government-nnov.ru": [20295], "www.tchibo.de": [16050], "osr.im": [2024], "lomabuena.info": [2024], "www.fanoe.dk": [5646], "i.iot-valley.fr": [2024], "culturesforhealth.com": [3912], "uk.godaddy.com": [6755], "gza.cc": [2024], "pspudb.com": [5216], "svcti.me": [2024], "www.cryptopals.com": [3876], "pages.wustl.edu": [18089], "media.24ways.org": [104], "www.t37.net": [15845], "tasb.org": [16223], "www.indacoin.com": [8054], "portal2-qa1.threatmetrix.com": [16467], "www.nrastore.com": [21188], "*.pubdirecte.com": [13247], "citgo.net": [2024], "u.pau.lk": [2024], "kaluga.sledcom.ru": [21858], "sepa.org.uk": [21783], "krasnodar.europaplus.ru": [20034], "corelan.be": [3675], "secure.xsolla.com": [18685], "2lkmgz4um0d14unvovjr0assoxx1a1g2f04278zv.ipleak.net": [20571], "ssb.no": [14237], "www.duckdns.org": [4786], "silencerforum.com": [21826], "uploads.va.gov": [17100], "l.asx.hu": [2024], "de.duo.com": [4797], "blade23.ual.es": [17162], "l.caschw.com": [2024], "forms.cotswold.gov.uk": [19695], "ecocar2.osu.edu": [11797], "podz.info": [2024], "galg.co": [2024], "disabilityrights.law.hku.hk": [20387], "www.student.nvcc.edu": [11627], "encuestas.uniovi.es": [17282], "www.bypassingcensorshipinthe.uk": [19487], "svenskakyrkan.se": [15736], "evi.nz": [2024], "ca.redhat.com": [13735], "wobbstock.de": [2024], "spa.wustl.edu": [18089], "book.douban.com": [4701], "sturg.me": [2024], "www.digitalpoint.com": [4484], "im8.kommersant.ru": [20746], "www.canon.si": [2822], "gton.me": [2024], "www.actionsalvage.com": [544], "www.eth-0.nl": [5365], "www.canon.se": [2822], "stats.capitalone360.com": [2832], "kauihou.net": [2024], "point3.co": [2024], "youtube.co.za": [18800], "buyaplan.co.uk": [19482], "sourcesoftdownload.com": [15251], "diagon.al": [2024], "www.businessinsider.com": [2471], "store.bistudio.com": [2195], "statistikk.sparebank1.no": [21922], "grnfla.com": [2024], "www.tryhaskell.org": [16875], "advq.yandex.kz": [18743], "www.reco.se": [13708], "taxi.sakh.com": [21719], "ylyc.worcestershire.gov.uk": [22611], "www.optoutprescreen.com": [12100], "webstats.unizar.es": [17441], "img.new.livestream.com": [9527], "aberdeencity.spydus.co.uk": [21952], "skyscan.it": [2024], "vosero.de": [2024], "lkcs.co": [2024], "s79.cnzz.com": [3328], "idisk.domashka.net": [19873], "portal.vik.bme.hu": [1556], "integration.richrelevance.com": [13927], "www.hospitalityleaders.com": [7508], "sprtlly.me": [2024], "fmedley.com": [2024], "dock3.beget.com": [19347], "sdcl.co": [2024], "syed.io": [2024], "utb.ru": [17538], "hols.info": [2024], "www.blog.edoeb.admin.ch": [22061], "www.gibraltar.gov.gi": [6621], "skhynix.com": [14189], "ads-creative-cdn.acast.com": [19045], "autodiscover.yandex.kz": [18743], "www.trash.net": [16761], "bitvc.com": [1975], "abi.org.uk": [287], "static.dl.mail.ru": [9891], "brln.be": [2024], "samr.ml": [2024], "engagesciences.com": [5249], "demo.ivoad.com": [2024], "www.thefoundry.co.uk": [16354], "shop.eweiqi.com": [20045], "als.bz": [2024], "bazar.sk": [1737], "astatic.weborama.fr": [18231], "www.mouseflow.de": [10664], "whstatic.1and1.com": [69], "static.dlvr.it": [19855], "com-24h.com": [2024], "www.globaltestsupply.com": [6701], "capsuleweb.ulaval.ca": [17319], "customers.gitlab.com": [6658], "jshr.in": [2024], "tops.yandex.com.tr": [18740], "secure.funio.com": [6243], "njit.edu": [10972], "admin.artsy.net": [1260], "www.cnblogs.com": [19631], "scmp.rs": [2024], "go.oceanik.com": [2024], "pianistm.ag": [2024], "e-grants.ed.gov": [4881], "gfx7.hotmail.com": [7565], "bvg.de": [1605], "sso.talktalk.co.uk": [15993], "renn999.cc": [2024], "www.bitcoinstore.com": [1999], "luk.ie": [2024], "www.vluki.ru": [22478], "begrep.difi.no": [4452], "bulletinoftheschoolofmedicine.wustl.edu": [18089], "o.vevo.com": [17566], "hfxne.ws": [2024], "*.spriza.com": [15388], "m.google.co.*": [6821], "wilg.me": [2024], "*.joyentcloud.com": [8664], "www.thinkwithgoogle.com": [16437], "www.revolversweeper.com": [21644], "myheritage.fi": [10875], "www.encryptr.org": [5229], "blog.apichangelog.com": [19214], "merchants.gamersfirst.com": [6414], "services.justaguy.pw": [8713], "www.gofundme.com": [6761], "qli.mx": [2024], "the-rad.co": [2024], "tmsc.us": [2024], "www.rmit.edu.au": [13496], "etd.ohiolink.edu": [11799], "psut.sledcom.ru": [21858], "myheritage.fr": [10875], "alternatifbilisim.org": [930], "library.uwb.edu": [17157], "*.spreadshirt.no": [15371], "cloudfoundry.cloudbees.com": [19622], "bbru.in": [2024], "www.aspirationtech.org": [1297], "s28.cnzz.com": [3328], "styles-uat.freescale.com": [6161], "devlieghe.re": [2024], "bake.so": [2024], "www.photoblab.com": [12670], "on.biolane.hk": [2024], "d0a12.es": [2024], "conferencecenter.stanford.edu": [15447], "fs24.formsite.com": [20139], "portaltest.fraudmetrix.cn": [20151], "matbea.com": [20931], "8-t.imgbox.com": [7997], "cpd.io": [2024], "channel9.msdn.com": [9802], "video22.0xdb.org": [10], "justinbmeyer.jsbin.com": [20659], "dmn.cc": [2024], "x10hosting.com": [18588], "arabic.iraq.usembassy.gov": [22406], "www.zoho.co.jp": [18983], "old.biomedcentral.com": [1931], "*.lacaixa.es": [9127], "www.winbond.com": [18425], "*.networksolutions.com": [11303], "www.above.com": [486], "lbstr.de": [2024], "rise.cr": [2024], "bfgoodri.ch": [2024], "www.gettyimages.es": [6604], "i.yastatic.net": [18754], "ushmm.org": [17529], "citizensadvice.citizensadvice.org.uk": [19596], "sqsp.com": [15395], "docreader.readspeaker.com": [13670], "www.butterflynetinc.com": [2480], "sell2.in-tend.co.uk": [20516], "arts.kairo.at": [8782], "b.isho.lt": [2024], "www.iop.org": [8196], "marcus.vc": [2024], "shacknews.com": [14711], "www.frameworks-scotland2.scot.nhs.uk": [10953], "commerce.guidestar.org": [6989], "www.secure-os.org": [14544], "download-mirror.sv.gnu.org": [6337], "*.channelx.biz": [3011], "my-zone.net": [21058], "p2r.me": [2024], "fatboy.tk": [2024], "s3.qhimg.com": [13347], "www.lookback.io": [9608], "www.mojang.com": [9789], "bwdlibraries.spydus.co.uk": [21952], "downloaddaikuan.2345.com": [98], "athletisme.lemonde.fr": [9204], "cnnmon.ie": [2024], "netstorage.metrolyrics.com": [10348], "consumerprivacy.merkleinc.com": [20967], "gradwellcloud.com": [6869], "files.newsnetz.ch": [11371], "passport.baidu.com": [1641], "redirect.golem.de": [6804], "yamal.rt.ru": [13529], "enel.dict.cc": [4442], "mxes.co": [2024], "mttbrks.co": [2024], "equestrian.clubs.bucknell.edu": [2406], "*.le.ac.uk": [17404], "*.hr.columbia.edu": [3449], "advertising.aol.com": [380], "cdn.dealer.com": [4245], "dss.un.org": [17057], "forum.asi.ru": [19256], "dfu.co": [2024], "kenengba.com": [8862], "extratorrent.life": [5516], "static.milanuncios.com": [10426], "answers.argos.co.uk": [1213], "www.looppay.com": [9615], "www.minimundosonline.com": [10457], "m.12thave.org": [2024], "a.slugs.in": [2024], "im35.115.com": [28], "msb.psbank.ru": [13231], "4kdownload.com": [190], "earth.stanford.edu": [15448], "www.regress.admin.ch": [22061], "bernina-mels.ch": [1827], "*.hostmonster-cdn.com": [7544], "us2.co": [2024], "support.mastermindsdigital.com": [10068], "s27.cnzz.com": [3328], "i05.c.aliimg.com": [861], "minted.com": [10472], "img.tygem.com": [22334], "in.isidewith.com": [20466], "facebook.malwarebytes.org": [9941], "www.cryptostorm.org": [3882], "aurous.me": [1396], "mp4zvezda.cdnvideo.ru": [19536], "images.lightningmaps.org": [9361], "www.chris.lu": [3108], "thesmokinggun.com": [16382], "wusfnews.wusf.usf.edu": [17362], "d.bz": [2024], "universal.ac": [2024], "games.play-asia.com": [12828], "nehta.gov.au": [11105], "rnd.feide.no": [5729], "ru.gamigo.com": [6426], "cdn.elec.ru": [19976], "ulyanovskaya-obl.beeline.ru": [1778], "kp.cc": [2024], "link.6ja.net": [2024], "nei.nih.gov": [11090], "ws.edu.isoc.org": [7831], "fdwr.co": [2024], "fullslate.com": [6229], "adserverwc.adtechus.com": [692], "www.remnux.org": [13473], "*.bangor.ac.uk": [1666], "my.gpass.org": [2024], "salty.run": [2024], "tracking.maxcdn.com": [10102], "npjnb.ab4all.com": [19038], "www.europe.redhat.com": [13735], "surveymonkey.com": [15724], "dmva.co": [2024], "wap.58.com": [212], "clbs.co": [2024], "www.sheffield.gov.uk": [14755], "info.degica.com": [3333], "gbx.buzz": [2024], "t-engine.org": [15833], "epson.ca": [5318], "www.www.com.kairo.at": [8782], "www.greaterchinajobs.g4s.com": [20195], "www.naughtydog.com": [11144], "consult.tandridge.gov.uk": [16007], "impactsoftcompany.com": [8016], "ebjes.se": [2024], "pe.tedcdn.com": [15871], "www.pamfax.biz": [12381], "thingsquare.com": [16432], "mgbyt.es": [2024], "www.amerika21.de": [994], "www.retriever-info.com": [13882, 13883], "aralbalkan.com": [1182], "wolframcloud.com": [18489], "partner.newegg.com": [11356], "forester.farm": [2024], "cubesat.bme.hu": [1556], "lathm.co": [2024], "dool.ca": [2024], "avaflix.ga": [2024], "play.st": [2024], "www.tello.com": [16167], "firmware.gl.wupper.freifunk-rheinland.net": [20171], "carousell.com": [2870], "penza.auto.ru": [19276], "gymglish.co.uk": [7021, 7022], "www.kryptos.sh": [9032], "kdkurator.rsb.ru": [14058], "elviajero.elpais.com": [5126], "www.setcronjob.com": [21791], "r24616611.sync.app.asana.com": [1265], "thirdage.com": [16442], "go.cw33.com": [2024], "beta.falkirk.gov.uk": [5630], "www.imediaconnection.com": [7765], "stats.lpice.eu": [9109], "online.centrinvest.ru": [2966], "*.viewcentral.com": [17796], "hough.me": [2024], "j.amoad.com": [371], "qscience.nature.com": [11140], "dreambox.com": [19895], "secure.gettyimages.at": [6604], "s.cn.bing.net": [1925], "apps.community-uat.freescale.com": [6161], "www.zidisha.org": [18957], "d8l.uk": [2024], "ssi.dwd.de": [19911], "sports.williamhill.com": [18407], "www.cpaste.org": [19706], "erkamp.me": [2024], "www.islam-guide.com": [8364], "iamdo.ug": [2024], "attic.apache.org": [1118], "www.primabanka.sk": [13105], "bugs.farmanager.com": [5650], "myaccount.cheshireeast.gov.uk": [3071], "static.novayagazeta.ru": [21169], "mein.1und1.de": [91], "wdc-api04.mollom.com": [10573], "cdn01.x-plarium.com": [22641], "url.bjr.pro.br": [2024], "nowness.com": [11574], "beon.io": [2024], "url.jackdavi.es": [2024], "123.nso.ru": [21192], "zenmate.sg": [18917], "hchc.co": [2024], "dml.georgetown.edu": [6531], "yourpshome.net": [18818], "www.abuseipdb.com": [489], "granitephone.com": [14847], "www.savethekoala.com": [1406], "cic.ch": [1680], "cat-pilot.eduroam.org": [5089], "md.fbk.info": [5691], "tucan.travel": [2024], "trekfm.link": [2024], "wordp.ly": [2024], "www.whatsmychaincert.com": [18330], "press.malwarebytes.org": [9941], "i1.rgstatic.net": [13481], "apps.opera.com": [12086], "tenshoku.srad.jp": [21956], "wlth.fr": [2024], "www.legolanddiscoverycentre.co.uk": [9249], "www.uhrady.rtvs.sk": [13536], "www-optimized.djicdn.com": [4029], "reality.la": [2024], "bvc.me": [2024], "xpl.co": [2024], "searchnetworking.de": [16083], "connx.de": [2024], "bitso.com": [2040], "www4dev.uwm.edu": [17379], "i.warosu.org": [18078], "go.pol.bbelements.com": [1742], "roem.ru": [14001], "difference.play-asia.com": [12828], "wifilib.fr": [18377], "moodle-ext.thm.de": [15876], "images.online.microfocus.com": [10382], "www.redfern.me": [13752], "f.suntravel.xyz": [2024], "ads.glispa.com": [6692], "gugun.ga": [2024], "tinypng.com": [16560], "hhl.li": [2024], "nanopool.org": [11069], "photopay.net": [12672], "franklinin5.com": [2024], "tonede.af": [2024], "www.wireclub.com": [18453], "femen.org": [20083], "mollus.oxfordjournals.org": [12222], "www.fybsg.com": [5602], "wiki.rz.htw-berlin.de": [7103], "dsr.pm": [2024], "e3.xhamsterpremiumpass.com": [18607], "thetrinity.ch": [2024], "fegp.unizar.es": [17441], "mc1.maps.live.com": [9495], "s1.pir.fm": [12759], "api.wechat.com": [18116], "i.c.dk": [2512], "sched.org": [14411], "www.webnames.ru": [22550], "luxa.sslcs.cdngc.net": [19533], "lynton.ws": [2024], "euroforum.com": [5403], "websitealive8.com": [18242], "becker-wustl.libapps.com": [9302], "help.discogs.com": [4529], "intranet.cnrs.fr": [6174], "lkrefi.com": [2024], "wirral.firmstep.com": [20109], "film.ru": [20094], "www.ixirc.com": [20620], "support.readcube.com": [13666], "live.meetme.com": [10224], "mrt.gs": [2024], "bobvdv.be": [2024], "ec.delmarva.com": [2024], "dha.gov.au": [4292], "www.ordermychecks.com": [7199], "img2.km.com": [20738], "ltx-fashion.de": [2024], "www.providerfinder.anthem.com": [19206], "waag.org": [18034], "acpa.ca": [788], "www.peacecenter.org": [12536], "km.com": [20738], "www.healthiertogethergm.nhs.uk": [10953], "codepicnic.com": [3349], "mdapplicants.com": [9746], "sls.a1le.bz": [2024], "*.kirjoitusalusta.fi": [8928], "banners.store.apple.com": [1151], "ash.sh": [2024], "gradsrv.itsc.cuhk.edu.hk": [2704], "franchise.play-asia.com": [12828], "www.memorydealers.com": [10272], "www.tofinosecurity.com": [16603], "im.baden-wuerttemberg.de": [19302], "*.filmthreat.com": [5790], "mojandroid.sk": [10570], "haitao.nosdn4.127.net": [41], "oekolandbau-prered.ble.de": [19406], "unitesearch.un.org": [17057], "ohs.stanford.edu": [15448], "w.exekuo.com": [2024], "mishi.ninja": [2024], "www.purevpn.com": [13285], "update.microsoft.com": [10395], "tampi.co": [2024], "www.stackpath.com": [21970], "ntrs.larc.nasa.gov": [17107], "dentalxchange.com": [4886], "redwn.gs": [2024], "login.anadolu.edu.tr": [1029], "president.georgetown.edu": [6531], "news.google.com.*": [6821], "australia-unsc.gov.au": [1405], "www.kralenstart.nl": [9016], "iwi-i.info": [20617], "9.sisap.cat": [2024], "askforta.sk": [2024], "vlg.citilink.ru": [19594], "intechnology.co.uk": [8039], "typora.io": [16988], "www.porndig.com": [21464], "mysloan.mit.edu": [9763], "fusiontools.clickmotive.com": [3249], "www.zutphen.nl": [11172], "gift.stanford.edu": [15448], "data.bassetlaw.gov.uk": [1714], "trs4.me": [2024], "on.30lin.es": [2024], "wndry.com": [2024], "download.uhulinux.hu": [22349], "mobileapps.lowes.com": [9645], "ica.to": [2024], "gradschool.umd.edu": [17351], "shop.poema.ro": [2024], "onit.im": [2024], "www.stat.onestat.com": [11883], "www.kapiton.se": [8804], "downloads.xen.org": [22648], "www.mpornpass.com": [10708], "nobull.co": [2024], "m.cmbchina.com": [2639], "velikieluki.startsmile.ru": [21980], "www.startnext.com": [15478], "frsh.lt": [2024], "petrology.oxfordjournals.org": [12222], "www.iem.thm.de": [15876], "4-2.co": [2024], "huopin.1688.com": [51], "capsu.la": [2024], "static.playmates.com": [12846], "cdn.comparethemarket.com": [3513], "readability.com": [13675], "static.cineclick.com.br": [3148], "pentest-tools.com": [21383], "ylai.state.gov": [17146], "www.alternc.org": [928], "lyr-ics.in": [2024], "aom.im": [2024], "sambir.lanet.ua": [20780], "x.namuk.com": [2024], "urbn.xyz": [2024], "directory.fsf.org": [5590], "developer.mailchimp.com": [9893], "stealfromwork.crimethinc.com": [3793], "www3.havant.gov.uk": [20347], "bugsy.grid.aau.dk": [446], "mymm.co": [2024], "flixbus.se": [5911], "batinfo.co": [2024], "ctune.co": [2024], "de.regiochannel.com": [13791], "cdn4.thr.com": [15878], "m.lyngsat.com": [20897], "www.hotjar.com": [20412], "jedec.org": [20634], "ar.islamictech.com": [8380], "community.lloydsbank.com": [9537], "cwbys.co": [2024], "pgl.co.uk": [21393], "einstein.phys.uwm.edu": [17379], "*.zonza.tv": [18854], "www.strato-hebergement.fr": [14255], "suzie.io": [2024], "hg.dovecot.org": [4713], "reductr.es": [2024], "id.cloudflare.com": [3284], "popcorntime.ws": [21461], "www.reverbnation.com": [13899], "shadforth.co": [2024], "sqwid.co": [2024], "openjb.com": [2024], "www.nllapps.com": [21144], "fpe.uniovi.es": [17282], "it.mail.ru": [9891], "scontent-b.cdninstagram.com": [2572], "developer.realvnc.com": [13687], "tmn.to": [2024], "www.loveplanet.ru": [9635], "files.*.geblogs.com": [6507], "ncjrs.gov": [10925], "www.bravelyonward.com": [2312], "soch.us": [2024], "brianb.tech": [2024], "krasnysulin.startsmile.ru": [21980], "networkforgood.org": [11304], "vp-studentaffairs.stanford.edu": [15448], "ajax.vacationroost.com": [17614], "projects.blender.org": [2086], "dvlphnt.co": [2024], "hinck.link": [2024], "www.jdsupra.com": [8440], "www.adspeed.net": [595], "*.wepay.com": [18121], "ap.unit4.com": [22378], "aviris.nkl.fi": [1475], "universe2.us": [17318], "www.navigantresearch.com": [11153], "www.broadland.gov.uk": [19454], "hsbsolomon.com": [2024], "www.herbal-nutrition2.net": [7322], "sitefinitysts.psc.gov": [21528], "*.cfspx.digitalriver.com": [4469], "download.filezilla-project.org": [5782], "geekify.com.au": [6487], "qupzilla.com": [13432], "catalogue.ic.nhs.uk": [10953], "www.shopstyle.*": [14781], "s.tesp.info": [2024], "*.acquia.com": [534], "vatan.im": [2024], "negocios.vodafone.pt": [17903], "rt.dengisend.ru": [4344], "www.lakebtc.com": [9149], "pro.marinsoftware.com": [10005], "camlinker.co": [2024], "eda.ksk66.ru": [20759], "gw2.link": [2024], "lazza.me": [2024], "www.fressnapf.de": [6187], "www.wavecon.de": [18105], "zhihuhu.duapp.com": [19902], "umag.ca": [17159], "brennie.uk": [2024], "www.polit.ru": [12914], "api.mixbit.com": [10502], "vianetfuelsolutions.com": [17750], "evfree.cc": [2024], "science.williams.edu": [18408], "link.dhym.us": [2024], "vszp.sk": [17958], "rnpn.ch": [2024], "secure.johnstonpress.co.uk": [8628], "personal.zoho.com": [18984], "dlvry.cm": [2024], "crossref.org": [3812], "support.netapp.com": [11221], "www.xn--b1aoke0e.xn--90aijkdmaud0d.xn--p1ai": [22654], "tvcom-tv.ru": [22324], "quack.us": [2024], "www.twinings.co.uk": [16952], "content.presspage.com": [13079], "ppdb.hslu.ch": [7589], "e-portfolio.plymouth.ac.uk": [12873], "toyota.axonify.com": [1502], "li.4ngs.com": [2024], "asw.play-asia.com": [12828], "diff4.smartadserver.com": [15049], "torrentz.eu": [16663], "docs.kde.org": [8735], "go.padsdel.com": [12355], "videoapi.my.mail.ru": [9891], "www.taxandbenefits.bolton.gov.uk": [19424], "www.londontrustmedia.com": [20874], "kodewulf.in": [2024], "youqn.co": [2024], "gingerc.me": [2024], "www.bandisoft.com": [1664], "d3c0d3.com": [2024], "nicolesy.me": [2024], "www.google.*": [6822, 6824, 6829, 6831], "chka.se": [2024], "u.i-sc.ru": [2024], "mirrors.quranicaudio.com": [13436], "japgr.pl": [2024], "cms.madametussauds.com": [9853], "bmcfadden.me": [2024], "interact.f5.com": [5537], "f100.me": [2024], "www.rawstudio.org": [13644], "french.burkinafaso.usembassy.gov": [22406], "rentbot.info": [2024], "*.anyoption.com": [1115], "gumroad.com": [7002], "www-stats.kaltura.com": [8790], "apps.warwickshire.gov.uk": [22532], "schneider-electric.com": [14420], "link.henley.co": [2024], "e-ent.de": [2024], "www.navdem.com": [11149], "provo.io": [2024], "project-lbs.web.cern.ch": [2588], "pdc.st": [2024], "dvrinfo.de": [2024], "bitcalm.com": [1955], "i.ddr5.tech": [2024], "remit.hdfcbank.com": [7249], "www.payu.ru": [12522], "www.infoseek.co.jp": [8130], "yano.do": [2024], "firedrive.com": [5841], "opsca.mp": [2024], "l1nk.it": [2024], "cdn1.spiegel.de": [15342], "jobs.pcworld.com": [14893], "www.ecsi.net": [4873], "static2.avast.com": [1469], "archomedia.com": [1198], "simplegiver.com": [10558], "virtkick.io": [17829], "www.fsoa.org.uk": [20180], "www.e-ksf.org": [4835], "da.3.boardgamearena.com": [2182], "www.safecount.net": [14293], "login.msu.edu": [21040], "www.melkweb.com": [2797], "cclcm.ccf.org": [3237], "miramax.com": [10477], "www.thompson.com": [16451], "ad.aim4media.com": [784], "fjallfoss.fcc.gov": [5699], "www.unionpay.com": [17281], "msuth.me": [2024], "server.icewarp.com": [7911], "www.oumedicine.staywellsolutionsonline.com": [12173], "bios-mods.com": [1938], "ju.stin.li": [2024], "nvenergy.com": [11018], "www.plastidipuruguay.com": [12817], "www.chipdip.ru": [19582], "chillmenau.de": [2024], "mein.webprospector.de": [18177], "service.burst.net": [2462], "linux.ubuntu.org.cn": [17174], "mnrva.co": [2024], "kundcenter.prq.se": [12320], "nickeltips.co": [2024], "palgrave.com": [12372], "www2.turntonetworks.com": [16914], "nutricentre.com": [11621], "gms.to": [2024], "beacon.affil.walmart.com": [18059], "internet2.edu": [8277], "310shake.fit": [2024], "piwik.xplr.com": [18678], "hackint.org": [20331], "status.simple.com": [14884], "wcfia.harvard.edu": [7211], "grw.tech": [2024], "www.obit.ru": [21223], "csis.gc.ca": [2816], "www.katylee.com": [8835], "vice-sundry-assets-cdn.vice.com": [17754], "heatball.de": [7275], "yg4u.co": [2024], "domena.cz": [4663], "jeanloui.se": [2024], "assets.euractiv.com": [5388], "toyta.lk": [2024], "pp.asana.com": [1265], "on.tumqo.com": [2024], "status.compose.io": [3530], "keygens.nl": [8882], "courses.lis.illinois.edu": [17346], "grabrs.com": [2024], "www.yoursole.com": [18822], "mweb.io": [2024], "riog.biz": [2024], "go.mobiwatch.de": [2024], "swtr.it": [2024], "way.tf": [2024], "crowthornepc.org.uk": [19726], "tempo.juegos": [2024], "tptr.co": [2024], "shopta.city": [2024], "intl.alipay.com": [864], "j.kissinsights.com": [8744], "www.leagueoflegends.com": [9220], "news.auto.ru": [19276], "performancewheel.com": [12602], "www.turnoff.us": [22314], "docs.connect.squareup.com": [15396], "imgwx1.2345.com": [98], "*.onstreamsecure.com": [11922], "app.stitcher.com": [15544], "vendercom.com": [17692], "shoplocal.com": [14777], "ecbicalho.tk": [2024], "www.geef.nl": [6471], "vbseo.com": [17555], "ru3.us": [2024], "bauble.it": [2024], "fraedom.com": [20146], "icompass.insightexpressai.com": [8173], "bright-things.com": [2335], "www.marketdojo.com": [10019], "calibre-ebook.com": [2757], "shp.sx": [2024], "*.imagesbn.com": [7986], "bytl.co": [2024], "www.netfox.ru": [11271], "owa.portal.srgssr.ch": [21957], "cryptocointalk.com": [3850], "weekend.rambler.ru": [13600], "shp.sn": [2024], "*.dlisted.com": [4584], "z8.sinaimg.cn": [14910], "*.emv3.com": [5186], "s0.life.itc.cn": [8401], "www1.eere.energy.gov": [5243], "www.ua-hosting.com.ua": [17160], "eneo.dict.cc": [4442], "ctserc.net": [2024], "go.temabbm.com": [2024], "go.emitis.ir": [2024], "rickodc.com": [2024], "go.rm.fm": [2024], "www.vg247.com": [22454], "*.authorize.net": [1435], "kennetnorthwilts.greenparty.org.uk": [6908], "adbusters.org": [620], "zeuscat.com": [18953], "go.q13fox.com": [2024], "www.brokentoaster.com": [2376], "cunyjpl.us": [2024], "eas4.emediate.eu": [5194], "cr0p.me": [2024], "library.oxfordjournals.org": [12222], "talk.hbo.com": [7031], "media.idownloadblog.com": [7715], "link.bsa-web.fr": [2024], "pwp.fyi": [2024], "r.mail.ru": [9891], "cdn3.gbot.me": [6791], "factorydirectcabins.com": [5616], "research.yammer.com": [18737], "www.haystacksoftware.com": [7242], "gek.im": [2024], "riff.ly": [2024], "inspection.alibaba.com": [857], "www.boardzoo.com": [2184], "connect.guide": [2024], "submit.nature.com": [11140], "wellesley.worldcat.org": [18536], "gnz.biz": [2024], "media1.woolworths.com.au": [18511], "tauntondeane.objective.co.uk": [21225], "www.briandunning.com": [2329], "c1.mifile.cn": [10411], "tesla.com": [22127], "easyicon.net": [19942], "earth.350.org": [140], "git75.rostrud.ru": [21677], "sslop.es": [2024], "strangeworlds.co.uk": [15572], "www.aussieperthtours.com.au": [1401], "gxxx.qiyukf.com": [21560], "whybeez.fr": [2024], "iwk.us": [2024], "ehostpros.com": [5668], "www.store.acs.org": [974], "s.ststat.com": [14609], "brandingwarr.io": [2024], "l.nova-vitae.nl": [2024], "*.uvic.ca": [17155], "billing.at-home.ru": [19266], "hit.city": [2024], "doris.desy.de": [4386], "webassets.gunosy.com": [7005], "1.takhsiru.net": [2024], "xsur.tk": [2024], "wolframscience.com": [18490], "mlkscholars.mit.edu": [9761], "www.asdapriceguarantee.co.uk": [19250], "thinkpads.com": [16439], "secure.goemerchant.com": [6758], "thn.li": [15877], "www.ocaml.org": [11649], "mojo.st": [2024], "admin1.play-asia.com": [12828], "eu3.factorio.com": [20068], "twal.kr": [2024], "pay.q-u.co": [2024], "discvr.co": [2024], "brennu.tk": [2024], "r-hpc.com": [13444], "*.politifact.com": [12915], "user.pictures": [2024], "addm.social": [2024], "acd.mn": [2024], "se.flixster.com": [5913], "weldre1.illuminateed.com": [20494], "tbray.org": [15854], "www.nuand.com": [11605], "nfs9.hk": [2024], "dr.rocketbank.ru": [13994], "www.twisted4life.com": [16957], "tfl.gov.uk": [16756], "binzhou.jd.com": [8434], "studyinaustralia.gov.au": [15611], "51.rkn.gov.ru": [13971], "apsheronsk.tpprf.ru": [22260], "tv.giphy.com": [6646], "origin.myfonts.com": [10804], "www.moava.org": [10526], "www.mbezpeka.kyivstar.ua": [9067], "open2.baidu.com": [1641], "membership.nrahq.org.org": [21181], "www.moodle.umontpellier.fr": [22365], "aristotelian.oxfordjournals.org": [12222], "bit.five8.co": [2024], "customers.brandl-services.com": [2304], "abfahrtsmonitor.vrr.de": [17954], "www3.lenovo.com": [9265], "29q.co": [2024], "cdn1.vntsm.com": [22481], "loadan.exelator.com": [4988], "www.huizen.nl": [11172], "hertzequipmentrentals.com": [7371], "www.arbor.net": [1185], "lists.wireless.org.au": [18457], "2.dashes.com": [2024], "www.xagyl.us": [18592], "uweb2.host.ie": [4499], "blackhat.com": [2057], "www.kitematic.com": [8936], "effgnt.co": [2024], "inlinguatest.tocco.ch": [16600], "deci.ph": [2024], "goril.ly": [2024], "djkit.com": [4030], "www.jquery.com": [8463], "*.artsprojekt.com": [18902], "tsq.re": [2024], "joker.com": [8634], "jepp.co": [2024], "jmac.ly": [2024], "tepid.litle.com": [9482], "www.hska.info": [20437], "www.wayskinny.com": [18109], "wbtm.co": [2024], "medialinx-academy.de": [10186], "greenhouseci.com": [20307], "projects.dm.id.lv": [4033], "mail.scipy.org": [14437], "frontiersinzoology.biomedcentral.com": [1931], "saph.twistedmatrix.com": [16958], "srcefd.co": [2024], "ins.iotne.ws": [2024], "sourceconference.com": [15245], "rave.ohiolink.edu": [11799], "laweval.neu.edu": [10944], "www.firstamendmentcenter.org": [5856], "utils.kde.org": [8735], "st.uz": [21966], "analytics.spongecell.com": [21940], "spctrmdv.us": [2024], "curate.vbstatic.co": [17556], "www.pirateproxy.net": [22174], "soyfi.com": [2024], "gameinfo.na.leagueoflegends.com": [9219], "xajax-prod.rejseplanen.dk": [13810], "2applyclick.me": [2024], "phtr.co": [2024], "b.makahisea.com": [2024], "jonho.lt": [2024], "blog.codecentric.de": [3360], "press.udemy.com": [17194], "www.respekt.cz": [21635], "smartcity.wien.at": [22588], "mmf.cc": [2024], "illiad.ust.hk": [22412], "www.browserid.org": [2387], "www.typo3.org": [15959], "blns.in": [2024], "admitad.cdnvideo.ru": [19536], "imode.golem.de": [6804], "u.aliexpress.com": [854], "console.lab.appuio.ch": [1168], "www.synthetix.net": [15808], "on.ae.com": [2024], "staticsitegenerators.net": [15495], "nic.ar": [10957], "medias3.prestashop.com": [13085], "kuban.sledcom.ru": [21858], "quote.liberis.co.uk": [20827], "homebase.co.uk": [7486], "statics.plurk.com": [12867], "*.biblesociety.co.za": [18801], "www.openarchives.org": [12033], "mcch.at": [2024], "nic.ac": [11420], "*.caseking.de": [2886], "fayve.me": [2024], "my.n8d.at": [2024], "computer.play-asia.com": [12828], "www.jappix.org": [8530], "gm.163.com": [50], "www.empirehost.me": [19989], "xmn.io": [2024], "l.agoama.tw": [2024], "rantoulpress.com": [13610], "cdn.amazon.jobs": [959], "cmgventur.es": [2024], "elondr.es": [2024], "mvn.io": [2024], "striata.at": [2024], "www.lucidpress.com": [9655], "cogneurosociety.org": [19641], "api2.wosign.com": [18483], "motorhome.ma": [2024], "english.alarabiya.net": [19131], "blog.webonic.hu": [18229], "cgar.ch": [2024], "hailavenger.com": [7154], "d.rnk.me": [2024], "www.ceredigion.gov.uk": [2972], "excelatlife.com": [20046], "tfi.sh": [2024], "ctep-ebp.com": [2697], "www.mea.elsevierhealth.com": [5179], "yun.yunbi.com": [18840], "go.mrsnorum.com": [2024], "prefs.zemanta.com": [18912], "ln.niekis.lt": [2024], "www.inf.tu-dresden.de": [15937], "trainingindustry.com": [16730], "www.coverstand.com": [3724], "blogs-images.forbes.com": [5995], "static.victorinox.com": [17761], "heute-show.de": [22709], "i.earn.org": [2024], "alertbot.com": [836], "flecs.alfabank.ru": [849], "crate.co": [2024], "www.destructoid.com": [4384], "login.weixin.qq.com": [13329], "*.icsdelivery.com": [7924], "forumatic.com": [6042], "cdn.els-cdn.com": [5174], "*.doe.gov": [17300], "rcat.co": [2024], "www.joycasino1.com": [20654], "out.ofsite.eu": [2024], "livewire.amnesty.org": [1000], "kurgan.startsmile.ru": [21980], "*.blkb.ch": [20683], "openbank.ru": [21267], "bueagl.es": [2024], "systemintegra.ru": [15824], "www.ja-sig.org": [8535], "1166dxnj1gha6kx68h2qbqtebg45yvqsexya5089.ipleak.net": [20571], "portal.iter.org": [7849], "pic8.58cdn.com.cn": [213], "www.fomnetworks.com": [5574], "s19.qhimg.com": [13347], "img1.2345.com": [98], "css.cals.cornell.edu": [3676], "loc.gov": [9541], "eroshare.com": [5338], "www2.citibank.com": [3174], "account.my.t-mobile.com": [15837], "secure.nildram.net": [11445], "patron.fsf.org": [5590], "admin.rpmfusion.org": [14056], "www.eastdane.com": [19936], "downloads.haskell.org": [7220], "itch.io": [8402], "go.cgrs.tk": [2024], "panel.djangoeurope.com": [4581], "www.yellowbook.acs.org": [974], "api.freebase.com": [6133], "connect.qq.com": [13329], "www.angreifer.org": [1060], "softcreatr.de": [15157], "wayfsp.wayf.dk": [17988], "pdi.gr": [2024], "jiveworld.jivesoftware.com": [8598], "bulletin.georgetown.edu": [6531], "partspider.com": [12450], "link.jrnsg.de": [2024], "bba.sg": [2024], "www.interdiscount.ch": [3647], "mttd.net": [2024], "www.popatomic.org": [12951], "investor.tremorvideo.com": [16785], "milkandmore.co.uk": [10433], "businessfinder.mlive.com": [9777], "domainauctions.moniker.com": [8880], "vdara.lv": [2024], "supportcenter.checkpoint.com": [3052], "*.pokylinux.org": [12902], "link.21in1.com": [2024], "j-p.al": [2024], "astronomicaltours.net": [1328], "aka.ph": [2024], "t.mutemuse.com": [2024], "*.campaigner.com": [2792], "migipedia.ch": [10417], "www.komro.net": [8982], "globalweb.co.uk": [6717], "maninthemirror.org": [9948], "www.fastcodesign.com": [5669], "w.petiz.me": [2024], "v.reler.org": [2024], "news.aioe.org": [787], "bicademy.bite.lt": [2015], "www.cimbclicks.com.my": [2618], "zh.chaturbate.com": [3040], "s.miyachiki.me": [2024], "www.svgopen.org": [14265], "scsanctions.un.org": [17057], "i.bigmir.net": [1894], "suggests.rasp.yandex.com": [18742], "stacklet.com": [15429], "gicl.me": [2024], "ads.ventivmedia.com": [17697], "l.nhz.de": [2024], "racf.ca": [2024], "adam.amnesty.org": [1000], "service.teleguide.info": [22115], "dmcargo.ahosting.cz": [782], "customercenter.truecommerce.com": [22296], "envisionfinancial.ca": [5298], "tlee.co": [2024], "nike.com": [11440], "adnetexpress.net": [19084], "youtube.com.lv": [18800], "www.autobytel.com": [1449], "privacy.stanford.edu": [15448], "wimp.com": [18414], "kuup.me": [2024], "www.ind.ie": [8052], "s1.ssl.qhimg.com": [13347], "youtube.com.lb": [18800], "www.dearbytes.com": [4252], "voltage.com": [17921], "www.appcanary.com": [1133], "actis.ru": [19058], "monitoring.pipni.cz": [12287], "www.evanced.info": [5424], "www.sozialwissenschaften.htwk-leipzig.de": [7596], "p.tanx.com": [22097], "m.desy.de": [4386], "phil-lui.de": [2024], "imgmini.eastday.com": [5010], "images.thoughtbot.com": [16462], "diweb.co": [2024], "factoryselecthomes.com": [5616], "static.dlvrit.com": [19855], "intus.pro": [2024], "www.freelauri.com": [6119], "wsjeuropesubs.com": [11361], "rtvs.sk": [13536], "www.51fanli.net": [209], "jh4re.com": [2024], "cldsi.de": [2024], "stayintheknow.co.uk": [21985], "www.ohloh.org": [11803], "cas.myuni.sydney.edu.au": [22063], "hackerspace.gr": [6897], "asset-c.soup.io": [15235], "o.oggyb.me": [2024], "www.piratenpartei.at": [12754], "rlhtv.com": [2024], "muse.mu": [10746], "icons.wxug.com": [18128], "feedback.kyivstar.ua": [9067], "card.uv.es": [17544], "*.redcatsecom.com": [13743], "www.mobileworldcongress.com": [21003], "cpanel.net": [2667], "sirrix.de": [14926], "coffi.be": [2024], "go.fwbbbab.org": [2024], "oascentral.bostonherald.com": [101], "narshe.me": [2024], "wa5.northyorks.gov.uk": [21161], "olivier.im": [2024], "www.togethertrust.org.uk": [22228], "z2.sinaimg.cn": [14910], "git60.rostrud.ru": [21677], "profileapi.services.microsoft.com": [10396], "detektor.fm": [4390], "satsoda.com": [2024], "bitmazk.com": [2028], "www.leedsportal.leeds.ac.uk": [17403], "puphpet.com": [21542], "*.twenga.com": [16946], "yidianzixun.com": [22679], "nslds.ed.gov": [4881], "www.slackhq.com": [15008], "yuba.stanford.edu": [15447], "inbound.onl": [2024], "kllc.tv": [2024], "debian-administration.org": [4258], "lintian.debian.org": [4263], "login.carbook.com": [3121], "fac.legal": [2024], "blinksale.com": [2096], "www.ecsi.com": [4874], "sexyt.me": [2024], "bildungsservice.vcd.org": [17560], "origin-assets.clickmotive.com": [3249], "prelive.bvg.de": [1605], "husani.it": [2024], "wiki.openoffice.org": [1117], "*.blogads.com": [13084], "sharypovo.startsmile.ru": [21980], "dev.adsnative.com": [19091], "prmo.de": [2024], "ssp.microad.jp": [10377], "www.openadultdirectory.com": [11952], "swww.play-asia.com": [12828], "libraryservices.bertrams.com": [1850], "rddl.me": [2024], "kb.sucuri.net": [15639], "fibank.bg": [5755], "mobil.dn.se": [19856], "xtrpl.us": [2024], "www.v4c.org": [22420], "to.pbs.org": [2024], "www.prgmr.com": [13093], "it.aegeanair.com": [6896], "www.parrot.com": [12442], "www.hertzvans.co.uk": [7370], "x.smmc.co.nz": [2024], "kuix.de": [9045], "taganrog.biglion.ru": [19375], "cdn.chefkoch.de": [3062], "skm.dk": [14965], "www.internetsafetyproject.org": [8272], "cyseclabs.com": [3983], "lithium.mediamarkt.de": [20949], "secureportal.stockport.gov.uk": [21994], "barclaycard.co.uk": [1690], "eforensicsmag.com": [4904], "www.q3k.org": [13319], "*.digibib.net": [4460], "www.fiber7.ch": [5756], "news.saucal.com": [2024], "www.corporatecardapplication.com": [3682], "0x539.se": [8], "www.eumostwanted.eu": [20031], "test.net-entreprises.fr": [21107], "www.intensitylab.com": [8224], "www.gettag.mobi": [6589], "www.finalbuilder.com": [20097], "www.powys.gov.uk": [21474], "kundeservice.tdc.dk": [15862], "bmcmededuc.biomedcentral.com": [1931], "drinklib.com": [2024], "strato.*": [14255], "labs.duo.com": [4797], "analytics.archive.org": [8269], "bgripes.com": [2024], "s.muraka.me": [2024], "nwl.lc": [2024], "*.tehconnection.eu": [16127], "hlab.tv": [2024], "s.benn.eu": [2024], "svn.mdk3.aircrack-ng.org": [19122], "s.ayyo.ru": [19292], "*.hotels.com": [7562], "www.connman.net": [3581], "desotofl.com": [2024], "r1.ykimg.com": [22681], "joycasino12.com": [20654], "see.onafro.tv": [2024], "encnt.se": [2024], "tambov.biglion.ru": [19375], "www.erooups.com": [5337], "www.norwegianclass101.com": [11549], "piwik.broadcasthe.net": [2371], "netfirms.com": [11266], "www.zenodo.org": [22714], "wchor.us": [2024], "oauth.accounts.firefox.com": [5842], "www.npmjs.com": [11579], "www.zenmate.jp": [18917], "www.dfri.se": [4425], "curesec.com": [3922], "bankid.no": [1668], "newsletter.manageengine.com": [9951], "mymode.re": [2024], "to.d2pics.com": [2024], "c.bako.com": [2024], "esqac.eastsussexlearning.org.uk": [19940], "blowm.no": [2024], "bomb.bz": [2024], "openit.de": [11982], "leadback.advertising.com": [713], "dome.mit.edu": [9763], "usal.worldcat.org": [18536], "si4.rgstatic.net": [13481], "on.njnets.com": [2024], "newsroom.shaw.ca": [14748], "b.mph.name": [2024], "defcongroups.org": [4017], "youtube.fr": [18800], "t-mobile.nl": [15836], "explore.cfjlab.fr": [2604], "click237.com": [2024], "mc-d.co": [2024], "www.terrabank.ru": [16200], "webarchitects.coop": [18205], "wpd4u.us": [2024], "galvtx.com": [2024], "canarywatch.org": [2818], "ww5.gloucestershire.gov.uk": [6730], "it.leeds.ac.uk": [17403], "sanoma.fi": [14351], "static.slickdealz.net": [15024], "uplk.me": [2024], "b5.yahoo.co.jp": [18730], "sfxhosted.exlibrisgroup.com": [5460], "u.dc13.com": [2024], "global.staging.nature.org": [11141], "www.kartoteka.ru": [20689], "kr.unionpay.com": [17281], "npzfood.com": [2024], "*.blogspot.co.nz": [2127], "switch.ch": [15762], "jtmch.co": [2024], "gzhi.gov-murman.ru": [20293], "premiagi.ru": [21483], "vpn-us-west.symantec.com": [15780], "ftp.rnl.ist.utl.pt": [16098], "www.t3.io": [15843], "partners.yandex.by": [18739], "www.buergernetz-gera-greiz.de": [2414], "analytics.slashdotmedia.com": [15013], "data.zapsibkombank.ru": [18890], "members.maximintegrated.com": [10108], "video.yandex.ua": [18747], "de-z.in": [2024], "faar9.com": [2024], "plugins2.geany.org": [6463], "jase.im": [2024], "popcenter.co": [2024], "halfashed.army": [2024], "newzoftheworld.com": [10322], "ahmd.us": [2024], "www.talentopoly.com": [15985], "ifcext.ifc.org": [8257], "libopenraw.freedesktop.org": [6102], "gu.tdconline.se": [15865], "jadia.us": [2024], "s.ypl.me": [2024], "15.rkn.gov.ru": [13971], "fundh5.mipay.com": [10473], "pathways2gsfa.org": [12488], "kimberlee.me": [2024], "ipv6.doesnotwork.eu": [4622], "8nn.tv": [2024], "scr3.golem.de": [6804], "korolev.tpprf.ru": [22260], "www.dragonair.com": [4736], "tbcn.es": [2024], "dematec.ens.fr": [4922], "football.lemonde.fr": [9204], "static.consultant.ru": [19672], "stpmvt.com": [2024], "mikemasin.com": [10422], "zvv.ch": [22733], "shtrafy.a-3.ru": [258], "nasajobs.nasa.gov": [10909], "*.fernuni-hagen.de": [5742], "cpatools.us": [2024], "rhombus-tech.net": [13921], "feeds.uptodown.com": [22396], "seom.us": [2024], "dex.send.microad.jp": [10377], "gobot.io": [6784], "uniqlo.us": [2024], "abcnews.go.com": [285, 286], "sites.7-eleven.com": [227], "rmp.design": [2024], "www.cemetech.net": [2942], "forbrukerportalen.no": [5997], "ua.censor.net.ua": [19538], "www.gcmasia.com": [6287], "zoom.do": [2024], "online.northumberland.gov.uk": [21160], "www.hepe.com": [7318], "flightglobalimages.com": [5900], "fiercepharma.com": [5763], "portnoy.co": [2024], "ercnsm.osu.edu": [11797], "ggdns.de": [20242], "comicfury.com": [3469], "upmchp.us": [2024], "rxs3.answcdn.com": [1095], "*.webex.com": [18158], "macupdate.utorrent.com": [22337], "link.nt33.fr": [2024], "theln.mg": [2024], "public.govdelivery.com": [6846], "train.moodlerooms.com": [21017], "ad.z5x.net": [4076], "www.soundkit.io": [15227], "doc.openmandriva.org": [11992], "l2305.net.tf": [2024], "quidsi.com": [21567], "u.tilsimat.net": [2024], "vidia.swisscom.ch": [15761], "imx.solid-run.com": [15187], "scopus.com": [14453], "app.captora.com": [19508], "lk.relcomhost.ru": [13814], "cmnf.osu.edu": [11797], "portal6.hku.hk": [20387], "suicidegirls.com": [15650], "tinkoff.majordomo.ru": [9914], "shared.od.org": [11652], "d-mk.co": [2024], "mhost4.ispserver.com": [20588], "pop.com.br": [12309], "www.ll.mit.edu": [9763], "reclaiming.pink": [2024], "computersweden.idg.se": [7709], "www.cs.ncsu.edu": [11530], "engineering.opendns.com": [11969], "support.canonical.com": [2823], "www.newit.co.uk": [11336], "gosobrnadzor.permkrai.ru": [21390], "sa3.roadtrippers.com": [21659], "zahranicne.aktuality.sk": [1507], "spotify.com": [15367], "helpdesk.sugarsync.com": [15648], "gdain.es": [2024], "moscow.sci-hub.cc": [14436], "docs.libreoffice.org": [9327], "nja.mx": [2024], "eb.la": [2024], "www.igowild.com": [7958], "forums.zmanda.com": [18980], "www.getclouder.com": [6554], "duchateau.work": [2024], "www.ust.hk": [22412], "bkstn.com": [2024], "a.secte.ga": [2024], "dexter.friday.ru": [20175], "zaks.ru": [22705], "glo.li": [2024], "www.jdkasten.com": [8439], "eset.at": [4945], "qc-audio.link": [2024], "pleasure.borsen.dk": [2244], "bzr0.sv.gnu.org": [6337], "peacefire.org": [12537], "scholar.google.co.*": [6821], "mytrek.us": [2024], "auto.ricardo.ch": [13923], "reportonline.thamesvalley.police.uk": [22136], "compari.ro": [3514], "on.premis.is": [2024], "ann-clinmicrob.biomedcentral.com": [1931], "www.stura.htwk-leipzig.de": [7596], "go.gorilla.blue": [2024], "freebase.com": [6133], "www.easynews.com": [5019], "assets.seedrs.com": [14614], "georgia.kavkaz-uzel.ru": [20694], "go.ofpcss.com": [2024], "img-super11.mncdn.com": [10516], "femsle.oxfordjournals.org": [12222], "www.somethingawful.com": [15200], "bugs.flyspray.org": [20127], "archaea.ucsc.edu": [17389], "simple-talk.com": [14883], "tn.imhd.sk": [8004], "shrae.com": [2024], "images.dt-static.com": [4653], "vol.pyeongchang2018.com": [21545], "katalog.uu.se": [17153], "to.goto.team": [2024], "www.xxxyours.com": [22662], "music.bezeq.co.il": [19362], "s-media-cache-ec0.pinimg.com": [12724], "cl.godaddy.com": [6755], "heliosiq.adtechus.com": [692], "nxtesc.co": [2024], "further.cf": [2024], "appnexus.adperium.com": [678], "apliiq.it": [2024], "alternatives.ca": [932], "centrebookings.lambeth.gov.uk": [20773], "bingplaces.com": [1927], "lipidworld.biomedcentral.com": [1931], "a.wineli.st": [2024], "thnkor.ng": [2024], "eroakirkosta.fi": [5336], "secure.utopia-web.com": [17541], "cjink.com": [2024], "b.dogv.ac": [2024], "mktmbl.com": [2024], "pixel.sitescout.com": [14938], "alnk.us": [2024], "jbox.com": [20631], "qp.hitravel.xyz": [2024], "swift.org": [15752], "syeg.ca": [2024], "*.waeckerlin.org": [18037], "freestyle.vc": [6163], "vjain.me": [2024], "revelation.olasagasti.info": [11818], "ww1972.smartadserver.com": [15049], "sheffield.moderngov.co.uk": [21005], "www.automattic.com": [1452], "ctrss.ms": [2024], "*.agari.com": [763], "www.hk01.com": [7056], "melkweb.com": [2797], "hs10.snstatic.fi": [14208], "reparti.gel.ulaval.ca": [17319], "sbn.fnal.gov": [5741], "my.in-disguise.com": [8028], "appvault.com": [1141], "m.burt.io": [2466], "tuples.random.org": [13606], "store.23andme.com": [100], "fpp.wustl.edu": [18089], "ste.ve.tt": [2024], "www.networkadvertising.org": [11309], "vdtslots.com": [2024], "cionet.info": [2024], "creative.francisfrith.com": [20150], "b.eddi.com": [2024], "bruni.co": [2024], "smartpay.rakuten.co.jp": [13594], "samara.startsmile.ru": [21980], "www.os-cillation.de": [12150], "diversityandaccess.stanford.edu": [15448], "www.kennedy-center.org": [20703], "health-policy-systems.biomedcentral.com": [1931], "www.allybank.com": [914], "flipboard.com": [5905], "tmbrsg.co": [2024], "melb.us": [2024], "tlcpl.org": [2024], "pvt.cuku.us": [2024], "imgs.xkcd.com": [22652], "link.adamjt.net": [2024], "thecd.us": [2024], "m.kinopoisk.ru": [20723], "update.drweb.com": [4776], "mdspr.ms": [2024], "ww38.smartadserver.com": [15049], "campus.uni-due.de": [17252], "fema.gov": [5705], "apps.canvas.uw.edu": [17156], "ftz.li": [2024], "pepperjamnetwork.com": [12586], "kinfo.lk": [2024], "french.dakar.usembassy.gov": [22406], "securabit.com": [14541], "consult.west-norfolk.gov.uk": [22563], "myv.plus": [2024], "m.french.alibaba.com": [857], "wholeearth.com": [18358], "mlpchan.net": [9775], "on.trulia.com": [2024], "activities.alibaba.com": [857], "naima.me": [2024], "epaper.general-anzeiger-bonn.de": [6509], "click.alfabank.kz": [849], "the99.me": [2024], "ticket.www.wp.pl": [18012], "downloads.raspberrypi.org": [13629], "fiercefinance.com": [5761], "www.bip.io": [1941], "7.play-asia.com": [12828], "chip01.chipimages.de": [2609], "virtualnewscenter.wpengine.netdna-cdn.com": [17838], "www.wdr3.de": [18113], "*.stkittszipline.com": [15420], "aiha.org": [19117], "www.webmagazin.de": [18222], "richmond.spydus.co.uk": [21952], "blueskydigit.al": [2024], "cdnjs.cloudflare.com": [3284], "warwickshire.objective.co.uk": [21225], "www.nttdocomo.co.jp": [11008], "*.tutsplus.com": [16926], "mewsite.com": [10353], "www.itemname.com": [20602], "passwords.cites.uiuc.edu": [17030], "www.cis.rit.edu": [13493], "blog.archive.today": [1194], "dew.bz": [2024], "mail.schmidtcom.de": [14419], "s1y.ru": [2024], "yahoo.domaintools.com": [4653], "wikilov.es": [18388], "www.swisscex.com": [14268], "ryazanskaya-obl.beeline.ru": [1778], "bngo.co": [2024], "glb.adtechus.com": [692], "lmnd.ca": [2024], "vmail.connect.comcast.net": [3461], "www.improvely.com": [8024], "imat.nottingham.ac.uk": [11567], "three7.me": [2024], "rl.cm": [2024], "tr.libreoffice.org": [9327], "www.berlin.de": [1821], "y1.f5.si": [2024], "ct.pinterest.com": [12731], "media-noxia.cursecdn.com": [3927], "flixta.pe": [2024], "app.domainskate.com": [4650], "mobilednajournal.biomedcentral.com": [1931], "kinox.to": [20720], "socialconnect.axosoft.com": [1504], "scmfx.pw": [2024], "paypal.adtag.where.com": [18334], "ooshirts.com": [11934], "tprice.me": [2024], "s21.postimg.io": [13024], "runlean.ly": [2024], "etoro.com": [4970], "curezen.gq": [2024], "r6s.us": [2024], "wtsdc.nlm.nih.gov": [11090], "www.leap.se": [9081], "pirate-party.us": [21414], "s3.meituan.net": [10249], "m.ok.ru": [11806], "m.play-asia.com": [12828], "www.cloudmining.guru": [3309], "prjctpl.se": [2024], "cldnrd.io": [2024], "fuz.cm": [2024], "8vn.co": [2024], "publicaccess.leeds.gov.uk": [20799], "astronautix.com": [5230], "mysql-udf-global-user-variables.pureftpd.org": [13282], "qako.me": [2024], "safe.thomson.com": [16457], "*.linux.lu": [9420], "myoffice.bt.com": [1578], "static.fimfiction.net": [5801], "psidata.konsumentverket.se": [20747], "my.nature.org": [11141], "www.zen.co.uk": [18913], "www.pirateunblocked.xyz": [22177], "images2.hertz247.com": [7371], "maysoft.com": [10115], "drdurkin.com": [2024], "chusovoy.startsmile.ru": [21980], "newblood.anonops.com": [1080], "www.portalen.dtu.dk": [16096], "www.ffsg.org": [5557], "data.videohub.tv": [17774], "p.ink.cx": [2024], "waitrose.com": [18045], "bnck.co": [2024], "api.o.qcloud.com": [13346], "savanah.gnu.org": [6337], "gunsmithing.nra.org": [21177], "d.truemoney.com": [2024], "rss.martinus.cz": [10044], "links.native.ad": [2024], "overme.co": [2024], "secure.iows.ikea.com": [7962], "www.openbsd.org": [11955], "www.startovac.cz": [21979], "0am.co": [2024], "blog.loomio.org": [9614], "s.8ratio.ch": [2024], "calibre-ebooks.oss.aliyuncs.com": [19143], "blog.coastcapitalsavings.com": [3335], "nextagnews.nextag.com": [11402], "maribethste.in": [2024], "jwg.is": [2024], "davedarby.it": [2024], "flingu.in": [2024], "jabber.root.cz": [14020], "telphin.ru": [16170], "*.peer39.net": [12546], "wdp.zattoo.com": [18900], "on.allure.com": [2024], "vandyke.com": [17638], "m.mall.sk": [9934], "www.corporate.hsbc.com": [7090], "www.oktatas.hu": [11815], "libpuzzle.pureftpd.org": [13282], "bridgeways.com": [2332], "www.gymglish.co.uk": [7022], "zip.kiva.org": [8939], "www.jacksfetishtube.com": [8494], "go.tofran.com": [2024], "prism.nts.wustl.edu": [18088], "cdn.asset.geek.net": [6473], "www.alpha.gr": [6893], "skylineregistrations.co.uk": [15001], "www.cccure.training": [2557, 2558], "www.di.ens.fr": [4922], "hubspot.leadin.com": [20794], "wrglr.co": [2024], "www.openrce.org": [12003], "www.my.calpoly.edu": [2764], "hoopestonpubliclibrary.worldcat.org": [18536], "www.adfox.ru": [578], "s.hoko.me": [2024], "leovil.la": [2024], "getscroll.com": [6586], "kempte.ch": [2024], "remusexhauststore.com": [13825], "www.lkk-zkh.ru": [20858], "www.attendesource.com": [1364], "www.browseraddon.com": [2390], "w.mrlasser.com": [2024], "passport.zongheng.com": [22722], "order.1and1.com": [69], "dyson.co.uk": [4831], "netveano.com": [11296], "karta.yanao.ru": [22665], "devices.slashdot.org": [15012], "chicagofed.org": [3075], "*.shmoo.com": [16282], "beta.fruitninja.com": [6214], "atos.net": [1357], "i-cdn.servedbyopenx.com": [14664], "*.tds.net": [15869], "1.7-b.us": [2024], "player.snacktv.de": [15086], "thumbs.crakpass.com": [3757], "www.freebieber.org": [5769], "viewpicss.com": [2024], "gearsourceeurope.com": [6465], "grpy.us": [2024], "b.cregox.com": [2024], "fust.ch": [6258], "7gwc-kbhkort.kk.dk": [8748], "www.vhlcentral.com": [17571], "www.givingcomfort.org": [6672], "www.languageperfect.co.nz": [9160], "img2.ntv.ru": [21197], "gxconcepts.com": [2024], "s.makie.me": [2024], "s.gatech.edu": [2024], "login.o.qcloud.com": [13346], "ot11.snstatic.fi": [14208], "www.glandium.org": [20256], "skroutz.gr": [14986], "optimizedby.rmxads.com": [13937], "*.co3sys.com": [3330], "9lugfi7k6kbugpdx.asana.com": [1265], "sourced.fm": [15246], "*.london.hackspace.org.uk": [9593], "lsf.htw-berlin.de": [7103], "newdream.net": [11328], "bcon.ly": [2024], "bbbsilicon.org": [1520], "www.cadsoft.de": [2725], "ws4.sinaimg.cn": [14910], "assets.tribalhosting.net": [16800], "1.kleinaber.de": [2024], "lovecm.co": [2024], "mau.tc": [2024], "pelo.si": [2024], "keepingitsimple.islandsavings.ca": [8381], "alexdi.li": [2024], "bloggerei.de": [2123], "offrd.st": [2024], "argentina.usembassy.gov": [22406], "envirocallservice.newcastle.gov.uk": [11355], "norfolk.cs.washington.edu": [17376], "mycontango.technorati.com": [16110], "publisherblog.automattic.com": [1452], "demo.pritunl.com": [13127], "old-rp.certification.openid.net": [11980], "nerdiva.tk": [2024], "on.xomnio.com": [2024], "jpdls.in": [2024], "style.alibaba.com": [857], "www.franchiseradioshack.com": [13575], "gewinnspiel.geizhals.at": [6494], "otldisclosure.stanford.edu": [15448], "npmrds.ext.here.com": [7325], "youtube.com.au": [18800], "publications.nigms.nih.gov": [11090], "partnernet-qa.symantec.com": [15780], "konami-korea.kr": [8984], "en.opendata.ch": [21270], "fs01.enter.ru": [20002], "nlnetlabs.nl": [10980], "www.webgo.de": [18161], "www.cs.bme.hu": [1557], "na-nozhah.friday.ru": [20175], "*.3m.com": [164], "a-b.ai": [2024], "weun.it": [2024], "api.jquerymobile.com": [8464], "img5.cache.netease.com": [11228], "s.victen.org": [2024], "dom.sakh.com": [21719], "cdn.altex.ro": [936], "*.justia.com": [8714], "bomconteudo.tk": [2024], "www.observium.org": [11743], "hooloop.com": [2024], "demo-staging.mtree.mycelium.com": [21063], "webaccounts.arcgis.com": [1186], "ibang.co": [2024], "www.anime-planet.com": [1068], "videre.ntnu.no": [11004], "wacken.com": [18036], "www.humanrightsfirst.org": [7615], "www-10.lotus.com": [9626], "cdgo.es": [2024], "rafam.co": [2024], "dealers.car.com": [2839], "f-d.im": [2024], "s.cyberitaly.it": [2024], "i6.buimg.com": [16509], "statelibraryok.worldcat.org": [18536], "gztsp.com": [2024], "sovetsk.startsmile.ru": [21980], "*.autotraderstatic.com": [1445], "lesya-zdesya.friday.ru": [20175], "new.edit.ftc.gov": [5710], "www.earth.illinois.edu": [17346], "rigger.biz": [2024], "zbcg.me": [2024], "wiki.commotionwireless.net": [3498], "ibti.me": [2024], "on.kdi.co": [2024], "anz.co.nz": [19211], "wdw.co": [2024], "avropa.se": [1481], "fr.ricardo.ch": [13923], "ofb.ag": [2024], "www.livejournal.com": [9502], "www.davincivaporizer.com": [4219], "affili.net": [744], "nucleus.con.ohio-state.edu": [11798], "*.socialtwist.com": [15128], "msvo.me": [2024], "swawm.us": [2024], "nuvem.ly": [2024], "sex.atlas.cz": [1346], "joshwei.land": [2024], "www.tvshowtime.com": [15953], "dji.com": [4029], "rubytogether.org": [14077], "consult-1.de": [2024], "mycdsglobal.com": [2578], "dkn.fm": [2024], "muscle.cm": [2024], "lucasoil.media": [2024], "asset.xmission.com": [18620], "kivo.com": [8940], "epilepsyontario.org": [5311], "wegoted.com": [18118], "blog.bigcartel.com": [1878], "annuaire.inria.fr": [8161], "brodi.es": [2024], "accessories.stanford.edu": [15448], "rspamd.com": [14060], "latourette.worldcat.org": [18536], "www.wordsapi.com": [18526], "www.hornbach.ch": [7504], "www.poodletest.com": [12308], "*.filerio.in": [5780], "realestate.boston.com": [2252], "*.judiciary.gov.uk": [8678], "kyrnd.us": [2024], "studeo.ws": [2024], "distil.it": [4561], "consultant.rsb.ru": [14058], "downloadarchive.documentfoundation.org": [16295], "pic.dhe.ibm.com": [7679], "alsop-n.uk": [19161], "*.ucar.edu": [17004], "www.instraffic.com": [8198], "litecoin.org": [9475], "tutanota.com": [16922], "winxdvd.com": [22597], "gabbbq.info": [2024], "mplayerhq.hu": [9798], "www.bernalbucks.org": [1824], "eastlothian.gov.uk": [5005], "sazkafantasy.isport.blesk.cz": [2088], "tw.hb.chat": [2024], "cantyk.tk": [2024], "www.dailyfantasyradio.com": [4113], "grz.khabkrai.ru": [20709], "aok.de": [376], "c.rgstatic.net": [13481], "www.swisspost.ch": [12996], "epassauth.bankofamerica.com": [1669], "press.malwarebytes.com": [9940], "gwms.me": [2024], "p.entf.at": [2024], "*.joomag.com": [8639], "www.quakenet.org": [13376], "sbfe.co": [2024], "www.kmpt.nhs.uk": [10953], "u.sic.software": [2024], "otavamedia.fi": [12163], "www.webmail.legtux.org": [9241], "m.spanish.alibaba.com": [857], "flashpoint-intel.com": [20116], "mko.me": [2024], "ul.ie": [17052, 17053], "*.spreadshirt.co.uk": [15371], "en-eo.dict.cc": [4442], "uct.ac.za": [17391], "www.searchengineland.com": [16441], "loanprep.envisionfinancial.ca": [5298], "jovellanos.uniovi.es": [17282], "www.corningcu.org": [3679], "bookiebashe.rs": [2024], "cdn-st2.rtr-vesti.ru": [21689], "2ch.net": [123], "*.insight.com": [8171], "www.peopleschoicecu.com.au": [12584], "11joycasino.com": [20654], "g.org.za": [2024], "scitation.aip.org": [349], "static.geogebra.org": [6522], "he.boardgamearena.com": [2182], "kolabsys.com": [8971], "static4.startnext.com": [15478], "store.theinquirer.net": [22157], "js10.ringrevenue.com": [13949], "checkpoint.com": [3052], "section9.co.uk": [14534], "staticcdn.mediafire.com": [10166], "s.cassiopea.dk": [2024], "eztv.tf": [20063], "ciencias.uniovi.es": [17282], "store.blackphone.ch": [2066], "backupblog.cir.ca": [3156], "pulse.w3counter.com": [17981], "tesch.tk": [2024], "*.cloudfront.net": [3303], "support.switchconcepts.com": [15764], "www.bloggerei.de": [2123], "lebes.co": [2024], "www.faaaccess.ed.gov": [4881], "broadly.com.de": [2024], "www.malwaretech.net": [9938], "getdnsapi.net": [6595], "www.e-scrooge.is": [19920], "shorl.in": [2024], "www.youmail.com": [18797], "lk.rustedoak.co": [2024], "allistene.fr": [903], "theglade.ch": [2024], "nomnom.me": [2024], "blog.opendns.com": [11969], "lop.so": [2024], "hackerspaces.nl": [7137], "asset-7headlines.pixfs.net": [12776], "alice-collaboration.web.cern.ch": [2588], "necdisplay.com": [10937], "on.ketv.com": [2024], "myurl.tv": [2024], "knowledge.kaltura.com": [8790], "webtatic.com": [18255], "satsymposium.org": [14134], "katsomo.fi": [20692], "vepmail.play-asia.com": [12828], "www.alfaportal.kz": [849], "uow.edu.au": [17434], "wiki.dlang.org": [19852], "ccodearchive.net": [3532], "hajjhealth.net": [2024], "egsk.in": [2024], "informatics.sepa.org.uk": [21783], "www.coveredca.com": [3728], "www.cuinfo.cornell.edu": [3676], "*.cognitivedissidents.com": [3388], "cdn1.i-scmp.com": [15255], "ovh.cz": [12205], "www.timetrade.com": [16530], "nicco.ca": [2024], "www.thirtymilesofcorruption.com": [22194], "hfweb.biz": [2024], "obninsk.europaplus.ru": [20034], "receivefreesms.net": [21607], "quizaction.de": [13425], "forum.ovh.sn": [12205], "jtw.bz": [2024], "www.webtranslateit.com": [18261], "www.sitelock.com": [14934], "m.quirilo.com": [2024], "copyright.com": [3659], "*.marchforbabies.org": [9992], "dotcloud.com": [4688], "coolminiornot.com": [3640], "app3.salesmanago.pl": [14125], "ui2.assets-asda.com": [19261], "mdadmissions.wustl.edu": [18089], "petteriraty.eu": [12634], "piwik.univention.de": [17315], "barbados.usembassy.gov": [22406], "account.washingtonpost.com": [18086], "ea.vox-cdn.com": [17939], "sql7.endora.cz": [5237], "*.lsac.org": [9190], "stat.drweb.com": [4776], "webmail.gresille.org": [6927], "www.costprojections.cancer.gov": [2819], "*.quickbase.com": [8300], "lsul.su": [2024], "edg.me": [2024], "diis.unizar.es": [17441], "account.t-mobile.com": [15837], "mrdl.in": [2024], "l.alastair.io": [2024], "ocaml.org": [11649], "r24616667.sync.app.asana.com": [1265], "oneservices.bracknell-forest.gov.uk": [19440], "moovweb.com": [10624], "s82.cnzz.com": [3328], "06.mvd.ru": [21055], "cas.porsuk.anadolu.edu.tr": [1029], "www.cointrader.net": [3411], "19.mvd.ru": [21055], "www.mochtu.de": [10547], "saxion.to": [2024], "frx.mx": [2024], "favorite.taobao.com": [16015], "jla.oxfordjournals.org": [12222], "www.jucy.co.nz": [8475], "reality.etrend.sk": [5383], "www.deichmann.com": [4300], "sil.org": [14183], "nandos.com": [11066], "aa3.co": [2024], "nickgann.co": [2024], "webvodafonemail.vodafone.pt": [17903], "yahoomessenger.tumblr.com": [16897], "stgi.co": [2024], "allods.mail.ru": [9891], "mentv.club": [2024], "passport.sohu.com": [15171], "p0.pstatp.com": [16680], "store.malwarebytes.com": [9940], "wiki.ubuntu.com.cn": [17174], "go.dbs.com": [2024], "al.klj.onl": [2024], "go4games.link": [2024], "paypal.co.uk": [12500], "link.wiklab.nl": [2024], "cprep.co": [2024], "www.sandbox.afnic.fr": [340], "www.ohio-state.edu": [11798], "ua.worldcat.org": [18536], "www.vco.cuhk.edu.hk": [2704], "www.inside.com": [8166], "my.yunos.com": [18839], "mensvolleyball.clubs.bucknell.edu": [2406], "user.smile-net.ru": [21871], "page.moodlerooms.com": [21018], "stream24.co.vu": [2024], "ads.jlne.ws": [2024], "experimental.docker.com": [4605], "movie.sc": [2024], "soln.tpprf.ru": [22260], "csj.bz": [2024], "first.org": [5566], "i.nachotech.com": [2024], "metrics.apple.com": [1151], "thcpbe.es": [2024], "rak.directory": [2024], "pape.rs": [2024], "slcng.in": [2024], "git.mate-desktop.org": [9727], "ebri.us": [2024], "blogs.strategyanalytics.com": [15578], "joem.me": [2024], "www.fosscon.us": [6047], "yoshkar-ola.beeline.ru": [1778], "digiguide.tv": [19835], "lvt.hn": [2024], "rawstudio.org": [13644], "forum.nginx.org": [11413], "plos.io": [2024], "www.hipchat.com": [7417], "cdn.cnbj1.fds.api.mi-img.com": [10360], "aml.bz": [2024], "modelaircraft.org": [496], "lnsqd.co": [2024], "bzdyw1nqmeg5ch5ea6s88a8guo8zlc7a2cpar74g.ipleak.net": [20571], "www.zamg.ac.at": [18879], "123p0.sogoucdn.com": [15169], "adsurve.com": [689], "winehq.org": [18442], "www.europython.eu": [5399], "luxrio.us": [2024], "www.fig.co": [5768], "piwik.pixcept.de": [12770], "vfh.wustl.edu": [18089], "www.cimsasia.com": [9756], "a.ligatus.com": [9356], "matte.me": [2024], "ar.trend.az": [22281], "mcull.me": [2024], "go.arbel.net": [2024], "vip.knet.cn": [8757], "s.kalastro.xyz": [2024], "view-it.us": [2024], "aur.pacbsd.org": [12337], "business.carphonewarehouse.com": [2871], "p5a.pstatp.com": [16680], "wqww.ipleak.net": [20571], "releases.wildfiregames.com": [18399], "www.alien.net.au": [859], "fomori.org": [5967], "dashcache.addthis.com": [626], "shop.moaf.org": [10520], "www.strangeremains.com": [22002], "mail.unizar.es": [17441], "gnpi.us": [2024], "www.prisguide.no": [21499], "95.mvd.ru": [21055], "www.library.ethz.ch": [4967], "aesop.play-asia.com": [12828], "www.skynet.ie": [16283], "hscreations.net": [2024], "effortlesssk.in": [2024], "r00tz.org": [13448], "wageningen.nl": [11172], "beta.hizliresim.com": [7438], "rfrk.nl": [2024], "bl.3ara.be": [2024], "www.acrobat.com": [536], "clsa.me": [2024], "membersinfo.stalbans.gov.uk": [21974], "binged.it": [2024], "53.com": [5766], "discussions.zoho.com": [18984], "pkcsecurity.com": [12294], "bigfile.to": [19373], "wiiings.com": [18381], "www-static.operacdn.com": [21286], "helloquizzy.okcupid.com": [11809], "u.poka.tw": [2024], "mima.163.com": [50], "img1.linuxdeepin.com": [4287], "rws.maxcdn.com": [10102], "www.airbnb.co.ve": [793], "gatorchryslercllc.mycars.dealer.com": [4245], "u.sfxyyam.com": [2024], "gems.am": [2024], "restaurants.just-eat.co.uk": [20671], "bit.nes.co.ve": [2024], "doommet.al": [2024], "intra.golem.de": [6804], "m.koso.me": [2024], "eurexrepo.com": [5389], "zheleznodorozhnyy.beeline.ru": [1778], "strev.us": [2024], "*.vtracy.de": [17960], "traffichaus.com": [16725], "diges.to": [2024], "www.cryptocointalk.com": [3850], "trdny.com": [2024], "www.lemonde.fr": [9204], "static.ladepeche.fr": [9128], "androidguiden.idg.se": [7709], "forms.dundeecity.gov.uk": [4794], "xianguan.jd.com": [8434], "thecut.io": [2024], "pass.yandex.by": [18739], "aiib.org": [347], "go.players24.de": [2024], "greenhouse.lotus.com": [9626], "a-ssl.files.bbci.co.uk": [19332], "images.sankakucomplex.com": [21730], "medmj.us": [2024], "joseph.is": [2024], "forum.deluge-torrent.org": [4321], "io.webhelp.com": [2024], "ogrenci.anadolu.edu.tr": [1029], "fluxbb.org": [5936], "m.sputniknews.com": [21951], "*.asbestossafety.gov.au": [1266], "resourcex1.dditscdn.com": [4228], "browserleaks.com": [2388], "stateof.creativecommons.org": [3774], "firstclassmagazine.se": [5858], "bapt.co": [2024], "engagemedia.org": [5250], "shamansgarden.com": [14716], "www.cheshire.police.uk": [19572], "m.inpearls.ru": [20540], "mercialf.red": [2024], "*.uknof.org.uk": [17047], "www.equinix.com": [5321], "oops.org": [11933], "skitippspiel.srf.ch": [21957], "i.popincdn.com": [12955], "www.diygadget.com": [4577], "*.blogspot.ro": [2127], "m.airbnb.es": [793], "www.dzone.com": [4090], "dsp.hscic.gov.uk": [20435], "pubstr.at": [2024], "staging.bia2.com": [1866], "www.pypip.in": [13309], "shop.rrus.co": [2024], "www.holidaybullshit.com": [7458], "resume.naukri.com": [11146], "*.blogspot.rs": [2127], "stat.sumtel.ru": [22031], "no.cloudflare.com": [3284], "221.img.pp.sohu.com.cn": [15170], "thefifthco.com": [2024], "video.od.visiblemeasures.com": [17856], "sciencealert.com": [21749], "www.samsungshop.com.cn": [14325], "dnaresearch.oxfordjournals.org": [12222], "video17.0xdb.org": [10], "wiki.cyanogenmod.org": [3947], "jslinterrors.com": [8600], "ingdirect.com": [7773], "hjcms.de": [7054], "s.jboutros.org": [2024], "artlebedev.ru": [1249], "js.revsci.net": [13897], "images.sofort.com": [15155], "case.unicef.org": [17069], "ampol.no": [2024], "my.resrc.it": [13659], "requires.io": [13851], "www.confuzzled.org.uk": [3577], "stanfordhospital.org": [15451], "img.reflex.cz": [13777], "www.datenspuren.de": [4209], "*.naver.net": [11151], "elogin.hkjc.com": [20384], "wiki.idnes.cz": [20483], "awrld.at": [2024], "images.pocketgamer.co.uk": [12881], "acuityplatform.com": [559], "go.nature.com": [2024], "scdn.thomascook.com": [16450], "btnet.axonify.com": [1502], "www.freedommunitions.com": [20160], "www.isoc.ch": [20587], "www.worldfoodprize.org": [18546], "nordnet.se": [11516], "www.usembassy.gov": [22406], "new.tecphlie.in": [2024], "vunet.vu.nl": [17608], "go.widen.com": [2024], "www.yandex.com": [18742], "umm.gd": [2024], "mobility.vutbr.cz": [17609], "*.atlassian.com": [1348], "status.livechatinc.com": [9492], "www.wifilib.fr": [18377], "cdn.livefyre.com": [9520], "the.geaux.co": [2024], "ac.els-cdn.com": [5175], "roy.ac": [2024], "ukpirate.click": [22176], "tepamine.com": [4048], "lnk.ames.io": [2024], "business.t-mobile.com": [15837], "specifications.freedesktop.org": [6102], "60mins.co": [2024], "us1.api.mailchimp.com": [9893], "www.levoleague.com": [9291], "www8.smartadserver.com": [15049], "*.api.livestream.com": [9527], "m.fifedirect.org.uk": [5764], "c.subscene.com": [22024], "desensuaoil.com": [2024], "lp.search.gov.hk": [6848], "www.api.swish.mycelium.com": [21063], "22tr.co": [2024], "tvnewscheck.com": [15952], "lists.openhatch.org": [11978], "overclock.net": [12194], "newswhip.com": [11373], "n360.to": [2024], "mtrx.go.sonobi.com": [15209], "reginazapad.rtvs.sk": [13536], "*.cftc.gov": [3485], "www.nyc.indymedia.org": [8090], "bitcurex.com": [2011], "in2m.gr": [2024], "3.*.wdfiles.com": [18387], "www.webcaster.pro": [22542], "egress.co": [2024], "paleom.ag": [2024], "bport.nyc": [2024], "disney.st": [2024], "crossrider.com": [3815], "jocksta.rs": [2024], "www.istella.it": [8395], "sun.onthe.io": [11926], "m.amoad.com": [371], "wlrn.us": [2024], "netcn.console.aliyun.com": [868], "gsmdo.me": [2024], "ja.wiki.hidekisaito.com": [7396], "www.retrofestive.ca": [13884], "rs-linkz.info": [13511], "status.haskell.org": [7220], "andaluciapropertyrentals.com": [1039], "images.travelpod.com": [16767], "weitiandi.duapp.com": [19902], "*.byu.edu": [1611], "us.hsbc.com": [7090], "www.borne.nl": [11172], "linearcollider.org": [9386], "londonstockexchange.com": [9589], "a.redfla.me": [2024], "crsincdt.co": [2024], "stdw.us": [2024], "news.33option.com": [139], "nvbao.taobao.com": [16015], "bill.tygem.com": [22334], "holland.pk": [7462], "www.salsacommons.org": [14316], "convrg.co": [2024], "ebiz.sfn.org": [15144], "blog.silktide.com": [14859], "u.aronpa.com": [2024], "vip.symantec.com": [15780], "dreamwidth.org": [4751], "radi8.it": [2024], "widerimage.reuters.com": [13893], "subsites.bookboon.com": [2213], "i.fantasyfootball.telegraph.co.uk": [16149], "cirtexhosting.com": [3162], "a.qrator.net": [21562], "minzdrav.49gov.ru": [187], "www.theblueskylife.com": [16327], "s116.cnzz.com": [3328], "mts.115.de": [2443], "ads10.contentabc.com": [3614], "etrade.com": [5379], "dropbox.uu.se": [17153], "anatoomikum.ut.ee": [17148], "vc.jd.com": [8436], "cdn2.img.sputniknews.com": [21951], "catalysttg.com": [2907], "gty.ac": [2024], "lists.webkit.org": [18220], "whus.biz": [2024], "dev.cloudtrax.com": [3295], "www2.toyota.es": [16693], "xipi.us": [2024], "iss.tw": [2024], "accounts.www.umich.edu": [17354], "autotools.io": [1460], "factsandfigures.herefordshire.gov.uk": [7326], "qas.li": [2024], "dongtai.taobao.com": [16015], "*.gateway.messenger.live.com": [9495], "monarch.co.uk": [10576], "jynt.co": [2024], "www.irssi.org": [8355], "mibbit.com": [10367], "www.randywestergren.com": [21579], "*.oculu.com": [11758], "enfpt.co": [2024], "ag2.co": [2024], "jstor.org": [8472], "dfri.se": [4425], "www.weather.yandex.kz": [18743], "sitola.cz": [14954], "payments.n-kesteven.gov.uk": [10897], "wrldbra.in": [2024], "grosskunden.bahn.de": [1640], "wild.st": [2024], "n.iten.io": [2024], "forum.greencubes.org": [20306], "delmarvane.ws": [2024], "www.nccih.nih.gov": [11090], "extranet.tocco.ch": [16600], "es.aegeanair.com": [6896], "rlin.st": [2024], "www.whatsbroadcast.com": [18332], "huanggang.jd.com": [8434], "foundingfathers.info": [6058], "cursosvirtuales.uned.es": [17248], "www.active24.nl": [19065], "www.rh.ulaval.ca": [17319], "ssls.com": [14244], "launchpad.nasa.gov": [10909], "nihongo.istockphoto.com": [20595], "3dsecure.mbank.pl": [9733], "www.superhexagon.com": [15685], "primarycare.nhs.uk": [10953], "kaspysk.startsmile.ru": [21980], "mysql2.cesky-hosting.cz": [19553], "certs.godaddy.com": [6755], "cdn.ghstatic.com": [6306], "support.snapnames.com": [8880], "tdog.yt": [2024], "seppin.gs": [2024], "victoriaforms.com": [22461], "safebrowsing-cache.google.com": [6818], "wqw.ipleak.net": [20571], "shbrk.li": [2024], "forum44.djicdn.com": [4029], "tvm.ag": [2024], "imgt3.bdstatic.com": [19339], "bestwebhostinggeek.com": [920], "chopin.play-asia.com": [12828], "www.crowdculture.se": [3818], "www.addison.com.hk": [630], "sslcdce.internapcdn.net": [8253], "cpubenchmark.net": [2664], "tl.rail.claims": [2024], "kfue.baden-wuerttemberg.de": [19302], "people.yandex.kz": [18743], "cards.dbs.com.hk": [4001], "abbtstest.tocco.ch": [16600], "homie.tips": [2024], "fastmail.fm": [5677], "www.devdocs.io": [4404], "sadecehosting.com": [14283], "assets.20mn.fr": [94], "www1.admtyumen.ru": [19082], "x.matt.ph": [2024], "work.alibaba-inc.com": [19139], "mydm.loans": [2024], "www.openoffice.org": [1117], "www.nethserver.org": [21110], "podolsk.biglion.ru": [19375], "travispta.com": [2024], "airbnb.be": [793], "msh.astrobl.ru": [19264], "adum.fr": [331], "patchwork.netfilter.org": [11265], "r.zaki.jp": [2024], "pennh.cc": [2024], "bzr.li": [2024], "datasets.freesound.org": [6162], "ccb.li": [2024], "siraweb.portal.srgssr.ch": [21957], "europe.redhat.com": [13735], "ticker.mobile.de": [21001], "owa.uaa.alaska.edu": [17323], "www.openai.com": [11950], "beys.ninja": [2024], "www.guardian.co.tt": [6981], "www.lfscript.org": [20824], "weal.media": [2024], "www.unblockthepiratebay.org": [22174], "global.engineering.osu.edu": [11797], "huxian.jd.com": [8434], "tikhoretsk.startsmile.ru": [21980], "stats.immoscout24.ch": [8009], "www.theapp.voicelessonstotheworld.com": [11341], "*.oppictures.com": [17308], "gentoo.ussg.indiana.edu": [8070], "akamai.lequipe.fr": [20811], "wrd.cm": [2024], "71.mvd.ru": [21055], "g01.s.alicdn.com": [853], "gateway.zuji.com.hk": [19021], "www.unglue.it": [17250], "keepallthethings.com": [8854], "rsb.ru": [14058], "epr.ug": [2024], "moana-surfrider.com": [10523], "r.uh8.in": [2024], "cloudfront.mediamatters.org": [10170], "www.joycazino.com": [20654], "media.razoo.com": [13648], "eyeoh.co": [2024], "www.pirata.online": [22174], "blake2.net": [19404], "www.pinocc.io": [12728], "www.hinckleyandbosworthonline.org.uk": [7416], "pnkts.tc": [2024], "on.jbu.edu": [2024], "bromley.objective.co.uk": [21225], "url.mrtz.org": [2024], "guarida.juegos": [2024], "catalog.nhlbi.nih.gov": [11090], "video15.0xdb.org": [10], "*.cdnme.se": [2931], "redditmedia.com": [13749], "st.directadvert.ru": [4512], "www.nwprogressive.org": [11629], "m.enskyshop.com": [2024], "boyn.co": [2024], "cbcomp.us": [2024], "antifraud.drweb.com": [4776], "www.garygoddard.com": [6786], "scw.io": [2024], "jamie.link": [2024], "support.mppglobal.com": [21036], "advnews.link": [2024], "yourbittorrent.com": [18814], "appsec.aarp.org": [279], "www.freelancersunion.org": [6155], "telepathy.freedesktop.org": [6102], "static.ykimg.com": [22681], "rovid.szg.hu": [2024], "btunnel.com": [1604], "www3.eduid.cz": [5087], "ihouseonline.berkeley.edu": [17329], "remote.bittorrent.com": [1974], "portal.oaklands.ac.uk": [21221], "github.io": [6661], "api.mol.org": [10521], "www.discosoupe.org": [4528], "divorce4.me": [2024], "www.gsfacket.se": [6969], "go.mashcape.com": [2024], "www.bower.io": [19435], "www.mail.ru": [9891], "sourcegraph.com": [15250], "g0t0v1ew.tk": [2024], "*.pixfuture.net": [12769], "m.dji.com": [4029], "mhuk.in": [2024], "urlpro.fr": [2024], "zkm.tw": [2024], "www.beautifulmosque.com": [1768], "cdn.cnbj2.fds.api.mi-img.com": [10360], "link.muth.site": [2024], "eowebs.com": [2024], "dtn.dj": [2024], "spraygun.me": [2024], "www.888173.net": [240], "etoro.tw": [2024], "r.in.pe": [2024], "apollo.vutbr.cz": [17609], "www.toshiba.co.jp": [16668], "u.nowloaded.org": [2024], "app.sugarsync.com": [15648], "freelancer.co.uk": [6154], "map.yahoo.co.jp": [18730], "phpj.be": [2024], "dena.my": [2024], "askjane.stanford.edu": [15448], "jobspm.mx": [2024], "tokage.celartem.com": [2939], "my.sailthru.com": [14304], "itstaf.nl": [2024], "fr.unionpay.com": [17281], "www.acluga.org": [298], "abhayagiri.org": [475], "www.wpsoftware.net": [18016], "ltms.ncl.ac.uk": [10926], "bringthegig.com": [2350], "beerleague.me": [2024], "affiliates.streamray.com": [15521], "se.vrmodel.dk": [2024], "www.diasporabr.com.br": [4436], "odee.osu.edu": [11797], "quantamagazine.org": [13386], "diverse.direct": [4570], "p52.mx": [2024], "quikcallus.com": [13417], "bullhorn.aclu.org": [312], "derpy.me": [4369], "l-obs.fr": [2024], "was.sent.fyi": [2024], "opennet.net": [11998], "contentdn.net": [3615], "u.simou.net": [2024], "danny.yt": [2024], "vio.te-st.ru": [22103], "soekris.com": [15151], "cmmn.us": [2024], "pulsepoint.com": [13270], "hitson.gs": [2024], "www.rosbank.ru": [21671], "www.fr.sogeti.com": [15167], "gameop.me": [2024], "static.syncsearch.jp": [15796], "dc2.learningcast.jp": [9227], "www.itex.ru": [20603], "biblegateway.com": [1870], "regexbuddy.com": [21625], "www.qabel.de": [13343], "opensocietyfoundations.org": [21280], "www.mooculus.osu.edu": [11797], "hobbygames.cdnvideo.ru": [19536], "ecw.co": [2024], "ayu.ac": [2024], "sampin.ch": [2024], "*.alice-dsl.de": [858], "a.daix.com": [2024], "www2.charterbusiness.com": [3028], "*.yahoo.net": [18727], "joelvh.com": [2024], "nurun.jobs": [2024], "m.buydot.co.uk": [2024], "minotar.net": [20989], "retiro.upr.edu": [17087], "yab.bz": [2024], "nigms.nih.gov": [11090], "wltzr.com": [2024], "discussions.citrix.com": [3180], "stellaclar.snob.ru": [15103], "compass2g.illinois.edu": [17346], "onehealthcommission.org": [21254], "tmprtm.org": [2024], "wa103.teamviewer.com": [16069], "micron.com": [10390], "libcom.org": [20826], "tech.youku.com": [18804], "ethnobiomed.biomedcentral.com": [1931], "content.kink.com": [20719], "webprod.admin.uillinois.edu": [17034], "pass.etao.com": [4965], "admin.mailigen.com": [9901], "www.cindercooks.com": [3144], "www.claudiodangelis.com": [3221], "fr.hertz.ch": [7366], "mochtu.de": [10547], "discuss.vultr.com": [17966], "microspot.ch": [3647], "mobile-justice.acluca.org": [296], "parentportal.enfield.gov.uk": [5247], "sv.3.boardgamearena.com": [2182], "conf.kubi.me": [2024], "hitech.mirea.ru": [20993], "www.argosonline.es": [1214], "groups.freecycle.org": [6138], "www.trafficfactory.biz": [16723], "tracklog.58.com": [212], "viewimage.co": [2024], "slidedeck.com": [15026], "docs.intercom.io": [8241], "pavpanchekha.com": [12495], "ccw.link": [2024], "tolyatti.beeline.ru": [1778], "moodle.unizar.es": [17441], "piratpartiet.dk": [21420], "www.lumimart.ch": [3647], "www.radioeins.de": [13578], "chelyabinsk.beeline.ru": [1778], "staff.rice.edu": [13926], "tools.sli-systems.com": [14192], "www.crazyegg.com": [3762], "jimr.link": [2024], "www.proza.ru": [21526], "www.sungardhe.com": [15659], "cdn.userreport.com": [17521], "at.inl.gov": [20537], "itex.com": [8403], "www.homementors.com": [7482], "android-api.fitbit.com": [5867], "lokun.is": [9576], "pastemonitor.com": [12475], "www.abila.com": [476], "leginfo.legislature.ca.gov": [2763], "quantifind.io": [2024], "www.copiny.com": [3656], "admt.me": [2024], "i.o2active.cz": [16141], "on.lsx.co": [2024], "s.aolkin.me": [2024], "*.volotea.com": [17920], "jiaofei.jd.com": [8436], "messages.easymail.ca": [5018], "ubt0.fanli.com": [5645], "cloud.jivesoftware.com": [8598], "j0b.fr": [2024], "dzyn.biz": [2024], "nagios.ulpgc.es": [17213], "grad.mercatus.org": [10296], "wndrbr.es": [2024], "cjc.georgetown.edu": [6531], "www.questcomp.com": [13403], "forceline.net": [20134], "voc.flypeach.com": [20126], "lide.cz": [9341], "www.pde.cc": [12611], "library.williams.edu": [18408], "www.youvisit.com": [18802], "shib.southdevon.ac.uk": [15256], "affiliatezone.doteasy.com": [4697], "macfound.org": [9833], "www.mayfirst.org": [10113], "www.reg-alfabank.ru": [849], "zgtcbag.jd.com": [8434], "tianyang.jd.com": [8434], "def-econ.com": [2024], "fuscia.info": [6250], "dl-jzt.jd.com": [8436], "mccdn.qcloud.com": [13346], "fox-toolkit.net": [5579], "flmd.tv": [2024], "cigar.af": [2024], "www.ghash.io": [6308], "support.embed.ly": [5188], "www.torusknot.com": [16667], "tvh.io": [2024], "keymile.com": [8883], "bostontec.co": [2024], "badssl.com": [1634], "da.libreoffice.org": [9327], "codesearch.chromium.org": [3124], "elmadrileno.cfjlab.fr": [2604], "www.deutschebkk.de": [4393], "downloads.realviewtechnologies.com": [13695], "isq.re": [2024], "manao.media": [2024], "io.playstation.com": [12832], "sitetrustnetwork.com": [14941], "ts.tpprf.ru": [22260], "vic20.blipp.com": [2099], "wiki.teamfortress.com": [22107], "i-kos.uk": [2024], "dolartoday.com": [4632], "animal.ffa.vutbr.cz": [17609], "www.snel.com": [15098], "1177.se": [29], "kronox.slu.se": [14195], "mycharity.ie": [10796], "*.koreatimes.co.kr": [8998], "cdni.condenast.co.uk": [3556], "hierar.ch": [2024], "www.openwebmail.org": [12060], "swartzfiles.com": [15744], "e.lemcpa.us": [2024], "beatthevoi.cf": [2024], "www.chillingeffects.org": [3082], "www.babbel.com": [1614], "bit.nl": [1549], "ensv.dict.cc": [4442], "www.mastercard.com": [10060], "mux.de": [10780], "es-es.facebook.es": [5612], "support.unfpa.org": [17062], "*.checkmarx.com": [3054], "i-m.tech": [2024], "www.advisormailout.com": [718], "i3.code.msdn.microsoft.com": [10396], "www.liftshare.com": [9351], "govipers.cf": [2024], "www.cooperazione.ch": [3646], "r-7.co": [2024], "www.campusradio.uni-mainz.de": [17410], "pcg.link": [2024], "hbokids.com": [20352], "mail.ya.ru": [18716], "domains.jino.ru": [8589], "yads.yahoo.co.jp": [18730], "*.fxguide.com": [6268], "a2.twimg.com": [16949], "directorystore.com": [4521], "gazeta.yandex.com.tr": [18740], "cskr.co": [2024], "i.pcollaog.cl": [2024], "fetch.link": [2024], "www.performancehorizon.com": [12599], "violetdarkling.com": [17813], "4tulemar.com": [193], "ssl-sl-retargeting.adsonar.com": [593], "www.universalcoin.com": [22379], "coursetalk.com": [3717], "ekm.pw": [2024], "djuhsd.illuminateed.com": [20494], "department.obg.cuhk.edu.hk": [2704], "dflbt.yanao.ru": [22665], "islamacademy.net": [8366], "www.ninite.com": [11456], "vlkn.me": [2024], "www.cepascc.org": [14401], "stanleypubliclibrary.worldcat.org": [18536], "gnome.axonify.com": [1502], "help.adfox.ru": [578], "chroniclevitae.com": [3128], "www.spacecomm.nasa.gov": [10909], "labs.xda-developers.com": [18598], "camerahou.se": [2024], "www.sony-europe.com": [15211], "fluechtlinge.wien.gv.at": [22588], "www.wagner.edu": [18041], "www.0800buster.co.uk": [20866], "chalkfest.us": [2024], "varian.com": [17655], "tylercipriani.com": [16977], "wow-pic.com": [2024], "bitmi.de": [2448], "homedelivery.nytimes.com": [11041], "sta.gtimg.com": [6975], "www.elgiganten.se": [5154], "zenmate.ca": [18917], "a.exosfuel.com": [2024], "goodline.info": [20288], "cdn-static-secure.liverail.com": [9508], "zenmate.cl": [18917], "zenmate.co": [18917], "drupal-images.tv2.dk": [15946], "wwd.us": [2024], "berlinow.eu": [2024], "amhrst.is": [2024], "hkatx.com": [2024], "icmail.com": [7692], "vh3.vutbr.cz": [17609], "www.sos.wa.gov": [14215], "biol.co": [2024], "miuipolska.pl": [20995], "stage.greatnonprofits.org": [6892], "www.soapboxcms.com": [15119], "hcdapreview.usc.edu": [17366], "wps.to": [2024], "www.10dollar.ca": [21], "apps.community.freescale.com": [6161], "on.misspato.com": [2024], "nutr.us": [2024], "yng.mn": [2024], "www.stressfaktor.squat.net": [21955], "img.nber.org": [11116], "ipv4.ipleak.net": [20571], "study.x5.ru": [18590], "dety.es": [2024], "rednerd.com": [13756], "metrok.us": [2024], "batransandbareports.voa.gov.uk": [22483], "rskl.co": [2024], "www.vdownloader.es": [17565], "lives.ga": [2024], "m.ipair.com": [20566], "mshare.cc.163.com": [50], "travelhouse.ch": [7561], "a.vuilam.info": [2024], "cs-cart.com": [2676], "belo.ng": [2024], "ep03.epimg.net": [5126], "www.calendars.com": [2755], "www.cdn.newsvine.com": [11390], "local-www.nlm.nih.gov": [11090], "moscow.tpprf.ru": [22260], "studentconduct.georgetown.edu": [6531], "www.masspirgstudents.org": [9726], "wfrm.rest": [2024], "vrsn.tv": [2024], "ipfs.io": [8337], "tjatt.tk": [2024], "www.canvasndecor.com": [2827], "profile.theguardian.com": [16364], "bnz.co.nz": [1561], "www.nootriment.com": [11507], "coindl.com": [3392], "jobs.bnymellon.com": [19420], "m.google.com.*": [6821], "*.nocdirect.com": [11486], "parcel.pt": [2024], "timeline.mediapart.fr": [10194], "*.factoryexpohomes.com": [5616], "i.truong.asia": [2024], "*.healthdirect.gov.au": [7261], "www.derstandard.at": [19814], "ecredit.alibaba.com": [857], "helpdesk.pcc-cic.org.uk": [12249], "www.goldsborowebdevelopment.com": [6802], "www.atom.io": [1351], "noma.ms": [2024], "pantheos.com": [12403], "coursefinder.uow.edu.au": [17434], "onlinelifeinsurance.iciciprulife.com": [7917], "static.filmon.com": [5797], "www.torrent411.com": [15847], "dynamicyield.com": [4822], "sunwoolab.stanford.edu": [15448], "audiofingerprint.openwpm.com": [12085], "tonyk.me": [2024], "press.interfax.kz": [20552], "www.paypalgivingfund.org": [12517], "folk.re": [2024], "pjc.georgetown.edu": [6531], "hyperspin.com": [7653], "px.owneriq.net": [12219], "aeryon.com": [739], "marinsoftware.com": [10005], "www.pirateproxy.site": [21524], "demandbase.com": [4324], "integrity.unodc.org": [17075], "aquanet.vanaqua.org": [17637], "goto.floris.io": [2024], "itau.com.br": [8399], "www.voicerepublic.com": [17910], "remica.de": [2024], "bet555.eu": [1842], "newyear.aktivix.org": [815], "krystal.co.uk": [9037], "app.gmat.economist.com": [5052], "textvoice.jp": [2024], "adweb01.wku.edu": [22602], "haber3.biz": [2024], "duc.wustl.edu": [18089], "engineering.illinois.edu": [17346], "www.alaskarobotics.com": [823], "usbhost.chainfire.eu": [19556], "expedia.com": [5492], "*.devever.net": [4408], "iyer.tips": [2024], "streamwww.classroom.ohio-state.edu": [11798], "50.mvd.ru": [21055], "thegreatdiscontent.com": [16361], "read.qurank.net": [13437], "da.yle.fi": [18779], "c.milgifs.com": [2024], "edit.dol.gov": [19867], "blog.guetersloh.freifunk.net": [6170], "ingqca.org": [2024], "data.otaserve.net": [21307], "global.newsblur.com": [11366], "jrvo.me": [2024], "vtech.com": [17606], "nickelo.us": [2024], "meatm.ag": [2024], "www.cloudaccess.net": [3277], "bezhetsk.startsmile.ru": [21980], "www.pdr.leeds.ac.uk": [17403], "customsites.usc.edu": [17366], "hmen.co": [2024], "jbur.co": [2024], "www.impulse.net": [8025], "cnn.st": [2024], "my.anc.media": [2024], "s.sundheden.se": [2024], "campaignforosu.org": [12133], "*.championcasino.net": [2996], "alfl.co": [2024], "movabletype.org": [10666], "di.dekalita.com": [2024], "nyaquarium.com": [11026], "mith.io": [2024], "liga.rocketbank.ru": [13994], "givskudzoo.dk": [6674], "api.winoptions.com": [18448], "control2.majordomo.ru": [9914], "deskalerts.co": [2024], "www.sugarsync.com": [15648], "teamintraining.org": [16067], "connected.tante.cc": [16012], "go.heung.uk": [2024], "blog.23andme.com": [100], "ageni.us": [2024], "s15.postimg.io": [13024], "inscriptions.paris-web.fr": [21345], "go.adamf.in": [2024], "cbi.boldchat.com": [2203], "issues.openmandriva.org": [11992], "*.mypayquake.com": [12503], "cdn1.img.sputniknews.com": [21951], "imgt9.bdstatic.com": [19339], "www.flightglobalshop.com": [5901], "l.abrt.io": [2024], "donateinmemory.cancerresearchuk.org": [19501], "su.ln.com.ar": [2024], "webassetsg.scea.com": [14148], "dreamsolution.nl": [4748], "cyber.sci-hub.ac": [14436], "freedom-to-tinker.com": [6143], "go.thomasho.co": [2024], "trafficjunky.net": [16721], "id.sport-express.ru": [21941], "tyumedia.ru": [22335], "www.obedovat.sk": [11733], "spring.org.uk": [15375], "menpiao.jd.com": [8436], "code.highcharts.com": [7407, 7408], "mhcid.washington.edu": [17376], "forms.dudley.gov.uk": [4788], "omniture.nvidia.com": [11022], "pirateproxy.se": [22174], "abroad.toofishes.net": [16625], "*.crn.com": [2673], "*.xg4ken.com": [18659], "r-posts.com": [13446], "containerids-id1.wdr.de": [18113], "www.dti.ulaval.ca": [17319], "market.douban.com": [4701], "*.loanscience.com": [9544], "webmail.byte.nl": [2501], "tnaflix.com": [16594], "leedsbuildingsociety.co.uk": [9237], "webauth.service.ohio-state.edu": [11798], "x.hz.ae": [2024], "ouroh.io": [2024], "thumbs.redditmedia.com": [13749], "vkm.ag": [2024], "m1.nsimg.net": [11590], "a29.co": [2024], "swww.ipleak.net": [20571], "gsp0.baidu.com": [1641], "*.swordfishdc.com": [15769], "origin.360yield.com": [146], "go.alig.net": [2024], "api.gunosy.com": [7005], "s6.pimg.tw": [12709], "y1.chaucanh.net": [2024], "technicalcommunity.com": [16100], "intranet.study.fce.vutbr.cz": [17609], "awww.asana.com": [1265], "sgsstudentbostader.se": [14173], "cloud.datapipe.com": [4203], "luciosgold.ca": [9657], "www.kathrein.de": [8833], "beta.bps.org.uk": [1565], "vlagtwedde.nl": [11172], "rudloff.pro": [14079], "investors.godaddy.net": [6754], "www.ubmaviation.com": [16999], "ncns.co": [2024], "about.beeline.ru": [1778], "gus-humsci.stanford.edu": [15448], "www4.djicdn.com": [4029], "consecur.de": [3551], "thecreatorsproject.vice.com": [17754], "www.ng-book.com": [11410], "tele-task.de": [16133], "lysva.startsmile.ru": [21980], "lists.llvm.org": [9103], "ghc.haskell.org": [7220], "es.ulule.com": [17224], "stlwrt.us": [2024], "internetprotectionlab.net": [8283], "mapps-amr.moodys.com": [21020], "trust.asana.com": [1265], "daleal.pl": [2024], "s.417.cz": [2024], "www.gpg4win.org": [6859], "plearn.co": [2024], "*.bytelove.de": [2504], "openhome.alipay.com": [864], "rackspace.co.za": [13560], "www.international-office.uni-mainz.de": [17410], "s.ccvine.org": [2024], "www.pccasegear.com": [12251], "bosso.ikoula.com": [7966], "go2yd.com": [20274], "calderdale.objective.co.uk": [21225], "support.muslimpro.com": [10764], "cdn-cf.mywot.net": [10841], "cor.vc": [2024], "www.bleep.com": [2084], "server1.nimzone.com": [11451], "s.cut.org.br": [2024], "nuclearblast.de": [11606], "s.sngrs.com": [2024], "wc2.link": [2024], "streetepistemology.com": [22009], "fossil.energy.gov": [5243], "gawain.websanity.com": [18179], "a.dyu.ca": [2024], "static.colorofchange.org": [3439], "zoot.to": [2024], "apps.grad.uw.edu": [17156], "www.fewo-mehrtens.de": [5750], "ltnt.tv": [2024], "a.tcimg.net": [15860], "cefbuilds.com": [2938], "phihold.be": [12649], "info.lemonde.fr": [9204], "thencs.org": [2024], "static.cbox.ws": [19525], "blueonyx.it": [19413], "x.jaimeejo.com": [2024], "renshouguan.jd.com": [8434], "exist.de": [4986], "www.sozwes.htwk-leipzig.de": [7596], "online.tatsotsbank.ru": [16039], "thepiratebay.xn--q9jyb4c": [22174], "www.edihealth.net": [4886], "lewisham.greenparty.org.uk": [6908], "glasgow.pirateparty.org.uk": [12747], "new.zataz.com": [18899], "au.zenmate.com": [18917], "mcbru.ly": [2024], "moscow.auto.ru": [19276], "www.feed2js.org": [5718], "*.pcmd.ac.uk": [12569], "communityservice.wustl.edu": [18089], "bww.com": [937], "citizen.org": [13254], "www.verisign-japan-domain.com": [17712], "mm.gettyimages.com": [6604], "dg.travelnow.com": [16766], "iot.l0cal.com": [9073], "www.wiebetech.com": [18375], "coloradoan.com": [3445], "value.shoplc.tv": [2024], "upto.gd": [2024], "f2.thejournal.ie": [16299], "www.wordcamp.org": [18517], "opros.rsb.ru": [14058], "www.urz.uni-heidelberg.de": [17262], "vbo.mkb.ru": [10512], "wooton.in": [2024], "mygfs.in": [2024], "fchat.se": [2024], "login.wmtransfer.com": [18173], "365ticketsscotland.com": [153], "thepiratebay.immunicity.host": [21524], "em.oxfordjournals.org": [12222], "undergrad.cs.umd.edu": [17351], "g.bjarnerest.de": [2024], "mywp.cc": [2024], "xeo.li": [2024], "steiermark.neos.eu": [10941], "i.jhr.mn": [2024], "talkingpoint.leedsbuildingsociety.co.uk": [9237], "*.deadspin.com": [4240], "support.returnpath.net": [13891], "images.parkrun.org.uk": [12439], "www.dte.us.es": [17502], "www.ipwnage.com": [7810], "*.webspectator.com": [18186], "*.123-reg.co.uk": [33], "rof.oxfordjournals.org": [12222], "dl.hdslb.com": [20358], "1.texnites24.gr": [2024], "www1.videogamer.com": [17782], "developer.cms.gov": [19630], "www.dslshop.vodafone.de": [17901], "opm.global": [2024], "www.cfa.harvard.edu": [7211], "rakmu.de": [2024], "billdesk.com": [1906], "www.tesla.com": [22127], "vet.khabkrai.ru": [20709], "accountingde.pt": [2024], "fbe.hku.hk": [20387], "admintool.sciencedirect.com": [21750], "*.ubs.com": [17001], "www.helsingebilpleje.dk": [7310], "acu.re": [2024], "t4-p.ru": [2024], "armor.statushub.io": [15504], "img4.wsimg.com": [14570], "qa.aberdeenmosque.org": [469], "klussen.marktplaats.nl": [10034], "www.t-com.sk": [16155], "spyshelter.com": [15392], "jordn.xyz": [2024], "irma.sydney.edu.au": [22063], "img.chefkoch.de": [3062], "www.checkmarx.com": [3055], "*.fmh.de": [5817], "loggly.com": [9564], "frankl.co": [2024], "jekit.codeforamerica.org": [3357], "blog.haskell.org": [7220], "www.hsbctrinkaus.de": [20434], "auth.opera.com": [12086], "icms.un.org": [17057], "secure.law.yale.edu": [18732], "heynimble.com": [2024], "www.customerlobby.com": [3933], "homesvc.net": [2024], "csail.org": [2024], "grass.osgeo.org": [11707], "authentification.ulaval.ca": [17319], "go.jtg.co": [2024], "theh.gr": [2024], "www.appadvice.com": [1143], "dlstr.in": [2024], "www.aggregateknowledge.com": [770], "patternsinthevoid.net": [12492], "mirror.thecthulhu.com": [16403], "exch2-3.slu.se": [14195], "luxxcc.com": [2024], "socialwelfare.bl.uk": [2358], "rlz.li": [2024], "lee.sosbici.org": [2024], "slvpg.me": [2024], "glycob.oxfordjournals.org": [12222], "tipps.co": [2024], "book.jd.com": [8436], "ikegps.biz": [2024], "trade.aliexpress.com": [854], "www.ai-online.com": [1453], "www.landalcampings.be": [18579], "alphadominche.com": [917], "*.vimeocdn.com": [17803], "docs.opensvc.com": [12008], "business.spectrum.com": [15318], "demd.ro": [2024], "www.westorangehistory.com": [18304], "www.automx.org": [1455], "easypost.com": [5020], "ip3.htwk-leipzig.de": [7596], "theprosp.ec": [2024], "www.ox.cx": [7646], "learn.jquery.com": [8463], "berezniki.startsmile.ru": [21980], "top-fwz1.mail.ru": [9891], "spectator.co.uk": [21927], "ergonomics.osu.edu": [11797], "hebdo.framapad.org": [6075], "kabul.usembassy.gov": [22406], "www.daily.afisha.ru": [19107], "servers.agava.ru": [765], "www.bugmenot.com": [2422], "cdn.head-fi.org": [7251], "whois.icann.org": [7685], "dajon.uk": [2024], "*.push.io": [13292], "jobs.arstechnica.com": [3554], "constructor.maps.yandex.com.tr": [18740], "nulab-inc.com": [11611], "techb.ro": [2024], "ampproject.org": [19193], "fbi.informatik.fh-nuernberg.de": [16239], "localizejs.com": [20864], "*.pleaseignore.com": [12849], "patrck.nl": [2024], "c-spanvideo.org": [2508], "isst.fraunhofer.de": [6091], "ielev.co": [2024], "aldi.co.uk": [357], "oia.stanford.edu": [15448], "*.utsouthwestern.edu": [17369], "zhanhua.jd.com": [8434], "invs.io": [2024], "helix.apache.org": [1118], "artifacts.alfresco.com": [850], "ticketm.mx": [2024], "pshop.piratenpartei.de": [12755], "cathaypacific.com": [2913], "www.mysubwaycard.com": [21072], "admin.vxsbill.com": [22515], "energystar.gov": [5245], "gnngolf.com": [2024], "phx.tf": [2024], "www.levesoninquiry.org.uk": [9286], "go.dotsiam.net": [2024], "www.thefastandthefurious.com": [5672], "islamicfinder.org": [8379], "paktim.es": [2024], "tw.carousell.com": [2870], "esparto.illuminateed.com": [20494], "minilink.ml": [2024], "blog.ebuyer.com": [5033], "www.babelzilla.org": [1615], "brid.es": [2024], "idefimusic.com": [7934], "press.parsely.com": [12446], "tdid.io": [2024], "scrm.me": [2024], "store-images.comixology.com": [3466], "*.asic.gov.au": [408], "www.video-download.online": [22462], "nmst.tk": [2024], "m.9gag.com": [252], "www.blink-182.com": [2094], "www.godpraksis.no": [6785], "hawkhost.com": [7239], "passport.apan.org": [388], "rofreesbie.org": [21666], "smartmontools.org": [21868], "hrp.asia": [2024], "jinrong.58.com": [212], "*.thumbshots.org": [16475], "sorig.in": [2024], "bohi.me": [2024], "www.neooffice.org": [11190], "whitta.link": [2024], "secure.pqarchiver.com": [12316], "friendlybracelets.com": [6194], "marketplace.rackspace.com": [13566], "www.thenewsfunnel.com": [11377], "dev.history.com": [7422], "www.bulletproofexec.com": [2433], "pythian.com": [21550], "s.artstreet.biz": [2024], "tracker.moodle.org": [10616], "femina.io": [2024], "www.ehic.org.uk": [4908], "v5k.co": [2024], "fablabtacoma.com": [5604], "tazte.ch": [2024], "apps.sydsvenskan.se": [15776], "scusd.illuminateed.com": [20494], "tyumen.psbank.ru": [13231], "aodh.co": [2024], "almo.pro": [2024], "servicedesk.lrz.de": [9253], "epaper.ntu.edu.tw": [11009], "miblues.co": [2024], "mujucet.vzp.cz": [17611], "bugzilla.rpmfusion.org": [14056], "gofore.com": [20279], "www.hide.me": [7394], "api.tldr.io": [22220], "www.probikekit.co.uk": [13164], "afisha.yuga.ru": [22701], "members.vbulletin.com": [17557], "police.uk": [12907], "www.incircle.com": [15916], "nmt.marketing": [2024], "cardiff.ac.uk": [2847], "gaymes.info": [2024], "control.tierra.net": [16510], "www.masilla.org": [20929], "vector-offsite.fnal.gov": [5741], "mm.psbank.ru": [13231], "gneo.me": [2024], "thrdwy.org": [2024], "framapad.org": [6075], "saudi.gov.sa": [14368], "old-op.certification.openid.net": [11980], "www.go8.edu.au": [6750], "parealt.rs": [2024], "upa.aberdeenshire.gov.uk": [472], "s.livepocket.jp": [2024], "au.pcpartpicker.com": [12529], "unto.us": [2024], "impc.co": [2024], "pete.pw": [2024], "www.salk.edu": [14313], "memberclicks.net": [10264], "esurvey.hku.hk": [20387], "sea4.me": [2024], "tac.upf.edu": [17471], "extranet.fmed.ulaval.ca": [17319], "*.indiegogo.com": [8078], "support.code.org": [3343], "lebanon.usembassy.gov": [22406], "*.hitb.org": [7053], "rftr.io": [2024], "verkty.difi.no": [4452], "www.mobilism.org": [21004], "www.nachtjeweg.nl": [7460], "owyoga.us": [2024], "grabase.at": [2024], "*.cbsstore.com": [2544], "*.showingcloud.com": [14804], "india.isidewith.com": [20466], "london.cmbchina.com": [2639], "www.pegelf.de": [12562], "docs.opnsense.org": [11692], "grouv.in": [2024], "www.toplist.cz": [15911, 15912], "freestateproject.org": [6128], "serversforhackers.com": [14679], "webui_63465578.asana.com": [1265], "www.sparxtrading.com": [15299], "*.kryptronic.com": [9035], "t2.pixhost.org": [21426], "*.exaccess.ru": [5463], "iphoneincanada.ca": [8340], "uhop.me": [2024], "gml.io": [2024], "stubconnect.stubhub.co.uk": [15602], "multistre.am": [21049], "wiki.ubuntu.org.cn": [17174], "forum.vestacp.com": [17740], "selvbetjening.dongenergy.dk": [4068], "cp2.beget.com": [19347], "your.trash.net": [16761], "inwx.com": [8230], "www.structures.ucsd.edu": [17012], "www.botfrei.de": [2260], "p4.sinaimg.cn": [14910], "smdyn.co": [2024], "www.fourecks.de": [6059], "kolchugino.tpprf.ru": [22260], "www.final4ever.com": [5804], "buckscc.gov.uk": [19465], "research.gigaom.com": [6626], "blog.libtoxcore.so": [9337], "boogn.at": [2024], "www.dslreports.ca": [4075], "auto.yandex.kz": [18743], "adena.io": [2024], "www.anonabox.com": [1082], "secure-skin.ztat.net": [18877], "developer.filemobile.com": [5786], "ci.control.openccc.net": [11960], "thisne.ws": [2024], "smtp.nlnetlabs.nl": [10980], "www.outnow.ch": [21317], "mtp.oxfordjournals.org": [12222], "forums.novell.com": [11569], "www.npted.org": [10990], "lawsoc.ca": [2024], "goubiquiti.com": [6779], "myiuhealth.org": [7866], "www.vatt.fi": [17624], "dwa.bz": [2024], "u.flex.lighting": [2024], "bonsplans.club": [2024], "sonln.me": [2024], "www.peer5.com": [12547], "pnlgcy.tk": [2024], "kf.qq.com": [13329], "mw.pe": [2024], "securedrop.theguardian.com": [16364], "butilochka.cdnvideo.ru": [19536], "news9daily.org": [11365], "easyodds.com": [5025], "*.lukb.ch": [20683], "peterborough.objective.co.uk": [21225], "assets3.clickfunnels.com": [3247], "editorial04.newsnetz.ch": [11371], "app.alibaba.com": [857], "fbjnews.info": [2024], "tusmag.click": [2024], "www.jqueryui.com": [8466], "url.hansng.com": [2024], "www.thebodyshop.ch": [3646], "d115.de": [2443], "*.kaizencrossfit.com": [4011], "oficialscbr.com": [2024], "212areaco.de": [2024], "www.governmentjobs.com": [20296], "www.yagi-antennas.com": [18722], "yiapanis.me": [2024], "*.chitika.net": [3094], "bravo.mery.jp": [9749], "sas.kaspersky.com": [8820], "cax.com": [2921], "armory.tf": [2024], "www.latticechallenge.org": [20785], "cdn.dianomi.com": [4432], "o89.in": [2024], "media.intermundomedia.com": [8252], "wufoo.com": [18572], "order.bytemark.co.uk": [2503], "bl.kasterma.net": [2024], "static.scs.georgetown.edu": [6531], "pozne.ws": [2024], "segmentfault.com": [14622], "equitylending.nab.com.au": [10905], "www.ntnu.edu": [11003], "jad-journal.com": [8657], "tracker.marinsm.com": [10003], "sfonts.wsj.net": [18021], "a.xnimg.cn": [18673], "101lang.com": [2024], "x.usool.pw": [2024], "www.tubemogul.com": [16885], "*.reethibeach.com": [13770], "git.korelogic.com": [8997], "www.*.onsugar.com": [11853], "www.flyersrights.org": [5941], "lurkmore.to": [9683], "abdessalam.me": [2024], "www.hungryhouse.co.uk": [7625], "my-ap.us": [2024], "millenniumseating.com": [10434], "www.kouio.com": [9008], "keys.bankofengland.co.uk": [1670], "rpn.media": [2024], "api.greatnonprofits.org": [6892], "s25.postimg.io": [13024], "www.ud-media.de": [17021], "connect.webtrends.com": [18264], "onecloudnet.akixi.com": [19129], "americas1stfreedom.org": [19190], "yourmembership.com": [18817], "webanalytics2.ovh.net": [12205], "bitwig.com": [2048], "carbonfund.org": [2843], "www.hangseng.com.cn": [7183], "i01.cc": [2024], "dbbat.es": [2024], "forum.lostfilm.tv": [20876], "t.clx.tc": [2024], "ncsol.co": [2024], "vona.ge": [2024], "moviease.com": [10679], "www.proxfree.com": [13219], "prisms.deewr.gov.au": [4016], "www.logcg.com": [20870], "fb.reevoo.com": [13772], "g0t0.us": [2024], "lean-hochschulgruppe.htwk-leipzig.de": [7596], "tajny-kurortnogo-otelja.friday.ru": [20175], "givekidstheworld.org": [6668], "account.bistudio.com": [2195], "hiiv.ee": [2024], "buswell.worldcat.org": [18536], "links.fahsi.org": [2024], "vonage.com": [17927], "tienda.astrocentro.com": [1327], "fty.link": [2024], "onlineshop.nero.com": [11201], "storeseen.co": [2024], "bostonbuilt.org": [2251], "www.aquabounty.com": [1174], "cge.li": [2024], "colta.ru": [19648], "cxcloud.com": [3942], "l.his-bkk.com": [2024], "modrice.biovendor.cz": [1933], "www.raspberrypi.org": [13629], "skandia.se": [14961], "apwustore.org": [977], "sfgs.co": [2024], "video-dean.com": [17778], "b.snf.org": [2024], "js01.daoju.qq.com": [13329], "www.shop.parliament.uk": [21349], "www.kaos.to": [8803], "yottos.com": [22686], "*.virginaustralia.com": [17820], "www.diigo.com": [4502], "fotbalove-prestupy.isport.blesk.cz": [2088], "www.aaspring.com": [455], "www-s.dakko.us": [4120], "www.jcloud.com": [8555], "elevation.is": [2024], "www.navercorp.com": [11152], "sewi.ng": [2024], "efile.boe.ca.gov": [2522], "www.tvrain.ru": [22329], "*.fins.com": [11361], "gtod.co": [2024], "anthem.com": [19206], "*.wpmudev.org": [18560], "a.zxcv.es": [2024], "img.nextag.com": [11402], "nicennaughty.co.uk": [11425], "portal.ambest.com": [369], "holidaypirates.com": [20392], "pcpartpicker.com": [12529], "www.hangseng.com": [7183], "protvino.net": [21519], "uaticon.unicef.org": [17069], "tokfb.adsrvr.org": [688], "www.creditrepairtrust.com": [3786], "stc-now.s-msn.com": [14115], "*.yelp.pt": [18766], "tyler.to": [2024], "redgap.akixi.com": [19129], "madete.ch": [2024], "admit.washington.edu": [17376], "planner-int.bingads.microsoft.com": [10396], "embed.doorbell.io": [4679], "gsspcln.jp": [6973], "wowzr.me": [2024], "mg2mobile.com": [10356], "chinesejil.oxfordjournals.org": [12222], "underhandedcrypto.com": [17242], "hoi-moon.com": [2024], "cozy.cpy.re": [19710], "m.anibis.ch": [19200], "rub.de": [13539], "d.xp1.ru4.com": [14064], "fasttracks.info": [2024], "www.fotki.yandex.by": [18739], "murph.me": [2024], "www.gmx.fr": [6330], "soflx.fr": [2024], "wp.cfjlab.fr": [2604], "s.bs.to": [2459], "ads.chaturbate.com": [3040], "repl.it": [21628], "smkt.me": [2024], "www.uniquefiler.com": [17283], "odessa.tv": [21229], "forums.openfiler.com": [12065], "jawbone.com": [8546], "r24618009.sync.app.asana.com": [1265], "dbb.is": [2024], "fmarl.in": [2024], "www.sheffieldchildrens.nhs.uk": [10953], "i2.sitepoint.com": [14937], "www.puush.me": [13303], "r24617902.sync.app.asana.com": [1265], "ns11.play-asia.com": [12828], "maps.openstreetmap.org": [12015], "tcgroup.me": [2024], "*.mentalhealth.asn.au": [10283], "www.hra-news.org": [7086], "world.yam.com": [18734], "vp.videoplaza.tv": [17785], "www.myphilanthropedia.org": [12652], "brainsonic.com": [2289], "b0.raptrcdn.com": [21583], "g.twimg.com": [16949], "www.kicktraq.com": [8898], "q.svn.org": [2024], "jxsj.biligame.com": [1903], "ren.lt": [2024], "newmail.majordomo.ru": [9914], "session.snel.com": [15098], "uhype.us": [2024], "www.orkut.co.in": [12145], "www.treehousei.com": [16780], "xquartz.macosforge.org": [9835], "iteller.com": [2024], "icc.blackberry.com": [2068], "to.incridea.com": [2024], "miruzow.jp": [2024], "zuker.co": [2024], "cm.22ndcm.com": [2024], "hertzarabic.com": [7360], "rbm.rocks": [2024], "*.service-now.com": [14681], "www.bortarsasag.hu": [2245], "i.cengroup.vn": [2024], "link.jiryo.com": [2024], "rabigtv.ga": [2024], "solidbarga.in": [2024], "verdi.vc": [2024], "unicf.in": [2024], "youtube.com.br": [18800], "ttf.me": [2024], "communities.acs.org": [974], "torbay.gov.uk": [16641], "fca.org.uk": [5547], "s-up.tv": [2024], "*.uproxy.org": [17093], "rva.ngo": [2024], "pagodabox.com": [12364], "astra.scu.edu": [14352], "tracking.lengow.com": [9263], "dibz.biz": [2024], "domino.otpbank.ru": [12165], "www.magazinesdirect.com": [9864], "spb.rt.ru": [13529], "icis.jpl.nasa.gov": [10909], "leisureworldbookings.colchester.gov.uk": [3414], "novouralsk.beeline.ru": [1778], "wrdp.rs": [2024], "segpaychat.com": [14618], "eventum.upf.edu": [17471], "city.com.ua": [3188], "nyagan.startsmile.ru": [21980], "s89.cnzz.com": [3328], "best.ssa.gov": [21959], "s2.wsj.net": [18021], "passto.co": [2024], "www.helpjuice.com": [7308], "tom.cr": [2024], "clevercoin.com": [3240], "bitly.hber.nl": [2024], "drdinsi.de": [2024], "a-wi.co": [2024], "es.uptimeinstitute.com": [22393], "steamrep.com": [15522], "s.mnet-ad.net": [10517], "js.adsonar.com": [593], "*.eds.com": [7379], "js3.pp.sohu.com.cn": [15170], "www.linuxplumbersconf.com": [9411], "en-da.dict.cc": [4442], "img-ebolaresponse.un.org": [17057], "t.u2tourfan.com": [2024], "komentare.sme.sk": [14198], "arcor.de": [1201], "photos.francisfrith.com": [20150], "*.eet.eu": [4898], "buhta.zarkzork.com": [18896], "efn.me": [2024], "stage-mobioinsider.com": [10541], "camino.worldcat.org": [18536], "cryptolux.org": [3853], "www.soundcloud.com": [15231], "boxcast.lasallehs.net": [9173], "www.anz.com": [374], "bayan.ir": [1730], "user.cmbchina.com": [2639], "chibooth.biz": [2024], "brain.rambler.ru": [13600], "tver.auto.ru": [19276], "i4.lbp.me": [20789], "www.technoportal.ua": [16105], "peterkieser.com": [21391], "rakuma.rakuten.co.jp": [13594], "pbhs.com": [12241], "vote.colorofchange.org": [3439], "ericb.co": [2024], "www.nikecsolutions.com": [11417], "dpenn.us": [2024], "www.notary.icsi.berkeley.edu": [17329], "pgcon.org": [12274], "playertop.elpais.com": [5126], "nanobe.link": [2024], "dotster.com": [4700], "heapro.oxfordjournals.org": [12222], "www.dynavision.de": [4827], "portaldaempresa.pt": [6857], "url.s2u.vn": [2024], "www.tt.vutbr.cz": [17609], "static-ak.facebook.com": [5609], "www.schneier.com": [14423], "hot-chilli.net": [7553], "*.haymarket.com": [7240], "forum.palemoon.org": [12370], "www.uninett.no": [17280], "consultants.leadpages.net": [9209], "www.trustedcs.com": [16861], "static.360buyimg.com": [148], "www.pdc.refedd.org": [13471], "www.zerodayinitiative.com": [18943], "www.trendin.com": [16792], "dest.asia": [2024], "tiaa-cref.org": [15881], "wifi.alipay.com": [864], "tipseri.net": [7736], "gic5.mycdn.me": [10866], "images.148apps.com": [46], "zalando.dk": [18877], "tpths.co": [2024], "picttwittcr.com": [2024], "testament-erbe-und-pflichtteil.de": [22129], "on.iacsa.mx": [2024], "vr.preferred-reservations.com": [13070], "archive-6.kali.org": [8786], "kcstudent.co.uk": [2024], "bnjmn.ca": [2024], "*.forumblog.org": [6040], "myaccgyap.psc.agilisys.co.uk": [19111], "cocdt.tk": [2024], "beta.openbadges.org": [12034], "plnk.jp": [2024], "sc02.alicdn.com": [853], "speed-dreams.org": [15321], "hq.huobi.com": [7628], "nasm.co": [2024], "nikolay.co": [2024], "nicolive.cdn.nimg.jp": [11450], "www.wetanz.com": [18319], "portal.fsisac.com": [5597], "arquetype.org": [1236], "ota.ssllabs.com": [14243], "go.taloha.co": [2024], "a-ni.me": [2024], "rep.gg": [2024], "sbran.com": [2024], "q7.com": [13320], "totostop.boum.org": [2261], "snd.lu": [2024], "complex-systems.com": [3528], "s16.qhimg.com": [13347], "huff.lv": [2024], "info5.erg.cuhk.edu.hk": [2704], "www.betterbills.com": [1854], "i.wp.pl": [18012], "vitly.xyz": [2024], "external.tldpros.com": [22219], "x.540.io": [2024], "*.orange.co.uk": [12122], "sevr.nl": [2024], "wiki.ro.vutbr.cz": [17609], "www.cms.fss.ulaval.ca": [17319], "licensing.bury.gov.uk": [19476], "edit.tilburguniversity.edu": [16521], "fluxx.io": [5938], "ias.edu": [7673], "ello.co": [5165], "honorrolls.stanford.edu": [15448], "alastore.ala.org": [356], "dev.dlvr.it": [19855], "federalsoup.com": [5709], "secure.zdnet.com": [18848], "video37.0xdb.org": [10], "www.adapto.rs": [19072], "txex.es": [2024], "m.maly.cz": [2024], "img.uptodown.com": [22396], "luv365.us": [2024], "metacpan.org": [10321], "www.history.state.gov": [17146], "www.sustainability.cornell.edu": [3676], "uzh.digitale-diathek.net": [4490], "desipirates.cf": [2024], "teb.li": [2024], "tekts.com": [2024], "cajaweb.tk": [2024], "bee.xxxxx.tw": [2024], "thomashunter.name": [22195], "mantis.ulpgc.es": [17213], "minimundosonline.com": [10457], "go.aetherii.com": [2024], "www.ars.usda.gov": [17119], "helly76.de": [2024], "www.openaccessbutton.org": [11951], "rosebudstud.io": [2024], "tomz.me": [2024], "take.guru": [2024], "torrenthounds.com": [16657], "mylov.es": [2024], "account.meraki.com": [10294], "*.saurik.com": [14369], "joinos.com": [8633], "smapl.us": [2024], "thecipherbrief.com": [22146], "savingmatters.dol.gov": [19867], "frckl.co": [2024], "taiga.io": [15976], "www.odnoklassniki.ru": [11764], "galleries.girlsoutwest.com": [6648], "a.pudl.es": [2024], "bmall.bilibili.com": [1904], "ohanian.co": [2024], "hg.edgewall.org": [5073], "tsdd.org": [15926], "students.sfu.ca": [14708], "www.barclays.co.uk": [1688], "www.flexims.kh.hu": [8739], "router-quality.maps.yandex.com": [18742], "www1.member-hsbc-group.com": [20960], "www.livingroutes.org": [9531], "www.longform.org": [9604], "core.ac.uk": [19690], "www.hakko.com": [7160], "secure.vidyard.com": [17792], "cdn.samsungknox.com": [14331], "link.boncell.ga": [2024], "r24822697.sync.app.asana.com": [1265], "seeley.co": [2024], "grkm.co": [2024], "cloud.schmidtcom.de": [14419], "www.papakaya.com": [12407], "monchegorsk.gov-murman.ru": [20293], "static.mediatropes.info": [15955], "apply.bz": [2024], "ref.mercurr.com": [2024], "tinymm.co": [2024], "yosui.co": [2024], "www.youtube.dk": [18800], "www.tdrevolution.com": [15868], "www.queer.de": [13399], "tuit.eu": [2024], "gpfeservicedesk.unicefusa.org": [17070], "on.lung.ca": [11924], "tv.prozeny.blesk.cz": [2088], "brd.camp": [2024], "sites.google.com": [6818], "www.budgetkredit.ch": [2411], "haskell.fpcomplete.com": [5581], "www2.erg.cuhk.edu.hk": [2704], "www.unbound.net": [17240], "partnernetprogram.com": [12452], "pdwl.htwk-leipzig.de": [7596], "vidup.me": [17791], "www.elearnsecurity.com": [4920], "oneclickreseller.com": [21253], "www2.zr.ru": [22725], "ekcep.us": [2024], "strtgr.fr": [2024], "*.mapraider.com": [9984], "www.derbyshirealert.co.uk": [19811], "homelessveterans.co.uk": [7489], "www.mixbit.com": [10502], "sigterm.no": [14845], "zyxel.ru": [22734], "sockshare.com": [15148], "at.nick.com": [2024], "7dv.me": [2024], "robb.us": [2024], "on.ryot.org": [2024], "winston.effi.org": [5097], "clcorp.dengisend.ru": [4344], "medipartner.nl": [2024], "masty.nl": [10071], "rbcommons.com": [13459], "smetrics.skype.com": [15003], "39i6.com": [2024], "gridigit.al": [2024], "wechat.com": [18116], "www.amung.us": [18363], "nordportal.ru": [21153], "safe.rublacklist.net": [14068], "*.factoryexpodirect.com": [5616], "d4h.link": [2024], "docs.chef.io": [3061], "apps.bizible.com": [19395], "wikidevi.com": [18386], "ads.asnetworks.de": [1294], "jescaja.de": [2024], "autodiscover.rsc.org.uk": [13517], "mypassword.provost.usc.edu": [17366], "img.mfcimg.com": [20972], "themes.getbootstrap.com": [6592], "350zevolution.com": [141], "issh.ac.jp": [8268], "jira.richrelevance.com": [13927], "renee.io": [2024], "8atzywvvgloeqjvr.asana.com": [1265], "userstat.netorn.ru": [21112], "emp.fyi": [2024], "metafetish.com": [10329], "mway.io": [2024], "planning.walthamforest.gov.uk": [18061], "tj.my": [2024], "ssl-promotions.newegg.com": [11356], "www.greatnonprofits.org": [6892], "www.eleave.osu.edu": [11797], "test.winehq.org": [18442], "rbr.me": [2024], "control.tnsinfo.com": [15907], "vstam.nl": [2024], "paadahl.us": [2024], "courseproviders.theguardian.com": [16364], "karachaevo-cherkesia.kavkaz-uzel.ru": [20694], "photoo.play-asia.com": [12828], "yelp.com.ar": [18766], "cleob.co": [2024], "s.garitv.eu": [2024], "yelp.com.au": [18766], "staff.snel.com": [15098], "su.chinmath.com": [2024], "exam.consumerfinance.gov": [3603], "analytics.yandex.com": [18742], "fyl.uniovi.es": [17282], "www.myvarian.com": [10840], "www.zyxel.ru": [22734], "www.lib.calpoly.edu": [2764], "www.whonix.org": [18362], "hwzt.co": [2024], "bangor.ac.uk": [1666], "gd1.alicdn.com": [853], "wiki.onosproject.org": [11685], "members.sina.com.cn": [14904], "*.tvnewscheck.com": [15952], "kindacool.co": [2024], "askebsa.dol.gov": [19867], "www.distrowatch.org": [4566], "bugreports.qt-project.org": [13364], "community.runabove.com": [14090], "aaahe.at": [2024], "www.fnmag.co": [5572], "www.tripadvisor.co.nz": [22290], "dlar.ge": [2024], "www.basildon.gov.uk": [19324], "ecn.t6.tiles.virtualearth.net": [17840], "bernina-lausanne.ch": [1827], "on.fndgo.us": [2024], "www.fiction.libgen.pw": [9317], "store.speedtree.com": [15325], "thecjm.me": [2024], "g.leaf.fm": [2024], "dolo.news": [2024], "info.mkto.visioncritical.com": [17862], "visaplace.com": [17853], "ga.pietsweer.nl": [2024], "newchr.link": [2024], "qidian.com.tw": [13349], "blog.linode.com": [9401], "mstrbkg.co": [2024], "pub.nieuwsbrief.unit4.com": [22378], "rhou.se": [2024], "jdi.nacti.me": [2024], "blog.1688.com": [51], "www.ccccloud.com": [2554], "computerfulfillment.com": [3538], "app.nickelled.com": [21137], "tsta.pt": [2024], "ssl-cdn-assets.tmz.com": [15897], "act.greenpeace.org": [6920], "haveyoursay.westsussex.gov.uk": [18305], "online.uralfd.ru": [17493], "yseop.tech": [2024], "support.playwire.com": [12848], "appmarket.nexternal.net": [11404], "lnkt.la": [2024], "glasgow.rocks": [2024], "data2.whicdn.com": [17996], "www.archomedia.com": [1198], "go.gdgs.pl": [2024], "pcdi.ly": [2024], "mobilestore.marvel.com": [10047], "s4.mzstatic.com": [10893], "vh.co": [2024], "onfa.st": [2024], "a.sunil523.com": [2024], "wesellhom.es": [2024], "onsugar.com": [11853], "*.fotocommunity.de": [6054], "coindesk.com": [3394], "blog.assembla.com": [1301], "communication.sikur.com.br": [14847], "meetings-archive.debian.net": [4261], "tash.website": [2024], "txuna.ml": [2024], "www.interfax.kz": [20552], "mer.cr": [2024], "norway.usembassy.gov": [22406], "rdpxl.com": [2024], "ir.alibaba.com": [857], "chemtech.mirea.ru": [20993], "www.ncisf.org": [10924], "nbn.li": [2024], "test2-tor.adsrvr.org": [688], "files.renoise.com": [21627], "depot.xda-developers.com": [18598], "htdj.in": [2024], "msio.co": [2024], "venveo.co": [2024], "autoconfig.yandex.kz": [18743], "gwgw.tk": [2024], "sccs.illuminateed.com": [20494], "login.wx2.qq.com": [13329], "loisirs3.cff.ch": [15756], "blog.groupees.com": [6950], "spb.citilink.ru": [19594], "mylinkshort.ga": [2024], "dev.arma3.com": [1227], "dealflow.flippa.com": [5907], "banners.adultfriendfinder.com": [696], "m.friday.ru": [20175], "asiointi.hel.fi": [7313], "in-tend.co.uk": [20516], "img4.linuxdeepin.com": [4287], "polly.llvm.org": [9103], "skillzone.work": [2024], "rusztikho.me": [2024], "wnatl.com": [2024], "urx.com": [17097], "zhoumo.taobao.com": [16015], "lemde.fr": [2024], "donmai.us": [19880], "wilhelm-gym.net": [18402], "365tickets.com": [150], "www.argosemails.co.uk": [1214], "www.americaslongestwar.com": [993], "www.islamdownload.net": [8367], "s.t42.fr": [2024], "lvstm.co": [2024], "give.weill.cornell.edu": [3676], "dl.gogs.io": [20280], "www.csirt.vutbr.cz": [17609], "hosting-advantage.com": [11232], "go.cpanel.net": [2667], "uprod.biz": [17092], "webr.ws": [2024], "pac-uk.org": [21331], "hud.gov": [17099], "tangzhuang.jd.com": [8436], "epitesz.bme.hu": [1556], "islamdownload.net": [8367], "mumble.schmidtcom.de": [14419], "ebay.to": [2024], "royaldns.net": [21681], "uk.pcpartpicker.com": [12529], "bebold.ly": [2024], "www.nrapvf.org": [21185], "www.citilink.ru": [19594], "www.rentler.com": [13837], "cole16.com": [2024], "i3.social.microsoft.com": [10396], "www.it-pol.dk": [8405], "pahq.co": [2024], "in30.co": [2024], "cms.ipressroom.com.s3.amazonaws.com": [7800], "ws.amazon.de": [19174], "app.cloudsponge.com": [3293], "theo.re": [2024], "www.serovglobus.ru": [21786], "sfa.st": [2024], "images.ironsolutions.com": [7820], "ztailors.co": [2024], "fandago.com": [5641], "ssl.s.xnimg.cn": [18673], "ji.sc": [2024], "store2.esellerate.net": [5346], "js.ad-stir.com": [567], "ladygo.tmall.com": [22222], "calmessages.berkeley.edu": [17329], "requestpolicy.com": [13850], "shop.kingston.com": [8916], "leptop.hu": [9167], "monitor.eduroam.org": [5089], "mttr.io": [2024], "gavinhungry.io": [6452], "seattleix.net": [14516], "go.area801.com": [2024], "toz.tocco.ch": [16600], "stats.openmandriva.org": [11992], "opsplatform.adsrvr.org": [688], "soks.us": [2024], "r.sampic.eu": [2024], "www.skillsmatter.com": [14975], "losepounds.me": [2024], "eu.citrix.com": [3180], "verisign.com.br": [17712], "newportmotorsports.com": [11359], "searchstorage.de": [16083], "www.teamweek.com": [16070], "md02.plex.tv": [12854], "ukreg.com": [5674], "on.mrtlrts.me": [2024], "en.faqs.bookmyname.com": [2215], "lstn.at": [2024], "etcusc.co": [2024], "link.kdvr.com": [2024], "www.clothingattesco.com": [3274], "g.cf": [2024], "cs.ut.ee": [17148], "haat.ch": [2024], "www.theepochtimes.com": [5314], "wustl.edu": [18089], "superstart.se": [15700], "h264-aws.vevo.com": [17566], "edihealth.com": [4886], "careers.state.gov": [17146], "support.xapo.com": [18630], "velo.ws": [2024], "archive.astrobl.ru": [19264], "nzoo.me": [2024], "ouad.unizar.es": [17441], "dsn2.play-asia.com": [12828], "citrixready.citrix.com": [3180], "mhs.io": [2024], "ada.lt": [601], "absys1.ulpgc.es": [17213], "pogoplug.com": [12894], "mis.cc.ntu.edu.tw": [11010], "color.idea.org": [2024], "gocatfish.in": [2024], "photos-f.ak.fbcdn.net": [5689], "developer.dji.com": [4029], "www.gmo-registry.com": [6326], "www.healthfuze.com": [7262], "etapestry.com": [5359], "*.javascriptmvc.com": [8541], "img1.doubanio.com": [19889], "webcare.estara.com": [5356], "*.jobamatic.com": [8608], "account.nvidia.com": [11022], "eu.httpbin.org": [7594], "checker.ipleak.net": [20571], "cvs.web.cern.ch": [2586], "wnk.so": [2024], "iiflw.net": [2024], "bmcg.us": [2024], "a2.adform.net": [638], "www.myvisarewardsplus.com": [17643], "admissions.portsmouth.gov.uk": [21467], "redletterdays.co.uk": [13736], "regilite.nytimes.com": [11040], "s.vinyets.cat": [2024], "storage1a.censor.net.ua": [19538], "findingma.st": [2024], "euwest1-beta-pix.dsp.io": [4780], "portent.co": [2024], "forum.lenovo.com": [9267], "ogt.jp": [8110], "angus.spydus.co.uk": [21952], "pntl.enaza.ru": [5222], "www.dieselnet.com": [4448], "2kom.ru": [128], "breuninger.com": [2326], "events.sjpl.org": [21844], "asi.ru": [19256], "bmcevolbiol.biomedcentral.com": [1931], "tjenester.uninett.no": [17280], "secure.getprice.com.au": [6600], "thepulp.me": [2024], "nyu.edu": [11334], "*.danzappone.com": [16397], "dus.jibbed.org": [20641], "heyor.ca": [2024], "www.rocketnet.jp": [13995], "www.bx.in.th": [1609], "fireeye.com": [5836], "apply.creation.co.uk": [3771], "*.yelp.se": [18766], "abaguan.jd.com": [8434], "api-staging.mojang.com": [9789], "www.scene.org": [8267], "developer.mashery.com": [10055], "portal.vszp.sk": [17958], "donna.kr": [2024], "*.pbworks.com": [12246], "fife.gov.uk": [20087], "cdn1.vendocdn.com": [17695], "analytics.mashape.com": [10053], "www.fulltraffic.net": [6231], "shambhalamountain.org": [14717], "www.aka.ms": [354], "hdvidtv.tk": [2024], "git.bober.sknt.ru": [21851], "pfizer.com": [12640], "scenetap.com": [14404], "apcks.us": [2024], "3.mrwrk.nl": [2024], "nvla.ws": [2024], "*.noris.net": [11523], "u.salimbo.me": [2024], "hoon.io": [2024], "dmsc.me": [2024], "www.gismeteo.by": [20248], "de-nl.dict.cc": [4442], "nwprogressive.org": [11629], "support.tapatalk.com": [16018], "www.ship-ment.com": [14766], "npddecisionkey.com": [4273], "www.parkingeye.co.uk": [12437], "pai.xiaomi.cn": [18661], "www.syntevo.com": [15806], "ikhaya.ubuntuusers.de": [17184], "*.redbullcontentpool.com": [13727], "www.secondlookforensics.com": [14528], "m.yuga.ru": [22701], "m.ajurveda.hu": [2024], "m.jacoblo.se": [2024], "joyent.com": [8663], "bscintra.buffalostate.edu": [2418], "gnusocial.de": [6339], "www.kryptnostic.com": [9030], "www.ip-projects.de": [7789], "italia.isidewith.com": [20466], "l.drinkbird.com": [2024], "carguy.co": [2024], "account.theregister.co.uk": [22182], "www.shacombank.com.hk": [14719], "chkto.com": [2024], "www.pepephone.com": [22633], "m.maynards.com": [2024], "ctyj.hu": [2024], "sympa.org": [15785], "*.gumgum.com": [7001], "docker.ideco.ru": [20480], "www.studentessentials.cornell.edu": [3676], "brs.li": [2024], "mail.websupport.sk": [18253], "www.smartertools.com": [15058], "mavrck.net": [2024], "my.southwark.gov.uk": [15264], "login.numergy.com": [11618], "www.hnfe.vt.edu": [17825], "roseshi.re": [2024], "awsm.uk": [2024], "kodi.tv": [8965], "ccs.cabinetoffice.gov.uk": [2716], "cbssportsnetwork.com": [2539], "classic.fastmail.fm": [5677], "ktrent.us": [2024], "m.legal.yandex.com.tr": [18740], "api.adrtx.net": [645], "xpc.cloudpath.net": [3311], "s.topics.be": [2024], "carousel.rsc.org": [14048], "cp.curse.com": [3927], "*.mun.ca": [10270], "img.godaddy.com": [6755], "www.electrum.org": [5145], "cms.rugby.gov.uk": [14083], "cnsl.me": [2024], "chloro.uk": [2024], "www.websecurify.com": [18239], "hsadmin.unet.by": [22367], "static.rbth.com": [21596], "vscl.osu.edu": [11797], "sufficientlysecure.org": [15645], "womenssoccer.clubs.bucknell.edu": [2406], "th.foursquare.com": [6061], "blog.mondediplo.com": [10578], "*.s2member.com": [14120], "user.tagboard.com": [22085], "www.mandelbrot-dev.kairo.at": [8782], "www.hobbyking.com": [7446], "research.facebook.com": [5609], "bbs4.play-asia.com": [12828], "shabdkosh.com": [14710], "ciachef.be": [2024], "www.paydirekt.de": [12506], "tilecache3.kairo.at": [8782], "itbit.com": [8398], "top.list.ru": [9462], "support.gamigo.com": [6426], "raur.co": [13458], "minorityinternships.energy.gov": [5243], "u.lds.li": [2024], "www5.basildon.gov.uk": [19324], "surreycc.gov.uk": [22040], "www.kinox.nu": [20720], "jobs.fm-world.co.uk": [20128], "stky.gd": [2024], "stage.saturn.de": [21736], "pacit.tech": [2024], "battelle.org": [1718], "jibtherapies.biomedcentral.com": [1931], "www.clusterconnection.com": [3320], "ticketdriver.com": [16489], "tokenrank.tokenly.com": [22229], "leiama.is": [2024], "revelb.us": [2024], "officiel-des-vacances.com": [11791], "s.dallerup.net": [2024], "blog.discogs.com": [4529], "adm.astrobl.ru": [19264], "services.devon.gov.uk": [4415], "www.standeyo.com": [15439], "kampyle.co": [2024], "www.question-defense.com": [13406], "user.ornl.gov": [11730], "bcportal.symantec.com": [15780], "reg.centrum.cz": [19547], "ww1082.smartadserver.com": [15049], "1topicne.ws": [2024], "content.gallup.com": [6387], "www.148apps.com": [46], "cdn.dmtmag.com": [4591], "www.visioncritical.com": [17862], "www.airwarriors.com": [19125], "*.tsmc.com": [15928], "library.wellcome.ac.uk": [22559], "wdhne.ws": [2024], "developers.spiceworks.com": [15338], "s3.marketwatch.com": [10029], "mintrans.gov-murman.ru": [20293], "pr.map.qq.com": [13329], "global.content.compendiumblog.com": [3520], "*.psswrdbx.com": [12469], "forums.theregister.co.uk": [22182], "lkk-zkh.ru": [20858], "generationawake.eu": [4374], "natrlambtn.info": [2024], "palaute.olvi.fi": [11823], "mhf.oss.aliyuncs.com": [19143], "s2.mt-cdn.net": [9812], "duna.vc": [2024], "xe.com": [18599], "spclr.us": [2024], "api.dol.gov": [19867], "www.fineartamerica.com": [5828], "mencap.org.uk": [10275], "i.daxue.taobao.com": [16015], "www.faxcritics.com": [5683], "webmail.hosteurope.de": [7524], "acquisition.jpl.nasa.gov": [10909], "ndfndr.in": [2024], "www.ivents.ya.ru": [18716], "mgb.nyc": [2024], "analytics.ponyfoo.com": [21460], "www.coxdigitalsolutions.com": [3735], "*.controlscan.com": [3623], "goint.us": [2024], "www.gp-digital.org": [20299], "build.particle.io": [12451], "www.spektrix.com": [21933], "r24820146.sync.app.asana.com": [1265], "securityevaluators.com": [14589], "webtraffiq.com": [18259], "cdn.stackcommerce.com": [15426], "app.tutanota.de": [16923], "www.netelligent.ca": [11264], "stewilliams.com": [21991], "support.hoverwatch.com": [20414], "url.ebdg.cu.cc": [2024], "obsoleet.org": [11744], "l.hchuang.info": [2024], "passport.i.ua": [7659], "www.cleveland.police.uk": [3238], "earn.greensmoke.com": [6911], "live.mayfirst.org": [10113], "cfl.re": [2024], "www.micasa.ch": [10370], "livesino.duoshuo.com": [19906], "pkgs.org": [12788], "certifications.apple.com": [1151], "darebee.com": [19757], "ewu.worldcat.org": [18536], "smarthelp.mcafee.com": [10129], "static.ant1.gr": [6895], "resizer.bk-partners1.co.uk": [19397], "hg.intevation.de": [8293], "paradi.link": [2024], "itech.bz": [2024], "*.linguee.de": [9390], "r.mzstatic.com": [10893], "vsq.io": [2024], "lok.ee": [2024], "psh.me": [2024], "tinkoff.ru": [16552], "research.bpcrc.osu.edu": [11797], "cmpr.tw": [2024], "portonorth.info": [2024], "tinylls.com": [2024], "*.raumzeitlabor.de": [13638], "aidsinfo.nih.gov": [11090], "info.movableink.com": [10667], "twisted4life.com": [16957], "wp1mo.in": [2024], "docs.roundcube.net": [14039], "help.netflix.com": [11269], "ncle.co": [2024], "nkj.ru": [21143], "prvs.ly": [2024], "*.moatads.com": [10525], "johann.im": [2024], "www.manutan.fr": [9974], "studentaccounts.georgetown.edu": [6531], "keys.qubes-os.org": [13394], "pdfimages.wondershare.com": [22608], "pt.squat.net": [21955], "blog.bibliothek.kit.edu": [8812], "bugzilla.novell.com": [11569], "02faq.com": [2024], "secureleisure.telford.gov.uk": [22121], "asset-0.netbeans.org": [11223], "s1.online2pdf.com": [11910], "spw3.co": [2024], "bugs.mysql.com": [10825], "qrcode.if.qidian.com": [13349], "track.juno.com": [8699], "online.email.hsbc.co.uk": [20422], "edc.intel.com": [8211], "publicaccess2.tmbc.gov.uk": [15892], "www.google.com": [6830], "brians.photos": [2024], "ubt8.fanli.com": [5645], "tctmag.me": [2024], "*.dmlimg.com": [4101], "www.piraten-mfr.de": [12740], "colab.uniovi.es": [17282], "www.housingauthority.gov.hk": [7064], "answerology.cosmopolitan.com": [3691], "d53.co": [2024], "www.surespot.me": [15711], "koumbit.org": [9010], "*.admin.onesite.com": [11682], "www.palgrave.com": [12372], "img3.thalasseo.com": [16241], "sc2.sinacloud.com": [14908], "*.webresint.com": [18138], "motoo.zr.ru": [22725], "www.nowness.com": [11574], "projectwonderful.com": [13187], "www.aklamio.com": [812], "nars.engineering.osu.edu": [11797], "udrapt.com": [2024], "globe.thecthulhu.com": [16403], "i.niuradio.cl": [2024], "africangreyparrotcentre.co.uk": [753], "cs.idg.se": [7709], "stickhet.com": [15541], "knowledge.hacklab.to": [7123], "iaea.org": [7670], "firmware.karlsruhe.freifunk.net": [20688], "www.business.usa.gov": [17110], "bt.abbamboo.com": [2024], "*.propublica.net": [13159], "kabel.canaldigital.se": [2817], "lnk.gntr.org": [2024], "imgkings.com": [20506], "epen.is": [2024], "matlab.my": [2024], "a2.ec-images.myspacecdn.com": [10889], "l.next.dj": [2024], "lwn.net": [9125], "www.mg2mobile.com": [10356], "secure.instantssl.com": [8186], "kudelskisecurity.com": [9044], "structbio.nature.com": [11140], "uat.courierpost.co.nz": [3714], "photos.live.com": [9495], "*.nehta.gov.au": [11105], "vinrcl.safercar.gov": [14296], "t-nx.us": [2024], "healthreach.nlm.nih.gov": [11090], "globes.co.il": [6724], "ch.cahelpers.in": [2024], "l3.51fanli.net": [209], "mtbm.ag": [2024], "nccgroupdomainservices.com": [10923], "static.x10hosting.com": [18588], "s.styl.be": [2024], "thehut.com": [16298], "d.mact.me": [2024], "l.namira4ka.com": [2024], "forum.cmbchina.com": [2639], "www.atmos.uiuc.edu": [17030], "verifiedvotingfoundation.org": [17709], "*.go.com": [6341], "provider.communitycares.com": [19654], "assets.insnw.net": [8175], "x.kabam.com": [2024], "adminer12.vas-hosting.cz": [22428], "www.news.osu.edu": [11797], "bill.krasno.ru": [20753], "17th.co": [2024], "sav.la": [2024], "iodi.ne": [2024], "ideal.snsbank.nl": [14207], "glsh.in": [2024], "www.snakehosting.dk": [15089], "voice.connect.comcast.net": [3461], "etracker.com": [5378], "partner.redhat.com": [13735], "www.llvm.org": [9103], "sitefinity.com": [14946], "edmt.cc": [2024], "nat.astrobl.ru": [19264], "otbblog.co": [2024], "help.lendingclub.com": [9261], "sso.mhfi.com": [20976], "git.parabola.nu": [12412], "teenv.ge": [2024], "mobify.me": [10530], "bremen.fau.org": [5543], "makeloveland.com": [9920], "lincolnshire.gov.uk": [9380], "evaneos.independent.co.uk": [8058], "kickasstorrents.to": [8894], "pay.mts.ru": [21042], "agariomods.com": [764], "www.ebs.ncrs.nhs.uk": [10953], "meteorhacks.com": [10340], "vpncritic.com": [17593], "swift.hydranodes.de": [20453], "www.finmozg.ru": [5832], "community.publicmobile.ca": [13257], "acikakademi.com": [530], "projects.cloud.icij.org": [7689], "marge.fa.vutbr.cz": [17609], "www.nicennaughty.co.uk": [11425], "fedregistry.renater.fr": [13826], "webhost355.asu.edu": [1221], "ajsch.me": [2024], "webaccess.mind.org.uk": [10443], "photovoltaic.pw": [2024], "s8am.com": [2024], "tickets.meeting.ietf.org": [7725], "stc.synology.com": [15803], "livelove.ly": [2024], "static.hackerspace.pl": [7136], "s14.postimage.org": [13024], "cyber.sci-hub.la": [14436], "hits.guardian.co.uk": [6982], "img.autobytel.com": [1450], "support.visiblebody.com": [17859], "abysmal.nl": [491], "www.klerk.ru": [20730], "forums.servethehome.com": [14663], "l.mbwd.pt": [2024], "saic.com": [14123], "www.virtualbox.org": [17833], "crosskeyshomes.co.uk": [19723], "iitm.be": [2024], "moi.gov.sa": [14368], "states.secular.org": [14536], "veterans.georgetown.edu": [6531], "js.chefkoch-cdn.de": [3062], "www.midlothian.gov.uk": [10407], "aai-logon.fhnw.ch": [5559], "secondlife.com": [14527], "edge.ie": [2024], "korea.play-asia.com": [12828], "pc.moorig.com": [2024], "mybenefitsplan.osu.edu": [11797], "q.stripe.com": [15594], "support.crypteron.com": [3847], "www.koolspan.com": [20748], "televize.kn.vutbr.cz": [17609], "www.betterfap.com": [1856], "coloradoattorneygeneral.gov": [3440], "*.web4u.cz": [18147], "ourtesco.com": [12176], "usfigu.re": [2024], "heifer.org": [7283], "chekpag.es": [2024], "huseyin.me": [2024], "thesne.ws": [2024], "www.rivieratours.com": [13966], "indig.ooo": [2024], "www.stacksity.com": [15430], "www.dml.georgetown.edu": [6531], "forms.moon-ray.com": [10618], "l.maxkostow.com": [2024], "www.getsatisfaction.com": [6601], "www.gruntjs.com": [20313], "cdn.static1.marvelstore.com": [10049], "winningmo.uk": [2024], "translate.yandex.kz": [18743], "emskr.chefkoch-cdn.de": [3062], "shop.nknews.org": [10974], "v007.ax2600ab.omdx.uprr.com": [22392], "tally-ho.me": [2024], "sports.vice.com": [17754], "yx.gdl.netease.com": [11228], "i-1.me": [2024], "kinyetbna.gq": [2024], "www.nrc-cnrc.gc.ca": [11096], "cogreens.org": [2024], "www.omakaseweb.com": [11826], "online1.drweb.com": [4776], "4n6.mobi": [2024], "www.mediamarkt.se": [10189], "stressfaktor.squat.net": [21955], "leedsforlife.leeds.ac.uk": [17403], "landrover.here.com": [7325], "jaast.com": [12380], "athena.iubenda.com": [8409], "soldierx.com": [15184], "wf.net.au": [2024], "isd.hscic.gov.uk": [20435], "information.dk": [8125], "www.rocketmail.com": [18728], "bbnc.vanaqua.org": [17637], "*.edublogs.org": [5082], "www.adelphi.de": [635], "stage.mmcommunity.mediamarkt.de": [20949], "twistlock.com": [22332], "trumanlibrary.org": [7206], "m.washington.edu": [17376], "90poe.com": [2024], "www.marathon.hku.hk": [20387], "emrkt.in": [2024], "studentlife.osu.edu": [11797], "www.goodreads.com": [6813], "help.greencubes.org": [20306], "theinternetco.net": [16369], "www295.americanexpress.com": [979], "databits.net": [4188], "trash.net": [16761], "ditis.yanao.ru": [22665], "gototraining.com": [6770], "voip.mephi.ru": [10287], "surveys.ofsted.gov.uk": [21231], "mep-store.engineering.osu.edu": [11797], "legovine.com": [2024], "ap2.pccu.edu.tw": [12250], "dagmar.me": [2024], "nss.wustl.edu": [18089], "link-www.play-asia.com": [12828], "www.ridus.ru": [21651], "surge.omniti.com": [11834], "cro.chat": [2024], "ldscdn.org": [16293], "truecrypt.ch": [16839], "stjin.me": [2024], "eservices.sccgov.org": [14401], "www.eshop.kensington.com": [8866], "infotools.lloydsbank.com": [9537], "m.static.newsvine.com": [11390], "r24626457.sync.app.asana.com": [1265], "leo.camp": [2024], "wiki.avenirclimatique.org": [1472], "clclibrary.worldcat.org": [18536], "ents.net": [2024], "foremost.axonify.com": [1502], "gzhls.at": [13072], "www.2ch.cm": [121], "plunderpirat.es": [2024], "blankslate.io": [2077], "netkaiser.kairo.at": [8782], "influencersconference.com": [8101], "help.content.samsung.com": [14326], "s.primepix.ru": [2024], "test.osha.gov": [11708], "www.assetmanagement.hsbc.com": [7090], "www.akira.org": [810], "theappendix.net": [16322], "eos.cartercenter.org": [2877], "www.bellingcat.com": [1795], "mywebsitepersonal.1and1.com": [69], "alaska.worldcat.org": [18536], "www.snapwidget.com": [15092], "ibww.eu": [2024], "imgur.com": [8003], "www.zoink.it": [4994], "alumni1.brunel.ac.uk": [19459], "dexmedia.com": [4422], "webmail.brenet.de": [2314], "*.samwhited.com": [14322], "challi.es": [2024], "terrain.jp": [2024], "i.grolex.eu": [2024], "internetsociety.org": [8273], "openmrs.org": [11988], "www.vidahost.com": [17765], "tbiddy.com": [2024], "portugal.usembassy.gov": [22406], "k.sjks.us": [2024], "go.veeed.com": [2024], "blog.mageia.org": [9865], "pbox.travel.rakuten.co.jp": [13594], "www6.slac.stanford.edu": [15448], "www.cravatar.eu": [19715], "go.continuum.io": [19676], "sexyveggie.co": [2024], "issibn.swm.de": [14269], "git.beaker-project.org": [1756], "tennis.clubs.bucknell.edu": [2406], "td10.us": [2024], "r24626297.sync.app.asana.com": [1265], "uprr.com": [22392], "lnk.virican.net": [2024], "rt2.map.gtimg.com": [6975], "api.playkey.net": [12844], "www.visionartforum.com": [17861], "plan-summaries.anthem.com": [19206], "m.rns.online": [21658], "89pi.es": [2024], "bbaccs.co": [2024], "sci-hub.la": [14436], "stu.link": [2024], "tem.mn": [2024], "x.mikaelf.com": [2024], "www.staffportal.surreyheath-online.gov.uk": [22041], "images.42floors.com": [181], "nxdr.co": [2024], "goods-guru.ru": [2024], "blogdaredacao.catracalivre.com.br": [2917], "deviceids-medp-id4.wdr.de": [18113], "shrtdn.com": [2024], "help.maven.co": [10098], "static.eurodns.com": [5396], "ivsezaodnogo.ru": [20612], "peopleschoice.com": [12585], "editions.thing.net": [16427], "*.netnod.se": [11286], "wp01.dudley.gov.uk": [4788], "csync.org": [3895], "www.dianomi.com": [4432], "irancybercrime.org": [20574], "campaigns.350.org": [140], "drupalwatchdog.com": [4775], "van.so": [2024], "search.creativecommons.org": [3774], "6wunderkinder.com": [223], "labs.nationalarchives.gov.uk": [11115], "gephardtinstitute.wustl.edu": [18089], "www.gpugrid.net": [6351], "rtco.ws": [2024], "movieposter.com": [10683], "ershsrs.mvd.ru": [21055], "nr.qq.com": [13328], "promtec.tk": [2024], "mcc.fyi": [2024], "xgeek.in": [2024], "education.isc2.org": [7824], "cru.is": [2024], "mail.rosminzdrav.ru": [21674], "s.2o6.net": [2024], "limesurvey.org": [9372], "notsafeforwork.de": [10322], "myw.lu": [2024], "marthastewart.com": [10041], "sm.ai": [2024], "www.playfire.com": [12842], "masspirgstudents.org": [9726], "haitao.nosdn3.127.net": [41], "*.trachtenshop24.de": [16702], "www.idstronghold.com": [7939], "support.unicef.org": [17069], "vdib.dfs.un.org": [17057], "www.research.hsbc.com": [7090], "azov.startsmile.ru": [21980], "mis.sn": [2024], "unc.tv": [2024], "go.alan.cm": [2024], "electrostal.tpprf.ru": [22260], "imap-01.ct.infn.it": [7771], "s.luizfilipe.me": [2024], "www.eo.mondediplo.com": [10578], "*.righthaven.com": [13941], "www.gov-murman.ru": [20293], "wiki.warthunder.ru": [22529], "careers.symantec.com": [15780], "nine.li": [2024], "shiseido-fb.jp": [2024], "mjr.bz": [2024], "lansforsakringar.se": [9164], "*.i-kiz.de": [7656], "ygnition.com": [18770], "forms.southwark.gov.uk": [15264], "webcompat.com": [18207], "igg.me": [8078], "trobs.me": [2024], "clocks.yandex.kz": [18743], "hdsupply.fm": [2024], "sports.now.com": [11572], "jthy.pe": [2024], "ebzr.tk": [2024], "vm-lib-www-01.cca.edu": [2547], "bourn.co": [2024], "jfrmilner.co.uk": [2024], "portma.net": [2024], "gclay.ws": [2024], "openhpi.de": [11977], "ds2.static.rtbf.be": [14063], "cdn.torrentfunk.com": [16652], "lucurat.es": [2024], "s0.meituan.com": [10248], "my.egift.io": [2024], "online.mdm.ru": [10143], "vevent.com": [22451], "vs5.bdstatic.com": [1642], "finalsfever.courierpost.co.nz": [3714], "rdoproject.org": [13467], "getty.edu": [6602], "www-cache1.extensis.com": [5513], "metrode.al": [2024], "ulyanovsk.tpprf.ru": [22260], "owa.severgazbank.ru": [14697], "kandalaksha.europaplus.ru": [20034], "shibboleth.stanford.edu": [15448], "mari-el.auto.ru": [19276], "kennedy-center.org": [20703], "u0.qiyipic.com": [13354], "*.customerhub.net": [8139], "*.processnet.hu": [4659], "shadow.cs.umn.edu": [17356], "www.jsclasses.net": [8671], "decs.dict.cc": [4442], "sbux.jp": [2024], "www.wd2go.com": [17990], "www.bitcoinknots.org": [19388], "supermoms.net": [2024], "lhvci.com": [2024], "www.math.uchicago.edu": [17334], "*.kobo.com": [8962], "www.exler.ru": [20050], "www.bnkomi.ru": [19417], "video12.0xdb.org": [10], "l.upfour.it": [2024], "helios.gsfc.nasa.gov": [10909], "xm.techxpress.net": [16087], "login.linode.com": [9401], "mflwr.co": [2024], "mobile.willhaben.at": [18405], "sysstaff.ucsd.edu": [17012], "stf.cc": [2024], "manage.ukfsn.org": [17040], "wpmudev.org": [18560], "yoyo.q-assets.com": [21551], "southrivertechnologies.com": [21913], "progressreport.cancer.gov": [2819], "sps.tocco.ch": [16600], "gotfuturama.com": [6836], "kv.topv.nl": [2024], "mytbb.primus.ca": [13112], "pear2.php.net": [12280], "*.kobobooks.pt": [8962], "ocamaria.com": [2024], "ww2468.smartadserver.com": [15049], "www.chartbeat.com": [3024], "uncha.in": [2024], "ants.cafe": [2024], "ips.oxfordjournals.org": [12222], "dogechain.info": [4625], "smackcoders.com": [15045], "origin.www.upcbusiness.nl": [17084], "leisure.cheshireeast.gov.uk": [3071], "go.unruly.co": [22381], "www.mathsisfun.com": [10082], "*.uni-rostock.de": [17419], "updates.software-univention.de": [17315], "hsbc.com.bd": [20424], "www.unicef.or.jp": [17066], "polling.bbc.co.uk": [19331], "static-www.elastic.co": [5131], "sfu.ca": [14708], "lk.godrenews.us": [2024], "sdfestaticassets-us-east-1.sciencedirectassets.com": [21750], "feedback.sk.ru": [21845], "sfmoma.me": [2024], "imsl.engineering.osu.edu": [11797], "vdub.in": [2024], "byandlar.ge": [2024], "epidem.mysql.cesky-hosting.cz": [19553], "service.marshall.usc.edu": [17366], "ejournal.ladepeche.fr": [9128], "grn.me": [2024], "www.3sat.de": [174], "rad.ical.io": [2024], "www.sempervideo.de": [14634], "secby.us": [2024], "amway.com": [937], "www.colorofchange.org": [3439], "www.tokyotosho.se": [16612], "on.moby.com": [2024], "blog.statcounter.com": [15481], "fluiddynamics.osu.edu": [11797], "a.alest.com.br": [2024], "reif.me": [2024], "candiangeo.info": [2024], "cdn.leagueoflegends.com": [9220], "infogrow.us": [2024], "cooper.play-asia.com": [12828], "www.faiusa.org": [5977], "www.jquerymobile.com": [8464], "masterh4.adriver.ru": [588], "nittele.jp": [2024], "www.8ch.net": [243], "*.nd.edu": [17413], "brulinesfuelsolutions.com": [17750], "www.infoblox.com": [8108], "omho.me": [2024], "artifactory01.tocco.ch": [16600], "my025.tk": [2024], "theatlantic.com": [16324], "d2bs.us": [2024], "l.mkj.is": [2024], "m.utb.ru": [17538], "vpsportal.gmocloud.com": [6323], "www.varietylatino.com": [17657], "www.kitepackaging.co.uk": [8935], "url.abea.org.br": [2024], "csull.in": [2024], "synokm.synology.com": [15803], "www.synology.com": [15803], "ucsb.worldcat.org": [18536], "stable-changelog.wesnoth.org": [18298], "f.day.az": [2024], "harris24.com": [2024], "buerger-cert.de": [2413], "*.virginia.edu": [17375], "www.yosemitenews.info": [18790], "smallfarms.cornell.edu": [3676], "support.ansible.com": [1093], "rlb.im": [2024], "aarondcampbell.com": [451], "ibz.cc": [2024], "www.cs.ucsd.edu": [17012], "nanocancer.ideascale.com": [20479], "contextlysitescripts.contextly.com": [3617], "5joycasino.com": [20654], "esybuy.co": [2024], "61.kavkaz-uzel.ru": [20694], "www.marketpress.com": [10018], "tsp.gov": [22302], "univention.de": [17315], "www.neptuneos.com": [21105], "infoculture.ru": [20528], "www.northeastern.edu": [11539], "www.wiltshire.police.uk": [22593, 22594], "www.coverageforall.org": [3726], "moscow.biglion.ru": [19375], "i.pubu.tw": [2024], "bblox.me": [2024], "www.adisc.org": [325], "sites.yammer.com": [18738], "khmao.beeline.ru": [1778], "mypayquake.com": [12503], "static.flocabulary.com": [5915], "advisorfor.ms": [2024], "ss.mirachem.com": [2024], "hai.rs": [2024], "www.pardot.com": [12428], "bd.tapad.com": [2024], "standards.freedesktop.org": [6102], "ngvty.co": [2024], "cache22.net": [2024], "metaboli.co.uk": [10326], "game.hao123.com": [20339], "blog.codeanywhere.com": [19635], "m.mail.ru": [9891], "srewis.me": [2024], "realestate.msn.com": [9808], "benjm.in": [2024], "www.domreg.lt": [4669], "sign-up.to": [14842], "cdn.rawgit.com": [13641], "gdig.io": [2024], "minobr.gov-murman.ru": [20293], "pens.pe": [2024], "forum.kaosx.us": [20684], "wiki.openstack.org": [12011], "photos.pcpro.co.uk": [12256], "xteam.brookings.edu": [2379], "www.incloak.es": [8034], "sjlopezb.eu": [2024], "hatim.co": [2024], "new.kairo.at": [8782], "snelpanel.com": [15097], "jndoe.co": [2024], "mm.kommersant.ru": [20746], "at.vrcine.org": [2024], "rysny.me": [2024], "strongswan.org": [22015], "hestore.hu": [7374], "ptep.oxfordjournals.org": [12222], "store.manageengine.com": [9951], "unite.ut.ee": [17148], "u.jimsmusic.co": [2024], "soul.tools": [2024], "otr.to": [11720], "gentoo.petteriraty.eu": [12633], "store.omnigroup.com": [11832], "lookbook.zalando.com": [18877], "static.bitcoinity.org": [2009], "subversion.renater.fr": [13826], "ilovefreegle.org": [7890], "codeclimate.com": [3361], "demandprogress.org": [4328], "magazines.whsmith.co.uk": [18000], "tags.onscroll.com": [11851], "bubble.104.com.tw": [18], "lumo.cf": [2024], "www.opensource.apple.com": [1151], "zensoo.link": [2024], "www.itspa.org.uk": [7854], "goto.thorsen.ca": [2024], "analytics.webtrends.com": [18264], "ifocus.me": [2024], "iolov.es": [2024], "loyaltyoffer.visa.com": [17846], "mgr.ph": [2024], "colrme.club": [2024], "siu.tocco.ch": [16600], "go.sfu.ca": [14708], "contests.nvidia.com": [11022], "office.servers.ru": [21788], "csh.la": [2024], "to.mdtrttr.com": [2024], "fa.lk": [2024], "it.reuters.com": [13893], "im9.eu": [20496], "dmu.worldcat.org": [18536], "www.osmfoundation.org": [11710], "kapital.kz": [20685], "infinum.co": [20526], "hello.campaignmonitor.com": [2794], "dpike.me": [2024], "shopqa.mheducation.com": [20975], "c15.oaug.org": [2024], "youtube.co.ma": [18800], "cryptad.com": [3839], "blog.uptodown.com": [22396], "www.pfizerpro.com": [12642], "ns.sinaimg.cn": [14910], "www.harlandclarkegiftcard.com": [7199], "texasgroup.worldcat.org": [18536], "dot5hosting.com": [4685], "warnung.bund.de": [19335], "library.rit.edu": [13493], "news-images.vice.com": [17754], "www.brandweeruitgeest.nl": [2306], "www.oaklandish.com": [11731], "www.youtube.com.pt": [18800], "vex.net": [22452], "www.thecommunicationtrust.org.uk": [22147], "www.mijnlandal.nl": [18579], "jn.cm": [2024], "zalando.com": [18877], "autoadmanager.com": [1446], "cdn11.contentabc.com": [3614], "irssi.org": [8355], "policy.isis.poly.edu": [12933], "www.dnscurve.com": [4054], "www.websitealive9.com": [18242], "biomet.oxfordjournals.org": [12222], "www.yellowpagesoptout.com": [18765], "ssl.post-gazette.com": [12762], "dstas.me": [2024], "fictionpress.com": [5758], "m.bookdepository.com": [2217], "glwmet.co": [2024], "endcu.org": [2024], "manage.coreix.net": [3671], "ggnz.la": [2024], "x.enepal.net.np": [2024], "r.pst.org": [2024], "www.rvlution.net": [13542], "my.backpage.com": [1626], "go.sgic.com.au": [2024], "ask.threatmatrix.com": [22199], "de.functions-online.com": [20187], "www.reklamport.com": [13811], "www.bitsharestalk.org": [2038], "cdwg.com": [2579], "r24820172.sync.app.asana.com": [1265], "netdna.bootstrapcdn.com": [2237], "l.smthng.co": [2024], "nes.cu.cc": [2024], "opsmgr.nu": [2024], "news.vtig.com": [2024], "caiop.me": [2024], "www.finn.no": [5833], "sltfrm.com": [2024], "hairoffer.us": [2024], "go.cradio.fm": [2024], "pariloto.net": [7736], "lfait.com": [9086], "c.mfcimg.com": [20972], "lwy.io": [2024], "ad.himediadx.com": [7414], "sedo.com": [14604], "jobs.lever.co": [9285], "vidahost.com": [17765], "*.bruxelles.indymedia.org": [8090], "m.next.westlaw.com": [18312], "itrequest.ucsc.edu": [17390], "youtube.fi": [18800], "www.megapath.com": [10240], "housingmanagement.lambeth.gov.uk": [20773], "tb.cn": [16046], "chaisdoeuvre.fr": [2988], "downapp.baidu.com": [1641], "*.vulture.com": [17967], "krasnodar.ru": [20754], "nschur.de": [2024], "www.bitmask.net": [2027], "rmbl.es": [2024], "keiran.biz": [2024], "jck.pt": [2024], "djoserwandelenfiets.nl": [7461], "esdiscuss.org": [4961], "community.sk.ru": [21845], "mineralnye-vody.beeline.ru": [1778], "janovas.unizar.es": [17441], "auphonic.com": [1395], "www.bootswatch.com": [2238], "app-uk.resrc.it": [13659], "help-de-eu.nike.com": [11440], "www.groupon.com.br": [6952], "beta.maps.yandex.com": [18742], "www.americanflyertrains.com": [985], "jspace.co": [2024], "mobile.slashdot.org": [15012], "www.silvertunnel.org": [14866], "desktop.ucsd.edu": [17012], "hell.io": [2024], "app.arachnys.com": [1181], "nicebeer.me": [2024], "devcn.djicdn.com": [4029], "mljff.com": [2024], "x-info.org": [18586], "vocabulary.com": [22485], "bilet.sakh.com": [21719], "0range.us": [2024], "s4bout.raiffeisen.ru": [13587], "jods.co": [2024], "responsibility.verizon.com": [17715], "actions.s1.citilink.ru": [19594], "beller.in": [2024], "community.appuio.ch": [1168], "watkins.media": [2024], "coinomat.com": [3407], "kmp.khabkrai.ru": [20709], "www.vdv.de": [17564], "ablete.ch": [2024], "rt.ru": [13529], "mail.monkeybrains.net": [10596], "shplz.it": [2024], "r24820144.sync.app.asana.com": [1265], "static.dealabs.com": [19791], "virwox.com": [17816], "clicks.beap.ad.yieldmanager.net": [13937], "l.jusbr.com": [2024], "webcat.hkpl.gov.hk": [20385], "www.dna.land": [4047], "servehere.rocks": [2024], "prethics.com": [2024], "danjiangkou.jd.com": [8434], "usuz.unizar.es": [17441], "www2.open.ac.uk": [11947], "cdn.inspectlet.com": [8176], "u.stop-cri.me": [2024], "*.cyberduck.io": [3959], "horaire.search.ch": [14504], "mpd.vc": [2024], "link.2net.co.il": [2024], "cpry.net": [2024], "mxgm.org": [9825], "opis.cmft.nhs.uk": [10953], "action.aarp.org": [279], "www.cybrary.it": [19749], "cherkessk.europaplus.ru": [20034], "*.3cdn.net": [168], "calchamer.com": [2741], "blx.co": [2024], "visitor-service-us-east-1.tealiumiq.com": [16060], "tags.bluekai.com": [2145], "http.maxon.net": [10110], "korsord.dn.se": [19856], "orbitalatk.com": [12127], "bhw.de": [1543], "jeankno.ws": [2024], "pic.iptorrents.com": [7802], "stanfordevents.stanford.edu": [15448], "nernst.chem.sfu.ca": [14708], "bryansk.rt.ru": [13529], "api.popin.cc": [12954], "downloads.cloudbees.com": [19622], "fchusj.org": [2024], "migrol.ch": [10413], "www.cites.illinois.edu": [17346], "mini.bugs.opera.com": [12086], "www.nxtgn.org": [11633], "consult.richmond.gov.uk": [21649], "wsp.to": [2024], "chinafile.com": [19581], "thepetitionsite.com": [16305], "*.heritage.org": [7328], "www.konami-korea.kr": [8984], "iacr.org": [8254], "hamradio.com": [7172], "drone.io": [4761], "suvir.me": [2024], "*.fwmrm.net": [6112], "appsoft-web.com": [2024], "continuousphp.com": [19675], "popsty.la": [2024], "members.fas.org": [5713], "avnspl.us": [2024], "*.arukereso.hu": [1261], "webropolsurveys.com": [18234], "on.razlan.net": [2024], "media.glasses.com": [6684], "bagrationovsk.klops.ru": [20735], "apps.stratford.gov.uk": [22004], "a4.jimstatic.com": [8585], "zoekje.me": [2024], "on.intersect.es": [2024], "everyface.co": [2024], "skylrk.us": [2024], "downloadeu3.teamviewer.com": [16069], "ch.pochtabank.ru": [12876], "l.rabbitohne.ws": [2024], "www.habervision.com": [7114], "www.verisignlabs.com": [17713], "www.amnesty.org.tr": [1014], "irp.nih.gov": [11090], "frugalware.org": [6213], "jfootankleres.biomedcentral.com": [1931], "my.oodio.net": [2024], "drama.id": [2024], "cmply.info": [2024], "bgf.to": [2024], "wip.imagient.ro": [2024], "www.totalicare.com": [16673], "dev.mondediplo.com": [10578], "ecommerce.oblic.com": [11646], "fishnetsecurity.com": [5863], "8gwc-kbhkort.kk.dk": [8748], "allure.com": [3554], "ulyanovsk.biglion.ru": [19375], "features.csmonitor.com": [19737], "wikihub.berkeley.edu": [17329], "www.dnschain.net": [4052], "s.sysness.com": [2024], "theme.co": [16411], "s.pgab.me": [2024], "bzzn.net": [2024], "paste.homecomputing.fr": [7487], "bandainam.co": [2024], "www.gna.org": [6740], "m3.ttxm.co.uk": [15934], "bvam.tokenly.com": [22229], "janimscitechnol.biomedcentral.com": [1931], "dataconsole.kruxdigital.com": [9027], "shilpa.us": [2024], "qiwi.com": [13352], "masq.in": [2024], "siutest.tocco.ch": [16600], "autism.link": [2024], "mpagano.com": [10707], "on.sgsoccer.net": [2024], "on.lauffer.co": [2024], "z.john.am": [2024], "help.georgetown.edu": [6531], "mozaik.axosoft.com": [1504], "www.guarantorusloans.co.uk": [6980], "sow.media": [2024], "spreadshirt.de": [15371], "my.beck-thom.as": [2024], "gogadget.news": [2024], "technical.bestgrid.org": [1750], "www.efinancialcareers.cn": [4902], "openlistings.co": [12051], "topoption.com": [16635], "spreadshirt.dk": [15371], "ly.zdf.de": [22709], "t.adapt.dk": [2024], "ibanking.stgeorge.com.au": [21992], "armenia.usembassy.gov": [22406], "tira.li": [2024], "contribute.imdb.com": [7760], "eh.ly": [2024], "secure.gettyimages.no": [6604], "kenexa.com": [8864], "jariangibson.com": [8534], "secure.gettyimages.nl": [6604], "eform.udngroup.com": [17020], "workiva.com": [18532], "www2.amnesty.org.uk": [1015], "*.datacard.com": [4190], "cdn.pulpix.co": [13267], "pics.crucial.jp": [3828], "rates.psc.gov": [21528], "services.assetmanagement.hsbc.co.uk": [20422], "sponsors.appadvice.com": [1143], "p3.ifengimg.com": [20487], "rui.gwallet.com": [13582], "*.blazonco.com": [2083], "fhacks.link": [2024], "teleci.ne": [2024], "support.qacafe.com": [21553], "git42.rostrud.ru": [21677], "blog.decc.gov.uk": [19795], "cdn10.sure-assist.com": [15709], "verfassungsschutz.de": [2441], "clientsupport.curse.com": [3927], "weifang.jd.com": [8434], "joecab.link": [2024], "tusfiles.net": [16921], "arabi.st": [2024], "i-cares.wustl.edu": [18089], "flixbus.fr": [5911], "news.vesti.ru": [22450], "www14.smartadserver.com": [15049], "proxybay.press": [22259], "www.globusonline.org": [6727], "wigan.gov.uk": [18379], "www3.firstdirect.com": [20111], "suppliersignup.kagi.com": [8781], "www.aps.org": [976], "www.mitpress.mit.edu": [9763], "quadrantsec.com": [13373], "next.avv.de": [1485], "ar.piliapp.com": [12706], "essaysreasy.net": [5353], "spmk.it": [2024], "nerdne.ws": [2024], "coyotepr.it": [2024], "ontt.tv": [2024], "unisound.cdnvideo.ru": [19536], "fee.org": [5555], "jboss.com": [8428], "www.wiltsmessaging.co.uk": [22595], "mvi.baden-wuerttemberg.de": [19302], "law.ox.ac.uk": [17359], "info96.top": [2024], "s.ccmc.pw": [2024], "img5.qiyipic.com": [13354], "hackerboard.de": [7133], "le.anthem.com": [19206], "*.crossmediaservices.com": [14777], "www.simplystamps.com": [14896], "onlandscape.co.uk": [11855], "marionlibrary.osu.edu": [11797], "www.netkaiser.kairo.at": [8782], "pl.pornhub.com": [12972], "multimedia.pol.dk": [12903], "bugbase.adobe.com": [669], "cdn1.nyt.com": [11035], "ionicframework.com": [8333, 8334], "www.morphis.com": [10638], "dsr.gd": [2024], "www.sonypictures.co.uk": [15221], "etrtbs2.smartstream.tv": [15064], "rdar.co": [2024], "cdn.jonyivebook.cultofmac.com": [3909], "17.mvd.ru": [21055], "educationnext.hks.harvard.edu": [5085], "coe.uaa.alaska.edu": [17323], "www.mariestopes.org.au": [10000], "www.discovery.org": [4544], "api.myfreecams.com": [21065], "network.pivotal.io": [12765], "apps.cheshireeast.gov.uk": [3070], "touchbase.state.gov": [17146], "mobly.vc": [2024], "newlk.tattelecom.ru": [22099], "apigee.com": [1124], "wa-m.co": [2024], "not-safe-for-work.de": [10322], "dw.cbsi.com": [2541], "apparat.gov-murman.ru": [20293], "go.tidev.io": [2024], "klp.io": [2024], "www.st.org": [14250], "www.louiseharrisoncouture.com": [9629], "gcsp.mvd.ru": [21055], "www.udacity.com": [17193], "ak.quantcast.com": [13387], "formule1.lemonde.fr": [9204], "www2.trash.net": [16761], "www.collegeinfogeek.com": [19646], "order.bayphoto.com": [1732], "www.o3.ua": [21219], "cherwell.objective.co.uk": [21225], "www.openbookpublishers.com": [12035], "savedeo.com": [14373], "cushwk.co": [2024], "audio3.islamweb.net": [8373], "century.im": [2024], "wxlink.jd.com": [8436], "delish.com": [4312], "appd.it": [2024], "on.bams.de": [2024], "www.peerreach.com": [12550], "clic.reussissonsensemble.fr": [13892], "webmail.plop.at": [21440], "daserste.ndr.de": [11159], "en-us.help.blackboard.com": [2069], "login.hscic.gov.uk": [20435], "mcmagic.biz": [2024], "blubrry.com": [19412], "waze.com": [18111], "physics.nature.com": [11140], "i-secure.walmartimages.com": [18060], "my.woking.gov.uk": [22605], "host-tracker.com": [7511], "de-sr.dict.cc": [4442], "stec-t03.xhcdn.com": [18605], "hostdime.com": [7518], "guardian.co.tt": [6981], "www.ncta.com": [10930], "jdtc.us": [2024], "wickr.com": [18374], "anderz.org": [2024], "www.trumpia.com": [16850], "www.corrent.org": [3687], "www.browser.yandex.com.ua": [18741], "qbcc.build": [2024], "www.websupport.cz": [18189], "cdn1.recombu.com": [13710], "infusedsystems.com": [8138], "portal.gigaclear.com": [6629], "now.wthr.com": [2024], "www.championsofregnum.com": [2997], "placesonline.com": [12793], "pirates.pw": [22174], "dl.c7photo.com": [2024], "ellas.li": [2024], "*.american.edu": [978], "my.salemefc.org": [2024], "bluesnews.com": [2169], "fssrt.be": [2024], "liferay.com": [9348], "www.cdw.com": [2579], "donations.islamic-relief.com": [8377], "my.play-asia.com": [12828], "z.jman100.com": [2024], "arewee10syet.com": [19227], "master2.tocco.ch": [16600], "perf.weborama.fr": [18231], "iq.ly": [2024], "publikationen.sachsen.de": [14279], "www.udemy.com": [17194], "expr.ws": [2024], "www.offog.org": [11793], "linsrv104.linuxcontrolpanel.co.uk": [9441], "www.jwplayer.com": [9601], "azc.bz": [2024], "m.here.com": [7325], "themacro.com": [16409], "advertiser.adknowledge.com": [653], "3m3.us": [2024], "www.tcpalmextras.com": [15859], "s.k39.la": [2024], "pfre.us": [2024], "direct.yandex.by": [18739], "cp.pt": [3741], "app-stg.jobvite.com": [8616], "www.nationaldefensemagazine.org": [11087], "downloads.unicef.org.uk": [17068], "dv8.nl": [2024], "ebrkohchang.com": [2024], "link.e-psf.org": [2024], "pensionsmyndigheten.se": [12573], "g7.hitravel.xyz": [2024], "plant.autotrader.co.uk": [19279], "flinto.com": [5903], "mgel.osu.edu": [11797], "jgj.im": [2024], "ojrd.biomedcentral.com": [1931], "blueturn.earth": [2171], "ethicslab.georgetown.edu": [6531], "foundationsource.com": [6056], "*.arhivach.org": [19230], "modelviewculture.com": [10555], "js.sohu.com": [15171], "otl.stanford.edu": [15448], "ll-assets.tmz.com": [15897], "www.itch.io": [8402], "starinv.co": [2024], "eurm.recs.richrelevance.com": [13927], "jwpsrv.com": [8717], "opencaching.de": [21268], "qidian.qpic.cn": [13360], "www.forbes.com": [5995], "www.toppreise.ch": [22237], "www.bvg.de": [1605], "vikn.gs": [2024], "livb.tk": [2024], "pathpost.co": [2024], "nmb.li": [2024], "pindropsecurity.com": [21409], "opentpx.org": [12016], "www.starwars.com": [15460], "livr.pl": [2024], "riverisland.com": [13963], "m.airbnb.se": [793], "az698912.vo.msecnd.net": [10672], "www.spamicity.info": [15284], "l4.chaucanh.net": [2024], "chtmds.me": [2024], "bitly.pb2.co": [2024], "illinoistech.org": [7970], "peliaika.fi": [6369], "mobile.openbank.ru": [21267], "iplg.in": [2024], "cfcu.co": [2024], "novorossiysk.beeline.ru": [1778], "in.cio.co.ke": [2024], "yom.nu": [2024], "cdc-tree.stanford.edu": [15447], "www.leetway.com": [9239], "a.agileyes.com": [2024], "software.brown.edu": [2384], "www.autistica.org.uk": [19275], "malcovery.com": [9932], "donnetonavis.refedd.org": [13471], "olderpeople.holyrood.com": [20393], "en.clave.cc": [2024], "torrentz.to": [16662], "bruns.online": [2024], "www.peerlibrary.org": [12549], "images.hostcentric.com": [7517], "ams.amazon.de": [19174], "mrbrain.tv": [2024], "www.storehouse.co": [22000], "www.leboncoin.fr": [20796], "gaga.crowdrise.com": [3825], "tonyarcieri.com": [16623], "vremya.yandex.com": [18742], "contextly.com": [3617], "ateamz.com": [2024], "wiki.vinilox.eu": [17809], "imgtec.com": [20508], "impl.cg": [2024], "connect.astaro.com": [5170], "dmnd.la": [2024], "een.ec.europa.eu": [5410], "pride-at.work": [2024], "ausschreibungen.vrr.de": [17954], "purephar.ma": [2024], "vaned.co": [2024], "www.salenames.ru": [14309], "pss.gov.au": [13260], "mail.citilink.ru": [19594], "elaf.mobi": [2024], "www.js.org": [20657], "feeds.jivesoftware.com": [8598], "zags.permkrai.ru": [21390], "artsm.it": [2024], "s.scholzi100.de": [2024], "ecuador.usembassy.gov": [22406], "270.is": [2024], "payscale.rocks": [2024], "www.udifo.com": [22346], "styler.rbc.ua": [21592], "www.newzsec.com": [11393], "rgol.in": [2024], "info.politicopro.com": [12920], "pbpo.st": [2024], "cultiv8.me": [2024], "www.niehs.nih.gov": [11090], "store.maxdome.de": [10106], "it.about.aegeanair.com": [6896], "on.qnsmade.co": [2024], "centrum.sk": [19548], "retrovirology.biomedcentral.com": [1931], "check.beget.com": [19347], "techtv.mit.edu": [9763], "theory.org": [16417], "ads.bingads.microsoft.com": [10396], "piku.la": [2024], "eigen.tuxfamily.org": [22319], "cliqueja.com": [2024], "cbps.canon.com": [2822], "www.pingone.com": [12715], "self.shoes": [2024], "myciu.biz": [2024], "dealbook.nytimes.com": [11041], "*.bransonzipline.com": [2307], "hydra.nixos.org": [11469], "eater.cc": [2024], "dominexfoods.us": [2024], "www.sso.bluewin.ch": [2173], "chat.cari.net": [2532], "www.lokun.is": [9576], "www.cotse.net": [3697], "link.fnf.fm": [2024], "www.1337x.to": [44], "conferencing.vodafone.pt": [17903], "northnorfolk.org": [11537], "www.abi.org.uk": [287], "std3.ru": [15511], "elanex.biz": [5130], "secure.p03.eloqua.com": [5172], "accountchooser.com": [516], "pmsfl.us": [2024], "ho15.majordomo.ru": [9914], "*.wsod.com": [10032], "getadblock.com": [571], "muckrock.com": [10722], "*.player.fm": [12839], "checkmyping.com": [3056], "i4.hdslb.com": [20358], "git70.rostrud.ru": [21677], "333333333.bjcnc.scs.sohucs.com": [15173], "wasa.bz": [2024], "www.astronautix.com": [5230], "flames.lu": [2024], "startsmile.ru": [21980], "sms.sknvibes.com": [14186], "oxfordlearnersdictionaries.com": [12223], "greenam.org": [2024], "job.otto.de": [12168], "ocean.sci-hub.ac": [14436], "forum.inoreader.com": [8158], "bug.me": [2024], "wpmag.me": [2024], "webmail.dn.se": [19856], "kf.cm": [2024], "it.malwarebytes.org": [9941], "mobile.btcchina.com": [1581], "s.udn.com.tw": [17020], "bhphotovideo.com": [19370], "www.websitealive5.com": [18242], "www.mailchimp.com": [9893], "trunk.evernote.com": [5440], "zpkd.it": [2024], "en.censor.net.ua": [19538], "rhoml.com": [2024], "ccfn.ncsu.edu": [11531], "swingers.theadulthub.com": [22143], "www.rnengage.com": [13499], "jlcfan.link": [2024], "purinastore.com": [13290], "getsherish.com": [2024], "opencha.com": [2024], "de.visioncritical.com": [17862], "topline.rambler.ru": [13600], "www2.findlegalforms.com": [5822], "www.complianceoffice.wustl.edu": [18089], "stipendia.vutbr.cz": [17609], "www.nustarz.com": [11602], "invoiceocean.com": [8326], "www.peertech.org": [12559], "soluto.link": [2024], "iblocklist.com": [7900], "www.commondreams.org": [3490], "cdn.stablehost.com": [15423], "www.eauth.usda.gov": [17299], "*.esetstatic.com": [4949], "www.vodafone.de": [17901], "www.virtualspirits.com": [17839], "corp.qiwi.com": [13352], "sbox.es": [2024], "www.ports.debian.org": [4263], "www.barracudanetworks.com": [1707], "dw.com.com": [2540], "mizba.la": [2024], "www.are.admin.ch": [22061], "gearhog.com": [6466], "amsl.com": [368], "*.icims.com": [7690], "cloud-cp.hostingsolutions.cz": [7538], "wap.iciciprulife.com": [7917], "cisofy.com": [2627], "zelenodolsk.beeline.ru": [1778], "shop.flixbus.at": [5911], "1lnk.de": [2024], "zopa.com": [19007], "www.biallo.de": [1867], "www.driverseddirect.com": [4760], "french.chad.usembassy.gov": [22406], "help.theplatform.com": [16308], "cdsmedia.cern.ch": [2588], "almob.biomedcentral.com": [1931], "tpb.patatje.eu": [21522], "secure.stage-gettyimages.be": [6604], "b2ben.to": [2024], "business.mtt.ru": [21044], "js.test.octopuspop.com": [11754], "canvas.net": [2825], "people.sovcombank.ru": [21914], "www.21.cbsm.at": [8782], "r24626522.sync.app.asana.com": [1265], "www.rettighedsalliancen.dk": [13888], "www.privnote.com": [13154], "kinderaerzte.tocco.ch": [16600], "edith-piaf.ina.fr": [7769], "piwik.vm.ag": [17891], "www.cia.gov": [2612], "globaltestsupply.com": [6701], "school.qf.org.qa": [21557], "beacon.rubiconproject.com": [14066], "www.esolangs.org": [5348], "www.kcl.ac.uk": [8914], "url.cap3.de": [2024], "fastwebmedia.com": [5660], "urb.bz": [2024], "kikiwrit.es": [2024], "lccdataexchange.lincolnshire.gov.uk": [9380], "a0.jimstatic.com": [8585], "www.cof.ens.fr": [4922], "mtu.edu": [9816], "robeco.nl": [13977], "cdn.mxpnl.com": [10785], "www.communitycares.com": [19654], "cebit.de": [2933], "*.whispersystems.org": [18343], "m.feedback.yandex.ua": [18747], "cp.win-rd.jp": [18416], "uk.hosting.adjug.com": [580], "webapp1.law.cuhk.edu.hk": [2704], "hft-leipzig.de": [7386], "idp.peoplefluent.com": [12580], "fashionmix.bg": [2024], "j-ch.me": [2024], "flo.vc": [2024], "lnk.lostfilm.tv": [20876], "snm21.xyz": [2024], "pokolenia.permkrai.ru": [21390], "ssoft.link": [2024], "*.rpxnow.com": [13509], "omsprk.x5.ru": [18590], "incredbl.co": [2024], "maps.yuga.ru": [22701], "otpdirekt.sk": [12166], "l4b3l.co": [2024], "sknt.ru": [21851], "imgsrc.baidu.com": [1641], "m.montereybayaquarium.org": [10606], "editor-static.thenewslens.com": [16302], "cbhklr.me": [2024], "c3.nrostatic.com": [21189], "clock.yandex.com": [18742], "www.twattle.net": [16936], "winterswijk.nl": [11172], "blog.vpn.ac": [22504], "kiev.unian.info": [22369], "www2.lcsd.gov.hk": [7067], "mail.subsignal.org": [15630], "normalesup.org": [11524], "pilgrim.ceredigion.gov.uk": [2972], "gcm.atechmedia.com": [428], "www.githost.io": [20253], "messenger2.providesupport.com": [13218], "www.incloak.com": [8033], "faktor.kh.hu": [8739], "exxile.net": [4987], "justin.cm": [2024], "lubakiagenda.squat.net": [21955], "kitc.es": [2024], "mjlb.co": [2024], "grondalmulticenter.kk.dk": [8748], "email.usc.edu": [17366], "at.sufs.org": [2024], "www.highways.gov.uk": [20376], "dgrb.me": [2024], "z.qutome.ru": [2024], "secure.informaction.com": [8123], "screen.dimonvideo.ru": [19840], "tlead.co": [2024], "i.erik.lu": [2024], "gitlab.lrz.de": [9253], "klerk.ru": [20730], "www.simplesamlphp.org": [21831], "barbour.uk": [2024], "strick.li": [2024], "remx.co": [2024], "benefitsweb.com": [1808], "satoshilabs.com": [21734], "walkfr.ee": [2024], "wishq.co": [2024], "projecthoneypot.org": [13181], "rapidmoviez.eu": [21581], "rad.msn.com": [9810], "nationaleyegene.nei.nih.gov": [11090], "cyberpatrol.com": [3953], "www.chroniclevitae.com": [3128], "vidwst.cc": [2024], "items.s1.citilink.ru": [19594], "vbank.in": [2024], "awsom.ml": [2024], "devx.com": [18171], "www.renovationexperts.com": [13829], "lists.srcf.net": [15406], "turn.com": [16911], "touch.afisha.mail.ru": [9891], "caravans.autotrader.co.uk": [19279], "www.ofsted.gov.uk": [21231], "kdg.link": [2024], "spreadshirt.co.uk": [15371], "anzhealthpolicy.biomedcentral.com": [1931], "busdk12.illuminateed.com": [20494], "productsafety.gov.au": [13171], "filemagic.dinglisch.net": [19841], "coin-swap.net": [3390], "paste.leloop.org": [9206], "apan.org": [388], "www.softwarefreedom.org": [15164], "govloop.com": [20297], "highseer.com": [7406], "hosting.nic.ru": [11419], "qsstats.com": [13333], "drby.co": [2024], "zoyya.pe.hu": [2024], "winefood.mx": [2024], "quinstreet.com": [13418], "did.hscic.gov.uk": [20435], "*.abusix.com": [490], "netex.link": [2024], "lis.gov": [9095], "xml.yandex.kz": [18743], "wordcamp.org": [18517], "mbuzz.ca": [2024], "mediaxus.com": [10197], "web.uillinois.edu": [17034], "komi.beeline.ru": [1778], "student-affairs.buffalo.edu": [17382], "www.varnish-cache.org": [17659], "feed.flightradar24.com": [20119], "rapida.ru": [13619], "zakupki.domru.ru": [4670], "parti-pirate.ch": [12314], "cdn-d-ss2.pornhub.com": [12972], "www.el-tramo.be": [5125], "tears.infinum.co": [20526], "www.uclh.nhs.uk": [10953], "qbim.ca": [2024], "pickler.me": [2024], "*.rememberthemilk.com": [13820], "14.fish": [2024], "tomsk.rt.ru": [13529], "download.halowaypoint.com": [7165], "co.la.welt.de": [18290], "thisisj.co": [2024], "jptech.ninja": [2024], "aas.org": [280], "www.octorate.com": [11755], "other.0xdb.org": [10], "www.cic.ch": [1680], "de17a.com": [4231], "hypersend.labcorp.com": [9139], "t.netsales.pl": [2024], "de.discussions.tomtom.com": [16615], "banv.it": [2024], "landing.unicef.org.nz": [17067], "migros-service.migros.ch": [10417], "rubenerd.com": [14065], "support.eliomotors.com": [5158], "anniversary.fruitninja.com": [6214], "podolsk.tpprf.ru": [22260], "www.vsipprogram.com": [17600], "cloudpassage.com": [19625], "nelsone.ws": [2024], "www.seedrs.com": [14614], "ng-book.com": [11410], "criticalmuslim.io": [3801], "cashboardapp.com": [15624], "bookdepository.com": [2217], "evisa-vietnam.com": [5450], "red-gate.com": [13718], "*.cachefly.net": [2723], "scene7.com": [14402], "www.ukrnames.com": [17209], "anapa.biglion.ru": [19375], "floridanav.worldcat.org": [18536], "uat.dwolla.com": [4809], "websetnet.com": [22552], "www.mikrotik.com": [10424], "jfurn.co": [2024], "nl.aliexpress.com": [854], "systemcenteradviser.net": [15825], "asdagoodliving.co.uk": [19249], "jjl.cc": [2024], "testit.miui.com": [9765], "www.alliancebernstein.com": [899], "www.ticketmaster.*": [16495], "www.digitale-gesellschaft.ch": [19837], "mobile.southdevon.ac.uk": [15256], "www.krebsonsecurity.com": [9022], "speedof.me": [15328], "assets.bugcrowdusercontent.com": [2423], "media.dustin.eu": [4803], "*.travelzoo.com": [16774], "admob.com": [586], "finance.rambler.ru": [13600], "xcom2.curse.com": [3927], "www.foreninger.uio.no": [17414], "communities.ca.com": [2525], "roots.history.com": [7422], "jmann.us": [2024], "media.oxfam.org.uk": [12221], "plyc.be": [2024], "mrmjournal.biomedcentral.com": [1931], "data.gov.hk": [19761], "nsg.vse.sk": [17955], "anujb.me": [2024], "cancerslay.in": [2024], "filmkult.refresher.cz": [13781], "tiar.at": [2024], "stanfordcareers.stanford.edu": [15448], "censornet.com": [19539], "phks.co": [2024], "*.d3.ru": [3990], "mapquesthelp.com": [9979], "benle.co.uk": [2024], "uclick.com": [22344], "kiah.co": [2024], "petakillsanimals.com": [12271], "invtful.cc": [2024], "flowerona.uk": [2024], "weeb13.play-asia.com": [12828], "ptj.am": [2024], "u.yoi.sg": [2024], "arch.zr.ru": [22725], "itunesconnect.apple.com": [1151], "ycusd.illuminateed.com": [20494], "www.itif.org": [20604], "4.url.cn": [22399], "www.newspaperdirect.com": [11387], "community.opendns.com": [11969], "oand.co": [2024], "www.bitinvest.com.br": [2019], "4.cbsm.at": [8782], "www.24pay.me": [108], "customer.active24.com": [19061], "lariat.fnal.gov": [5741], "downloadeu1.teamviewer.com": [16069], "apps.worldwildlife.org": [18544], "beta.duckduckgo.com": [4785], "myname.to": [2024], "www.suicidepreventionlifeline.org": [15651], "www.ecgd.gov.uk": [19947], "www.plantsolution.de": [12813], "www.ccodearchive.net": [3532], "petermolnar.eu": [12623], "blog.bytemark.co.uk": [2503], "gulkevichi.startsmile.ru": [21980], "pomoc.nazwa.pl": [11156], "nycdoggi.es": [2024], "lnk.varadhja.in": [2024], "www.jcp.org": [8431], "card.buv.edu.vn": [2024], "clinicalinformatics.stanford.edu": [15448], "tibeti.xfce.org": [18603], "acess.ws": [2024], "ibeu2.mookie1.com": [10617], "tpb.cricket": [22259], "vpnssl3.cs.fh-nuernberg.de": [16239], "www.tampabaysod.com": [16001], "tfd.me": [2024], "video.lan.ua": [20774], "papercut.ics.illinois.edu": [17346], "dyn.ig.rambler.ru": [13600], "trvllr.co": [2024], "www.aquanw.nhs.uk": [10953], "www.angular-gantt.com": [1061], "yahooaccessibility.tumblr.com": [16897], "frdd.be": [2024], "oc.ederdrom.de": [5068], "cutedo.se": [2024], "www.gitshell.com": [6665], "stem.fi.ncsu.edu": [11531], "ard.yahoo.co.jp": [18730], "webapp.imgix.com": [20504], "bejoyo.us": [2024], "www.welt.de": [18290], "contraceptionmedicine.biomedcentral.com": [1931], "ontrac.com": [11928], "movies.rottentomatoes.com": [14034], "advertise.courant.com": [19699], "r-js.com": [2024], "www.divessi.com": [4571], "cltp.co": [2024], "pa.nache.fr": [2024], "images.sohu.com": [15171], "blog.wikimedia.org.uk": [18388], "okh.li": [2024], "webmail.bernina.com": [1827], "space.hk01.com": [7056], "jgalaxy.us": [2024], "mlsecproject.org": [9776], "ictserv1.lsbu.ac.uk": [9111], "weblogin.washington.edu": [17376], "dolphin-emu.org": [4637], "swisscom.ch": [15761], "s6.srf.ch": [21957], "qb50.eu": [13322], "dnf.lt": [2024], "help.mail.ru": [9891], "pedromm.pw": [2024], "s.icetravel.xyz": [2024], "wbhlc.in": [2024], "*.coremotives.com": [3666], "jobs.1und1.de": [91], "yarcube.ru": [22669], "developerforums.blackberry.com": [2068], "b.tuna.ren": [2024], "bold.so": [2024], "www.westminster.gov.uk": [18315], "infoworld.com": [8133], "cdn-website.nanorep.com": [11071], "blog.cacert.org": [2534], "shaanig.org": [21796], "services.angus.gov.uk": [1062], "library.hubspot.com": [7599], "phonograph2.voxmedia.com": [22503], "www.paypal.com": [12500], "soft.uv.es": [17544], "www.yceml.net": [3484], "stelladot.com": [15531], "anunciou.com": [1110], "smr.inl.gov": [20537], "www.play0ad.com": [12829], "uptodown.com": [22396], "www.denic.de": [4346], "seiu1000.me": [2024], "chartio.com": [3030], "talky.io": [15998], "www.pearsoncomputing.net": [12540], "www.swissmedic.ch": [22061], "bdp.de": [2024], "m.stoloto.ru": [21996], "s3.biz.itc.cn": [8401], "www.pogoda.yandex.kz": [18743], "es.gy": [5341], "forum.geizhals.at": [6494], "publish.omniture.com": [11842], "buycg.co": [2024], "chartdata1.internet.aastocks.com": [19037], "tr.squat.net": [21955], "rewards.vodafone.co.uk": [17900], "mkateb.com": [10511], "commits.exherbo.org": [5482], "api.piwik.org": [12768], "forge.gluster.org": [6734], "www.rscweb.org": [14048], "cornify.com": [3678], "rca.st": [2024], "www.derbyshireyouthinc.com": [19813], "www.plainenglish.co.uk": [21430], "www.deutschland-spielt.de": [19817], "slo.to": [2024], "www.vutbr.cz": [17609], "vulnhub.com": [17965], "wiki2.dovecot.org": [4713], "01.creativecdn.com": [3778], "adminklient.ppl.cz": [12313], "cache.djoser.nl": [19851], "athumbnails.5min.com": [217], "squ.re": [2024], "qz.com": [13443], "www.golem.de": [6804], "seph.me": [2024], "phnrbtl.co.uk": [2024], "cgmanager.linuxcontainers.org": [9435], "www.eventim.fi": [9454], "graphics.adultfriendfinder.com": [696], "panel-beta.bytemark.co.uk": [2503], "fxhero.es": [2024], "p6.zdassets.com": [18905], "bdeal.co": [2024], "www.bishopfox.com": [1947], "jeremymorgan.com": [20639], "www.tickets.calpoly.edu": [2764], "yote.us": [2024], "freedome.f-secure.com": [5533], "globalhumanrights.org": [6707], "www.sesamstrasse.de": [14688], "obmedia.xyz": [2024], "scltrb.com": [2024], "spb.europaplus.ru": [20034], "vdd.videolan.org": [17775], "sick.com": [14818], "pgln.me": [2024], "reviewjr.nl": [2024], "togo.rbl.ms": [13652], "youxi.qidian.com": [13349], "underthehood.myob.com": [9830], "openleaks.org": [11985], "b.urlb.ag": [2024], "isms.ignou.ac.in": [7956], "lg.ispserver.com": [20588], "ww619.smartadserver.com": [15049], "content7.flixster.com": [5913], "autobild.cas.sk": [1507], "www.forum.voidtools.com": [22490], "dplus.umeng.com": [22363], "www.apcmag.com": [389], "onlineapp.spdbccc.com.cn": [21926], "xmnxg.jd.com": [8434], "r.ligatus.com": [9356], "www.kickasstorrents.eu": [8894], "ningshan.jd.com": [8434], "smbc-comics.com": [14197], "genius-cdn.appadvice.com": [1143], "smart-soft.ru": [21864], "futr.be": [2024], "discuss.io": [4547], "raulmontero.tk": [2024], "www.telekom.sk": [16155], "truekey-beta.mcafee.com": [10129], "ehow.com": [19926], "url.m4i.ir": [2024], "beta.metooo.io": [10343], "icpen.org": [7694], "kims.bz": [2024], "weshare.unicef.org": [17069], "staff.snelis.com": [15097], "www.1f0.de": [78], "timesofmoney.com": [16541], "www.enahost.com": [5220], "vans.autotrader.co.uk": [19279], "replicaperfection.com": [13839], "www.dustin.eu": [4803], "*.webstat.com": [18249], "crdt.co": [2024], "jfun.in": [2024], "www.datadoghq.com": [4193], "blog.mall.cz": [9934], "www.regiochannel.de": [13791], "partnerships.register.com": [13793], "*.vara.nl": [17654], "sa.scha.st": [2024], "blog.vulnhub.com": [17965], "www.guug.de": [6374], "static-diablofans.cursecdn.com": [3927], "work4labs.com": [18527], "spinics.net": [15347], "www.projectgus.com": [21512], "m.aastocks.com": [19037], "spjpgrd.me": [2024], "blog.livefyre.com": [9519], "ranallolawoffice.com": [11427], "kkh-allianz.de": [8750], "signup.active24.co.uk": [19060], "ajax-cdn.9gag.com": [252], "cs.mycommerce.com": [10798], "www.fnal.gov": [5741], "www.dynatrace.com": [4819], "news.lostfilm.tv": [20876], "y.rdius.me": [2024], "secretariavirtual-proves.upf.edu": [17471], "newcg.enfield.gov.uk": [5247], "www.jura.ch": [22061], "softwords.dftoutiao.com": [19826], "hipa.us": [2024], "m.crazynina.tv": [2024], "mayfirst.org": [10113], "schiphol.nl": [14416], "framabee.org": [6075], "madeby.house": [2024], "lkdapi.onlime.ru": [11902], "www.ctt.pt": [3901], "dhansak.collabora.co.uk": [3418], "lth.to": [2024], "ptpimg.me": [13239], "templatemonster.com": [16177], "dag.sumtel.ru": [22031], "icon.cnzz.com": [3328], "you2b.gq": [2024], "dm.nazwa.pl": [11156], "stl.fm": [2024], "www-s.housing.illinois.edu": [17346], "tvlife.kr": [2024], "www.woodlandtrust.org.uk": [22609], "cricvi.co": [2024], "reymond.in": [2024], "www.apnews.com": [392], "s.2904.cc": [2024], "sarapul.europaplus.ru": [20034], "penza.tpprf.ru": [22260], "prn.la": [2024], "ctbl.us": [2024], "www.garstelecom.ru": [20207], "swdlp.apple.com": [1151], "mercury.ornl.gov": [11730], "*.arukas.io": [19242], "www.quitter.no": [13423], "c.olstrom.com": [2024], "stat.ucanet.ru": [22342], "cdn.il.topshop.com": [22238], "yeahtv.com": [18705], "flgc.info": [2024], "bill.ecotelecom.ru": [19952], "smp.link": [2024], "store.berniesanders.com": [1826], "portal.ual.es": [17162], "on.wmtw.com": [2024], "buildsecurityin.us-cert.gov": [17501], "community.sophos.com": [15224], "compare.play-asia.com": [12828], "www.wiwi.htwk-leipzig.de": [7596], "docu.scot": [2024], "sabouraudia.oxfordjournals.org": [12222], "lists.exherbo.org": [5482], "khanty-mansi-ao.auto.ru": [19276], "pmddtc.state.gov": [17146], "www.davidsontutoring.com": [4218], "blog.reevoo.com": [13772], "cdns-files.deezer.com": [4288], "www.humanrightsdefensecenter.org": [7614], "deprogressive.dk": [4363], "tugate.ch": [2024], "youtube.me": [18800], "c3p.me": [2024], "*.pimg.net": [12708], "youtube.mx": [18800], "youtube.my": [18800], "www.accountsupport.com": [515], "www.anonine.com": [1084], "www.acdd.tk": [3536], "samwhited.com": [14322], "www.loverslab.com": [9641], "baku.click": [2024], "tweetdeck.com": [16942], "pguru.co": [2024], "uvt.nl": [16521], "monch.xyz": [2024], "www.ifb.htwk-leipzig.de": [7596], "blm.gd": [2024], "pds.tips": [2024], "action.mind.org.uk": [10443], "go.fmylife.com": [2024], "proxy6.switchadhub.com": [15764], "spnet.nl": [14227], "i.wombiapps.com": [2024], "txn02.hkjc.com": [20384], "geokretymap.org": [20234], "hackweek.ninja": [2024], "finders.ibx.com": [20473], "www.askewsandholts.com": [19257], "firstam.us": [2024], "ico.org.uk": [7693], "persecutionofahmadis.org": [12610], "assets3.roadtrippers.com": [21659], "jnandj.sh": [2024], "h2hc.com.br": [7027], "www.bedford.gov.uk": [19341], "pt.stripchat.com": [22014], "catracalivre.com.br": [2917], "*.mailstation.de": [9906], "ivangorod.startsmile.ru": [21980], "www.xavisys.com": [18636], "r.mradx.net": [10713], "cjky.it": [2024], "keelog.com": [8851], "chartsinfrance.net": [3031], "x-qa.ligatus.com": [9356], "danie.ly": [2024], "bluejeanscable.com": [2154], "eat.seasonal.ly": [14513], "developer.windriver.com": [18429], "refresher.sk": [13781], "*.eztv.it": [4994], "sxp.microsoft.com": [10396], "ae03.alicdn.com": [853], "a11y.link": [2024], "atarnotes.com": [1334], "spreadsheets.google.com": [6818], "pssl.com": [12330], "anonscm.debian.org": [4263], "absorbl.ms": [2024], "www.hexspoorwms.nl": [7384], "toolslib.net": [16629], "ldhl.tk": [2024], "cx3110x.sipsolutions.net": [14184], "dnkt.in": [2024], "sc.wsj.net": [18021], "insider.razerzone.com": [13647], "seshu.me": [2024], "www.datapipe.com": [4203], "food.gy": [2024], "apps.olin.wustl.edu": [18089], "gacc.pt": [2024], "support.godaddy.com": [6755], "saratov.psbank.ru": [13231], "analytics.163.com": [50], "zona.telekom.sk": [16155], "www.medienzentrum.uni-mainz.de": [17410], "centre.li": [2024], "bitcoinmagazine.com": [2006], "api.bitcoincharts.com": [2003], "shuma.jd.com": [8436], "apexmic.ro": [2024], "uklawstudent.thomsonreuters.com": [22197], "ecoff.org": [5047], "ico.gov.uk": [17041], "l.802101.com": [2024], "cgit.exherbo.org": [5482], "teamstre.am": [2024], "ksdinfor.tk": [2024], "blog.geogebra.org": [6522], "my-r.es": [2024], "rcs.link": [2024], "cryptobib.di.ens.fr": [4922], "data.fcc.gov": [5699], "digicio.us": [2024], "www.ifightsurveillance.net": [7886], "hellocere.al": [2024], "web.croakun.com": [2024], "walmart.com": [18059], "weather.yandex.by": [18739], "scriptfodder.com": [14482], "m.mall.cz": [9934], "www.vuxml.org": [22513], "lovelo.is": [2024], "c.cupoes.online": [2024], "twitter.giphy.com": [6646], "calazan.com": [2750], "bronto.com": [2378], "www.huffingtonpost.ca": [7603], "launchpad.ufcfit.com": [17023], "dee.wongs.link": [2024], "ugh.wtf": [2024], "www.moodle.org": [10616], "www.validlab.de": [7595], "api.uow.edu.au": [17434], "l.globezip.com": [2024], "www.phygee.com": [12686], "tatabingo.com": [2024], "terraria.curseforge.com": [3927], "deliver.trafficforce.com": [16724], "findit.library.jhu.edu": [16370], "webspace4all.eu": [18247], "crossmark.crossref.org": [3812], "ysp.wusm.wustl.edu": [18089], "moaf.org": [10519], "mngdb.co": [2024], "www.ba.com": [1513], "framanews.org": [6075], "webmailcluster.perfora.net": [21388], "mail.lavaboom.com": [9186], "gsl.me": [2024], "www.unionlearn.org.uk": [22374], "old.leonidvolkov.ru": [20810], "www.stringeditions.leeds.ac.uk": [17403], "cnbc.com": [2645], "auser.centrum.cz": [19547], "www.burstnet.eu": [2462], "account.deepin.org": [4287], "www-acs.ucsd.edu": [17012], "setome.ga": [2024], "doctor-komarivskiy.friday.ru": [20175], "dozuki.com": [4727], "resenha.li": [2024], "slm.io": [2024], "ostomy.me": [2024], "ign.tn": [2024], "plankt.oxfordjournals.org": [12222], "texascpa.co": [2024], "www.skyacademy.com": [14993], "cn.codecombat.com": [3362], "blogs.nvidia.com": [11019], "apc.org": [1318], "martineve.com": [10042], "www.ovh.lt": [12205], "comstern.at": [3457], "secure.livestream.com": [9527], "brazil.usembassy.gov": [22406], "www.freerangekitten.com": [6160], "pcamp.it": [2024], "netherlands.indymedia.org": [8090], "www.prism-break.org": [12318], "sophos.com": [15224], "player.fm": [12839], "pydio.com": [13312], "s100.cnzz.com": [3328], "go.friends.ca": [2024], "arge.to": [2024], "*.nagano.cz": [11050], "liberty.me": [9314], "25.cbsm.at": [8782], "www.mol.org": [10521], "parkingcrew.com": [12436], "www.bussgods.se": [2478], "www.spnet.ru": [21939], "*.booklooker.de": [2222], "www.bizchannel.cimbthai.com": [2620], "www.snabb.co": [15082], "kb.gfi.com": [6303], "p2plend.it": [2024], "support.mattermark.com": [20937], "auth.mojang.com": [9789], "nyc.indymedia.org": [8090], "strib.ga": [2024], "*.spreadshirt.dk": [15371], "secure.azure.bingads.microsoft.com": [10396], "embed.polskieradio.pl": [12932], "www.chinabank.com.cn": [3086], "on.cgiar.org": [2024], "www.livingsocial.co.uk": [9529], "microsoftstore.com": [10400], "doc.qt.io": [13365], "www.ukba.homeoffice.gov.uk": [20399], "xiiim.com": [2024], "blog.travelrepublic.co.uk": [16769], "api.kickstarter.com": [8897], "www.tarsnap.com": [16029], "cslfr.co": [2024], "*.www.fbo.gov": [5704], "q.anh.lv": [2024], "assets.thecreatorsproject.com": [16339], "www.genode.org": [20228], "putl.in": [2024], "gdis.co": [2024], "www.unisend.com.mx": [17287], "sl.stalheim.net": [2024], "taleo.com": [15987], "app.solarlist.com": [15180], "i.tcall.me": [2024], "cins.ws": [2024], "www.securelist.ru": [14567], "crazespaces.pw": [19716], "givedirectly.org": [6670], "*.shoplocal.com": [14777], "staticassets.zanesvilletimesrecorder.com": [18883], "bib.kuleuven.be": [8832], "zoef.me": [2024], "linksunten.indymedia.org": [8090], "go.workpop.com": [2024], "pbproxy.com": [22174], "mathbuntu.org": [10078], "kmymoney.org": [8756], "*.mndcdn.com": [9782], "investments.hsbc.co.uk": [20422], "www.viewablemedia.net": [22464], "www.facebook.de": [5612], "www.anthropologie-societes.ant.ulaval.ca": [17319], "ubuntu.com": [17183], "secure.tangerine.ca": [16008], "plcviewer.com": [2024], "cdn.imgjam.com": [8513], "share.x5.ru": [18590], "support.warframe.com": [18073], "www.cancer.fi": [15809], "jointmission.gsfc.nasa.gov": [10909], "www.speakeasy.net": [15305], "go.jafarnet.com": [2024], "whitelabel.skyscanner.net": [15006], "*.popphoto.com": [12968], "optout.smart-places.org": [21863], "learn2.io": [2024], "ad.carbonim.com": [2024], "register.tmall.com": [22222], "www.akzonobel.acs.org": [974], "www.globalnetworkinitiative.org": [6709], "66536666.com": [2024], "p4.ssl.qhimg.com": [13347], "eatnow.com.au": [19943], "nfstud.io": [2024], "services.wsje.com": [11361], "lyk.ee": [2024], "w.hwh.jp": [2024], "zeitung.welt.de": [18290], "www.okopnik.com": [11812], "web.pochtabank.ru": [12876], "business.cultofmac.com": [3909], "cmsdescubre.hipercor.es": [7418], "auth.gamespot.com": [6404], "hostpoint.ch": [7548], "de.malwarebytes.org": [9941], "matrix.darkfasel.net": [4145], "images.geekzone.co.nz": [6491], "careers.roblox.com": [13980], "enyo.me": [2024], "tetra.osmocom.org": [12159], "s.nlab.io": [2024], "mylokai.co": [2024], "zapsib-sut.sledcom.ru": [21858], "www.bnd.bund.de": [2444], "equaled.csmonitor.com": [19737], "nevm.pw": [2024], "rsmry.co": [2024], "api.imageshack.com": [7983], "www.dnsleaktest.com": [4060], "www.kotex.com": [9005], "www.washington.edu": [17376], "www.theinquirer.fr": [11238], "*.nowybip.pl": [11575], "lighthouseapp.com": [9360], "noon.ms": [2024], "ww3w.play-asia.com": [12828], "fachschaft.in.th-nuernberg.de": [16239], "on.kottel.com": [2024], "pr.d-will.info": [2024], "ovh.sn": [12205], "o3.aolcdn.com": [382], "www.epocs.leeds.ac.uk": [17403], "jci.org": [8658], "itespresso.fr": [11238], "chem.1688.com": [51], "checkin.continental.com": [3620], "www.weather.yandex.com": [18742], "ag.biligame.com": [1903], "wdp.io": [2024], "classx.stanford.edu": [15448], "bulk2.destructoid.com": [4384], "webftp.wedos.net": [17993], "pictwttrcom.us": [2024], "kinet.al": [2024], "en-ru.dict.cc": [4442], "api.marktplaats.nl": [10034], "zhuhai.jd.com": [8434], "log.optimizely.com": [12107], "a.contentdj.com": [2024], "farl.mx": [2024], "getmarket.in": [2024], "bmr.ng": [2024], "arbne.ws": [2024], "0.xhcdn.com": [18605], "sh.13337.dk": [2024], "ksplice.com": [9039], "*.groupersocialclub.com.au": [6951], "slyar.com": [15042], "thamesvalleyalert.co.uk": [22137], "prcog.com": [2024], "mail.bakerlab.org": [1646], "*.econsumer.equifax.ca": [5320], "status.mailchimp.com": [9893], "jazzy.id.au": [8550], "user.95516.com": [248], "skin.ztat.net": [18877], "ticketingnetworkeastmidlands.co.uk": [16494], "community.imgtec.com": [20508], "host1plus.com": [7513], "jud.ct.gov": [2695], "admin.thenewslens.com": [16302], "allnatchic.com": [2024], "aaronsan.de": [2024], "www.buildsecurityin.us-cert.gov": [17501], "issuu.com": [8392], "viaway.me": [2024], "img1.blogblog.com": [2122], "gatchina.biglion.ru": [19375], "sharedl.ink": [2024], "ihc.ru": [7740], "www.tito.io": [16482], "dongwuzhumuqin.jd.com": [8434], "www.sel4.systems": [14495], "northpole.fi": [11542], "nava.cc": [2024], "www.students.unibe.ch": [17327], "amanic.us": [2024], "rt.com": [13528], "mide.ms": [2024], "vshosting.cz": [17599], "emeapressoffice.oracle.com": [12116], "gerrit.exherbo.org": [5482], "xiuyan.jd.com": [8434], "upf.edu": [17471], "whitaker.org.uk": [2024], "q.uir.ky": [2024], "osemagazine.osu.edu": [11797], "support.laquadrature.net": [9126], "cdn0.sbnation.com": [14137], "srv03.epimg.net": [5126], "tunbridgewells-consult.objective.co.uk": [21225], "swdp-consult.objective.co.uk": [21225], "polovinki.friday.ru": [20175], "azgov.biz": [2024], "talli.ca": [2024], "myupc.upc-cablecom.ch": [22386], "iclick.tnsinfo.com": [15907], "us-st.xhamster.com": [18606], "abu.buzz": [2024], "prdm.co": [2024], "*.dawanda.com": [4094], "www.eurodiet.co.uk": [5401], "humupd.oxfordjournals.org": [12222], "nikolai.mobi": [2024], "*.optimost.com": [12108], "promo.avito.ru": [19287], "www.crossdresser-forum.de": [3814], "gkch.us": [2024], "static3.boligportal.dk": [2207], "twt.jnks.info": [2024], "getdigital.eu": [6557], "www.allerderm.com": [15055], "go.eus.cl": [2024], "rtb.adform.net": [638], "pics.paypal.com": [12500], "stat.ip-home.net": [20565], "openpaymentsdata.cms.gov": [19630], "w.scancrush.com": [2024], "onclkds.com": [21250], "www.wishlistgranted.com": [18463], "www.doncaster.gov.uk": [4672], "mediatakeout.com": [10176], "m.airbnb.co.ve": [793], "yaroslavl.startsmile.ru": [21980], "i.gotzippy.com": [2024], "netnewscheck.com": [11240], "www.d2jsp.org": [3989], "sv6.cu.cc": [2024], "controlpanel.blogs.news.com.au": [11379], "revo.bike": [2024], "i3wm.org": [7665], "squid.academics.de": [495], "zenmate.co.il": [18917], "motherpipe.co.uk": [10651], "imjul.es": [2024], "ec-media.soundcloud.com": [15231], "g04.a.alicdn.com": [853], "registracia.azet.sk": [1507], "personalisedloanquote.hsbc.co.uk": [20422], "r.sascdn.com": [15049], "mdco.io": [2024], "alm.tips": [2024], "davissystem.net": [4220], "login.hddn.com": [11227], "design.1105media.com": [23], "inr.inl.gov": [20537], "www.edsurge.com": [19956], "www.amoena.fr": [1023], "www.sharideangelo.com": [14743, 14744], "pocketgamer.co.uk": [12881], "mindef.sg": [2024], "atrls.co": [2024], "tinyl.in": [2024], "nuand.com": [11605], "www.thepirateshore.eu": [21522], "mcol.co": [2024], "plarium.com": [21436], "file12.bizrate-images.com": [2054], "s.ntkstatic.org": [21131], "cabinet.yartv.ru": [22670], "moon-ray.com": [10618], "pokr.io": [2024], "www.sengpp.ust.hk": [22412], "ads.indeed.com": [8056], "in.tune.com": [22309], "saray.me": [2024], "shop.pandaexpress.com": [12385], "go.alejonext.co": [2024], "lpfb.dk": [2024], "wakefo.rest": [2024], "ad-hls-rentv.cdnvideo.ru": [19536], "pacdn.500px.org": [206], "*.cincinnati.com": [3142], "forum.3sat.de": [174], "thenewslens.com": [16302], "go.brq.me": [2024], "s.baldr.jp": [2024], "tbbt.eu": [2024], "cohub.co": [2024], "s.nanakii.fr": [2024], "*.maas360.com": [9832], "bzz.re": [2024], "e7.aztravel.xyz": [2024], "biicode.com": [1897], "cap3.co": [2024], "fs25.formsite.com": [20139], "mailgun.net": [9900], "cnan.ca": [2024], "premiumize.me": [13074], "www.students.uni-mainz.de": [17410], "s.yuhnote.com": [2024], "kb.uwm.edu": [17379], "about.pinterest.com": [12731], "teleo.telphin.ru": [16170], "ediplomacy.afp.com": [767], "segments.webtrends.com": [18264], "my.virginmedia.com": [17822], "www.inphi.com": [8159], "chat.raiffeisen.ru": [13587], "wirelessmedia.ign.com": [7734], "gml.tips": [2024], "tisarana.ca": [16571], "www.wireedit.com": [18452], "www.ghowen.me": [6617], "community.visma.no": [22471], "www.mulliner.org": [21048], "cn.reuters.com": [13893], "abr.hm": [2024], "secure22.pipni.cz": [12287], "www.nserver.ru": [11588], "blog.tierra.net": [16510], "www.emaileri.com": [5184], "jal.bz": [2024], "news.bilibili.com": [1904], "developers.srad.jp": [21956], "secure.checkout.visa.com": [17846], "fbapp.telegraph.co.uk": [16149], "chicago.gumtree.com": [20323], "www.dsl.vodafone.de": [17901], "xui.ptlogin2.qq.com": [13329], "allinfamily.us": [2024], "jkl33.com": [2024], "www.youtube.com.br": [18800], "play4-tv.gq": [2024], "*.marketgid.com": [10017], "medialne.blog.etrend.sk": [5383], "www.sharpmen.com": [14746], "submit.ioccc.org": [7781], "usmenfolk.us": [2024], "search.crossref.org": [3812], "www.itmatrix.eu": [7862], "photontic.link": [2024], "pkware.com": [12295], "webmail.juno.com": [8699], "sb-bcn.com": [2024], "www.cafegate.com": [2731], "wholesale.swisscom.com": [15761], "eventmb.com": [2024], "astnd.co": [2024], "ssl-eniro.tns-cs.net": [22226], "usfreeads.com": [17123], "pck.rs": [2024], "www.thecityuk.com": [16294], "nationale-it-security-monitor.nl": [11127], "robertsspaceindustries.com": [13978], "abl.im": [2024], "rfld.me": [2024], "maps.bristol.gov.uk": [19451], "i.utb.cc": [2024], "rentby.uk": [2024], "www.canadiandimension.com": [2812], "bsturm.htwk-leipzig.de": [7596], "eiskent.co.uk": [4911], "pasj.oxfordjournals.org": [12222], "newegg.ehosts.net": [5107], "r24616657.sync.app.asana.com": [1265], "www.nets.ec": [11244], "mail-index.netbsd.org": [11222], "petrozavodsk-realty.rambler.ru": [13600], "a.spyn.co": [2024], "www.esetnod32.ru": [4948], "campina.es": [2796], "craftbanter.com": [3748], "blz.us": [2024], "physiowpg.news": [2024], "barnardos.org.uk": [19316], "go.arnabsen.com": [2024], "cvedetails.com": [3940], "vwk.me": [2024], "talktalktechnology.com": [15992], "cstm.us": [2024], "x.ipv8.net": [2024], "skinflint.co.uk": [14978], "*.blogspot.ba": [2127], "smuxi.org": [15080], "*.blogspot.be": [2127], "*.blogspot.bg": [2127], "3nt.co": [2024], "bcrmsk.xyz": [2024], "linkon.in": [2024], "www.idr-trade.com": [9756], "www.sole.dk": [15185], "organicconsumers.org": [12138], "primecdn.500px.org": [206], "seleccion.elpais.com": [5126], "nagra.com": [11051], "actionautowreckers.com": [544], "d1vw9aita7mwlnz0ziyagis0pncie4uc1d2sdv45.ipleak.net": [20571], "www.youtube.com.bh": [18800], "lcom.bz": [2024], "beta.incoin.io": [8050], "optics.osu.edu": [11797], "macadvisor.uk": [2024], "www.webmailnew.legtux.org": [9241], "apt.securelist.com": [14555], "ffx.subsignal.org": [15630], "worksmart.org.uk": [22615], "tumblr.com": [16898], "*.anbg.gov.au": [1424], "www.zenmate.co.nz": [18917], "www.devalate.com": [19818], "b.pairs.lv": [2024], "stec-site.xhcdn.com": [18605], "tjenester.ecampus.no": [4875], "nobrk.in": [2024], "www.hivos.nl": [7435], "ad.maist.jp": [20910], "fr.malwarebytes.com": [9940], "www.england.nhs.uk": [10953], "weedma.ps": [2024], "colm.net": [3434], "s.djt.im": [2024], "halvsi.es": [2024], "looq.at": [2024], "wselect.rs": [2024], "zongheng.com": [22722], "ummecheng.in": [2024], "p3.xyx.hao123img.com": [20340], "www.hostingas.lt": [7542], "www.be.ch": [22061], "gamewithyourbrain.com": [6424], "staging.quran.com": [13433], "seedr.cc": [14613], "estavisas.org.uk": [4958], "osmy.in": [2024], "www.planningportal.gov.uk": [21435], "copia.is": [3655], "ps-img.lasallehs.net": [9173], "de-de.facebook.de": [5612], "myrevie.ws": [2024], "runforyourlives.com": [14089], "volusion.com": [17926], "www.hosting90.cz": [7534], "atyr.co": [2024], "www.linux-magazin.de": [9407], "apricorn.com": [1170], "download.intsig.net": [20557], "novara.ie": [4500], "git.mate-desktop.com": [9727], "we.bbw-love.com": [2024], "mlg.to": [2024], "tmp-uat-eipe.imercer.com": [20502], "fifa.wtf": [2024], "www.disneyprivacycenter.com": [4556], "s37.cnzz.com": [3328], "*.joyent.com": [8663], "aclu-wa.org": [311], "gfx.aftonbladet-cdn.se": [758], "poodle.io": [12307], "agra-net.net": [776], "ideas.hubspot.com": [17525], "cambridgeshire.spydus.co.uk": [21952], "content.etilize.com": [6606], "code.osu.edu": [11797], "rlist.kprf.ru": [20751], "v.admaster.com.cn": [584], "cabinet-news.metro-set.ru": [20971], "wal.bz": [2024], "s.devplus.be": [2024], "irontri.be": [2024], "y.jd.com": [8436], "www.commentarymagazine.com": [3481], "bst1.gismeteo.ru": [6650], "nttr.st": [2024], "midandeastcornwall.greenparty.org.uk": [6908], "go.rubicon.com": [2024], "mariadb.com": [9995], "ssl-fromcs.2cnt.net": [124], "tickets.gwr.com": [16500], "partypoker.com": [12454], "anselma.org": [2024], "wwwciss.ca": [2024], "buy.drweb.com": [4776], "www.prochoice.org": [11113], "putlocker.com": [13301], "nitroflare.com": [21140, 21141], "fusionio.com": [6254], "www.gettyimages.fi": [6604], "netbeans.org": [11223], "w.servicios.in": [2024], "zpr.me": [2024], "trdl.se": [2024], "logo.adf.ly": [577], "l.brfannexet.se": [2024], "javvin.com": [8545], "tendatta.com": [16181], "kans.me": [2024], "smile.mytrinity.com.ua": [21075], "ovh.nl": [12205], "taginfo.openstreetmap.org": [12015], "m2.ykimg.com": [22681], "icio.us": [7919], "xi.hope.net": [7501], "podcasting.rtbf.be": [14063], "gdp.stanford.edu": [15448], "kdw.me": [2024], "cdn.leafletjs.com": [9217], "hot.1688.com": [51], "www.akademikerf\u00f6rs\u00e4kring.se": [803], "wds.to": [2024], "keyboard.alanreed.org": [19130], "stag3.wired.com": [18454], "iciprop.info": [2024], "de-da.dict.cc": [4442], "blog.checkpoint.com": [3052], "onapp.rocks": [2024], "go.eduin.info": [2024], "omnovia.com": [11825], "s14.cnzz.com": [3328], "opbr.ge": [2024], "www4.smartadserver.com": [15049], "www.kiwibyrd.org": [20728], "db.riskwaters.com": [8049], "subeta.net": [15622], "g.xoteens.com": [2024], "st.cm": [2024], "browser.yandex.com": [18742], "en.m-nicolay.de": [2024], "ekiga.net": [5118], "mediacru.sh": [10183], "map.apan.org": [388], "blsmus.com": [2024], "premier.fortiguard.com": [6032], "globr.de": [2024], "da.simpsn.com": [2024], "my.fortbim.com": [2024], "*.well.com": [18359], "link.hgf.org": [2024], "i4.gallery.technet.s-msft.com": [14114], "wiki.dovecot.org": [4713], "maintenance.ecsi.net": [4873], "*.tipseri.net": [7736], "littlesvr.ca": [9490], "rzep.ec": [2024], "*.euroflorist.no": [5397], "*.secure.co1.msn.com": [9810], "p.suntravel.xyz": [2024], "cdn3.thr.com": [15878], "schools.studentdoctor.net": [15603], "isc.org": [7823], "manual.wesnoth.org": [18298], "tds.search.ch": [14504], "concoursasturies.lemonde.fr": [9204], "www.zom.im": [18989], "starwars.com": [15460], "shp.qpic.cn": [13360], "k.yimg.jp": [18778], "staticv2.rottentomatoes.com": [14034], "macdevtips.com": [2024], "dntx.com": [4063], "scdlink.co": [2024], "scalabil.it": [2024], "incommon.org": [8035], "slalom.ws": [2024], "standagainstspying.com": [15441], "support.norton.com": [11545], "falk.hn": [2024], "paclab.githost.io": [20253], "www.theanarchistlibrary.org": [16290], "www.disabledgo.com": [4526], "m.wolframalpha.com": [18487], "crftby.co": [2024], "discuss.gohugo.io": [20281], "libbsd.freedesktop.org": [6102], "www.reuters.tv": [21640], "qntt.tv": [2024], "prd.to": [2024], "juliareda.eu": [8685], "app.etapestry.com": [5359], "deav.in": [2024], "edsw.in": [2024], "pic.alipayobjects.com": [864], "ppd.sydney.edu.au": [22063], "www.netswarm.net": [11292], "short.robime.it": [2024], "on.whdh.com": [2024], "*.1.damoh.golem.de": [6804], "theory.stanford.edu": [15447], "asunnot.oikotie.fi": [21234], "r.dcs.redcdn.pl": [13744], "mopr.co": [2024], "nmmag.us": [2024], "elub.in": [2024], "*.blog.gov.uk": [6344], "www.zcarot.com": [18846], "www.jeded.com": [20635], "www.blip.tv": [2098], "tvlive.16mb.com": [2024], "wowace.com": [3927], "decidethefuture.org": [19796], "irclogs.canonical.com": [2823], "arch.umd.edu": [17351], "dpier.me": [2024], "bl.discant.net": [2024], "www.buzzeff.com": [2494], "clusterconnection.com": [3320], "www.personal.hsbc.com.hk": [20427], "bit.infra.link": [2024], "www.objective-see.com": [11740], "www.norton.com": [11545], "pnsne.ws": [2024], "zhalantun.jd.com": [8434], "www.jamstec.go.jp": [8425], "www.uvm.edu": [17154], "pad.piraten.lu": [21417], "code.pastebin.ca": [12477], "badge.entropia.de": [20004], "rshar.ma": [2024], "link.rbnsln.com": [2024], "hbsmooth.tk": [2024], "apto.com.vc": [2024], "blog.balboa.io": [1649], "tads.smartstream.tv": [15064], "epfl.ch": [4933], "peelregion.ca": [12543], "nousrandom.net": [21168], "polimedia.info": [2024], "izx-file.oss.aliyuncs.com": [19143], "guug.de": [6374], "pay.metro-set.ru": [20971], "programmableweb.com": [13177], "t2-project.org": [22078], "howudo.in": [2024], "exeterfamily.co.uk": [5480], "pmg-prd.stanford.edu": [15448], "lb.to": [2024], "p1.pstatp.com": [16680], "kent.gov.uk": [8867], "email.kn.vutbr.cz": [17609], "www.telerik-web-assets.com": [16160], "sc.edu": [14143], "pr.bucknell.edu": [2406], "go.vcreators.co": [2024], "tssd.eu": [2024], "zxidp.org": [18864], "blog.neustar.biz": [11320], "www.issteamdown.com": [20592], "konferencie.etrend.sk": [5383], "i.benm.at": [2024], "www.us.playstation.com": [12832], "go.appyland.com": [2024], "1xbet.com": [92], "afcad.osu.edu": [11797], "booster.qnetp.net": [13356], "www.techdirt.com": [16091], "landalcampings.be": [18579], "nzherald.co.nz": [11045], "importer.alibaba.com": [857], "static.php.net": [12280], "b.fmbox.cl": [2024], "yoapp.me": [2024], "tandridge.objective.co.uk": [21225], "china.tpprf.ru": [22260], "ga.co": [2024], "lnk.osalt.com": [2024], "wbrp.li": [2024], "www.ideoclick.com": [7943], "www.sns.ias.edu": [7673], "support.ideel.com": [7933], "mwc.news": [2024], "stmrk.com": [2024], "imgt4.bdstatic.com": [19339], "istockphoto.com": [20595], "uidaho.edu": [17345], "in.redhat.com": [13735], "nccs.nasa.gov": [10909], "t6.pixhost.org": [21426], "fitc.it": [2024], "tittygram.ru": [16579], "m.flughafen-zuerich.ch": [20124], "jbks.de": [2024], "www.cardtocall.courierpost.co.nz": [3714], "*.umwblogs.org": [17349], "t.mookie1.com": [10617], "www.mail.bg": [9889], "unwb.co": [2024], "www.mail.be": [9888], "pingler.com": [21410], "on.gdhnews.com": [2024], "admin.novayagazeta.ru": [21169], "rimg04.rl0.ru": [13972], "cms-bucket.nosdn.127.net": [41], "achaea.com": [19050], "metrica.yandex.by": [18739], "sub.allaboutcircuits.com": [19146], "www.desec.io": [19789], "*.store.micgadget.com": [9755], "www.advertise.bingads.microsoft.com": [10396], "im.style": [2024], "fr33tux.org": [6070], "www.thinkup.com": [16436], "socinova.co": [2024], "esi.news": [2024], "det-te.ch": [2024], "www.esportsea.com": [4840], "exchange.psychologicalscience.org": [13235], "labt.ag": [2024], "www.beautifuldecay.com": [1767], "dspy.me": [2024], "r.advg.jp": [715], "support.tagged.com": [15974], "src.bike": [2024], "meetbsd.com": [10222], "www.peterkieser.com": [21391], "crossp.co": [2024], "www.dropboxforum.com": [4764], "s.infopaytv.com": [2024], "*.kidsfootlocker.com": [8900], "www.jquery.org": [8462], "media.supplychain.nhs.uk": [10953], "publish.nyc.indymedia.org": [8090], "*.joker.com": [8634], "cud.li": [2024], "secgeek.net": [14524], "acs-stage.eventpoint.com": [5434], "*.csis.org": [2688], "l.slmoslo.no": [2024], "pyweek.org": [13310], "www.poradte.cz": [21462], "airbnb.ru": [793], "asvu.mvd.ru": [21055], "nikeplus.nike.com": [11440], "knst.in": [2024], "nzbs.org": [21214], "zlrasg.com": [2024], "img.buch.ch": [16244], "finance.aliyun.com": [868], "business.bookitsecure.com": [19427], "daringfireball.net": [4140], "access.wscu.com": [18314], "trpz.gp": [2024], "ask.mstr.cd": [2024], "lvna.co": [2024], "dlycpr.com": [2024], "cybersitter.com": [2710], "gobmi.ch": [2024], "wmar.me": [2024], "api-global.netflix.com": [11269], "store.steampowered.com": [15516], "www.queercom.de": [13399], "glamu.se": [2024], "growth.bufferapp.com": [2419], "s.encode.moe": [2024], "ebayclassifieds.com": [19946], "speedyshare.com": [15331], "s29.postimg.org": [13024], "adme.ru": [660], "www.bignerdranch.com": [1887], "danzo.me": [2024], "support.roadtrippers.com": [13974], "www.manabalss.lv": [9949], "git.openstack.org": [12011], "www.musikskole-tilmelding.dk": [10757], "learnertrack.net": [20795], "police.illinois.edu": [17346], "a-z-l.de": [2024], "fusewa.me": [2024], "fonts.geekzu.org": [6479], "revolutiontt.me": [13906], "agresso2.plymouth.ac.uk": [12873], "www.x-cart.com": [18583], "disk.yandex.com.tr": [18740], "www.surreyoutdoorlearning.uk": [22043], "relayrides.com": [13813], "secure.flightradar24.com": [20119], "www.yousendit.com": [18799], "modcp.ubuntuforums.org": [17185], "standorte.migrosbank.ch": [10414], "www.nousrandom.net": [21168], "rclnk.us": [2024], "pspa.in": [2024], "www.wyre.gov.uk": [22638], "openmamba.org": [21276], "community.monash.edu": [10577], "go.iwebdo.com": [2024], "www.circle.org.uk": [19591], "to.leif.me": [2024], "flvrplt.com": [2024], "*.chatango.com": [3037], "mrsnk.com": [2024], "*.myaloecleanse.com": [10843], "exposingtheinvisible.org": [5505], "live-r.net": [2024], "market-ticker.org": [10016], "wiki.voidlinux.eu": [22489], "www.maninthemirror.org": [9948], "menujusur.ga": [2024], "go.sgio.com.au": [2024], "mikrocontroller.net": [10425], "revoltgames.com": [13905], "www.extensiondefender.com": [5511], "partners.pricegrabber.com": [13099], "lk.mmtech.it": [2024], "schang.link": [2024], "www.admissions.stoke.gov.uk": [21995], "cmxlog.com": [3326], "yelp.de": [18766], "golink.info": [2024], "yelp.dk": [18766], "my.npre.illinois.edu": [17346], "mordoviya.beeline.ru": [1778], "media.wwte.com": [18031], "www.normalesup.org": [11524], "metaweblog.geekzone.co.nz": [6491], "urbanterror.info": [17495], "dealer.onlime.ru": [11902], "bls.ch": [1552], "id.washingtonpost.com": [18086], "softwarefreedom.org": [15164], "mtrcsztr.hu": [2024], "karbyn.co": [2024], "freshmeat.club": [20173], "contact2.yandex.com.tr": [18740], "efsyn.gr": [19967], "ivy.democrats.org": [4338], "travel.nytimes.com": [11040], "erlang.org": [5333], "sslvpn-hk.sonymusic.com": [15217], "login.caller.com": [2768], "www.blackphone.ch": [2066], "tchni.ca": [2024], "brianog.net": [2024], "r24820149.sync.app.asana.com": [1265], "store.hackaday.com": [20330], "support.aolonnetwork.com": [383], "stem.holyrood.com": [20393], "game.9gag.com": [252], "movie2k.cm": [10674], "gohwz.ws": [2024], "m.ofo.so": [11794], "alt.ac.uk": [1319], "s.berny.sk": [2024], "*.usbank.com": [17116], "on.vibe.com": [2024], "l.envolee.net": [2024], "*.generationawake.eu": [4374], "git59.rostrud.ru": [21677], "static.a.gs-cdn.net": [6945], "www.unicef-irc.org": [17064], "retina.elpais.com": [5126], "wtb.mobi": [2024], "www.worldsecuresystems.com": [667], "qdispat.ch": [2024], "info.magento.com": [9868], "metoxia.uio.no": [17414], "www.privacy.org.au": [13133], "prisguide.no": [21499], "mednews.stanford.edu": [15447], "sh.plesnik.de": [2024], "hypanova.com": [7647], "images.grab-media.com": [6864], "www.pi-hole.net": [21404], "gssh.co": [2024], "www.cnes.fr": [2647], "let-share.org": [2024], "amplify.nginx.com": [21133], "*.smjg.org": [15074], "ehood.us": [2024], "v.hao123.com": [20339], "onbsys.com": [2024], "accuga.com": [2024], "zu.lc": [2024], "r.subject4s.me": [2024], "beo.piratenpartei.de": [12755], "datapath.io": [4200], "okanuncie.ga": [2024], "documents.plymouth.ac.uk": [12873], "lib.sinaapp.com": [14907], "mail-latest.websupport.sk": [18253], "hipca.mp": [2024], "www.computer.ly": [3540], "cen.as": [2024], "ie.godaddy.com": [6755], "snap.ci": [2024], "mail.yandex.ua": [18747], "dirxion.com": [4525], "shippable.com": [21803], "www.mulesoft.com": [10729], "www.domainfest.com": [12201], "*.cvut.cz": [3984], "he.4.boardgamearena.com": [2182], "*.balpa.org": [2357], "sjwc.co": [2024], "digitalcommons.law.scu.edu": [14352], "www.rapidrar.com": [21582], "a-r.link": [2024], "x3.cm": [2024], "tag.researchnow.com": [13856], "w2m.co": [2024], "infosecurity-magazine.com": [13761], "on.wsav.com": [2024], "mochithin.gs": [2024], "pulse-forum.ind.ie": [8052], "ecert.metas.ch": [22061], "cdn.mol.org": [10521], "www.paste2.org": [12474], "mcfamily.mcdonalds.ru": [20941], "*.fsb.org.uk": [5714], "a.europaplus.ru": [20034], "www.uicbookstore.org": [17028], "go.wustl.edu": [18089], "xparkmedia.com": [18674], "judge.wizards.com": [18477], "s.reli.vn": [2024], "wifigw.cis.vutbr.cz": [17609], "i.ppz.com": [2024], "bacain.ga": [2024], "joshkno.ws": [2024], "gsmin.fo": [2024], "app.gztlk.com": [2024], "conghua.jd.com": [8434], "dancesafe.org": [4127], "ezszn.com": [2024], "nartac.com": [11077], "blog.nexcess.net": [11396], "preds.co": [2024], "www.blog.uni-erlangen.de": [17396], "yosemite.ucc.ie": [17006], "w3b.li": [2024], "s.ocmsanse.org": [2024], "jesusled.biz": [2024], "www.apiok.ru": [11806], "www.resources.kairo.at": [8782], "www.donationcoder.com": [4671], "img03.rl0.ru": [13972], "kkmc.info": [2024], "connectiveportal.axosoft.com": [1504], "rrl.osu.edu": [11797], "www.iar.com": [7672], "ur.wustl.edu": [18089], "bouc.as": [2024], "theregister.co.uk": [22182], "discovery.nationalarchives.gov.uk": [11103], "pages.chef.io": [3061], "link.qw4rtz.fr": [2024], "b.wyzers.com": [2024], "avatar.s1.citilink.ru": [19594], "parentview.ofsted.gov.uk": [21231], "decorrespondent.nl": [4234], "zenmate.se": [18917], "heatm.in": [2024], "cb.oxfordjournals.org": [12222], "pritunl.com": [13127], "sue.casehub.com": [2024], "mnbkr.com": [2024], "login.lisam.liu.se": [9097], "s.maggi.cc": [2024], "ke.vc": [2024], "test-vefa.difi.no": [4452], "www.indyreader.org": [8086], "www5.atomicorp.com": [1355], "www.lada.kz": [20769], "l.codehate.com": [2024], "diskusjonsforum.uio.no": [17414], "itutor.datart.cz": [3998], "mailxchange.1and1.com": [69], "www.phpartners.org": [12283], "washingtonpost.com": [18086], "mins.government-nnov.ru": [20295], "ivdopia.com": [17672], "cdn.rt.com": [13528], "ivill.ag": [2024], "idp2-1.slu.se": [14195], "xlab.li": [2024], "shop.telus.com": [16174], "sm.baden-wuerttemberg.de": [19302], "console.gigya.com": [6641], "x.noggalito.com": [2024], "images.sourceforge.net": [15242], "www.q4os.org": [21552], "myoptimizerplus.com": [10856], "www.freedomnotfear.org": [6149], "supah.ro": [2024], "imagemagick.org": [7980], "mcdee.com.au": [10137], "cf.mpuk.cc": [2024], "jusjm.xyz": [2024], "broking.postbank.de": [13007], "react.jsbin.com": [20659], "bburl.co": [2024], "vlky.re": [2024], "ftp2.eu.openbsd.org": [11955], "s6.gismeteo.lt": [20249], "finance.sina.com.cn": [14904], "curtpr.in": [2024], "journal.lutte-ouvriere.org": [20894], "portfoliotracker.usatoday.com": [17112], "logotype.se": [9573], "milr.eu": [2024], "m.vineyardvines.com": [17808], "personenverkehr.oebb.at": [21230], "marclinks.com": [2024], "win-ben-win.com": [2024], "arcnct.co": [2024], "portaldovoluntario.rio2016.com": [21652], "www.polybrowser.com": [12934], "harabaly.astrobl.ru": [19264], "pfront.a-3.ru": [258], "i.duckduckgo.com": [4785], "www.fastspringblog.com": [5665], "otfs.it": [2024], "madinatube.com": [20905], "ukfsn.org": [17040], "*.gatewaysb.com": [6447], "grzr.me": [2024], "jobs.osu.edu": [11797], "my.medicare.gov": [20953], "www.mediastorehouse.net": [10160], "ums.umftgm.ro": [22364], "mymerchantguard.com": [8707], "cdn00.mir.afisha.ru": [19107], "api.ln-s.it": [2024], "noxa.de": [21174], "*.epson.com": [5318], "tpblist.xyz": [22259], "de-centralize.com": [4230], "c.wpimg.pl": [22621], "*.eventim.co.il": [5433], "www.presov.korzar.sme.sk": [14198], "www.responsys.com": [13872], "gss3.baidu.com": [1641], "xagyl.us": [18592], "s.thestar.com": [16646], "www.uppsalahem.se": [17482], "t.grpr.co": [2024], "webmail.telford.gov.uk": [22121], "slevert.me": [2024], "cfb.mx": [2024], "coboy.tk": [2024], "cabinet.telphin.ru": [16170], "www.ctan.org": [2696], "www.bet365affiliates.com": [19358], "s.omnisales.com": [2024], "billing.nodeserv.com": [11488], "northeastern.worldcat.org": [18536], "auth.williamhill.com": [18407], "receiver.amplify.nginx.com": [21133], "merchants.ozon.ru": [12231], "mss.io": [2024], "california.worldcat.org": [18536], "api-co.la.welt.de": [18290], "chemspider.com": [14048], "affl.sucuri.net": [15639], "trusteer.com": [16864], "infoseek.co.jp": [8130], "sstatic1.histats.com": [20379], "i.auto.ru": [19276], "w.me.uk": [2024], "webmaster.yandex.ua": [18747], "incode.fir.im": [20106], "images.waterfrontmedia.com": [5443], "argyll-bute.spydus.co.uk": [21952], "*.footballfanatics.com": [5991], "a.asa.fyi": [2024], "divalicio.us": [2024], "link.dl2tom.de": [2024], "www.vbulletin.com": [17557], "www.umassathletics.com": [17352], "t.1mix.co.uk": [2024], "www.pastemonitor.com": [12475], "wrp.la": [2024], "partner.lpice.eu": [9109], "www.netzfreiheit.org": [11315], "johnwohn.com": [2024], "www.silktide.com": [14859], "health.unian.net": [22369], "de.reuters.com": [13893], "www.irongeek.com": [20582], "binarybiz.com": [1919], "ro.libreoffice.org": [9327], "blog.gerv.net": [6543], "tix.deals": [2024], "georgian.georgia.usembassy.gov": [22406], "media.kickstatic.com": [8891], "s35.cnzz.com": [3328], "www.9tv.co.il": [257], "ayo.dakwah.in": [2024], "leo.org": [9270], "api-latam.groupon.com": [6953], "aox.ag": [2024], "gaaturustigslapen.nl": [6378], "jira.lineageos.org": [9384], "www.lanayachocolate.com": [9137], "members.aas.org": [280], "insight.rpxcorp.com": [13508], "short.wirzi.com": [2024], "www.scorerestore.com": [14454], "ests.us": [2024], "hecky.es": [2024], "bam.nr-data.net": [10993], "lambda-linux.io": [9150], "b32cronos.ual.es": [17162], "lbird.org": [2024], "yui.yahooapis.com": [18729], "weatherimages.tv2.dk": [15946], "genges.com": [6505], "intelfreepress.com": [8212], "waze.jlss.eu": [2024], "hromadskeradio.org": [20418], "drwrnrb.com": [2024], "u.cdiscount.vc": [2024], "tbs-url.com": [2024], "static.ads-twitter.com": [19089], "vosd.org": [2024], "jai.sh": [2024], "a1stor.co": [2024], "www.thecenterforrights.org": [16332], "abbts.tocco.ch": [16600], "*.discshop.se": [4546], "file.cmbchina.com": [2639], "www.dojotoolkit.org": [4630], "www.efd.admin.ch": [22061], "kurs.te-st.ru": [22103], "*.gamona.de": [6431], "dgttu.co": [2024], "deakinandfrancis.co.uk": [19790], "snkrhd.uk": [2024], "start.fedoraproject.org": [5716], "s7.postimg.io": [13024], "chengdu.jd.com": [8434], "usecryptos.com": [17508], "muzhi.baidu.com": [1641], "captora.com": [19508], "grafana.karelia.pro": [20687], "chel.sledcom.ru": [21858], "status.nodejitsu.com": [11491], "logcom.oxfordjournals.org": [12222], "support.stackpath.com": [21970], "veve.me": [2024], "betsta.rs": [2024], "lift.openx.com": [12028], "central-asia.tpprf.ru": [22260], "tescocompare.com": [16208], "joycasino.com": [20654], "foresters.*": [6008], "u.rorpage.com": [2024], "topb.co": [2024], "divshare.com": [19849], "www.torrentfunk.com": [16652], "0.asset.soup.io": [15235], "aden.la": [2024], "*.helpocean.com": [7303], "tr.house": [2024], "bailen.me": [2024], "www.prometeus.net": [13193], "www.nnsa.energy.gov": [5243], "1nm.co": [2024], "www.openkeychain.org": [12069], "dlab.us": [2024], "stpls.la": [2024], "blog.comsigntrust.com": [3456], "i.kapital.kz": [20685], "www.whois.net": [22583], "mad.eik.bme.hu": [1556], "lnwd.cc": [2024], "getinvolved.wustl.edu": [18089], "img12.warez-bb.org": [18072], "postovabanka.sk": [13028], "188v2ldpdts8tm5xunrmbre7y0bwilru7n65krkh.ipleak.net": [20571], "stylistlounge.stelladot.com": [15531], "www.dengisend.ru": [4344], "fon.tech": [2024], "*.partito-pirata.ch": [12314], "wtrmln.co": [2024], "kazanka.admtyumen.ru": [19082], "www.championat-rostov.ru": [19557], "fffit.co": [2024], "nl.avm.de": [1478], "donate.libreoffice.org": [9327], "es.patronbase.com": [21358], "isolde-project-rilis.web.cern.ch": [2588], "casarray.anadolu.edu.tr": [1029], "arabic.norton.com": [11545], "*.nrao.edu": [10994], "ds.eduid.cz": [5087], "click-finder.jp": [14801], "upx69.com": [17490], "mb.kyivstar.ua": [9067], "northerntool.com": [11541], "voodoo.com": [17929], "securemail.powys.gov.uk": [21474], "on.forex.com": [2024], "*.prolexic.com": [13191], "adweek.com": [723], "manda.lastpass.com": [9175], "*.mozilla.org": [10696], "www.einsteinathome.org": [5115], "gdpnny.us": [2024], "vt.tumblr.com": [16898], "*.vungle.com": [17969], "www.kakao.com": [8721], "www.nigms.nih.gov": [11090], "www.strategypage.com": [22003], "karwansaraypublishers.com": [8815], "l.ybalrid.info": [2024], "rocketbank.ru": [13994], "www.poopjournal.rocks": [12946], "images2.bovpg.net": [2269], "www.sphair.admin.ch": [22061], "cwisdb.kuleuven.be": [8832], "www.torrentdownloads.cc": [22244], "docusign.com": [4619], "skydsl.eu": [14999], "*.sonnettech.com": [15208], "portfolios.aol.com": [380], "mjdk.dk": [20996], "rickshar.es": [2024], "www.transifex.com": [16743], "verkhnyaya-pyshma.beeline.ru": [1778], "payson.se": [12520], "io9.com": [8329], "ins.ms": [2024], "benchmarks.cisecurity.org": [2628], "www.engagesciences.com": [5249], "link.pb.io": [2024], "apawlo.ws": [2024], "dresden.fau.org": [5543], "buryatiya.beeline.ru": [1778], "www.londonsockcompany.com": [9595], "mag-jeunes.com": [20906], "ozk.space": [2024], "foreseeresults.com": [6000], "casl.mailchimp.com": [9893], "integration.nsidc.org": [11100], "go.loginvsi.com": [2024], "jskom.lysator.liu.se": [9097], "www.baruwa.com": [19320], "www.billing.flokinet.com": [5918], "www.risec.aist.go.jp": [802], "ipek.su": [2024], "rth.ms": [2024], "code.videolan.org": [17775], "mmj.to": [2024], "c.viens.ca": [2024], "www.cdn.jsdelivr.net": [8668], "secure.smugmug.com": [15078], "*.hostname.sk": [7545], "new.chetv.ru": [19577], "ntr.ndc.nasa.gov": [10909], "donate.charitywater.org": [3017], "cs.ucsd.edu": [17012], "track.aliexpress.com": [854], "alaska.edu": [17324], "aful.org": [343], "resourcex2.dditscdn.com": [4228], "cogn.im": [2024], "sgkb.ch": [20683], "steelhouse.io": [2024], "ap.chaucanh.net": [2024], "eva.rsl.ru": [21686], "s.dosp.org": [2024], "webs.nl": [2024], "cheer.media": [2024], "yapfiles.ru": [22667], "polygrant.com": [12935], "*.cottages4you.co.uk": [18579], "xchange.cc": [22645], "lib.washington.edu": [17376], "www.driving.co.uk": [19898], "webtimeclock.com": [18257], "scribblelive.com": [14474], "wre.jp": [2024], "www.slate.fr": [15015], "quidco.com": [13415], "wwa.wipe.de": [22598], "securefileshare.wales.nhs.uk": [10953], "academia.edu": [494], "admission.tameside.gov.uk": [22095], "try-smart.jd.com": [8436], "resources.joomla.org": [8641], "unian.ua": [22369], "www.wealth.anz.com": [374], "www.easy-share.com": [3804], "splin.tt": [2024], "wimm.club": [2024], "stus.se": [2024], "amdram.info": [2024], "jam.sh": [2024], "mdl1.udn.com": [17020], "doba.us": [2024], "www.itradecimb.co.id": [2617], "ccedk.com": [2561], "elms.warrington.gov.uk": [18079], "ubt5.fanli.com": [5645], "www.digitaldollhouse.com": [4478], "cesium.di.uminho.pt": [17355], "fitm.ag": [2024], "umweltbundesamt.de": [17230], "enphaseenergy.com": [5271], "mantodea.mantisadnetwork.com": [9971], "cdntest-c.ndla.no": [11158], "secure.identrust.com": [7936], "indr.co": [2024], "piwik.ip-projects.de": [7789], "f3.thejournal.ie": [16299], "abdussamad.com": [465], "www.frys.com": [6215], "planet-work.*": [12796], "hckrnews.com": [7246], "cwe.mitre.org": [10497], "hosting.karelia.pro": [20687], "account.here.com": [7325], "patches.linaro.org": [9377], "maintenance.fastly.com": [5676], "suite.websecurify.com": [18239], "unid.utah.edu": [17374], "people.netfilter.org": [11265], "*.saintcon.org": [21716], "wicworks.fns.usda.gov": [17299], "p19.qhimg.com": [13347], "honlap.farm": [2024], "archive-8.kali.org": [8786], "password-hashing.net": [12467], "threatexchange.fb.com": [5687], "git18.rostrud.ru": [21677], "jdreed.co": [2024], "a0.websitealive.com": [18242], "press.livefyre.com": [9519], "static.hackaday.io": [7127], "extranet.unfpa.org": [17062], "*.avaya.com": [1470], "www.workingatbooking.com": [22614], "www.refaktor.hu": [13773], "b.gohere.ir": [2024], "n.stocks.co.zw": [2024], "track.socializer.cc": [15138], "www.mootipass.com": [10623], "support.udacity.com": [17192], "campustreball-proves.upf.edu": [17471], "wndr.dk": [2024], "htmail.play-asia.com": [12828], "img.t6k.co": [22080], "*.iheart.com": [7743], "thalasseo.com": [16241], "e.caine.in": [2024], "www.benaa.islamacademy.net": [8366], "barrierbusting.communities.gov.uk": [19653], "p.confinale.ch": [2024], "tver.tpprf.ru": [22260], "abtt.co": [2024], "ogi.lt": [2024], "www.peterborough.gov.uk": [12625], "ogi.lv": [2024], "wap.nso.ru": [21192], "www.ultimedecathlon.com": [22361], "www.justdelete.me": [20670], "*.sundancechannel.com": [15663], "brasil.elpais.com": [5126], "*.bidz.com": [1877], "sh-m.ag": [2024], "staticgen.com": [15492], "forums.absolute.com": [487], "slne.us": [2024], "faxian.appinn.com": [1148], "www.peertransfer.com": [12551], "go.ruec.jp": [2024], "khashaev.ru": [20710], "www.doublethedonation.com": [4708], "comsuper.gov.au": [3459], "pethelpful.com": [21392], "spunout.info": [2024], "help-de-de.nike.com": [11440], "blog.gustavus.edu": [7009], "vnews34.ru": [22480], "lfg.fyi": [2024], "cfif.org": [2955], "g.01j.me": [2024], "www.illumos.org": [7973], "gaos.com": [6890], "www.genotek.ru": [20229], "in.himytv.com": [2024], "36v.me": [2024], "toolsfor.lv": [2024], "mercury.jd.com": [8436], "catalog.utdallas.edu": [17150], "tale.sh": [2024], "www.joshbegley.com": [8647], "s.yotsuba.to": [2024], "s0.playscdn.tv": [12847], "ijb.mg": [2024], "www.chessbase-shop.com": [3072], "swqsl.biligame.com": [1903], "sport.49gov.ru": [187], "flonline.eu": [5568], "unyearbook.un.org": [17057], "scriptsource.org": [14481], "uvw.crase.org": [2024], "results.ielts.org": [7723], "var.uicdn.net": [17032], "lmelibrary.worldcat.org": [18536], "www.anybalance.com": [1112], "bse.havering.gov.uk": [7236], "go.dtrix.tv": [2024], "awdc.aliyun.com": [868], "til.ink": [2024], "id2.idqqimg.com": [7926], "kp.dftoutiao.com": [19826], "mtgrf.co": [2024], "blog.webtrends.com": [18264], "fr.zenmate.ch": [18917], "tescophoto.com": [16211], "forums.questionablecontent.net": [13408], "assetcdn.500px.org": [206], "rstt.eu": [2024], "lk.kav.fr": [2024], "www.getfinal.com": [6576], "m.miniclip.com": [10460], "bbs.deepin.org": [4287], "*.reviewjournal.com": [9172], "tv.planeta.ru": [21431], "*.analystone.com": [1030], "diyconsumer.co": [2024], "talon.bz": [2024], "2wh.cc": [2024], "ssl.ptlogin2.qq.com": [13329], "go.dekalee.net": [2024], "entreu.uv.es": [17544], "go.wbs.com": [2024], "portal.uv.es": [17544], "hdvest.com": [20359], "lkwifi.tattelecom.ru": [22099], "mybank.primbank.ru": [13107], "*.ting.com": [16548], "www.cz.redhat.com": [13735], "m.koreahq.net": [2024], "enfr.dict.cc": [4442], "committeepapers.barnet.gov.uk": [19317], "www.xlhost.com": [18609], "gtran.ch": [2024], "www.planetnetbeans.com": [12115], "j.calcium.pw": [2024], "www.planet-source-code.com": [12795], "login.portal.uni-muenchen.de": [9104], "jfol.in": [2024], "www.googletagservices.com": [20290], "labs.runabove.com": [14090], "secure.bhphotovideo.com": [19370], "link.udd.cl": [2024], "moodle.thm.de": [15876], "ubeyd.tk": [2024], "kickson.fr": [2024], "login.bazaarvoice.com": [1736], "l.grebbedijk.nl": [2024], "trac.mplayerhq.hu": [9798], "www.kinox.io": [20720], "swisscex.com": [14268], "www.cheetosmuseum.com": [19570], "smauto.co.uk": [2024], "cwp.stanford.edu": [15448], "themuse.com": [16415], "insidecelebs.com": [8169], "www.richmondshire.gov.uk": [13933], "everylittled.thenewslens.com": [16302], "acilia.me": [2024], "cdon.se": [2576], "support.tealiumiq.com": [16060], "eupompe.intevation.de": [8293], "parisvega.com": [21346], "hmsrc.me": [2024], "sibel.ga": [2024], "dulwich.io": [4793], "spinn.es": [2024], "sig11.haxor.hu": [2024], "missions.opencorporates.com": [11967], "laud.ly": [2024], "ntldstats.com": [11002], "mongodb.com": [10591], "48ertandler.wien.gv.at": [22588], "safety-security.uchicago.edu": [17334], "joke-link.de": [2024], "cal.berkeley.edu": [17329], "monazilla.org": [21009], "*.sysproserver.de": [22072], "survivetheclaireperryinter.net": [15726], "assets.highways.gov.uk": [20376], "dhcpforum.isc.org": [7823], "lnk.nextit.de": [2024], "schrf.be": [2024], "yllwp.gs": [2024], "nginx.com": [21133], "out.webbson.net": [2024], "rutracker.nl": [21702], "*.sequanux.org": [14654], "securehnw.northwarks.gov.uk": [11538], "112rsd.nl": [2024], "ope.unizar.es": [17441], "guizhou.jd.com": [8434], "www.typora.io": [16988], "redditblog.com": [21616], "api.crossref.org": [3812], "www.foodprotectiontaskforce.com": [5979], "www.lib.polyu.edu.hk": [12936], "selger.canaldigital.no": [2817], "fun.lan.ua": [20774], "www.vitrinepix.com.br": [22474], "eloconcursos.com.br": [5168], "www.jonyivebook.cultofmac.com": [3909], "www.ireeco.com": [8352], "www.skyline.tw": [21854], "u.iza.ac": [2024], "support.zoneedit.com": [18994], "pac12.me": [2024], "thechinastory.org": [16334], "17h35j0skmc1jv8y5iz6t2mo1cextdcygn03ipgt.ipleak.net": [20571], "www.vn.hsbc.com": [7090], "www.lesbianpornfan.com": [20812], "muj.martinus.cz": [10044], "biciperros.org": [1871], "www.bisente.com": [1946], "kpl.us": [2024], "him.ac": [2024], "msm.mitre.org": [10497], "app.search.ch": [14504], "vuejs.org": [17963], "www.m86security.com": [9711], "kissourads.com": [2024], "apps.bz": [2024], "l.ludw.in": [2024], "www.proxy.uchicago.edu": [17334], "account.wandoujia.com": [18066], "www.cheapassfiction.com": [3048], "status.hotjar.com": [20412], "litehosting.org": [9470], "account.clever.com": [3239], "*.webstarts.com": [18187], "www.fullcontact.com": [6228], "ugenr.dk": [17199], "www.peopleconnect.scot.nhs.uk": [10953], "kcory.co": [2024], "community.godaddy.com": [6755], "cov.ky": [2024], "static3.politico.com": [12919], "codesearch.debian.net": [4261], "aera.at": [732], "filesharingpremium.com": [20091], "blackgate.net": [19402], "909.ibero909.fm": [2024], "stand.org": [15440], "webapps.telford.gov.uk": [22121], "cabos.xyz": [2024], "font.by": [2024], "link.sl": [2024], "www.hopkins-interactive.com": [7502], "fogbo.ws": [2024], "hallam.co": [2024], "at.harilo.com": [2024], "blog.advance.net": [701], "prek.co": [2024], "memne.ws": [2024], "fdol.pl": [2024], "www.verio.com": [17711], "spb.tpprf.ru": [22260], "flockport.com": [5916], "1msoul.us": [2024], "www.buckwear.com": [19466], "s.galvezgil.com": [2024], "mnhne.ws": [2024], "golfdig.st": [2024], "dev.stackauth.com": [15424], "www.notalone.gov": [11554], "l.elpete.com": [2024], "www.cubify.com": [3905], "fm2.cl": [2024], "1.darkroom.shortlist.com": [14795], "vorstand.piratenpartei.de": [12755], "jeat.ca": [2024], "cdn12.iconfinder.com": [7920], "meta.appinn.com": [1148], "opros.ok.ru": [11806], "acfou.io": [2024], "shopspring.com": [21810], "dnt.abine.com": [477], "choc.to": [2024], "keyring.debian.org": [4263], "ticketea.com": [16493], "mint.macobserver.com": [9848], "b.yandex.by": [18739], "aflcio.mn": [2024], "www.ozlabs.org": [12228], "targz.link": [2024], "www.taras.yandex.com.ua": [18741], "www.porter.io": [12981], "faq-es.ssa.gov": [21959], "minforsyning.kmd.dk": [20740], "estatico.vozpopuli.com": [17950], "tedwomen2016.ted.com": [15871], "growmyteam.xyz": [2024], "d.simpsn.com": [2024], "freezone.co.uk": [6165], "ly.fftn.co": [2024], "lobn.co": [2024], "scrx.es": [2024], "account.courierpostonline.com": [3713], "wageworks.com": [18040], "b.lordbanks.com": [2024], "static.thejournal.ie": [16299], "m.contact2.yandex.com.tr": [18740], "cn.unionpay.com": [17281], "jstz.co": [2024], "dev.wix.com": [18473], "grafistik.net": [2024], "companis.to": [2024], "www.allpayments.net": [19154], "nacdl.us": [2024], "zeroanthropology.net": [22716], "russfr.it": [2024], "nplx.be": [2024], "build.chromium.org": [3124], "run.adkoli.net": [2024], "www.healthdesigns.com": [7255], "i.makeagif.com": [20912], "doska.sobytiya.info": [21887], "forexct.com": [6012], "www.beta.happyplanetindex.org": [7190], "url.ihostbr.com": [2024], "finapp.pfm-dev.memberdirect.net": [10265], "css.static.shropshire.gov.uk": [21819], "adm.osp.cuhk.edu.hk": [2704], "rt.biglion.ru": [19375], "htwv.uk": [2024], "*.mindhealthconnect.org.au": [10449], "webmail.uic.edu": [17321], "www.ikea.com": [7962], "smartronix.massrel.io": [10059], "www.walmart.com": [18059], "aldi.fr": [357], "www.entropay.com": [5287], "www2.blogger.com": [2122], "adactio.com": [603], "sclo.by": [2024], "almetievsk.biglion.ru": [19375], "www.ensijaturvakotienliitto.fi": [20000], "a.bnb.im": [2024], "*.fullslate.com": [6229], "img.refresher.sk": [13781], "home.thescottishsun.co.uk": [22185], "content.magix.com": [9718], "dudley.firmstep.com": [20109], "mieux-viv.re": [2024], "samba.com": [14126], "sourcefabric.org": [15248], "pvac-forum.leeds.ac.uk": [17403], "s.discogs.com": [4529], "fromwww.play-asia.com": [12828], "hedge.bz": [2024], "www.nikosdano.com": [11444], "tino.cu.cc": [2024], "myat.tk": [2024], "a.arsti.la": [2024], "scrnch.it": [2024], "j.wovn.io": [18008], "www.dn.se": [19856], "zicguzoo.com": [22719], "www.dal.net": [3994], "on.nbc26.tv": [2024], "ru.syllable.org": [22064], "bail3y.us": [2024], "s2.rationalcdn.com": [21588], "olcf.ornl.gov": [11730], "mobify.net": [10531], "www.osalt.com": [21295], "platina.ru": [12822], "*.gnome.org": [6334], "www.cs.kent.ac.uk": [17402], "secure.sprintbuyback.com": [15385], "hnulibrary.worldcat.org": [18536], "flinto.in": [2024], "oval.mitre.org": [10497], "nslovo.info": [21191], "stev.us": [2024], "get.jftrial.com": [2024], "croc3.cf": [2024], "www.coverartarchive.org": [3725], "www.tus.ac.jp": [16611], "online.cheshirewestandchester.gov.uk": [19575], "tools.cisco.com": [3165], "rutblo.com": [2024], "unodc.org": [17075], "www.racetohealth.co.uk": [13552], "ctan.org": [2696], "go.wktk.jp": [2024], "l.rondier.io": [2024], "www.kelcomaine.com": [8858], "mps.theplatform.com": [16308], "gtgkd.co": [2024], "tarena.in": [2024], "gatsby.party": [2024], "bittit.info": [2045], "frederikshavn.dk": [6094], "en.faq.buffalo-global.com": [2415], "hgs.oxfordjournals.org": [12222], "stylisheve.link": [2024], "static.hubspotqa.com": [7600], "www.zenmate.es": [18917], "image10.bizrate-images.com": [2054], "welfare.lenovo.com.cn": [9266], "stec-t07.xhcdn.com": [18605], "*.nationalpriorities.org": [11123], "imd.online": [2024], "*.siliconrus.cmtt.ru": [3325], "worldtour.kartfighter.com": [8814], "poll.sakh.com": [21719], "nl.napster.com": [21084], "uline.com": [17211], "moneycrashe.rs": [2024], "ar.verbling.com": [17704], "chiken.link": [2024], "www.ausregistry.com.au": [1399], "www.element5.com": [5149], "w.kabam.com": [2024], "www.ask-inc.com": [16739], "www.opendemocracy.net": [12063], "i3.sndcdn.com": [15096], "jhodg.us": [2024], "petx.pk": [2024], "external-moderation.nzqa.govt.nz": [11044], "religion.interfax.kz": [20552], "connect-fr.boum.org": [2261], "tpgimc.us": [2024], "websvc.migrol.ch": [10413], "www.red-bean.com": [13725], "link.mjcomp.com": [2024], "static0.studyjamscn.com": [22018], "anxco.re": [2024], "www.francisfrith.com": [20150], "crunchboard.com": [3831, 12615], "prvn.io": [2024], "ep2013.europython.eu": [5399], "img.bzimages.com": [2307], "optistar.co": [2024], "playsafe.events": [2024], "publictools.tiaa-cref.org": [15881], "chickensoup.com": [3077], "code.x2go.org": [18589], "unode50.co": [2024], "legacy.illinois.edu": [17346], "thermoscientific.com": [16421], "poivron.org": [13031], "blog.xamarin.com": [18629], "sosecu.re": [2024], "u.novus.com": [2024], "musiciansfriend.com": [10753], "globalpolicy.org": [6711], "sportys.com": [15363], "jcrosoft.com": [8433], "www-ee.stanford.edu": [15448], "careers.peopleclick.com": [12582, 12583], "galaxus.ch": [6385], "earth.illinois.edu": [17346], "roari.link": [2024], "communications.williams.edu": [18408], "cuinfo.cornell.edu": [3676], "kccne.co": [2024], "app-de7.resrc.it": [13659], "app-us5.resrc.it": [13659], "ovp.lenovo.com": [9267], "mann.link": [2024], "zwmail.de": [19027], "intranet.nes.scot.nhs.uk": [10953], "eventtracker.friendsofnra.org": [20176], "www.theinformation.com": [16368], "link.coder.si": [2024], "goff.im": [2024], "compulab.co.il": [3534], "ocas.nl": [2024], "www.epilepsyontario.org": [5311], "bbzsogr.so.ch": [22061], "cms.medianova.com": [10192], "hkex.com.hk": [20382], "cityoflondon.police.uk": [3196], "torchwood.friday.ru": [20175], "tkrt.xyz": [2024], "swiss-virtual.com": [15758], "gatwickairport.com": [6448], "blogs.kafanews.com": [20677], "pingxx.com": [12723], "insider.iphonelife.com": [8341], "www.zwmail.de": [19027], "06v3otffkzvqqs8hqbe52cu9jzf41z53tbui1s0b.ipleak.net": [20571], "pahp.me": [2024], "gco.io": [2024], "wiki.openitp.org": [11984], "tartarus.org": [16030], "fdhl.co": [2024], "seryer.net": [2024], "appwiki.checkpoint.com": [3052], "httpsnow.org": [4901], "snd.st": [2024], "open.home.mi.com": [10361], "suitey.com": [15653], "uofmhealth.org": [17463], "www.mims.com.hk": [9756], "clkads.com": [3271], "theprov.in": [2024], "willia4.link": [2024], "snd.sc": [2024], "lamer.co": [2024], "walul.is": [2024], "*.ubisoftgroup.com": [17172], "go.magento.co.uk": [9867], "tybo.co": [2024], "imne.ws": [2024], "asset-1.netbeans.org": [11223], "www.ezrss.it": [4994], "thinkx.me": [2024], "shepway.objective.co.uk": [21225], "go.danpatra.org": [2024], "sussan.com.au": [15729], "plzen.idnes.cz": [20483], "myfitnesspal.com": [10803], "corporativo.walmart.com": [18059], "i.gathering.org": [2024], "*.research.de.com": [10230], "l.gos.si": [2024], "icann.org": [7686], "www4b.wolframalpha.com": [18487], "www.mobilecore.com": [10534], "www.subply.com": [15620], "deviceids-meda-id2.wdr.de": [18113], "support.intego.com": [8202], "smartos.org": [15054], "www.bsdconsulting.co.jp": [1571], "audio.lutte-ouvriere.org": [20894], "gobolinux.org": [20276], "cyclistapp.co": [2024], "perevod.vtb24.ru": [22512], "to.ichetkar.fr": [2024], "glov.es": [2024], "abebooks.com": [467], "healthcarestaffbenefits.org": [7260], "tech.yandex.com": [18742], "www.movistar.es": [22632], "billing.gitter.im": [6666], "tchibo.pl": [16050], "ztan.tk": [16622], "bigg.ie": [2024], "info.microsoft.com": [10396], "www.openculture.com": [12038], "symposium.uptimeinstitute.com": [22393], "www.trustthevote.org": [16855], "uptime.centrify.com": [19546], "nl.icecat.biz": [7912], "img04.findgravy.com": [5827], "on.boeffi.net": [2024], "files.vgtrk.com": [22455], "magpi.cc": [2024], "www.broxtowe.gov.uk": [19458], "www.panstwomiasto.pl": [12398], "kmshair.co": [2024], "m.footlocker.com": [5986], "sso.swiss-va.com": [15757], "mdgdgt.com": [2024], "halc.kk.dk": [8748], "hel.me": [2024], "urtu.be": [2024], "dfs.bz": [2024], "gcfum.com": [2024], "*.meteonews.net": [10337], "l.rbh-bb.de": [2024], "blogtw.ashleymadison.com": [1277], "mhyatt.us": [2024], "blog.eurodns.com": [5395], "csci.williams.edu": [18408], "hc.verseone.com": [22445], "wiki.ocf.berkeley.edu": [17329], "m40.so": [2024], "dcif.uniovi.es": [17282], "img7.anidb.net": [1065], "www.associatie.kuleuven.be": [8832], "www.hbo.com": [20351], "itsartm.ag": [2024], "pas.org.my": [12382], "wumsweb.wusm.wustl.edu": [18089], "www.x-blog.jp": [18585], "www.easychair.org": [5014], "aftr.dk": [2024], "games.mirrorbingo.com": [10481, 10482], "successchef.com": [15637], "tableau.com": [15962], "static-7headlines.pixfs.net": [12776], "yelp.co.nz": [18766], "l.kittest.se": [2024], "bossi.es": [2024], "a.rink.li": [2024], "kb.hostingsolutions.cz": [7538], "i1-groceries.asda.com": [407], "mdr.buzz": [2024], "chef.io": [3061], "syktyvkar.beeline.ru": [1778], "chessvib.es": [2024], "service.wienenergie.at": [18376], "www.dittdistrikt.no": [4567], "*.waitrosedirect.com": [18046], "dev.pdr.leeds.ac.uk": [17403], "cryptsy.com": [3883], "exprt.co": [2024], "url.jarno.co": [2024], "postlapsaria.com": [13026], "boots.ie": [2234], "www.searchstorage.de": [16083], "extratorrent.com": [5516], "js-sec.casalemedia.com": [2880], "*.web.com": [18145], "apod.nasa.gov": [10909], "buy.itunes.apple.com": [1151], "openbsd.org": [11955], "cwo.guide": [2024], "developer.travis-ci.org": [16775], "www.mediabistro.com": [10182], "mlw.al": [2024], "img.ofo.so": [11794], "mlma.alibaba.com": [857], "tixx.it": [2024], "*.starnet.com": [15457], "kvm.friday.ru": [20175], "s12.pixxxels.org": [21427], "zdv.uni-mainz.de": [17410], "egiles.me": [2024], "www.enigmabox.net": [5262], "fr.pornworms.com": [12974], "eurosmartz.com": [5400], "bit.ottvideo.me": [2024], "status.groupon.com": [6953], "www.pressbooks.ch": [21488], "flse.at": [2024], "sptlzr.link": [2024], "www.vitamindcouncil.org": [17880], "smodus.nike.com": [11440], "www.aclum.org": [314], "rus-jap.tpprf.ru": [22260], "www.homebid.org.uk": [20397], "corp.visiblemeasures.com": [17856], "shop.lego.com": [9082], "www.swis-cias.dwd.de": [19911], "www.slackatwork.com": [15008], "thumbnail.gunosy.com": [7005], "easycron.com": [19941], "hebdo.ch": [20362], "www.ffgg.ulaval.ca": [17319], "www.vlissingen.nl": [11172], "contribuez.cnnumerique.fr": [2651], "priv.gc.ca": [13129], "itefix.net": [20600], "cambr.co": [2024], "ic3.gov": [17103], "mrlnfx.net": [2024], "www.shirazlug.ir": [14769], "forbesmagazine.com": [5996], "facebook.se": [5612], "mail.uformia.com": [17197], "www.albumarsiv.com": [828], "www.aquagear.com": [1175], "wiki.manjaro.org": [9966], "n.icetravel.xyz": [2024], "l.docondev.com": [2024], "grande.xlhost.com": [18609], "spb-realty.rambler.ru": [13600], "neappl.es": [2024], "go.id.me": [2024], "myitsm.nih.gov": [11090], "livingsocial.com": [9530], "in.wasaweb.net": [2024], "torrentproject.se": [16659], "image.istella.it": [8395], "csuloch.link": [2024], "fir.im": [20106], "cdn.markets.ft.com": [5810], "www.myoptplussecure.com": [10855], "euwww.play-asia.com": [12828], "blogs.vtiger.com": [17959], "www.eastsussex.gov.uk": [19938], "login.independentmail.com": [8060], "www.inf.ed.ac.uk": [5059], "www.gimmickwear.com": [6644], "sglnk.us": [2024], "blog.radware.com": [13584], "ryxp.co": [2024], "www.velleman.be": [17685], "*.nexway.com": [11395], "www.onegreenplanet.org": [11871], "he.okcupid.com": [11809], "l.connatix.com": [2024], "plugins.jetbrains.com": [8573], "secure.i.uat1.telegraph.co.uk": [16149], "www.avast.com": [1469], "bctn.co": [2024], "ton.twimg.com": [16949], "passwordcard.org": [12470], "img.pr0gramm.com": [21476], "www.settrade.com": [14693], "knash.co": [2024], "iplawye.rs": [2024], "sochi.beeline.ru": [1778], "www.cloudcracker.com": [3283], "wag.so": [2024], "wallet.mynxt.info": [10817], "q.acero.uk": [2024], "oe2.us": [2024], "ekmsecure.co.uk": [5120], "www-cse.ucsd.edu": [17012], "mail.eclipso.de": [5042], "www.toolserver.org": [18388], "fabbuy.com": [2024], "sell.stubhub.co.uk": [15602], "svp.vgc.no": [17569], "account.companieshouse.gov.uk": [3509], "aia.ag": [2024], "bigiron.bid": [2024], "portal.hfo-telecom.de": [7041], "classbm.hkgolden.com": [7058], "i.gruppe-n.eu": [2024], "cru-inc.com": [2675], "kulado.xyz": [2024], "poes.gsfc.nasa.gov": [10909], "idg.se": [7709], "www.exonet.nl": [20051], "www.elilabs.com": [5157], "www.pbagalleries.com": [12240], "www.linaro.org": [9377], "www.connectmyphone.com": [3584], "*.youtube.com": [18800], "www.whisper.sh": [18342], "youtu.cf": [2024], "ps.dental": [2024], "prad.de": [13055], "static-0.rosminzdrav.ru": [21674], "vod.transformersmovie.com": [12422], "flyg.us": [2024], "l.westm.co.uk": [2024], "allyours.virginmedia.com": [17822], "cdr.im": [2024], "www15.georgetown.edu": [6531], "northeast.aclufl.org": [297], "es.xfinity.com": [22650], "gregslink.co": [2024], "eservices.montpellier3m.fr": [10609], "www.netload.in": [11282], "mvsl.im": [2024], "ferga.info": [2024], "piratebay.unlockproject.tech": [22259], "mj.oxfordjournals.org": [12222], "www.geoplatform.gov": [6523], "ddr.my": [2024], "co.atcs.ms": [2024], "shp.qlogo.cn": [13355], "assets.gratipay.com": [6882], "www.islamacademy.net": [8366], "at.amlabc.com": [2024], "app.prnt.sc": [21502], "bookyourpc.lancashire.gov.uk": [20777], "edg.com": [4883], "static.planeta.ru": [21431], "www.planboardapp.com": [12794], "llportal.aylesburyvaledc.gov.uk": [19291], "tenten.vn": [16187], "pottermore.com": [21472], "blog.core.ac.uk": [19690], "lyncdiscover.newegg.com": [11356], "static.newamerica.org": [11342], "conviva.com": [3633], "ssrn.com": [14246], "cdn.discourse.org": [4534], "cauv.in": [2024], "wtb.li": [2024], "point.im": [12895], "affiliatefuture.com": [19104], "etools.unicef.org": [17069], "www.49gov.ru": [187], "offensive-security.com": [11773], "www.atomiccowlick.com": [1352], "go.levees.org": [2024], "jnt.hn": [2024], "www.estavisas.org.uk": [4958], "nwtime.org": [11306], "dentaldost.in": [2024], "nusoft.fnal.gov": [5741], "www.cryptanalysis.eu": [3843], "rmarch.co": [2024], "url.helc.me": [2024], "www.periscope.io": [12604], "igtn.permkrai.ru": [21390], "prized.na.leagueoflegends.com": [9219], "panel.dataspace.pl": [4178], "222.ipleak.net": [20571], "www.aeryon.com": [739], "qa.nsidc.org": [11100], "relo.la": [2024], "virtu.es": [2024], "vias.symantec.com": [15780], "www.bolehvpn.net": [2204], "skylarkcloud.com": [15000], "cms.kiva.org.s3.amazonaws.com": [8939], "forms.unicef.org.uk": [17068], "disk42.com": [4550], "on.aheram.com": [2024], "www.muslimsfacingtomorrow.com": [10768], "short.hyog.me": [2024], "hepo.fi": [7319], "bussgods.se": [2478], "www.cryptoins.com": [3865], "alumni.kuleuven.be": [8832], "cdn.awsbj0.fds.api.mi-img.com": [10360], "sec.news": [2024], "mozillalabs.com": [10699], "cutty.me": [2024], "beta.cironline.org": [2625], "www.delovoe.tv": [19803], "*.ngpvanhost.com": [10947], "www.vpnincome.com": [8028], "store.symantec.com": [15780], "www.rxportalexpress.com": [14108], "l.toch.im": [2024], "dub.washington.edu": [17376], "www.usfreeads.com": [17123], "newegg.com": [11356], "zammad.org": [18881], "*.2o7.net": [131], "account.bilibili.com": [1904], "teenlife.co": [2024], "www.manuf.bme.hu": [1556], "static.daniweb.com": [4134], "reserve-backend.dji.com": [4029], "t-c-a.info": [2024], "gpsec.me": [2024], "e-fibank.bg": [5755], "diagnosticpathology.biomedcentral.com": [1931], "dmsguild.com": [11867], "live.rocketbank.ru": [13994], "hertsdirect.org": [7334], "shop.bl.uk": [2358], "splatoon.co": [2024], "contests.newsnet5.com": [11385], "devespanol.aclufl.org": [297], "eqx.smartadserver.com": [15049], "segment.io": [14620], "fluffyclouds.dnainfo.com": [19857], "confluence.freeswitch.org": [6106], "federatedinvestors.com": [5711], "ofrs.co": [2024], "www.moreal.co": [10629], "goto.ucsd.edu": [17011], "aap.cornell.edu": [3676], "ie.sogou.com": [15168], "beta.ipredator.se": [7808], "jellis.me": [2024], "get.it": [6550], "fcm.dhl.de": [4025], "www.espo.nasa.gov": [10909], "jira.secondlife.com": [14527], "tten.co": [2024], "odl.mit.edu": [9763], "craftsadore.uk": [2024], "dnssec-validator.cz": [4058], "h5.sina.cn": [14902], "info83.top": [2024], "account.lastpass.com": [9175], "ian.com": [7893], "keenetic.net": [20701], "my.torbay.gov.uk": [16641], "extratorrent.one": [5516], "adv.st": [2024], "tdg.csis.dk": [2687], "onswitchit.ca": [11854], "www.pep.uni-potsdam.de": [17417], "crclf.in": [2024], "opintoluotsi.fi": [12092], "yuntu.amap.com": [19166], "lethiaowens.net": [2024], "z.ettabox.eu": [2024], "researchport.umd.edu": [17351], "www5.dudley.gov.uk": [4788], "framateam.org": [6075], "cu4.uicdn.net": [17032], "drops.htw-berlin.de": [7103], "t.uc.cn": [17003], "www.icares.wustl.edu": [18089], "www.computec-academy.de": [3535], "frivillighetshuset.no": [6200], "intelish.com": [8214], "s.trn.gr": [2024], "nws.vrt.be": [2024], "autodiscover.1x.com": [67], "mais.moda": [2024], "meridian.sovrn.com": [21915], "trdsofla.com": [2024], "www.informatica.us.es": [17502], "supadupa.me": [15676], "www.octopuspop.com": [11754], "www.ianthehenry.com": [7894], "www.sites.sociology.hku.hk": [20387], "www.inoreader.com": [8158], "nordstromrack.com": [11517], "darlinghq.com": [4148], "moodle.dudley.gov.uk": [4787], "muuve.it": [2024], "receive-a-sms.com": [21606], "ctap.it": [2024], "ok.sberbank.ru": [14383], "static2.flattr.net": [5888], "www.getfoxyproxy.org": [6577], "apidoc.c9.io": [3279], "*.uct.ac.za": [17391], "m.po.imhd.sk": [8004], "livertox.niddk.nih.gov": [11090], "catalog.yuga.ru": [22701], "www.narodnipanel.cz": [21085], "gpg4win.org": [6859], "mountco.mp": [2024], "www.mbnet.pt": [10124], "www.fsg.ulaval.ca": [17319], "imp.ulpgc.es": [17213], "www.nvidia.co.uk": [11020], "sjs.li": [2024], "chat.iptorrents.com": [7802], "www.noembed.com": [11495], "www.storywrite.com": [15570], "*.mlpforums.com": [9774], "www.pti.iu.edu": [8069], "noblogs.org": [21148], "www.ual.es": [17162], "apricityos.com": [19222], "www.doel.kuleuven.be": [8832], "n.suntravel.xyz": [2024], "starawardssecure.snowfly.com": [15109], "www.dreamnews.jp": [4745], "ajgeek.me": [2024], "celebritybabies.people.com": [12578], "wdfiles.com": [18387], "static.encyclopediadramatica.se": [5231], "s.maxlielje.co": [2024], "daili.meituan.com": [10248], "democracy.wirral.gov.uk": [18460], "contingent.krasnodar.ru": [20754], "fit.ly": [2024], "senai.sc": [2024], "yedxxx24hr.com": [18759], "git.mate-desktop.info": [9727], "wexnermedical.osu.edu": [11797], "deloi.tt": [2024], "cp.conoha.jp": [3590], "blog.popcorntime.sh": [21461], "jbass.me": [2024], "azzawiah.islamtoday.net": [8372], "club.belaruspartisan.org": [19350], "go.stanish.net": [2024], "www.shreksadventure.com": [21816], "chefexp.com": [2024], "www.hertz.hu": [7347], "www.hertz.hr": [7342], "www.verigames.com": [17710], "p2.ifengimg.com": [20487], "supportline.microfocus.com": [10382], "www.ca.cz": [19489], "status.ontraport.com": [21261], "landing.lyris.com": [9695], "*.edupage.org": [5081], "new.devon.gov.uk": [4415], "cliter.us": [2024], "*.links.mkt41.net": [14865], "mobilevikings.com": [10539], "cdn3.xsolla.com": [18685], "mytischi.tpprf.ru": [22260], "webmail.freecycle.org": [6138], "tamlab.osu.edu": [11797], "ps.xsolla.com": [18685], "www.infoq.com": [8103], "familie.bremen.aok.de": [376], "daemon.indapass.hu": [8055], "marqu.ee": [2024], "*.e-sea.net": [4840], "askives.com": [1291], "photo.domi.to": [2024], "wethep.pl": [2024], "threatmetrix.com": [16467], "courierpickupuat.courierpost.co.nz": [3714], "aclu-cu.org": [2995], "dpcfrontier.com": [4069], "verizon.net": [22441], "hobbyworld.cdnvideo.ru": [19536], "ibur.nu": [2024], "ditg.es": [2024], "*.opensrs.net": [12005], "veteran.mvd.ru": [21055], "ece.unm.edu": [17073], "hoku.co.jp": [14801], "bxf.tv": [2024], "rd.b-type.com": [2024], "hskampus.de": [7588], "bst3.gismeteo.ru": [6650], "s.pixfs.net": [12776], "alfrd.biz": [2024], "vyselki.tpprf.ru": [22260], "urls.im": [2024], "jfe.li": [2024], "conduit.hu": [2024], "madrid.usembassy.gov": [22406], "sellerhelp.taobao.com": [16015], "endpoint.efast.dol.gov": [19867], "southern-africa.hivos.org": [7436], "go.beardben.com": [2024], "www.couchpota.to": [3699], "www.galette.eu": [20196], "tbl.ac": [2024], "m5.hkgolden.com": [7058], "pages.balabit.com": [1647], "oauth.net": [11645], "www.indexoncensorship.org": [8064], "ted.com": [15871], "shotgunclub.com": [14799], "xively.com": [18669], "bugs.python.org": [13314], "muvluv.degica.com": [3333], "www.rtems.org": [13532], "meet.sviaz-bank.ru": [15740], "clusterhq.com": [3319], "lzd.co": [2024], "secure.stage-gettyimages.co.uk": [6604], "energiewendetage.baden-wuerttemberg.de": [19302], "www.eclipso.de": [5042], "searslabs.com": [14511], "stmz.it": [2024], "www.islenzka.net": [8383], "ocean.sci-hub.bz": [14436], "theinquirer.fr": [11238], "www.scooter-attack.com": [14452], "www.afilias.info": [750], "phoc.as": [2024], "m3.quel.jp": [2024], "sledcom.ru": [21858], "*.thomashunter.name": [22195], "verisign.dk": [17712], "websecweekly.org": [18238], "aviani.net": [2024], "event.notifier.rakuten.co.jp": [13594], "peseu.tk": [2024], "wpfilm.co": [2024], "mywell-being.com": [10842], "elilabs.com": [5157], "coloradocollege.edu": [3443], "glassdoor.ca": [20258], "www.gismeteo.ru": [6650], "9to5google.com": [254], "akademy2007.kde.org": [8735], "prfr.co": [2024], "yuexiguan.jd.com": [8434], "ssl.mail.126.com": [39], "itss.tv": [2024], "webassetsf.scea.com": [14148], "im.at-home.ru": [19266], "nodejsmodules.org": [11487], "prettygoodgoods.org": [21494], "srfnw.cz": [2024], "forum.antergos.com": [1098], "youchoose.redbridge.gov.uk": [13742], "cruzpay.ucsc.edu": [17390], "ezrider.bart.gov": [1708], "downloads.slack-edge.com": [15008], "uzlovaya.startsmile.ru": [21980], "www.pluscontrollers.com": [3624], "bytenoc.nl": [2505], "*.shopstyle.com": [14781], "webmail.tushino.com": [22315], "www.sparkstudios.com": [15294], "macleather.co": [2024], "software-univention.de": [17315], "hvyl.ch": [2024], "projects.fivethirtyeight.com": [5873], "dl.winehq.org": [18442], "afisha.klops.ru": [20735], "hashcat.net": [7218], "games.d2jsp.org": [3989], "js.pocketgamer.biz": [12880], "www.uprr.com": [22392], "internot.info": [8289], "www.websterwood.com": [18251], "ww489.smartadserver.com": [15049], "fod.osu.edu": [11713], "www.federatedmedia.net": [5712], "ere.stanford.edu": [15448], "securingthehuman.org": [14579], "cellandbioscience.biomedcentral.com": [1931], "gazeta.ru": [6460], "quitter.no": [13423], "forum.beirel.ru": [19349], "klick2contact.com": [20731], "plex.tv": [12854], "www.secunet.com": [14538], "opencpu.org": [11961], "media.wnyc.org": [18007], "zohodiscussions.com": [18986], "i.blanktv.com": [2024], "*.realtime.co": [13692], "tg.ethz.ch": [4967], "pf200.club": [2024], "www.csc.ncsu.edu": [11530], "netbarg.co": [2024], "www.kremlinpress.ru": [20756], "www.cookiepedia.co.uk": [19680], "28.rkn.gov.ru": [13971], "wiki.ubuntu.com": [17183], "x.skimresources.com": [14977], "risparmiopostaleonline.poste.it": [13013], "filmy.me": [2024], "b9.yahoo.co.jp": [18730], "e4.xhamsterpremiumpass.com": [18607], "fdr.li": [2024], "bilddb.arch.ethz.ch": [4967], "www.vinelinux.org": [22468], "en-el.dict.cc": [4442], "motivatene.ws": [2024], "verizon.com": [17715], "skft.it": [2024], "service.bloomberg.com": [2133], "remote.tripadvisor.com": [16817], "developer.vitalsource.com": [22473], "compete.org": [3521], "www.enjoy.com": [5266], "final-score.com": [5803], "partners.beeline.kz": [19345], "adfs.ntu.edu.tw": [11010], "perf.saturn.de": [21736], "*.marchex.com": [9993], "enomcentral.com": [4925], "ydsnywl.biligame.com": [1903], "releasetheap.es": [2024], "recordsdm.xyz": [2024], "www.vc-kundencenter.de": [17558], "checkout.unity.com": [17310], "mcb.group": [2024], "arsm.co": [2024], "account.manning.com": [20921], "tagesschau.de": [22086], "bamide.as": [2024], "anirena.com": [1064], "containerids.wdr.de": [18113], "reactos.org": [13664], "s2.postimage.org": [13024], "ethx.co": [2024], "itx5-peak.smartadserver.com": [15049], "bowl.by": [2024], "www.techenclave.com": [16075], "nucleo.agency": [2024], "httpshaming.tumblr.com": [16897], "tp.postbank.de": [13007], "feedarea.de": [12886], "fltec.info": [2024], "ibam.dengisend.ru": [4344], "vexped.it": [2024], "www.superantispyware.com": [15677], "pad.april.org": [1171], "www.kidshealth.org": [8899], "download.fedoraproject.org": [5716], "www.analysis.avira.com": [1474], "link.glamis.it": [2024], "grupocrm.org": [2024], "jornalnh.co": [2024], "soccerpunt.com": [7736], "www.priceza.com": [13103], "www.easyicon.net": [19942], "www.airtricity.com": [801], "www.sourced.fm": [15246], "tipmobile.sbb.ch": [15756], "tt.se": [15932], "posts.kirlism.ga": [20724], "www.applyweb.com": [1159], "work.taobao.com": [16015], "datalens.here.com": [7325], "www.sinaapp.com": [14907], "elles-defient-le-temps.lemonde.fr": [9204], "cas01-int.autoscout24.ch": [1457], "www.warframe.com": [18073], "cgejournal.biomedcentral.com": [1931], "www.toolslib.net": [16629], "fool.com": [10654], "myprojects.cancerresearchuk.org": [19501], "www.filesharingpremium.com": [20091], "lnysa.club": [2024], "account.wellcome.ac.uk": [22559], "www.ctswholesalesunglasses.com": [2701], "pd-nk.itunes.apple.com": [1151], "car-pictures.cars.com": [2874], "s77.cnzz.com": [3328], "netlogin.kuleuven.be": [8832], "independentmail.com": [8060], "runfreetour.org": [2024], "dvaja.sme.sk": [14198], "calendar.ferris.edu": [5743], "www.plarium.com": [21436], "www.politicopro.com": [12920], "trends.revcontent.com": [21642], "withinw.in": [2024], "paulm.in": [2024], "dl.zb.mi.com": [10361], "ogb.me": [2024], "gordogeek.com": [2024], "britg.as": [2024], "www.hideme.ru": [7395], "m6f.de": [2024], "myneu.neu.edu": [10944], "www.fox-it.com": [6063], "vehbidz.com": [17681], "me.uaa.alaska.edu": [17323], "community.geogebra.org": [6522], "transifex.net": [16742], "li.solw.at": [2024], "l.sprout24.com": [2024], "downloads.2kgames.com": [117], "guilinguan.jd.com": [8434], "gtphoto.me": [2024], "broker.bitcointoyou.com": [2010], "wsol.co": [2024], "wnpr.in": [2024], "prepaid.bankofamerica.com": [1669], "zanata.ci.cloudbees.com": [19622], "v-k.me": [2024], "www.crowdstrike.com": [19725], "de.flixster.com": [5913], "nullday.de": [11613], "socialshows.net": [15127], "emailing.montpellier3m.fr": [10609], "saf.foodpros.co": [2024], "taihang.jd.com": [8434], "ocrne.ws": [2024], "www.hvgkonyvek.hu": [7109], "review.srad.jp": [21956], "comsen.se": [2024], "dyno.site": [2024], "lcsrv1.myhsphere.biz": [8621], "suttonhomechoice.org.uk": [22048], "stats.spontex.org": [15357], "miramo-club.infinum.co": [20526], "mthood.worldcat.org": [18536], "ssl.img.jf.cmbchina.com": [2639], "keikc.co": [2024], "003.img.qf.56.itc.cn": [8401], "www.light-paint.com": [9357], "data.nal.usda.gov": [17299], "deeu.megabus.com": [10244], "no-ip.com": [17878], "passwort-generator.com": [12471], "rapidbuyr.cachefly.net": [13615], "www.coinmate.io": [3398], "articles.braintreepayments.com": [2292], "forex-metal.com": [6010], "ssl-dagbladet.tns-cs.net": [22226], "zefflin.com": [18909], "cson.mx": [2024], "www.spelthorne.gov.uk": [21934], "footballfanatics.com": [5991], "boxwoodtech.com": [2279], "www.koenrouwhorst.nl": [8967], "metrics.carzone.ie": [19519], "www.underwaterworld.com.au": [17246], "1105media.com": [23], "gentoo.org": [6517], "videos.cpanel.net": [2667], "oia.osu.edu": [11797], "fosshub.com": [20141], "hideme.today": [7398], "buybe.at": [2024], "jobsonline.stoke.gov.uk": [21995], "pubweb.bnl.gov": [19418], "gsehelpsu.stanford.edu": [15448], "robin-food.friday.ru": [20175], "readyflowers.com": [13680], "mcmk.co": [2024], "www.mytrinity.com.ua": [21075], "on.wvva.com": [2024], "scc.buzz": [2024], "convar.de": [3626], "teachers.sky.com": [14989], "oig.state.gov": [17146], "outr-in.org": [2024], "m.river.ad": [2024], "itk.org": [20605], "ppc.osu.edu": [11797], "www.youthscape.co.uk": [22695], "www.mwrinfosecurity.com": [9824], "www.blocked.org.uk": [2107], "paservices.state.gov": [17146], "vhil.stanford.edu": [15448], "www.nicehash.com": [11423], "rlif.es": [2024], "amy.tips": [2024], "www.repozitar.cz": [13846], "kh.norton.com": [11545], "fr.piwik.org": [12768], "es34.co": [2024], "2912a.v.fwmrm.net": [6112], "changedetection.com": [3000], "go.sy.photos": [2024], "tksu.de": [2024], "static.independent.co.uk": [8058], "ahoff.me": [2024], "ads.afraccess.com": [5623], "darew.in": [2024], "puh.sh": [2024], "up.ht": [2024], "go.wgdm.net": [2024], "www.trafficsafetymarketing.gov": [16726], "*.skroutzstore.gr": [14986], "lulu.com": [9668], "www.nzbindex.nl": [11042], "s.remetal.jp": [2024], "karvel.me": [2024], "samara.europaplus.ru": [20034], "www.ing.com": [7775], "www.zalando.nl": [18877], "www.imageraider.com": [20499], "sswi.me": [2024], "pinkp.tv": [2024], "powertraveller.com": [13051], "herefordshire.gov.uk": [7326], "login.icommons.harvard.edu": [7211], "gsxapp.apple.com": [1151], "rita.ly": [2024], "www.tescophoto.com": [16211], "prepaid.onlinesbi.com": [11911], "url.qutics.com": [2024], "images.aidsmap.com": [783], "data.sheffield.gov.uk": [14755], "www.whatdotheyknow.com": [18325], "store.publicmobile.ca": [13257], "www.bundlestars.com": [2452], "jiafang.ye.1688.com": [51], "deb.li": [4255], "digital.freitag.de": [6173], "demo.magento.com": [9868], "www.emory.edu": [5204], "wwws.lemonde.fr": [9204], "befnac.be": [2024], "thepiratesbay.pw": [21522], "nickjayk.co": [2024], "a8.chaucanh.net": [2024], "umg.fm": [2024], "dctr.io": [2024], "osc.hul.harvard.edu": [7211], "gpo.zugaina.org": [19019], "tjmc.co": [2024], "www.mork.no": [10633], "pcpro.link": [2024], "trader.flowbtc.com": [5924], "www.hostinglabs.pe": [7537], "b.lx.tc": [2024], "aiasf.me": [2024], "linnk.ml": [2024], "www.fueleconomy.gov": [6220], "sharetobuy.com": [21799], "o.samh.us": [2024], "scoop.it": [14451], "www.ameslab.gov": [19191], "webmania.me": [2024], "natbit.co": [2024], "qalimentar.tk": [2024], "boxuk.com": [2273], "andywalsh.com": [1054], "s.kjk.jp": [2024], "s.ff-yj.com": [2024], "2.junky.fr": [2024], "golosislama.ru": [6810], "th.piliapp.com": [12706], "r24627926.sync.app.asana.com": [1265], "www.arrl.org": [402], "www.luukku.com": [20895], "63.mvd.ru": [21055], "tipstricks.itmatrix.eu": [7862], "cdn3.tekgoblinmedia.com": [16129], "public.create.msdn.com": [9802], "site-cdn1.ghosteryenterprise.com": [6614], "newsroom.mastercard.com": [10060], "j.mediajobs.com": [2024], "our-hometown.com": [12174], "active24.de": [19063], "www.playstation.com": [12832], "www.mediate.com": [10196], "middlesbrough.firmstep.com": [20109], "esys.xyz": [2024], "www.kuther.net": [9059], "auksjon.qxl.no": [13442], "ja-jp.facebook.com": [5609], "www.eclkmpsa.com": [19949], "beheco.oxfordjournals.org": [12222], "trav.li": [2024], "citi.asia": [2024], "dot.b4b4r07.com": [2024], "portrait4.sinaimg.cn": [14910], "on.magrr.co": [2024], "iap.belregion.ru": [19353], "stanford.edu": [15448], "std.al": [2024], "blog.udacity.com": [17192], "apps.yunos.com": [18838], "maps.tunbridgewells.gov.uk": [22308], "fsrg.co": [2024], "neuroscience.stanford.edu": [15448], "metallica.com": [10332], "get.codlo.com": [2024], "render-api-tw.worldofwarcraft.com": [18542], "to.gvlden.com": [2024], "edgett.bc.ca": [2024], "wscont1.apps.microsoft.com": [10396], "cdn2.a1.net": [261], "degib.re": [2024], "e4i.me": [2024], "l10n.debian.org": [4263], "www.postauto.ch": [12996], "media-zybez.cursecdn.com": [3927], "s7g10.scene7.com": [14402], "adium.im": [649], "www.ananda.org": [1032], "favstar.fm": [5682], "music.tokenly.com": [22229], "www.dict.cc": [4442], "www.cse.osu.edu": [11797], "toolserver.org": [18388], "ehsanakhgari.org": [19970], "www.env.leeds.ac.uk": [17403], "grcmc.org": [6873], "4.srl": [2024], "relaxrm.us": [2024], "payment.link-region.ru": [20845], "cisco.justgive.org": [8709], "annualcreditreport.com": [1075], "freec.us": [2024], "pix.revsci.net": [13897], "chorder.dosowisko.net": [4683], "www.unruly.co": [22381], "newsletter.sky.com": [14989], "blog.usni.org": [17125], "msp.nso.ru": [21192], "parl.ch": [2024], "mathid.mathtag.com": [10083], "sochi.biglion.ru": [19375], "encontro.libreoffice.org": [9327], "ntw.lt": [2024], "ecok.it": [2024], "wjso.biomedcentral.com": [1931], "devj.im": [2024], "memorywebpublic.infinum.co": [20526], "www.openccc.net": [11960], "crmws.un.org": [17057], "monitoring.websitealive.com": [18242], "blogs.alfresco.com": [850], "intra.brunel.ac.uk": [19459], "embedded.edc.intel.com": [8211], "universityofncarolinaatpembroke.worldcat.org": [18536], "r69.me": [2024], "rijswijk.nl": [11172], "fr.functions-online.com": [20187], "b.hireart.co": [2024], "auth.roblox.com": [13980], "j19.me": [2024], "www.cryptonator.com": [3873], "www.oyoony.net": [21329], "scharts.co": [2024], "www.coopzeitung.ch": [3647], "iam.netelligent.ca": [11264], "newstatesman.com": [11351], "eoral.uned.es": [17248], "sadclwscom.lowes.com": [9645], "profnd.co": [2024], "link.mlgill.co": [2024], "jacobinmag.com": [8499], "cbo.gov": [17098], "br.ln.com.ar": [2024], "www-en.htw-berlin.de": [7103], "www.bernina.com": [1827], "browse.dgit.debian.org": [4263], "slpsd.us": [2024], "www.bricoetloisirs.ch": [3647], "confluence.cornell.edu": [3676], "sabinet.worldcat.org": [18536], "m.logout.hu": [9574], "r.jirikuv.cloud": [2024], "ihas.co": [2024], "mwk.baden-wuerttemberg.de": [19302], "secure.tesco.com": [16206], "buyace.us": [2024], "static2.startnext.com": [15478], "clients.x10hosting.com": [18588], "i8p.us": [2024], "www.espacejeux.com": [5349], "amersfoort.nl": [11172], "buzzdock.com": [2492], "christianprayercenter.com": [3115], "dao1.org": [2024], "labinsk.startsmile.ru": [21980], "auswertung.mvv-muenchen.de": [9823], "shoucang.taobao.com": [16015], "static-2.gumroad.com": [7002], "payc.me": [2024], "c4.q-assets.com": [21551], "childcarejobs.hertsdirect.org": [7334], "*.ncsoft.com": [10933], "quotidien.framapad.org": [6075], "support.pogoplug.com": [12894], "itx.com": [7858], "tinyp.as": [2024], "acta.effi.org": [5097], "lesterchan-lesterchan.netdna-ssl.com": [9277], "subscribe.thenation.com": [16274], "www.edp.pt": [4888], "myhelprequests.sky.com": [14989], "neon.li": [2024], "blog.whyopencomputing.ch": [22584], "nwrt.de": [2024], "vb-paradise.de": [17667], "forums.checkpoint.com": [3051], "my.whatsbroadcast.com": [18332], "vi.tc": [2024], "go.hy.ly": [2024], "blogmql.ml": [2024], "www.piratesbay.pe": [21522], "on.m2m.tv": [2024], "alioth.debian.org": [4263], "my-uat.symantec.com": [15780], "office7.auto.ru": [19276], "w.illiams.com": [2024], "www.udk.com": [17019], "on.intesys.it": [2024], "marketing.qdaily.com": [21554], "idofoundation.org": [7655], "www.forgerock.com": [20136], "www.cj2.nl": [2629], "www.subtome.com": [15633], "gabry.hu": [6380], "pa.hinckley-bosworth.gov.uk": [7415], "rtlpro.me": [2024], "eventoverload.com": [5429], "img4.sj.qq.com": [13329], "www.ciw.edu": [2867], "style.c.aliimg.com": [861], "transfer.sh": [22272], "bawm.co": [2024], "rybinsk.beeline.ru": [1778], "championsofregnum.com": [2997], "online.raiffeisen.ru": [13587], "widgets.amazon.ca": [19167], "balabit.hu": [19308], "fthr.ly": [2024], "www.lexisnexis.com": [13761], "paws.uwm.edu": [17379], "eulr.co": [2024], "mobile.jingwei.com": [8588], "diploar.mondediplo.com": [10578], "summerschool.wustl.edu": [18089], "mauerspecht.zdf.de": [22709], "download.lastpass.com": [9175], "common.cnblogs.com": [19631], "summit.alfresco.com": [850], "dnds.in": [2024], "status.quantopian.com": [13390], "static.sv.us.criteo.net": [3798], "konferenzen.telekom.de": [4397], "j.dunsta.net": [2024], "adx.helios.ligatus.com": [9356], "blog.fau.de": [17396], "jia.tmall.com": [22222], "me.devbravo.net": [2024], "slabsca.pe": [2024], "eip.stanford.edu": [15448], "arenavc.com": [1209], "theigd.net": [2024], "kareo.ly": [2024], "ucc.dk": [17005], "mmnta.com": [2024], "clube1.europe1.fr": [20035], "assets0.frndcdn.net": [6197], "mxptint.net": [10786], "*.revision3.com": [13902], "analytics.in-tend.co.uk": [20516], "finalist.nl": [20098], "iosapi.xamarin.com": [18629], "breakingmuscle.com": [19445], "blog.risingstack.com": [21654], "www.yahoo.co.jp": [18730], "omhb.eu": [2024], "thepoet.co": [2024], "*.dotmailer.com": [4690], "bugs.lede-project.org": [20798], "morningstar.co.uk": [10635], "euca.it": [2024], "linux-dev.org": [9415], "msi-shop.de": [9805], "fls-eu.amazon.in": [19177], "sputnik.dengisend.ru": [4344], "bamajr.us": [2024], "trib.me": [2024], "nos-oignons.fr": [11551], "support.simplemachines.org": [21830], "huuu.ge": [2024], "metros.mx": [2024], "transtec.events": [2024], "ypos.ch": [2024], "pina.work": [2024], "nicta.com.au": [10963], "ggb.hannover.fau.org": [5543], "billund.dk": [1914], "gyao.yahoo.co.jp": [18730], "efinancialnews.com": [11361], "dsm.la": [2024], "bloomingtonfools.org": [6089], "clck.yandex.com": [18742], "cdn3.a1.net": [261], "b4.hitravel.xyz": [2024], "openclipart.org": [11965], "cdn.clinicalkey.com": [3267], "envoydirect.com": [5299], "orenburg.startsmile.ru": [21980], "caltech-sp.caltech.edu": [2771], "press.avast.com": [1469], "lotame.com": [9622], "1srdream.org": [2024], "splitreason.com": [15352], "yuk.travel": [2024], "murom.startsmile.ru": [21980], "fil.nrk.no": [11586], "pelck.me": [2024], "uncfsu.worldcat.org": [18536], "beta.ulozenka.cz": [17212], "m.nbr.org": [2024], "reports.eyereturn.com": [5522], "golch.in": [2024], "mit.information.dk": [8125], "myaccount.news.com.au": [11379], "go.ewu.edu": [2024], "www.domaincontext.com": [4646], "gorodok.samaratoday.ru": [21725], "cdlejob.com": [2024], "hyiph.us": [2024], "partnervideo.slashdot.org": [15012], "www.salisbury.greenparty.org.uk": [6908], "fastsite.majordomo.ru": [9914], "astrobiology.nasa.gov": [10909], "www.myswitzerland.com": [21073], "ja-jp.facebook.jp": [5612], "ikeda.me": [2024], "qkk.me": [2024], "store.discojuice.org": [4530], "l.pdoteam.com": [2024], "adat.is": [2024], "www.html5sec.org": [7096], "buzz.typo3.org": [15959], "openbookpublishers.com": [12035], "trendweight.com": [16786], "gsd.kfc.ru": [20707], "www.runforyourlives.com": [14089], "member.udn.com": [17020], "lists.ourproject.org": [21314], "*.hamradioscience.com": [7168], "armavir.biglion.ru": [19375], "eid.link": [2024], "osce.usembassy.gov": [22406], "img2.wsimg.com": [14570], "niel.sn": [2024], "finnchristiansen.de": [5834], "slgr.co": [2024], "neo.ly": [2024], "ut10.xhcdn.com": [18605], "www.is.ut.ee": [17148], "likes.com": [9366], "fe.ru": [20078], "m.yeggi.com": [18760], "git.schmidtcom.de": [14419], "cdnp.kink.com": [20719], "details.payment.yahoo.co.jp": [18730], "www.uie.com": [17029], "ambr.link": [2024], "www.sony.se": [15214], "go.sohi.to": [2024], "*.v2cigs.com": [17548], "hfsvwr.london-fire.gov.uk": [20873], "lpc.fnal.gov": [5741], "www.fraudlabs.com": [6090], "img.sogoucdn.com": [15169], "xjx2g.jd.com": [8434], "www.internetcoup.org": [8280], "magasin.publicmobile.ca": [13257], "laurin.me": [2024], "qa-coupons.paypal.com": [12500], "ffsg.org": [5557], "winq.org": [2024], "wiki.haskell.org": [7220], "maint.nikkei.com": [11442], "www.bitmaintech.com": [2026], "youtube.hk": [18800], "www.scaleway.com": [14389], "www.coreyabramson.com": [3673], "www.onioncat.org": [11899], "www.video-dean.com": [17778], "*.ecwid.com": [5058], "shop.a1.net": [261], "soup.io": [15235], "bpm.me": [2024], "myshadow.org": [10859], "dtbl.org": [2024], "static.memrise.com": [10273], "ci.appveyor.com": [19220], "img1.thalasseo.com": [16241], "tmglnk.com": [2024], "dstnjc.com": [2024], "jmldirect.uat.venda.com": [8455], "clickiturl.com": [2024], "mth.care": [2024], "angarsk.irknet.ru": [20581], "plesk2.thephone.coop": [16418], "superrepo.org": [15681], "star.theses.fr": [22186], "chris-w.us": [2024], "m.danielgood.co": [2024], "uhulinux.hu": [22349], "cpyne.me": [2024], "jstn.io": [2024], "www.insa-strasbourg.fr": [8193], "support.crowdin.com": [3823], "accag.in": [2024], "mapps-qa.moodys.com": [21020], "www.myregextester.com": [21067], "openpgpkey.info": [12072], "ringinout.com": [13950], "vrly.co": [2024], "ulrike.sipsolutions.net": [14184], "hjlp.dk": [2024], "zeff.ly": [2024], "jstark.co": [2024], "wwq.play-asia.com": [12828], "www.wcs.anthem.com": [19206], "www.webhostone.de": [18216], "ifc.org": [8257], "getreno.news": [2024], "googler.ga": [2024], "2pb.in": [2024], "vault.studio.ndnmediaservices.com": [10936], "www.tpvs.hmrc.gov.uk": [7076], "reasoncoresecurity.com": [13697], "chaturbate.com": [3040], "feedblitz.com": [5719], "tomtomrunningrace.com": [16615], "zarb.org": [18894], "easyedi.tietoenator.com": [16513], "bel.fi": [1536], "events.darkreading.com": [4143], "suitabletech.com": [15652], "jira.zarafa.com": [18893], "www.scamwatch.gov.au": [14145], "jamila.ro": [2024], "audubon.org": [1389], "www.slough.gov.uk": [15036], "cbilabs.org": [2024], "assistance-multimedia.fr": [1308], "normdaten.digitale-diathek.net": [4490], "sendpepper.com": [14640], "recepty.centrum.sk": [19548], "pro.jamendo.com": [8512], "bikerbuzz.info": [2024], "singpao.com.hk": [14913], "www.wordnik.com": [18525], "cdn.earthdata.nasa.gov": [10909], "sterli.nl": [2024], "monkeyguts.com": [10595], "www.makingarchitecture.cca.edu": [2547], "www.aei.org": [335], "openmedia.ca": [11994], "old.tsn.ua": [22301], "v034.ax2600ab.omdx.uprr.com": [22392], "www.battleforthenet.com": [1721], "chng.it": [2024], "en-ca.ondeck.com": [21251], "spb.sledcom.ru": [21858], "picsity.com": [12698], "emanzhelinsk.startsmile.ru": [21980], "desertnews.com": [4372], "www.informatik.fh-nuernberg.de": [16239], "originals.friday.ru": [20175], "gw1.alicdn.com": [853], "images.mailaway.homeaway.com": [20395], "www.bato.to": [19327], "cms7.afisha.ru": [19107], "zhanzhang.baidu.com": [1641], "www2.barnsley.gov.uk": [19318], "corps2.sos.wa.gov": [14215], "smbyj.us": [2024], "scotch.io": [14457], "myaccount.active24.com": [19061], "openrynda.te-st.ru": [22103], "brwu.nl": [2024], "www.netfilter.org": [11265], "billiger.de": [1911], "udp.buckscc.gov.uk": [19465], "www.chocolatey.org": [3099], "dpaula.photo": [2024], "academy.unbounce.com": [17239], "*.robloxlabs.com": [13980], "minenergo.gov-murman.ru": [20293], "ricoh.sg": [13935], "metoffice.gov.uk": [10319], "ws1.bakerlab.org": [1646], "e14.xhamsterpremiumpass.com": [18607], "tgdn.co": [2024], "extranet.dotprojects.be": [4699], "www.diagrid.org": [4428], "jobpacks.com": [2024], "hbrtr.co": [2024], "go.nlc.edu": [2024], "pastas.serveriai.lt": [14677], "nobk.in": [2024], "rbk.tw": [2024], "*.quotes.bennetts.co.uk": [1810], "aax-eu.amazon-adsystem.com": [958], "b.billr.me": [2024], "trello.com": [16784], "fdnd.eu": [2024], "appt.us": [2024], "debdiffs.raspbian.org": [13630], "myservice.xbox.com": [18639], "www.mediamarkt.de": [20949], "l.forzieri.com": [2024], "epa-bprg.ornl.gov": [11730], "go.w2nd.com": [2024], "www.lrz-munich.eu": [9253], "mbh.la": [2024], "xg.gigabyte.com": [6628], "jsuppli.es": [2024], "srw.me": [2024], "autor.aktuality.sk": [1507], "photo.sina.cn": [14902], "id.bigmir.net": [1894], "curt.io": [2024], "webassetsb.scea.com": [14148], "c.tgknt.com": [16238], "apart.li": [2024], "netload.in": [11282], "usalliance.org": [17113], "accounts.ft.com": [5810], "enta.net": [5277], "load.sumo.com": [22029], "proxy.ohiolink.edu": [11799], "odintsovo.tpprf.ru": [22260], "l.silvexis.com": [2024], "myreloadable.ca": [17643], "onionoo.thecthulhu.com": [16403], "analytics.xsolla.com": [18685], "mail.majordomo.ru": [9914], "www.instapaper.com": [8190], "mdpt.fr": [2024], "xmdm.dwd.de": [19911], "buchmesse.taz.de": [15853], "www.joycasino3.com": [20654], "jmg.im": [2024], "s.jag-japan.com": [2024], "craphound.com": [3758], "www.chetv.ru": [19577], "toddwilson.us": [2024], "status.stripe.com": [15594], "amara.org": [956], "mail.eztvstatus.com": [20063], "*.nydailynews.com": [11029], "dscr.in": [2024], "wsgfl.westsussex.gov.uk": [18305], "live.ft.com": [5810], "mozay.io": [2024], "www.chinadialogue.net": [3087], "snpt.be": [2024], "shotk.it": [2024], "dpsg.jobs": [2024], "s.btstatic.com": [1603], "www.mims.com.my": [9756], "tcfbike.com": [2024], "ws.citilink.ru": [19594], "remote.unicef.org.nz": [17067], "adyadvantage.com": [724, 725], "kitsu.io": [8938], "hbrgez.link": [2024], "leaf.dragonflybsd.org": [4734], "www.picload.org": [12693], "mydn.org": [2024], "app.compete.com": [3522], "bmdg.us": [2024], "pl.norton.com": [11545], "tbarta.de": [2024], "contribute.jquery.org": [8462], "gurulabs.com": [7007], "link.xferic.com": [2024], "russianamericancompany.com": [14101], "*.img.digitalrivercontent.net": [4485], "store.afsp.org": [342], "ihgplc.com": [7742], "goc.io": [6342], "trademanager.alibaba.com": [857], "maltris.org": [9935], "failuremag.com": [5619], "go.lyricth.com": [2024], "voa.gov.uk": [22483], "www.sporx.com": [21946], "de-el.dict.cc": [4442], "dental.uw.edu": [17156], "pjm.axonify.com": [1502], "livepassdl2.conviva.com": [3633], "labs.integrity.pt": [8205], "m.rdh.com": [2024], "rgsbankmobile.dengisend.ru": [4344], "go.subforum.com": [2024], "www.tipeeestream.com": [22213], "support2.magix.com": [9718], "redcross.org.uk": [2360], "*.sankaty.com": [14349], "origin.scdn.co": [15366], "preparedness.georgetown.edu": [6531], "projects.honeynet.org": [20401], "www.motorola.de": [10656], "bp.kolekte.com": [2024], "sankaty.com": [14349], "s.pbdeg.com": [2024], "dining.osu.edu": [11797], "jond.be": [2024], "site.etoro.com": [4970], "mnvil.com": [2024], "ld-5.itunes.apple.com": [1151], "consumerswin.com": [3606], "i2.sndcdn.com": [15096], "go.hmu.es": [2024], "s6.cnzz.com": [3328], "*.turner.com": [16917], "secure.marketwatch.com": [10029], "ssimh.co": [2024], "pix04.revsci.net": [13897], "gcclink.net": [2024], "ci.lighttpd.net": [9362], "www.taboola.com": [15963], "www.eon-uk.com": [4855], "geeklan.co.uk": [6475], "live.slynet.tv": [2024], "www.easyodds.com": [5025], "on.yau.uk": [2024], "www.ukwebsolutionsdirect.com": [17042], "marsh.ly": [2024], "i.sky.re": [2024], "onsalesit.com": [11920], "spacecomm.nasa.gov": [10909], "login.1688.com": [51], "mercurial.selenic.com": [10300], "link.planb.eu": [2024], "platform4.liverail.com": [9508], "www.sofurry.com": [15113], "www.islamtoday.net": [8372], "l.coumori.com": [2024], "surfline.com": [15716], "www.winpcap.org": [18418], "googlemail.com": [6827], "www.mail4kidz.eu": [9892], "shop.typo3.org": [15959], "www.moa.idmanagedsolutions.com": [7714], "bl.cuongdq.com": [2024], "*.eurobilltracker.com": [20033], "ajh.oxfordjournals.org": [12222], "soundonsight.org": [15230], "faq.weblog.tudelft.nl": [4308], "ffal.us": [2024], "www.ipair.com": [20566], "admin.animenewsnetwork.com": [19201], "www.huntcal.com": [7626], "success.yammer.com": [18737], "rocki.ng": [2024], "u.mpscan.org": [2024], "hacker.lugons.org": [9121], "srslylou.uk": [2024], "www.mynxt.info": [10817], "www.edoeb.admin.ch": [22061], "cdn.switchadhub.com": [15764], "medconfidential.org": [10151], "silm.me": [2024], "mmkt.in": [2024], "dtlnk.us": [2024], "uszoda.sch.bme.hu": [1556], "nolb.dhl.de": [4025], "docs.cerit-sc.cz": [2584], "hava.yandex.com.tr": [18740], "embed.gyazo.com": [7019], "static4.holidayextras.com": [7459], "download.attachmate.com": [1363], "eclevelandclinic.org": [3237], "strathaven.spydus.co.uk": [21952], "gfx6.hotmail.com": [7565], "community.muselive.com": [10747], "yotube.cc": [2024], "event.kmd.dk": [20739, 20740], "www.gettyimages.no": [6604], "www.gettyimages.nl": [6604], "www.btinstallershop.com": [19462], "cydia.popcorn-time.to": [21461], "mimibtq.com": [2024], "josh.tw": [2024], "www.eda.admin.ch": [22061], "atlfal.co.nz": [2024], "cts.vresp.com": [17728], "p.eshel.io": [2024], "bulksms.co.uk": [2429], "azm.io": [2024], "parm.us": [2024], "mpop.to": [2024], "blogs.progress.com": [13178], "*.compendiumblog.com": [3520], "ananda.org": [1032], "scsun.co": [2024], "i.ledadableu.fr": [2024], "www.studentrecords.wustl.edu": [18089], "tdvri.es": [2024], "g.sevki.org": [2024], "www.ipify.org": [20569], "stories.californiasunday.com": [2766], "lists.bnl.gov": [19418], "www.nspublieksprijs.nl": [21194], "popsugar.com": [12958], "smbiz.us": [2024], "staging.mutts.com": [21054], "krlmedia.nl": [8765], "link.base79.com": [2024], "www.ngpvan.com": [10947], "store.guidancesoftware.com": [6988], "cdn.newsnetz.ch": [11371], "gettyimages.fr": [6604], "on.gan.gg": [2024], "online.danskebank.dk": [4138], "gettyimages.fi": [6604], "lwj.pwm.cc": [2024], "cache.net-a-porter.com": [11210], "lookingglass.email": [9609], "*.slitaz.org": [15020], "rgb.uno": [2024], "cnoinc.co": [2024], "riisto.effi.org": [5097], "togahotels.com": [16604], "dashboard.liveramp.com": [9509], "vicb.us": [2024], "*.gotpantheon.com": [12402], "lbne.fnal.gov": [5741], "citl.illinois.edu": [17346], "media-mercury.cursecdn.com": [3927], "goldenadventures.com": [6796], "linkto.briz.vn": [2024], "securenet.com": [14556], "wdsdg.org": [2024], "jdmdig.it": [2024], "l.oscarc.net": [2024], "america.play-asia.com": [12828], "cmehappy.info": [2024], "www.nvisium.com": [11023], "www.mysku.ru": [21069], "arabicedition.nature.com": [11140], "intranet.engineering.wustl.edu": [18088], "hs13.snstatic.fi": [14208], "style.hnonline.sk": [7445], "s10.sinaimg.cn": [14910], "www.voterinfo.gov.hk": [22499], "fxd.pt": [2024], "resta.co": [2024], "www.katcr.co": [8894], "tv.youku.com": [18804], "ad.360yield.com": [146], "www.site.yandex.com": [18742], "status.podio.com": [12889], "www.videointerchange.com": [17779], "www.gonewsoft.com": [6763], "www.instaradio.com": [13458], "kungfunation.com": [9051], "www.windowsazure.com": [18434], "www.quadrantsec.com": [13373], "abbs.oxfordjournals.org": [12222], "tcat.tc": [2024], "install.21.co": [95], "go.url-hn.cu.cc": [2024], "goszakaz.gov-murman.ru": [20293], "yacuna.com": [18720], "we.bgrrl.com": [2024], "diginb.us": [2024], "voxel.net": [17942], "podgorica.usembassy.gov": [22406], "to.jane.coffee": [2024], "wnyc.org": [18007], "teamat.oxfordjournals.org": [12222], "hm.baidu.com": [1641], "www.66option.com": [220], "bugs.xenserver.org": [18646], "avaya.com": [1470], "fapmc.ru": [5542], "friendlyduck.com": [6193], "www.viu.tv": [22475], "l.bizeul.fr": [2024], "data.adsrvr.org": [688], "weidebeef.migros.ch": [10417], "cdn.snipcart.com": [15101], "www.weblogawards.org": [18221], "store.btcc.com": [2400], "thrsv.lu": [2024], "kulp.co": [2024], "go.nhsp.uk": [2024], "61.rkn.gov.ru": [13971], "forumcontent.paradoxplaza.com": [12414], "ww.play-asia.com": [12828], "b2b.careerbuilder.com": [2853], "*.seecrypt.com": [14610], "myapm.apm.com": [391], "*.lufthansa.com": [9664], "www.cokecce.com": [3413], "abestweb.com": [291], "to.brq.me": [2024], "sw.nohold.net": [11475], "www.thestamp.umd.edu": [17351], "dis.okmoi.nl": [2024], "to.satoorn.fr": [2024], "www.pirateparty.gr": [21419], "www.vub.sk": [17962], "f.cc.netease.com": [11228], "l.shiori.live": [2024], "dver.se": [2024], "cityspy.rocks": [2024], "fws.arts.cornell.edu": [3676], "offog.org": [11793], "cp-d.rentalserver.jp": [13835], "st.evo.uk.com": [2024], "*.btguard.com": [1594], "www.rumorscity.com": [14088], "alzbc.org": [2024], "bi.phncdn.com": [12661], "media.mojang.com": [9789], "showcase.ionicframework.com": [8333], "app.danskebank.dk": [4138], "www.bettershopping.eu": [1859], "shopilmd.com": [2024], "talktalkbusiness.co.uk": [15994], "woods.stanford.edu": [15448], "ta2place.me": [2024], "gistmarks.com": [6652], "www.samsungdirect.com": [14328], "m.wien.gv.at": [22588], "gismeteo.lv": [20250], "mxx1.play-asia.com": [12828], "www.vocabulary.com": [22485], "merch.kyivstar.ua": [9067], "www.naturejobs.nature.com": [11140], "luxinvit.es": [2024], "*.cloudforce.com": [3302], "www.hinckley-bosworth.gov.uk": [7415], "nieman.de": [21139], "bogach-bednyak.friday.ru": [20175], "350.org": [140], "nestleusa.taleo.net": [15986], "www.quantcast.com": [13387], "szel.us": [2024], "webmail.illinois.edu": [17346], "on.ovaleye.tv": [2024], "devops.profitbricks.com": [13176], "training.citrix.com": [3179, 3180], "cvsweb.grsecurity.net": [6360], "hola.bz": [2024], "zrkl.tips": [2024], "uwpho.to": [2024], "infragard.net": [8136], "www.gitorious.org": [6664], "solnechnogorsk.biglion.ru": [19375], "www.rising.jhu.edu": [16370], "dls.tocco.ch": [16600], "www.gitbook.io": [6656], "neighbourhoodalert.co.uk": [21100], "blog.movableink.com": [10667], "www.epilepsyfoundation.org": [5310], "utop.inria.fr": [8161], "pcwrld.us": [2024], "www.manning.com": [20921], "www.my.osu.edu": [11797], "on-ajc.com": [2024], "invest.permkrai.ru": [21390], "jsperf.com": [8669], "ref.brow.si": [2024], "mobile.brainyquote.com": [2293], "xkcd.org": [22652], "svz.bz": [2024], "www.pingler.com": [21410], "libcat.walsall.gov.uk": [22523], "newsmax.com": [11383], "www.manilaprinciples.org": [9964], "www.roskomzakon.ru": [21673], "watershed.co.uk": [18099], "go.vicshih.com": [2024], "mail.lyngsat.com": [20897], "nrk.tns-cs.net": [22226], "www.bakabt.me": [1644], "www.reichelt.de": [13805], "on.dmoruzzi.com": [4043], "we.ma.de": [2024], "ir.gmocloud.com": [6323], "anorsham.tk": [2024], "uitalerts.stanford.edu": [15448], "journals.cambridge.org": [2780], "uky.worldcat.org": [18536], "merovx.io": [2024], "tolvutaekni.is": [16614], "www.bernina-zuerich.ch": [1827], "support.paloaltonetworks.com": [12378], "yo.yo-rg.info": [2024], "gls-group.eu": [6508], "www.openmicroscopy.org": [12052], "www.xanmod.org": [22644], "bmcendocrdisord.biomedcentral.com": [1931], "lien.sic.re": [2024], "www.uglymugs.ie": [17200], "s7sps5.scene7.com": [14402], "edvina.net": [5091], "www.turktk.com": [16910], "rix22.no": [2024], "csis.ysu.edu": [18832], "k02.in": [2024], "banking.spkrb.de": [21937], "ckjobs.us": [2024], "webtrends-sdc.niehs.nih.gov": [11090], "decryptedmatrix.com": [4277], "40f.nl": [2024], "payments.dudley.gov.uk": [4788], "jhered.oxfordjournals.org": [12222], "06xduvlxeeqxxcchccqaw45fbun7yd4fglzd5kgl.ipleak.net": [20571], "fanfiction.net": [5638], "thequestion.ru": [16419], "ptntc.jd.com": [8434], "nealpoole.com": [11160], "dbo.uralfd.ru": [17493], "erdgeist.org": [5327], "grnd.gd": [2024], "www.shamansgarden.com": [14716], "traffic.popin.cc": [12954], "www.os.uk": [11699], "pocket.realms.minecraft.net": [10452], "labr.ie": [2024], "felpahost.masilla.org": [20929], "www.executiveinterviews.com": [5478], "elroy.twit.tv": [15957], "hcsurveys.imercer.com": [20502], "journeyed.com": [8661], "gatewaytohomechoice.org.uk": [20208], "piratetimes.net": [12742], "on.miner.tv": [2024], "developer.apple.com": [1151], "mybcvs.ch": [1681], "americanenglish.state.gov": [17146], "tdudz.com": [2024], "piratenpartei.de": [12755], "www2.hgst.com": [7043], "community.1and1.com": [69], "theaj.co.uk": [1192], "mssql.active24.com": [19061], "*.city.ac.uk": [3189], "passwd.ut.ee": [17148], "id4.idqqimg.com": [7926], "grdncl.ge": [2024], "gncap.org": [2024], "spgur.us": [2024], "www.offcloud.com": [11772], "www.godliteratury.ru": [20277], "ftravelc.link": [2024], "secure.drivee.ne.jp": [4759], "arteus.aerohosting.cz": [737], "www.allinvestments.ru": [19152], "*.bstatic.com": [2220], "gongxiao.tmall.com": [22222], "www.eduroam.org": [5089], "r.nlping.ru": [2024], "valuedopinions.co.uk": [17633], "education.symantec.com": [15780], "lexis.at": [2024], "josel.in": [2024], "pandaction.wwf.ch": [18028], "mmo-champion.com": [3927], "cirt.net": [2624], "dailyfantasyradio.com": [4113], "www.appsto.re": [1167], "apotheke.de": [1131], "www.ipvanish.com": [7803], "www.flippa.com": [5907], "apps.community-uat.adr.org": [19086], "mos.meituan.com": [10248], "www.gladrags.com": [6678], "rt.ocf.berkeley.edu": [17329], "webmaster.yandex.by": [18739], "koenie.eu": [2024], "www.wondershare.com": [22608], "*.readthedocs.org": [13671], "instr.me": [2024], "trubru.axonify.com": [1502], "images.tomsofmainestore.com": [16619], "video.mediapart.fr": [10194], "i.ubbai.me": [2024], "www.licensebuttons.net": [9339], "mysql.geektechlabs.com": [6482], "growprof.it": [2024], "resources.library.georgetown.edu": [6531], "www.haxx.se": [20348], "*.shuddle.us": [14811], "jeffn.at": [2024], "serviceplus.cengage.com": [2946], "git.inf.mit.bme.hu": [1557], "hertz247.de": [7345], "www.horstaandemaas.nl": [11172], "tmhe.at": [2024], "aussieperthtours.com.au": [1401], "sstrk.co": [2024], "mail.126.com": [39], "promotions.bankofamerica.com": [1669], "y.hitravel.xyz": [2024], "hls-tsargrad.cdnvideo.ru": [19536], "egypt.usembassy.gov": [22406], "sunlightfoundation.com": [15667], "bangw.in": [2024], "mis.sh": [2024], "thinkup.com": [16436], "sunbeltsoftware.com": [15662], "link.wtch.mn": [2024], "home.wabi.com": [18032], "scclia.cms.gov": [19630], "url.ash9.jp": [2024], "www.names.co.uk": [11064], "brow.nz": [2024], "tafe.at": [2024], "suoyiren.oss.aliyuncs.com": [19143], "gtgloss.uk": [2024], "mydy.co": [2024], "wiki.debconf.org": [4257], "www.dsinternals.com": [4077], "www.consuwijzer.nl": [3596], "cpanel.webcitation.org": [18153], "klsy.me": [2024], "impact.leeds.ac.uk": [17403], "d.dunkkings.com": [2024], "go.bibomart.net": [2024], "swllnt.com": [2024], "vaforvets.va.gov": [17100], "scholar.sogou.com": [15168], "hotels.nationalrail.co.uk": [11093], "l.michaelk.me": [2024], "www.victi.ms": [17756], "gil.gd": [2024], "interkassa.com": [8250], "m.anda.li": [2024], "alumfx.com": [944], "*.theiet.org": [7724], "secure.fanboy.co.nz": [5640], "hackread.com": [7124], "phonedirectory.vanderbilt.edu": [17647], "wgu.io": [2024], "taste.md": [2024], "samharris.org": [14321], "litespeedtech.com": [9471], "www.wickr.com": [18374], "kids.froscon.de": [6071], "www.bsi.bund.de": [5701], "g.ibtimes.co.uk": [7681], "discuss.zoho.com": [18984], "internetsuccess.at": [8287], "lhrocks.co": [2024], "www.sick.com": [14818], "www.forecast.io": [6001], "jrj.io": [2024], "cache.cheapassgamer.com": [3043], "community.alibaba.com": [857], "umbra.co": [2024], "account.yunos.com": [18839], "code.facebook.com": [5609], "w.mazparts.net": [2024], "activity.serving-sys.com": [14687], "paimai.jd.com": [8436], "git.eclipse.org": [5040], "unity.com": [17310], "www.sourceforge.net": [15242], "go.bulleit.co": [2024], "wwrld.us": [2024], "www.searchlock.com": [21764], "www.noordwijkerhout.nl": [11172], "careers.mheducation.com": [20975], "er.ntnu.no": [11004], "g03.a.alicdn.com": [853], "adgtl.uk": [2024], "www.idms-linux.org": [20482], "asu.edu": [1220], "dvo.lv": [2024], "pbbans.com": [21365], "www.full30.com": [20185], "www.tinychat.com": [16556], "loudrumor.asana.com": [1265], "jdclnr.us": [2024], "oek.rsl.ru": [21686], "techin.ch": [2024], "www.hertz.com.hk": [7346], "*.vpn.alaska.edu": [17324], "samsungtechwin.co.kr": [14333], "jwd.link": [2024], "lowpo.st": [2024], "projects.parabolagnulinux.org": [12413], "wgnr.es": [2024], "stage2networks.akixi.com": [19129], "vehivial.unizar.es": [17441], "latinum.me": [2024], "telus.com": [16174], "*.isorno.com": [8389], "help.segment.com": [14621], "portals.clevelandclinic.org": [3237], "editmysite.com": [5075], "t.pp.ua": [2024], "vefa.difi.no": [4452], "info.threatmatrix.com": [22199], "img.baidu.com": [1641], "jiasule.com": [8581], "parchis.cf": [2024], "dsm.li": [2024], "flex.ntr.br": [2024], "reginastred.rtvs.sk": [13536], "www.canyouseeme.org": [17877], "paltel.me": [2024], "birobidzhan.beeline.ru": [1778], "en-pt.dict.cc": [4442], "www.nnm-club.me": [10982], "kanhai.me": [2024], "l.mylapka.com": [2024], "adkontekst.pl": [654], "support.hasoffers.com": [7214], "edge2.digicert.com": [4461], "www.stripchat.com": [22014], "zhirnovsk.startsmile.ru": [21980], "tuwien.ac.at": [17794], "payments.ncl.ac.uk": [10926], "mvnsy.co": [2024], "*.dynamitedeals.com": [4824], "www.bazaarbay.org": [1734], "www.scriptsource.org": [14481], "ssw.pt": [2024], "live.coin.space": [19642], "pnw.cl": [2024], "whleso.me": [2024], "unian.net": [22369], "www.smi2.net": [15069], "lnkn.it": [2024], "gearman.org": [6467], "www.cloudron.io": [3312], "www.smartronix.com": [15063], "hipercontas.com.br": [20377], "msns.engineering.osu.edu": [11797], "www.opentrackers.org": [12082], "www.vidling.com": [17799], "nrahqrange.nra.org": [21177], "i.walmartimages.com": [18060], "leadwerks.com": [9216], "support.solarflare.com": [15183], "*.symanteccloud.com": [15780], "www.defenceimagery.mod.uk": [17049], "www-cache4.extensis.com": [5513], "zpchips.com": [18857], "ghostery.com": [6613], "www.tryzen99.com": [16877], "jmmy.co": [2024], "advbd.co": [2024], "*.itsanhonour.gov.au": [8407], "politicalwire.com": [12918], "www.upcbusiness.nl": [17084], "ytba.se": [2024], "swale.objective.co.uk": [21225], "chakasmmm.com": [2989], "thedrum.com": [16346], "www.travelhouse.ch": [7561], "s.jpbe.de": [2024], "ianp.co": [2024], "newsletter.quickline.com": [21566], "meduza.io": [10217], "ss0.baidu.com": [1641], "www.amberswann.com": [966], "lytmos.co": [2024], "bancaonline.bankinter.com": [1674], "login.search.ch": [14504], "f3.blick.ch": [2091], "connect.soundcloud.com": [15231], "m.rtr.ch": [21957], "r24617780.sync.app.asana.com": [1265], "go.berryz.fr": [2024], "fd.cm": [2024], "fr.islamtoday.net": [8372], "www.battelle.org": [1718], "*.pimienta.org": [13031], "alpha.gnu.org": [6337], "bhusal.com.np": [2024], "security.vt.edu": [17825], "css.weibopay.com": [18280], "www.business.bt.com": [1578], "oem.whyopencomputing.com": [22584], "www.twitchstatus.com": [22333], "go.yi.io": [2024], "gdata.ch": [6272], "statistik.bayern.de": [15500], "i.abesh.net": [2024], "mfo.li": [2024], "apie.m.etao.com": [4965], "simplebooklet.com": [14889], "cdnslssl.coveritlive.com": [3732], "nym.ag": [2024], "w2ww.play-asia.com": [12828], "monk.ly": [2024], "forum22.djicdn.com": [4029], "fehigueras.es": [2024], "upgr.de": [2024], "r24617348.sync.app.asana.com": [1265], "hertzequipmentsales.com": [7371], "*.readthedocs.com": [13671], "prsde.us": [2024], "bitcoinknots.org": [19388], "www.indiestylestore.com": [20519], "www.kura.io": [9054], "www.apac.redhat.com": [13735], "discuss.pirateparty.org.au": [12746], "awak.enin.gs": [2024], "hopefaith.us": [2024], "www.entangledstates.org": [20001], "*.eusecwest.com": [4973], "meinfernbus.de": [10250], "theoldreader.com": [16303], "migrosbank.ch": [10414], "hrsmart.com": [7088], "hagrid.libart.calpoly.edu": [2764], "www.6xq.net": [226], "appguru.com": [1136], "ras.org.uk": [14045], "secure.infotoday.com": [8105], "en.spontex.org": [15357], "www.openmedia.ca": [11994], "www.hsbc.co.kr": [20421], "zoklet.net": [18988], "7.dbstatic.no": [19775], "static.fncash.com": [5571], "lgo.mit.edu": [9763], "www.cimbclicks.co.id": [2617], "autorimsandaccessories.com": [1448], "prodfederate.pfizer.com": [12640], "bitquick.tw": [1969], "rentfl.at": [2024], "www.tchibo.sk": [16050], "w.dkaodai.com": [2024], "eyeo.com": [20061], "nc-unbrick1.apple.com": [1151], "d.254a.com": [110], "regattaurl.com": [2024], "*.hds.com": [7426], "*.volunteer2.com": [17923], "samhalpern.com": [2024], "commondreams.org": [3490], "ningbo.jd.com": [8434], "drummond.st": [2024], "byjc.co": [2024], "sickdaysurfshop.com": [14819], "tersee.com": [22125], "shared.aces.illinois.edu": [17346], "www.lchost.co.uk": [9080], "nl.stripchat.com": [22014], "ifttt.fitbit.com": [5867], "assets.gunosy.com": [7005], "ivanovo.psbank.ru": [13231], "homes.jp": [2024], "www.budgetgolf.se": [2410], "www.chatsecure.org": [3036], "static5.wonderwall.com": [18502], "ktlov.es": [2024], "x.arbis.pro": [2024], "www.yworks.de": [22663], "rossc888.com": [2024], "solarmovie.ph": [15181], "www.fass.se": [5658], "obrazy.fotolab.cz": [6055], "coinjabber.com": [3396], "l.sbh.idv.tw": [2024], "compete.com": [3522], "www.ticketsource.co.uk": [22207], "directory.osu.edu": [11797], "westcornwall.greenparty.org.uk": [6908], "emergingthreats.net": [5198], "camqtly.oxfordjournals.org": [12222], "www.malware-research.org": [9937], "wtsn.tk": [2024], "legislature.maine.gov": [9908], "rnl.ist.utl.pt": [16098], "tamlab.engineering.osu.edu": [11797], "www.mobify.net": [10531], "regmedia.co.uk": [13801], "on.splice.com": [2024], "www.hamstudy.org": [7167], "www.userstyles.org": [22410], "gene.si": [2024], "adk2cdn.cpmrocket.com": [2662], "kikatek.com": [8901], "www.leggiero.uk": [20802], "*.weburbanist.com": [18192], "www.europeana.eu": [20036], "s1.sinaimg.cn": [14910], "kernel.org": [8873], "secure.pdcnet.org": [12656], "smishcraft.co": [2024], "www.fireflycarrental.com": [7371], "parag.tech": [2024], "www.yoursupportservices.co.uk": [18823], "jobs.netflix.com": [11269], "writelatex.com": [18565], "www.simpel.nl": [21829], "files.dcpower.eu": [4007], "beno.re": [2024], "blocktrail.com": [2104], "adcenter.microsoft.com": [10396], "cyphertite.com": [3978], "cmp.io": [2024], "mick.fm": [2024], "planetblood.deathmask.net": [4254], "1adllvzy9zgybj7impjkh3jbof7jge03fnass4cc.ipleak.net": [20571], "mail3.hkgolden.com": [7058], "go.suu.edu": [2024], "twt.gp": [2024], "feeds.itunes.apple.com": [1151], "cms.artsy.net": [1260], "www.who.is": [18353], "theiphonewiki.com": [16399], "s.prive.net": [2024], "medlem.amnesty.se": [1016], "gkw.re": [2024], "bseen.co": [2024], "tmsy.tk": [2024], "geektechlabs.com": [6482], "bbg.tocco.ch": [16600], "s.comg.jp": [2024], "extreme.idg.se": [7709], "aarn.co": [2024], "dovecot.org": [4713], "www.readcomicsinpublic.com": [13665], "subdownloader.net": [15619], "images.mcafeesecure.com": [10128], "anaheim.tips": [2024], "americanscientist.org": [989], "cssgrid.me": [2024], "verfj.es": [2024], "www.dolnyzemplin.korzar.sme.sk": [14198], "publicaccess.aylesburyvaledc.gov.uk": [19291], "www.opendaylight.org": [11972], "halo.fyi": [2024], "decide2.be": [2024], "tinyki.fr.nf": [2024], "www.docstorepro.com": [4612], "host2.bg": [7514], "cdn.cathaypacific.com": [2913], "mytaxandbenefits.wyreforestdc.gov.uk": [22639], "noh.la": [2024], "skrot.es": [2024], "d.amoad.com": [371], "opendns.com": [11969], "quilm.es": [2024], "census.gov": [17108], "lynr.biz": [2024], "siteca.st": [2024], "208.68.106.8": [9087], "ansne.me": [2024], "alxr.me": [2024], "labs.aweber.com": [436], "rsimm.me": [2024], "www.wello.com": [18288], "link.centrinvest.ru": [2966], "1sm.es": [2024], "www.qt-project.org": [13364], "a.grimn.es": [2024], "worldwinner.com": [6394], "www.chronixradio.com": [3125], "adults.eastsussexlearning.org.uk": [19940], "8chan.co": [244], "login.webgo24.de": [18162], "crimea.tpprf.ru": [22260], "12wbt.com": [10373], "l.mariobarth.de": [2024], "goldmann.pl": [6801], "wllw.de": [2024], "jwhit.mn": [2024], "esbjerg.kmdcareborgerportal.kmd.dk": [20740], "kollegorna.se": [8975], "pytamy.pl": [21549], "repoindex.bnymellon.com": [19420], "lulzhahaha.com": [2024], "iout.co": [2024], "gffg.com": [6297], "usmile.at": [17531], "r24820243.sync.app.asana.com": [1265], "mymem.es": [2024], "eatsim.pl": [2024], "baymirror.date": [21524], "1f0.de": [78], "middleeastmonitor.com": [10406], "pixelated-project.org": [12773], "banx.io": [1683], "it.icecat.biz": [7912], "careercenter.wustl.edu": [18089], "www.mazacoin.org": [10120], "kp-platform.cdnvideo.ru": [19536], "skyid.sky.com": [14989], "*.belgium.indymedia.org": [8090], "r24820185.sync.app.asana.com": [1265], "search.oracle.com": [12116], "webmail.talktalk.co.uk": [15993], "go.ofeks.com": [2024], "*.groupon.de": [6956], "webstore.gemalto.com": [6499], "apld.ws": [2024], "*.prisms.deewr.gov.au": [4016], "engels.biglion.ru": [19375], "s0.meituan.net": [10249], "*.zagony.ru": [18873], "chart.googleapis.com": [6823], "tf.uio.no": [17414], "news.efinancialcareers.com": [18518], "kr8.me": [2024], "www.gnuheter.org": [6746], "r24617001.sync.app.asana.com": [1265], "www.findababysitter.com.au": [5819], "u.goflow.me": [2024], "guardtime.com": [20319], "storage.lansp.ru": [20781], "box.com": [2271], "neva.events": [2024], "www.perens.com": [2395], "owa.kit.edu": [8812], "genius.itunes.apple.com": [1151], "tigo.org": [2024], "*.serialist.net": [14657], "dis.tl": [2024], "forum.warthunder.ru": [22530], "payments.allerdale.gov.uk": [19148], "r24617675.sync.app.asana.com": [1265], "clientnews.anthem.com": [19206], "csaw.isis.poly.edu": [12933], "tianqi.2345.com": [98], "www.ssl2buy.com": [14242], "fewo-mehrtens.de": [5750], "*.inwx.ch": [8230], "www.minotar.net": [20989], "campus.lemonde.fr": [9204], "www.bepixelung.org": [19355], "getpostman.com": [20240], "capbea.st": [2024], "irishbroadband.ie": [8353], "webservice.fust.ch": [6258], "www.securitymouse.com": [14594], "asal.me": [2024], "messenger3.providesupport.com": [13218], "12tbgehx0d1b4q9tgdrz1vd218yt0yo9jw0o7vr1.ipleak.net": [20571], "koptalk.in": [2024], "s.tas.pw": [2024], "a.goliathpvp.cf": [2024], "msuservicestatus.statushub.io": [15504], "chomba.top": [2024], "northamptonshire.gov.uk": [21156], "www.clahub.com": [19605], "www.pirateparty.org.uk": [12747], "www.lightwidget.com": [20838], "kasperskycontenthub.com": [8826], "*.sheffield.ac.uk": [17422], "shop.mind.org.uk": [10443], "tw.norton.com": [11545], "www.i-cares.wustl.edu": [18089], "emember.heraldcorp.com": [7320], "cherkessk.rt.ru": [13529], "sdrbook.io": [2024], "tndvr.com": [2024], "svn.coin-or.org": [2652], "apps.cndls.georgetown.edu": [6531], "infrmd.ch": [2024], "videos.ladepeche.fr": [9128], "www.ygnition.com": [18770], "pebln.de": [2024], "www.websmithing.com": [18246], "gamezebo.com": [6425], "exherbo.org": [5482], "edgeca.st": [2024], "istabi.li": [2024], "hend.li": [2024], "saltrun.pub": [2024], "rx.roids.biz": [2024], "acdl.bz": [2024], "*.thirdage.com": [16442], "tv2.gd": [2024], "www.trafficshop.com": [16719], "www.youtube.qa": [18800], "go.icumed.com": [2024], "caimi.jd.com": [8436], "adnews.ms": [2024], "styles.wienerstadtwerke.at": [18376], "m710.co": [2024], "makeapledge.stanford.edu": [15448], "interspire.com": [1881], "read.ag": [2024], "ehour.me": [2024], "thelc.ms": [2024], "www.scsk.jp": [14149], "www.onlineforms.edgarfiling.sec.gov": [17104], "developerforce.com": [14311], "sso.ens.fr": [4922], "pgi.billdesk.com": [1906], "www.demonoid.cc": [19807], "accounts.stanford.edu": [15447], "read.douban.com": [4701], "jafri.co": [2024], "yougetsignal.com": [22688], "meez.crwdcntrl.net": [9622], "gama-gama.ru": [20199], "www.factor.io": [20067], "radio.lqtv.nyc": [2024], "baruwa.com": [19320], "staysmartonline.gov.au": [15508], "cafemambo.com": [2024], "*.tasb.org": [16223], "drohobych.lanet.ua": [20780], "www.spsn.net": [15391], "sec.crain.com": [3756], "accounts.icharts.net": [7701], "jmgo.jd.com": [8436], "blog.logentries.com": [9563], "aulo.in": [1394], "maps.derbyshire.gov.uk": [19810], "w.jpmclean.me": [2024], "*.se-mc.com": [15216], "feeds.alestic.com": [840], "haase.cc": [2024], "eed.osu.edu": [11797], "www.canvas.net": [2825], "*.enjin.com": [5265], "resource.dopus.com": [4520], "cas.edutheque.cndp.fr": [2646], "johnhin.es": [2024], "www.watsoninstitute.org": [18102], "wew.ipleak.net": [20571], "go.luc-a.de": [2024], "creators.ning.com": [11454], "hostingcatalog.com": [7541], "update.tdesktop.com": [16053], "www.computersnyou.com": [3542], "careers.globalways.net": [6722], "vlr.io": [2024], "mensrugby.clubs.bucknell.edu": [2406], "webappl.web.sh.se": [14174], "thepiratebay.bypassed.online": [21524], "cse.umich.edu": [17354], "quan.1688.com": [51], "nphw.me": [2024], "ekd.be": [2024], "qianggou.taobao.com": [16015], "privnote.com": [13154], "online2.statefarm.com": [15483], "home.thesun.ie": [22189], "playwarz.com": [18071], "mobile.jd.com": [8436], "oesta.do": [2024], "rvlution.net": [13542], "education.staffordshire.gov.uk": [15435], "r-ob.in": [2024], "scpsa.us": [2024], "webmail.valleyfirst.com": [17620], "databricks.com": [4189], "concordeurope.org": [19663], "go.znrauto.com": [2024], "algorithm.contest.yandex.com": [18742], "www.pqcrypto.org": [12315], "pcm.mcafee.com": [10129], "fcsvitm.in": [2024], "search.no.citrix.com": [3180], "rtmpdump.mplayerhq.hu": [9798], "ch.islamtoday.net": [8372], "isoc.org.br": [7830], "www.vevo.com": [17566], "www.widgit.com": [22586], "on.sonc.us": [2024], "kboo.co.uk": [2024], "autoanything.me": [2024], "ekt1.rosevrobank.ru": [14024], "secure.stage-gettyimages.it": [6604], "r.decharme.vn": [2024], "xpda.com": [22655], "pdjrnl.com": [2024], "asset-1.soup.io": [15235], "heathkit.com": [7276], "www.morgenweb.de": [10632], "pimage.timespeople.nytimes.com": [11040], "secure.stage-gettyimages.ie": [6604], "cctools.wustl.edu": [18089], "*.pingidentity.com": [12716], "marineshop.net": [10007], "groupbuy.topbuy.com.au": [16632], "www.horizon.tv": [22386], "billing.enta.net": [5277], "help.spike.newswhip.com": [11374], "www.sdk.cn": [21760], "build.hmailserver.com": [7079], "joycasino777.co": [20654], "jkc.me": [2024], "ir.i.wp.pl": [18012], "ique.st": [2024], "myaccount.ust.hk": [22412], "www.unicef.org.nz": [17067], "hidester.com": [20372], "bezbarierov.permkrai.ru": [21390], "robyn.at": [2024], "mccu.in": [2024], "account.skrill.com": [14984], "www.kea.nu": [2310], "cf.mailchimp.com": [9893], "bre.nz": [2024], "www.openinternet.state.gov": [17146], "garl.ink": [2024], "swam.mp": [2024], "npl.worldcat.org": [18536], "disaster.nlm.nih.gov": [11090], "blog.cr.yp.to": [3745], "ch.norton.com": [11545], "www.myiuhealth.org": [7866], "www.healthtap.com": [7256], "ncl.uz": [2024], "joshh.is": [2024], "m.dating.rambler.ru": [13600], "sepl.us": [2024], "link.tuango.ca": [2024], "photographytalk.com": [12677], "outsidegui.de": [2024], "srvfsno.cc": [2024], "www.tescofinance.com": [16207], "unlearn.cc": [2024], "forum.xda-cdn.com": [22647], "d.blakesl.ee": [2024], "cldh.se": [2024], "qlogo2.store.qq.com": [13329], "wellness.georgetown.edu": [6531], "france.usembassy.gov": [22406], "www.vindico.com": [17805], "so.video.sina.com.cn": [14904], "dt.scanscout.com": [14399], "usctea.ch": [2024], "ecom.ibx.com": [20473], "static.1wt.eu": [66], "www.nullday.de": [11613], "e-bae.xyz": [2024], "www.m6d.com": [10163], "images3.jlist.com": [8454], "dezertdepot.com": [4424], "tac.bis.doc.gov": [17138], "lists.randombit.net": [21578], "c.jsrdn.com": [20663], "www.filterdigital.com": [5798], "www.kickstarter.com": [8897], "ads.hospitalityleaders.com": [7508], "docs.gimp.org": [20246], "mediac.at": [2024], "is.alicdn.com": [853], "laishui.jd.com": [8434], "benzi.co": [2024], "papogram.me": [2024], "juniors2016.com": [2024], "enfield.gov.uk": [5247], "www.intelligentexploit.com": [8217], "youtube.com.ar": [18800], "api.flickr.com": [5898], "www.getbootstrap.com": [6592], "skilldrum.com": [1141], "kvasir.no": [9061], "go.twenga-solutions.com": [16944], "rodekru.is": [2024], "ids.hku.hk": [20387], "go.profab.io": [2024], "www.trustly.se": [16868], "qpbs.imageg.net": [6364], "minobr.nso.ru": [21192], "failai.serveriai.lt": [14677], "siteco.re": [2024], "www.partspider.com": [12450], "www.ifixit.com": [7731], "m.slovari.yandex.by": [18739], "rekrutacja.goldenline.pl": [6799], "campuspack.eu": [2799], "bizrate.com": [2054], "www.lookingglass.email": [9609], "chitot.org": [2024], "magix.com": [9718], "gmv.eu": [2024], "pyyk2016.anadolu.edu.tr": [1029], "printservice.web.cern.ch": [2588], "www.asc.osu.edu": [11797], "support.rovio.com": [14042], "*.informit.com": [8119], "utopianet.org": [17543], "comid.as": [2024], "fins.com": [11361], "eval.fi.ncsu.edu": [11531], "www.it.arch.ethz.ch": [4967], "webroot.com": [18233], "filmlush.com": [5796], "yml.me": [2024], "secure.fangamer.com": [5643], "koushixin.duoshuo.com": [19906], "css.sohu.com": [15171], "bootstrap.debian.net": [4261], "yourdatelink.com": [18819], "socialjedi.co": [2024], "telegram.airbitz.co": [19121], "www.cs.washington.edu": [17376], "webographe.com": [2024], "etorologsapi.etoro.com": [4970], "support.mozillamessaging.com": [10700], "login.modernus.is": [10562], "www.ewent.ya.ru": [18716], "wyndhamrentals.com": [18579], "mc.skycure.com": [21853], "i.shareasale.com": [14722], "szsut.sledcom.ru": [21858], "newinvest.khabkrai.ru": [20709], "uts.ac": [2024], "kszk.sch.bme.hu": [1556], "wssrstrm.com": [2024], "emmie.me": [2024], "via.coret.org": [2024], "entertainment.slashdot.org": [15012], "drmh.me": [2024], "katja.la": [2024], "ftp.avm.de": [1478], "suite.tiki.org": [16520], "bhtt.co": [2024], "atxhipsters.net": [2024], "weborder.active24.nl": [19065], "jaww.org": [2024], "agst.us": [2024], "mm.care": [2024], "jwato.com": [2024], "cabridg.es": [2024], "kmart.com": [8950], "dollaraday.co": [4636], "appeal.anquan.org": [19204], "s.thebrighttag.com": [2342], "www.iphoneblog.de": [8339], "www.mojedatovaschranka.cz": [10571], "b-linked.bbyo.org": [19295], "www.filmarkivet.no": [20096], "www.cornell.edu": [3676], "trustthevote.org": [16855], "secureportal.translations.com": [22274], "gavelbuddy.com": [6449], "zlfstd.be": [2024], "www2.eiffel.com": [5111], "www.tindie.com": [16546], "gathering.geogebra.org": [6522], "bdins.co": [2024], "spreturns.eastsussex.gov.uk": [19938], "www.f1.htw-berlin.de": [7103], "*.ssrn.com": [14246], "sseri.es": [2024], "www.greenpeace-jugend.de": [6917], "glean.pop6.com": [12948], "www.moodsmith.com": [10611], "www.certivox.com": [2974], "swiz.ec": [2024], "www.precursorapp.com": [13068], "www.khb.hu": [8739], "www.ct.gov": [2695], "myctg.la": [2024], "blk.sh": [2024], "lob.com": [9546], "sayanogorsk.startsmile.ru": [21980], "msh.io": [2024], "www.praegnanz.de": [13056], "safe.beeline.kz": [19345], "vost.ro": [2024], "sculpteo.com": [14490], "magnetsearch.net": [22174], "store.juno.com": [8699], "batstrading.com": [1517], "flacs.mindmodeling.org": [10444], "l.knpw.rs": [2024], "s.hayr.do": [2024], "heidelberg.de": [7282], "csie.org": [2685], "www.secure-endpoints.com": [14543], "www.top.de": [16631], "pyrl.gy": [2024], "eu-st.xhamster.com": [18606], "international.courierpost.co.nz": [3714], "tmpr.co": [2024], "trbx.co": [2024], "www.firstvds.ru": [5855], "sixapart.com": [21842], "evao.tpprf.ru": [22260], "servedbyadbutler.com": [572], "gaoyao.jd.com": [8434], "kongress-soziale-arbeit.htwk-leipzig.de": [7596], "www.endesa.pt": [5236], "andysf.org": [2024], "ourrange.com": [2024], "newmansoc.org": [2024], "www.uefidk.com": [17196], "go.netcetera.im": [2024], "lists.osmocom.org": [12159], "element.yandex.by": [18739], "www.popvote.hk": [12959], "console.twistage.com": [16956], "spendvision.com": [21935], "notanet.com.br": [11557], "secureimg.stitcher.com": [15544], "people.stanford.edu": [15448], "radiokot.ru": [21573], "competitions.nra.org": [21176], "quote.hangseng.com": [7183], "biomedicalprograms.georgetown.edu": [6531], "acls.org": [294], "g.blog4temp.com": [2024], "www.webwewant.org": [18193], "scratch.mit.edu": [9763], "noku.co": [2024], "r5d.co.uk": [2024], "blogs.microsoft.com": [10396], "circleci.com": [3158], "jud2.ct.gov": [2695], "tkmc.me": [2024], "ry.ly": [2024], "flic.kr": [5896], "training.linuxfoundation.org": [9427], "*.unix4lyfe.org": [17438], "consumer.ftc.gov": [5710], "y4.hitravel.xyz": [2024], "www.adkontekst.pl": [654], "secure.flickr.com": [5898], "bidtellect.com": [1876], "*.database.com": [4187], "m.amazon.co.uk": [19170], "s.brighthub.com": [2343], "wachtwoord.kuleuven.be": [8832], "chipin.com": [3089], "rostovskaya-obl.beeline.ru": [1778], "planetnetbeans.org": [12115], "blog.us.playstation.com": [12832], "dacw.co": [2024], "gimmev.co": [2024], "ubuntu-eu.org": [17176], "southkesteven.firmstep.com": [20109], "ina.fr": [7769], "tr.apsislead.com": [1172], "catalysts.osu.edu": [11797], "fedoraproject.org": [5716], "nizhegorodskaya-obl.beeline.ru": [1778], "mediadaten.sueddeutsche.de": [15641], "wammo.co.nz": [8941], "aspectsecurity.com": [1295], "passwort.gmx.net": [6330], "www.nervous.io": [11202], "secure.lemonde.fr": [9204], "support.pay4bugs.com": [12499], "chef.adsrvr.org": [688], "status.librato.com": [9324], "www.filmlair.com": [5795], "webmail.graasmilk.net": [6862], "www.evermeet.cx": [5439], "asmp.co": [2024], "swisssign.com": [12996], "cdn.webtrends.com": [18264], "nplusonemag.com": [11577], "www.sbrf.ru": [14383], "dev.otto.de": [12168], "i.kfs.io": [8885], "slfmd.biz": [2024], "secure.sophos.com": [15224], "www.linuxacademy.com": [9433], "t3.qlogo.cn": [13355], "movie4k.tv": [10675], "tjbr.dk": [2024], "*.udmedia.de": [17021], "www.fastcompany.com": [5659], "www.mentorship.hku.hk": [20387], "theinformation.com": [16368], "on.wtmj.com": [2024], "www.actel.com": [543], "www.meo.pt": [10286], "a.zhng.co": [2024], "*.panasonic.com": [12383], "movie4k.to": [10675], "topceo.co": [2024], "ssl.informatics.uow.edu.au": [17434], "cdn.thomasnet.com": [16449], "on.glowsalon.ca": [2024], "whenwhere.link": [2024], "www.orgreenoptics.com": [12140], "prochur.ch": [2024], "s.masr.me": [2024], "i.urlb.ag": [2024], "scene.org": [8267], "hifx.co.uk": [7390], "a.local.ch": [9548], "l.noornegar.com": [2024], "thef.no": [2024], "bsuk.co": [2024], "andredi.as": [2024], "www.crowdrise.com": [3825], "twin.sci-hub.ac": [14436], "gmg0p.libreplanet.org": [9329], "lewisham-consult.objective.co.uk": [21225], "secure.itweb.co.za": [7857], "dakar.bz": [2024], "afcea.org": [338], "*.gulas.sme.sk": [14198], "lifehacker.com": [9346], "embeds.vice.com": [17754], "ulti.pro": [2024], "bpcdc.org": [2024], "thad.me": [2024], "www.directbox.eu": [4517], "zakonyprolidi.cz": [18876], "environment-agency.gov.uk": [20006], "mwis.us": [2024], "url.ps4blog.net": [2024], "www.foolz.us": [5985], "cp-vps.rentalserver.jp": [13835], "www2.voterinfo.gov.hk": [22499], "bbc.in": [2024], "go.bbb.org": [2024], "inkstars.96.lt": [2024], "poy.nu": [2024], "londontrustmedia.com": [20874], "s.koban.tk": [2024], "error.alibaba.com": [857], "1800quitnow.cancer.gov": [2819], "proof.ly": [2024], "highlighter.me": [2024], "buy.wsj.com": [22625], "aircrack-ng.org": [794], "www.solihull.gov.uk": [15192], "saztest.tocco.ch": [16600], "fusion.dn.se": [19856], "api.qunitjs.com": [13337], "edenu.axonify.com": [1502], "federalfleets.energy.gov": [5243], "www.vegasinc.com": [17678], "lternet.edu": [9116], "l.joress.com": [2024], "studentaid.ed.gov": [4881], "made2measure.next.co.uk": [11399], "index.tnwcdn.com": [22227], "www.egenix.com": [19923], "sportvideo.lequipe.fr": [20811], "itlogix.io": [2024], "xiajinguan.jd.com": [8434], "*.freshbooks.com": [6180], "www.walkit.com": [22520], "partnerlocator.trendmicro.eu": [16790], "www.food.gov.uk": [20132], "brickc.it": [2024], "*.bizjournals.com": [16255], "docs.webplatform.org": [18176], "dox.al": [2024], "www.abcm.ch": [2208], "antmy.cc": [2024], "university.nginx.com": [21133], "www.panoramio.com": [12396], "ilus.me": [2024], "invstplc.com": [2024], "fieldnotes.unicefusa.org": [17070], "sustatic.com": [15612], "www.rtsr.ch": [21957], "www.gnuradio.org": [6338], "qidian.com": [13348], "studentportal.strode-college.ac.uk": [15597], "pic.pimg.tw": [12709], "media8.congstar-media.de": [3579], "www.lib.washington.edu": [17376], "images.sockshare.com": [15148], "q.flate.eu": [2024], "campaign.iwill.org.uk": [20618], "trupan.in": [2024], "bolshaya-raznica.friday.ru": [20175], "prochoice.org": [11113], "www.literaryreview.co.uk": [20854], "*.4chan.org": [196], "localradr.co": [2024], "www.earcu.com": [4862], "channel.alibaba.com": [857], "content.thunderkick.com": [16480], "www.redmondmag.com": [13755], "www.youtube.com.jo": [18800], "brklk.com": [2024], "www.mlfa.org": [9773], "tfd.bz": [2024], "goplcs.com": [2024], "lodg.it": [2024], "belnet.be": [1798], "gentoo-handbook.lugons.org": [9121], "dns-oarc.net": [4051], "shck.me": [2024], "www.southern-electric.co.uk": [15262], "di.dk": [3569], "lkd.org.tr": [9099], "www.imm.ox.ac.uk": [17359], "zerzar.com": [18948], "heg.com": [7510], "imeem.com": [7989], "renegade.co": [2024], "living.livingsocial.com": [9530], "www.cabforum.org": [2520], "mail.naacpimageawards.net": [10903], "account.live.com": [9495], "borsa.io": [2024], "ya.ru": [18716], "www.sr.se": [15738], "www.christianbook.com": [3118], "limw.co": [2024], "general-anzeiger-bonn.de": [6509], "worldforpets.com.au": [18551], "jegeorge.co": [2024], "mnoy.es": [2024], "go.nasa.gov": [2024], "ga1a.co": [2024], "repo.continuum.io": [19676], "powerhousemuseum.com": [13047], "www.gitter.im": [6666], "www.frascaticafe.nl": [6085], "lks.gd": [2024], "tactic.al": [2024], "kndn.es": [2024], "pay.tricolor.tv": [22287], "web2.westlaw.com": [18312], "free11.beget.com": [19347], "assets.newscheckmedia.com": [11381], "gefpmis.org": [8258], "wierden.nl": [11172], "free.primbank.ru": [13107], "www.skm.io": [14981], "wuping.jd.com": [8434], "ssl.cdngc.net": [19533], "www.python-pillow.org": [12707], "rbs.lib.cuhk.edu.hk": [2704], "canal.uned.es": [17248], "n.rosner.io": [2024], "movelia.es": [10671], "et09.xhcdn.com": [18605], "www.risi.com": [13492], "l.arefsh.me": [2024], "ahmia.fi": [780], "shwymy.co": [2024], "salux.es": [2024], "coxbusiness.com": [3736], "ltcplan.me": [2024], "*.shutterfly.com": [14815], "connect.boum.org": [2261], "www.eztv.ag": [20063], "appinn.me": [1148], "interest.sky.com": [14989], "saamwerk.it": [2024], "neos.eu": [10941], "spanish.honduras.usembassy.gov": [22406], "sc4.rgstatic.net": [13481], "orderbook.net": [12131], "coloradocaptures.com": [3442], "tmlive.us": [2024], "vgf.re": [2024], "accounts.bizo.com": [2052], "secure.sitelock.com": [14934], "lexlevinrad.net": [2024], "surb.sledcom.ru": [21858], "champssports.com": [2998], "bahn-bkk.de": [1639], "whatssapp.cf": [2024], "sdmedia.link": [2024], "33bits.org": [138], "cryptonator.com": [3873], "www.skrill.com": [14984], "analytics.freepress.net": [6123], "clientservice-v6-beta.curse.com": [3927], "emailmarketing.techxpress.net": [16087], "www.specialforces.com": [15310], "selfservice.peterborough.gov.uk": [12625], "webmail.iu.edu": [8069], "devon.gov.uk": [4415], "support.cumulusnetworks.com": [3914], "dl.fedoraproject.org": [5716], "mozilla.kairo.at": [8782], "scottishpower.co.uk": [14461], "100-gute-gruende.de": [11], "www.alumni.leeds.ac.uk": [17403], "xcom.com": [117], "newspr.in": [2024], "research.de.com": [10230], "huntfi.sh": [2024], "cybersecurity.oxfordjournals.org": [12222], "internationalbreastfeedingjournal.biomedcentral.com": [1931], "www.fatwreck.com": [20077], "webthumbnail.org": [18256], "emtn.me": [2024], "dsp.send.microadinc.com": [10380], "extra.vc": [2024], "fanboy.co.nz": [5640], "www.meetic.pt": [10227], "www.spankwire.com": [15286], "mailxchange.1and1.co.uk": [71], "api.ul.se": [22355], "op.astrobl.ru": [19264], "readynas.com": [13679], "aueos.de": [2024], "haitao.nosdn1.127.net": [41], "f.acke.rs": [2024], "www.wolframcdn.com": [18488], "sassets.j2global.com": [8422], "store.play-asia.com": [12828], "blazonco.com": [2083], "new.aol.com": [380], "www.mbed.org": [10122], "codeweavers.com": [3351], "tag.perfectaudience.com": [12591], "staticstuff.net": [6593], "wavecon.de": [18105], "dedikuoti.lt": [4279], "cacher.dozuki.net": [4726], "www.malcontentsgambit.com": [9931], "semi.payback.pl": [21363], "www.leastfixed.com": [9231], "tocco2.tocco.ch": [16600], "www.avonandsomerset.police.uk": [1479], "www.vultr.com": [17966], "m.mdm.ru": [10143], "i.kumapon.jp": [9049], "parallel.illinois.edu": [17346], "data.glasgow.gov.uk": [6681], "truste.com": [15922], "surfeasy.com": [15714], "revresponse.com": [13896], "e.rubr.it": [2024], "*.totemapp.com": [16677], "broadcast.ch": [21957], "mp.toutiao.com": [16680], "api.snelis.com": [15097], "blog.gls.de": [6320], "dealernavigator.capitalone.com": [2831], "b-europe.com": [14205], "ccrea.tv": [2024], "playlabs.co": [2024], "r24617876.sync.app.asana.com": [1265], "sbc.anthem.com": [19206], "past.oxfordjournals.org": [12222], "bitly.qa": [2024], "salm.onl": [2024], "gtgtgt.com": [2024], "opticalli.ng": [2024], "ferroh.com": [5745], "lfr.news": [2024], "gismeteo.ua": [6651], "www.cms.gov": [19630], "freeboard.io": [20155], "www.thalescomminc.com": [16242], "tsherrell.us": [2024], "prepaid-phones.t-mobile.com": [15837], "www.tacoma.uw.edu": [17156], "edinburgh.pirateparty.org.uk": [12747], "fb.zverinice.si": [2024], "s3.netdialog.se": [11261], "comparethemarket.com": [3513], "research.brown.edu": [2384], "umass.edu": [17353], "tili.sanoma.fi": [14351], "www.nbwn.de": [10919], "webui_73994258.asana.com": [1265], "booking.hillingdon.gov.uk": [7413], "www.trustworthyinternet.org": [16871], "img01.taobaocdn.com": [16016], "static1.startnext.com": [15478], "adv.s8bbs.com": [21709], "www.energystar.gov": [5245], "lider.cc": [2024], "www.ifortuna.sk": [7949], "helpdesk.rosminzdrav.ru": [21674], "carbonshar.es": [2024], "mousejack.com": [21028], "thecurvy.me": [2024], "dpcc.me": [2024], "gawkermediagroup.com": [20210], "fgp.boum.org": [2261], "*.neatoshop.com": [11163], "originstamp.org": [21291], "mbrd.ml": [2024], "www.gnu.io": [6336], "rn.accufl.com": [2024], "rfidatl.as": [2024], "mib.devoncredit.ru": [4417], "livecorp.com.au": [9498], "nettica.com": [11293], "accounts.gigaom.com": [6626], "img2.qidian.com": [13349], "incloak.com": [8033], "friendster.com": [6197], "es.reuters.com": [13893], "gen.us": [2024], "s1s.ky": [2024], "alwaysdata.com": [947], "geekevents.org": [6484], "www.cryptocapital.co": [3860], "s.emp.re": [2024], "whdy.us": [2024], "www.noreplied.com": [11520], "oss-kosovo.infinum.co": [20526], "forte.events": [2024], "ryazan.tpprf.ru": [22260], "www.gchq-careers.co.uk": [6285], "res.oxfordjournals.org": [12222], "school-of-engineering-faculty-search.mit.edu": [9763], "alt-sheff.org": [921], "www.locality.com": [20863], "pk8.otpbank.ru": [12165], "devel.rtems.org": [13532], "online.dudley.gov.uk": [4787], "www.ip2location.com": [7790], "cj.qidian.com": [13349], "www.weillcornell.org": [22557], "www.olat.uni-hamburg.de": [17025], "hotelplan.ch": [7561], "2ch.hk": [122], "child.youku.com": [18804], "liveclicker.com": [9516], "www.jud.ct.gov": [2695], "info56.top": [2024], "gigenetcloud.com": [6639], "mzmg.fr": [2024], "box.consumer.org.hk": [3599], "webtraxs.com": [18262], "pizza.fr": [12784], "openstat.com": [21281], "webdesignmarketing.eu": [18196], "www.ssllabs.com": [14243], "*.thecutestsiteontheblock.com": [16259], "l.jamiete.ch": [2024], "vpnsecure.me": [17592], "trumpaccountability.democrats.org": [4338], "link.masrur.org": [2024], "www.archos.com": [1199], "go.u.hol.es": [2024], "www.piratpartiet.se": [12757], "www.acluidaho.org": [16250], "evidcl.co": [2024], "iotne.ws": [2024], "www.hardwareluxx.ru": [20344], "argetest.tocco.ch": [16600], "podlove.de": [10322], "www2.accessedge.com": [19048], "mediamemo.allthingsd.com": [886], "tcast.org": [2024], "ks4.us": [2024], "www.devconf.cz": [4403], "copr.fedoraproject.org": [5716], "n.carhur.com": [2024], "www.realfavicongenerator.net": [21603], "jd2008.jd.com": [8436], "developer.yammer.com": [18738], "s7.wlresources.com": [22604], "l.dioclecio.com": [2024], "d.so.city": [2024], "community.plos.org": [13252], "imue.tv": [2024], "libs.iraiser.eu": [8350], "passport.meituan.com": [10248], "*.lelo.com": [9258], "fs.here.com": [7325], "wrkshp.pl": [2024], "dansekapellet.kk.dk": [8748], "source.opennews.org": [11999], "ti.to": [16482], "s.dron.tv": [2024], "srlchf.com": [2024], "liliani.com.br": [9368], "www.ssk.uk.com": [21960], "iljmp.com": [7967], "boutique.gemalto.com": [6499], "rgsntl.rgs.cuhk.edu.hk": [2704], "mars.nasa.gov": [10909], "www.tarlogic.com": [16028], "hands.com": [7178], "agncy.re": [2024], "d.knaack.me": [2024], "joycasino7.com": [20654], "s4ds.in": [2024], "business.bt.com": [1578], "*.hawkhost.com": [7239], "shockmedia.nl": [14772], "r24626382.sync.app.asana.com": [1265], "siedler25.org": [13889], "mudgum.net": [10723], "box-look.org": [2270], "crwd.si": [2024], "addons.mozilla.jp": [10694], "velex.htwk-leipzig.de": [7596], "www.phantompeer.com": [12645], "aide.boum.org": [2261], "cloud.dlink.ru": [19853], "medway.spydus.co.uk": [21952], "bromley.gov.uk": [2377], "tieto.com": [16512], "passport.cnblogs.com": [19631], "what.jd.com": [8436], "hddls.co": [2024], "xserver.*.jp": [18684], "acoustics.org": [533], "*.spreadshirt.se": [15371], "life.ru": [20835], "lists.gulp.linux.it": [9419], "math.stanford.edu": [15447], "account.nicovideo.jp": [11430], "bbrains.co": [2024], "wwr.dj": [2024], "teo.lt": [16188], "mindlink.2kgames.com": [117], "www.continuousphp.com": [19675], "a.norc.co": [2024], "pressguidance.state.gov": [17146], "secure.suggest.search.sky.com": [14989], "li.iamsarav.com": [2024], "secure.services.defra.gov.uk": [4298], "faq.migros.ch": [10417], "datacamp.com": [4168], "www.ymcmbofficial.com": [18710], "pro.104.com.tw": [18], "corelib.trendmicro.com": [16791], "fighthub.eu": [2024], "sat.sanoma.fi": [14351], "www.gyazo.com": [7019], "cpeople.ru": [19707], "webmail.legtux.org": [9241], "weboolu.com": [18230], "appolicious.com": [1161], "flengyel.com": [2024], "go.t0m.co": [2024], "www.boe.ca.gov": [2522], "www.cozmedics.com.au": [2658], "matkahuolto.info": [10086], "l2e.info": [2024], "www.motoslave.net": [21027], "ssl.microsofttranslator.com": [10402], "kfs-prod.adminapps.cornell.edu": [3676], "autodiscover.samfox.wustl.edu": [18089], "nbs.io": [2024], "peng.fish": [2024], "www.renkum.nl": [11172], "docencia.lsi.uned.es": [17248], "techmeme.com": [16094], "iknowwhatyoudownload.com": [20492], "isoi.info": [2024], "i.esk.jp": [2024], "exci.to": [2024], "www.joycasino10.com": [20654], "ipsastraining.un.org": [17057], "gcdn.org": [6284], "etarget.cz": [5363], "www.ucat.osu.edu": [11797], "lists.bufferbloat.net": [2420], "weekly.japantimes.co.jp": [8526], "ovh.com": [12205], "www.westconsincuhb.org": [18309], "askslashdot.srad.jp": [21956], "stats.radioplayer.co.uk": [13581], "www.zakonyprolidi.cz": [18876], "www.autorimsandaccessories.com": [1448], "www.tpb-proxy.top": [22259], "enose.jpl.nasa.gov": [10909], "www.dsp.io": [4780], "*.boingohotspot.net": [2198], "cloudwear.com": [3315], "samarbeid.difi.no": [4452], "bdrag.ga": [2024], "fdgtl.co": [2024], "savanna.gnu.org": [6337], "*.linguee.pt": [9390], "www.carsabi.com": [2875], "ideias.vc": [2024], "cn.shopbop.com": [21807], "aliem.link": [2024], "www.bioinformatics.vt.edu": [17825], "www.rotlogix.com": [14033], "hcafc.info": [2024], "nc-as-images.apple.com": [1151], "aviation.osu.edu": [11797], "*.eventim.se": [5433], "w.inm.uy": [2024], "static.xmarks.com": [18671], "24.kartal24.com": [2024], "proy.ca": [2024], "b.blmt.ht": [2024], "etouches.com": [5377], "brmm.ag": [2024], "solx.ch": [2024], "www.learnshare.com": [9225], "www.foxitsoftware.com": [6065], "help-en-eu.nike.com": [11440], "shanzhou.jd.com": [8434], "ffit.me": [2024], "dpacksupport.dell.com": [4317], "ir.netflix.com": [11269], "12.mvd.ru": [21055], "open.weibo.cn": [18277], "www.sci.uma.es": [17225], "tyumenskaya-obl.beeline.ru": [1778], "yousend.it": [2024], "account.1and1.co.uk": [71], "akuzw.eu": [2024], "www.ric.org": [13488], "leaz.es": [2024], "www.howtoforge.com": [7579], "www.hmapps.net": [7443], "learn.polyu.edu.hk": [12936], "www.gannett.cornell.edu": [3676], "kford.pw": [2024], "www.carbonmade.com": [2844], "psocial.eu": [2024], "ems.northlincs.gov.uk": [21159], "searchandpromote.omniture.com": [11842], "r24617757.sync.app.asana.com": [1265], "topeka.ccmr.cornell.edu": [3676], "bmc.com": [1553], "02.static-maxdome.de": [10106], "dffy.us": [2024], "customs.alibaba.com": [857], "howe.bid": [2024], "foreignaffairs.com": [6003], "cdn.101domain.com": [15], "frascaticafe.nl": [6085], "cisl.stanford.edu": [15447], "cesd.illuminateed.com": [20494], "thumb.ccsd.cnrs.fr": [6174], "es.xhamster.com": [18606], "s.lmncdn.com": [9538], "wwwlacie.seagate.com": [14499], "spilnu.dk": [15345], "momentusmedia.com": [10574], "memopol.panoptykon.org": [12395], "to.drrtyr.mx": [2024], "springshare.com": [15383], "wusmhealth.wustl.edu": [18089], "ingobecker.me": [2024], "www.yp4h.osu.edu": [11797], "wknd.rocketbank.ru": [13994], "accounts.mojang.com": [9789], "url.fatlabs.org": [2024], "litoralver.de": [2024], "www.omnetpp.org": [11672], "rgj.com": [13828], "wiki.greencubes.org": [20306], "lnp.io": [2024], "www.frictionalgames.com": [6189], "lici.la": [2024], "english.sohu.com": [15171], "kodsana.vdoth.com": [17673], "psc.gs": [2024], "trendtv.96.lt": [2024], "mimor.in": [2024], "online.utb.ru": [17538], "brntpb.st": [2024], "*.sywcdn.net": [14271], "foxtradez.co": [2024], "tweet.amg22.com": [2024], "landscape.io": [9155], "backlot.ooyala.com": [11936], "4rgc4am7h31iel5lth2630nqf13nkikcduzuxjh4.ipleak.net": [20571], "ad.adlegend.com": [656], "ucom.osu.edu": [11797], "consultation.eastsussex.gov.uk": [19938], "ro.4.boardgamearena.com": [2182], "*.atsb.gov.au": [1428], "en-es.dict.cc": [4442], "tirerack.com": [16570], "access-kaiseki-tools.com": [501], "hoeringsportalen.dk": [7451], "threattracksecurity.com": [16469], "qtsdata.it": [2024], "jolt.es": [2024], "ot.dftoutiao.com": [19826], "exratione.com": [5461], "www.hiconversion.com": [7389], "cgit.osmocom.org": [12159], "alliancebernstein.com": [899], "www.sociomantic.com": [15146], "usole-sibirskoe.startsmile.ru": [21980], "andrewblum.net": [1044], "www.arts.cornell.edu": [3676], "ebusiness.hangseng.com": [7183], "*.outernet.is": [12183], "kino.1tv.ru": [88], "billie.codes": [2024], "cp.gohsphere.com": [8621], "popads.net": [12949], "nr.tn": [2024], "link.web123.com": [2024], "jsna.portsmouth.gov.uk": [21467], "ow.lc": [2024], "www.neobits.com": [11192], "universalsubtitles.org": [17317], "www.jako-o.de": [8506], "up.ppxls.net": [2024], "cassi.uniovi.es": [17282], "api.scratch.mit.edu": [9763], "www.techweekeurope.fr": [11238], "scap.in": [2024], "myunited.com": [2024], "dictation.io": [19832], "sinergie.misy.eu": [4888], "ter.ly": [2024], "impsec.org": [8014], "forum.kinopoisk.ru": [20723], "dsy.mx": [2024], "www.firelady.com": [5845], "t.onthe.io": [11926], "swgrr.us": [2024], "*.imag.fr": [7977], "lwblog.me": [2024], "nckwt.rs": [2024], "www.qrator.net": [21562], "auctionthing.net": [1373], "payment.anthem.com": [19206], "cdn.pcpartpicker.com": [12529], "www.packrafting-store.de": [21335], "newspapers.bl.uk": [2358], "zazzle.com": [18903], "rd.rakuten.co.jp": [13594], "wetmo.re": [2024], "333.ipleak.net": [20571], "www.taskforce.is": [16033], "media.voog.com": [22497], "tinybt.org": [2024], "shop.1and1.co.uk": [71], "www.iphoneincanada.ca": [8340], "gogetssl.com": [6762], "e-cosm2015.engineering.osu.edu": [11797], "i.llbarkat.com": [2024], "knoxsem.org": [2024], "c4tw.net": [2518], "unity.ubuntu.com": [17183], "oceandr.social": [2024], "vdmakeup.com": [2024], "say.ac": [21738], "jkos.ch": [2024], "indianadun.es": [2024], "text2go.de": [2024], "from.rublev.me": [2024], "bengc.me": [2024], "jcore.fr": [8432], "mivamerchant.com": [10501], "ce.mnch.tk": [2024], "myaccount.nytimes.com": [11041], "*.blogs.nytimes.com": [11040], "new.trafficholder.com": [16720], "fsf.org": [5590], "www.nismonline.org": [11120], "www.panic.com": [12391], "abusix.com": [490], "plug.dj": [12862], "emily.gift": [2024], "hopsct.ch": [2024], "faq.hosteurope.de": [7524], "login.asp.net": [413], "realthread.co": [2024], "mobileca.re": [2024], "mdws.islandsavings.ca": [8381], "ripe65.ripe.net": [13953], "www.grouplogic.com": [6949], "d2.biz.itc.cn": [8401], "link.gyt.hu": [2024], "bimestriel.framapad.org": [6075], "blog.creativecommons.org": [3774], "mobigum.com": [10529], "eysk.startsmile.ru": [21980], "idportal.slu.se": [14195], "passport.www.lofter.com": [20869], "bbbatt.co": [2024], "rocrsubmissions.ic.nhs.uk": [10953], "full.pr0gramm.com": [21476], "www.edeveloperz.com": [4891], "d-cache.microadinc.com": [10380], "mundobr.in": [2024], "tmninja.us": [2024], "go.rrb.ro": [2024], "netcommunity.vanaqua.org": [17637], "bcarr.us": [2024], "yardim.yandex.com.tr": [18740], "js.octopuspop.com": [11754], "*.tamu.edu": [16227], "pc1-collect.tealiumiq.com": [16060], "www.monmouthshire.gov.uk": [10598], "i.finance.sina.com.cn": [14904], "imageshack.us": [7983], "os-cillation.de": [12150], "partners.qcloud.com": [13346], "bizf.us": [2024], "www.mailpile.is": [9905], "ifc.tv": [2024], "s.tkfd.or.jp": [2024], "piwik.ovpn.se": [11726], "wnbr.gr": [2024], "dashboard.opendns.com": [11969], "files.cloudprivacy.net": [3278], "rp.sccassessor.org": [14400], "ovr.li": [2024], "beltcraft.co": [2024], "luga.startsmile.ru": [21980], "movc.mx": [2024], "www.adamcod.es": [19071], "public.gamedev.net": [6396], "clkvrt.co": [2024], "s17.postimg.org": [13024], "on.dad.fm": [2024], "to.teamcoco.com": [2024], "ru.crowdin.com": [3823], "wp-poc.details.com": [4387], "image.guim.co.uk": [6996], "www.breadwallet.com": [19444], "e0.xhamsterpremiumpass.com": [18607], "magvac.co": [2024], "saltlakeho.me": [2024], "performancehorizon.com": [12599], "blogs.cornell.edu": [3676], "ad-specs.guoshipartners.com": [20325], "affiliates.flirt4free.com": [20121], "www.popsugar.com": [12958], "cn.bing.com": [1926], "l.mdxdave.de": [2024], "ssl.palmcoastd.com": [12375], "outnet.co": [2024], "immi.is": [7763], "nn15.te-st.ru": [22103], "positivessl.com": [12992], "sweetly.xyz": [2024], "vip.115.com": [28], "bk.jd.com": [8436], "enterprise.podomatic.com": [12882], "7headlines.com": [228], "12w7tlbg7ksiyk51z8e9fd8kc5x64kx5dp0gsqeq.ipleak.net": [20571], "dzno.tpprf.ru": [22260], "recruitment.cumbria.gov.uk": [19742], "fatwallet.com": [5680], "cbt.news": [2024], "gospotted.com": [2024], "imgt5.bdstatic.com": [19339], "kurgan.rt.ru": [13529], "wwp.icq.com": [7695], "mdws.aldergrovecu.ca": [833], "fossbazaar.org": [5578], "forums.somethingawful.com": [15200], "www.ctftime.org": [2699], "www.bigbrotherawards.de": [1880], "tas.buzz": [2024], "on.goatcirc.us": [2024], "beamyourscreen.de": [1757], "usni.org": [17126], "s1.hughesnet.com": [7607], "www.myeddebt.com": [9829], "www.helptorrents.com": [20367], "www.icony.com": [7923], "dtou.ch": [2024], "www.digitaltrends.com": [4487], "alt.fedoraproject.org": [5716], "martinus.cz": [10044], "dadd.io": [2024], "threema.ch": [16473], "www.vcd.org": [17560], "markdubois.me": [2024], "www.switchadhub.com": [15764], "my.ntu.edu.tw": [11010], "www.manlysealifesanctuary.com.au": [9968], "mblx.us": [2024], "www.vodafone.co.nz": [17899], "karriere.rewag.de": [13475], "unk.ai": [2024], "wintotal.de": [18449], "www.alfacashier.com": [19135], "access.redhat.com": [13735], "*.hitbtc.com": [7424], "thegyllenhall.com": [22154], "coag.gov.au": [3703], "tzema.ch": [2024], "neng.im": [2024], "opnstre.am": [2024], "download.electrum.org": [5145], "swww.tokbox.com": [16607], "support.panopto.com": [12394], "qzl.link": [2024], "vom.pw": [2024], "*.actonsoftware.com": [541], "account.level3.com": [9283], "www.family.utoronto.ca": [17427], "url.timb.us": [2024], "sfwatch.co": [2024], "bodyworkmovementtherapies.com": [8654], "s.portmann.one": [2024], "pistoncloud.com": [12761], "feedback.115.com": [28], "owa.mtsbank.ru": [10720], "staticma.de": [2024], "freedomhou.se": [2024], "blogs.zoho.com": [18984], "cal.net": [2739], "poslife.me": [2024], "hdd.mx": [2024], "zerbaijan.kavkaz-uzel.ru": [20694], "hungry.cat": [2024], "www.youtube.pe": [18800], "simplystamps.com": [14896], "decs.im": [2024], "careers.scs.illinois.edu": [17346], "www.youtube.pl": [18800], "mach.us": [2024], "deda.dict.cc": [4442], "t.rw.nu": [2024], "www.youtube.ph": [18800], "cbs2.us": [2024], "m.saint-petersburg.ru": [21715], "www.youtube.pt": [18800], "blog.epa.gov": [4929], "docs.syncthing.net": [15797], "www.youtube.pr": [18800], "powerlinemanmag.com": [13049], "finance.democrats.org": [4338], "collabora.tv": [2024], "www.getdigital.fr": [6558], "m.mumr.co": [2024], "tldrlegal.com": [15887], "101weiqi.com": [17], "myra.gov": [10823], "prudentbear.com": [13228], "www.crikey.com.au": [3792], "www.jiveon.com": [8599], "tameflow.zone": [2024], "www.csbf.nasa.gov": [10909], "buzzeff.com": [2494], "app.compendium.com": [3519], "*.caradvice.com.au": [2840], "mgtrx.net": [2024], "www.gkg.net": [6316], "www.des.ikea.com": [7962], "www.ohiostatealumni.org": [11801], "www.politie.nl": [11172], "terrie.co": [2024], "lgbtrc.usc.edu": [17366], "u1.qiyipic.com": [13354], "providertalk.com": [13064], "resources.windowsphone.com": [18436], "www4.basildon.gov.uk": [19324], "www.cybermill.com": [3964], "seth.tw": [2024], "contact.ofsted.gov.uk": [21231], "irs01.com": [20584], "unibet.com.au": [17268], "trapwi.re": [2024], "irmd.ru": [2024], "appstream.debian.org": [4263], "kmpl.co": [2024], "ssvy.co": [2024], "netloan.southwark.gov.uk": [15264], "graasmilk.net": [6862], "us.elsevierhealth.com": [5179], "www5a.wolframalpha.com": [18487], "*.itu.dk": [7843], "its-helpdesk.hkuspace.hku.hk": [20387], "monitor.qcloud.com": [13346], "a.wdym.in": [2024], "www.cantheyseemydick.com": [2805], "www.altinget.dk": [940], "*.theserverexpress.com": [14672], "suburban.nl": [15634], "ausgraben.com": [2024], "s.g-z.one": [2024], "gettext.wesnoth.org": [18298], "apps-planet.mcafee.com": [10129], "zmq.gm.163.com": [50], "oxfd.in": [2024], "ssl.fark.com": [5653], "focus.ti.com": [16225], "link.kfsm.com": [2024], "www.news.am": [21124], "search.debian.org": [4263], "*.syncboss.com": [15791], "jonathan.porta.codes": [12979], "twnprm.co": [2024], "roomscheduler.williams.edu": [18408], "mrkd.at": [2024], "test.wandt.us": [2024], "labs.revcontent.com": [21642], "target.zedo.com": [18906], "forum.ovh.ie": [12205], "www.afcyhf.com": [3484], "*.golang.org": [6774], "www.ivarch.com": [8412], "doubleclick.net": [4710], "www5.smartadserver.com": [15049], "img.t.sinajs.cn": [14909], "www.anarchistnews.org": [1033], "events.venturebeat.com": [17700], "sho.rten.us": [2024], "www.btcgear.com": [1589], "connect.linaro.org": [9377], "forum.librivox.org": [9334], "pop.sfu.ca": [14708], "stat.heiseshop.de": [7288], "ihgmerlin.com": [7741], "www.rent2buy.com.br": [7339], "pppr.ch": [2024], "*.pflag.org": [12273], "www.nuimagemedical.com": [11604], "myoptplussecure.com": [10855], "www.oxfordtoday.ox.ac.uk": [17359], "www.livelingua.com": [9514], "donate.greenpeace.org": [6920], "support.untangle.com": [17454], "ebar.ohiobar.org": [11800], "edin.com": [2024], "vim.io": [2024], "online-offshore.lloydstsb.com": [9536], "www-zeuthen.desy.de": [4386], "memcenter.maximintegrated.com": [10108], "www.sparkfun.com": [15291], "l.harryjms.uk": [2024], "www.cefbuilds.com": [2938], "www.cryptonit.net": [3874], "iranne.ws": [2024], "tucowsdomains.com": [16887], "bugzilla.sheppyware.net": [14761], "5eh.it": [2024], "rea.link": [2024], "ma.ttmuller.com": [2024], "www.oxfordwebapps.co.uk": [21328], "www.google-melange.com": [6826], "bitrise.io": [19393], "e.huffpost.com": [7603], "hr.919.jp": [2024], "highfidelity.io": [7405], "zdravie.pluska.sk": [12870], "js-fr.thinksteroids.com": [9750], "www.afsp.org": [342], "recruit.microad.co.jp": [10376], "exif.alanreed.org": [19130], "mzwrit.es": [2024], "awrld.nl": [2024], "cf.addthis.com": [626], "kanaga.ml": [2024], "*.artinstitutes.edu": [16251], "intranet.cs.hku.hk": [20387], "bruju.la": [2024], "www.xpda.com": [22655], "www.netnewscheck.com": [11240], "cnry.io": [2024], "*.spreadshirt.es": [15371], "socrata.com": [15149], "nflx.it": [2024], "cdn-img.fimfiction.net": [5801], "rubygems-china.oss.aliyuncs.com": [19143], "trackalyzer.com": [16703], "democracy.ipswich.gov.uk": [8348], "knofly.zone": [2024], "clinicalproteomicsjournal.biomedcentral.com": [1931], "vr.se": [17597], "demo.illuminateed.com": [20494], "www.whatismyreferer.com": [22575], "cityofchicago.org": [3186], "dt.ietf.org": [7725], "umail.iu.edu": [8069], "btnt.co": [2024], "forms.sophos.com": [15224], "ad.epochtimes.com": [5314], "s.tonns.net": [2024], "www.omguk.com": [11670], "spn.sr": [17575], "www.national-lottery.co.uk": [11110], "*.adtraxx.de": [694], "lists.cam.ac.uk": [17332], "cms.cern": [2588], "gozluk.hizlisaat.com": [7437], "townnews365.com": [16689], "nccc.nl": [11171], "maven.alfresco.com": [850], "ssl6.ovh.net": [12205], "www.verkkouutiset.fi": [17719], "phonostar.de": [21399], "www.iter.org": [7849], "a4.itc.cn": [8401], "bugzilla.instantbird.org": [8187], "partitopirata.ch": [12314], "help.gitbook.com": [6655], "reality.inspiracie.etrend.sk": [5383], "mailman.nanog.org": [11529], "guerrillast.at": [2024], "free.bigstockphoto.com": [1895], "dju.tips": [2024], "soply.co": [2024], "s.parks.today": [2024], "julien.work": [2024], "hu.support.tomtom.com": [16615], "interopros.beltelecom.by": [1801], "www.pizzahut.co.uk": [12786], "join.tv": [8630], "on.spyhi.com": [2024], "system.vovici.com": [17938], "crypteron.com": [3847], "www.pointshound.com": [12897], "go.s1008.ru": [2024], "websitegrowers.com": [18243], "lalone.us": [2024], "fsu.navs.me": [2024], "torrentfreak.com": [16651], "nervohn.tk": [2024], "17e9e45f-9b24-d40c-4908-d4c83d8bf1e1-rum.cdnvideo.ru": [19536], "tech-recipes.com": [16073], "ederic.ph": [2024], "beacon.fastly.com": [5676], "s8.postimg.org": [13024], "behance.net": [1786], "bedis.eu": [1773], "osantd.osa.cuhk.edu.hk": [2704], "apps.stanford.edu": [15448], "go.pedrozv.sk": [2024], "cdn.lsistatic.com": [9278], "*.freshmilk.de": [6184], "copay.io": [19684], "th.aliexpress.com": [854], "bratsk.startsmile.ru": [21980], "coquillita.co": [2024], "ddsply.co": [2024], "umbc.worldcat.org": [18536], "s115.cnzz.com": [3328], "2fa.in": [2024], "tnxt.nl": [2024], "www.tron-delta.org": [15921], "uolcb.co": [2024], "smashfly.com": [15065], "pln.bitcurex.com": [2011], "www.intelrad.com": [8222], "invenio-software.org": [8307], "www.cafemakers.com": [2732], "blog.toofishes.net": [16625], "craftstats.com": [3749], "tenvoi.com": [79], "listas.us.es": [17502], "heroes.rsf.org": [13518], "www.map.cam.ac.uk": [17332], "ftp.cryptopp.com": [3879], "greekmac.mcdonalds.ru": [20941], "www.isidewith.com": [20466], "ipxe.org": [7804], "dongenergy.dk": [4068], "www.stadtwerke-bamberg.de": [15433], "sredneuralsk.beeline.ru": [1778], "go.esport42.fr": [2024], "mavi.me": [2024], "isspix.com": [2024], "vladimir.biglion.ru": [19375], "www6.homedepot.com": [7479], "ripe62.ripe.net": [13953], "wiki.tocco.ch": [16600], "home.truelife.com": [16842], "www.immobilienscout24.de": [8008], "witness.guardian.co.uk": [6982], "*.dreamstime.com": [4750], "experiencedays.co.uk": [5496], "tkno.pw": [2024], "polkadb.com": [2024], "chicagodj.co": [2024], "tdwu.eu": [2024], "common-lisp.net": [3487], "s39.cnzz.com": [3328], "willowgarage.com": [18409], "mvp.to": [2024], "tlgrm.ru": [22221], "mdm.portal.srgssr.ch": [21957], "upgrade.vhs-karlsruhe.de": [22458], "sympa.inria.fr": [8161], "senderscore.org": [14642], "www.vpncompare.co.uk": [17589], "www.capitaloneconnect.*": [2830], "jeth.tk": [3536], "gonk.io": [2024], "unbubble.eu": [22366], "leyka.te-st.ru": [22103], "tloc.al": [2024], "support.ancestry.com": [1035], "www.rsl.ru": [21686], "media-cdn.ubuntu-de.org": [17175], "lbnf.fnal.gov": [5741], "*.scoop.it": [14451], "rechnung.hfo-telecom.de": [7041], "www.dfn-cert.de": [4021], "*.custhelp.com": [3929], "tracking.onefeed.co.uk": [11893], "*.care2.com": [2850], "online.vodafone.co.uk": [17900], "rest.afisha.ru": [19107], "*.cruisersforum.com": [3829], "pkmd.us": [2024], "cgi.distributed.net": [4564], "helpy.ws": [2024], "help.here.com": [7325], "gutpathogens.biomedcentral.com": [1931], "www.myhappyoffice.com": [10874], "www.home.ch": [7474], "iflygo.com": [20275], "etundra.resultspage.com": [13875], "booking.rambler.ru": [13600], "codeca.mp": [2024], "compass-ssl.surface.com": [15712], "ehrw.ch": [2024], "signin.thomsonreuters.com": [16456], "support.ulule.com": [17224], "newpiratebay.co.uk": [22177], "x.loxaesmas.org": [2024], "*.zipcloud.com": [8707], "70.rkn.gov.ru": [13971], "www.tuxedocomputers.com": [16931], "survey.consumer.org.hk": [3599], "metrotransit.org": [10352], "dafz.co": [2024], "parents.williams.edu": [18408], "b2bshop.cinestar.de": [3146], "www.carezone.cz": [2859], "rfnry.org": [2024], "italerts.stanford.edu": [15448], "www.openbsdstore.com": [11957], "cdn.agbr.com": [2024], "mltbx.com": [2024], "www.path-follower.com": [12484], "eoc.empireblue.com": [19988], "blog.coresecurity.com": [3669], "l.fim-live.com": [2024], "forums.aws.amazon.com": [963], "www.telushealth.co": [16174], "images.conferences.wsj.net": [18021], "go.tutum.co": [2024], "en-sq.dict.cc": [4442], "hub.turnkeylinux.org": [16912], "b.agile.co": [2024], "go.webwonder.gr": [2024], "www.tum.de": [16896], "on.sports.dj": [2024], "osobnost.aktuality.sk": [1507], "apple.slashdot.org": [15012], "www.wag.com": [22517], "vtna.tk": [2024], "www.blogblog.com": [2122], "lbcga.co": [2024], "www.storify.com": [15564], "greenmangaming.com": [6915], "*.gametreelinux.com": [6406], "*.biz.edgesuite.net": [805], "mu.tanx.com": [22097], "preview.coop.ch": [3647], "*.ou.edu": [11721], "mbav.co": [2024], "www.ecigpros.com": [4876], "sin.tips": [2024], "kvmst.nl": [2024], "qunitjs.com": [13337], "i2.technet.microsoft.com": [10396], "slm-assets3.secondlife.com": [14527], "www.informatik.kit.edu": [8812], "xbx.lv": [2024], "hyspiri.jpl.nasa.gov": [10909], "debg.dict.cc": [4442], "chetverg.navalny.com": [11148], "nl.okcupid.com": [11809], "git27.rostrud.ru": [21677], "forgotpassword.login.vu.nl": [17608], "go.hallrecs.com": [2024], "smolenskaya.beeline.ru": [1778], "www.custodianvaults.com.au": [3930], "adk2.com": [652], "insidescience.org": [8168], "4pda.ru": [191], "tasty.network": [2024], "mail.latino.aol.com": [380], "labs-public-dl.xda-cdn.com": [22647], "subscribe.zanesvilletimesrecorder.com": [18883], "wcl.greenparty.org.uk": [6908], "www.jobs.gov.hk": [20647], "n17.fyi": [2024], "ws1.sinaimg.cn": [14910], "ir.dbr.fm": [2024], "www.swartzfiles.com": [15744], "developer.companieshouse.gov.uk": [3509], "xoll.eu": [2024], "freecode.club": [20157], "mzstatic.com": [10893], "www.transitionnetwork.org": [16745], "sh.clanmuir.net": [2024], "create.demandstudios.com": [4325], "nsvu.mvd.ru": [21055], "odb.outbrain.com": [12182], "iii.lib.cuhk.edu.hk": [2704], "bits.zujev.eu": [2024], "*.aktion-deutschland-hilft.de": [814], "2mo.in": [2024], "tapps.us": [2024], "*.irishbroadband.ie": [8353], "movie2k.nu": [10674], "pay.rapida.ru": [13619], "hhphoto.us": [2024], "tutfist.co": [2024], "homa.ge": [2024], "dropscafe.top": [2024], "*.sarava.org": [14361], "ethicalhacker.net": [5369], "lzno.tk": [2024], "admin.names.co.uk": [11064], "newz-of-the-world.com": [10322], "wx.qq.com": [13329], "murv.us": [2024], "login.unizar.es": [17441], "anycommson.wirral.gov.uk": [18461], "lif.sh": [2024], "www.tawk.to": [16043], "www.local.ch": [9548], "www.doublefine.com": [4704], "tesla-road-trip.infinum.co": [20526], "r24820145.sync.app.asana.com": [1265], "vonwong.co": [2024], "consult.eastsussex.gov.uk": [19938], "forum.citilink.ru": [19594], "appsecute.com": [1165], "ncbdd.mvd.ru": [21055], "doodle.tips": [2024], "buaa.blogs.bucknell.edu": [2406], "rit.wiki": [2024], "cdimage.debian.org": [4263], "mutterschaftsgeld.de": [10774], "bsqrd.co": [2024], "www.geekfaeries.fr": [20219], "www.mall.pl": [9934], "mydiscussion.gofrugal.com": [6760], "nebrija.com": [11166], "advi.so": [2024], "sparkweb.org.uk": [2024], "templates.alhur.es": [19137], "betterplace.org": [1857], "spectrum.com": [15318], "vll-minos.bl.uk": [2358], "www.savannah.vc": [14371], "fcbcentral.me": [2024], "nvxie.taobao.com": [16015], "pte.bz": [2024], "service.qq.com": [13329], "ib.snssdk.com": [21884], "analystone.com": [1030], "biysk.startsmile.ru": [21980], "*.nine.ch": [11452], "hostedservices.panopto.com": [12394], "go.eset.com": [5347], "ext.re": [2024], "yatharth.tk": [2024], "www.lotusoriginals.com": [9625], "www.panovski.me": [12397], "cut.debian.net": [4261], "go.nsychev.ru": [2024], "joytun.es": [2024], "weibopay.com": [18280], "rpmfusion.org": [14056], "gkcr.de": [2024], "audiothe.me": [2024], "cdn.playwire.com": [12848], "felg.ch": [2024], "cjcl.oxfordjournals.org": [12222], "verv.mx": [2024], "lists.spdx.org": [14220], "glassdoor.com.au": [20261], "xjobs.brassring.com": [19443], "www.leroyfcpress.com": [9271], "marcrogers.org": [9990], "bit.tai.life": [2024], "manage-v5.smartadserver.com": [15049], "yelp.it": [18766], "www.johnshopkins.edu": [8626], "psv.media": [2024], "www.docs.tw": [19860], "7m.cl": [2024], "1.ecu.edu.au": [2024], "www.baumglueck.de": [19330], "solihull.greenparty.org.uk": [6908], "cans.ec": [2024], "beun.io": [2024], "reviews.reviewboard.org": [13900], "ph.ige.ch": [15759], "kronis.in": [2024], "loebs.clothing": [2024], "go.mimumimu.net": [2024], "api.ranking.rakuten.co.jp": [13594], "team.enaza.ru": [5222], "l1.de": [2024], "*.readthedocs.io": [13671], "s2.ltrbxd.com": [9281], "malwaretracker.com": [9939], "glry.io": [2024], "www.virtkick.com": [17830], "images.e.debenhams.com": [19794], "img6.wlresources.com": [22604], "cybersecuritychallenge.org.uk": [3948], "raven.im": [2024], "www.facultydiversity.org": [5617], "bracu.ga": [2024], "www.leonidvolkov.ru": [20810], "webmail.zen.co.uk": [18913], "piratebayblocked.com": [21522], "fldta.uk": [2024], "postoffice.co.uk": [13002], "www.snellman.net": [15099], "blog.sitelock.com": [14934], "*.njedge.net": [10973], "www.morrisons-corporate.com": [10640], "support.ubnt.com": [17164], "komikz.ru": [20745], "contentful.com": [3616], "store.corsair.com": [3688], "olv.la": [2024], "image2.pubmatic.com": [13241], "cww.oxfordjournals.org": [12222], "scientificamerican.com": [14446], "shortlist.com": [14795], "www.donottrack-doc.com": [4600], "www.fbme.htwk-leipzig.de": [7596], "illnz.link": [2024], "www.simflight.*": [14869], "zerogate.tk": [22717], "www.nic.ar": [10957], "estante.tk": [2024], "shurochka.friday.ru": [20175], "groupupnow.co": [2024], "trasie.ca": [2024], "www.genesis-technologies.com": [6512], "pub.dreamboxcart.com": [4746], "www.nic.ac": [11420], "howtoforge.de": [7580], "res.smzdm.com": [15081], "two42.co": [2024], "blog.anthonycameron.com": [1100], "mail.1x.com": [67], "www.bitterwallet.com": [7555], "media.ztat.net": [18877], "buckngoodti.me": [2024], "arretsurimages.net": [19236], "www.fefe.de": [5728], "fs.balnet.ru": [19310], "www.citrusbyte.com": [3183], "rabbitmq.com": [13548], "static.seetickets.com": [14609], "katedra.skolaonline.cz": [21852], "ics.ws.hmrc.gov.uk": [7076], "segs.btrll.com": [2339], "bolig.sparebank1.no": [21922], "piratebays.co": [22176], "tavr.es": [2024], "bglove.co": [2024], "gsnccp.org": [2024], "www.sell2uk.co.uk": [21776], "rohieb.name": [14004], "pwc.nz": [2024], "www.craftysyntax.com": [3751], "go.glg.it": [2024], "crossdresser-forum.de": [3814], "www.spyshelter.com": [15392], "www.oswatch.net": [11717], "courthousenews.com": [3718], "htgb.co": [2024], "hsfy.nl": [2024], "savoryou.net": [2024], "otmz.se": [2024], "download.alipay.com": [864], "visit.pixcept.de": [12770], "effi.org": [5097], "surfl.in": [2024], "southafrica.usembassy.gov": [22406], "flycl.ps": [2024], "nodes.dk": [11493], "drib.in": [2024], "web.nvd.nist.gov": [11089], "www.pythonclock.org": [13316], "pcp.ch": [12528], "acluva.org": [310], "eda.friday.ru": [20175], "apps.splash.riverbed.com": [13964], "cwspod.com": [2707], "reg.cologne-cfd.de": [3437], "www.freecallscanada.co.uk": [20866], "jamendo.com": [8512], "mbrowser.yandex.kz": [18743], "bell-labs.com": [1793], "s.theliel.es": [2024], "dn.com": [4044], "mander.com": [2024], "fb.mljba.fr": [2024], "joycasino5.com": [20654], "touch.news.mail.ru": [9891], "email.visiblebody.com": [17859], "zipf.co": [2024], "icn.ms": [2024], "s3.india.com": [8065], "www.mov24hr.com": [18758], "www.assoc-amazon.ca": [1309], "foi.holyrood.com": [20393], "www.freegeoip.net": [6153], "www.festival.london2012.com": [9584], "rediris.es": [13722], "avc.lu": [2024], "adr.org": [19086], "vote.auto.ru": [19276], "sjs2.sinajs.cn": [14909], "falcon-uav.com": [5629], "g.ahmad1996.com": [2024], "on.tdev.co": [2024], "go.ft.la": [2024], "sunxi.org": [9416], "portal.walthamforest.gov.uk": [18061], "micampuscompact.org": [10374], "www.boell.org": [19422], "download.aircrack-ng.org": [794], "login.oca.ucsc.edu": [17390], "shop.performancealley.com": [12601], "fightforthefuture.org": [5770], "vpstudentsblog.utoronto.ca": [17427], "www.medikforum.ru": [20954], "www.transportation.gov": [16757], "levesoninquiry.org.uk": [9286], "fajit.as": [2024], "www.iatspayments.com": [7674], "www.prisonphonejustice.org": [13126], "app.hskampus.de": [7588], "www.crypto.cat": [3848], "portal.skolaonline.cz": [21852], "ohaw.co": [2024], "helpdesk.uic.edu": [17321], "qr2it.us": [2024], "thailand.allianz.com": [19151], "k.kbros.com.br": [2024], "intellipoker.bg": [20547], "mpornpass.com": [10708], "de-sk.dict.cc": [4442], "www.ouaza.com": [12170], "mcmaster.ca": [10135], "res.wechat.com": [18116], "moje.zuno.sk": [18862], "cache.vevo.com": [17566], "quantserve.com": [13391], "spanish.101domain.com": [14, 15], "abonent.redcom.ru": [21615], "*.manitu.de": [9965], "*.voxcdn.com": [17942], "static.atm.youku.com": [18804], "*.llnl.gov": [9193], "www.osgeo.org": [11707], "zun.ms": [2024], "*.ds01.swisscom.com": [15761], "*.itespresso.fr": [11238], "devblog.warthunder.com": [22528], "*.data.gov.au": [4173], "download.jabberd.org": [8489], "cdn.discogs.com": [4529], "l.dnetguru.com": [2024], "remote.rockstargames.com": [13997], "schizophreniabulletin.oxfordjournals.org": [12222], "ru.xhamster.com": [18606], "interface.bilibili.com": [1904], "bgifx.co": [2024], "www.microspot.ch": [3647], "jeffhappe.com": [2024], "momente.migros.ch": [10417], "reddl.es": [2024], "cdn.bootcss.com": [2232], "yangquan.jd.com": [8434], "www.afcd.gov.hk": [7059], "rankingdigitalrights.org": [21580], "thishome.rocks": [2024], "buildxp.deathmask.net": [4254], "*.tlsfun.de": [16588], "vgd.lt": [2024], "secured.leeds.gov.uk": [20799], "www.mongodb.com": [10591], "rnrwheels.com": [13497], "m9.baidu.com": [1641], "go.wilko.ca": [2024], "coub.com": [3698], "glas.jp": [2024], "kineticrev.me": [2024], "qwk.us": [2024], "j2dw.co": [2024], "rpayment.hk01.com": [7056], "nla.gov.au": [11109], "paste.sh": [12473], "badges.gitter.im": [6666], "enroll-amr.moodys.com": [21020], "www.gratipay.com": [6882], "blog.vungle.com": [17970], "fixmystreet.com": [5874], "*.mochimedia.com": [10546], "b.tmor.jp": [2024], "4vu.ca": [2024], "*.highqsolutions.com": [7403], "secure.voyage-prive.co.uk": [17945], "*.subscribeonline.co.uk": [4716], "customers.thomsonreuters.com": [16456], "www.solicitor-concierge.com": [15186], "www.reuters.com": [13893], "www.scans.io": [14398], "signups.braintreepayments.com": [2292], "www.journal-news.net": [8653], "theeroticreview.com": [16296], "mylivechat.com": [10853], "bugs.anwiki.com": [19210], "hmcn.tk": [2024], "www.mozfr.org": [21030], "fiap.me": [2024], "errata.software-univention.de": [17315], "x.gusiev.com": [2024], "vybory.openrussia.org": [12077], "url.oak.is": [2024], "4sqmob.com": [2024], "lvi.re": [2024], "f4a.tv": [2024], "eyeu.snssdk.com": [21884], "v2cigs.com": [17548], "cdn.lifehacker.ru": [20836], "lung.ca": [2808], "omsk.tpprf.ru": [22260], "static.horizon.tv": [22386], "static.mydealz.de": [10800], "u.bababa.co": [2024], "delivery.pbgrd.com": [12525], "aba.re": [2024], "mars.utm.edu": [17426], "www.fylde.gov.uk": [6270], "avale.re": [2024], "l43.it": [2024], "conta.cc": [2024], "blog.slate.fr": [15014], "conta.co": [2024], "jabber.dk": [8484], "il0veu.cf": [2024], "onelove.im": [2024], "blog.cms.gov": [19630], "www.sourceware.org": [15252], "slrg.tocco.ch": [16600], "estr.la": [2024], "wrb.uopnet.plymouth.ac.uk": [12873], "healfi.es": [2024], "support.techxpress.net": [16087], "www.t-mobile.co.uk": [15834], "epop.life": [2024], "varon.is": [2024], "scadacs.org": [14144], "short.ax.lt": [2024], "si1.rgstatic.net": [13481], "newclimateforpeace.org": [11343], "www.si.se": [14178], "dhnow.org": [2024], "appres.nav.no": [21093], "www.capita-software.co.uk": [19506], "womenintest.com": [2024], "lo.libreoffice.org": [9327], "link.gurman.mk": [2024], "my.hero.vc": [2024], "rscar.in": [2024], "forge.ipsl.jussieu.fr": [8706], "www.csie.org": [2685], "oss.nl": [11172], "wiki.namecoin.info": [11062], "kursk.auto.ru": [19276], "www.samgentle.com": [14320], "lets.govda.id": [2024], "build.slashdot.org": [15012], "nismonline.org": [11120], "www.embed.ly": [5188], "northhertfordshire-self.achieveservice.com": [19051], "eu-securem.ikea.com": [7962], "localsaving.co": [2024], "affiliates.websharks-inc.com": [18181], "hxzj.biligame.com": [1903], "w.leopoly.com": [2024], "stag.amediateka.ru": [19186], "ispserver.ru": [20589], "cdn.flipboard.com": [5905], "n-tv.de": [21080], "swww35.glam.com": [6679], "exchange.btcc.com": [2400], "www.dash-player.com": [4154], "www.amnesty-in-bewegung.de": [1001], "static.springer.com": [15380], "www.velox-project.eu": [17689], "wauland.de": [18104], "rothaconference.leeds.ac.uk": [17403], "www.gearworkstire.com": [6469], "support.malwarebytes.com": [9940], "fsv.link": [2024], "www.comodo.net": [3507], "media.andersonvalleypost.com": [4980], "atheists.org": [1338], "superevr.com": [15693], "www.beej.us": [19344], "www.slipplate.com": [14193], "downthemall.net": [4718], "file.dimonvideo.ru": [19840], "vin.auto.ru": [19276], "www.vanlanschot.com": [17640], "www.dnscurve.net": [4054], "*.tradenetworks.com": [16711], "trustsealinfo.websecurity.norton.com": [11545], "s24.cnzz.com": [3328], "hie-isolde.web.cern.ch": [2588], "addons.palemoon.org": [12370], "cmispublic.walsall.gov.uk": [22523], "www.registryrocket.com": [13798], "www.wholefoodsmarket.com": [18360], "kochava.com": [8963], "www.donate.acs.org": [974], "flightopportunities.nasa.gov": [10909], "m-amail.centrum.cz": [19547], "recs.richrelevance.com": [13927], "sempervideo.de": [14634], "link.sapatos.no": [2024], "trac.openstreetmap.org": [12015], "*.usnautic.com": [17143], "blog.fastmail.com": [5677], "c0.nrostatic.com": [21189], "*.bluecava.com": [2142], "hkyantoyan.com": [7074], "ekonomika.sme.sk": [14198], "glasscraftexpo.com": [6682], "www.arlanda.se": [1225], "www.f5.com.cn": [5536], "identity.uchicago.edu": [17334], "www.land-der-ideen.de": [9153], "www.mxcursos.com": [9828], "cdn.teads.tv": [16059], "campwe.st": [2024], "sladkovo.admtyumen.ru": [19082], "hey.nl": [2024], "commonplacebooks.com": [3491], "dk.godaddy.com": [6755], "elderscrollsonline.com": [5135], "aspha.lt": [2024], "www.thesafety.us": [16313], "images4.bovpg.net": [2269], "snacksize.it": [2024], "www.factoryhomesale.com": [5616], "help.scribblelive.com": [14474], "www.papermart.com": [12409], "img1.glassdoor.co.in": [20259], "wifipartners.itsc.cuhk.edu.hk": [2704], "img.thalia.ch": [16244], "chinoise.migros.ch": [10417], "assets.sky.com": [14989], "i-hab.it": [2024], "l.shiney.com": [2024], "naturalbox.tk": [2024], "potrebcred.utb.ru": [17538], "www.teamtailor.com": [16068], "p.aizzard.net": [2024], "www.sss.gov": [17105], "www.trycelery.com": [16874], "dca.xyz": [2024], "xjtacheng.jd.com": [8434], "img8.wlresources.com": [22604], "m.arket.me": [2024], "cockpit.m-budget.migros.ch": [10417], "dbry.uk": [2024], "wander.gl": [2024], "encs.dict.cc": [4442], "paginazero.com.br": [12363], "vikingvpn.com": [17798], "www.awsinsider.net": [433], "balla.cc": [2024], "hge.me": [2024], "cdn.ipip.net": [20570], "arzamas.biglion.ru": [19375], "itservices.webtrends.com": [18264], "txpo.li": [2024], "s.brush-up.jp": [2024], "psg.to": [2024], "k2ne.ws": [2024], "www.digitalegesellschaft.de": [4491], "gov.government-nnov.ru": [20295], "cdn.mommyish.com": [908], "webmercs.com": [4163], "s.coit.es": [2024], "bulletinmessenger.net": [2432], "www.pokerstarspartners.com": [21453], "thftrs.co": [2024], "clks.it": [2024], "docs.scribus.net": [14478], "alexlig.ht": [2024], "www.librivox.org": [9334], "reuffel.de": [21639], "tsprt.co": [2024], "graph.facebook.com": [5609], "prbb.in": [2024], "lnk.ph": [2024], "ulan-ude.startsmile.ru": [21980], "ukw.fm": [10322], "psprt.mx": [2024], "crdev.us": [2024], "www.theproxypirate.pw": [22174], "vdi.dfs.un.org": [17057], "blog.golflink.com": [4325], "www.logincasino.com": [20871], "cl1.cc": [2024], "www.daniweb.com": [4134], "gla.li": [2024], "wya.ttlew.in": [2024], "rabbitporno.com": [13549], "vlrth.co": [2024], "static4.twilio.com": [16948], "www.spdx.org": [14220], "akur.us": [2024], "frkt.in": [2024], "blackpearlpdm.com": [2059], "dwly.eu": [2024], "daniweb.com": [4134], "www.argentdata.com": [19229], "hkw.de": [7072], "monphv.primus.ca": [13112], "pledgefor.life": [2024], "dscm.fi": [2024], "missile.preyproject.com": [13091], "www.naturalskinshop.com": [11139], "static-cdn.vouchercodes.co.uk": [22502], "discover.aol.com": [380], "fruitninja.com": [6214], "janestreet.com": [8522], "eventmanagement.wustl.edu": [18089], "beijingguan.jd.com": [8434], "www.mywell-being.com": [10842], "tmblr.co": [16590], "c3noc.net": [2515], "s-id.in": [2024], "emrld.co": [2024], "www.autotools.io": [1460], "www.marktplaats.nl": [10034], "*.dab-bank.de": [3992], "h.fastcompany.net": [5670], "i2.cs.hku.hk": [20387], "hashnest.com": [7219], "dpmbappsqa.lowes.com": [9645], "www.weswap.com": [18123], "survey.sans.org": [14128], "iwill.org.uk": [20618], "cards.zapsibkombank.ru": [18890], "k6s.me": [2024], "admin.showapi.com": [21815], "blogs.zoho.jp": [18983], "eidm.cms.gov": [19630], "fixstars.com": [20114], "trainretainsell.axonify.com": [1502], "accesd.affaires.desjardins.com": [4378], "shap.es": [2024], "google.com": [6824, 6830, 6831], "www.thebluealliance.com": [16402], "klnyt.us": [2024], "sourceforge.jp": [15241], "portland.freedesktop.org": [6102], "opyd.net": [2024], "sapext.www.uprr.com": [22392], "js1.t.sinajs.cn": [14909], "www.threatmatrix.com": [22199], "secure.datelinknetworks.com": [19769], "bld.cm": [2024], "1.play-asia.com": [12828], "blog.bankinter.com": [1674], "go.bantool.com": [2024], "r24820166.sync.app.asana.com": [1265], "sygi.tk": [2024], "he.com": [7633], "mdiva.aktuality.sk": [1507], "cac.cas.usuhs.edu": [17132], "www.youtube.mx": [18800], "ppmobileimages.lowes.com": [9645], "debet.east.ru": [19935], "businesscare.tdc.dk": [15862], "liberty-human-rights.org.uk": [9315], "sieve2.schmidtcom.de": [14419], "noginsk.beeline.ru": [1778], "acs.org": [974], "realtimeboard.com": [21604], "clicklogger.rm.uol.com.br": [17079], "on.civis.ca": [2024], "l.dezaiso.jp": [2024], "www.conferences.uillinois.edu": [17034], "help.crazyegg.com": [3762], "andover.edu": [12653], "kurilsk.sakh.com": [21719], "cshort.co": [2024], "pokeratl.as": [2024], "secure.rosehosting.com": [14022], "mini.opera.com": [12086], "gravity4.com": [6885], "rdy.to": [2024], "*.eduroam.gr": [6897], "www.schraubenluchs.de": [21746], "webapps.lsa.umich.edu": [17354], "integraatio.bel.fi": [1536], "kemped.net": [2024], "www2.hsbc.co.uk": [20422], "kino.search.ch": [14504], "consultwebs.com": [3597], "ath.tw": [2024], "forum.hska.info": [20437], "payeer.com": [12507], "www.powerbuy.co.th": [13044], "box.unet.by": [22367], "fadhi.la": [2024], "bgevent.in": [2024], "vigruzki.rkn.gov.ru": [13971], "circanews.com": [3157], "intranet.wku.edu": [22602], "circlejtp.me": [2024], "mail.imgbox.com": [7997], "g-wijzer.nl": [2024], "pa.westlancs.gov.uk": [22568], "amigo.mail.ru": [9891], "www.foreignpolicy.com": [6002], "desktop.jitsi.org": [8596], "kununu.com": [9052], "c.ronz.io": [2024], "www.dpfoc.com": [4728], "enum.ru": [5292], "property.gov-murman.ru": [20293], "www.neighbourhoodlink.co.uk": [21101], "www.avira.com": [1474], "www.rmcybernetics.com": [13853], "www.isocpp.org": [7833], "t.teads.tv": [16059], "kwsm.co": [2024], "patreon.thecthulhu.com": [16403], "b.qr.ae": [2024], "legacy.mapillary.com": [9980], "admin.sitelock.com": [14934], "proxy.sh": [13225], "l.ooyala.com": [11936], "res.heraldm.com": [7320], "www.localsearch.ch": [9554], "compass.xbox.com": [18639], "www.lighttpd.net": [9362], "d204.co": [2024], "joycasino6.com": [20654], "www.mb.kyivstar.ua": [9067], "aclfest.co": [2024], "roseq.co": [2024], "pogoda.yandex.by": [18739], "si1.twimg.com": [16949], "cashco.co": [2024], "go.cahill.io": [2024], "rcantin.es": [2024], "21.cf": [2024], "paris.mheducation.com": [20975], "static.smallworldlabs.com": [15046], "oulaloum.espiv.net": [20021], "21.co": [95], "www.webento.com": [18210], "pbsz.ebank.cmbchina.com": [2639], "www.changeip.com": [3001], "uktools.aol.co.uk": [379], "on.nhsfife.org": [2024], "secure.stage-gettyimages.com.au": [6604], "extr.tv": [2024], "hungryforchange.tv": [7624], "buyiphone4.apple.com": [1151], "ilj.oxfordjournals.org": [12222], "e13.xhamsterpremiumpass.com": [18607], "winpcap.org": [18418], "100experienc.es": [2024], "www.xssposed.org": [18626], "my.copilotgps.com": [19686], "dosequ.is": [2024], "tor.thecthulhu.com": [16403], "mywindo.ws": [2024], "x.wamyers.com": [2024], "forum.bandisoft.com": [1664], "auto.centrum.sk": [19548], "var.thejh.net": [8523], "goligers.travel": [2024], "cdn.zeeagency.com": [18907], "javascriptmvc.com": [8541], "style.com": [15615], "postdocs.stanford.edu": [15447], "help.roboform.com": [13981], "pages.uv.es": [17544], "s7.static.hootsuite.com": [7497], "workar.oxfordjournals.org": [12222], "kong.si": [2024], "www.intern.belwue.de": [1802], "www.weusecoins.com": [18125], "c4.hitravel.xyz": [2024], "jira.sky.de": [14990], "go.benjguin.com": [2024], "pyco.co": [2024], "lietome.friday.ru": [20175], "nzyn.at": [2024], "www.spartafx.com": [15295], "form.cz.mbank.eu": [9733], "cf.8it.me": [2024], "h2bc.co": [2024], "www.f.switchadhub.com": [15764], "mysky.sky.com": [14989], "static4.glassdoor.com": [6683], "l.icilalune.net": [2024], "*.challengepost.com": [2992], "northwest.greenparty.org.uk": [6908], "register.sky.com": [14989], "dizaineriai.lt": [4578], "democracy.kent.gov.uk": [8867], "www.newamerica.org": [11342], "biomedgerontology.oxfordjournals.org": [12222], "audiko.net": [1384], "artistna.me": [2024], "wa.hna.de": [2024], "hmnc.nl": [2024], "link.anonima.ru": [2024], "openas.org": [12061], "woobox.com": [18506], "support.linaro.org": [9377], "www.balnet.ru": [19310], "pastebin.geany.org": [6463], "surf.nl": [14260], "l.jshultz.co": [2024], "r.perl6.com": [2024], "www.islaminspanish.org": [8369], "vdd.me": [2024], "aof.anadolu.edu.tr": [1029], "vfalun.se": [2024], "anakat.info": [2024], "*.psnt.ebay.eu": [4866], "pjryan.co": [2024], "gradian.info": [2024], "evntsrc.ca": [2024], "w.forteds.com": [2024], "rising.jhu.edu": [16370], "ehengshu-filebucket.oss.aliyuncs.com": [19143], "l.baravalle.com": [2024], "fastly.asana.com": [1265], "study.bz": [2024], "eresources.jjc.edu": [8452], "s.fxpreview.com": [2024], "lati.in": [2024], "sbill.co": [2024], "www.soe.ucsc.edu": [17390], "qa.coreboot.org": [3670], "oplata.ubrr.ru": [17173], "s2t2.co": [2024], "process-one.net": [13166], "svyaznoy.ru": [22053], "wiki.scribus.net": [14478], "fahrkarten.bahn.de": [1640], "developer.nike.com": [11440], "sankatyadvisors.com": [14349], "a.badcheese.com": [2024], "toztest.tocco.ch": [16600], "www.nyc.gov": [11332], "structuredabstracts.nlm.nih.gov": [11090], "webmail.fastwebhost.com": [5667], "afisha.sakh.com": [21719], "inkubator.yaplakal.com": [22668], "bgrt.co": [2024], "*.codefuel.com": [3367], "anton.ozlabs.org": [12228], "givv.co": [2024], "tshirt.bargains": [2024], "fgroa.st": [2024], "hoosie.rs": [2024], "cptr.me": [2024], "cdn.embedly.com": [5191], "registration.fsfe.org": [5591], "www.ilogo.in": [7758], "*.gannettlocal.com": [6435], "wokon.in": [2024], "*.racket-lang.org": [13558], "on.ufc.com": [2024], "secure.maxcdn.com": [10102], "profiles.nlm.nih.gov": [11090], "nrc.nl": [10995], "www.trellian.com": [16783], "www.hitchhq.com": [7429], "zuva.tk": [2024], "appstore.blackphone.ch": [2066], "chp.mn": [2024], "www.nicotine-anonymous.org": [11429], "rtnews.fyi": [2024], "www.revolet.com": [13904], "lurkmore.so": [9683], "portal.isoc.org": [7831], "go.jjfu.com": [2024], "link.kfor.com": [2024], "wjusd.illuminateed.com": [20494], "owine.me": [2024], "orel-region.auto.ru": [19276], "1mpul.se": [2024], "blogs.secondlife.com": [14527], "evre.me": [2024], "www.newyorkcasual.com": [11391], "cdiari.es": [2024], "sapato.ru": [14358], "dcboee.org": [4004], "croc3.tk": [2024], "www.hacking.ventures": [7140], "comdidvr.cdnvideo.ru": [19536], "asadotzler.com": [19246], "testedthis.com": [2024], "nachtjeweg.nl": [7460], "local.brent.gov.uk": [2324], "go.borealis.cx": [2024], "www.heatmap.me": [7277], "itch.itcher.com": [2024], "blmbra.in": [2024], "link.fox8.com": [2024], "static.quto.ru": [13439], "nmaccl.com": [2024], "h2.ft.com": [5810], "bcin.me": [2024], "cmpg.in": [2024], "www.gamigo.com": [6426], "image3.thenewslens.com": [16302], "*.sapato.ru": [14358], "dl.mail.com": [9890], "*.imgix.net": [7999], "packtpub.com": [12349], "gfi.nl": [6299], "z.pnk.fr": [2024], "fperfect.co": [2024], "inpx.it": [2024], "go.kiman.me": [2024], "dk.aliloan.com": [19141], "toptax.co": [2024], "www.nooelec.com": [11505], "gic2.mycdn.me": [10866], "www.funio.com": [6243], "cilo.la": [2024], "www.dxw.com": [4811], "sl-retargeting.adsonar.com": [593], "cjon.co": [2024], "ac2.domonet.ua": [19877], "mirror.datapipe.net": [4202], "js.leadin.com": [20794], "www.kvasir.no": [9061], "px.dynamicyield.com": [4822], "ryazan.beeline.ru": [1778], "atent.co": [2024], "www.mondo2000.net": [10581], "delawareonline.com": [4304], "birdseye.cloud66.com": [19621], "pulpcentral.com": [12335], "reports.instantatlas.com": [20543], "consult.islamweb.net": [8373], "a.spot.ee": [2024], "liu.jo": [2024], "live-cdn.alpenverein.de": [19159], "launch.newsinc.com": [11376], "*.pepperjamnetwork.com": [12586], "www.imagecurl.com": [20497], "mujbiz.cz": [10728], "m.taobao.com": [16015], "35.mvd.ru": [21055], "wfall.in": [2024], "www.kat-de-paris.fr": [8829], "vadino.com": [22421], "www.pac-uk.org": [21331], "origin.www.upc.cz": [17081], "guardiansubscriptions.co.uk": [6986], "hydra.geht.net": [6493], "www.loc.gov": [9541], "premiumissuer.com": [21485], "ucsd.edu": [17012], "www.yoursav.com": [18828], "l.bebna.de": [2024], "get.koach.tv": [2024], "www.offshore.hsbc.com": [7090], "cdn.webmail.aol.com": [380], "mirror.netcologne.de": [11226], "test.balnet.ru": [19310], "youversion.com": [18801], "www.sepa.org.uk": [21783], "insit.es": [2024], "mm.taobao.com": [16015], "*.benefitsweb.com": [1808], "fcj.me": [2024], "www.fatwallet.com": [5680], "yvolve.me": [2024], "w.webguruit.com": [2024], "cdn2.sportxx.ch": [15362], "x.leafcull.com": [2024], "www.eer.ru": [19963], "help.sourcefabric.org": [15248], "*.mooc-list.com": [9791], "oag.ca.gov": [2762], "drinkwi.co": [2024], "jon.endpoint.com": [5233], "extreme.sport-express.ru": [21941], "smtp.slu.se": [14195], "www.portal-credo.ru": [21466], "support.codacy.com": [19634], "www.perimeterinstitute.ca": [21389], "clearclu.es": [2024], "mzd.bz": [2024], "www.kafanews.com": [20677], "waverley.firmstep.com": [20108], "clbrtr.com": [2024], "www.flixbus.be": [5911], "calsky.com": [2742], "jty.me": [2024], "webmail.atl.earthlink.net": [4997], "hackney.greenparty.org.uk": [6908], "hq.arstechnica.com": [1242], "on.omd.pt": [2024], "www.belwue.de": [1802], "penctu.psmd.plymouth.ac.uk": [12873], "bitly.myhaus.us": [2024], "aidswa.lk": [2024], "static.tofour.net": [16596], "api.addthis.com": [626], "s.int.lv": [2024], "planete.mozfr.org": [21030], "mobde3-cmp.tk": [2024], "support.formstack.com": [6023], "digitalunion.osu.edu": [11797], "js.yousuu.com": [22694], "us.markbillingham.com": [20926], "scotpho.nhsnss.scot.nhs.uk": [10953], "slots.tokenly.com": [22229], "alert.wpm.neustar.biz": [11320], "vote.usa.gov": [17110], "qlink.me": [2024], "scrambl.is": [14464], "guifi.net": [6992], "www.youneedabudget.com": [18798], "bbcchildreninneed.co.uk": [1525], "centrum.cz": [19547], "m.megamozg.ru": [20957], "bookshop.iseas.edu.sg": [7826], "s.glbimg.com": [6686], "emergency.uic.edu": [17321], "pcbooster.com": [12262], "j1visawaiverrecommendation.state.gov": [17146], "bst2.gismeteo.ru": [6650], "www.oseems.com": [12154], "jorsika.com": [2789], "fudingguan.jd.com": [8434], "www.ncwlookup.acs.org": [974], "mcboatco.com": [2024], "fdun.tk": [2024], "www.fb-assets.com": [6180], "fidelity.com": [5760], "*.siosm.fr": [14921], "www.justeat.it": [20671], "*.alioth.debian.org": [4263], "etltest.decc.gov.uk": [19795], "via.trp.nz": [2024], "ttnk.nyc": [2024], "nrv.io": [2024], "mizz.us": [2024], "mhm.link": [2024], "record.mx": [2024], "image.newsru.com": [11388], "www.autosport.com.ru": [19278], "comic-con.org": [3467], "tom.lc": [2024], "*.nbnco.com.au": [10918], "go.zoodisk.com": [2024], "opnga.ma": [2024], "www.freebsdnews.com": [6098], "researchcompliance.stanford.edu": [15448], "myfolio.kent.ac.uk": [17402], "gss0.baidu.com": [1641], "www.tahetorn.ut.ee": [17148], "asciinema.org": [1270], "www.gloucestershire.police.uk": [6731], "www.conetix.com.au": [3568], "tracking.feedpress.it": [20082], "www.hashcrack.org": [20345], "www.act-on.co.uk": [19052], "hg.qwebirc.org": [21569], "10r45sskbzk4w4szx4kdz6qqdknvsfhergsnigi1.ipleak.net": [20571], "higuide.us": [2024], "mdola.co": [2024], "developers.acuityscheduling.com": [558], "amy.wales": [2024], "testu.be": [2024], "labevents.org": [2024], "bounce.io": [2262], "jxadio.us": [2024], "lvw4.marinsoftware.com": [10005], "h.mfcimg.com": [20972], "www.verisign.se": [17712], "www.oxfordcc.co.uk": [21325], "www.reflected.net": [13776], "expejg.stoloto.ru": [21996], "business.americanexpress.com": [979], "hcp.li": [2024], "*.wdfiles.com": [18387], "fazendas.co": [2024], "*.policemutual.co.uk": [12908], "shurgardpayment.eu": [14812], "ae.oxfordjournals.org": [12222], "auth.hitbtc.com": [7424], "www.mediafire.com": [10166], "science.nature.nps.gov": [11122], "edu.dji.com": [4029], "all-inkl.*": [872], "thegfrd.com": [2024], "www.staging.etrend.sk": [5383], "etradesbi.onlinesbi.com": [11911], "b.exoly.com": [2024], "afrinic.net": [752], "trac.i2p2.de": [7663], "www.moviemaps.org": [10676], "gloonet.works": [2024], "rother.gov.uk": [14031], "www.hertz.co.uk": [7370], "*.unvienna.org": [17306], "git17.rostrud.ru": [21677], "progllc.com": [13196], "dntdl.xyz": [2024], "shop.ubuntu.com": [17183], "pro.amara.org": [956], "store-media.nytimes.com": [11041], "halle.co": [2024], "www.crazybump.com": [3763], "dzqun.gtimg.cn": [6974], "koh.ac": [2024], "atitud.es": [2024], "widgets.magentocommerce.com": [9869], "dunkelangst.org": [4795], "videopros.com": [17776], "autodiscover.law.georgetown.edu": [6531], "gentoo-euetib.upc.es": [12939], "canadiandimension.com": [2812], "os.hiig.de": [7051], "global.fncstatic.com": [6064], "help.twitch.tv": [16961], "cren.cc": [2024], "www.listbox.com": [9463], "bracknell-forest-consult.objective.co.uk": [21225], "mheducation.com": [20975], "l.fbml.net": [2024], "www.blog.fust.ch": [6258], "email.charitywater.org": [3017], "mmdn.umontpellier.fr": [22365], "dedicatedgaming.com.au": [4278], "pureswe.at": [2024], "applyonline.leeds.ac.uk": [17403], "webassetsi.scea.com": [14148], "www.projectatomic.io": [21510], "www.websitealive4.com": [18242], "leeg.ca": [2024], "widgets.jamendo.com": [8512], "jmh.today": [2024], "cia.gov": [2612], "finte.ch": [2024], "eng.binbank.ru": [1922], "msfs.georgetown.edu": [6531], "toyne.ws": [2024], "cren.cm": [2024], "m.phiong.com": [2024], "factfiles.us": [2024], "jeca.us": [2024], "pappp.net": [12239], "cards.nusextra.co.uk": [21206], "forum.voidlinux.eu": [22489], "custom.search.yahoo.co.jp": [18730], "www.flameeyes.eu": [5880], "shiftboard.com": [14765], "ho18.majordomo.ru": [9914], "gosc.co": [2024], "sasapo.st": [2024], "kredittkort.sparebank1.no": [21922], "trowe.com": [2024], "myrednet.ch": [2024], "scn.sr": [2024], "mkk.com.tr": [9770], "*.yandex.ru": [18748], "m.webtrends.com": [18264], "www.warez-bb.org": [18072], "*.ignimgs.com": [7734], "a2.websitealive.com": [18242], "wrtnews.co": [2024], "l.aidp.us": [2024], "creator.zoho.com": [18984], "consejosocial.unizar.es": [17441], "*.franktimis.com": [6080], "surveygizmo.com": [15723], "wdl.ige.ch": [15759], "tv4play.se": [15947], "cureit.lan.ua": [20774], "fb.ykh.be": [2024], "seguro.elpais.com": [5126], "thelocal.fr": [22167], "www.vh1.ro.vutbr.cz": [17609], "orientation.its.sfu.ca": [14708], "static.anidb.net": [1065], "dns-ip.net": [4594], "fonts.voxmedia.com": [22503], "mercola.com": [20965], "zixing.jd.com": [8434], "aub13.co": [2024], "kontakty.sme.sk": [14198], "www.dpd.co.uk": [19891], "jdxinyi.jd.com": [8434], "book.cathaypacfic.com": [2913], "nerd.cab": [2024], "www.bookit.nl": [19426], "webmail.xmission.com": [18621], "ai-online.com": [1453], "lcrf.org": [2024], "used.ph": [2024], "fishka.kfc.ru": [20707], "www.naacpcompanystore.org": [10902], "i.delik.co.id": [2024], "www.lovefilm.*": [9633], "pyd.io": [13311], "btsf.co": [2024], "mth4.co": [2024], "*.chambal.com": [2994], "browser-statistik.de": [2386], "www.unpac.org": [17231], "upload.xvideos.com": [22660], "index.docker.io": [4606], "sport.rapmag.tv": [2024], "vladimir-realty.rambler.ru": [13600], "dasp.in": [2024], "www.opengarden.com": [12066], "doc.owncloud.com": [12214], "crlw.co": [2024], "ekonomika.aktuality.sk": [1507], "nbrx.us": [2024], "uc.plugz.me": [2024], "secure.studiesabroad.com": [15608], "swatmag.com": [22059], "topfox.co.uk": [16634], "site.yandex.kz": [18743], "libcat.dudley.gov.uk": [4788], "resources.bingads.microsoft.com": [10396], "hbst.cc": [2024], "capitaller.ru": [2833], "www.thenewbay.org": [22174], "buildingenergyscore.energy.gov": [5243], "jobs.gigaom.com": [6626], "ussuri.inetvl.ru": [20525], "rise.re": [2024], "achvd.co": [2024], "www.reparieren.ch": [22443], "ert.cern.ch": [2588], "hwlo.link": [2024], "mbpro.us": [2024], "orel.sumtel.ru": [22031], "cdn.tvc.ru": [22323], "app.pr0gramm.com": [21476], "acsapps.wku.edu": [22602], "www.openafs.org": [11949], "*.clicktale.com": [3253], "orel.europaplus.ru": [20034], "my.swboro.us": [2024], "data.jd.com": [8436], "www.oxfordjournals.org": [12222], "www.airbnb.ca": [793], "alltel.web.mcore.com": [10658], "blog.camscanner.com": [19500], "headr.es": [2024], "hrk.me": [2024], "analytics.paste.ee": [12472], "site.douban.com": [4701], "translate.edgecast.com": [5070], "hespk.st": [2024], "siparistakip.yemeksepeti.com": [18767], "payments.wychavon.gov.uk": [22637], "sjws.bdstatic.com": [19339], "hsselite.com": [7566], "www.philzimmermann.com": [12650], "virag.si": [17817], "freeoffer.info": [2024], "www.psy.plymouth.ac.uk": [12873], "forums.webnms.com": [18174], "ssm.upickem.net": [17474], "meet.unicef.org": [17069], "assets.parkerpen.com": [12435], "www.intel.co.jp": [8208], "www.kamchatinfo.com": [20679], "www20.pipni.cz": [12287], "www.selangorku.com": [14626], "nrablog.com": [21178], "apply2jobs.com": [1157], "wiki.zentyal.org": [18933], "smrtl.cl": [2024], "onionshare.org": [11900], "www.avcosystems.com": [19282], "site.miniclip.com": [10460], "turtlebay.foreignpolicy.com": [6002], "www.xchatdata.net": [18597], "static.shared.sx": [14734], "f.crbb.ru": [2024], "mobile.plugrush.com": [12863], "schlf.fr": [2024], "nlwl.iqiyi.com": [20465], "rep.bz": [2024], "www.mtnafoundation.org": [9815], "rc.ouvaton.coop": [12187], "1fc.koeln": [2024], "ap.lijit.com": [9365], "u.jiceb.net": [2024], "*.www-cse.ucsd.edu": [17011], "smi2.net": [15069], "ref.awmoore.com": [2024], "pix.nl.eu.criteo.net": [3798], "shopkeeper.kagi.com": [8781], "vpncompare.co.uk": [17589], "www.sonyentertainmentnetwork.com": [15219], "r24617069.sync.app.asana.com": [1265], "*.gaiaonlinehelp.com": [6382], "ll.dyn.cc": [2024], "mail-userthumb.nosdn.127.net": [41], "rh.ulaval.ca": [17319], "stitcher.acast.com": [19045], "*.gamelink.com": [6393], "www.stopcyberspying.com": [15551], "link.dmbgy.net": [2024], "www.incommon.org": [8035], "www.maastricht.nl": [11172], "network.zmanda.com": [18980], "shane.ly": [2024], "media4.woolworths.com.au": [18511], "prev.prediction.io": [13069], "srphoto.im": [2024], "ocio.nih.gov": [11090], "openstack.cern.ch": [2588], "www.studentbenefits.ca": [15605], "wikimedia.org.il": [18388], "newsregistry.com": [11363], "www.bo.infn.it": [7771], "www.bluestatedigital.com": [2158], "upmlive.hants.gov.uk": [7185], "url.ienlab.net": [2024], "s129.cnzz.com": [3328], "wiltshire.objective.co.uk": [21225], "yurga.admtyumen.ru": [19082], "www.3v1n0.net": [178], "email.secureserver.net": [14574], "aptq.co": [2024], "www.devoncredit.ru": [4417], "herego.es": [2024], "r.rschu.me": [2024], "agvocate.news": [2024], "status.duo.com": [4797], "www.unbounce.com": [17239], "bugzilla.penango.com": [12564], "onboardkit.com": [11861], "on.mawqe3.net": [2024], "r.eadnan.com": [2024], "advertising.yandex.kz": [18743], "makerbot.com": [9925], "www.pantelligent.com": [12400], "cyrsiau.aber.ac.uk": [473], "webcal.maricopa.edu": [9997], "ichi.link": [2024], "www.irtf.org": [7822], "napi.ayyo.ru": [19292], "eclipsecon.org": [5040], "brrl.it": [2024], "*.marthastewartweddings.com": [10041], "cdn-1.tribepad.com": [22285], "cas.usuhs.edu": [17132], "de.search.regiochannel.com": [13791], "cs13.myzuka.fm": [21079], "waworld.me": [2024], "biurl.co": [2024], "myfoxdetroit.com": [11360], "alamy.com": [821], "meli.uz": [2024], "mcare.us": [2024], "people.ysu.edu": [18832], "www.zuoyebang.com": [22732], "ebank.kh.hu": [8739], "pentacon-dresden.de": [14421], "www.arch.umd.edu": [17351], "lifesafer.me": [2024], "link.mattfox.ca": [2024], "ui.openxmarket.jp": [12030], "tmf.social": [2024], "www.nets-danid.dk": [11288], "www.baden-wuerttemberg.de": [19302], "a.lext.in": [2024], "iioffice.liginc.co.jp": [20839], "blogs.taz.de": [15853], "www.ivegotkids.com": [8414], "review.cyanogenmod.org": [3947], "pliktverket.se": [12856], "sleepjnk.es": [2024], "rdgwy.it": [2024], "link.node.co.nz": [2024], "tdnam.com": [16054], "sayheckyah.com": [2024], "wyzerme.com": [18581], "www.jlist.com": [8454], "link.abrons.com": [2024], "roski.usc.edu": [17117], "ishopnew.qiwi.ru": [13352], "ozlabs.org": [12228], "a.meipian.cn": [10247], "www.ipsos-mori.com": [8346], "sjsd.illuminateed.com": [20494], "scvhhsauth.sccgov.org": [14401], "logos.visioncriticalpanels.com": [17863], "www.commotionwireless.net": [3498], "www.bger.ch": [19368], "*.channelme.tv": [3010], "freeforums.net": [13158], "theca.mp": [2024], "bcm-v4.sipsolutions.net": [14184], "sh.chapplin.com": [2024], "forum.t-mobile.nl": [15836], "augu.fr": [2024], "deutscher-radiopreis.de": [4400], "www.ifca.ai": [8264], "stage.browsec.com": [19456], "tedx.fi": [2024], "bbva.es": [1744], "oener.gy": [2024], "www.esi-group.com": [4951], "hee.nhs.uk": [10953], "plus.djicdn.com": [4029], "visoa.net": [2024], "recruit-blog.microad.co.jp": [10376], "go.dnovelas.com": [2024], "web10.dk": [15989], "www.cs.uni-mainz.de": [17410], "klaw.me": [2024], "mycarfinance.lloydsbank.com": [9537], "mirg.osu.edu": [11797], "www.fsras.htwk-leipzig.de": [7596], "my.ece.illinois.edu": [17346], "www.domainsbyproxy.com": [4658], "lesroch.es": [2024], "int.raiffeisen.ru": [13587], "helfer.froscon.de": [6071], "adminmedia.spontex.org": [15357], "vladikavkaz.startsmile.ru": [21980], "ink.inforesist.org": [20531], "ratrap.in": [2024], "www.itslearning.com": [8408], "goget.fund": [2024], "www.voyage-prive.com": [17946], "see.cyberco.de": [2024], "getclouder.com": [6554], "brandaid.it": [2024], "on.variety.com": [2024], "www.mosr.sk": [15037], "www.archive.org": [8269], "jjc.edu": [8452], "wbbmtt.de": [2024], "www.sandstorm.de": [14345], "cfmueller.de": [2713], "insider.thomsonreuters.com": [16456], "www.extratorrent.com": [5516], "kks.link": [2024], "telemetrics.symantec.com": [15780], "tec.hm": [2024], "*.asterisk.org": [1322], "bibliotechka.rg.ru": [21646], "vpn.cs.hku.hk": [20387], "pokemon-world-online.net": [12900], "*.vanityfair.com": [17651], "developer.windows.com": [18432], "ryanin.me": [2024], "roosev.lt": [2024], "www.sunmotors.co.uk": [22033], "bookworm.oreilly.com": [2226], "bbgtest.tocco.ch": [16600], "p4db.freebsd.org": [6097], "rumblegam.es": [2024], "www.pages03.net": [14865], "www.suicidegirls.com": [15650], "kazan.europaplus.ru": [20034], "sheetmusicplus.com": [14754], "apps.obfs.uillinois.edu": [17034], "ngvpn17.nvidia.com": [11022], "www.provenance.org": [13216], "bit.namecoin.info": [11062], "*.memecdn.com": [10269], "www.bedfordshireccg.nhs.uk": [10953], "acen.to": [2024], "biapy.fr": [1868], "rags2ri.ch": [2024], "www.hertz.co.nz": [7355], "cdata.browser.360.cn": [142], "ptv.pro.br": [2024], "zoic.ca": [2024], "usanet.tv": [2024], "ut07.xhcdn.com": [18605], "about.fundinfo.com": [6240], "9joycasino.com": [20654], "piflc.xbox.com": [18639], "intranet.dbbs.wustl.edu": [18089], "arhangelsk-realty.rambler.ru": [13600], "zane.rocks": [2024], "d-id.tk": [2024], "enthr.al": [2024], "schulthess.com": [21747], "nvoice.tk": [2024], "*.servercrate.com": [14667], "a.quiklink.me": [2024], "bb.lekumo.jp": [20805], "bitvarestoranov.friday.ru": [20175], "www.cbscorporation.com": [19526], "akutangulo.es": [2024], "maltech.tocco.ch": [16600], "*.qualys.com": [13383], "communities.coverity.com": [3731], "www.ifap.ed.gov": [4881], "nwrk.co": [2024], "www.usalliance.org": [17113], "prepaid.maxdome.de": [10106], "jbte.ch": [2024], "ctf-team.vulnhub.com": [17965], "go.mmn.on.ca": [2024], "www.makeshop.jp": [9918], "www.cs.us.es": [17502], "accounts.nice.org.uk": [10961], "stores.houseoffraser.co.uk": [7570], "rbord.es": [2024], "ffa.ro.vutbr.cz": [17609], "assets.levoleague.com": [9291], "sid.libreoffice.org": [9327], "webrtc-experiment.com": [18178], "saratov.rt.ru": [13529], "static.studiegids.tue.nl": [15940], "go.clubt.jp": [2024], "www.outlook.com": [12185], "releases.cpanel.com": [2665], "alterra.be": [2024], "www.dwin1.com": [4087], "cdn.media.zylom.com": [19029], "coci.io": [2024], "hqlo.biomedcentral.com": [1931], "plyr.tv": [2024], "adjust.com": [651], "09.mvd.ru": [21055], "gna.li": [2024], "ln.seanfisk.com": [2024], "wiki.openttdcoop.org": [12017], "www1.taxact.com": [16044], "www.familie.nordwest.aok.de": [376], "enterprise.lastpass.com": [9175], "www.middendrenthe.nl": [11172], "static.radioplayer.co.uk": [13581], "bigba.sh": [2024], "trendmic.ro": [2024], "fivethirtyeight.com": [5873], "zenmate.es": [18917], "home.cisco.com": [3165], "download.freebsd.org": [6097], "js.cdn.static.malwarebytes.org": [9941], "pub.mate-desktop.co": [9727], "netmarketshare.com": [11237], "ac4g.net": [2024], "susk.karelia.pro": [20687], "yaroslavl.rt.ru": [13529], "www.cwspodmusic.com": [2708], "wayfarer.lifehacker.com": [9346], "gvdc.nl": [2024], "feedback.mendeley.com": [10276], "dgn.co": [2024], "www.publicinsightnetwork.org": [13255], "hml.lsbu.ac.uk": [9111], "www.freshports.org": [6186], "wetanz.com": [18319], "pcct.me": [2024], "thehill.com": [16365], "info.sky.de": [14990], "ww.kavkaz-uzel.ru": [20694], "dsrpt.it": [2024], "piratesbay.pe": [21522], "malware-research.org": [9937], "goave.pt": [2024], "vip.sohu.com": [15171], "shop.netways.de": [11300], "bln.cc": [2024], "nurse.farm": [2024], "anon.freifunk.net": [6170], "teteny.bme.hu": [1557], "potion.in": [2024], "www.sceper.eu": [14406], "abu.sx": [2024], "tac.ph": [2024], "connect.fca.org.uk": [5547], "mttbshm.co": [2024], "www.theaa.com": [16289], "iamo.tech": [2024], "wickedlasers.com": [18372], "www.wit.ai": [18468], "podaac-uat.jpl.nasa.gov": [10909], "barnaul.psbank.ru": [13231], "doperap.co": [2024], "strin.gr": [2024], "partizansk.startsmile.ru": [21980], "mobileacs.org": [2024], "yelp.se": [18766], "avira.com": [1474], "it.baffl.es": [2024], "latvian.riga.usembassy.gov": [22406], "duke-energycenter.com": [4790], "uk.norton.com": [11545], "oma.io": [2024], "projects.fruct.org": [5585], "driven.tips": [2024], "lend.me": [20806], "ebank.nj1.cmbchina.com": [2639], "cybel.it": [2024], "btur.co.uk": [2024], "officedepot.com": [11784], "computefest.seas.harvard.edu": [7211], "rkdl.me": [2024], "time.orioninc.com": [12144], "*.windstream.com": [18439], "www.datasheetcatalog.com": [4205], "rma.scea.com": [14148], "siroco.lerelais.org": [9205], "hello.tokyo": [7295], "img.limango-media.de": [9370], "invenio-demo.cern.ch": [2587], "go.moesubs.com": [2024], "www.privatetunnel.com": [13147], "sprk.li": [2024], "dominical.cc": [2024], "dl3.apk-dl.com": [19215], "ezproxy.hkpl.gov.hk": [20385], "svn.postgresqlfr.org": [13020], "bidbubble.com": [1872], "www.zenmate.lu": [18917], "partners.manageengine.com": [9951], "www.g.switchadhub.com": [15764], "img.car.com": [2839], "re-x.me": [2024], "mxs.chal.ch": [2024], "www.semya.tv": [21780], "excellence.life": [2024], "sslvpn.busfin.ohio-state.edu": [11798], "dana.ashlee.lavabit.com": [9185], "forum.x-cart.com": [18583], "mordoviya.rt.ru": [13529], "static.brandfolder.com": [2301], "patsanki-get-home.friday.ru": [20175], "pcap.stanford.edu": [15447], "assets.iu.edu": [8069], "wibl.co": [2024], "analysis.f-secure.com": [5533], "accionistas.walmart.com": [18059], "store4geeks.com": [15559], "library.slashdotmedia.com": [15013], "www.cualbr.com": [3484], "www.archlinux.fr": [1189], "partnernet.symantec.com": [15780], "outreach.crossref.org": [3812], "supr.cl": [2024], "community.spiceworks.com": [15338], "*.nrelate.com": [11585], "spotic.us": [2024], "www.piratetavern.net": [22174], "pastebin.ca": [12477], "url.imageek.ovh": [2024], "www.magellanmodels.com": [9866], "ssjj.oxfordjournals.org": [12222], "lagentprofailover.sslcs.cdngc.net": [19533], "pk.an.de": [1027], "www.theengineroom.org": [16398], "wayskinny.com": [18109], "ens.fyi": [2024], "hkk.de": [7070], "www.asia.elsevierhealth.com": [5179], "www.akbars.ru": [19128], "sports.sina.com.cn": [14904], "t.guarva.com.au": [2024], "on.dvf.com": [2024], "t.mysns.co": [2024], "go.flip.me": [2024], "www.employeeexpress.gov": [5209], "simch.as": [2024], "csapps.norfolk.gov.uk": [21154], "leadin.com": [20794], "jpo.oxfordjournals.org": [12222], "1off.me": [2024], "find.t-mobile.com": [15837], "www.raiffeisen.ru": [13587], "mobile.agima.ru": [19112], "www.dxy.com": [19912], "au.cm.life": [2024], "www.issafrica.org": [7839], "kentcc.firmstep.com": [20109], "deliverunion.fau.org": [5543], "www.tipico.de": [16568], "www.passwordcard.org": [12470], "celsys.io": [2024], "webmail.axboe.dk": [1494], "www.tunnelsup.com": [22310], "www.topiama.com": [16637], "myhr.sydney.edu.au": [22063], "research.chemistry.ohio-state.edu": [11798], "www.unixmen.com": [17440], "tpya.ps": [2024], "drdan.co": [2024], "hmailserver.com": [7079], "lma.unizar.es": [17441], "www.collegebeschermingpersoonsgegevens.nl": [4806], "salaryservice.ieeeusa.org": [7721], "yegoryevsk.tpprf.ru": [22260], "www.frontlinedefenders.org": [6205], "tronixcomputers.com": [16833], "go.vmb.ae": [2024], "www.smallnetbuilder.com": [17690], "hayde.es": [2024], "bml.li": [2024], "eprivacy.eu": [20009], "*.neoseeker.com": [11197], "*.blockr.io": [2112], "rtntr.ms": [2024], "bgav.me": [2024], "getsix.in": [2024], "sherlocc1.oxfordcc.co.uk": [21325], "yudis.16mb.com": [2024], "planet.mate-desktop.co": [9727], "www.ecn.ulaval.ca": [17319], "a.mysutro.com": [2024], "lk.stoat.com.br": [2024], "www.fuscia.info": [6250], "d20b364e-be4c-176a-7e06-d9a9d7fa23dc-rum.cdnvideo.ru": [19536], "thomasburleson.jsbin.com": [20659], "art.ufanet.ru": [22347], "nirog.am": [2024], "www.fitbit.com": [5867], "thesanct.us": [2024], "ric.nal.usda.gov": [17299], "on.kmir6.com": [2024], "minprom.government-nnov.ru": [20295], "freedesktop.org": [6102], "london-nano.com": [9586], "infun.nl": [2024], "it.luno.be": [2024], "on.fuselab.it": [2024], "www.kat.am": [8827], "assets.red-gate.com": [13718], "nixonlibrary.gov": [21142], "people.openmoko.org": [12071], "nat.tg": [2024], "kaliningrad.startsmile.ru": [21980], "c36.ch": [2024], "showcase-tv.com": [14801], "opensource.osu.edu": [11797], "training.enthought.com": [5286], "earthvpn.com": [19934], "ticket.polymus.ru": [21457], "daa.gs": [2024], "projects.osmocom.org": [12159], "9startup.com": [2024], "www.energiewendetage.baden-wuerttemberg.de": [19302], "t.nscom.jp": [2024], "www.mghocd.org": [9712], "auto.yandex.com.tr": [18740], "businessblog.udacity.com": [17192], "mx.reuters.com": [13893], "illiad.law.georgetown.edu": [6531], "retiree.nasa.gov": [10909], "cdn.imagecurl.com": [20497], "jabberguest.stoloto.ru": [21996], "mirr.im": [2024], "elektrostal.beeline.ru": [1778], "akbar.co": [2024], "solmusica.com": [15175], "mrygrv.co": [2024], "888.gtimg.com": [6975], "conferences.williams.edu": [18408], "freebsd.org": [6097], "max.jotfor.ms": [8649], "*.caller.com": [2768], "www.tuvdotcom.com": [3626], "cambridge.org": [2781], "gatag.it": [14277], "security.switch.ch": [15762], "s.rchv.us": [2024], "fs02.enter.ru": [20002], "buildservice.ft.com": [5810], "dfn.de": [4402], "www.cscprotectsbrands.com": [3684], "u1.hitravel.xyz": [2024], "members.mayfirst.org": [10113], "ab.ai": [2024], "ian.cx": [2024], "archives.sccgov.org": [14401], "blog.oxforddictionaries.com": [12223], "autodiscover.clp.com.hk": [2636], "webmail.cesky-hosting.cz": [19553], "cloud.telphin.ru": [16170], "mmont.es": [2024], "s.mangodev.net": [2024], "www.gsb.stanford.edu": [15448], "skycat.ch": [2024], "candidates.democracyclub.org.uk": [19804], "movil.bbva.es": [1744], "jobs.stacksocial.com": [15428], "szl.io": [2024], "*.chip-kiosk.de": [2608], "huggies.link": [2024], "www.bbc.co.uk": [1524, 19331], "rottnestexpress.com.au": [14036], "aldo.io": [2024], "www.bitchmagazine.org": [1983], "astrakhan.rt.ru": [13529], "subversion.cru.fr": [3826], "login.bme.hu": [1556], "darrenlik.es": [2024], "widgets.amazon.co.jp": [19169], "partner.martinus.sk": [10044], "dsa.dft.gov.uk": [19825], "api.yamli.com": [18736], "*.productsafety.gov.au": [13171], "go.tapiki.com": [2024], "hosting6.mclaut.com": [20942], "gbltd.co": [2024], "dscgo.info": [2024], "www.downtownhost.com": [4725], "goldenfrog.com": [6798], "voucherexpress.co.uk": [7316], "tickengo.*": [16485], "whsgd.st": [2024], "ndes01.clp.com.hk": [2636], "hbrs.co": [2024], "pubmed.gov": [13242], "palada.re": [2024], "cache.tv.qq.com": [13328], "*.cld.me": [3208], "svetlogorsk.klops.ru": [20735], "www.redcare.com": [21614], "oronde.me": [2024], "www.criosweb.ro": [3796], "prostovpn.org": [21517], "nessie.uihr.uillinois.edu": [17034], "ad3.udn.com": [17020], "gras.sh": [2024], "secure2.store.apple.com": [1151], "www.nationalserviceresources.org": [11128], "www.depressionforums.org": [4361], "feweb.vu.nl": [17608], "oss.oracle.com": [12116], "datagovau.ideascale.com": [20479], "www.openrepos.net": [21278], "www.vidble.com": [17767], "mensuel.framapad.org": [6075], "harlandclarkegiftcard.com": [7199], "www.tele-task.de": [16133], "www.yopto.com": [18786], "nytm.org": [11025], "uofi.illinois.edu": [17346], "c0re.co": [2024], "thecalmzone.net": [16331], "threema-forum.de": [16472], "www.offcampus.osu.edu": [11797], "office.co.uk": [11779], "www.capris.no": [657], "djex.co": [2024], "a2.formsite.com": [20139], "electroscience.osu.edu": [11797], "godotengine.org": [20278], "4.*.wdfiles.com": [18387], "dal.net": [3994], "touroku.melonbooks.co.jp": [10258], "static-ssl.businessinsider.com": [2471], "www.theproxybay.pw": [22174], "drake.net.nz": [2024], "fgvip.uk": [2024], "r24616665.sync.app.asana.com": [1265], "webglobe.sk": [18214], "talam.as": [2024], "91digital.link": [2024], "wiki.zarafa.com": [18893], "rio.sportschau.de": [18113], "mgt0.savannah.gnu.org": [6337], "www.ichkoche.at": [7916], "gtec.ly": [2024], "*.www.textbooks.com": [16232], "eofire.co": [2024], "*.ebuyer.com": [5034], "somethingawful.com": [15200], "orrick.websitealive.com": [18242], "www.ahosting.cz": [782], "a4.websitealive.com": [18242], "www.amiga.adage.com": [3756], "www.yidianzixun.com": [22679], "earnw.co": [2024], "reg.dtic.mil": [17109], "sws.link": [2024], "img.pawoo.net": [12496], "supervalu.com": [14259], "www.mysolarcity.com": [15179], "pj.pizza": [2024], "git.devuan.org": [4421], "aus-der-region.migros.ch": [10417], "www.hgi.rub.de": [13539], "spiritu.co": [2024], "sm.bernina.com": [1827], "bbfo.to": [2024], "projectslice.com": [15021], "www.dawsonera.com": [4224], "rewards.xbox.com": [18639], "a.laseyne.info": [2024], "braindecoder.com": [2285], "jwst.gsfc.nasa.gov": [10908], "security.wmtransfer.com": [18173], "api.movim.eu": [10684], "import.ideco.ru": [20480], "cpunks.org": [3744], "cadetnet.gov.au": [2728], "www.truthdig.com": [16873], "www.refer.ly": [13774], "foto.rg.ru": [21646], "*.internetbs.net": [8274], "login.advent.com": [706], "mouseflow.com": [10664], "on.trosmith.com": [2024], "static.car.com": [2839], "dribbble.com": [4754], "duozai.duoshuo.com": [19906], "nmetrics.samsung.com": [14326], "slr.oxfordjournals.org": [12222], "community.bitnami.com": [2032], "bootswatch.com": [2238], "*.onlinecreditcenter6.com": [11917], "pt.verbling.com": [17704], "bostonreview.net": [2255], "aarena.si": [2024], "networks.inf.ed.ac.uk": [5059], "suppliesfordreams.org": [15701, 15702], "tempolibero3.ffs.ch": [15756], "imagecomics.com": [7979], "www.givedirectly.org": [6670], "sspace.cu.cc": [2024], "fapa.edp.pt": [4888], "skews.me": [2024], "4-mn.es": [2024], "metanet.ch": [10334], "aleporte.la": [2024], "chrb.co": [2024], "dev.flightradar24.com": [20119], "edume.me": [2024], "www.whosgamingnow.net": [18365], "joew.tech": [2024], "wbm.in": [2024], "url.merion.com": [2024], "1seculodeenergia.edp.pt": [4888], "tcyt.me": [2024], "qkgf.me": [2024], "bestcovery.com": [1840], "loans.car.com": [2839], "cout.ie": [2024], "www.naromax.com": [11076], "minmms.khabkrai.ru": [20709], "mmframework.chainfire.eu": [19556], "frnd.li": [2024], "it.videogamer.com": [17782], "rebrick.lego.com": [9082], "xperiencedays.com": [18676, 22656], "bnymellonim.com": [19421], "gocol.in": [2024], "a.wpimg.pl": [22621], "javascriptobfuscator.com": [20630], "t1joe.tk": [2024], "*.yelp.my": [18766], "m2.nsimg.net": [11590], "www.fokus.fraunhofer.de": [6091], "member.myshaklee.com": [14715], "sprts.bar": [2024], "agency.brassring.com": [19443], "*.showmecon.com": [14800], "gp.se": [6346], "opsmate.com": [12098], "wess.un.org": [17057], "istheinternetonfire.com": [20593], "mttmk.com": [2024], "visitoak.land": [2024], "img.travel.rakuten.co.jp": [13594], "www.seowizard.ru": [14650], "mndbncs.co": [2024], "*.onion.ink": [16638], "*.zillow.com": [18965], "3glogo.gtimg.com": [6975], "support.drweb.com": [4776], "support.webgo.de": [18161], "*.sysward.com": [15814], "network23.org": [11305], "*.wso2.com": [18022], "rbl.pw": [2024], "www.7terminals.com": [236], "on.blindchat.gr": [2024], "donate.richarddawkins.net": [13928], "customz.nustarz.com": [11603], "ltln.es": [2024], "www.selenic.com": [10300], "www.medicine.wustl.edu": [18089], "colleg.in": [2024], "bcc.re": [2024], "wildflr.ca": [2024], "go.minigrid.com": [2024], "msjc.worldcat.org": [18536], "issuetracker.unity3d.com": [17310], "shasta.vc": [2024], "*.googlecode.com": [6828], "ecos.osu.edu": [11797], "3-instant.okcupid.com": [11809], "xxx24hr.com": [18698], "illumos.org": [7973], "dev.karelia.pro": [20687], "r24616625.sync.app.asana.com": [1265], "go.cr8.cc": [2024], "f.airtet.in": [2024], "www.freebiblesoftware.com": [6115], "www.dota2.ru": [19885], "forums.obdev.at": [11732], "portal.mobify.com": [10532], "www.ecrimeresearch.org": [4879], "*.ensighten.com": [5273], "sendshowoff.com": [2024], "zhuxi.jd.com": [8434], "support.launchrock.com": [17525], "kski.tips": [2024], "video.atlatszo.hu": [1349], "lffl.me": [2024], "www.debian-administration.org": [4258], "clubs.nra.org": [21176], "flyp.io": [2024], "beran.me": [2024], "ftp.mirrorservice.org": [10485], "reeses.me": [2024], "digitalmars.com": [4479], "music.stanford.edu": [15448], "bviphotovideo.com": [1606], "www.litecoin.info": [9474], "employees.usc.edu": [17366], "rdbl.co": [2024], "perfecthair.ch": [21387], "pasteup.guim.co.uk": [6996], "bitmit.net": [2030], "s.popin.cc": [12954], "lhc-beam-operation-committee.web.cern.ch": [2588], "*.neonmob.com": [11195], "ricoh.com": [13935], "www.bestchange.org": [1835], "www.priv.gc.ca": [13129], "go.gtww.net": [2024], "jamie-oliver.friday.ru": [20175], "aspnhts.com": [2024], "neko.im": [11178], "www.barnet.gov.uk": [19317], "cht.hm": [2024], "campusministry.georgetown.edu": [6531], "app.actor.im": [19068], "colr.tv": [2024], "www.clodo.ru": [19620], "www.hants.gov.uk": [7185], "action.amnesty.org.uk": [1015], "www.masterxchange.com": [10063], "zarafa.com": [18893], "my.jolicloud.com": [20649], "resultados.elpais.com": [5126], "selected.jd.com": [8436], "www.couchsurfing.com": [19696], "www.tvquran.com": [22320], "*.bris.ac.uk": [17386], "capl.es": [2024], "zenmate.lu": [18917], "konto.dagbladet.no": [4103], "asset5.djicdn.com": [4029], "re.is": [13469], "www.freepressunlimited.org": [6124], "znc.bz": [2024], "kcole.com": [2024], "myposte.poste.it": [13013], "streaming-url.tape.tv": [16019], "www.thejournal.ie": [16299], "20.theladbiblegroup.com": [22159], "www.stickyvibe.tuxfamily.org": [22319], "s.sashag.net": [2024], "meebo.com": [10219], "plymouth.objective.co.uk": [21225], "api.huaban.com": [20441], "petergof.biglion.ru": [19375], "*.blendle.nl": [2087], "ctri.co": [2024], "gentoo-blog.de": [6515], "www.naytev.com": [11155], "fenxiao.taobao.com": [16015], "icw.ink": [2024], "bucklink.xtgem.com": [18688], "www.hosts-file.net": [20410], "asee.osu.edu": [11797], "denmark.usembassy.gov": [22406], "blog.safello.com": [14295], "auth.habrahabr.ru": [7119], "paddle.com": [12353], "gsspubssl.nci.nih.gov": [11090], "www.source-elements.com": [15237], "he.3.boardgamearena.com": [2182], "jrn.link": [2024], "kro.im": [2024], "i2.services.social.microsoft.com": [10396], "ruggedsoftware.org": [14084], "jobsite.com": [8615], "forums.lanbilling.ru": [20775], "8f9516hxxgy1ngiu8ikup7k88yypc3t0xisk4myr.ipleak.net": [20571], "krtsrc.com": [2024], "bltprf.net": [2024], "www.eiseverywhere.com": [5377], "www.parallax.com": [12418], "media.hnonline.sk": [7445], "jdok.nl": [2024], "internetgovernance.org": [8270], "relate.mit.edu": [9761], "medarbejdersignatur.dk": [10153], "www.teamup.com": [22108], "mailer.myinteriorsavings.com": [8249], "educause.edu": [5086], "freeonline.cf": [2024], "wr.da.netease.com": [11228], "bsptechno.us": [2024], "agedcarecomplaints.govspace.gov.au": [6851], "iget.link": [2024], "craigslist.co.uk": [3753], "cdn.mobclix.com": [10528], "r9q.net": [2024], "home.silentcircle.com": [14848], "bbnk.co": [2024], "fortune.com": [6038], "rimg05.rl0.ru": [13972], "motion-docs.adtile.me": [693], "tidbits.com": [16505], "kb.uaa.alaska.edu": [17323], "srv.asknet.de": [1292], "wiki.xiph.org": [18667], "safeguarding.southwark.gov.uk": [15264], "bucklink.me": [2024], "kum.com": [9048], "useitandsee.com": [5171], "www.westyorkshireobservatory.org": [18308], "web.cvs.sv.gnu.org": [6337], "rev.da.netease.com": [11228], "moje.zuno.cz": [18860], "*.posthaven.com": [13022], "www.test.de": [22128], "ftb.click": [2024], "gfi-italia.com": [6298], "billing.metartnetwork.com": [10320], "dict.cc": [4442], "auth.visiblemeasures.com": [17856], "mycampina.com": [2797], "www.cases.legal": [19521], "email.wustl.edu": [18089], "asfera.info": [19252], "bia.me": [2024], "secure-js.adsonar.com": [593], "fusion.sydsvenskan.se": [15776], "kobo.com": [8962], "*.cwru.edu": [2884], "forms.bostonfed.org": [19432], "www.ocelot.li": [11747], "a.dmdm.online": [2024], "vantageone.net": [17652], "iubenda.com": [8409], "sltxwx.com": [2024], "marketwire.com": [10030], "dmnt.ir": [2024], "sc2.rgstatic.net": [13481], "www.joinus.today": [8632], "thesoup.tv": [2024], "tamas.ws": [2024], "*.shld.net": [14177], "s85.cnzz.com": [3328], "www.firsts.com": [5861], "sprig.ht": [2024], "bit.kenh12.com": [2024], "opshopweek.info": [2024], "tpr.ly": [2024], "shark.douyucdn.cn": [4712], "www.klick2contactsales.com": [20732], "forum.mapillary.com": [9980], "orangeapps.cdnvideo.ru": [19536], "patches.ubuntu.com": [17183], "www.dma.org.uk": [4509], "manage.my.t-mobile.com": [15837], "touge.me": [2024], "mandalay.lv": [2024], "ffc.im": [2024], "mobile.yandex.com.ua": [18741], "thesyp.com": [2024], "womensultimatefrisbee.clubs.bucknell.edu": [2406], "socpro.oxfordjournals.org": [12222], "www-sandbox.buttercoin.com": [2479], "emsonline.somerset.gov.uk": [15197], "video.regjeringen.no": [13800], "www2.vespermarine.com": [17738], "dai.alibaba.com": [857], "ssl.ligatus.com": [9356], "krasnodar.psbank.ru": [13231], "www.questioncopyright.org": [13407], "psy.social": [2024], "postsuisseid.ch": [12996], "www.lurkmore.to": [9683], "moodle.strode-college.ac.uk": [15597], "static1.sockshare.com": [15148], "stats.bbc.co.uk": [1524], "earthday.nature.org": [11141], "shiny.rstudio.com": [13527], "images.parkrun.com": [12438], "aeso.sytes.net": [2024], "nzz.to": [2024], "heywi.re": [2024], "go.gfpoint.com": [2024], "esenshop.net": [2024], "chisel.eecs.berkeley.edu": [17329], "shop.freertos.org": [6105], "cmt.osu.edu": [11797], "bokborgen.se": [2199], "tflig.ht": [2024], "paraguay.usembassy.gov": [22406], "app.shippable.com": [21803], "hdchalleng.es": [2024], "www.lookout.com": [9612], "*.m.poczta.home.pl": [7475], "subversion.automattic.com": [1452], "klwr.nl": [2024], "help.nature.org": [11141], "hiscreviews.com": [2024], "secure.icbdr.com": [20475], "regmovi.es": [2024], "crm.zoho.com": [18984], "zebra.dog": [2024], "gingerbread.traintimes.org.uk": [16731], "l.tomprice.ca": [2024], "snapengage-1.wpengine.netdna-cdn.com": [15091], "isca.pe": [2024], "engage.send.microad.jp": [10377], "to3.si": [2024], "drwho.virtadpt.net": [4777], "atypon.com": [1369], "w17m.com": [2024], "denpa.moe": [4350], "mapw.biz": [2024], "incoming.ports.debian.org": [4263], "nola.red": [2024], "videos.mtvnn.com": [17748], "mdws.wscu.com": [18314], "l1.51fanli.net": [209], "www.d0wn.biz": [3988], "www.ntu.ac.uk": [11011], "adfs.leeds.ac.uk": [17403], "sn.lut.nu": [2024], "www.rcfp.org": [13462], "firefox.net.cn": [5843], "share.aw": [2024], "tif.li": [2024], "chat1.ap.dell.com": [4317], "service.maxymiser.net": [10111], "edialogue.org": [4892], "bmcpulmmed.biomedcentral.com": [1931], "stkgrp.com": [2024], "moskovskaya-obl.beeline.ru": [1778], "www.socialdemocrats.ie": [21888], "humc.ch": [2024], "neverddos.com": [11325], "pqa.mheducation.com": [20975], "rd.redpepper.ws": [2024], "l0.51fanli.net": [209], "dialog.filepicker.io": [5787], "sokr.org": [2024], "*.optorb.com": [12111], "commentarymagazine.com": [3481], "url.gray365.com": [2024], "help.eset.com": [5347], "passtech.us": [2024], "citrixonline.com": [3181], "mbcc.me": [2024], "hurl.it": [20448], "free12.beget.com": [19347], "edition.mondediplo.com": [10578], "wjax.tv": [2024], "lists.nasa.gov": [10909], "bitvps.com": [1988], "on.hwnair.com": [2024], "short.noip.me": [2024], "metrika.yandex.com.tr": [18740], "on.searchlr.net": [2024], "edapt.co": [2024], "hmbt.co": [2024], "updater.hyde.ligatus.com": [9356], "whyopencomputing.com": [22584], "www.chathamhouse.org": [3038], "s2.wlresources.com": [22604], "www.websitegrowers.com": [18243], "cdn.thinglink.me": [16429], "fr.cryptonator.com": [3873], "e-pages.dk": [4852], "flashgot.net": [5883], "weblogs.csmonitor.com": [19737], "swns.us": [2024], "ubfoundation.buffalo.edu": [17382], "listman.redhat.com": [13735], "lwise.us": [2024], "grew.al": [2024], "dcv.cc": [2024], "carestream.com": [2858], "ntrc8.us": [2024], "info.ambervalley.gov.uk": [19181], "eigenlab.org": [19971], "www.btsport.com": [1599], "ps3media.ign.com": [7734], "eadmissions.westsussex.gov.uk": [18305], "img4.pixhost.org": [21426], "heteml.jp": [7375], "papaya.link": [2024], "avh.me.uk": [2024], "bbbiz.co": [2024], "api-read.facebook.com": [5609], "www.keep2share.cc": [8720], "www.torchbox.com": [16643], "helpfiles.thepensionsregulator.gov.uk": [22173], "filler.coinjar.com": [3397], "support.activision.com": [556], "sh.yeahokay.ca": [2024], "www.pdfreaders.org": [12533], "theplacetelford.com": [22178], "wrwr.co": [2024], "googleartproject.com": [6817], "bp.specificclick.net": [15314], "web133.play-asia.com": [12828], "on.wlbz2.com": [2024], "abernathy.io": [2024], "cerbuna.unizar.es": [17441], "s3.pstatp.com": [16680], "dor.stanford.edu": [15448], "hs-ws1.oracle.com": [12116], "vs.tpprf.ru": [22260], "759425240.r.cdn77.net": [18699], "support.rockstargames.com": [13997], "www.insure-systems.co.uk": [4430], "diff.smartadserver.com": [15049], "go.bigidea.ws": [2024], "www.chronicle-store.com": [3126], "www.lanet.ua": [20780], "zbolan.tk": [2024], "pixel.rubiconproject.com": [14066], "www.c-base.org": [2506], "giveto.osu.edu": [11797], "press.kaspersky.com": [8820], "wiki.openjdk.java.net": [8538], "cli.linksynergy.com": [9397], "nvsb1.rosevrobank.ru": [14024], "www.happyfoto.at": [7193], "*.citizen.org": [13254], "www.oiss.wustl.edu": [18089], "dkq.me": [2024], "otg1.us": [2024], "i5.buimg.com": [16509], "www.latam.citibank.com": [3174], "www.pashm.com": [12456], "a.academia-assets.com": [493], "a.collective-media.net": [3422], "svnt.co": [2024], "icewarp.com": [7911], "pl.avm.de": [1478], "usr.mn": [2024], "*.hexonet.net": [7382], "mysymantec.symantec.com": [15780], "osuhe.engineering.osu.edu": [11797], "uk.4.boardgamearena.com": [2182], "techanarchy.net": [22110], "fraunhofer.de": [6091], "mmoga.de": [9780], "thepiratebay.unblocked.host": [21524], "vpn.unicef.fi": [17065], "cakedecmag.uk": [2024], "sevn.la": [2024], "atsec.com": [1359], "explorer.namecoin.info": [11062], "www.simplybusiness.co.uk": [14897], "www.itradecimb.com.sg": [2619], "pt.mondediplo.com": [10578], "hiu.worldcat.org": [18536], "cnn.it": [2024], "www.aisec.fraunhofer.de": [6091], "modmypi.com": [10549], "www.oboom.com": [21226], "2600.com": [111], "insightexpressai.com": [8173], "tendering.dongenergy.com": [4068], "sacredcrystalsingingbowls.com": [3885], "glennga.be": [2024], "static2.boligportal.dk": [2207], "thd90.com": [2024], "rursi.rtvs.sk": [13536], "joomag.com": [8639], "lh.login.yahoo.co.jp": [18730], "01.imgmini.eastday.com": [5010], "46.rkn.gov.ru": [13971], "adserver.goldenline.pl": [6799], "blog.qutebrowser.org": [13438], "xtube.com": [18694], "widgets.getpocket.com": [6566], "apt528.co": [2024], "ned.nih.gov": [11090], "visitsl.info": [2024], "macq.it": [2024], "raps.oxfordjournals.org": [12222], "aiasurety.com": [346], "r24820163.sync.app.asana.com": [1265], "rossierstudents.usc.edu": [17366], "observium.org": [11743], "www.fastshoppingcart.com": [13411], "community.magento.com": [9868], "www.onsalesit.com": [11920], "asset2.djicdn.com": [4029], "blogs.norman.com": [11525], "www.fallout4.com": [5632], "lxcnn.eu": [2024], "on.qumbr.com": [2024], "www.dyndns.berlin": [4816], "gitpri.me": [2024], "gor.environment-agency.gov.uk": [20006], "shop.dd-wrt.com": [4009], "treasury.gov": [16778], "www.influencersconference.com": [8101], "s.x100500.ru": [2024], "slfp.es": [2024], "thwskr.com": [2024], "my.sec.fail": [2024], "*.partipirate.ch": [12314], "gpo.iitb.ac.in": [7748], "vonage.co.uk": [17927], "jcs.oxfordjournals.org": [12222], "acvsha.re": [2024], "politik.fm": [2024], "freesmall.org": [2024], "scontent-b.igcdn.com": [7953], "notalwayslearning.com": [21164], "www.cardcash.com": [2846], "www.klibert.pl": [8945], "mvzj.nl": [2024], "p1.zdassets.com": [18905], "ma-pl.es": [2024], "cuckoosandbox.org": [19741], "hir.ee": [2024], "mind.oxfordjournals.org": [12222], "autola.ws": [2024], "q8car.com": [13321], "central-america.hivos.org": [7436], "transfer.srgssr.ch": [21957], "shoppingcart.aliexpress.com": [854], "icvts.oxfordjournals.org": [12222], "gfx.nrk.no": [11586], "www.jianguoyun.com": [8580], "www10.pipni.cz": [12287], "vtl.life": [2024], "th.norton.com": [11545], "linsrv101.linuxcontrolpanel.co.uk": [9441], "desk.lezhin.com": [20822], "*.spoonful.com": [15358], "home.nra.org": [21177], "www.frugalware.org": [6213], "api.paydirekt.de": [12506], "riki.wha.la": [2024], "dot.isawo.xyz": [2024], "download.lulzbot.com": [9669], "compasscard.ca": [3518], "webpier.at": [2024], "portal.clickandpledge.com": [3256], "sympathy.legacy.com": [9242], "21.cbsm.at": [8782], "sns.isc.org": [7823], "www.flattr.com": [5889], "pipe.li": [2024], "bagazos.com": [2024], "craigslist.org": [3754], "bulletin.engineering.columbia.edu": [3449], "tarif.ulgov.ru": [22356], "cryptothrift.com": [3858], "ad.9tv.co.il": [257], "hostingso.lu": [2024], "tp4.sinaimg.cn": [14910], "remote.utorrent.com": [22337], "m.csmonitor.com": [19737], "yfan.tv": [2024], "lists.itnog.it": [7852], "www.cltglobal.com": [2637], "envirostyles.ca": [5296], "kulturhusetislandsbrygge.kk.dk": [8748], "libappprod1.stanford.edu": [15448], "www.janhendrikpeters.de": [8520], "www.icg.isy.liu.se": [9097], "toysarmy.co": [2024], "bite.lt": [2015], "digitalpoint.com": [4484], "ww1.sinaimg.cn": [14910], "therd.co": [2024], "rubicondev.com": [14067], "qtl.us": [2024], "evision.brunel.ac.uk": [19459], "memberservices.beunlimited.co.uk": [16140], "info.ecosia.org": [5055], "rolex.com": [14009], "top10supps.com": [2024], "like.iwantmyname.com": [20614], "vgm.gr": [2024], "jdi.sidakova.cz": [2024], "upatient.com": [17091], "www.xplosion.de": [18677], "l.juno.is": [2024], "sg.norton.com": [11545], "*.usf.edu": [17363], "stumble-upon.com": [15612], "pr.netflix.com": [11269], "welcome.webmaker.org": [10701], "keskustelut.piraattipuolue.fi": [21412], "community.zarafa.com": [18893], "www.packetstatic.com": [12346], "gearslutz.com": [6468], "www.davidtisch.com": [4213], "idmsa.apple.com": [1151], "www.gifttool.com": [6624], "vpsboard.com": [17952], "hrservices.plymouth.ac.uk": [12873], "zboe.be": [2024], "drugstore.com": [4773], "client.pritunl.com": [13127], "ngvpn35.nvidia.com": [11022], "r.ridesharp.co": [2024], "www.1lotstp.com": [62], "autodiscover.coverity.com": [3731], "cnt.in": [2024], "*.alaskaair.com": [824], "s.seedprod.com": [2024], "genode.org": [20228], "linuxdistrocommunity.com": [9436], "wiki.piraattipuolue.fi": [21412], "*.actblue.com": [542], "assets.crucial.fr": [3828], "api.artsy.net": [1260], "presn.cc": [2024], "lansstyrelsen.tdconline.se": [15865], "steamid.eu": [15520], "energy.ch": [19996], "www.segpaycs.com": [14618], "resources.captora.com": [19508], "mail.fsfeurope.org": [5592], "f41.link": [2024], "logout.hu": [9574], "i3.go2yd.com": [20274], "gekjr.co": [2024], "myaccount.dedicatedgaming.com.au": [4278], "s.bitomule.com": [2024], "jihlava.idnes.cz": [20483], "s.regot.co": [2024], "sc1.maps.live.com": [9495], "forums.gpgauth.org": [6860], "www2.taxact.com": [16044], "eon.law.harvard.edu": [7211], "climatesystem.oxfordjournals.org": [12222], "www.eis.kent.gov.uk": [8867], "sanalmarket.com.tr": [14338], "static-hp-eus.s-msn.com": [14115], "beeron.us": [2024], "eliotsocietyvolunteer.wustl.edu": [18089], "www.wimp.no": [18368], "tjanster.idg.se": [7709], "www.bitcoinpool.com": [1995], "forums.oracle.com": [12116], "url.oradba.ch": [2024], "rhi.io": [2024], "www.familie.aok.de": [376], "collis.in": [2024], "si.play-asia.com": [12828], "www.*.uidaho.edu": [17345], "motherless.com": [10650], "ssn.uillinois.edu": [17034], "ocurl.no": [2024], "dialin.bl.uk": [2358], "dns.lc.wix.com": [18473], "mostyn.co": [2024], "mir.afisha.ru": [19107], "cdn2.mos.org": [10522], "www.mediamath.com": [10169], "meebey.net": [10218], "blacklotus.net": [2065], "sirrix.com": [14926], "dav.dropdav.com": [4762], "hub.united.com": [17302], "i.imgbox.com": [7997], "blog.tropo.com": [16835], "web.projectdev.org": [21511], "www.secur1ty.com": [14540], "awes.me": [2024], "static-cdn1.ustream.tv": [17536], "img.tsn.ua": [22301], "www.dogsbodyhosting.net": [4626], "cdn.test.cultofmac.com": [3909], "www.sussan.com.au": [15729], "quran-online.ru": [21568], "data.115.com": [28], "s.tripmii.com": [2024], "multiplayer.unity3d.com": [17310], "perq.us": [2024], "slides.ly": [2024], "git71.rostrud.ru": [21677], "arce.intecca.uned.es": [17248], "link.jwilde.me": [2024], "*.www.cloudhexa.com": [3304], "conv.indeed.com": [8056], "fr.flightgear.org": [20118], "jp.msn.com": [9810], "e8.io": [2024], "pen-testing.sans.org": [14128], "mulesoft.com": [10729], "help-es-la.nike.com": [11440], "www.anyfi.net": [1114], "support.ted.com": [15871], "safe.duckduckgo.com": [4785], "supportforums.cisco.com": [3165], "investor.activisionblizzard.com": [557], "www.adroll.com": [590], "prz.us": [2024], "twitter.freifunk.net": [6170], "manage.norton.com": [11545], "rtbtest.send.microad.jp": [10377], "leobaeck.oxfordjournals.org": [12222], "chip-digital.de": [2607], "gracefo.jpl.nasa.gov": [10909], "www.cypherpunks.ca": [3977], "suppliers.bart.gov": [1708], "byte.nl": [2501], "socialize.pcworld.com": [12261], "www.makewebeasy.com": [9927], "app.16163.com": [48], "img2.picload.org": [12693], "plyby.nl": [2024], "www.thetfp.com": [16387], "img.en25.com": [5219], "huabei.alipay.com": [864], "ses.ac": [2024], "*.manufrog.com": [9973], "legacy.nwf.org": [11126], "api.opencorporates.com": [11967], "evk.onl": [2024], "boposta.bo.infn.it": [7771], "squareup.com": [15396], "remit.onlinesbi.com": [11911], "style.udn.com": [17020], "geant3.archive.geant.net": [6291], "vicf.fr": [2024], "ua.zenmate.com": [18917], "www.media5.com": [20945], "contact-privacy.com": [16888], "card.rakuten.co.jp": [13593], "tfrankli.me": [2024], "www.southglos.gov.uk": [15257], "medicai.de": [2024], "www.community.mcafee.com": [10129], "www.podseed.org": [12891], "centb.io": [2024], "othr.in": [2024], "ryazan.europaplus.ru": [20034], "webassetsa.scea.com": [14148], "kolpino.beeline.ru": [1778], "evoyages.lequipe.fr": [20811], "my.58.com": [212], "www.rapida.ru": [13619], "datenportal.bundesnetzagentur.de": [2445], "easily.co.uk": [5002], "www2.glam.com": [6679], "www.qz.com": [13443], "cat-ams.eduroam.org": [5089], "clevelandclinicmeded.com": [3237], "en.mtmei18n.com": [10224], "mgg.mm.my": [2024], "trafficshop.com": [16719], "accounts.douban.com": [4701], "x.johndo.de": [2024], "usyd.edu.au": [22413], "pxlrmpg.com": [2024], "p.paramore.me": [2024], "focaljet.com": [5952], "www.alldaycalm.com": [892], "engin.cf.ac.uk": [2847], "android.com": [1049], "tip4commit.com": [16567], "static1.meetupstatic.com": [10231], "s.kis.ro": [2024], "hiq.bz": [2024], "forum.paradoxplaza.com": [12414], "www.c-spanvideo.org": [2508], "slashdotmedia.com": [15013], "coinwallet.eu": [3400], "recordstoreday.com": [13711], "sdilej.cz": [14492], "huit.harvard.edu": [7211], "accesspiratebay.com": [22174], "fge.me": [2024], "eu.topshop.com": [22238], "wawf.org": [2024], "red.jd.com": [8436], "mbe.oxfordjournals.org": [12222], "bhipr.co": [2024], "digital.cabinetoffice.gov.uk": [2716], "connect.facebook.com": [5609], "thehub.thomsonreuters.com": [16456], "phoenix.com": [12663], "flixbus.at": [5911], "www.searchmarketingexpo.com": [16441], "sadimt.co": [2024], "cdn.taboolasyndication.com": [15964], "talentopoly.com": [15985], "www.lps.ruhr-uni-bochum.de": [14085], "frozentux.net": [6212], "www.jdi.na.vutbr.cz": [17609], "diveb.uz": [2024], "rule.taobao.com": [16015], "api.skyscanner.net": [15006], "www.gamewithyourbrain.com": [6424], "www.vas-hosting.cz": [22428], "valiant.one": [2024], "si.dery.me": [2024], "subscriptions.golfdigest.com": [6808], "www.uber.com": [17169], "snap.nal.usda.gov": [17299], "www.myfoxdetroit.com": [11360], "talentsource.udacity.com": [17193], "l.coset.co": [2024], "webdav.cubby.com": [3903], "*.disneyinternational.com": [4555], "ywa.ms": [2024], "superteacherworksheets.com": [15688], "lobby.tools": [2024], "l.cidverse.com": [2024], "go.stack.to": [2024], "tcf.im": [2024], "tealium.com": [16060], "rus.gogetssl.com": [6762], "adbutler.com": [572], "sbridal.us": [2024], "kimsufi.com": [8908], "whsmith.co.uk": [18000], "planauskunft.swm.de": [14269], "gcmprm.oracle.com": [12116], "bydavidwittig.com": [2499], "proxfree.com": [13219], "cienciastierra.unizar.es": [17441], "www.arkane-studios.com": [1223], "r24617882.sync.app.asana.com": [1265], "fresha.es": [2024], "cr.nps.gov": [11122], "barnet.gov.uk": [19317], "newarrivals.fyi": [2024], "institute.lds.org": [16293], "st.ipad.ly": [2024], "vote.python.org": [13314], "klp.li": [2024], "eso.massyx.de": [2024], "kspr.me": [2024], "siliconera.com": [14854], "cdn.wwwpromoter.com": [22635], "rmkrcm.com": [2024], "1300.me": [2024], "openkeychain.org": [12069], "belgorodskaya-obl.beeline.ru": [1778], "wms-na.assoc-amazon.com": [1312], "nclud.me": [2024], "syndication.theguardian.com": [16364], "voxcinemas.info": [2024], "parship.kurier.at": [9055], "fashde.co": [2024], "on.22ndcm.com": [2024], "discountti.re": [2024], "downloads.chef.io": [3061], "moveit.vancity.com": [17643], "farmlogs.com": [5654], "www.uslaw.link": [17530], "spreadshirt.ch": [15371], "heatherhas.info": [2024], "kupiauto.zr.ru": [22725], "dsorg.us": [2024], "slrs.co": [2024], "cryptovpn.com": [3859], "my.rmfa.cc": [2024], "misolde.com": [2024], "labs.ripe.net": [13953], "*.media.ipcdigital.co.uk": [7794], "alumni.leeds.ac.uk": [17403], "smart.cr": [2024], "styrk.in": [2024], "www.pornhublive.com": [12973], "cho.lt": [2024], "testclever.ly": [2024], "www.phpnet.org": [12281], "www.deepin.org": [4287], "bitcoinized.com": [2024], "thinkcer.ca": [2024], "r24616666.sync.app.asana.com": [1265], "prbdn.de": [2024], "people.mit.edu": [9761], "trendmicro.com": [16791], "*.gdata.pl": [6272], "wiis.co": [2024], "snagajob.com": [15088], "anand.im": [2024], "lgno.me": [2024], "*.lovelens.li": [9638], "www.chrdnet.com": [19587], "im2.kommersant.ru": [20746], "fodor.it": [2024], "www.thebay.space": [21524], "gocho.tk": [2024], "hr.harvard.edu": [7211], "keywork.me": [2024], "l.duyetdev.com": [2024], "solid.preyproject.com": [13091], "yoly.tips": [2024], "fn.gl": [2024], "rf.osu.edu": [11797], "gamestop.com": [6405], "g2crowd.com": [6273], "img1.360buyimg.com": [148], "talklondon.london.gov.uk": [9590], "webmail.verizon.com": [17715], "pt.calameo.com": [2747, 2748], "jack.ml": [2024], "www.startmail.com": [15475], "sitescout.com": [14938], "url-2.com": [2024], "mitchell.pr": [2024], "csvcus.homeaway.com": [20395], "pantelligent.com": [12400], "codecoon.com": [3363], "nmllr.de": [2024], "2eet.co": [2024], "glbe.co": [2024], "intertru.st": [2024], "donate.rsf.org": [13844], "exchange.plymouth.ac.uk": [12873], "haerbin.jd.com": [8434], "*.hkyantoyan.com": [7073], "www.sheppyware.net": [14761], "www.web.de": [18146], "*.i.blip.tv": [2098], "v0g.prod-e.web.apps.uprr.com": [22392], "lessthan3.com": [9274], "noyes.me": [2024], "vologda.startsmile.ru": [21980], "shp.hm": [2024], "www.cue.me": [3906], "www.lanbilling.ru": [20775], "*.baylor.edu": [1731], "acrylicwifi.com": [540], "a.fresh.horse": [2024], "kenai.com": [8861], "www.medwatch.dk": [10152], "actaneurocomms.biomedcentral.com": [1931], "edge.navs.me": [2024], "lists.xen.org": [22648], "www.mtna.org": [9814], "*.unc.edu": [17059], "egg.com": [5101], "foerderung.lpice.eu": [9109], "smutty.com": [15079], "campustreball.upf.edu": [17471], "nomadesk.com": [11500], "chase.com": [3032], "globalnews.iu.edu": [8069], "abd.li": [2024], "measure.richmetrics.com": [2467], "bannersnack.com": [1678], "piery.ovh": [2024], "jmb.mobi": [2024], "img.utdstc.com": [22415], "sys4.de": [15811], "bensabic.social": [2024], "secure.manchester.gov.uk": [9954], "disneyprivacycenter.com": [4556], "*.nifty.com": [10965], "dynstatus.com": [4817], "www.lpo.org.uk": [9110], "ocul.us": [2024], "www.mville.edu": [9963], "www.nemertes.com": [11185], "livestrong.com": [9510], "styles.litmuscdn.com": [9484], "www.mirrorreaderoffers.co.uk": [10484], "www.edpessoa.internet.edp.pt": [4888], "payments.bolton.gov.uk": [19424], "workspaces.acrobat.com": [536], "file2.qidian.com": [13349], "a.mbx.io": [2024], "turktk.com": [16910], "hertz247.it": [7351], "docs.fastly.com": [5676], "korzar.sme.sk": [14198], "r24616637.sync.app.asana.com": [1265], "ossswebcs.admin.uillinois.edu": [17034], "player.video.news.com.au": [11378], "www.osrfoundation.org": [11712], "www.academiapress.be": [492], "www.soccerwaveuk.com": [15121], "hertz247.ie": [7350], "secure.ngagelive.com": [11411], "ddfly.co": [2024], "game.qq.com": [13328], "sn.sbisec.co.jp": [2024], "www.csie.ntu.edu.tw": [11010], "clientarea.ewebscapes.com": [4983], "payu.ru": [12522], "mediaspace.nottingham.ac.uk": [11567], "discoveryplacekids.org": [4545], "wiki.tcl.tk": [16051], "hol.is": [2024], "marketo.ringcentral.com": [13948], "myc.im": [2024], "organo.mx": [2024], "*.ntwk45.com": [11598], "www.mekanist.net": [10252], "go.12wave.com": [2024], "ussitez.link": [2024], "fotoalbumy.azet.sk": [1507], "webmail.cari.net": [2531], "ysubookstore.com": [18833], "datenschutz-ist-buergerrecht.de": [4208], "get.exp.sr": [2024], "assets.over-blog.com": [12188], "www.enterprisersproject.com": [5280], "marketing.anadolu.edu.tr": [1029], "m.washingtonpost.com": [18086], "*.www.ionaudio.com": [7783], "www.a14electronics.com": [262], "on.evr.st": [2024], "2pay.ru": [132], "a3.mzstatic.com": [10893], "on.altoning.com": [2024], "direct.adsrvr.org": [688], "www.hertzautovermietung.pl": [7357], "zudu.uk": [2024], "oem.why-opencomputing.com": [22584], "mtnafoundation.org": [9815], "dacort.me": [2024], "www.london-nano.com": [9586], "cllgn.co": [2024], "2.robu.co": [2024], "kanotix.de": [8797], "shop.jpgmag.com": [8460], "b.99su.co": [2024], "lfshoe.com": [2024], "autotrader.co.uk": [19279, 19280], "24m.fr": [2024], "womenshealthspecialists.org": [18499], "www.tek.no": [16128], "go.imotors.com": [2024], "*.fontspring.com": [5974], "www.webmetrics.com": [18226], "cottle.co": [2024], "cf.static.xxxbunker.com": [18699], "hg.savannah.gnu.org": [6337], "i.cars.ru": [19518], "showroom.qt.io": [13365], "ussu.co": [2024], "steelbld.gs": [2024], "spic5.51fanli.net": [209], "tr.godaddy.com": [6755], "osum.it": [2024], "tv-program.aktuality.sk": [1507], "lauramercier.com": [937], "video.mcdonalds.ru": [20941], "ldrsnb.st": [2024], "zwischenwelt.milchkind.net": [10428], "ns1.ipleak.net": [20571], "planning.warwickshire.gov.uk": [22532], "zewotest.tocco.ch": [16600], "www.iblocklist.com": [7900], "s111.cnzz.com": [3328], "askezra.cornell.edu": [3676], "captl1.co": [2024], "adatbazisok.nav.gov.hu": [10912], "www.thegoodfight.fm": [16358], "qlikview.iciciprulife.com": [7917], "www.chromeexperiments.com": [3122], "www.nhseportfolios.org": [10954], "developers.dwolla.com": [4809], "*.yelp.com.tw": [18766], "www.olioboard.com": [11820], "sandwell.gov.uk": [21729], "codm.info": [2024], "go.unite.ad": [2024], "document.no": [4615], "*.penguinwebhosting.com": [12568], "ppolly.com": [2024], "*.elte.hu": [4917], "livetvrain.cdnvideo.ru": [19536], "tv-family.ga": [2024], "zh.pcisecuritystandards.org": [12253], "musecdn2.businesscatalyst.com": [2475], "url.gracey.net": [2024], "www.endrift.com": [5238], "nds2.play-asia.com": [12828], "www.fveydocs.org": [5599], "www.nodesecurity.io": [11490], "www.ubykotex.com.au": [16994], "gxsit.es": [2024], "www.digboston.com": [4454], "device.is": [2024], "local-rximage.nlm.nih.gov": [11090], "icdn.lenta.ru": [20809], "openvirtualizationalliance.org": [12058], "x.baronkutz.com": [2024], "mx.su": [2024], "www.cisecurity.org": [2628], "status.qtcloudservices.com": [13366], "meine.rwe.de": [21706], "kemerovskaya-obl.beeline.ru": [1778], "seroundtable.com": [14164], "cdn.travis-ci.com": [16775], "*.marketo.com": [10025], "shopstyle.*": [14781], "school-txt.me": [2024], "*.burlingtonfreepress.com": [2457], "fdworlds.net": [5693], "asym.us": [2024], "eirc.taiget.ru": [22088], "interestimages.grvcdn.com": [6968], "imageoptim.com": [7981], "secure.eu.ikea.com": [7962], "aqua.scribus.net": [14478], "emph.oxfordjournals.org": [12222], "on.oceg.org": [2024], "vilagterkep.atlatszo.hu": [1349], "bibliotek.kk.dk": [8748], "openmoko.org": [12071], "lhc-statistics.web.cern.ch": [2588], "shop.msicomputer.com": [9807], "mm.atom.com": [2024], "nbsp.fr": [2024], "www.littlesis.org": [9488], "nab.com.au": [10905], "canadahelps.org": [2806], "unst.me": [2024], "*.ssl.hwcdn.net": [7644], "lcsocial.net": [2024], "www.ndsweb.swissmedic.ch": [22061], "my-lavi.cf": [2024], "www.southampton.gov.uk": [15259], "namei.org": [11063], "s.lookfor.hk": [2024], "svet.sme.sk": [14198], "patin.co": [2024], "manage.nodeserv.com": [11488], "www.webcruiter.no": [18209], "p-c-g.info": [2024], "action.careinternational.org.uk": [19514], "mastercard.us": [20930], "travelba.gs": [2024], "dashboard.jwplatform.com": [8479], "artinstitutes.edu": [16251], "condo.lu": [2024], "lockscalecompare.com": [20868], "nl.golem.de": [6804], "cdn.motor.ru": [21026], "goavt.com": [2024], "blog.stefan-betz.net": [15529], "fueleconomy.gov": [6220], "2cc.co": [2024], "erae.oxfordjournals.org": [12222], "subscriberservices.mcclatchy.com": [10130], "videoaidedinstruction.com": [17777], "www.clara.io": [3211], "www.clixgalore.com": [19617], "enil.us": [2024], "carul.li": [2024], "www.readyflowers.com": [13680], "apichangelog.com": [19214], "s12.postimg.io": [13024], "mwt.bz": [2024], "economy.com": [5054], "isha.co": [2024], "app.dingtalk.com": [19842], "reportingitc2.apple.com": [1151], "s.vaderrp.com": [2024], "s-hertogenbosch.nl": [11172], "bib.oxfordjournals.org": [12222], "www9.unicef.org": [17069], "n8j1s.co": [2024], "dmds.cc": [2024], "mail.google.com": [6818], "www.apschedule.com": [395], "apps.doncaster.gov.uk": [4672], "www.pantheon.io": [12401], "cibot.bufferapp.com": [2419], "getrave.com": [6584], "blogcatalog.com": [2115], "*.neimanmarcus.com": [15916], "biomethods.oxfordjournals.org": [12222], "www.bcash.com.br": [1745], "activtracker.johnshopkins.edu": [8626], "www2.ilxgroup.com": [7757], "joshl.im": [2024], "t.bowl.com": [2024], "client.hip.live.com": [9495], "www.edi.admin.ch": [22061], "mailpoet.com": [9896], "go.razgibaj.se": [2024], "y16.se": [2024], "sngy.ly": [2024], "heatmap.it": [7277], "llayer.eu": [2024], "pwg.gtimg.cn": [6974], "a.nqa96.me": [2024], "staging.dol.gov": [19867], "evanced.info": [5424], "www.ithaca.edu": [8404], "fs06.enter.ru": [20002], "gamebase.dealspwn.com": [7556], "publicmobile.ca": [13257], "pds-naif.jpl.nasa.gov": [10909], "www.ibutsu.org": [20472], "webmail.mit.edu": [9761], "v.alue.co": [2024], "budejovice.idnes.cz": [20483], "joycasino8.com": [20654], "www.sedonaaz.gov": [3187], "kuro5hin.org": [9056], "xact.spiceworks.com": [15338], "a2.jimstatic.com": [8585], "adl.engineering.osu.edu": [11797], "prn.to": [2024], "mypack.ncsu.edu": [11531], "x.hitravel.xyz": [2024], "afeed.co": [2024], "deutsche-boerse.com": [4395], "bfpne.ws": [2024], "admin.over-blog.com": [12188], "depfile.com": [4352], "news-cdn.efinancialcareers.com": [4903], "r.yunlo.net": [2024], "nitin.io": [2024], "m9.chaucanh.net": [2024], "sbird.co": [2024], "www.sony.com.hk": [15212], "www.watson.ch": [22537], "www.browser.yandex.com": [18742], "publicintelligence.net": [13256], "www.dol.gov": [19867], "demor.at": [2024], "parlmany.com": [21350], "retailer.iciciprulife.com": [7917], "huw.li": [2024], "ifriend.inf.ed.ac.uk": [5059], "imgjam2.jamendo.com": [8512], "indiafamily.bl.uk": [2358], "richarddawkins.net": [13928], "wolblog.com": [2024], "mkca.ga": [2024], "www.pentestpartners.com": [12563], "iwtas.me": [2024], "www.tl63.co.uk": [16584], "arlgp.co": [2024], "cdn.findnsave.com": [5820], "kirkslc.me": [2024], "tvp.ag": [2024], "blog.lizdenys.com": [9533], "smallnetbuilder.com": [17690], "igi.gs": [2024], "circle.melonbooks.co.jp": [10258], "chillicothegazette.com": [3081], "www.meteoprog.kz": [10338], "nicbravo.co": [2024], "aravot.am": [19225], "www.joy-kazino.com": [20654], "dealabs.me": [2024], "reader.uni-mainz.de": [17410], "www.9to5toys.com": [256], "unixstickers.com": [17439], "nue.md": [2024], "www.computer-bild.de": [19660], "trailofbits.com": [16729], "mrzine.monthlyreview.org": [10607], "s7.gismeteo.pl": [20252], "www.bosfera.ru": [19430], "lnrs.co": [2024], "www.orangestatic.com": [12125], "go.pulsem.me": [2024], "careers.bremer.com": [2320], "www.matricien.org": [20935], "lib.polyu.edu.hk": [12936], "delta.no": [4319], "cog.to": [2024], "hackerspace.pl": [7136], "org-rev.com": [2024], "g1.ykimg.com": [22681], "www.poliisi.fi": [12912], "32red.com": [136], "secure.gktw.org": [6668], "crowdfunding.justgiving.com": [8710], "www.europe-miniatures.com": [5413], "restoran.afisha.ru": [19107], "www.parship.nl": [12449], "titn.co": [2024], "fr.spontex.org": [15357], "stookes.co": [2024], "ccp.osu.edu": [11797], "nachhaltigesbauen.htwk-leipzig.de": [7596], "www.youtube.co.ug": [18800], "www.heapanalytics.com": [7268], "javelinstrategy.com": [8544], "ns.boum.org": [2261], "www.twinsornot.net": [16954], "oobld.com": [2024], "www.hs.ias.edu": [7673], "s.qbo.me": [2024], "learning.isc2.org": [7824], "bricew.me": [2024], "www.gradimages.com": [6865], "pl.4.boardgamearena.com": [2182], "wibi.co": [2024], "wbz.gy": [2024], "www.tricorder.kairo.at": [8782], "tekgoblin.com": [16129], "theglobeandmail.com": [16297], "medicinescomplete.com": [10207], "www.eduroam.cz": [5088], "catalysts.engineering.osu.edu": [11797], "s1.biz.itc.cn": [8401], "media.acast.com": [19045], "dkmn.tl": [2024], "go.elsifi.com": [2024], "www16.pipni.cz": [12287], "illinois.edu": [17346], "bg.libreoffice.org": [9327], "www.pentestmag.com": [12576], "eventspace.georgetown.edu": [6531], "wishlistgranted.com": [18463], "leed.st": [2024], "*.dntrck.com": [4064], "polygon.com": [12937], "privatetunnel.com": [13147], "www.vavinet.vutbr.cz": [17609], "www.fabiankeil.de": [5606], "s.umhb.us": [2024], "cdn.2kgames.com": [117], "via.ihin.es": [2024], "semprep.ro": [2024], "ssl.maplecroft.com": [20925], "lbclibrary.worldcat.org": [18536], "cpner.com": [2024], "prgenerator.freifunk.net": [6170], "diff2.smartadserver.com": [15049], "l.xat.social": [2024], "chiro.link": [2024], "w.escortera.com": [2024], "yakk.in": [2024], "go.brefe.com": [2024], "gitweb.dragonflybsd.org": [4734], "rayrc.urled.me": [2024], "oxd.link": [2024], "new.a-3.ru": [258], "feedback.sknt.ru": [21851], "my.securepoint.de": [14572], "cacert.org": [2534], "www.cqrcengage.com": [2668], "www.io9.com": [8329], "xpup.me": [2024], "minwax.link": [2024], "ho17.majordomo.ru": [9914], "intranet.fce.vutbr.cz": [17609], "1cart.com": [61], "earth.lp0.eu": [9648], "www.sonatype.com": [15202], "alls.tl": [2024], "go.grox.com.au": [2024], "brandfolder.com": [2301], "forms.nrc.gov": [17301], "www.guidefaq.com": [6990], "video-verleih.mediamarkt.de": [20949], "app.srcclr.com": [15404], "blog.sourcefabric.org": [15248], "b.mamund.com": [2024], "mybitcointrade.com": [1984], "pawoo.net": [12496], "spookstud.io": [2024], "media.demozoo.org": [19808], "www.marshut.net": [10037], "jtn.me": [2024], "r29.us": [2024], "tatsotsbank.ru": [16039], "www.nikon-lenswear.com": [11443], "*.thedailybeast.com": [16341], "yelpblog.com": [22674], "www.e-mail-made-in-germany.de": [4836], "wndr.nu": [2024], "bo.xm.com": [18611], "www.marieclaire.co.uk": [10001], "carwash.dhs.gov": [4026], "*.hp-ww.com": [7379], "p.amoad.com": [371], "pg-vb.cdn.viber.com": [17751], "my.cs.illinois.edu": [17346], "stve.me": [2024], "www.cloudsleuth.net": [3292], "photos.cams.com": [2801], "stanfordfund.stanford.edu": [15448], "bitn.am": [2024], "ddd.444.hu": [183], "*.involver.com": [8327], "www.certificate-transparency.org": [2975], "eval.georgetown.edu": [6531], "fundfill.com": [6235], "www.torguard.net": [16639], "link.worldcat.org": [18536], "s-cs.send.microad.jp": [10377], "sonsh.in": [2024], "learndrupal.stanford.edu": [15448], "static-cdn2.ustream.tv": [17536], "jmao.me": [2024], "chudson.me": [2024], "www.etmirror.com": [20027], "www.geenstijl.nl": [20221], "url.bitflix.me": [2024], "zbut.mvd.ru": [21055], "nzbindex.nl": [11042], "apply.mebank.com.au": [9748], "www.lib.hku.hk": [20387], "cc.moticos.io": [2024], "by.jhernandz.es": [2024], "www.boxopus.com": [2277], "derbyshire.gov.uk": [19810], "itbig.co": [2024], "staff.library.spu.ac.th": [14224], "ad.adc-srv.net": [19074], "sky.com": [14989], "www.grc.com": [6357], "careers.nra.org": [21176], "eztv.ag": [20063], "ohmbb.com": [2024], "els.golosinfo.org": [20286], "nypost.com": [21213], "5hats.link": [2024], "victorinox-japan.tumblr.com": [16897], "www.paydirtgold.com": [12504], "ccforum.biomedcentral.com": [1931], "www.silicon.fr": [11238], "www-lt.net-a-porter.com": [11210], "healthyforkids.wpengine.netdna-cdn.com": [7265], "*.secure-donor.com": [14545], "francisfrith.com": [20150], "qcpri.de": [2024], "textmechanic.com": [22133], "nibusinessinfo.co.uk": [21135], "www.legaldirectories.com": [9244], "www.defcon.ru": [4289], "discuto.io": [4549], "loan.jd.com": [8436], "infobase.thomsonreuters.com": [16456], "olc.energy.gov": [5243], "hrw.io": [2024], "vegasdealhunter.com": [17679], "bonus.rsb.ru": [14058], "*.888173.net": [239], "planetebusiness.lemonde.fr": [9204], "odeli.us": [2024], "autodiscover.receivefreesms.net": [21607], "*.puhtml.com": [21541], "publish2.me": [21536], "desmume.org": [4232], "c00l.cc": [2024], "www.greenmangaming.com": [6915], "capitadiscovery.co.uk": [19507], "www.embeddedanalytics.com": [5190], "5.*.wdfiles.com": [18387], "www.dishonored.com": [18928], "coursesmart.com": [19701], "global.stanford.edu": [15448], "webmail.fsdata.se": [5596], "bringr.it": [2024], "bib.schema.org": [21742], "api.unthem.com": [17457], "www.facturanahora.vodafone.pt": [17903], "www.habbo.fi": [7112], "sugar.zhihu.com": [18956], "www.brighttag.com": [2341], "mghty.pe": [2024], "support.miniclip.com": [10460], "corporate.livingsocial.com": [9530], "mgnm.fotogr.fr": [2024], "news.stanford.edu": [15448], "metrorev.org": [2024], "media.tori.net": [22242], "wwwsecure.lego.com": [9082], "stmpe.de": [2024], "martiago.ourproject.org": [21314], "lists.sch.bme.hu": [1556], "twistedmatrix.com": [16958], "ssllabs.com": [14243], "www.cimbbank.com.my": [2618], "kislovodsk.beeline.ru": [1778], "store.couchsurfing.com": [19696], "www.unitednuclear.com": [17297], "path.st": [2024], "jobs.eoportal.org": [5303], "nnewsh.co": [2024], "ah.yimg.jp": [18778], "s.komarch.net": [2024], "www.convertkit.com": [3630], "*.esri.com": [5352], "www.homebase.com": [7486], "glory.gsfc.nasa.gov": [10909], "hongan.jd.com": [8434], "www.indybay.org": [8087], "g.mikorobyo.com": [2024], "sauc.me": [2024], "horoskopy.aktuality.sk": [1507], "support.counterpath.com": [19697], "picscore.co": [2024], "gocan.es": [2024], "ivfte.ch": [2024], "xengo.in": [2024], "*.goldencharter.co.uk": [6797], "www.videolan.org": [17775], "www.forbesmagazine.com": [5996], "pg2.me": [2024], "domru.ru": [4670], "docs.oracle.com": [12116], "unwf.co": [2024], "www.suburban.nl": [15634], "www.prospectmagazine.co.uk": [13205], "www.testfabrik.com": [22130], "www.eyeboot.com": [5525], "skibu.ms": [2024], "xt0lz.com": [2024], "unwr.tn": [2024], "chomes.ca": [2024], "angarsk.startsmile.ru": [21980], "tcns.tk": [2024], "f1.support.mindtouch.com": [10445], "www.supercard.ch": [3647], "bro.org": [2363], "www.notalwayslearning.com": [21164], "thepiratebay.sx": [22175], "cbag3.c-base.org": [2506], "azubi2.bundesanzeiger-verlag.de": [19471], "grandhaventribune.com": [6875], "support.silentcircle.com": [14848], "hookupcioud.com": [2024], "www.jobandtalent.com": [22630], "bj.bcebos.com": [19337], "www.scratch.mit.edu": [9763], "rlauren.co": [2024], "mrfile.me": [10711], "cakepdx.co": [2024], "brian.pe": [2024], "www.legitbs.net": [9248], "manage.hosting.digiweb.ie": [4500], "www.msfc.nasa.gov": [10909], "www.dundeecity.gov.uk": [4794], "suspen.se": [2024], "www.zuji.com.hk": [19021], "euwvideo.adsrvr.org": [688], "dnt.me": [2024], "1.s-jung.com": [2024], "static.vliegtickets.nl": [17890], "vy.recordfy.com": [2024], "defiance.friday.ru": [20175], "hogs.me": [2024], "*.gweb.io": [7016], "www.audits.uillinois.edu": [17034], "malea.us": [2024], "snutt.nrk.no": [11586], "go.eizil.com": [2024], "www.dedigitaletopschool.nl": [4235], "crate.io": [3761], "www.opendnssec.org": [11970], "ontsi.red.es": [13720], "crm.fsfe.org": [5591], "blog.lastpass.com": [9175], "imgad0.pconline.com.cn": [12263], "r.sal.tt": [2024], "ojs.uv.es": [17544], "godoc.mtree.mycelium.com": [21063], "l.transvias.net": [2024], "u.kai.gs": [2024], "www.irunsafe.com": [14091], "www.cherry.de": [3066], "www.eai.org": [5140], "*.wikinvest.com": [18389], "w.cnzz.com": [3328], "bedfordcornexchange.co.uk": [19342], "tile2.bbcimg.co.uk": [19333], "medievalstudies.georgetown.edu": [6531], "connect.mail.ru": [9891], "ftn.co": [2024], "kwsplc.com": [2024], "pro-labs.imdb.com": [7760], "sparkle-project.org": [15292], "neptun.bme.hu": [1556], "dry.gd": [2024], "start.duckduckgo.com": [4785], "geoamigo.com": [6520], "to.kibab.de": [2024], "fb.finam.ru": [5806], "eu.oheuaqui.com": [2024], "www.mujbiz.cz": [10728], "shiftlog.aviationweather.gov": [19285], "on.robyn.com": [2024], "www.sec.informatik.uni-goettingen.de": [17253], "prace.cz": [13054], "dhwk.me": [2024], "webtask.io": [18254], "swot.jpl.nasa.gov": [10909], "produits.migros.ch": [10417], "southend.firmstep.com": [20109], "rcat.es": [2024], "ftp.linux-mips.org": [9428], "www.freebusy.io": [6101], "www.jsbi.org": [8468], "community.microfocus.com": [10382], "stockport.nhs.uk": [10953], "s.richie.fi": [2024], "shop.corsair.com": [3688], "www.it-agenten.com": [7840], "mailtest.nanog.org": [11529], "labs.opera.com": [12086], "petek.im": [2024], "osvita.ua": [21306], "www.rethink.org": [21637], "garagegames.com": [6438], "starsearchcasting.com": [15462], "online.sberbank.ru": [14383], "islington.gov.uk": [8384], "s.wihel.de": [2024], "doto.intevation.de": [8293], "a.rznv.eu": [2024], "about.gitlab.com": [6658], "titanfile.com": [16574], "dynimages.autoscout24.ch": [1457], "www.codehs.com": [3347], "coupons.paypal.com": [12500], "feeds.thetimes.co.uk": [16538], "ehot.me": [2024], "campaigns.f-secure.com": [5533], "vip.beeline.kz": [19345], "tempo.cnrs.fr": [6174], "ade.clmbtech.com": [19619], "whatca.st": [2024], "3drmedia.com": [2024], "www.rivalseek.com": [13962], "ecustomeropinions.com": [4880], "yilan.io": [22680], "*.privatepaste.com": [13150], "www.markmail.biz": [10012], "www.simlar.org": [14876], "www.fluidhosting.com": [5931], "woori.se": [2024], "grmp.co": [2024], "ncsi.com": [10929], "www.oesar.osu.edu": [11797], "indy.st": [2024], "sociology.hku.hk": [20387], "www.engineering.osu.edu": [11797], "www.brueckenbauer.ch": [10418], "anmol.cc": [2024], "go.jejs.wedding": [2024], "ngib.in": [2024], "blog.whsmith.co.uk": [18000], "donate.garyjohnson2012.com": [6443], "download-cdn.gfe.nvidia.com": [11022], "security-database.com": [14581], "london.greenparty.org.uk": [6908], "www.aea.se": [730], "web1.dist.maricopa.edu": [9997], "*.ideafit.com": [7928], "www.saucenao.com": [14364], "teylingen.nl": [11172], "urls.dyc.qa": [2024], "w.thefga.org": [2024], "gavelbuddylive.com": [6450], "programacion-tv.elpais.com": [5126], "blusigd.es": [2024], "www.happyassassin.net": [7192], "upc-cablecom.biz": [22386], "www.moerdijk.nl": [11172], "dfmf.uned.es": [17248], "jmolecularpsychiatry.biomedcentral.com": [1931], "status.acast.com": [19045], "www.redcare.bt.com": [1578], "china.taobao.com": [16015], "console.theplatform.com": [16308], "www.clkrev.com": [3271], "market.domainer.ru": [19870], "www.dbforums.com": [4002], "airme.ch": [2024], "l.gnva.com": [2024], "komments.net": [8977], "watersgeo.epa.gov": [4928], "fe-ddis.dk": [5554], "s.verinosa.com": [2024], "www.museumsarbeit.htwk-leipzig.de": [7596], "m.ianstanley.ie": [2024], "aliexpr.es": [2024], "dl0.savannah.gnu.org": [6337], "www.business.un.org": [17057], "*.fyre.co": [9521], "labelsig.com": [9142], "skbt.co": [2024], "info.vmware.com": [5170], "e8.biz": [2024], "marketing.yell.com": [22672], "cdn.fnmag.co": [5573], "twd.ac": [2024], "thrl.st": [2024], "pages05.net": [12362], "www.imf.org": [7761], "tiggerswelt.net": [16517], "www.foodwatch.org": [5983], "my.nypost.com": [21213], "www.erc.edu": [4941], "hiw.is": [2024], "airbitz.co": [19121], "travel.state.gov": [17146], "pvp.x5.ru": [18590], "www21.anthem.com": [19206], "blog.inf.ed.ac.uk": [5059], "www.eplus-gruppe.de": [4839], "amo.news": [2024], "photo.issuu.com": [8392], "06.imgmini.eastday.com": [5010], "s20.postimage.org": [13024], "yanao.beeline.ru": [1778], "rentv.cdnvideo.ru": [19536], "developer.mydigipass.com": [10869], "cmne.ws": [2024], "shipwi.re": [2024], "videoyun.tk": [2024], "vinho.me": [2024], "endi.co.tt": [2024], "cat.eduroam.de": [19960], "ojsspdc.ulpgc.es": [17213], "www.unisend.com": [17288], "sanmarcos.illuminateed.com": [20494], "visitante.acesso.uol.com.br": [17079], "unwire.hk": [17460], "cee.mitre.org": [10497], "www.ornl.gov": [11730], "cdn3.spiegel.de": [15342], "miflota.co": [2024], "trsz.me": [2024], "bunyo.ro": [2024], "gatemkt.in": [2024], "rbslink.ca": [2024], "g3.std3.ru": [15511], "rol.im": [21667], "accesslink.ucsd.edu": [17012], "atlt.co": [2024], "in.mofi.in": [2024], "raq.cc": [2024], "101xp-portal-en.cdnvideo.ru": [19536], "picomoney.com": [12695], "hnkscrft.co": [2024], "volksverschluesselung.de": [17918], "developer-dev.allizom.org": [904], "d2.i5m.nl": [2024], "pskov.beeline.ru": [1778], "tuf.bz": [2024], "bpsmedicine.biomedcentral.com": [1931], "fldr.to": [2024], "cdn.static2img.com": [3917], "swimu.com": [2024], "myprofile-mktas.oracle.com": [12116], "unregister.un.org": [17057], "s-passets-cache-ak1.pinimg.com": [12724], "jomill.co": [2024], "9l7gf7x5o9v.xyz": [2024], "www.6connect.com": [224], "gdoc.un.org": [17057], "www.thedma.org": [16340], "www.clearxchange.com": [3232], "mariadb.org": [9996], "s.siemoto.com": [2024], "en.about.aegeanair.com": [6896], "video.blick.ch": [2091], "itsfrom.me": [2024], "crowdcontrol.lotame.com": [9622], "rys.link": [2024], "www.hea.net": [7040], "iipvv.nl": [7744], "intellij-support.jetbrains.com": [8573], "assets-sports.vice.com": [17754], "assetspost.com": [2992], "www.bestwebhostinggeek.com": [920], "m.udn.com": [17020], "o.ocho.co": [2024], "www.act-on.com": [19054], "api.pcbsd.org": [12247], "cryptoparty.in": [3877], "cricket.redbull.in": [13726], "honorcards.heifer.org": [7283], "minfin.49gov.ru": [187], "sacjr.nl": [2024], "cbscorporation.com": [19526], "htc2.accu-weather.com": [520], "official.contest.yandex.com": [18742], "library.linode.com": [9401], "redweb.com": [13759], "u.suntravel.xyz": [2024], "www.oralb-blendamed.de": [12118], "sso.tealiumiq.com": [16060], "www.hola.org": [7453], "www.prnt.sc": [21502], "regardz.me": [2024], "warrington.greenparty.org.uk": [6908], "support.samsungknox.com": [14331], "wbr.io": [2024], "cgti.unizar.es": [17441], "rpc.mail.aol.com": [380], "e.here.com": [7325], "sip.mbank.pl": [9733], "survey.tlem.hku.hk": [20387], "www.webinspector.com": [18136], "lvmanagement.com": [9171], "support.distilnetworks.com": [4562], "smartbear.com": [21865], "acedemo.oss.aliyuncs.com": [19143], "gutheal.me": [2024], "bodyandf.it": [2024], "styles.freescale.com": [6161], "www.breakingviews.com": [19446], "www.cryptonotefoundation.org": [19730], "ideas.spkcn.com": [15349], "sjfc.worldcat.org": [18536], "scoliosisjournal.biomedcentral.com": [1931], "puffl.es": [2024], "*.csis.gc.ca": [2816], "wbsnlabs.com": [2024], "lnk.renteapp.nl": [2024], "blog.caat.org.uk": [19490], "airbnb.com.br": [793], "api.beget.com": [19347], "admission.williams.edu": [18408], "www.quitter.is": [13422], "cmx.to": [2024], "c1.websitealive.com": [18242], "hccdashboard.web.cern.ch": [2588], "tkon.li": [2024], "www.appguru.com": [1136], "go.jpanzer.de": [2024], "tv.yandex.com.tr": [18740], "cvs.debian.org": [4263], "hillingdon.greenparty.org.uk": [6908], "tito.io": [16482], "8-s.imgbox.com": [7997], "fxne.ws": [2024], "tlt.tpprf.ru": [22260], "applet.danid.dk": [4126], "files2.newsnetz.ch": [11371], "hop2.it": [2024], "dni.sh": [2024], "midio.ma": [2024], "rsr.nyc": [2024], "flirtprof.is": [2024], "pretenzii.otpbank.ru": [12165], "finanzcheck.de": [20101], "rfxn.com": [13913], "www.beeline.ru": [1778], "www.ct.de": [7288], "services.amazon.de": [19174], "kpcne.ws": [2024], "qlik.to": [2024], "trm128.brassring.com": [19443], "abpe.nav.gov.hu": [10912], "thunderclap.it": [16479], "www.coursefinder.io": [3716], "s.bussanten.jp": [2024], "avaa.net": [2024], "img.sedoparking.com": [14608], "tver.beeline.ru": [1778], "eetv.la": [2024], "goto.cattes.net": [2024], "kornerstoneadmin.com": [9000], "preferences-mgr.truste.com": [15922], "youtube.hu": [18800], "app-api.kfc.ru": [20707], "vel.ms": [2024], "q3.qlogo.cn": [13355], "z.jd.com": [8436], "largeform.at": [2024], "riot.mail.ru": [9891], "glueckspost.ch": [6733], "journal-republican.com": [12689], "my.kyivstar.ua": [9067], "blogs.faz.net": [5545], "dianebe.al": [2024], "profiles.udacity.com": [17193], "sas.fazekas.hu": [5686], "www.siemens.*": [14831], "b.aviho.st": [2024], "www.designova.net": [4376], "t.brianwolf.tv": [2024], "www.vz-nrw.de": [17706], "geizhals.at": [6494], "www.cure53.de": [3921], "connexity.com": [3586], "conteudos.meo.pt": [10286], "*.veinteractive.com": [17674], "j.arvicor.de": [2024], "wpe.link": [2024], "todaoferta.uol.com.br": [17078], "lists.bugzilla.org": [2425], "niteflirt.com": [11464], "omiai.yahoo.co.jp": [18730], "uncho.se": [2024], "cncrtblg.gr": [2024], "onep.gr": [2024], "fanhb.co": [2024], "ec.europa.eu": [5411], "cide.red": [2024], "sagt.co": [2024], "swrm.es": [2024], "osscvs.cern.ch": [2587], "portal.cms.gov": [19630], "rbmbenz.com": [2024], "dev.mutt.org": [10773], "jobmarket.nytimes.com": [11040], "hohndel.org": [3506], "*.startjesucces.nl": [20470], "uniorg.githost.io": [20253], "pixel.criteo.net": [3798], "on.lpfisite.com": [2024], "login.uni-mainz.de": [17410], "*.spreadshirt.ch": [15371], "paw.im": [2024], "rwick.it": [2024], "0.k0uk0s.gr": [2024], "actiaccyberinitiative.ideascale.com": [20479], "cdn.vocab.com": [22484], "www.go.ncsu.edu": [11531], "pa247.tk": [2024], "harakah.net.my": [7194], "froscon.de": [6071], "www.kt.kz": [20761], "info.flightradar24.com": [20119], "health.ucsd.edu": [17012], "*.ad-srv.net": [16025], "cp2.koptevo.net": [20749], "www.ativismo.org.br": [1341], "bugs.dokuwiki.org": [4631], "jiaofei.alipay.com": [864], "tachanka.org": [15965], "*.foreseeresults.com": [6000], "tools.linuxlovers.at": [9446], "b3-uk.mookie1.com": [10617], "itsupport.usc.edu": [17366], "sedorset.greenparty.org.uk": [6908], "www.s-3.com": [14112], "nature.nps.gov": [11122], "q4os.org": [21552], "go.coverity.com": [3731], "snkrhd.fr": [2024], "www.mp3scene.info": [21032], "esellerate.net": [5346], "content8.flixster.com": [5913], "wirbr.de": [2024], "dms-sweden.com": [4037], "foresters.co": [2024], "cgc.gov.au": [3496], "haka-ds.funet.fi": [6242], "zerotier.com": [18942], "ivanovo.sledcom.ru": [21858], "happi.me": [2024], "www.orb-international.com": [11695], "*.badgeville.com": [1630], "c.boardgamearena.net": [2182], "tanks.dft.gov.uk": [19825], "hfear.co": [2024], "smartcou.pl": [2024], "go.pmc.com.br": [2024], "soulful.us": [2024], "www.deutsche-boerse.com": [4395], "login.beckerproxy.wustl.edu": [18089], "sloth.in": [2024], "wnydeals.co": [2024], "app.intercom.io": [8241], "cmdf.us": [2024], "www.fcitx-im.org": [5692], "yourgeni.us": [2024], "0b1e96ea-1df3-d652-73a8-9c35748f48ba-rum.cdnvideo.ru": [19536], "abo.spiegel.de": [15342], "*.blaze.com": [2080], "fabrianivan.com": [2024], "communities.oracle.com": [12116], "inspiration.dal.net": [3994], "debugs.theforeman.org": [22152], "atlantis.sk": [1345], "tarlogic.com": [16028], "prsp.ac": [2024], "centri.net.co": [2024], "l.stenstrom.no": [2024], "img3.glassdoor.com.au": [20261], "www.pritunl.com": [13127], "socializer.cc": [15138], "support.groundspeak.com": [6947], "groo.tk": [2024], "kesslercn.tk": [2024], "joy-kasino.com": [20654], "dizo.49gov.ru": [187], "intech.akixi.com": [19129], "*.foxbusiness.com": [6064], "trdkk.com": [2024], "testyourmight.com": [16220], "s.ccmss.org.mx": [2024], "manchester.pirateparty.org.uk": [12747], "ansky.co.uk": [2024], "primbank.ru": [13107], "cozumpark.com": [3739], "chekhov.beeline.ru": [1778], "cyberplat.ru": [3965], "applications.cpanel.com": [2665], "bride.st": [2024], "www.hos.hostalite.com": [20406], "cnsns.us": [2024], "t2w.io": [2024], "torrentdownloads.me": [22244], "www4.ulpgc.es": [17213], "www.mcmaster.ca": [10135], "ww1.econda-monitor.de": [5049], "b.worthmine.com": [2024], "collabora.com": [3418], "www.sil.org": [14183], "metrics1.citibank.com": [3174], "b.urgo.in": [2024], "piratebay.unlockproject.com": [22259], "kukurap.alarabiya.net": [19131], "kehuan.qidian.com": [13349], "patk.in": [2024], "targobank-kredit.web.de": [18146], "img1.qidian.com": [13349], "sast.ro": [2024], "twitter.neighbourhoodalert.co.uk": [21100], "hi.sephen.cn": [2024], "ativa.in": [2024], "origin-www.geek.com": [6472], "2.mok.io": [2024], "store.calacademy.org": [2746], "www.upvoted.com": [17488], "louiseharrisoncouture.com": [9629], "kmts.ch": [2024], "forocoches.com": [6025], "connect.charter-business.com": [3025], "traffic.outbrain.com": [12182], "sml.keller.edu": [2024], "idportal.lrz-muenchen.de": [9253], "utba.ph": [2024], "dup.baidustatic.com": [1641], "www.rolex.com": [14009], "cs.fit.edu": [5922], "www.revolvermaps.com": [21643], "business-qa.memberdirect.net": [10265], "360p.sg": [2024], "consult.southdowns.gov.uk": [21909], "montyprogram.com": [10610], "i.stbr.co": [2024], "www.openmw.org": [11990], "ohotnadzor.nso.ru": [21192], "mth.me": [2024], "secure.ssa.gov": [21959], "tsite.co": [2024], "blenderclan.tuxfamily.org": [22319], "v.calheers.ca.gov": [3728], "*.omniupdate.com": [11836], "tarosite.net": [2024], "press.blip.tv": [2098], "for-good.net": [2024], "qbnews.link": [2024], "counter.hitslink.com": [7431], "tru.fyi": [2024], "iacs.seas.harvard.edu": [7211], "c-z.us": [2024], "bmb.scot": [2024], "manglory.co": [2024], "epsom-sthelier.nhs.uk": [10953], "www.prediction.io": [13069], "thecx.pro": [2024], "j.udn.com.tw": [17020], "mklr.me": [2024], "rokstr.me": [2024], "sasp.ro": [2024], "101domain.com": [15], "share.2kgames.com": [117], "templates.campaignmonitor.com": [2794], "cellregenerationjournal.biomedcentral.com": [1931], "www.4gamer.net": [198], "intranet.unicef.org": [17069], "om.zdnet.com.au": [18848], "millshq.uk": [2024], "ultimatebootcd.com": [17215], "founders.design": [2024], "nurtur.es": [2024], "chalkkids.co": [2024], "vcs0.sv.gnu.org": [6337], "www.plant-world-seeds.com": [12811], "img.china.alibaba.com": [857], "hdfv.be": [2024], "ncatools.education.gov.uk": [19957], "secure.powertech.no": [13040], "test.openload.co": [12070], "uwm.edu": [17379], "airpair.com": [791], "*.nelonenmedia.fi": [11182], "advance.science.sfu.ca": [14708], "comkort.com": [3471], "motv.st": [2024], "zane.ml": [2024], "inside.wustl.edu": [18089], "urbn.fr": [2024], "findit.unicefusa.org": [17070], "fordn.co": [2024], "patientslikeme.com": [12489], "mygl.am": [2024], "fdbl.co": [2024], "img03.mifile.cn": [10411], "www.heurekashopping.sk": [7377], "vpn.c3noc.net": [2515], "iamj.be": [2024], "www.adadvisor.net": [15851], "vhrzn.uk": [2024], "myeddebt.com": [9829], "relax.ngs.ru": [21134], "portfolio.ncl.ac.uk": [10926], "www.the-fca.org.uk": [16266], "libcat.oxfordshire.gov.uk": [21327], "blog.rackspace.com": [13566], "flycapturetest.environment-agency.gov.uk": [20006], "emilyloula.uk": [2024], "rememberthemilk.jp": [13820], "moodle.umontpellier.fr": [22365], "business2.danskebank.dk": [4138], "southernct.edu": [15263], "zbtupian.zb.mi.com": [10361], "www.dowjones.com": [11360], "rankwise.net": [13609], "www.comstern.at": [3457], "www.tld.pl": [16585], "load.kerbl.de": [2024], "*.ibtimes.com": [8255], "mbsportsweb.ca": [9732], "t.neustar": [2024], "*.textbooks.com": [16232], "auth.podlove.org": [10322], "s.tribalfusion.com": [16799], "lh3.google.*": [6821], "abplink.com": [2024], "blog.p2pfoundation.net": [12233], "jaredamy.co": [2024], "visha.re": [2024], "gmz75.migros.ch": [10417], "artinthe.co": [2024], "myaccount.wireless.primus.ca": [13112], "ncjoel.link": [2024], "npte.ch": [2024], "bioenergy.inl.gov": [20537], "s.yamazaki.sexy": [2024], "esh-hudey.friday.ru": [20175], "www.feedly.com": [5724], "cancerandmetabolism.biomedcentral.com": [1931], "cs7.myzuka.fm": [21079], "tariffolds.rsb.ru": [14058], "wardt.ms": [2024], "www.modern.ie": [10556], "*.westlotto.com": [18313], "rossulbricht.org": [14026], "56a7bb91-b52a-de14-d30b-fd593f45e58e-rum.cdnvideo.ru": [19536], "www.eply.com": [4936], "satch.co": [2024], "osc.gov": [21296], "bugzilla-dev.allizom.org": [904], "mktg.act-on.com": [19053], "debdeltas.debian.net": [4261], "bit.titoit.com": [2024], "kuznetsk.startsmile.ru": [21980], "static.eat.ch": [4860], "c.fixunix.com": [5875], "cdn.bagus.my.id": [2024], "vsl.vc": [2024], "ctc.i.gtimg.cn": [6974], "on.uah.edu": [2024], "h0u.se": [2024], "kevinames.news": [2024], "fc.webmasterpro.de": [22549], "hgo.se": [7042], "de.foursquare.com": [6061], "jud.net": [2024], "crypteia.moreal.co": [10629], "lists.opencsw.org": [11962], "y-gg.co": [2024], "migs.news": [2024], "blog.plex.tv": [12854], "secure.disc-soft.com": [4527], "provost.wustl.edu": [18089], "s.gums.org.au": [2024], "fluiddynamics.engineering.osu.edu": [11797], "torzhok.startsmile.ru": [21980], "islamabad.usembassy.gov": [22406], "r24822928.sync.app.asana.com": [1265], "wiki.lp0.eu": [9648], "groceries-qa2.asda.com": [407], "kaluga.auto.ru": [19276], "yper.at": [2024], "www.autoscout24.de": [1458], "bgt.taobao.com": [16015], "sale.jd.com": [8435], "ironsearch.com": [7819], "corporate.aldi.com.au": [357], "sparkhub.databricks.com": [4189], "crowd.opendnssec.org": [11970], "www.tailgatersparking.com": [15977], "trgs.ly": [2024], "onlineregistrationcenter.com": [11914], "m-connect.ch": [10417], "s.httr.pl": [2024], "*.jumptap.com": [8693], "karin.fyi": [2024], "devfaq.kaywa.com": [8843], "static.ichkoche.at": [7916], "www.firstamendmentcoalition.org": [5857], "interpri.se": [2024], "26.rkn.gov.ru": [13971], "palemoon.org": [12370], "padmapper.com": [12352], "rlmedeiros.tk": [2024], "personalcab.sportmaster.ru": [21944], "mytalkdesk.com": [21074], "esuite.pjm.com": [12290], "www.nature.com": [11140], "ep3.co": [2024], "www.barikat.gr": [6897], "test.retwt.me": [2024], "mypb.me": [2024], "yd.md": [2024], "api.taboola.com": [15963], "proteansec.com": [13209], "ru.mondediplo.com": [10578], "*.bm23.com": [2378], "mail.metasploit.com": [10335], "maira.im": [2024], "labth.in": [2024], "z9.chaucanh.net": [2024], "chessurl.com": [2024], "hlryd.in": [2024], "wwhub.ws": [2024], "www.bitkonan.com": [2020], "karty.skylink.cz": [15002], "lbsprop.info": [2024], "pogoda.yandex.com": [18742], "funho.me": [2024], "clevelandclinic.org": [3237], "sketch.pixiv.net": [12778], "ukraine25.kyivstar.ua": [9067], "www.piratpartiet.dk": [21420], "boingboing.net": [2197], "fgcuath.co": [2024], "ms.boardgamearena.com": [2182], "mail.xfce.org": [18603], "www.eloconcursos.com.br": [5168], "giving.illinois.edu": [17346], "www.bungalows.nl": [19472], "s.wombase.jp": [2024], "iwdc.ucsd.edu": [17012], "area51.pcbsd.org": [12247], "portal.microsoftonline.com": [10399], "pebblepad.co.uk": [12542], "uoregon.edu": [17080], "community.mville.edu": [9963], "ra-szn.moodys.com": [21020], "meu.ix.br": [20619], "richp.us": [2024], "translate.foursquare.com": [6061], "hdvlink.com": [20359], "littlebillclinton.csmonitor.com": [19737], "*.lmgtfy.com": [20860], "tunnelbroker.com": [16905], "j.faz.io": [2024], "j.visionect.com": [2024], "advertising.yandex.com": [18742], "cryptalloy.de": [3841], "highon.coffee": [7402], "www.rostrud.ru": [21677], "www.talks.by": [22093], "www.aidsmap.com": [783], "domains.qcloud.com": [13346], "preview.bingads.microsoft.com": [10396], "kazi.info": [2024], "www.requestb.in": [21631], "contributors.gettyimages.com": [6603], "watch.yandex.by": [18739], "i.keyxi.com": [2024], "www.trygghansa.se": [16878], "images.journals.lww.com": [9453], "www.cse.msu.edu": [21040], "smky.io": [2024], "phpmyadmin.ouvaton.coop": [12187], "blog.magellanmodels.com": [9866], "ausrug.by": [2024], "imperial.ac.uk": [8020], "www.zenmate.co.il": [18917], "saijo.co": [2024], "*.mail.live.com": [9495], "greenleft.org.au": [6907], "www.zenmate.co.id": [18917], "eposavje.com": [2024], "67.rkn.gov.ru": [13971], "www.aiha.org": [19117], "doctortrusted.org": [4613], "u.pwcc.cc": [2024], "safehop.com": [2024], "cabal.ws": [2714], "git.sipsolutions.net": [14184], "sexy.adults.men": [2024], "upload.af": [22388], "azstar.net": [2024], "*.vzw.com": [17717], "dariusjula.eu": [2024], "cumulusnetworks.com": [3914], "mail.wcfan.de": [18112], "go.bbpp.us": [2024], "atr.fm": [2024], "phouse.co": [2024], "ads11.contentabc.com": [3614], "jnew.mn": [2024], "od.czcamp.eu": [2024], "e.rmazda.com": [2024], "*.mdgms.com": [10142], "balpa.org": [2357], "www.publicaffairsnews.com": [21535], "zeitungsarchiv.nzz.ch": [21216], "zangki.tk": [2024], "goqr.it": [2024], "www.are.berkeley.edu": [17329], "icewarp.savana.cz": [14370], "p.layli.st": [2024], "dsgn.me": [2024], "bzb.org.uk": [2024], "www.timbro.se": [16528], "dellin.ru": [19802], "www.enta.net": [5277], "www.pistoncloud.com": [12761], "modelnprod.zilog.com": [18966], "totem.web.cern.ch": [2588], "www.nutyx.org": [21207], "lonesurvivor.co.uk": [9597], "my.betteradvertising.com": [5448], "l.wdmc.us": [2024], "maps.tmbc.gov.uk": [15892], "www.amazonsupply.com": [961], "s1.calameoassets.com": [2749], "www.rasp.yandex.by": [18739], "tienda.ulpgc.es": [17213], "wdat.es": [2024], "riscos.com": [13491], "rega.ch": [13785], "huielibrary.worldcat.org": [18536], "voat.co": [17896], "store.agra-net.com": [775], "sewray.me": [2024], "*.happyherbivore.com": [7191], "my.illumina.com": [7971], "*.dynamitedata.com": [4825], "we2.djicdn.com": [4029], "www.blv.admin.ch": [22061], "digital.gamefly.com": [6397], "kislovodsk.startsmile.ru": [21980], "*.decipherinc.com": [4271], "intelte.ch": [2024], "aam.im": [2024], "s.gama-gama.ru": [20199], "geekoutwith.us": [2024], "nwgn.us": [2024], "atohio.engineering.osu.edu": [11797], "img.mixi.net": [10505], "my.dietfb.com": [2024], "secure.sendyourfiles.com": [14641], "www.netsemi.com": [11254], "www.anxbtc.com": [373], "igyirnankmi.atlatszo.hu": [1349], "*.prx.org": [12323], "www.directactioneverywhere.com": [4511], "buy.barrons.com": [19319], "jvv.pw": [2024], "www1.tauntondeane.gov.uk": [16042], "www.demozoo.org": [19808], "www2.nero.com": [11201], "www.mapy.cz": [9986], "clusterize.js.org": [20657], "br.godaddy.com": [6755], "www.soap.com": [15118], "www.asseenonresponsetv.com": [1300], "afw.rocks": [2024], "fhpmerch.com": [2024], "bugs.erlang.org": [5333], "8.1688.com": [51], "www.beginlinux.com": [1783], "opencryptoaudit.org": [12037], "torrents.me": [22247], "forums.wowace.com": [3927], "jawnl.am": [2024], "mmv.rocks": [2024], "collaborate.admin.uillinois.edu": [17034], "go.microsoft.com": [10396], "f0.thejournal.ie": [16299], "lib.rus.ec": [9300], "camden.pt": [2024], "*.financialcontent.com": [5807], "www.mi6.ua": [9754], "kosars.com": [2024], "thegol.dk": [2024], "ones.pt": [2024], "i.faad.co": [2024], "live.irtl.homeoffice.gov.uk": [20399], "*.invoca.net": [8324], "travelregistration.state.gov": [17146], "plw.me": [2024], "dynamitedata.com": [4825], "abiggersociety.com": [442], "agora.unicef.org": [17069], "lejournal.cnrs.fr": [6174], "media.mit.edu": [9763], "m.sol.no": [21894], "www.paddle.com": [12353], "r24616616.sync.app.asana.com": [1265], "forums.lshtm.ac.uk": [9588], "*.lyris.com": [9696], "martinus.sk": [10044], "*.datamappi.fi": [4195], "gssn.gr": [2024], "blog.stalkr.net": [15437], "isshub.io": [8391], "urls.co.za": [2024], "atlas.cz": [1346], "get.adobe.com": [669], "*.righttobuy.communities.gov.uk": [19653], "sitecu.es": [2024], "r.collings.co": [2024], "shopcrazy.deals": [2024], "video27.0xdb.org": [10], "surfingip.info": [3536], "iuaa.imodules.com": [7766], "riaa.com": [13486], "pwmt.org": [13306], "on.solujin.net": [2024], "www.coinaxis.com": [3391], "www.chita.ru": [19583], "oralpl.us": [2024], "syndication.traffichaus.com": [16725], "www.aastocks.com": [19037], "www.donorregister.nl": [11172], "uwcb.uk": [2024], "gnupg.org": [6744], "nxtpg.co": [2024], "www.res-x.com": [2979], "itx5-itx4-eqx.smartadserver.com": [15049], "ftmag.co": [2024], "*.superpetusa.com": [15687], "okl-scene7.insnw.net": [8175], "a1ok.com": [2024], "www.rpw.sh": [14057], "isel.bz": [2024], "righttobuy.communities.gov.uk": [19653], "l.lund.dk": [2024], "support.telltalegames.com": [16168], "fivepma.x5.ru": [18590], "sv.getsatisfaction.com": [6601], "hich.am": [2024], "s.ovo.ie": [2024], "store.servicenow.com": [14682], "barnon.co": [2024], "piratpartiet.se": [12757], "7gen1d.co": [2024], "www.gemseek.com": [6504], "asa-g.com": [2024], "bchydro.com": [1534], "eozy.us": [2024], "wie.osu.edu": [11797], "flyersrights.org": [5941], "secure-hwcdn.libsyn.com": [9336], "longevityandhealthspan.biomedcentral.com": [1931], "statics3.seeedstudio.com": [14615], "www.mybenefitscalwin.com": [10791], "*.ex.ac.uk": [17339], "share.america.gov": [19187], "link.eml.skyandtelescope.com": [14998], "autodiscover.9tv.co.il": [257], "studentservices.ignou.ac.in": [7956], "batti.es": [2024], "xen.pt": [2024], "svn.boost.org": [2230], "support.soe.ucsc.edu": [17390], "a4-content.vouchercloud.com": [22501], "m.mygaa.club": [2024], "apps.ble.de": [19406], "dimn.in": [2024], "bitnamihosting.com": [1971], "www.mate-desktop.net": [9727], "stickers.giphy.com": [6646], "www.edrcdn.com": [4889], "sakhalinskaya-obl.beeline.ru": [1778], "app.netlify.com": [11280], "my.red7th.com": [2024], "*.infile.com": [8094], "niederoesterreich.neos.eu": [10941], "link.stmath.com": [2024], "www.ambercutie.com": [19180], "on.gallup.com": [2024], "education.oracle.com": [12116], "litdocs.rpxcorp.com": [13508], "ritningar.uppsalahem.se": [17482], "visuals.soundcloud.com": [15231], "pkg.kali.org": [8786], "old-wallet.trezor.io": [22282], "*.flinto.com": [5903], "kalush.lanet.ua": [20780], "viewbook.co": [2024], "webmaptcs.trafficmap.ch": [22101], "s74.cnzz.com": [3328], "humanists.club": [2024], "blog.affiliatewindow.com": [4471], "hock.in": [2024], "morseko.de": [2024], "brukerprofil.difi.no": [4452], "www.tekgoblin.com": [16129], "isetsk-old.admtyumen.ru": [19082], "agent.chetv.ru": [19577], "www.lua.org": [20884], "geekto.us": [2024], "recruit.naukri.com": [11146], "webmail.alibaba-inc.com": [19139], "www.tema.liu.se": [9097], "zon.ky": [2024], "enalean.com": [5221], "rodq.me": [2024], "w2ww.ipleak.net": [20571], "securedatejoin.com": [21769], "garstelecom.ru": [20207], "studentbursarysupport.education.gov.uk": [19957], "ovh.it": [12205], "www.drawception.com": [4739], "desilva.biz": [4236], "g.lingona.com": [2024], "produkte.web.de": [18146], "prss.ms": [2024], "www.watermarquee.com": [18097], "www.yerkramas.org": [22676], "analysis1.ligatus.com": [9356], "mvdg.be": [2024], "www.paket.de": [12366], "ovh.ie": [12205], "proxy08.newsnetz.ch": [11371], "app.coinjar.com": [3397], "www.iii.com": [20491], "aachur.ch": [2024], "support.cheezburger.com": [3060], "powerlineman.com": [13048], "admitere.umftgm.ro": [22364], "www.daft.ie": [4100], "www.libsyn.com": [9336], "productimages.nimbledeals.com": [11447], "socallinuxexpo.org": [15112], "www.microsoftstudios.com": [10401], "arame.ga": [2024], "pixlnet.works": [2024], "zzgav.in": [2024], "espanol.aclufl.org": [297], "urgentfury.link": [2024], "d10.me": [2024], "www.expat.hsbc.com": [7090], "www.streamline.uprr.com": [22392], "ngvpn12.nvidia.com": [11022], "booking.swiss.com": [15758], "uclinics.com": [17018], "zelenograd.beeline.ru": [1778], "p7.sinaimg.cn": [14910], "plneta.de": [2024], "salekhard.europaplus.ru": [20034], "www.pvac.leeds.ac.uk": [17403], "l.myk.do": [2024], "smplsd.com": [2024], "nsgt.me": [2024], "static.mibi.xiaomi.com": [18662], "developers.livechatinc.com": [9492], "bokap.it": [2024], "jenkins.osmocom.org": [12159], "mtn.im": [2024], "*.willowgarage.com": [18409], "lms.cr": [2024], "www.panorama.am": [21341], "www.advancement.osu.edu": [11797], "cftc.gov": [3485], "www.roarmag.org": [21661], "dev.modernrepo.com": [10561], "www.coinforum.de": [3395], "neurosci.nature.com": [11140], "egm.io": [2024], "werbung.localsearch.ch": [9554], "login.mynyp.org": [21066], "editorae.me": [2024], "ditii.com": [3985], "visitorinsight.silverpop.com": [14865], "stargate-atlantida.friday.ru": [20175], "fuwu.alipay.com": [864], "drupalgardens.com": [4774], "store.canon.com.au": [19505], "nanorep.com": [11071], "eslasele.co": [2024], "sims.canon-europe.com": [2822], "www.realmatch.com": [13684], "s.rsreview.com": [2024], "wbh.li": [2024], "www.goturkey.com": [6778], "purdueplantdoctor.com": [13278], "www.tor.com": [9846], "auth.time.com": [15884], "s101.cnzz.com": [3328], "cudisol.ourproject.org": [21314], "js-sc.jd.com": [8434], "paramountmovies.com": [12422], "schoolsupportservices.camden.gov.uk": [2785], "iddi.us": [2024], "f.chtah.com": [3059], "wdevne.ws": [2024], "link.adito.no": [2024], "support.simplyhired.com": [14894], "trafik.yandex.com.tr": [18740], "58.mvd.ru": [21055], "collateralmurder.com": [3419], "images.kingdomofloathing.com": [1331], "tv.kls.rs": [20736], "linshunghuang.com": [9376], "auto.cars.ru": [19518], "iid.io": [2024], "ibp.alibaba.com": [857], "www.nri.com": [10996], "wll.coffee": [2024], "trst.pl": [2024], "*.grupotriton.com": [6966], "silkn.com": [14856], "buttons.social": [19480], "wiki.freifunk-rheinland.net": [20171], "glawe.photo": [2024], "univofpretoria.worldcat.org": [18536], "www.cs.jhu.edu": [16370], "vgwort.de": [17568], "code.directadvert.ru": [4512], "www.blockchain-status.com": [19409], "leader.baden-wuerttemberg.de": [19302], "www.lifeinthefastlane.ca": [9344], "gaff.in": [2024], "widgets.amung.us": [18363], "a24.li": [2024], "www.buchmesse.taz.de": [15853], "madewith.unity3d.com": [17310], "opnot.es": [2024], "www.websupport.sk": [18253], "knda.ma": [2024], "international.lloydsbank.com": [9537], "www.hacoder.com": [7111], "archive.sans.org": [14128], "www.virk.dk": [17826], "comic.piliapp.com": [12706], "accessibility.harvard.edu": [7211], "www.password-hashing.net": [12467], "advq.yandex.by": [18739], "mbed.io": [2024], "education.travis-ci.com": [16775], "jb1.us": [2024], "mathid-origin.mathtag.com": [10083], "*.freshmilk.tv": [6185], "www.platformadmin.com": [12820], "www.deepdotweb.com": [4285], "i.canddi.com": [19502], "zhihu-web-analytics.zhihu.com": [18956], "static.yidianzixun.com": [22679], "firefox.yandex.com.tr": [18740], "ohotnadzor.49gov.ru": [187], "www.ofo.so": [11794], "chndlrmcl.co": [2024], "static-admin.mailigen.com": [9901], "dushi.qidian.com": [13349], "lnx.uno": [2024], "owens.li": [2024], "dino.team": [2024], "4.xhcdn.com": [18605], "www.dedikuoti.lt": [4279], "mpit.minbank.ru": [10442], "www.bycraft.cz": [2498], "store5.esellerate.net": [5346], "berr.im": [2024], "webmail.hku.hk": [20387], "altkgm.in": [2024], "images.lowes.com": [9645], "ak1.polyvoreimg.com": [21459], "git68.rostrud.ru": [21677], "p2.qhimg.com": [13347], "ict4.school": [2024], "acluca.org": [296], "t.homes.jp": [2024], "brainyquote.com": [2293], "bugs.contribs.org": [3621], "apercen.us": [2024], "api.dwolla.com": [4809], "bareos.org": [1694], "thepl.me": [2024], "samia.gidnetwork.com": [6312], "rebuild.democrats.org": [4338], "www.informatick.net": [8124], "ecode360.com": [5046], "splasho.me": [2024], "sapgw.ro.vutbr.cz": [17609], "english.sogou.com": [15168], "gamedev.net": [6396], "sallybeauty.ugc.bazaarvoice.com": [14314], "a.sctxt.org": [2024], "www.pica.army.mil": [17109], "prichernomorie.com.ua": [21496], "www.vtb.com": [17601], "www.flyn.org": [5945], "engine.doublepimp.com": [4711], "m.efinancialcareers.com": [4903], "forums.oneplus.net": [11880], "www.cateee.net": [2910], "hostingsolutions.cz": [7538], "wzclz.us": [2024], "liberdade.digital": [9312], "center.kaspersky.com": [8820], "www.lessigforpresident.com": [9276], "lists.blockstream.com": [2114], "strato-hebergement.fr": [14255], "newstral.com": [11389], "calendar.live.com": [9495], "creative.adobe.com": [669], "img1.yeggi.com": [18760], "rc.codexns.io": [3382], "new.ftc.gov": [5710], "cre.fm": [10322], "img.tineye.com": [16543], "fr.osdn.net": [21298], "svazurich.ch": [22051], "www.rsf.org": [13844], "2.jus.tn": [2024], "cisco.com": [3165], "susyradio.com": [15732], "*.eriklundblad.com": [20013], "harv.bio": [2024], "kaytan.com": [2024], "sdr.stanford.edu": [15448], "cdcvs.fnal.gov": [5741], "cryptomonkeys.com": [3871], "verno.uk": [2024], "nuget.org": [11601], "busybox.net": [19479], "www.pddoc.com": [12264], "www.usdoedregistration.ed.gov": [4881], "amazon.jobs": [959], "wiremag.co": [2024], "images.otto.de": [12168], "ruidoblan.co": [2024], "www.thepiratebay-proxylist.org": [16306], "support.pivotal.io": [12765], "*.tu-muenchen.de": [16101], "www.freshbsd.org": [6179], "gis.sepa.org.uk": [21782], "musicbrainz.org": [10752], "lendup.me": [2024], "www.cambridgeshire.gov.uk": [19496], "www.tshaonline.org": [15927], "static.dealnews.com": [4250], "www.mynyp.org": [21066], "itce.ru": [20599], "cmnty.link": [2024], "drsd.so": [2024], "www.rijswijk.nl": [11172], "www.schiedam.nl": [11172], "img.mondovino.ch": [3647], "kulturstationen.kk.dk": [8748], "www.gayromeo.com": [12802], "research.isis.poly.edu": [12933], "s0.2mdn.net": [129], "tomril.co": [2024], "booking.com": [2220], "*.tickertech.com": [16486], "www.bunniefoo.com": [2454], "visabuxx.com": [17850], "nptp.us": [2024], "i.thms.be": [2024], "philshobbyshop.com": [12658], "poronaysk.sakh.com": [21719], "kasperskyclub.ru": [8823], "dgarch.us": [2024], "stec-t05.xhcdn.com": [18605], "s.amazon-adsystem.com": [958], "honk.sigxcpu.org": [14846], "ipline.b2b.kyivstar.ua": [9067], "derekb.bz": [2024], "static.tue.nl": [15940], "spamicity.info": [15284], "dpspreview.usc.edu": [17366], "modmyi.com": [10550], "wartung.migros.ch": [10417], "www.cyrus.foundation": [3981], "go.kerja.in": [2024], "download.freedesktop.org": [6102], "free2.beget.com": [19347], "bcnparti.es": [2024], "images-ssl.ted.com": [15871], "tickets.kirklees.gov.uk": [8929], "compgeo.stanford.edu": [15448], "dialogue.forestry.gov.uk": [20135], "thewesternworld.com": [16395], "rossierfaculty.usc.edu": [17366], "l.331.io": [2024], "www.securityexperten.com": [14591], "*.indiemerch.com": [8073], "webcheck.tigerair.com.au": [16515], "www.es.lastminute.com": [9177], "bn2.me": [2024], "sourceafrica.net": [15238], "cgi.f-secure.com": [5533], "shop.cinestar.de": [3146], "*.co-operativebank.co.uk": [3329], "mobil.co": [2024], "launchpadlibrarian.net": [9182], "my.mail.ru": [9891], "onmo.co": [2024], "www.moneycorp.com": [21013], "www.movie4k.pe": [10675], "selz.com": [14631], "lmsl.engineering.osu.edu": [11797], "billing.travis-ci.com": [16775], "s.update.chartbeat.com": [3024], "blog.scraperwiki.com": [14467], "d6.sinaimg.cn": [14910], "linksalpha.com": [9395], "www.dnsexit.com": [4596], "rxportalexpress.com": [14108], "git36.rostrud.ru": [21677], "badtimi.ng": [2024], "blkmrkt.me": [2024], "modin.chainfire.eu": [19556], "rostov.kavkaz-uzel.ru": [20694], "via.ericthn.fr": [2024], "my.nanorep.com": [11071], "marcansoft.com": [9991], "down.xiaomi.cn": [18661], "siren.link": [2024], "www.powertothepooch.com": [13043], "ppl.cz": [12313], "symlynx.com": [15784], "sd.maryno.net": [20928], "merchdirect.com": [10297], "status.vshn.ch": [17957], "landslide.com": [9157], "www.pconline.com.cn": [12263], "api.k.sohu.com": [15171], "store.youmail.com": [18797], "lists.ozlabs.org": [12228], "carma.astro.umd.edu": [17351], "www.returnpath.net": [13891], "lvftt.co": [2024], "mjsk.jp": [2024], "code.qt.io": [13365], "stec-t04.xhcdn.com": [18605], "xhamster.biz": [832], "bgpmon.com": [1540], "*.bloodhoundgang.com": [2130], "gco.am": [2024], "m.shoup.me": [2024], "previa.se": [13090], "psb.pw": [2024], "lisas.co": [2024], "www2.sunybroome.edu": [2382], "signin1.bt.com": [1578], "vel.joomla.org": [8641], "events.oracle.com": [12115], "fam4he.al": [2024], "pajustice.org": [12572], "nwslg.nl": [2024], "matkay.cc": [2024], "nshar.co": [2024], "dsgnbl.co": [2024], "onion.debian.org": [4263], "item.taobao.com": [16015], "hsdo.stanford.edu": [15448], "fttb.kyivstar.ua": [9067], "staticcontent.streamuk.com": [22008], "performingarts.georgetown.edu": [6531], "labs.tineye.com": [16543], "tab.yt": [2024], "vsell.is": [2024], "easy.myfonts.net": [10805], "istra.tpprf.ru": [22260], "go.yoeori.nl": [2024], "www.documentup.com": [19861], "bzsu.co": [2024], "superdesk.pro": [15691], "www.researchstore.com": [4198], "aash.to": [2024], "uis.georgetown.edu": [6531], "www.villahostels.com": [17801], "aepp.oxfordjournals.org": [12222], "iamjen.co": [2024], "starz.tv": [2024], "go.mp3xd.com": [2024], "go.aw.my.com": [2024], "trstri.com": [2024], "lgosdm.mit.edu": [9763], "tabsoft.co": [2024], "germany.usembassy.gov": [22406], "logos.skyscnr.com": [15006], "brandr.it": [2024], "www.dribbble.com": [4754], "qrious.ly": [2024], "www.irb.fraunhofer.de": [6091], "my.maryno.net": [20928], "static.wpm.neustar.biz": [11320], "german.tags.literotica.com": [9479], "i3s.sinaimg.cn": [14910], "*.exxile.net": [4987], "autoreview.ru": [19277], "telushealth.co": [16174], "id.guim.co.uk": [6996], "moar.bruce.gg": [2024], "www.forensic.to": [18930], "www.unicef.org.uk": [17068], "ecptr.it": [2024], "4.dbstatic.no": [19775], "blog.deimos.fr": [4301], "www.eastday.com": [5010], "log1k.al": [2024], "cs5.myzuka.fm": [21079], "aight.xyz": [2024], "www.servercircle.com": [14671], "datstat.com": [4162], "mystuff.wku.edu": [22602], "shop.buzzfeed.com": [2489], "openscholarship.wustl.edu": [18088, 18089], "www.pliktverket.se": [12856], "www.stealthy.io": [15515], "erooups.com": [5337], "mail.aol.com": [380], "tch4.in": [2024], "ays.me": [2024], "atomic-clock.org.uk": [17203], "bc.howd.ee": [2024], "assets.vidyard.com": [17792], "*.n-ergie.de": [10895], "*.nbcnews.com": [10916], "uen.org": [17537], "binxblog.com": [2024], "tvn2.co": [2024], "cbc.cm": [2024], "ulife.gmu.edu": [6529], "cloudaccess.net": [3277], "bnss.cf": [2024], "syktyvkar.auto.ru": [19276], "groupon.se": [6955], "www.cse.ust.hk": [22412], "techjourney.net": [16088], "webaccess.sony.com.hk": [15212], "www.graphene-lda.com": [6877], "wx1.qq.com": [13329], "jpart.oxfordjournals.org": [12222], "hadje.dj": [2024], "www.petekeen.net": [12619], "www.bttrack.com": [2403], "members.met-art.com": [10318], "cinlib.org": [2024], "alpnames.com": [919], "tel.search.ch": [14504], "meetmecorp.com": [10225], "wikimedia.es": [18388], "ns2.theregister.co.uk": [22182], "www.as.au.edu": [16995], "albert.apple.com": [1151], "snackomat2.snacktv.de": [15086], "bp.chaucanh.net": [2024], "on.ful.lt": [2024], "newsletter.rbth.com": [21596], "tourismeca.com": [2024], "shpkp.com": [2024], "emcs.ws.hmrc.gov.uk": [7076], "stat.mkb.ru": [10512], "jobs.illinois.edu": [17346], "m.abtal.me": [2024], "dealextreme.com": [4242], "yadui.business.yahoo.co.jp": [18730], "cahub.cancer.gov": [2819], "search.f-secure.com": [5533], "a.zakarija.com": [2024], "thedead.xyz": [2024], "res.levexis.com": [9287], "enforb.es": [2024], "www.greenqloud.com": [6902], "jicj.oxfordjournals.org": [12222], "upmy.biz": [2024], "blog.obnox.de": [11742], "*.imperial.ac.uk": [8020], "yo.hkan.se": [2024], "m.nkj.ru": [21143], "mathaml.in": [2024], "niestud.io": [2024], "divxpress.com": [4569], "cdn.podlove.org": [10322], "scoremore.co": [2024], "s50.cnzz.com": [3328], "cruise.gs": [2024], "*.estat.com": [10190], "n.capital.es": [2024], "www.isohunt.com": [8386], "gfxpro.hu": [9167], "freebarrettbrown.org": [6114], "s.yonitu.de": [2024], "vip.104.com.tw": [18], "www.2co.com": [125], "voronezh.rt.ru": [13529], "ordercourses.com": [2946], "t1.qlogo.cn": [13355], "eu1.snoobi.com": [15104], "i.dslr.net": [4075], "*.luv.asn.au": [9123], "film.list.co.uk": [16273], "*.acessoseguro.net": [528], "dwrght.co": [2024], "tdog.co": [2024], "mdws.comsavings.com": [3503], "opencfp.immunityinc.com": [8011], "www.ncsc.nl": [10928], "just-eat.ca": [20671], "upforit.com": [832], "fsisac.com": [5597], "vitamini.co": [2024], "shop.dft.gov.uk": [19825], "api.wetter.de": [18320], "*.footaction.com": [5990], "www.staysafeonline.org": [15507], "medapps.wustl.edu": [18089], "s.flinkefolk.lt": [2024], "airbnb.de": [793], "www.apereo.org": [1121], "login.raiffeisen.ch": [13588], "best-online.ga": [2024], "*.stadt-bremerhaven.de": [15432], "zkw.me": [2024], "myvie.co": [2024], "*.fb.me": [5688], "vitalgamers.com": [17876], "trials.ca.com": [2525], "mybbc.files.bbci.co.uk": [19332], "asustor.com": [19265], "www.rackspace.com": [13561, 13566], "kbk.fyi": [2024], "www.hacklab.to": [7123], "cdn.gigantic.com": [6633], "sprsmpl.me": [2024], "dscvr.xyz": [2024], "delivery.d.switchadhub.com": [15764], "assist-erp.osu.edu": [11797], "fifengine.net": [5563], "lllr.it": [2024], "p-a-s.me": [2024], "go4a.de": [2024], "t.trackedlink.net": [4690], "mbdcs.osu.edu": [11797], "accounts.expresscoin.com": [5508], "brie.cf": [2024], "uberaba.vc": [2024], "pdos.csail.mit.edu": [9763], "kat.am": [8827], "alertir.com": [837], "gateway.skyscanner.net": [15006], "www.quest.com": [13402], "www.meldium.com": [10254], "www.movabletype.org": [10666], "undergrad.stanford.edu": [15448], "clickfoz.com": [2024], "theiot.me": [2024], "qo-de.co": [2024], "www.vs4.com": [22509], "s.raab.link": [2024], "mail.inforos.ru": [20532], "www.worlde-idcongress.com": [18550], "www.lindtusa.com": [9382], "flash-mp3-player.net": [5882], "kway.li": [2024], "v.mn3njalnik.si": [2024], "paf.lp0.eu": [9648], "ctr.stanford.edu": [15448], "cert.org": [2596], "tgd.co": [2024], "lk.iamniz.co.uk": [2024], "developers.corvisa.com": [3689], "newsroom.unsw.edu.au": [17076], "7rea.org": [2024], "briant.ml": [2024], "it.zenmate.ch": [18917], "pharmacology.georgetown.edu": [6531], "redx.ml": [2024], "cache.send.microad.jp": [10377], "www.itf.gov.hk": [7065], "js.aq.qq.com": [13329], "dogzonline.com.au": [4627], "analytics.pubnxt.net": [13243], "consortiumlibrary.org": [3593], "www.philanthropy.cam.ac.uk": [17332], "csr.engineering.osu.edu": [11797], "thingworx.ptc.com": [21532], "ask.fm": [1284], "ares.umd.edu": [17351], "www.freeyourandroid.org": [6131], "nadiame.li": [2024], "www.theweek.com": [16394], "linkinghub.elsevier.com": [5177], "vrumiz.friday.ru": [20175], "avwk.us": [2024], "s0.thejournal.ie": [16299], "storyfarm.co": [2024], "20s.life": [2024], "www.lagen.nu": [9148], "t.tapactive.com": [2024], "feeds.podtrac.com": [21448], "www.cheznous.com": [18579], "saechsdsb.de": [4364], "climatecentral.org": [3265], "eu.hunchlab.com": [7622], "imgc.nxjimg.com": [11630], "www2.consumer.org.hk": [3599], "hoere.jetzt": [2024], "mirtv33.ru": [20994], "cbpweb.nl": [4806], "chppe.engineering.osu.edu": [11797], "sdkbr.com": [2024], "coin.space": [19642], "*.gsn.com": [6394], "www.clicky.com": [6593], "innovation.cms.gov": [19630], "secure.gamblingcommission.gov.uk": [6391], "stores-assets.stackcommerce.com": [15426], "m.behr.com": [1788], "www.hepo.fi": [7319], "p2ppayments.capitalone.com": [2831], "mx.ozlabs.org": [12228], "stats.liqd.net": [9456], "i.crownma.de": [2024], "piuparts.debian.org": [4263], "nuevocloud.com": [21198], "api.sso.biglobe.ne.jp": [1892], "wiki.mediatemple.net": [10177], "7eer.net": [233], "protonirockerxow.onion": [13213], "mcc.godaddy.com": [6755], "go.fdpbo.de": [2024], "i.mj-jang.com": [2024], "kemerovo.beeline.ru": [1778], "cas.homeaway.com": [20396], "assets.radioplayer.co.uk": [13581], "spain.ikea.es": [2024], "onlychange.com": [11918], "on.tempty.hu": [2024], "thebay.tv": [22176], "info.web.de": [18146], "me.onthe.io": [11926], "gabp.me": [2024], "secure.premiumize.me": [13074], "tysn.xyz": [2024], "facultyaffairs-humsci.stanford.edu": [15448], "mjc.life": [2024], "restaurant.afisha.ru": [19107], "video.fortinet.com": [6033], "forum.monster-wow.com": [10604], "c.hitravel.xyz": [2024], "*.yelp.com": [18766], "zaperela.net": [2024], "www.rottentomatoes.com": [14034], "help.sakura.ad.jp": [14124], "psgrfy.uk": [2024], "www.byo.com": [1610], "yuzhno-sakhalinsk.auto.ru": [19276], "bittiraha.fi": [2044], "ftp.gnu.org": [6337], "www.globalbersih.org": [6703], "enno.dict.cc": [4442], "betanews.com": [19359], "mail.scs.illinois.edu": [17346], "dromar.us": [2024], "jepso.com": [8568], "www.gemoney.com.au": [6293], "mbusa.com": [9735], "mekanist.net": [10252], "mckemp.com": [2024], "www.lpice.eu": [9109], "abrm.us": [2024], "blade19.ual.es": [17162], "*.aquent.com": [1176], "www.usfsco.uillinois.edu": [17034], "novel.pixiv.net": [12778], "elttam.com.au": [19984], "eth.nanopool.org": [11069], "em.ge": [2024], "giving.jhu.edu": [16370], "mytishchi.beeline.ru": [1778], "www.portalmasq.com": [12310], "events.uchastings.edu": [17013], "cdn.b5media.com": [908], "extabit.com": [5509], "crsx.de": [2024], "byn.rocks": [2024], "selangorku.com": [14626], "images.justgiving.com": [8710], "ouvadmin.ouvaton.coop": [12187], "dftba.com": [4022], "www.knot-resolver.cz": [20742], "r.cowtech.it": [2024], "www.rublacklist.net": [14068], "hetlnvloket.nl": [11172], "biz.points.yahoo.co.jp": [18730], "seal.entrust.net": [5291], "www.ploum.net": [12861], "wiff.us": [2024], "nl.libreoffice.org": [9327], "50b.me": [2024], "mail.alumni.caltech.edu": [2771], "m.mk2.com": [9769], "data.coremetrics.com": [3665], "ns-cdn.neustar.biz": [11320], "ca.evanced.info": [5424], "haskellonheroku.com": [7221], "img2.cache.netease.com": [11228], "l.cmoretti.it": [2024], "assets.infinum.co": [20526], "tlk.bz": [2024], "cimbclicks.com.sg": [2619], "112wga.nl": [2024], "cdn.overclock.net": [12195], "www.ycombinator.com": [7129], "xbm.se": [2024], "bigboxsave.com": [1888], "my-mb.me": [2024], "icts.kuleuven.be": [8832], "creativecow.com": [3775], "apply.gemoney.com.au": [6293], "entrtnmnt.com": [2024], "prais.co": [2024], "haiti.usembassy.gov": [22406], "*.adserver01.de": [683], "bigdecis.io": [2024], "99bitcoins.com": [251], "usc.one": [2024], "kbim.mcafee.com": [10129], "im.ov.yahoo.co.jp": [18730], "www.philosophynow.org": [12657], "suqian.jd.com": [8434], "acs.raiffeisen.ru": [13587], "17r6pofw4cnkg1uirn3xyr4kf7rl7wupvinql15k.ipleak.net": [20571], "www.hao123.com": [20339], "philosophynow.org": [12657], "www.itao.com": [20598], "jsy.fi": [2024], "s3.wlresources.com": [22604], "openideo.com": [11981], "isleaked.com": [8358], "west.tn": [2024], "www.netveano.com": [11296], "cdn.statimgs2.com": [3917], "springer-gabler.de": [15378], "*.9cache.com": [252], "wilshp.uk": [2024], "hhmi.org": [7577], "mail.yahoo.co.jp": [18730], "*.volusion.com": [17926], "www.subconadmin.com": [15621], "fr.aldi.be": [357], "cr3.co": [2024], "www.sharethefiles.com": [14741], "visitor.wustl.edu": [18089], "kpxl.in": [2024], "anwers.billiondigital.com": [1912], "1111.ulpgc.es": [17213], "i.doctv.gr": [2024], "www.clarendon.ox.ac.uk": [17359], "nick7.co.uk": [2024], "www.dota2.com": [4693], "*.tu-darmstadt.de": [15936], "www.mytemp.email": [10834], "secureapi.escrow.com": [5343], "*.groups.et.byu.net": [1611], "www.zorrovpn.com": [19010], "www.seagate.com": [14499], "mizo.permkrai.ru": [21390], "wildlifeacre.nwf.org": [11126], "qfri.co": [2024], "kepzes.sch.bme.hu": [1556], "mystudyabroad.ust.hk": [22412], "me.1688.com": [51], "static.tinkoff.ru": [16552], "maltechtest.tocco.ch": [16600], "dbstatic.no": [19775], "reg.domainreseller.ru": [4657], "reia.ch": [2024], "www.denso-wave.com": [4351], "*.qrobe.it": [13361], "www.shop.kyivstar.ua": [9067], "www.americanhunter.org": [19188], "www.trbas.com": [3076], "r24823103.sync.app.asana.com": [1265], "x.exgame.lt": [2024], "www.northamptonshire.gov.uk": [21156], "login.webgo.de": [18161], "login.1und1.de": [91], "dummy.beeline.kz": [19345], "risimg.com": [2024], "bsaa.co": [2024], "www.designernews.co": [4375], "yro.srad.jp": [21956], "linux.oracle.com": [12116], "translationalneurodegeneration.biomedcentral.com": [1931], "popen1.ble.de": [19406], "stripefees.com": [15596], "www.humblebundle.com": [7619], "pc.openx.com": [12028], "www.fraglive.cl": [6074], "accuri.de": [2024], "wwlks.org": [2024], "bnf.org": [2359], "sjbft.org": [2024], "config.parabola.nu": [12412], "listserv.uned.es": [17248], "tcp.fyi": [2024], "www.spogo.co.uk": [15355], "rss.warwickshire.gov.uk": [22532], "biderundtanner.ch": [19372], "belgacoin.com": [1790], "djw.cs.washington.edu": [17376], "bui.mvd.ru": [21055], "jsh.mx": [2024], "golflink.net": [6805], "www.websetnet.com": [22552], "m.japanese.alibaba.com": [857], "courseapi.theguardian.com": [16364], "rravi7.info": [2024], "support.500px.com": [205], "annonce.borsen.dk": [2244], "sprav.yandex.by": [18739], "www.wnyc.org": [18007], "mbx.li": [2024], "www.resus.org.uk": [13877], "prettyeasyprivacy.com": [12535], "www.netbsd.org": [11222], "cz.o2.com": [16141], "pugh.pw": [2024], "fr.socialclub.rockstargames.com": [13997], "www.edenhost.com": [5067], "clcvr.se": [2024], "rob.st": [2024], "www.okturtles.com": [11810], "blog.getpelican.com": [6564], "developer.wolframalpha.com": [18487], "netsemi.com": [11254], "ttix.it": [2024], "mayoclinic.org": [10119], "nomachine.com": [11476], "ust-ilimsk.europaplus.ru": [20034], "www.plazakauppa.fi": [12163], "to.faearch.me": [2024], "btrman.me": [2024], "www.ab.ust.hk": [22412], "wizzbe.montpellier.fr": [10608], "hosting.1und1.de": [91], "mobile.local.ch": [9548], "pcma.co": [2024], "www.istockphoto.com": [20595], "admin-najisto.centrum.cz": [19547], "logasnet.communities.gov.uk": [19653], "solutionpartner.cisco.com": [3165], "www.linuxplumbersconf.net": [9411], "domreg.lt": [4669], "oss-binaries.phusionpassenger.com": [12685], "marx.org": [10051], "www.rec-log.jp": [13702], "blossom.io": [2135], "zenmate.ie": [18917], "networking4all.com": [11314], "lyncdiscover.sviaz-bank.ru": [15740], "eu.soyoustart.com": [15117], "static-spacejam.cursecdn.com": [3927], "tso.to": [2024], "fis.dudley.gov.uk": [4788], "zb.bilibili.com": [1904], "creo.onl": [2024], "strx.co": [2024], "*.ivegotkids.com": [8413], "zenmate.it": [18917], "s10.postimage.org": [13024], "64cf7356-2dd9-8ba6-e74a-ffb386b201bf-rum.cdnvideo.ru": [19536], "jdpt.link": [2024], "www.fsaregistration.ed.gov": [4881], "tasrace.in": [2024], "tails.thecthulhu.com": [16403], "my.ardis.ru": [1203], "mostwww.play-asia.com": [12828], "wv.ly": [2024], "mobileolo.gy": [2024], "wdmag.nl": [2024], "paimai.taobao.com": [16015], "uical.uic.edu": [17321], "i1.gallery.technet.s-msft.com": [14114], "2kgam.es": [2024], "zalando.de": [18877], "cdn.trafficstars.com": [22267], "www.cloudflarestatus.com": [3301], "pt.osdn.net": [21298], "www.terragalleria.com": [16196], "*.edfenergy.com": [4882], "rcde.info": [2024], "report.pro-market.net": [13157], "instagr.am": [8181], "coliege.co": [2024], "meusig.no": [2024], "orhelp.osu.edu": [11797], "myidp.sciencecareers.org": [14440], "www.walsallhealthcare.nhs.uk": [10953], "www.portugal.gov.pt": [12989], "svn.python.org": [13314], "www.iwi-i.info": [20617], "netdata1.firehol.org": [20107], "trend.az": [22281], "nrio.co": [2024], "sportsblogs.post-gazette.com": [12762], "ems.wolverhampton.gov.uk": [18494], "*.ihg.com": [8229], "on.dstroy.co": [2024], "on.colbertnation.com": [2024], "nytimes.com": [11041], "www.112-uitgeest.nl": [26], "amp.censor.net.ua": [19538], "nkl.as": [2024], "openidp.feide.no": [5729], "radar.osu.edu": [11797], "andytyson.com": [1053], "www.browserscope.org": [22627], "exavault.com": [5462], "security.ias.edu": [7673], "customersupport.symantec.com": [15780], "gee.co": [2024], "advertising.amazon.de": [19174], "teacher.hkuspace.hku.hk": [20387], "pickle.design": [2024], "jtt.im": [2024], "miltonkeynes.spydus.co.uk": [21952], "kivi.li": [2024], "*.wellsfargo.com": [18289], "www.verisign.fr": [17712], "ext.host-tracker.com": [7511], "help.burthub.com": [2468], "ithacajr.nl": [2024], "i4.chaucanh.net": [2024], "erikump.com": [2024], "audioboo.fm": [1386], "s1.percona.com": [12589], "www.bookacourse.com": [2218], "sgfe.st": [2024], "www.dropboxatwork.com": [4763], "stiesx2-ntrs.larc.nasa.gov": [17107], "p91.in": [2024], "scala.run": [2024], "infinet.com.au": [8095, 8096], "ccspca.us": [2024], "nilegui.de": [2024], "bama13.co": [2024], "mail.hugoboss.com": [7608], "npc4.net": [2024], "www.greenpeace-energy.de": [6916], "teachersassurance.co.uk": [16057], "www.holyrood.com": [20393], "aulis.plaza.fi": [12163], "www.parisschoolofeconomics.eu": [12432], "svn.pld-linux.org": [12299], "www.projecteuler.net": [13180], "urbandictionary.com": [17494], "wwww.limesurvey.org": [9372], "bclnanet.ml": [2024], "connect.kaltura.com": [8789], "netmeister.org": [11284], "www.startingpage.com": [15476], "mngle.tw": [2024], "zimbra.xiala.net": [22651], "oxy.worldcat.org": [18536], "support.rg.thomsonreuters.com": [16456], "www.dudleyfoi.org.uk": [19904], "www304.americanexpress.com": [979], "nbspwww.play-asia.com": [12828], "redo.to": [2024], "odeturusorgu.anadolu.edu.tr": [1029], "fluechtlinge.wien.at": [22588], "lfive.uk": [2024], "www.lincolnshire.gov.uk": [9380], "rpt.cedexis.com": [2935], "www.admob.com": [586], "chiclet.ymlp.com": [18813], "chat.bystrobank.ru": [2500], "www.conviva.com": [3633], "buzzvpn.com": [2491], "66option.com": [220], "studentservices.weill.cornell.edu": [3676], "computerlabsolutions.com": [3539], "*.unimi.it": [17278], "d501.epimg.net": [5126], "bgmma.com": [2024], "www.qiwi.com": [13352], "ipv6.tunnelbroker.com": [16905], "cthn.ws": [2024], "go.ryland.com": [2024], "l.sevez.net": [2024], "lril.oxfordjournals.org": [12222], "open-data.ble.de": [19406], "websocially.com": [18184], "discuss.citra-emu.org": [19597], "www.campina.es": [2796], "youth.unicefusa.org": [17070], "twc.sg": [2024], "espanol.crocs.com": [3805], "spedlogswiss.tocco.ch": [16600], "www.cryptostore.ru": [19732], "cdn3.tnwcdn.com": [22227], "meta.mathoverflow.net": [15424], "www.8.cbsm.at": [8782], "www.tverweek.com": [22326], "annagr.co": [2024], "eztvstatus.com": [20063], "prit.ly": [2024], "ws.companynet.mbank.pl": [9733], "dcard.tw": [19778], "images.vg247.com": [22454], "www.pledgie.com": [12851], "ipv6.nebezi.cz": [11165], "franceserv.fr": [6077], "hellojohn.co": [2024], "buffered.io": [2421], "scloby.co": [2024], "miraisk.net": [2024], "shrinktheweb.com": [14807], "sg.sg": [2024], "mensaplan.de": [10280], "www.vps.net": [17595], "jslog.krxd.net": [9028], "betway.mx": [2024], "puls.uni-potsdam.de": [17417], "www.tab-beim-bundestag.de": [22081], "www.secularhumanism.org": [14537], "tatarstan.sledcom.ru": [21858], "rtb.adsrvr.org": [688], "inspire.st": [2024], "medienforschung.zdf.de": [22709], "geo.digitalpoint.com": [4484], "*.h-da.de": [4149], "*.o2online.de": [11640], "*.livefyre.com": [9521], "cnfttave.co": [2024], "ssl.opera.com": [12086], "customerservice.kirklees.gov.uk": [8929], "s62.cnzz.com": [3328], "gardeni.st": [2024], "www.travis-ci.com": [16775], "my.psoft.net": [12991], "sgne.ws": [2024], "www.indiemerchandising.com": [8074], "www.skat.dk": [14963], "bhhc.co": [2024], "yya.be": [2024], "proofpoint.com": [13198], "leytto.in": [2024], "mail.mclaut.com": [20942], "www.hostr.co": [7550], "snd.tf": [2024], "ls.1688.com": [51], "xxx.play-asia.com": [12828], "www.tritonlink.ucsd.edu": [17012], "meetups.jquery.com": [8463], "visophyte.org": [17866], "casperogfrank.dk": [2896], "static1.holidayextras.com": [7459], "p1r.es": [2024], "linenfinder.co": [2024], "tfir.es": [2024], "3d88duefqgf2d7l2p18hja4194m.wpengine.netdna-cdn.com": [9521], "newton.teksyndicate.com": [16130], "walkit.com": [22520], "geni.net": [6296], "www.calendario.cc": [2754], "alloscomp.com": [907], "w-a.link": [2024], "flmhs.tv": [2024], "www.dogechain.info": [4625], "wwwtst.pnpr.jp": [2024], "banners.victor.com": [17757], "mehura.jp": [2024], "iapt-sglos.awp.nhs.uk": [10953], "*.english-country-cottages.co.uk": [18579], "lhc-mpwg.web.cern.ch": [2588], "www.bystrobank.ru": [2500], "tis.im": [2024], "event.rakuten.co.jp": [13593], "broadbandbuyer.co.uk": [2368], "sklik.cz": [14980], "faq.amextravel.com": [951], "ww1139.smartadserver.com": [15049], "cocolink.cc": [2024], "backloggery.com": [1623], "together.un.org": [17057], "onlinebanking.vantageone.net": [17652], "www.discoverbsd.com": [4537], "honuser.hon.ch": [7080], "rdaily.co": [2024], "fave.co": [2024], "platby.mbank.sk": [9733], "weike.jd.com": [8436], "ahcdn.com": [19113], "wicap.co": [2024], "bigstockphoto.com": [1895], "zhaopin.jd.com": [8436], "api.ftp-master.debian.org": [4263], "ggtv.net.au": [2024], "verizon.mcafee.com": [10129], "soc.att.com": [2024], "prvwst.us": [2024], "kmd.easycruit.com": [5015], "www.account3000.com": [513], "secure.clearcenter.com": [3230], "estore.ti.com": [16225], "p64.eu": [2024], "learning.naukri.com": [11146], "publikdemand.com": [13264], "de.bdc.cat": [2024], "www.mbdetox.com": [9731], "vidds.ee": [2024], "accounts.wizards.com": [18477], "tshrtnr.com": [2024], "enru.dict.cc": [4442], "visit.sc": [2024], "pictures.dealer.com": [4245], "kthr.in": [2024], "geoplatform.gov": [6523], "mltsr.org": [2024], "efile.sccassessor.org": [14400], "muspy.com": [10770], "www.letter.government-nnov.ru": [20295], "inrecsys.popin.cc": [12954], "china.isidewith.com": [20466], "www.playwarz.com": [18071], "www.paperspace.io": [12410], "www.delaware.gov": [15485], "strant.com": [2024], "scummvm.org": [14491], "fanoe.dk": [5646], "issues.jasig.org": [8535], "tn123.org": [22225], "healthyeater.com": [7264], "101xp-portal-en-stage.cdnvideo.ru": [19536], "radpill.com": [2024], "col.stc.s-msn.com": [14115], "hway.co": [2024], "www.e-rewards.com": [4854], "*.muenchen.de": [10724], "*.insft.com": [8138], "webapps.jhu.edu": [16370], "corp.rakuten.co.jp": [13593], "www.arewecompressedyet.com": [1207], "syng.ma": [2024], "ssc.phncdn.com": [12661], "eels.co": [2024], "sebastianwick.net": [14520], "www.thc.org": [15875], "dailyinfo.co.uk": [4118], "pskov.rt.ru": [13529], "route.showapi.com": [21815], "*.lww.com": [9452], "motb.co": [2024], "www.synergy-foss.org": [15801], "met1.hp.com": [7378], "www.apress.com": [1169], "eventim.fi": [9454], "www.wilderssecurity.com": [18398], "*.gotransit.com": [6345], "nervoussystems.org": [11203], "www.freedom-to-tinker.com": [6143], "gamefly.gameflycdn.com": [6398], "l.edemmester.hu": [2024], "56.rkn.gov.ru": [13971], "www.bidtellect.com": [1876], "s10wly.tk": [2024], "classes.osu.edu": [11797], "de.faqs.bookmyname.com": [2215], "lurkmo.re": [9683], "gb.jd.com": [8436], "nkdagility.net": [2024], "www.greyhole.net": [6928], "hubt.pornhub.com": [12972], "tuvdotcom.com": [3626], "slipplate.com": [14193], "www.moevideo.net": [10565], "freeyourandroid.org": [6131], "www.careers.tvnz.co.nz": [15951], "mnino.com": [2024], "gla.ac": [2024], "*.mellanox.com": [10257], "mra.mbank.pl": [9733], "avira.ideascale.com": [20479], "hvidovrekajakklub.dk": [7641], "*.internet.bs": [8274], "www.soi.city.ac.uk": [3189], "www.miracl.com": [20992], "cdn.whappodo.com": [18323], "lurkmore.co": [9683], "ehjqcco.oxfordjournals.org": [12222], "mpfmembers.org.uk": [21034], "campaignmonitor.com": [2794], "learn.utdol.com": [2024], "trustee.ietf.org": [7725], "jmnt.co": [2024], "mazout-migrol.ch": [10413], "svn.sukimashita.com": [15654], "download.macromedia.com": [9850], "*.panel.home.pl": [7475], "lihm.net": [9363], "onetouch.alibaba.com": [857], "sonyentertainmentnetwork.com": [15219], "content.nasaspaceflight.com": [10910], "ibqonline.com": [7902], "www.providesupport.com": [13218], "trading.markets.hsbc.com": [7090], "tools.otenet.gr": [12164], "www.microchipdirect.com": [10387], "www.heatst.com": [7274], "babel.hathitrust.org": [7230], "secure.wistia.com": [18467], "www.livememe.com": [9504], "scpnewsgrp.com": [2024], "www.finka.pl": [5831], "www.assistance-multimedia.fr": [1308], "eun.io": [2024], "itwinterclose.stanford.edu": [15448], "apps.community.adr.org": [19086], "contact.boat.voyagegroup.com": [17948], "list.mi.com": [10361], "sims-prd.sfu.ca": [14708], "wfl.me": [2024], "customer.cyberplat.ru": [3965], "achinsk.biglion.ru": [19375], "static.webyog.com": [18266], "gngr.info": [6741], "www.siit.tk": [3536], "demo.odoo.com": [11765], "www.poste-impresa.it": [13011], "*.macainfo.org": [9840], "gb.ulule.com": [17224], "tajomstvo.rtvs.sk": [13536], "bunkus.org": [19473], "gismeteo.md": [20251], "tmu-collect.tealiumiq.com": [16060], "cdn.static1.rtr-vesti.ru": [21689], "www.plantcommunity.de": [12812], "forum.popcorn-time.to": [21461], "shop.joomla.org": [8641], "tc.tocco.ch": [16600], "www.nsn.com": [11499], "rsl.ru": [21686], "univadis.net": [2024], "secure.bigbrother.se": [1884], "yoursay.houseoffraser.co.uk": [7570], "cineble.com": [3147], "pages.cloudbees.com": [19622], "contributoria.com": [3622], "krtz.me": [2024], "cdn.bonosrama.newsvine.com": [11390], "gdtl.engineering.osu.edu": [11797], "brinkster.com": [2351], "rhs.us.to": [2024], "nicoleruss.in": [2024], "sgi.com": [14171], "www.lonelyplanet.com": [9599], "encryptrservice.crypton.io": [3872], "img02.taobaocdn.com": [16016], "azrs.tk": [2024], "staging.piwik.org": [12768], "kazned.ru": [20697], "voiles.io": [2024], "www.renrencaopan.com": [13831], "torrentz2.me": [22251], "ftp.fr.openbsd.org": [11955], "www.surveygizmo.com": [15723], "mtmweb.biz": [10202], "poolp.org": [12945], "www.oxford.gov.uk": [21324], "lacrossealerts.com": [9135], "sitecheck.sucuri.net": [15639], "n.rivals.com": [21655], "static2.gac.edu": [6279], "qa.fastmail.com": [5677], "systemli.org": [15830], "itfutur.es": [2024], "wtr.gy": [2024], "goaruna.com": [6752], "workday.cca.edu": [2547], "www.envoyer.io": [5301], "girv.cc": [2024], "mpfund.uk": [21035], "apic.douyucdn.cn": [4712], "innsida.ntnu.no": [11004], "rutlandcounty.moderngov.co.uk": [21005], "zh.functions-online.com": [20187], "www.verisign.ch": [17712], "weborder.active24.co.uk": [19060], "ebhbooks.us": [2024], "online-emr.com": [11913], "tdsc.click": [2024], "blogtalkradio.com": [2118], "u.magento.com": [9868], "www.paycheckrecords.com": [12505], "mast.stanford.edu": [15448], "sckchr.ps": [2024], "so53.info": [2024], "wiki.mate-desktop.com": [9727], "pscom.org.za": [2024], "*.creativevirtual.com": [3781], "oa.dingtalk.com": [19842], "fr.about.aegeanair.com": [6896], "googlefu.link": [2024], "siex.us": [2024], "leic.ht": [2024], "cdn.stormfront.org": [15566], "samsungmobile.accu-weather.com": [520], "url.mjrasta.com": [2024], "headstre.am": [2024], "campus.kit.edu": [8812], "forceb.co": [2024], "ngop.co": [2024], "aanze.eu": [2024], "account.leagueoflegends.com": [9220], "library.brown.edu": [2384], "wiki.torrent411.com": [15847], "mutyimondo.atlatszo.hu": [1349], "agrwl.us": [2024], "lists.ietf.org": [7725], "forum.vodafone.de": [17901], "cpcty.to": [2024], "www.inventhelp.com": [8308], "www.stirling.gov.uk": [15543], "*.accc.gov.au": [1410], "sl.one.un.org": [17057], "s.techbana.com": [2024], "hitslink.com": [7431], "support.vitalsource.com": [22473], "htfd.co": [2024], "de-mail.1und1.de": [91], "w.pairs.lv": [2024], "telecom.sk": [16155], "js.final4ever.com": [5804], "services.seagate.com": [14499], "ucsf.worldcat.org": [18536], "mybank.cn": [21062], "simonv.uk": [2024], "download.fir.im": [20106], "www.movie2k.nu": [10674], "www.wyndhamrentals.com": [18579], "*.bangordailynews.com": [1667], "etsmjournal.biomedcentral.com": [1931], "share.dre.io": [2024], "russki.istockphoto.com": [20595], "*.tmpwebeng.com": [15896], "infokuis.xyz": [2024], "tech.zalando.com": [18877], "cjunk.es": [2024], "continuousdelivery.com": [19674], "docs.wto.org": [18025], "www.questionablecontent.net": [13408], "corpub.ro": [2024], "invoca.com": [8323], "motleydenim.eu": [2024], "vcr.bz": [2024], "asfw.refin5.co": [2024], "comms.anz.co.nz": [19211], "android.tv4play.se": [15947], "maspho.us": [2024], "www.mysql.com": [10825], "tmall.hk": [16589], "natren.me": [2024], "10.root.cz": [14020], "ds.org.za": [2024], "tools.taskcluster.net": [16031], "nnjpr.de": [2024], "researchbriefings.parliament.uk": [21348], "qtastatic.com": [13368], "*.vanillaforums.com": [17648], "ads.smartstream.tv": [15064], "gsir.ca": [2024], "projet-coclico.org": [3341], "cms.citrixonline.com": [3181], "www.wolfson.cam.ac.uk": [2776, 17332], "skyrim.curseforge.com": [3927], "video.yandex.com": [18742], "b1.raptrcdn.com": [21583], "msk.sumtel.ru": [22031], "*.humanbrainproject.eu": [7612], "fxm.li": [2024], "on.dailym.net": [2024], "nszn.nso.ru": [21192], "thoughtstreams.io": [16460], "energimanager.dongenergy.dk": [4068], "eshuyuan.net": [20018], "geoti.me": [2024], "jobs.georgetown.edu": [6531], "withgoogle.com": [18470], "pd.imhd.sk": [8004], "forums.tesla.com": [22127], "l.trippiece.com": [2024], "wms.assoc-amazon.com": [1312], "i.arantxanb.net": [2024], "lighttpd.net": [9362], "blog.pinboard.in": [12710], "raltay.rt.ru": [13529], "macobserver.com": [9848], "hackyourselffirst.troyhunt.com": [22294], "www.jadi.net": [8501], "acceo.jobs": [2024], "shangxiguan.jd.com": [8434], "get.opera.com": [12086], "i.flubox.fr": [2024], "*.hls.ttvnw.net": [16961], "secure.game.se": [6281], "objednavka.active24.sk": [19067], "www.bcaa.com": [1529], "alumni.princeton.edu": [13113], "zdnet.com.au": [18848], "spigen.co": [2024], "3dvisionlive.com": [162], "stec-t12.xhcdn.com": [18605], "rdml.it": [2024], "static1.theiconic.com.au": [16367], "*.porn-w.org": [12971], "lumo.me": [9676], "mapillary.com": [9980], "bmcnephrol.biomedcentral.com": [1931], "preview.msn.com": [9810], "ishop.qiwi.com": [13352], "aktiiviraha.fi": [7174], "spp.permkrai.ru": [21390], "hrpo.wustl.edu": [18089], "www.435bymjc.com": [182], "landlord.cambridge.gov.uk": [19494], "popi.stalbans.gov.uk": [21974], "thmsfsh.co": [2024], "ms0.meituan.net": [10249], "dgt-te.in": [2024], "transit.land": [16744], "gmail.com": [6827], "img.beeg.com": [19343], "*.anonymous-proxy-servers.net": [8637], "cspr.me": [2024], "cbs.com": [2540], "www.ietf.org": [7725], "www.disc-soft.com": [4527], "rzr.sg": [2024], "cash.square.com": [15396], "convertkit.com": [3630], "www.damballa.com": [4122], "monitor-internet.memberdirect.net": [10265], "dolinsk.sakh.com": [21719], "barbican.org.uk": [1687], "vitalmend.com": [17875], "www.insurance.va.gov": [17100], "vws3.primus.ca": [13112], "finance.car.com": [2839], "libraryebooks.co.uk": [20828], "taymyrskiy-mr.beeline.ru": [1778], "img.s-msn.com": [14115], "nj02all02.baidupcs.com": [1643], "booking.tigerair.com.au": [16515], "webresource.its.calpoly.edu": [2764], "forms.aweber.com": [436], "turkish.alibaba.com": [857], "tune.com": [22309], "pak.horse": [2024], "internationalman.com": [8261], "l.egal.bz": [2024], "lists.gforge.inria.fr": [8161], "netnod.se": [11286], "ping.dozuki.com": [4727], "meaa.io": [2024], "contacts.zoho.com": [18984], "nadir.org": [11049], "epars.wustl.edu": [18089], "gastrojob.jetzt": [2024], "openbsdeurope.com": [11956], "*.posportal.com": [12311], "ezaccessory.com": [5527], "znaturalfoods.com": [18867], "www.collabora.ca": [3418], "congresos.uned.es": [17248], "pabudget.state.gov": [17146], "conferences.uillinois.edu": [17034], "www.qcloud.com": [13346], "inotes.otpbank.ru": [12165], "player.pulpix.co": [13267], "calendar.cca.edu": [2547], "fordele.tdc.dk": [15862], "ripe70.ripe.net": [13953], "jid.oxfordjournals.org": [12222], "wiki.vuze.com": [17972], "paddleapi.com": [12353], "cafegate.com": [2731], "www.anticenz.org": [19207], "bestwecando.ourproject.org": [21314], "www.singlehop.com": [14914], "chelyabinskaya-obl.beeline.ru": [1778], "hvosting.ua": [7642], "journal-news.net": [8653], "card2card.bankuralsib.ru": [1677], "demouk.spydus.co.uk": [21952], "lists.ubuntu-eu.org": [17176], "tandt.oxfordjournals.org": [12222], "bfa.st": [2024], "cdn.coderwall.com": [3377], "www.allshareplay.com": [885], "redwb.co": [2024], "gnikn.us": [2024], "trendd.co": [2024], "m.svh.cc": [2024], "trainings.350.org": [140], "dl.google.com": [6818], "kcc.webhostone.de": [18216], "protect.tacticaltech.org": [15966], "ems.southglos.gov.uk": [15257], "sn1.play-asia.com": [12828], "www.popular.com.tw": [12965], "xs01.meituan.net": [10249], "man.gl": [2024], "portal.kh.hu": [8739], "r24616639.sync.app.asana.com": [1265], "ccccloud.com": [2554], "s-work.tv": [2024], "esupport.trendmicro.com": [16791], "www.planetsyria.org": [21433], "supportcommunity.swisscom.ch": [15761], "www.ht.vc": [7592], "www.travelocity.com": [16772], "yelp.com.tw": [18766], "*.foxydeal.com": [6067], "benedikt-bitterli.me": [1806], "www.brendaneich.com": [2321], "viagem.catracalivre.com.br": [2917], "train2web.wustl.edu": [18089], "*.ccavenue.com": [2548], "m.addison.vt.edu": [17825], "seo.georgetown.edu": [6531], "temai.snssdk.com": [21884], "iufoundation.iu.edu": [8069], "www.video.yandex.kz": [18743], "www.openhpi.de": [11977], "hcc.web.cern.ch": [2588], "dialogic.com": [19829], "www.redwoodsinyosemite.com": [13760], "ploum.net": [12861], "register.plos.org": [13252], "cmscdn.staticcache.org": [15496], "oam.tdc.dk": [15862], "mrvan.ca": [2024], "stars.udn.com": [17020], "abandonus.link": [2024], "wun.io": [2024], "support.octoshape.com": [11756], "www.soundviz.com": [15228], "yourta.com": [2024], "media2.wnyc.org": [18007], "sevenoaks.gov.uk": [14696], "case1.unicef.org": [17069], "www.airbnb.se": [793], "winegeo.me": [2024], "www.clicky.visophyte.org": [17866], "onaru.co": [2024], "www.digitalocean.com": [4481], "www.madametussauds.com": [9853], "sinsofasolarempire.com": [14920], "rentler.com": [13837], "support.checkpoint.thomsonreuters.com": [16456], "hkfd.io": [2024], "origin.images.webs.com": [18237], "www.energie-vorbild.admin.ch": [22061], "republicwi.re": [2024], "tbib.org": [16048], "kellydelay.to": [2024], "www.cio.illinois.edu": [17346], "libcxx.llvm.org": [9103], "www.keytosuccess.education.gov.uk": [19957], "visaeurope.lu": [17847], "www.directbox.com": [4517], "statics2.beauteprivee.fr": [1766], "on.tendo.hk": [2024], "www.evga.com.au": [4978], "www.tenon.com": [16183], "jwplayer.com": [9601], "hjv.kursuslogin.dk": [7441], "*.successfactors.com": [15636], "engineeringforchange.org": [5257], "learning.microsoft.com": [10396], "career.rakuten.co.jp": [13594], "www.grctech.com": [6358], "www.galleryofguns.com": [20197], "www.photos.offog.org": [11793], "www.deutschepost.com": [19816], "*.datacamp.com": [4168], "mail2web.com": [15156], "tenpropgui.de": [2024], "nataliebennett.greenparty.org.uk": [6908], "www.green-wood.com": [6898], "rickyw.co": [2024], "l.misfitrad.io": [2024], "www.monthlyreview.org": [10607], "hostr.co": [7550], "volc.io": [2024], "spritesmods.com": [15387], "office.refresher.sk": [13781], "deno.dict.cc": [4442], "swivelf.ly": [2024], "mixbit.com": [10502], "cas.fbm.vutbr.cz": [17609], "a.swagbit.ch": [2024], "checks.bankofamerica.com": [1669], "m.google.*": [6821], "mzip.it": [2024], "plantbio.vbsg.slu.se": [14195], "wcip02.hkjc.com": [20384], "just-eat.co.uk": [20671], "sdbr.co": [2024], "sharpmen.com": [14746], "app.geofeedia.com": [20231], "wcts.co": [2024], "proportal.oaklands.ac.uk": [21221], "*.strongswan.org": [22015], "theengineroom.org": [16398], "cntr.sc": [2024], "myinmon.com": [10852], "openkkk.nav.gov.hu": [10912], "my.nottingham.ac.uk": [11567], "git51.rostrud.ru": [21677], "static.hugedomains.com": [7605], "*.psu.edu": [12571], "downloads.commotionwireless.net": [3498], "de.pcisecuritystandards.org": [12253], "pod.orkz.net": [12146], "tripwell.com": [16824], "lists.nuug.no": [11017], "ww488.smartadserver.com": [15049], "brennancenter.org": [2322], "www.screencast-o-matic.com": [14471], "cntr.st": [2024], "blog.bernina.com": [1827], "auct.io": [2024], "yaz.link": [2024], "*.w3roi.com": [1490], "forum.hashkiller.co.uk": [20346], "enjoy.com": [5266], "www.wien.at": [22588], "job.cnblogs.com": [19631], "habrahabr.ru": [7119], "savage2.com": [14118], "leroy.co": [2024], "time.yandex.com.tr": [18740], "logcg.com": [20870], "hlblog.capitalone.com": [2831], "lima.usembassy.gov": [22406], "*.denh.am": [4345], "iwa.file.test.octopuspop.com": [11754], "tiwyaw.com": [2024], "transparencyreport.uber.com": [17169], "community.1und1.de": [91], "koho8.com": [2024], "chat.zoho.com": [18984], "www.bankir.ru": [19314], "yotuku.cn": [22687], "ekb.europaplus.ru": [20034], "adlog.play-asia.com": [12828], "herofund.whitehelmets.org": [22579], "delaluz.mx": [2024], "www.tag1consulting.com": [15968], "alrt.me": [2024], "photoblab.com": [12670], "tenable.com": [16180], "www.tricorder-dev.kairo.at": [8782], "freekib.com": [2024], "www.courtneyluv.com": [2144], "jsonformatter.org": [20661], "lists.kernelnewbies.org": [20704], "secure.clickability.com": [4821], "www.jethrocarr.com": [8574], "workaround.org": [18530], "www.gettyimages.com.au": [6604], "www.mankier.com": [9967], "ad4.udn.com": [17020], "management.indapass.hu": [8055], "intranet.nic.cz": [11418], "ap.uniregistry.com": [17285], "www.amica.com": [999], "tyarn.com": [2024], "clik.ga": [2024], "lokaty-bankowe.money.pl": [10584, 10585], "bit.inv.tech": [2024], "help-assets.soundcloud.com": [15231], "srna.sk": [15409], "crshlv.ly": [2024], "pcvlab.ceegs.ohio-state.edu": [11798], "apsia.online": [2024], "afe2.specificclick.net": [15314], "www.rsm.kit.edu": [8812], "nani.gs": [2024], "product.getsatisfaction.com": [6601], "go.idmnet.bbelements.com": [1742], "outsde.in": [2024], "svn.savannah.gnu.org": [6337], "demostore.x-cart.com": [18583], "chrscld.xyz": [2024], "polycat.lib.calpoly.edu": [2743], "login.sucuri.net": [15639], "me.washington.edu": [17376], "webmail.ie.cuhk.edu.hk": [2704], "www.webclaim.net": [4886], "on.fb.me": [2024], "docs.sonatype.com": [15202], "www.venuscafem.com": [17701], "dapeigou.jd.com": [8436], "scrib.me": [2024], "www.postfinance.ch": [12996], "api-v1-stage.websitealive.com": [18242], "bathsa.lt": [2024], "www.bernina-chur.ch": [1827], "www.pouet.net": [21473], "slovari.yandex.kz": [18743], "www.greenpeace-magazin.de": [6918], "geo.kaloo.ga": [8788], "createspace.com": [3768], "vodkamethod.com": [22487], "trucks.autotrader.co.uk": [19279], "avoinministerio.fi": [19288], "www.etretouchy.com": [5382], "photon-link.com": [2024], "rober.link": [2024], "dongguan.jd.com": [8434], "j.okmg.club": [2024], "www.woz.ch": [18558], "r24617801.sync.app.asana.com": [1265], "www.zmanda.com": [18980], "hijk.eu": [2024], "shodan.io": [14773], "accounts.zoho.com": [18984], "cas.uvm.edu": [17154], "imsr.me": [2024], "s3.rationalcdn.com": [21588], "pro.darkreading.com": [16999], "chs.cc": [2024], "*.gaiaonline.com": [6382], "tidalhifi.com": [16506], "*.hosted.exlibrisgroup.com": [5460], "freewebsitetemplates.com": [20169], "www.gradescope.com": [6866], "bwrelease.duapp.com": [19902], "dating.rambler.ru": [13600], "carm.illuminateed.com": [20494], "dl.https.cl": [2024], "totalchoicehosting.com": [16672], "au.findlegalforms.com": [5822], "mediapost.com": [10174], "sv.piliapp.com": [12706], "nvartovsk.biglion.ru": [19375], "slp.somerset.gov.uk": [15197], "fbim.nl": [2024], "*.yelp.co.nz": [18766], "owp.sccgov.org": [14401], "dept.dict.cc": [4442], "wpi.sm": [2024], "www.capify.org": [2829], "fritz.im": [2024], "disabilitystudies.osu.edu": [11797], "teach.udemy.com": [17194], "www.torrents-time.com": [22246], "fs17.formsite.com": [20139], "hornbach.ch": [7504], "zhaoshang.tmall.com": [22222], "login.opendns.com": [11969], "wwrr.co": [2024], "forum.hornbach.at": [7504], "secure-ds.serving-sys-int.com": [14686], "futureboy.us": [6264], "www.maymay.net": [10118], "bce.baidu.com": [1641], "retsinformation.dk": [13887], "doc.difi.no": [4452], "unizar.es": [17441], "aurza.co": [2024], "criticalmuslim.net": [3801], "debconf4.debconf.org": [4257], "tvax3.sinaimg.cn": [14910], "www.portsmouth.gov.uk": [21467], "cilab.gsfc.nasa.gov": [10909], "pamela.biz": [12381], "www.quantixtickets1.com": [13389], "airport-store.engineering.osu.edu": [11797], "ctc.ru": [19738], "detr.dict.cc": [4442], "acr.tw": [2024], "info.timst.com": [2024], "se7ens.in": [2024], "dd2.cc": [2024], "aspinalls.club": [2024], "coxdigitalsolutions.com": [3735], "bryansk.beeline.ru": [1778], "www.dsg.cs.tcd.ie": [15855], "btrx.pl": [2024], "www.cryptdown.eu": [3840], "ggtoon.lezhin.com": [20822], "lists.balabit.hu": [19308], "labs.crossref.org": [3812], "ais.by": [19126], "sh.fer.ac": [2024], "l.chebat.pro": [2024], "sesplan.objective.co.uk": [21225], "kurgan.biglion.ru": [19375], "let.f9.do": [2024], "www.landalskilife.com": [18578], "vrsa.co": [2024], "t-shirt.deals": [2024], "www.gimpfoo.de": [6313], "blog.compose.io": [3530], "discounts.aarp.org": [279], "portmoresby.usembassy.gov": [22406], "uib.li": [2024], "rad1o.badge.events.ccc.de": [2553], "www.afcom.com": [339], "plated.me": [2024], "*.websocially.com": [18184], "tdhur.st": [2024], "skyhi.me": [2024], "mail.udngroup.com": [17020], "b8.hitravel.xyz": [2024], "public.dhe.ibm.com": [7679], "www.weneedtoknow.info": [18120], "www.fsdata.se": [5596], "cnflncr.me": [2024], "bayproxy.press": [21524], "www.tricue.com": [16795], "realty.mail.ru": [9891], "platform-monitor.tokenly.com": [22229], "ak.c.ooyala.com": [11936], "job.lineup.vn": [2024], "www.boots.ie": [2234], "ubuntu.com.cn": [17174], "recruiters.newscientist.com": [11338], "mmcny.org": [2024], "huuto.net": [20449, 20450], "heidi.migros.ch": [10417], "sunshineweek.org": [15672], "hivelocity.net": [7434], "ssl1.ovh.net": [12205], "free-tv-video-online.me": [6096], "ufcw8.us": [2024], "unm.is": [2024], "m3.idg.se": [7709], "p0.meituan.com": [10248], "*.frooition.com": [6206], "www.coinb.in": [3402], "cai.itsc.cuhk.edu.hk": [2704], "moctu.com": [2024], "krsk.te-st.ru": [22103], "www.goexplore.net": [6759], "*.dnb.no": [4049], "on.ysupr.net": [2024], "downloadcenter.intel.com": [8211], "p.sf.net": [14167], "mcbsa.org": [2024], "api.appear.in": [1145], "www.hauke-m.de": [7231], "poz.si": [2024], "wiki.debian.org": [4263], "oztech.me": [2024], "kong.play-asia.com": [12828], "opennet.ru": [11997], "iana.org": [7671], "www.isoc24.com": [7832], "7ent.co": [2024], "envirocall.newcastle.gov.uk": [11355], "phcc.co": [2024], "jjoynt.co": [2024], "cyberpowerpc.com": [19748], "*.nardikt.ru": [7324], "pidg.in": [12702], "blog.intercom.io": [8241], "mari-sa.co": [2024], "d.dellamoda.com": [2024], "info.local.ch": [9548], "im.ag": [2024], "s.cci-vk.de": [2024], "shby.co": [2024], "fusion-net.co.uk": [6255], "short.jtray.me": [2024], "touch.otvet.mail.ru": [9891], "www.tdc.dk": [15862], "www.dogsbodytechnology.com": [4626], "video7.0xdb.org": [10], "git55.rostrud.ru": [21677], "fosb.us": [2024], "moscow.usembassy.gov": [22406], "cust.io": [2024], "lawfam.oxfordjournals.org": [12222], "search.americanexpress.com": [979], "facebook.it": [5612], "subscriptions.nzherald.co.nz": [11354], "dev.piwik.org": [12768], "trillian.im": [16810], "www.officeworks.com.au": [11790], "yaoi.kr": [2024], "support.appsflyer.com": [1162], "www.easypress.ca": [5021], "latg.co": [2024], "origin.pubmatic.com": [13241], "marketplace-used.com": [10027], "lists.pcug.org.au": [12260], "www.e-klase.lv": [4848], "pixelexit.com": [12772], "mobilebank.kh.hu": [8739], "hu.la": [2024], "albertinesw.im": [2024], "duoestudio.link": [2024], "fashion.youku.com": [18804], "www.trello.com": [16784], "mail.yandex.by": [18739], "i1.calameoassets.com": [2749], "intranet.uillinois.edu": [17034], "eyesstage.jpl.nasa.gov": [10909], "ghazisaeidigroup.engineering.osu.edu": [11797], "askjb.me": [2024], "www.citibank.com": [3174], "imaginif.eu": [2024], "api.farmanager.com": [5650], "www.timex.com": [16542], "www.register.ie": [4500], "login.digicert.com": [4461], "slides.com": [15030], "alfamob.co": [2024], "blog.ballotready.org": [1655], "lslv.es": [2024], "www.inboxapp.com": [8043], "t.pdabr.com": [2024], "tidstyv.difi.no": [4452], "filialen.migros.ch": [10417], "schum.in": [2024], "42floors.com": [181], "trysuperbgreencoffee.com": [16876], "id.trove.com": [16837], "honorcross.me": [2024], "api.nri.com": [10996], "hs91.uk": [2024], "s.shabooty.com": [2024], "gamefly.com": [6397], "edit.bulkorder.ftc.gov": [5710], "images.somethingawful.com": [15200], "psychiatry.stanford.edu": [15448], "media-curse.cursecdn.com": [3927], "icbi.georgetown.edu": [6531], "hilfe.webgo24.de": [18162], "api.keen.io": [8852], "evans.tips": [2024], "youtube.ma": [18800], "catarse.me": [2908], "petcu.be": [2024], "postecert.poste.it": [13013], "fiesta.gamigo.com": [6426], "sh2.org": [2024], "hub.sonymusic.com": [15217], "thepiratebay.bypassed.pw": [21524], "appdb.winehq.org": [18442], "*.lvoc.org": [9124], "tracking.verisign.com.hk": [17712], "*.jumpingjack.com": [8691], "itsglamoro.us": [2024], "support.namecheap.com": [11060], "jms.bz": [2024], "service1.internet2.edu": [8277], "kem.startsmile.ru": [21980], "www.voys.nl": [17949], "drkul.id": [2024], "eas.admin.uillinois.edu": [17034], "www.torrentprivacy.com": [16653], "emsi.worcestershire.gov.uk": [22611], "curo.co.za": [3925], "detail.huobi.com": [7628], "www.dwheeler.com": [4086], "mashery.com": [10055], "gosw.im": [2024], "www.orbital-apps.com": [12126], "registrierung.raiffeisen.ch": [13588], "apadv.co": [2024], "www.servery.cz": [21789], "*.statesmanjournal.com": [15488], "z-j.co": [2024], "secure.gettyimages.com": [6604], "dartlang.org": [4150], "versacart.com": [17722], "egeg.gs": [2024], "www.au.org": [992], "zajac.la": [2024], "www.soup.io": [15235], "ii.nlm.nih.gov": [11090], "kundenserver42.kundenserver42.de": [11319], "forums.getfoxyproxy.org": [6577], "srvt.org": [2024], "profitbricks.de": [13175], "download.vancity.com": [17643], "fjm.es": [2024], "people.nasa.gov": [10909], "teresa.cce.com": [2881], "r.hkbsc.net": [2024], "hashi.co": [2024], "r.alch.xyz": [2024], "maps.georgetown.edu": [6531], "dlstest.tocco.ch": [16600], "jira.cyanogenmod.org": [3947], "100.hku.hk": [20387], "support.arpnetworks.com": [4923], "yabopu.sh": [2024], "northnorfolk.greenparty.org.uk": [6908], "vouchercodes.co.uk": [22502], "register.bg": [13792], "ir-na.amazon-adsystem.com": [958], "images.instagram.com": [8182], "laravel-news.com": [9168], "president.osu.edu": [11797], "lkstudent.com": [2024], "harris.co": [2024], "stpr.es": [2024], "dagensbedste-dbapp.netdna-ssl.com": [4104], "*.silkn.com": [14856], "www.reportingproject.net": [13845], "*.dmstatic.com": [4101], "www.angelikafilmcenter.com": [1058], "flckr.ml": [2024], "www.informatik.uni-ulm.de": [22368], "bbs.pacbsd.org": [12337], "nizhniynovgorod.auto.ru": [19276], "piwik.accessnow.org": [503], "x.empece.info": [2024], "client.jabbi.pl": [8490], "packetstatic.com": [12346], "tail.gr": [2024], "www.ravendb.net": [13639], "*.forocoches.com": [6025], "www.pacsec.jp": [12338], "msn.com": [9810], "zenbox.click": [2024], "www.yourmembership.com": [18817], "zrg.io": [2024], "bourse.lemonde.fr": [9204], "*.namecentr.al": [11059], "s1.cnzz.com": [3328], "webaccess.boell.de": [2192], "damballa.com": [4122], "pand.as": [2024], "sprinklr.com": [21949], "*.towerfts.nsbf.nasa.gov": [10909], "jeds.me": [2024], "bolshie-chuvstva.friday.ru": [20175], "www.sharethenetwork.com": [14732], "m.pd.imhd.sk": [8004], "mpil.us": [2024], "ddlvalley.eu": [19786], "cyoa.co": [2024], "recruitee.com": [21611], "zhkh.astrobl.ru": [19264], "s.lilm.in": [2024], "paut.mx": [2024], "www.effectivemeasure.net": [5096], "paulschou.com": [21360], "dubs.at": [2024], "sj4.us": [2024], "releases.linaro.org": [9377], "postgresql.us": [13021], "on.vuck.nl": [2024], "owa.rsl.ru": [21686], "mshare.net": [10451], "chuvashiya.rt.ru": [13529], "bmcmedgenet.biomedcentral.com": [1931], "www.partyprogress.org": [12455], "rflc.io": [2024], "go.gooley.co": [2024], "ebook.money.pl": [10585], "mypu.sh": [2024], "*.mumzworld.com": [10740], "my.netease.com": [11228], "entp.hud.gov": [17099], "rta.tl": [2024], "go.fly.com": [2024], "amolivros.net": [2024], "hanty.rt.ru": [13529], "redirector.parabola.nu": [12412], "thejns.org": [8655], "*.carleton.ca": [2862], "w-o.it": [2024], "yahoo.yieldmanager.com": [13937], "www.canddi.com": [19502], "cdn.anonfiles.com": [1079], "subscribe.courierpostonline.com": [3713], "low.es": [2024], "company.zynga.com": [19033], "ngs.ru": [21134], "koid.in": [2024], "beats.is": [2024], "gnuradio.org": [6338], "alt.coxnewsweb.com": [3737], "www.freedom-leisure.co.uk": [20158], "hivtest.cdc.gov": [19532], "l.odoketa.com": [2024], "t.album.youmix.co.uk": [18806], "m.magajin.jp": [2024], "libra.to": [2024], "www.givingprograms.com": [6673], "lbhf.gov.uk": [9078], "portal.dyc.edu": [4089], "myradiocreative.com": [10858], "ripe69.ripe.net": [13953], "derus.fr": [2024], "www.rvm.io": [13543], "zags.nso.ru": [21192], "blog.optimizely.com": [12107], "wgkl.im": [2024], "dy.fi": [19913], "leads.infousa.com": [8112], "wilv.ga": [2024], "leads.demandbase.com": [4324], "tymovskoe.sakh.com": [21719], "www.beusergroup.co.uk": [16140], "annie.fnal.gov": [5741], "directa.cat": [4516], "vis.immo": [2024], "repairshandbook.oxford.gov.uk": [21324], "discsto.re": [2024], "www2.alibaba.com": [857], "btyfdbl.com": [2024], "*.moovweb.net": [10624], "tnfsh.tk": [2024], "wand.com": [18065], "imgdc.us": [2024], "kev.gs": [2024], "authorcentral.amazon.fr": [19176], "ticket.yandex.com": [18742], "kids.rts.ch": [21957], "video.golem.de": [6804], "portal.rosminzdrav.ru": [21674], "*.smartling.com": [15061], "portal.rz.htw-berlin.de": [7103], "l.giambo.org": [2024], "gwent.police.uk": [7017], "www.justsecurity.org": [8712], "doc.anwiki.com": [19210], "getsafeonline.org": [6585], "firelady.com": [5845], "lp.outbrain.com": [12182], "styin.me": [2024], "wwwmeleno.lurkmore.so": [9683], "partner.x5.ru": [18590], "brad.mn": [2024], "profiles.tmt.org": [16444], "www.wikileaksparty.org.au": [18384], "community.nationalarchives.gov.uk": [11103], "www.onlinesbi.com": [11911], "www.thoughtbot.com": [16462], "www.maplecroft.com": [20925], "obnd.co": [2024], "moatads.com": [10525], "amlk.uk": [2024], "www.creare.co.uk": [3765], "darkroom.taskforceonshalegas.uk": [16032], "s.guol.in": [2024], "james.pictures": [2024], "temai.etao.com": [4965], "www.winscp.net": [18420], "hmpph.jozz.xyz": [2024], "mnst.rs": [2024], "forms.rbwm.gov.uk": [21597], "int-mas.wiiings.com": [18381], "j.pave.com": [2024], "pixelx.de": [12771], "www.cardshopnwf.org": [11126], "www.linearcollider.org": [9386], "www.popcorn-time.to": [21461], "p.ipont.ca": [2024], "mailman.videolan.org": [17775], "i.cdnpark.com": [2575], "hop.labs.coop": [2024], "find.my.t-mobile.com": [15837], "osf.to": [2024], "abicko.cz": [2088], "dev.enaza.ru": [5222], "*.kenai.com": [8861], "t.sohu.com": [15171], "jiml.me": [2024], "motigo.com": [10653], "games.rambler.ru": [13600], "chim.pn": [2024], "vorstand.ext.c-base.org": [2506], "a.adaw.uk": [2024], "umb.info": [2024], "mail.ddos-guard.net": [19788], "ii.cx": [2024], "s.4now.net": [2024], "melrose.eu": [2024], "q.melikyan.me": [2024], "nhsdirect.nhs.uk": [10951], "www.omni.media": [21245], "i.istockimg.com": [20594], "d.copsywrite.nl": [2024], "staging2.ctc.ru": [19738], "m.visiblebody.com": [17859], "luema.fashion": [2024], "it.3.boardgamearena.com": [2182], "ites.so": [2024], "evernote.nikkei.com": [11442], "voxer.com": [17943], "dabuttonfactory.com": [4093], "cdns.usablenet.com": [17505], "ch-fr.norton.com": [11545], "*.microsoftstoreassets.com": [10400], "*.wegohealth.com": [18276], "ves.io": [2024], "edu.kde.org": [8735], "www.wiki.hidekisaito.com": [7396], "s1.gismeteo.lv": [20250], "autodiscover.west-norfolk.gov.uk": [22563], "rug.bi": [2024], "www.konami.com": [8985], "*.wral.com": [18020], "murmansk.sledcom.ru": [21858], "www.racf.bnl.gov": [19418], "mincommsy.uni-hamburg.de": [9758], "*.vtourist.com": [17836], "windows.net": [18433], "blog.fastly.com": [5676], "sfnmedia.com": [2024], "stc.utdstc.com": [22415], "*.http.cdn.softlayer.net": [15160], "centos.org": [2950], "lnks.me": [2024], "parkncu.be": [2024], "www.frozen-yogurt-franchise.org": [6211], "eye.gd": [2024], "www.gazetaexpress.com": [6461], "www.pingtest.net": [11930], "pureloto.com": [13288], "rapidgator.net": [13620], "*.visaliatimesdelta.com": [17852], "www.hochwasser.baden-wuerttemberg.de": [19302], "quan.fanli.com": [5645], "dc.cr": [2024], "a1s.unicdn.net": [17264], "www.talktalkbusiness.co.uk": [15994], "static3.wonderwall.com": [18502], "webtv.netcologne.de": [11226], "linuxcloudvps.com": [9434], "komoona.com": [8979], "www.pubsbenefits.acs.org": [974], "www.freifunk-rheinland.net": [20171], "wix.gosquared.com": [6766], "gvcmtg.co": [2024], "new.auto.ru": [19276], "thrmwr.nl": [2024], "www.mises.org": [10490], "cjb.uniovi.es": [17282], "eliminatejunkemail.com": [12365], "s7sps7.scene7.com": [14402], "h0.ifengimg.com": [20487], "java.twistedmatrix.com": [16958], "eveonline.com": [4977, 20041], "www.lowes.com": [9645], "d.stavrovski.net": [15505], "www.developermail.io": [4407], "opac.library.usyd.edu.au": [22413], "cendio.com": [2943], "ext.vt.edu": [17825], "whois.domaintools.com": [4653], "trmr.us": [2024], "lars.biz": [2024], "fctdata.aastocks.com": [19037], "edbpr.dk": [2024], "www.btplc.com": [1575], "banym.de": [1685], "eastsussex.libraryreserve.com": [20829], "tacit.pub": [2024], "guides.thenextweb.com": [16374], "qlgroup.quickline.ch": [21566], "brulte.co": [2024], "sluprint.slu.se": [14195], "anglsrch.net": [2024], "unglue.it": [17250], "enj0y4ja.cf": [2024], "h-tr.xyz": [2024], "k.eep.me": [2024], "www.madstein.at": [9860], "ftpmirror.gnu.org": [6337], "software.intel.com": [8211], "m.colta.ru": [19648], "music.friday.ru": [20175], "bill.lansp.ru": [20781], "quality.psbank.ru": [13231], "sumome.com": [22030], "csfd.blaboly.cz": [2024], "meet.jit.si": [8596], "ewmcdonald.com": [2024], "www.baltika.fm": [19311], "svn.alfresco.com": [850], "movidi.us": [2024], "rcounter.rambler.ru": [13600], "snipt.net": [15102], "geniusdisplay.com": [20227], "www.submissiontechnology.co.uk": [15627], "plans.communitycares.com": [19654], "disk.yandex.com": [18742], "assets.sbnation.com": [14137], "www4-static1.gog.com": [6343], "site-cdn.onenote.net": [11879], "insight.sensiolabs.com": [14648], "fa.binho.org": [2024], "www.deri.ie": [11102], "chsweb.me": [2024], "ski.nensa.net": [2024], "atom.iop.org": [8196], "www.grad.washington.edu": [17376], "science.kairo.at": [8782], "www.hkk.de": [7070], "*.webhostingpad.com": [18200], "install.winzip.com": [18424], "*.dryicons.com": [4778], "securemedia.newjobs.com": [11358], "mlend.co": [2024], "barmer-gek.de": [1699], "www.prichernomorie.com.ua": [21496], "www.coloman.nl": [3438], "www.engineyard.com": [5255], "blogs.spectator.co.uk": [21927], "pfl.ag": [2024], "freesoundeffects.com": [6108], "dotcom-tools.com": [19886], "m.library.usyd.edu.au": [22413], "www.maemo.org": [9862], "3voi.es": [2024], "fdic.gov": [5700], "academics.usc.edu": [17366], "temp-mail.ru": [16176], "dnn.ly": [2024], "tmoya.us": [2024], "lyv.rs": [2024], "eventbrite.com": [5432], "eportal.schools.doncaster.gov.uk": [4672], "www.lindy.com": [9383], "export.cr.yp.to": [3745], "wiki.bitnami.com": [2032], "wakediv.school": [2024], "www.maysoft.com": [10115], "m.aldi.be": [357], "admissions.warrington.gov.uk": [18079], "jrical.de": [2024], "shop.centralfield.com": [2961], "overnig.ht": [2024], "www.economy.com": [5054], "msights.co": [2024], "search.yahoo.co.jp": [18730], "anonyproz.com": [1116], "s.styla.com": [2024], "esade.me": [2024], "nasadrones.thecthulhu.com": [16403], "www.zopa.com": [19007], "bada55.cr.yp.to": [3745], "youranimal.info": [2024], "mail.xen.org": [22648], "hmrp.pl": [2024], "*.jorsika.com": [2789], "www.va.gov": [17100], "*.ndchost.com": [10934], "t.jd.com": [8436], "vi.sa": [2024], "r.ulule.com": [17224], "tracking.immobilienscout24.de": [8008], "cycl.chat": [2024], "s3.trafficmaxx.de": [16728], "photos.april.org": [1171], "www-boone.fnal.gov": [5741], "shop.geocaching.com": [6527], "russellgroup.ac.uk": [14097], "ecruos.golem.de": [6804], "directv2.ilovefreegle.org": [7890], "whomentors.info": [2024], "blog.zalando.com": [18877], "golfte.es": [2024], "kimberly-clark.com": [8905], "yorkfitness.com": [18789], "env.is": [2024], "fmkt.aero": [2024], "www.nsnam.org": [11591], "luxetvl.com": [2024], "w.erbloggt.de": [2024], "bzzzz.tk": [2024], "www.islamreligion.com": [8371], "whitefence.com": [18345], "sml.ac": [2024], "iic.cisecurity.org": [2628], "admincp.ubuntuforums.org": [17185], "www.mackeeper.com": [9834], "ftbnd.info": [2024], "beta.startmail.com": [15475], "www.thomascook.com": [16450], "3ple.link": [2024], "genius-upload.itunes.apple.com": [1151], "z2z.co": [2024], "pycon.sg": [13308], "xjzt.jd.com": [8436], "pressable.com": [13082], "on.jefftham.com": [2024], "qtts.hkjc.com": [20384], "vrtas.co": [2024], "necome.si": [2024], "shpock.com": [14806], "recode.net": [13709], "l.ksp.ca": [2024], "summerinstitutes.stanford.edu": [15447], "m.quel.jp": [2024], "trud.admtyumen.ru": [19082], "www.globusvoyages.ch": [7561], "vocaroo.com": [17897], "zoomed.us": [2024], "*.imageshack.us": [7983], "cdn.static.zdbb.net": [18850], "www.micampuscompact.org": [10374], "jjtfl.com": [2024], "fullcontact.com": [6228], "login.usc.es": [17506], "ie.isidewith.com": [20466], "4for4.co": [2024], "neustar.com": [11322], "pc.play-asia.com": [12828], "pkcommunitywatch.co.uk": [21429], "amblog.ashleymadison.com": [1278], "valflora.migros.ch": [10417], "wget.alanreed.org": [19130], "cloud.disk42.com": [4550], "firm24.com": [5847], "pactified.com": [2024], "www.bigcartel.com": [1878], "6.xhcdn.com": [18605], "h2o.examp1e.net": [5470], "x.jd.com": [8436], "macfound.fluxx.io": [5938], "b.kglover.net": [2024], "www.demonbuddy.com": [2250], "staging.ycharts.com": [18704], "gl.libreoffice.org": [9327], "see-more.xyz": [2024], "collegehumor.com": [3427], "www.systemintegra.ru": [15824], "yandex.kz": [18743], "www.osumarion.osu.edu": [11797], "www.emailcenter.acs.org": [974], "*.us1.cloud.oracle.com": [12116], "www.compliance.idoxgroup.com": [20484], "atmbnk.uk": [2024], "*.doclix.com": [4066], "beta-assets.infinum.co": [20526], "softwareintegrity.coverity.com": [3731], "new.to.ourlocality.org": [12177], "secure.gacollege411.org": [6282], "sdnet.avv.de": [1485], "clickhouse.yandex": [19613], "madoka.biligame.com": [1903], "www.bayleaks.com": [1725], "www.engelsystem.de": [5254], "admissions.msu.edu": [21040], "www.deutsch.peerius.com": [12555], "sia.unizar.es": [17441], "www.gloucestershire.gov.uk": [6730], "secretescap.es": [2024], "arrisi.com": [1240], "www.resistsurveillance.org": [13866], "www.exmo.com": [5488], "secure.38degrees.org.uk": [157], "gogoyoko.com": [6792], "sysax.com": [22069], "chppe.osu.edu": [11797], "sharenet.brent.gov.uk": [2324], "tr.cloudflare.com": [3284], "i9senare.de": [2024], "na.llnet.bioware.cdn.ea.com": [1934], "*.thestranger.com": [16386], "memrise.com": [10273], "fivesta.rs": [2024], "www.thepiratebay.xn--fiqs8s": [22174], "www.w.th-mittelhessen.de": [15874], "connect.sfu.ca": [14708], "www2.oikotie.fi": [21234], "mediaroots.org": [20951], "forum.allnokia.ru": [19153], "vircurex.com": [17818], "www.dollaraday.co": [4636], "afom.nl": [2024], "static.bitvc.com": [1975], "go.lnp.tv": [2024], "api.musixmatch.com": [10758], "smile.qa": [2024], "run.pivotal.io": [12765], "net-mobile.com": [11217], "merca20.com": [10295], "efinancialcareers.com": [4903], "twiki.cern.ch": [2588], "viaduct.io": [17749], "sws.me": [2024], "ae04.alicdn.com": [853], "www.govwaste.co.uk": [6853], "action.naacp.org": [10901], "l.spin.wtf": [2024], "enews.hkuspace.hku.hk": [20387], "cart.taobao.com": [16015], "*.radioshack.com": [13575], "git.tocco.ch": [16600], "frsky.me": [2024], "sccemsagency.org": [14401], "lindy.com": [9383], "peri.pw": [2024], "georgetown.edusupportcenter.com": [19962], "ipinvite.iperceptions.com": [20464], "wozz.in": [2024], "ponews.co": [2024], "tv.yahoo.co.jp": [18730], "go.supergr.jp": [2024], "jmoo.fi": [2024], "swpwrld.com": [2024], "diety.wp.pl": [18011], "debconf1.debconf.org": [4257], "sell.carzone.ie": [19519], "indapass.hu": [8055], "flashfire.chainfire.eu": [19556], "hlm.tc": [2024], "convers.al": [2024], "d.ezona.org": [2024], "goto.idnc.biz": [2024], "dish.ly": [2024], "go.td90uk.co.uk": [2024], "dwx.me": [2024], "youtube.com.sa": [18800], "moodscope.com": [21019], "bbly.me": [2024], "bme.engineering.osu.edu": [11797], "1deg.org": [68], "rive.re": [2024], "odns.co": [2024], "mci.edu": [10138], "www.wimp.com": [18414], "fpdata.aastocks.com": [19037], "snakehosting.dk": [15089], "ppnkie.co": [2024], "www.hieber.de": [20373], "en-sr.dict.cc": [4442], "wrb.plymouth.ac.uk": [12873], "ohling.com": [11802], "www.systeme.familie-redlich.de": [5634], "cio.evanta.com": [2024], "adbrvl.co": [2024], "static8.startnext.com": [15478], "rsc.li": [2024], "manuf.bme.hu": [1556], "krmut.mvd.ru": [21055], "i2.iis.net": [7745], "ndgz.it": [2024], "video30.0xdb.org": [10], "ihfs.teteny.bme.hu": [1557], "forum.linuxserver.io": [9449], "korolev.biglion.ru": [19375], "northlincs-self.achieveservice.com": [19051], "pei2.me": [2024], "okpay.com": [11666], "thvo.me": [2024], "address.unistream.ru": [17291], "img1.write.qq.com": [13329], "werkenbijdeoverheid.nl": [11172], "games.sina.cn": [14902], "zencoder.com": [18919], "parabola.nu": [12412], "static.newsela.com": [21125], "www.mheducation.com": [20975], "tzkr.in": [2024], "www.bike24.com": [1898], "vay.as": [2024], "bmchematol.biomedcentral.com": [1931], "chinabank.com.cn": [3086], "soscisurvey.de": [15115], "golyshmanovo-old.admtyumen.ru": [19082], "delfogo.com": [4307], "www.stableit.ru": [21968], "hof.fm": [2024], "shop.sport-express.ru": [21941], "mysmp.fr": [2024], "www.gokgs.com": [20282], "ttshr.co": [2024], "veja-este.link": [2024], "dlghtfl.co": [2024], "notehub.org": [21165], "www.linuxjournal.com": [9444], "bigredstop.me": [2024], "shoeshow.com.au": [14774], "cncrt.tips": [2024], "labs.opendns.com": [11969], "api.accuweather.com": [520], "www.hackaday.io": [7127], "webapi.link": [2024], "orenburg.biglion.ru": [19375], "je-re.me": [2024], "novorossiysk.tpprf.ru": [22260], "www.dei.gr": [6897], "nnii.co": [2024], "pittsburghmassageandwellness.com": [12764], "www.globalchokepoints.org": [4901], "api.tech.yandex.com": [18742], "mail.mcb.net": [9975], "www.unizar.es": [17441], "s.ichec.ie": [2024], "globusonline.org": [6727], "ezin.es": [2024], "www.mrmcd.net": [9800], "img0.bdstatic.com": [19339], "arsenev.europaplus.ru": [20034], "ring.ly": [2024], "maharaj.ca": [2024], "acluga.org": [298], "az.chaucanh.net": [2024], "minetest.ru": [10454], "www.tox.chat": [16690], "*.flightaware.com": [5899], "videoconfserver.ulpgc.es": [17213], "pfizerhelpfulanswers.com": [12641], "okdiar.io": [2024], "tip.sbb.ch": [15756], "advancement.uic.edu": [17321], "ethoscustombrands.com": [5374], "wfb.tc": [2024], "www.w00tads.com": [17978], "btslinger.ie": [2024], "internetconsultatie.nl": [11172], "reg-en.jd.com": [8436], "frederick.cancer.gov": [2819], "dotmailer.co.uk": [4690], "rollvt.tv": [2024], "x.kolo.mx": [2024], "api.thumbalizr.com": [22202], "wornthrough.com": [18556], "img.yumpu.com": [18837], "freedom-ip.com": [6140], "0ughy3ss.ml": [2024], "seedrs.com": [14614], "donnu.net": [2024], "prscp.me": [2024], "kh.boell.org": [19422], "jo.org.es": [2024], "static4.readyflowers.com": [13680], "trac.adium.im": [649], "artnt.de": [2024], "*.log.optimizely.com": [12107], "stickerorro.friday.ru": [20175], "virtualems.cca.edu": [2547], "www.blossom.co": [2136], "d.ifengimg.com": [20487], "pulse-beta.conviva.com": [3633], "edit.productie.gx.uvt.nl": [16521], "granularproject.org": [20302], "link.tv4.se": [2024], "ceip.org": [2024], "rss.final4ever.com": [5804], "8.url.cn": [22399], "by.zedbloc.com": [2024], "login.mailigen.com": [9901], "www.tealium.com": [16060], "*.mayoclinic.com": [10119], "yangjiang.jd.com": [8434], "jasonsmovieblog.com": [20626], "shootfood.co": [2024], "entropia.de": [20004], "*.gsu.edu": [6368], "gkon.tk": [2024], "zabbix.ulpgc.es": [17213], "fommy.me": [2024], "avatar.kuangxiangit.com": [20762], "blockbusters.friday.ru": [20175], "bethsoft.com": [1848, 1849], "trycelery.com": [16874], "risd.cc": [2024], "usenix.org": [17120], "www.suppliesfordreams.org": [15702], "www.human.cornell.edu": [3676], "vmss.boldchat.com": [2203], "spiil.org": [15344], "login.eset.com": [5347], "se.gy": [2024], "cdn.atdmt.com": [10393], "app.maven.co": [10098], "www.data.gov.hk": [19761], "einsteinathome.org": [5115], "webmail.timeweb.ru": [16532], "k.play-asia.com": [12828], "online.play-asia.com": [12828], "tvweekm.ag": [2024], "images.klops.ru": [20735], "post2.sme.sk": [14198], "gohak.ly": [2024], "alex.news": [2024], "yelp.co.jp": [18766], "pan.taobao.com": [16015], "tabrd.co": [2024], "*.ona.gov.au": [11785], "telf.az": [2024], "www.hipointinc.com": [7392], "kbj.me": [2024], "people.collabora.com": [3418], "hoyakids.georgetown.edu": [6531], "getclef.com": [6574], "hellobond.com": [7298], "jrho.de": [2024], "au.patronbase.com": [21358], "*.trialpay.com": [16798], "stefa.no.it": [2024], "sources.debian.net": [4261], "www.onlinewellnessassociation.com": [11916], "reader.qq.com": [13329], "ancestrysso.mycanvas.com": [10795], "spec.es": [2024], "campus.capitalone.com": [2831], "r.kvdl.com": [2024], "qa.medicare.gov": [20953], "eservice.websupport.novell.com": [11569], "bbrwn.co": [2024], "dbgam.in": [2024], "mobile.zuno.cz": [18860], "kdoes.nl": [8848], "survey.boell.de": [2192], "www.thebeautifulwalk.lequipe.fr": [20811], "pandora.com": [12389], "getcloudapp.com": [9388], "ovhtelecom.fr": [11725], "zaanbajes.nlnetlabs.nl": [10980], "www.nih.gov": [11090], "www.amnesty.gr": [1007], "lds.rocks": [2024], "nlm.nih.gov": [11090], "secom.pe": [2024], "qck.me": [2024], "www.sf.se": [14168], "dom.riastatic.com": [13487], "status.transifex.com": [16743], "*.bigcommerce.com": [1881], "s0.static.hootsuite.com": [7497], "mazacha.in": [10121], "bryn.link": [2024], "web20.play-asia.com": [12828], "help.livingsocial.com": [9530], "www.syncsearch.jp": [15796], "www.ren.tv": [21626], "sgmia.co": [2024], "ozyr.me": [2024], "aae.co": [2024], "lists.cs.illinois.edu": [17346], "on.kipp.org": [2024], "sutton.moderngov.co.uk": [21005], "dpk.otpbank.ru": [12165], "quadrigacx.com": [13374], "www.profitbricks.co.uk": [13174], "eyes.nasa.gov": [10909], "truemo.me": [2024], "ab4all.com": [19038], "www.flamingspork.com": [5881], "download.xmarks.com": [18671], "xerte.plymouth.ac.uk": [12873], "fallback.wix.com": [18473], "www.karusel-tv.ru": [20690], "erikshar.es": [2024], "bfm.ru": [19365], "www.sj.se": [14185], "www.martinus.sk": [10044], "www.infotomb.com": [8106], "lqfb.piratenpartei.de": [12755], "hmath.me": [2024], "*.delawareonline.com": [4304], "www.web-stat.com": [18143], "bgell.me": [2024], "www.speakerdeck.com": [15306], "www.freeswitch.org": [6106], "www.ss.prbrds.com": [13158], "sk.crowdin.com": [3823], "jcsd.dk": [2024], "*.fusionio.com": [6254], "linux-libre.fsfla.org": [5593], "cfjlab.fr": [2604], "go.cloudbees.com": [19622], "www.tk.de": [16102], "*.merca20.com": [10295], "www.tastselv.skat.dk": [14963], "klikkm.hu": [2024], "go.maneu.fr": [2024], "cdn.itproportal.com": [20606], "auth.edinburgh.gov.uk": [5074], "www.shoppbs.org": [12242], "www.togetherjs.com": [16605], "www.masterchan.org": [10061], "*.mediafactory.fm": [10180], "altmedia.macobserver.com": [9848], "employer1.anthem.com": [19206], "teraction.link": [2024], "hosting.de.inter.net": [8228], "*.cpni.gov.uk": [2964], "kiosk.onlinesbi.com": [11911], "perf.cloud.unity3d.com": [17310], "code.freent.de": [6158], "www.happyplanetindex.org": [7190], "support.leagueoflegends.com": [9220], "norx.io": [11550], "www.earth.leeds.ac.uk": [17403], "tools4noobs.com": [22235], "www.walsall.gov.uk": [22523], "s43.cnzz.com": [3328], "opendata.ch": [21270], "boldne.ws": [2024], "chipworks.com": [3092], "www.laeditorialupr.com": [9129], "x.think26.com": [2024], "www.nisit69.com": [11462], "go.nw.de": [2024], "cets.georgetown.edu": [6531], "z.shao.jp": [2024], "www.mouseflow.nl": [10664], "blog.qt.digia.com": [4463], "ndchost.com": [10934], "www.freespeech.org": [6127], "secure.s.telegraph.co.uk": [16149], "gl.dinahosting.com": [4506], "parking.newcastle.gov.uk": [11355], "map.unistream.ru": [17291], "nat-sec.me": [2024], "slackatwork.com": [15008], "coloradonocall.com": [3441], "rcblood.org": [2024], "vlog.leadformix.com": [9207], "*.memberclicks.com": [10263], "etfm.eu": [2024], "l.gamedok.net": [2024], "*.cbsnews.com": [2540], "magicmembers.com": [9874], "correo.ulpgc.es": [17213], "www.vanityfair.com": [3554], "sponsok.it": [2024], "www.studentaid2.ed.gov": [4881], "www.snowdrift.coop": [15108], "l.rene.im": [2024], "frontend.ndla.no": [11158], "jwoo.me": [2024], "pabloygl.es": [2024], "netnativ.es": [2024], "labp.htwk-leipzig.de": [7596], "chip-chap.com": [3088], "www.centennialcollege.hku.hk": [20387], "depkatalog.no": [4358], "rasc.in": [2024], "rsa.im": [2024], "answer.chiebukuro.yahoo.co.jp": [18730], "lapweb.info": [2024], "manpages.debian.org": [4263], "ande.rs": [2024], "on.deedcast.com": [2024], "static.mediaworks.co.nz": [10179], "weblogin2.geant.net": [6291], "jobs.uwm.edu": [17379], "fp3a.websafetymark.io": [2393], "*.linkbucks.com": [9392], "secure.skypeassets.com": [15004], "clang.llvm.org": [9103], "javacoolsoftware.com": [8542], "gforge.inria.fr": [8161], "oppictures.com": [17308], "services.google.com": [6818], "mercatus.org": [10296], "l.coldzone.co": [2024], "tesia.me": [2024], "jobs.nottingham.ac.uk": [11567], "dfed.ru": [2024], "www.onamae-server.com": [11858], "ccbakery.biz": [2024], "www.fpcomplete.com": [5581], "gwo.is": [2024], "t.mmdp.tk": [2024], "tfm.ro": [22135], "platform.appcelerator.com": [1144], "tmobile.com": [15899], "images.b.switchadhub.com": [15764], "medialoot.com": [10187], "tco.li": [2024], "due.play-asia.com": [12828], "go.kijis.com": [2024], "www.shopnwf.org": [11126], "talkingphonebook.com": [9550], "stag-result.cntraveler.com": [3558], "amctheatres.com": [364], "stb.style": [2024], "opbk.co": [2024], "door.desy.de": [4386], "codeclubpro.org": [3353], "dy6.co": [2024], "*.easyvoicebiometrics.com": [5022], "r79.co": [2024], "ca.netflix.com": [11268], "www.crunchbase.com": [3830], "sykn.tk": [2024], "*.uidaho.edu": [17345], "zenjoy.me": [2024], "mydjiflight.dji.com": [4029], "rdl.sr": [2024], "nic.yanao.ru": [22665], "feitbulbs.com": [5730], "s87.cnzz.com": [3328], "moonpig.com.au": [10619], "unmaintained.git.collabora.com": [3418], "tpte.co": [2024], "www.nextag.com": [11402], "go-mobi.net": [2024], "l.maxjchung.com": [2024], "syntevo.com": [15806], "eatglobe.org": [2024], "ixwebhosting.com": [7880], "openid.yubico.com": [18835], "brokerportal.mo.anthem.com": [19206], "psql.active24.com": [19061], "kaliningrad.biglion.ru": [19375], "www.ioam.de": [7787], "complinet.com": [19659], "careers.vodafone.co.uk": [17900], "cheb.biglion.ru": [19375], "artiswall.co": [2024], "d.ytet5uy4.com": [2024], "hakin9.org": [7158], "www.nurdspace.nl": [11016], "akle.in": [2024], "jewishvirtuallibrary.org": [20640], "my.mstrick.com": [2024], "bl.fftn.co": [2024], "roe.ch": [13999], "sport.times.am": [22210], "youngalumni.stanford.edu": [15448], "hummingbird.sandiegoreader.com": [14335], "www.kaltura.com": [8790], "*.royalmailgroup.com": [14052], "jbow.co": [2024], "www.piraattipuolue.fi": [21412], "www.tbray.org": [15854], "info.ooyala.com": [11936], "xpl.theadex.com": [16400], "get.theskeet.im": [2024], "distrib-coffee.ipsl.jussieu.fr": [8705], "forum4.hkgolden.com": [7058], "labom.at": [2024], "www2.sans.org": [14128], "secure.southampton.gov.uk": [15259], "www.brand.osu.edu": [11797], "*.kym-cdn.com": [8772], "login-msol-ny1.vtv.aclu.org": [312], "theb.fi": [2024], "es.lastminute.com": [9177], "helloworld.letsencrypt.org": [9279], "theiet.org": [7724], "brand.osu.edu": [11797], "b4h.us": [2024], "corporate.walmart.com": [18059], "proxy04.newsnetz.ch": [11371], "marksandspencer.com": [9955], "mgab.it": [2024], "partnernet-uat.symantec.com": [15780], "*.test-ipv6.cz": [16215], "piraattipuolue.fi": [21412], "sdacs.ucsd.edu": [17012], "imwukong.com": [20515], "fotg.co": [2024], "www.octopart.com": [11751], "i.groceries.asda.com": [407], "nlnetlabs.blogs.nlnetlabs.nl": [10980], "www.baltimoresun.com": [16805], "www.geodacenter.org": [1220], "www.chrs-mln-krs.com": [19588], "alzaware.net": [2024], "www.videoly.co": [17784], "api.zenhub.io": [22713], "rf.gl": [2024], "neaf.gov.au": [11107], "the-group.net": [16363], "app.pluralsight.com": [21441], "iphone-client.fitbit.com": [5867], "madgex.com": [20904], "submittable.com": [22022], "mobileworking.holyrood.com": [20393], "homepages-fb.thm.de": [15876], "rvsh.in": [2024], "business.memberdirect.net": [10265], "marketing.xrllc.com": [22657], "media-vox.cursecdn.com": [3927], "d9.sinaimg.cn": [14910], "www.retsinformation.dk": [13887], "secure.cdn.us.playstation.com": [12832], "books.sonatype.com": [15202], "www.alias.io": [856], "oogl.us": [2024], "servicios.elpais.com": [5126], "lepalmier.squat.net": [21955], "thenewpress.com": [16301], "www.banki.ru": [1672], "coolutils.com": [3641], "9in.style": [2024], "abonnes.lemonde.fr": [9204], "nanning.jd.com": [8434], "gss2.baidu.com": [1641], "l.afcleuven.be": [2024], "comoffers.tpprf.ru": [22260], "jobbik.hu": [8609], "billing.hudsonvalleyhost.com": [7602], "feed.screencast-o-matic.com": [14471], "static6.startnext.com": [15478], "cf.gcaptain.com": [6289], "cs.phncdn.com": [12661], "maps.me": [9985], "politicalcompass.org": [12917], "vpn.taiget.ru": [22088], "www.wealden.gov.uk": [22541], "specimens.cancer.gov": [2819], "www.smozaika.ru": [21874], "carolkurth.com": [2024], "wokingham.spydus.co.uk": [21952], "intranet.zetel.de": [18950], "mngn.co": [2024], "goget.at": [2024], "8ug.at": [2024], "www.multiseek.net": [10733], "resilientsystems.com": [13863], "nobi.cc": [2024], "ch.icecat.biz": [7912], "cemas.osu.edu": [11797], "mizip.khabkrai.ru": [20709], "mateso.co": [2024], "uim.tifbs.net": [22209], "chcra.site": [2024], "list.nih.gov": [11090], "snipe.ly": [2024], "chat.mediamarkt.de": [20949], "jira.spring.io": [15374], "myslimekonomicky.etrend.sk": [5383], "easil.link": [2024], "tracking.saturn.de": [21736], "www.worldreader.org": [18555], "*.e-plus.de": [4838], "www.lesestoff.ch": [20814], "www.gwinnettcounty.com": [7018], "vas-hosting.cz": [22428], "ixmaps.piwikpro.com": [21424], "elan.plexapp.com": [12855], "billcloud.unionpay.com": [17281], "on.v3t.co": [2024], "nutritionandmetabolism.biomedcentral.com": [1931], "wiki.lineageos.org": [9384], "bebo.com": [1771], "www.secure.switchkonnect.com": [15765], "go.sylop.com": [2024], "north.worldcat.org": [18536], "*.cmbi.ru.nl": [13570], "www.france-universite-numerique-mooc.fr": [6076], "pobox.com": [12875], "foreignrr.www.uprr.com": [22392], "sykmelding.nav.no": [21093], "wordpress.com": [18520], "minfra.me": [2024], "www.wanglibao.com": [18067], "*.conduit-data.com": [3565], "appcenter.html5tools-software.intel.com": [8211], "topvill.as": [2024], "cdn.msf.org.uk": [9803], "www.fraserxu.me": [6088], "77.rkn.gov.ru": [13971], "www.infocentral.state.gov": [17146], "www.vbg.de": [17554], "*.your-server.de": [7376], "omot.in": [2024], "cmag.pw": [2024], "ib.zapsibkombank.ru": [18890], "*.gymglish.com": [7022], "wiki.xenserver.org": [18646], "gkby.it": [2024], "min.dj": [2024], "gatorchrysler.net": [4244], "pribook.co": [2024], "min.do": [2024], "*.ratfishoil.com": [13635], "cs0.myzuka.fm": [21079], "1pic.us": [2024], "i2.weibopay.com": [18280], "wkrn.tv": [2024], "pressplay.cc": [21490], "makhachkala.beeline.ru": [1778], "efadatacollections.education.gov.uk": [19957], "www.torrentz.eu": [16663], "travelblog.org": [16764], "links.rashty.me": [2024], "cdn5.img.sputniknews.com": [21951], "ledger.co": [9233], "admin.autoscout24.ch": [1457], "nm.contextweb.com": [3618], "hd1st.com": [2024], "on.dsoh.net": [2024], "spaceweatherphone.com": [15282], "s4.uczzd.cn": [17003], "links.fagan.me": [2024], "unichange.me": [22370], "meo.pt": [10286], "s.rhb.ch": [2024], "leend.rs": [2024], "selfservice.mville.edu": [9963], "forum.ubuntu-nl.org": [17181], "inkbunny.net": [8151], "dev.hackaday.io": [7127], "rstforums.com": [13525], "rehabitlabs.com": [2024], "www.sharefile.com": [14724], "www.po.st": [12874], "login.aarp.org": [279], "leadin.hubspot.com": [7599], "www.lubakiagenda.net": [20885], "esswo7cwj66mkgtpnpjfkyt0otby04jyaqi3ur9r.ipleak.net": [20571], "flinq.de": [5902], "raco.cc": [2024], "trtl.co": [2024], "wwwdev.lbl.gov": [9079], "url.taizona.jp": [2024], "trading.etrend.sk": [5383], "kimt.co.uk": [2024], "brainshark.com": [2288], "toster.ru": [16669], "sl.ookb.co": [2024], "mail.mvd.ru": [21055], "svs.informatik.uni-hamburg.de": [17025], "text.nanog.org": [11529], "demill.us": [2024], "news.tid.al": [16503], "nbcumv.co": [2024], "edel.me": [2024], "www.whsmith.co.uk": [18000], "buckeyevoices.osu.edu": [11797], "www.dacapoalfine-dd.de": [4095], "www.warnerartists.com": [18076], "checkbox.com": [19568], "www.welsh-country-cottages.co.uk": [18579], "holidaybreak.co.uk": [7461], "tpr.metafaq.com": [20970], "gchg.co": [2024], "my.nofussg.us": [2024], "wsdebug.dingtalk.com": [19842], "vlamin.gs": [2024], "*.live1.mintedcdn.net": [10472], "wikimedia.org.uk": [18388], "www.zohodiscussions.com": [18986], "*.lrb.co.uk": [9594], "3loons.me": [2024], "m.tv.sohu.com": [15171], "wojo.co.nz": [2024], "pcp.com": [12255], "media.rockstargames.com": [13997], "image.auction.rakuten.co.jp": [13594], "mycw.charitywater.org": [3017], "*.guildwars2.com": [6993], "invest.deals": [2024], "rts.ch": [21957], "status.mantisadnetwork.com": [9971], "w-f.co": [2024], "systemed.net": [15829], "l.sbio.me": [2024], "guide.magento.com": [9868], "proposal.illinois.edu": [17346], "cdn.mypypeline.com": [4486], "tum.de": [16896], "gnats.netbsd.org": [11222], "*.libguides.com": [9304], "historical-look.org": [7421], "dems.me": [2024], "src.selfhtml.org": [21775], "kklein.xyz": [2024], "youtube.co.ke": [18800], "vav.vutbr.cz": [17609], "writl.in": [2024], "www.speedof.me": [15328], "typekit.com": [16984], "www.fsisac.com": [5597], "btfy.co": [2024], "www.russia2all.com": [14100], "z.arzor.com": [2024], "www.keepass.info": [8849], "donate.careinternational.org.uk": [19514], "www.sogo.nu": [14211], "wiki.arkos.io": [1222], "iantromp.link": [2024], "ysmk.org": [2024], "daft.ie": [4100], "go.korb.cz": [2024], "cs12.myzuka.fm": [21079], "qa.linuxcontainers.org": [9435], "www.buyaplan.co.uk": [19482], "kennedyinstitute.georgetown.edu": [6531], "l.osg.my": [2024], "stpz.co": [2024], "help-fr-eu.nike.com": [11440], "jp.twimg.com": [16949], "production.nursing.osu.edu": [11797], "www.flirble.org": [16267], "cdne.stripchat.com": [22014], "cdn.coderouge.co": [3375], "blkshp.link": [2024], "jua.com": [8474], "www.nationalinterest.org": [21088], "jcry.me": [2024], "www.bibbitec.com": [1869], "dabney.caltech.edu": [2770], "dmv.ca.gov": [2758], "blogs.intel.com": [8211], "sengevenner.com": [2024], "stats.fs.usc.edu": [17366], "sdrma.tk": [2024], "www.lulzbot.com": [9669], "owa.macfound.org": [9833], "piwik.fsf.org": [5590], "s2.jrnl.ie": [20656], "wcshv.in": [2024], "hvnoqwaladcajhra.asana.com": [1265], "www.kabelbw.de": [20676], "registrar.stanford.edu": [15448], "xgaming.com": [18604], "emp.bbci.co.uk": [19332], "www.nia.nih.gov": [11090], "wiki.selfhtml.org": [21775], "theslot.jezebel.com": [8578], "www.opendoor.com": [12041], "shop.tvnz.co.nz": [15951], "001.img.pu.sohu.com.cn": [15170], "www.freifunk-karlsruhe.de": [6169], "imagesa.btol.com": [1645], "www.tibus.com": [22205], "link.ohnate.com": [2024], "oren.sledcom.ru": [21858], "thegazette.co.uk": [16356], "static.paste2.org": [12474], "pacific.to": [2024], "dgtl.me": [2024], "geovation.uk": [6535], "phytopedia.fsaa.ulaval.ca": [17319], "refr.de": [2024], "oadeposit.wellcome.ac.uk": [22559], "pubservice.com": [13265], "static.rapida.ru": [13619], "tv.sportbox.ru": [21942], "awy715.com": [2024], "tunas.co": [2024], "nikolaevsk-na-amure.startsmile.ru": [21980], "thinkingtogether.educ.cam.ac.uk": [17332], "www.joycasino5.com": [20654], "cafun.do": [2024], "www.cottageselection.co.uk": [18579], "www.dialshield.com": [1489], "supplierhelp.due-north.com": [19905], "www.dribper.com": [19896], "www.febo.com": [20079], "bugs.funtoo.org": [6247], "ruralchampions.govspace.gov.au": [6851], "r24626561.sync.app.asana.com": [1265], "ki1.in": [2024], "downloads1.mamp.info": [20916], "www.imgdino.com": [7994], "silavers.com": [2024], "xiorex.co": [2024], "webges.uv.es": [17544], "fonts.rovio.com": [14042], "bugzilla.org": [2425], "*.tor2web.com": [16638], "geokrety.org": [20233], "www.nps.gov": [11122], "ads.play-asia.com": [12828], "is.fuqed.net": [2024], "jetico.com": [8575], "saas.hsbc.co.uk": [20422], "www.c3noc.net": [2515], "community.capitalone.com": [2831], "klyo.us": [2024], "auto.yuga.ru": [22701], "lists.quagga.net": [13375], "balthy.me": [2024], "pauldotcom.com": [12493], "ablogc.ms": [2024], "kb.juniper.net": [8698], "prlsgk.us": [2024], "imperialcollegeunion.org": [8019], "daxue.amazon.cn": [19168], "mail.gettyimages.com": [6604], "s.edson.co": [2024], "kync.tv": [2024], "link.barryko.tw": [2024], "mrch.in": [2024], "en.site1.answcdn.com": [1095], "www.freecode.com": [6137], "beusergroup.co.uk": [16140], "adultwork.com": [698], "account.mouseflow.com": [10664], "manage-eqx.smartadserver.com": [15049], "klubitus.org": [8949], "www.cmth.bnl.gov": [19418], "filecache.drivetheweb.com": [12317], "15wz3btvj7qc9mkx9ncw6q6sxbok3kgbj9anrrbf.ipleak.net": [20571], "www.syndie.de": [15799], "help.disqus.com": [4559], "fpp.wusm.wustl.edu": [18089], "www.oblivia.vc": [11741], "hasylab.desy.de": [4386], "www.tapgage.net": [16020], "www.jal.co.jp": [8525], "sugarand.cl": [2024], "cabaneid.fr": [2024], "www.cs.berkeley.edu": [17329], "lyncdiscover.valleyfirst.com": [17620], "kirsle.net": [8931], "www.edgarfiling.sec.gov": [17104], "youke.baidu.com": [1641], "www.surfcanyon.com": [15713], "fbclg.us": [2024], "cheatography.com": [19567], "portal.nexcess.net": [11396], "learningnetwork.cisco.com": [3165], "jah.oxfordjournals.org": [12222], "www.elttam.com.au": [19984], "fst.link": [2024], "plan.scambs.gov.uk": [21739], "q3k.org": [13319], "careers.wustl.edu": [18089], "lv.oxforddictionaries.com": [12223], "www.asdacalltime.com": [19248], "airsoftgi.com": [798], "borne.nl": [11172], "sans.org": [14128], "www-q.kaufland.cz": [8838], "fuar7.beget.com": [19347], "www.hostica.com": [7530], "www.myradiocreative.com": [10858], "bunchball.net": [2439], "picasaweb.google.co.*": [6821], "www.amnesty.org.nz": [1011], "www.gehrcke.de": [6492], "*.voxer.com": [17943], "www.visualstudio.com": [17872], "tonybianco.com.au": [16621], "www.sous-surveillance.fr": [15253], "*.onsecure.gov.au": [11852], "laiwu.jd.com": [8434], "fraudmetrix.cn": [20151], "tczn.ro": [2024], "housing.voa.gov.uk": [22483], "kraje.idnes.cz": [20483], "tajik.dushanbe.usembassy.gov": [22406], "munizipal.zaks.ru": [22705], "s.y-force.info": [2024], "vet.io": [2024], "insdr.co": [2024], "abciview.tv": [2024], "panoptykon.org": [12395], "simpla.link": [2024], "www.brightfort.com": [2338], "go.flachdcd.com": [2024], "rktr.co": [2024], "www.rts.ch": [21957], "www.metrogroup.de": [10350], "narodnipanel.cz": [21085], "*.thcdn.com": [16298], "cdn.udn.com": [17020], "dig.domains": [4453], "collect-us-west-1.tealiumiq.com": [16060], "pixels.livingsocial.com": [9530], "islenzka.net": [8383], "oybo.us": [2024], "ynzc.am": [2024], "static.ustream.tv": [17536], "myshannonconnection.org": [14720], "imptdcd.me": [2024], "dogstud.io": [2024], "duidlk.nl": [2024], "s3.devtools.us": [2024], "spin.de": [15346], "sfbr.tk": [2024], "www.vevent.com": [22451], "o.nifty.fashion": [2024], "www.nhscareers.nhs.uk": [10953], "forum.wesnoth.org": [18298], "secure.meetupstatic.com": [10231], "cdntest-a.ndla.no": [11158], "www.adultwork.com": [698], "100me.info": [2024], "www.bluewin.ch": [2173], "spreadshirt.nl": [15371], "www.mountainreservations.com": [10660], "datawrapper.dwcdn.net": [4085], "vxgrp.co": [2024], "wireedit.com": [18452], "shbelle.jianguoyun.com": [8580], "communitiestest.acs.org": [974], "assets.democrats.org": [4338], "myfonts.com": [10804], "www.privatelee.com": [13152], "secure.gettyimages.pt": [6604], "perm.te-st.ru": [22103], "bloadr.com": [2100], "cumbriamss.yourpensionservice.org.uk": [22693], "piratebay.unlockproject.host": [22259], "bigez.it": [2024], "newslook.com": [11370], "*.simosnap.com": [14882], "www.zarb.org": [18894], "www.miniclip.com": [10460], "css.tudouui.com": [16889], "17s0mw0mv5u6cj9tkz3bujmzdmt8qk0ryz9s92cl.ipleak.net": [20571], "wsb.li": [2024], "shworldwide.cvent.com": [3941], "weather.yahoo.co.jp": [18730], "en-bg.dict.cc": [4442], "*.heroku.com": [7331], "www.nso.ru": [21192], "unterm.un.org": [17057], "eafnd.it": [2024], "txhsfb.link": [2024], "nrdlv.co": [2024], "webchat.pirateirc.net": [12743], "2mf.in": [2024], "www.airbnb.at": [793], "www.civicalg.com.au": [19599], "souzmultfilm.friday.ru": [20175], "sales.epochstats.com": [5313], "www.okoun.cz": [11813], "colleeneakns.me": [2024], "gdata.fr": [6272], "www.notebooknagyker.hu": [9167], "www.business.illinois.edu": [17346], "2aero.com": [2024], "kwp.al": [2024], "st.kinopoisk.ru": [20723], "mnyp.lc": [2024], "www.avonmaquiagem.com.br": [1480], "openinternet.state.gov": [17146], "t-media.educ.cam.ac.uk": [17332], "rph.im": [2024], "go.airbitz.co": [19121], "www.affiliatefuture.com": [19104], "childrens.eastsussexlearning.org.uk": [19940], "bit.hcc.me": [2024], "mr-t.im": [2024], "brnk.li": [2024], "etrieve.htzpartners.com": [7371], "westfield.illuminateed.com": [20494], "theblueskylife.com": [16327], "64.rkn.gov.ru": [13971], "smuxi.de": [15080], "store.discovery.com": [4543], "peopleclick.com": [12583], "on.vitn.de": [2024], "krl.yt": [2024], "www.myvisaaccount.com": [17643], "f-droid.org": [5532], "ecx.images-amazon.com": [962], "staging.audioboom.com": [19272], "fotki.allnokia.ru": [19153], "cndls.georgetown.edu": [6531], "my.justcloud.com": [20669], "www.ideastations.org": [7929], "a3.twimg.com": [16949], "ubersen.se": [2024], "dpfoc.com": [4728], "forum-lw-3.xda-cdn.com": [22647], "td.wku.edu": [22602], "diegesellschafter.metaebene.me": [10322], "www.eurovision.de": [5421], "sync.popin.cc": [12954], "open.nasa.gov": [10909], "wode.nz": [2024], "saintgimp.org": [21717], "www.nutrition.gov": [11622], "origin.www.ieee.org": [7719], "mx.usembassy.gov": [22406], "filmthreat.com": [5790], "115.de": [2443], "admin.housetime.fm": [20413], "koha.york.edu": [18787], "rev30.com": [2024], "*.storenvy.com": [15563], "ology.com": [11821], "datatables.net": [4180], "serverdensity.com": [14675], "mail.darebee.com": [19757], "search.un.org": [17057], "strawpoll.me": [15583], "www.energinet.dk": [5242], "miapple.me": [10362], "pimg.mycdn.me": [10866], "prenot.es": [2024], "registrace.skylink.cz": [15002], "build.origami.ft.com": [5810], "premium.ladepeche.fr": [9128], "hoorn.nl": [11172], "highbeam.com": [2946], "kipz.io": [2024], "wow.curseforge.com": [3927], "sparring.li": [2024], "global2000.at": [6702], "special-trade.de": [15309], "cembr.it": [2024], "status.fsf.org": [5590], "www.dataexchangewales.org.uk": [19764], "s.yearg.in": [2024], "www.guardiansubscriptions.co.uk": [6986], "theblog.okcupid.com": [11809], "frosty.me": [2024], "tile1.bbcimg.co.uk": [19333], "ubt1.fanli.com": [5645], "lowpowerlab.com": [9644], "getify.com": [6597], "downloads2.mamp.info": [20916], "myfren.ch": [2024], "hdsa.org": [7037], "tshwn.me": [2024], "ecc.earthdata.nasa.gov": [10909], "www.alice-dsl.de": [858], "www.frnci.com": [20177], "api.nanigans.com": [11067], "ps3crunch.net": [12327], "city.yandex.ua": [18747], "chdrgtr.com": [2024], "mooshi.com.au": [10621], "www.slyar.com": [15042], "www.nitrocloud.com": [11468], "lesincroyablesrencontres.leboncoin.fr": [20796], "www.zoneedit.com": [18994], "city.ac.uk": [3189], "hckrn.st": [2024], "mail.aerohosting.cz": [737], "*.digia.com": [4463], "www.nebezi.cz": [11165], "www.nytm.org": [11025], "blog.martinus.sk": [10044], "myworkplace.ncl.ac.uk": [10926], "login.2345.cn": [97], "flk.io": [2024], "hartwork.org": [7209], "courtsofnz.govt.nz": [3719], "m.hawaii-h.com": [2024], "pititch.at": [2024], "babyblossom.us": [2024], "redir.adap.tv": [608], "www.whatismyip.com": [18326], "fen.to": [2024], "ecolotheque.montpellier3m.fr": [10609], "wikide.openmpt.org": [11987], "cdn.vgc.no": [17569], "*.wrzuta.pl": [18567], "rroo.co": [2024], "segurosocial.gov": [21772], "byb.li": [2024], "tierra.net": [16510], "tacticaltech.org": [15966], "youraccount.glasgow.gov.uk": [6681], "wstar.co": [2024], "pppl.at": [2024], "ind.ie": [8052], "pirateparty.org.uk": [12747], "shop.empireblue.com": [19988], "vik.bme.hu": [1556], "partner91.lovebizhi.com": [20878], "fact.group": [20066], "cgne.ws": [2024], "doc.ubuntu-fr.org": [17178], "meet.utm.edu": [17426], "kate.nz": [2024], "*.egg.com": [5101], "blog.flickr.com": [5898], "fs02.androidpit.info": [1052], "wong.lol": [2024], "www.jodel-app.com": [8620], "s.azur.io": [2024], "www.numsys.eu": [11619], "control.snel.com": [15098], "www.doileak.com": [4628], "itunesu.assets.itunes.com": [20468], "www.ohloh.com": [11803], "www.tomtomrunningrace.com": [16615], "waltertgd.us": [2024], "www.itunes.com": [20468], "suff.co": [2024], "st8.mn": [2024], "fingate.stanford.edu": [15448], "register.ft.com": [5810], "marxists.org": [10051], "lovelens.ch": [9638], "www.blogtopsites.com": [2120], "jucy.onl": [2024], "truevault.com": [16843], "polovnictvo.pluska.sk": [12870], "advertising.amazon.es": [19175], "myaccess.georgetown.edu": [6531], "bitsquare.io": [2042], "zulius.com": [19022], "pac.osu.edu": [11797], "lunarpages.com": [624], "hilfe.gmx.net": [6330], "bewerben.htw-berlin.de": [7103], "from.cr": [2024], "wind.lp0.eu": [9648], "calpolyarts.org": [2744], "www.transcend.org": [16737], "mail.gnu.org": [6337], "engine.vliegtickets.nl": [17890], "files.foreignaffairs.com": [6003], "mobile.tiscali.it": [16572], "geekisp.com": [6474], "nabchelny.europaplus.ru": [20034], "dl.wandoujia.com": [18066], "*.kneon.com": [8954], "clctv.co": [2024], "capec.mitre.org": [10497], "consult.wakefield.gov.uk": [22518], "foswiki.stanford.edu": [15447], "www.business.hsbc.co.uk": [20422], "l.lukeabell.com": [2024], "www.ina.fr": [7769], "luvit.io": [9684], "img.propellerads.com": [13200], "short.motta.jp": [2024], "infm.us": [2024], "mail.schibsted.no": [14414], "*.kriso.lv": [9025], "rock.maryno.net": [20928], "gmc.ee": [2024], "a.t.webtracker.jp": [18258], "today.play-asia.com": [12828], "m.ahat.cat": [2024], "cafepress.com": [2730], "www.datapath.io": [4200], "images.nordichardware.com": [11510], "santuario.apache.org": [1118], "js2.pp.sohu.com.cn": [15170], "hackerrank.com": [7130], "form.unicef.org.uk": [17068], "healths.biz": [7263], "cs.thomsonreuters.com": [16456], "www.fnh.utoronto.ca": [17427], "touchgen.net": [16684], "jyll.tv": [2024], "mot.ly": [2024], "ldtp.freedesktop.org": [6102], "www.stacksocial.com": [15428], "gearsourcecdn.com": [6464], "*.nationwide.co.uk": [11129], "thepiratebay.cd": [22174], "kgoods.co": [2024], "engineering.com": [5256], "internet-radio.com": [8271], "www1.elfa.se": [5153], "5-t.imgbox.com": [7997], "engineering.stanford.edu": [15447], "githubstats.com": [6662], "oisshome.wustl.edu": [18089], "magserv.com": [9880], "rt01.epimg.net": [5126], "nily.in": [2024], "sts.psc.gov": [21528], "avsb.migros.ch": [10417], "my.pochtabank.ru": [12876], "freedomhouse.org": [6152], "start.sknt.ru": [21851], "wafami.ly": [2024], "governmentjobs.com": [20296], "ficora.fi": [5757], "docs.playstation.com": [12832], "qtc.tf": [2024], "shmnt.co": [2024], "ldig.it": [2024], "wwte9.com": [18031], "pti.iu.edu": [8069], "azz.me": [2024], "pkgs.rpmfusion.org": [14056], "git.collabora.com": [3418], "*.nationalrail.co.uk": [11094], "see-twitter.com": [2024], "library.jhu.edu": [16370], "www.diasp.eu": [4434], "www.pappp.net": [12239], "community-cache-uat.freescale.com": [6161], "*.rssing.com": [13524], "freebsd.kde.org": [8735], "ro2.us": [2024], "rbarn.es": [2024], "cflow.co": [2024], "estream.ch": [2024], "www.fanboy.co.nz": [5640], "l.mfazio.me": [2024], "shme.co": [2024], "sourcefire.com": [15249], "idealco.link": [2024], "nobleurl.com": [2024], "r24822925.sync.app.asana.com": [1265], "go.adams.life": [2024], "4lf.in": [2024], "fearfe.st": [2024], "lvmwd.info": [2024], "*.derby.ac.uk": [17395], "wde.us": [2024], "sipit.co": [2024], "*.omnovia.com": [11825], "to.fortado.nl": [2024], "vzaar.co": [2024], "meynconnect.com": [10355], "www.rochesterhomepage.*": [13987], "quiz.ideco.ru": [20480], "cblelabs.co": [2024], "rktit.uk": [2024], "domonet.ua": [19877], "privatecore.com": [13149], "blog.veber.co.uk": [17675], "oktatas.hu": [11815], "s.gtaind.com": [2024], "s.torrentday.com": [16650], "*.inwx.de": [8230], "adic.to": [2024], "link.l3vi.de": [2024], "projects.tigase.org": [16514], "vhdo.nl": [2024], "www.deekayen.net": [4281], "gostats.com": [6767], "e.xpo.today": [2024], "activestate.com": [552], "a.mrid.net": [2024], "monetnik.cdnvideo.ru": [19536], "secure.stage-gettyimages.de": [6604], "techblog.netflix.com": [11268], "blbs.be": [2024], "zend.com": [18920], "*.hatena.ne.jp": [7229], "css-tricks.com": [2692], "resource.shenka.95516.com": [248], "tndr.lv": [2024], "tndr.li": [2024], "web.telegram.org": [16146], "tinde.rs": [2024], "t.navigaweb.net": [2024], "community.spot.im": [15364], "hnst.us": [2024], "shp.news": [2024], "*.downloadbox.me": [4723], "info.ordiges.eu": [2024], "pw.mail.ru": [9891], "track.ft.com": [5810], "agor.at": [2024], "accounts.alipay.com": [864], "www.oucs.ox.ac.uk": [17359], "www.cesky-hosting.cz": [19553], "trollingeffects.org": [16832], "ctwatch.net": [3902], "greensky.com": [6903], "recordedbooks.com": [21609], "nrd.fm": [2024], "t1cdn.mediamath.com": [10169], "www.metoxia.uio.no": [17414], "www.idevelop.ro": [7945], "rolexpepsi.com": [2024], "roseres.co": [2024], "www.scrutinizer-ci.com": [21759], "my.juno.com": [8699], "wimdu.co.uk": [18413], "tomgate.net": [22231], "playstationnetwork.com": [12833], "ado.hr": [2024], "nber.org": [11116], "kirishi.europaplus.ru": [20034], "www.deco.proteste.pt": [4275], "e.cmbchina.com": [2639], "login.capitalone.com": [2831], "www.java.com": [8539], "portal.strode-college.ac.uk": [15597], "latania.co": [2024], "lists.wald.intevation.org": [18049], "www.extractwidget.com": [5515], "vz.to": [2024], "dr.pundir.com": [2024], "*.adkontekst.pl": [655], "www.kali.org": [8786], "sapphireforum.com": [14360], "hotmail.live.com": [9495], "wryl.ee": [2024], "m4y.us": [2024], "cms.hdfcbank.com": [7249], "selnd.com": [2024], "tvsr.in": [2024], "transifex.com": [16743], "www.25.cbsm.at": [8782], "www.darkcoinfoundation.org": [4144], "igsha.co": [2024], "www.ghostery.com": [6613], "engineering.sharethrough.com": [14742], "drif.tt": [2024], "s3.roosterteeth.com": [14028], "care2.com": [2850], "s72.cnzz.com": [3328], "mobot.net": [7556], "courscrypto.org": [3715], "sakhalin.info": [21719], "teamall.in": [2024], "met.am": [2024], "mb.yidianzixun.com": [22679], "buy.pcpro.co.uk": [2024], "witopia.net": [18371], "www.ncats.nih.gov": [11090], "nbnco.com.au": [10918], "zh-cn.3.boardgamearena.com": [2182], "homequote.insurance.hsbc.co.uk": [20422], "www.medleyads.com": [10213], "lib-thesaurus.un.org": [17057], "*.invitemedia.com": [8320], "gss.civilservice.gov.uk": [19601], "v.somethingawful.com": [15200], "punki.es": [2024], "fedbizopps.gov": [5704], "www.mewsite.com": [10353], "thumbapi.115.com": [28], "es.pn": [2024], "magaza.bilio.com": [1905], "www.skygo.sky.de": [14990], "engage.barnet.gov.uk": [19317], "casa.com": [19520], "stats.thermitic.net": [16420], "sub.fm": [22020], "bitcoiness.com": [2024], "sueb.ly": [2024], "icony.com": [7923], "abone.cumhuriyet.com.tr": [19743], "kb.umd.edu": [17351], "anketa.rsb.ru": [14058], "mybl.ee": [2024], "www.freifunk-gera-greiz.de": [6171], "lifepnt.com": [2024], "survey3.hkupop.hku.hk": [20387], "www.mysliderule.com": [10861], "cinemanow.com": [3150], "movim.eu": [10684], "aodocs.statushub.io": [15504], "secure.thebodyshop.co.uk": [16328], "veyepar.debian.org": [4263], "www.lunarpages.com.mx": [624], "transportation.amazon.de": [19174], "fgrl.me": [2024], "wiki.oasis-open.org": [11644], "voicedailydeals.com": [17585], "merrejep.gazetaexpress.com": [6461], "www.comicfury.com": [3469], "popularmechanics.com": [12967], "s.manhim.net": [2024], "h5.m.taobao.com": [16015], "s2member.com": [14121], "culinary.imodules.com": [7766], "www.faxbigbrother.com": [5684], "www.marches.montpellier3m.fr": [10609], "go.td.com": [2024], "newwb.org": [2024], "www.aswirlgirl.com": [1330], "time.thecthulhu.com": [16403], "dictionary.writtenchinese.com": [22623], "www.mypack.ncsu.edu": [11531], "eg-online.ru": [19968], "www.ceskaposta.cz": [2981], "vri.gd": [2024], "biologicalproceduresonline.biomedcentral.com": [1931], "forum.duckduckhack.com": [19903], "msy.ms": [2024], "*.fluctishosting.com": [5929], "www.uchicago.edu": [17334], "pic3.zhimg.com": [18956], "idpl.oxfordjournals.org": [12222], "bin.mailgun.net": [9899], "ssrc.food.gov.uk": [20132], "cstdn.tl": [2024], "isdspeed.qidian.com": [13349], "zomato.com": [18990], "equella.nottingham.ac.uk": [11567], "www.ejtaal.net": [19973], "utb.news": [2024], "maykop.psbank.ru": [13231], "onclickads.net": [11862], "validlab.de": [7595], "mobile.te-st.ru": [22103], "shop.bps.org.uk": [1565], "intelnews.org": [20549], "sem.georgetown.edu": [6531], "s.jbit.biz": [2024], "*.mybcvs.ch": [1681], "smng.it": [2024], "mld.sg": [2024], "few.vu.nl": [17608], "mb.utb.ru": [17538], "bookshare.org": [2224], "londondrugs.com": [9591], "m.ask.fm": [1284], "s41.cnzz.com": [3328], "on.capvie.info": [2024], "yis.hu": [2024], "www.gefpmis.org": [8258], "www.aldi.lu": [357], "yt-dl.org": [18834], "caveman.team": [2024], "developer.cisco.com": [3165], "saggia.me": [2024], "*.blog.gustavus.edu": [7009], "l.reidgober.com": [2024], "email.dynect.net": [4829], "hsbc.com.hk": [20427], "developer.axonix.com": [1503], "www.unmitigatedrisk.com": [17446], "acuityscheduling.com": [558], "in-d.fm": [2024], "webapp.itsc.cuhk.edu.hk": [2704], "vellemanusa.com": [17685], "change.org": [2999], "verify-inc.co": [2024], "insr.us": [2024], "webjoe.co": [2024], "*.alice.de": [858], "tracking.cp.ligatus.com": [9356], "bradford.moderngov.co.uk": [21005], "smaa.to": [2024], "cybermap.kaspersky.com": [8820], "hab.bo": [2024], "www.thalia.ch": [16244], "utilityservices.no.citrix.com": [3180], "www.patentbaristas.com": [12482], "s3.srf.ch": [21957], "stylehatch.co": [15616], "golosislama.com": [6810], "storage.pardot.com": [12428], "renewableenergy.inl.gov": [20537], "verify.nature.com": [11140], "www.fixmystreet.com": [5874], "www.mail-tester.com": [9887], "on.brb.rs": [2024], "office365.com": [11782], "prcp.io": [2024], "gora.golf.rakuten.co.jp": [13593], "link.spnr.de": [2024], "tngo.tv": [2024], "marketplace.trafficjunky.net": [16721], "www.comscoredatamine.com": [3455], "www.aspone.cz": [19259], "fs8.formsite.com": [20139], "www.minfil.org": [10439], "seansays.click": [2024], "studyjamscn.com": [22018], "dot.kde.org": [8735], "ourfacebook.com": [2024], "educiamo.ci": [2024], "aanbieding.marktplaats.nl": [10034], "*.whoson.com": [18364], "www.bleachbit.org": [19407], "www.extratorrent.one": [5516], "console.qtcloudservices.com": [13366], "wscont2.apps.microsoft.com": [10396], "netcologne.de": [11226], "cdn.rivals.com": [21655], "www.websitealive10.com": [18242], "cloudcracker.com": [3283], "jmp.oxfordjournals.org": [12222], "i-ssl.ligatus.com": [9356], "thrl.cl": [2024], "pubsub-edge.twitch.tv": [16961], "git.domonet.ua": [19877], "i.technoportal.ua": [16105], "www.mychoice.staff.hsbc.co.uk": [20422], "in.fluence.us": [2024], "poweredbyprogress.progress.com": [13178], "www.xenvps.com": [18648], "smtp.mind.org.uk": [10443], "pier.onl": [2024], "aktualne-temy.aktuality.sk": [1507], "evodevojournal.biomedcentral.com": [1931], "trmp.co": [2024], "press.spotify.com": [15367], "akademy2008.kde.org": [8735], "www.awempire.com": [700], "konsumentverket.se": [20747], "www.alamy.com": [821], "link.jasma.lv": [2024], "*.storage.googleapis.com": [6823], "connorlyn.ch": [2024], "www.takecontrolbooks.com": [15979], "civcr.net": [2024], "www.marx.org": [10051], "openresty.org": [12076], "mail.haskell.org": [7220], "fig.co": [5768], "www.infinum.co": [20526], "badge.waffle.io": [18038], "plantcommunity.de": [12812], "uk.icecat.biz": [7912], "payment.neustar.com": [11322], "philatelie.deutschepost.de": [19816], "deaddrops.com": [4238], "bcd.to": [2024], "listes.renater.fr": [13826], "textures.minecraft.net": [10452], "ilcnte.ilc.cuhk.edu.hk": [2704], "podcasts.srf.ch": [21957], "c-wrk.mx": [2024], "*.szkb.ch": [20683], "go.imgk.us": [2024], "education.illinois.edu": [17346], "www.sevenoaks.gov.uk": [14696], "zerigo.com": [18934], "dmp.scot.nhs.uk": [10953], "qianyang.jd.com": [8434], "mrjsn.us": [2024], "hi10.tk": [2024], "*.jeena.net": [8557], "static.seagm.com": [14155], "ccem.osu.edu": [11797], "www.userscape.com": [17516], "foto.happyfoto.at": [7193], "status.sumologic.com": [15658], "*.openas.org": [12061], "go-sm.co": [2024], "doom1.beget.com": [19347], "ssl-sgc.static.rtbf.be": [14063], "www.hurleymc.com": [7632], "hulunbeierguan.jd.com": [8434], "kb.status.io": [21983], "vdg.tl": [2024], "fuelcycleevaluation.inl.gov": [20537], "ferg.link": [2024], "451research.com": [184], "containerids-id4.wdr.de": [18113], "www.telegram.org": [16146], "4plebs.org": [200], "brny.org": [2024], "img5.eadaily.com": [19929], "dilan.public.sknt.ru": [21851], "www.fbw.vu.nl": [17608], "www.gis.g4s.com": [20195], "www.cryptopro.ru": [3855], "webmail.sf-mail.de": [14166], "www.magix.com": [9718], "systembolaget.se": [15828], "d2i.indiana.edu": [8070], "cpxx.de": [2024], "url.mark.do": [2024], "slipfire.com": [15031], "netpay.cmbchina.com": [2639], "slackhq.com": [15008], "finra.org": [5808], "qingfood.1688.com": [51], "barkbox.com": [1697], "brdy.co": [2024], "r24618025.sync.app.asana.com": [1265], "www.blockexplorer.nu": [2102], "cdn.sspai.com": [21962], "direktmarketingcenter.de": [19816], "educto.co": [2024], "prjctu.tv": [2024], "atheists.fm": [2024], "fi.cmbchina.com": [2639], "www.fodevarewatch.dk": [5956], "groupthink.jezebel.com": [8578], "gamestarmechanic.com": [6421], "blockspring.com": [2113], "autorank.jd.com": [8436], "cib.li": [2024], "www.cdnvideo.ru": [19536], "images.secureserver.net": [14574], "l.ccarfi.com": [2024], "*.bu.edu": [2256], "bugs.downthemall.net": [4718], "wcfacts.info": [2024], "img2.leboncoin.fr": [20796], "www.thecompassionclub.org": [16337], "ifrype.com": [4738], "dpmc.gov.au": [4070], "eyeks.com": [2024], "cloudinary.com": [3306], "tb.popcash.net": [12952], "*.targetimg3.com": [16024], "orl.mvd.ru": [21055], "reportingproject.net": [13845], "www.serverpros.com": [13064], "go.miftatnn.com": [2024], "drtyf.ac": [2024], "jp.vuejs.org": [17963], "pinterest.com": [12731], "cheshireeast.objective.co.uk": [21225], "bbt.gs": [2024], "successfactors.com": [15636], "on.sny.tv": [2024], "mead.illuminateed.com": [20494], "www.formkeep.com": [6019], "secure.zooku.ro": [18999], "m.bart.gov": [1708], "wcr.qld.gov.au": [2024], "tumen.rt.ru": [13529], "static3.meetupstatic.com": [10231], "scvevents.info": [2024], "app.weswap.com": [18123], "whatdotheyknow.com": [18325], "www.youtube.com.mx": [18800], "uefidk.com": [17196], "*.precharge.net": [13063], "ksull.me": [2024], "www.wh0rd.org": [22573], "prod.lists.apple.com": [1151], "registry.appuio.ch": [1168], "tuva.rt.ru": [13529], "hsph.harvard.edu": [7211], "brenet.de": [2315], "nlkkdr.nl": [2024], "rlog.popin.cc": [12954], "on.cagop.org": [2024], "www.ntlite.com": [21196], "2820.link": [2024], "salzburg.neos.eu": [10941], "developers.archive.org": [8269], "l.tat.sh": [2024], "hhgre.gg": [2024], "academy.amnesty.at": [1002], "www.tpptraining.com": [15918], "p8.raasnet.com": [13716], "*.secure.nonprofitsoapbox.com": [11503], "pl.support.tomtom.com": [16615], "ateliers.cfjlab.fr": [2604], "mwne.ws": [2024], "ces.williams.edu": [18408], "thef.am": [2024], "www.wildcardcorp.com": [18396], "s3a.pstatp.com": [16680], "www.olvi.fi": [11823], "whatsappbrand.com": [22576], "twin.sci-hub.la": [14436], "waste-concepts.adelphi.de": [635], "mysite.somerset.gov.uk": [15197], "gadgets.stanford.edu": [15448], "m.rasp.yandex.com.tr": [18740], "dreamspark.com": [4744], "olark.com": [11817], "wired.co.uk": [22599], "bayproxy.site": [21524], "icore.akixi.com": [19129], "dandwiki.com": [4131], "s16.cnzz.com": [3328], "pressguidance2.state.gov": [17146], "mobile.leboncoin.fr": [20796], "hopstudios.com": [7500], "kinshasa.usembassy.gov": [22406], "www.icpen.org": [7694], "cfnproposals.bnl.gov": [19418], "*.dkb.de": [4031], "survey.alibaba.com": [857], "chi.ps": [2024], "p100-sandbox.itunes.apple.com": [1151], "fm.je": [2024], "i.jd.com": [8436], "mnot.net": [10518], "sapo.io": [14130], "my.f-secure.com": [5533], "www.offensivebits.com": [11774], "i.sakh.com": [21719], "*.unvanquished.net": [17458], "tomsk.psbank.ru": [13231], "www.lens.io": [9268], "upvoted.com": [17488], "wiki.parabola.nu": [12412], "deviantart.com": [4410], "visit.mashery.com": [10055], "*.idg.de": [7946], "pnt.so": [2024], "jpgmag.com": [8460], "mycomputer.com": [10799], "img1.bdstatic.com": [19339], "6secgear.com": [2024], "awts.in": [2024], "lavabit.com": [9185], "netchi.co": [2024], "iglnk.co": [2024], "toigo.red": [2024], "www.bitcoinchain.com": [19387], "www.static.rtbf.be": [14063], "a.fightforthefuture.org": [5769], "innovation.bbg.gov": [19334], "intsig.net": [20557], "ed.tips": [2024], "enhyour.net": [2024], "delivery.h.switchadhub.com": [15764], "23ccc.in": [2024], "www.gipsprojekt.de": [6314], "www.bedfordcornexchange.co.uk": [19342], "static.umeng.com": [22363], "reddit.com": [13748], "sylvancompany.com": [15779], "au.play-asia.com": [12828], "www.confirmsubscription.com": [3574], "bimedu.pl": [2024], "dgt-mr.in": [2024], "ecitizen.maidstone.gov.uk": [9885], "ccnfsdu-redaktion.ble.de": [19406], "artrabb.it": [2024], "url.ghai.me": [2024], "ouaza.com": [12170], "bramj.islamictech.com": [8380], "www.postnord.se": [12998], "www.gmo.com": [6321], "kri.gr": [2024], "myreslife.wustl.edu": [18089], "superherotrainingnetwork.com": [15695], "imgjam1.jamendo.com": [8512], "battle.net": [1719], "is-al.us": [2024], "civilservice.gov.uk": [19601], "fdo.osgeo.org": [11707], "thewatershed.com": [16391], "money.sohu.com": [15171], "status.contentful.com": [3616], "37.mvd.ru": [21055], "retrace.fedoraproject.org": [5716], "svetly.klops.ru": [20735], "troni.me": [2024], "ecology.unian.net": [22369], "jacbhac.co": [2024], "abitus.jp": [2024], "api-maps.wolframalpha.com": [18487], "pica7.ub.uni-mainz.de": [17410], "*.e.final-score.com": [5803], "sandbox.2checkout.com": [113], "www.orkts.cuhk.edu.hk": [2704], "pgi.iciciprulife.com": [7917], "www.burningshed.com": [2458], "app-de-lb1.resrc.it": [13659], "www.1prime.ru": [83], "i3.services.social.microsoft.com": [10396], "*.lfchosting.com": [9087], "cxd.li": [2024], "rutf.co": [2024], "sosm.ag": [2024], "chat.icq.com": [7695], "kanui.me": [2024], "www.sony.co.uk": [21901], "www.dd-wrt.com": [4009], "www.asexuality.org": [19251], "cars.webjet.com.au": [18219], "chita.psbank.ru": [13231], "fz4.io": [2024], "managementconsole.thomson.com": [16457], "m.rabota.yandex.kz": [18743], "kaart.ubuntu-nl.org": [17181], "www4d.wolframalpha.com": [18487], "www.animallaw.info": [1067], "www.thersa.org": [16378], "www.aclumontana.org": [304], "js.arcgis.com": [1186], "modern.ie": [10556], "www.maps.me": [9985], "tinybytes.me": [16555], "go.nutri.tech": [2024], "tersesystems.com": [16203], "atdig.net": [2024], "comscoredatamine.com": [3455], "blackpit.douban.com": [4701], "traxarmstrong.com": [16777], "go4url.info": [2024], "stealthnet.de": [15514], "thefiringline.com": [22151], "f24.my": [2024], "trextape.co": [2024], "jhaas.us": [2024], "khms2.google.com": [6825], "4vm.co": [2024], "vectorborne.fralin.vt.edu": [17825], "etrtbs1.smartstream.tv": [15064], "carolstre.am": [2024], "*.desk.com": [4379], "bankuralsib.ru": [1677], "usw-ads.adsrvr.org": [688], "linshu.jd.com": [8434], "sofort.com": [15155], "tech.sme.sk": [14198], "newsagent.scoop.co.nz": [14450], "fire.lp0.eu": [9648], "employees.www.uprr.com": [22392], "harnan.me": [2024], "www.agra-net.net": [776], "quantummansite.com": [13392], "orbis.eastsussexlearning.org.uk": [19940], "qpt.al": [2024], "geneva.usmission.gov": [17142], "planet.squat.net": [21955], "*.ecom.attccc.com": [424], "www.simplepickup.com": [14887], "db1.play-asia.com": [12828], "shop.fruitninja.com": [6214], "owa.calderdale.gov.uk": [2752], "wiki.debian-fr.org": [4260], "tcc.xyz": [2024], "calrep.ly": [2024], "grugq.tumblr.com": [16897], "moba.ge": [2024], "api.tumba.ch": [22306], "moja.co": [2024], "www.toggl.com": [16606], "tchibo-ideas.de": [16050], "txn01.hkjc.com": [20384], "ws.srf.ch": [21957], "pirate-party.ch": [12314], "i18n.tiki.org": [16520], "de.cryptonator.com": [3873], "courses.aber.ac.uk": [473], "chromium.woolyss.com": [18512], "sds.kent.ac.uk": [17402], "moto-g.com": [10655], "imagesonline.bl.uk": [2358], "thalys.com": [16245], "housingamsterdam.squat.net": [21955], "alln.cc": [2024], "aellis.us": [2024], "redirect.viglink.com": [17797], "tractica.cc": [2024], "kic.f-secure.com": [5533], "sfconservancy.org": [15165], "hengxinli.com": [20368], "www.bsi-fuer-buerger.de": [5701], "3m.com": [164], "l.wat.wtf": [2024], "faqs.channel5.com": [3004], "http--www.flightradar24.com": [20119], "jpkteam.com": [2024], "gac.edu": [6279], "coglik.es": [2024], "underskog.no": [17243], "brd.gs": [2024], "uptrack.ksplice.com": [9039], "autodiscover.comp.leeds.ac.uk": [17403], "img.rg.ru": [21646], "gerrit.lighttpd.net": [9362], "www.alaraby.co.uk": [19132], "*.webmail.brenet.de": [2315], "goto.orcl.pro": [2024], "terskyrayon.gov-murman.ru": [20293], "yellow.local.ch": [9548], "makecalls.democrats.org": [4338], "forum.flightradar24.com": [20119], "secure.skyscanner.net": [15006], "brgsgrprty.com": [2024], "validator.w3.org": [17980], "iberia.com": [7896], "www.secureupload.eu": [14560], "djbooth.it": [2024], "to.liftrep.com": [2024], "status.playstation.com": [12832], "hulu.tv": [2024], "history.google.com": [6818], "www.zsim.de": [19014], "www.carlosprioglio.com": [2864], "forum.stanford.edu": [15448], "www.verasafe.com": [17702], "bioinformatics.vt.edu": [17825], "fjky.co": [2024], "needmorehits.com": [11173], "astro.fnal.gov": [5741], "itradecimb.com.sg": [2619], "aisinfo.wustl.edu": [18089], "459bd1f7-4db5-1717-64a9-03f6d17c377f-rum.cdnvideo.ru": [19536], "trbc.it": [2024], "btd.sg": [2024], "m.groupon.com": [6953], "www.w.thm.de": [15876], "www.invoicefinance.hsbc.co.uk": [20422], "www.ferienhaus-seepark-eiken.de": [5740], "kbb.sapo.pt": [14131], "ebilling.companieshouse.gov.uk": [3509], "guldencoin.com": [6998], "*.sinefa.com": [14912], "www.flownative.com": [5926], "mixw.co": [2024], "discourse.openmandriva.org": [11992], "bananea.me": [2024], "tspne.ws": [2024], "en-la.dict.cc": [4442], "3d.iqdb.org": [20573], "bits.awaits.me": [2024], "bsudol.com": [2024], "in-the-sky.org": [8031], "parking.chichester.gov.uk": [19579], "www.simplewebrtc.com": [21832], "bitnz.com": [1966], "www.thijsalkema.de": [16426], "fold.cm": [5961], "blog.zerties.org": [18946], "*.uni-kl.de": [17257], "www.dinahosting.pt": [4507], "go.enz0.net": [2024], "www.lea.manchester.gov.uk": [9954], "m.xkcd.org": [22652], "sweb.ru": [15277], "i.yimg.jp": [18778], "enterprise.here.com": [7325], "gboard.me": [2024], "www.enphase.com": [5270], "citz.in": [2024], "b3.manchester.gov.uk": [9954], "etkinlik.cumhuriyet.com.tr": [19743], "url.tmsrv.org": [2024], "images.mobilism.me": [21004], "m.sportmaster.ru": [21944], "mail.live.com": [9495], "static.gay-torrents.net": [6458], "*.expedia.com": [5492], "tv.sport1.de": [15359], "*.icann.org": [7686], "icc-cpi.int": [7688], "blog.uber.com": [17169], "readon.link": [2024], "104.com.tw": [18], "ellis.li": [2024], "ly.lefant.net": [2024], "app.upc.cz": [17081], "*.spreadshirt.nl": [15371], "cloud4.co": [2024], "jti.me": [2024], "ssl11.ovh.net": [12205], "archive-11.kali.org": [8786], "adobe.com": [669], "osgeo4w.osgeo.org": [11707], "korean.alibaba.com": [857], "paw.by": [2024], "fifengine.de": [5563], "ferpaen.es": [2024], "adv-jour.nl": [2024], "account2.lego.com": [9082], "surgut.tpprf.ru": [22260], "connect.stripe.com": [15594], "events.lugons.org": [9121], "git.playgrub.com": [12843], "fastwebhost.com": [5668], "passwordreset.leeds.ac.uk": [17403], "tako8.jp": [2024], "*.mxcdn.net": [10230], "career.berkeley.edu": [17329], "support.worldwildlife.org": [18544], "www.springfiles.com": [15376], "ads.flatdy.com": [5923], "auth.enum.ru": [5292], "bbry.lv": [2024], "python-nbxmpp.gajim.org": [6383], "edwardsvillelibrary.worldcat.org": [18536], "pim.kde.org": [8735], "eth-0.nl": [5365], "www.blogmint.com": [2124], "ensfr.co": [2024], "shop.seagate.com": [14499], "jpids.oxfordjournals.org": [12222], "blog.localist.com": [9553], "swb.us": [2024], "stumil.es": [2024], "ws2.sinaimg.cn": [14910], "webmail.oaklands.ac.uk": [21221], "burak.ga": [2024], "kr.popin.cc": [12954], "www.faq-o-matic.net": [5649], "firstlook.pnas.org": [12303], "*.jariangibson.com": [8533], "vpay.io": [2024], "www.forceline.net": [20134], "depolitiezoekt.nl": [11172], "secure.shreksadventure.com": [21816], "v1e.it": [2024], "kewfy.us": [2024], "alpha.fortnite.com": [6034], "web.theplatform.com": [16307], "s.optimisti.lv": [2024], "lambeth.vocoll.com": [22486], "nmds.co": [2024], "ndt.oxfordjournals.org": [12222], "media.charterbusiness.com": [3028], "www.give.stanford.edu": [15448], "online.pragmaticstudio.com": [13060], "floek.net": [5917], "ca10.us": [2024], "www.collingsfoundation.org": [3432], "www.becker.wustl.edu": [18089], "www.muenchen.tv": [10725], "lister.mysql.cesky-hosting.cz": [19553], "www.secgeek.net": [14524], "front.uned.es": [17248], "www.gitbook.com": [6655], "omaze.info": [11829], "truelife.com": [16842], "myiu.org": [10851], "ivanovskaya-obl.beeline.ru": [1778], "ngvpn30.nvidia.com": [11022], "77.mvd.ru": [21055], "etraining.wto.org": [18025], "s9.postimg.org": [13024], "theid.co": [2024], "topwar.ru": [22241], "colm.es": [2024], "u.mrvt.io": [2024], "www.lubin82.pl": [9649], "www.webcampus.wilmu.edu": [18411], "*.nationalexpress.com": [11088], "personalsavings.americanexpress.com": [979], "ps.ssl.qhimg.com": [13347], "*.ibb.ubs.com": [17001], "now.msn.com": [9810], "images.gizmag.com": [6676], "steve-o.me": [2024], "assets.sunlightfoundation.com": [15667], "app11.play-asia.com": [12828], "api.mall.pl": [9934], "suntru.st": [2024], "developers.douban.com": [4701], "mkt2.us": [2024], "wallace.wyenet.co.uk": [18576], "verisign.es": [17712], "js1.unwire.hk": [17460], "static.video.news.com.au": [11378], "ljla.uk": [2024], "www.counterwallet.io": [3707], "i.po.st": [12874], "s.synqa.jp": [2024], "bvogt.us": [2024], "7ubo.h4ck.me": [2024], "linuxliteos.com": [20850], "fmlas.eu": [2024], "smuxi.net": [15080], "static.video.sky.com": [14989], "www.joomla-security.de": [20651], "static.xsolla.com": [18685], "cem.vc": [2024], "mile.io": [2024], "ocean.sci-hub.cc": [14436], "b2j.us": [2024], "rbfy.me": [2024], "nigh.pw": [2024], "stats.slideshare.net": [15028], "img1.dditscdn.com": [4228], "wqic.nal.usda.gov": [17299], "comscore.com": [3454], "robolinux.org": [21662], "stylemoi.sslcs.cdngc.net": [19533], "images1.q8car.com": [13321], "mx.boell.org": [19422], "fourecks.de": [6059], "www.admissions.osu.edu": [11797], "classic.torrentday.com": [16650], "ndc.click": [2024], "www.fotisl.com": [6049], "pnt.hn": [2024], "ceasefiremagazine.co.uk": [2934], "on.cmt.com": [2024], "wwwvh.zdv.uni-mainz.de": [17410], "point.rakuten.co.jp": [13593], "www.tellmescotland.gov.uk": [22123], "memberplus.raiffeisen.ch": [13588], "linux.lu": [9420], "m.vodafone.de": [17901], "sites.southglos.gov.uk": [15257], "mdl5.udn.com": [17020], "www.style.com": [15615], "grnrm.org": [2024], "wiki.ut.ee": [17148], "www.centos.org": [2950], "www.ncptt.nps.gov": [11122], "meet.vivek.co": [2024], "ul.se": [22355], "apne.ws": [2024], "twib.anz.com": [374], "www.jastusa.com": [20627], "file.wx.qq.com": [13329], "vote.fsfe.org": [5591], "strgbr.gr": [2024], "9kbhkort.kk.dk": [8748], "velikiy-novgorod.beeline.ru": [1778], "yunyang.jd.com": [8434], "drew.cc": [2024], "ugw1r3.com": [2024], "a.sgdf.fr": [2024], "meetalx.co": [2024], "q.cnblogs.com": [19631], "*.wsodcdn.com": [10032], "www.21.co": [95], "www.replicaperfection.com": [13839], "mt.cpanel.net": [2667], "www.vtunnel.com": [17607], "forum.eurofurence.org": [5404], "realtimeregister.com": [13693], "fssso.capitalone.com": [2831], "zeemitv.com": [2024], "omondi.eu": [2024], "www.youtube.ro": [18800], "twoc.co": [2024], "nztunl.ca": [2024], "stdr.us": [2024], "www.glasgow.gov.uk": [6681], "www.information.dk": [8125], "i4.social.microsoft.com": [10396], "webfwd.org": [18159], "jobregister.aas.org": [280], "m3.hkgolden.com": [7058], "alerter.ndla.no": [11158], "piwik.inetvl.ru": [20525], "api.autopilothq.com": [1456], "blogblog.com": [2122], "arni.es": [2024], "talopodcast.com": [2024], "xlct.it": [2024], "vereinigte-ikk.de": [17708], "r.pinger.com": [2024], "mediaserver.digitec.ch": [4494], "recycling.org.ohio-state.edu": [11798], "misweb.cc.ntu.edu.tw": [11010], "castasi.de": [2024], "clientf.it": [2024], "null.jsbin.com": [20659], "www.dbs.com.hk": [4001], "www.canon.co.uk": [2822], "mwop.net": [10783], "go.ccmo.me": [2024], "www.fontmarketplace.com": [5968], "www.honestpolicy.com": [7492], "www.kagi.com": [8781], "i.mail.qq.com": [13329], "s8.postimg.io": [13024], "www.armservers.com": [400], "sl.4.boardgamearena.com": [2182], "sc-css-1.omniture.com": [11842], "support.gemalto.com": [6498], "go.joost.me": [2024], "i04.c.aliimg.com": [861], "bla24.eu": [2024], "www.jako-o.at": [8506], "msdf.co": [2024], "w.piratenpartei.at": [12754], "*.swu.de": [15771], "www.impsec.org": [8014], "unnikked.ml": [2024], "capture.condenastdigital.com": [3557], "chkthisout.us": [2024], "www.tls.so": [15890], "www.ecom-icom.hku.hk": [20387], "ffald.ml": [2024], "yosp.in": [2024], "heaith.org": [2024], "r24617941.sync.app.asana.com": [1265], "www.kat.how": [8828], "nfc.usda.gov": [17299], "*.pgmcdn.net": [7463], "www.ideel.com": [7933], "sheffielddemocracy.moderngov.co.uk": [21005], "pax.grsecurity.net": [6360], "www.crowdfunding.correctiv.org": [3686], "mnhom.es": [2024], "www.ok.de": [11663], "www.blog.wordpress.tv": [18519], "rispe.mx": [2024], "api.centili.com": [2958], "bg.3.boardgamearena.com": [2182], "*.worldofwarplanes.com": [18552], "linguee.it": [9390], "wwrck.in": [2024], "*.mylikes.com": [10814], "bacas.southampton.gov.uk": [15259], "g2.ykimg.com": [22681], "askmonty.org": [1286], "championat-rostov.ru": [19557], "rsdll.in": [2024], "www.stuffgate.com": [22019], "4.cn": [179], "s.wr.gs": [2024], "billboard.com": [1909], "www.caltech.edu": [2771], "gets.lockscalecompare.com": [20868], "cdn.ology.com": [11822], "isa.bundesnetzagentur.de": [2445], "1.xhcdn.com": [18605], "simplednscrypt.org": [14890], "fgb.axonify.com": [1502], "thed.cc": [2024], "mmoga.com": [9780], "wangpu.taobao.com": [16015], "www.smart-places.org": [21863], "cironline.org": [2625], "super.motor.ru": [21026], "happyp.pl": [2024], "webmail.fau.org": [5543], "*.mplxtms.com": [17629], "bmb.oxfordjournals.org": [12222], "rmre.us": [2024], "versionista.com": [22448], "t.bernex.lt": [2024], "mirror.umd.edu": [17351], "net.vutbr.cz": [17609], "nouveau.franceinter.fr": [20147], "www.nextag.fr": [11402], "s3.feedly.com": [5724], "www.directorystore.com": [4521], "stat.vermont-it.ru": [22444], "sherrin.com.au": [14762], "myoc.com.br": [2024], "www.mca-marines.org": [9737], "on.xovine.com": [2024], "mpv.io": [10709], "branchprod.harland.net": [7199], "www.ot.wustl.edu": [18089], "www.host.co.id": [7512], "noglov.es": [2024], "aggemam.dk": [769], "bdon.me": [2024], "www.friedhoefewien.at": [18376], "static.prsa.pl": [12324], "kuybyshev.europaplus.ru": [20034], "static.hwpi.harvard.edu": [7211], "www.palemoon.org": [12370], "tnation.t-nation.com": [15838], "fojems.state.gov": [17146], "ssqt.ch": [2024], "hudong.pl.youku.com": [18804], "nats.nz": [2024], "www.openstreetmap.fr": [12079], "on.create.it": [2024], "www.pardus.org.tr": [12429], "*.junostatic.com": [8701], "thesitewayne.ml": [2024], "webdisk.receivefreesms.net": [21607], "noblehour.com": [11485], "ticket.yandex.com.tr": [18740], "www.sci-hub.la": [14436], "islay.cc": [2024], "www.saveourbank.coop": [14374], "cookflix.me": [2024], "techoffice.sedo.de": [14602], "www.vox.com": [17940], "shoptiq.it": [2024], "www.media.bk.admin.ch": [22061], "tools.feide.no": [5729], "militarymaps.info": [20985], "blog.xmpp.org": [18617], "download.cc.ntu.edu.tw": [11010], "fsx.host": [2024], "plyvnyl.co": [2024], "www.russia.tv": [21698], "linksnappy.com": [20847], "preg.centrum.sk": [19548], "auth.rbo.raiffeisen.ru": [13587], "www.dhl.de": [4025], "lipetsk-region.auto.ru": [19276], "dmq.cm": [2024], "www.cpj.org": [2660], "www.pro.whitepages.com": [18352], "forum.ubuntu.com.cn": [17174], "17psfzpsnyjtz77hv2zjz5qszcbtu8sfmo7devms.ipleak.net": [20571], "ia1.ietf.org": [7725], "go.aquarela.co": [2024], "br0th3r.ml": [2024], "www.geneticliteracyproject.org": [20224], "hu.3.boardgamearena.com": [2182], "www.forsec.nl": [6028], "www.gdata.es": [6272], "carmenconnect.osu.edu": [11713], "campus.georgetown.edu": [6531], "abakan.biglion.ru": [19375], "i.dnel.us": [2024], "recipelab.org": [13706], "static.globalreach.com": [20268], "exhibition.ecc-platform.org": [4871], "go.bvaerial.com": [2024], "download0.savannah.gnu.org": [6337], "jscr.oxfordjournals.org": [12222], "housing.usc.edu": [17366], "*.evga.com": [4978], "www.acs.org": [974], "ams-ix.net": [1025], "bmcinfectdis.biomedcentral.com": [1931], "policy.cookiereports.com": [3637], "0.tqn.com": [22262], "wordentropy.org": [18523], "visitorboost.com": [1490], "mosis.com": [9793], "www.informe.org": [8118], "digitalcraft.cca.edu": [2547], "daktne.ws": [2024], "test.rg.ru": [21646], "*.further.co.uk": [6249], "wjes.biomedcentral.com": [1931], "kotiki.te-st.ru": [22103], "dimitrovgrad.beeline.ru": [1778], "lipetsk.beeline.ru": [1778], "1.slopeedge.ca": [2024], "publisher.assetstore.unity3d.com": [17310], "identity.uillinois.edu": [17034], "auto.sakh.com": [21719], "egp.li": [2024], "j.frew.in": [2024], "bndna.us": [2024], "widgets.flickr.com": [5898], "cbi.vc": [2024], "a5.mzstatic.com": [10893], "guildford.firmstep.com": [20109], "betterbills.com.au": [1853], "www.kids.greenpeace.de": [6919], "eeiccourses.engineering.osu.edu": [11797], "www.deploybot.com": [19809], "*.amazonaws.com": [963], "img.jp.fujitsu.com": [6223], "*.on-web.fr": [11846], "visahq.com": [17849], "static.xhamster.com": [18606], "ca.megabus.com": [10244], "gemoney.com.au": [6293], "ezh.io": [2024], "golin.co": [2024], "docs.npmjs.com": [11579], "webinspector.com": [18136], "shanghai.douban.com": [4701], "r.elsmore.me": [2024], "www.browsermob.com": [2392], "ecosia.org": [5055], "www.samsungknox.com": [14331], "aleksandrov.startsmile.ru": [21980], "m90.co": [2024], "fbhexpo.com": [5616], "www.klilu.de": [20734], "www.dmesg.gr": [4586], "status.linode.com": [9401], "rachelbythebay.com": [13553], "www.deltager.no": [4320], "wwwcms.tkk.fi": [15886], "chaika.navalny.com": [11148], "behmm.com": [2024], "active.dji.com": [4029], "ssc.me": [2024], "myaccount.socialsecurity.gov": [15126], "justlea.se": [2024], "www.penango.com": [12564], "t.ermunro.com": [2024], "careers.unbounce.com": [17239], "img.adplan-ds.com": [326], "www.rbu.sh": [13654], "shop.web.de": [18146], "ruby-toolbox.com": [14071], "a-gauna.com": [2024], "scgo.co": [2024], "git57.rostrud.ru": [21677], "imagestore2.boomerang.com": [2228], "rckm.co": [2024], "events.kcrw.com": [20699], "www.dovecot.org": [4713], "koji.fedoraproject.org": [5716], "gloucestershire.firmstep.com": [20109], "eastsussexlearning.org.uk": [19940], "welcometometlife.com": [18283], "www.dot-bit.org": [4686], "member.1688.com": [51], "*.oberlin.edu": [11735], "resources.cisnet.cancer.gov": [2819], "k.mfcimg.com": [20972], "s1.c4tw.net": [2518], "give.works": [2024], "assets.vice.com": [17754], "www.serverbase.ch": [21787], "bonefi.sh": [2024], "ssl4.ovh.net": [12205], "unruly.co": [22381], "fbw.vu.nl": [17608], "mate-desktop.co": [9727], "azhca.org": [440], "watford.greenparty.org.uk": [6908], "linuxdays.cz": [9424], "www.williams.edu": [18408], "lnk.zone84.net": [2024], "mol.org": [10521], "a.bigtopmag.com": [2024], "fb.parto.in": [2024], "m.bbva.es": [1744], "store.comcast.com": [3462], "familywize.io": [2024], "buyonline.rackspace.co.uk": [13559], "almadinainstitute.org": [19156], "ashleylauren.me": [2024], "share.cc.here.com": [7325], "www.iu.edu": [8069], "water.org": [18096], "kimberly-clark.com.*": [8905], "*.vantiv.com": [17653], "*.blogspot.hk": [2127], "newsletters.cnes.fr": [2647], "careers.11main.com": [31], "backoffice.efinancialcareers.com": [4903], "ongl.es": [2024], "stallman.org": [15438], "i.ubrr.ru": [17173], "shootingillustrated.com": [21805], "jiagu.360.cn": [142], "cmsmedia.zuji.com.hk": [19021], "*.blogspot.hu": [2127], "www.integrity.pt": [8205], "www.investorfunds.us.hsbc.com": [7090], "deri.ie": [11102], "bankia.es": [22626], "ennl.dict.cc": [4442], "www.trendmicro.com": [16791], "8bitb.ro": [2024], "qpc.mx": [2024], "my.post-gazette.com": [12762], "kevinptztos.com": [2024], "et-integration.dynamicyield.com": [4822], "statics.huxiu.com": [7638], "edtru.st": [2024], "dsl.vodafone.de": [17901], "calderdale.greenparty.org.uk": [6908], "i02.i.aliimg.com": [861], "blmyo.com": [2024], "secure.sydneytowereye.com.au": [15774], "www.packagist.org": [21332], "mail.bnl.gov": [19418], "rajoka.info": [2024], "www.thepiratebay.mg": [22174], "l8r.li": [2024], "www.thepiratebay.mk": [22174], "*.charityweb.net": [3018], "go.khalifah.biz": [2024], "portalcorreo.ulpgc.es": [17213], "www.thepiratebay.mn": [22175], "www.blueonyx.it": [19413], "*.u-strasbg.fr": [17367], "www.thiswebhost.com": [16446], "terrariaotherworld.com": [22124], "image4.pubmatic.com": [13241], "ocmal.ourproject.org": [21314], "*.blogautomobile.fr": [2119], "www.newsland.com": [21127], "secure.roboform.com": [13981], "h5.m.jd.com": [8436], "www.jochen-hoenicke.de": [8619], "jiko.us": [2024], "media.petridish.org": [12629], "int-bi.magento.com": [9868], "www.praktica.de": [14421], "questionablecontent.net": [13408], "wpbox.link": [2024], "zorpia.com": [19009], "herox.com": [7329], "ozin.ga": [2024], "bit.prime.pt": [2024], "sovh.co": [2024], "brewtou.rs": [2024], "studio.adform.com": [639], "www.freecode.club": [20157], "sspai.com": [21962], "www.hackaday.com": [20330], "mail.qq.com": [13329], "www.kb8ojh.net": [8844], "www.x.ai": [22642], "7joycasino.com": [20654], "login.uptobox.com": [22395], "www.watkins.edu": [18100], "go.kowitz.co": [2024], "mdl4.udn.com": [17020], "*.virtualtourist.com": [17836], "static2.holidayextras.com": [7459], "epnt.in": [2024], "researchonline.org.uk": [21634], "*.artemisinternet.com": [1255], "seagnature.info": [2024], "www.nevistashealth.com": [11327], "www.hostcentric.com": [7517], "flex.msn.com": [9810], "cobid.net": [2024], "*.bucketexplorer.com": [2405], "xiaomi.cn": [18661], "rheumatology.oxfordjournals.org": [12222], "www.youtube.me": [18800], "*.quantserve.com": [13391], "m.uat.sportmaster.ru": [21944], "www.samsclass.info": [14324], "spot.btcc.com": [2400], "sso.nytcn.me": [11038], "pside.co": [2024], "www.toogl.com": [16626], "janraincapture.com": [8519], "article19.org": [1257], "www2.swisscom.ch": [15761], "futurezone.at": [6263], "openf2.org": [11973], "xmpp.jp": [18615], "i.chikara.co": [2024], "sloanm.it": [2024], "gomm.co": [2024], "collections.aliexpress.com": [19140], "meeting.jd.com": [8436], "5.xhcdn.com": [18605], "jobs.dailymail.co.uk": [4114], "atelier.gresille.org": [6927], "i.nierhoff.info": [2024], "chat.indieweb.org": [8076], "bitcoin.it": [1989], "cdimage-search.debian.org": [4263], "lplogin.com": [624], "vpul.beget.com": [19347], "sso.mims.com": [9756], "www.milkandmore.co.uk": [10433], "b20.banan.cz": [1514], "image.ceneo.pl": [2945], "www.mips.com": [9759], "donate.creativecommons.org": [3774], "gu.com": [6976], "pix.dsp.io": [4780], "heeseminars.engineering.osu.edu": [11797], "1.pilates.ws": [2024], "webquik.vtb24.ru": [22512], "www.mtnacertification.org": [9814], "kwin.city": [2024], "everfi.me": [2024], "app.tfb.ru": [16236], "bplaced.net": [19438], "bib.support": [2024], "discount.teengfs.com": [13086], "botswana.usembassy.gov": [22406], "voyager.wine": [2024], "jlop.in": [2024], "*.swin.edu.au": [15754], "dch.ie": [2024], "spaces.internet2.edu": [8277], "qrz.com": [13363], "e-preneur.de": [2024], "emma.pluska.sk": [12870], "9-s.imgbox.com": [7997], "www.riigiteataja.ee": [13945], "g.theki-ng.info": [2024], "player.kent.ac.uk": [17402], "uam.osu.edu": [11797], "community.obi.at": [21222], "jastusa.com": [20627], "drive2.ru": [4757], "elegantthemes.com": [5146], "orenburg-region.auto.ru": [19276], "nvidianews.nvidia.com": [11019], "onamae.com": [11859], "oauth.mts.ru": [21042], "eternallybored.org": [20026], "hvdh.site": [2024], "westm.in": [2024], "alestic.com": [840], "m.flightradar24.com": [20119], "wordpress.mattermark.com": [20937], "states.newegg.com": [11356], "thesco.re": [2024], "oeffentliche.de": [11768], "us.hunchlab.com": [7622], "stemulitefitnessformula.com": [15535], "www.rt.ru": [13529], "jump.aesrv.net": [2024], "mrcp.me": [2024], "enphase.com": [5270], "www.surge.sh": [15718], "artoo.co": [2024], "volcanoecigs.com": [17914], "p.thewebfix.com": [2024], "21dec.org": [2024], "www.themuse.com": [16415], "tvbinding.now.com": [11572], "tall.ut.ee": [17148], "www.serversforhackers.com": [14679], "www.faradaysec.com": [5651], "superpri.de": [2024], "iform.zg.ch": [22061], "myaccount.southend.gov.uk": [15261], "getcloak.com": [6553], "kr.forums-stage.oracle.com": [12116], "www.supervalu.com": [14259], "pay.t6k.co": [22080], "login.dtcc.edu": [4305], "q.wipen.net": [2024], "soybn.us": [2024], "www.yoursav.me": [18829], "nowybip.siteor.com": [11575], "www.efficios.com": [5098], "j.royxiang.me": [2024], "hdsnp.me": [2024], "socialke.com": [2024], "epilepsyfoundation.org": [5310], "safesmokedfish.food.gov.uk": [20132], "www.labcorpsolutions.com": [9140], "cambridgesoft.com": [2782], "chartmogul.com": [3022], "selfservice.woking.gov.uk": [22605], "nsrl.bnl.gov": [19418], "ksurf.in": [2024], "cdn.kaltura.com": [8790], "projects.iq.harvard.edu": [7211], "authorcentral.amazon.com": [960], "islandrun.boston.com": [2252], "nousha.co": [2024], "media.playstation.com": [12832], "blog.boxun.com": [19436], "hipeac.org": [7391], "apm.netease.com": [11228], "clrlv.rs": [2024], "vladimir.tpprf.ru": [22260], "macfix.es": [2024], "hostvoice.com": [7527], "*.jigsaw.com": [8584], "wiki.musicbrainz.org": [10752], "1xrun.co": [2024], "lcrx.co": [2024], "careers.appnexus.com": [1139], "pro.sigaqua.com": [2024], "shorefi.re": [2024], "grp01.api.rp.rakuten.co.jp": [13594], "www.greentechmedia.com": [6921], "et01.xhcdn.com": [18605], "adreducation.org": [19088], "www.buckeyevoices.osu.edu": [11797], "gcvmt.co": [2024], "ams.un.org": [17057], "in.yota.ru": [22685], "rjbs.ws": [2024], "integrity.sportradar.com": [21945], "contratos.alhur.es": [19137], "www.outbrain.com": [12182], "bee.st": [2024], "hi5fri.com": [2024], "golfdigestschool.com": [3554], "www.designcentersearch.com": [3554], "spiderwebsoftware.com": [15340], "fullerton.edu": [6233], "srv01.epimg.net": [5126], "deekayen.net": [4281], "fdn.ro": [2024], "intranet.crick.ac.uk": [19719], "www.geniusdisplay.com": [20227], "metrika.ya.ru": [18716], "ibphoenix.com": [7680], "*.customer.io": [3934], "ssl.trendmicro.com": [16791], "ted2017.ted.com": [15871], "hrg.stanford.edu": [15448], "www.emssoftware.com": [19990], "www.bohoomil.com": [2196], "www.imperial.nhs.uk": [10953], "happ.ie": [2024], "jat.oxfordjournals.org": [12222], "mensa.org.uk": [10279], "tbbcoa.ch": [2024], "saml.in": [2024], "erkurt.co": [2024], "moxiesoft.com": [10685], "ui.comet.aol.com": [380], "www.exelab.ru": [20048], "www.dobrochan.ru": [4601], "ip.e-paycapita.com": [19919], "cv.usc.es": [17506], "www.casecurity.org": [2533], "zenmate.com": [18917], "on.purakai.com": [2024], "form.mx": [2024], "minecraftforge.cursecdn.com": [3927], "ra-apc.moodys.com": [21020], "learner.hkuspace.hku.hk": [20387], "syndie.de": [15799], "kralenstart.nl": [9016], "stntc.jd.com": [8434], "es.trainings.350.org": [140], "*.uoregon.edu": [17080], "radiance.duapp.com": [19902], "mtrics.cdc.gov": [19532], "www.lurkmo.re": [9683], "www.startlab.sk": [15477], "wilkinsons-auctioneers.co.uk": [22592], "gsfacket.se": [6969], "mtwrk.co": [2024], "diaspora.pingupod.de": [12721], "www.bitcoin.it": [1989], "koom.be": [2024], "auth-key.berkeley.edu": [17329], "anchel.eu": [2024], "www.bitcoin.in": [1989], "www.tyk.io": [16976], "dgom.me": [2024], "q.delfi.lv": [19800], "*.com.edgesuite.net": [805], "datart.cz": [3998], "proxy.video.sky.com": [14989], "itao.com": [20598], "agtz.fr": [2024], "doprava.idnes.cz": [20483], "www.therocktrading.com": [16379], "hw.zone": [2024], "sofurry.com": [15113], "*.ssl.mts.ru": [21042], "to.didi.web.id": [2024], "files.adform.net": [638], "amsa.co": [2024], "amsa.cl": [2024], "www.knigafund.ru": [20741], "foaly.me": [2024], "copilotgps.com": [19686], "app.balboa.io": [1649], "superio.city": [2024], "sfeconnect.warwickshire.gov.uk": [22532], "wallst.com": [10032], "webapi.amap.com": [19166], "heger.li": [2024], "meeperoos.com": [2024], "filezilla-project.org": [5782], "ipsos-mori.com": [8346], "laststp.me": [2024], "proxy.storify.com": [15564], "rockcreek.com": [13989], "bangalore.btcxindia.com": [1598], "widgit-online.com": [22585], "www.xiscosoft.org": [18668], "parkright.westminster.gov.uk": [18315], "www.pine64.com": [12711], "www.rackspace.nl": [13565], "data.openaccessbutton.org": [11951], "www.feide.no": [5729], "gfalinks.xyz": [2024], "lists.ipv4.pcug.org.au": [12260], "*.financialtrans.com": [5811], "www.points.homeoffice.gov.uk": [20399], "remedyweb.stanford.edu": [15448], "mochajs.org": [10545], "getpopcorntime.org": [21461], "ca.3.boardgamearena.com": [2182], "secure.islington.gov.uk": [8384], "is.mediadelivery.io": [10164], "image.wemakeprice.com": [18292], "vey.li": [2024], "captcha-static.touclick.com": [16679], "www.openuni.io": [12084], "paymoapp.com": [12514], "starts.topspb.tv": [22239], "mjg.ph": [2024], "alumni.gsb.stanford.edu": [15448], "info.jetbrains.com": [8573], "skrk.ws": [2024], "intarchmed.biomedcentral.com": [1931], "asb.co": [2024], "transact.nab.com.au": [10905], "www.hosted-ci.com": [20407], "rvwb.co": [2024], "scan5.coverity.com": [3731], "aula.esci.upf.edu": [17471], "secure.cdgcommerce.com": [2566], "iisp.org": [7747], "prous01.netforumpro.com": [11230], "gawk.in": [2024], "m.zalando.at": [18877], "jai.la": [2024], "hansbr.gr": [2024], "johnrennie.net": [8624], "newgn.solutions": [2024], "static.ocamlcore.org": [11650], "www.registrar.wustl.edu": [18089], "*.gambleid.com": [6390], "inspiration.mailchimp.com": [9893], "aberdeenshire.gov.uk": [472], "www.occupywallst.org": [11746], "edcrt.nl": [2024], "netzguerilla.net": [11316], "www.energiecomfort.at": [18376], "imaman.oxfordjournals.org": [12222], "encuestas.unizar.es": [17441], "l.husnan.com": [2024], "count.vrs.sohu.com": [15171], "bb.wustl.edu": [18089], "s.huobi.com": [7628], "ride.st": [2024], "brasshouse.birmingham.gov.uk": [19380], "d3.ru": [3990], "www.24img.com": [107], "*.tryprocleanse.com": [10843], "develop100.com": [19821], "faststream.civilservice.gov.uk": [19601], "corncotts.com": [2024], "bigrecycle.portsmouth.gov.uk": [21467], "projectdent.com": [13183], "partipirate.ch": [12314], "*.blogspot.com": [2127], "si.m.bingads.microsoft.com": [10396], "html5test.com": [7099], "www.smack.co.uk": [15043], "bewerbungen.bvg.de": [1605], "rade.tk": [3536], "fisolive.cheshireeast.gov.uk": [3071], "isim.georgetown.edu": [6531], "*.immerda.ch": [20510], "federation.renater.fr": [13826], "penguinwebhosting.com": [12568], "g.bradwhite.net": [2024], "www.markonefoods.com": [10033], "old.postimage.org": [13024], "decathlon.es": [22628], "kenshoo.com": [8799], "hub.funio.com": [6243], "dosomething.org": [4682], "dornsife.usc.edu": [17366], "tastekid.com": [16036], "lbl.to": [2024], "webmail.riverbed.com": [13964], "osmi.osu.edu": [11797], "zhangzhouguan.jd.com": [8434], "tscltd.tk": [2024], "adda.at": [2024], "s.shinanotei.jp": [2024], "dsh.oxfordjournals.org": [12222], "rab.me": [2024], "community.migros.ch": [10417], "campusteruel.unizar.es": [17441], "autodiscover.ictv.ua": [20476], "www.0x.co": [5], "gitshell.com": [6665], "*.inq.com": [16681], "www.hrw.org": [7616], "www.moinmo.in": [10568], "eu-gmtdmp.gd1.mookie1.com": [10617], "bugs.kali.org": [8786], "trade.jr.jd.com": [8436], "tracking.wix.com": [18473], "yelp.nl": [18766], "yelp.no": [18766], "www.ourvacationcentre.net": [18578], "sos.ink": [2024], "zoner.fi": [18995], "*.bannersnack.com": [1678], "www.gradsch.cuhk.edu.hk": [2704], "forexctlogin.tradenetworks.com": [6012], "www.dzne.de": [6541], "fb.mobile.de": [21001], "ssl.com": [14241], "facescanner.skyscanner.net": [15006], "elauw.it": [2024], "lighthouse.aliexpress.com": [854], "argosonline.es": [1214], "img.luukku.com": [20895], "www.weert.nl": [11172], "go4gold.uol.com.br": [17079], "feed.mikle.com": [10423], "dev.unet.by": [22367], "superpetusa.com": [15687], "pyum.co": [2024], "geti2p.net": [6578], "dev.maxmind.com": [10109], "ft.ornl.gov": [11730], "www.adaptavist.com": [609], "illu.link": [2024], "edog.link": [2024], "sittard-geleen.nl": [11172], "callrail.com": [19493], "qr.equipo.dk": [2024], "gopacesetter.ca": [2024], "pass.yandex.com": [18742], "mattuhri.ch": [2024], "cimjsea.engineering.osu.edu": [11797], "dot.quart.red": [2024], "*.newsday.com": [11382], "biggy.tv": [2024], "libca.st": [2024], "bundesliga-tipp.sky.de": [14990], "moz.com": [21029], "akincludes.okccdn.com": [11807], "broadband-forum.org": [2365], "pc.nick.com": [2024], "adigital.org": [644], "semabuzz.com": [14159], "bmy.bezeq.co.il": [19362], "rspca.org.uk": [13521], "www.publicobject.com": [13261], "omfg.at": [2024], "tsl.cm": [2024], "northherts.greenparty.org.uk": [6908], "pskov.biglion.ru": [19375], "intra.us": [2024], "sbr.io": [2024], "www.corelan.be": [3675], "odenvalt.de": [2024], "ncr.media": [2024], "rare.te-st.ru": [22103], "www.inforos.ru": [20532], "www.ikk-suedwest.de": [7753], "bookstore.yahoo.co.jp": [18730], "cucast.me": [2024], "it-pol.dk": [8405], "www.etarget.ro": [5361], "www.instructables.com": [8199], "link.wipont.com": [2024], "cdn.mytemp.email": [10834], "smplfy.cm": [2024], "azys.co": [2024], "s.m2i3.com": [2024], "docs.codehaus.org": [3369], "www.opensource.com": [12078], "endpoint.com": [5233], "fmkt.net": [2024], "tomc.li": [2024], "hosteuropegroup.com": [7510], "cpx.golem.de": [6804], "img04.taobaocdn.com": [16016], "www.amebaownd.com": [19185], "minrpp.nso.ru": [21192], "*.blinkeye.ch": [2095], "www.deepsec.net": [4284], "accounts.login.idm.telekom.com": [16154], "go.kevsully.us": [2024], "sciencemag.org": [14444], "t2.58cdn.com.cn": [213], "ps18.squat.net": [21955], "services.nvidia.eu": [11021], "www.npscu.ca": [11533], "www.360buy.com": [147], "halo.ge": [2024], "www.iot.uk": [20563], "expedia.co.uk": [5492], "htwk-alumni.de": [7595], "tess.gsfc.nasa.gov": [10909], "aegee-enschede.nl": [334], "insnty.us": [2024], "www.opennet.net": [11998], "yaroslavl.europaplus.ru": [20034], "www.biostars.org": [1939], "microbiomejournal.biomedcentral.com": [1931], "openmk.me": [2024], "finance.now.com": [11572], "www.sirinlabs.com": [21836], "www.ocmr.ox.ac.uk": [17359], "majs.link": [2024], "whistleout.com": [18344], "*.experian.experiandirect.com": [5495], "api.qrator.net": [21562], "www.stop-ttip.org": [15550], "talk.openmrs.org": [11989], "clouds.chromeexperiments.com": [3122], "*.beender.co": [1780], "demos.govdelivery.com": [6846], "capitan.in": [2024], "1226.co": [2024], "www.*.vba.va.gov": [17100], "rips-dienste.lubw.baden-wuerttemberg.de": [19302], "avrm.eu": [2024], "www.attic-backup.org": [1365], "m.broxtowe.gov.uk": [19458], "www.zvv.ch": [22733], "ruizmc.us": [2024], "ballup.us": [2024], "thuzi.me": [2024], "acw.elsevier.com": [5177], "br.usembassy.gov": [22406], "g.suntravel.xyz": [2024], "sergiopizza.ru": [21784], "taxii.mitre.org": [10497], "i2.ooshirts.com": [11934], "faf.ornl.gov": [11730], "to.justpitch.me": [2024], "fas.org": [5713], "atlasofprejudice.com": [1347], "progress.com": [13178], "streak.com": [22005], "sellerportal.newegg.com": [11356], "www.metcombank.ru": [10336], "paten.to": [2024], "meta.ifixit.com": [7731], "belgium.indymedia.org": [8090], "www.adacore.com": [602], "s01.yapfiles.ru": [22667], "panel.pixfs.net": [12776], "molcat.bl.uk": [2358], "www.ggdns.de": [20242], "th.boell.org": [19422], "en.bbs.deepin.org": [4287], "30.rkn.gov.ru": [13971], "mktg.bz": [2024], "nthn.ml": [2024], "khouz.am": [2024], "jf.alipay.com": [864], "h4q.me": [2024], "go.jpg.yt": [2024], "avc.io": [2024], "dango.co": [2024], "fgr.me": [2024], "braintreepaymentsolutions.com": [2292], "aises.osu.edu": [11797], "good.as": [2024], "chrty.bz": [2024], "opening-times.co.uk": [21275], "cardiooncologyjournal.biomedcentral.com": [1931], "secdn.williamhill.com": [18407], "mbdetox.com": [9731], "www.globalsign.*": [6700], "lunar.gsfc.nasa.gov": [10909], "dchr.ca": [2024], "www.ffrf.org": [6141], "clickfunnels.com": [3247], "home.inforos.ru": [20532], "bank.barclays.co.uk": [1688], "www.blender.org": [2086], "www.bruteforce.gr": [2397], "airasiamegastore.com": [789], "www.libreoffice.org": [9327], "www.showapi.com": [21815], "www.lerner.ccf.org": [3237], "transport.imhd.sk": [8004], "goprs.unodc.org": [17075], "www.pjrc.com": [12291], "owengrp.co": [2024], "prof.ar.it": [2024], "blog.cryptomilk.org": [3870], "recordwww.play-asia.com": [12828], "r24625342.sync.app.asana.com": [1265], "media-storm.cursecdn.com": [3927], "content6.flixster.com": [5913], "hxti.de": [2024], "myutm.sophos.com": [15224], "signin.intel.com": [8211], "images.d.switchadhub.com": [15764], "vms.admin.qbrick.com": [13345], "ift.tt": [2024], "dbs.com.hk": [4001], "greenhost.nl": [6913], "count.spiegel.de": [15342], "p6d.co": [2024], "jobs.nih.gov": [11090], "www.ocf.berkeley.edu": [17329], "shtst.re": [2024], "t.icetravel.xyz": [2024], "stapi.snacktools.net": [15085], "elitecastingnetwork.com": [5160], "kmcabi.net": [2024], "rhonk.com": [2024], "hsdzsw.jd.com": [8434], "bw.com": [1607], "getsharex.com": [6587], "www.layer-ads.de": [14119], "woof.photo": [2024], "lrtrjns.co": [2024], "cdn-d-limg.pornhub.com": [12972], "spanish.alibaba.com": [857], "fex.intevation.de": [8293], "toyfoundry.net": [16692], "checkout.buydomains.com": [19483], "1l-go.mail.ru": [9891], "3ly.me": [2024], "zxs.me.uk": [2024], "direct.ukash.com": [17205], "www.pingdom.com": [12719], "www.newhumanist.org.uk": [21122], "dsnews.me": [2024], "irkutsk.auto.ru": [19276], "z3.hitravel.xyz": [2024], "shrtn.ws": [2024], "assets.mery.jp": [9749], "lookinglocal.gov.uk": [9610], "cpf.osu.edu": [11797], "www.privacyrights.org": [13141], "ustlib.ust.hk": [22412], "passionfruitads.com": [12464], "blog.gigya.com": [6641], "xyz.napmdd.org": [2024], "mijnsimpel.nl": [21829], "vgtrk.com": [22455], "formule1.isport.blesk.cz": [2088], "magx.us": [2024], "unworld.life": [2024], "www.salesmanago.pl": [14125], "mecoffee.nl": [10145], "i.umeng.com": [22363], "flysafe-admin.dji.com": [4029], "www.downloadverse.com": [4722], "cyberagent.co.jp": [3950], "print2fastprint.nvcc.edu": [11627], "alva.li": [2024], "secure7.pipni.cz": [12287], "blogs.balabit.com": [1647], "serpdisplay.yandex.com.tr": [18740], "millionenklick.web.de": [18146], "service-now.com": [14681], "bugs.merproject.org": [10290], "www.ixicorp.com": [7878], "*.top.mail.ru": [9891], "www.blockexplorer.com": [2101], "apertureinsight.com": [13270], "s-cdn.sportbox.ru": [21942], "jusek.se": [8704], "www.nttcoms.com": [11007], "htwb.co": [2024], "ubuntustudio.org": [17189], "tyumen.biglion.ru": [19375], "kkbox.com": [8749], "content.readcube.com": [13666], "tuts4you.com": [16927], "www.hdtracks.com": [7039], "365v.nl": [2024], "opsc.nl": [2024], "taskflow-portal.dundeecity.gov.uk": [4794], "www.caseking.biz": [2885], "profit.sme.sk": [14198], "spoki.lv": [15356], "vrijstellingoldtimer.nl": [22508], "watch.history.com": [7422], "l.solid.dj": [2024], "image-pics.com": [2024], "y1.ifengimg.com": [20487], "geocoder.ca": [6521], "www.aberdeencity.gov.uk": [470], "a-mx.com": [2024], "www.kreativvonalak.hu": [9021], "hmdi.site": [2024], "www.allthingsd.com": [887], "relay.airbites.net.ua": [19120], "www.occrp.org": [11648], "apt.rocks": [2024], "technologie.etrend.sk": [5383], "pef.io": [2024], "gaokao.baidu.com": [1641], "hrobson.uk": [2024], "www.pirateaccess.xyz": [22177], "thuisbezorgd.nl": [16474], "mjs.cc": [2024], "25vmeste.mcdonalds.ru": [20941], "mirrors.berkeley.edu": [17329], "sbforge.org": [14139], "cdn.habets.pp.se": [7115], "www.hipercor.es": [7418], "nasas.info": [2024], "truecolo.rs": [2024], "liew.co": [2024], "www.virusbulletin.com": [17843], "blog2.biz": [2024], "liew.cf": [2024], "media.mvd.ru": [21055], "ngvpn34.nvidia.com": [11022], "maintenance.snapnames.com": [8880], "www.freestateproject.org": [6128], "sport.bt.com": [1578], "s.t6k.co": [22080], "www.transip.de": [22273], "katap.lt": [2024], "on.renoir.me": [2024], "m.btcxindia.com": [1598], "wolverhampton.gov.uk": [18494], "u.cwl.cc": [2024], "mag.iptvpro.pw": [2024], "register.theguardian.com": [16364], "www.sediarreda.com": [21770], "t16.co": [2024], "to.neer.pro": [2024], "4.rapidrage.org": [2024], "porterdrive.stanford.edu": [15448], "tagesanzeiger.newsnetz.ch": [11371], "static.dealer.com": [4245], "autos.aarp.org": [279], "www.dms-sweden.com": [4037], "activiti.alfresco.com": [850], "extended-validation-ssl.verisign.com": [17712], "frmy.tv": [2024], "fluidhosting.com": [5931], "*.jobs.ch": [20646], "salon.umeng.com": [22363], "fr.pcpartpicker.com": [12529], "akaes.ms": [2024], "pcreditprod.alipay.com": [864], "cdig.co": [2024], "universalcoin.com": [22379], "larep.it": [2024], "www.mbank.sk": [9733], "thepiratebay.link": [22174], "wbpty.ca": [2024], "es.debconf.org": [4257], "kldp.net": [8752], "s.officehit.biz": [2024], "www.finra.org": [5808], "jifen.2345.com": [98], "www.wolfsonmicro.com": [18491], "www.bountysource.com": [2265], "buergernetz-gera-greiz.de": [2414], "travelplan.gr": [16768], "cart.sxsw.com": [15254], "www.otavamedia.fi": [12163], "sccr.mx": [2024], "fruity.link": [2024], "picture.immobilienscout24.de": [8008], "osdc.com.au": [11703], "communication.on24.com": [11674], "oclink.us": [2024], "questions.medicare.gov": [20953], "cloudforce.com": [3302], "zzzp.link": [2024], "bentolunch.es": [2024], "test.nvr.de": [11628], "rhf.mx": [2024], "safeornot.net": [21712], "thundrt.ch": [2024], "www.govhack.org": [6849], "muslimscondemn.com": [10766], "proofm.csmonitor.com": [19737], "mobilepki.org": [10540], "www1.ntv.ru": [21197], "newsletter.kabelmail.de": [8775], "usinsk.startsmile.ru": [21980], "zilog.com": [18966], "dowc.co": [2024], "clinicalaudit.hscic.gov.uk": [20435], "b.jackzmc.me": [2024], "clp.oxfordjournals.org": [12222], "linac4-project.web.cern.ch": [2588], "haringey.greenparty.org.uk": [6908], "ssif.cf": [2024], "shop.ashampoo.com": [1273], "www.amnesty.fr": [1006], "wales.greenparty.org.uk": [6908], "preemie.world": [2024], "toguchin.nso.ru": [21192], "git86.rostrud.ru": [21677], "tribetn.co": [2024], "fuerzapopularpe.keikoperu.com": [6222], "gorposumba.gov-murman.ru": [20293], "phoenix.de": [21397], "globalsign.ssllabs.com": [14243], "www.reportlab.com": [13842], "notreinternet.mozfr.org": [21030], "www.lvftv.com": [20896], "fred.li": [2024], "eschools.co.uk": [20017], "lockkey.com": [2024], "edge4.digicert.com": [4461], "fred.ly": [2024], "www.royalvoluntaryservice.org.uk": [21682, 21683], "*.surveydaddy.com": [15725], "repeal2a.com": [2024], "bloomsky.com": [19411], "1.topsetups.com": [2024], "www.nokia.co.uk": [11498], "photos-h.ak.fbcdn.net": [5689], "libre.adacore.com": [602], "www.skylarkcloud.com": [15000], "build.cloud.unity3d.com": [17310], "ftc.com": [2024], "webmail.claranet.pt": [3213], "labs.igalia.com": [7952], "bowenp.rs": [2024], "randomhouse.com": [13604], "www.yuri-ism.net": [18842], "d1.io": [2024], "wifi.meo.pt": [10286], "www.mindmodeling.org": [10444], "ca.jobindex.dk": [8611], "pitz.co": [2024], "dol.ph": [2024], "jarb.ro": [2024], "tsl.guru": [2024], "www.mozy.com": [10705], "ecitizen.tameside.gov.uk": [22095], "inevents.se": [2024], "noco.ag": [2024], "talvi.dovecot.org": [4713], "rblg.me": [2024], "isdai.ly": [2024], "gxy.rocks": [2024], "lexity.com": [9295], "riskiq.com": [13959], "help.skyscanner.net": [15006], "10h52xoxu755mxpv6lsv3v7u7pq9krl4rb9o3590.ipleak.net": [20571], "res-4.cloudinary.com": [3306], "securelime.com": [14566], "ws.sharethis.com": [14730], "www.ludios.org": [9662], "anvil.rubiconproject.com": [14066], "fbpro.co": [2024], "*.bellareed.com": [10008], "grad.uw.edu": [17156], "terrain.play-asia.com": [12828], "blastingnews.com": [2078], "cas.cnrs.fr": [6174], "www.mappingmediafreedom.org": [9983], "www.tmt.org": [16444], "www.gps.caltech.edu": [2771], "www.112cafe.com": [27], "l.siz.io": [2024], "elections.rbc.ua": [21592], "www.campustechnology.com": [19499], "zhili.1688.com": [51], "*.nla.gov.au": [11109], "jeffm.co": [2024], "thalia.ch": [16244], "rns.online": [21658], "realtime.statushub.io": [15504], "vhotlx.video.qq.com": [13329], "win.gs": [2024], "gtx01.hkjc.com": [20384], "assets.changyan.sohu.com": [15171], "i.bashfoo.com": [2024], "www.gpgauth.org": [6860], "genius.is": [2024], "deb.opera.com": [12086], "winm.kr": [2024], "tags.tiqcdn.com": [16060], "blog.webmaker.org": [10701], "dl3.checkpoint.com": [3052], "www.coventry.gov.uk": [19705], "frcr.cz": [2024], "www.runscope.com": [14094], "*.babylon.com": [1618], "portal-dev.cca.edu": [2547], "jeman.de": [20637], "*.audible.de": [1377], "boxoffice.bl.uk": [2358], "fit.fraunhofer.de": [6091], "www.sixapart.com": [21842], "www.bluetooth.org": [2170], "www.ourtesco.com": [12176], "igs.io": [2024], "teruel.unizar.es": [17441], "www.gettyimages.co.jp": [6604], "yanao.ru": [22665], "swright.us": [2024], "fhfi.re": [2024], "dereck.io": [2024], "fredericia.dk": [6093], "hypety.pe": [2024], "help.research.vt.edu": [17825], "bitdrift.org": [2014], "odpadnes.sk": [18979], "to.newsdesk.pm": [2024], "zwezd.in": [2024], "*.api.roblox.com": [13980], "old.metro-set.ru": [20971], "iambleona.net": [2024], "verbling.com": [17704], "www.thepiratebay.gs": [22175], "sagernotebook.com": [14301], "cdb.qcloud.com": [13346], "afl.nab.com.au": [10905], "sparx.org.nz": [15297], "www.equranclass.com": [4939], "mccou.ch": [2024], "www.suttonhomechoice.org.uk": [22048], "www.digitalcraft.cca.edu": [2547], "www.bnz.co.nz": [1561], "mitp.ch": [2024], "bdi.link": [2024], "ona.idnes.cz": [20483], "s.dev-vision.ro": [2024], "kennett.design": [2024], "nuculture.ly": [2024], "apps.1und1.de": [91], "on.kigalian.com": [2024], "www.peoplebank.com": [21384], "isuppli.es": [2024], "wingolog.org": [18443], "netdata3.firehol.org": [20107], "sams.tc": [2024], "*.tjoos.com": [16581], "shayang.jd.com": [8434], "www.nei.nih.gov": [11090], "*.extralunchmoney.com": [5514], "www.pivotaltracker.com": [12767], "ftftl.com": [2024], "foss.in": [5577], "p.schall.tv": [2024], "www.destinydb.com": [18878], "per.im": [2024], "b.shinseki.us": [2024], "virustracker.net": [17844], "sample-default.readme.io": [13668], "careereagles.osu.edu": [11797], "members.bet365.com": [1841], "url.minerva.lt": [2024], "www.ricardo.ch": [13923], "westmorland.greenparty.org.uk": [6908], "ohu.website": [2024], "elefant.sale": [2024], "www.grsecurity.net": [6360], "user.atlas.sk": [19269], "s4.goeshow.com": [6781], "mrtv.io": [2024], "tres.vc": [2024], "lokaldealen-dbapp.netdna-ssl.com": [4104], "dev.storify.com": [15564], "pirata.top": [22174], "www.gsu.edu": [6367], "www.behavioralpolicy.org": [1787], "stringeditions.leeds.ac.uk": [17403], "shop.un.org": [17057], "www.schooltoprison.org": [14427], "heg.media": [2024], "rebrush-oas.fazjob.net": [5545], "github.cms.gov": [19630], "meteor.com": [10339], "source.openmpt.org": [11987], "altape.li": [2024], "continuingstudies.stanford.edu": [15448], "www.touchgen.net": [16684], "r.by.no": [2024], "finse.uio.no": [17414], "nknews.org": [10974], "s19.postimage.org": [13024], "imgdes.pro": [2024], "www.backblaze.com": [1619], "aye.ac": [2024], "www.tickengo.*": [16485], "lapm.continuousdelivery.com": [19674], "mcpmag.com": [9740], "download.zarafa.com": [18893], "ptp.aldi.com.au": [357], "thestanfordfund.stanford.edu": [15448], "parkhere.org": [14401], "sath.co": [2024], "mss.cammp.anthem.com": [19206], "tr2.gtimg.com": [6975], "active24.es": [19064], "www.trash-mail.com": [16760], "katcr.co": [8894], "cron-job.org": [19721], "www.lineageos.org": [9384], "e1.targusinfo.com": [15851], "v2v.io": [2024], "telecom.kommersant.ru": [20746], "s.bdarfler.com": [2024], "*.gitc.finance.gov.au": [3495], "sttu.info": [2024], "assets.rovio.com": [14042], "portal.ascio.com": [1271], "www.abestweb.com": [291], "hosting.com": [20408], "agc.greenparty.org.uk": [6908], "www.pirates.pw": [22174], "asterisk.org": [1322], "go.kayayalc.in": [2024], "jobmky.com": [2024], "clear.thomsonreuters.com": [16456], "www.telvue.com": [16132], "called2.be": [2024], "s.benzi.io": [2024], "dataminelab.com": [4175], "aquabounty.com": [1174], "www.lis.gov": [9095], "*.bitlove.org": [2021], "www.epay.uio.no": [17414], "tags.crwdcntrl.net": [9622], "se.support.tomtom.com": [16615], "forge.ocamlcore.org": [11650], "s.bk9.us": [2024], "file.mk.co.kr": [20997], "ejcts.oxfordjournals.org": [12222], "le.ai": [2024], "libcal.com": [9303], "abmrt.xyz": [2024], "mello.link": [2024], "blackboard.uic.edu": [17321], "collik.es": [2024], "ecsv2.roblox.com": [13980], "k1.hitravel.xyz": [2024], "l.comicsia.ru": [2024], "ezoshosting.com": [4993], "cdnimg.rg.ru": [21646], "blog.consumeraffairs.com": [3600], "welsh-country-cottages.co.uk": [18579], "profile.1688.com": [51], "rnch.xyz": [2024], "www.impfen-info.de": [8022], "info.khotkovo.ru": [20712], "u.bee.moe": [2024], "ny.curbed.com": [3920], "auth.hnonline.sk": [7445], "daikuan.2345.com": [98], "u.0x004a.eu.org": [2024], "webmdhealthservices.com": [18169], "pagefair.com": [12358], "owncloud.org": [12215], "master.yandex.kz": [18743], "www.mwave.com.au": [10781], "1v3.me": [2024], "wthr.fr": [2024], "webftp.cesky-hosting.cz": [19553], "lbnow.ml": [2024], "www.paypalobjects.com": [21364], "www.ostif.org": [21302], "apprnt.us": [2024], "buryleisureonline.bury.gov.uk": [19476], "deals.montomeryadvertiser.com": [6434], "*.check24.de": [3049], "hs-karlsruhe.de": [7587], "netscape.com": [11289], "giantbomb.com": [6620], "datarecovery.wondershare.com": [22608], "database.oxfordjournals.org": [12222], "assets.nrarofcochairs.com": [21187], "1tcl.co": [2024], "login.tmall.com": [22222], "archive.nlm.nih.gov": [11090], "jira.codehaus.org": [3369], "eitb.eu": [2024], "univer.mvd.ru": [21055], "dialer.bundesnetzagentur.de": [2445], "developer.oculusvr.com": [11760], "webmap.slu.se": [14195], "taipo-01-hkg-remote.cathaypacific.com": [2913], "thvideo.us": [2024], "www.homefinder.com": [7477], "dprg.co": [2024], "*.adp.com": [1451], "edp.is": [2024], "e17-stuff.org": [19921], "news.yaplakal.com": [22668], "trellian.com": [16783], "jangy.com": [2024], "www.shanaproject.com": [14718], "www.sv2.biz": [15733], "bb.mail.ru": [9891], "www.retailmenot.com": [13879], "sk.mbank.eu": [9733], "jiplp.oxfordjournals.org": [12222], "r.skimresources.com": [14977], "cinn.mn": [2024], "glandium.org": [20256], "vdga.ga": [2024], "*.mozilla.com": [10693], "bnka.co": [2024], "troyhunt.com": [22294], "guru.ba": [2024], "rule.tmall.hk": [16589], "dovolenka.sme.sk": [14198], "talktalk-labs.com": [15991], "njbba2csg.bloomberg.net": [2132], "readby.me": [2024], "goodpo.in": [2024], "my.unit4.com": [22378], "mmtc.co": [2024], "labelsbythesheet.com": [9143], "crifere.com": [2024], "fere.co": [2024], "www.chipland.hu": [3090], "static-hw.xvideos.com": [22660], "ipredator.se": [7808], "jhnthn.co": [2024], "ologie.co": [2024], "opengroup.org": [16278], "www.nhattao.com": [11416], "fm.cnbc.com": [2645], "amerika21.de": [994], "reda.io": [2024], "on.empreggo.com": [2024], "mtn.bz": [2024], "marsstaticcdn.jpl.nasa.gov": [10909], "ri12.tk": [2024], "scur.me": [2024], "www.workplacegiving.co.uk": [18533], "zrg.ca": [2024], "www.openmailbox.org": [11991], "ntbn.nl": [2024], "suna.co": [2024], "nickfro.st": [2024], "halogenuseradmin.dft.gov.uk": [19825], "users.isy.liu.se": [9097], "secure.kagi.com": [8781], "m.rockstargames.com": [13997], "avangate.com": [1464], "blog.fig.co": [5768], "d2.sinaimg.cn": [14910], "*.newdream.net": [11328], "j2int.co": [2024], "exchange.thepensionsregulator.gov.uk": [22173], "m.akbars.ru": [19128], "go.booty.lv": [2024], "ac-rc.org": [2024], "jslink.it": [2024], "engadget.com": [5248], "support.ourlocality.org": [12177], "*.adsmarket.com": [10088], "redirect.1and1.com": [69], "www.aff.biz": [741], "mwny.co": [2024], "brdfrd.com": [2024], "mktne.ws": [2024], "vgnx.co": [2024], "teachable.com": [22104], "listener.co.nz": [9464], "cdn.rns.online": [21658], "m.ceviri.yandex.com.tr": [18740], "schuelervz.net": [14429], "lfto.tk": [2024], "www.diagonalperiodico.net": [4429], "www.leadin.com": [20794], "www.kei.pl": [8856], "turm.us": [2024], "gta.digitale-diathek.net": [4490], "oaweixin.unionpay.com": [17281], "www.special-trade.de": [15309], "bedd.tk": [3536], "static3.symanteccloud.com": [15780], "rezdy.com": [21645], "paperspace.com": [21342], "on.rclazo.com": [2024], "ul.to": [3945], "static.corsair.com": [3688], "s.sora-1.net": [2024], "bradlemon.me": [2024], "pay.tkbbank.ru": [16583], "sbrf.ru": [14383], "video41.0xdb.org": [10], "css-hx.newjobs.com": [11358], "www.selectricity.org": [14627], "investor.google.com": [6818], "educacion.unizar.es": [17441], "www.dataquest.io": [4176], "pclick.yahoo.co.jp": [18730], "w.patelaxay.com": [2024], "go.educipta.com": [2024], "l.rcty.in": [2024], "archbang.org": [1188], "*.bpt.me": [2383], "wunderkraut.fi": [18573], "despora.de": [4381], "r24625176.sync.app.asana.com": [1265], "www.xcom.com": [117], "www.rya.nc": [14109], "sher.so": [2024], "www.citmedialaw.org": [4036], "manage-v53.smartadserver.com": [15049], "da.getsatisfaction.com": [6601], "emergencytool.cancer.gov": [2819], "i.bankuralsib.ru": [1677], "rootcolo.com": [2024], "id.unity.com": [17310], "www.vbrr.ru": [17668], "09.rkn.gov.ru": [13971], "files.cheapies.nz": [19566], "idp.nottingham.ac.uk": [11567], "secure.alumni.georgetown.edu": [6531], "eaps.lcsd.gov.hk": [7067], "appj.mp": [2024], "srvyr.com": [2024], "wvrm.nl": [2024], "cloud.tech-recipes.com": [16073], "farmanager.com": [5650], "krazy.me": [2024], "mygirlfund.com": [10808], "stalkr.net": [15437], "news.unicef-irc.org": [17064], "logo.www.sogou.com": [15168], "*.33across.com": [137], "bel.europaplus.ru": [20034], "www.spacepolicyonline.com": [15274], "bidsystem.com": [653], "www.ipay.uillinois.edu": [17034], "api.vistumbler.net": [13605], "ecomm.vendercom.com": [17692], "lylep.me": [2024], "www.drawingbynumbers.org": [4740], "*.scania.com": [14395], "biblioteca.ourproject.org": [21314], "bizx.info": [19396], "adtu.co": [2024], "img08.mifile.cn": [10411], "thech.ca": [2024], "umcareer.center": [2024], "securityblog.redhat.com": [13735], "www.vouchercloud.com": [22501], "dn-img3appinn.qbox.me": [13344], "lounge.automattic.com": [1452], "learn.seedrs.com": [14614], "mybenefitscalwin.com": [10791], "secure4.coveritlive.com": [3732], "commons.lbl.gov": [9079], "riccilab.stanford.edu": [15448], "www.new.ksk66.ru": [20759], "cof.red": [2024], "www.buergerkraftwerke.at": [18376], "cdmf.co": [2024], "englisch.sueddeutsche.de": [15641], "xerxes.calpoly.edu": [2764], "lbt.yanao.ru": [22665], "dd-wrt.com": [4009], "www.bitcurex.com": [2011], "2r642x1gmxtambn0yhte8fn0gyudxk9qgun37f28.ipleak.net": [20571], "www.visaeurope.es": [17847], "ccboi.se": [2024], "instagav.in": [2024], "clayte.ch": [2024], "s7.mt-cdn.net": [9812], "wsldocs.sos.wa.gov": [14215], "actvl.mp": [2024], "touch.vg.no": [17569], "www.enphaseenergy.com": [5271], "datadepot.hscic.gov.uk": [20435], "static.tvtropes.org": [15955], "advokat.kavkaz-uzel.eu": [20693], "support.ustream.tv": [17536], "stell.in": [2024], "onlime.lostfilm.tv": [20876], "www.waymoot.org": [18108], "wana.run": [2024], "triodos.nl": [16816], "c.ymcdn.com": [18711], "nvtr.it": [2024], "www.perfectaudience.com": [12591], "iaoc.ietf.org": [7725], "thegreatcourses.com": [16269], "abeagle.buzzfeed.com": [2489], "thsa.co": [2024], "ams2.bohoomil.com": [2196], "jstcg.jd.com": [8434], "bgbl.us": [2024], "pxlws.link": [2024], "*.cloudimage.io": [3305], "biotech.inbre.alaska.edu": [17324], "kuno.co": [2024], "www.telecolumbus.com": [16138], "fs6.formsite.com": [20139], "istbf.co": [2024], "*.att.com": [424], "*.water.org": [18096], "webgo24.de": [18162], "tixs.ee": [2024], "travelfr.ee": [2024], "www.foreignaffairs.com": [6003], "jdmdonline.biomedcentral.com": [1931], "hotkitchen.co": [2024], "assets0.redbubble.net": [13721], "0.lastpass.com": [9175], "jlb.oxfordjournals.org": [12222], "islamreligion.com": [8371], "plkids.tv": [2024], "gcm.so": [2024], "diigo.com": [4502], "unblocked.li": [17237], "mizoapk.in": [2024], "tipp.fm": [2024], "ssnake.me": [2024], "u9.hitravel.xyz": [2024], "penezenka.blesk.cz": [2088], "mvaltas.com": [2024], "www.sportisimo.com": [14223], "cntr.ca": [2024], "fatandhandso.me": [2024], "plantare.ourproject.org": [21314], "login.naukri.com": [11146], "landalskilife.fr": [18578], "elpa.gnu.org": [6337], "www.csrsupport.com": [2691], "img.ebyrcdn.net": [5036], "*.ccczh.ch": [19529], "tlglife.in": [2024], "mrblesbra.in": [2024], "clp.com.hk": [2636], "www.cornerstone.wustl.edu": [18089], "ja.crowdin.com": [3823], "msve.me": [2024], "content.govoritmoskva.ru": [20298], "www.skyscanner.ie": [15006], "thefe.st": [2024], "marktplaats.nl": [10034], "nossenateurs.fr": [21163], "flattr.net": [5888], "g9.hitravel.xyz": [2024], "www.wildarchives.com": [18392], "promotions.drweb.com": [4776], "www.jisc.ac.uk": [8591], "cdn-www.demandstudios.com": [4326], "tondel.li": [2024], "r-itx5.sascdn.com": [15049], "dad.camp": [2024], "www.asus.com": [417], "affiliates.roblox.com": [13980], "gmx.sg": [6330], "smdaysd.co": [2024], "intern.nasa.gov": [10909], "www.fredericia.dk": [6093], "answers.microsoft.com": [10396], "aftv.ga": [2024], "laad.in": [2024], "login.ezproxy.lib.rmit.edu.au": [13496], "www.citeulike.org": [3170], "wosign.ssllabs.com": [14243], "order.mysecureconnect.com": [10828], "blog.status.io": [21983], "hightown.verseone.com": [22445], "bco.vtb24.ru": [22512], "buslanepayments.newcastle.gov.uk": [11355], "expresscoin.com": [5508], "investigativegenetics.biomedcentral.com": [1931], "celldiv.biomedcentral.com": [1931], "vns.moe": [2024], "rc-edit.biglion.ru": [19375], "www.rage3d.com": [13586], "ems.southampton.gov.uk": [15259], "panax.net": [12384], "community.appcelerator.com": [1144], "marketplace.secondlife.com": [14527], "l.unomaha.edu": [2024], "assets2.roadtrippers.com": [21659], "riga.usembassy.gov": [22406], "lnk.vanisaac.nl": [2024], "arvi.cc": [2024], "220volt.hu": [96], "www.cypouz.com": [3979], "4di.co": [2024], "r24820244.sync.app.asana.com": [1265], "bryton.news": [2024], "vindico.com": [17805], "www-norigin.flypeach.com": [20126], "sv.libreoffice.org": [9327], "mrf.la": [2024], "doc.sourcemod.net": [21907], "forhisfa.me": [2024], "www.homeless.org.uk": [20398], "ohardt.us": [2024], "1time.aero": [86], "pouget.indymedia.org": [8090], "adrw.me": [2024], "static.amediateka.ru": [19186], "cdn.thinksteroids.com": [9750], "jodel-app.com": [8620], "invent.ge": [2024], "u.mqx.ninja": [2024], "mytest.pochtabank.ru": [12876], "cmb.ornl.gov": [11730], "drexe.lu": [2024], "apply.7-eleven.com": [227], "newsroom.t-mobile.com": [15837], "halsnaes.dk": [7166], "ns2.ipleak.net": [20571], "toaster.mysql.cesky-hosting.cz": [19553], "oisc.homeoffice.gov.uk": [20399], "bostonglobe.com": [2253], "www.nimh.nih.gov": [11090], "truefactor.io": [16845], "trip.taobao.com": [16015], "gsnnso2.nso.ru": [21192], "go.evetos.com": [2024], "chp.click": [2024], "sncs.io": [2024], "volume.vox-cdn.com": [17939], "www.mountainview.gov": [3193], "www.business.leeds.ac.uk": [17403], "wizx.co": [2024], "incontri.tiscali.it": [16572], "www.bkk-advita.de": [1550], "plantsolution.od1.vtiger.com": [17959], "go.evan.co": [2024], "plugins.piwik.org": [12768], "mt30com.duoshuo.com": [19906], "www.alandroidnet.com": [822], "sh.fmauk.org": [2024], "beta.infinum.co": [20526], "menssquash.clubs.bucknell.edu": [2406], "z.gert.is": [2024], "russian.dushanbe.usembassy.gov": [22406], "ipswich.gov.uk": [8348], "www.adactio.com": [603], "l.gwrelay.org": [2024], "img.20mn.fr": [94], "dev_rpgmakerweb.degica.com": [3333], "helpdesk.martinus.cz": [10044], "www.tribalhosting.net": [16800], "s5.sinaimg.cn": [14910], "app.svnlab.com": [14266], "chiros.us": [2024], "qdr.io": [2024], "developers.yubico.com": [18835], "thepiratebay.eu.com": [22174], "plans-review.stanford.edu": [15448], "www.esad.ulaval.ca": [17319], "svnweb.freebsd.org": [6097], "aiuto.computer": [2024], "www.undergraduatecouncil.wustl.edu": [18089], "gzr.zr.ru": [22725], "security-portal.cz": [14582], "www.trialfunder.com": [16797], "jolicloud.com": [20649], "www.palmetto.com": [12376], "en.itao.com": [20598], "s2.ssl.qhimg.com": [13347], "www.traxarmstrong.com": [16777], "checkout.cias.rit.edu": [13493], "www.dof.dk": [4623], "143.tocco.ch": [16600], "i-ca.pe": [2024], "endo-us.link": [2024], "community.mediamarkt.de": [20949], "icaro3.ual.es": [17162], "classes.usc.edu": [17366], "abetter.mn": [2024], "*.www.filmthreat.com": [5790], "mhmgrl.com": [2024], "www4.shropshire.gov.uk": [21819], "apschedule.com": [395], "*.vdopia.com": [17672], "www.webhost4life.com": [18163], "go.siadlak.com": [2024], "webchat.freenode.net": [20164], "www.bobafamily.com": [2188], "catalog.umd.edu": [17351], "hlgn.tv": [2024], "www.browserleaks.com": [2388], "www.veracode.com": [17703], "joeas.tn": [2024], "casa.hku.hk": [20387], "affiliate-program.amazon.com": [960], "userfox.com": [17518], "grftn.in": [2024], "*.napoleonmakeupacademy.com": [11074], "www.youtube.com.es": [18800], "fidh.org": [5561], "go.she.com": [2024], "*.openrightsgroup.org": [12054], "gixen.com": [6675], "support.gravity4.com": [6885], "shopping.udn.com": [17020], "r24625134.sync.app.asana.com": [1265], "democrats.org": [4338], "www.moslenta.ru": [21022], "fri-gate.org": [20174], "bfzr.de": [2024], "magni.in": [2024], "help.tune.com": [22309], "stlexp.at": [2024], "www.pbhs.com": [12241], "investors.demandware.com": [4329, 4331], "mitu.la": [2024], "*.poczta.home.pl": [7475], "hoodfamo.us": [2024], "du.ignud.de": [2024], "cdn.synapsepay.com": [22066], "secure2.sextoyclub.com": [21794], "www.intenseschool.com": [8223], "www.afip.gob.ar": [19105], "cdn1.talkingpointsmemo.com": [15996], "global.duke.edu": [4791], "www.socialboxusa.com": [15123], "admissions.plymouth.gov.uk": [21442], "store.edgerunner.com": [5072], "make.opendata.ch": [21270], "lists.wikimedia.cz": [18388], "www.paypal-forward.com": [12501], "bett.to": [2024], "uruguay.usembassy.gov": [22406], "gigs.ky": [2024], "listento.direct": [2024], "ac.qidian.com": [13349], "s2k.it": [2024], "www.shaunlorrain.com.au": [14747], "m.wustl.edu": [18089], "recenzie.sme.sk": [14198], "www.jenkins.io": [20638], "www.doomwiki.org": [4677], "r24820174.sync.app.asana.com": [1265], "abudhabi.usembassy.gov": [22406], "ehoiva-fi.directo.fi": [19925], "hwreg.environment-agency.gov.uk": [20006], "s6.postimg.org": [13024], "theu.be": [2024], "www.sumtel.ru": [22031], "www.supagro.fr": [22036], "app.simpli.fi": [14892], "soloma.net": [2024], "grewis.me": [2024], "openid.aol.com": [380], "enliken.me": [2024], "upload.showapi.com": [21815], "rptag.us": [2024], "no.neuvoo.com": [21118], "degoosta.club": [2024], "shortluke.ml": [2024], "*.ign.com": [7733], "7dtv.nl": [2024], "mibi.mi.com": [10361], "*.akb.ch": [20683], "www.your-file-system.com": [18811], "rya.nc": [14109], "iptv.canaldigital.dk": [2817], "mall.taobao.com": [16015], "form.ms.yahoo.co.jp": [18730], "wm.axonify.com": [1502], "mitlie.be": [2024], "efrr.sfc.hk": [14706], "gurw.in": [2024], "selct.de": [2024], "ol.iver.ws": [2024], "mbiz.co": [2024], "cooperazione.ch": [3646], "order.1and1.ca": [70], "conversionruler.com": [10013], "l8p.ru": [2024], "passport.bilibili.com": [1904], "partners.magento.com": [9868], "1.vgc.no": [17569], "dmoz.org": [4589], "pouet.net": [21473], "links.leloop.org": [9206], "crrck.com": [2024], "developers.arcgis.com": [1186], "storage-file-eu.gmx.com": [6330], "bclv.it": [2024], "newsroom.firstdirect.com": [20111], "eg.card24h.info": [2024], "dsft.co": [2024], "wiki.piratpartiet.no": [12758], "katzporn.in": [8836], "bitnodes.21.co": [95], "blockchain-status.com": [19409], "jlbcsdp.com": [2024], "pic002.cnblogs.com": [19631], "*.vertriebsassistent.de": [17730], "go.runicgam.es": [2024], "techhouse.org": [16077], "1337x.org": [43], "www.edwardtufte.com": [5092], "hairsaff.co": [2024], "stream-now.cf": [2024], "icloud.com": [20461], "whsky.me": [2024], "jen.is": [2024], "www.youtube.ma": [18800], "login.ashampoo.com": [1273], "j.mjrredfox.org": [2024], "www.wyzant.com": [18580], "job.o.qcloud.com": [13346], "www.zentralbahn.ch": [22715], "www.xenomai.org": [18654], "1pc.club": [2024], "cryptoins.com": [3865], "webmail.telus.net": [16174], "dms.vdv.de": [17564], "*.coxbusiness.com": [3736], "des.fnal.gov": [5741], "unisend.com": [17288], "mzp.io": [2024], "idg.me": [2024], "edwar.de": [2024], "rateyourlocalservice.co.uk": [21587], "pdn.im": [2024], "www.airbnb.fi": [793], "mctr.st": [2024], "cuteness.com": [19744], "www.dnuk.com": [4468], "www.resortpro.net": [13868], "www.airbnb.fr": [793], "id.marketwatch.com": [10029], "c.speedtest.net": [15330], "14ulux2ganb7z5heejbd3se2uhezpb3plksr7f3d.ipleak.net": [20571], "opensource.org": [12056], "l.paos.org": [2024], "smesh.co": [2024], "www.bathnes.gov.uk": [1715], "sugarsync.com": [15648], "goto.dj": [2024], "ballou.se": [1657], "www.cvimellesgriot.com": [2706], "czr.fm": [2024], "www.2345.com": [98], "box.wustl.edu": [18089], "fsaregistration.ed.gov": [4881], "www.ehs.wustl.edu": [18089], "emuz.us": [2024], "www.evga.com.tw": [4978], "ww691.smartadserver.com": [15049], "scrl.in": [2024], "fcpablog.com": [5549], "citra-emu.org": [19597], "hrnt.jhu.edu": [16370], "2disney.us": [2024], "www.jonathanmayer.org": [8638], "txpod.net": [2024], "www.winehq.org": [18442], "promo.untangle.com": [17454], "pt.foursquare.com": [6061], "www.sourcegraph.com": [15250], "connect.ohiobar.org": [11800], "ciotti.cc": [2024], "www.sharesix.com": [14729], "opera.yandex.kz": [18743], "bst5.gismeteo.ru": [6650], "jdsk.io": [2024], "tntra.co": [2024], "vocoll.com": [22486], "ss3.bdstatic.com": [19339], "static.edeka.de": [19953], "www.iosco.org": [7785], "mapc.ma": [2024], "s.ppjol.net": [13080], "geoclub.de": [6528], "bataysk-gorod.ru": [19326], "jabjab.de": [8482], "service1.ulule.com": [17224], "m.yr.no": [22699], "bit.telomero.mx": [2024], "try.gogs.io": [20280], "mogointeractive-insight.adsrvr.org": [688], "oper.cc.ntu.edu.tw": [11010], "web.aexp-static.com": [729], "redports.org": [13758], "digipaper.fi": [10154], "directplus.bl.uk": [2358], "eforms.wakefield.gov.uk": [22518], "ffrd.ml": [2024], "m.sn.imhd.sk": [8004], "kalmykia.sledcom.ru": [21858], "search.nadir.org": [11049], "my.fandrip.com": [2024], "*.hotwire.com": [7567], "wikidot.com": [18387], "incites.thomsonreuters.com": [16456], "zealdocs.org": [22711], "www.unicefusa.org": [17070], "h.prendho.com": [2024], "dgt-hi.in": [2024], "r.ippl.it": [2024], "saba.com": [21710], "secure.sipgate.de": [14924], "www.searchcloudcomputing.de": [16083], "h0p.to": [2024], "omicron.at": [11671], "www.bafu.admin.ch": [22061], "genbank.ru": [6506], "www.roses.cbsm.at": [8782], "www.direct123.fi": [4510], "www.philshobbyshop.com": [12658], "lilumbrel.la": [2024], "www.proxy.sh": [13225], "www.flynet.by": [20125], "xynz.co": [2024], "fastlane.nsf.gov": [11098], "ehosting.ca": [5106], "www.fee.org": [5555], "www.giftcloud.com": [20244], "video36.0xdb.org": [10], "lists.entropia.de": [20004], "news.zuji.com.hk": [19021], "www.ony.ru": [21262], "1l-view.mail.ru": [9891], "onlineadmissions.northyorks.gov.uk": [21161], "hcwa.it": [2024], "cdn.sunglasswarehouse.com": [15666], "badge.facebook.com": [5609], "www.1and1.co.uk": [71], "tobolsk.admtyumen.ru": [19082], "www.adblockplus.org": [616], "blufiles.storage.msn.com": [9810], "www.hostbaby.com": [7515], "vjam.es": [2024], "pocarl.es": [2024], "rutgers.edu": [14103], "histry.us": [2024], "agency.coastcapitalsavings.com": [3335], "www.cheatography.com": [19567], "*.jboss.org": [8429], "www.thetrainline.com": [16317], "ap236.ca": [2024], "videogamegeek.com": [17772], "siteuptime.com": [14942], "www.digwebinterface.com": [19839], "crtcatalogs.com": [2024], "l.rnbk.org": [2024], "summerhumanities.stanford.edu": [15448], "cdn.torlock.com": [16640], "adfs1.vancity.com": [17643], "go.manheim.com": [2024], "go.saraygio.com": [2024], "www.editola.com": [5076], "nominet.uk": [21151], "portal.sans.org": [14128], "d-r.us": [2024], "agilei.se": [2024], "ymkn.us": [2024], "laneros.co": [2024], "cathaypacific-campaign.com": [2913], "french.benin.usembassy.gov": [22406], "bicomsystems.com": [19371], "m.nic.ru": [11419], "later.al": [2024], "*.desire2learn.com": [4377], "static-assets.metartnetwork.com": [10320], "klik.ki": [2024], "undergraduatecouncil.wustl.edu": [18089], "halcyon.sh": [7161], "planetromeo.com": [12802], "sales.liveperson.net": [9505], "*.visitorboost.com": [1490], "assets.yumpu.com": [18837], "ily.fr.nf": [2024], "cms.hipercor.es": [7418], "cp.atlas.sk": [19269], "bua.memberdirect.net": [10265], "img.spog.ga": [2024], "go.withjuan.com": [2024], "chat.rshb.ru": [14059], "www.bukkit.org": [19470], "www.bl.uk": [2358], "moer.link": [2024], "ajs.io": [2024], "fallout4.com": [5632], "*.clickfuncasino.com": [3260], "*.puhkaeestis.ee": [13266], "media.gexpro.com": [6605], "eushop.discogs.com": [4529], "looove.it": [2024], "hvyhvy.co": [2024], "eoszak.me": [2024], "sureup.us": [2024], "*.zeroc.com": [18940], "iac.ac": [2024], "blog.doublerobotics.com": [4706], "apns.atechmedia.com": [428], "qualtrics.com": [13382], "primorskiy-kr.beeline.ru": [1778], "ex10.biz": [5459], "www.uvpn.de": [22338], "gocoo.gs": [2024], "hipos.co": [2024], "secure.commonground.convio.com": [3632], "*.craftstats.com": [3749], "ecentre.spdbccc.com.cn": [21926], "webmail.sfu.ca": [14708], "8.dbstatic.no": [19775], "sobitia.ya.ru": [18716], "kirov.rt.ru": [13529], "www.porteus-kiosk.org": [12982], "at.kjmp.co": [2024], "www.apotea.se": [1129], "www.freesnowden.is": [6126], "qult.co": [2024], "go.tess.ec": [2024], "lists.opendnssec.org": [11970], "blog.shopstyle.com.au": [14780], "cykloteket.se": [3973], "fausti.me": [2024], "myaccount.hightownha.org.uk": [20375], "bistudio.com": [2195], "rs.mail.ru": [9891], "s.holist.de": [2024], "noavg.me": [2024], "rckf.sh": [2024], "passports.gov.au": [1423], "slouken.libsdl.org": [9305], "bdnpull.bangorpublishing.netdna-cdn.com": [1667], "hornbach.nl": [7504], "catersnews.com": [2911], "lkmart.com.au": [9101], "photos.meetme.com": [10224], "harmreductionjournal.biomedcentral.com": [1931], "cnqr.us": [2024], "byhendrikus.com": [2024], "autodiscover.ex.sportmaster.ru": [21944], "kryptronic.com": [9035], "dsgnlal.us": [2024], "*.conversionruler.com": [10013], "ntst.umd.edu": [17351], "www.oyoony.at": [21329], "zenmate.com.pa": [18917], "hcw.io": [2024], "nemlog-in.dk": [11184], "signup.claranet.de": [3212], "watch.yandex.com.ua": [18741], "feedback.yandex.com.tr": [18740], "*.realtidbits.com": [13691], "*.azhca.org": [440], "on.postem.in": [2024], "tbbl.biz": [2024], "tiffhuang.me": [2024], "publicacionesoficiales.boe.es": [1563], "reliableisp.net": [13816], "forgedgame.history.com": [7422], "unionpacific.jobs": [22375], "m.taxi.ya.ru": [18716], "belive.ru": [19351], "www.axeso5.com": [1499], "*.rollingstone.com": [14014], "i9.piimg.com": [16509], "1ts.at": [2024], "s.hgtv.ca": [2024], "support.ktk.bme.hu": [1556], "ldz.com.au": [2024], "www.hertz247.fr": [7344], "minifree.org": [20988], "logon.hjv.dk": [7440], "ntqt.cm": [2024], "www.blackbaud.com": [2067], "hardware.srad.jp": [21956], "ad.dc2.adtech.de": [691], "weese.me": [2024], "despeck.be": [2024], "oneweb.cz": [11684], "track.stubhub.com": [15602], "gztt.ca": [2024], "beta.lewrockwell.com": [9293], "r2d.to": [2024], "anapa.tpprf.ru": [22260], "recsports.osu.edu": [11797], "tindie.com": [16546], "www.catalog.yandex.by": [18739], "www.rub.de": [13539], "rap.tnsglobal.com": [15906], "shili.1688.com": [51], "dant.co": [2024], "addme.io": [2024], "www.upi.com": [17085, 17086], "ternopil.unian.ua": [22369], "pcdiy.asus.com": [417], "rvrb.us": [2024], "www.manitu.net": [9965], "osir.mx": [2024], "jncimono.oxfordjournals.org": [12222], "62.rosminzdrav.ru": [21674], "myaccount.newcastle.gov.uk": [11355], "forums.web4all.fr": [18148], "fastsoft.com": [5664], "2.booklink.me": [2214], "benefitsu.stanford.edu": [15448], "root.lerelais.org": [9205], "api.instagram.com": [8182], "aresu.dsi.cnrs.fr": [6174], "flukers.me": [2024], "l.21zoo.com": [2024], "www.dizzcloud.com": [4579], "www.trustwave.com": [16870], "hidemyass.com": [7399], "inspectlet.com": [8176], "fu-k.it": [2024], "www.public.surreyheath-online.gov.uk": [22041], "joslin.org": [8648], "kcbooks.us": [2024], "apps.xo.com": [18623], "jesuiten.info": [2024], "umeahackerspace.se": [17228], "drivee.ne.jp": [4759], "m.blogs.yandex.kz": [18743], "mer.io": [10291], "forums-stage.oracle.com": [12116], "version6.edeveloperz.com": [4891], "www.upc-cablecom.ch": [22386], "www.hertz.no": [7356], "openwebrtc.org": [21282], "xrhyth.ms": [2024], "ndoch.govspace.gov.au": [6851], "smirnyh.sakh.com": [21719], "eagereyes.org": [19930], "bnjmn.pw": [2024], "angus.tips": [2024], "racked.com": [13557], "b2b.goodline.info": [20288], "service.rapida.ru": [13619], "policy.stonybrook.edu": [15548], "www.kmh.se": [8755], "*.zpcdn.com": [19009], "www.nest.com": [11205], "hiphops.link": [2024], "s.n0t.net": [2024], "out.exxica.com": [2024], "hhotmail.play-asia.com": [12828], "qhne.ws": [2024], "narri.tv": [2024], "www.wunderkraut.fi": [18573], "hbuk.co": [2024], "hk.norton.com": [11545], "link.srce.hr": [2024], "heliny.com": [7290], "cmxl.gy": [2024], "telltalegames.com": [16168], "www.bancomer.com": [1526], "jews.tl": [2024], "myaccount.avira.com": [1474], "dock2.beget.com": [19347], "tchak.link": [2024], "globalsign.co.*": [6700], "plen.tl": [2024], "logicbox.es": [2024], "bolshoy-chemodan.friday.ru": [20175], "lukesn.me": [2024], "s65.cnzz.com": [3328], "kenexagovernmentsolutions.com": [8863], "rsf.org": [13844], "imba.gl": [2024], "www.ico.gov.uk": [17041], "wrkw.me": [2024], "test.commentarymagazine.com": [3481], "rdlt.uk": [2024], "mintel.tv": [2024], "web.williams.edu": [18408], "stats.lineageos.org": [9384], "i.money.163.com": [49], "mushro.ms": [2024], "pcn.cityoflondon.gov.uk": [3192], "www.migros-ferien.ch": [10415], "dihrd.me": [2024], "smpl.li": [2024], "forms.ceredigion.gov.uk": [2972], "i.darjeelin.fr": [4141], "authd.me": [2024], "live.maxdome.de": [10106], "*.symlynx.com": [15784], "openvpn.net": [12024], "www.openeffect.ca": [21272], "facultyappts.stanford.edu": [15448], "connect.agariomods.com": [764], "index.about.com": [19043], "gmmeocsi.tnsglobal.com": [15906], "forum.appuio.ch": [1168], "www.bittorrent.org": [2046], "*.tibco.com": [15882], "gr.contrainfo.espiv.net": [20021], "miffl.in": [2024], "j.paydirekt.de": [12506], "wallet.btcs.com": [1585], "www.Tunnelbear.com": [16904], "r-tmk.sascdn.com": [15049], "m.southwark.gov.uk": [15264], "www.xfce-help.org": [18601], "das-foerderprogramm.adelphi.de": [635], "ww400.smartadserver.com": [15049], "prtnrs.us": [2024], "www.evoliatis.com": [5455], "gpoa.in": [2024], "qzonestyle.gtimg.cn": [6974], "wiki.desmume.org": [4232], "fshp.co.uk": [2024], "scfne.ws": [2024], "3ds.otpbank.ru": [12165], "papakaya.com": [12407], "my.internet.beeline.kz": [19345], "barabinsk.startsmile.ru": [21980], "www.softnik.com": [21890], "rum.wpm.neustar.biz": [11320], "ela.eset.com": [5347], "wcip01.hkjc.com": [20384], "www.securecerts.ie": [4499], "www.akamai.com": [806], "34.mvd.ru": [21055], "freedom-leisure.co.uk": [20158], "mansursolar.com": [2024], "gf.biligame.com": [1903], "zoho.com": [18984], "wrongplanet.net": [18566], "the.goldin.gs": [2024], "iwong.us": [2024], "3mi.me": [2024], "umahidol.worldcat.org": [18536], "presite.mediapart.fr": [10194], "link.premia.cat": [2024], "www.5vpn.net": [218], "it.itpro.es": [2024], "playpau.se": [2024], "l.saadh.com": [2024], "suggests.rasp.yandex.by": [18739], "re.ston.tc": [2024], "mkt.report": [2024], "blog.cyberpowerpc.com": [19748], "www-aws.stanford.edu": [15448], "guiad.in": [2024], "alastairs-place.net": [825], "www.aldi-nord.de": [357], "et13.xhcdn.com": [18605], "www.hrsmart.com": [7088], "static.grvcdn.com": [6968], "agsoc.com": [2024], "pop3s.spnet.ru": [21939], "www.clinkle.com": [3268], "tinymbr.com": [2024], "shft.me": [2024], "quarentena.internal.ix.br": [20619], "www.vtb24.ru": [22512], "foris.extranet.sonymobile.com": [15216], "digt.in": [2024], "advising.engineering.osu.edu": [11797], "forum.meo.pt": [10286], "sirinlabs.com": [21836], "blog.websupport.sk": [18253], "lpth.co": [2024], "www.accesspressthemes.com": [504], "openhatch.org": [11979], "js.letvcdn.com": [20817], "netforumpro.com": [11230], "microbialinformaticsj.biomedcentral.com": [1931], "www.zooniverse.org": [19005], "www.webrtc-experiment.com": [18178], "l.ons.to": [2024], "et.4.boardgamearena.com": [2182], "l.prepa.co": [2024], "ciona.in": [2024], "www.pluralsight.com": [21441], "pharmacyschool.usc.edu": [17366], "thecha.pl": [2024], "www.2shared.com": [133], "shields.io": [21801], "clients.openitc.co.uk": [11983], "www.cancerresearchuk.org": [19501], "assets-s3.usmagazine.com": [17503], "www.24ways.org": [104], "highr.es": [2024], "inmais.ml": [2024], "cestiny.idnes.cz": [20483], "support.trakt.tv": [22269], "speed.twistedmatrix.com": [16958], "euro.yuga.ru": [22701], "www.kinox.tv": [20720], "mycp.co.nz": [12067], "irpa.umd.edu": [17351], "scdn.nflximg.net": [11269], "basilisk.aetherflyff.com": [740], "bracknell-forest.objective.co.uk": [21225], "migros-ferien.ch": [10415], "sumologic.com": [15658], "ssi-qm.dwd.de": [19911], "community.asana.com": [1265], "u.pw": [2024], "img.showapi.com": [21815], "litfl.org": [2024], "www.smssecure.org": [14201], "one.umd.edu": [17351], "brilig.com": [2349], "bitmex.com": [1962], "gatchina.startsmile.ru": [21980], "honeynet.org": [20401], "trainingjournal.com": [22268], "trafficsafetymarketing.gov": [16726], "www.cardioscience.ox.ac.uk": [12220], "www.fsfeurope.org": [5592], "bngrp.co": [2024], "ds.static.rtbf.be": [14063], "undrarmr.co": [2024], "makemodules.ning.com": [11454], "www.home.cern": [2588], "l.lumension.com": [2024], "dnews.asia": [2024], "oagaviation.com": [16999], "miracl.com": [20992], "crowd.xenserver.org": [18646], "pic6.58cdn.com.cn": [213], "seedinve.st": [2024], "bonf.im": [2024], "m.hivtest.cdc.gov": [19532], "uadmissions.georgetown.edu": [6531], "vlprrc.co": [2024], "mgo.tpprf.ru": [22260], "jtb.cc": [2024], "www.staatskalender.admin.ch": [22061], "www.twilio.com": [16948], "www.math.ust.hk": [22412], "www.justice.gov.sk": [15037], "paulm.cc": [2024], "www.moneropool.com": [21012], "status.maxcdn.com": [10102], "knf.space": [2024], "b2b.kyivstar.ua": [9067], "mirror.aarnet.edu.au": [278], "promoti.es": [2024], "developerblog.redhat.com": [13735], "hndpt.co": [2024], "jppf.it": [2024], "yahoo-security.tumblr.com": [16897], "spsch.eu": [21950], "avex.io": [2024], "zipindao.youku.com": [18804], "flatkomfort.telefonanschluss.de": [7041], "owasp.org": [11729], "www.schelkovo-net.ru": [21741], "arbitrage.wmtransfer.com": [18173], "m.swag.ly": [2024], "mentorfdn.us": [2024], "secure.newscheckmedia.com": [11381], "yourlocaledge.com": [18821], "openbadges.es.python.org": [13314], "l2ag.com": [2024], "bridget.mp": [2024], "art.inl.gov": [20537], "ld-1.itunes.apple.com": [1151], "www.dynamicweb.it": [4820], "conscious.to": [2024], "jayesh.xyz": [2024], "spkd.us": [2024], "search.ndla.no": [11158], "dash.readme.io": [13668], "worldwildlife.org": [18544], "portal.vzp.cz": [17611], "details.rts.ch": [21957], "aminterest.com": [2024], "notevenpast.org": [11556], "bear.im": [1761], "piwik.omnigroup.com": [11832], "frontend0.savannah.gnu.org": [6337], "burrittlibrary.worldcat.org": [18536], "40.se": [2024], "www.shadowproof.com": [14714], "tfl.to": [2024], "www.leakedsource.com": [9222], "business.upc.nl": [17083], "overdrive.com": [12192], "gibill.va.gov": [17100], "nines.nl": [11453], "www.wmjobs.co.uk": [18006], "forum.1and1.ca": [70], "blog.openttdcoop.org": [12018], "lfay.me": [2024], "clikc.me": [2024], "rms.builders": [2024], "www.edgecast.com": [5070], "img.olx.com.br": [11668], "ctcaho.pe": [2024], "l.rocgaude.com": [2024], "on1.so": [2024], "msccs.cs.hku.hk": [20387], "l.smarks.me": [2024], "localw.in": [2024], "et03.xhcdn.com": [18605], "blogs.rcuk.ac.uk": [13465], "ltl96.tech": [2024], "hnrysc.hn": [2024], "smbgo.co": [2024], "akamp.us": [2024], "webmail09.un.org": [17057], "visitor.constantcontact.com": [3594], "livenation.com.au": [9493], "s.m-w.com": [2024], "webmail.easymail.ca": [5018], "16163.com": [48], "*.bitstamp.net": [2043], "survey.hkupop.hku.hk": [20387], "auctions.yahoo.co.jp": [18730], "www.visaeurope.ch": [17847], "*.pharmgkb.org": [21395], "authserver.mojang.com": [9789], "www.kinotehnik.com": [8924], "*.cert.gov.uk": [2591], "mydistrict.chichester.gov.uk": [19578], "mhdebr.xyz": [2024], "myaccount.ft.com": [5810], "mailman.common-lisp.net": [3487], "casascius.com": [2882], "wahiduddin.net": [18043], "s1.postimage.org": [13024], "six1.co": [2024], "adaptec.com": [610], "api.btcc.com": [2400], "www.thunderclap.it": [16479], "ratgeber-verbraucherzentrale.de": [17706], "stat.difi.no": [4452], "*.faround.net": [5655], "euwfb.adsrvr.org": [688], "kunstundumwelt.umweltbundesamt.de": [17230], "giv.lt": [2024], "go.emmache.com": [2024], "qrnz.me": [2024], "miltonkeynes-consult.objective.co.uk": [21225], "o1.hitravel.xyz": [2024], "atstuff.com": [1360], "tays.wf": [2024], "ashw.ink": [2024], "www.0x539.se": [8], "img8.eadaily.com": [19929], "librarybookings.leeds.gov.uk": [20799], "svy.be": [2024], "mail.netscape.com": [11289], "autodiscover.osu.edu": [11797], "www.tinderfoundation.org": [16545], "chod.zamenej.sk": [2024], "jugendrei.se": [2024], "smili.stanford.edu": [15447], "legal.nodejitsu.com": [11491], "bwbridgesrv.com": [2024], "sho.pe": [2024], "account.billiondigital.com": [1912], "ss12.sinaimg.cn": [14910], "sync.rambler.ru": [13600], "www.sandstorm.io": [14346], "forum.tribler.org": [16804], "r24820168.sync.app.asana.com": [1265], "accordancebible.com": [512], "fatwreck.com": [20077], "wetter.dwd.de": [19911], "www.gay-torrents.net": [6458], "panel.clodo.ru": [19620], "www.railtours.at": [21230], "chiebukuro.yahoo.co.jp": [18730], "forestanders.in": [2024], "deals.cultofmac.com": [3909], "moreal.co": [10629], "merill.at": [2024], "olve.me": [2024], "fisheye.magento.com": [9868], "wllmtt.cc": [2024], "mail.almeshkat.net": [19158], "changemypassword.leeds.ac.uk": [17403], "kelv.in": [2024], "status.parsely.com": [12446], "tpllp.co": [2024], "cloud.aculab.com": [560], "de-sv.dict.cc": [4442], "www.zalando.dk": [18877], "career.teamtailor.com": [16068], "prozeny.cz": [13163], "message.alibaba.com": [857], "library.bury.gov.uk": [19476], "www.zalando.de": [18877], "livephi.sh": [2024], "darius.im": [2024], "www.cecpdonline.org": [2954], "t.ntkstatic.org": [21195], "www.glyph.im": [6736], "red.ldrdg.com": [2024], "ebaum.it": [2024], "grif.gd": [2024], "img.gazeta.ru": [6460], "fondfol.io": [2024], "trip.cmbchina.com": [2639], "*.linguee.nl": [9390], "lkle.in": [2024], "autodiscover.webtrends.com": [18264], "muut.com": [10778], "phos.ph": [2024], "suricata.ideco.ru": [20480], "www.vehbidz.com": [17681], "somethings.msi.com": [9806], "www.discuto.io": [4549], "maha.uno": [2024], "a.prgm.me": [2024], "munchies.com.de": [2024], "l.datapa.com": [2024], "preferences.news.com.au": [11379], "my.medicinec.si": [2024], "cdn.callrail.com": [19493], "inspira.un.org": [17057], "ochssc.org": [2024], "s.scotslass.com": [2024], "app.callrail.com": [19493], "www.dutchdpa.nl": [4806], "affiliates.upickem.net": [17474], "shareholder.com": [14739], "www.refresher.sk": [13781], "www.globaltap.com": [6721], "www.openbank.ru": [21267], "arhomes.us": [2024], "www.zwiebelfreunde.de": [19026], "app.bluecats.com": [2141], "www.freescorenation.com": [6107], "*.shannonhealth.com": [14720], "community.sendgrid.com": [14638], "www.codingteam.net": [3383], "bexley.greenparty.org.uk": [6908], "www.contrastsecurity.com": [19678], "*.artfiles.de": [1256], "www.tunisia-sat.com.tn": [16903], "crew.sc": [2024], "www.ruby-toolbox.com": [14071], "brac.co": [2024], "www.sovrn.com": [21915], "www.learnmyway.com": [9226], "rbth.ru": [14098], "capita.slough.gov.uk": [15036], "*.ovid.com": [12207], "forums.xamarin.com": [18629], "walletgenerator.net": [18056], "ourvacationcentre.net": [18578], "brnd.ws": [2024], "www.slov-lex.sk": [15037], "rk0.eu": [2024], "dlyrob.net": [2024], "www.miga.org": [8258], "it-cube.net": [7841], "adblade.com": [615], "thing.net": [16428], "adnn.cf": [2024], "www.bergenopzoom.nl": [11172], "cbfisap.ed.gov": [4881], "www.exhibition.ecc-platform.org": [4871], "socialscreamer.com": [15133], "www.umweltbundesamt.de": [17230], "itsthevi.be": [2024], "learning.southglos.gov.uk": [15257], "*.yelp.be": [18766], "tracker.tnsglobal.com": [15906], "r24616630.sync.app.asana.com": [1265], "globalreach.com": [20268], "www.uni-hannover.de": [17255], "minkult.astrobl.ru": [19264], "www.geekgirlsguide.com": [6480], "praetorian.com": [13057], "56.kavkaz-uzel.ru": [20694], "blogs.fsfeurope.org": [5592], "xsearch.stanford.edu": [15448], "jobs-stg.jobvite.com": [8616], "google.com.*": [6822, 6824, 6829, 6831], "str4t.gy": [2024], "dnksp.nl": [2024], "thefoundry.co.uk": [16354], "adisc.org": [325], "it.biovendor.cz": [1933], "www.plenti.com": [12852], "www.yieldlab.de": [18774], "www.askahmadiyyat.org": [1285], "normation.com": [11527], "astat.brave.pigg.ameba.jp": [971], "2.odsynth.com": [2024], "discoverja.com": [2024], "www.yourcounciljobs.co.uk": [18825], "fsrio.nal.usda.gov": [17299], "de-bg.dict.cc": [4442], "vmkit.llvm.org": [9103], "webin.csmonitor.com": [19737], "shwds.co": [2024], "*.myheritage.com.il": [10875], "tracker.openitp.org": [11984], "www3.consumer.org.hk": [3599], "r.fco.cc": [2024], "ko.3.boardgamearena.com": [2182], "outofcontrol.ca": [12180], "jupyter.org": [8703], "rbrt.cc": [2024], "nova.li": [2024], "secure.nationalparks.gov.uk": [21089], "www.glassdoor.ca": [20258], "www.gnusocial.de": [6339], "kinyetbna.ml": [2024], "open.ad.yieldmanager.net": [13937], "spamcop.net": [21920], "go.mudunuru.com": [2024], "edp.pt": [4888], "nubi.la": [2024], "pipeline.livingsocial.com": [9530], "13.rkn.gov.ru": [13971], "ccmis.psc.gov": [21528], "www.acluofnc.org": [306], "pcbooking.doncaster.gov.uk": [4672], "sjd.md": [2024], "hscj.ufl.edu": [17340], "speakerdeck.com": [15306], "cp.bluesnap.com": [2150], "mail.wusm.wustl.edu": [18089], "community.wizards.com": [18477], "blgwd.us": [2024], "tortoise.link": [2024], "s.mzstatic.com": [10893], "image.slidesharecdn.com": [15029], "docs.appcelerator.com": [1144], "www.athleticstadium.bedford.gov.uk": [19341], "hipaa.wustl.edu": [18089], "tbo.ly": [2024], "plazakauppa.fi": [12163], "trappl.co": [2024], "www.hesaplabakalim.com": [7372], "dodlive.mil": [17109], "reztrip.com": [13910], "kld.sledcom.ru": [21858], "gftv.us": [2024], "3st.co": [2024], "www.fareham.gov.uk": [5652], "switchnetworks.com.au": [15766], "shr.antonin.us": [2024], "beta.campusmap.wvu.edu": [18306], "patronbase.com": [21358], "*.ucsd.edu": [17012], "kantarlatam.com": [8800], "bossup.us": [2024], "www.swiss.com": [15758], "www.grc.nasa.gov": [10909], "cit.ms": [2024], "www1.youm7.com": [18805], "stage.nature.org": [11141], "www.martinus.cz": [10044], "sno.buzz": [2024], "es.pcisecuritystandards.org": [12253], "www.certdepot.net": [19551], "cabn.co": [2024], "invincea.com": [8318], "groov.link": [2024], "boards.ie": [2185], "2016.gaobase.admin.cam.ac.uk": [17332], "www.altoonamirror.com": [943], "bt.aspr.gr": [2024], "ard.ndr.de": [11159], "www.mediaed.org": [10165], "www.galpon.org": [20198], "vclem.us": [2024], "protectionofminors.georgetown.edu": [6531], "www.zenger.nl": [18927], "radioleaks.se": [13579], "4gifs.com": [6015], "wyzant.com": [18580], "go.maton.com.au": [2024], "islamic-relief.me": [8377], "mydealz.de": [10800], "lokalbokningwebb.slu.se": [14195], "kingdomofloathing.com": [1331], "www.raymond.cc": [13645], "ediholdings.co": [2024], "www.tiggerswelt.net": [16517], "s.s-tatami.info": [2024], "remesla.khabkrai.ru": [20709], "g33kinfo.com": [6276, 6277], "m.gamefaqs.com": [20201], "www.seeks-project.info": [14617], "jigpal.oxfordjournals.org": [12222], "shop.asus.com": [417], "sj.la": [2024], "euserv.de": [4975], "crowdtangle.com": [3820], "www.skylink.sk": [15002], "yuzhno-sahalinsk.startsmile.ru": [21980], "www.vle.cam.ac.uk": [17332], "identitymanagement.uchicago.edu": [17334], "ikk-gesundplus.de": [7752], "jadi.net": [8501], "tode.io": [2024], "s.hoto.me": [2024], "fwal.co": [2024], "linkyb.it": [2024], "*.dhi-scotland.com": [19827], "central.aclufl.org": [297], "anxbtc.com": [373], "a.wspomagam.org": [2024], "www.rheden.nl": [11172], "atechmedia.com": [428], "canlii.org": [2802], "vegfre.sh": [2024], "turnkeylinux.org": [16912], "video11.0xdb.org": [10], "pndq.co": [2024], "b.wpimg.pl": [22621], "webmail.quickline.com": [21566], "go.kylero.se": [2024], "eservices.plymouth.ac.uk": [12873], "www.econda-monitor.de": [5049], "zafcreations.cf": [2024], "www.basekit.com": [19323], "markov.ee": [2024], "pandawhale.com": [12386], "l9.hitravel.xyz": [2024], "hyper.sh": [7649], "gmx.net": [6330], "rtb.adentifi.com": [636], "blog.webplatform.org": [18176], "kristiandill.ch": [2024], "media.0xdb.org": [10], "middleware.internet2.edu": [8277], "saransk.biglion.ru": [19375], "delicate.psc.edu": [12329], "www.webhostingtalk.com": [18135], "idpsir.uned.es": [17248], "ox-d.netline.com": [11281], "bucknell.edu": [2406], "legacy.curseforge.com": [3927], "bnkd.me": [2024], "crm.fsf.org": [5590], "sonos.com": [15210], "www.comviq.se": [3549], "bbnaut.ibillboard.com": [7683], "www.mainlinehobby.net": [9910], "www.yoyogames.com": [22697], "www.ivi.tv": [20610], "oplata.bankuralsib.ru": [1677], "on.ataf.club": [2024], "video.vzaar.com": [17976], "blchr.tv": [2024], "tickets.com": [16499], "bohoomil.com": [2196], "fbrd.link": [2024], "toegr.de": [2024], "*.apache.org": [1119], "banan.jd.com": [8434], "s.clc.tf": [2024], "qlogo3.store.qq.com": [13329], "proxysite.com": [13226], "arabavia.com": [2024], "elektrostal.biglion.ru": [19375], "lhcdashboard.web.cern.ch": [2588], "www.arquetype.org": [1236], "www.blog.documentfoundation.org": [16295], "www.tcd.ie": [16812], "*.unitedsafcu.org": [17298], "votesmart.org": [13186], "webmail.ecom-icom.hku.hk": [20387], "www.g33kinfo.com": [6276, 6277], "tckt.ws": [2024], "suicidepreventionlifeline.org": [15651], "helpdesk.crashplan.com": [3760], "www.bostonbuilt.org": [2251], "www.clever.com": [3239], "jmt.oxfordjournals.org": [12222], "*.bulletinmessenger.net": [2432], "customer.swish.mycelium.com": [21063], "rg.tl": [2024], "metasploit.com": [10335], "help.aliyun.com": [868], "koer.co": [2024], "a5-content.vouchercloud.com": [22501], "lsvr.osu.edu": [11797], "acad.my": [2024], "igualdad.us.es": [17502], "library.eastriding.gov.uk": [5006], "on.bogner.com": [2024], "actv.rs": [2024], "buy.xmarks.com": [18671], "djangogirls.org": [4582], "waimai.meituan.com": [10248], "realas.co": [2024], "wwwq.ipleak.net": [20571], "a.7wbr.com": [2024], "thepiratebay-proxy.com": [22176], "q.dmahajan.com": [2024], "www.austrian.com": [1431], "www.calligra-suite.org": [2769], "forums.atomicorp.com": [1355], "epic.com": [5308], "ptrust.uk": [2024], "bet.us": [2024], "ron.ly": [2024], "booklooker.de": [2222], "trialfunder.com": [16797], "etr.my": [2024], "www.torrentleech.org": [16658], "buinfo.me": [2024], "go.say-z.com": [2024], "ctr.bz": [2024], "mnt.st": [2024], "bmpharmacy.com": [1559], "gaytx.info": [2024], "escrow.com": [5343], "projectodd.ci.cloudbees.com": [19622], "help.it.ox.ac.uk": [17359], "tinydl.com": [16557], "linuxtag.org": [9432], "politicopro.com": [12920], "rb.oxfordjournals.org": [12222], "www.onename.io": [11876], "picture1.cyberport.de": [3966], "www.apprenticeships.scot": [19216], "go.2600.pro": [2024], "c-js.info": [2024], "itbl.es": [2024], "kimbl.es": [2024], "chilebit.net": [3079], "pd.incb.us": [2024], "www.gfi.com": [6303, 20241], "*.nationalacademies.org": [11084], "sf.oxfordjournals.org": [12222], "cambridge.gov.uk": [19494], "act.ucsd.edu": [17012], "status.status.io": [21983], "vpac.org": [17586], "p1.meituan.com": [10248], "*.fullerton.edu": [6233], "puzzlep.ro": [2024], "api.zr.ru": [22725], "lvhb.net": [2024], "mirmed.org": [2024], "g-off.me": [2024], "dl.yennhi.net": [2024], "safe-in-cloud.com": [14286], "loop.tl": [2024], "uv.es": [17544], "glft.co": [2024], "smm.grape.ru": [20303], "tez-tour.gr": [2024], "t6.hitravel.xyz": [2024], "kitesista.media": [2024], "kg.tl": [2024], "*.photobucket.com": [12675], "fuled.tk": [2024], "trucks.autoreview.ru": [19277], "chsv.co": [2024], "www.owncloud.com": [12214], "www.us.adjug.com": [580], "isnic.is": [7828], "bolton.greenparty.org.uk": [6908], "thewatershedresidence.com": [16392], "kinsts.com": [2024], "sexyfunwith.me": [2024], "ma.rcello.com": [2024], "dreampass.jp": [4747], "check1.fsrar.ru": [20181], "wee.re": [2024], "cubet.to": [2024], "chuvashia.tpprf.ru": [22260], "cysh.eu": [2024], "tcol.es": [2024], "my-qa.symantec.com": [15780], "www.mediaroots.org": [20951], "the.shrn.co": [2024], "pureinfo.com": [13284], "fs4.formsite.com": [20139], "4chan-ads.org": [196], "go.voz48.xyz": [2024], "b.alipay.com": [864], "f.1steroids.biz": [2024], "www.comnews-conferences.ru": [3453], "3wh.co": [2024], "4mf.me": [2024], "nationbuilder.com": [11082], "via.kas.ky": [2024], "vasco2.microad.jp": [10377], "mc.vanderbilt.edu": [17647], "i3.hitravel.xyz": [2024], "l.blmx.de": [2024], "bitcoinforum.com": [2004], "cgshed.co.uk": [2024], "www.rosettacode.org": [14023], "www3.bibl.liu.se": [9096], "www.authy.com": [1436], "admin.pipni.cz": [12287], "accounts.aastocks.com": [19037], "mailmax.trustwave.com": [16870], "lvstrng.com": [2024], "capitalone360.com": [2832], "fsualumni.info": [2024], "fsrmedien.htwk-leipzig.de": [7596], "testllwcmlw.barnardos.org.uk": [19316], "www.ita.hsr.ch": [17325], "www.thepiratebay.id": [22174], "bzr.savannah.gnu.org": [6337], "blogs.technet.com": [16095], "qctim.es": [2024], "1abv.co": [2024], "bmwk.me": [2024], "www.staticv.net": [17663], "www.assoc-amazon.de": [1313], "i.360.cn": [142], "www.blogs.uni-mainz.de": [17410], "l.bivab.de": [2024], "stage.beaker-project.org": [1756], "www.comscore.com": [3454], "etracker.de": [5378], "ct4.addthis.com": [626], "king.com": [8912], "www.zrkuban.ru": [22727], "s.hbr.org": [2024], "ikut.in": [2024], "*.thepermitstore.com": [16304], "ashdirect.com": [2024], "api02.newegg.com": [11356], "uparw.com": [2024], "wiki.openmrs.org": [11989], "plugins.longtailvideo.com": [9601], "ndrums.com": [2024], "deena.be": [2024], "kiwibyrd.org": [20728], "www.fafsa.gov": [5541], "www.secureholidays.com": [18579], "viralne.pluska.sk": [12870], "omgrcm.co": [2024], "shef.ac.uk": [17422], "glfs.hk": [2024], "dev.twitch.tv": [16961], "link.suppa.me": [2024], "radiokniga.com": [21572], "*.umu.se": [17229], "dv-zeuthen.desy.de": [4386], "tkwy.st": [2024], "go.mynetx.net": [2024], "www.crondash.com": [19722], "bobwp.us": [2024], "i4.social.s-msft.com": [14114], "convo.im": [2024], "www.hsv.se": [7092], "www.thepiratebay.is": [22175], "store.wpiinc.com": [18548], "ubmail.buffalo.edu": [17382], "mirrorbingo.com": [10481, 10482], "www.happyfoto.de": [7193], "*.powerpay.biz": [13038], "brit.sh": [2024], "ihenow.com": [2024], "news.rusd.org": [2024], "r24820181.sync.app.asana.com": [1265], "anders.com": [1040], "www.cable6.net": [2717], "www.metas.ch": [22061], "www.o2shop.cz": [16141], "www.uptodown.net": [22397], "www.amazon.jobs": [959], "a.hlkbrand.info": [2024], "i.kinja-img.com": [8918], "toolbarbrowser.com": [16628], "xmail.utm.edu": [17426], "softnik.com": [21890], "usukita.org": [17147], "im6.kommersant.ru": [20746], "forum.mindfactory.de": [10448], "www.sapo.pt": [14131], "imdb-mov.ml": [2024], "visitormotion.com": [5378], "www.mailoutinteractive.com": [9904], "dev.springer.com": [15380], "owncloud.aktivix.org": [815], "au.topshop.com": [22238], "pdsb.me": [2024], "rajce.idnes.cz": [20483], "ponthi.eu": [2024], "aveda.cm": [2024], "wmail1.cc.ntu.edu.tw": [11010], "www.upatient.com": [17091], "jrblz.info": [2024], "www.campinaopschool.nl": [2797], "fsn.link": [2024], "sp.auth.adobe.com": [669], "bh-p.co": [2024], "zlrahk.com": [2024], "form.mbank.pl": [9733], "ivo.me": [2024], "wlmart.ml": [2024], "eoffice.east.spu.ac.th": [14224], "ada.fyi": [2024], "akimovka.o3.ua": [21219], "deptarif.49gov.ru": [187], "tripwire.me": [2024], "psk.io": [2024], "snapengage-5.wpengine.netdna-cdn.com": [15091], "www.wweek.com": [18404], "*.lttng.org": [9119], "*.harriscomputer.com": [7204], "wheel.sk": [18333], "citservices.med.wustl.edu": [18089], "mftr.org": [2024], "wmp.ssusa.org": [21965], "cdorg.fnal.gov": [5741], "www.matsuev.com": [4348], "popmodels.cancercontrol.cancer.gov": [2819], "pc-t.in": [2024], "m9th.us": [2024], "advantagemedia.com": [702], "scipy.org": [14437], "buy.malwarebytes.com": [9940], "www.projectmeshnet.org": [13185], "examine.com": [5468], "www.odmwheels.com": [11653], "i1.social.s-msft.com": [14114], "r.josephc.in": [2024], "www.alfa.cz": [848], "www.rare.us": [13624], "commotionwireless.net": [3498], "ort.fi": [15675], "www.store.economist.com": [5052], "mintrans.nso.ru": [21192], "s.jce.io": [2024], "app.asana.com": [1265], "cleverbridge.org": [3241], "megaphone.fm": [20958], "sttscp.com": [2024], "xtopher.us": [2024], "www.linshunghuang.com": [9376], "go.bmi.com": [2024], "tamu.edu": [16227], "espo.nasa.gov": [10909], "kontakt.amnesty.se": [1016], "forums.dayz.com": [4225], "support.iraiser.eu": [8350], "www.kannz.com": [20682], "ss-download.co": [2024], "nytsg.jd.com": [8434], "r24617991.sync.app.asana.com": [1265], "philmat.oxfordjournals.org": [12222], "ufcfit.com": [17023], "joomla-security.de": [20651], "ja.net": [8426], "www.mercyships.org.s3.amazonaws.com": [10303], "ryto.gr": [2024], "sdr.io": [2024], "www.casperogfrank.dk": [2896], "www.unity3d.com": [17310], "my.com": [10788], "globalsiste.rs": [2024], "app-uk1.resrc.it": [13659], "biology.georgetown.edu": [6531], "www.gwent.police.uk": [7017], "shop.amnesty.de": [1004], "dwolla.com": [4809], "www.raur.co": [13458], "t-it.us": [2024], "clientupdate-v6-aws.cursecdn.com": [3927], "didntdo.it": [2024], "www.data.nasa.gov": [10909], "fr2.rpmfind.net": [14055], "s.funrun.com": [2024], "egg.alipay.com": [864], "www.tunisia-sat.com": [16903], "tiltedwindmillpress.com": [16526], "grids.ec": [2024], "*.visualwebsiteoptimizer.com": [17870], "www.wwte14.com": [18031], "img2.bdstatic.com": [19339], "*.shop.linuxnewmedia.com": [9410], "s.ohsuda.com": [2024], "www.11footballclub.com": [32], "rsrv.ca": [2024], "umhealth.me": [2024], "video.adsrvr.org": [688], "secure.budgetinsurance.com": [2409], "iOSBStxn.hkjc.com": [20384], "piratenpartei.ch": [12314], "enom.com": [5268], "joy-cazino.com": [20654], "guarde.co": [2024], "ppf.bz": [2024], "minilock.io": [10456], "www.fedpol.admin.ch": [22061], "i.lexus.com.br": [2024], "wecamgirls.com": [22554], "clebrun.us": [2024], "partners.alfresco.com": [850], "kooki.es": [2024], "join.thetimes.co.uk": [16538], "legacy.utm.edu": [17426], "r.taxi33.fr": [2024], "washsp.ec": [2024], "info.dplmo.com": [2024], "bdkp.co": [2024], "proxy05.newsnetz.ch": [11371], "support.imation.com": [7988], "maxi.sh": [2024], "planet.exherbo.org": [5482], "operatingsystems.io": [12087], "www.payperpost.com": [12502], "news.spotify.com": [15367], "jennie.io": [2024], "link.lineup.vn": [2024], "cms.memberdirect.net": [10265], "tubbergen.nl": [11172], "wwp.tv": [2024], "eif.buzz": [2024], "www.omnigroup.com": [11832], "teams.pirateparty.gr": [21419], "adsy.mail.bg": [9889], "www.kikisso.com": [20717], "csc.com": [2680], "lds.loodos.com": [2024], "tradedirect.ch": [20683], "vec7.uk": [2024], "dunn.ly": [2024], "manhattan-institute.org": [9961], "mass.cat": [2024], "scache.vevo.com": [17566], "theiosdu.de": [2024], "boxpn.com": [2278], "am.urlb.ag": [2024], "*.sunrise.ch": [15670], "gef.li": [2024], "iservice.uniontrib.com": [17149], "voices.allthingsd.com": [886], "eogrid.esrin.esa.int": [5420], "www.bhosting.ru": [1545], "rokk.co": [2024], "gwdsms.co": [2024], "odl.me": [2024], "idol.sankakucomplex.com": [21730], "lessigforpresident.com": [9276], "headstrong.de": [7253], "dinsmore.co": [2024], "tec.tv": [2024], "25.rg.ru": [21646], "hsbc.co.kr": [20421], "p.ooi.im": [2024], "*.a8.net": [271], "*.tripit.com": [16819], "shopredone.us": [2024], "promo.st": [2024], "idox.bathnes.gov.uk": [1715], "privacysos.org": [13131], "www.artsci.wustl.edu": [18089], "www.incandescent.xyz": [20518], "flash.newegg.com": [11356], "pay.qq.com": [13329], "www.gettyimages.de": [6604], "file.gmobb.jp": [6322], "sheehan.me": [2024], "www.snapsurveys.com": [21879], "ajlh.oxfordjournals.org": [12222], "www.gettyimages.dk": [6604], "textracer.dk": [16234], "stbk.co": [2024], "zalando.at": [18877], "license.avira.com": [1474], "ccreq.com": [2024], "www.firm24.com": [5847], "www1.oculusvr.com": [11760], "josh.re": [2024], "asplos14.cs.illinois.edu": [17346], "maps.slu.se": [14195], "talentsmart.com": [15984], "van-go.us": [2024], "mcfwf.co": [2024], "www.sustainableelectronics.org": [15730], "igorlik.es": [2024], "geleia.tv": [2024], "www.elance.com": [5129], "auckland-tv.ga": [2024], "into.aalto.fi": [447], "wntz.nl": [2024], "leap.southdevon.ac.uk": [15256], "web.icq.com": [7695], "www.sky-ip.org": [14988], "on.gz-up.com": [2024], "conduit.com": [3567], "www.tmit.bme.hu": [1556], "hosting.uk.adjug.com": [580], "*.tum.de": [16101], "krasnodar.rt.ru": [13529], "www.accesspiratebay.com": [22174], "www.wdr4.de": [18113], "www.terrapass.com": [16198], "shop.politiken.dk": [12922], "bhe.fm": [2024], "legacy.qualaris.com": [13377], "luminoworld.com": [9675], "futurity.org": [6265], "revenuesbenefits.havant.gov.uk": [20347], "privacy-handbuch.de": [13130], "ibanking.cimbthai.com": [2620], "www.privatebank.citibank.com": [3174], "static-wap.norton.com": [11545], "swooned.it": [2024], "mnye.ca": [2024], "*.monetate.net": [10582], "juicemo.bi": [2024], "www.wpacracker.com": [3283], "riskmanagement.georgetown.edu": [6531], "www.guildford.gov.uk": [20321], "platinum.ohiolink.edu": [11799], "l214.com": [20767], "correo.unizar.es": [17441], "smtvj.com": [2024], "www.scandinavianphoto.no": [14394], "jackandjill.ie": [8491], "tscfm.in": [2024], "www.linuxtag.org": [9432], "dtdg.co": [2024], "a1le.bz": [2024], "go.medico.com": [2024], "mywebsitepersonal.1and1.ca": [70], "s.ngenius.com": [2024], "onlinesbi.com": [11911], "www.hacktivity.com": [20332], "myfiles.yandex.com": [18742], "cf2.imgobject.com": [5644], "localdining.plenti.com": [12852], "login.attachmategroup.com": [1362], "rainforestqa.com": [13592], "www.centrum.sk": [19548], "byjoe.ws": [2024], "go.crowdstrike.com": [19725], "www.sixxs.net": [14957], "iiucbd.tk": [2024], "mietzahlungscheck.immobilienscout24.de": [8008], "css-seeker.newjobs.com": [11358], "jel.oxfordjournals.org": [12222], "lkab2.tdconline.se": [15865], "klatschmagaz.in": [2024], "www.groovl.com": [20310], "tickets.edfringe.com": [19954], "online.illinois.edu": [17346], "momsmedia.com": [17628], "*.king.com": [8912], "oschina.net": [11702], "rareconnect.org": [13626], "www.downstreamtoday.com": [4724], "www.esj.com": [4954], "freizeitparkweb.de": [20172], "espanol.verizon.com": [17715], "www2.bancopastor.es": [1661], "tradeking.com": [16708], "ycn.cz": [2024], "www.gulp.linux.it": [9419], "pt.libreoffice.org": [9327], "bb-8.co": [2024], "l.judge.ovh": [2024], "cdn.taxactonline.com": [16044], "www.therealreal.com": [22180], "edhq.co": [2024], "contact.fitbit.com": [5867], "www.wasilczyk.pl": [18091], "*.fifi.org": [5765], "piwik.bandinelli.net": [1663], "ivanteevka.beeline.ru": [1778], "oas.guardian.co.uk": [6982], "arkans.as": [2024], "schools.oxfordshire.gov.uk": [21326], "dailystar.co.uk": [4117], "regonline.com": [13784], "link.jer.design": [2024], "deshop.in": [2024], "mybell.bell.ca": [1792], "vis.pm": [2024], "vice.idnes.cz": [20483], "wlsn.me": [2024], "ttt.wf": [2024], "api.vaultoro.com": [22430], "*.specificmedia.com": [15313], "redbullcontentpool.com": [13727], "0ef.de": [2024], "go.clipsv.tk": [2024], "vieux.mondediplo.com": [10578], "whitemts.us": [2024], "paihang.eastday.com": [5010], "eclipso.ch": [5041], "dashboard.covad.com": [3722], "ebanking.cash.ch": [19522], "e-ra.eu": [2024], "live.gawker.com": [6454], "m.ladepeche.fr": [9128], "pdig.co": [2024], "ace-analyzer.com": [524], "internet.yandex.com.tr": [18740], "kueh.ly": [2024], "portugal.gov.pt": [12989], "privacynotprism.org.uk": [13136], "gitlab.cpy.re": [19710], "m-secure.wsj.net": [18021], "kbpublisher.com": [8727], "trashmail.com": [16762], "industry.1688.com": [51], "www.hotelwifi.com": [7560], "beaverbrooks.co.uk": [1770], "www.globalclimatemarch.org": [6718], "wrv.pw": [2024], "wiki.linaro.org": [9377], "koinify.com": [8969], "www.ece.unm.edu": [17073], "www.housing.osu.edu": [11797], "exchange.btcchina.com": [1581], "au.godaddy.com": [6755], "wcs.anthem.com": [19206], "s.tjeu.ga": [2024], "a1.sphotos.ak.fbcdn.net": [5689], "eonefil.ms": [2024], "brasegu.ro": [2024], "metrics.mzstatic.com": [10893], "segfault.linuxmint.com": [20851], "oof.news": [2024], "go.ledet.com": [2024], "sustainableelectronics.org": [15730], "*.mozdev.org": [10686], "www.worldofwarcraft.com": [18542], "shop.sundtek.com": [15665], "uk.pinterest.com": [12731], "login.norton.com": [11545], "community.canvaslms.com": [2826], "azart.co": [2024], "app-de-lb2.resrc.it": [13659], "bitquick.in": [1969], "www.bell-labs.com": [1793], "www.westgateleisure.chichester.gov.uk": [19579], "bstorm.in": [2024], "theladbiblegroup.com": [22159], "convention.liberal.ca": [9309], "s.nowiknow.com": [2024], "l.csommer.de": [2024], "bh.ht.vc": [7592], "pbgrp.link": [2024], "ncks.co": [2024], "www.sociedad.elpais.com": [5126], "jdb.io": [2024], "hdz.li": [2024], "sso.jd.com": [8436], "hootum.co": [2024], "heimdalsecurity.com": [7285], "hbob.club": [2024], "gamehouse.com": [6399], "m-lips.com": [2024], "www.searchnetworking.de": [16083], "wien.at": [22588], "eastsussex-consult.objective.co.uk": [21225], "www.thepiratebay.vg": [22175], "a.adsrvr.org": [688], "auburntige.rs": [2024], "www.vc-server.de": [17558], "encolh.eu": [2024], "www.phishd.com": [12660], "food.1688.com": [51], "*.rpi.edu": [13832], "www.blog.oxhack.demozoo.org": [19808], "krasnozerskoe.nso.ru": [21192], "vitaminshoppe.com": [17881], "soth.in": [2024], "hr.osu.edu": [11797], "static.catlinseaviewsurvey.com": [2914], "www.gayswap.com": [6457], "bulk.resource.org": [13253], "bulkorder2.ftc.gov": [5710], "ecommerce.com": [5048], "stolr.co": [2024], "cdn.easyread.163.com": [50], "www.trustedmessenger.com": [16859], "asiangirl.co": [2024], "licence.root.cz": [14020], "db.debian.org": [4263], "ozkanhcrg.engineering.osu.edu": [11797], "international.nytimes.com": [11041], "sec.levexis.com": [9287], "www.southrivertech.com": [21913], "www.inkscape.org": [8152], "serve.williamhill.com": [18407], "s.lroy.nl": [2024], "go.1688.com": [51], "ns2.infradead.org": [8135], "www.mux.de": [10780], "govhack.org": [6849], "kaifengguan.jd.com": [8434], "www.frascatitheater.nl": [6087], "link.packtpub.com": [12348], "opendoor.com": [12041], "r.mavaez.ir": [2024], "thehoxton.com": [16366], "adwords.google.com.*": [6821], "nl.cloudflare.com": [3284], "*.kopiosto.fi": [8994], "jointhegame.kde.org": [8735], "0p.no": [4], "es.4.boardgamearena.com": [2182], "www.mimsonline.com.au": [9756], "the.fndtn.com": [2024], "www.scanningpens.co.uk": [14397], "u.vmstan.com": [2024], "cled.georgetown.edu": [6531], "www.hmailserver.com": [7079], "mail.friday.ru": [20175], "1.kentuu.org": [2024], "*.thumbshots.com": [16475], "ca27af13-66cd-fa75-fe0d-b554784975c5-rum.cdnvideo.ru": [19536], "a-hy.de": [2024], "humanrightsfirst.org": [7615], "pushkin.beeline.ru": [1778], "nait.li": [2024], "accounts.pixiv.net": [12778], "www.adjuggler.com": [581], "blog.leeds.ac.uk": [17403], "extranet.fau.org": [5543], "dev.clickability.com": [4821], "webgate.ec.europa.eu": [5411], "developers.fortumo.com": [6037], "store.nike.com": [11440], "www.kinsta.com": [8925], "postgresql.org": [13021], "famis-sunet.stanford.edu": [15448], "go.suraya.my": [2024], "litebit.eu": [9469], "www.mitpressjournals.org": [9764], "rp3.io": [2024], "sbizl.us": [2024], "yastatic.net": [18754], "lawfareblog.com": [20787], "cloudfoundry.com": [3298], "a2p.co": [2024], "www.universityadmissions.se": [17436], "pjm.com": [12290], "guru.sol.no": [21894], "stats2.immoscout24.ch": [8009], "brx.libreoffice.org": [9327], "wordstat.yandex.com.ua": [18741], "affsum.it": [2024], "westberks.gov.uk": [22564], "*.bundanon.com.au": [2440], "link.bsa179.org": [2024], "hgi.rub.de": [13539], "cgi.sfu.ca": [14708], "superpost.thenewslens.com": [16302], "cablemystreet.virginmedia.com": [17822], "dms3.it": [2024], "www.fandango.com": [5642], "security.osmocom.org": [12159], "qqnow.us": [2024], "openbook.etoro.com": [4970], "enisey.tv": [19998], "cdn.staticneo.com": [11197], "*.1fichier.com": [79], "sh.lvdbit.tk": [2024], "*.osdv.org": [11705], "img4.qiyipic.com": [13354], "l.fan.si": [2024], "www.djurrattsalliansen.se": [4583], "nose.tocco.ch": [16600], "nin.tl": [2024], "nationalrail.co.uk": [11094], "akkan.to": [2024], "auditshark.com": [1388], "go.tip.ventures": [2024], "protectnetwork.org": [13211], "viepratique.fr": [17793], "www.mediaxus.com": [10197], "help.kik.com": [20716], "dave.org.uk": [3999], "wwm.play-asia.com": [12828], "clients.agava.ru": [765], "www.hfs.washington.edu": [17376], "contentvmx.com": [2024], "manteniment.uv.es": [17544], "ma.thsterk.net": [2024], "briansmith.org": [2328], "kidsfootlocker.com": [8900], "resourcecenter.911.gov": [247], "sendfiles.educ.cam.ac.uk": [17332], "digital-gap.de": [2024], "help.yam.com": [18734], "www.open.ac.uk": [11947], "anciennebel.gq": [2024], "data.eindhoven.nl": [5114], "newamerica.org": [11342], "hex.tips": [2024], "www.glx-dock.org": [20270], "tlk.design": [2024], "drugscrime.uk": [2024], "4s.nz": [2024], "www.sueddeutsche.de": [15641], "secure.hospital.uic.edu": [17321], "tpb.unlockme.top": [22259], "medibankhealth.com.au": [10198], "colocore.ch": [3436], "php.lighttpd.net": [9362], "www.wercker.com": [22561], "whatsdeployed.paas.allizom.org": [904], "cruises.united.com": [17302], "viduli.ch": [2024], "lib.uaa.alaska.edu": [17324], "mailing.finalist.nl": [20098], "theepochtimes.com": [5314], "www.hpi.de": [7082], "static.mmo-champion.com": [3927], "kwtt.net": [2024], "via.kham.is": [2024], "telia.se": [16166], "i.soklear.com": [2024], "www.hautelookcdn.com": [7233], "dl.sv.gnu.org": [6337], "blcw.me": [2024], "qas2.yandex.com.tr": [18740], "if.lbp.me": [20789], "s.qbs.com.br": [2024], "servedby.openxmarket.asia": [21285], "forums.adafruit.com": [604], "lt.boardgamearena.com": [2182], "docs.cloud.databricks.com": [4189], "ozon.travel": [12230], "www.modxcloud.com": [9787], "www.sofawolf.com": [15154], "niap-ccevs.org": [10955], "spench.net": [15332], "multiply.com": [10738], "arqmed.es": [2024], "biology.williams.edu": [18408], "listas.galpon.org": [20198], "legacies.unicef.org.uk": [17068], "gldy.ca": [2024], "go.semarak.news": [2024], "www.svazurich.ch": [22051], "assets.linuxacademy.com": [9433], "currency.ostermiller.org": [21301], "secure.shareit.com": [14731], "www.vshn.ch": [17957], "bigdec.is": [2024], "pogoda.sakh.com": [21719], "www.theinquirer.net": [22157], "slfrd.gs": [2024], "dd4.us": [2024], "video21.0xdb.org": [10], "creative.360yield.com": [146], "blog.getbootstrap.com": [6592], "www.freeutopia.org": [6130], "www.pamela.biz": [12381], "career.balabit.com": [1647], "fassi.ws": [2024], "webdav.mydrive.ch": [10870], "joyclub.de": [8662], "t20.io": [2024], "lithium.saturn.de": [21736], "astore.amazon.co.jp": [19169], "iifc.fnal.gov": [5741], "www.tenmarks.com": [16178], "segf.in": [2024], "downloads.rc.fas.harvard.edu": [7211], "register.it.ox.ac.uk": [17359], "flotation.link": [2024], "dees.dict.cc": [4442], "www.gn3campus.uninett.no": [17280], "drikaart.es": [2024], "px.spiceworks.com": [15338], "blog.l0cal.com": [9073], "www.vabali.de": [17612], "support.textmagic.com": [16230], "bgpstream.com": [1539], "*.epartnershub.com": [5305], "deutschland-spielt.de": [19817], "img1.wlresources.com": [22604], "tafs.me": [2024], "wardrobe.sh": [2024], "owa.clients.kiwiirc.com": [8943], "ajax.dynatrace.com": [4819], "42.ie": [2024], "fakturownia.pl": [5628], "wvusports.co": [2024], "12days.golfdigest.com": [6808], "pilotfeasibilitystudies.biomedcentral.com": [1931], "go.dlm.im": [2024], "links.luisjo.mx": [2024], "indiemerch.com": [8073], "vinnica.unian.ua": [22369], "broxtowe.firmstep.com": [20109], "cloud.runabove.com": [14090], "edtx.us": [2024], "pcs.baidu.com": [1641], "ioix.tv": [2024], "mobile.yandex.ua": [18747], "gifts.nature.org": [11141], "ninjaseo.link": [2024], "svk46.de": [2024], "events.ubm.com": [17000], "ladderslasher.d2jsp.org": [3989], "blogs.brown.edu": [2384], "blockitpocket.com": [2111], "p.chaidir.pe.hu": [2024], "diplomaticrooms.state.gov": [17146], "gvztest.tocco.ch": [16600], "etuoguan.taobao.com": [16015], "newtonew.com": [21132], "go.boltwolf.net": [2024], "www.websharks-inc.com": [18181], "m.thechive.com": [22141], "sec-i.top.de": [16631], "sslvpn.thewarehouse.co.nz": [16425], "mediaportal.x5.ru": [18590], "passport01.leeds.ac.uk": [17403], "www.youngminds.org.uk": [18808], "blob.freenet.de": [6158], "audio.islamweb.net": [8373], "console.turn.com": [16911], "s.gosu.co": [2024], "dash.runbook.io": [14092], "hitchhq.com": [7429], "spektrix.com": [21933], "elsevier.com": [5177], "koleso.auto.ru": [19276], "registration.hispeed.ch": [22386], "bikenorth.birmingham.gov.uk": [19380], "cdmx.it": [2024], "atmail.com": [1350], "letstalkbitcoin.com": [9280], "www.goodsie.com": [6815], "iparapheur.montpellier3m.fr": [10609], "rsaconference.com": [13514], "www.zmap.io": [18853], "last.fm": [9174], "cp.servercow.de": [14673], "cascadingmedia.com": [2883], "sciencem.it": [2024], "secure.blubrry.com": [19412], "hotel.jd.com": [8436], "kepwa.re": [2024], "airtricity.com": [801], "www.maps.org": [9720], "d30.co": [2024], "minstroy.49gov.ru": [187], "slait.it": [2024], "mrln.be": [2024], "cyberinitiative.actiac.org": [19055], "dlm.ag": [2024], "ruby-lang.org": [14073], "svas.at": [2024], "goob.tk": [3536], "topmais.site": [2024], "sites.sociology.hku.hk": [20387], "secure.adviva.net": [719], "aceff.co": [2024], "owyls.us": [2024], "mainstream.radiox.ch": [13576], "hdspr.ng": [2024], "www.rsc.org.uk": [13517], "plc-twlttler.co": [2024], "bearta.co": [2024], "support.steampowered.com": [15516], "cdn.volumio.org": [22495], "arbe.ml": [2024], "500px.com": [205], "shop.highsoft.com": [7408], "gohewitt.com": [2024], "sinav.anadolu.edu.tr": [1029], "kintera.com": [8926], "ontraport.com": [21261], "andor.com": [1042], "csii.co": [2024], "xri.ng": [2024], "hamradio.ferrara.linux.it": [9419], "a.ppstore.co": [2024], "www.bhiab.se": [1865], "www.wkustore.com": [22603], "mhnpjournal.biomedcentral.com": [1931], "jobsearch.naukri.com": [11146], "socceraid.unicef.org.uk": [17068], "news.asolve.it": [2024], "www.c9.io": [3279], "curl.haxx.se": [20348], "rave.pub": [2024], "*.vid.ly": [17762], "rad.live.com": [9495], "r24823020.sync.app.asana.com": [1265], "bre.yt": [2024], "my.cloudfloordns.com": [10404], "rchl.li": [2024], "proxy02.newsnetz.ch": [11371], "www.livecorp.com.au": [9498], "bancofino.us": [2024], "on.worldofwarcraft.com": [18542], "pocasie.centrum.sk": [19548], "a.mobify.com": [10532], "cache-vispamedia.cdnvideo.ru": [19536], "vianet.co.uk": [17750], "www.shadowofmordor.com": [14713], "bill.strelatelecom.ru": [22012], "zeharkagenda.squat.net": [21955], "gelife.co": [2024], "kik.li": [2024], "www.checkmyping.com": [3056], "www.golfdigestschool.com": [3554], "www.hsbc.com.lb": [20428], "havard.me": [2024], "www.dartlang.org": [4150], "realtidbits.com": [13691], "*.vtluug.org": [17605], "isaiah.tv": [2024], "ralk.co": [2024], "oaj.oxfordjournals.org": [12222], "docs.coinkite.com": [3406], "math.msu.edu": [21040], "defnews.ly": [2024], "www.bbbsilicon.org": [1520], "hit32.hotlog.ru": [7554], "downloads3.mamp.info": [20916], "swing.to": [2024], "www.navalny.com": [11148], "wap.dwd.de": [19911], "www.franziskawellner.de": [6084], "tune.clarte.co": [2024], "www.pornolab.net": [21465], "b2b.amoena.fr": [1023], "new.surreycc.gov.uk": [22040], "wxch.nl": [2024], "lv2.at": [2024], "www.rxpharmacyusa.com": [14107], "ad2.netshelter.net": [11247], "eu1.startingpage.com": [15476], "jobs.flughafen-zuerich.ch": [20124], "m.zalando.no": [18877], "business.youmail.com": [18797], "my.reutov.ru": [21641], "www.tescohelp.com": [16210], "tmsz.com": [16592], "on.men.hu": [2024], "gateway.sfa.bis.gov.uk": [17039], "mattyk.me": [2024], "www.hpcf.upr.edu": [17087], "microbialcellfactories.biomedcentral.com": [1931], "analytics.proxer.me": [13220], "russia.biglion.ru": [19375], "ilikear.ch": [2024], "cdn1-marketplace.vntsm.com": [22481], "garagecabi.net": [2024], "www.jamestown.org": [20622], "kinghost.com.br": [8913], "www.loomio.org": [9614], "stageorigin.csmonitor.com": [19737], "www.6joycasino.com": [20654], "npr.org": [10989], "guide-apis.discoverhongkong.com": [19847], "cargocollective.com": [2860], "fik.sh": [2024], "contribula.me": [2024], "ilsfdc.co": [2024], "metadata.eduid.cz": [5087], "terminal.com": [16192], "duma.khabarovskadm.ru": [20708], "i6.3conline.com": [169], "www.forum-3dcenter.org": [20140], "enterprise.cloudshark.org": [19626], "www.mechse.uiuc.edu": [17030], "www.terminal.com": [16192], "sfl.tirol": [2024], "hdh.ucsd.edu": [17012], "*.akademiskahus.se": [804], "www.cscportal.org.uk": [19736], "myds.synology.com": [15803], "de.4.boardgamearena.com": [2182], "bcvs.ch": [1681, 20683], "mobile.tmall.com": [22222], "uof.sc": [2024], "ahm.com.au": [779], "www.opm.gov": [11690], "www.git.io": [6653], "emu.sc": [2024], "jobboerse.arbeitsagentur.de": [1184], "www.youtube.com.sa": [18800], "extractwidget.com": [5515], "www.ascendapp.com": [1268], "french.france.usembassy.gov": [22406], "gsi.de": [6365], "www.fncash.com": [5571], "*.zzounds.com": [18866], "bit.ly": [2023], "ind.tf": [2024], "news.ecan.org": [2024], "oasis-open.org": [11644], "1041jack.fm": [2024], "www.wowace.com": [3927], "stuff.mit.edu": [9763], "lists.acpica.org": [320], "tapgage.net": [16020], "mkdel.co": [2024], "corporate.aldi.co.uk": [357], "www.careerbuilder.com": [2853], "uifw.ekmsecure.com": [5121], "biketr.co": [2024], "newcabinet.yartv.ru": [22670], "www.dntly.com": [4597], "delikatesy.etrend.sk": [5383], "s86.cnzz.com": [3328], "carlsed.com": [2024], "moncompte.mediapart.fr": [10194], "sahom.es": [2024], "awkn.tips": [2024], "prgress.co": [2024], "banner4.utm.edu": [17426], "www.bettercgi.com": [1855], "staging.html5video.org": [7097], "smuxi.im": [15080], "support.bioconductor.org": [1936], "loak.org": [2024], "e3cp.link": [2024], "webinars.boomstarter.ru": [19429], "anadolu.edu.tr": [1029], "kpc.am": [2024], "sitemason.com": [14948], "armin.ml": [2024], "mwsareporting.moodys.com": [21020], "gen.pxpig.io": [2024], "www.standagainstspying.net": [15441], "i.media-imdb.com": [7760], "contact.nra.org": [21177], "mvmtwatch.co": [2024], "shop.magix.com": [9718], "strom.tchibo.de": [16050], "ping.gg": [12714], "2015.appseccalifornia.org": [1164], "*.shopbootsusa.com": [2233], "jasondavies.com": [8536], "reserve.cdn-apple.com": [2567], "kinox.tv": [20720], "aps-insight.adsrvr.org": [688], "go.suga.tv": [2024], "caipiao.taobao.com": [16015], "assemb.la": [2024], "d.emsi.com.au": [2024], "payment.cyberplat.ru": [3965], "vn-ty.fr": [2024], "pinkpanda.co": [2024], "birdi.ng": [2024], "msgenesis.com": [2024], "replays.wesnoth.org": [18298], "www.filtrala.org": [5800], "penango.com": [12564], "global.ebsco-content.com": [4863], "mp.rapida.ru": [13619], "vzpominkynabudoucnost.squat.net": [21955], "www.unido.org": [17071], "publishers.quinstreet.com": [13419], "bilio.com": [1905], "members.easynews.com": [5019], "aerosti.ch": [2024], "bennbookings.rugby.gov.uk": [14083], "global-parents.unicef.org.nz": [17067], "riff.me": [2024], "storage.capita-software.co.uk": [19506], "a.kaelon.com": [2024], "git37.rostrud.ru": [21677], "bluessl.com": [2148], "www.iws.htwk-leipzig.de": [7596], "pirateportal.xyz": [21522], "dotcomsecurity.de": [4694], "usercenter.checkpoint.com": [3052], "on.cooliris.com": [2024], "tdn.me": [2024], "on.nh.is": [2024], "community.optimizely.com": [12107], "www-secure.symantec.com": [15780], "fallscreek.com.au": [5633], "i.rias.be": [2024], "grow.vc": [2024], "impact.ac": [2024], "qnm-f.netease.com": [11228], "ssp.send.microadinc.com": [10380], "saint-petersburg.ru": [21715], "feeds.lfc.vn": [2024], "r.ixpanel.com": [2024], "myfavm.ag": [2024], "go.muk.fm": [2024], "nac.vodafone.ie": [17902], "chprd.co": [2024], "forum.bytemark.co.uk": [2503], "prkl.cf": [2024], "m-online.utb.ru": [17538], "dev.tocco.ch": [16600], "garysold.it": [2024], "subs.bikebiz.com": [19377], "web1.johnshopkins.edu": [8626], "pico.ly": [2024], "perm.sledcom.ru": [21858], "shrp.co": [2024], "kb.cnblogs.com": [19631], "seca.news": [2024], "support.shopsite.com": [21809], "toshiba.preyproject.com": [13091], "home.1688.com": [51], "fortbildung.springerzahnmedizin.de": [15381], "www.cryptoexperts.com": [3852], "dhfn.org": [2024], "podre.co": [2024], "tinyurl.us": [2024], "teamraum.115.de": [2443], "desn.it": [2024], "www.corpimages.de": [3680], "secure.siteparc.fr": [14951], "inserieren.badische-zeitung.de": [1632], "gdpla.net": [2024], "cdn.onapp.com": [11847], "api.wp.6scan.com": [222], "*.tictail.com": [16502], "goexplore.net": [6759], "converse.sg": [2024], "secure.amiami.jp": [997], "sipgate.de": [14924], "www.hbokids.com": [20352], "www.openwrt.org": [12025], "yarkovo.admtyumen.ru": [19082], "www.usenet-crawler.com": [17510], "hbrot.org": [2024], "netbank-ratenkredit.web.de": [18146], "sfts.samsung.net": [14334], "tcodevelopment.com": [16052], "cloudmonitor.nimsoft.com": [2523], "p.ordas.fr": [2024], "loginuat.courierpost.co.nz": [3714], "www.bertrandmeyer.com": [1830], "jbks.co": [2024], "aclumontana.org": [304], "1026.at": [2024], "iom6.co": [2024], "media.netflix.com": [11269], "go.law360.com": [2024], "yaroslavl.tpprf.ru": [22260], "trac.videolan.org": [17775], "bate.mn": [2024], "toddwi.lk": [2024], "countbayesie.com": [3704], "www.mycampina.com": [2797], "tpbc.rocks": [2024], "url.naruvid.net": [2024], "deathmask.net": [4254], "sslcert35.com": [15413], "ajfgo.co": [2024], "m.fust.ch": [6258], "makeshop.jp": [9918], "yunpan.360.cn": [142], "dv.developer.here.com": [7325], "utica.edu": [17540], "www.geolistening.com": [6525], "www.commlink.org": [3474], "minfin.khabkrai.ru": [20709], "medicaljane.com": [10201], "*.uservoice.com": [17526], "det.labs.crossref.org": [3812], "si2.twimg.com": [16949], "drm8.top": [2024], "odk.io": [2024], "idm.upf.edu": [17471], "*.wsws.org": [18023], "se-02.adtomafusion.com": [19093], "wsm.co": [2024], "euroradio.fm": [20037], "transportation.stanford.edu": [15448], "smt.admaster.com.cn": [584], "plone.org": [12859], "argusne.ws": [2024], "nxtgn.org": [11633], "memecenter.com": [10269], "ita.cx": [2024], "www.amnistia.org.mx": [1021], "f1.sapseod.mindtouch.us": [10446], "tfra.me": [2024], "s.atjoseph.net": [2024], "vte4.me": [2024], "www.32.cbsm.at": [8782], "lyncdiscover.ntv.ru": [21197], "partner.vxcp.de": [17714], "snelserver.com": [15097], "eforms.aylesburyvaledc.gov.uk": [19291], "usb.org": [17115], "centro.pixel.ad": [21425], "evaske.com": [5425], "y.ligatus.com": [9356], "www.sky.de": [14990], "secure.api.search.sky.com": [14989], "atinyurl.com": [2024], "www.scienceathome.org": [14443], "rapidrar.com": [21582], "mndt.ch": [2024], "www.aclu-ms.org": [302], "accounting.xmission.com": [18620], "upln.me": [2024], "dfre.us": [2024], "phoenixunion.illuminateed.com": [20494], "comnews-conferences.ru": [3453], "cysp.pro": [2024], "meerssen.nl": [11172], "budgetinsurance.com": [2409], "www.new.mcdonalds.ru": [20941], "static.enaza.ru": [5222], "dev.islamtoday.net": [8372], "www.caprioli.se": [12621], "binaer.at": [2024], "www.sidux-ev.org": [14828], "ella.xyz": [2024], "do.ipleak.net": [20571], "tsuchiya.bz": [2024], "analytics.ind.ie": [8052], "brk.li": [2024], "abruce.us": [2024], "avatar.dimonvideo.ru": [19840], "kfwlr.me": [2024], "s.iwaishin.com": [2024], "www.rottnestexpress.com.au": [14036], "adsimilis.com": [684], "gettyimages.co.nz": [6604], "x.strats.co": [2024], "fnf.vc": [2024], "api.t411.me": [15847], "tribne.ws": [2024], "arangodb.com": [1183], "chelyabinsk.psbank.ru": [13231], "stormfront.org": [15566], "licensing.biz": [8225], "dwc.news": [2024], "www.envato.com": [5294], "chief.si": [2024], "www.pastee.org": [12479], "fcc.re": [2024], "chief.sc": [2024], "segment-data.zqtk.net": [18858], "wurr.ly": [2024], "6-t.imgbox.com": [7997], "s.gilly.cat": [2024], "fils.cnblogs.com": [19631], "pocket.minetrack.me": [20987], "cms.htw-berlin.de": [7103], "regizug.zg.ch": [22061], "occrp.org": [11648], "www.vacareers.va.gov": [17100], "cedmagazine.com": [2582], "*.fcla.edu": [5921], "undrs.co": [2024], "www.soeren-hentzschel.at": [15152], "jobs.malwarebytes.com": [9940], "projects.thm.de": [15876], "www.ids-nf.org": [20485], "www.hartwork.org": [7209], "www.usmile.at": [17531], "go.z7ev3n.com": [2024], "tax.sh": [2024], "hrcdn.net": [7130], "s.somediatic.fr": [2024], "juke.mmi.bemobile.ua": [1752], "theses.cz": [16422], "bowl.today": [2024], "udntalks.udn.com": [17020], "www.howentrepreneur.com": [20416], "fsiavailability.northumberland.gov.uk": [21160], "fr.trainings.350.org": [140], "schaafpc.com": [14408], "www.aquilaclothing.co.uk": [1178], "vadenpatient.stanford.edu": [15448], "launcher.worldofwarcraft.com": [18542], "burtonschools.illuminateed.com": [20494], "imperialviolet.org": [8021], "*.nrc.nl": [10995], "globalfutures.georgetown.edu": [6531], "srlabs.de": [14583], "dajmw.in": [2024], "et02.xhcdn.com": [18605], "ppl.army": [2024], "glassho.us": [2024], "*.freewheel.tv": [6111], "clear-code.com": [3228], "fno.me": [2024], "altdesign.tk": [2024], "login.teamviewer.com": [16069], "dustin.se": [4804], "js.sapo.pt": [14131], "respiratory-research.biomedcentral.com": [1931], "www.chichester.gov.uk": [19579], "rvm.io": [13543], "plusroi.co": [2024], "to.giana.im": [2024], "mixa.me": [2024], "js.admeld.com": [6817], "support.illuminateed.com": [20494], "www.sneakersaddict.com": [21882], "designer.shoebuy.com": [14775], "*.blau.de": [2079], "revolv.es": [2024], "epa-heast.ornl.gov": [11730], "vb.rosevrobank.ru": [14024], "pad.artsci.wustl.edu": [18089], "plor.in": [2024], "megamozg.ru": [20957], "assets4.getsatisfaction.com": [6601], "dirk.to": [4523], "*.arsenalnews.net": [8893], "s26.postimg.org": [13024], "ln.damselem.com": [2024], "bioinformatics.oxfordjournals.org": [12222], "shpl.ly": [2024], "pirateproxy.ca": [22174], "www.ece.illinois.edu": [17346], "s.wferr.com": [2024], "www.vispahost.com": [17867], "iqza.in": [2024], "researchgateway.wustl.edu": [18089], "riskbuster.biz": [2024], "madcap.us": [2024], "siteparc.fr": [14951], "sslcdn.jandan.net": [8518], "www.btcxindia.com": [1598], "tv.rambler.ru": [13600], "simp.cc": [2024], "manage.vice.com": [17754], "turtl.it": [16919], "shemeel.in": [2024], "www.b.switchadhub.com": [15764], "www.fourmilab.ch": [6060], "eulerian.voyage-prive.com": [17946], "multivu.com": [2946], "stationlrowingclub.com": [15499], "603.be": [2024], "ful.cr": [2024], "www.expertbail.com": [346], "console.mxlogic.com": [10126], "media.secure-mobiles.com": [14546], "three.ne.jp": [15879], "e3.karusel-tv.ru": [20690], "www.usatoday.com": [17111], "bbmu.net": [2024], "credoaction.com": [3789], "posta2.vshosting.cz": [17599], "alzrtr.org": [2024], "cluster-1.skillclub.com": [14974], "www.boligejer.dk": [2205], "moneycentral.msn.com": [9810], "k4r3.ca": [2024], "feeds.betanews.com": [19359], "klser.us": [2024], "cdn.airmap.com": [790], "app.netease.im": [11229], "sport.khabkrai.ru": [20709], "drby.tk": [2024], "tbwv.org": [2024], "uosdk.biligame.com": [1903], "ssp.send.microad.jp": [10377], "blomretail.co": [2024], "www.dtvp.de": [19900], "ams.amazon.co.uk": [19170], "m.spontex.org": [15357], "elitekeyboards.com": [5159], "games.random.org": [13606], "on.csell.net": [2024], "www.unm.edu": [17072], "kineshma.startsmile.ru": [21980], "t3blog.com": [15846], "bhome1.bezeq.co.il": [19362], "bitmixer.io": [19392], "beego.me": [1776], "www.palantir.com": [12368], "deniz.nu": [2024], "gvwy.co": [2024], "aw.visa.com": [17846], "ccrrockland.cancer.gov": [2819], "f.ajf3.me": [2024], "cryptocoincharts.info": [3863], "*.stevens.edu": [15538], "soliho.me": [2024], "hmtro.com": [2024], "forum2015.khabkrai.ru": [20709], "heere.ma": [2024], "oyoony.net": [21329], "mas.wiiings.com": [18381], "ale.pt": [2024], "*.blogspot.co.id": [2127], "youtube.gr": [18800], "4freeproxy.com": [194], "www2.whatsbroadcast.com": [18332], "muwazna.org": [10779], "*.blogspot.co.il": [2127], "goturkey.com": [6778], "www.uformia.com": [17197], "hautebl.gr": [2024], "touch.auto.mail.ru": [9891], "thoriumne.ws": [2024], "www.bonus.sviaz-bank.ru": [15740], "*.m.godaddy.com": [6755], "c4d3d.com": [2024], "sports.yahoo.co.jp": [18730], "cdn.datatables.net": [4180], "adobeformscentral.com": [672], "*.dpfile.com": [19892], "adastratst.its.sfu.ca": [14708], "o4u.me": [2024], "jobs.scot.nhs.uk": [10953], "www.idsoftware.com": [7927], "intermediair.snsbank.nl": [14207], "marvell.com": [10050], "office.live.com": [9495], "geizhals.de": [6495], "fr.witness.org": [18472], "jeffmitchell.me": [8559], "m.ut.ee": [17148], "mises.org": [10490], "photo.goodreads.com": [6813], "docs.ocf.berkeley.edu": [17329], "assets.metartnetwork.com": [10320], "marketplace.equinix.com": [5322], "pnkn.ws": [2024], "tickhistory.thomsonreuters.com": [16456], "www.silverflint.com": [14864], "launchpad.net": [9182], "mnpd.me": [2024], "tgit.me": [2024], "exporte.wdr.de": [18113], "thedaywefightback.org": [16343], "cymo.es": [2024], "s03.flagcounter.com": [20115], "www.nordichosting.com": [11513], "go.btlr.link": [2024], "c2.chaucanh.net": [2024], "*.helmet.fi": [7300], "openrunet.org": [21279], "mobile.pornhub.com": [12972], "www.home.uni-erlangen.de": [17396], "images.eoportal.org": [5303], "aprv.me": [2024], "www.sprintrebates.com": [15386], "tv.yandex.kz": [18743], "www.ted.com": [15871], "xuron.me": [2024], "jzt.jd.com": [8436], "ais.wetter.de": [18320], "www.pgpru.com": [12000], "l.tune2tech.com": [2024], "evoliatis.com": [5455], "cdn.defenseone.com": [4295], "www.poiskvps.ru": [21450], "*.intellichat.com": [8707], "dm-p.ro": [2024], "samihfadli.com": [2024], "srver.ml": [2024], "thehiddenbay.eu": [22174], "sammylin.tw": [2024], "ddosbreak.com": [4012], "media.education.gov.uk": [19957], "riley.nal.usda.gov": [17299], "thepiratebay.mn": [22175], "url.dubra.cz": [2024], "dond.us": [2024], "smshot.us": [2024], "u.scar45.com": [2024], "software.ucsd.edu": [17012], "store.enthought.com": [5286], "p15.qhimg.com": [13347], "www.rsync.net": [14061], "kids.froscon.org": [6071], "grp09.ias.rakuten.co.jp": [13594], "opt4tx.com": [2024], "bgf.st": [2024], "onbodypass.com": [2024], "marca.to": [2024], "mivoltma.444.hu": [183], "ghos.tw": [2024], "xiscosoft.net": [18668], "fco.gov.uk": [5548], "syncxmas.com": [2024], "ymdbook.com": [2024], "i.hozana.org": [2024], "telethon.it": [16162], "www.yu.edu": [18768], "p.key-p.jp": [2024], "policy.usc.edu": [17366], "it.crowdin.com": [3823], "www.isen.com": [8362], "nohayinter.net": [2024], "mbank.sk": [9733], "ovjk.nl": [2024], "www.iwill.org.uk": [20618], "solarsystem.jpl.nasa.gov": [10909], "*.bentley.edu": [1812], "yaqeeninstitute.org": [18752], "t32.li": [2024], "myaccount.zen.co.uk": [18913], "jang.ws": [2024], "t4.pixhost.org": [21426], "gsvy.co": [2024], "*.acronis.com": [538], "s70.cnzz.com": [3328], "vbd.cdn.viber.com": [17751], "apwu.org": [977], "interpol.int": [8290], "camino.gl": [2024], "trustees.osu.edu": [11713], "twki.nl": [2024], "1hd.in": [2024], "mlogin.wosign.com": [18483], "on.felipe.rs": [2024], "hwcdn01.vuze.com": [17972], "ascri.be": [2024], "pofpa.web.cern.ch": [2588], "www.hdclub.org": [20357], "tcamp.sunlightfoundation.com": [15667], "kcped.ca": [2024], "k4.chaucanh.net": [2024], "eeultra.me": [2024], "www.bitclubnetwork.com": [19386], "ai-radio.org": [345], "abila.com": [476], "www.vlc-addons.org": [17580], "bnl.gov": [19418], "publimx.mx": [2024], "www.ymail.com": [18728], "dyete.ch": [2024], "eo66.co": [2024], "dc4.co": [2024], "vvv.play-asia.com": [12828], "fleet.io": [2024], "bil.et": [2024], "rheinbahn.vrr.de": [17954], "*.blogs.balabit.com": [1647], "inst.winzip.com": [18424], "netmundial.net": [11252], "partners.oo-software.com": [11929], "www.melpa.org": [10259], "s831.us": [2024], "kid.mysql.cesky-hosting.cz": [19553], "wmp.li": [2024], "dow.sh": [2024], "sciencemeetup.444.hu": [183], "www.radiokot.ru": [21573], "www.mentalhealth.org.uk": [20962], "it.isidewith.com": [20466], "dgold.me": [2024], "www.autodraw.com": [1440], "intenseschool.com": [8223], "tongcheng.1688.com": [51], "link.mgalfa.com": [2024], "denagam.es": [2024], "wiki.allmyvideos.net": [906], "www.radikale.dk": [13574], "listen.akvorrat.org": [355], "34.rkn.gov.ru": [13971], "copernic.com": [3653], "orebz.com": [2024], "cincinnati.com": [3142], "media-social.s-msn.com": [14115], "henr.co": [2024], "top.taobao.com": [16015], "www.biteasy.com": [2016], "facteurh.org": [2024], "jacks.in": [2024], "portfolio.wsj.com": [22625], "nyob.co": [2024], "anadyr.beeline.ru": [1778], "wiki.blesk.cz": [2088], "xgam.es": [2024], "wyrebc-consult.objective.co.uk": [21225], "charnwood.gov.uk": [3021], "fnis.thomsonreuters.com": [16456], "a.ntv.io": [11597], "facepalm.me": [2024], "online.met.police.uk": [20969], "www.skift.com": [21849], "p.typekit.net": [16983], "bdnsun.ca": [2024], "afsw.co": [2024], "www.fossil-scm.org": [6048], "belkin.com": [1791], "democracy.merton.gov.uk": [10311], "makariv.o3.ua": [21219], "www.gameinformer.com": [6400], "draugiem.lv": [4738], "5.darkroom.shortlist.com": [14795], "pokec.azet.sk": [1507], "diegofx.co": [2024], "xiph.org": [18667], "adspeed.biz": [594], "www.alloresto.fr": [20671], "academy.cityoflondon.police.uk": [3196], "www.atmia.com": [19270], "interactive.stockport.gov.uk": [21994], "t962.fnal.gov": [5741], "api.torrent411.com": [15847], "gameoapp.com": [6412], "lists.buildbot.net": [19469], "rrss.dgt.es": [2024], "febo.com": [20079], "www.biditbob.com": [1873], "unionpay.com": [17281], "a8c.us": [2024], "waa.moe": [2024], "shop.vodafone.ie": [17902], "rcconf.net": [2024], "sarah.lv": [2024], "privacyisawesome.com": [5769], "www.kanotix.com": [8797], "c4isrnet.ly": [2024], "aksi.ga": [2024], "myfee.li": [2024], "media.coveritlive.com": [3732], "panama.usembassy.gov": [22406], "macc.at": [2024], "topbuy.com.au": [16632], "charting.vwdservices.com": [17973], "macc.as": [2024], "www.mondemp3.com": [10580], "zendesk.com": [18923], "luv.web.id": [2024], "smb2.be": [2024], "sbstn.de": [2024], "dwo.me": [2024], "link.pba.to": [2024], "mymues.li": [2024], "www.globevestor.com": [6726], "m3m.cc": [2024], "photo.tagasauris.com": [15971], "n.sushk.in": [2024], "lia.io": [2024], "realestate.yahoo.co.jp": [18730], "www.premii.com": [7444], "mixtapeleak.com": [10507], "live.geekzone.co.nz": [6491], "boxoffice.forestry.gov.uk": [20135], "noblewin.rigzone.com": [1948], "bartbania.com": [1709], "bishopi.com": [1949], "vc.ru": [17669], "community.elgg.org": [3504], "dcor.co": [2024], "customers.asmallorange.com": [259], "es.socialclub.rockstargames.com": [13997], "www.militarymaps.info": [20985], "s.hugg.me": [2024], "cjr.bz": [2024], "l.exspere.com": [2024], "*.diwi.org": [4574], "jquerymobile.com": [8464], "www.synaesthesie.net": [15788], "git09.rostrud.ru": [21677], "www.americanscientist.org": [989], "hosting.adjug.com": [580], "cvvnumber.com": [19746], "t.ttan.org": [2024], "gb.redhat.com": [13735], "go.email0.co.uk": [2024], "pt.chuyenht.com": [2024], "arks.astrobl.ru": [19264], "unicef.fi": [17065], "diger.at": [2024], "handy.de": [7181], "gkups.yanao.ru": [22665], "o7.no": [2024], "architektur.htwk-leipzig.de": [7596], "support.ngs.ru": [21134], "www.nekvapor.com": [10939], "*.rugstudio.com": [14082], "trac.lighttpd.net": [9362], "www.hoku.co.jp": [14801], "mail.opensocietyfoundations.org": [21280], "www.youtube-nocookie.com": [18800], "partnerreg.seagate.com": [14499], "mkt.21.co": [95], "www.akolaproject.org": [813], "innovation-sap.lemonde.fr": [9204], "i.acdn.us": [18728], "nacl.cr.yp.to": [3745], "mkts.me": [2024], "planet.qt-project.org": [13364], "portal.m.jd.com": [8436], "www.php-fusion.co.uk": [12279], "ezctr.co": [2024], "www.tribepad.com": [22284], "www.vpn.asia": [22505], "www.ricoh.co.in": [13935], "w.mlv-cdn.com": [10814], "reportcard.wmflabs.org": [18388], "ostrogozhsk.startsmile.ru": [21980], "bodine.me": [2024], "rbw.si": [2024], "link.myccs.org": [2024], "se.usembassy.gov": [22406], "www.gftplns.org": [15533], "www.curo.co.za": [3925], "computerbild.de": [19660], "www.architekturinstitut.htwk-leipzig.de": [7596], "kbx.es": [2024], "fin.gy": [2024], "www.1wt.eu": [66], "v.youku.com": [18804], "bigcr.eu": [2024], "raptr.com": [13622], "finda.farm": [2024], "img.appinn.com": [1148], "utakeaway.just-eat.co.uk": [20671], "stn.vg": [2024], "r24616692.sync.app.asana.com": [1265], "intlrv.rs": [2024], "antsdaq.com": [19209], "ivi-f16-vcp.cdnvideo.ru": [19536], "i3.msdn.microsoft.com": [10396], "dev.www.govhack.org": [6849], "cdn.aim.com": [348], "hyperledger.org": [20457], "y.suntravel.xyz": [2024], "cpanel.guru": [2666], "www.10antz.co.jp": [20], "l.dnsmirror.org": [2024], "clnenergy.org": [2024], "serverpros.com": [13064], "go.wgno.com": [2024], "kurgan.europaplus.ru": [20034], "cdw.re": [2024], "roundcube.dreamhost.com": [4743], "asp.net": [413], "frm86.com": [2024], "www.filozofia.bme.hu": [1556], "tttcrn.ca": [2024], "empresas.bankinter.com": [1674], "blu.stc.s-msn.com": [14115], "diagnostics.wpm.neustar.biz": [11320], "uprising.org.uk": [22390], "parrish.pro": [2024], "photo1.kavkaz-uzel.ru": [20694], "gotrace.unodc.org": [17075], "blog.vidyard.com": [17792], "petsq.re": [2024], "median.es": [2024], "pqb.link": [2024], "maseru.usembassy.gov": [22406], "www.netbeat.de": [11256], "m.getslice.com": [2024], "legtux.org": [9241], "img-cdn.prestashop.com": [13085], "ruby.froscon.de": [6071], "www.hamradio.ferrara.linux.it": [9419], "moa.biz": [2024], "cdn2.broadcasthe.net": [2371], "support.gmo.jp": [6325], "hotjar.com": [20412], "libertyflailmowers.com": [9316], "www.britishgas.co.uk": [2356], "b.e9inc.com": [2024], "adv.biglion.ru": [19375], "queue.vendini.com": [22438], "plmap.oracle.com": [12116], "ib.mebank.com.au": [9748], "devlegapallacanestro.streamamg.com": [22006], "damteq.it": [2024], "girlsoutwestfreestuff.com": [6649], "www.gdata.ch": [6272], "apw.fyi": [2024], "onsal.es": [2024], "she.ngs.ru": [21134], "woolyss.com": [18512], "a.drj.mx": [2024], "www.onekingslane.com": [21255], "jiveon.com": [8599], "nzi.me": [2024], "mobile.hertz.com": [7371], "www.culturesforhealth.com": [3912], "www.crux.nu": [3833], "mucao.co": [2024], "sal.st": [2024], "renewals.symantec.com": [15780], "corporatecom.ms": [2024], "www.pathways2gsfa.org": [12488], "jason.town": [2024], "docs.pld-linux.org": [12299], "r3f.co": [2024], "ric.org": [13488], "on.kwwl.com": [2024], "free.beget.com": [19347], "support.curse.com": [3927], "comeatbro.me": [2024], "pvyb.me": [2024], "assets.21.co": [95], "cidsgn.co": [2024], "soclfe.it": [2024], "img5.yeggi.com": [18760], "octoshape.com": [11756], "s.mumu.nu": [2024], "zab.cab": [2024], "www.realtimestats.com": [13686], "bod.ajbb.life": [2024], "tls.al": [2024], "api.yandex.com": [18742], "www.piratebay.se": [22175], "on.gabale.se": [2024], "tenantshandbook.oxford.gov.uk": [21324], "l.ishuman.co": [2024], "my.lib.cuhk.edu.hk": [2704], "gchat.com": [6290], "app.work4labs.com": [18527], "amherst.edu": [996], "www.cocubes.com": [3332], "mobile.theverge.com": [16286], "www.shinystat.com": [21802], "quetak.me": [2024], "bintraywidget.jfrog.com": [8445], "braz.me": [2024], "rpc.oxfordjournals.org": [12222], "ece.engineering.osu.edu": [11797], "jonm.me": [2024], "www.mugenmonkey.com": [10727], "your.st": [2024], "content.cdntwrk.com": [19535], "bmr.link": [2024], "knstr.it": [2024], "distrowatch.org": [4566], "ngvpn37.nvidia.com": [11022], "www.siteheart.com": [14933], "www.marcrogers.org": [9990], "mynerdnest.is": [2024], "*.shop.haymarket.com": [7241], "myaccount.bl.uk": [2358], "url.hoteia.com": [2024], "particle-physics.desy.de": [4386], "democracy.blackpool.gov.uk": [2074], "jcm.jd.com": [8436], "perasma.espiv.net": [20021], "w1.fi": [17979], "cbb.dk": [2922], "www.surveyserver.net": [22044], "isasonline.bva.bund.de": [5706], "dtdt.co": [2024], "roszkh.ru": [21679], "www.fictiv.com": [5759], "pushkin.startsmile.ru": [21980], "rfc-editor.org": [13477], "tverskaya-obl.beeline.ru": [1778], "autodiscover.kscu.com": [8993], "cdn.securelist.ru": [14567], "filtrala.org": [5800], "tutsplus.com": [16926], "guest.tl": [2024], "*.cetic.be": [2599], "adventures.play-asia.com": [12828], "www.wizbangpop.com": [18479], "winoptions.com": [18448], "bitadexchange.com": [19384], "alexcabal.com": [842], "m.mall.pl": [9934], "www.alumni.hku.hk": [20387], "apac.haymarket.com": [7241], "img.thevideo.me": [16318], "landliebe.de": [2797], "pdv.co": [2024], "forum.ngs.ru": [21134], "pharus.thm.de": [15876], "rvwd.co": [2024], "www.gaaturustigslapen.nl": [6378], "stcjp.msn.com": [9810], "utzp.in": [2024], "www.sexkompas.net": [14701], "*.fool.com.au": [10654], "engagedoncaster.co.uk": [5251], "smart.jd.com": [8436], "www.thesun.co.uk": [22188], "www.everplans.com": [5441], "untp.it": [2024], "olo.so": [2024], "www.admincontrol.com": [19080], "cdrs.columbia.edu": [3449], "plbz.biz": [2024], "edex.adobe.com": [669], "iwa.ap.test.octopuspop.com": [11754], "kuitun.jd.com": [8434], "email.nottingham.ac.uk": [11567], "ilsendems.co": [2024], "www.ftlgame.com": [5598], "v1.adf.ly": [577], "translations.com": [22274], "jdun.cc": [2024], "z.worthynew.com": [2024], "www.nwas.nhs.uk": [10953], "*.webofknowledge.com": [18203], "www.clubabonnes.ladepeche.fr": [9128], "www.monde-diplomatique.de": [9201], "refrug.by": [2024], "short.serppa.fi": [2024], "go.conats.com": [2024], "vi.libreoffice.org": [9327], "www.finanzcheck.de": [20101], "cs.pn": [2024], "d-mado.link": [2024], "hardcoreteengirls.com": [7195], "hzzichi.1688.com": [51], "git19.rostrud.ru": [21677], "auswaertiges-amt.de": [19274], "fleresomdig.radikale.dk": [13574], "m.voachinese.com": [17584], "silw.i.ng": [2024], "www.prettygoodgoods.org": [21494], "handball.lemonde.fr": [9204], "global.sony.eu": [15213], "www.ami.com": [365], "iko.io": [2024], "staging.rg.ru": [21646], "thegoodfight.fm": [16358], "jrm.me": [2024], "www.moderngov.co.uk": [21005], "maybemaimed.com": [10116], "trd.cm": [2024], "juxtr.io": [2024], "europa.aktuality.sk": [1507], "mydornsife.usc.edu": [17366], "homefinder.com": [7477], "popsqt.ch": [2024], "newzbin2.es": [11392], "books.ch": [16244], "ageo.co": [2024], "www.cat.yandex.by": [18739], "2013.de.pycon.org": [13307], "www.privacysos.org": [13131], "www.standaard.be": [15443], "login-stage.oracle.com": [12116], "discountclick.com": [703], "widgets.opera.com": [12086], "support.jwplayer.com": [9601], "salymorte.ro": [2024], "kurchatov.beeline.ru": [1778], "woltlab.com": [18493], "www.activestatic.net": [555], "www.lls.org": [9102], "learn.shrinktheweb.com": [14807], "global.9gag.com": [252], "afnic.fr": [340], "hsm.la": [2024], "globalbersih.org": [6703], "www.jeremymorgan.com": [20639], "vi.siting.us": [2024], "instaradio.com": [13458], "www.digital.report": [19836], "sto-ri.es": [2024], "my.drweb.com": [4776], "commercialbanking.lloydsbank.com": [9537], "artsci.wustl.edu": [18089], "egc.tw": [2024], "www.leibniz-supercomputing-centre.eu": [9253], "fr.visioncritical.com": [17862], "cfg.la": [2024], "www.aboutthedata.com": [485], "rgb.ovh": [2024], "www.antivigilancia.org": [1105], "www.coinworker.com": [3401], "refrs.co": [2024], "c.huaban.com": [20441], "tbl.co": [2024], "aktionen.mediamarkt.de": [20949], "pl.boardgamearena.com": [2182], "cshake.in": [2024], "ossweb-img.qq.com": [13329], "www.blackfire.io": [2070], "shef.ac": [2024], "appcel.us": [2024], "ecess1.cdn.continent8.com": [3619], "socialfixer.com": [15130], "gliv.es": [2024], "es.dinahosting.com": [4506], "clckbank.tk": [2024], "viciousblack.co": [2024], "www.fbi.gov": [5698], "www.medienstiftung-hsh.de": [10209], "*.bitre.gov.au": [2456], "help.lasallehs.net": [9173], "mpl.io": [2024], "team29.org": [22106], "bpacks.com": [2024], "ff.duckduckgo.com": [4785], "partner.nitrosell.com": [11467], "www.summitroute.com": [15657], "mpl.is": [2024], "contentimages.coop.ch": [3647], "www.global.nytimes.com": [11040], "*.www.spoki.lv": [15356], "brispri.de": [2024], "mcgf.in": [2024], "pma.friday.ru": [20175], "udmy.me": [2024], "wongmjane.tumblr.com": [16897], "sycom.co.jp": [15772], "mariy-el.beeline.ru": [1778], "hotstopsmag.com": [2024], "media.bolero.be": [2024], "sts.thewarehouse.co.nz": [16425], "diglib.co": [2024], "localvault.lastpass.com": [9175], "happyfoto.de": [7193], "lync.2kgames.com": [117], "ipqualityscore.com": [7799], "toptim.es": [2024], "www.bityes.com": [1978], "ovh.de": [12205], "providercentral.org.uk": [21520], "fxosphone.mozilla.com.tw": [10692], "mhsw.ml": [2024], "tap.tc": [2024], "www.cern.ch": [2588], "lists.pwmt.org": [13306], "thri.se": [2024], "urhome.umd.edu": [17351], "jhc.io": [2024], "vxl.cc": [2024], "dslchecker.bt.com": [1578], "css.ykimg.com": [22681], "linn.works": [2024], "r.openx.net": [12026], "lrn.co": [2024], "mx.demos.ru": [4342], "chain.com": [2986], "cdn.ozb.me": [12227], "fav.m.taobao.com": [16015], "www.goingup.com": [6793], "aqtickets.com": [2024], "www.projects.fruct.org": [5585], "u6.qiyipic.com": [13354], "desk.com": [4379], "att-beta.mcafee.com": [10129], "s10.cnzz.com": [3328], "iaq.nu": [2024], "qa.phpdoc.org": [12684], "www.thankyou.com": [16246], "valueapplications.com": [17626], "swj.news": [2024], "home.nuug.no": [11017], "imagenet2012.bjcnc.scs.sohucs.com": [15173], "insightexpress.com": [8172], "b.imgbox.com": [7997], "i.tadanori.net": [2024], "admin.www.cultofmac.com": [3909], "amtr.ac": [2024], "jimw.me": [2024], "iloyal.axosoft.com": [1504], "portal.charnwood.gov.uk": [3021], "download.lenovo.com": [9267], "business.usa.gov": [17110], "heis.cf": [2024], "link.aenfis.com": [2024], "nyl.co": [2024], "jhayl.es": [2024], "jide.com": [8450], "www.crechi.tw": [19718], "www.box-look.org": [2270], "orsl.nl": [2024], "forms.adviceguide.org.uk": [716], "stat.spark-com.ru": [21923], "www.britcoin.co.uk": [2354], "c.cps.fm": [2024], "informit.com": [8119], "*.www.insightmgr.com": [4493], "www.infosactu.com": [20533], "admin-smolensk.ru": [19079], "help.thebodyshop.co.uk": [16328], "link.ni-ko.com": [2024], "owa.exchange.ust.hk": [22412], "www.linutronix.de": [9404], "www.tiny.cc": [16554], "ctoday.link": [2024], "media.fit.edu": [5922], "u-gr.us": [2024], "*.infopaginas.com": [8116], "ontrck.in": [2024], "fossmg.me": [2024], "bikerspost.it": [2024], "www.cubby.com": [3903], "go.faqfox.com": [2024], "mcd.me": [2024], "www.filehoot.com": [5777], "uhurunet.us": [2024], "money.unistream.ru": [17291], "jmm.co": [2024], "brueckenkurse.thm.de": [15876], "www.online-emr.com": [11913], "community.pebblepad.co.uk": [12542], "app.mbuy.com": [9736], "canada.findlegalforms.com": [5822], "spic4.51fanli.net": [209], "dream.rakuten.co.jp": [13593], "mst.mstsage.com": [2024], "my.xyratex.com": [18700], "computerbasedmath.org": [3541], "demo.webtype.com": [18191], "dymynd.co": [2024], "sd.gatordev.com": [2024], "support.twinprime.com": [16953], "treb.re": [2024], "overupc.upc.nl": [17083], "manage.sprintpcs.com": [15384], "download.lineageos.org": [9384], "www.mycdsglobal.com": [2578], "samara.sledcom.ru": [21858], "funoverip.net": [20188], "btcxindia.com": [1598], "gnu-ftpmirror.sv.gnu.org": [6337], "www.jezebel.com": [8578], "elmex.co": [2024], "thescore.thejournal.ie": [16299], "www.victoriassecretcanada.ca": [17760], "webedit.tnsglobal.com": [15906], "www.creativecommons.org": [3774], "en.flossmanuals.net": [5567], "ds.krasnodar.ru": [20754], "sethgodin.play-asia.com": [12828], "govspace.gov.au": [6851], "privatelee.com": [13152], "ca.squat.net": [21955], "jujus.co": [2024], "limeroad.me": [2024], "shoptbb.com": [2024], "pic2.58cdn.com.cn": [213], "i.koove.co": [2024], "isadom.wustl.edu": [18089], "www.campusship.ups.com": [17088], "www.orionhub.org": [12142], "ajnasz.hu": [19127], "www.roysac.com": [21684], "fr.cdnetworks.com": [2574], "web.nasaspaceflight.com": [10910], "dataprotection.ie": [4165], "lpth.in": [2024], "www.emblem.cancer.gov": [2819], "brin.ga": [2024], "www.reynir.dk": [13909], "youthscape.co.uk": [22695], "hub.rother.gov.uk": [14030], "gold.1prime.ru": [83], "mehedi.xyz": [2024], "fly.onthe.space": [2024], "xha.ch": [2024], "c.betrad.com": [5448], "on.langlers.com": [2024], "dotcologne.de": [4689], "lorentzcenter.nl": [9620], "mrglmbrt.tv": [2024], "shopmanhattanite.com": [9962], "beem.li": [2024], "s6.wlresources.com": [22604], "2pin.me": [2024], "turntonetworks.com": [16914], "etfelici.to": [2024], "assets.gcs.thomsonreuters.com": [16456], "uef.fi": [17338], "itservices.uchicago.edu": [17334], "hk.168qiquan.com": [52], "profile-df.live.com": [9495], "status.vitalsource.com": [22473], "*.hostooplecom.netdna-cdn.com": [7546], "www.glassdoor.co.uk": [20260], "webreg.vsoe.usc.edu": [17366], "news.cnblogs.com": [19631], "rtview.me": [2024], "cptz.me": [2024], "wss.apan.org": [388], "control.majordomo.ru": [9914], "police.stanford.edu": [15448], "greenpolkadotbox.com": [6910], "pda.inosmi.ru": [20538], "g3eks.gq": [2024], "chkmrx.co": [2024], "fro.gg": [2024], "e.go-greece.net": [2024], "facilities.wustl.edu": [18089], "ctlb.eu": [2024], "nikr.me": [2024], "go.digiyan.com": [2024], "adwords.ac": [2024], "l.likeasimon.de": [2024], "www.fangamer.net": [5643], "yourepe.at": [2024], "datart.sk": [3998], "www.pixeline.be": [12775], "dukki.tk": [2024], "invite.hoccer.com": [20390], "lsf.hs-karlsruhe.de": [7587], "rtn.co": [2024], "webmail.uni-potsdam.de": [17417], "bwick.org": [2024], "secure.jotform.us": [8650], "cdn.jadu.net": [8502], "resources.4tulemar.com": [193], "pgt.ovh": [2024], "a1.mzstatic.com": [10893], "de.stripchat.com": [22014], "saas.bel.fi": [1536], "www.hurd.gnu.org": [6337], "basq.in": [2024], "www.jetico.com": [8575], "thepiratebay.la": [22175], "api.ctwatch.net": [3902], "dev-lhr.flightradar24.com": [20119], "ccpn.de": [2024], "uploaded.ml": [2024], "style.gf": [2024], "visit.parliament.uk": [21349], "agosto.me": [2024], "publicadministration.un.org": [17057], "www.biciperros.org": [1871], "static.eventoverload.com": [5429], "sjvtest.tocco.ch": [16600], "rmk.ph": [2024], "biotrimlabs.com": [1940], "dev-web.inka.f4.htw-berlin.de": [7103], "ekdahl.co": [2024], "kuzbass.sledcom.ru": [21858], "meta.askubuntu.com": [15424], "chrisnewland.com": [3111], "www.sf.net": [14167], "studien-sb-service.th-mittelhessen.de": [15874], "mwell.co": [2024], "oclclibrary.worldcat.org": [18536], "www.nodejitsu.com": [11491], "yaca.yandex.by": [18739], "carleton.ca": [2862], "icsalabs.com": [7696], "jba.im": [2024], "jba.io": [8551], "a.kopczyk.xyz": [2024], "rule.alibaba.com": [857], "www.vicetorrent.com": [21522], "login.cnbc.com": [2645], "www.word.camera": [22612], "www.pasportaservo.org": [12457], "img.gizmag.com": [6676], "blck.by": [2024], "cawo-uat.kh.hu": [8739], "grill.coop.ch": [3647], "*.extabit.com": [5509], "entmd.co": [2024], "moscow.rt.ru": [13529], "cms.surf.nl": [14260], "gloucestershire-consult.objective.co.uk": [21225], "ameme.me": [2024], "jofo.org": [2024], "analytics.xxxyours.com": [22662], "mapkyc.me": [2024], "img.alternet.org": [925], "seal.xramp.com": [18680], "neiulibrary.worldcat.org": [18536], "iceleads.com": [7914], "choice.live.com": [9495], "www.my.gov.au": [21059], "khori.us": [2024], "getvoip.com": [6569], "kats.li": [2024], "r.rdmr.ca": [2024], "mhl.us": [2024], "prgp.us": [2024], "wdrs.fnal.gov": [5741], "civilserviceworld.com": [19602], "*.blogspot.ug": [2127], "fused.com": [6251], "*.scribd.com": [14475], "plugin.pochtabank.ru": [12876], "idl.cs.washington.edu": [17376], "volunteer.sccgov.org": [14401], "trl.mx": [2024], "cwil.es": [2024], "www.london.gov.uk": [9590], "aka.asqf.net": [2024], "www.blog.kaspersky.ru": [8821], "stuff.umeahackerspace.se": [17228], "rafflecopter.com": [13585], "www.abebooks.co.uk": [466], "www.rab-asr.ch": [22061], "falle.nl": [2024], "iwantth.is": [2024], "piwik.werosys.de": [18122], "www.harlandforms.com": [7199], "extract.services.disqus.com": [4559], "tl.hku.hk": [20387], "altoonamirror.com": [943], "w9r.de": [2024], "www.ksiegarniawarszawa.pl": [9038], "caribbeanpoetry.educ.cam.ac.uk": [17332], "exploreb2b.com": [5500], "chop.is": [2024], "www.labs.radioplayer.co.uk": [13581], "www.scalability.org": [14387], "beads-ly.com": [2024], "static.boardgamearena.net": [2182], "www.nationale-it-security-monitor.nl": [11127], "lists.firehol.org": [20107], "kuvat.huuto.net": [20449], "pixiemk.com": [2024], "freedommunitions.com": [20160], "pediatricsclerkshipblog.stanford.edu": [15449], "basket.genotek.ru": [20229], "*.verticalresponse.com": [17729], "mubasher.alarabiya.net": [19131], "blog.facebook.com": [5609], "me.vs.it": [2024], "autoconfig.eecs.berkeley.edu": [17329], "www.campfireunion.com": [2795], "go.tnc.digital": [2024], "forum11.hkgolden.com": [7058], "rfe.me": [2024], "www.ingress.com": [8144], "static.bbc.co.uk": [19331], "vrt.as": [2024], "bolurl.com": [2024], "r24616619.sync.app.asana.com": [1265], "traceja.de": [2024], "opensource.conformal.com": [3575], "anidb3.anidb.net": [1065], "*.bestoliveoils.com": [1837], "www.posta.ch": [12996], "www.pullingladies.com": [12297], "tsf.stanford.edu": [15448], "x.ptstyle.biz": [2024], "css.chefkoch.de": [3062], "cdn.oops.org": [11933], "rbne.ws": [2024], "goettingen.freifunk.net": [6168], "*.apobox.com": [393], "ferr.co": [2024], "www.proxy.library.georgetown.edu": [6531], "www.winkdex.com": [18446], "vid.ly": [17762], "kov.lt": [2024], "privacyassociation.org": [8262], "thesol.es": [2024], "powerdns.com": [13036], "bit.utoft.org": [2024], "www.akademikerforsakring.se": [803], "dzerzhinsk.startsmile.ru": [21980], "wt.research.gov": [13854], "nsidc.org": [11100], "cmi.ameslab.gov": [19191], "jenn.pw": [2024], "www.astronomynow.com": [1329], "hnkjsc.ok.1688.com": [51], "insideillinois.info": [8167], "www.robokassa.ru": [13982], "rm.api.weibo.com": [18279], "huainingguan.jd.com": [8434], "go.ljasinski.pl": [2024], "plugins.jenkins.io": [20638], "balabit.com": [1647], "eag4m.es": [2024], "mylearning.southampton.gov.uk": [15259], "www.open.com.au": [11948], "klipper.beget.com": [19347], "andersonvalleypost.com": [4981], "jobmatcher.hodesiq.com": [1825], "*.truevault.com": [16843], "www.yabause.org": [18718], "pulpcon.xyz": [2024], "login.vk.com": [17578], "ca.4.boardgamearena.com": [2182], "re-publica.de": [13657], "www.gamasutra.com": [16086], "www.psarips.com": [12328], "ilstr.io": [2024], "secure.ancestry.co.uk": [1035], "communities.netapp.com": [11221], "apps.rsb.ru": [14058], "*.internetretailer.com": [17727], "aap.events": [2024], "www.qutebrowser.org": [13438], "service.sumologic.com": [15658], "opia.illinois.edu": [17346], "nevelsk.sakh.com": [21719], "sbn.to": [2024], "bgmb.me": [2024], "bitflyer.jp": [1958], "news.indieweb.org": [8076], "southgate.so": [2024], "trepup.co": [2024], "hk.taobao.com": [16015], "cis.vutbr.cz": [17609], "static.events.ch": [5435], "canvas.iu.edu": [8069], "freelancer.com": [6154], "ar.redhat.com": [13735], "pet-devel.debian.net": [4261], "go.onelink.me": [21256], "allpoetry.com": [909], "bravou.re": [2024], "link.myiasp.com": [2024], "tbiomed.biomedcentral.com": [1931], "go.rocne.ws": [2024], "www.thelocal.dk": [22165], "gc.digitalriver.com": [4469], "desert.sn": [2024], "w.tt": [2024], "wisebr.us": [2024], "amch.questionmarket.com": [13409], "slideshare.net": [15028], "www.bitshare.com": [19394], "jp.fujitsu.com": [6223], "bitnik.org": [2033], "*.torlink.co": [16638], "gr8imag.es": [2024], "rtb-csync.smartadserver.com": [15049], "newmail.friday.ru": [20175], "static.bandisoft.com": [1664], "cs.yieldoptimizer.com": [18776], "evalua.gent": [2024], "gongdan.oss-cn-hangzhou.aliyuncs.com": [19143], "jd.mail.ru": [9891], "jws.link": [2024], "newgtlds.icann.org": [7685], "a.ciencia.vc": [2024], "irrlab.com": [20583], "apply.commonapp.org": [3486], "www.gaborszathmari.me": [6379], "api.airbites.net.ua": [19120], "www.playmates.com": [12846], "www.processing.org": [13167], "fanliga.isport.blesk.cz": [2088], "immo.ladepeche.fr": [9128], "sutaze.centrum.sk": [19548], "images.redbox.com": [13740], "www.ylilauta.org": [22682], "laos.usembassy.gov": [22406], "0-static.ideel.com": [7933], "labs.mwrinfosecurity.com": [9824], "cables.com": [2719], "hereditasjournal.biomedcentral.com": [1931], "ftw.dj": [2024], "www.ddos-guard.net": [19788], "www.visa4uk.fco.gov.uk": [5548], "reports.bezeq.co.il": [19362], "bangui.usembassy.gov": [22406], "at.tgs.org": [2024], "c7.nrostatic.com": [21189], "to.ocgp.org": [2024], "boston.gumtree.com": [20323], "d3.biz.itc.cn": [8401], "wptbc.com": [2024], "less.works": [20815], "cheapies.nz": [19566], "troy.hn": [2024], "kanaga.ga": [2024], "qk.hitravel.xyz": [2024], "app.perfectaudience.com": [12591], "www.ordbogen.com": [12130], "funds.gofundme.com": [6761], "g.kruger.joburg": [2024], "fctry.us": [2024], "zol.ac": [2024], "kanaga.gq": [2024], "eniro.tns-cs.net": [22226], "www.arstechnica.com": [1242], "flibusta.is": [5895], "sata.seagate.com": [14499], "thedailygreen.com": [7269], "secure-media.ztat.net": [18877], "milye-obmanschicy-serial.friday.ru": [20175], "f4.hitravel.xyz": [2024], "admin.unet.by": [22367], "i1.social.microsoft.com": [10396], "copi.cc": [2024], "u-bordeaux.fr": [16990], "b.dav3.net": [2024], "www.telecomindustrydialogue.org": [16139], "gayakuman.com": [6459], "gastro.deals": [2024], "www.ffs.ch": [15756], "act.credoaction.com": [3789], "scio.li": [2024], "revision3.com": [13902], "henr.ie": [2024], "api.btcchina.com": [1581], "andrij.me": [2024], "jobs.web.de": [18146], "cl.thomsonreuters.com": [16456], "nisit69.com": [11462], "www.volcanoecigs.com": [17914], "*.dmcdn.net": [4119], "r24820211.sync.app.asana.com": [1265], "connect.magentocommerce.com": [9869], "touspolitiques.franceinter.fr": [20147], "pubs.aaas.org": [275], "www.barvaux.org": [1712], "k.bytefreq.com": [2024], "sellbox.us": [2024], "www.musliminstitute.org": [10762], "cache2.djoser.nl": [19851], "devwiki.pfsense.org": [12637], "ffgstest.tocco.ch": [16600], "mbh.me": [2024], "p1.mail.mbank.pl": [9733], "locate.apple.com": [1151], "learn.tropo.com": [16835], "partner.toutiao.com": [16680], "adfs.strode-college.ac.uk": [15597], "pvts.tk": [2024], "newsletters.westlothian.gov.uk": [22570], "thepiratebay.lu": [21522], "at.rust.la": [2024], "www.eset.at": [4945], "www.jsfiddle.net": [20658], "link.uepath.com": [2024], "*.ariejan.net": [1218], "kmu.ige.ch": [15759], "an.affec.tv": [743], "dbzl.it": [2024], "bt.zamartz.com": [2024], "www.slf.se": [14191], "www.guerrillamail.com": [6987], "hires.gsfc.nasa.gov": [10909], "i.lv3.hbo.com": [20351], "www.educause.edu": [5086], "owa.khabarovskadm.ru": [20708], "login.dealer.com": [4245], "translate.yandex.ua": [18747], "www.ledgerscope.net": [9235], "mosr.tk": [2024], "*.lapatilla.com": [9130], "download.handbrake.fr": [7173], "polarssl.org": [12905], "japsand.x2go.org": [18589], "blog.ethereum.org": [5367], "front.facetz.net": [5614], "*.aclj.org": [983], "thetinhat.com": [16390], "schbstd.com": [2024], "live.islamweb.net": [8373], "www.vpsfree.cz": [22506], "rk.to": [2024], "tref.is": [2024], "www.sched.co": [14411], "oppelt.com": [12095], "api.eia.gov": [4909], "abc11.tv": [2024], "flb.me": [2024], "my.msn.com": [9808], "handtekening.nl": [7180], "fmsrel.com": [2024], "earlyyears.holyrood.com": [20393], "carto.mol.org": [10521], "www.vdio.com": [17671], "bprbzk.nl": [11172], "*.euserv.de": [4975], "zlyxy.me": [2024], "www.merkleinc.com": [20967], "business.shaw.ca": [14748], "fmeio.tk": [2024], "*.rapidbuyr.com": [13615], "fb.uanhc.net": [2024], "kck.fyi": [2024], "pt.ulule.com": [17224], "git05.rostrud.ru": [21677], "proph.se": [2024], "www.base64decode.org": [19322], "g1.std3.ru": [15511], "www.nds.rub.de": [13539], "wusmaccount.wustl.edu": [18089], "simply.ac": [2024], "l.0l.de": [2024], "app.weekplan.net": [18272], "t.jomelle.com": [2024], "autn.be": [2024], "www.tmsz.com": [16592], "fb.adsrvr.org": [688], "rec-law.us": [2024], "pep.uni-potsdam.de": [17417], "lads.cc": [2024], "i.cs.hku.hk": [20387], "api.careerbuilder.no": [19512], "www.thinkmoney.co.uk": [22192], "manc.it": [2024], "dixon.link": [2024], "tr1.gtimg.com": [6975], "kbyte.xyz": [2024], "nlsrs.com": [2024], "hydra-images.cursecdn.com": [3927], "paste-dev.lighttpd.net": [9362], "lms.dss.un.org": [17057], "gntg.onl": [2024], "u.tknet.nl": [2024], "anketa.bm.ru": [2176], "www.tfes.org": [16237], "statsquiz.difi.no": [4452], "stagingdeb.theforeman.org": [22152], "lib.is": [2024], "intranet.hslu.ch": [7589], "ecrm.taobao.com": [16015], "skimlinks.me": [2024], "hothardware.pricegrabber.com": [13098], "zg.ch": [22061], "stella.vc": [2024], "azn.do": [2024], "fortepan.444.hu": [183], "www.ghirardelligiftguides.com": [6610], "rynd.tk": [2024], "turkey.tpprf.ru": [22260], "air-mil.es": [2024], "*.info.edgesuite.net": [805], "maildr.gettyimages.com": [6604], "r24820197.sync.app.asana.com": [1265], "hostap.epitest.fi": [22620], "owapps.clp.com.hk": [2636], "btg.mtvnservices.com": [17748], "accounts.spiceworks.com": [15338], "rasp.yandex.kz": [18743], "cran.r-project.org": [13447], "campaign.hkjc.com": [20384], "develop-online.net": [19820], "max.se": [10101], "stpeter.im": [15571], "www.threat2alert.com": [16466], "link.druel.com": [2024], "help.consumerfinance.gov": [3603], "www.pandaction.wwf.ch": [18028], "www.gavelbuddy.com": [6449], "goafs.co": [2024], "u.mairc.tk": [2024], "prati.eu": [2024], "blog.selfhtml.org": [21775], "www.rylwarfare.net": [13544], "pda.104.com.tw": [18], "mobilshop.netcologne.de": [11226], "developer.asana.com": [1265], "www.grasswire.com": [6880], "eu.link.decdna.net": [4269], "alkohol.cz": [870], "blog.bethcodes.com": [13018], "rcfbb.com": [2024], "www.halebop.se": [7162], "bssl.es": [2024], "lmpgam.es": [2024], "epocs.leeds.ac.uk": [17403], "yantaiguan.jd.com": [8434], "codebutler.com": [13018], "hiveage.com": [7433], "apihelp.httpwatch.com": [7102], "vets100.dol.gov": [19867], "reasons.to": [13698], "fbc.im": [2024], "www.drserver.net": [4732], "airbnb.at": [793], "orcid.org": [11696], "cxpr.in": [2024], "allerdalecopeland.greenparty.org.uk": [6908], "behavioralpolicy.org": [1787], "onti.cc": [2024], "nut.sh": [2024], "sjikl.tk": [2024], "design.yammer.com": [18738], "chcido.o2.cz": [2024], "brnw.ch": [2024], "global01.mifile.cn": [10364], "shmny.me": [2024], "windowsazure.com": [18434], "p3nmssqladmin.secureserver.net": [14574], "penn.io": [2024], "nnit.easycruit.com": [5015], "lbre-internal.stanford.edu": [15448], "my.robokassa.ru": [13982], "www.lbl.gov": [9079], "adverts.ie": [714], "tipt.in": [2024], "www.treasury.uillinois.edu": [17034], "m.huxiu.com": [7638], "store.softline.ru": [21889], "alternativet.dk": [933], "l.monao.net": [2024], "www.mbank.cz": [9733], "edp2.adriver.ru": [588], "devwp.fsdata.se": [5596], "login.aftonbladet.se": [759], "serprotel.link": [2024], "www.hoodline.com": [7495], "cs.kent.ac.uk": [17402], "selfharm.co.uk": [21774], "r24626521.sync.app.asana.com": [1265], "printm3d.com": [13117], "pappl.dwd.de": [19911], "regint.accelus.com": [19047], "strunino.startsmile.ru": [21980], "identitymanager.eems.usda.gov": [17299], "ugyfelportal.kh.hu": [8739], "getvo.lt": [2024], "ma.tune.com": [22309], "ecobase.ourproject.org": [21314], "hbo.com": [20351], "www.gigantti.fi": [6634], "generator.webtrends.com": [18264], "o.swisscom.ch": [15761], "deewoo.me": [2024], "go.fokkezb.nl": [2024], "adfox.ru": [578], "thepirate.pw": [22174], "kaos.to": [8803], "www.ozon.travel": [12230], "gavelp.it": [2024], "plute.tech": [2024], "adbrite.com": [619], "mailchimp.com": [9893], "toms.sh": [2024], "sstats.wired.com": [18454], "g.fernandez.sx": [2024], "stringst.xyz": [2024], "www.neteller-group.com": [12103], "*.gigaserver.cz": [6636], "userpanel.ero-advertising.com": [5335], "inpearls.ru": [20540], "url.anson.link": [2024], "pom.nu": [2024], "www.carhire.lastminute.com": [9177], "www.iosdevweekly.com": [7786], "tec.rigoni.org": [2024], "iktls.com": [2024], "training.nra.org": [21176], "starrett.co": [2024], "geekcu.lt": [2024], "www.coin.space": [19642], "www.domru.ru": [4670], "i.byog.co": [2024], "ouinnov.co": [2024], "eps-images.tv2.dk": [15946], "*.bcbits.com": [1662], "erme.co": [2024], "www.logoyes.com": [9572], "a.hotelecam.com": [2024], "www.roia.biz": [14005], "j3.58cdn.com.cn": [213], "mobile-ent.biz": [8225], "dentistry.osu.edu": [11797], "beech.es": [2024], "www.postbank.de": [13007], "btczone.com": [1588], "www.zenmate.com.ve": [18917], "silkroad.com": [14855], "secure.lloydsbank.com": [9537], "cauble.us": [2024], "repositori.upf.edu": [17471], "uk.at.atwola.com": [377], "www.jaast.com": [12380], "bbzz.co": [2024], "tarynwil.li": [2024], "img.dt-static.com": [4653], "1-thumbs.web.sapo.io": [14130], "makediscipl.es": [2024], "sg-logiciels.fr": [21795], "elearning.sydney.edu.au": [22063], "sso.smq.mydatapipe.com": [10846], "voltage-pp-0000.bl.uk": [2358], "autocontext.begun.ru": [1785], "tvstreamhd.ga": [2024], "leolop.es": [2024], "11main.com": [31], "harrogate.greenparty.org.uk": [6908], "bloomz.us": [2024], "evsweb.bls.ch": [1552], "icgne.ws": [2024], "7-eleven.com": [227], "chutelibre.boum.org": [2261], "a.alientech.com": [2024], "freifunk-goettingen.de": [6168], "instacominc.com": [8179], "secure.leadforensics.com": [9211], "sprtn.im": [2024], "rauw.cc": [2024], "armscontrol.org": [19234], "go.fox43.com": [2024], "noc.ac.uk": [17364], "flattr.com": [5889], "support.havelockinvestments.com": [7235], "comedy.co.uk": [19650], "*.commondatastorage.googleapis.com": [6823], "t7r8.ga": [2024], "isharemaps.bathnes.gov.uk": [1715], "pwrp.hn": [2024], "uni-mainz.de": [17410], "ce1.uicdn.net": [17032], "www.spectrum.com": [15318], "nahodka.inetvl.ru": [20525], "gplsg.co": [2024], "m4s.me": [2024], "farand.is": [2024], "daxue.taobao.com": [16015], "www.siz.ch": [21843], "www.publishing-technology.de": [7595], "go.souyri.com": [2024], "bhal.co": [2024], "ebnc.us": [2024], "mynlg.net": [2024], "www.quirks.com": [13420], "suggests.rasp.yandex.com.tr": [18740], "*.banners.victor.com": [17757], "www.skyprogrammeinformation.co.uk": [14995], "webirc.darkfasel.net": [4145], "sustainablebusiness.com": [15731], "mojote.ch": [2024], "architectsjournal.co.uk": [1192], "support.stormpath.com": [15568], "torgodar.tk": [2024], "*.thebureauinvestigates.com": [16329], "masterh7.adriver.ru": [588], "npctex.as": [2024], "clun.yt": [2024], "go.ptrck.nl": [2024], "admin.banan.cz": [1514], "sisko.box.kairo.at": [8782], "www.snoonet.org": [15105], "bellasartes.us.es": [17502], "tntim.es": [2024], "cottages4you.co.uk": [18579], "tpb.unlockme.download": [22259], "www.nspcc.org.uk": [21193], "www.scintilla.utwente.nl": [14449], "buysaf.es": [2024], "nnich.uk": [2024], "newerarec.tk": [2024], "www.sys4.de": [15811], "e5tsr.ga": [2024], "labti.me": [2024], "www.computerlabsolutions.com": [3539], "www.centrify.com": [19546], "remb.ly": [2024], "delivery.swid.switchads.com": [15764], "calc.mellanox.com": [10256], "crft.us": [2024], "form.japantimes.co.jp": [8526], "www.securitymetrics.com": [14585], "photos3.meetupstatic.com": [10231], "www.science.kairo.at": [8782], "seeksadm.in": [2024], "w4tchn0w.ml": [2024], "www.tivi.de": [22709], "*.represent.us": [13847], "tambov.europaplus.ru": [20034], "l3.hitravel.xyz": [2024], "alumni.hkuspace.hku.hk": [20387], "nootriment.com": [11507], "*.yelp.com.hk": [18766], "gsp1.baidu.com": [1641], "digikeytest.digikey.com": [4457], "stratagon.us": [2024], "portal.issworld.com": [7838], "raincat.ch": [2024], "www.vfemail.net": [17567], "passwordscon.org": [21354], "leafly.com": [9218], "astyle.co.za": [2024], "fwd.etrend.sk": [5383], "el-mun.do": [2024], "2.mrwrk.nl": [2024], "ksh.hu": [8766], "www.valeofglamorgan.gov.uk": [17619], "www.apus.agency": [19223], "www.ads-creativesyndicator.com": [3777], "mobilemail.raiffeisen.ru": [13587], "www.t411.li": [15847], "admin.qdaily.com": [21554], "resources.mendeley.com": [10276], "afed.me": [2024], "dreithaler.sipsolutions.net": [14184], "immunityageing.biomedcentral.com": [1931], "rostov.sledcom.ru": [21858], "vandd.me": [2024], "www.anonops.com": [1080], "nhm.ac.uk": [10948], "link.bawiec.com": [2024], "i.t.webtracker.jp": [18258], "bitlydemo.xyz": [2024], "movic.us": [2024], "ichrt.co": [2024], "login.courierpost.co.nz": [3714], "fb-cdn.ghsrv.com": [13682], "www.envirotrend.com.au": [5297], "credit.szfw.org": [22074], "eatdr.in": [2024], "*.norsk-tipping.no": [21155], "www.mail.com": [9890], "playerio.com": [12841], "eeqj.com": [4897], "hq.sinajs.cn": [14909], "fjd.me": [2024], "ikaz.co": [2024], "dblnc.fm": [2024], "msf.me": [2024], "bsd.biomedcentral.com": [1931], "methodactingstrasberg.com": [10341], "adserver-sb-fra.adtech.de": [691], "manage-v39.smartadserver.com": [15049], "sourcer.me": [2024], "grootzakelijk.upc.nl": [17083], "accelogixportal.axosoft.com": [1504], "api.jqueryui.com": [8466], "ho.majordomo.ru": [9914], "elatinos.com": [4919], "peersm.com": [12557], "www.onthehub.com": [21260], "nyantec.com": [21210], "linyi.jd.com": [8434], "club.lego.com": [9082], "imprl.biz": [2024], "home.entrust.net": [5291], "comments.richarddawkins.net": [13928], "jobamatic.com": [8608], "static.51fanli.net": [209], "static-cdn.ashleymadison.com": [1278], "customercare.symantec.com": [15780], "hostedtalkgadget.google.com": [6818], "www.firefoxosdevices.org": [5844], "luxurycustomwheels.com": [9687], "so.2345.com": [98], "www.swift.org": [15752], "www.berlinonline.de": [1823], "bueno.bz": [2024], "www.newsko.ru": [21126], "m.flox.co.za": [2024], "sta1.36krcnd.com": [154], "flyingmeat.com": [5944], "adamlin.co": [2024], "le.qa": [2024], "dotsec.com": [4691], "kochenevonso2.nso.ru": [21192], "*.site5.com": [14929], "lk.egas.us": [2024], "silksupply.co": [2024], "web.vip.miui.com": [9765], "account.pbbans.com": [21365], "static.xm-cdn.com": [18610], "troopers.de": [16834], "webelos336.com": [2024], "k.suntravel.xyz": [2024], "ba.yandex.com.tr": [18740], "www.gulesider.no": [6999], "tv-ww.com": [2024], "forums.netbeans.org": [11223], "www.citrixonlinecdn.com": [3182], "mtwst.co": [2024], "stopwco.com": [2024], "stihi.ru": [21993], "str.ms": [2024], "s32.cnzz.com": [3328], "www.traceroute-online.com": [22263], "trilightzone.org": [22288], "*.postgresql.org": [13021], "apps.skypeassets.com": [15004], "list.tmall.hk": [16589], "pubc.it": [2024], "go-he.re": [2024], "stls.us": [2024], "domtele.com": [19878], "www.dwd.de": [19911], "s.jay-toeic.com": [2024], "fscc.me": [2024], "m.local.ch": [9548], "5.url.cn": [22399], "acmefa.me": [2024], "dw1.s81c.com": [21708], "newsletter.bernina.com": [1827], "get.uberflip.com": [22341], "parodice.friday.ru": [20175], "kancloud.cn": [20681], "s.p-h2o.com": [2024], "help.ekmpowershop.com": [5119], "member.harland.com": [7199], "admin.technobase.fm": [22111], "nowlab.cse.ohio-state.edu": [11796], "www.00f.net": [0], "honestpolicy.com": [7492], "ppe.mercatus.org": [10296], "datenzentrum.ble.de": [19406], "developermail.io": [4407], "alxj.co": [2024], "link.fox4kc.com": [2024], "www.iolproperty.co.za": [7782], "nmt.starfishsolutions.com": [21977], "gocart.valueclickmedia.com": [17628], "analytics.snoobi.com": [15104], "ro.norton.com": [11545], "clickrover.ml": [2024], "cnn.ph": [2024], "marktplaatsperskamer.nl": [10034], "www.leblibrary.com": [9232], "orel.rt.ru": [13529], "nie-wieder-vds.de": [11432], "e-plus.de": [4838], "smsbulk.kyivstar.ua": [9067], "www.maldon.gov.uk": [20914], "*.homedepot.com": [7480], "ssl.bbc.co.uk": [1524], "click.ml": [2024], "techtime.mit.edu": [9761], "www.bizchannel.cimb.com.sg": [2619], "layar.it": [2024], "*.pressdisplay.com": [11386], "tr.gamigo.com": [6426], "kenduri.in": [2024], "www.it-offshore.co.uk": [7842], "c.sli.mg": [21859], "wicnss.nal.usda.gov": [17299], "xornal.de": [2024], "a.mjuk.is": [2024], "www.navut.cz": [11046], "rimg01.rl0.ru": [13972], "www.dailyedge.ie": [19751], "bvts.in": [2024], "at.lclark.edu": [2024], "undergrad.osu.edu": [11797], "s4.gismeteo.pl": [20252], "forums.qrz.com": [13363], "yng.li": [2024], "developer.jamendo.com": [8512], "zhaoqing.jd.com": [8434], "meanstinks.com": [10147], "go.booty.com.au": [2024], "www.tokbox.com": [16607], "lgaevents.local.gov.uk": [17046], "tr01.co.uk": [2024], "www.nsa.gov": [11099], "www.bizo.com": [2052], "media-cache-ec1.pinterest.com": [12731], "hairpower.co.uk": [2024], "goto.irenes.co": [2024], "prasiatko.vpsfree.cz": [22506], "a.unused.link": [2024], "thumbnail.image.space.rakuten.co.jp": [13594], "athens.usembassy.gov": [22406], "www.remind.com": [13821], "www.bundesverfassungsgericht.de": [2449], "r24626507.sync.app.asana.com": [1265], "membernotifications.aol.com": [380], "store.destructoid.com": [4384], "www-portal-stage.oracle.com": [12116], "consult.tunbridgewells.gov.uk": [22308], "www.unhosted.org": [17251], "fotozhaba.yaplakal.com": [22668], "l.agis.co": [2024], "www.careers.wustl.edu": [18089], "weert.nl": [11172], "allgeek.co.uk": [2024], "goals4u.us": [2024], "up.s3cr3t.net": [2024], "www2.richmond.gov.uk": [21649], "magadan.tpprf.ru": [22260], "twt.xtrust.it": [2024], "fuwu.aliexpress.com": [19140], "portal.volexity.com": [17915], "www.helponclick.com": [7304], "2oo.life": [2024], "l.odasubs.com": [2024], "iswww.play-asia.com": [12828], "portnerpress.com.au": [12987], "vavel.me": [2024], "mrmweb.co": [2024], "www.childwatch.uio.no": [17414], "ctrlpanel.mythic-beasts.com": [10891], "solarflare.com": [15183], "hlav.ac": [2024], "www.adultswim.com": [19094], "owa.consumer.org.hk": [3599], "primus.ca": [13112], "newsroom.godaddy.net": [6754], "astore.amazon.ca": [19167], "frdsc.net": [2024], "amp.as": [2024], "www.paste.sh": [12473], "bua-qa.memberdirect.net": [10265], "webmail.swan.sk": [15742], "*.bho.pl": [2165], "zagreb-be-there.infinum.co": [20526], "homes.redding.com": [4980], "chaosreigns.com": [3012], "m3a.vhlcentral.com": [17571], "*.aquiss.net": [1179], "app.yuedu.163.com": [50], "www.bittrex.com": [2047], "cn.piliapp.com": [12706], "africanamericanstudies.georgetown.edu": [6531], "compliance.georgetown.edu": [6531], "www.belaruspartisan.org": [19350], "wwf.to": [2024], "fast.to": [2024], "*.endace.com": [5234], "highways.gov.uk": [20376], "clients.vluki.ru": [22478], "getax.co": [2024], "prxs.us": [2024], "wustl.libapps.com": [9302], "secur.ly": [2024], "www.foursquare.com": [6061], "krk.sledcom.ru": [21858], "pxl.ht": [2024], "sfd.click": [2024], "fcnews.tv": [2024], "ticketmaster.co.uk": [16495], "recruit2.info": [2024], "itbookshelf.com": [7861], "fr.hertz.be": [7338], "l.niklas.top": [2024], "cltch.us": [2024], "wwte4.com": [18031], "kb.duo.com": [4797], "entrust.com": [5290], "steamstat.us": [21988], "static.siteheart.com": [14933], "prs.pctvix.co": [2024], "nakedsecurity.sophos.com": [15224], "www.illiniunion.illinois.edu": [17346], "main.trafficfactory.biz": [16723], "delat.se": [2024], "binary.cr.yp.to": [3745], "ynr.la": [2024], "natureecoevocommunity.nature.com": [11140], "browser.yandex.com.ua": [18741], "wawa.re": [2024], "login.wustl.edu": [18089], "mastiff-online.korelogic.com": [8997], "*.netseer.com": [11246], "git.kairo.at": [8782], "sspl.org": [21963], "clickon.com.ar": [3250], "www.hyperboria.net": [7651], "www.macobserver.com": [9848], "ask.barclayscorporate.com": [1689], "goto.jy.am": [2024], "zscaler.com": [19012], "nb.style": [2024], "www.ctera.com": [2698], "westbred.ag": [2024], "ezines.homecomputing.fr": [7487], "duo.sc": [2024], "irc.lc": [20575], "ir.yahoo.co.jp": [18730], "*.dailymotion.com": [4119], "uh.ma": [2024], "client.downtownhost.com": [4725], "iqq.be": [2024], "www.edas.info": [5065], "blockexplorer.nu": [2102], "virool.com": [17827], "hitsebeats.ml": [2024], "blog.aereo.com": [733], "www.groupees.com": [6950], "hbags.info": [2024], "rt04.epimg.net": [5126], "inwx.at": [8230], "l.mc-au.com": [2024], "t4.liverail.com": [9508], "pvp.city": [2024], "teamestates.com": [2024], "1cart.co.nz": [61], "shop.refresher.sk": [13781], "*.audiogo.com": [1385], "shamigui.youku.com": [18804], "iot.uk": [20563], "amzsup.co": [2024], "su.chainfire.eu": [19556], "forms.thomsonreuters.com": [16456], "tps10206.doubleverify.com": [4703], "bldtrk.io": [2024], "held.me": [2024], "uhub.org": [17204], "r-data.adsrvr.org": [688], "cbp.net.br": [2538], "www.benchmarkjs.com": [19354], "drha.us": [2024], "doh.kr": [2024], "api-stage.websitealive.com": [18242], "slon.ru": [15034], "tccg.cf": [2024], "vufind.org": [17961], "shazam.com": [14750], "a.jimdo.com": [8586], "yrevista.dgt.es": [2024], "www.opennicproject.org": [21277], "a-p.it": [2024], "lef.org": [9240], "diffdev44.smartadserver.com": [15049], "www.easycron.com": [19941], "help.xbox.com": [18639], "avfc.se": [2024], "welove.to": [2024], "med.hku.hk": [20387], "bbqatx.co": [2024], "gpoi.state.gov": [17146], "copyright.illinois.edu": [17346], "deater.net": [4253], "u.laliberte.io": [2024], "kinabalu.link": [2024], "becker1.wustl.edu": [18089], "www.onedrive.com": [11869], "ircquotes.anidb.net": [1065], "db1.ulule.com": [17224], "aan.sh": [448], "f.newsletter.sky.com": [14989], "www.klikki.fi": [20733], "hosting.tip.net.au": [15885], "eforsa.pl": [4905], "ishop.taobao.com": [16015], "static.flattr.net": [5888], "tuquito.org.ar": [22311], "www.foscam-bg.com": [6045], "forum.xfce.org": [18603], "cursosdeespanol.unizar.es": [17441], "gultd.us": [2024], "go.nevergone.ru": [2024], "shaoyang.jd.com": [8434], "areyou.local.ch": [9548], "l.webone.io": [2024], "jakb.it": [2024], "*.peer1.com": [12545], "atfonline.gov": [19267], "s7.rr.itc.cn": [8401], "sa-proview.thomsonreuters.com": [16456], "webftp.dreamhost.com": [4743], "edigitalresearch.com": [4893], "static.hotjar.com": [20412], "vluki.ru": [22478], "justapple.com": [8708], "auth.vt.edu": [17825], "permkrai.ru": [21390], "per.ln.com.ar": [2024], "alice-dsl.de": [858], "groov.co": [2024], "payment.vas-hosting.cz": [22428], "www.mixer.cz": [10504], "www.hirlevel.aldi.hu": [357], "wordstat.yandex.com": [18742], "*.neteller.com": [12103], "overclockers.co.uk": [12190], "www.rubytogether.org": [14077], "campus-map.stanford.edu": [15448], "im4.kommersant.ru": [20746], "r24820190.sync.app.asana.com": [1265], "monist.oxfordjournals.org": [12222], "fei.pro-market.net": [13157], "movieth.com": [10677], "liqr.co": [2024], "ekast.gr": [2024], "fii.info": [2024], "api.openaccessbutton.org": [11951], "manzy.it": [2024], "about.udemy.com": [17194], "shop.aclu.org": [312], "pic.2345.com": [98], "cldcmp.us": [2024], "b.smartcode.ch": [2024], "down.360safe.com": [144], "res.samsungshop.com.cn": [14325], "*.tickets.com": [16499], "rada.lanet.ua": [20780], "gmx.ch": [6330], "rbt.io": [2024], "go.itpcs.org": [2024], "l.inickster.com": [2024], "gmx.cc": [6330], "kpn.com": [8761], "ibanking.rosevrobank.ru": [14024], "wordpress.grc.nasa.gov": [10909], "usmp.mclaut.com": [20942], "rbt.is": [2024], "www.srf.ch": [21957], "id.norton.com": [11545], "forum101.hkgolden.com": [7058], "www.secure.jhu.edu": [16370], "mmfr.co": [2024], "forums.whirlpool.net.au": [18339], "dgq.me": [2024], "vshn.ch": [17957], "servus.tv": [2024], "t.v91.co": [2024], "www.trust-guard.com": [16851], "line.st": [2024], "ohdev.in": [2024], "nz.bidbubble.com": [1872], "channels.ap.dell.com": [4317], "aldi.pl": [357], "alx.im": [2024], "www.campuslabs.com": [2800], "nl.support.tomtom.com": [16615], "www.googlewatchblog.de": [6832], "staging.aboutads.info": [480], "skg.me": [2024], "mdst.mn": [2024], "www.pkr.com": [12789], "hinckleyandbosworthonline.org.uk": [7416], "www.themuslimtimes.info": [16300], "m.soft.yandex.com.tr": [18740], "cart.mcafee.com": [10129], "www.ntualumni.org.uk": [11011], "*.tusfiles.net": [16921], "aldi.pt": [357], "backend.censor.net.ua": [19538], "*.intuitstatic.com": [8300], "sales.roblox.com": [13980], "content1.myyearbook.com": [10864], "wespi.re": [2024], "signup.dreamhost.com": [4743], "lcsd.gov.hk": [7067], "domainnamesales.com": [4648], "gyft.com": [7020], "ess.bathnes.gov.uk": [1715], "umc.tips": [2024], "morrisons.co.uk": [10641], "johnmurch.info": [2024], "vuxml.org": [22513], "mysupport.capita-software.co.uk": [19506], "zalfa.cf": [2024], "www.lynchinteractive.com": [9691], "www.the-dma.org": [16260], "wdune.ourproject.org": [21314], "levl.in": [2024], "helpdesk.eyeota.net": [20062], "www.francetvinfo.fr": [20149], "giveaway.ml": [2024], "pricezombie.com": [13101], "wlcx.us": [2024], "jbty.us": [2024], "myuvm.uvm.edu": [17154], "forms.lincoln.gov.uk": [9378], "l.netmag.mx": [2024], "webstatistieken.xs4all.nl": [18625], "macfarlanepackaging.com": [9841], "str.pm": [2024], "wallet.trezor.io": [22282], "ly.dgfish.org": [2024], "dot.djmonta.me": [2024], "gerld.me": [2024], "www.icmail.com": [7692], "voicerepublic.com": [17910], "uwglibrary.worldcat.org": [18536], "nebula.com": [11167], "argos.co.uk": [1214], "developers.owler.com": [21321], "taxga.in": [2024], "dl.wootylab.com": [2024], "dev-2.republic.ru": [21630], "pashm.com": [12456], "abanica.me": [2024], "mbayaq.co": [2024], "www.festivusgames.com": [5747], "nokiasiemensnetworks.com": [11499], "www.pragmaticstudio.com": [13060], "bodyenf.it": [2024], "congress2015.erc.edu": [4941], "www.islandsavings.ca": [8381], "wott.ch": [2024], "www.tescobank.com": [16207], "cxx.de": [2024], "lucky2u.net": [9658], "www.movie.to": [10675], "us.en.kb.sony.com": [15215], "www.sehirfirsati.com": [14624], "www.link-page.info": [20844], "svn.mageia.org": [9865], "ta.libreoffice.org": [9327], "feed.theregister.co.uk": [22182], "billing.cloudaccess.net": [3277], "com.kairo.at": [8782], "bbs.taobao.com": [16015], "links.mead.io": [2024], "vfsglobal.rsb.ru": [14058], "prms.ca": [2024], "static.arstechnica.net": [1242], "helpdesk.martinus.sk": [10044], "b.tomget.com": [2024], "www.datalogix.com": [4194], "esdpubs.nasa.gov": [10909], "i5.3conline.com": [169], "stkittszipline.com": [15420], "*.bidsystem.com": [653], "stv.pm": [2024], "kariera.ceneo.pl": [2944], "link.cac.sc": [2024], "512pixels.net": [208], "bytes.com": [19488], "upaymobile.co.uk": [17468], "majesticseo.com": [9912], "e.prisedi.cat": [2024], "on.vh1.com": [2024], "rightmove.co.uk": [13942], "www.phpdoc.org": [12684], "www.29.cbsm.at": [8782], "dobro.chetv.ru": [19577], "zaif.jp": [18874], "www.ncar.cc": [21094], "*.www.wikinvest.com": [18389], "www.forevernew.com.au": [6009], "admatrix.jp": [585], "myedaccount.com": [10801], "unomaha.worldcat.org": [18536], "ftp.rfc-editor.org": [13477], "hsalinks.com": [2024], "lepoolahugo.com": [2024], "wargaming.com": [18074], "rcpmag.com": [13464], "loooriiis.xyz": [2024], "debaak.net": [2024], "www.btcstore.eu": [1592], "www.economia.elpais.com": [5126], "slack-service.gitbook.com": [6655], "*.networkforgood.org": [11304], "ath.re": [2024], "bonfi.de": [2024], "mailarchive.aacqa.gov.au": [276], "www.netnow.co": [11241, 11242], "wpgo.co": [2024], "ews.osu.edu": [11797], "icca.adelphi.de": [635], "wiltsmessaging.co.uk": [22595], "www.city-link.co.uk": [3184], "cacti.spnet.ru": [21939], "nho.io": [2024], "imperian.com": [20512], "rny.me": [2024], "q.is": [2024], "blimpme.com": [2092], "mhcache.com": [10358], "*.urbanterror.info": [17495], "www.uv.es": [17544], "www.blogburst.com": [4325], "www.mozy.co.uk": [10705], "alliance-media.org.uk": [19150], "tmco.co": [2024], "actionab.ly": [2024], "ustud.io": [2024], "campus.afip.gob.ar": [19106], "www.zenmate.dk": [18917], "roze.in": [2024], "link.cane.com": [2024], "auto.idnes.cz": [20483], "asahi-fb.jp": [2024], "akahnn.com": [2024], "zamorozleto.mcdonalds.ru": [20941], "fb.maps.me": [9985], "www.fosshub.com": [20141], "wdw.play-asia.com": [12828], "lplza.co": [2024], "insidehighered.com": [8165], "secure.gettyimages.co.jp": [6604], "www.entropywave.com": [5288], "go.ux.ee": [2024], "img5.leboncoin.fr": [20796], "*.scrumbleship.com": [21758], "www.wrelease.nl": [22622], "telejec.tv": [2024], "bzr.debian.org": [4263], "wiki.shibboleth.net": [14763], "chqny.in": [2024], "www.itsc.umd.edu": [17351], "go.spazz.com": [2024], "faround.net": [5655], "mcgcruise.com": [2024], "delhicowork.com": [2024], "www.hollywoodreporter.com": [7464], "247nfl.co": [2024], "status.leagueoflegends.com": [9220], "m-lp.co": [2024], "w2u.eu": [2024], "s7d2.scene7.com": [14402], "chessprep.com": [2024], "url.jael.ee": [2024], "smtp.ipleak.net": [20571], "smp.specificmedia.net": [15313], "ourmojo.us": [2024], "mdm.softline.ru": [21889], "wpsm.nl": [2024], "a.bjm.cc": [2024], "support.sensiolabs.com": [14648], "www.esf-works.com": [4950], "pureg.us": [2024], "git.busybox.net": [19479], "www.daofile.com": [19756], "www.jiffyfreescore.com": [8582], "ku.dornick.net": [2024], "api.fitbit.com": [5867], "zb45.nl": [18845], "cqbuswiki.duoshuo.com": [19906], "www.bungie.net": [2453], "nmfc.engineering.osu.edu": [11797], "s95.cnzz.com": [3328], "nik.xyz": [2024], "vade.taxi": [2024], "rush.band": [2024], "nkdc.moderngov.co.uk": [21005], "8kbhkort.kk.dk": [8748], "cdn5.openculture.com": [12039], "boyerurl.ca": [2024], "shocm.me": [2024], "www.us.jobs": [22403], "upload.giphy.com": [6646], "ncm.novarait.com": [4500], "eld.baden-wuerttemberg.de": [19302], "www.priceshoes.com": [21495], "aswww.eu": [2024], "publicinsightnetwork.org": [13255], "dns.js.org": [20657], "gdky.in": [2024], "ekfws.link": [2024], "releasenotes.webtrends.com": [18264], "ahisc.xyz": [2024], "donate.doctorswithoutborders.org": [4614], "gerd.io": [2024], "host14.top": [2024], "images.dealertrend.com": [4248], "mail2k.udngroup.com": [17020], "*.sap.com": [14129], "www.arcor.de": [1201], "www.gog.com": [6343], "www.sproutvideo.com": [15390], "izhevsk.psbank.ru": [13231], "cdb.io": [2024], "*.login.live.com": [9495], "superkuh.com": [15697], "mythicalcreatureslist.com": [10892], "llewq.link": [2024], "techmw.st": [2024], "aec.org.es": [2024], "jyllands-posten.dk": [8719], "webpouz.unizar.es": [17441], "nic.tel": [16169], "paludis.exherbo.org": [5482], "zeni.to": [2024], "fr.mash.to": [2024], "p.devsgoons.com": [2024], "rpcgiving.club": [2024], "c-nfa.jd.com": [8435], "piwik.svz-bw.de": [22054], "a.buds.org.uk": [2024], "studyabroad.georgetown.edu": [6531], "www.netmediaeurope.fr": [11238], "img02.rl0.ru": [13972], "www.osufoundation.org": [21303], "api.digits.com": [4496], "pcre.org": [12257], "crowdin.net": [3824], "spree.tw": [2024], "www.batstrading.com": [1517], "passport.jd.com": [8435], "k5erp.me": [2024], "mikeyev.in": [2024], "www.yourls.org": [22692], "c4sa.co": [2024], "nhanh.co": [2024], "preparedness.usc.edu": [17366], "cwc.onl": [2024], "windowsupdate.microsoft.com": [10395], "amnesty.no": [1018], "www.unop.uk": [17449], "*.arvixe.com": [1262], "tigerdreams.co": [2024], "kf.dianping.com": [19830], "beta.usa.gov": [17110], "uefa.to": [2024], "ruby-forum.com": [14070], "linux.web.cern.ch": [2588], "git78.rostrud.ru": [21677], "www.internetprotectionlab.net": [8283], "plus.ctc.ru": [19738], "apicdn.viglink.com": [17797], "www.scottish-country-cottages.co.uk": [18579], "fotki.yandex.ua": [18747], "media6degrees.com": [10163], "moviefone.com": [10680], "my.dexmedia.com": [4422], "rsac.me": [2024], "ukpirateproxy.xyz": [22176], "dochos.co": [2024], "medrx.sensis.com.au": [16172], "*.metropolia.fi": [10351], "fwdrv.ws": [2024], "engine.4dsply.com": [197], "r.buildblox.net": [2024], "kingsroadmerch.com": [8915], "sellercentral.amazon.com.mx": [19173], "azaz.ie": [2024], "checkout.jwplayer.com": [9601], "vshort.me": [2024], "s.wsj.net": [18021], "moodle.usainteanne.ca": [22404], "gss0.bdstatic.com": [19339], "telegram.wiki": [16147], "aldai.ly": [2024], "roarmag.org": [21661], "w-tune.com": [18202], "bobby.mx": [2024], "uedm.ml": [2024], "kanotix.net": [8797], "mcx.nso.ru": [21192], "opencontainers.org": [12036], "economy.49gov.ru": [187], "bmchealthservres.biomedcentral.com": [1931], "hnkonto.hnonline.sk": [7445], "thompsonschools.illuminateed.com": [20494], "athleticum.ch": [1339], "webdrive.htw-berlin.de": [7103], "rros.ch": [2024], "olb.nationwideuk.ie": [11129], "epget.bme.hu": [1556], "www.junge-piraten.de": [8695], "www.visaforchina.org": [17848], "athenea.upo.es": [17479], "s4.pimg.tw": [12709], "twdc.to": [2024], "aelikes.me": [2024], "cge.ms": [2024], "link.rozak.net": [2024], "szn-ksk.yanao.ru": [22665], "www.theoddsbible.com": [22172], "secure.whitepages.com": [18352], "zlatoust.europaplus.ru": [20034], "pathdefender.com": [12486], "www.saintgimp.org": [21717], "bit.leqg.xyz": [2024], "portal.tpprf.ru": [22260], "www.youtube.com.au": [18800], "kilbeggan.fourecks.de": [6059], "solitelefons.uv.es": [17544], "muscletips.xyz": [2024], "pstars.im": [2024], "homelessnessclearinghouse.govspace.gov.au": [6851], "skystills.com": [2024], "webservices.amazon.com": [963], "static6.businessinsider.com": [2471], "kabardino-balkariya.beeline.ru": [1778], "www.kinko.me": [8923], "*.where2getit.com": [18335], "yingxiao.taobao.com": [16015], "xcat.nl": [18594], "checkout.subscriptiongenius.com": [15629], "*.eastbay.com": [5008], "ynuf.alipay.com": [864], "locationmde.data.gov.uk": [19762], "c0.o0bc.com": [21217], "admd.yam.com": [18734], "www.youbetrayedus.org": [18803], "www.stdhivtraining.org": [2760], "piratebay.inbypass.download": [22259], "*.marinellarose.com": [10008], "natbkj.me": [2024], "iclv.co": [2024], "origin.www.upc.ie": [17082], "rflh.us": [2024], "bugz.foocorp.net": [5976], "www.entrust.net": [5291], "uofi.uillinois.edu": [17034], "beta.fastmail.fm": [5677], "apttherapy.com": [2024], "www.pcisecuritystandards.org": [12253], "juneoven.com": [8694], "www.tatsotsbank.ru": [16039], "praia.usembassy.gov": [22406], "mxr.theplatform.com": [16307], "stj-now.s-msn.com": [14115], "www.warwickshire.gov.uk": [22532], "dts.podtrac.com": [21448], "bmcpregnancychildbirth.biomedcentral.com": [1931], "al-muqaweel.com": [2024], "www.stine.uni-hamburg.de": [17025], "fsd.merton.gov.uk": [10311], "j.amaal.co": [2024], "www.flixbus.de": [5911], "navut.ro.vutbr.cz": [17609], "www.pingupod.de": [12721], "lendingclub.com": [9261], "www.turbo.htwk-leipzig.de": [7596], "r.chrisw.us": [2024], "hsc.lt": [2024], "kiks.yandex.ua": [18747], "ws.vtc.sim-technik.de": [14868], "www.juniperresearch.com": [8697], "3-4.fr": [2024], "www.transmode.com": [16753], "ckng.us": [2024], "www.saucelabs.com": [14365], "anaphoto.uk": [2024], "www.medocmall.co.uk": [10214], "dbny.us": [2024], "tivi.de": [22709], "www.sigmaaldrich.com": [14839], "url.conecte.co": [2024], "masu.rocks": [2024], "abt.cm": [2024], "www.groklearning.com": [6944], "client.qrator.net": [21562], "gcsc.georgetown.edu": [6531], "handmadekultur.de": [7177], "vtvr.gati.be": [2024], "ll-media.tmz.com": [15897], "tyku.it": [2024], "forums.kali.org": [8786], "www.sourcefire.com": [15249], "beonespark.com": [1538], "daxue.aliexpress.com": [19140], "go.olrd.me": [2024], "computextaipei.com.tw": [19661], "rink.me": [2024], "login.thepensionsregulator.gov.uk": [22173], "findchildcare.taipei": [20102], "club.jd.com": [8436], "fontacto.co": [2024], "qa.php.net": [12280], "games.juno.com": [8699], "www.vvcap.net": [17610], "story.qnynp.com": [2024], "www.thezaplab.com": [18888], "store.tenable.com": [16180], "osper.me": [2024], "soylentnews.org": [15268], "minster.khabkrai.ru": [20709], "mindof.media": [2024], "on.mash.to": [2024], "pic3.qiyipic.com": [13354], "lk.meup.org": [2024], "academy.plot.ly": [12860], "scandinavianphoto.se": [14394], "tasker.dinglisch.net": [19841], "bde.li": [2024], "s.aolcdn.com": [382], "support.codebasehq.com": [3358], "jrein.co": [2024], "links.pjr.bz": [2024], "www.kinimatorama.net": [20718], "theinquirer.net": [22157], "smrtwt.ch": [2024], "applyonline.nasa.gov": [10909], "rockhur.st": [2024], "headlines.yahoo.co.jp": [18730], "www.aurous.me": [1396], "centreforeffectivealtruism.org": [2963], "boc.im": [2024], "servicedesk.idoxgroup.com": [20484], "www.trakehner-nord-west.de": [16732], "gongyi.sina.com.cn": [14904], "hosting.yanao.ru": [22665], "qualityunit.com": [13381], "whitehelmets.org": [22579], "passwords.cites.illinois.edu": [17346], "dvcs.w3.org": [17980], "static.ashleymadison.com": [1278], "r.mjm.media": [2024], "randy.tips": [2024], "squarespace.com": [15400], "r.ispot.jp": [2024], "printer.sch.bme.hu": [1556], "utwente.nl": [17151], "www.foreverinfamous.com": [8092], "spcvt.org": [2024], "static1.autoit-cdn.com": [1442], "careers.slac.stanford.edu": [15448], "rohrcruise.co": [2024], "*.adage.com": [3756], "w4tchh3re.tk": [2024], "helpdesk.softcom.com": [15156], "portoncv.gov.cv": [12988], "business.bell.ca": [1792], "probe.yieldlab.net": [18775], "events.fit.edu": [5922], "blog.bazaar.canonical.com": [2823], "funre.us": [2024], "directory.ncl.ac.uk": [10926], "vdopia.com": [17672], "chip-kiosk.de": [2608], "static-cerulean.cursecdn.com": [3927], "pde.cc": [12611], "51.to": [2024], "unitedpts.com": [2024], "redcross.tocco.ch": [16600], "btinfo.co": [2024], "libproxy.aalto.fi": [447], "weusecoins.com": [18125], "www.kongregate.com": [8988], "j.jwf.io": [2024], "www.oneadmin.cz": [11677], "site-cdn5.ghosteryenterprise.com": [6614], "subscribe.billboard.com": [1909], "bellboy.style.com": [15615], "play4-show.gq": [2024], "www.nordea.*": [11508], "tbrgopen.afisha.ru": [19107], "fr-fr.facebook.fr": [5612], "wc.wolframalpha.com": [18487], "universal.iperceptions.com": [20464], "www.puritan.com": [13291], "www.fdworlds.net": [5693], "*.activestate.com": [552], "mcgil.lu": [2024], "arun.objective.co.uk": [21225], "b.fastcompany.net": [5670], "propel.to": [2024], "69d.sx": [2024], "go.e-league.com": [2024], "shop.eset.co.uk": [4946], "g.bornweg-dt.de": [2024], "dly.st": [2024], "by.aug.st": [2024], "comodogroup.com": [3507], "wms.assoc-amazon.de": [1313], "*.foxycart.com": [6066], "www38.polyu.edu.hk": [12936], "adap.tv": [608], "facaumupgra.de": [2024], "orhn.co": [2024], "mixedatsonic.co": [2024], "www.wfncnews.com": [17995], "*.turnonsocial.com": [16916], "home.kairo.at": [8782], "www.regjeringen.no": [13800], "sitejam.com": [21839], "tver.rt.ru": [13529], "l.zepher.me": [2024], "wms.geo.admin.ch": [22061], "zags.astrobl.ru": [19264], "obs-ing.com": [2024], "j-vh.me": [2024], "api.mojang.com": [9789], "bugs.winehq.org": [18442], "www.nationwide-jobs.co.uk": [11129], "iasen.gop": [2024], "internetbs.net": [8274], "ds3.static.rtbf.be": [14063], "www.estavisas.org": [4959], "on.bchil.org": [2024], "scoding.de": [21753], "centennialcollege.hku.hk": [20387], "www.cherwell.gov.uk": [3067, 19571], "borvilag.aldi.hu": [357], "minstroy.astrobl.ru": [19264], "services-sj.mediuscorp.com": [10211], "www.ideone.com": [7944], "login.psft.ust.hk": [22412], "inqs.tv": [2024], "i0s.sinaimg.cn": [14910], "bizlaw.guru": [2024], "m.uic.edu": [17321], "jojo.click": [2024], "on.edison.com": [2024], "kliksegera.com": [2024], "money.kyivstar.ua": [9067], "www.billetnet.dk": [16495], "katalog.yandex.by": [18739], "s-minho.tk": [2024], "toa.click": [2024], "wservices.ch": [18568], "plugins.vuze.com": [17972], "facebook.be": [5612], "digs.by": [2024], "withne.ws": [2024], "zbu.tv": [2024], "go2.trendmicro.com": [16791], "hakkalabs.co": [7159], "dify.me": [2024], "socialmedia.sky.de": [14990], "haoma.lovebizhi.com": [20878], "bx.in.th": [1609], "djust.info": [2024], "x.cynion.com": [2024], "uberspace.de": [17170], "dl.getblogo.com": [2024], "www.jobs.economist.com": [5052], "islinkedto.com": [2024], "gai.me": [2024], "priceonomics.com": [13102], "1lotstp.com": [62], "www.phobos.bnl.gov": [19418], "tchaikovsky.exherbo.org": [5482], "metrika.yandex.com": [18742], "www.invenio-software.org": [8307], "universities.caat.org.uk": [19490], "fvjobs.com": [2024], "moar.click": [2024], "sso.cisco.com": [3165], "my.ancvideo.com": [2024], "new.gitlab.nlnetlabs.nl": [10980], "webdisk.popehat.com": [12962], "www.imgops.com": [20507], "www-947.ibm.com": [7679], "dnsexit.com": [4596], "hautelook.com": [7232], "justdrive.us": [2024], "www.dailypix.me": [4112], "dealda.sh": [2024], "go54.com": [2024], "tudr.in": [2024], "reci.to": [2024], "www.netscape.com": [11289], "ssl.bandisoft.com": [1664], "sm2b.me": [2024], "news.sportbox.ru": [21942], "www.getmybalance.ca": [6598], "endoflife.stanford.edu": [15448], "img1.tv4cdn.se": [15947], "solvenci.com": [2024], "mitpress.mit.edu": [9763], "gvccu.com": [6375], "hackers.fi": [7134], "ucomm.stanford.edu": [15448], "test.crossref.org": [3812], "helpocean.com": [7303], "businessinsider.com": [2471], "i.googledd.com": [2024], "www.shwyz.ca": [14817], "maine.gov": [9908], "admin.pro-linux.de": [13155], "gqtr.to": [2024], "www.airbnb.mx": [793], "www.gemnasium.com": [6503], "tecmobowl.co": [2024], "www.samsungsem.com": [14332], "kh.domonet.ua": [19877], "conferences.ted.com": [15871], "www.mni.thm.de": [15876], "gis.kyivstar.ua": [9067], "www.ptc.com": [21532], "dtx.li": [2024], "dfds.co": [2024], "www.healthnet.com": [20360], "holywdtrmnt.com": [2024], "tvrain.ru": [22329], "infotech-team.com": [18194], "www.coophotellkupp.com": [19683], "www.zenmate.mx": [18917], "www.digitalriver.com": [4469], "www.spacecraft.digital": [21918], "www.pirateproxies.net": [22174], "*.marksandspencer.com": [9955], "zaxman.ml": [2024], "l3-2.kiva.org": [8939], "chinasuppliers.alibaba.com": [857], "glutenl.es": [2024], "ld-nk11.itunes.apple.com": [1151], "orbital.com": [12128], "slickproductsusa.com": [15023], "dspor.tv": [2024], "www.outspark.com": [12186], "hunch.com": [7621], "www.lawgeex.com": [9188], "wap.spdb.com.cn": [21925], "admin.hardbase.fm": [20342], "herlev.emply.net": [5210], "ohce.us": [2024], "nano.nature.com": [11140], "humorpics.net": [2024], "y-b.me": [2024], "home.slac.stanford.edu": [15448], "hugs.so": [2024], "account.schwartzmedia.com.au": [14435], "www.zenmate.ma": [18917], "nsm.stat.no": [11078], "tagasauris.com": [15971], "www.sealedabstract.com": [14500], "you.magento.com": [9868], "*.belnet.be": [1798], "listas.unizar.es": [17441], "fee.ba": [2024], "www.player.io": [12841], "*.gravatar.com": [6883], "magas.auto.ru": [19276], "www.wesbos.com": [18297], "*.salsalabs.com": [14316], "www.lotuscars.com": [9624], "storywriter.amazon.com": [960], "iqdb.org": [20573], "translation.alfresco.com": [850], "www.iciciprulife.com": [7917], "vanas.us": [2024], "phrmwb.com": [2024], "mc.manuscriptcentral.com": [14424], "ametsoc.org": [370], "nickg.uk": [2024], "assets.dice.com": [4440], "avherald.com": [19283], "register.ie": [4500], "link.springer.com": [15380], "www.jobscore.com": [8604], "www.staticgen.com": [15492], "musitb.ga": [2024], "cdn.muscleandstrength.com": [10745], "loginex.microsoftonline.com": [10399], "3c.tmall.com": [22222], "www.uptobox.com": [22395], "de-tr.dict.cc": [4442], "oclo.se": [2024], "www.blogsmithmedia.com": [378, 10680], "tmshop.tm.com.my": [16150], "celebr.in": [2024], "msrow.land": [2024], "services.wsj.com": [22625], "lutte-ouvriere.org": [20894], "cru.org": [3827], "router.vuejs.org": [17963], "rof.im": [2024], "kona33.kontera.com": [8991], "www.iti.illinois.edu": [17346], "www.foss.in": [5577], "fgpro.co": [2024], "thalia.at": [16244], "cloud.vinilox.eu": [17809], "cbse.soe.ucsc.edu": [17390], "*.ucalgary.ca": [17016], "pdu.edu": [12985, 12986], "www.ardis.ru": [1203], "cxt.1688.com": [51], "soz.wtf": [2024], "l10n.cacert.org": [2534], "da.gd": [4092], "www.oca.ucsc.edu": [17390], "s.fujino.us": [2024], "helpdesk.wustl.edu": [18089], "sponsored.boston.com": [2252], "htwk-leipzig.de": [7596], "www.redports.org": [13758], "boxoffice.com": [2272], "www.ijmfreedommaker.org": [7749], "developer.riverbed.com": [13964], "opam.ocaml.org": [11649], "www.vimeopro.com": [17803], "www.lawfareblog.com": [20787], "bshpcr8v.ca": [2024], "dailynk.com": [4116], "media.zuji.com.hk": [19021], "onlrl.uk": [2024], "lnk.pbcnx.com": [2024], "products.sel.sony.com": [15215], "eps.unizar.es": [17441], "texashhs.ideascale.com": [20479], "3ct.me": [2024], "avatar.indapass.hu": [8055], "www.hosteurope.de": [7524], "lesbosquets.webdocs.mediapart.fr": [10194], "on.bamboost.org": [2024], "www.wordtothewise.com": [18522], "marathon.amnesty.fr": [1006], "goguac.io": [2024], "flxi.co": [2024], "36.fotogr.fr": [2024], "www.origin.com": [12141], "dieet.at": [2024], "cmusantaisabel.unizar.es": [17441], "r8u.me": [2024], "docs.openx.com": [12028], "natesnose.info": [2024], "stockton.edu": [15547], "www.urbanvilla.nl": [17496], "cdn.research.nabtrade.com.au": [10905], "visitsor.no": [2024], "*.tvtorrents.com": [16933], "www.midnightbsd.org": [20980], "r24820184.sync.app.asana.com": [1265], "cdbaby.com": [19531], "*.iapc.utwente.nl": [20470], "mnrpl.net": [2024], "jobs.citigroup.com": [3175], "archive.raspbian.org": [13630], "*.swtor.com": [15770], "im9.kommersant.ru": [20746], "pbthdm.bt.motive.com": [21025], "www.iab.net": [8235], "www.c3s.cc": [2513], "thumbs.web.sapo.io": [14130], "www.rdio.com": [13655], "apps.shareholder.com": [14739], "bullionstar.com": [2435], "dev.commentarymagazine.com": [3481], "recn.co": [2024], "sambei.tk": [2024], "webpr.us": [2024], "*.fogbugz.com": [5958], "ztre.site": [2024], "c.atdmt.com": [10393], "wijgaannaareg.nl": [22589], "www.acsf.cornell.edu": [3676], "imageforensic.org": [7984], "partner.just-eat.ca": [20671], "login.netdna.com": [11227], "crdnrd.com": [2024], "portal.zen.co.uk": [18913], "www.affili.net": [744], "gaoyou.jd.com": [8434], "www.braveinfo.net": [2311], "webmail.rrz.uni-hamburg.de": [17025], "staff.gd": [2024], "www.mercola.com": [20965], "www.emoryhealthcare.org": [5203], "media.cndls.georgetown.edu": [6531], "jwst.jpl.nasa.gov": [10909], "myuw.washington.edu": [17376], "developer.jwplayer.com": [9601], "gobold.me": [2024], "myshazam.com": [10860], "mondial.lemonde.fr": [9204], "waikato.ac.nz": [17431], "nextview.vc": [2024], "www.coccoc.com": [3340], "blstc.msn.com": [9810], "academy.kaspersky.ru": [8821], "shop.win-rar.com": [18419], "presseportal.zdf.de": [22709], "www.phishtank.com": [12659], "console.boxcar.io": [2275], "x.3qr.org": [2024], "justdelete.me": [20670], "elsevierhealth.com.au": [5178], "up.dorijan.co": [2024], "hanna.tips": [2024], "focusonlearningcenter.com": [5955], "franklincollege.worldcat.org": [18536], "stry.eu": [2024], "ticket.seferler.yandex.com.tr": [18740], "www.databits.net": [4188], "*.rudi.net": [13540], "sndp.lt": [2024], "web.extension.illinois.edu": [17346], "dashboard.goroost.com": [20292], "nji.co": [2024], "l.florida.pe": [2024], "ignum.cz": [7735], "snyk.io": [21885], "jmf.im": [2024], "pksl.tv": [2024], "datapipe.co.uk": [4201], "programming.wolframcloud.com": [18489], "funes.in": [2024], "sthru.co": [2024], "www.cultura.no": [3910], "asearch.alicdn.com": [853], "collection.itunes.apple.com": [1151], "mobilegaming.williamhill.com": [18407], "forge.indepnet.net": [8063], "vologda.beeline.ru": [1778], "vitalcred.com.br": [12357], "pub.school": [2024], "www.uiuc.edu": [17030], "tcko.us": [2024], "sl.fnf.fm": [2024], "*.www.city.ac.uk": [3189], "cdn4.sure-assist.com": [15709], "atru.org": [2024], "networkworld.com": [11308], "piratebayportal.co.uk": [22177], "alfacashier.com": [19135], "uklinux.net": [17045], "jko.io": [2024], "www.pastebin.com": [12478], "www.social.anz.com": [374], "listings.digiguide.tv": [19835], "www.eschk.admin.ch": [22061], "www.nuclearblast.de": [11606], "cars.zuji.com.hk": [19021], "belk.in": [2024], "re.al.net": [2024], "www.buddyauth.com": [2250], "docs-rest.goroost.com": [20292], "atlas.cern": [2588], "olbx.us": [2024], "www.sidn.nl": [14180], "enr.gy": [2024], "curiousdog.us": [2024], "danr.me": [2024], "lantmateriet.se": [9165], "ec2-images-amazon.test.edgekey.net": [5071], "30acr.es": [2024], "westmont.worldcat.org": [18536], "www.rateip.com": [13634], "survey.piwik.org": [12768], "dyne.org": [4828], "mauras.ch": [10096], "leadership.opm.gov": [11690], "kunming.jd.com": [8434], "inform.umd.edu": [17351], "www.trafficholder.com": [16720], "www.mindfactory.de": [10448], "deb.bi": [2024], "www.circlegroup.org.uk": [19592], "r24628217.sync.app.asana.com": [1265], "static.vzaar.com": [17976], "fmls.oxfordjournals.org": [12222], "b2.bigmrc.com": [2024], "s6.sinaimg.cn": [14910], "c-az.org": [2024], "www.buckeyemail.osu.edu": [11797], "dea.com": [4251], "escuela.elpais.com": [5126], "2014.asiabsdcon.org": [1281], "gse.stanford.edu": [15448], "ccmm.li": [2024], "hackforums.net": [7139], "u.plift.me": [2024], "mijnd66.nl": [10419], "crzo.co": [2024], "cbox.ws": [19525], "cllp.co": [2024], "wrs.io": [2024], "apis.map.qq.com": [13329], "m.115.com": [28], "kuzbank.dengisend.ru": [4344], "volotrend.com": [2024], "www.linux-dev.org": [9415], "gsob.co": [2024], "s7.gismeteo.lt": [20249], "www.univ-brest.fr": [17312], "aaronlindsay.com": [452], "vtd-tar.co": [2024], "www.aftonbladet.se": [759], "mmedia.me": [10302], "thereadingroom.com": [16310], "support.redhat.com": [13735], "canoncla.st": [2024], "faridn.in": [2024], "www.mcli.dist.maricopa.edu": [9997], "www.linuxlovers.at": [9446], "flagrate.org": [5879], "metaproducts.com": [10325], "r24624950.sync.app.asana.com": [1265], "www.rackspace.co.uk": [13559], "next.duckduckgo.com": [4785], "home.bt.com": [1578], "ajmorris.us": [2024], "www.glljobs.org": [20266], "bzr0.savannah.gnu.org": [6337], "ssl.schmidtcom.de": [14419], "preview.webplatform.org": [18176], "imjp.co.uk": [2024], "apps.nowwhere.com.au": [21172], "www.optimise.com.br": [12104], "www.mindtouch.com": [10445], "dccc.org": [4005], "websitealive.com": [18242], "netid.cornell.edu": [3676], "volgograd.sledcom.ru": [21858], "www.sw.centrum.cz": [19547], "i2.answers.microsoft.com": [10396], "www.juick.com": [20665], "pdd.io": [2024], "mor.network": [2024], "locho.mx": [2024], "x.jonizeta.net": [2024], "bivan.rocketbank.ru": [13994], "footprints02.main.ad.rit.edu": [13493], "stillmed.olympic.org": [21241], "tlyfe.io": [2024], "scvhhsrap.sccgov.org": [14401], "hunban.taobao.com": [16015], "poach.it": [2024], "epuk.info": [2024], "online.welt.de": [18290], "www.luckyreferrals.com": [20887], "www.librarything.com": [9321], "frm.twspmr.eu": [2024], "50p.eu": [2024], "rd.connexity.net": [3587], "forum-pl.msi.com": [9806], "x.greatify.co": [2024], "ssl.webserviceaward.com": [18201], "therunet.com": [22183], "heatss.civicalg.com.au": [19599], "boredtodeath.me": [2242], "www.rtvs.sk": [13536], "nyphil.us": [2024], "latechwat.ch": [2024], "www.bitcoinfoundation.org": [2005], "k.sinaimg.cn": [14910], "adrb.io": [2024], "online-office.1and1.co.uk": [71], "loanhub.capitalone.com": [2831], "livechat.boldchat.com": [2203], "thinka.be": [2024], "*.netdna-ssl.com": [11262], "smpl.as": [2024], "groklearning.com": [6944], "store.ajc.com": [351], "www.popcorntime.ws": [21461], "election.thenewslens.com": [16302], "www.hertz247.ie": [7350], "onegooddriver.com": [11864], "deb.debian.org": [4263], "www.healthcheckusa.com": [7254], "gasp.la": [2024], "bimportprod.tk": [2024], "www.rpmfind.net": [14055], "on.moncler.com": [2024], "www.hertz247.is": [7348], "onbik.es": [2024], "www.sumome.com": [22030], "www.hertz247.it": [7351], "okmexi.co": [2024], "www.looloo.com": [9613], "gobr.us": [2024], "m.ichangego.com": [2024], "www.enterprise.com": [5278], "l.anglican.ca": [2024], "www.songsterr.com": [15205], "rtn.church": [2024], "movbonanza.com": [2024], "chat.apan.org": [388], "l.bod.org": [2024], "rnz.to": [2024], "ahow.es": [2024], "www.proxysolutions.net": [13227], "www.sks-keyservers.net": [14187], "u.arcww.com.tw": [2024], "go100.me": [2024], "studentaid2.ed.gov": [4881], "www.modelaircraft.org": [496], "demidov.startsmile.ru": [21980], "viphat.me": [2024], "zuli.ly": [2024], "cryptostocks.com": [3880], "www.books.ch": [16244], "*.profiseller.de": [21508], "2mr.us": [2024], "ubuntu.org.cn": [17174], "www0.maths.ox.ac.uk": [17359], "timt.la": [2024], "frontend0.sv.gnu.org": [6337], "opendata.cheshireeast.gov.uk": [3071], "sas.com": [14132], "boe.ca.gov": [2522], "cert.webtrust.org": [18190], "www2.netflix.com": [11269], "fex.belwue.de": [1802], "webmail.comsavings.com": [3503], "wt.proquest.com": [13160], "zhaoshang.alitrip.com": [865], "blis.news": [2024], "apps-community.akamai.com": [806], "*.factiva.com": [11361], "file2.answcdn.com": [1095], "webmail.htw-berlin.de": [7103], "search.dokuwiki.org": [4631], "billing.omkc.ru": [21244], "noh.how": [2024], "loveplanet.ru": [9635], "www.landliebe.de": [2797], "gulas.ch": [20004], "klcjr.nl": [2024], "tcpalm.com": [15859], "miers.co": [2024], "cmap.it": [2024], "cmap.is": [2024], "diminc.biz": [2024], "www.gotoassist.com": [6768], "m-bri.co": [2024], "offcampus.osu.edu": [11797], "fant.in": [2024], "on.luiscao.com": [2024], "www.apperdeck.com": [7471], "ads.prnt.sc": [21502], "media.gta.arch.ethz.ch": [4967], "www.5min.com": [217], "on.thaserv.de": [2024], "eduapp.admtyumen.ru": [19082], "mir-politika.com": [20991], "www.aerohosting.cz": [737], "list.zerties.org": [18946], "toyot.ag": [2024], "www.bear.im": [1761], "s.panc.ro": [2024], "aerling.us": [2024], "static.intercomcdn.com": [8242], "ptl.mx": [2024], "antalyagrillhouse-blanchardstown.just-eat.ie": [20671], "rlv.zcache.com": [18904], "logmeininc.com": [9560], "arvixe.com": [1262], "bit.bfb.net.nz": [2024], "ddr.ornl.gov": [11730], "www.sunxi.org": [9416], "devprom.ru": [4419], "www.kyleisom.net": [9068], "tfal.me": [2024], "karriere.cyberport.de": [3966], "c.aprilsteve.us": [2024], "*.gwu.edu": [6530], "test.qrlott.com": [2024], "www.skylink.cz": [15002], "bfm.swisscom.com": [15761], "doci.me": [2024], "www.name.com": [11056], "nsk.zarplata.ru": [21134], "more-sprava.kafanews.com": [20677], "socl.ly": [2024], "www.filmaffinity.com": [20095], "psyjn.ir": [2024], "www.kinox.am": [20720], "www.makeloveland.com": [9920], "karzer.uni-goettingen.de": [17253], "cs.soe.ucsc.edu": [17390], "shunde.1688.com": [51], "p.ngx.cc": [11415], "persoonlijk.knab.nl": [8952], "pbxapps.primus.ca": [13112], "cycl.gr": [2024], "m.tnaflix.com": [16594], "gvgb.co": [2024], "kissinsights.com": [8744], "ss1.zedo.com": [18906], "visionartforum.com": [17861], "viu.gg": [2024], "ftav.me": [2024], "www.flyertown.ca": [5943], "malaysia.norton.com": [11545], "hrvys.ch": [2024], "energieschweiz.ch": [22061], "lumigon.com": [9674], "smileysnetwork.com": [15070], "surbitcoin.com": [15708], "intranet.uniovi.es": [17282], "amos.taobao.com": [16015], "rbl2.lp0.eu": [9648], "saintmikes.net": [2024], "static.smdg.ca": [15068], "*.abuse.ch": [488], "www.yes.co.il": [22677], "gizm.ag": [2024], "*.adbuyer.com": [621], "e-citations.ethbib.ethz.ch": [4967], "hma.io": [2024], "www.sutn.sk": [15037], "nbx.es": [2024], "www.broadband-forum.org": [2365], "www.pittsburghmassageandwellness.com": [12764], "egorevsk.biglion.ru": [19375], "hot.dvlabs.com": [19910], "cimb-principal.com.my": [2618], "bit.mtbird.com": [2024], "www.httplab.it": [7593], "carrot.cr": [2024], "ozn.bg": [2024], "yourcall.xyz": [2024], "tildedave.com": [16522], "music.williams.edu": [18408], "londonpreparesseries.com": [9583], "about.musixmatch.com": [10758], "leroyfcpress.com": [9271], "neverho.me": [2024], "kids.360.cn": [142], "btplc.com": [1575], "kp.lanet.ua": [20780], "ss.knet.cn": [8757], "on.red-uk.co": [2024], "cncrts.co": [2024], "a2.mzstatic.com": [10893], "servdesk.maryno.net": [20928], "drivestyle.co.uk": [4758], "techweekeurope.fr": [11238], "www.anomos.info": [1076], "bcln.us": [2024], "transferwise.com": [16738], "nopaste.geany.org": [6463], "images.shazam.com": [14750], "media.wizards.com": [18477], "www.free-torrents.org": [20154], "vungle.com": [17970], "dwht.co": [2024], "git39.rostrud.ru": [21677], "erati.me": [2024], "planauskunft.netcologne.de": [11226], "go.siteina.com": [2024], "servicetick.com": [14683], "listes.aful.org": [343], "help.pay.sina.com.cn": [14904], "balancer-cloud-live-chat.kyivstar.ua": [9067], "www.wwf.or.jp": [18029], "www.just-eat.co.uk": [20671], "tickets.montereybayaquarium.org": [10606], "www.das-labor.org": [4152], "kell.in": [2024], "pipedot.org": [12732], "*.pagodabox.com": [12364], "www.arranca.org": [1237], "*.ace-host.net": [526], "swpstd.com": [2024], "s.cdon.com": [2576], "static.wistia.com": [18467], "giveto.usc.edu": [17366], "sr.libreoffice.org": [9327], "sdk.airmap.com": [790], "eide-itc.no": [5110], "bbash.it": [2024], "york.edu": [18787], "support.curseforge.com": [3927], "jenkins.osmand.net": [12157], "*.onesite.com": [11682], "rw-online.co.uk": [21705], "eben.us": [2024], "pcm.link": [2024], "*.uakron.edu": [17161], "baggageclaim.britishairways.com": [1513], "ced-ns.sascdn.com": [15049], "climatechangeresponses.biomedcentral.com": [1931], "supernatural.friday.ru": [20175], "linkedin.com": [9393], "p.ya.ru": [18716], "proton.parabola.nu": [12412], "cdn3.recombu.com": [13710], "biofitt.com": [1937], "ln.pkts.es": [2024], "cdn.tradelab.fr": [16716], "builder-prom.quay.io": [21564], "pollingplaces.democrats.org": [4338], "hyb.pw": [20451], "go.tseytlin.com": [2024], "www.veronikamaine.com.au": [17720], "*.vsco.co": [17598], "ry5.org": [2024], "*.plastic-bin.com": [12818], "try.taobao.com": [16015], "sdss3.org": [15032], "pravydiplom.cz": [13061], "www.consumeraffairs.com": [3600], "im0.kommersant.ru": [20746], "jeded.com": [20635], "webmail.daily.co.uk": [4107], "retz.us": [2024], "saicom.akixi.com": [19129], "www-stage.aggregateknowledge.com": [770], "flipitcase.co": [2024], "canadianwebhosting.com": [2809], "ludit.kuleuven.be": [8832], "asteriskexchange.com": [1323], "kui.mvd.ru": [21055], "tianqi.hao123.com": [20339], "bhawk.me": [2024], "www.bahn.de": [1640], "pgu.krasnodar.ru": [20754], "house.resource.org": [13253], "www.bluenotes.anz.com": [374], "www.postto.me": [13004], "french.guinea.usembassy.gov": [22406], "mail.fe.ru": [20078], "secure.lijit.com": [9365], "pervouralsk.beeline.ru": [1778], "link.jukwa.tv": [2024], "inf.tips": [2024], "coop.no": [3648], "traveloffers.independent.co.uk": [8058], "data.togethertrust.org.uk": [22228], "chkl.st": [2024], "amoena.com": [1023], "api.coupon.rakuten.co.jp": [13594], "murmansk.biglion.ru": [19375], "dev.bukkit.org": [19470], "s.omniti.net": [11835], "id-card.umd.edu": [17351], "www.catalysis.com": [2904], "s.huchen.me": [2024], "gtee.co": [2024], "mr3.doubanio.com": [19889], "ige.ch": [15759], "secure.datinglab.net": [19770], "ppgre.net": [2024], "6kbhkort.kk.dk": [8748], "www.fraedom.com": [20146], "galaxy.ansible.com": [1093], "sav.sk": [15037], "map.geo.admin.ch": [22061], "g2play.net": [6275], "s.reid.at": [2024], "swl.ink": [2024], "fren.tv": [2024], "future-lab.co": [2024], "appthemes.com": [1140], "dev.yandex.com": [18742], "codethink.co.uk": [3380], "vume.me": [2024], "www.webtrends.com": [18264], "www.danid.dk": [4126], "r3.mail.ru": [9891], "www.bytenoc.nl": [2505], "on.car.org": [2024], "*.linguee.es": [9390], "3v1n0.net": [178], "image.rakuten.co.jp": [13594], "hackinparis.com": [7125], "iclient.utb.ru": [17538], "www.xmpp.org": [18617], "solarbotics.com": [15182], "ntpandp.com": [11014], "www.*.alaska.edu": [17324], "aablg.xyz": [2024], "groovl.com": [20310], "sickjok.es": [2024], "*.nzbmatrix.com": [11043], "guidancesoftware.com": [6988], "r24820143.sync.app.asana.com": [1265], "origin.eplayer.performgroup.com": [12269], "a.fwlink.us": [2024], "leseprobe.buch.de": [16244], "m.jmam.co.jp": [2024], "sebezh.startsmile.ru": [21980], "www.juliareda.eu": [8685], "pres.so": [2024], "ma.dsemil.com": [2024], "*.box.com": [2271], "rapzil.la": [2024], "mydiv.co": [2024], "brownschool.wustl.edu": [18089], "ca.cz": [19489], "mkjns.li": [2024], "ukjobs.g4s.com": [20195], "www.metrotransit.org": [10352], "shop.xeu.com": [18600], "bertuc.ci": [2024], "sohuweibopic.bjctc.scs.sohucs.com": [15173], "lv.3.boardgamearena.com": [2182], "jsao.io": [8473], "go.cosh.me": [2024], "forge.centreon.com": [2965], "wiki.qubes-os.org": [13394], "japan.hertz.com": [7371], "car.osu.edu": [11797], "*.makerbot.com": [9925], "cacti.allmyvideos.net": [906], "www.klinikum.uni-heidelberg.de": [17262], "e0v091mrzci994alb6qsscyi5r2y7ejjggx1dp5f.ipleak.net": [20571], "help.thepensionsregulator.gov.uk": [22173], "info.newrepublic.com": [11349], "mdc.st": [2024], "www.zcomm.org": [18847], "toolbox.dnc.org": [4050], "lnk.rockshop.nz": [2024], "www.upds.com": [22387], "www.koinify.com": [8969], "speed.khotkovo.net": [20712], "a2.sphotos.ak.fbcdn.net": [5689], "fun.gu3.se": [2024], "www.createspace.com": [3768], "seejane.link": [2024], "media.screened.com": [18340], "www.amazon.in": [19177], "partners.fortinet.com": [6033], "wind.social": [2024], "rousseau.gitbook.com": [6655], "mobile-macs.de": [10322], "www.car.osu.edu": [11797], "mirl.me": [2024], "ohnopodcast.com": [15399], "www.intranet.fmed.ulaval.ca": [17319], "glmrtr.com": [2024], "www.cuabroad.cornell.edu": [3676], "help.adbrite.com": [618], "www.dtp.nci.nih.gov": [11090], "elq.to": [2024], "www.thephoenixbay.com": [22174], "www.media.mit.edu": [9763], "groups.ic.nhs.uk": [10953], "lv.foursquare.com": [6061], "pxlbx.at": [2024], "fullp.in": [2024], "www.sviaz-bank.ru": [15740], "ara.reuters.com": [13893], "help.youcaring.com": [18795], "evesys.unisys.co.jp": [17292], "bmcdevbiol.biomedcentral.com": [1931], "d-williams.com": [2024], "static.solfoinc.netdna-cdn.com": [18713], "upem.it.ohio-state.edu": [11798], "securestore.xfinity.com": [22650], "www.dialogs.com": [4431], "blogs.scientificamerican.com": [14446], "netzwerk-laendlicher-raum-redaktion.ble.de": [19406], "moderngiver.com": [10558], "bluehost.com": [2164], "www.t.co": [15841], "www.ebg.admin.ch": [22061], "www.mybbcentral.com": [10790], "tinyfile.net": [2024], "blog.fortumo.com": [6037], "vhphttp.dsi.cnrs.fr": [6174], "www.bitvisor.org": [1976], "joycazino.com": [20654], "e61.be": [2024], "help.relevate.ru": [13815], "downloads.comcast.net": [3461], "trb.la": [2024], "bnd.bund.de": [2444], "cf-media.sndcdn.com": [15096], "www.isst.fraunhofer.de": [6091], "extranets.pinsentmasons.com": [12729], "daved.kg": [2024], "www.mediamarkt.ru": [10188], "tinypass.com": [16565], "lheb.fr": [2024], "vlad.trade": [2024], "grns.in": [2024], "teded.tedcdn.com": [15871], "broxtowe.gov.uk": [19458], "aolplatforms.com": [384], "agustint.com": [2024], "www.threema.ch": [16473], "zhongce.360.cn": [142], "miass.startsmile.ru": [21980], "osuosl.org": [21304], "attac.at": [1361], "embl.us": [2024], "s.bumbacea.ro": [2024], "mining.bitcoin.cz": [10463], "jobs.stockport.gov.uk": [21994], "verismo.co": [2024], "2l.ng4.me": [2024], "goaspha.lt": [2024], "data-secure.solvemedia.com": [15196], "journalotohns.biomedcentral.com": [1931], "on.cwtv.com": [2024], "www.appvault.com": [1141], "drrw.us": [2024], "fpgam.es": [2024], "*.clicktale.net": [3253], "syscan360.org": [22070], "sgould.co": [2024], "unicosusta.in": [2024], "blog.newswhip.com": [11373], "blog.css-security.com": [3891], "www.exchange.iu.edu": [8069], "remote.vanaqua.org": [17637], "swa.xyz": [2024], "subway.com": [15635], "link-page.info": [20844], "redbox.com": [13740], "luxembourg.usembassy.gov": [22406], "static.tenable.com": [16180], "www.webooluinc.com": [18230], "schiedam.nl": [11172], "*.ology.com": [11821], "s.450nm.com": [2024], "www.ad-stir.com": [567], "sl.resonance.is": [2024], "calendar.nih.gov": [11090], "cdn.smartadserver.com": [15049], "cwow.curseforge.com": [3927], "marketing.voxmedia.com": [17941, 22503], "digitaltrends.com": [4487], "news.vice.com": [17754], "7l4.se": [2024], "equip.org": [5323], "nl.ulule.com": [17224], "it.movim.eu": [10684], "reports.adblockplus.org": [616], "tpb.unlockme.club": [22259], "www.tsp.gov": [22302], "deepdotweb.com": [4285], "www.hkupop.hku.hk": [20387], "fr.support.tomtom.com": [16615], "sofn.com": [15153], "deliver.tokenly.com": [22229], "cinemoz.co": [2024], "secure.gettyimages.dk": [6604], "bookingtest1p13m.hkexpress.com": [20383], "small.1688.com": [51], "manageengine.com": [9951], "labels101.com": [2024], "videos.5min.com": [217], "accounts.firefox.com": [5842], "vetr.in": [2024], "lfbz.it": [2024], "mail.khabarovskadm.ru": [20708], "www.ssn.uillinois.edu": [17034], "organizer.gmx.com": [6330], "tadr13.ga": [2024], "www.kyivpost.com": [9066], "*.battlecreekenquirer.com": [1720], "bellsouth.com": [1794], "kora.re": [2024], "newman.uts.ohio-state.edu": [11798], "www.cannex.com": [2529], "dersverilir.net": [4370], "pivothd.com": [2024], "ideel.com": [7933], "beckpc.ch": [1772], "web1.wechat.com": [18116], "billettservice.no": [16495], "exstonet.merkleinc.com": [20967], "thepiratebay.mg": [22174], "infopankki.fi": [8117], "www.codacy.com": [19634], "franchiseradioshack.com": [13575], "www.ie.cuhk.edu.hk": [2704], "uwest.worldcat.org": [18536], "wineaustralia.com": [18441], "vpge.stanford.edu": [15448], "adx.adform.net": [638], "ip.ngx.cc": [11415], "mentor.com": [10284], "acp.stanford.edu": [15448], "www.tv.yandex.kz": [18743], "gmsp.gr": [2024], "quickline.com": [21566], "klamm.ws": [2024], "autodiscover.sos.wa.gov": [14215], "b.sveri.no": [2024], "nokia.*": [11498], "go.imgg.me": [2024], "api.weixin.qq.com": [13329], "app.zencoder.com": [18919], "www.sandvine.com": [14347], "nenot.es": [2024], "airgat.es": [2024], "superdrug.com": [15692], "irnw.me": [2024], "teevox.com": [16126], "www.shellfish.io": [14756], "it.arch.ethz.ch": [4967], "www.comingolstadt.de": [3470], "wiki.tox.chat": [16690], "sysysportal.axosoft.com": [1504], "meierbe.at": [2024], "www.jsperf.com": [8669], "utx.as": [2024], "spb.rosevrobank.ru": [14024], "special.mirea.ru": [20993], "warsaw2014.honeynet.org": [20401], "*.ladyfootlocker.com": [9145], "apj.aas.org": [280], "*.firehost.com": [5837], "brando.ws": [2024], "kgou.cf": [2024], "*.utsandiego.com": [17149], "www.de-captcher.com": [4229], "s2.pimg.tw": [12709], "collabora.co.uk": [3418], "gbr.nu": [2024], "c2u.de": [2024], "archive.angus.gov.uk": [1062], "bankofscotland.de": [1675], "facultyinformationhandbook.wustl.edu": [18089], "www.thomsonreuters.com": [16456], "q8.yt": [2024], "web13.play-asia.com": [12828], "siggraph.org": [14838], "stags.bluekai.com": [2145], "assets.sidearmsports.com": [14825], "ozel.yandex.com.tr": [18740], "*.libdems.org.uk": [9307], "*.staticflickr.com": [15494], "kagorg.es": [2024], "www.cars.unm.edu": [17073], "www-mail.biologie.ens.fr": [4922], "www.hushmail.com": [7636], "shop.trezor.io": [22282], "reelhd.com": [13767], "www.t3blog.com": [15846], "weln.es": [2024], "ifms.hdfcbank.com": [7249], "hertzentertainment.com": [7371], "l.jdn.im": [2024], "bcm63xx.sipsolutions.net": [14184], "nmo.to": [2024], "comlibrary.worldcat.org": [18536], "www.sophos.com": [15224], "global.ahnlab.com": [781], "norman.com": [11526], "cnv.com": [19632], "scts.ee": [2024], "casper.com": [2895], "imssr.com": [7764], "gpcc.dwd.de": [19911], "www.siedler25.org": [13889], "link.aiesec.cz": [2024], "ntnu.no": [11004], "auto.sina.com.cn": [14904], "g4it.tk": [2024], "discourse.jitsi.org": [8596], "mgcl.us": [2024], "amnesty.org.tr": [1014], "bloodhoundgang.com": [2130], "go.2igeek.com": [2024], "*.fcac.org": [5624], "secure.rentalcars.com": [13834], "scacommunity.usc.edu": [17366], "on.sugarsca.pe": [2024], "vog.vg": [2024], "grisko.co": [2024], "rti.link": [2024], "www.sr.one.un.org": [17057], "faculty.ischool.syr.edu": [15810], "btn.createsend1.com": [3770], "ifitnaweb.com": [2024], "banners.affiliatefuture.com": [19104], "*.tso.co.uk": [15929], "www.get.how": [6561], "unon.in": [2024], "ciand.cd": [2024], "imss-website-storage.cloud.caltech.edu": [2771], "davincivaporizer.com": [4219], "tfsprays.com": [15873], "training.breakingmuscle.com": [19445], "itswa.de": [2024], "dev.office.com": [11780], "amp.lc": [2024], "ucollege.du.edu": [2024], "karusel-tv.ru": [20690], "idportal.lrz.de": [9253], "shipclaim.com": [2024], "padpub.us": [2024], "groups.csail.mit.edu": [9763], "sgh.re": [2024], "www.wienenergie.at": [18376], "feedback.adroll.com": [589, 590], "gwhois.org": [6377], "www.devstructure.com": [4405], "areapod.co": [2024], "breakingviews.com": [19446], "u.getim.co": [2024], "www.golf2go.net": [1532], "corp.yota.ru": [22685], "www.highon.coffee": [7402], "www.hamradio.com": [7172], "coop.uk": [2024], "www.eliminatejunkemail.com": [12365], "joycasino4.com": [20654], "nanfa.ng": [2024], "dashboard.tinypass.com": [16565], "secure.smallbits.com": [15047], "clsf.co": [2024], "re.kgp.su": [2024], "mtp.io": [2024], "beta.n-somerset.gov.uk": [10898], "d.ibtimes.co.uk": [7681], "on.jake.to": [2024], "*.herdict.org": [7324], "krnr.org": [2024], "som.li": [2024], "*.deviantart.com": [4410], "www.zenmate.com.pe": [18917], "www.impactstory.org": [8017], "www.gigaom.com": [6626], "www.zenmate.com.pa": [18917], "support.wandisco.com": [17986], "t3n.me": [2024], "odbf.co.uk": [2024], "www.zenmate.com.ph": [18917], "maxgotts.tk": [2024], "resource-cms.springer.com": [15380], "rockfo.to": [2024], "mfil.es": [2024], "who.is": [18353], "www.essaysreasy.com": [5353], "s.keiba0.com": [2024], "x.daringer.org": [2024], "tryit.w3schools.com": [17982], "illicoweb.videotron.com": [17787], "www.centrum.cz": [19547], "cve.mitre.org": [10497], "plyr.in": [2024], "www.kn.vutbr.cz": [17609], "refunder.me": [2024], "emaileri.com": [5184], "fah.stanford.edu": [15448], "mensuel.lutte-ouvriere.org": [20894], "ics.freifunk.net": [6170], "genivi.org": [6294, 6295], "virusbulletin.com": [17843], "xav.com": [18635], "www.amherst.edu": [996], "stnx.in": [2024], "parabolagnulinux.org": [12413], "vishnu.netfilter.org": [11265], "subs.mi-pro.co.uk": [20977], "cygnul.com": [2024], "robin.upyun.com": [17492], "bzu.lu": [2024], "outlook.leeds.ac.uk": [17403], "wiki.instantbird.org": [8187], "mis.tl": [2024], "url.smithtx.us": [2024], "hb.adx2.adform.net": [638], "tambov.beeline.ru": [1778], "www.hertzrent2buy.com.br": [7339], "img.fam-ad.com": [20073], "twitteer.site": [2024], "lr.ai": [2024], "media.grc.com": [6357], "*.squat.gr": [21954], "ilias.hft-leipzig.de": [7386], "1138.nu": [2024], "29.mvd.ru": [21055], "dooz.us": [2024], "static.gearslutz.com": [6468], "www.libreswan.org": [9332], "lens.io": [9268], "academy.redhat.com": [13735], "ultra4k.tk": [2024], "glc.church": [2024], "www.filebox.tv": [5774], "cacti.lansp.ru": [20781], "api.groupon.com": [6953], "cacti.its.thm.de": [15876], "rhk.me": [2024], "alve.al": [2024], "auto.youku.com": [18804], "www.lambda-linux.io": [9150], "link.kwgn.com": [2024], "websitealive7.com": [18242], "app.jd.com": [8436], "static.digitecgalaxus.ch": [4495], "static.bhphoto.com": [19369], "helan.jd.com": [8434], "mailcloud-web.bjctc.scs.sohucs.com": [15173], "vendorcentral.amazon.fr": [19176], "rcfp.org": [13462], "realfavicongenerator.net": [21603], "www.univention.com": [17315], "fr.malwarebytes.org": [9941], "fr33-tv.cf": [2024], "beecat.lp0.eu": [9648], "ecustomer.plantsolution.de": [12814], "js.createsend1.com": [3770], "webmail.ktk.bme.hu": [1556], "www.levels.io": [9284], "www.south-wales.police.uk": [21908], "kaiseki.me": [8783], "ighome.com": [7950], "om.tdc.dk": [15862], "fcsh.unizar.es": [17441], "www.kerbalspaceprogram.com": [8871], "mobil.um.baden-wuerttemberg.de": [19302], "intch.co": [2024], "chwido.openmandriva.org": [11992], "remedy.canon-europe.com": [2822], "softether.org": [15158], "mexicoleaks.mx": [10354], "ceridian.axonify.com": [1502], "aftmd.us": [2024], "zena.atlas.cz": [1346], "toclick.tk": [2024], "www.datapipe.co.uk": [4201], "*.logicboxsoftware.com": [9566], "www.hamptons.curbed.com": [3920], "www.piratehole.com": [22174], "crayv.it": [2024], "trvlabt.co": [2024], "ln.s-pan.jp": [2024], "nb.3.boardgamearena.com": [2182], "www.noblehour.com": [11485], "www.exercise.com": [20049], "*.redbulls.com": [13726], "doodle.com": [4675], "*.cbs.com": [2540], "test2-lax.adsrvr.org": [688], "my.evidon.com": [5448], "rdca.vc": [2024], "flnd.co": [2024], "sdis.co": [2024], "macs.ws": [2024], "personal.uv.es": [17544], "www.nurd.space": [11015], "marktickt.in": [2024], "abrd.us": [2024], "hvl.co": [2024], "stage.satoshilabs.com": [21734], "3bm.co": [2024], "pccpartners.axonify.com": [1502], "www.support.24paybank.com": [109], "rightscentral.copyright.com": [3659], "www.thunderranchinc.com": [16477], "juscolle.ge": [2024], "pages.here.com": [7325], "alexandercoward.com": [845], "www.york.ac.uk": [17435], "developers.zamzar.com": [18882], "novostivoronezha.ru": [21170], "clubsoda.me": [2024], "subscribe.condenet.com": [3561], "arkhangelsk.startsmile.ru": [21980], "healthstream.usc.edu": [17117], "hmediadev.com": [2024], "www.moaf.org": [10519], "*.beetailer.com": [1781], "xiscosoft.org": [18668], "amar.is": [2024], "hs11.snstatic.fi": [14208], "gsa.tirol": [2024], "www.gemeentewesterveld.nl": [11172], "www.sitecontrol.us": [14944], "pebbleconfig.iwi-i.info": [20617], "www.tmbc.gov.uk": [15892], "www.uploaded.net": [17477], "mail.sina.cn": [14903], "www.adbit.co": [570], "dominustemporis.com": [4667], "www.identitytheft.org.uk": [7940], "s14.sinaimg.cn": [14910], "w3.hkuspace.hku.hk": [20387], "bhp.me": [2024], "scm-fusioncrm.oracle.com": [12116], "go.zeeborn.net": [2024], "stkate.worldcat.org": [18536], "95516.unionpay.com": [17281], "assets.bwbx.io": [2497], "lt.libreoffice.org": [9327], "*.meetrics.com": [10230], "www1.maine.gov": [9908], "l.ynx.co": [2024], "gscp.us": [2024], "readthis.at": [2024], "billing-live-chat.kyivstar.ua": [9067], "health.udn.com": [17020], "www.weblearn.ox.ac.uk": [17359], "on.deimar.co": [2024], "*.salesforce.com": [14311], "extensions.joomla.org": [8641], "autotrack.nl": [1444], "templates.mailchimp.com": [9893], "pa.wiwi.uni-mainz.de": [17410], "brviv.nl": [2024], "eduroam.cz": [5088], "www.twenga-solutions.com": [16944], "avto.kazanfirst.ru": [20695], "101xp-portal.cdnvideo.ru": [19536], "gimg.baidu.com": [1641], "rossiercareers.usc.edu": [17366], "sec.taobao.com": [16015], "p8.pstatp.com": [16680], "mobstac.com": [10527], "www.lilliputti.com": [9369], "www.systemli.org": [15830], "pht.io": [2024], "office2010.microsoft.com": [10396], "www.fiscal.treasury.gov": [16778], "support.cloudflare.com": [3284], "www.filebyid.com": [5783], "msb.sovcombank.ru": [21914], "igaming.biz": [7736], "jkp.io": [2024], "cdn.blisstree.com": [908], "secure8.itradecimb.com.my": [2618], "www.v-dem.net": [22418], "rt00.epimg.net": [5126], "skdn.pw": [2024], "bleachbit.org": [19407], "www.geocoder.ca": [6521], "jb.oxfordjournals.org": [12222], "www.cvvnumber.com": [19746], "www.tripadvisor.ca": [22289], "www.yelpreservations.com": [22675], "u.hrmg.eu": [2024], "r24617880.sync.app.asana.com": [1265], "www.samsungfire.com": [14329], "phlvb.com": [2024], "www.sydostran.se": [15775], "front-admin.voyage-prive.co.uk": [17945], "orenburgskaya-obl.beeline.ru": [1778], "download.microsoft.com": [10396], "www.fancybrideness.com": [20074], "manage.rackspacecloud.com": [13567], "*.expedia.co.uk": [5492], "bg53.co": [2024], "*.adobeconnect.com": [670], "static.cuttlefish.com": [3938], "online.aberdeenshire.gov.uk": [472], "porcinehealthmanagement.biomedcentral.com": [1931], "hans.ws": [2024], "ivy.gr.com": [2024], "webmail.bell.net": [1792], "vogliamotutto.espiv.net": [20020], "80.386sx.org": [2024], "www.jltorrent.com": [22174], "new-demotv.ayyo.ru": [19292], "blog.apnews.com": [392], "a.topzehn.tv": [2024], "icinga.org": [7918], "www.surftown.com": [15717], "enzo.live": [2024], "dmp.springserve.com": [15382], "aef.alumni.sfu.ca": [14708], "i.inink.cz": [2024], "dolgoprudnyy.beeline.ru": [1778], "hummingbird.me": [7620], "sonar.sociomantic.com": [15146], "registration.hinxton.wellcome.ac.uk": [22559], "www.tdf-telecom.fr": [15867], "gun.io": [7004], "www.wbplay.com": [17989], "bsik.io": [2024], "academy.kaspersky.com": [8820], "www.expressjs.com": [20055], "on.blmusic.co": [2024], "wealth.bar": [2024], "search.24img.com": [107], "community.flockport.com": [5916], "www.snelis.com": [15097], "bugs.x2go.org": [18589], "jenkins.debian.net": [4261], "tap.cr": [2024], "clinicalmolecularallergy.biomedcentral.com": [1931], "urchur.ch": [2024], "bcent.fit": [2024], "a1bs.co": [2024], "engine.manwin.doublepimp.com": [4711], "sge.bz": [2024], "wiki.cites.uiuc.edu": [17030], "image.uc.cn": [17003], "www.privacyfix.com": [13140], "forum.tibia.com": [22203], "b.mfcimg.com": [20972], "alumni.indiana.edu": [8070], "m.matthewli.com": [2024], "fonticons.com": [5970], "blogs.law.harvard.edu": [7211], "www.cironline.org": [2625], "www.deliciousgreencoffee.com": [4310], "p.adsymptotic.com": [19092], "fblnk.co": [2024], "bluemfy.com": [2024], "www.sparkasse.at": [21924], "uac.mobi": [2024], "www.probmods.org": [13165], "linux.die.net": [4445], "north-osetia.kavkaz-uzel.ru": [20694], "a.mtstatic.com": [10721], "developer.service.hmrc.gov.uk": [7076], "www.etegro.com": [4969], "www.artsedge.kennedy-center.org": [20703], "www.citialumninetwork.com": [3172], "signup.alertbot.com": [836], "starwarslife.co": [2024], "www.encyclopediadramatica.se": [5231], "misadventureswithandi.com": [10487, 10488], "geowbs.montpellier3m.fr": [10609], "www.cmw-leipzig.de": [7595], "tec.im": [2024], "*.4sqi.net": [202], "analytics.systemli.org": [15830], "heygorge.us": [2024], "syncthing.net": [15797], "on.mnt.hk": [2024], "esp2.ap.equinix.com": [5322], "www.c-cex.com": [2507], "jleo.oxfordjournals.org": [12222], "*.mbl.is": [10123], "wj.hitravel.xyz": [2024], "runbeco.me": [2024], "u.m.taobao.com": [16015], "www.osl.iu.edu": [8069], "clearpt.cc": [2024], "youtube.co.nz": [18800], "*.texastribune.org": [16229], "www.chriscoyne.com": [3110], "snowdrift.coop": [15108], "myho.tl": [2024], "apps2.nlm.nih.gov": [11090], "sbsf.li": [2024], "www.realtimeboard.com": [21604], "bezeqint.net": [1862], "ecomm.io": [2024], "l.ikd.be": [2024], "kubuntu.org": [9042], "registratie.powned.tv": [13032], "www.usenix.org": [17120], "cdn.su.edu": [14759], "docs.snap-ci.com": [21878], "josh.gy": [2024], "vndsv.net": [2024], "dmat.ch": [2024], "securetransfer.portsmouth.gov.uk": [21467], "josh.gr": [2024], "flare.trashmail-static.com": [16762], "image.books.rakuten.co.jp": [13594], "anketa-ipoteka.bm.ru": [2176], "banu.com": [1682], "*.kinghost.com.br": [8913], "collections.stanford.edu": [15448], "*.autotrader.com": [1445], "www.jura.uni-potsdam.de": [17417], "jamesb.me": [2024], "kangurum.com.tr": [8796], "ryanbrooks.me": [2024], "ademag.co.za": [2024], "aphatie.europe1.fr": [20035], "prza.co": [2024], "uniserve.iciciprulife.com": [7917], "infus.me": [2024], "archonly.com": [2024], "*.webtrekk.net": [18263], "ukxcam.co.uk": [22354], "matnat.uio.no": [17414], "tv.sub.fm": [22020], "africa.unfpa.org": [17062], "thom.sn": [2024], "topk.me": [2024], "cgsinc.axosoft.com": [1504], "www.businessclick.com": [19477], "ubuntu-tr.net": [17182], "spdx.org": [14220], "brkncrcl.es": [2024], "www.ucarp.org": [22343], "jp.chaturbate.com": [3040], "www.stripefees.com": [15596], "www.luu.org.uk": [9122], "www.alltubedownload.net": [911], "rpa.la": [2024], "www.gnupg.org": [6744], "www.linuxcloudvps.com": [9434], "go.ldjb.co.uk": [2024], "auth.athensams.net": [11953], "netnow.co": [11241, 11242], "img0.pconline.com.cn": [12263], "spellbind.in": [2024], "www.gofore.com": [20279], "su.nottingham.ac.uk": [11567], "static.librarything.com": [9321], "lists.marxists.org": [10051], "www.nic.tel": [16169], "across.im": [2024], "www.oralb.com": [13168], "publish.uic.edu": [17321], "sts.edp.pt": [4888], "ktie.fyi": [2024], "jbbr.co": [2024], "cachegames.mirrorbingo.com": [10482], "ly.hrck.se": [2024], "*.valueclickmedia.com": [17629], "aviation-safety.net": [19284], "*.bestcovery.com": [1840], "www.symfony.com": [15782], "experian.experiandirect.com": [5495], "btsr.co": [2024], "www.itbiz.cz": [8400], "oneiros.tech": [2024], "www.digid.nl": [11172], "amazon.de": [19174], "a.lansky.com": [2024], "easycra.at": [2024], "krasnoe-selo.beeline.ru": [1778], "www.submittable.com": [22022], "news.slac.stanford.edu": [15448], "promotion.aliexpress.com": [854], "ballotpedia.org": [19309], "qa.shirazlug.ir": [14769], "shmag.co": [2024], "www.haobtc.com": [7187], "thewell.cc": [2024], "go.albaweb.tk": [2024], "pixel.condenastdigital.com": [3557], "absolute.com": [487], "krkn.me": [2024], "barracuda.com": [1707], "webforms.lidl.com": [9342], "b-a-b.uk": [2024], "*.b0.upaiyun.com": [17467], "ums.adtechus.com": [692], "sporx.com": [21946], "entitlement.auth.adobe.com": [669], "www.newsregistry.com": [11363], "mediaplayer.open.ac.uk": [11947], "dwet.co": [2024], "plus.jcloud.com": [8555], "ostratest.ro.vutbr.cz": [17609], "y8s.me": [2024], "t.p30games.ir": [2024], "www.jcea.es": [8554], "fws.jcloud.com": [8555], "account.norton.com": [11545], "services.quickline.com": [21566], "linak.as": [2024], "www.pdc.prd.xfinity.com": [22650], "developer.oxforddictionaries.com": [12223], "valeforms.valeofglamorgan.gov.uk": [17619], "17track.net": [55], "www.student-affairs.buffalo.edu": [17382], "pprm.tv": [2024], "vidaysalud.com": [17764], "u.rfe.so": [2024], "pitz.desy.de": [4386], "bvztest.tocco.ch": [16600], "img01.rl0.ru": [13972], "lsu.edu": [9631], "mssip.visa.com": [17846], "superantispyware.com": [15677], "sicy.li": [2024], "stayhard.biz": [2024], "www.boardgamearena.com": [2182], "www.itefix.net": [20600], "www.finlex.fi": [20104], "login.xilo.net": [18608], "www.torrentz-proxy.com": [16661], "goslice.com": [15021], "kdirect.tk": [2024], "mastercard.ru": [10065], "www.msb.georgetown.edu": [6531], "kundencenter.comingolstadt.de": [3470], "lagri.ma": [2024], "www.s2media.be": [14119], "norfolk.overdrive.com": [12192], "www.brighton.com": [2348], "top.sogou.com": [15168], "iusoic.us": [2024], "i.hizliresim.com": [7438], "images3.variety.com": [17656], "trove.com": [16837], "data.awp.is": [1316], "www.studentaffairs.stonybrook.edu": [15548], "kwilson.me": [2024], "zhiyou.smzdm.com": [15081], "blny.ca": [2024], "*.dancingastronaut.com": [4128], "my.sitetagger.co.uk": [14940], "support.on.aol.com": [380], "saml.peopleclick.com": [12583], "9ac14df9-b4f2-cfeb-100d-0ddd76477249-rum.cdnvideo.ru": [19536], "ads.adsrvr.org": [688], "csirt.cz": [2686], "*.derpicdn.net": [4368], "union.moda": [2024], "uncf.us": [2024], "www.mcafeemobilesecurity.com": [10127], "unibet.me": [2024], "kcl.ac.uk": [8914], "callo.ws": [2024], "hotspotshield.com": [7566], "residenciasuniversitarias.ulpgc.es": [17213], "rbln.ws": [2024], "math.aalto.fi": [447], "opensc-project.org": [12004], "www.infobaselistexpress.com": [563], "qd.myapp.com": [21061], "direct.yandex.com": [18742], "go.cmep.org": [2024], "ace-tag.advertising.com": [713], "voronezh.psbank.ru": [13231], "www.piwik.org": [12768], "seal.alphassl.com": [916], "sp.f-secure.com": [5533], "trade.2.taobao.com": [16015], "m.thai.alibaba.com": [857], "s.lain.li": [2024], "developer.tizen.org": [16580], "projects.ic.nhs.uk": [10953], "www.citizensinformation.ie": [3178], "nuuvem.com": [11624], "www.erdgeist.org": [5327], "mirrors.xmission.com": [18621], "cultivated.it": [2024], "milchweb.frieslandcampina.com": [2797], "aoemj.biomedcentral.com": [1931], "lcfx.co": [2024], "satellitesafety.gsfc.nasa.gov": [10909], "signup.netflix.com": [11269], "forum.pleasuredome.org.uk": [12850], "milonic.com": [10436], "ma.mesaazcorruptionreport.com": [13954], "tme.engineering.osu.edu": [11797], "www.5joycasino.com": [20654], "www.theskoop.ca": [14982], "gfoas.co": [2024], "sqlconverter.com": [14228], "forbes.com": [5995], "astra.io": [1324], "www.lrens.ch": [20880], "cpro2.baidustatic.com": [1641], "eaplus.georgetown.edu": [6531], "www.epsilon-telecom.de": [5317], "*.zimbra.com": [18968], "www.phaser.io": [12646], "rostov.press": [21676], "aboutads.info": [480], "fix.beeline.kz": [19345], "gohe.ro": [2024], "secretariat.nanog.org": [11529], "www.nzz.at": [21216], "contix.io": [2024], "udn.epicgames.com": [5309], "randstad.me": [2024], "blog.hipmunk.com": [7419], "sdnr.it": [2024], "cytel.today": [2024], "shop.skanetrafiken.se": [14962], "secure.n-able.com": [10899], "best.aliexpress.com": [854], "service.fsrar.ru": [20181], "c.3.cn": [135], "*.atlanticmetro.net": [1343], "gianp.in": [2024], "ampd.asia": [2024], "trac.hohndel.org": [3506], "nazran.beeline.ru": [1778], "mutelight.org": [10772], "www.abacus.com": [458], "w.innomotion.me": [2024], "v-c.it": [2024], "homepage.1und1.de": [91], "domeos-script.bjctc.scs.sohucs.com": [15173], "www.netnanny.com": [11253], "www.rescue.org": [21633], "saratov.beeline.ru": [1778], "*.tampabay.com": [16000], "sandbox.buttercoin.com": [2479], "g03.s.alicdn.com": [853], "test.bel.fi": [1536], "image.exct.net": [5471], "www.bitcoinmagazine.com": [2006], "server.adform.net": [638], "community.sabayon.org": [14275], "www.domaindiscount24.net": [19869], "*.userecho.com": [17515], "s5.pimg.tw": [12709], "drudge.tw": [2024], "matricien.org": [20935], "y3.chaucanh.net": [2024], "rngtbl.com": [2024], "piwik.vates.fr": [17665], "acd.my": [2024], "*.umbc.edu": [17055], "www.out-law.com": [12179], "swalm.us": [2024], "*.smartphoneexperts.com": [15062], "pds.gd": [2024], "zukun.tf": [2024], "www.wao.gov.uk": [22524], "lichfielddc.objective.co.uk": [21225], "cdn.play-asia.com": [12828], "tableschecking.education.gov.uk": [19957], "apmhscan.com": [2024], "p21.qhimg.com": [13347], "grsmtn.ca": [2024], "dok.eld.baden-wuerttemberg.de": [19302], "news.friday.ru": [20175], "www.tcodevelopment.com": [16052], "ausgehen.tageswoche.ch": [15972], "lincs.firmstep.com": [20109], "help.creator.zoho.com": [18984], "www.switchie.ch": [15767], "wholesale.alibaba.com": [857], "nghtcr.tk": [2024], "webzilla.com": [18195], "henri.link": [2024], "cntrc.tv": [2024], "*.tent.is": [16186], "www.softwareplattform.test.d115.de": [2443], "pensionschemes.hmrc.gov.uk": [7076], "otrs.ulpgc.es": [17213], "go.jfsx.net": [2024], "j365.in": [2024], "christianbook.com": [3118], "intwiki.anidb.net": [1065], "s66.cnzz.com": [3328], "s-media-cache-ak0.pinimg.com": [12724], "www.a.switchadhub.com": [15764], "download.ted.com": [15871], "hiremove.rs": [2024], "*.worldmate.com": [18539], "kurganskaya-obl.beeline.ru": [1778], "www.3dstats.com": [160], "news.drweb.com": [4776], "bobafamily.com": [2188], "freo.me": [2024], "login.deepin.org": [4287], "www.fortiguard.com": [6032], "www.e-food.gr": [4845], "porn-w.org": [12971], "bk55.ru": [19398], "on.atxrail.com": [2024], "maac.hu": [2024], "coachesonly.breakingmuscle.com": [19445], "dosowisko.net": [4683], "www.dash.org": [4155], "wallacema.de": [2024], "www.10joycasino.com": [20654], "host.co.id": [7512], "pda.metro.ya.ru": [18716], "ce1.com": [3772], "mo.playsmart.fr": [2024], "digits.com": [4496], "www.parkingcrew.com": [12436], "uni-passau.de": [17415], "labs.webfoundation.org": [18198], "*.ovh.net": [12204], "coughl.in": [2024], "ftb.cursecdn.com": [3927], "uprrp.worldcat.org": [18536], "a.youtube-1.net": [2024], "i.amoad.com": [371], "edcr8.co": [2024], "100.izvestia.ru": [8419], "webmail.hosting.earthlink.net": [4997], "usenetserver.com": [17513], "wncn.tv": [2024], "www.arin.net": [397], "arju.in": [2024], "socialte.am": [2024], "api.citilink.ru": [19594], "dot.bage.jp": [2024], "recyclenow.com": [13715], "mymail.thewarehouse.co.nz": [16425], "tplr.net": [2024], "clim.at": [2024], "romab.se": [14017], "www.triumph-adler.de": [16828], "uxlab.us": [2024], "hhi.hub.am": [2024], "rd.doyle.media": [2024], "temai.taobao.com": [16015], "rad.so": [2024], "code.stripe.com": [15594], "isurveys.researchresults.com": [13857], "store.ar15.com": [396], "flosus.co": [2024], "rustika.design": [2024], "kelly.io": [2024], "mobilephones.comparethemarket.com": [3513], "help.homeaway.com": [20396], "sso-prod0.cisco.com": [3165], "ordinarysoft-jp-cart.degica.com": [3333], "go.rowright.uk": [2024], "orekhovo-zuevo.beeline.ru": [1778], "www.mufin.com": [10726], "go.lopez.link": [2024], "gln.io": [2024], "go.res-ol.cz": [2024], "*.schibsted.se": [14415], "piraten-basel.ch": [21416], "share.youku.com": [18804], "cfc.polyvoreimg.com": [21459], "www.glassdoor.co.in": [20259], "coralsoft.link": [2024], "96boards.org": [249], "xbee.net": [18637], "jissn.biomedcentral.com": [1931], "ddragon.leagueoflegends.com": [9220], "az.turbobytes.net": [16909], "shanweiguan.jd.com": [8434], "c.arthur.life": [2024], "hormi.link": [2024], "ilearning.oracle.com": [12116], "ssl.ticketportal.sk": [16497], "hpesw.axonify.com": [1502], "io.tdc.no": [15863], "jobs.jhu.edu": [16370], "via.shavit.in": [2024], "jp.redhat.com": [13735], "files.pfsense.org": [12637], "paul.reny.me": [2024], "www.ruelala.com": [14080], "unhosted.org": [17251], "mt.sohu.com": [15171], "img.rating-widget.com": [13637], "thtc.io": [2024], "community-uat.adr.org": [19086], "firebe.ly": [2024], "www.therebellin.com": [22181], "mixxx.org": [10509], "dinahosting.pt": [4507], "www.digitalrights.center": [19838], "www.belarus.indymedia.org": [8090], "*.expohomes.com": [5616], "translate.google.*": [6821], "*.nranews.com": [21184], "secure.gaug.es": [6978], "www.nacdl.org": [10906], "dollrphto.club": [2024], "affiliate.finanzcheck.de": [20101], "confex.com": [3570], "apologie.paris": [2024], "prol.in": [2024], "feedback.asana.com": [1265], "zabbix.egisz.rosminzdrav.ru": [21674], "learning.calderdale.gov.uk": [2752], "comsigntrust.com": [3456], "www.heute-show.de": [22709], "lists.alpinelinux.org": [918], "crackedconsole.com": [3747], "gsnmagazine.com": [6854], "s25.postimage.org": [13024], "stag2.wired.com": [18454], "mminds.co": [2024], "nso.link": [2024], "www.hertz247.co.uk": [7370], "appimage.sinastorage.com": [14911], "beacon.securestudies.com": [14558], "vestky.st": [2024], "www.qksz.net": [3484], "dcccd.info": [2024], "fblo.co": [2024], "bart.gov": [1708], "mail082.websupport.sk": [18253], "matricula-proves.upf.edu": [17471], "buteco.me": [2024], "www.google.co.*": [6822, 6824, 6829, 6831], "lpo.uk": [2024], "s.samr.me": [2024], "sample-threes.readme.io": [13668], "clickssl.com": [3252], "psms.co": [2024], "duodecim.fi": [4798], "adhesion.quebecsolidaire.net": [21565], "et.symantec.com": [15780], "m.jmphotos.ca": [2024], "researchtoreality.cancer.gov": [2819], "a5.twimg.com": [16949], "www.tc3.edu": [16618], "edienterpriseuat.courierpost.co.nz": [3714], "www.alastairs-place.net": [825], "store.curseforge.com": [3927], "rt.marinsoftware.com": [10005], "clara.io": [3211], "www.elcorteingles.es": [22629], "www.madetech.com": [9857], "asnbank.nl": [412], "connect.arkos.io": [1222], "ebanking.danskebank.dk": [4138], "pdla.co": [2024], "flashtalking.com": [5885], "www.friendpaste.com": [6195], "download.ib.nab.com.au": [10905], "www.aircrack-ng.org": [794], "media2.congstar-media.de": [3579], "www.heg.com": [7510], "google.bitnami.com": [2032], "twinings.co.uk": [16952], "www.variety.com": [17656], "btwk.eu": [2024], "fightaging.org": [5771], "sv-se.facebook.se": [5612], "entpa.as": [2024], "www.conetrix.com": [3334], "www.parse.com": [12445], "alau.kz": [19133], "hao123.com": [20339], "me.freelabel.me": [2024], "utbm.fr": [22414], "www.kfc.ru": [20707], "waad.co": [2024], "*.mua.hrdepartment.com": [7088], "japlusu.com": [20625], "skier.co": [2024], "oberbayern.piratenpartei-bayern.de": [12753], "www.magicalbutter.com": [9875], "go.tjosm.com": [2024], "images.hk.as.criteo.net": [3798], "yates.georgetown.edu": [6531], "*.infusedsystems.com": [8138], "x.eresep.com": [2024], "www.stelladot.com": [15531], "www.copenhagenmarathon.dk": [3651, 3652], "fen.red": [2024], "exonet.nl": [20051], "cimbbank.sg": [2024], "img6.doubanio.com": [19889], "ohmedia.me": [2024], "on.kliiq.com": [2024], "www.globalservices.bt.com": [1578], "hardik.info": [2024], "www.openingscience.org": [12068], "iono.us": [2024], "b.rian.cc": [2024], "cdn.rawnet.com": [13643], "advowi.re": [2024], "www.zenmate.com": [18917], "kjgoodwin.us": [2024], "strm.co": [2024], "*.eyeviewads.com": [5526], "wfbg.co.uk": [2024], "t.archireed.net": [2024], "widget.tippebannere.no": [22214], "audmag.net": [2024], "fnct.in": [2024], "bilibili.hdslb.com": [20358], "shop.flixbus.fr": [5911], "nisod.cc": [2024], "tech.plug.dj": [12862], "gdata.pt": [6272], "towww.play-asia.com": [12828], "www.winxdvd.com": [22597], "kulturkalender.faz.net": [5544], "pray.dm": [2024], "*.universalsubtitles.org": [17317], "manage.audienceadnetwork.com": [1379], "*.tricolumbia.org": [16807], "mobil.0180.info": [16173], "on.esimsar.com": [2024], "secure.stage-gettyimages.ca": [6604], "consult.scotland.gov.uk": [21755], "secure.stage-gettyimages.ch": [6604], "bis.gov.uk": [17039], "www.pogoda.yandex.com.ua": [18741], "sdo.onl": [2024], "images-cdn.lowyat.net": [9646], "code.getfoxyproxy.org": [6577], "www.solidlogic.com": [15190], "maps-api-ssl.google.com": [6825], "i.pbsm.us": [2024], "online.forabank.ru": [5994], "167.mclaut.com": [20942], "private-c.gmocloud.com": [6323], "competitions.cr.yp.to": [3745], "www.projectwonderful.com": [13187], "getfirebug.com": [6559], "a4tt.us": [2024], "prvrja.in": [2024], "ple.com.au": [12300], "marcheswoo.tumblr.com": [16897], "www.switch.ch": [15762], "epoca.tech": [2024], "www.twitrss.me": [16960], "act.qcloud.com": [13346], "aktanysh.startsmile.ru": [21980], "*.adverts.ie": [714], "cbsloc.al": [2024], "balagh.islamhouse.com": [8368], "i.mi.com": [10361], "cis-india.org": [2626], "www.scadacs.org": [14144], "ihg.nz": [2024], "awkward.at": [2024], "06.static-maxdome.de": [10106], "mededresearch.stanford.edu": [15448], "lib-shd.yanao.ru": [22665], "on.erwan.tk": [2024], "cb.sailthru.com": [14304], "gateway.answerscloud.com": [1097], "acas4u.biz": [2024], "thevgncnr.co": [2024], "topolis.cf": [2024], "www.bitsnoop.com": [2039], "intcos.nl": [2024], "wegoh.co": [2024], "www.digitalnewsagency.com": [4480], "www.clusterhq.com": [3319], "wustlkey.wustl.edu": [18089], "syoparekisteri.fi": [15809], "dialogue.openboard.info": [10911], "www.superstrands.com": [15683], "jjthrd.it": [2024], "chbk.me": [2024], "seal.digicert.com": [4461], "finnchamber.com": [15055], "www.casinoestrella.com": [2893], "pressreader.com": [13081], "dpxt.us": [2024], "go.skire.de": [2024], "areah.es": [2024], "r.myqrad.com": [2024], "4.4xq.ca": [2024], "admin.goeshow.com": [6781], "strategicplan.illinois.edu": [17346], "api.rapida.ru": [13619], "agay.us": [2024], "setiathome.berkeley.edu": [17329], "aberystwythartscentre.co.uk": [19039], "sfuad.worldcat.org": [18536], "mammut.ch": [9945], "monde-diplomatique.fr": [21011], "stars.gs": [2024], "m.fotki.yandex.ua": [18747], "studentmoney.uillinois.edu": [17034], "aero.sh": [2024], "mailfire.newsinc.com": [11376], "itunesu.anadolu.edu.tr": [1029], "brkg.at": [2024], "subscription.mims.com": [9756], "app.ubertags.com": [17168], "brd.life": [2024], "malls.ru": [20915], "sigmaaldrich.com": [14839], "developer.windowsphone.com": [18436], "fiba.us": [2024], "www.fribid.se": [6188], "lizdenys.com": [9533], "jjtmn.com": [2024], "b.poulpi.fr": [2024], "*.glkb.ch": [20683], "audiover.se": [2024], "irkutsk.beeline.ru": [1778], "www.ovpn.se": [11726], "silencejournal.biomedcentral.com": [1931], "bnrd.it": [2024], "reachandrich.antevenio.com": [1099], "www.veredelungslexikon.htwk-leipzig.de": [7596], "crowdfunding.piwik.org": [12768], "mjksn.ws": [2024], "pet.debian.net": [4261], "nxt-o-mat.o2.de": [2024], "wiki.ncsa.illinois.edu": [17346], "*.vstech.net": [17725], "download.yuri-ism.com": [18842], "lesbianpornfan.com": [20812], "kaluga.startsmile.ru": [21980], "portico.bl.uk": [2358], "www.hertzequipmentrentals.com": [7371], "news.eastday.com": [5010], "remote.jpress.co.uk": [8628], "49gov.ru": [187], "erm.yt": [2024], "tomsk.beeline.ru": [1778], "pxdy.co": [2024], "www.webjet.com.au": [18219], "*.ifriends.net": [7732], "wikis.resonant.org": [13867], "img.cache.vevo.com": [17566], "www.beaconinitiative.com": [1754], "koitz.co": [2024], "mail.thethinkingvegan.com": [16316], "kostroma-region.auto.ru": [19276], "tambovskaya-obl.beeline.ru": [1778], "vologda.sledcom.ru": [21858], "gcxcare.globalcloudxchange.com": [6705], "www.mit.bme.hu": [1557], "guevents.georgetown.edu": [6531], "pcquinn.us": [2024], "n-ax.gq": [2024], "conference.civica.co.uk": [19598], "alto.akixi.com": [19129], "www.ridecompare.com": [21650], "www.academy.kaspersky.com": [8820], "noisey.com": [11497], "www.boe.es": [1563], "rpmalert.to": [2024], "lcdd.in": [2024], "vwoa.us": [2024], "bldyrtmr.nl": [2024], "www.nuomi.com": [21203], "passwordregistration.dkit.ie": [4032], "ganaar.eu": [2024], "gems.tm.com.my": [16150], "ahleni.us": [2024], "entagroup.com": [5276], "isic.vutbr.cz": [17609], "jeffala.us": [2024], "up0.net": [17464], "pkwa.re": [2024], "loggregator.paas.uninett.no": [17280], "link.samsung.com": [14326], "online.net": [11908], "www.uprising.org.uk": [22390], "www.solar1.net": [15178], "ijobs-rs.madgexjb.com": [9858], "cdn.amazonblogs.com": [965], "fr.biotrimlabs.com": [1940], "i3n.co": [2024], "kore.us": [2024], "affiliates.zuji.com.hk": [19021], "promo.svyaznoy.ru": [22053], "uxxiac.upo.es": [17479], "nevyansk.startsmile.ru": [21980], "hochschule-trier.de": [7450], "repomirror.parabola.nu": [12412], "gov.astrobl.ru": [19264], "kildarestreet.com": [8902], "dprtmnt.co": [2024], "u.laj.lv": [2024], "sslvpn-usa.sonymusic.com": [15217], "lanayachocolate.com": [9137], "www.uklinux.net": [17045], "ivpn.net": [7868], "bugs.otr.im": [11719], "95k.de": [2024], "fvqtip.com": [2024], "www.latextemplates.com": [9133], "ca.cair.com": [2528], "minix.org": [10466], "m.ruguoapp.com": [21692], "artists.jamendo.com": [8512], "refaktor.hu": [13773], "fx.yandex.com.tr": [18740], "panel.bytemark.co.uk": [2503], "go.iku.lt": [2024], "kisa.at": [2024], "secure17.pipni.cz": [12287], "terrymcfly.us": [2024], "www.vindicosuite.com": [17806], "upwave.co": [2024], "paleo.so": [2024], "de-hu.dict.cc": [4442], "webkite.com": [18166], "app.realtime.email": [13685], "ymlp.com": [18813], "blogon.me": [2024], "va.pyang.me": [2024], "food.osu.edu": [11797], "vbook.me": [2024], "tweetnacl.js.org": [20657], "www.usenetjunction.com": [17511], "library.georgetown.edu": [6531], "www.sysdream.com": [15818], "astrd.co": [2024], "landdesig.net": [2024], "greatnet.de": [6891], "www.security.nl": [14586], "png.nlx.org": [21146], "mikhaylovsk.startsmile.ru": [21980], "www.crimestoppers-uk.org": [19720], "www.aldi.com.au": [357], "www.bawsi.org": [1518], "cloud.sagemath.org": [14300], "flagcounter.com": [20115], "eone.solutions": [2024], "webgta.ethz.ch": [4967], "minprofil.info": [2024], "durham.police.uk": [4802], "accellion.com": [498], "g.nw7us.us": [2024], "*.softcreatr.de": [15157], "ethio.be": [2024], "scinewzbz.ga": [2024], "staples.com": [15453], "howto.gov": [7575], "dataservice.ipinyou.com": [7807], "sm.design": [2024], "benefits.stanford.edu": [15448], "perthne.ws": [2024], "fls-cn.amazon.cn": [19168], "usainteanne.ca": [22404], "infosecisland.com": [8129], "prrl.co": [2024], "aferisty-v-setyah.friday.ru": [20175], "i.loveht.ml": [2024], "nap-assets.nap-live.ext.net-a-porter.com": [11210], "forum.farmanager.com": [5650], "cryn.io": [2024], "i.mostafa.info": [2024], "securepcissl.com": [14571], "to.morecar.es": [2024], "fsoa.org.uk": [20180], "mbank.cz": [9733], "globe.chromeexperiments.com": [3122], "images.indianexpress.com": [8068], "maghis.oxfordjournals.org": [12222], "on.li.cr": [2024], "infocritique.fmed.ulaval.ca": [17319], "www.placesonline.com": [12793], "t.rasp.yandex.com.tr": [18740], "brndg.co": [2024], "www.mediapart.fr": [10194], "kilometrikisa.fi": [8904], "www.swiss-prime-site.ch": [22060], "malaysia.allianz.com": [19151], "www.syllable.org": [22064], "www.shipto.com": [14768], "www.eplayer.performgroup.com": [12269], "www.surfeasy.com": [15714], "minecraft.net": [10452], "sim.bo": [2024], "4ndeh.me": [2024], "bit.mrua.eu.org": [2024], "www.sis.nlm.nih.gov": [11090], "www.die.net": [4445], "ptp.oxfordjournals.org": [12222], "splash-opm.com": [2024], "webmail.un.org": [17057], "biz.world.waze.com": [18111], "s.evbuc.com": [5427], "piratebay.se": [22175], "origin.gigya.com": [6641], "dnaserum.com": [4048], "www.thejns.org": [8655], "hr.od.nih.gov": [11090], "seevents.co": [2024], "catalog.federalsoup.com": [5709], "c0z.me": [2024], "a.abcnews.com": [285, 286], "en.mail.qq.com": [13329], "lnv.gy": [2024], "1080p.96.lt": [2024], "www.btcbuy.info": [1579], "*.blogspot.al": [2127], "ipv6.lurkmo.re": [9682], "weborder.active24.de": [19063], "pub.mate-desktop.info": [9727], "www.namecheap.com": [11060], "www.fundfill.com": [6235], "*.slhost.com": [15156], "tspy.eu": [2024], "tgen.me": [2024], "germi.es": [2024], "www.vpn-service.us": [17587], "de.socialclub.rockstargames.com": [13997], "static.hitta.se": [20381], "jmedicalcasereports.biomedcentral.com": [1931], "www.duo.com": [4797], "*.mtgsy.net": [10404], "*.blogspot.am": [2127], "awrd.it": [2024], "go.naida.com.br": [2024], "sl.bridgenc.com": [2024], "www.comcast.com": [3462], "onlinebackup.elgiganten.dk": [5154], "krakaoke.squat.net": [21955], "mobilecoe.dhs.gov": [4026], "butler.freecycle.org": [6138], "jiangxi.jd.com": [8434], "www.gsfc.nasa.gov": [10909], "www.ja.wiki.hidekisaito.com": [7396], "dvlr.co": [2024], "www.yummynames.com": [16887], "c1.adformdsp.net": [640], "download.sugarlabs.org": [15646], "mmoculture.com": [9781], "mmrk.io": [2024], "radio.freifunk.net": [6170], "atrat.is": [2024], "bstrc.ps": [2024], "sanger.ac.uk": [18286], "lk.bbodinat.com": [2024], "sdm.osu.edu": [11797], "*.fckme.org": [12297], "pt.stackoverflow.com": [15424], "es.pforce.nvidia.com": [11022], "bufferbloat.net": [2420], "registration.edfringe.com": [19954], "chocolatfrey.ch": [3100], "damz.eu": [2024], "thehiddenbay.xyz": [21522], "khabarovsk.europaplus.ru": [20034], "corp.tropo.com": [16835], "rossier.usc.edu": [17366], "pmknbch.com": [2024], "alnh.co": [2024], "security.freebsd.org": [6097], "adherents.april.org": [1171], "queer.de": [13399], "anmlxh.se": [2024], "arch.cca.edu": [2547], "u.s.kqed.org": [8764], "blogs.princeton.edu": [13113], "impdig.eu": [2024], "dndy.io": [2024], "openccc.net": [11960], "t.physio.sk": [2024], "sellercentral.amazon.in": [19177], "tcpalmextras.com": [15859], "test.browsec.com": [19456], "subscribe.hollywoodreporter.com": [7464], "scherbinka.biglion.ru": [19375], "go.tony.io": [2024], "*.hackpad.com": [7145], "khudd.am": [2024], "ehoonline.biomedcentral.com": [1931], "estudiantes.us.es": [17502], "mypca.me": [2024], "me.onmedic.com": [2024], "linds.at": [2024], "*.ypbot.net": [18713], "openssh.com": [12006], "incluhack.te-st.ru": [22103], "go.zando.co.za": [2024], "www.mathinf.uni-heidelberg.de": [17262], "download.winzip.com": [18424], "ghill.me": [2024], "www.leloop.org": [9206], "zoop.la": [2024], "vns.vet": [2024], "www.charterbusiness.com": [3028], "cabinet.tushino.com": [22315], "ncat.worldcat.org": [18536], "sixt.pw": [2024], "dniester.ru": [19858], "jobcorps.gov": [20644], "jtuck.xyz": [2024], "disu.ga": [2024], "*.openttd.org": [12018], "jubao.anquan.org": [19204], "www.youtube.com.pe": [18800], "www.urldecode.org": [22402], "mindf.li": [2024], "travis-ci.com": [16775], "a4who.com": [2024], "r24823116.sync.app.asana.com": [1265], "sv.gnu.org": [6337], "clickerheroes.com": [3259], "pipers.sc": [2024], "add.unizar.es": [17441], "*.skroutz.gr": [14986], "wandisco.com": [17986], "essweb.wustl.edu": [18089], "hexonet.net": [7382], "infosida.nih.gov": [11090], "musouwww.play-asia.com": [12828], "kornlink.com": [2024], "art.350.org": [140], "btcc.com": [2400], "questionpro.ideascale.com": [20479], "aswirlgirl.com": [1330], "sia.homeoffice.gov.uk": [20399], "divn.us": [2024], "co.inetvl.ru": [20525], "www.tokyotosho.info": [16612], "quadreeinc.com": [2024], "vbi.vt.edu": [17825], "mexbt.com": [10146], "rrgvideo.com": [2024], "annikawal.sh": [2024], "burnley.gov.uk": [2460], "yhhr.us": [2024], "*.theatlanticcities.com": [1342], "muo.fm": [2024], "workzonesafety.org": [22616], "artpo.li": [2024], "perf.mediamarkt.de": [20949], "nickyhager.info": [11428], "www.boundarydevices.com": [19433], "camhideout.net": [2024], "static.freebase.com": [6133], "thesti.ng": [2024], "webcenter.tiscali.it": [16572], "arbeidskontoret.piratpartiet.no": [12758], "sidibouras.com": [14827], "edyo.es": [2024], "drd.life": [2024], "indy.im": [8085], "inst.tc": [2024], "www.agariomods.com": [764], "metin2.co.nz": [10342], "www.joyclub.de": [8662], "l.saunier.me": [2024], "j-p.me": [2024], "assets.fitbit.com": [5867], "help.httpwatch.com": [7102], "s.insighto.com": [2024], "pepc.nps.gov": [11122], "a.renn.in": [2024], "classes.soe.ucsc.edu": [17390], "shsrav.com": [2024], "richmondshire.firmstep.com": [20108], "consult.bracknell-forest.gov.uk": [19440], "aard.mn": [2024], "secure.pressreader.com": [13081], "saladecomunicacion.bankinter.com": [1674], "mtpc.govspace.gov.au": [6851], "irca.co": [2024], "lnk.suryaloe.id": [2024], "mediasite.osu.edu": [11797], "2014.appseccalifornia.org": [1164], "youtube.com.pt": [18800], "tipk.mvd.ru": [21055], "1tv.ru": [88], "trojansalert.usc.edu": [17366], "www.zenmate.fi": [18917], "disc.to": [2024], "rosehosting.com": [14022], "www2.samsungknox.com": [14331], "youtube.com.pe": [18800], "ferienhaus-emsland-suzan.de": [5739], "bkind.ly": [2024], "foorumi.piraattipuolue.fi": [21412], "youtube.com.ph": [18800], "dotbair.es": [2024], "i3.buimg.com": [16509], "www.schema.org": [21742], "apkmirror.com": [1126], "xnt.me": [2024], "desa.do": [2024], "switchie.ch": [15767], "nlap.in": [2024], "www.africangreyparrotcentre.co.uk": [753], "battlegrounds.leagueoflegends.com": [9220], "getchef.com": [6573], "fashion.taobao.com": [16015], "view.truste.com": [15922], "stc.uptodown.net": [22397], "lt10.co": [2024], "www.swisscom.ch": [15761], "www.onenetworkdirect.com": [11877], "madani.co": [2024], "awkn.co": [2024], "www.courierpost.co.nz": [3714], "www.capnproto.org": [2835], "www.hyperledger.org": [20457], "ir.tn.com.ar": [2024], "lhm.bz": [2024], "f1.com": [2024], "wasm.usyd.edu.au": [22413], "coreos.com": [3667], "secure-endpoints.com": [14543], "veu.me": [2024], "static6.twilio.com": [16948], "www.chloe.re": [3096], "proxysolutions.net": [13227], "ulysses.calvin.edu": [2773], "www.lambdaops.com": [9152], "emljok.es": [2024], "apollo4.ds.leeds.ac.uk": [17403], "freesearch.naukri.com": [11146], "on.wusa9.com": [2024], "cdm.cursecdn.com": [3927], "g.tpoc.co.uk": [2024], "blog.outbrain.com": [12182], "dav3h.co.uk": [2024], "w2.futectv.com": [2024], "misc.roblox.com": [13980], "r.ting.com": [2024], "wescom.wirral.gov.uk": [18461], "sosmednews.org": [2024], "www.alipay.com": [864], "o2o.1688.com": [51], "enex.is": [2024], "www.community.oxforddictionaries.com": [12223], "collaborate.plymouth.ac.uk": [12873], "ex.ac.uk": [17339], "cdn.wolfire.com": [18485], "thumbs.deviantclip.com": [3757], "nrws.io": [2024], "careers.stackoverflow.com": [15424], "markets.ft.com": [5810], "boeken.djoser.nl": [19851], "isr.oxfordjournals.org": [12222], "www.ushmm.org": [17529], "consult.kettering.gov.uk": [8877], "extranet.thewarehouse.co.nz": [16425], "rpi.edu": [13832], "media.golfdigest.com": [6808], "docs.xamarin.com": [18629], "b.atgrace.com": [2024], "www.csbaacademy.com": [2678], "topf5.com": [2024], "webmail.plymouth.gov.uk": [21442], "4shared.com": [192], "community.nightdev.com": [11433], "cao.carnegiescience.edu": [2867], "loc.hertz.com": [7371], "okta6.ideone.com": [7944], "qelectrotech.org": [21556], "www.utica.edu": [17540], "listarchives.libreoffice.org": [9327], "mediasolutions.zalando.com": [18877], "nate.at": [2024], "stipendium.vutbr.cz": [17609], "cs11.myzuka.fm": [21079], "aforest.life": [2024], "name.social": [2024], "yola.psbank.ru": [13231], "beng.cf": [2024], "api.islamreligion.com": [8371], "guang.taobao.com": [16015], "thechroma.cloud": [2024], "im.media.ft.com": [5810], "checkcoverage.apple.com": [1151], "ha.pro-market.net": [13157], "v.7gen.com": [2024], "www.youtube.com.ng": [18800], "register.cnchost.com": [3327], "my2.begun.ru": [1785], "www.dlang.org": [19852], "jpd.nyc": [2024], "m.sporx.com": [21946], "tmt-blg.com": [2024], "morelli.fit": [2024], "phpsugar.me": [2024], "on.rsts11.com": [2024], "planetrulers.com": [21432], "ntr.oxfordjournals.org": [12222], "inwx.net": [8230], "uxp.me": [2024], "s3.etoro.com": [4970], "bodybd.co": [2024], "www.schlossbergstore.com": [14417], "download.drweb.com": [4776], "vip.btcchina.com": [1581], "www.3dr.com": [171], "www.myricom.com": [10884], "labs-cdn.revcontent.com": [21642], "mltarycrusr.com": [2024], "tldis.it": [2024], "getpocketbook.com": [12879], "gfsfrance.com": [6305], "wholesale.vodafone.co.nz": [17899], "tmplabs.info": [2024], "optagelse.dk": [12101], "1nspi.re": [2024], "money.mail.ru": [9891], "deputi.es": [2024], "www.userapi.com": [22408], "vodcover.cc.netease.com": [11228], "hdmoviefree.ga": [2024], "www.bestattungwien.at": [18376], "btcs.yahoo.co.jp": [18730], "www6.pipni.cz": [12287], "www.naukri.com": [11146], "kbc.com": [8725], "checkmarx.com": [3055], "my.videobloom.com": [17771], "half.supply": [2024], "sphhp.buffalo.edu": [17382], "www.tonyarcieri.com": [16623], "allis.li": [2024], "img.okcoin.com": [11665], "a.ntv.ru": [21197], "www.adc-srv.net": [19074], "perforce.freebsd.org": [6097], "civoti.it": [2024], "lnsl.tk": [2024], "arcd.hu": [2024], "www.netflix.com": [11269], "ssl-trust.com": [14240], "buysellads.com": [2484], "www.anders.com": [1040], "preprod.www.hispeed.ch": [22386], "macapi.xamarin.com": [18629], "sbrief.ly": [2024], "www.godaddy.com": [6755], "go.jobwise.com": [2024], "registrar.cornell.edu": [3676], "tmg-trackr.media.mit.edu": [9761], "targeta.uv.es": [17544], "migrationsverket.tdconline.se": [15865], "oso.site": [2024], "ticketing.southbankcentre.co.uk": [15260], "stanmed.stanford.edu": [15447], "fsu.edu": [5594], "hrto.me": [2024], "changde.jd.com": [8434], "img3.2345.com": [98], "flughund.li": [2024], "web-code.educ.cam.ac.uk": [17332], "www.redbox.com": [13740], "teachseo.co": [2024], "www.d.switchadhub.com": [15764], "wrs.x5.ru": [18590], "*.secure.griffith.edu.au": [6937], "www.mbank.com.pl": [9733], "lk.redhat.com": [13735], "www.americas1stfreedom.org": [19190], "ie.usembassy.gov": [22406], "shop.abc.net.au": [284], "kuku.nu": [2024], "forum.videolan.org": [17775], "jhc.oxfordjournals.org": [12222], "cms-es.almayadeen.net": [19157], "we5.djicdn.com": [4029], "elo.pe": [2024], "fybse.se": [5603], "video.oms.eu": [11673], "runbook.io": [14092], "git74.rostrud.ru": [21677], "ews.onl": [2024], "kraf.tk": [2024], "07t.co": [2024], "*.desura.com": [4385], "blog.quantopian.com": [13390], "babeljs.io": [1616], "lensba.by": [2024], "www.trinity-look.org": [16811], "matty.link": [2024], "spk2.us": [2024], "archive.cheshire.gov.uk": [3069], "www.anapirana.com": [19195], "api.whatpulse.org": [18327], "nrafamily.org": [21180], "seuelectronica.upf.edu": [17471], "koen.pro": [2024], "www.perel.eu": [17685], "go.porks.tv": [2024], "1.163.com": [50], "resourcecenter.odee.osu.edu": [11797], "l.mrt.io": [2024], "cdn2.spiegel.de": [15342], "s.1mg.ro": [2024], "pdr.nl": [2024], "content.eventim.com": [5433], "aus.wwte8.com": [18031], "bugs.au.freebsd.org": [6097], "cossacklabs.com": [3693], "certify.104.com.tw": [18], "webinar.magento.com": [9868], "sg.topshop.com": [22238], "icad.ae": [2024], "csja.us": [2024], "asset.7headlines.net": [228], "environment.data.gov.uk": [19762], "rt.pornhub.com": [12972], "annsummers.com": [1071], "l.trend.az": [2024], "niqi.li": [2024], "om.eamobile.com": [5141], "www.bitcoinstats.com": [1997], "gitlab.kitware.com": [20726], "www.cvedetails.com": [3940], "joinus.today": [8632], "phabricator.whonix.org": [18362], "mcallr.com": [2024], "www.octopuce.fr": [11753], "wjcf.co": [2024], "www.soekris.com": [15151], "it.pornhub.com": [12972], "www.ny.curbed.com": [3920], "mbext.rosevrobank.ru": [14024], "internalaudit.georgetown.edu": [6531], "literaryreview.co.uk": [20854], "ijyi.co": [2024], "mjp.io": [2024], "surfcanyon.com": [15713], "www.cryptodesign.org": [3861], "openafs.org": [11949], "nwleics-self.achieveservice.com": [19051], "accounts.courierpost.co.nz": [3714], "events.linuxfoundation.org": [9427], "kaprica.com": [20686], "ai.hn": [2024], "u.dji.com": [4029], "madho.it": [2024], "operaa.me": [2024], "data3.whicdn.com": [17996], "slshow.us": [2024], "go.xjon.me": [2024], "beachhuts.bournemouth.gov.uk": [2268], "www.techslinger.com": [16116], "claudiodangelis.com": [3221], "i.fantasycricket.telegraph.co.uk": [16149], "thugs.me": [2024], "t2.openload.co": [12070], "www.nerdster.org": [21106], "bonusweb.idnes.cz": [20483], "www.interspire.com": [1881], "wiki.atomicorp.com": [1355], "www.wupaymentsolutions.com": [18026], "www.hitta.se": [20381], "streaming.media.ccc.de": [2553], "oligarh-tv.friday.ru": [20175], "api.fraudmetrix.cn": [20151], "stuart.photos": [2024], "s.tfcdn.com": [16404], "static1.wareable.com": [22525], "help.webtrends.com": [18264], "pbar.us.dell.com": [4317], "www.brandisty.com": [2303], "www.tangerine.com": [16008], "massrev.org": [2024], "david.sipsolutions.net": [14184], "uni.hi.is": [7049], "property.birmingham.gov.uk": [19379], "lhc-commissioning.web.cern.ch": [2588], "ninver.se": [2024], "curec.lk": [2024], "link.ej.vc": [2024], "elgabri.de": [2024], "nawaat.org": [11154], "*.blogspot.com.mt": [2127], "exo.co": [2024], "dontlog.me": [2024], "l.betrad.com": [5448], "weblife.us": [2024], "tprls.me": [2024], "lft.to": [2024], "bisnow.com": [1950], "mail.yeah.net": [18757], "tdc.me": [2024], "go.fsci.in": [2024], "balnet.ru": [19310], "www.tatepublishing.com": [16038], "infohr.do": [2024], "secure.legolanddiscoverycenter.com": [9249], "rdhs.tv": [2024], "vgr.tdconline.se": [15865], "codecoop.org": [3364], "r24820240.sync.app.asana.com": [1265], "smartertools.com": [15058], "track-es.almayadeen.net": [19157], "rum-static.pingdom.net": [12718], "suhai.sg": [2024], "webmail.nedlinux.com": [11171], "forum.choiceofgames.com": [3102], "rz.youku.com": [18804], "www.spump.com": [7371], "door.fyi": [2024], "download4.videolan.org": [17775], "wiki.hup.hu": [7108], "nn.te-st.ru": [22103], "www.it.johnshopkins.edu": [8626], "library.launchkit.io": [9179], "www.mastercard.ru": [10065], "s360.us": [2024], "helicopters.arma3.com": [1227], "www.virustracker.net": [17844], "fellowship.berkeley.edu": [17329], "bang.taobao.com": [16015], "x.kinja-static.com": [8919], "nats.girlsoutwest.com": [6648], "payment-ca.anthem.com": [19206], "brand.jquery.org": [8462], "forage.redbull.ru": [13726], "api.careerbuilder.com": [2853], "*.cyberstreetwise.com": [3969], "syxin.com": [15831], "passport.yuga.ru": [22701], "envoymediagroup.com": [5300], "iptfd.com": [2024], "www.gigaone.pl": [6635], "knsy.in": [2024], "www.lds.org": [16293], "malware-tracker.com": [9939], "www.zetetic.net": [18951], "mobil.sparebank1.no": [21922], "ca.infousa.com": [8112], "axess.sahr.stanford.edu": [15448], "*.netfronts.com": [11231], "s1.mi-img.com": [10360], "www.slipfire.com": [15031], "fkof.it": [2024], "220.img.pp.sohu.com.cn": [15170], "*.tvlim.com": [15950], "empw.red": [2024], "*.fetlife.com": [5748], "mitsumoto.rs": [2024], "aaps.illuminateed.com": [20494], "cryptohaze.com": [3864], "www.nationaleatingdisorders.org": [11106], "ui.adsupply.com": [598], "clixgalore.com": [19617], "blog.flameeyes.eu": [5880], "shuya.beeline.ru": [1778], "mitsmr.com": [2024], "incdn.il.topshop.com": [22238], "intentio.fit": [2024], "ambvpn.ambest.com": [369], "diskozanis.com": [2024], "edienterprise.courierpost.co.nz": [3714], "i.ontraport.com": [21261], "3lx.net": [2024], "tag.yidianzixun.com": [22679], "firebase.com": [5838], "xn--bernina-zrich-4ob.ch": [1827], "philanthropy.cam.ac.uk": [17332], "trt.so": [2024], "monitor.cm": [2024], "e37.fr.nf": [2024], "search.usa.gov": [17110], "tools.grassroots.org": [6878], "slvtr.it": [2024], "www.tiras.ru": [22215], "viu.com": [17883], "itechnician.co.uk": [7864], "rekry.oikotie.fi": [21234], "www.sccvote.org": [14401], "m.chipdip.ru": [19582], "inxpo.com": [8328], "js.nyt.com": [11035], "myvisarewardsplus.com": [17643], "1oz.us": [2024], "carrabb.as": [2024], "cl1ck.website": [2024], "b.mirachem.com": [2024], "tina.bz": [2024], "begn.in": [2024], "appsto.re": [1167], "regist.asia.nikkei.com": [11442], "a-eng.in": [2024], "curseclient.curse.com": [3927], "www.stalbans.gov.uk": [21974], "moodledev.uowplatform.edu.au": [17434], "vpn.zg.ch": [22061], "tfgamessite.com": [22134], "*.rollernet.us": [14013], "eyed.cc": [2024], "mosoblgaz.ru": [21024], "chix.im": [2024], "newsday.com": [11382], "*.besmith.com": [1612], "api.radioplayer.co.uk": [13581], "www.woothemes.com": [18505], "zlavy.odpadnes.sk": [18979], "ko.4.boardgamearena.com": [2182], "vomo.tpprf.ru": [22260], "itfree.info": [2024], "hertz247.com": [7371], "piwik.raceforward.org": [13551], "www.kudelskisecurity.com": [9044], "udmurtiya.rt.ru": [13529], "coalicion.es": [2024], "dashboard.qubitproducts.com": [13395], "ssl-static.libsyn.com": [9336], "zach.in": [2024], "ezproxy.utm.edu": [17426], "id.rapida.ru": [13619], "tmo.im": [2024], "games.meetme.com": [10224], "on.ofczianka.hu": [2024], "l.epkm.fr": [2024], "fs.lunik.xyz": [20890], "xc.oj.cx": [2024], "salasen.com": [2024], "tender.x5.ru": [18590], "tuct.co": [2024], "www.nationstates.net": [11083], "etutor.bls.ch": [1552], "ipromo.link": [2024], "ja.boardgamearena.com": [2182], "go.hacklife.co": [2024], "vfcl.fr": [2024], "custom.simplemachines.org": [21830], "www.ticketnet.fr": [16496], "go.cwa.net": [2024], "eo.libreoffice.org": [9327], "computing.artsci.wustl.edu": [18089], "serviceportal.flughafen-zuerich.ch": [20124], "www.home.bt.com": [1578], "blog.vpn.asia": [22505], "console.qcloud.com": [13346], "forgifs.com": [6015], "hipag.es": [2024], "dthero.co": [2024], "api.fir.im": [20106], "brtdr.com": [2024], "jvn.jp": [8477], "www.dsply.com": [17664], "conference.gajim.org": [6383], "paitstaging.state.gov": [17146], "boxcar.io": [2275], "neelwafurat.com": [11174], "competitionsbywyndham.com.au": [18579], "www.novayagazeta.ru": [21169], "verne.elpais.com": [5126], "git.timeinc.net": [16535], "prg.gamesradar.com": [6259], "www.peachosi.com": [21378], "static.copiny.com": [3656], "www.softether.org": [15158], "urlk.ml": [2024], "gonightshift.com": [20287], "facebook-studio.com": [5611], "list.qq.com": [13329], "pfs-access.com": [2024], "www.ghacks.net": [6307], "smarttv.mytrinity.com.ua": [21075], "dtrnsfr.us": [2024], "polycomlab.com": [2024], "tech.vgtrk.com": [22455], "secure.pegazhosting.com": [12561], "wiki.openmoko.org": [12071], "aq.qq.com": [13329], "www.geany.org": [6463], "c1.adform.net": [638], "mss.anthem.com": [19206], "corrupcia.net": [19693], "willkimbley.me": [2024], "status.58.com": [212], "b.social.ee": [2024], "r.sudotv.com": [2024], "nava.bi": [2024], "www.annsummers.com": [1071], "pharmacycorefacilities.usc.edu": [17366], "getmein.com": [9493], "rio2016.com": [21652], "status.hipchat.com": [7417], "owncloud.clear-code.com": [3228], "on.gfmg.us": [2024], "loanrepayment.mastercard.ru": [10065], "blackboard.jhu.edu": [16370], "bit.ishake.me": [2024], "short.daus.xyz": [2024], "fastcompany.com": [5659], "www.wwwpromoter.com": [22635], "suggests.rasp.yandex.kz": [18743], "deti.mail.ru": [9891], "www.br.de": [1566], "www.presscoders.com": [13076], "frieslandcampina.com": [2796], "g10code.com": [20194], "fllr.cf": [2024], "download0.rpmfusion.org": [14056], "www.lib.vt.edu": [17825], "ausl.us": [2024], "uec-images.ubuntu.com": [17183], "konto.hnonline.sk": [7445], "www.vaes.vt.edu": [17825], "r24626571.sync.app.asana.com": [1265], "enpt.dict.cc": [4442], "oracle-base.com": [12114], "hollymeyer.co": [2024], "tricorder.kairo.at": [8782], "www.etarget.cz": [5363], "d4.sinaimg.cn": [14910], "healthclaims.iciciprulife.com": [7917], "slts.osu.edu": [11797], "packd.it": [2024], "oig.dol.gov": [19867], "mndigital.com": [10172], "odusplus.com": [2024], "kuv4n.ga": [2024], "stadtwerke-bamberg.de": [15433], "www.piratebayblocked.com": [21522], "t.dvp.me": [2024], "oms.symantec.com": [15780], "*.hackint.org": [20331], "wiki.mozfr.org": [21030], "digi.hu": [4458], "contact.voyagegroup.com": [17948], "hr.yahoo.co.jp": [18730], "developers.bingads.microsoft.com": [10396], "developer.rottentomatoes.com": [14034], "pvsd.us": [2024], "police.wustl.edu": [18089], "aid.send.microad.jp": [10377], "jeena.net": [8557], "giggl.io": [2024], "cdnstatic.outspark.com": [12186], "www.careers.fi": [2857], "*.pandawhale.com": [12386], "webspectator.com": [18186], "*.flaska.net": [5886], "horizon.akixi.com": [19129], "transferapproval.dreamhost.com": [4743], "sweiss.me": [2024], "hsbc.tbs.aon.com": [19212], "vtb.com": [17601], "fyl.unizar.es": [17441], "ssxp.lc": [2024], "freiburg.fau.org": [5543], "diskusjon.no": [4552], "ghaznitowers.state.gov": [17146], "x.dnmt.ch": [2024], "mineralcountypubliclibrary.worldcat.org": [18536], "inschrijven.nl": [8163], "leadmanagement.autoscout24.de": [1458], "humanrights.gov.au": [1420], "f6.aztravel.xyz": [2024], "lists.exim.org": [5483], "its.shared.by": [2024], "support.rhinosupport.com": [13919], "avry.co": [2024], "stvq.co": [2024], "vsearch.ws": [2024], "producthelp.webtrends.com": [18264], "inkomus.a-3.ru": [258], "consult.southend.gov.uk": [15261], "www.theamericanscholar.org": [16321], "worldut.io": [2024], "images5.bovpg.net": [2269], "go.webhuset.no": [2024], "reestrnp.rkn.gov.ru": [13971], "s.eg-ls.com": [2024], "hvgo.us": [2024], "ib.lbp.me": [20789], "cdn.hfo-telecom.de": [7041], "spreadshirt.com.au": [15371], "anon.inf.tu-dresden.de": [15937], "test1-ukp.adsrvr.org": [688], "pyatigorsk.beeline.ru": [1778], "i.lashb.ac": [2024], "djir.ie": [2024], "irecruitment.oracle.com": [12116], "roh.news": [2024], "arthur.cm": [2024], "cdn.melonbooks.co.jp": [10258], "safe.txmblr.com": [16975], "hathitrust.org": [7230], "mprss.ly": [2024], "dcc.news": [2024], "stat.svzt.ru": [22055], "catalogues.thewarehouse.co.nz": [16425], "lyrk.co": [2024], "ev.fyi": [2024], "s5.gismeteo.pl": [20252], "community.compuwareapm.com": [3546], "www.teo.lt": [16188], "descinet.bbva.es": [1744], "jjg.me": [2024], "i0.c.dk": [2512], "d-i.debian.org": [4263], "gp1.wac.edgecastcdn.net": [5070], "www.nhnnext.org": [10950], "fdirect.co": [2024], "www.superuser.com": [15424], "www.16163.com": [48], "yu.edu": [18768], "www.kontrolling.bme.hu": [1556], "www.artchristina.com": [1246], "abis-studien.se": [288], "link.agk.io": [2024], "my.gumtree.com": [20323], "deviceids-meds-id2.wdr.de": [18113], "awesome.leeds.ac.uk": [17403], "static.torrentday.com": [16650], "fullertonpubliclibrary.worldcat.org": [18536], "vidfru.it": [2024], "jan-m.net": [2024], "www.bagnet.org": [1638], "i02.c.aliimg.com": [861], "prodct.cf": [2024], "leicestershirecc.firmstep.com": [20109], "www.bookstore.wku.edu": [22602], "spinup.unizar.es": [17441], "fsln.me": [2024], "mypango.us": [2024], "a.fresh.lu": [2024], "see.leeds.ac.uk": [17403], "n3.sinaimg.cn": [14910], "mail.sviaz-bank.ru": [15740], "b-o.pp.ua": [2024], "www.open-groupe.nl": [21263], "webmail.argewebhosting.nl": [1211], "media.dods.co.uk": [19862], "opr.as": [2024], "hoover.ms": [2024], "abuse.dreamhost.com": [4743], "s.mtv.fi": [21045], "wsrd.net": [2024], "www.kcc.webhostone.de": [18216], "www.rubixlinux.org": [21691], "wal.mw": [2024], "domainsite.com": [19872], "www.meltwaternews.com": [10261], "daft.onl": [2024], "img.zemanta.com": [18912], "shahed.link": [2024], "lnk.wlc.cc": [2024], "frst.cc": [2024], "hoof.little.my": [9487], "8.hf8.co": [2024], "panel.nazwa.pl": [11156], "piwik.paris-web.fr": [21345], "ico.ee": [15999], "docs.software-univention.de": [17315], "epst.uk": [2024], "social.umeahackerspace.se": [17228], "tclb.biz": [2024], "portal01.sparebank1.no": [21922], "numr.us": [2024], "tokyotosho.info": [16612], "stats.gamingonlinux.com": [6428], "ttip-stoppen.at": [15933], "js.bizographics.com": [2053], "boca.gov.tw": [2181], "business.pinterest.com": [12731], "www.tkbbank.ru": [16583], "m.airbnb.jp": [793], "threev.co": [2024], "backchannel.com": [19298], "mrlxkds.com": [2024], "www.sockshare.com": [15148], "jp.opera.com": [12086], "dgrf.be": [2024], "forum.tdc.dk": [15862], "campina.be": [2796], "nhrul.es": [2024], "simyo.de": [14901], "rglz.it": [2024], "secure.business.bt.com": [1578], "www.rockcreek.com": [13989], "comment.gp-digital.org": [20299], "nbct01.baidupcs.com": [1643], "vippy.co": [17815], "owj.wine": [2024], "reviora.co": [2024], "go.tkwillis.com": [2024], "m1.baidu.com": [1641], "rottnestfastferries.com.au": [14037], "img3.eadaily.com": [19929], "fonts.condenast.com": [3555], "*.ironsearch.com": [7819], "e.csndicas.com": [2024], "vpn.ac": [22504], "insa-lyon.fr": [7777], "lloc.in": [2024], "tdf.gd": [2024], "hul.la": [2024], "coverfire.com": [3729], "www.hofer.at": [357], "fwd.environment-agency.gov.uk": [20006], "arthritis-research.biomedcentral.com": [1931], "studentaffairs.georgetown.edu": [6531], "repeaterstore.com": [13838], "questacon.edu.au": [13404], "sequanux.org": [14654], "accessnow.org": [503], "bthl.nl": [2024], "*.altmetric.com": [941], "go.www.bible": [2024], "www.ultimatebootcd.com": [17215], "0gwc-kbhkort.kk.dk": [8748], "www1.scribus.net": [14478], "playlabs.cdnvideo.ru": [19536], "brml.co": [2024], "mm.shortnote.jp": [21811], "hpex.io": [2024], "sull.cr": [2024], "www.lide.cz": [9341], "symaccount.symantec.com": [15780], "find.fmm.li": [2024], "www.igb.illinois.edu": [17346], "xrbn.co": [2024], "juick.com": [20665], "dave.jsbin.com": [20659], "l.irrayyan.com": [2024], "jcircadianrhythms.biomedcentral.com": [1931], "www.formsite.com": [20139], "l.kimchisan.com": [2024], "wiki.bnl.gov": [19418], "cltd.io": [2024], "se-sy.org": [21761], "*.ebid.net": [19922], "www.behr.com": [1788], "www.youtube.fi": [18800], "sdonetsk.lanet.ua": [20780], "rrul.es": [2024], "ais.channel4.com": [3009], "s1.meituan.net": [10249], "craigsmith.net": [19714], "www.uillinois.edu": [17034], "alci.mx": [2024], "internetbrands.com": [8279], "greencubes.org": [20306], "wiki.hska.info": [20437], "origin.ih.constantcontact.com": [3594], "afsa.gov.au": [1417], "fiets.cc": [2024], "www.cxholidays.com": [2913], "system8.rbwm.gov.uk": [21597], "mail.verticalmedia.com": [17726], "landrover.us": [2024], "barfi.news": [2024], "scot.frl": [2024], "tmp-uat-cpsm.imercer.com": [20502], "motort.re": [2024], "download.lighttpd.net": [9362], "wiki.smartos.org": [15054], "www.ovscruise.com": [18579], "andtrap.it": [2024], "l.monorover.cz": [2024], "unionpaysecure.com": [17281], "beta.herefordshire.gov.uk": [7326], "mmmn.us": [2024], "gcfjobs.com": [2024], "p.lua.kr": [2024], "nineivy.co": [2024], "www.merlinux.eu": [10309], "aans.org": [973], "vnr.link": [2024], "www.downforeveryone.com": [4720], "doteasy.com": [4697], "bancodev.org": [2024], "tash.to": [2024], "usarmy.*.llnwd.net": [17109], "felixbrt.hol.es": [2024], "lesershop24.de": [20813], "emma.fyi": [2024], "i10.3conline.com": [169], "ads.exoclick.com": [5489], "studyinsweden.se": [22017], "pride.sh": [2024], "wildwestdomains.com": [18391], "www.f-droid.org": [5532], "jagifts.us": [2024], "tuleap.ring.cx": [13947], "www.lovehoney.co.uk": [9634], "lnkd.in": [9539], "cs.umd.edu": [17351], "ares.epic.hpi.uni-potsdam.de": [17258], "www.usaspending.gov": [17114], "4g.beeline.kz": [19345], "ulichnaya-magiya.friday.ru": [20175], "www.zeringo.com": [18935], "abc7.la": [2024], "fh.oxfordjournals.org": [12222], "i.mdsmt.be": [2024], "*.planet3dnow.de": [12799], "*.unmultimedia.org": [17077], "clk.msmart.me": [2024], "imdali.bjcnc.scs.sohucs.com": [15173], "flo.gg": [2024], "*.carpromods.com": [2841], "www.fasttrack.va.gov": [17100], "nikon-lenswear.com": [11443], "deal.chpskt.com": [2024], "nhdisplay.com": [2024], "aotw.xyz": [2024], "plaza.jp.rakuten-static.com": [21577], "www.chocolate-doom.org": [3098], "pxu.co": [2024], "imgne.co": [2024], "esa.mx": [2024], "marketingoops.com": [10023], "adulttoys4u.com.au": [699], "go.servseek.com": [2024], "bigbrotherwatch.org.uk": [1885], "stat.ameba.jp": [971], "tobolsk.startsmile.ru": [21980], "gd2.alicdn.com": [853], "yaounde.usembassy.gov": [22406], "www.zhihu.com": [18956], "on.hellophc.co": [2024], "curryrice.stanford.edu": [15447], "cdnmaster.com": [19534], "cislblog.stanford.edu": [15448], "www.exeterfriendly.co.uk": [5480], "tracker.adaptavist.com": [609], "camb.ro": [2024], "cassinoestrela.com": [2898], "vpn-ru.sportmaster.ru": [21944], "kochenevo.nso.ru": [21192], "startlogic.com": [15474], "partake.club": [2024], "expd.me": [2024], "concordia.tech": [2024], "www.init7.net": [8146], "cat.yandex.by": [18739], "firedept.link": [2024], "*.stlinux.com": [14254], "risas.co": [2024], "l.ward.guru": [2024], "www.geldermalsen.nl": [11172], "france.debian.net": [4261], "bloque.info": [2024], "www.booklink.me": [2214], "s1.plays.tv": [12847], "larsro.se": [2024], "plati.ru": [12821], "on.jahkno.com": [2024], "wlfbr.me": [2024], "python-pillow.org": [12707], "*.baremetal.com": [1692], "areyou.localsearch.ch": [9554], "b.oor.li": [2024], "www.biderundtanner.ch": [19372], "a-3.ru": [258], "fb.apnadesi.net": [2024], "hahcmn.com": [2024], "sell.2.taobao.com": [16015], "schedule.georgetown.edu": [6531], "misc.lyngsat.com": [20897], "rekrytera.dn.se": [19856], "www.rcdb.com": [21600], "ghsj.me": [2024], "klin.beeline.ru": [1778], "p2p.mdm.ru": [10143], "blog.mojang.com": [9789], "link.vice.com": [17754], "expandcart.info": [2024], "srcs.link": [2024], "l.itswar.be": [2024], "publicaccess.westoxon.gov.uk": [18316], "shopware.de": [14793], "wargamevault.com": [11867], "ui.ad.yieldmanager.com": [13937], "xlocturbo.2kgames.com": [117], "linehea.lt": [2024], "x.solotwink.com": [2024], "trte.ch": [2024], "kra.mr": [2024], "stavropolskiy-kr.beeline.ru": [1778], "t.ams.mx": [2024], "delawaretoday.com": [4306], "ftp4.usa.openbsd.org": [11955], "mirantis.com": [10479], "qr.piconda.com": [2024], "mintrud.49gov.ru": [187], "politica.elpais.com": [5126], "www.lostfilm.tv": [20876], "blog.join.me": [9558], "dotz.vc": [2024], "s23.postimage.org": [13024], "dokuwiki.org": [4631], "www.glassdoor.com.au": [20261], "bcfunky.com": [2024], "leve.ca": [2024], "zourl.de": [2024], "suprizkizlar.com": [15706], "posta.yandex.com.tr": [18740], "bul.tn": [2024], "p0.raasnet.com": [13716], "louissh.xyz": [2024], "secure.freshbsd.org": [6179], "vpn.carnegiescience.edu": [2867], "www.sabb.com": [21711], "point.gmo.jp": [6325], "st.backstage.here.com": [7325], "mail.behindthename.com": [19348], "mikhaylovsk.beeline.ru": [1778], "cdn.ycombinator.com": [7129], "zenmate.co.uk": [18917], "secure.cnchost.com": [3327], "www.goo.im": [6811], "firebrand.to": [2024], "ipv4.tunnelbroker.com": [16905], "digitalrights.center": [19838], "connect.mit.edu": [9763], "cdmn.cl": [2024], "forum.zwame.pt": [19025], "sitetagger.co.uk": [14940], "link.1javad.ir": [2024], "sebastian-siebert.de": [14519], "ots-net.ru": [21309], "*.hidemyass.com": [7399], "en.calameo.com": [2747, 2748], "www.admissions.com": [663], "*.picsity.com": [12698], "s.cagn.net": [2024], "syd.tax": [2024], "www-int.dexmedia.com": [4422], "static.affiliate.rakuten.co.jp": [13594], "subsignal.org": [15630], "www.0xdb.org": [10], "takarakuji.rakuten.co.jp": [13594], "life.alipay.com": [864], "blog.codeship.com": [3378], "firsttechfed.com": [5854], "www.lewisham.gov.uk": [20821], "www.giblod.no": [6618], "humansubjects.stanford.edu": [15448], "sawaleef.me": [2024], "www.valuate.com": [22425], "community.gotomeeting.com": [6769], "ahcg.co": [2024], "ursdoccdn.nosdn.127.net": [41], "deviceids-meda.wdr.de": [18113], "palmetto.com": [12376], "secure.ca.ikea.com": [7962], "9to5toys.com": [256], "files.scene.org": [8267], "forum.sysadmins.ru": [22068], "fom.bnl.gov": [19418], "cdn.topwar.ru": [22241], "andreafabrizi.it": [1043], "www.vine.co": [17807], "www.ugst.umd.edu": [17351], "bfnd.co.uk": [2024], "staysafeonline.org": [15507], "yit.co": [2024], "lacasika.ourproject.org": [21314], "enfermeriahuesca.unizar.es": [17441], "ously.me": [2024], "aircmp.us": [2024], "acunio.me": [2024], "www.pentestgeek.com": [12574], "www.surfermag.com": [15715], "thezaplab.com": [18888], "tso.co.uk": [15929], "me-cdn.effectivemeasure.net": [5096], "gmk.io": [2024], "momentedergeschichte.zdf.de": [22709], "mkkh.at": [2024], "www.exsila.ch": [20056], "birds-are-nice.me": [1943], "catalog.library.georgetown.edu": [6531], "portal.x5.ru": [18590], "salsacommons.org": [14316], "*.dt00.net": [9752], "untermportal.un.org": [17057], "fsp.gs": [2024], "static.adsafeprotected.com": [592], "dimebag.peteraba.com": [12622], "cas.baidu.com": [1641], "www.juniper.net": [8698], "analytics.tylercipriani.com": [16977], "*.wwte7.com": [18031], "lo-co.us": [2024], "training.dss.un.org": [17057], "ogwatches.co": [2024], "jway.info": [2024], "sjj.link": [2024], "chud.gr": [2024], "www.clipth.net": [17673], "veryde.li": [2024], "shouguang.jd.com": [8434], "ibank.sovcombank.ru": [21914], "naresponsa.catracalivre.com.br": [2917], "www.commission-junction.com": [3484], "www.amediateka.ru": [19186], "id.google.com.*": [6821], "www.360totalsecurity.com": [145], "batmanarkhamorigins.com": [1717], "credit-cardapply.asda.com": [407], "cocate.ch": [2024], "tinkersoup.de": [16550], "london2012.com": [9584], "www.bright-things.com": [2335], "hntd.ch": [2024], "asset.ust.hk": [22412], "b3.hitravel.xyz": [2024], "wwwapps.ups.com": [17088], "www.psiphon.ca": [21529], "prodotti.migros.ch": [10417], "amur-region.auto.ru": [19276], "l.lwb.me": [2024], "id.boardgamearena.com": [2182], "www.anchor.net.au": [19196], "pbiz.me": [2024], "online.akbars.ru": [19128], "help.etoro.com": [20028], "jodym.me": [2024], "www.maps.yandex.kz": [18743], "feedburner.google.com": [6818], "jmblx.tv": [2024], "shop.ws.nl": [2024], "helphandl.es": [2024], "gartner.cc": [2024], "use.typekit.com": [16984], "*.uiowa.edu": [17401], "*.zeit.de": [18910], "scg.ulaval.ca": [17319], "affirms.net": [2024], "*.admized.com": [665], "une.pm": [2024], "www.blogtalkradio.com": [2118], "gabclement.com": [2024], "greensmoke.co.uk": [6911], "*.myinmon.com": [10852], "kaluzhskaya-obl.beeline.ru": [1778], "cpbonlinebanking.com": [3430], "syedkaz.im": [2024], "prestoris.com": [21492], "gavick.com": [20209], "*.glerups.dk": [6690], "grwth.io": [2024], "wiki.cam.ac.uk": [17332], "static.shropshire.gov.uk": [21819], "rpf.link": [2024], "fryazino.biglion.ru": [19375], "s4.postimg.io": [13024], "avicoder.me": [19286], "shir.tc": [2024], "myjd.crm.jd.com": [8435], "promotionbuilder.livingsocial.com": [9530], "www.hyperoptic.com": [7652], "www.biligame.com": [1903], "fegta.xyz": [2024], "brdbt.com": [2024], "5stardealer.co": [2024], "www.arretsurimages.net": [19236], "f.hollr.in": [2024], "qn8bt0jrfql6c7fd.asana.com": [1265], "imgt7.bdstatic.com": [19339], "www.loanrepayment.mastercard.ru": [10065], "bag.gs": [2024], "nayaklab.stanford.edu": [15449], "lj.gm.163.com": [50], "ehospice.com": [5105], "www.premiumlinkgenerator.com": [21487], "fnih.com": [2024], "www.miha.tw": [20981], "www.brunel.ac.uk": [19459], "revisium.com": [13903], "jke.im": [2024], "git26.rostrud.ru": [21677], "www.bnc4free.com": [2180], "www.channeladvisor.com": [3005], "securitymetrics.com": [14585], "i.n8thnl8ng.me": [2024], "apps.clicks.lv": [3262], "hhh.umn.edu": [17356], "reviewr.ml": [2024], "kibble.centrify.com": [19546], "cine.search.ch": [14504], "voordelig.st": [2024], "www.lmms.io": [20861], "cimb.com": [2618], "kazan-tatarstan.beeline.ru": [1778], "chongzhi.jd.com": [8436], "purl.stanford.edu": [15448], "*.dante.net": [3995], "hryb.co": [2024], "www.recordedfuture.com": [13712], "oz-affiliate.com": [12226], "noisebridge.net": [11496], "gimpfoo.de": [6313], "yelp.ca": [18766], "yelp.cl": [18766], "www.mobile.de": [21001], "yelp.ch": [18766], "j.iphoting.com": [2024], "cscssl.jd.com": [8436], "apps2.staffordshire.gov.uk": [15435], "loanscience.com": [9544], "advertising.amazon.co.uk": [19170], "i.ber.im": [2024], "help.venmo.com": [17696], "p1.meituan.net": [10249], "correo.terra.com.mx": [16197], "www.businessdirect.bt.com": [1578], "us-u.openx.net": [12026], "p2.zdassets.com": [18905], "media.openmandriva.org": [11992], "fablabtruck.nl": [5605], "gng-gr.com": [2024], "ads.ibibo.com": [7898], "askyvi.tips": [2024], "pitiq.tv": [2024], "consult.cherwell.gov.uk": [3067], "plenti.com": [12852], "on.bxrink.com": [2024], "www.cipeg.leeds.ac.uk": [17403], "ww.bowenpress.com": [19434], "logs.inf2011.dosowisko.net": [4683], "ali.saglam.in": [2024], "cyb7.click": [2024], "helpdocsonline.com": [7307], "crsn.co": [2024], "zeus.jesus.cam.ac.uk": [2777], "help.ptc.com": [21532], "www.globalconnections.hsbc.com": [7090], "news.immobilienscout24.de": [8008], "www.opencontainers.org": [12036], "etarget.sk": [5362], "*.apollohq.com": [1156], "oregontomb.com": [2024], "yorkjics-test.york.edu": [18787], "resources.oncourse.iu.edu": [8069], "www.mate-look.org": [10075], "webmail.bo.infn.it": [7771], "www.smwcentral.net": [14203], "api.ipify.org": [20569], "www.europol.europa.eu": [5411], "mninjas.com": [2024], "raynersoftware.com": [13646], "itservices.bt.com": [1578], "www.exante.eu": [4985], "pornworms.com": [12975], "www.edlund.dk": [5078], "xiscosoft.com": [18668], "xuanhuan.qidian.com": [13349], "viciousbt.ch": [2024], "future.moodle.com": [10613], "asktom.oracle.com": [12116], "www.ith.aist.go.jp": [802], "rkhd.in": [21657], "partnerws.kh.hu": [8739], "mmbiz.qlogo.cn": [13355], "selection.alibaba.com": [857], "*.ceonex.com": [2969], "servicenow.com": [14682], "strngr.in": [2024], "www.init.sh": [20534], "www-test-origin.hkexpress.com": [20383], "andbur.uk": [2024], "www2.blocket.se": [2109], "*.staticsitegenerators.net": [15495], "cyha.es": [2024], "beluga.link": [2024], "cloudsso2.cisco.com": [3165], "rwjf.ws": [2024], "yebprod.alipay.com": [864], "twilio.com": [16948], "intqhc.oxfordjournals.org": [12222], "www.muttscomics.com": [10775], "forums.oculusvr.com": [11760], "www.adsecurity.org": [332], "hrc.io": [2024], "img.f2.constantcontact.com": [3594], "tcrypto.ga": [2024], "subo.fr": [2024], "esq.tv": [2024], "davidgold.co.uk": [4214], "gobby.0x539.de": [7], "sueddeutsche.de": [15641], "ngvpn19.nvidia.com": [11022], "selfserve.outbrain.com": [12182], "ncsdo.me": [2024], "*.potager.org": [13031], "caffo.link": [2024], "mining.kuna.io": [20763], "assets.kcc.digital": [8728], "dshop.se": [4779], "www.unindented.org": [17279], "www.coinsquare.io": [3410], "s1.bbs.xiaomi.cn": [18661], "www.gran-turismo.com": [6872], "review.lineageos.org": [9384], "www.idealconceal.com": [20478], "666note.co": [2024], "ldgr.ch": [2024], "oml.me": [2024], "nedcon.co": [2024], "themoscowtimes.com": [22171], "proxyserver.newsnetz.ch": [11371], "test1.gatewaytohomechoice.org.uk": [20208], "bbog.me": [2024], "appcanary.com": [1133], "slashbits.com": [15011], "*.banu.com": [1682], "go.voya.com": [2024], "rootless.org": [21670], "*.ferris.edu": [5744], "dl.rakuten.co.jp": [13593], "stat.yandex.ua": [18747], "leadformix.com": [9207], "aplicar.internetessentials.com": [20553], "medicalert.org": [10199], "brmo.co": [2024], "ci.testling.com": [22131], "roia.biz": [14005], "n.sinaimg.cn": [14910], "awilk.co": [2024], "mobile.unionpay.com": [17281], "edu.acer.ac": [2024], "bkst.co": [2024], "bkst.ch": [2024], "zenmate.ro": [18917], "100fans.de": [13], "mktg.im": [2024], "vpn-service.us": [17587], "vragen.upc.nl": [17083], "ci.solanolabs.com": [21895], "partner.wamba.com": [18063], "dobrochan.org": [4601], "api.tv4play.se": [15947], "www.ewellnessmag.com": [4984], "*.netgear.com": [11273], "*.greatteachersgreatschools.org": [15440], "www.hkyantoyan.com": [7074], "dhinews.me": [2024], "docs.oseems.com": [12154], "ckys.info": [2024], "www.socialfixer.com": [15130], "wholesalelabels.com": [18361], "magali.co": [2024], "yuga.ru": [22701], "www.steamstat.us": [21988], "alnso.me": [2024], "www.thegearhunter.co.uk": [16357], "www.eprivacy.eu": [20009], "p1.ivideo.sina.com.cn": [14904], "annonce.cz": [1074], "bose.co.uk": [2248], "www.trashbox.ru": [22279], "vasexperts.ru": [22429], "developer.constantcontact.com": [3594], "fikra.gd": [2024], "proxy-wallet.bitcoinchain.com": [19387], "*.forex.com": [6011], "openmpt.org": [11987], "tlab.me": [2024], "www.smartlingsource.com": [15060], "nederbyshire-ss.achieveservice.com": [19051], "markmail.biz": [10012], "specialforces.com": [15310], "sbarg.me": [2024], "mymoney.jd.com": [8436], "driverseddirect.com": [4760], "answers.themler.com": [16414], "www.tls-o-matic.com": [15889], "chirp.ly": [2024], "*.tzoo-img.com": [16774], "erestra.pw": [2024], "id.arduino.cc": [1205], "www.deakinandfrancis.co.uk": [19790], "*.lanistaads.com": [9163], "rt.powerdns.com": [13036], "automattic.com": [1452], "marathonbet.com": [9988], "cmsen.rbth.com": [21596], "west-norfolk-consult.objective.co.uk": [21225], "com.municat.to": [2024], "dne.oracle.com": [12116], "sso.americanexpress.com": [979], "*.louderthanwar.com": [9627], "video.sina.com.cn": [14904], "evid.in": [2024], "beardsr.us": [2024], "go.cmgenius.com": [2024], "www.solarmovie.is": [15181], "love.ale.fot.br": [2024], "vape.ac": [2024], "maoming.jd.com": [8434], "lyngsat.com": [20897], "citizenfourfilm.com": [3177], "cdca.mp": [2024], "robohash.tokenly.com": [22229], "community-beta.tealiumiq.com": [16060], "*.photosugar.com": [12674], "rmp.kondor.co.uk": [8986], "help.provost.usc.edu": [17366], "hotmai.play-asia.com": [12828], "beacon.krxd.net": [9028], "www.local.whsmith.co.uk": [18000], "convt.co": [2024], "ask-inc.com": [16739], "*.pgeverydaysolutions.com": [13168], "go.techbuff.in": [2024], "s22.cnzz.com": [3328], "salt.zone": [21723], "svn.automattic.com": [1452], "share.law.yale.edu": [18732], "me.samsungknox.com": [14331], "doesnotwork.eu": [4622], "wiki.zoho.com": [18984], "bpckt.io": [2024], "travelinsurance.asda.com": [407], "prepayparking.surreyheath.gov.uk": [22042], "cag.stadtwerke-bamberg.de": [15433], "www.srlabs.de": [14583], "aste.in": [2024], "*.sidearmsports.com": [14824], "www.bluejeanscable.com": [2154], "help.grindr.com": [20308], "d.lerv.me": [2024], "r24617999.sync.app.asana.com": [1265], "www.tankafetast.com": [16010], "mouseblocker.com": [10663], "thepirateshore.eu": [21522], "rubyforge.org": [14074], "tlnt.at": [2024], "codebasehq.com": [3358], "url.tamilcc.com": [2024], "*.emailvision.com": [5186], "publicfiling.infousa.com": [8112], "ahoy.re": [22174], "panovski.me": [12397], "www.ulozenka.cz": [17212], "nab.co": [2024], "www.youtube.co.ma": [18800], "www.pao-pao.net": [12405], "www.woolworths.com.au": [18511], "topsi.fi": [2024], "technology.uaa.alaska.edu": [17323], "u.kyezr.com": [2024], "s97.cnzz.com": [3328], "jscss.cp.ctscdn.com": [15916], "finalsite.com": [5805], "alwww.umweltbundesamt.de": [17230], "s.oopad.com": [2024], "jct32.co": [2024], "e-y.es": [2024], "m.exct.ly": [2024], "gcirc.us": [2024], "torrentdownloads.net": [22244], "www.technologycareers.g4s.com": [20195], "wondershare.com": [22608], "community.constantcontact.com": [3594], "developer.snapengage.com": [15090], "weightlossplans.net": [12200], "7gege.jd.com": [8436], "security.nl": [14586], "4ms.me": [2024], "me.com": [9747], "media.april.org": [1171], "gchp.khabkrai.ru": [20709], "paymt.ly": [2024], "picviews.co": [2024], "streemz.be": [2024], "www.mcssl.com": [10140], "s1.meituan.com": [10248], "www.lespaceclient.fr": [9084], "pocket.dict.cc": [4442], "jabber.no": [8485], "homebid.org.uk": [20397], "companic.nl": [19655], "corpimages.de": [3680], "uscham.com": [2024], "llb.re": [2024], "courses.hss.caltech.edu": [2770], "hoccer-project.com": [20390], "www.muv.uio.no": [17414], "m.zalando.es": [18877], "data.ero-advertising.com": [5335], "socialblade.com": [15136], "iseek.un.org": [17057], "ypassociation.org": [18761], "sport.unian.net": [22369], "solutions.secondstreet.com": [14525], "lists.baruwa.com": [19320], "admissions.osu.edu": [11797], "s5.uczzd.cn": [17003], "www.heartland-interiors.co.uk": [20361], "www.telepigeon.com": [16159], "muob.ru": [21051], "kids.taipei": [20714], "over.bookit.nl": [19426], "iss.leeds.ac.uk": [17403], "adoyacademy.se": [676], "sheffdio.org": [2024], "support.reporo.com": [13841], "www.cdon.se": [2576], "gnar.in": [2024], "canadajobs.g4s.com": [20195], "ja.pcisecuritystandards.org": [12253], "www.rbth.ru": [14098], "allafrica.com": [19145], "hybrid-analysis.com": [7645], "bizland.com": [2050], "customers.peoplefluent.com": [12580], "hifxonline.co.uk": [7390], "*.adjuggler.com": [582], "pogoda.unian.net": [22369], "storage.myfreecopyright.com": [10807], "www.plan-summaries.anthem.com": [19206], "houdask.tmall.com": [22222], "g0v.news": [20193], "static1.blocktrail.com": [2104], "debtdeeply.org": [2024], "collegeinfogeek.com": [19646], "hmlab.ch": [2024], "www.saechsdsb.de": [4364], "americawith.in": [2024], "wiki.sabayon.org": [14275], "ettus.com": [5385], "emdl.engineering.osu.edu": [11797], "bezosexpeditions.com": [1863], "arridge.co.uk": [2024], "govexec.com": [1342], "viasat.kyivstar.ua": [9067], "jkrums.it": [2024], "www.pnasfirstlook.org": [12303], "pdata1.aastocks.com": [19037], "lendlea.se": [2024], "api.creativecommons.org": [3774], "tracker-software.com": [16704], "ra.moodys.com": [21020], "joe.cr": [2024], "digitale-gesellschaft.ch": [19837], "cltv.at": [2024], "st3.gismeteo.ru": [6650], "southampton.firmstep.com": [20109], "amr-stage.oracle.com": [12116], "www.cryptolux.org": [3853], "tamiu.worldcat.org": [18536], "root.pastebin.ca": [12477], "professional.player.qbrick.com": [13345], "eip.udngroup.com": [17020], "pad.openmandriva.org": [11992], "jacksonsun.com": [8496], "www.bertrams.com": [1850], "gdshp.ch": [2024], "*.winner.com": [18447], "cleeng.it": [2024], "www.cedars.hku.hk": [20387], "politicasocial.unizar.es": [17441], "getinvolved.croydon.gov.uk": [19727], "hbl.lt": [2024], "www.aber.ac.uk": [473], "www.1688.com": [51], "psssd.com": [2024], "secure.marvel.com": [10047], "optms.in": [2024], "www.givskudzoo.dk": [6674], "sites.coloradocollege.edu": [3443], "vtecdirect.com": [17604], "img.buzzfeed.com": [2489], "forum.fortinet.com": [6033], "lajob.co": [2024], "jkjv.in": [2024], "www.wosign.cn": [18482], "wayland.freedesktop.org": [6102], "www.bitinstant.com": [1960], "ksat.tv": [2024], "data.phishtank.com": [12659], "content.yieldmanager.com": [13937], "myaccount.sky.com": [14989], "book.tf": [2024], "www.passwd.hu": [12466], "conflict.nsfwcorp.com": [11589], "khms3.google.com": [6825], "www.virtkick.io": [17829], "couponimages.redplum.com": [13723], "accesspressthemes.com": [504], "www.yourpensionservice.org.uk": [22693], "mediasite.it.ohio-state.edu": [11798], "get.teamviewer.com": [16069], "cor.li": [2024], "dvesrt.tech": [2024], "payments.amazon.com": [960], "places.studio": [2024], "*.lansquared.com": [9077], "eastern-asia.tpprf.ru": [22260], "ts.oebb.at": [21230], "russian.101domain.com": [15], "www.policyalternatives.ca": [21454], "ghrp.biomedcentral.com": [1931], "by.wss.com.ve": [2024], "usodep.blogs.govdelivery.com": [20294], "l.smartants.com": [2024], "tax.thomsonreuters.com": [16456], "gsl-co2.com": [6366], "trits.ch": [2024], "krasnoyarsk.psbank.ru": [13231], "hermite.uvt.nl": [16521], "go.parameta.co": [2024], "fasrc.us": [2024], "feriecamp.kk.dk": [8748], "forums.iis.net": [7745], "www.f4map.com": [20064], "apps.usaspending.gov": [17114], "cdn.betacie.com": [1845], "dtmrw.us": [2024], "mx6.mclaut.com": [20942], "businessclick.com": [19477], "ascpjournal.biomedcentral.com": [1931], "forum.starlink.ru": [21978], "go1z.com": [2024], "s1.wlresources.com": [22604], "origin-www.progress.com": [13178], "go.mm1.ca": [2024], "www.xplr.com": [18678], "checkinto.ph": [2024], "resources.bazaarvoice.com": [1736], "www.free-tv-video-online.me": [6096], "www.nic.ru": [11419], "solutions.oracle.com": [12116], "go.takashi.be": [2024], "ibuttxn.hkjc.com": [20384], "french.haiti.usembassy.gov": [22406], "xtremegunsandammo.com": [22659], "teaching.brunel.ac.uk": [19459], "www.archiveofourown.org": [1196], "git25.rostrud.ru": [21677], "sd.mallin.com": [2024], "www.tripadvisor.co.uk": [22291], "blog.gmocloud.com": [6323], "personforsikring.sparebank1.no": [21922], "developer.rackspace.com": [13566], "stats.creativecommons.org": [3774], "interviews.slashdot.org": [15012], "nonstop.tms.pl": [22224], "static.yubico.com": [18835], "vodafone.ie": [17902], "ports.yougetsignal.com": [22688], "bit.edb.co.il": [2024], "tlm.is": [2024], "dk.58.com": [212], "izug.zg.ch": [22061], "karensmindekulturhus.kk.dk": [8748], "lifelu.me": [2024], "vpn.calacademy.org": [2746], "disrpt.me": [2024], "service.piratenpartei.de": [12755], "txrt.co": [2024], "scripts.its.thm.de": [15876], "www.dogwheelchairscenter.com": [4624], "www.allcrypt.com": [876], "melis.today": [2024], "link.solvo.nl": [2024], "shop.stripe.com": [15594], "jtt.co": [2024], "bluegur.us": [2024], "s.t1202.info": [2024], "dteddie.com": [2024], "bestchange.org": [1835], "123contactform.com": [34], "www.ukrcash.com": [22352], "www1.vocativ.com": [17898], "pogoda.yandex.kz": [18743], "s31.postimg.io": [13024], "axt.me": [2024], "www.torrentdr.com": [22174], "technology.jpl.nasa.gov": [10909], "thestanfordchallenge.stanford.edu": [15447], "supermileage.engineering.osu.edu": [11797], "b1.bigmrc.com": [2024], "sama32.squat.net": [21955], "sxnarod.com": [14698], "www.oesrc.researchcompliance.vt.edu": [17825], "*.cupid.com": [3915], "matildajaneplatinum.com": [10085], "cfor.cc": [2024], "secure.madametussauds.com": [9853], "www.quran411.com": [13434], "fr.zenmate.be": [18917], "kunming.1688.com": [51], "foodzy.me": [2024], "goats.at": [2024], "mw2.google.com": [6825], "uhd.rtvs.sk": [13536], "sccassessor.org": [14400], "www.huaban.com": [20441], "ru.content.eventim.com": [5433], "www2.swale.gov.uk": [22057], "tloa.eu": [2024], "listes.april.org": [1171], "eu-sonar.sociomantic.com": [15146], "www.hugoboss.com": [7608], "wchbl.co": [2024], "www.privacyfoundation.ch": [21500], "www.barnsley.gov.uk": [19318], "snf.is": [2024], "en.discussions.tomtom.com": [16615], "motl.am": [2024], "tlrk.it": [2024], "client.redplum.com": [13723], "da-is.us": [2024], "trndy.co": [2024], "ccs.wustl.edu": [18089], "wiki.cse.buffalo.edu": [17382], "cabine.li": [2024], "bouq.it": [2024], "kyler.co": [2024], "www.ukjobs.g4s.com": [20195], "www.scaron.info": [14150], "wolverineaccess.umich.edu": [17354], "www.xpra.org": [18679], "mse.osu.edu": [11797], "csdivul.ga": [2024], "login1.capitalone.com": [2831], "repserv.us": [2024], "time.yandex.kz": [18743], "www.consumer.ftc.gov": [5710], "an.drwlng.me": [2024], "scndw.st": [2024], "s20.cnzz.com": [3328], "webm.red": [22548], "a.qidian.com": [13349], "desfm.com": [2024], "achvrsgrp.us": [2024], "dhavalkapil.com": [4427], "podcast.open.ac.uk": [11947], "todaysdigitalsolutions.websitealive.com": [18242], "wkbg.co": [2024], "support.viber.com": [17751], "pbev.in": [2024], "altii.de": [938], "atao.uk": [2024], "tr1.kaspersky.com": [8820], "ookb.ee": [2024], "www.ovdinfo.org": [21318], "pur.cm": [2024], "abine.com": [477], "i.amap.com": [19166], "www.edrive-hosting.cz": [5080], "media.kbc.be": [2024], "pnc.com": [12304], "bolsaviviendas.imp.ulpgc.es": [17213], "ceac.state.gov": [17146], "www.myrusakov.ru": [21068], "jphcs.biomedcentral.com": [1931], "xitracs.utm.edu": [17426], "oliw.tv": [2024], "mobilepay.dk": [10535], "orawww.uibk.ac.at": [22350], "sweitzman.com": [2024], "counterpartychain.io": [3706], "shm.ru": [21804], "rum-collector.pingdom.net": [12718], "partners.yandex.com": [18742], "ic.nwtime.org": [11306], "sw.vutbr.cz": [17609], "data.aggregateknowledge.com": [770], "www.uncsd2012.org": [17296], "business.comcast.com": [3462], "backstage.pragmaticstudio.com": [13060], "*.sitemason.com": [14948], "unfpa.org": [17062], "herit.ag": [2024], "map.search.ch": [14504], "mov24hr.com": [18758], "www.securities.com": [14580], "uts.nlm.nih.gov": [11090], "mbc1.rosevrobank.ru": [14024], "auribe.mx": [2024], "dexpr.es": [2024], "*.iv.lt": [8410], "vur.li": [2024], "nwsp.me": [2024], "soho.onlime.ru": [11902], "*.tms.hrdepartment.com": [7088], "osce.usmission.gov": [17142], "bho.pl": [2165], "press.krvl.co": [2024], "zopim.com": [19008], "www.securestudies.com": [14558], "uni.res.nimg.jp": [11450], "eprihlaska.vutbr.cz": [17609], "*.uni-weimar.de": [1722], "qwriters.co": [2024], "nnov.oldi.ru": [21240], "cch.law.stanford.edu": [15448], "nsna.me": [2024], "gnuheter.com": [12804], "rngr.ir": [2024], "idprotect.verisign.com": [17712], "telefonanschluss.de": [7041], "trvlrt.ch": [2024], "shr.tc": [2024], "www.secretmaryo.org": [14531], "static.awempire.com": [700], "fr.zenmate.ca": [18917], "shad.contest.yandex.com": [18742], "matthewsmarking.com": [10094], "www.hoccer-project.com": [20390], "training.nih.gov": [11090], "s7.postimg.org": [13024], "vidmail.net": [2024], "m.hitravel.xyz": [2024], "velox-project.eu": [17689], "nicovideo.cdn.nimg.jp": [11450], "blog.malwarebytes.com": [9940], "cmpro.link": [2024], "mh17.correctiv.org": [3686], "parking.sevenoaks.gov.uk": [14696], "git54.rostrud.ru": [21677], "04.mvd.ru": [21055], "get.reevoo.com": [13772], "kirov.psbank.ru": [13231], "www.alecomm.com": [835], "www.joliebulle.tuxfamily.org": [22319], "m.2.booklink.me": [2214], "pengyangguan.jd.com": [8434], "static.jiasule.com": [8581], "northerntool.ugc.bazaarvoice.com": [11541], "yaprobki.ru": [18751], "2.kobi5.com": [2024], "activetea.ch": [2024], "scaros.so": [2024], "jianghu.tmall.com": [16015], "tweetreach.com": [16943], "tinyurl.com": [16561], "c8.xkcd.com": [22652], "blog.gumtree.com": [20323], "thdmet.co": [2024], "dsja.me": [2024], "ekit.org.uk": [2024], "piper.sbb.ch": [15756], "patchwork.alpinelinux.org": [918], "forum.fruct.org": [5585], "www.olympic.org": [21241], "www.sg-logiciels.fr": [21795], "houten.nl": [11172], "opeka.khabkrai.ru": [20709], "2tel.us": [2024], "appsplus1.woolworths.com.au": [18511], "kartoteka.ru": [20689], "earnd.it": [2024], "olikka.it": [2024], "sb-innovation.de": [14136], "missionrelay.pyeongchang2018.com": [21545], "my.oschina.net": [11702], "serve.popads.net": [12949], "yakunin.fbk.info": [5691], "chupakabra.gq": [2024], "buff.ly": [2024], "www.solydxk.com": [21898], "*.trackalyzer.com": [16703], "nagios.stanford.edu": [15448], "kirov-region.auto.ru": [19276], "www.smokefree.gov": [21872], "static1.twilio.com": [16948], "sovereignman.com": [15266], "www.onebit.cz": [11678], "www.intand.com": [16004], "srnd.fr": [2024], "gran.tl": [2024], "kindle.amazon.co.jp": [19169], "*.thegcloud.com": [16355], "beil.dk": [2024], "l.kygeek.com": [2024], "battleforthenet.com": [1721], "shubbard.co": [2024], "drupalthemes.stanford.edu": [15448], "mayor.cambridge.gov.uk": [19494], "bystrobank.ru": [2500], "aer.gov.au": [1415], "dcm.me": [2024], "gpu.yt": [2024], "nl.alpinelinux.org": [918], "jonmul.com": [2024], "vr.org": [17953], "bougn.at": [2024], "www.bit-hdtv.com": [19383], "www.aa.uw.edu": [17156], "zohm.in": [2024], "barnaul.startsmile.ru": [21980], "service.mail.com": [9890], "on.khmerhdr.com": [2024], "airdownload.adobe.com": [668], "www.bedfordhospital.nhs.uk": [10953], "www.yunaq.com": [22702], "blog.nic.cz": [11418], "rackspace.com.hk": [13562], "ubuntugnome.org": [17188], "development.standards.ieee.org": [7719], "raweb.inria.fr": [8161], "sgear.link": [2024], "belovo.europaplus.ru": [20034], "onev.me": [2024], "unpakt.io": [2024], "anime-planet.com": [1068], "www.dalee.ru": [19754], "*.transparencytoolkit.org": [16755], "s-b.io": [2024], "vatt.fi": [17624], "rslvr.co": [2024], "url.pyload.net": [2024], "www.oschina.net": [11702], "tp-s.nflximg.net": [11269], "img7.bdstatic.com": [19339], "mediamarkt.es": [22631], "apitest.bldss.bl.uk": [2358], "b1u3r4y.tk": [2024], "zastro.ws": [2024], "p6.sinaimg.cn": [14910], "*.steganos.com": [15530], "aacf.stanford.edu": [15447], "www.huxo.co.uk": [7639], "rule.1688.com": [51], "www.batmanarkhamorigins.com": [1717], "sentientpri.me": [2024], "sacramento.cbslocal.com": [2543], "videoly.co": [17784], "eco.pochtabank.ru": [12876], "worldmate.com": [18539], "babergh.firmstep.com": [20109], "inseen.co": [2024], "blog.101domain.ru": [16], "www2.sharefile.com": [14724], "bgbrow.co": [2024], "lematin.newsnetz.ch": [11371], "www.acpa.ca": [788], "verde.444.hu": [183], "s11.sinaimg.cn": [14910], "warringtondirect.warrington.gov.uk": [18079], "www.secure-mobiles.com": [14546], "w3ww.ipleak.net": [20571], "sdm.mit.edu": [9763], "lovebizhi.com": [20878], "store.jaoa.org": [20624], "go.citrix.com": [3180], "asb2.it": [2024], "www.broadbandconvergent.com": [2366], "bugs.busybox.net": [19479], "appcu.es": [2024], "www.omegaup.com": [11831], "forum.t411.ch": [15847], "dstny.cc": [2024], "google.org": [6820], "unbounce.com": [17239], "myaccount.northumberland.gov.uk": [21160], "x.defy.ca": [2024], "s.warp.is": [2024], "bisaquran.com": [1945], "webos.is": [2024], "unz.fr": [2024], "billyver.de": [2024], "btwm.us": [2024], "gmx.tm": [6330], "www.feedmyinbox.com": [5725], "crsh.me": [2024], "sucimg.itc.cn": [8401], "link.wahlix.nu": [2024], "l.j-inb.net": [2024], "novoaltaysk.startsmile.ru": [21980], "www.coinfloor.co.uk": [3404], "umano.me": [17226], "slfacilities.osu.edu": [11797], "kucha.es": [2024], "aircu.li": [2024], "shannonhealth.com": [14720], "war.novayagazeta.ru": [21169], "pq.agency": [2024], "gmx.tw": [6330], "wiki.skynet.ie": [16283], "www.skyscanner.fr": [15006], "weogeo.us": [2024], "couchdb-mapreduce-simulator.alhur.es": [19137], "tourate.ch": [2024], "online.citibank.com": [3174], "ari4.me": [2024], "bit.kissa.jp": [2024], "static.104.com.tw": [18], "finance.atlas.cz": [1346], "lnk.biro.net": [2024], "oisweb.net": [2024], "raptureready.com": [13623], "cenowarka.pl": [2947], "decadal.gsfc.nasa.gov": [10909], "vcp.jd.com": [8436], "www.bestpractical.com": [1838], "reutov.ru": [21641], "coeus.buffalo.edu": [17382], "assets.nrapvf.org": [21185], "swin.edu.au": [15754], "see.by": [2024], "connect.sheknows.com": [14752], "simpel.nl": [21829], "www.proxybay.bid": [22259], "ypsine.ws": [2024], "verisign.com.sg": [17712], "24img.com": [107], "go.hrs.de": [2024], "l.fsinsight.org": [2024], "aldi.es": [357], "mobile.portal.equinix.com": [5322], "s.ig2ad.com": [2024], "freetown.usembassy.gov": [22406], "myaccount.ajc.com": [351], "go.shards.top": [2024], "myit.rocks": [2024], "koo.do": [2024], "gutja.de": [2024], "pfsense.org": [12637], "*.point.im": [12895], "www.lutte-ouvriere.org": [20894], "business.tomtom.com": [16615], "learn.lc": [2024], "bip.panoptykon.org": [12395], "lnk.ossisnt.com": [2024], "www.lynda.com": [9692], "tmc.li": [2024], "trustedcs.com": [16861], "pingability.com": [12717], "campus.vrr.de": [17954], "www.audioboom.com": [19272], "itsm.ust.hk": [22412], "fnnl.co": [2024], "spirit.kn.vutbr.cz": [17609], "openitp.org": [11984], "c.mateoc.com": [2024], "imgops.com": [20507], "arpel.photo": [2024], "m.nextag.com": [11402], "spiceuk.me": [2024], "thumbs.dfs.ivi.ru": [20609], "*.castel-bayart.com": [2899], "cps-static.rovicorp.com": [14041], "jfhjr.com": [2024], "tags.literotica.com": [9479], "go.f3n.me": [2024], "fuping.jd.com": [8434], "kbtinyurl.com": [2024], "stroud.greenparty.org.uk": [6908], "blog.ukrnames.com": [17209], "desec.io": [19789], "coos.to": [2024], "crowd.stanford.edu": [15448], "www.presid.infn.it": [7771], "olenegorsk.gov-murman.ru": [20293], "www.news.dk": [11364], "www.bloomsky.com": [19411], "www.dns.lc.wix.com": [18473], "atst.co": [2024], "jnr.bz": [2024], "expatexplorer.hsbc.com": [7090], "twimler.com": [16950], "www.12wbt.com": [10373], "fairtrd.us": [2024], "spaceup.org": [15276], "novainfosec.com": [11479], "*.interactivedata.com": [8239], "www.geizhals.eu": [6496], "www.elbadil.com": [5133], "kinox.pe": [20720], "deng.camp": [2024], "conetrix.com": [3334], "www.themoviedb.org": [16372], "mos.ai": [2024], "victors.us": [2024], "www.sloanconsortium.org": [15033], "ad.zanox.com": [18885], "support-cn.samsung.com": [14326], "www.cosmo.org": [3690], "piwik240.mybluemix.net": [10844], "jwr.link": [2024], "catalogue.yandex.by": [18739], "www.rabobank.nl": [13550], "58.rkn.gov.ru": [13971], "nmcteam.com": [2024], "tasc-play-room.stanford.edu": [15448], "www.calibre-ebook.com": [2757], "i00.c.aliimg.com": [861], "fatfrog.us": [2024], "www.docker.io": [4606], "ads.contentabc.com": [3614], "apsd.illuminateed.com": [20494], "zh.fop.us.to": [2024], "www.dhammaloka.org.au": [1572], "lyft.me": [9690], "extranet.hse.gov.uk": [20436], "freedomnotfear.org": [6149], "sktch.dk": [2024], "*.omeda.com": [11830], "www.forum.telekom.de": [4397], "dentistry.usc.edu": [17366], "stan4d.us": [2024], "s.kaiyuan.eu": [2024], "tvsupport.net": [16935], "images10.newegg.com": [11356], "platby.mbank.cz": [9733], "www.verizon.com": [17715], "crel.biz": [2024], "support.datamotion.com": [19767], "c.microsoft.com": [10396], "jira.gravity4.com": [6885], "tvmax9.tv": [2024], "ewebscapes.com": [4983], "immo.search.ch": [14504], "a1.muscache.com": [793], "apg.groceries.asda.com": [407], "jmsc.hku.hk": [20387], "ofsted.gov.uk": [21231], "clover.com": [3316], "cdsmty.eu": [2024], "aftenposten.no": [754, 755], "api.wienerstadtwerke.at": [18376], "*.pubnub.com": [13244], "search.ico.org.uk": [7693], "mos.org": [10522], "actionsalvage.com": [544], "*.plista.com": [12858], "gold.monex.co.jp": [10583], "images.laterooms.com": [20784], "t-h-f.co": [2024], "uic.edu": [17321], "interfax.az": [20551], "links.email.scientificamerican.com": [14446], "noseworthy.co": [2024], "cmbr.me": [2024], "www.ukraine25.kyivstar.ua": [9067], "noaddedsugar.com": [11484], "pd.youku.com": [18804], "rcom.dynamicyield.com": [4822], "www.democrator.ru": [19806], "www.uhub.org": [17204], "pgibeta.iciciprulife.com": [7917], "1gwc-kbhkort.kk.dk": [8748], "sport.rambler.ru": [13600], "torrent.tm": [16648], "gmo.com": [6321], "rush.gallery": [2024], "21.pe": [2024], "webmail.koumbit.net": [9009], "assessment.vt.edu": [17825], "www.thedungeons.com": [16263], "ns1.x5.ru": [18590], "e-man.me": [2024], "www.conversionsbox.com": [3629], "antek.me": [2024], "24byt.es": [2024], "sexslurp.com": [14699], "turbo.htwk-leipzig.de": [7596], "on.jerberas.it": [2024], "www.silencerforum.com": [21826], "m.booklink.me": [2214], "learn.pluralsight.com": [21441], "code.ulteo.com": [17214], "www.intrepidmuseum.org": [8295], "connecttosupport.org": [19670], "static.newsru.com": [11388], "demo.whappodo.com": [18323], "post852.com": [12997], "media.mmo-champion.com": [3927], "oto.yandex.com.tr": [18740], "www.fibonacci.uvt.nl": [16521], "gdp.alicdn.com": [853], "w0ng.me": [2024], "www.espionageapp.com": [5351], "www.idg.se": [7709], "vai.cau.arq.br": [2024], "koala.cr": [2024], "sync.go.sonobi.com": [15209], "doggyloot.us": [2024], "apps.rackspace.com": [13566], "wikispooks.com": [18390], "fltr.tv": [2024], "wnioski.t-mobilebankowe.pl": [22076], "grny.io": [2024], "healthe.info": [2024], "yout.gq": [2024], "mozilla-deutsch.kairo.at": [8782], "ubt9.fanli.com": [5645], "brianto.ga": [2024], "www.fxsystems.com": [5601], "hubcm.us": [2024], "www.postovoy.org": [21471], "pnut.me": [2024], "piwik.lightningmaps.org": [9361], "clicken.us": [19612], "delivery.f.switchadhub.com": [15764], "saawt.co": [2024], "wegs.co": [2024], "kidneydistransplant.biomedcentral.com": [1931], "www.gnumeric.org": [6747], "vizz.link": [2024], "r.lacroketa.net": [2024], "rss.rtbf.be": [14063], "www.sportisimo.pl": [14223], "graphics.stanford.edu": [15448], "pinlnk.co": [2024], "gi.de": [6544], "edit.foodandwaterwatch.org": [5978], "corps.sos.wa.gov": [14215], "www.mims.com.vn": [9756], "abnamro.nl": [290], "news-at.zhihu.com": [18956], "news.dk": [11364], "clck.ge": [2024], "www.dabuttonfactory.com": [4093], "seal.godaddy.com": [6755], "skycreek.io": [2024], "commercialwaste.westminster.gov.uk": [18315], "cabinet.eutelsatnetworks.ru": [20038], "a.yimg.jp": [18778], "s96.cnzz.com": [3328], "go.vetr.com": [2024], "whereis.mit.edu": [9763], "freightforward.courierpost.co.nz": [3714], "www.postovabanka.sk": [13028], "emlib.ent.sirsidynix.net.uk": [14927], "uberent.com": [17165], "revolet.com": [13904], "triumph-adler.de": [16828], "www.roadworks.org": [21660], "bookstore.wku.edu": [22602], "bitsig.ht": [2024], "*.porlaputa.com": [12970], "hkst.ca": [2024], "31439.eu": [2024], "justtomatoes.com": [8711], "www.imancentral.org": [7759], "bstblu.es": [2024], "fomnetworks.com": [5574], "jacquelinegold.com": [8500], "wellbid.com": [18285], "dwec.is": [2024], "s.pamfax.biz": [12381], "*.trakt.us": [22269], "3g.1688.com": [51], "secure.live.sipgate.co.uk": [14922], "love.travis-ci.org": [16775], "apis.sharethrough.com": [14742], "go.topista.com": [2024], "*.firedrive.com": [5841], "www.lowpowerlab.com": [9644], "www.west-norfolk.gov.uk": [22563], "morawa-buch.at": [21021], "m-jon.es": [2024], "saransk.beeline.ru": [1778], "sct2.com": [2024], "new.interkassa.com": [8250], "www.artsandsciences.osu.edu": [11797], "lulo.info": [2024], "jawal.islamtoday.net": [8372], "r.edvan.info": [2024], "*.www.salford.ac.uk": [17420], "www.terminatio.org": [16194], "dotnetkicks.com": [19887], "myco.us": [2024], "www.bib.kuleuven.be": [8832], "tambor.me": [2024], "ieg4app.wakefield.gov.uk": [22518], "allbids.auction": [2024], "u.chipshout.com": [2024], "a.fiksu.com": [5773], "iald.me": [2024], "ru.coin.space": [19642], "www.globes.co.il": [6724], "envs.co": [2024], "enthought.com": [5286], "cf9.100r.org": [12], "netbynet.enaza.ru": [5222], "anjane.sh": [2024], "www.jamieoliver.com": [8515], "nisti.co": [2024], "diewildenkerle.spiel.tivi.de": [22709], "downloads.sf.net": [14167], "l.color-on.info": [2024], "www.soic.indiana.edu": [8070], "www.usesthis.com": [17527], "tula.tpprf.ru": [22260], "*.provenue.net": [13161], "*.rezdy.com": [21645], "www.southernct.edu": [15263], "bndmr.ch": [2024], "i0.hdslb.com": [20358], "tpoint.mx": [2024], "mhd.bz": [2024], "asdapriceguarantee.co.uk": [19250], "contrastsecurity.com": [19678], "openapi.360.cn": [142], "www.discuss.io": [4547], "hs1.in": [2024], "www.haskellonheroku.com": [7221], "vh1.ro.vutbr.cz": [17609], "angulo.me": [2024], "netloan.cambridgeshire.gov.uk": [19496], "betcoin.tm": [1843], "www.securepaths.com": [14569], "ad.reachlocal.com": [13662], "*.ee.co.uk": [5447], "1984.is": [57], "firefoxos.mozfr.org": [21030], "tstock.mn": [2024], "cqsa.be": [2024], "monitor2.returnpath.net": [13891], "netclean.com": [11225], "*.247realmedia.com": [102], "www.laquadrature.net": [9126], "wdrp.us": [2024], "www.okligatv.com": [21238], "kimonolabs.com": [8906], "o.deboni.net": [2024], "*.linuxnewmedia.de": [9410], "nynystake.org": [2024], "www.gfihispana.com": [6301], "hootie.co": [2024], "you.fi.it": [2024], "ch-it.norton.com": [11545], "worldofeas.canon.com.au": [19505], "go.gcprive.com": [2024], "str8ripp.in": [2024], "wol.im": [2024], "m.flickr.com": [5898], "*.moreover.com": [10631], "www.hostvoice.com": [7527], "hoto.play-asia.com": [12828], "nacba.info": [2024], "computerworld.ch": [3544], "my.itunes.apple.com": [1151], "www.anpost.ie": [1028], "yelp.at": [18766], "bjc.oxfordjournals.org": [12222], "leblibrary.com": [9232], "www.kaust-cu.cornell.edu": [3676], "www.golfrev.com": [6806], "pear.phpdoc.org": [12684], "s1.al": [2024], "cms.megaphone.fm": [20958], "rico.im": [2024], "phpmagazin.de": [12282], "pinal.me": [2024], "www.hdp.org.tr": [7250], "starwars.madametussauds.com": [9853], "sichuanguan.jd.com": [8434], "kpln.org": [2024], "ntl.ms": [2024], "p.btcchina.com": [1581], "www.verbraucherschutz.sachsen.de": [14279], "ad.cnblogs.com": [19631], "crbc.atlatszo.hu": [1349], "www.projects.dm.id.lv": [4033], "royal.gov.uk": [14050], "www.systemausfall.org": [15827], "d981.ml": [2024], "www.stormfront.org": [15566], "mindsca.pe": [2024], "silicon.fr": [11238], "travelcardonline.n-somerset.gov.uk": [10898], "de.aldi.be": [357], "bzr.sv.gnu.org": [6337], "cacou.cc": [2024], "api.mediatemple.net": [10177], "shoplift.byte.nl": [2501], "l.dieron.com": [2024], "13ik2s1xuyg4mjy7k733eeww66vkuum1t9fb4j2m.ipleak.net": [20571], "monotelephone.primus.ca": [13112], "on.shopspring.com": [21810], "www.croydonhealthservices.nhs.uk": [10953], "ngeru.info": [2024], "slt.la": [2024], "2.play-asia.com": [12828], "hut8.co": [2024], "*.concur.com": [3553], "aa.andreew.info": [2024], "ads.where.com": [18334], "recon.cx": [13476], "potager.org": [13031], "wiki.warthunder.com": [22527], "dropoff.brunel.ac.uk": [19459], "www.ipsidixit.net": [8345], "t.channeladvisor.com": [3006], "sweflix.to": [15749], "balkongshoppen.se": [1652], "time.doesnotwork.eu": [4622], "wmw.play-asia.com": [12828], "uzhavinventartest.tocco.ch": [16600], "backpack.tf": [1624], "atdv.us": [2024], "gig.sc": [2024], "go.iqonomy.de": [2024], "hur.yt": [2024], "rboot.co": [2024], "thenewbay.org": [22174], "kommersant.kartoteka.ru": [20689], "gscapp.co": [2024], "cats.york.edu": [18787], "g24.me": [2024], "www.pydio.com": [13312], "git41.rostrud.ru": [21677], "unsctr.me": [2024], "control.earthlink.net": [4997], "assets.rbl.ms": [13652], "timeclockdeals.com": [16534], "go.marquez.co": [2024], "seldo.me": [2024], "ndlap4cpanelhost01v.ndlap4.ndla.no": [11158], "torrenthound.com": [22245], "slfed.uits.iu.edu": [8069], "activeliv.es": [2024], "docsafe.swisscom.com": [15761], "x.agoncraft.net": [2024], "go.carporn.ph": [2024], "coretime.fm": [19691], "cherepov.biglion.ru": [19375], "ajc.com": [351], "alit.me": [2024], "www.aravot.am": [19225], "24kilat.es": [2024], "pwg2.gtimg.cn": [6974], "onbe.co": [2024], "www.mobify.com": [10532], "bepress.com": [1814], "access.tomgate.net": [22231], "www.btnapps.net": [2371], "swe.engineering.osu.edu": [11797], "go.it.ai": [2024], "s.smhn.info": [2024], "etools-staging.unicef.org": [17069], "s.fendmark.com": [2024], "www.bannerssb.bucknell.edu": [2406], "cdn.auth0.com": [1432], "fmp.unicef.org": [17069], "www.imperian.com": [20512], "filmne.ws": [2024], "*.simyo.de": [14901], "t3.58cdn.com.cn": [213], "www.studyinsweden.se": [22017], "bnst.lk": [2024], "tickets.calpoly.edu": [2764], "seg.li": [2024], "www.pythian.com": [21550], "g04.t.alicdn.com": [853], "dff.io": [2024], "login.meo.pt": [10286], "www.marshall.usc.edu": [17366], "on.playmo.tv": [2024], "uvpn.de": [22338], "nhnnext.org": [10950], "mp3.macobserver.com": [9848], "url.f8vn.net": [2024], "fsune.ws": [2024], "www.cnr.vt.edu": [17825], "abkhasia.kavkaz-uzel.ru": [20694], "brez.link": [2024], "fafsa.ed.gov": [4881], "shop.us.samsung.com": [14326], "review.typo3.org": [15959], "letmed.co": [2024], "ddy.mn": [2024], "ctly.st": [2024], "cdn.mailerlite.com": [9897], "www.aboutus.org": [482], "bill.sknt.ru": [21851], "bi.tune.com": [22309], "v1520.co": [2024], "tracker.debian.org": [4263], "momdoes.co": [2024], "am.thecthulhu.com": [16403], "edero.co": [2024], "slotsfrisoren.dk": [15035], "crb.research.illinois.edu": [17346], "weblibrary.cdn.citrixonline.com": [3181], "brighttag.com": [2341], "orbtlnfo.com": [2024], "www.qurank.net": [13437], "www.meego.com": [10220], "h.go2yd.com": [20274], "odmp.org": [11788], "ignyt.co": [2024], "www.dps.illinois.edu": [17346], "i4url.com": [2024], "uod.ac.uk": [2024], "on.websauga.com": [2024], "noblogs.ai-cdn.net": [19116], "www.acessa.com": [527], "www.day.org.ru": [19773], "basildon-consult.objective.co.uk": [21225], "ums.government-nnov.ru": [20295], "sl.yearg.in": [2024], "ang.us": [2024], "s.calameoassets.com": [2749], "s.qmatteoq.com": [2024], "www.develop100.com": [19821], "m20.co": [2024], "games.sina.com.cn": [14904], "reversewhois.domaintools.com": [4653], "link.usao.edu": [2024], "venat.us": [2024], "img4.2345.com": [98], "marchex.com": [9993], "download.openmpt.org": [11987], "www.projecthoneypot.org": [13181], "askgref.cdnvideo.ru": [19536], "jeclap.oxfordjournals.org": [12222], "x.ptt-ro.com": [2024], "hetman.epuap.gov.pl": [19928], "www.torrentz2.me": [22251], "gunax.in": [2024], "l.jobwrk.com": [2024], "petergof.beeline.ru": [1778], "diveusa.net": [2024], "uat.groupon.com.br": [6952], "www.mansfield.gov.uk": [20922], "url.webikeo.fr": [2024], "bravemedia.org": [2310], "hrld.li": [2024], "www.giftofspeed.com": [20245], "store.bobafamily.com": [2188], "*.tuhh.de": [15942], "mail.lsbu.ac.uk": [9111], "incommonfederation.org": [8035], "gate.minbank.ru": [10442], "mcjcinfo01.hkjc.com": [20384], "oktatas.atlatszo.hu": [1349], "swww2.glam.com": [6679], "mindtouch.us": [10446], "*.reformal.ru": [13780], "srsplus.com": [14235], "blog.alternativeto.net": [934], "images-cf.mheducation.com": [20975], "club.europe1.fr": [20035], "larryste.in": [2024], "pushon.so": [2024], "ocl-cal.gc.ca": [11778], "slrgtest.tocco.ch": [16600], "www.slides.kairo.at": [8782], "c.cpni.nl": [2024], "netzf.eu": [2024], "slovensko.sk": [15037], "xprts.us": [2024], "gohy.co": [2024], "whi.ms": [2024], "dist.nuget.org": [11601], "www.drollette.com": [10092], "paulh.us": [2024], "gdata.youtube.com": [6823], "m.pivotal.la": [2024], "tripit.com": [16819], "internetfonden.se": [8286], "s-watch.jp": [2024], "nav.bloomberg.com": [2133], "amiando.com": [998], "www.dnaserum.com": [4048], "cal.network": [2024], "support.dlvrit.com": [19855], "*.andyet.com": [1055], "ekomi-us.com": [4913], "youtube.com.qa": [18800], "w0o.xyz": [2024], "zeus.bel.fi": [1536], "extranet-gemeinsam.wienerstadtwerke.at": [18376], "supportfiles.rockstargames.com": [13997], "www.valueapplications.com": [17626], "emailnew.azet.sk": [1507], "www.obi.de": [21222], "www.bemobile.ua": [1752], "primelocation.com": [21497], "vigna.li": [2024], "www.upgradedself.com": [17472], "energia.edp.pt": [4888], "m.svyaznoy.ru": [22053], "geog.illinois.edu": [17346], "s.abix.jp": [2024], "store.cadlink.com": [19491], "opsw.co": [2024], "2014.confidence.org.pl": [3572], "listening.aldi.ie": [357], "spvideos.5min.com": [217], "wral.com": [18020], "files.wowace.com": [3927], "jcrm.io": [2024], "labs.kollegorna.se": [8975], "zipler.ru": [18974], "www.freeassangenow.org": [6113], "fin-fusioncrm.oracle.com": [12116], "www.imhd.sk": [8004], "sitegenie-external.quinstreet.com": [13419], "images.chainlove.com": [2987], "support.discogs.com": [4529], "m.kavkaz-uzel.eu": [20693], "pantz.org": [12404], "view.de.adjug.com": [580], "b.n1ck.li": [2024], "discourse.chef.io": [3061], "s.on.aol.com": [380], "equityzen.com": [5325], "wyss.harvard.edu": [7211], "r.twimg.com": [16949], "*.webmd.com": [18167], "tula.beeline.ru": [1778], "v.evereve.com": [2024], "forum.pirate-party.ru": [12736], "dtc.gplhost.co.uk": [6349], "sozialnachhaltig.migros.ch": [10417], "authors.aps.org": [976], "disk.wedos.com": [17993], "www.leadershipacademy.nhs.uk": [10953], "www.fraunhofer.de": [6091], "kn3.taringa.net": [16027], "hurd.gnu.org": [6337], "noyz.in": [2024], "*.megafon.ru": [10237], "acaf.food.gov.uk": [20132], "*.de17a.com": [4231], "www.mixcloud.com": [10503], "xpnd.us": [2024], "www.americanfuturefund.com": [987], "secure.jhu.edu": [16370], "zhi.taobao.com": [16015], "magpi.es": [2024], "cdncss.dmjx.dk": [4588], "concerts.livenation.com": [9493], "orland.illuminateed.com": [20494], "m.autoscout24.de": [1458], "cdmi.osu.edu": [11797], "bc.whirlpool.net.au": [18339], "edrs.lsc.gov.uk": [20881], "parrot.com": [12442], "clube.ecommercebrasil.com.br": [4877], "git.sigxcpu.org": [14846], "nsis.ro": [21190], "isen.com": [8362], "homedepot.com": [7480], "cardtocall.courierpost.co.nz": [3714], "jobs.irs.gov": [7821], "ep2012.europython.eu": [5399], "www.wustlconnections.com": [18090], "ble.ac": [2024], "cdna.tid.al": [16504], "afric.in": [2024], "*.azcentral.com": [1506], "occupycorporatism.com": [11745], "ilearn.unicef.org": [17069], "s2.srf.ch": [21957], "suresupport.com": [15710], "pbttbcpn.bt.motive.com": [21025], "lev2.de": [2024], "www.7digital.com": [232], "r24625316.sync.app.asana.com": [1265], "technikwall.saturn.de": [21736], "drawception.com": [4739], "www.americanexpress.com": [979], "wiki.aniart.com.ua": [19199], "static.stoloto.ru": [21996], "m24.cc": [2024], "cdn.c9.io": [3279], "vdc-sy.org": [2952], "skysql.com": [14991], "musik.ee": [2024], "kolomna.tpprf.ru": [22260], "freerad.io": [2024], "s99.to": [2024], "sm.azhar.eg": [2024], "larry52.com": [2024], "codinghorror.com": [3384], "randsinrepose.com": [13607], "bato.to": [19327], "wordstat.yandex.kz": [18743], "web.syllable.org": [22064], "cr8.lv": [2024], "aax.amazon-adsystem.com": [958], "pano.bz": [2024], "gamesin.asia": [2024], "stage.shoryuken.com": [14798], "*.popsugar-assets.com": [12957], "www.sheetsu.com": [21800], "www.marionlibrary.osu.edu": [11797], "*.clarionledger.com": [3214], "*.mirantis.com": [10479], "rhb.ch": [13914], "nets.ec": [11244], "ipsos-na.com": [8347], "u-a-f.de": [2024], "growth.so": [2024], "www.rspcashop.co.uk": [13522], "akademikerforsakring.se": [803], "partnertagung-2014.lpice.eu": [9109], "sell.taobao.com": [16015], "customer.ttk.ru": [16881], "oma.zoner.fi": [18995], "srihash.org": [14233], "push.rests.afisha.ru": [19107], "peer5.youcanbook.me": [18794], "www.epilepsyresearch.org.uk": [20008], "www.cpmstar.com": [2661], "sparta.global": [2024], "*.ontsi.red.es": [13720], "gfello.com": [2024], "nowonl.in": [2024], "w.itpro.es": [2024], "www.owner.io": [12218], "lotuscars.com": [9624], "rosvuz.dissernet.org": [19848], "rossosh.europaplus.ru": [20034], "pf.tedcdn.com": [15871], "fs9.formsite.com": [20139], "www.motesplatsen.se": [10646], "ermes3.montpellier3m.fr": [10609], "mercycorps.org": [20966], "alleywat.ch": [2024], "www.wikihow.com": [18383], "xwallet-stage.tokenly.com": [22229], "tribler.org": [16804], "w3ww.play-asia.com": [12828], "synoptic.fnal.gov": [5741], "felix.co": [2024], "*.merproject.org": [10293], "ftc.gov": [5710], "clinicaltrials.georgetown.edu": [6531], "blade.microad.jp": [10377], "infosactu.com": [20533], "nvs.tocco.ch": [16600], "lmstesting.newegg.com": [11356], "hylex.xyz": [2024], "ecn.dev.virtualearth.net": [17840], "i.giphy.com": [6646], "forums.nutyx.org": [21207], "kolomna.europaplus.ru": [20034], "www.seafileserver.de": [14497], "hrusecky.net": [10372], "cdn.optimizely.com": [12107], "westminster.gov.uk": [18315], "my.southampton.gov.uk": [15259], "ct1.addthis.com": [626], "cacetech.com": [2721], "*.searchmobius.org": [9785], "jtcoch.com": [2024], "wiki.0xdb.org": [10], "opn4.biz": [2024], "cdn.ca9.uscourts.gov": [17135], "www.shaanig.org": [21796], "www.codeclubpro.org": [3353], "redbull.*": [13726], "ecmom.co": [2024], "bugs-staging.swift.org": [15752], "market.aliyun.com": [868], "skylink.sk": [15002], "eolewater.com": [5304], "www.igvita.com": [7975], "www.ricoh.com": [13935], "www.baymirror.win": [21524], "svkhlm.se": [2024], "jonas.click": [2024], "r6n.me": [2024], "skins.agariomods.com": [764], "www.curiouscat.me": [3924], "o.sid.pw": [2024], "gozmk.com": [2024], "unchronicle.un.org": [17057], "mtdl.nl": [2024], "www.maist.jp": [20910], "uks.enaza.ru": [5222], "www.palsolidarity.org": [12367], "forum.techidiots.net": [16093], "www.myslo.ru": [21070], "static.dxetech.org": [4511], "nrh.link": [2024], "www.happybearsoftware.com": [20341], "data-live.flightradar24.com": [20119], "acttea.ut.ee": [17148], "updates.jenkins-ci.org": [8565], "uocpres.uillinois.edu": [17034], "videos.t-mobile.com": [15835], "njs.de.vc": [2024], "hdcvr.me": [2024], "partner.bluekai.com": [2145], "bugle.rocks": [2024], "www.wix.com": [18473], "go.blolol.com": [2024], "assured.se": [19262], "changzhou.jd.com": [8434], "api.search.cam.ac.uk": [17332], "www.discoversignage.com": [4542], "www.passagebank.com": [12461], "m.cnblogs.com": [19631], "s.vondarl.de": [2024], "beta.southglos.gov.uk": [15257], "jdpay.com": [8441], "*.beyondbinary.io": [19361], "awwstn.com": [2024], "novoed.com": [11570], "www.tribot.org": [15924], "amcla.tv": [2024], "vua.cc": [2024], "abosgratis.de": [479], "brlttb.tk": [2024], "myhealthonline.sccgov.org": [14401], "ink.waste.org": [18092], "truff.sh": [2024], "lastminute.com": [9177], "danielmiessler.com": [4136], "vpn.aclutx.org": [309], "on.yeupet.vn": [2024], "cc.sportmaster.ru": [21944], "arbejdsgiver.jobzonen.dk": [8618], "pfun.co": [2024], "dfsw.co": [2024], "ricar.me": [2024], "cecp.me": [2024], "corinne.co": [2024], "*.putlocker.com": [13301], "antivigilancia.org": [1105], "tuakiri.ac.nz": [16883], "cpa-register.kyivstar.ua": [9067], "chriscardone.us": [2024], "toi.ivwbox.de": [15839], "cardiothoracicsurgery.biomedcentral.com": [1931], "tnsmob.a-3.ru": [258], "apps.support.t-mobile.com": [15837], "apicasystem.com": [1123], "go.brain.st": [2024], "libraryreserve.cdn.overdrive.com": [12192], "*.mmoga.de": [9780], "teamviewer.com": [16069], "plausible.coop": [12827], "cardiology.weillcornell.org": [22557], "api.video.rakuten.co.jp": [13594], "lnk.sweetweb.fr": [2024], "es.senti.al": [2024], "scsk.jp": [14149], "readyhosting.com": [13678], "efghij.pfmes.ca": [2024], "online.vtb24.ru": [22512], "www.tele2.lt": [16134], "c2.ahosting.cz": [782], "ko.foursquare.com": [6061], "www.w3schools.com": [17982], "csul.iii.com": [20491], "mnsf.co": [2024], "dpprsm.com": [2024], "assets.blubrry.com": [19412], "agmk.net": [772], "www.joycasino6.com": [20654], "demo.inka.f4.htw-berlin.de": [7103], "www.statistik.sachsen.de": [14279], "v.tumblr.com": [16898], "www.passwort-generator.com": [12471], "grp11.ias.rakuten.co.jp": [13594], "together.jolla.com": [8636], "developer.longtailvideo.com": [9601], "change4life.wales.gov.uk": [18051], "thompson.com": [16451], "img.blesk.cz": [2088], "communitiesx.state.gov": [17146], "igowild.com": [7958], "www.sitc.cuhk.edu.hk": [2704], "*.viepratique.fr": [17793], "graduation.berkeley.edu": [17329], "www.shareconnect.com": [14723], "forms.hubspot.com": [7599], "www.consultmahan.com": [9882], "houndci.com": [7568], "www-act.ucsd.edu": [17012], "1105-sub.halldata.com": [7164], "frag.ly": [2024], "nm4.in": [2024], "ofid.oxfordjournals.org": [12222], "*.16personalities.com": [54], "b.ohtake.net": [2024], "oplataprosto.dengisend.ru": [4344], "www.wijgaannaareg.nl": [22589], "connect.internet.org": [8276], "woodlandtrust.org.uk": [22609], "go.dryan.com": [2024], "www.simblee.com": [14872], "rbo.one": [2024], "19r.co": [2024], "projects.kde.org": [8735], "go.ove.com": [2024], "forge.univention.de": [17315], "phoukka.org": [2024], "urkb.ch": [20683], "myob.com": [9830], "insidegme.wusm.wustl.edu": [18089], "old.lwn.net": [9125], "*.linuxpl.com": [9448], "www.issh.ac.jp": [8268], "www.echo24.cz": [19948], "nagano.cz": [11050], "okalex.net": [2024], "irma.nps.gov": [11122], "catedraspfremap.unizar.es": [17441], "boardgamearena.com": [2182], "caddyserver.com": [2726], "b3.yahoo.co.jp": [18730], "craigmurray.org.uk": [19713], "portal.zwame.pt": [19025], "sellnrg.co": [2024], "propub.li": [2024], "bzg.me": [2024], "justice.gov.sk": [15037], "ymkn.co": [2024], "js.ptengine.jp": [13237], "obtle.co": [2024], "lynk.at": [2024], "hair.adsfrom.us": [2024], "on.gb-world.net": [2024], "nsbeer.co": [2024], "www.decryptcryptolocker.com": [4276], "roostr.video": [2024], "www.oculusvr.com": [11760], "*.ebscohost.com": [4864], "google.tv2.dk": [15945], "xignite.com": [18664], "s2.mzstatic.com": [10893], "uk.ulule.com": [17224], "*.ighome.com": [7950], "cds.sevenoaks.gov.uk": [14696], "www.statewatch.org": [15489], "cdn.timetrade.com": [16530], "swisscom.com": [15761], "surviv.es": [2024], "www.stonewallcymru.org.uk": [21998], "www.barmer-gek.de": [1699], "yike.it": [2024], "www.cpubenchmark.net": [2664], "caei.ro": [2024], "www.tuxic.nl": [16930], "tr.im": [16697], "pay.ttk.ru": [16881], "keiba.rakuten.co.jp": [13593], "npost.sg": [2024], "www.jedec.org": [20634], "www.sgno.org": [14172], "hxh.cl": [2024], "lcurl.xyz": [2024], "doc.satoshilabs.com": [21735], "tknst.uk": [2024], "images.skyscnr.com": [15006], "www.aeapri.asso.ulaval.ca": [17319], "topiama.com": [16637], "edmu.in": [2024], "www.smzdm.com": [15081], "za.godaddy.com": [6755], "lk.gd": [2024], "rt-short.link": [2024], "pacif.co": [2024], "help.familysearch.org": [5636], "invoca.net": [8324], "epb.net": [4931], "*.blogg.se": [2121], "ba-cdn.ghostery.com": [6613], "www.fluechtlinge.wien.at": [22588], "www.leaserig.net": [9228], "seo.osu.edu": [11797], "marketing.lunarpages.com": [623], "srgnt.tv": [2024], "class.agency": [2024], "www.visaeurope.lu": [17847], "adfi.li": [2024], "url.kamar.vn": [2024], "chipn.co": [2024], "electroscience-backup.engineering.osu.edu": [11797], "idsfac.me": [2024], "map.bloomsky.com": [19411], "belorussia.auto.ru": [19276], "apto.top": [2024], "sndfrq.co": [2024], "cass.ee": [2024], "geo.psbank.ru": [13231], "tagged.com": [15974], "www.nslds.ed.gov": [4881], "www.isc-ejpd.admin.ch": [22061], "proxy.lpice.eu": [9109], "wcha.it": [2024], "cmw.htwk-leipzig.de": [7596], "www.freshmeat.club": [20173], "video20.0xdb.org": [10], "lnx.krawiec.com": [2024], "aw4c.com": [2024], "mail.espiv.net": [20021], "richarddawkinsfoundation.org": [13929], "report.amap.com": [19166], "alrtlgc.com": [2024], "forum.logentries.com": [9563], "www.devuan.org": [4421], "gltw.co": [2024], "cdn.codetree.com": [19639], "asmc.de": [1293], "artedolar.com.br": [1253], "tweet.matox.si": [2024], "www.amnistia.cl": [1020], "rabobank.nl": [13550], "link.sva.edu": [2024], "skyler.link": [2024], "t-ri.de": [2024], "get.videolan.org": [17775], "a3.jimstatic.com": [8585], "lgy.co": [2024], "m.ixit.cz": [7881], "r24617875.sync.app.asana.com": [1265], "p7.qhimg.com": [13347], "play.uformia.com": [17197], "zenspider.com": [18931], "www.miaclu.org": [10359], "sipgate.io": [14923], "www.titanic-magazin.de": [16576], "developers.filepicker.io": [5787], "teamlab.co": [2024], "usvisas.state.gov": [17146], "widgitonline.com": [22587], "tomsh.net": [2024], "www.site.yandex.by": [18739], "bad.gr.com": [2024], "2ndrun.news": [2024], "money.beeline.kz": [19345], "s1.wsj.net": [18021], "hipcompass.co": [2024], "www.ist-track.com": [8393], "ingentaconnect.com": [8142], "acecommunications.statushub.io": [15504], "ap2.bvg.de": [1605], "finapp.pfm.memberdirect.net": [10265], "univention.com": [17315], "nrchur.ch": [2024], "upri.me": [2024], "britcoin.co.uk": [2354], "img2.refresher.sk": [13781], "i-nd.com": [2024], "swiss-prime-site.ch": [22060], "onone.buzz": [2024], "ua.edu": [16997], "www.zalando.at": [18877], "blog.transifex.com": [16743], "www.nikcub.com": [11438], "atmsuf.inl.gov": [20537], "achim.cc": [2024], "m.youku.com": [18804], "stpete.rs": [2024], "ny.taobao.com": [16015], "docs.sony.com": [15215], "www.sendspace.com": [14645], "www.ygtech.tools": [18706], "wiki-vav.ro.vutbr.cz": [17609], "cdn-au.topshop.com": [22238], "inka.htw-berlin.de": [7103], "rctru.st": [2024], "yabs.yandex.com.tr": [18740], "www.faststream.civilservice.gov.uk": [19601], "www.mozillaignite.com": [10698], "rvwsna.co": [2024], "www.cdnetworks.com.sg": [2573], "go.naaaprtp.org": [2024], "bchnn.co": [2024], "bailey.gr": [2024], "audio.april.org": [1171], "tangerine.com": [16008], "www.sos.state.co.us": [3444], "research.domaintools.com": [4653], "j1.chaucanh.net": [2024], "nexc.es": [2024], "zingcheckout.com": [18970], "ifood.la": [2024], "taxwebb.slu.se": [14195], "apps.wandoujia.com": [18066], "*.4d.com": [188], "www.friendlybracelets.com": [6194], "ifi.uio.no": [17414], "nrw.vcd.org": [17560], "apidocs.serverdensity.com": [14675], "bzng.us": [2024], "cht.rs": [2024], "mornie.me": [2024], "www.booksonislam.org": [2223], "h-da.de": [4149], "www.deusm.com": [16999], "intserveis-e.upf.edu": [17471], "rewards.sky.com": [14989], "ogpn.media": [2024], "q.hitravel.xyz": [2024], "l.harri.com": [2024], "allaboutus.warrington.gov.uk": [18079], "imo.im": [8012], "ww370.smartadserver.com": [15049], "kredyty-mieszkaniowe.money.pl": [10584, 10585], "fusion.webfusion-secure.co.uk": [18212], "l.sgoyal.net": [2024], "j.goudsm.it": [2024], "bulk.internetessentials.com": [20553], "cas105.nl": [2024], "de.rt.com": [13528], "kb.berkeley.edu": [17329], "pf.md": [2024], "cloud.zaehlwerk.net": [18872], "richmondteaparty.com": [13932], "mangol.in": [2024], "www.eindhoven.nl": [5114], "appdev.unicef.or.jp": [17066], "www.kent.gov.uk": [8867], "www.linux-sunxi.org": [9416], "youtube.ua": [18800], "m.andersonvalleypost.com": [4980], "www.haproxy.com": [7029], "www.thermoscientific.com": [16421], "youtube.ug": [18800], "forum.ethereum.org": [5367], "img.okcoin.cn": [11664], "abam.in": [2024], "mesura.me": [2024], "g2014.hm": [2024], "wyndh.am": [2024], "multisoft.com": [10734], "api.augur.io": [1392], "mstryexps.com": [2024], "audrey.play-asia.com": [12828], "nwmn.co": [2024], "sinv.st": [2024], "support.sas.com": [14132], "grtstyl.us": [2024], "people.wku.edu": [22602], "go.tonywinn.me": [2024], "internetweek.jp": [8285], "rossy.me": [2024], "food.opendata.ch": [21270], "whskr.us": [2024], "anonops.com": [1080], "wix.click": [2024], "kazan.beeline.ru": [1778], "swissinfo.ch": [21957], "lgdw.gg": [2024], "amex.co": [2024], "js4.pp.sohu.com.cn": [15170], "wvnz.org.nz": [2024], "kr-znamya.ru": [20752], "www.jadu.net": [8502], "comcred.utb.ru": [17538], "smileexperts.osu.edu": [11797], "www.webfusion-support.co.uk": [18212], "havain.in": [2024], "l.bridgeinc.us": [2024], "lodi.co": [2024], "www.secdev.com": [14522], "nvrd.co": [2024], "www.securecoding.cert.org": [2596], "fragdenstaat.de": [6073], "www.usa.gov": [17110], "mmedia1.ozon.ru": [12231], "werbung.search.ch": [14504], "usnwc.edu": [17127], "www.icedivx.com": [7908], "nws.io": [2024], "13and.co": [2024], "www.bioinfo.pl": [1929], "gjopen.com": [6315], "secure.dover.gov.uk": [4714], "mall.pl": [9934], "insom.co": [2024], "*.fundrazr.com": [6236], "secure.addthis.com": [626], "secure2.intl.match.com": [10074], "r.ctrlc.in": [2024], "help.pastebin.ca": [12477], "oregonstate.edu": [12134], "yeah.gr": [2024], "redbee.cc": [2024], "nutry.ml": [2024], "fbapp.uat.telegraph.co.uk": [16149], "mackenz.ie": [2024], "www.ntia.doc.gov": [17138], "pendle.gov.uk": [12565], "www.ubfoundation.buffalo.edu": [17382], "s.ptwr.co": [2024], "stash.alonetone.com": [915], "blag.xkcd.com": [22652], "qvc.co": [2024], "medschool.wustl.edu": [18089], "ajh.me": [2024], "kayit.anadolu.edu.tr": [1029], "nvrnet.ru": [21209], "origin.at.ai": [844], "fitk.me": [2024], "mtwn.co": [2024], "www.riversidemajestic.com": [13965], "pm-utils.freedesktop.org": [6102], "bugzilla.mindrot.org": [10450], "nexway.com": [11395], "alphablog.citizensadvice.org.uk": [19595], "education.minecraft.net": [10452], "www.nashnet.ua": [21087], "genomebiology.biomedcentral.com": [1931], "downloads.vespermarine.com": [17738], "faq.ssa.gov": [21959], "checkout.visa.com": [17846], "alumnimagazine.rmit.edu.au": [13496], "1n0.uk": [2024], "tribecastudios.co.uk": [16803], "linux-apps.com": [9414], "support.blackphone.ch": [2066], "miv.ecsi.net": [4873], "croydon.greenparty.org.uk": [6908], "groton.org": [6946], "cp.nic.swiss": [19884], "kde-look.org": [8733], "euinline.msi.com": [9806], "nb.nimg.jp": [11450], "kloakservice.crypton.io": [3872], "giforacle.me": [2024], "rbil.co": [2024], "security.web.cern.ch": [2588], "naacpcompanystore.org": [10902], "community.particle.io": [12451], "leya69.me": [2024], "findthebest.com": [5824], "2015.gaobase.admin.cam.ac.uk": [17332], "spt.ink": [2024], "wwi.wcfan.de": [18112], "vegaspartnerlounge.com": [17680], "pavone.ovh": [2024], "www.ifi.uio.no": [17414], "b9.hitravel.xyz": [2024], "wbru.co": [2024], "blog.openhub.net": [12044, 12045], "cdn.lezhin.com": [20822], "www.cti.ox.ac.uk": [17359], "open.ac.uk": [11947], "a.tintuctop.com": [2024], "jfrieda.de": [2024], "static.codehs.com": [3347], "howto.landure.fr": [9158], "ex-na-plyazhe.friday.ru": [20175], "www.cabletv.com": [2718], "appdo.cc": [2024], "www.ulogin.ru": [22357], "vchz.rsl.ru": [21686], "www.library.jhu.edu": [16370], "lndr.co": [2024], "www.eurosmartz.com": [5400], "contactually.me": [2024], "anahaw.news": [2024], "choicerewards.lloydsbank.com": [9537], "4id.channel4.com": [3009], "plti.co": [2024], "gerv.makes.org": [9926], "renoise.com": [21627], "*.rand.org": [13456], "mensultimatefrisbee.clubs.bucknell.edu": [2406], "biblio.dissernet.org": [19848], "securestore.discovery.com": [4543], "m.aldi-nord.de": [357], "grp03.api.rp.rakuten.co.jp": [13594], "tedlive.ted.com": [15871], "kablepackaging.com": [8778], "mit.worldcat.org": [18536], "ag.ch": [22061], "uget4.me": [2024], "www.blackpool.gov.uk": [2074], "ws.usembassy.gov": [22406], "ciorc.al": [2024], "pv.udn.com": [17020], "muj.idnes.cz": [20483], "cath.li": [2024], "s.or-z.net": [2024], "mcgo.es": [2024], "denverimag.es": [2024], "a2ski.me": [2024], "poltava.to": [21456], "cronkitenewsonline.com": [3808], "bbm.ph": [2024], "symfony.fi": [15783], "1025.us": [2024], "teacupsandtrinkets.co.uk": [16058], "www.numbersusa.com": [11617], "planet.chromium.org": [3124], "fvsd.illuminateed.com": [20494], "jp.8chan.co": [244], "www.testpolitique.fr": [16217], "r24618074.sync.app.asana.com": [1265], "trumpia.com": [16850], "bonus.qiwi.com": [13352], "slgx.co": [2024], "*.rnrwheels.com": [13497], "mdc.plus": [2024], "dtk.to": [2024], "www.helmich.de": [7302], "www.securelime.com": [14566], "www.sgsstudentbostader.se": [14173], "subs.toynews-online.biz": [22257], "formilux.org": [6022], "www.primbank.ru": [13107], "i3.technet.microsoft.com": [10396], "intranet.kit.edu": [8812], "d.iscour.se": [2024], "cdn.speedof.me": [15328], "horizon.halton.gov.uk": [20335], "mx.play-asia.com": [12828], "andnor.se": [2024], "conserve.sc": [2024], "exactag.com": [5467], "cdn1.gbot.me": [6791], "ehs.stanford.edu": [15448], "r.tcpipweb.net": [2024], "load.qrator.net": [21562], "thepiratebay.ae.org": [22174], "*.caintvnetwork.com": [2735], "cloud.24ways.org": [104], "r.xpander.fr": [2024], "streammygame.com": [15585], "*.officedepot.com": [11784], "blog.fortinet.com": [6033], "ucenter.studyjamscn.com": [22018], "www.kayak.co.uk": [8839], "main.islamweb.net": [8373], "nap.edu": [16275], "assets1-new.akamai.coub.com": [3698], "shop-america.u-blox.com": [16993], "www.equalitytrust.org.uk": [5319], "efa.mvv-muenchen.de": [9823], "shandonggx.jd.com": [8434], "www.131002.net": [42], "reachout.link": [2024], "www.fit.fraunhofer.de": [6091], "csvv.co": [2024], "heapol.oxfordjournals.org": [12222], "ntr.lu": [2024], "stand.oxfam.org.uk": [12221], "support.mayfirst.org": [10113], "cdn-3.convertexperiments.com": [19679], "tldff.com": [2024], "w3.ab.ust.hk": [22412], "blog.openmandriva.org": [11992], "financial.ucsc.edu": [17390], "connect.aber.ac.uk": [473], "kgx.cc": [2024], "avm.de": [1478], "socl.xyz": [2024], "tsc.li": [2024], "spork.ly": [2024], "u.cam.vc": [2024], "www.transferwise.com": [16738], "doc.ispsystem.com": [20590], "cdnjs.touclick.com": [16679], "www.skysql.com": [14991], "www.butlerandthechef.com": [16256], "r24625322.sync.app.asana.com": [1265], "webmail.bristol.gov.uk": [19451], "bio.org": [1548], "go.thips.de": [2024], "verkaufen.ch": [22443], "neomailbox.net": [11194], "ceazari.info": [2024], "r24625011.sync.app.asana.com": [1265], "press.unian.net": [22369], "www.mirrorservice.org": [10485], "reflex.cz": [13777], "gallery.debianforum.de": [4264], "substanceabusepolicy.biomedcentral.com": [1931], "www1.ibdcd.com": [8317], "uproxx.it": [2024], "leisure1.sbb.ch": [15756], "*.neosmart.net": [11191], "verkkokauppa.duodecim.fi": [4798], "ualinux.com": [22340], "myheritage.com": [10875], "link.gmo.gl": [2024], "quiz.itespresso.fr": [11238], "cardoza.link": [2024], "www2.taxactonline.com": [16044], "sanet.me": [14135], "bear.fyi": [2024], "ctv.mk": [2024], "dcsp.me": [2024], "content.azorus.com": [1233], "mmbl.me": [2024], "crtfy.us": [2024], "manage-v38.smartadserver.com": [15049], "webapp.zdf.de": [22709], "discourse.osmc.tv": [21299], "etrtbs9.smartstream.tv": [15064], "nlgo.uk": [2024], "jobs.redhat.com": [13735], "defenceimagery.mod.uk": [17049], "www.europe-consommateurs.eu": [5412], "07.static-maxdome.de": [10106], "plastic-bin.com": [12818], "musixmatch.com": [10758], "s.tsy.jp": [2024], "passlab.eu": [2024], "www.reiner-sct.com": [13808], "docs.unrealengine.com": [17450], "standards.ieee.org": [7719], "www.polygrant.com": [12935], "www.alsoactebis.com": [359], "ashq.co": [2024], "saur0.tech": [2024], "reversens.domaintools.com": [4653], "go.padstm.com": [12356], "www.smeserver.org": [21870], "l.phielo.com": [2024], "raceforward.org": [13551], "digitalgov.gov": [4474], "acs.zapsibkombank.ru": [18890], "kam.im": [2024], "r.sebdic.de": [2024], "fluendo.com": [5930], "www.obermassing.at": [11736], "kpn.nl": [8761], "c3.nasa.gov": [10909], "*.figue.com": [5564], "xxx.upx69.com": [17490], "sbms.bnl.gov": [19418], "www.hertztrucks.com.au": [7335], "i.gtimg.cn": [6974], "r24625314.sync.app.asana.com": [1265], "shbos.ch": [2024], "zdrav.nso.ru": [21192], "www.birds-are-nice.me": [1943], "trk.euclead.com": [2024], "circle.org.uk": [19591], "ironp.net": [2024], "lazi.gs": [2024], "gaytx.us": [2024], "pass.tmall.hk": [16589], "www.mims-online.com": [9756], "sqrn.ch": [2024], "*.www.cfda.gov": [2903], "hllow.lt": [2024], "zammad.com": [18880], "cloud.kbia-gmbh.de": [8845], "dmcloud.net": [4119], "peerj.com": [12548], "url.rcclab.com": [2024], "l.magiclabs.de": [2024], "*.tripodo.de": [16823], "tre.li": [2024], "*.yandex.net": [18745], "zagony.ru": [18873], "newpor.tc": [2024], "kursk.sledcom.ru": [21858], "www.3bbwifi.com": [167], "tpbproxy.website": [22174], "atlink.ml": [2024], "cdn4.xvideosx.tv": [18627], "*.tal.de": [15981], "www.versions.nodejitsu.com": [11491], "billingproxy.fineproxy.org": [5829], "www.bath.ac.uk": [17385], "blog.10gen.com": [22], "www.flipkart.com": [5906], "idms-linux.org": [20482], "wildapricot.org": [18395], "randomhouse.biz": [13603], "www.gaug.es": [6978], "websmithing.com": [18246], "poipic.coccoc.com": [3340], "docme.in": [2024], "www.nixonlibrary.gov": [21142], "blog.mozfr.org": [21030], "ractod.org": [2024], "n.arteid.net": [2024], "engel.pics": [2024], "*.alrc.gov.au": [1421], "static.tlasecure.com": [22218], "bn1files.storage.msn.com": [9810], "*.st-hatena.com": [7229], "providesupport.jp": [13217], "cnsi.ucla.edu": [17330], "kyrkis.com": [2024], "travel.rambler.ru": [13600], "s.daserste.de": [2024], "spam.sans.org": [14128], "uptilo.com": [17486], "idp.comcast.net": [3461], "youngp.ro": [2024], "berea.link": [2024], "rspb.org.uk": [13520], "pdxint.at": [2024], "agva.nl": [2024], "i.buraga.org": [2024], "obitalk.com": [21224], "www.signup.socialsecurity.gov": [15126], "home.jolicloud.com": [20649], "portal.richrelevance.com": [13927], "econz.unizar.es": [17441], "proxybay.bid": [22259], "www.breakoutband.com": [2318], "jmlord.net": [2024], "obit.ru": [21223], "bea.md": [2024], "www.cs-cart.com": [2676], "nicjb.com": [2024], "www.cheapairportparkingbirmingham.com": [3047], "db.money.sohu.com": [15171], "dashboard.airmap.io": [790], "ukwebsolutionsdirect.com": [17042], "m.arabic.alibaba.com": [857], "*.mpi-sws.org": [10100], "yancya.jp": [2024], "www.tomgate.net": [22231], "dns.d0wn.biz": [3988], "g.live.com": [9495], "careers.thejournal.ie": [16299], "x.plorlight.com": [2024], "secureusa.greenpeace.org": [6920], "events.emssoftware.com": [19990], "www.demworks.org": [4323], "ssl.goeswhere.com": [6788], "api-s.bitcoinchain.com": [19387], "www.8tracks.com": [245], "ud-media.de": [17021], "*.bytelove.com": [2504], "pro.connexity.com": [3586], "el.libreoffice.org": [9327], "johoobuy.com": [8629], "culp.tv": [2024], "south-osetia.kavkaz-uzel.ru": [20694], "deutsch.peerius.com": [12555], "betzwinery.com": [2024], "it.cloudflare.com": [3284], "webforms.telford.gov.uk": [22121], "edlund.dk": [5078], "my.talktalk.co.uk": [15993], "www.master.yandex.kz": [18743], "www.heathkit.com": [7276], "www.bw.com": [1607], "sport.permkrai.ru": [21390], "fairwork.gov.au": [5622], "blakino.la": [2024], "efinancialcareers.cn": [4902], "www.amnesty.at": [1002], "elftree.co": [2024], "komplett.no": [8981], "theproxy.pw": [22174], "www.webarchitects.coop": [18205], "download.savannah.gnu.org": [6337], "mercul.es": [2024], "news.ub-g.com": [2024], "2wsb.tv": [2024], "deals.iphonelife.com": [8341], "adserver.adtechus.com": [692], "bugs.sabayon.org": [14275], "assets.alicdn.com": [853], "intelexit.org": [8213], "sandbox.bluesnap.com": [2150], "wpcom-themes.svn.automattic.com": [1452], "jta2.com": [2024], "www.titania.com": [16575], "www.websitealive.com": [18242], "uslr.us": [2024], "vspor.to": [2024], "phptesting.org": [21402], "witch.valdikss.org.ru": [22423], "re.directrev.com": [4522], "static3.glassdoor.com": [6683], "rensk.in": [2024], "malv.es": [2024], "api.fortiguard.com": [6032], "uu.difi.no": [4452], "xplr.it": [2024], "wiki.gsi.de": [6365], "councillors.herefordshire.gov.uk": [7326], "strem.io": [15591], "unicefusa.org": [17070], "altera.com": [926], "uni-tuebingen.de": [17430], "api.v2.badgeville.com": [1631], "www.zynga.com": [19033], "vz-nrw.de": [17706], "bobbyshar.ma": [2024], "info.ceneo.pl": [2944], "usembassy.gov": [22406], "hays.tc": [2024], "www.wantful.com": [18070], "www.ekmsecure6.co.uk": [5122], "csbk.co": [2024], "escoladesegu.ro": [2024], "go.kuota.jp": [2024], "www.transversal.com": [16759], "www.expatpartnersurvival.com": [20052], "ssl-nrk.tns-cs.net": [22226], "alhefzi.me": [2024], "domdex.com": [4661], "secure.warwick-castle.com": [18081], "storage1.censor.net.ua": [19538], "www.cyberpowerpc.com": [19748], "www.kva.se": [20765], "cdn.zwame.pt": [19025], "api.t-ru.org": [22077], "s123.cnzz.com": [3328], "s6.postimage.org": [13024], "aaryangala.co": [2024], "www.discounttheatre.com": [4533], "dcoy.co": [2024], "v2c.lrz.de": [9253], "upware.comcast.com": [3462], "uchicago.edu": [17334], "singlefeed.com": [14915], "ps-inc.co": [2024], "punahou.link": [2024], "www.nodes.dk": [11493], "www.bookdepository.co.uk": [2216], "passwordless.net": [21353], "l.vspc.net": [2024], "stadt-bremerhaven.de": [15432], "alianza.tv": [855], "b.off-to-on.com": [2024], "swat.ch": [2024], "www.artedolar.com.br": [1253], "url.florky.com": [2024], "sale.aliyun.com": [868], "www.17track.net": [55], "de.indymedia.org": [8090], "166ksgvj4821iondgvrols7flbkt8y1ycrl9o4uy.ipleak.net": [20571], "playsense.kr": [2024], "www.maidsafe.org": [9884], "z.tigabytes.com": [2024], "mbox9.offermatica.com": [11775], "utm.edu": [17426], "m6.hitravel.xyz": [2024], "s.chuplus.jp": [2024], "schl.mn": [2024], "1.shoz.de": [2024], "elynx.us": [2024], "gdfl.co": [2024], "ssl.assets.sheetmusicplus.com": [14754], "moskovskiiy.biglion.ru": [19375], "g4l.at": [2024], "rmr.me": [2024], "hangerproject.com": [20337], "va.pe": [2024], "docs.agiusa.com": [2024], "peake.link": [2024], "zackw.co": [2024], "jshr.me": [2024], "www.edigitalsurvey.com": [4894], "m.sogou.com": [15168], "forum1.hkgolden.com": [7058], "wl.jd.com": [8436], "validator-suite.w3.org": [17980], "applications.cpanel.net": [2667], "www.threatpost.ru": [16470], "secure.manga.com": [9957], "bjr.jozz.xyz": [2024], "www.master.yandex.com.tr": [18740], "masdh.es": [2024], "my.vodafone.pt": [17903], "blog.plot.ly": [12860], "oran.ge": [2024], "stai.rs": [2024], "ckdis.co": [2024], "shftbrd.com": [2024], "www.mcafeesecure.com": [10128], "ruza.tpprf.ru": [22260], "client.luosimao.com": [20891], "illustre.ch": [20495], "support.plex.tv": [12854], "www.cryptome.info": [3869], "www.now.com": [11572], "chat.hfo-telecom.de": [7041], "www.servercow.de": [14673], "www.lp0.eu": [9648], "chl.it": [2611], "wrbls.co": [2024], "www.puppetlabs.com": [13276], "portal.threatmetrix.com": [16467], "data.mcc.gov": [20940], "code.randomhouse.com": [13604], "fairway.news": [2024], "ehrweb.104.com.tw": [18], "pfa.levexis.com": [9287], "veronikamaine.com.au": [17720], "*.ramnode.com": [13599], "metadata.cesnet.cz": [2598], "tlsi.co": [2024], "ft.lc": [2024], "www.pro-managed.com": [13156], "phonebook.cern.ch": [2588], "www.acoustics.org": [533], "khpi.com": [8863], "rdl.me": [2024], "hbbtv.ndr.de": [11159], "www.corporatetravelmoney.com": [19692], "dom.yuga.ru": [22701], "dealking.tk": [2024], "s14uncs.us": [2024], "familie-redlich.de": [5634], "*.wufoo.com": [18572], "www.fsfe.org": [5591], "blog.oxhack.demozoo.org": [19808], "www.gowalker.org": [6780], "img3.wakelet.com": [18047], "www.zenmate.de": [18917], "www.gettyimages.ae": [6604], "gobi.krystal.co.uk": [9037], "browseraddon.com": [2390], "i.sankakucomplex.com": [21730], "btb-preview.stanford.edu": [15448], "camscanner.com": [19500], "en.blog.nic.cz": [11418], "on.insas.be": [2024], "www.gettyimages.at": [6604], "schelkovo-net.ru": [21741], "saml.uvt.nl": [16521], "oskicatp.berkeley.edu": [17329], "hb.vntsm.com": [22481], "kaluga.tpprf.ru": [22260], "abn.com": [2024], "www.lurkmore.co": [9683], "www.breitbandmessung.de": [2319], "pcapredict.com": [21367], "aligned.online": [2024], "lists.96boards.org": [249], "katalogportalmainz.ub.uni-mainz.de": [17410], "www.arpxs.com": [1234], "cmpxchg8b.com": [2641], "bookacourse.com": [2218], "blogs.gartner.com": [6442], "passport.weibo.com": [18279], "westyorkshireobservatory.org": [18308], "s.karing5.club": [2024], "*.onescreen.com": [11881], "sprint.com": [15384], "holly.illuminateed.com": [20494], "pressroom.usc.edu": [17366], "zimperium.com": [18969], "commonsensemedia.org": [19652], "img7.leboncoin.fr": [20796], "diogomonica.com": [4508], "www.eleves.ens.fr": [4922], "youm7.com": [18805], "zhitongche.baidu.com": [1641], "bugzilla.untangle.com": [17454], "thewarehouse.co.nz": [16425], "thepirateproxybay.xyz": [22174], "gwoodard.me": [2024], "jyclr.co": [2024], "www.qb50.eu": [13322], "helios.psy.vu.nl": [17608], "*.compiz.org": [3526], "joum.me": [2024], "geany.org": [6463], "kicksapp.co": [2024], "store.adultshopping.com": [697], "www.dynu.com": [4830], "r-sec.casalemedia.com": [2880], "r24823111.sync.app.asana.com": [1265], "sjs0.sinajs.cn": [14909], "wjr.me": [2024], "dasm.ag": [2024], "wssnr.nl": [2024], "niglink.xyz": [2024], "partner.yandex.com": [18742], "www.elastic.co": [5131], "knq.li": [2024], "es.faqs.bookmyname.com": [2215], "piwik-short.web.cern.ch": [2588], "appleid.apple.com": [1151], "img05.static-nextag.com": [11402], "mycontactual.com": [3611], "ag.ouvaton.coop": [12187], "cby.tw": [2024], "a.xiaolan.space": [2024], "gfx2.aftonbladet-cdn.se": [758], "www.terminal.sexy": [16193], "rcll.nl": [2024], "law-s.in": [2024], "pegahsystem.co": [2024], "on.lmntrx.com": [2024], "www.shaw.ca": [14748], "poff.it": [2024], "trustsealinfo.verisign.com": [17712], "pic4.58cdn.com.cn": [213], "web3.cc.ntu.edu.tw": [11010], "www.mobygames.com": [10542], "mbar.me": [2024], "www.ntid.rit.edu": [13493], "explo.in": [2024], "www.lrcd.com": [9651], "discoverhongkong.com": [19847], "blog.viddler.com": [17768], "runnymede.gov.uk": [21694], "sonystyle.com.mx": [15220], "services.netbeans.org": [11223], "metallostroy.beeline.ru": [1778], "refresh.duckduckgo.com": [4785], "slcrts.com": [2024], "fr.zalando.ch": [18877], "adtmag.com": [330], "www.planetkde.org": [12805], "reflexphoto.eu": [13778], "bvdp.co": [2024], "adx2.adform.net": [638], "assertible.com": [19260], "staged-by.rubiconproject.com": [14066], "o.imgbox.com": [7997], "liv-isl.in": [2024], "s.zf2.ru": [2024], "csg.vse.sk": [17955], "wiki.geogebra.org": [6522], "resellerratings.com": [13859], "registrar.wustl.edu": [18089], "pressdisplay.com": [11386], "cho.ba": [2024], "priroda.permkrai.ru": [21390], "b-ssl.grvcdn.com": [6968], "www.offerpop.com": [11776], "static.voog.com": [22497], "engelsystem.de": [5254], "netkompakt-fuer-mitarbeiter.netcologne.de": [11226], "nuji.co": [2024], "compaq.com": [3512], "www.thinglink.com": [16429], "yellowpages.ca": [18763], "itunes.com": [20468], "on.goasia.de": [2024], "m.regalii.com": [13786], "upphandling24.idg.se": [7709], "www.stlbeacon.org": [15421], "r24618071.sync.app.asana.com": [1265], "ethos-os.org": [5373], "ad6.nl": [2024], "xue.taobao.com": [16015], "www.openreach.co.uk": [12075], "plus.dji.com": [4029], "faid.dyc.edu": [4089], "at.kineo.com": [2024], "braunschweig.de": [2309], "m.auro.io": [2024], "static.mux.de": [10780], "softwareplattform.test.d115.de": [2443], "dl.codebay.in": [2024], "links.sonatype.com": [15202], "www.coincheck.jp": [3403], "stmh.it": [2024], "servicesonline.opm.gov": [11690], "id.tmtm.ru": [15902], "www.nakedcitizens.eu": [11054], "myplacelive.walthamforest.gov.uk": [18061], "www.prettylittlething.com": [13089], "www.icommons.org": [7704], "www.centresdirect.co.uk": [19545], "www.fotopigeon.com": [6052], "*.kariera.gr": [8811], "www.truecommerce.com": [22296], "appengine.google.com": [6818], "smq.tc": [2024], "roi.ms": [2024], "kanaiya.in": [2024], "wibl.it": [2024], "careers.usc.edu": [17366], "hwb.birmingham.gov.uk": [19380], "*.instantservice.com": [419], "www.southbankcentre.co.uk": [15260], "puu.sh": [13302], "sw.ro.vutbr.cz": [17609], "pandaexpress.com": [12385], "shevi.be": [2024], "aitr.co": [2024], "bmdw.org": [1555], "www.tuleap.org": [16895], "webcaster.pro": [22542], "w.pib.by": [2024], "baysho.re": [2024], "www.morningstaronline.co.uk": [10634], "releases.qt-project.org": [13364], "wimg.co": [2024], "www.hitfarm.com": [7430], "vagrantcloud.com": [17616], "phrind.mobi": [2024], "git.parabolagnulinux.org": [12413], "djazz.it": [2024], "video.it-tv.org": [20597], "www.reformgovernmentsurveillance.com": [13779], "ksig.ma": [2024], "www.truste.com": [15922], "mate-desktop.com": [9727], "8ball.co": [2024], "ijar.us": [2024], "aflismp.com": [2024], "www.aclufl.org": [297], "alumni.law.cuhk.edu.hk": [2704], "thehrd.co": [2024], "thwsb.me": [2024], "www.nationalgrid.com": [11119], "azure.microsoft.com": [10396], "nscs.nasa.gov": [10909], "kirlism.ga": [20724], "www.petsathome.com": [12631], "www.amd.com": [970], "amazon.co.jp": [19169], "ibutsu.org": [20472], "www.smashfly.com": [15065], "dhh.biligame.com": [1903], "cducsu.cc": [2024], "app.tutanota.com": [16922], "platform.play-asia.com": [12828], "api.btnapps.net": [2371], "mmrkt.co": [2024], "kinnear.wigan.gov.uk": [18379], "blazeti.me": [2081], "s.metiix.com": [2024], "nt4.in": [2024], "italiatv.link": [2024], "realty.ngs.ru": [21134], "city.yandex.by": [18739], "cloudera.com": [3300], "bbc21cccs.us.to": [2024], "smetrics.barclays.co.uk": [1688], "on.pnj.com": [2024], "jobb.dn.se": [19856], "fsdata.se": [5596], "www.nfc.usda.gov": [17299], "jira.onosproject.org": [11685], "www.iea.org": [8263], "hh1.co": [2024], "psi.oasis-open.org": [11643], "turnto.com": [16913], "listserv.opm.gov": [11690], "www.hkn.de": [7071], "pbrd.co": [2024], "stripecdn.com": [15595], "sen.na.tl": [2024], "l.hrzn.uk": [2024], "trv-science.ru": [22298], "www.savvyhawk.com": [14378], "chime.in": [3083], "www.canon.lt": [2822], "www.canon.lu": [2822], "www.canon.lv": [2822], "page.showapi.com": [21815], "zum.bz": [2024], "www.elie.im": [5156], "corporate.mkb.ru": [10512], "grainfree.ly": [2024], "www4.labcorp.com": [9139], "git35.rostrud.ru": [21677], "adnetdelivery.adnet.pro": [19083], "asianstudies.georgetown.edu": [6531], "soc.koviah.com": [2024], "youtube.co.ae": [18800], "alcatel-lucent.com": [829], "gopalad.in": [2024], "www.getadblock.com": [571], "b.gogeb.co": [2024], "lg.naukri.com": [11146], "www.leastauthority.com": [9230], "videos.sproutvideo.com": [15390], "strategie.hnonline.sk": [7445], "customcare.fender.com": [5733], "youtube.co.at": [18800], "prometheus-group.com": [13195], "bombadil.infradead.org": [8135], "www.privacyenforcement.net": [13135], "www.apan.org": [388], "benefits.caltech.edu": [2771], "jobs.lewisham.gov.uk": [20821], "random.org": [13606], "ctf.thechildrensmutual.co.uk": [3078], "wuchuan.jd.com": [8434], "www.mutualofamerica.com": [10777], "www.qsli.com": [13332], "lb.delfi.lv": [19800], "mnstr.me": [2024], "origin.varcentral.com.au": [17552], "vibe.akixi.com": [19129], "www.economist.com": [5052], "burgerd.ag": [2024], "*.physicalsecurity.ucsc.edu": [17389], "vcs1.golem.de": [6804], "www.prod.facebook.com": [5609], "thegarrettp.com": [2024], "forum.highcharts.com": [7408], "cit.tips": [2024], "z.larksoft.com": [2024], "www.study.cam.ac.uk": [2777], "my.over-blog.com": [12188], "joinup.ec.europa.eu": [5411], "wfr.re": [2024], "vllg.es": [2024], "zhenya.site": [2024], "*.offeredby.net": [12416], "www.changemakers.com": [3002], "www2.uic.edu": [17321], "www.cloud66.com": [19621], "spiceworks.com": [15338], "ejmag.co": [2024], "cpiz.net": [19708], "woothemes.com": [18505], "understood.org": [17244], "www.major.io": [9913], "thnk.gr": [2024], "s25.cnzz.com": [3328], "webcheck.co": [2024], "go.hsthree.com": [2024], "*.redbullmobile.com": [13730], "baztab.net": [1738], "y.yolk.cc": [2024], "www5.nottingham.ac.uk": [11567], "bookmyname.com": [2215], "*.scanadu.com": [14393], "www.reasons.to": [13698], "theme.udn.com": [17020], "www.versionista.com": [22448], "x.alexkavel.com": [2024], "www.casa.com": [19520], "le.clubdo.us": [2024], "voipuserportal.co.uk": [22491], "cdnorig.smartadserver.com": [15049], "k7r.eu": [20675], "netistrar.com": [11278], "filepost.com": [5779], "www.openx.com": [12028, 21284], "shoppdv.com": [2024], "events.networkworld.com": [11307], "babytalk.stanford.edu": [15448], "aj.jelpyu.com": [2024], "www.plusme.net": [12871, 12872], "*.cryptalloy.de": [3841], "rbkx.nl": [2024], "www.noo.org.uk": [10983], "popcorntime.sh": [21461], "jobs.douban.com": [4701], "hugobiz.net": [2024], "www.firstdirect.com": [20111], "linux.srad.jp": [21956], "forum.forceline.net": [20134], "resusrv.com": [2024], "iflow.uczzd.cn": [17003], "dignityhlth.org": [2024], "www.mailoo.org": [9903], "safello.com": [14295], "adr.social": [2024], "forum.security-portal.cz": [14582], "tpg.com": [15915], "burstmedia.co.uk": [2463], "leggiero.uk": [20802], "s.martin.ae": [2024], "plbt.tk": [2024], "*.skch.me": [14967], "foes.do": [2024], "cache1.bigcartel.com": [1878], "goto.intera.de": [2024], "karelia.rt.ru": [13529], "papazola.ga": [2024], "consultmahan.com": [9882], "wac.edgecastcdn.net": [5070], "dynastyfdn.com": [19915], "go.monrobot.xyz": [2024], "sedonaaz.gov": [3187], "www.paypal.co.uk": [12500], "rbnn.me": [2024], "qbe.co": [2024], "www.store.3drobotics.com": [161], "dvvk.info": [2024], "www.uhulinux.hu": [22349], "adjd.co": [2024], "www.carmen.osu.edu": [11797], "www.superrepo.org": [15681], "lloydslink.online.lloydsbank.com": [9537], "realestatecenter.bankofamerica.com": [1669], "labs.giphy.com": [6646], "go.tjhole.uk": [2024], "myveg.as": [2024], "www.aulo.in": [1394], "www.grad.stonybrook.edu": [15548], "newscenter.lbl.gov": [9079], "2700.ch": [2024], "track.tagesanzeiger.ch": [15973], "bankir.ru": [19314], "api.del.icio.us": [7919], "www.globalreach.com": [20268], "it-vertrieb.net": [2024], "w103.camscanner.com": [19500], "gerstnr.eu": [2024], "www.investorsinpeople.co.uk": [8316], "wiki.maemo.org": [9862], "nyx.cz": [11638], "buddhibox.us": [2024], "www.moonpig.com": [10619], "pbell.co": [2024], "bw1.co": [2024], "www.desjardins.com": [4378], "www.ethoscustombrands.com": [5374], "rhinosupport.com": [13919], "software.cisco.com": [3165], "secure.stage-gettyimages.se": [6604], "threat2alert.com": [16466], "www.safello.com": [14295], "ivi.ru": [20609], "53per.center": [2024], "sxy.li": [2024], "static.sehirfirsati.com": [14624], "nyan.tokyo": [2024], "fodevarewatch.dk": [5956], "dev.onenote.com": [11878], "telekom.de": [4397], "myvarian.com": [10840], "f5networks.co.uk": [5536], "rossendale.gov.uk": [14027], "trauer.merkur.de": [10306], "www.zdfsport.de": [22709], "cdn-res.pressreader.com": [13081], "marketingresearch.org": [10022], "2k.com": [116], "howinerd.com": [7578], "bibliometrics.ki.se": [8743], "bitclubnetwork.com": [19386], "account.youku.com": [18804], "jstin.me": [2024], "netlocity.co": [2024], "create.mheducation.com": [20975], "kemerovo.startsmile.ru": [21980], "out-law.com": [12179], "duv.ly": [2024], "olincareers.wustl.edu": [18089], "portadi.com": [12980], "izhevsk.beeline.ru": [1778], "www.studyjamscn.com": [22018], "autodiscover.bassetlaw.gov.uk": [1714], "ruguoapp.com": [21692], "my.ncl.ac.uk": [10926], "hosdi.eu": [2024], "geoportal.statistics.gov.uk": [21982], "tibiamaps.io": [22204], "hiphopdai.ly": [2024], "jan4.me": [2024], "vwrd.nu": [2024], "ladepeche.fr": [9128], "slackers.co": [2024], "webmail.fruct.org": [5585], "icis.inl.gov": [20537], "www.argeweb.nl": [1210], "culi.org": [2956], "kasserver.com": [8722], "www.andor.com": [1042], "mapfeedback.here.com": [7325], "b.macsf.net": [2024], "lnge.ms": [2024], "vaden.stanford.edu": [15447], "youtube.bh": [18800], "ww.xovain.com": [2024], "on.abc15.com": [2024], "c26.co": [2024], "gkji.me": [2024], "www.holtwick.it": [7470], "i1.pixiv.net": [12778], "smarthome.jd.com": [8436], "iosbstxn02.hkjc.com": [20384], "*.igniterealtime.org": [7954], "i.taobao.com": [16015], "l.3dgo.net": [2024], "ru.stackoverflow.com": [15424], "www.scmagazine.com": [21751], "wetter.de": [18320], "cs.cornell.edu": [3676], "pf1.at": [2024], "player.sky.com": [14989], "www.nettitude.co.uk": [11294], "saturn.jpl.nasa.gov": [10909], "www.edarabia.com": [5064], "blog.refeds.org": [13472], "moskva.beeline.ru": [1778], "sim.ac": [2024], "charb.ro": [2024], "camw.me": [2024], "buildbot.openmpt.org": [11987], "www.libcat.oxfordshire.gov.uk": [21327], "git.csx.cam.ac.uk": [17332], "cookie.radioplayer.co.uk": [13581], "www.lotame.com": [9622], "on.kgw.com": [2024], "youtube.kr": [18800], "ar5-syr.ipcc.ch": [7793], "forsikring.sparebank1.no": [21922], "courtesan.com": [6881], "developer.venmo.com": [17696], "zcarot.com": [18846], "store.courant.com": [19698], "members.worlddab.org": [18538], "canna.bi": [2024], "gosi.gov.sa": [14368], "whatsnew.vandyke.com": [17638], "www.gamesonly.at": [6415], "www.zuerich.ch": [22730], "www.myob.com": [9830], "videscape.video": [2024], "www.khalifaofislam.com": [8886], "m.qidian.com": [13349], "roleplaychat.org": [14008], "envy.im": [2024], "internetfreedomfestival.org": [20554], "t.cslico.com": [2024], "wtop.com": [18569], "strinv.co": [2024], "gpoutcomes.hscic.gov.uk": [20435], "aax-us-east.amazon-adsystem.com": [958], "*.liftdna.com": [9354], "gut.mvd.ru": [21055], "yotpo.co": [2024], "sd7.es": [2024], "card2card.mastercard.ru": [10065], "costprojections.cancer.gov": [2819], "thinkgis.duapp.com": [19902], "www01.extra.americanexpress.com": [979], "gistest.gloucestershire.gov.uk": [6730], "rsload.net": [21687], "www.ldscdn.org": [16293], "jefftuts.co": [2024], "fwd.rocks": [2024], "tlt.europaplus.ru": [20034], "x.jmwtf.com": [2024], "wed.li": [2024], "www.phone.coop": [12666], "mdovt.co": [2024], "gin.gd": [2024], "qsrc.co": [2024], "keny.in": [2024], "awm.gov.au": [1430], "vox.ulule.com": [17224], "cchile.com": [2024], "datafile.com": [19765, 19766], "parad.is": [2024], "liss.in": [2024], "dialin.sviaz-bank.ru": [15740], "buy.iciciprulife.com": [7917], "blog.exacttarget.com": [5465], "education.magix.com": [9718], "falramentaparlament.atlatszo.hu": [1349], "r24626503.sync.app.asana.com": [1265], "media.220volt.hu": [96], "www.kivikakk.ee": [20727], "www.singyoursong.kairo.at": [8782], "partnersignup.register.com": [13793], "www.kasperskyclub.ru": [8823], "ausgovboards.gov.au": [1418], "royalmail.com": [14051], "sbbp.org": [2024], "fr.redhat.com": [13735], "www.codetree.com": [19639], "eduk.io": [2024], "l.byjohan.eu": [2024], "mir.mn": [2024], "www2a.cdc.gov": [19532], "todds.me": [2024], "service.xbox.com": [18639], "plone.lucidsolutions.co.nz": [9653], "glls.be": [2024], "mudc.at": [2024], "*.portal.mxlogic.com": [10126], "*.ztan.tk": [16622], "amped.asia": [2024], "support.justcloud.com": [20669], "nrenservices.geant.net": [6291], "mtsystems.ch": [10718], "3dstats.com": [160], "donate.ovdinfo.org": [21318], "mathonline.co": [2024], "delo.yuga.ru": [22701], "scsu.mn": [2024], "s.tmocache.com": [15901], "polyv.re": [2024], "p0st.us": [2024], "erike10.tk": [2024], "l.milli.az": [2024], "w.fullsail.edu": [2024], "m.hkgolden.com": [7058], "www.sugarcrm.com": [15647], "www.dizaineriai.lt": [4578], "www.mullet.se": [10730], "www.informatics.indiana.edu": [8070], "app.uclinics.com": [17018], "auto.rakuten.co.jp": [13593], "northwestern.io": [2024], "r29.co": [2024], "blk.is": [2024], "code.ethereum.org": [5367], "teapartypatriots.org": [16056], "hbbtv.org": [7244], "www.harrow.io": [7205], "static2.symanteccloud.com": [15780], "whrsml.eu": [2024], "paleo.co": [2024], "almajd.islamacademy.net": [8366], "focuscamera.com": [5954], "x.ai": [22642], "www.thepiratebay.org": [16306], "www.garrysmods.org": [20206], "www.spice-space.org": [15336], "intranet.slac.stanford.edu": [15448], "itapp.in": [2024], "login.barracuda.com": [1707], "*.brainsonic.com": [2289], "debian.websterwood.com": [18251], "it.gov-murman.ru": [20293], "compte-usager.montpellier3m.fr": [10609], "realt.rbc.ua": [21592], "mercurial-scm.org": [10300], "agro.permkrai.ru": [21390], "micropartsusa.com": [10391], "naukrirecruiter.naukri.com": [11146], "formalyzer.com": [16703], "gekko.spiceworks.com": [15338], "www.gerv.net": [6543], "mysitemyway.com": [10885], "abcd.abuledu.org": [19044], "www.danielmiessler.com": [4136], "images.store.westlaw.com": [18312], "redirect.sknt.ru": [21851], "classicland.co": [2024], "pda.rg.ru": [21646], "boone.lol": [2024], "analytics.pirateparty.org.au": [12746], "byucom.ms": [2024], "*.terresoubliees.com": [16202], "static.adf.ly": [577], "report.fbk.info": [5691], "subsurface.hohndel.org": [3506], "dnainfo.com": [19857], "www.monex.co.jp": [10583], "leadershipcircle.stanford.edu": [15448], "my.avast.com": [1469], "wcip.hkjc.com": [20384], "s.flipboard.com": [5905], "turn.li": [2024], "onlineservice.netcologne.de": [11226], "patn.in": [2024], "ww206.smartadserver.com": [15049], "thejh.net": [8523], "earplay.io": [2024], "*.cloudera.com": [3300], "s.kvdl.com": [2024], "ru.flightradar24.com": [20119], "from.io": [2024], "go.wfryer.me": [2024], "shopc.at": [2024], "finance.yahoo.co.jp": [18730], "rok.land": [2024], "blog.profitbricks.com": [13176], "api.mailigen.com": [9901], "upplandsvasby.se": [17481], "levo.im": [2024], "stum.pt": [2024], "st.web.cern.ch": [2588], "quitter.se": [13424], "tort.anquan.org": [19204], "p.iivt.com": [12454], "jamesthebard.net": [8514], "myruck.us": [2024], "acs.law.hku.hk": [20387], "autodiscover.somerset.gov.uk": [15197], "merchants.groupon.com": [6953], "eao.sledcom.ru": [21858], "alanste.in": [2024], "bsimms.net": [2024], "t.abthorpe.org": [2024], "blog.act-on.com": [19054], "advertising.courant.com": [19699], "securedcontent.net": [14564], "help.x-cart.com": [18583], "www.podcasts.it.ox.ac.uk": [17359], "vertceri.se": [2024], "www.gymaesthetics.de": [20328], "tele.lansp.ru": [20781], "www.anarplex.net": [1034], "up.nytimes.com": [11041], "gcloud.civilservice.gov.uk": [19601], "support.euro.dell.com": [4317], "www.robustirc.net": [21663], "on.gdg.nz": [2024], "servercentr.al": [2024], "vlpblog.com": [2024], "a.ravenpine.com": [2024], "chat.livechatinc.net": [9497], "eleccionesrectorado.uniovi.es": [17282], "forums.linuxmint.com": [20852], "cdn.*.truenudists.com": [16847], "advancement.osu.edu": [11797], "sagepay.com": [14299], "landaire.net": [20779], "coopzeitung.ch": [3647], "service.cyberplat.ru": [3965], "cacert.com": [2534], "cx.hinckley-bosworth.gov.uk": [7415], "tde.bz": [2024], "wiggle.co.uk": [18380], "eshop.asus.com": [417], "voronezhskaya-obl.beeline.ru": [1778], "simplesharebuttons.com": [14888], "www.ventrachicago.com": [17699], "www.bitcoinaverage.com": [1994], "www.teac.co.jp": [15870], "kitepackaging.co.uk": [8935], "account.telphin.ru": [16170], "nic.es": [4666], "www.finansportalen.no": [5814], "www.degreeaudit.osu.edu": [11797], "api.wallstreetcn.com": [18057], "fweuro.pe": [2024], "invention.nasa.gov": [10909], "clss.link": [2024], "checksconnect.com": [7199], "www.dpfile.com": [19892], "m.treasury.gov": [16778], "hashcrack.org": [20345], "r24820194.sync.app.asana.com": [1265], "patterns.mol.org": [10521], "cache.youla.io": [22689], "developer.telesign.com": [22118], "space.st.uz": [21966], "kulebaki.startsmile.ru": [21980], "pchat.pw": [2024], "www.runtimeverification.com": [21695], "bravelyonward.com": [2312], "dev.openttdcoop.org": [12018], "sojoxo.me": [2024], "queer.to": [2024], "fs.liu.se": [9097], "id.socialreader.com": [15132], "supporterservices.amnesty.org.nz": [1011], "awpf.tocco.ch": [16600], "bostonglobemedia.com": [2254], "bs.serving-sys.com": [14687], "caringcommunity.cornell.edu": [3676], "www.exposingtheinvisible.org": [5505], "hlbrk.net": [2024], "spade.twitch.tv": [16961], "sii.watch": [2024], "www.docracy.com": [4609], "rj.bel.fi": [1536], "torrentfunk.com": [16652], "kickpu.sh": [2024], "www.izvestia.ru": [8419], "seekapply.to": [2024], "abild.es": [2024], "www.jrrt.org.uk": [8646], "www.acehotel.com": [525], "www.wrapbootstrap.com": [18562], "pw.cdn.gmru.net": [6329], "www.gweb.io": [7016], "www.shared.sx": [14734], "www.becu.org": [1535], "it.squat.net": [21955], "kineshma.beeline.ru": [1778], "templates.prediction.io": [13069], "animenewsnetwork.com": [19201], "stdy.pl": [2024], "go.letit3d.com": [2024], "my.nashnet.ua": [21087], "misadv.us": [2024], "urlsnip.co.uk": [2024], "secure.stage-gettyimages.nl": [6604], "www.hsbc.com.mu": [20429], "bbrush.me": [2024], "cbu01.alicdn.com": [853], "paoc.me": [2024], "causes.presscdn.com": [2918], "pwblink.co": [2024], "fdri.co": [2024], "shewa.ch": [2024], "go.workway.com": [2024], "ht-cdn.couchsurfing.com": [19696], "www.deepin.com": [4287], "realtimestats.com": [13686], "g.matho.co": [2024], "www.alpinelinux.org": [918], "wbsc.nl": [2024], "odkaz.youber.cz": [2024], "static.lequipe.fr": [20811], "zhenglanqi.jd.com": [8434], "vvsdialog.kmd.dk": [20740], "tilestream.ecc-platform.org": [4871], "ihart.la": [2024], "discovery.illinois.edu": [17346], "tubros.me": [2024], "growthhackers.com": [6963], "www.ukpayments.org.uk": [17050], "infv.it": [2024], "cceu.rocks": [2024], "craigeo.us": [2024], "networkcomputing.com": [11310], "www.yarcube.ru": [22669], "cdn.ghacks.net": [6307], "authors.spl.org": [2024], "aws-cache.vevocdn.com": [17566], "www.communicatelive.co.uk": [3501], "aurel32.debian.net": [4261], "sur.ly": [15707], "aniltj.us": [2024], "zamg.ac.at": [18879], "www.visionairlines.com": [17860], "adaptation.oxfordjournals.org": [12222], "mala.la": [2024], "fsadownload.ed.gov": [4881], "to.custcomm.net": [2024], "butler.software": [2024], "www.altimatewellness.com": [939], "cs.washington.edu": [17376], "us-business.kaspersky.com": [8820], "*.myregisteredsite.com": [10883], "www.bls.ch": [1552], "enterprisersproject.com": [5280], "uploads.www.gigya.com": [6641], "chemnitzer.linux-tage.de": [9412], "smartyield.smartstream.tv": [15064], "www.diningservices.wustl.edu": [18089], "chemicalsbeyond2020.adelphi.de": [635], "metrics.skype.com": [15003], "23andme.com": [100], "s.rezdy.net": [2024], "go.gpal.me": [2024], "verseone.com": [22445], "render-api-cn.worldofwarcraft.com": [18542], "4qinvite.4q.iperceptions.com": [20464], "www.decc.gov.uk": [19795], "my.greenqloud.com": [6902], "dagestan.beeline.ru": [1778], "www.modmyi.com": [10550], "cpa.io": [2024], "news.vsemetri.com": [22510], "joppp.biomedcentral.com": [1931], "secimg.vmmpxl.com": [17894], "*.wurfljs.com": [18574], "downey.illuminateed.com": [20494], "www.pdfcrowd.com": [12532], "www.favu.vutbr.cz": [17609], "cdn.vidyard.com": [17792], "www.survs.com": [15727], "my.johnshopkins.edu": [8626], "regonlineportal.activenetwork.com": [554], "www.myaffiliateprogram.com": [21060], "resinfo.org": [13865], "www.ar15.com": [396], "metrics.washingtonpost.com": [18086], "law.lexmachina.com": [9294], "html5.adsrvr.org": [688], "smschur.ch": [2024], "shop.esetnod32.ru": [4948], "www.state.gov": [17146], "jointventure.apple.com": [1151], "europaplus.ru": [20034], "homepages.thm.de": [15876], "munch.es": [2024], "www.linuxfr.org": [9425], "soiq.net": [2024], "theucguy.me": [2024], "mirakar.com": [10476], "lando.social": [2024], "sbox.it": [2024], "go.jce.do": [2024], "investor.twitterinc.com": [16967], "www.businessnews.com.au": [19478], "golfcourseindustry.com": [6807], "fgh.nl": [2024], "cimm.yt": [2024], "dmfj.tk": [2024], "s.ownzone.org": [2024], "www.linphone.org": [9403], "www.dailyinfo.co.uk": [4118], "navigation.1and1.co.uk": [71], "agile.am": [2024], "hbnd.org": [2024], "9or.ca": [2024], "www.npmjs.org": [11580], "www.shopmimigreen.com": [14783], "u.dileep.com.np": [2024], "staging.republic.ru": [21630], "s.joeyfoo.com": [2024], "bolagsverket.se": [2202], "nsk.sledcom.ru": [21858], "osmc.tv": [21299], "egmd.co": [2024], "daofile.com": [19756], "www.gcentral.biz": [6271], "s.weeker.org": [2024], "www.gsnmagazine.com": [6854], "www.rstudio.com": [13527], "malegislature.gov": [9730], "mydonate.bt.com": [1578], "synthetix.net": [15808], "tftmo.de": [2024], "rxl.io": [2024], "amr.oracle.com": [12116], "bwc.io": [2024], "workout.bz": [2024], "srlabs.co": [2024], "pizzaportal.pl": [21428], "www.bodleian.ox.ac.uk": [17359], "mularroya10.cps.unizar.es": [17441], "www.rbth.com": [21596], "d.responsabl.es": [2024], "cdn1.vox-cdn.com": [17939], "directory.middlemanapp.com": [20978], "mturk.com": [9819], "to.flipjam.me": [2024], "*.commoncriteriaportal.org": [3493], "c1.popads.net": [12949], "email.seznam.cz": [14705], "jason.so": [2024], "master.odoo.com": [11765], "cdimage.kali.org": [8786], "planetkde.org": [12805], "askleo.com": [1287], "www.webmail.earthlink.net": [4997], "web.cvs.savannah.gnu.org": [6337], "mwhip.us": [2024], "outreach.osu.edu": [11713], "direct.tescoassets.com": [16206], "www.aldi.fr": [357], "phgkb.cdc.gov": [19532], "*.mgid.com": [9752], "spanish.costarica.usembassy.gov": [22406], "bat.bing.com": [1926], "licensing.symantec.com": [15780], "ask.dxy.com": [19912], "foxrad.io": [2024], "rocka.by": [2024], "2.darkroom.shortlist.com": [14795], "lssalud.es": [2024], "admin2.mobile.de": [21001], "www.kuvalehdet.fi": [12163], "anglp.co": [2024], "wh.yslow.org": [2024], "hosting.pcug.org.au": [12260], "jacobhsu.tw": [2024], "www.darktrace.com": [19759], "openinventionnetwork.com": [11941], "mingyi.sogou.com": [15168], "mb.linuxlovers.at": [9446], "imagestash.org": [7987], "*.upxth.com": [17491], "www.ctunnel.com": [2702], "secure.xtwo.ne.jp": [18695], "businesswales.gov.wales": [6843], "j.andreapit.com": [2024], "www.internet2.edu": [8277], "www.webm.red": [22548], "www.oasis-open.org": [11644], "mode.mg": [2024], "corp.kaltura.com": [8790], "pwdr.li": [2024], "ankang.jd.com": [8434], "utepn.ws": [2024], "suttonhousingpartnership.org.uk": [22049], "www.opendata.ch": [21270], "brusimm.org": [2024], "fr.rsf.org": [13844], "dhaka.usembassy.gov": [22406], "ysza.in": [2024], "www.readme.io": [13668], "cgit.ndm9.net": [21099], "www.3questionsgetthegirl.com": [17804], "emails.x5.ru": [18590], "npt.im": [2024], "lrcinfos.com": [2024], "usguy.tokyo": [2024], "go.syahid.net": [2024], "autodiscover.sky.de": [14990], "image.email.argos.co.uk": [1214], "nvcl.co": [2024], "www.hummingbird.me": [7620], "*.roem.ru": [14001], "bms.edeka.de": [19953], "go.igal.org": [2024], "hotaisl.es": [2024], "hrbar.co": [2024], "utah.re": [2024], "sprng.io": [2024], "donate.unhcr.org": [17063], "weather.yandex.com.tr": [18740], "omesacr.tv": [2024], "bits.nad.me": [2024], "impv.in": [2024], "mpbio.com": [9797], "doctor.vutbr.cz": [17609], "www.spokane.wustl.edu": [18089], "conference2007.kde.org": [8735], "www.spectrumbusinessinsights.com": [15320], "forums.cpanel.net": [2667], "www.fastmail.fm": [5677], "path2pri.me": [2024], "jmp.fourtain.jp": [2024], "faq.mediamarkt.de": [20949], "cloud.sumtel.ru": [22031], "berre.bi": [2024], "steepandcheap.com": [15528], "funi.to": [2024], "ebar.com.ar": [2024], "g6.ro": [2024], "www.lbhf.gov.uk": [9078], "www.neowin.net": [11198], "ja.stackoverflow.com": [15424], "reporting.ligatus.com": [9356], "www.canon.com.cn": [2822], "marsoc.co": [2024], "at-work.me": [2024], "oembed.emojione.com": [5202], "kurgan.sledcom.ru": [21858], "c0.dk": [2024], "launchpad.37signals.com": [155], "sqrd.in": [2024], "www.g2crowd.com": [6273], "go.webhalal.cf": [2024], "ga.fir.im": [20106], "server4.web-stat.com": [18143], "cottage.ngs.ru": [21134], "zhongce.sina.com.cn": [14904], "download.my-chrome.ru": [21056], "mobileapptracking.com": [21002], "pic.accessify.com": [19049], "services.housing.berkeley.edu": [17329], "go.cramer.com": [2024], "btcbuy.info": [1579], "youtube.be": [18800], "adsupply.com": [598], "www.nextregister.com": [11401], "youtube.ba": [18800], "www.fastlane.nsf.gov": [11098], "fontmarketplace.com": [5968], "www.frallc.com": [5582], "www.samsungtechwin.co.kr": [14333], "ittraining.iu.edu": [8069], "www.shakespeare.osu.edu": [11797], "amrap.us": [2024], "board.carnegiescience.edu": [2867], "www.15mpedia.org": [47], "static.rasset.ie": [13631], "kbr.tpprf.ru": [22260], "auth.greenqloud.com": [6902], "moco.mp": [2024], "www.buddybuild.com": [19467], "www.wowinterface.com": [18484], "bmcpalliatcare.biomedcentral.com": [1931], "zone-h.org": [18993], "ngobas.org": [2024], "community.speed-dreams.org": [15321], "www-cache2.extensis.com": [5513], "martus.org": [10045], "dramauk.co": [2024], "to.jkohl.com": [2024], "Lyncdiscover.2kgames.com": [117], "tesglobal.com": [22126], "www.minilock.io": [10456], "bitcasino.io": [1957], "jblack.me": [2024], "i.alicdn.com": [853], "autodiscover.leeds.ac.uk": [17403], "defender411.us": [2024], "*.rebelmouse.com": [13700], "the-lost-world.friday.ru": [20175], "trac.xiph.org": [18667], "blogs.kennedy-center.org": [20703], "www.themesandco.com": [16412], "www.holderdeord.no": [7457], "lapha.ms": [2024], "www.unixstickers.com": [17439], "rovid.aiee.hu": [2024], "ogr.uillinois.edu": [17034], "manage.dynect.net": [4829], "www.extratorrentlive.com": [20058], "registrierung.springer-medizin.de": [15379], "accounts.itcs.umich.edu": [17354], "www.projectdent.com": [13183], "rezaa.li": [2024], "yrfree.be": [2024], "b.jc21.com": [2024], "goenergetix.com": [5240], "jli.st": [2024], "skyrckt.com": [2024], "planet.collabora.co.uk": [3418], "gearlab.osu.edu": [11797], "prj.be": [2024], "stopbadware.org": [15556], "jtg.io": [2024], "aneros.com": [1056], "tyumen.sledcom.ru": [21858], "www.hootsuite.com": [7497], "www.livestrong.org": [9528], "b2btagmgr.azalead.com": [19293], "ra.tpprf.ru": [22260], "myspc.ml": [2024], "exante.eu": [4985], "rostov.europaplus.ru": [20034], "*.gameswelt.net": [6422], "mech.tk": [2024], "cc94.co": [2024], "tracking.codecoon.com": [3363], "reports.zoho.com": [18984], "eecs-search.eecs.mit.edu": [9763], "access.ripe.net": [13953], "chapma.nu": [2024], "gzk.khabkrai.ru": [20709], "my.oops.org": [11933], "randl.ph": [2024], "s5.wlresources.com": [22604], "amaintf.sfu.ca": [14708], "123-reg.co.uk": [33], "entertainmentlogin.verizon.com": [17715], "pijnacker-nootdorp.nl": [11172], "cesarjes.us": [2024], "www.openmamba.org": [21276], "www.rockpapershotgun.com": [13991], "careers.amica.com": [999], "to.jshb.me": [2024], "qualcomm.com": [13378], "russian.bishkek.usembassy.gov": [22406], "pgi.com": [12278], "debconf6.debconf.org": [4257], "s.fapce.com.br": [2024], "cdn4.img.sputniknews.com": [21951], "status.coinfloor.co.uk": [3404], "i.freeporngif.com": [6122], "*.easily.co.uk": [5002], "marwo.co": [2024], "www.pdcnet.org": [12656], "shoebuy.com": [14775], "help.jd.com": [8436], "kascope.co": [2024], "www.pindrop.com": [21408], "entsupport.symantec.com": [15780], "tongchengguan.jd.com": [8434], "su.netbytes.com": [2024], "316space.harralmedia.com": [2144], "hivos.org": [7436], "treehousei.com": [16780], "secure.westernunion.com": [18310], "tt.gy": [2024], "www.indure.org": [7770], "secure.vispa.net.uk": [17867], "inzp.in": [2024], "www.qidian.com.tw": [13349], "www.freshapps.com": [6181], "laroche.starfishsolutions.com": [21977], "natz.net": [2024], "*.nationalgeographic.com": [11118], "yongzhou.jd.com": [8434], "www7.smartadserver.com": [15049], "ussco.com": [17308], "tag.cdnmaster.com": [19534], "guadec.org": [6373], "speech.leseweb.dk": [21930], "stamp.cm": [2024], "open.snssdk.com": [21884], "services.bristol.gov.uk": [19451], "www.thespartaninstitute.com": [15296], "see.msfc.nasa.gov": [10909], "supernova.lsm.lv": [20883], "*.visabuxx.com": [17850], "c2.rgstatic.net": [13481], "www.youtube.com.kw": [18800], "pmetrics.performancing.com": [12603], "www.my.commbank.com.au": [3480], "on.wgal.com": [2024], "aedrvt.majordomo.ru": [9914], "trade.cex.io": [2600], "d.camiel.co": [2024], "camtools.cam.ac.uk": [17332], "success.emssoftware.com": [19990], "cloud0.lchost.co.uk": [9080], "*.russia.ru": [14099], "jgy.cr": [2024], "agresearchmag.ars.usda.gov": [17299], "pe.godaddy.com": [6755], "services.amazon.es": [19175], "pamfax.biz": [12381], "rui.do": [2024], "www.adtmag.com": [330], "static.livestrongcdn.com": [9510], "bit.nyas.org": [2024], "spcala.com": [14218], "myyearbook.com": [10864], "fm.tl": [2024], "robotbd.lenovo.com.cn": [9266], "www.disqus.com": [4559], "lobnya.tpprf.ru": [22260], "drrl.me": [2024], "15.mvd.ru": [21055], "twin.sci-hub.bz": [14436], "surveys.ams.org": [367], "copie.me": [2024], "costco.com": [3695], "ovs.acunetix.com": [561], "masergy.akixi.com": [19129], "wb-sn.com": [2024], "www.kdab.com": [8732], "mabag.fr": [2024], "conns.ie": [2024], "*.globalwitness.org": [6699], "mobile.greyhound.com": [6929], "de.cdnetworks.com": [2574], "static5.uk.businessinsider.com": [2471], "www.turnkeylinux.org": [16912], "b.mpt.io": [2024], "acd.mic.io": [2024], "webmail.ferrara.linux.it": [9419], "www.drugscience.org.uk": [4771], "smack.co.uk": [15043], "blockscript.com": [2103], "zaifx.jp": [2024], "www.heerenveen.nl": [11172], "medicare.gov": [20953], "www.news.anthem.com": [19206], "bdvr.cz": [2024], "jenkins.mni.thm.de": [15876], "rp.baden-wuerttemberg.de": [19302], "mod.my": [2024], "www.cambridge.gov.uk": [19494], "vitamindcouncil.org": [17880], "rcuny.li": [2024], "mlmurph.com": [2024], "www.markng.co.uk": [10014], "www.freenode.net": [20164], "nursing.georgetown.edu": [6531], "go.pl.bbelements.com": [1742], "mersaidee.us": [2024], "ttk.ru": [16881], "gbgo.in": [2024], "manboo.st": [2024], "www.paddleapi.com": [12353], "connect.holyrood.com": [20393], "lenen.snsbank.nl": [14207], "www.eclipso.ch": [5041], "partner.domaining.com": [4656], "bmntsys.tm": [2024], "decd.co": [2024], "sv.theanarchistlibrary.org": [16290], "a772.g.akamai.net": [1152], "orsk.europaplus.ru": [20034], "hc2.humanclick.com": [9506], "photos.aircrack-ng.org": [794], "rwhy.es": [2024], "uptime4.me": [2024], "gopne.ws": [2024], "molehr.oxfordjournals.org": [12222], "www.k2s.cc": [8720], "altex.ro": [936], "www.clearlink.com": [3235], "www.nationalexpress.jobs": [11088], "ativismo.org.br": [1341], "www.clients.agava.ru": [765], "artemisinternet.com": [1255], "autistici.org": [1438], "necu.org": [11170], "dnc.org": [4050], "cbj.co": [2024], "autoconfig.yandex.com.tr": [18740], "www.convertexperiments.com": [19679], "www.gdata.de": [6272], "webdesign.stanford.edu": [15448], "ohmy.lv": [2024], "en-pl.dict.cc": [4442], "ipo.uchicago.edu": [17334], "de-ru.dict.cc": [4442], "www.iojs.org": [8332], "nublue.co.uk": [11599], "www.hipertextual.com": [20378], "paragonie.com": [12417], "l.tyang.im": [2024], "ndr.me": [2024], "sav.tempty.hu": [2024], "pleaseignore.com": [12849], "dvs.rsl.ru": [21686], "anas.cc": [2024], "bike2.me": [2024], "cas.richrelevance.com": [13927], "s19.cnzz.com": [3328], "xyx.hao123.com": [20339], "professionalsecuritytesters.org": [13172], "www.zb45.nl": [18845], "mensagem.es": [2024], "fastshoppingcart.com": [13411], "odod.info": [2024], "mrsmcnastys.com": [10714], "teknews.me": [2024], "www.anz.co.nz": [19211], "bkay.me": [2024], "test-www.car.com": [2839], "www.atagar.com": [1332], "www.danluu.com": [19755], "pycm.co": [2024], "ticketone.it": [16488], "ohiolink.edu": [11799], "static.a-ads.com": [260], "wotby.com": [2024], "l.seaway.edu.vn": [2024], "s.nullcraft.de": [2024], "ww.premiumlinkgenerator.com": [21487], "changping.jd.com": [8434], "isyne.us": [2024], "apparat.49gov.ru": [187], "vonuns-vonhier.migros.ch": [10417], "www.zonomi.com": [18997], "www.hboneplus.hu": [10969], "crtvlsy.ca": [2024], "www.doteasy.com": [4697], "amazon.com.au": [19171], "boligtxt.no": [2024], "fmhub.us": [2024], "exam.ignou.ac.in": [7956], "www.laptop.hu": [9167], "r24820997.sync.app.asana.com": [1265], "home.cnblogs.com": [19631], "humbl.es": [2024], "dica.online": [2024], "cdn2.rsc.org.uk": [13517], "secure-media.victoriassecret.com": [17759], "s1-www.yamedia.tw": [18734], "dittrich.link": [2024], "s.effectivemeasure.net": [5096], "*.gencat.cat": [6510], "hacking.ventures": [7140], "adfs.vutbr.cz": [17609], "dbrack.co": [2024], "nnn.is": [2024], "tdlab.co": [2024], "cruclick.us": [2024], "endsp.am": [2024], "aklamio.com": [812], "wayf.mit.edu": [9763], "hgyol.in": [2024], "sfsoc.us": [2024], "benjerrys.co": [2024], "trace.die.net": [4445], "dg50.mycdn.me": [10866], "anybots.com": [1113], "cla.to": [2024], "blocket.com": [2108], "mobil.yandex.com.tr": [18740], "*.www.champssports.com": [2998], "engine.adsupply.com": [598], "servedby.advertising.com": [713], "www.nsf.gov": [11098], "ww392.smartadserver.com": [15049], "blog.viglink.com": [17797], "admin.legislation.gov.uk": [20803], "gemer.korzar.sme.sk": [14198], "l.loslotos.com": [2024], "b-b.io": [2024], "profiles.tiki.org": [16520], "www.stickhet.com": [15541], "qinhuangdao.jd.com": [8434], "www.freitag.de": [6173], "don.l214.com": [20767], "www.bobcares.com": [2189], "norilsk.europaplus.ru": [20034], "www.vanessatorrivilla.com": [7976], "e-learning.naukri.com": [11146], "izkl.co": [2024], "gorill.as": [2024], "milc.ms": [2024], "asdashboard.stanford.edu": [15448], "www.dn.dk": [4045], "store.osmc.tv": [21299], "l.tokk.de": [2024], "cuenot.es": [2024], "www.zalando.no": [18877], "www.dnsquery.org": [4056], "colaboratory.jupyter.org": [8703], "glam.ps": [2024], "nva.org": [11134], "websitealive9.com": [18242], "vladimir.sledcom.ru": [21858], "bsrs.me": [2024], "cre8rmov.org": [2024], "roundcube.serveriai.lt": [14677], "try.jd.com": [8436], "space2u.com": [15273], "www.viceland.com": [22460], "bfpeo.pl": [2024], "www.bedis.eu": [1773], "abdn.am": [2024], "www.conversations.im": [3627], "documents-dds-ny.un.org": [17057], "womensmidlifehealthjournal.biomedcentral.com": [1931], "security.cpanel.net": [2667], "www.xato.net": [18634], "ftrsck.com": [2024], "access.edgar-online.com": [4884], "ww1.salford.gov.uk": [21721], "hipl.hnfe.vt.edu": [17825], "ppls.link": [2024], "pdog.me": [2024], "kaizencrossfit.com": [4011], "customlocation.here.com": [7325], "www.satoshilabs.com": [21734], "fressnapf.de": [6187], "wefightcensorship.org": [18117], "communities.intel.com": [8211], "l.fleur.ua": [2024], "www.manasource.org": [9953], "www.pethelpful.com": [21392], "zhonggongyc.taobao.com": [16015], "tkt.bz": [2024], "www.danblah.com": [4125], "flownative.com": [5926], "abuseipdb.com": [489], "*.niden.net": [11431], "global.wustl.edu": [18089], "fas.ohnward.com": [11804], "mdl2.udn.com": [17020], "ekwb.com": [4912], "www.euroradio.fm": [20037], "www.dizzyjam.com": [19850], "b9r.co": [2024], "trustnet.wellcome.ac.uk": [22559], "ltt.holyrood.com": [20393], "wigs.ly": [2024], "nmfc.es": [2024], "www.indymedia.org": [8090], "regpop.com": [2024], "tenon.com": [16183], "litle.com": [9482], "www.random.org": [13606], "git13.rostrud.ru": [21677], "epost.powertech.no": [13041], "11monthmba.info": [2024], "iatspayments.com": [7674], "spotlight-media.jp": [21947], "files.snstatic.fi": [14208], "careers.ptc.com": [21532], "www.wirral.gov.uk": [18461], "video38.0xdb.org": [10], "cisecurity.org": [2628], "ltsdo.it": [2024], "4uw.co": [2024], "s.cpx.to": [19709], "lacriticona.ourproject.org": [21314], "genua.de": [20230], "partner.archive-it.org": [1193], "skeletalmusclejournal.biomedcentral.com": [1931], "2nu.gs": [2024], "subscribe.theguardian.com": [16364], "rtax.criteo.com": [3798], "www.antifascistnetwork.org": [19208], "tricae.me": [2024], "zhihu.com": [18956], "oftc.net": [11659], "istem.engineering.osu.edu": [11797], "hitr.ch": [2024], "observatory.derbyshire.gov.uk": [19810], "wede.md": [2024], "www.utb.ru": [17538], "pscr.co": [2024], "eno.ug": [2024], "tudyma.cz": [2024], "brawl.in": [2024], "www.jobindex.dk": [8611], "www.sunshineweek.org": [15672], "mapping.scotborders.gov.uk": [14456], "dngranskar.dn.se": [19856], "ibittm.com": [2024], "booking.wokingham.gov.uk": [22606], "linkingyou.to": [2024], "catalog.yandex.by": [18739], "www.magnet.ie": [9878], "photos2.zillowstatic.com": [18965], "www.l2020.org": [9075], "envz.in": [2024], "wiki.mate-desktop.org": [9727], "rzphoto.de": [2024], "www.magicaffiliateplugin.com": [9873], "beobachtungen.dwd.de": [19911], "cdn.usertags.com": [17167], "zarrel.la": [2024], "timt.biz": [2024], "r4ms.co.uk": [2024], "x.dpstatic.com": [19893], "sciontag.com": [2024], "globalways.net": [6722], "www.sycom.co.jp": [15772], "iway.ch": [20615], "platformone.neustar.biz": [11320], "www.integrityglobal.com": [20546], "master.podseed.org": [12891], "krnr.net": [2024], "shop.marvel.com": [10047], "s0.hao123img.com": [20340], "a.alee.mx": [2024], "onlinechat.nic.cz": [11418], "www.whirlpool.net.au": [18339], "topcoder.com": [16633], "go.amcpny.com": [2024], "travel.thankyou.com": [16246], "images3.q8car.com": [13321], "bchnc.org": [2024], "jane.io": [2024], "ivantur.es": [2024], "www.ashampoo.com": [1273], "yfs.rocks": [2024], "kvack.org": [9060], "www.open.wien.at": [22588], "storage.googleapis.com": [6823], "www.foldingforum.org": [5963], "www.vanwinkles.com": [17642], "www.etarget.sk": [5362], "ww2.epeat.net": [4932], "intr.mx": [2024], "www.alumni.wustl.edu": [18089], "zenmate.pk": [18917], "zona.telecom.sk": [16155], "info.arte.tv": [19239], "talkable.com": [22092], "sakscanada.capitalone.com": [2831], "login.alpha.linode.com": [9401], "acnc.gov.au": [319], "www.motherpipe.co.uk": [10651], "www.xda-developers.com": [18598], "ne-brosay-menya.friday.ru": [20175], "szm.com": [15832], "bcnm.stanford.edu": [15448], "www.thefappening.sexy": [16350], "read.seas.harvard.edu": [7210], "happyfoto.at": [7193], "kaffee.migros.ch": [10417], "*.bishopinteractive.com": [1949], "www.dasource.ch": [4158], "washin.st": [2024], "cptl.pn": [2024], "www.trend.az": [22281], "cloudmagic.com": [3289], "mb-de.com": [2024], "www.thread.com": [16464], "s.zawanet.com": [2024], "vops1.us": [2024], "mss.empireblue.com": [19988], "hosting.fleetnetworks.net": [5891], "pqshibboleth.proquest.com": [13160], "to.libala.info": [2024], "flirt.badische-zeitung.de": [1632], "s4dl.co.uk": [2024], "my.domonet.ua": [19877], "piteo.us": [2024], "disabledgo.com": [4526], "mitsubishi.com": [10499], "war.susucow.com": [2024], "ww3.sinaimg.cn": [14910], "www.trusteer.com": [16864], "url.kiyong2.net": [2024], "perskamer.marktplaats.nl": [10034], "trustedcomputinggroup.org": [16862], "abandonpics.com": [2024], "www.sakhalin.info": [21719], "ptry.xyz": [2024], "mytischi.biglion.ru": [19375], "www.tdnam.com": [16054], "www.payconnect.net": [4885], "en.chessbase.com": [3073], "on.geeku.be": [2024], "servicedesk.ulteo.com": [17214], "*.cert-verbund.de": [2592], "huisk.es": [2024], "gemeentewestland.nl": [11172], "www.ovh.pt": [12205], "lmd.tf": [2024], "poolandspawarehouse.resultspage.com": [13875], "jw.refe.rs": [2024], "l.ptclinic.com": [2024], "warwick-castle.com": [18081], "www.openfmri.org": [12064], "techenclave.com": [16075], "merchants.livingsocial.com": [9530], "www.rpgmakerweb.com": [14054], "suva.usembassy.gov": [22406], "www.backbonesecurity.com": [1620], "www.dealchicken.com": [12662], "www.ovh.pl": [12205], "www.myprojects-proposals.ncl.ac.uk": [10926], "myaccount.lib.ncsu.edu": [11531], "clientportal.heanet.ie": [7267], "on.gucci.com": [2024], "pac.re": [2024], "static.adziff.com": [18960], "www.datenschutz.de": [17831], "dnipropetrovsk.o3.ua": [21219], "dowl.in": [2024], "static-origin.sascdn.com": [15049], "mdm.sc": [2024], "m.fanfiction.net": [5638], "pltfr.ma": [2024], "a.apadv.co": [2024], "img1.video.s-msn.com": [9808], "ndp.church": [2024], "support.easy-hebergement.fr": [5024], "cntz.nl": [2024], "savingplac.es": [2024], "garciniacambogiavitalmend.com": [6439], "umoja.un.org": [17057], "secure.aadcdn.microsoftonline-p.net": [10398], "omeo.alipay.com": [864], "bnkmd.co": [2024], "ezproxy.plsinfo.org": [12570], "n0where.org": [10900], "uniblue.com": [17269], "dagestan.kavkaz-uzel.ru": [20694], "www.fas.org": [5713], "jira.neos.io": [11196], "www.thesprawl.org": [15370], "www.statichukd.com": [7556], "go.vc.ru": [2024], "zendesk.get.no": [20237], "okcoin.com": [11665], "14day.site": [2024], "pepperdine.worldcat.org": [18536], "iris.ut.ee": [17148], "asus.jd.com": [8436], "ntid.rit.edu": [13493], "www.mixx.com": [10508], "jp.unionpay.com": [17281], "steps.play-asia.com": [12828], "d.nstrm.nl": [2024], "octorate.com": [11755], "support.kaspersky.com": [8820], "qurank.net": [13437], "t.carrera.ag": [2024], "read.amazon.in": [19177], "on.gurustop.net": [2024], "stuff.sh": [2024], "b.gatech.edu": [2024], "ahor.ro": [2024], "ads4bg.cf": [2024], "www.mechon-mamre.org": [10150], "uporovo.admtyumen.ru": [19082], "www.changecopyright.ru": [19559], "mdws.npscu.ca": [11533], "www.bauart.htwk-leipzig.de": [7596], "tampermonkey.net": [16002], "www.symphonyos.com": [22065], "httpwatch.com": [7102], "ly.anthstr.com": [2024], "stkat.es": [2024], "which.co.uk": [18336], "www.oyoony.de": [21329], "s.dime.media": [2024], "www.jamendo.com": [8512], "www.seedprod.com": [14611], "orafarm.com": [11694], "a.rehabs.pw": [2024], "etao.com": [4965], "online.aasc.vn": [2024], "bvam-stage.tokenly.com": [22229], "ugr.ucsc.edu": [17390], "test.kairo.at": [8782], "a.oup.com.mx": [2024], "forum.geogebra.org": [6522], "ikeapers.com": [2024], "mysql.legtux.org": [9241], "m-pathy.com": [9703], "asms.reachboarding.com": [21602], "aquiappartientvotrejournal.mediapart.fr": [10194], "trackbar-bap.navigator.web.de": [18146], "mtf.cern.ch": [2588], "www.myfreecams.com": [21065], "coas.tl": [2024], "biditbob.com": [1873], "s31.postimg.org": [13024], "gmechts.eu": [2024], "www.citrixonline.com": [3181], "kb.iu.edu": [8069], "www.advantagemedia.com": [702], "citywlan.komro.net": [8982], "edk.io": [2024], "syndication.twimg.com": [16949], "www.admission.com": [16495], "u.b24.am": [2024], "tech.aktuality.sk": [1507], "www.lincs.fr": [9093], "sook.io": [2024], "mrchbr.co": [2024], "epik.akixi.com": [19129], "www.bioelectronics.leeds.ac.uk": [17403], "packagecontrol.io": [12343], "www.checkdomain.de": [3053], "frbapp.com": [2024], "www.tortoisegit.org": [16666], "ziggo.com": [18961], "start.ubrr.ru": [17173], "hartcol.in": [2024], "insecta.shoes": [2024], "www.mstrok.ru": [21039], "sphn.us": [2024], "partner.path.com": [12485], "www.pixelated-project.org": [12773], "facebook.nl": [5612], "www.secdev.ca": [14521], "gulli.com": [20322], "*.netzguerilla.net": [11316], "smg.io": [2024], "www.pdfmerge.com": [12265], "38d.gs": [2024], "www.united-internet.de": [17295], "steppingout.stanford.edu": [15448], "hplusdigitalseries.com": [7084], "cboo.st": [2024], "l.jnn.gs": [2024], "unisys.co.jp": [17292], "mayday.us": [10117], "northkoreatech.org": [11536], "conservatives.com": [3592], "res.mail.qq.com": [13329], "pntg.net": [2024], "li.nux.ro": [21208], "khabkrai.ru": [20709], "mitei.mit.edu": [9763], "www.linuxforums.org": [9437], "030mag.de": [2024], "w3.anadolu.edu.tr": [1029], "savannah.vc": [14371], "al.st": [2024], "www.migrol-olio-combustibile.ch": [10413], "front.rg.ru": [21646], "admin.clarahost.co.uk": [3213], "*.stayfriends.ch": [15510], "www.500ish.com": [204], "blogmaintenance.talktalkbusiness.co.uk": [15994], "go.zhang.me": [2024], "go.scoh.gov": [2024], "shopapi.ranking.rakuten.co.jp": [13594], "url.cevux.com": [2024], "in-form-redaktion.ble.de": [19406], "descience07.carbonmade.com": [2844], "export.yandex.by": [18739], "*.jackimaging.com": [8492], "min.ndla.no": [11158], "kweed.co": [2024], "stu.do": [2024], "nttcoms.com": [11007], "canadapost.ca": [2807], "edg.im": [2024], "groupava2.mycdn.me": [10866], "safar.is": [2024], "*.myheritage.pl": [10875], "bediff.com.br": [1751], "blindseeker.com": [19408], "l.sgr.cc": [2024], "www.cnr.berkeley.edu": [17329], "www.legolanddiscoverycentre.ca": [9249], "www.novara.ie": [4500], "admin.sextoyfun.com": [14703], "shouji.tmall.com": [22222], "www.swale.gov.uk": [22056], "archive.li": [1194], "link.aebike.com": [2024], "r.gatech.edu": [2024], "blls.ie": [2024], "legolas-media.com": [9250], "krug.novayagazeta.ru": [21169], "m.nationalgrid.com": [11119], "zendylabs.com": [18925], "ucsf.edu": [17388], "yworks.de": [22663], "gt-us.co": [2024], "srd.simba.taobao.com": [16015], "copyninja.info": [19688], "collab.live": [2024], "longaccess.com": [9602], "jdale.us": [2024], "marsdd.it": [2024], "annonc.oxfordjournals.org": [12222], "chlomo.org": [3097], "rybinsk.biglion.ru": [19375], "p4.qhimg.com": [13347], "*.sifterapp.com": [11398], "vet.osu.edu": [11797], "za.effectivemeasure.net": [5096], "www.metoffice.gov.uk": [10319], "stats.pandora.com": [12389], "fndra.co": [2024], "w.grbz.jp": [2024], "topg.org": [22236], "www.americanancestors.org": [981], "www.popsci.com": [12956], "images.del.icio.us": [7919], "fcstr.com": [2024], "fewdplay.com": [2024], "xxi.li": [2024], "www.webnium.co.jp": [18228], "redcap.wustl.edu": [18089], "www.elpueblo.com": [5127], "u.ayd.jp": [2024], "www.richardandjudy.co.uk": [13930], "socialclub.rockstargames.com": [13997], "pskov.europaplus.ru": [20034], "zocalopublicsquare.org": [18981], "rockni.ca": [2024], "41.rkn.gov.ru": [13971], "bit2bit.us": [2024], "www.valuecommerce.com": [17630], "stirl.in": [2024], "www.nluug.nl": [10978], "itradecimb.com.my": [2618], "wwugo.com": [2024], "sgbk.co": [2024], "play-now.media": [2024], "www.rawgit.com": [13641], "i.hitravel.xyz": [2024], "bp.sgphotog.com": [2024], "1dwh.co": [2024], "r.whi.st": [2024], "titulospropios.uned.es": [17248], "fmg.fm": [2024], "rvn.us": [2024], "www.opnsense.org": [11692], "newyear.ideco.ru": [20480], "brightkidsnyc.com": [2344], "ixl.me": [2024], "ac.mediatemple.net": [10177], "privacytools.io": [13139], "upay.co.uk": [17468], "hl1x.uk": [2024], "adntokyo.gunosy.com": [7005], "select.social": [2024], "r.bujju.com": [2024], "licensing.sstaffs.gov.uk": [21964], "www.barter.vg": [1710], "chriscowley.me.uk": [3109], "paf.web.cern.ch": [2588], "pirogov.ru": [21421], "bashkortostan.auto.ru": [19276], "preactor.co": [2024], "permskiy-kr.beeline.ru": [1778], "*.shkb.ch": [20683], "dvnl.in": [2024], "www.safeshepherd.com": [14297], "d2e.co": [2024], "cpanel01.unimatrix.si": [22372], "ci.swift.org": [15752], "www.few.vu.nl": [17608], "pge.post-gazette.com": [12994], "www.7eer.net": [233], "tvingo.enaza.ru": [5222], "magazine.thehackernews.com": [16407], "buro.im": [2024], "*.atomic-clock.org.uk": [17203], "fr.cloudflare.com": [3284], "redmine.vpsfree.cz": [22506], "visitors.berkeley.edu": [17329], "www.arstechnica.co.uk": [19237], "skch.me": [14967], "pjb3.me": [2024], "*.skullsecurity.org": [14987], "avram.co": [2024], "bitcoinpool.com": [1995], "www.themoscowtimes.com": [22171], "catch.pt": [2024], "ui3.assets-asda.com": [19261], "get.mynewsdesk.com": [10882], "actiac.org": [19055], "sarahwoo.uk": [2024], "trpx.nyc": [2024], "xth.is": [2024], "www.northeastjobs.org.uk": [21157], "mlwx.co": [2024], "comviq.se": [3549], "x.xo321.com": [2024], "assets.qa.medicare.gov": [20953], "samsung-highlight.saturn.de": [21736], "fl.navs.me": [2024], "www.zh.ch": [22061], "theoutnet.com": [16375], "www.ais.by": [19126], "grantsandcontracts.wustl.edu": [18089], "whems.me": [2024], "pingone.com": [12715], "predb.me": [21482], "www.namescon.com": [21083], "vuub.in": [2024], "crazyte.ch": [2024], "mxtb.co": [2024], "charts.aastocks.com": [19037], "jai.buzz": [2024], "ui.ptlogin2.qq.com": [13329], "www.honeybeeloans.com": [7493], "forum-lw-2.xda-cdn.com": [22647], "homz.co": [2024], "kiwi.cr": [2024], "sbw.im": [2024], "*.gngr.info": [6741], "citrix.com": [3180], "jessiefit.com": [2024], "trucks.auto.ru": [19276], "tw.adsmx.co": [2024], "*.securityexperten.com": [14590], "exas.co": [2024], "srg.vg": [2024], "account.lego.com": [9082], "text.westlaw.com": [18312], "fiel.in": [2024], "beta.pro-linux.de": [13155], "anand.am": [2024], "my.netviewer.com": [11299], "ajcp.oxfordjournals.org": [12222], "navr.es": [2024], "*.one.org": [11676], "tiki-toki.com": [16519], "shanghai.legolanddiscoverycenter.cn": [9249], "go.revaul.com": [2024], "on.koat.com": [2024], "cyg.me": [2024], "tdog-short.link": [2024], "mduu.de": [2024], "ncta.com": [10930], "secure-dcdn.cdn.nimg.jp": [11450], "www.kis.hosteurope.de": [7524], "comjnl.oxfordjournals.org": [12222], "issues.opendnssec.org": [11970], "swars.jp": [2024], "www.hava.yandex.com.tr": [18740], "ocean.sci-hub.la": [14436], "www.migrosmagazin.ch": [10418], "www.jabber.dk": [8484], "sdp.tw": [2024], "voo.st": [17932], "roundcube.ouvaton.coop": [12187], "gr4m.com": [2024], "blog.coveralls.io": [3727], "r24820771.sync.app.asana.com": [1265], "cybertip.ca": [3970], "www.net.bme.hu": [1556], "amazon.es": [19175], "b.dns9.me": [2024], "*.blogspot.nl": [2127], "*.blogspot.no": [2127], "w.jianguoyun.com": [8580], "on.bc.edu": [2024], "r24820169.sync.app.asana.com": [1265], "proview.thomsonreuters.com": [16456], "pa.ag": [2024], "www.telltalegames.com": [16168], "growery.org": [6962], "italian.alibaba.com": [857], "dpv.yanao.ru": [22665], "www.friendster.com": [6197], "957.be": [2024], "antioch.illuminateed.com": [20494], "noveo.ru": [2024], "www.love2d.org": [9636], "socialurl.co": [2024], "www.ixmaps.ca": [20621], "nyny.lv": [2024], "spout.ussg.indiana.edu": [8070], "newtalk.tw": [21131], "mattrhod.es": [2024], "fr.isidewith.com": [20466], "nexogy.akixi.com": [19129], "recipe.ly": [2024], "r.frog260.com": [2024], "raynersw.com": [13646], "dbc.im": [2024], "www.rafflecopter.com": [13585], "bujoi.me": [2024], "www.omaze.com": [11828], "www.thn.li": [15877], "www.remoteapp.windowsazure.com": [18434], "crap.leocav.net": [2024], "www.reelvidz.com": [13769], "xorcode.net": [2024], "www.rbc.ua": [21592], "fltz.co": [2024], "moat.com": [10524], "www.rutracker.nl": [21702], "metapress.com": [10324], "linuxptp.nwtime.org": [11306], "blog.compete.com": [3522], "rxin.fo": [2024], "tassl.cz": [2024], "kennb.org": [2024], "media.jd.com": [8436], "go.wod.by": [2024], "rm.recs.richrelevance.com": [13927], "reallythe.re": [2024], "www.univention.de": [17315], "www.publicintelligence.net": [13256], "assets.jimstatic.com": [8585], "content.www.rspca.org.uk": [13521], "www.pnp4nagios.org": [12305], "elva.mapillary.com": [9980], "granne.me": [2024], "www.hertz.es": [7364], "dunya.compmusic.upf.edu": [17471], "www.youtube.sa": [18800], "finam.ru": [20099], "support.adform.com": [639], "www.youtube.se": [18800], "navy.gov.au": [14049], "www.youtube.sg": [18800], "cmsdoc.cern.ch": [2587], "smartclassroom.iwi-i.info": [20617], "obuchenie.golosinfo.org": [20286], "hellomer.ch": [2024], "www.parents.wustl.edu": [18089], "*.unistra.fr": [17367], "histv.co": [2024], "storage3.censor.net.ua": [19538], "wsyste.ms": [2024], "daha.net": [15156], "recruiting.jobvite.com": [8616], "poker24.link": [2024], "domaincoin.net": [4645], "fotoservice.mediamarkt.de": [20949], "lang.ml": [2024], "premium.bookboon.com": [2213], "esur.in": [2024], "ajude.cc": [2024], "www.mzv.sk": [15037], "webmail.hinxton.wellcome.ac.uk": [22559], "mqq-imgcache.gtimg.cn": [6974], "testing.edu.rosminzdrav.ru": [21674], "tlp.link": [2024], "pochtabank.ru": [12876], "www.georgetown.edu": [6531], "www.vesica.ws": [17737], "mosr.sk": [15037], "locuspri.me": [2024], "s.otos.be": [2024], "mooddisorders.ca": [10612], "m.rte.ie": [13530], "empeopled.com": [5206], "bits.indiv.io": [2024], "tempo30.vcd.org": [17560], "42na.de": [2024], "symc.ly": [2024], "directlyrics.com": [19845], "roncan.net": [2024], "groseille.boum.org": [2261], "hybrid.autobytel.com": [1449], "10j.co": [2024], "www.liv.sparebank1.no": [21922], "go.mygg.xyz": [2024], "podsincolor.xyz": [2024], "l.j2w.fr": [2024], "sqlserver.qcloud.com": [13346], "vanwa.co": [2024], "humanaction.com": [7611], "asl19.org": [410], "www.buffalo.edu": [17382], "cleanupbrita.in": [2024], "citizen-times.com": [1274], "naes.co": [2024], "www.bookmyname.com": [2215], "www.littler.com": [9485], "*.peerius.com": [12556], "float.ly": [2024], "infrastructure.fedoraproject.org": [5716], "origin-www.hertz247.com": [7371], "lanc.es": [2024], "sr.se": [15738], "a.ixq.com.tw": [2024], "the.fact.is": [2024], "pzip.it": [2024], "www.eastlothian.gov.uk": [5005], "www.rnsfpw.net": [3484], "bknpt-web5.bknpt.usc.edu": [17366], "l.adalia.ma": [2024], "get.mogo.ca": [2024], "pirate-proxy.info": [22174], "www.appuio.ch": [1168], "nvc.ro": [2024], "click.mz.simba.taobao.com": [16015], "i.tsit.eu": [2024], "thecable.foreignpolicy.com": [6002], "www.thepiratebay.xn--q9jyb4c": [22174], "*.mixpanel.com": [10506], "staffstore.canon.com.au": [19505], "beta.jamtrackcentral.com": [8509], "loan.mybank.cn": [21062], "www.adm.cuhk.edu.hk": [2704], "static.liverail.com": [9507], "fullstory.com": [6230], "pythonhosted.org": [13317], "ss1.sinaimg.cn": [14910], "daccess-ods.un.org": [17057], "eservice.spdb.com.cn": [21925], "f.root.cz": [14020], "kkg.buzz": [2024], "mail.ntv.ru": [21197], "plymouth-self.achieveservice.com": [19051], "sumaz.in": [2024], "sjpr.co": [2024], "wii.pcf.wustl.edu": [18089], "tpb-proxy.top": [22259], "www.smuxi.de": [15080], "www.ch.bme.hu": [1556], "talk.google.com": [6818], "nhr.me": [2024], "hiig.de": [7051], "www.facebook.be": [5612], "www.pittsburghzoo.org": [12763], "police.uic.edu": [17321], "go.tomick.pl": [2024], "national-lottery.co.uk": [11110], "eis.ftc.gov": [5710], "sr2.liveperson.com": [9506], "redir.centrum.sk": [19548], "embed.gettyimages.com": [6604], "findretros.com": [5823], "www.ebuzzing.com": [5035], "www.coursetalk.com": [3717], "mc.logmeinrescue.com": [9561], "www.respectourprivacy.com": [13870], "cfdfiles.sos.wa.gov": [14215], "www.versacart.com": [17722], "spb1.rosevrobank.ru": [14024], "webproxy.stealthy.co": [21986], "msd.me": [2024], "*.spylog.com": [15394], "cs.3.boardgamearena.com": [2182], "www.hhg.osu.edu": [11797], "kipstuff.com": [2024], "bigscorp.com": [2024], "hetzner.de": [7376], "*.mci4me.at": [10139], "lbcube.ust.hk": [22412], "irs.gov": [7821], "huevents.harvard.edu": [7211], "*.statuspage.io": [15503], "mx.airbites.net.ua": [19120], "logo.taobao.com": [16015], "sugoid.es": [2024], "diesondersendung.de": [10322], "tjk.photo": [2024], "mail4kidz.eu": [9892], "novomoskovsk.startsmile.ru": [21980], "cas.strode-college.ac.uk": [15597], "mapi.sitelock.com": [14934], "bit.gibo.co.uk": [2024], "sallie.stanford.edu": [15448], "minstk.com": [2024], "chiphell.com": [3091], "yo.livinggym.tw": [2024], "support.ptc.com": [21532], "mobile.hitta.se": [20381], "grp10.ias.rakuten.co.jp": [13594], "downloads.theforeman.org": [22152], "www.oag.com": [11641, 11642], "acemission.gsfc.nasa.gov": [10909], "loginza.ru": [9570], "community.oxforddictionaries.com": [12223], "www.parcelforce.com": [12426], "www.transmissionbt.com": [16751], "femaleoffenders.holyrood.com": [20393], "s.janke.im": [2024], "theco-op.ca": [2024], "en.chaturbate.com": [3040], "neostuff.com.mx": [2024], "vpn.weather.gov": [18130], "kjo.hn": [2024], "*.typography.com": [16987], "shaklee.com": [14715], "thump.vice.com": [17754], "ix.br": [20619], "zaujalo.me": [2024], "www.openmpt.org": [11987], "www.doctortrusted.org": [4613], "yuanan.jd.com": [8434], "ms.urel.feec.vutbr.cz": [17609], "speedclicks.ero-advertising.com": [5335], "airbnb.no": [793], "it-agenten.com": [7840], "usit.co": [2024], "spinpo.st": [2024], "a.thesash.me": [2024], "x20.es": [2024], "gotil.la": [2024], "supertl.me": [2024], "ixit.cz": [7881], "btfm.nu": [2024], "twe.axonify.com": [1502], "gvntube.com": [6376], "shs.wustl.edu": [18089], "blog.oo-software.com": [11929], "westcapitolwatch.westlaw.com": [18312], "mypirateproxy.com": [22174], "de.aliexpress.com": [854], "*.osvdb.org": [11715], "twimgs.com": [16086], "h.kabam.com": [2024], "flo.cno.org": [3424], "2ww.ipleak.net": [20571], "cl.ick.me": [2024], "diasp.de": [4433], "www.securabit.com": [14541], "go.interone.de": [2024], "hls.ted.com": [15871], "*.abr.gov.au": [1408], "bbry.in": [2024], "oesar.osu.edu": [11797], "www.nfc.mastercard.ru": [10065], "www.physics.ox.ac.uk": [17359], "ta.media": [2024], "*.sonic.net": [15206], "cnslt.biz": [2024], "masinfo.dk": [2024], "sf.se": [14168], "s.intsig.net": [20557], "servizi.tiscali.it": [16572], "m.kalwedo.com": [2024], "cdn.jsdelivr.net": [8668], "benefits.ornl.gov": [11730], "sbeacon.sina.com.cn": [14904], "members.sofn.com": [15153], "onlinebiz.co": [2024], "tva1.sinaimg.cn": [14910], "l.ifeli.me": [2024], "golive123.tv": [2024], "www.eliotsocietyvolunteer.wustl.edu": [18089], "www.ire.org": [20577], "www.internetdefenseleague.org": [8281], "bslw.it": [2024], "semaphoreapp.com": [21778], "it.engineering.illinois.edu": [17346], "6-instant.okcupid.com": [11809], "cas01.autoscout24.ch": [1457], "dave.pt": [2024], "blog.infogr.am": [8111], "football-nfl.lemonde.fr": [9204], "cfs-ca.co": [2024], "postdispat.ch": [2024], "www.izea.com": [7884], "migipedia.migros.ch": [10417], "livehelpvm01.ikoula.com": [7966], "www.bbva.es": [1744], "dgrab.net": [2024], "de.pycon.org": [13307], "clientservices.quinstreet.com": [13419], "appgratis.com": [1135], "advertising.amazon.com": [960], "mtest.gatewaytohomechoice.org.uk": [20208], "go.5rooms.com": [2024], "my.qrsolutions.com": [13331], "preprod.it.hispeed.ch": [22386], "quiz.risingstack.com": [21654], "auze.ro": [2024], "www.historical-look.org": [7421], "hi-eg.com": [7387], "nluug.nl": [10978], "registrierung.gmx.net": [6330], "www.digitalforest.co.jp": [11007], "product-images.imshopping.com": [7767], "tagboard.com": [22085], "www.yilan.io": [22680], "arkly.ie": [2024], "g.fastcompany.net": [5670], "wincent.com": [18426], "wlfe.co": [2024], "dlisted.com": [4584], "salattu.huuto.net": [20449, 20450], "www.masspirg.org": [9724], "profintel.ru": [21507], "vsljr.nl": [2024], "i.adamevers.com": [2024], "eshop.rct.cuhk.edu.hk": [2704], "flwx.org": [2024], "likino-dulevo.beeline.ru": [1778], "dev.eclipse.org": [5040], "www.scenemusic.net": [14403], "www.der-preis-jaeger.de": [4365], "frieinntekter.regjeringen.no": [13800], "lif.to": [2024], "stu.gs": [2024], "exp.st": [2024], "sn.elsl.ooo": [2024], "discovercarlisle.co.uk": [19846], "asc.osu.edu": [11797], "in.sane.pro": [2024], "umassathletics.com": [17352], "aue.rs": [2024], "git.qubes-os.org": [13394], "*.govexec.com": [1342], "nordi.cc": [2024], "nordi.ca": [2024], "j.mp": [8421], "sgnr.co": [2024], "pst.mr": [2024], "cmhig.in": [2024], "i4.services.social.s-msft.com": [14114], "es.prepaid-phones.t-mobile.com": [15837], "chillingeffects.org": [3082], "panel.phpnet.org": [12281], "*.sslcert35.com": [15413], "dmreg.co": [2024], "pbst.cc": [2024], "yomom.ma": [2024], "letsgetin.unicef.org.uk": [17068], "ucfnews.com": [2024], "jmay.es": [2024], "ddev.co": [2024], "community.remotestorage.io": [13823], "issafrica.org": [7839], "hostmonster-cdn.com": [7544], "ldne.ws": [2024], "tvbrowser.org": [15948], "www.jsonresume.org": [8471], "skorer.im": [2024], "www.rockstargames.com": [13997], "www.alionet.org": [863], "geektimes.ru": [6490], "batorama.eu": [2024], "www.astrobotic.com": [1326], "dfat.ly": [2024], "www.yourbittorrent.com": [18814], "*.foebud.org": [5957], "*.scribol.com": [14477], "bleepwin.bittorrent.com": [1974], "artjournal.me": [2024], "pack.resetthenet.org": [13862], "api.auto.ru": [19276], "www.meetmecorp.com": [10225], "personal.xively.com": [18669], "*.packtpub.com": [12349], "ptbk.co": [2024], "static.clmbtech.com": [19619], "vologda.biglion.ru": [19375], "youpies.fr": [2024], "domeny.sk": [19875], "akhave.in": [2024], "claimformsplus.com": [3209], "d.decoconut.com": [2024], "on.bobr.com": [2024], "www.newsreview.com": [11380], "www.ethicalhacker.net": [5369], "node51.mycelium.com": [21063], "www.gamedev.net": [6396], "blogs.oasis-open.org": [11644], "support.sugarsync.com": [15648], "bergdorfgoodman.com": [15916], "www.sportxx.ch": [15362], "vp.teamgnh.it": [2024], "bldss.bl.uk": [2358], "resnet.ucsd.edu": [17012], "*.macpaper.com": [9714], "linac4.web.cern.ch": [2588], "dealerportal.autotrader.co.uk": [19280], "support.nature.org": [11141], "seatzy.co": [2024], "www.secureconnect.com": [14554], "arrivabus.co.uk": [1241], "imamat.oxfordjournals.org": [12222], "2cmu.tk": [2024], "www.ics.isy.liu.se": [9097], "ee.1688.com": [51], "prrm.ws": [2024], "just-eat.es": [20671], "a.wpgpho.to": [2024], "file.tygem.com": [22334], "oauthplay.azurewebsites.net": [1509], "de.iglesia.net": [2024], "i3.zst.com.br": [19015], "www.szm.com": [15832], "nbc4i.co": [2024], "s.himayge.com": [2024], "lvs.truehits.in.th": [16846], "btfit.me": [2024], "everydayrewards.com.au": [18511], "tweakimg.net": [16939], "www.kiyoh.nl": [20729], "clergyproject.org": [3236], "gibr.in": [2024], "*.the-group.net": [16363], "muns.ch": [2024], "2roads.com": [16970], "cws.delfi.lv": [19800], "spn.rocks": [2024], "it.rbth.com": [21596], "fnbyts.co": [2024], "smap_op.apps.nsidc.org": [11100], "breakng.duoshuo.com": [19906], "www.tinkernut.com": [22211], "grist.org": [20309], "peo.us.com": [2024], "virusbtn.com": [17843], "konzern.oebb.at": [21230], "www.fredrikolofsson.com": [20152], "www.homeandaway.hsbc.com": [7090], "www.secwiki.org": [14523], "www.sendvid.com": [14646], "sql5.endora.cz": [5237], "a.s.coop": [2024], "majw.co": [2024], "h3.ifengimg.com": [20487], "d.devsgoons.com": [2024], "my.markerly.com": [2024], "azwine.co": [2024], "cosmo.org": [3690], "www.yokl.com": [18782], "drotek.io": [2024], "www.sc.wustl.edu": [18089], "wnut.in": [2024], "socialbakers.com": [15135], "*.redbull.co.uk": [13726], "on.ribblefm.com": [2024], "bee83.me": [2024], "s6.gismeteo.pl": [20252], "getkeepsafe.com": [6579], "bugs.acpica.org": [320], "csync-tmk.smartadserver.com": [15049], "l.j7.no": [2024], "downloadhelper.net": [4721], "hafner-ips.com": [7151], "www.outofcontrol.ca": [12180], "www.mefco.hsbc.com": [7090], "eors.us": [2024], "avinc.com": [1473], "tas.to": [2024], "1io.io": [2024], "redb.tv": [2024], "face.finance.qcloud.com": [13346], "www.iptorrents.com": [7802], "mikei.sh": [2024], "skanetrafiken.se": [14962], "betts.com.au": [1860], "sharepoint.utm.edu": [17426], "www.ictrecht.nl": [7697], "ares.wustl.edu": [18089], "spoon.graphics": [2024], "gab.mn": [2024], "www.audentio.com": [1376], "midphase.com": [10409], "img.shoppingshadow.com": [14791], "micropython.org": [10384], "hudsonsbay.capitalone.com": [2831], "i.wms.com": [2024], "coruscant.stalkr.net": [15437], "rch.cm": [2024], "rlyb.us": [2024], "www1.lansforsakringar.se": [9164], "control.vps.net": [17596], "datalink2.labcorp.com": [9139], "wrhstol.com": [2024], "ess.erp.johnshopkins.edu": [8626], "ekb.te-st.ru": [22103], "ux.moz.com": [21029], "freemail.sebijk.com": [7473], "cask.to": [2024], "sidn.nl": [14180], "assemblyseries.wustl.edu": [18089], "www.myitworks.com": [7860], "zooku.ro": [18999], "*.audienceiq.com": [1382], "m.paralympic.org": [21343], "6.asset.soup.io": [15235], "assets.taobaocdn.com": [16016], "wpin.it": [2024], "lp.tms.pl": [22224], "www.gfisoftware.de": [6302], "guizhoufp.jd.com": [8434], "kevinzullo.com": [2024], "bioinfo.pl": [1929], "www.openpublicservices.cabinetoffice.gov.uk": [2716], "movabletype.com": [10668], "harita.yandex.com.tr": [18740], "img05.rl0.ru": [13972], "www.victoriaforms.com": [22461], "hlweb.co": [2024], "cbp.gov": [2537], "verify.cpanel.net": [2667], "s.t4m.de": [2024], "leetway.com": [9239], "ssl1.washingtonpost.com": [18086], "sso.upo.es": [17479], "s0.mt-cdn.net": [9812], "go.link.io": [2024], "7mnpep.com2.z0.glb.clouddn.com": [6476], "ad4.liverail.com": [9508], "www.oisshome.wustl.edu": [18089], "ageba.se": [2024], "s23.postimg.io": [13024], "nyaa.se": [11635], "turbo.rent": [2024], "www.ovirt.org": [11728], "four.cdn.directmailmac.com": [4515], "dashboard.mileiq.com": [10429], "dorian.mx": [2024], "hgr.me": [2024], "dnide.dn.se": [19856], "status.voxmedia.com": [17941], "ighq.us": [2024], "*.www.freelancer.com": [6154], "bigsandy-kctcs.edusupportcenter.com": [19962], "nancysgonegreen.com": [11065], "blossom.co": [2136], "drvlsinst.me": [2024], "projects.zoho.com": [18984], "strob.it": [2024], "assets.growingio.com": [20312], "up.jobs": [22385], "pvmentchvser.co": [2024], "my.devme.pw": [2024], "an.avast.com": [1469], "api.taringa.net": [16027], "www.rbwmcarshare.co.uk": [21598], "wtba.tips": [2024], "m.german.alibaba.com": [857], "cdn.okcimg.com": [11808], "*.solution.weborama.fr": [18231], "www.portmorgan.com": [12978], "gfisoftware.de": [6302], "buzzfocus.com": [2490], "55.rkn.gov.ru": [13971], "equt.org": [2024], "www.bluestargolf.com": [8443], "go.nrma.com.au": [2024], "app.livechatinc.com": [9492], "m.imdb.com": [7760], "asset-f.soupcdn.com": [15236], "www.e-estonia.com": [4832], "dkp.link": [2024], "shm.bz": [2024], "vpn.usainteanne.ca": [22404], "tub.nl": [2024], "zhoub.in": [2024], "m.lm.imhd.sk": [8004], "editor.fuelcdn.com": [6221], "ckm.bz": [2024], "gatherstat.ideco.ru": [20480], "git23.rostrud.ru": [21677], "www.recyclenow.com": [13715], "expan.me": [2024], "at.amgdgt.com": [995], "status.dwolla.com": [4809], "makeagif.com": [20912], "hotrod.ly": [2024], "pcbooking.bradford.gov.uk": [2282], "start.ulule.com": [17224], "danzappone.com": [16397], "igwd.ml": [2024], "bpa.lc": [2024], "primus.com": [13111], "yun.baidu.com": [1641], "tmrne.ws": [2024], "*.cpsc.gov": [2663], "madewithcode.com": [9856], "phpdoc.org": [12684], "thu.gg": [2024], "jonberry.me": [2024], "tbwa.vn": [2024], "vnpr.gr": [2024], "www.writelatex.com": [18565], "gdc75.me": [2024], "prld.pl": [2024], "cvip.youku.com": [18804], "skptc.us": [2024], "searchenginejournal.com": [21763], "chpydbs.site": [2024], "cdn.avanti247.com": [1467], "qsna.co": [2024], "annotum.org": [19203], "www.plymouth.ac.uk": [12873], "www.federatedinvestors.com": [5711], "www.ctc.hku.hk": [20387], "www.jres.org": [8467], "www.tdi.ox.ac.uk": [17359], "wiki.hackerspace.pl": [7136], "tune.yandex.com": [18742], "www.gvntube.com": [6376], "www.cco.caltech.edu": [2771], "www.perle.com": [12607], "toutiao.1688.com": [51], "mysecureconnect.com": [10828], "www.mpi-soft.mpg.de": [10100], "techbase.kde.org": [8735], "sdz.to": [2024], "www.shagaholic.com": [832], "jss.t.sinajs.cn": [14909], "torrent411.com": [15847], "simcity.com": [14871], "rsne.ws": [2024], "apps.crossref.org": [3812], "payments.parkingeye.co.uk": [12437], "r.duckduckgo.com": [4785], "ofert.de": [2024], "miss.ml": [2024], "posteshop.it": [13014], "cornell.edu": [3676], "m.anthem.com": [19206], "www.jumpeyecomponents.com": [8690], "new-www.llvm.org": [9103], "s-passets-ec.pinimg.com": [12724], "mail.virginmedia.com": [17822], "yfind.co": [2024], "smltrn.uk": [2024], "www.underhandedcrypto.com": [17242], "publicidade.brasil247.com": [2308], "evo.shoryuken.com": [14798], "game.gtimg.cn": [6974], "go.blight.be": [2024], "tvn.digital": [2024], "www.esbie.ie": [4944], "cig.rs": [2024], "hosting.vyu.im": [2024], "myservice.erewash.gov.uk": [20011], "partners.nvidia.com": [11022], "sputniknews.com": [21951], "support.cuteness.com": [19744], "svrflr.co": [2024], "v.cdn.vine.co": [17807], "www.choopa.com": [3104], "atmsbookings.staffordshire.gov.uk": [15435], "teleport2001.ru": [22117], "i2.piimg.com": [16509], "www.repl.it": [21628], "www.taiget.ru": [22088], "bookshop.theguardian.com": [16364], "fsup.net": [2024], "pur.st": [2024], "opst.co": [2024], "www.acttea.ut.ee": [17148], "www.antispam-ev.de": [1104], "www.dayz.com": [4225], "cdme.engineering.osu.edu": [11797], "neca.io": [2024], "fisz.bls.ch": [1552], "open.alibaba.com": [857], "static1.marvelstore.com": [10049], "parkdodg.us": [2024], "b0.thejournal.ie": [16299], "gcar.mx": [2024], "aha.to": [2024], "hk-en.norton.com": [11545], "movienot.es": [2024], "www.crowdsupply.com": [3821], "portal.servers.ru": [21788], "cart.godaddy.com": [6755], "wri.ting.tips": [2024], "a.assemblo.com": [2024], "jkpf.nl": [2024], "translate.apan.org": [388], "apisandbox.msdn.microsoft.com": [10396], "help.encoding.com": [5224], "go.praber.com": [2024], "engine.adzerk.net": [726], "blog.root.cz": [14020], "mlpassword.gmu.edu": [6529], "l.savas.io": [2024], "m-cpn.com": [2024], "sam.msi.com": [9806], "onzell.nl": [2024], "ssl-ds.static.rtbf.be": [14063], "www.intecca.uned.es": [17248], "visit.cern": [2588], "mltcreative.co": [2024], "fandango.com": [5642], "trop.ac": [2024], "kosam.ws": [2024], "go.gaiar.ru": [2024], "pikpok.com": [12704], "mipay.com": [10473], "leadership.uchicago.edu": [17334], "pro.realty.mail.ru": [9891], "adwork.ga": [2024], "stavanger2015.honeynet.org": [20401], "www.ettus.com": [5385], "meri.tv": [2024], "get.typo3.org": [15959], "crm.al": [2024], "ghjim.info": [2024], "ce.baidu.com": [1641], "osvdb.org": [11715], "paperless.ly": [2024], "elbs.me": [2024], "www.zone-h.org": [18993], "ads.perfectaudience.com": [12591], "leijo.net": [2024], "kcd.bz": [2024], "m.quote.comparethemarket.com": [3513], "online.fahrplan.zvv.ch": [22733], "bundespolizei.de": [2446], "4www.play-asia.com": [12828], "mtsilver.co": [2024], "s.mg.co.za": [2024], "mekar.osu.edu": [11797], "dizzyjam.com": [19850], "soc.indusguard.com": [8081], "forum.openwrt.org": [12025], "vhradstock.uk": [2024], "marketing.acxiom.com": [19069], "m.asana.com": [1265], "*.huffpost.com": [7604], "x.koqoo.uk": [2024], "app.applyyourself.com": [1160], "kryptosfera.pl": [9033], "cotswold-consult.objective.co.uk": [21225], "cashforcontracts.com": [2890], "jnls.tv": [2024], "*.advolution.de": [722], "www.noo.nhs.uk": [10953], "pjnk.co": [2024], "artfiles.de": [1256], "www.montereybayaquarium.org": [10606], "i.shoz.de": [2024], "msane.ws": [2024], "secureinthecircle.com": [14561], "video.yandex.kz": [18743], "o15.officeredir.microsoft.com": [10396], "auth.svyaznoy.ru": [22053], "min.slhenry.com": [2024], "cr.tn": [2024], "raulj.com": [2024], "steamstat.ru": [21987], "srini.im": [2024], "aaspring.com": [455], "player.ooyala.com": [11936], "westlaw.com": [18312], "helpsolve.me": [2024], "frogtape.co": [2024], "idcp.tk": [2024], "www.nanoengineering.ucsd.edu": [17012], "www.spilnu.dk": [15345], "www.cov.com": [3720], "packaging.python.org": [13314], "business.landsend.com": [9154], "opentablet.abuledu.org": [19044], "wfmthldr.com": [2024], "biza.gi": [2024], "by.taryo.net": [2024], "cdn.f5.com": [5537], "mj.1688.com": [51], "certs.schmidtcom.de": [14419], "adr.tpprf.ru": [22260], "webviews-dev.radioplayer.co.uk": [13581], "www.search.ch": [14504], "www.dnb.com": [4130], "camptl.ca": [2024], "img.pre.realty.mail.ru": [9891], "support.dandb.com": [4129], "wntr.it": [2024], "flx.is": [2024], "on.menau.org": [2024], "www.comdirect.de": [19649], "staticyb.douyu.com": [4712], "fosdem.org": [6046], "c-it.co": [2024], "www.osumc.edu": [11714], "imnky.com": [2024], "112zwein.de": [2024], "xmind.net": [18619], "login2.bps.org.uk": [1565], "secure.avahost.net": [1461], "startmail.com": [15475], "r24820974.sync.app.asana.com": [1265], "map.cam.ac.uk": [17332], "*.process-one.net": [13166], "pingdom.com": [12719], "community.apan.org": [388], "nmpd.me": [2024], "modloaders.cursecdn.com": [3927], "www.lsh.re": [9391], "cffpo.cf": [2024], "go.9am-5pm.com": [2024], "bluewi.re": [2024], "pic.la": [2024], "osp.drweb.com": [4776], "youtu.be": [18800], "www.isiknowledge.com": [18203], "ingushetia.rt.ru": [13529], "s-paimai.taobao.com": [16015], "b.herfen.com": [2024], "bashkortostan.beeline.ru": [1778], "www.brianclifton.com": [2327], "dashboard.adtile.me": [693], "linguistics.stanford.edu": [15448], "pep.si": [2024], "aldi.us": [357], "agencythrive.us": [2024], "support.brighttalk.com": [2340], "partner.adingo.jp": [646], "events.ucc.ie": [17006], "www.mongodb.org": [10592], "3ida.de": [2024], "*.billiger.de": [1911], "arstechnica.com": [1242], "www.playvid.com": [12834], "*.bankofscotland.de": [1675], "git.xfce.org": [18603], "translate.kontalk.org": [8990], "peijian.taobao.com": [16015], "macainfo.org": [9840], "goquike.xyz": [2024], "airixo.me": [2024], "so.swisscom.ch": [15761], "www.lerelais.org": [9205], "www.bel.fi": [1536], "www.interac.ca": [8233], "air.auto.ru": [19276], "pl.gamigo.com": [6426], "biddul.ph": [2024], "s.theeclub.info": [2024], "url.yerse.net": [2024], "nr-media-01.nationalreview.com": [11112], "staging.equityzen.com": [5325], "afew-store.com": [19103], "motherindia.just-eat.ie": [20671], "radgm.es": [2024], "*.derwesten.de": [4371], "intrin.io": [2024], "frictionalgames.com": [6189], "go.volpon.it": [2024], "cdn1.evernote.com": [5440], "ey.com": [5334], "lmbsy.qq.com": [13329], "blog.dwolla.com": [4808], "covers.elsevier.com": [5177], "ads.audienceamplify.com": [1381], "people.isy.liu.se": [9097], "hmbgr.me": [2024], "go2.kobi5.com": [2024], "d.appinn.com": [1148], "libre.lugons.org": [9121], "aulavirtual.uv.es": [17544], "bjaesthetics.oxfordjournals.org": [12222], "hcpssne.ws": [2024], "2.f.ix.de": [8417], "roky.me": [2024], "www.vis.fsc.va.gov": [17100], "therph.co": [2024], "update.labs.etao.com": [4965], "dfz.nl": [2024], "url.pierre.io": [2024], "lnk.to3.eu": [2024], "admin.imodules.com": [7766], "op.tejow.nl": [2024], "*.oversee.net": [12201], "cutsew.us": [2024], "extranet.coop.ch": [3647], "www.linksnappy.com": [20847], "www.theiphonewiki.com": [16399], "fnjn.co": [2024], "optimizely.com": [12107], "blog.baruwa.com": [19320], "notebooknagyker.hu": [9167], "go.actaru5.it": [2024], "pcs.com": [12258], "talks.by": [22093], "ivi-f33-vcp.cdnvideo.ru": [19536], "ngsm.me": [2024], "qsli.com": [13332], "iwe.lt": [2024], "dwb.es": [2024], "www.ethz.ch": [4967], "jnma.co": [2024], "extranet.au.g4s.com": [20195], "1up.es": [2024], "www.linkshare.com": [13595], "gtrk.tv": [20317], "bluenote.io": [2168], "www.schotty.com": [21745], "mixcloud.com": [10503], "theeli.st": [2024], "bizjournals.com": [16255], "acme.legiscan.com": [9245], "jray.io": [2024], "sis.nlm.nih.gov": [11090], "webvpn.sk.ru": [21845], "grb.to": [2024], "comsavings.com": [3503], "buyvail.today": [2024], "wiki.wesnoth.org": [18298], "l.xam.io": [2024], "bitcoinchain.com": [19387], "public.slidesharecdn.com": [15029], "i-de.eu": [2024], "afpok.us": [2024], "www.apwu.org": [977], "resources.blogblog.com": [2122], "countermeasures.trendmicro.eu": [16788, 16790], "admin.lautre.net": [9184], "www.saimd.com": [3683], "mags247.in": [2024], "go.pjt.me": [2024], "s.wilton.com": [2024], "ynfl.us": [2024], "la13-14.squat.net": [21955], "heyny.la": [2024], "fpd3a.browsersafetymark.io": [2393], "gmx.de": [6330], "b2s.co.il": [19297], "linux-tage.de": [9412], "i.jcloud.com": [8555], "mobile.ds.skyscanner.net": [15006], "girv.in": [2024], "joyy.me": [2024], "mds26.tk": [2024], "www.put.io": [13300], "strategysignals.com": [15579], "go.ktjx2.com": [2024], "autheu.opensocietyfoundations.org": [21280], "cloud.highcharts.com": [7408], "www.nutritiondata.self.com": [11623], "sjwblog.com": [2024], "hellobar.com": [7293], "buzzorange.com": [19485], "de.madgex.com": [20904], "wtr.mn": [2024], "xcd.vn": [2024], "gkmt.link": [2024], "yerkramas.org": [22676], "ae.norton.com": [11545], "mtmates.com": [2024], "beautifuldecay.com": [1767], "cdn-3.tribepad.com": [22285], "jsph.co": [2024], "prstg.co": [2024], "reports.tnsglobal.com": [15906], "www.lizardtech.com": [2940], "avo.gov.au": [1429], "partnervpn.symantec.com": [15780], "indk.citrix.unicef.org": [17069], "*.crunchboard.com": [12615], "services.secure.bankofamerica.com": [1669], "telebrands.net": [16137], "tula.startsmile.ru": [21980], "pantheon.io": [12401], "princeari.es": [2024], "*.iwebreader.com": [7875], "blog.idnes.cz": [20483], "ryanair.com": [14110], "bancopostaonline.poste.it": [13013], "www.bandinelli.net": [1663], "jooleh.in": [2024], "kgr.io": [2024], "tracker.affility.com": [747], "is.play-asia.com": [12828], "donate.splcenter.org": [14222], "swimm.in": [2024], "beta.vidup.me": [17790], "online.tu-graz.ac.at": [15941], "dav.sx": [2024], "amex-qa.justgive.org": [8709], "www.livewyer.com": [9511], "decs.osu.edu": [11797], "starooskol.tpprf.ru": [22260], "file1.qidian.com": [13349], "awa.li": [2024], "job.hired.city": [2024], "b.ms9.me": [2024], "etsm.tl": [2024], "spectraflow.com": [15317], "*.specificmedia.co.uk": [15312], "crownya.click": [2024], "key.sc": [2024], "www.oecd-ilibrary.org": [11655], "maps.yandex.mobi": [18744], "www.update.microsoft.com": [10395], "community.aarp.org": [279], "tayny-moskovskogo-kremlya.friday.ru": [20175], "go.dmf5.com": [2024], "spacepolicyonline.com": [15274], "www.cc.ntu.edu.tw": [11010], "www.bournetocode.com": [2267], "pt.3.boardgamearena.com": [2182], "newcastlecollection.newcastle.gov.uk": [11355], "blade22.ual.es": [17162], "bnr.mn": [2024], "zulucr.bz": [2024], "static.c-spanvideo.org": [2509], "reconingspeakers.com": [15307], "s.white-it.net": [2024], "www.teteny.bme.hu": [1557], "www.visaeurope.com": [17847], "www.lduhtrp.net": [3484, 20791], "jscss.superpages.com": [15698], "www.cityoflondon.police.uk": [3196], "askd.rs": [2024], "alipay.com": [864], "www.thewatershedresidence.com": [16392], "cryptome.info": [3869], "ncmm.uio.no": [17414], "lists.umeahackerspace.se": [17228], "ralph.bakerlab.org": [1646], "scripts.affiliatefuture.com": [19104], "outwit.com": [12181], "cdn.iphoneincanada.ca": [8340], "www.usajobs.g4s.com": [20195], "osfilmesqvpa.tk": [2024], "experience.play-asia.com": [12828], "sisprod.psft.ust.hk": [22412], "scrm.it": [2024], "l.grimpancak.es": [2024], "demonii.com": [4339], "arge.tocco.ch": [16600], "astronomynow.com": [1329], "g.brainofjt.com": [2024], "files.namecheap.com": [11060], "oag.com": [11641, 11642], "ssa.microad.co.jp": [10376], "l.gdx.no": [2024], "mail.math.ias.edu": [7673], "www.imssr.com": [7764], "b.loco8.com": [2024], "www.rdot.org": [13468], "app-us7.resrc.it": [13659], "browsealoud.com": [2385], "rejseplanen.dk": [13810], "strawb.co": [2024], "crm.sk.ru": [21845], "revw.us": [2024], "*.taifex.com.tw": [15850], "reviews.lendingclub.com": [9261], "consult.cotswold.gov.uk": [19695], "wiki.mythtv.org": [10890], "ograc.xyz": [2024], "sciencecircle.stanford.edu": [15448], "www.redletterdays.co.uk": [13736], "avatar.115.com": [28], "pigecheng.1688.com": [51], "*.freecultr.com": [5584], "*.umii.umass.edu": [17353], "bizboo.st": [2024], "kh.kyu.cc": [2024], "support.sandvine.com": [14347], "to.thebbz.com": [2024], "kino.rg.ru": [21646], "ipython.org": [7811], "svabs.com": [2024], "ru.nl": [13570], "fr.opendata.ch": [21270], "meiyantang.taobao.com": [16015], "www.parallels.com": [12420], "speedvolunteer.london.gov.uk": [9590], "picka.link": [2024], "portal.wakefield.gov.uk": [22518], "circle.ci": [2024], "productregistration.sony.com": [15215], "help.hootsuite.com": [7497], "www1.hsbc.co.uk": [20422], "guru.de": [20326], "ad.tips": [2024], "secure.logmein.com": [9559], "www.tenten.vn": [16187], "www.piter.tv": [21423], "www.asadotzler.com": [19246], "s.jiyugaoka.net": [2024], "iow.spydus.co.uk": [21952], "mobile.montereybayaquarium.org": [10606], "abc2w.xyz": [2024], "emsonline.gloucestershire.gov.uk": [6730], "lexbz.net": [2024], "chequecentre.eu": [2024], "ab.qiwi.com": [13352], "eun.li": [2024], "360cities.net": [143], "10minutemail.com": [19], "waymn.com": [2024], "golos.ulgov.ru": [22356], "larkne.ws": [2024], "link.aukum.com": [2024], "www.ecoin.eu": [19950], "m.toppreise.ch": [22237], "amqro.mx": [2024], "libressl.org": [9330], "ees.elsevier.com": [5175], "launcher.mojang.com": [9789], "volkhov.europaplus.ru": [20034], "www.yandex.by": [18739], "go.czphot.ch": [2024], "www.easypost.com": [5020], "go.riguypro.com": [2024], "babewa.lk": [2024], "qlogin.mynyp.org": [21066], "status.21.co": [95], "events.eoportal.org": [5303], "spcge.co": [2024], "czechorchidsociety.org": [19750], "chsaa.co": [2024], "appkb.ch": [20683], "lubsws01.leeds.ac.uk": [17403], "postovoy.org": [21471], "www.pld-linux.org": [12299], "test.lasnik.net": [2024], "lists.logilab.fr": [9568], "www.sonobi.com": [15209], "www.kvm-vps.com": [8771], "ticketline.sapo.pt": [14131], "cakt.us": [2024], "gov.wales": [6843], "image.space.rakuten.co.jp": [13594], "service.burstnet.eu": [2462], "go.insider.in": [2024], "link.mun.sc": [2024], "adwizard.springer.com": [15380], "*.assistly.com": [4379], "www.dreamhost.com": [4743], "www.segment.io": [14620], "qixian.jd.com": [8434], "wdbj7.co": [2024], "salln.net": [2024], "hide.me": [7394], "ctlm.onlineshop.cz": [21257], "*.onswipe.com": [11923], "www.hekko.pl": [7289], "fixe.rs": [2024], "jdkasten.com": [8439], "sah.lt": [2024], "fng.link": [2024], "towel.myaero.us": [2024], "webpush1.wechat.com": [18116], "megafon.ru": [10237], "ziadi.co": [2024], "wiki.services.eoportal.org": [5302], "ww.f-1.me": [2024], "www.thr.com": [15878], "tulskaya-obl.beeline.ru": [1778], "forum.zazzle.com": [18903], "magnetic.domdex.com": [4661], "groove.eu.tf": [2024], "netverify.com": [11297], "danskeanalyse.danskebank.dk": [4138], "dvdnav.mplayerhq.hu": [9798], "static.sabayon.org": [14275], "waffles.fm": [18039], "www.7elements.co.uk": [229], "universityadmissions.se": [17436], "www.robinsonpool.bedford.gov.uk": [19341], "hcity.co": [2024], "m.stubhub.de": [15602], "ro.biligame.com": [1903], "remote.dfs.un.org": [17057], "zynga.tm": [19032], "*.newgrounds.com": [11357], "www.bite.lt": [2015], "sourceware.org": [15252], "bpaste.net": [2280], "6.vgc.no": [17569], "lovtidende.dk": [9643], "contnt.ly": [2024], "*.www.ladyfootlocker.com": [9145], "kphs.us": [2024], "drmtea.ch": [2024], "lesterchan.lesterchan.netdna-cdn.com": [9277], "b.appc.se": [2024], "securemail.southend.gov.uk": [15261], "jira.roblox.com": [13980], "link.jal.mx": [2024], "uszoda.teteny.bme.hu": [1557], "eucos.dwd.de": [19911], "sjg.im": [2024], "2.healthca.mp": [2024], "*.microsec.hu": [10392], "bendon.co": [2024], "pokene.ws": [2024], "snipt.it": [2024], "verisign.com.hk": [17712], "www.tripletex.no": [22293], "01.static-maxdome.de": [10106], "www.enalean.com": [5221], "optionbit.com": [12109], "sinaapp.com": [14907], "radio2.nu": [2024], "iastudents.usc.edu": [17366], "1ac3lle16m2yyulz0ns1hwbzt09m38o1spivl4hb.ipleak.net": [20571], "adst10.tk": [2024], "zh-cn.4.boardgamearena.com": [2182], "p2ia.us": [2024], "lafar.ge": [2024], "rios.in": [2024], "w4t.us": [2024], "rawgithub.com": [13642], "intranet.ctc.hku.hk": [20387], "amnesty.at": [1002], "member.unionpay.com": [17281], "0io.io": [2024], "lloydstsb-offshore.com": [9536], "netelligent.ca": [11264], "www.researchmatch.org": [13855], "som.x5.ru": [18590], "g.cometchat.com": [2024], "www.ipswich.gov.uk": [8348], "markup.io": [10035], "titanpad.com": [16573], "im.mari.am": [2024], "www.stalkr.net": [15437], "suffolkcoastalandwaveneyl.firmstep.com": [20109], "thumb-v-ec.xhcdn.com": [18605], "a4.mzstatic.com": [10893], "www.ubuntu.com.cn": [17174], "vpsal.es": [2024], "selfserve.swale.gov.uk": [22057], "modo.ly": [2024], "download.clearlinux.org": [3233], "r.christoft.dk": [2024], "wumt.westernunion.com": [18310], "enocloud.com": [19927], "kb.newegg.com": [11356], "integrityglobal.com": [20546], "haendler.autoscout24.de": [1458], "asacp.org": [404], "greegam.es": [2024], "www.auditshark.com": [1388], "specs.adfox.ru": [578], "aclu.org": [312], "legal.yandex.kz": [18743], "s94.cnzz.com": [3328], "sl.covision.com": [2024], "www.qstack.com": [13334], "via.vry.gd": [2024], "api.buttercoin.com": [2479], "components.xamarin.com": [18629], "edupage.org": [5081], "vzkrv.me": [2024], "actblue.com": [542], "utopia-ad.org": [22417], "sethvargo.com": [14692], "js-seeker.newjobs.com": [11358], "grahamcluley.com": [6870], "julia.gs": [2024], "gets.faz.net": [5545], "santita.co": [2024], "my.modulus.io": [10563], "www.xda-cdn.com": [22647], "pravo.rg.ru": [21646], "www.justeat.nl": [20671], "www.couragecampaign.org": [3712], "*.sprint.com": [15384], "fashion.zalando.de": [18877], "cavirtex.com": [2919], "r66t.com": [13450], "exle.in": [2024], "waww.ipleak.net": [20571], "plop.at": [21440], "www.jako-o.com": [8506], "help.www.net.cn": [21108], "www.baekdal.com": [1636], "windstream.com": [18439], "www.getlantern.org": [6580], "kuantokusta.pt": [9040], "*.crate.io": [3761], "webmail.bln.de.clara.net": [3213], "vsbl.at": [2024], "www.theproxy.pw": [22174], "radartv.nl": [13569], "yk0.me": [2024], "dynabrainsportal.axosoft.com": [1504], "do.joinville.in": [2024], "aldi-suisse.ch": [357], "*.olark.com": [11817], "intranet.dsi.cnrs.fr": [6174], "ads.networkhm.com": [11313], "l.luke.scot": [2024], "*.conscallhome.com": [3591], "nzy.ch": [2024], "rskt.ch": [2024], "stregis.ht": [2024], "computer.ly": [3540], "feee.li": [2024], "cloudconvert.org": [19623], "www.f4.htw-berlin.de": [7103], "arnita.me": [2024], "148.li": [2024], "support.crossref.org": [3812], "zh.trainings.350.org": [140], "terminatorx.org": [16195], "vacando.ch": [17613], "dxpr.es": [2024], "www.101domain.ru": [16], "mx.godaddy.com": [6755], "payments.heifer.org": [7283], "science.jpl.nasa.gov": [10909], "blog.fitbit.com": [5867], "www.ricochet.com": [13934], "support.keepkey.com": [20702], "www.doriancolor.com": [4680], "r.vnxk.com": [2024], "hu.nu": [2024], "sjbos.co": [2024], "fundinfo.com": [6241], "www.farmanager.com": [5650], "community.remedygames.com": [13819], "s.lug.bz": [2024], "www.hertz.co.th": [7368], "www.codersclan.net": [3376], "www.pcgarage.ro": [21369], "btig.co": [2024], "evernot.es": [2024], "static.xiaomi.cn": [18661], "www.flixbus.at": [5911], "fief.ca": [2024], "sap.report": [2024], "sheffield.ac.uk": [17422], "www.ircreviews.org": [7815], "1sms.co": [2024], "foundationbeyondbelief.org": [6057], "www.orange.jobs": [12119], "sp13dmztheme.inl.gov": [20537], "thenextweb.com": [16277], "connect.digitalwpc.com": [4488], "minbank.ru": [10442], "irishy.co": [2024], "gtipphotos.state.gov": [17146], "contentcafe2.btol.com": [1645], "canon.com.au": [19505], "bethblog.com": [18928], "daorgest.xyz": [2024], "su.addthis.com": [626], "hadithbd.com": [7149], "forum.sakh.com": [21719], "websupport.sk": [18253], "afisha.yandex.by": [18739], "enterprise.gitbook.com": [6655], "*.etracker.com": [5378], "on.wtsp.com": [2024], "uclahealth.org": [17008], "labs.opendoor.com": [12041], "polipayments.com": [12306], "openwiki.uninett.no": [17280], "*.weatherzone.com.au": [18133], "mamab.co": [2024], "pegelf.de": [12562], "www.homeinsurance.com": [7478], "gallery.dyc.edu": [4089], "m.voyage-prive.co.uk": [17945], "secregen.unizar.es": [17441], "www.transperfect.com": [22277], "stat.finansportalen.no": [5814], "prime.wistia.com": [18467], "www.cjib.nl": [11172], "support.ualinux.com": [22340], "de.boardgamearena.com": [2182], "binsearch.info": [1918], "indico.desy.de": [4386], "roll.cl": [2024], "1000.chromeexperiments.com": [3122], "l.amsj.io": [2024], "simply-partner.com": [14895], "abebooks.co.uk": [466], "skln.es": [2024], "e56.1688.com": [51], "www.objectif-securite.ch": [11739], "s-up.pl": [2024], "ebolaresponse.un.org": [17057], "simple.com": [14884], "go.emiltorp.se": [2024], "*.convar.com": [3626], "sc3.rgstatic.net": [13481], "mies.link": [2024], "spla.softline.ru": [21889], "childrencentresnorth.northumberland.gov.uk": [21160], "a.daxi.us": [2024], "proxy3.switchadhub.com": [15764], "equinix.com": [5322], "pratt.in": [2024], "*.whitefence.com": [18345], "shop.kyivstar.ua": [9067], "block.ly": [2024], "www.ddosbreak.com": [4012], "join.secondlife.com": [14527], "ist.berkeley.edu": [17329], "gmtr.me": [2024], "khc.so": [2024], "tchibo.de": [16050], "smm.presults.us": [2024], "mwd.buzz": [2024], "nuclear.inl.gov": [20537], "szo.us": [2024], "bpt.st": [2024], "pzr.me": [2024], "finv.us": [2024], "by.ari.bz": [2024], "stkme.me": [2024], "people-df.live.com": [9495], "blspy.co": [2024], "support.zen.co.uk": [18913], "*.tsgstatic.com": [16879], "aci.tips": [2024], "share.cdn.viber.com": [17751], "utopia.ai": [17542], "bl.uk": [2358], "ar.trainings.350.org": [140], "accounts.dns-shop.ru": [19859], "wbplay.wbgames.com": [3505], "zap2.it": [2024], "alctsr.co": [2024], "ly.aweleczka.de": [2024], "xcdm.co": [2024], "*.unister-adservices.com": [17290], "discourse.schmidtcom.de": [14419], "manage.zadarastorage.com": [18871], "bestiv.al": [2024], "urig.co": [2024], "rcm.nu": [2024], "id.tynt.com": [16979], "strtc.oracle.com": [12116], "cpwb.us": [2024], "chainlove.com": [2987], "upc.nl": [17083], "r24617810.sync.app.asana.com": [1265], "splash.events": [2024], "www.phoenix.de": [21397], "sso.cca.edu": [2547], "blog.quinstreet.com": [13419], "www.talkoclock.com": [15997], "nmbl.engineering.osu.edu": [11797], "ekcko.it": [2024], "codeco.link": [2024], "landryfb.com": [2024], "puhkaeestis.ee": [13266], "cbks0.google.com": [6818], "*.biggestloserclub.com": [1890], "centros.ulpgc.es": [17213], "www.progress.com": [13178], "swjon.es": [2024], "wesnoth.wesnoth.org": [18298], "projects.censor.net.ua": [19538], "ss11.sinaimg.cn": [14910], "oppos.es": [2024], "www.torrentday.com": [16650], "nrsngnts.uk": [2024], "so-sha.re": [2024], "pzd.rakuten.co.jp": [13594], "www.fellowselection.acs.org": [974], "accounts.wmflabs.org": [18388], "git.typo3.org": [15959], "p.sipsolutions.net": [14184], "about2crui.se": [2024], "secure.keyghost.com": [8881], "nrty.me": [2024], "chemistry.georgetown.edu": [6531], "lttlr.me": [2024], "www.helbing.ch": [20364], "ncrn.gs": [2024], "www.eyereturnmarketing.com": [5523], "dl.hexchat.net": [20370], "facerecognisedemo-10012194.file.myqcloud.com": [13346], "blirn.co": [2024], "www.thegenealogist.co.uk": [22153], "bsk.to": [2024], "ads-creativesyndicator.com": [3777], "it.getsatisfaction.com": [6601], "www.hungerhost.com": [7623], "imgwx3.2345.com": [98], "1klik.gq": [2024], "geekdad.com": [20218], "alphane.ws": [2024], "f5.com.cn": [5536], "id.e-generator.com": [4833], "staff.washington.edu": [17376], "go.idroot.net": [2024], "slx.fm": [2024], "assets.fiercemarkets.net": [5762], "eee.play-asia.com": [12828], "wm.baden-wuerttemberg.de": [19302], "consult.telford.gov.uk": [22121], "tony.idv.pw": [2024], "www.104.com.tw": [18], "dandb.com": [4129], "www.cari.net": [2532], "asia.norton.com": [11545], "realtime.services.disqus.com": [4559], "argentdata.com": [19229], "source.domaintools.com": [4653], "acp.bz": [2024], "bscmembers.leeds.gov.uk": [20799], "ipv6.google.com": [6818], "strongfil.ms": [2024], "www2.mrc-lmb.cam.ac.uk": [17332], "www.filestack.com": [5787], "www.publications.parliament.uk": [21348], "status.viaduct.io": [17749], "download.sonatype.com": [15202], "www.east-northamptonshire.gov.uk": [5003], "stocktwits.com": [15546], "ogsleep.co": [2024], "technology.wustl.edu": [18089], "wlfe.st": [2024], "*.thenextweb.com": [16277], "www.theglobeandmail.com": [16297], "copyleft.org": [3658], "www.absolute.com": [487], "forex.com": [6011], "afum.net": [2024], "homepages-fb.th-mittelhessen.de": [15874], "*.beaverbrooks.co.uk": [1770], "m.zipy.co.il": [18975], "cinem.ax": [2024], "l.viettri.vn": [2024], "t.tto.me": [2024], "signup.active24.com": [19061], "www.codeschool.com": [3355], "fir.ee": [2024], "awww.ipleak.net": [20571], "a.bobby.is": [2024], "uniformwares.com": [17274], "cambeywest.com": [2778], "forums.asmallorange.com": [259], "www.verisign.com.tw": [17712], "mari.sledcom.ru": [21858], "meminv.es": [2024], "wl.easydategroup.com": [832], "view.1688.com": [51], "danskebank.dk": [4138], "buffalo.edu": [17382], "evmtn.uk": [2024], "www.tnsinfo.com": [15907], "www.nemid.nu": [11183], "reisen.tchibo.ch": [16050], "on.1010.tires": [2024], "analytics.cloud.unity3d.com": [17310], "astral.is": [2024], "res.ykimg.com": [22681], "moshiri.me": [2024], "www2.enphase.com": [5270], "phygee.com": [12686], "shahty.europaplus.ru": [20034], "w.77.cr": [2024], "techslinger.com": [16116], "dnsdynamic.org": [4061], "v2.nu": [2024], "tracker.fastcast.nz": [20076], "nature.com": [11140], "grdnt.is": [2024], "www.mirbsd.org": [10474], "ticketmaster.*": [16495], "www.wabi.com": [18032], "art19.com": [19238], "wghtloss.cc": [2024], "www.walderwyss.com": [18050], "*.nimenhuuto.com": [11449], "webtou.ch": [2024], "hearinglosscure.stanford.edu": [15448], "2med.me": [2024], "www.securycast.com": [14599], "beloretsk.startsmile.ru": [21980], "axcess.click": [2024], "www1-lw.xda-cdn.com": [22647], "notsfw.me": [2024], "*.wisc.edu": [17433], "prbd.co": [2024], "lp.bvg.de": [1605], "s.rswebsols.com": [2024], "go.d42.nyc": [2024], "short.iprobe.it": [2024], "stats.owncloud.org": [12215], "nas.cr": [2024], "mstr.it": [2024], "gipan.de": [2024], "new.autobytel.com": [1449], "bcktb.co": [2024], "www.maurus.net": [10097], "cler.ky": [2024], "adherents.openstreetmap.fr": [12079], "judicalis.co.uk": [2024], "bela.nlnetlabs.nl": [10980], "support.msi.com": [9806], "smetrics.sky.com": [14989], "partner.ncloud.dk": [11157], "www.weightlossplans.net": [12200], "www.eduid.cz": [5087], "robati.info": [2024], "beatwik.com": [2024], "cumbriapartnership.nhs.uk": [10953], "static.wowace.com": [3927], "fftfef.org": [5752], "www.contactprivacy.com": [3610], "*.snatchly.com": [15095], "www.armyoutlet.de": [1231], "www.theplacetelford.com": [22178], "sipb.mit.edu": [9763], "www.greatdomains.com": [6889], "jburum.info": [2024], "melitopol.o3.ua": [21219], "sso.id.kent.ac.uk": [17402], "italliance.com": [7845], "www.lorentzcenter.nl": [9620], "marfit.de": [2024], "svb.me": [2024], "www.madgex.com": [20904], "dstn.cz": [2024], "kamchatka.sledcom.ru": [21858], "www.knopper.net": [8959], "*.jappix.com": [8531], "ww.stallman.org": [15438], "magazine.fastcompany.com": [5659], "jotformpro.com": [8649], "request.cias.rit.edu": [13493], "mill.enni.al": [2024], "srv.asknet.com": [1292], "www.liteaddress.org": [9473], "hitbox.com": [7427], "freshports.org": [6186], "bairrorm.ga": [2024], "datacloud-eu-west-1.tealiumiq.com": [16060], "escpeuro.pe": [2024], "js5.pp.sohu.com.cn": [15170], "jiaoben.eastday.com": [5010], "www.student.liu.se": [9097], "snob.ru": [15103], "s.gdi2290.com": [2024], "gemeinderecht.wien.at": [22588], "pantag.es": [2024], "filmp.je": [2024], "gtht.co": [2024], "megaplan.miit.ua": [20982], "untappd.com": [17455], "ascension.nyc": [2024], "ryanm.me": [2024], "api.gumroad.com": [7002], "atopya.squat.net": [21955], "www.surgery.cuhk.edu.hk": [2704], "cryptography.com": [3886], "docs.typo3.org": [15959], "thelist.creativecommons.org": [3774], "www.corbinfisher.com": [3662], "migto.mx": [2024], "cylar.me": [2024], "club.arte.tv": [19239], "auth-ns1.play-asia.com": [12828], "lugons.org": [9121], "lk.quartztelecom.ru": [21563], "ksl.com": [8767], "edeveloperz.com": [4891], "www.cybersecuritychallenge.org.uk": [3948], "go.styjp.com": [2024], "ing.com": [7775], "welcomi.ng": [2024], "*.filepost.com": [5779], "ebayview.co.uk": [2024], "softwareplattform.test.115.de": [2443], "cdn.geekzu.org": [6479], "speak.rs": [2024], "dcly.de": [2024], "images.pornworms.com": [12975], "worldcommunitygrid.org": [18537], "i2.c.dk": [2512], "internal.ncsa.illinois.edu": [17346], "companiesintheuk.co.uk": [3510], "l.bherville.com": [2024], "cherepanovo.nso.ru": [21192], "pinescharter.net": [12712], "ucmsv2.unitech.net": [17266], "zlavy.sme.sk": [14198], "www.hertz.co.id": [7349], "fbri.cz": [2024], "k.twiad.info": [2024], "courses.osu.edu": [11797], "makemytrip.com": [9917], "www.purina.com": [13289], "secure.f5.com": [5537], "starfieldtech.com": [15467], "lishi.qidian.com": [13349], "ehpl.us": [2024], "getdigital.fr": [6558], "boutique.arte.tv": [19239], "mzvid.io": [2024], "www.thepiratebay.am": [22175], "whal.es": [2024], "hq.appsflyer.com": [1162], "petsymposium.org": [12272], "s.doubanio.com": [19889], "w00t.com": [18514], "graphite.karelia.pro": [20687], "winnie.tips": [2024], "125.stanford.edu": [15448], "rmsbg.co": [2024], "ufout.mvd.ru": [21055], "nanicmama.sme.sk": [14198], "ceres.georgetown.edu": [6531], "winema.ps": [2024], "rttnbwy.co": [2024], "api.aimpulse.com": [786], "kaluga.rt.ru": [13529], "rickt.nl": [2024], "uber.tk": [2024], "www.electrek.co": [5137], "info.spkrb.de": [21937], "www.ingdirect.es": [8140], "osozluk.xyz": [2024], "payonline.ru": [12516], "s-3-c.com": [2024], "hu.cloudflare.com": [3284], "ap.rsl.ru": [21686], "banners.webmasterplan.com": [18224], "www.ambervalley.gov.uk": [19181], "www.studentlife.osu.edu": [11797], "nikudutta.com": [2024], "apache.org": [1119], "researchcompliance.vt.edu": [17825], "pic.ress997.com": [2024], "nxti.es": [2024], "bbc.com": [1522], "www.knowingly.com": [20743], "smonty.co": [2024], "ftcpub.in": [2024], "smetrics.csmonitor.com": [19737], "s.shortnote.jp": [21812], "fcv.rocks": [2024], "www.telus.com": [16174], "copenhagenmarathon.dk": [3651, 3652], "adman.otenet.gr": [12164], "bnw.im": [19419], "secure.ebis.ne.jp": [5031], "www.cloudmailin.com": [3307], "cjl.cx": [2024], "www.alumfx.com": [944], "cdn.livestream.com": [9527], "mrlac.eu": [2024], "www.qtastatic.com": [13368], "w.expertera.com": [2024], "dc.nserver.ru": [11588], "techidiots.net": [16093], "www.epic.org": [4934], "erhverv.canaldigital.dk": [2817], "indycar.link": [2024], "ftmx.us": [2024], "itssm.pl": [2024], "www.pst.kit.edu": [8812], "trinity-look.org": [16811], "*.svbtle.com": [15735], "mjrspm.mx": [2024], "xtgem.com": [18689], "48.rkn.gov.ru": [13971], "booktype.pro": [2225], "www.qubes-os.org": [13394], "3k.mail.ru": [9891], "lvng.me": [2024], "docs.aws.amazon.com": [963], "nv.gl": [2024], "kits.bz": [2024], "t411.ch": [15847], "sencha.com": [14637], "www.tno.nl": [15904], "agora.uninett.no": [17280], "wiki.hslu.ch": [7589], "blogp.ws": [2024], "gulkevichi.tpprf.ru": [22260], "*.rsys.net": [14062], "idp.feide.no": [5729], "s.amafashion.ro": [2024], "*.terena.org": [16191], "secure.worldcommunitygrid.org": [18537], "lbmns.merton.gov.uk": [10311], "crick.ac.uk": [19719], "light.fm": [2024], "www.knowledgeblog.org": [8961], "t0r.eu": [2024], "www.eia.gov": [4909], "65.mvd.ru": [21055], "a.kiar.me": [2024], "m.toledo.kuleuven.be": [8832], "konto.nazwa.pl": [11156], "tap.unicefusa.org": [17070], "moneygeek.com": [21014], "www.aci-europe.org": [293], "mbezpeka.kyivstar.ua": [9067], "ghana.usembassy.gov": [22406], "ombudsman.49gov.ru": [187], "m.suntravel.xyz": [2024], "online.s-pankki.fi": [14116], "islamhouse.com": [8368], "gcty.me": [2024], "mydesktop.unicefusa.org": [17070], "www.screencraft.org": [14469], "trafficanalytics.here.com": [7325], "a-ads.com": [260], "tryhour.com": [2024], "media.netapp.com": [11220], "service-center.1und1.de": [91], "magazin-reality.sme.sk": [14198], "discussions.udacity.com": [17193], "cfda.gov": [2903], "ouedkniss.com": [21311], "www.lcdcomps.com": [20790], "learn.equalit.ie": [4938], "gum.sh": [2024], "i2.cdn.cnn.com": [2649], "twylah.com": [16974], "leea.co": [2024], "forum.syncthing.net": [15797], "solis.xyz": [2024], "cgd.to": [2024], "lakesideschool.tocco.ch": [16600], "modalitypartnership.nhs.uk": [10953], "www.seattleix.net": [14516], "openknowledge.worldbank.org": [8258], "git40.rostrud.ru": [21677], "go.lovin.vn": [2024], "assets.razerzone.com": [13647], "img100.xvideos.com": [22660], "u.campus-owl.de": [2024], "zmbd.us": [2024], "www.vm.ag": [17891], "mttr.me": [2024], "cbscolle.ge": [2024], "fls.pt": [2024], "*.fanatics.com": [5639], "go.dostuff.net": [2024], "pv.gov.sa": [14368], "wheaton.ma": [2024], "bloodcenterblog.stanford.edu": [15448], "seg.sharethis.com": [14730], "drive.ru": [19897], "yacit.us": [2024], "beta.skype.com": [15003], "atutto.net": [2024], "www.kickass.cd": [8894], "www.smashwords.com": [15067], "oem.whyopencomputing.fr": [22584], "68.rkn.gov.ru": [13971], "*.whatsapp.com": [18329], "hlwl.co": [2024], "listserv.heanet.ie": [7267], "mrk5math.com": [2024], "lfscript.org": [20824], "luobei.jd.com": [8434], "openlibrary.org": [12050], "give.hrc.org": [7609], "www.tinhte.vn": [16549], "uptimeinstitute.com": [22393], "f.btcchina.com": [1581], "hydra.gnu.org": [6337], "maum.soy": [2024], "padsdel.cdnads.com": [2928], "yunnan.jd.com": [8434], "tony.ma": [2024], "snapchat.com": [15093], "cns2.play-asia.com": [12828], "account3000.com": [513], "assistant.ricardo.ch": [13923], "new.research.illinois.edu": [17346], "loggames.de": [2024], "*.zapunited.com": [18892], "hackademix.net": [7128], "www2.informatik.uni-hamburg.de": [17025], "img.linuxfr.org": [9425], "opacsprd.stanford.edu": [15448], "joycasino3.com": [20654], "cache.soso.com": [21904], "nardi.im": [2024], "eleicoes.me": [2024], "defaultnamehere.tumblr.com": [16897], "graphics.cs.illinois.edu": [17346], "aftgosi.pe": [2024], "philips.to": [2024], "bitly.ivee.fr": [2024], "static.the42.ie": [22140], "commandlinefu.com": [3477], "s2.reutersmedia.net": [13893], "shareasale.com": [14722], "secureuk.net": [14576], "sla.pt": [2024], "mg.ryujyu.us": [2024], "pablofa.in": [2024], "vnovgorod.sledcom.ru": [21858], "piwik.cc.kuleuven.be": [8832], "www.ubnt.com": [17164], "webapps.initial-website.com": [20535], "deven.cc": [2024], "s.woobik.it": [2024], "www.services.irctc.co.in": [7814], "journals.aps.org": [976], "nss.li": [2024], "software.homeaway.com": [20395], "savvy.life": [2024], "epas.un.org": [17057], "*.oregon.gov": [15486], "login.justcloud.com": [20669], "calsius.be": [2024], "onstn.biz": [2024], "forums.asp.net": [413], "ldap.hackerspace.pl": [7136], "articulate.com": [1258, 1259], "plugins.smyl.es": [14204], "girlsoutwest.com": [6648], "www.fagms.net": [5618], "git49.rostrud.ru": [21677], "letraslib.re": [2024], "go.chula.md": [2024], "*.typef.com": [4325], "nvda.ws": [2024], "osgeo.org": [11707], "www.casinoaffiliateprograms.com": [2892], "stats.cloud.online.net": [11908], "refresh.vip.58.com": [212], "go.cmslearn.com": [2024], "www.phpclasses.net": [12683], "sms.aplus.co.jp": [2024], "bo.getjaco.com": [6590], "pro.stubhub.co.uk": [15602], "www.theparliamentmagazine.eu": [16376], "tele2.se": [16135], "maestra.no": [2024], "ch.beck.de": [2024], "www.postbox-inc.com": [13008], "kolomna.biglion.ru": [19375], "www.whisky.de": [22577], "lula.pro": [2024], "caduceus.me": [2024], "by.yowa.re": [2024], "topol.in": [2024], "rod.cx": [2024], "cache1.allpostersimages.com": [883], "sync.tidaltv.com": [16507], "flowingdata.com": [5925], "www.hon.ch": [7080], "ubrflp.in": [2024], "anxpro.com": [1111], "slow.gawker.com": [6454], "*.br.inter.net": [8228], "www.webxmedia.co.uk": [17992], "*.readyhosting.com": [13678], "kuathne.ws": [2024], "wiki.bedis.eu": [1773], "ykt.sledcom.ru": [21858], "plex.moe": [2024], "usedirect.adsrvr.org": [688], "www.ebank.khb.hu": [8739], "www.prostovpn.org": [21517], "www.indikom.ru": [20520], "static.ivpn.net": [7868], "www.youtube.at": [18800], "kiko.im": [2024], "market.scribblelive.com": [14474], "colwares.link": [2024], "bzfd.it": [2024], "www.makershed.com": [9923], "www.cryptsy.com": [3883], "irunsafe.com": [14091], "webrtchacks.com": [18235], "plastidipuruguay.com": [12817], "ledgerscope.net": [9235], "blog.helpjuice.com": [7308], "co.godaddy.com": [6755], "blog.jupyter.org": [8703], "codexns.io": [3382], "diisd.illuminateed.com": [20494], "weborder.active24.es": [19064], "engineering.leeds.ac.uk": [17403], "sparkmed.stanford.edu": [15448], "rise.technical.ly": [16099], "ad.adview.pl": [717], "whec.tv": [2024], "px.3.cn": [135], "www.copia.is": [3655], "dreamnews.jp": [4745], "mylimehouse.eastsussex.gov.uk": [19938], "magellanmodels.com": [9866], "link.sausse.com": [2024], "maxon.net": [10110], "techno.ph": [2024], "join.ust.hk": [22412], "www.newferre.com": [21121], "templates.office.com": [11780], "rtrv.co": [2024], "ots.optimize.webtrends.com": [18264], "*.tt.omtrdc.net": [11844], "netsho.es": [2024], "apatity.gov-murman.ru": [20293], "candc.ly": [2024], "walkinhershoes.careinternational.org.uk": [19514], "www.youtube.ae": [18800], "19ox5zaj9r8bzj5xbdri1not95be8moslrkugsbz.ipleak.net": [20571], "nulled.thecthulhu.com": [16403], "www.uspirates.org": [17145], "neryu.uk": [2024], "www.enigmail.net": [5263], "dagensgetaway-dbapp.netdna-ssl.com": [4104], "ideascale.com": [20479], "badwarebusters.org": [1635], "doublerobotics.com": [4707], "tipmobileint.sbb.ch": [15756], "hawaiianair.com": [7238], "ialcalde.es": [2024], "forum-fr.msi.com": [9806], "simkt.nl": [2024], "spnd.ws": [2024], "ehu.gs": [2024], "i.lenizdat.ru": [20807], "tpl.sh": [2024], "*.stockton.edu": [15547], "rollerhaendler.scooter-attack.com": [14452], "www.likelyloans.com": [20840], "antonius.imn.htwk-leipzig.de": [7596], "jillrobertsibdcenter.weillcornell.org": [22557], "www.kozlekedes.bme.hu": [1556], "citrusbyte.com": [3183], "mpp.specificclick.net": [15314], "ing.nl": [7775], "myfiles.yandex.com.tr": [18740], "www.wdws.com": [17991], "www.netspi.com": [11245], "vanuatu.unicef.org.nz": [17067], "www.gobolinux.org": [20276], "ashbetmo.com": [2024], "jcopho.to": [2024], "btnd-dl.ga": [2024], "media1.congstar-media.de": [3579], "www.grepbugs.com": [6926], "shift.ng": [2024], "langui.sh": [9161], "okcolab.co": [2024], "atname.ru": [420], "javascript.ru": [20629], "myva.co": [2024], "www.krystalstatus.co.uk": [9036], "lifeb.co": [2024], "adhikara.tk": [2024], "bmsoft.axosoft.com": [1504], "amo.im": [2024], "cdn.instructables.com": [8199], "auto.ru": [19276], "hollys.me": [2024], "www.easa.europa.eu": [5411], "itsakhandbok.irt.kau.se": [8723], "mville.edu": [9963], "*.yelp.fi": [18766], "securetrust.com": [14575], "www.open-mpi.org": [11942], "go.boin.gr": [2024], "mb.tips": [2024], "first4jobs.com": [2024], "alzheimers.org.uk": [950], "sj.se": [14185], "commercial.buckscc.gov.uk": [19465], "prnr.co": [2024], "bfr.li": [2024], "www.news.gov.hk": [7068], "kavkaz-uzel.ru": [20694], "365hbr.co": [2024], "*.ovpn.to": [11727], "fptest.fraudmetrix.cn": [20151], "www.thregr.org": [22200], "acs.akbars.ru": [19128], "www.condenast.com": [3555], "*.web-servers.com.au": [18142], "chou.lt": [2024], "*.walkingmen.com": [18053], "*.yelp.fr": [18766], "www.vidup.me": [17791], "soraiseyourglasses.com": [15110], "go.atallo.com": [2024], "auto.ro": [1439], "wci.io": [2024], "player.vgtrk.com": [22455], "reisen.tchibo.de": [16050], "www.housting.de": [11216], "cejf.me": [2024], "a.mindgarden.me": [2024], "ap.ai": [2024], "uniongang.net": [22373], "www.uni-ulm.de": [22368], "www.tyj.fi": [16981], "x.mat.cc": [2024], "ham.my": [2024], "carolhin.es": [2024], "l.teamtoet.nl": [2024], "authorcentral.amazon.co.jp": [19169], "dailyhiit.com": [4109], "s.lunazy.red": [2024], "*.ssl-images-amazon.com": [963], "dcsimi.com": [2024], "cananolab.nci.nih.gov": [11090], "tenderhook.me": [2024], "brandhub.unicefusa.org": [17070], "modus.nike.com": [11440], "spine.osu.edu": [11797], "ciencias.unizar.es": [17441], "precisionmarinetools.com": [13066], "tandlakarforbundet.se": [16005], "www.yotuku.cn": [22687], "by.rstana.sk": [2024], "en-it.dict.cc": [4442], "trial.coverity.com": [3731], "benefits.elmbridge.gov.uk": [5167], "on.sgstory.com": [2024], "secure19.pipni.cz": [12287], "zuerich.ch": [22730], "rcc.dwd.de": [19911], "ureport.foxnews.com": [11360], "www.superdesk.pro": [15691], "analytics.gravity.com": [6884], "apps.jumpshare.com": [20666], "tthl.cc": [2024], "2013-golyshmanovo.admtyumen.ru": [19082], "gwaste.northumberland.gov.uk": [21160], "ozbargain.com.au": [12227], "blogautomobile.fr": [2119], "tnyg.co": [2024], "pro.lookup.whitepages.com": [18352], "fnpl.co": [2024], "szlwzl.com": [2024], "olin.edu": [6083], "tmaw.info": [2024], "d.liadm.com": [7797], "bhfrank.me": [2024], "www.nowere.net": [21171], "commentwww.play-asia.com": [12828], "smetrics.aftonbladet.se": [759], "web.speedyline.ru": [21932], "tes.cnnumerique.fr": [2651], "crwn.it": [2024], "scml.me": [2024], "xpnsec.tumblr.com": [16897], "games.forceline.net": [20134], "*.ehawaii.gov": [7237], "m.ba.imhd.sk": [8004], "www.gemeentewestland.nl": [11172], "obedovat.sk": [11733], "www.ai.ai": [1453], "api-public.addthis.com": [626], "press.virtkick.io": [17829], "api.tiles.mapbox.com": [9977], "abuse.roblox.com": [13980], "www.bargainmoose.ca": [19315], "forum.mobilism.me": [21004], "atglance.web.cern.ch": [2588], "ishanghai.jd.com": [8434], "www.sharefilesupport.com": [14726], "provodnik.friday.ru": [20175], "wsna.to": [2024], "tcm.ag": [2024], "mantinad.es": [2024], "*.primary001.net": [8240], "htfacile.co": [2024], "derecho.unizar.es": [17441], "www.scoretarot.tuxfamily.org": [22319], "www.strath.ac.uk": [17368], "*.blacknight.com": [2072], "aktuality.sk": [1507], "ingdirect.es": [8140], "s.jvrtech.net": [2024], "bloomberg.com": [2133], "quantixtickets1.com": [13389], "roh.cm": [2024], "isana.jp": [2024], "www.sceper.ws": [14406], "www.lastcall.com": [15916], "b.project68.com": [2024], "in-form-devred.ble.de": [19406], "gateway.audiencescience.com": [1380], "www.java.net": [8538], "enfz.me": [2024], "bxs.link": [2024], "technology.slashdot.org": [15012], "004.img.pu.sohu.com.cn": [15170], "juridicos.afip.gob.ar": [19106], "pop2.schmidtcom.de": [14419], "forums.hummingbird.me": [7620], "loader.la.welt.de": [18290], "yeisk.europaplus.ru": [20034], "rhinofri.es": [2024], "hotscripts.com": [7558], "watsoninstitute.org": [18102], "globalservices.bt.com": [1578], "vpnincome.com": [8028], "mgmt.parkerpen.com": [12435], "particleground.duapp.com": [19902], "whim.dating": [2024], "tocco.ch": [16600], "osvpr.georgetown.edu": [6531], "dlgcns.lt": [2024], "chip.biz": [2024], "analysiscenter.veracode.com": [17703], "www.navynews.co.uk": [14046], "boounce.com": [2239], "s.baluie.de": [2024], "university.mongodb.com": [10591], "media.zylom.com": [19029], "mwa.ma": [2024], "randywestergren.com": [21579], "www.duolingo.com": [4799], "*.solus-project.com": [15194], "edit.ftc.gov": [5710], "gan.taobao.com": [16015], "roger.jp": [2024], "www.net-backup.com": [11212], "tppnocertification.org": [15917], "firmware.netgate.com": [5849], "listes.gresille.org": [6927], "apnt.co": [2024], "nero.com": [11201], "cdes.trafficforce.com": [16724], "cloud.seafile.com": [14498], "download-codeplex.sec.s-msft.com": [3373], "msk1.rosevrobank.ru": [14024], "s.bus.ac": [2024], "*.lithium.com": [9481], "bernstein.com": [899], "schoolpartnership.wustl.edu": [18089], "symphonyos.com": [22065], "ars.to": [1242], "img-ssl.tedcdn.com": [15871], "sublimegit.net": [15625], "felix.design": [2024], "www.piano-dev.kairo.at": [8782], "lakehom.es": [2024], "imga.nxjimg.com": [11630], "espaceprive.moncompteformation.gouv.fr": [21010], "www.3min.de": [173], "forum.ubuntu-tr.net": [17182], "www.cult-labs.com": [3908], "*.blindseeker.com": [19408], "*.traveldoctor.com.au": [16765], "www.adyadvantage.com": [724, 725], "www.ocforums.com": [12197], "ar.syllable.org": [22064], "euro-ix.net": [5391], "www.gismeteo.md": [20251], "m.gumroad.com": [2024], "febfox.com": [2024], "l.pm4gis.org": [2024], "web.redding.com": [4980], "*.wiredminds.de": [18455], "olx.sm": [2024], "pincheaqui.com": [2024], "telegr.am": [16142], "phpclasses.net": [12683], "secure.sakura.ad.jp": [14124], "www.coinsecure.in": [3409], "www.stateoftheinternet.com": [15487], "subs.rcm.org.uk": [21601], "josho.yam.com": [18734], "www.masternet.org": [10062], "mail.kiva.org": [8939], "directads-tool.ligatus.com": [9356], "strb.it": [2024], "apri.link": [2024], "www.nccs.nasa.gov": [10909], "www.riscosopen.org": [13955], "my.outbrain.com": [12182], "bconer.com": [2024], "mor.nlm.nih.gov": [11090], "prefac.es": [2024], "atoztea.ch": [2024], "hume.is": [2024], "jmik.es": [2024], "typesafe.com": [16986], "4gs.club": [2024], "*.sitemeter.com": [14949], "autoanzeigen.merkur.de": [10306], "www.miuipolska.pl": [20995], "o.thebinc.in": [2024], "img2.xcart.com": [18596], "test.golfsuisse.ch": [6809], "scraperwiki.com": [14467], "wiltshire-consult.objective.co.uk": [21225], "*.codecoop.org": [3364], "selfcare.tiscali.it": [16572], "click-aici.tk": [2024], "tokyo2020.jp": [22230], "malideveloper.arm.com": [398], "static.plugrush.com": [12864], "www.ddg.gg": [4785], "conference.cpanel.com": [2665], "assets.thump.vice.com": [17754], "pubx.ch": [2024], "finaloffer.club": [2024], "www.sharethrough.com": [14742], "ww381.smartadserver.com": [15049], "catalyst.harvard.edu": [7211], "www.usertags.jeremybieger.com": [17167], "de-sq.dict.cc": [4442], "www.eigenstate.org": [19972], "www.resolv.org": [13474], "20.navalny.com": [11148], "j.4rd.co": [2024], "bn.com": [1705], "ibutton.maximintegrated.com": [10108], "www.chicagofed.org": [3075], "app-de8.resrc.it": [13659], "kinyetbna.cf": [2024], "ehjournal.biomedcentral.com": [1931], "download.vzaar.com": [17976], "2011.majordomo.ru": [9914], "cafemakers.com": [2732], "ads2.zeusclicks.com": [18954], "rethinkdb.com": [21638], "cal1card.berkeley.edu": [17329], "g01.t.alicdn.com": [853], "r24820189.sync.app.asana.com": [1265], "search.bt.com": [1578], "www.drivethrufiction.com": [11867], "wiki.blueonyx.it": [19413], "rs-static.wistia.com": [18467], "nabchelny.biglion.ru": [19375], "ped.li": [2024], "www.ondarossa.info": [11863], "lxr.missinglinkelectronics.com": [10492], "gdigesu.com": [2024], "popup.questionpro.com": [15722], "ntst.dk": [2024], "ereturns.wirral.gov.uk": [18461], "dev.umeng.com": [22363], "forums.zarafa.com": [18893], "www.gnusocial.no": [6340], "actor.im": [19068], "www.cyber.law.harvard.edu": [7211], "itpc.uillinois.edu": [17034], "s.reshet.tv": [2024], "fitbit.com": [5867], "phcheats.com": [12284], "a.lesterwish.ru": [2024], "coveritlive.com": [3732], "smtp.bel.fi": [1536], "assets.bunchball.net": [2439], "testdrive.auto.ru": [19276], "atlarge.me": [2024], "www.magentocommerce.com": [9869], "a3.formsite.com": [20139], "millie.in": [2024], "ads.ad-center.com": [565], "ipk.fraunhofer.de": [6091], "useu.usmission.gov": [17142], "plex.is": [2024], "go.aps-web.jp": [2024], "trane.com": [22271], "www.spiegel.de": [15342], "hktshop.hk": [2024], "domain.com": [4641], "rkh.co.uk": [21656], "pm.cabinetoffice.gov.uk": [2716], "flie.me": [2024], "dl.lalalab.com": [2024], "movn.us": [2024], "office.svyaznoy.ru": [22053], "answers.oculusvr.com": [11760], "www.spendabit.co": [15333], "musts.ee": [2024], "lrs.ms": [2024], "sv-contrainfo.espiv.net": [20021], "www.skeptoid.com": [21847], "*.wiley.com": [18401], "www.gotfuturama.com": [6836], "forum.rizon.net": [13968], "homeinsurance.com": [7478], "www.sitesoft.ru": [21841], "cdn-static.cloudflare.com": [3284], "ffc.vc": [2024], "newatl.as": [2024], "www.yaca.yandex.by": [18739], "app.beanstalkdata.com": [1759], "monshi.net": [2024], "mobile.yandex.com.tr": [18740], "wwwn.cdc.gov": [19532], "static.life.ru": [20835], "*.facebookcorewwwi.onion": [5610], "metro.unizar.es": [17441], "unimi.it": [17278], "sklar.co": [2024], "s13.postimg.io": [13024], "www.itbit.com": [8398], "arneswinnen.net": [19235], "shop.zend.com": [18920], "insurance.rakuten.co.jp": [13593], "prka.org": [2024], "androidfilehost.com": [1051], "staff.ask.sydney.edu.au": [22063], "chetumal.info": [2024], "notts.cc": [2024], "allods.cdn.gmru.net": [6329], "prhack.com": [2024], "uslugi.tpprf.ru": [22260], "curated.co": [3918], "ssdp.org": [15606], "netzservice.wienenergie.at": [18376], "www.dirk.to": [4523], "voterinfo.gov.hk": [22499], "cheklapkok-01-hkg-remote.cathaypacific.com": [2913], "www.actiac.org": [19055], "p2p.sdm.ru": [14494], "safeassign.blackboard.com": [2069], "www.usembassy.state.gov": [17146], "jenkins.libtoxcore.so": [9337], "dtrts.ca": [2024], "vms.domonet.ua": [19877], "yoogiscloset.com": [22684], "moss.nav.gov.hu": [10912], "images.virtualboximages.com": [17834], "tee.kaywa.com": [8843], "brilli.jp": [2024], "bellareed.com": [10008], "files2.enaza.ru": [5222], "www.billing.helpjuice.com": [7308], "kmh.se": [8755], "letstalk.globalservices.bt.com": [1578], "uusd.help": [2024], "beacon-us-east.rubiconproject.com": [14066], "clients.uber.com": [17169], "binarydefense.com": [1921], "www.glittering.blue": [20265], "online2.akbars.ru": [19128], "embt.co": [2024], "discord.me": [4532], "newsreview.com": [11380], "bmcb.georgetown.edu": [6531], "r2gam.es": [2024], "hoverwatch.com": [20414], "loop.nigms.nih.gov": [11090], "webstats.squat.net": [21955], "www.xignite.com": [18664], "www.p6r.com": [12234], "*.jobsgopublic.com": [8614], "lyncdiscover.clp.com.hk": [2636], "s.blogsmithmedia.com": [19410], "fume.tech": [2024], "weimarnetz.de": [22558], "infra.aircrack-ng.org": [19122], "www.ivi.ru": [20609], "osdisc.com": [21297], "support.starrez.com": [15458], "adform.com": [639], "myfsh.net": [2024], "cloudproxy.sucuri.net": [15639], "www.ginac.de": [6619], "www.mygoldencharter.co.uk": [6797], "accounts.illumina.com": [7971], "www.starwoodhotels.com": [15479], "www.xkcd.org": [22652], "inlcareers.inl.gov": [20537], "wpsites.nasawestprime.com": [21086], "fuksa.link": [2024], "boingo.com": [2198], "issues.alfresco.com": [850], "www.legtux.org": [9241], "c.hocol.at": [2024], "volunteer.pyeongchang2018.com": [21545], "data.iana.org": [7671], "docs.ring.cx": [13947], "www.freetype.org": [20168], "anketa.pochtabank.ru": [12876], "beginlinux.com": [1783], "kenton.bz": [2024], "joep.se": [2024], "gatill.com": [2024], "kuis.cf": [2024], "wrspayment.com": [2024], "tw.staygeo.com": [2024], "www.fxprime.com": [5600], "www.sms-online.co": [21875], "purechat.axosoft.com": [1504], "f.linmans.net": [2024], "ias.1und1.de": [91], "www.kqed.org": [8764], "btlnd.in": [2024], "proxypirate.pw": [22174], "dnuk.com": [4468], "sm.md": [2024], "centralcomputers.com": [2960], "orel-i-reshka-na-krayu-sveta.friday.ru": [20175], "kalastus.info": [2024], "sch.gy": [2024], "jtk.me": [2024], "www.howard-cottage.co.uk": [20415], "bmcmedimaging.biomedcentral.com": [1931], "iclk.co": [2024], "sm.mk": [2024], "nccgroup.com": [10921], "support.vendini.com": [22438], "kp2.dftoutiao.com": [19826], "eric.ps": [2024], "cs.berkeley.edu": [17329], "*.linkedin.com": [9393], "pdasync.vse.sk": [17955], "s.cei.co.za": [2024], "*.marathonbet.com": [9988], "audentio.com": [1376], "e80p.com": [2024], "crn.verticalsearchworks.com": [2673], "blog.okfn.org": [21237], "www.mydatapipe.net": [10847], "www.bareos.org": [1694], "ivnua.info": [2024], "www.unlimited401k.com": [17445], "webmailcluster.1and1.co.uk": [71], "geocities.yahoo.co.jp": [18730], "accounts.digiguide.tv": [19835], "www.lurkmore.so": [9683], "dm-mailinglist.com": [4040], "amba.to": [2024], "www.variomedia.de": [17658], "www.kinklink.me": [8921], "econ.st": [2024], "mason.gmu.edu": [6529], "coventry.greenparty.org.uk": [6908], "segpaycs.com": [14618], "holidays.lastminute.com": [9177], "drugscience.org.uk": [4771], "l.jfvassoc.com": [2024], "kostroma.psbank.ru": [13231], "people.redhat.com": [13735], "apext.ac": [2024], "librarycatalogue.northamptonshire.gov.uk": [21156], "forms.sandwell.gov.uk": [21729], "assets.ubuntu.com": [17183], "res-5.cloudinary.com": [3306], "lxob.us": [2024], "lax.logilab.org": [9569], "portalpiratebay.co.uk": [22177], "apps.bhw.de": [1543], "www.webkit.org": [18220], "plotin.us": [2024], "www.chainlove.com": [2987], "dbclick.org": [2024], "fujisan.ms": [2024], "oblivia.vc": [11741], "kiyoh.nl": [20729], "krasnoyarsk.biglion.ru": [19375], "www.eliomotors.com": [5158], "www.choicecheapies.co.nz": [12227], "jimg.dk": [8587], "olib.ro": [2024], "homade.us": [2024], "www.extra.to": [20057], "*.ey.com": [5334], "blog.wasilczyk.pl": [18091], "linuxvoice.com": [9440], "www.seancassidy.me": [14502], "nalink.to": [2024], "concrete5.org": [3552], "www.russellgroup.ac.uk": [14097], "pixhost.org": [21426], "b.snfcc.org": [2024], "www.vispashop.com": [17867], "lyncaccess.sviaz-bank.ru": [15740], "www.eca.state.gov": [17146], "blog.docker.io": [4606], "xopri.se": [2024], "go.laposa.co.uk": [2024], "photos.sky.com": [14989], "www.joy-cazino.com": [20654], "s02.yapfiles.ru": [22667], "thurrott.com": [16481], "wpfr.eu": [2024], "kaz-s.net": [2024], "www.ostel.co": [12161], "phowo.co": [2024], "sbpr.co": [2024], "diy.soylent.com": [15267], "docs.i2p2.de": [7663], "clientservice.curse.com": [3927], "www-cdn.sitescout.com": [14938], "persian.iran.usembassy.gov": [22406], "secure.audubon.org": [1389], "www.cisco.com": [3165], "www.mcvuk.com": [20943], "adultlearning.lancashire.gov.uk": [20777], "cdn.silktide.com": [14859], "www.wipmania.com": [18003], "www.triphip.com": [16818], "www.bluebird.com": [2159], "pkap.co": [2024], "jshen.me": [2024], "ipgmail.com": [7796], "www.teddyonlinejudge.net": [16122], "mercuryhols.com": [2024], "komentare.aktuality.sk": [1507], "rng.rs": [2024], "resept.it": [2024], "*.whyy.org": [18001], "pressandpolicy.bl.uk": [2358], "www.ezimages.eu": [4994], "www.getdnsapi.net": [6595], "mpblog.xyz": [2024], "s1.ifengimg.com": [20487], "iberdrola.es": [7895], "3.dbstatic.no": [19775], "xs.powerdns.com": [13036], "aom.link": [2024], "kathrein.de": [8833], "servicepas.snsbank.nl": [14207], "news.wustl.edu": [18089], "virurl.com": [17575], "fotolab.cz": [6055], "mbr.biomedcentral.com": [1931], "carrefoursa.com": [2872], "to.verbund.com": [2024], "shutr.bz": [2024], "pass.pt": [2024], "www.astra.io": [1324], "go.ntx.sx": [2024], "a.imageshack.us": [7983], "support.parature.com": [12425], "www.nytexaminer.com": [11039], "lhcb.web.cern.ch": [2588], "faq.opendoor.com": [12041], "www.garmin.com": [20205], "*.vimgs.ru": [17956], "iheartdogs.co": [2024], "ipv4.tunnelbroker.net": [16905], "www.githubstats.com": [6662], "montrealpri.me": [2024], "civica.co.uk": [19598], "kuppingercole.com": [9053], "ll-us-i5.wal.co": [18048], "pan.sohu.net": [15172], "serpl.us": [2024], "yaha.no": [18723], "hor.tn": [2024], "oq.qa": [2024], "umemphis.worldcat.org": [18536], "product1.djicdn.com": [4029], "telepacifi.co": [2024], "webmail.fit.edu": [5922], "www.silentcircle.com": [14848], "www.tropicalmedicine.ox.ac.uk": [17359], "ttaka.net": [2024], "cdn.forumwizard.net": [6041], "*.nimbushosting.co.uk": [11448], "atshopping.co": [2024], "r24626681.sync.app.asana.com": [1265], "nextep.ws": [2024], "dot.youku.com": [18804], "sputil.co": [2024], "xmms2.org": [18613], "my.bioquant.com": [2024], "gonzal.es": [2024], "www.wildwestdomains.com": [18391], "sogo.nu": [14211], "andrl.co": [2024], "social.bioware.com": [1934], "securestudies.com": [14558], "zeczec.com": [22712], "wolfsru.de": [2024], "u.napp.it": [2024], "rshb.ru": [14059], "brunel.ac.uk": [19459], "forums.bistudio.com": [2195], "thiagojdi.tk": [2024], "palau.usembassy.gov": [22406], "news.yandex.com.tr": [18740], "bitcoincharts.com": [2003], "guav.co": [2024], "elvn.co": [2024], "tcsignature.thomascook.com": [16450], "smartlessons.ifc.org": [8258], "belibro.ca": [2024], "www.jiasule.com": [8581], "byta.co": [2024], "farm.autotrader.co.uk": [19279], "www.northwarks.gov.uk": [11538], "fagms.net": [5618], "sl.jnapc.co.jp": [2024], "schu.bertia.de": [2024], "lists.effi.org": [5097], "go.mywv.net": [2024], "thegaz.co": [2024], "www.thelocal.se": [22170], "images.boldchat.com": [2203], "cert.at": [2593], "hilversum.nl": [11172], "m.kavkaz-uzel.ru": [20694], "login.money.pl": [10585], "anku.nl": [2024], "www.myheritageimages.com": [10876], "msg.youku.com": [18804], "docs.gitlab.com": [6658], "www.ruxcon.org.au": [14105], "madot.ie": [2024], "portali.hku.hk": [20387], "projecteuclid.org": [13184], "457-northumberland.eschools.co.uk": [20017], "fs.oxfordjournals.org": [12222], "r24617888.sync.app.asana.com": [1265], "eddieeagle.nra.org": [21177], "acquiring.pochtabank.ru": [12876], "pay.taobao.com": [16015], "sc.mondediplo.com": [10578], "share.xmarks.com": [18671], "info.ble.de": [19406], "www.r-posts.com": [13446], "molecularcytogenetics.biomedcentral.com": [1931], "nvisium.com": [11023], "w.aross.se": [2024], "onegoods.nosdn.127.net": [41], "hopeweb.co.uk": [2024], "*.livenation.com.au": [9493], "*.arpnetworks.com": [401], "trendmicro.de": [16789], "www.salford.gov.uk": [21721], "thedma.org": [16340], "c3.xkcd.com": [22652], "update.clearlinux.org": [3233], "d-cr.co": [2024], "ribei.ro": [2024], "resources.mentoringcentral.net": [10285], "bu-ly.com": [2024], "gigaset.com": [6637], "yrdr.it": [2024], "schoolbyt.es": [2024], "*.pcboc.com": [2767], "maerskd.co": [2024], "project.ulteo.com": [17214], "fedid.ext.ti.com": [16225], "bms.tips": [2024], "escholarship.org": [4963], "calastone.com": [19492], "trlna.com": [2024], "seasonal.ly": [14513], "bradjust.us": [2024], "www.strato-mailcenter.com": [14256], "ulyanovsk.sledcom.ru": [21858], "d6e.co": [2024], "url.rudenko.org": [2024], "ertos.nicta.com.au": [10962], "novosibirsk.europaplus.ru": [20034], "z.13djs.com": [2024], "www.linbit.com": [9091, 9092], "weblogs.asp.net": [413], "www.usshortcodes.com": [3488], "amoena.de": [1023], "help.filefactory.com": [5775], "docs.compose.io": [3530], "laurc.ro": [2024], "licensing.fcc.gov": [5699], "atx.ms": [2024], "justaguy.pw": [8713], "gawker-labs.com": [6453], "bitnb.co": [2024], "marketplace.domaintools.com": [4653], "git03.rostrud.ru": [21677], "otr.webcaster.pro": [22542], "www.net-a-porter.com": [11210], "khanacademy.org": [8888], "s.go2yd.com": [20274], "a3.ifengimg.com": [20487], "p.calameoassets.com": [2749], "thawte.com": [16249], "go.cplace.net": [2024], "sussle.us": [2024], "thc.org": [15875], "labor.dailykos.com": [4110], "cssm.entrust.com": [5290], "wttw.me": [2024], "marconisida.com": [3928], "www.omniref.com": [11837], "www.elastictrace.com": [5132], "schoolsonline.wokingham.gov.uk": [22606], "nomd.eu": [2024], "janus.wayf.dk": [17988], "nxp.me": [2024], "kiev.unian.ua": [22369], "spcs.ws": [2024], "app.halowaypoint.com": [7165], "www.anxpro.com": [1111], "donotcall.gov.au": [4599], "motoaction.us": [2024], "poc.corp.anthem.com": [19206], "kck.bz": [2024], "crm.georgetown.edu": [6531], "tauntondeane-consult.objective.co.uk": [21225], "stylewatch.stelladot.com": [15531], "augur.airbitz.co": [19121], "startssl.net": [15472], "casfri.co": [2024], "wadmin.green.ch": [20305], "s17.postimg.io": [13024], "mosh.mit.edu": [9763], "www.ddlvalley.cool": [19785], "freedomsphoenix.com": [20161], "static.wellbid.com": [18285], "semipio.us": [2024], "de.mark.reevoo.com": [13772], "www.majordomo.ru": [9914], "lzone.de": [20898], "kkk.com": [8944], "osturm.me": [2024], "cals.vt.edu": [17825], "gr8sh.it": [2024], "musopen.org": [10769], "s-cdn.matchtv.ru": [20932], "de.pcpartpicker.com": [12529], "notalone.gov": [11554], "president.buffalostate.edu": [2418], "tigt.ag": [2024], "tropo.com": [16835], "photos1.meetupstatic.com": [10231], "dnsstuff.com": [4062], "fhs.io": [2024], "fs10.enter.ru": [20002], "bugs.mutt.org": [10773], "crde.nl": [2024], "etrm.oracle.com": [12116], "*.my.mail.ru": [9891], "s.risley.co": [2024], "m.svz-bw.de": [22054], "bevoelkerungsschutz-portal.de": [2443], "dusuntas.in": [2024], "83m.co": [2024], "kd2.us": [8731], "*.filmlinc.com": [5792], "www.lrz-muenchen.de": [9253], "pland.me": [2024], "klckstewa.com": [2024], "getmw.me": [2024], "www.percona.com": [12589], "ddos-guard.net": [19788], "blog.nanigans.com": [18518], "dgtsol.es": [2024], "www.burst.net": [2462], "register.finma.ch": [15760], "h2d.dk": [2024], "www.zenmate.kr": [18917], "aboutface.ly": [2024], "support.smartbear.com": [21865], "wpvum.com": [2024], "ifca.ai": [8264], "p.jibe.com": [2024], "alfresco.com": [850], "strap.li": [2024], "no-cache.hubspotqa.com": [7600], "photos.forceline.net": [20134], "go.arbopl.bbelements.com": [1742], "leningradskaya-obl.beeline.ru": [1778], "m5m.eu": [2024], "www.st-petersburg.uio.no": [17414], "lncnmo.co": [2024], "n2.chaucanh.net": [2024], "whate.ch": [2024], "continuum.io": [19676], "18wwk5k943sc8s59laek17zyaotwvqejwgc6wxig.ipleak.net": [20571], "store.totalwebsolutions.com": [16676], "my.zyxel.ru": [22734], "www.buyfacefx.com": [14856], "ask.openstack.org": [12011], "blog.myrusakov.ru": [21068], "estates5.warwickdc.gov.uk": [22531], "uk.boardgamearena.com": [2182], "btnkdr.com": [2024], "statserv.freedom-vrn.ru": [20159], "edarabia.com": [5064], "mintrans.49gov.ru": [187], "www.chilebit.net": [3079], "zataz.com": [18899], "leszczynski.it": [2024], "clvnk.co": [2024], "a-th.co": [2024], "cloudcontrol.com": [3282], "www.slac.com": [15007], "courses.illinois.edu": [17346], "digitaleguthabenkarten.saturn.de": [21736], "images.duckduckgo.com": [4785], "bit.bhamani.com": [2024], "www.voo.st": [17932], "www.sobytiya.info": [21887], "veracode.com": [17703], "*.sssup.it": [14247], "qs.ioam.de": [7787], "spacom.sparebank1.no": [21922], "webmail.hska.info": [20437], "clite.co": [2024], "www.muslimadvocates.org": [10760], "tonic.ly": [2024], "on.ksdk.com": [2024], "reseller-docs.maxcdn.com": [10102], "planet.archlinux.fr": [1189], "addca.sh": [2024], "h6.chaucanh.net": [2024], "webassetsc.scea.com": [14148], "joniann.com": [2024], "osc.tips": [2024], "roboxchange.com": [13501], "api.tiles.virtualearth.net": [17840], "*.clickbank.com": [3244], "www.gate.swissmedic.ch": [22061], "oai.oracle.com": [12116], "verbraucherschutz.sachsen.de": [14279], "repository.cmu.edu": [2868], "devblog.songkick.com": [21900], "pusherapp.com": [13297], "d.prodicle.com": [2024], "www.eg-online.ru": [19968], "public.resource.org": [13253], "mtb.com": [9701], "thebodyshop.co.id": [22145], "list.co.uk": [16273], "fc.maxon.net": [10110], "szze.tk": [2024], "www.foofighters.com": [5975], "msnbc.msn.com": [9808], "jino.ru": [8589], "*.thedilbertstore.com": [16344], "supportservices.jobcorps.gov": [20645], "esi.incites.thomsonreuters.com": [16456], "tryhaskell.org": [16875], "www.landaire.net": [20779], "on24.com": [11675], "www.qiye.163.com": [50], "cdn2.sure-assist.com": [15709], "git.geany.org": [6463], "merchant.onlinesbi.com": [11911], "fla.st": [2024], "megadl.fr": [79], "e.comr.se": [2024], "l.d-v.us": [2024], "ejabberd.im": [5117], "jefit.pw": [2024], "on.nola411.com": [2024], "losa.me": [2024], "www.amazingcareers.firstdirect.com": [20110, 20111], "www.luez.tk": [3536], "clickbank.com": [3244], "globi.es": [2024], "www.malware-tracker.com": [9939], "payment-test.cca.edu": [2547], "piao.jd.com": [8436], "w.datawifi.co": [2024], "bind.re": [2024], "remodeli.st": [2024], "lanjut.xyz": [2024], "industrymailout.com": [8083], "openreach.co.uk": [12075], "news.cs.washington.edu": [17376], "m.datart.sk": [3998], "www.expmedndm.ox.ac.uk": [17359], "homedepotfoundation.org": [7481], "es.empireblue.com": [19988], "energylivenews.com": [5246], "*.rrts.com": [13510], "h1t.it": [2024], "support.theplatform.com": [16308], "3.asset.soup.io": [15235], "jobsadmin.newscientist.com": [11338], "lor.ac": [2024], "fictiv.com": [5759], "aafes.cyberpowerpc.com": [19748], "forums.openoffice.org": [1117], "ebola.stanford.edu": [15448], "pivotal.io": [12765], "merchandising.expediaaffiliate.com": [5493], "autodiscover.bmb.leeds.ac.uk": [17403], "rng.im": [2024], "imgjam.com": [7995], "bighugelabs.com": [1882], "go.yaya.nl": [2024], "*.muni.cz": [10741], "a0.lscdn.net": [9115], "livestream.com": [9527], "pbx.uno.im": [17447], "js.thisismedium.com": [8456], "*.manchester.ac.uk": [17411], "cb.com": [2024], "sakittome.com": [5296], "p1.music.126.net": [40], "coventry.gov.uk": [19705], "dna.land": [4047], "teslamotors.com": [16213], "static.superstart.se": [15700], "webassetse.scea.com": [14148], "images.linuxcontainers.org": [9435], "dltcg.jd.com": [8434], "admissions.bury.gov.uk": [19476], "securityexperten.com": [14590], "sgfnow.co": [2024], "physics.osu.edu": [11797], "myaccount.shaw.ca": [14748], "vip.meetme.com": [10224], "bor.to": [2024], "carpag.es": [2024], "x.waded.org": [2024], "smackjeeves.com": [15044], "flntsk.in": [2024], "url.terror.team": [2024], "nacs.be": [2024], "foliovision.com": [5964], "mqp.nra.org": [21176], "uwc.worldcat.org": [18536], "keepass.info": [8849], "musik.umeahackerspace.se": [17228], "alpinesta.rs": [2024], "www.sipgate.de": [14924], "goxi.ps": [2024], "joeg.oxfordjournals.org": [12222], "blackboard.cornell.edu": [3676], "*.zissousecure.com": [18976], "lecid.re": [2024], "economics.harvard.edu": [7211], "flixbus.be": [5911], "download.taz.de": [15853], "somevid.com": [15201], "url.wheder.eu": [2024], "bgs.zg.ch": [22061], "gaitaobao1.alicdn.com": [853], "www.ixsystems.com": [7882], "jxb.oxfordjournals.org": [12222], "video16.0xdb.org": [10], "crn.direct": [2024], "on.ptl.bz": [2024], "quimica.uniovi.es": [17282], "evozi.com": [5457], "www.evm.dk": [5451], "memopol.lqdn.fr": [9126], "kss.otpbank.ru": [12165], "f.5.ua": [2024], "lvb.me": [2024], "mrv.me": [2024], "ejnews.eastday.com": [5010], "dagestan.sledcom.ru": [21858], "content.amadump.com": [19164], "snite.org": [2024], "www.33option.com": [139], "btnhl.net": [2024], "l.airtable.com": [2024], "www.oracle.com": [12116], "frmp.it": [2024], "card.ubrr.ru": [17173], "www.urlaubspiraten.de": [22401], "publishing.bl.uk": [2358], "www.compute.dtu.dk": [16096], "cohealth.co": [2024], "company.overdrive.com": [12191], "bitquick.co": [1969], "mifidii.thomsonreuters.com": [16456], "www.coverity.com": [3731], "eluni.mx": [2024], "bonni.ci": [2024], "secure.teljari.is": [10562], "sicurezzarete.com": [21824], "amazon.fr": [19176], "decorcocina.net": [2024], "state.gov": [17146], "www.thinkpads.com": [16439], "api-staging.flightradar24.com": [20119], "f32.co": [2024], "m.za.imhd.sk": [8004], "www.aarnet.edu.au": [278], "prqd.co": [2024], "imax.ly": [2024], "f0x.nl": [2024], "blog.popcorn-time.to": [21461], "m.yandex.com.tr": [18740], "blirt.ly": [2024], "static1.dditscdn.com": [4228], "itweb.wku.edu": [22602], "stickyvibe.tuxfamily.org": [22319], "illin.is": [2024], "array.is": [1238], "apimg.alipay.com": [864], "aktion-deutschland-hilft.de": [814], "myfbo.com": [10802], "vecher.europaplus.ru": [20034], "podcast.at": [12886], "usenet-crawler.com": [17510], "*.cleanenergyfinancecorp.com.au": [3226], "www.erg.cuhk.edu.hk": [2704], "nydn.us": [2024], "bhnk.co": [2024], "solidarites.ch": [21897], "tstmbl.fr": [2024], "services.openbank.ru": [21267], "w.readwrite.com": [2024], "endml.co": [2024], "www.firstgiving.com": [5852], "jgx.im": [2024], "ork.cc": [2024], "foda.in": [2024], "mybanklearning.sbi.co.in": [14140], "search.archives.un.org": [17057], "frdair.co": [2024], "appcelerator.com": [1144], "www.pha.ulaval.ca": [17319], "lcdisability.uk": [2024], "dev.techxpress.net": [16087], "prodavin.ci": [2024], "b2b.evo73.ru": [20043], "www.unisys.co.jp": [17292], "danid.dk": [4126], "sparkly.black": [2024], "altlinux.org": [361], "renck.co": [2024], "vce.com": [17561], "navynews.co.uk": [14046], "bluetrain.me": [2024], "jameco.com": [8511], "datalxr.com": [2024], "dplus.cnzz.com": [3328], "*.proofpoint.com": [13198], "opens.at": [2024], "www.healthcarestaffbenefits.org": [7260], "code.webplatform.org": [18176], "reddit.premii.com": [7444], "usat.ly": [2024], "amaanf.info": [2024], "blackhair.cc": [2024], "otrs-desa.ulpgc.es": [17213], "cldkd.com": [2024], "koderoot.net": [8964], "securityweek.com": [14587], "www.gupnp.org": [6334], "tptq-arabic.com": [15919], "copic.us": [2024], "8.play-asia.com": [12828], "asrvr.ir": [2024], "denh.am": [4345], "prton.info": [2024], "sabg.co": [2024], "easyjet.com": [5017], "fiatjaf.alhur.es": [19137], "www.turngs.com": [16915], "trade.autotrader.co.uk": [19280], "nos.netease.com": [11228], "regional.sony.com.hk": [15212], "twdx.in": [2024], "shkb.ch": [20683], "buildbot.net": [19469], "sonymobile.com": [15216], "www.happyfoto.sk": [7193], "sustainability.williams.edu": [18408], "udidac.tv": [2024], "subtome.com": [15633], "www.dealzon.com": [4014], "edwineuro.pe": [2024], "trnd.me": [2024], "www.kdelive.org": [8846], "ponyfoo.com": [21460], "s.automaton.am": [2024], "*.etsy.com": [5384], "files.thirdpresence.com": [16443], "antwer.pe": [2024], "s.dohkeblog.com": [2024], "www.boardgamegeek.com": [2183], "www.buzzdoes.com": [2493], "px.srvcs.tumblr.com": [16898], "4joycasino.com": [20654], "wjtk.pl": [2024], "comments.theregister.co.uk": [22182], "now-static.norton.com": [11545], "getdropbox.com": [4763], "lfdnb.uk": [2024], "myforms.sc.egov.usda.gov": [17299], "idp.stanford.edu": [15448], "brixwork.com": [2361], "human-resources-health.biomedcentral.com": [1931], "formatdynamics.com": [6021], "tr.foursquare.com": [6061], "whitelabel.net": [18350], "pfg.im": [2024], "experts.stanford.edu": [15448], "membership.theguardian.com": [16364], "democratic.bridgend.gov.uk": [19449], "www.secularstudents.org": [14535], "heyad.am": [2024], "rewards.americanexpress.com": [979], "www.awxibrm.com": [3484], "www.onetimesecret.com": [11889], "oficinaverde.unizar.es": [17441], "resiprocate.org": [13658], "ktmh.me": [2024], "my.maricopa.edu": [9997], "sonicwall.com": [15207], "shop-ly.com": [2024], "www.youtube.hu": [18800], "e7.xhamsterpremiumpass.com": [18607], "slam.fm": [2024], "go.wvu.edu": [2024], "stanfordconnects.stanford.edu": [15448], "ebm.e.ccs.com": [2565], "my.smartbear.com": [21865], "*.aa.net.uk": [272], "rapp81.us": [2024], "l.psp83.co.uk": [2024], "monoc.me": [2024], "torrentleech.org": [16658], "www.medici-manager.com": [10203], "rptx.nl": [2024], "media.licdn.com": [9098], "nbviewer.jupyter.org": [8703], "codeschool.com": [3355], "www.youtube.hr": [18800], "payments.westminster.gov.uk": [18315], "campaigns.coastcapitalsavings.com": [3335], "nelrst.co": [2024], "dehu.dict.cc": [4442], "lasftix.com": [2024], "www.gogetssl.com": [6762], "o3w.in": [2024], "cdn.environment-agency.gov.uk": [20006], "osdsc.alicdn.com": [853], "pic1.zhimg.com": [18956], "static.pinboard.in": [12710], "prl.si": [2024], "mmm.wtf": [2024], "cln.cloudlinux.com": [3288], "congresstmi.org": [5769], "i.itr0.pw": [2024], "ipto.ga": [2024], "e2e-m.net": [2024], "dobrochan.ru": [4601], "maps.havering.gov.uk": [7236], "fotisl.com": [6049], "www.exeterfamily.co.uk": [5480], "*.netmarble.com": [11283], "us.jobs": [22403], "orhnse.nl": [2024], "telework.gov.au": [16163], "ustream.tv": [17536], "pt-kit.mondediplo.com": [10578], "mirror.contribs.org": [3621], "ineo.iciciprulife.com": [7917], "www.oppelt.com": [12095], "link.epel.us": [2024], "crz.bz": [2024], "www.vshosting.cz": [17599], "mybenefitscalwin.net": [10791], "cp.timeweb.ru": [16532], "q.suntravel.xyz": [2024], "www.vilistlane.ut.ee": [17148], "get-pro-screen-recorder.screencast-o-matic.com": [14471], "www.hackread.com": [7124], "hydrogenaud.io": [20455], "thebay.space": [21524], "nl.chaturbate.com": [3040], "fbrogers.co": [2024], "writema.sh": [2024], "webmail.thm.de": [15876], "blogg.slu.se": [14195], "forums.okturtles.com": [11810], "rr.gy": [2024], "noomi.li": [2024], "link.tnm.li": [2024], "darktrace.com": [19759], "haobtc.com": [7187], "tpm.io": [2024], "ashletes.com": [2024], "delson.gq": [2024], "i3.piimg.com": [16509], "fuar9.beget.com": [19347], "*.burstnet.com": [2464], "scripts.sil.org": [14182], "exl.is": [2024], "www.me.com": [9747], "www.onesignal.com": [11882], "s3.jrnl.ie": [20656], "on.nyls.edu": [2024], "smrd.csnva.link": [2024], "chlmrkrsr.ch": [2024], "ddar.ca": [2024], "tob.onl": [2024], "evga.com.tw": [4978], "f.omaporsas.ee": [2024], "tcdy.co": [2024], "helpspot.com": [7305], "crowdculture.se": [3818], "*.ujf-grenoble.fr": [17036], "kimbalik.es": [2024], "static.iono.fm": [8335], "www.oregonstate.edu": [12134], "m.airbnb.at": [793], "techtarget.com": [16084], "dfri.es": [2024], "marsocial.com": [9723], "kzuka.co": [2024], "consultation.hackney.gov.uk": [7143], "www.get.cm": [6549], "f5networks.co.jp": [5538], "talesblog.me": [2024], "link.bashea.net": [2024], "myinfo.lincoln.gov.uk": [9378], "raumzeitlabor.de": [13638], "billyjoel.ws": [2024], "www.campusvirtual.uniovi.es": [17282], "r.bstn.fr": [2024], "my.3ra.ca": [2024], "grepbugs.com": [6926], "partyprogress.org": [12455], "nylas.com": [11636], "myportal.seagate.com": [14499], "formstack.com": [6023], "dashboard.jwplayer.com": [9601], "www.worksthatwork.com": [18535], "fr.icecat.biz": [7912], "theparliamentmagazine.eu": [16376], "wonkwangmd.org": [2024], "keen.io": [8852], "www.igt.hscic.gov.uk": [20435], "explore.co.uk": [20053], "o1.qnsr.com": [13357], "skir.tc": [2024], "travisw.net": [2024], "parkingpermits.kirklees.gov.uk": [8929], "cyberwar.nl": [3971], "coupon.cd": [2024], "special.geektimes.ru": [6490], "sitecontrol.us": [14944], "lagi.tk": [2024], "ingressos.rio2016.com": [21652], "ent1.tk": [2024], "partedmagic.com": [21352], "1tag.us": [2024], "s3.sinaimg.cn": [14910], "snjy.me": [2024], "2rl.in": [2024], "myefc.efinancialcareers.com": [4903], "loyalforex.com": [9647], "corals.co": [2024], "vwell.cm": [2024], "breadwallet.com": [19444], "lekh.com.np": [2024], "its.med.cornell.edu": [3676], "unibeds.info": [2024], "dinsk.tpprf.ru": [22260], "ddd.li": [2024], "nutrie.co": [2024], "clusters.de": [3321], "ondemand.sans.org": [14128], "georgetown.edu": [6531], "www.amersfoort.nl": [11172], "docs.saltstack.com": [14317], "www.xhamster.com": [18606], "ols.britac.ac.uk": [2352], "www.mpfmembers.org.uk": [21034], "registrierung.web.de": [18146], "static-ec.xhcdn.com": [18605], "www.fold.cm": [5961], "autodiscover.newsinc.com": [11376], "cdn.censornet.com": [19539], "webnames.ru": [22550], "*.sitepen.com": [14936], "cdn.engine.4dsply.com": [197], "bbcom.me": [2024], "purchasing.osu.edu": [11797], "gossbrig.com": [2024], "fostermktg.us": [2024], "bz.mercurial-scm.org": [10300], "alank.ca": [2024], "a1.nyt.com": [11035], "com-sys.de": [3451], "www.visatovietnam.org": [17851], "bircko.com": [1942], "nizhnevartovsk.startsmile.ru": [21980], "pntlbs.co": [2024], "www.gmail.com": [6827], "js1.pp.sohu.com.cn": [15170], "openaccessbutton.org": [11951], "athens.indymedia.org": [8090], "gtr2.com": [2024], "www.assessment.vt.edu": [17825], "edint.co": [2024], "comprodr.pl": [2024], "tren.us": [2024], "s.bigdawggi.co": [2024], "earthcam.net": [19931], "*.ticketsnow.com": [16501], "www.magicmembers.com": [9874], "prestashop.com": [13085], "*.magserv.com": [9880], "edonorcentral.com": [4896], "travel.americanexpress.com": [979], "education.lego.com": [9082], "unis.pt": [2024], "it.piliapp.com": [12706], "redbridge.gov.uk": [13742], "co.mposit.es": [2024], "quorks.ath.cx": [13429], "brdgtl.in": [2024], "esource.expo2020dubai.ae": [5502], "2day.fm": [2024], "panel.preyproject.com": [13091], "q.bibhas.in": [2024], "blog.terminal.com": [16192], "www.snipt.net": [15102], "kchr.sledcom.ru": [21858], "yun.taobao.com": [16015], "tube-test.geogebra.org": [6522], "chongzuoguan.jd.com": [8434], "ical.hbloom.com": [2024], "s.lnrdll.me": [2024], "bnrbk.com": [2024], "plohie-devchonki.friday.ru": [20175], "ipnurl.net": [2024], "review.tizen.org": [16580], "spectru.me": [2024], "irkutsk.biglion.ru": [19375], "shapeshift.io": [14721], "www.hereplus.me": [7327], "ltradio.com": [9118], "peony.rocks": [2024], "netdnasite.wpengine.netdna-cdn.com": [11227], "api.mail.aol.com": [380], "research.net": [15724], "assets.digital.cabinet-office.gov.uk": [2715], "sbcc.us": [2024], "developer.airbitz.co": [19121], "ivanovo.startsmile.ru": [21980], "ucmsv2qa.unitech.net": [17266], "olju.mn": [2024], "kh42.tk": [2024], "customer.stg.xfinity.com": [22650], "pupj.co": [2024], "geta.tw": [2024], "stats.bancopastor.es": [1661], "flint.cf": [2024], "morango.play-asia.com": [12828], "recettes.univers-libre.net": [17316], "pskov.rapida.ru": [13619], "ctx.to": [2024], "cp.element5.com": [5149], "www.sourcetreeapp.com": [15244], "hellovi.no": [2024], "partnerupload0.steampowered.com": [15516], "planetemu.net": [12803], "forum.susliving.org": [15728], "www.marcan.st": [9991], "egee-uig.web.cern.ch": [2588], "english-heritageshop.org.uk": [5259], "brena.us": [2024], "www.terveysportti.org": [16204], "rcitravelstore.co.uk": [18579], "holdall.norfolk.gov.uk": [21154], "www.foliovision.com": [5964], "url.sphardy.com": [2024], "j-ch.in": [2024], "riot.com": [2024], "hnka.co": [2024], "s.aneb.ca": [2024], "webie.eu": [2024], "www.yoyo.com": [22696], "wiki.eth-0.nl": [5365], "ianl.info": [2024], "oi.meetings.io": [10229], "planboardapp.com": [12794], "online.mtsbank.ru": [10720], "mail.telford.gov.uk": [22121], "www.qtdeveloperdays.com": [13367], "lyudi-pyatnicy.friday.ru": [20175], "surespot.me": [15711], "sfn.org": [15144], "anl.yt": [2024], "tarpon.citrix.com": [3180], "aafic.me": [2024], "asiamil.es": [2024], "central-lincs.objective.co.uk": [21225], "x.wpimg.pl": [22621], "*.selfhost.de": [14628], "en-nl.dict.cc": [4442], "raymor.in": [2024], "www.singpao.com.hk": [14913], "evil32.com": [5449], "brewingwork.co": [2024], "carto.mondediplo.com": [10578], "preferences.hearstmags.com": [7271], "tumi.rocks": [2024], "*.fastssl.net": [5662], "ais.vip.de": [17573], "sol.sapo.pt": [14131], "cheboksary.auto.ru": [19276], "wikif.in": [2024], "fiet.me": [2024], "benefits.tamworth.gov.uk": [22096], "*.ntt.com": [11006], "select.auction": [21773], "autodiscover.hcl-axon.com": [7033], "vue.com": [12539], "mustaphalab.stanford.edu": [15448], "afroniquely.us": [2024], "dedovsk.biglion.ru": [19375], "doxea.info": [2024], "www.stopbadware.org": [15556], "archive.baruwa.com": [19320], "12ma.co": [2024], "kirklees.greenparty.org.uk": [6908], "wwwsrv.bo.infn.it": [7771], "myapp.cdgcommerce.com": [2566], "superstats.com": [15682], "notebookkisker.hu": [9167], "activate.origin.com": [12141], "webseries.rsi.ch": [21957], "www.ogilvy.co.uk": [21232], "eforms.chichester.gov.uk": [19579], "url.coenm.nl": [2024], "pad.freifunk.net": [6170], "tortyodmamy.sme.sk": [14198], "go.nc4pk.net": [2024], "itv.te-st.ru": [22103], "digisci.co": [2024], "www2.okcupid.com": [11809], "faq.fongo.com": [2024], "skoleni.root.cz": [14020], "app.statushub.io": [15504], "bqq.gtimg.com": [6975], "en.gay-lounge.net": [20211], "csene.ws": [2024], "mandiant.net": [10193], "ana.net": [1320], "cdn.emetriq.de": [18677], "univis.uni-mainz.de": [17410], "www.alibaba.com": [857], "hertz247.co.uk": [7370], "en.es-static.us": [20015], "hitleap.com": [7425], "youtube.ru": [18800], "go.openco.ru": [2024], "youtube.rs": [18800], "playte.ch": [2024], "mortara.georgetown.edu": [6531], "riv.cc": [2024], "bulkorder.ftc.gov": [5710], "ogtbj.com": [2024], "static.gazeta.ru": [6460], "boig.co": [2024], "secure.manlysealifesanctuary.com.au": [9968], "fnt.webink.com": [18165], "youtube.ro": [18800], "qr8s.co": [2024], "2di.me": [2024], "site5.com": [14929], "www.hellobar.com": [7293], "www.emapawards.com": [5187], "rkz.com.br": [2024], "vsp.stadtwerke-bamberg.de": [15433], "www.sk-nic.sk": [14960], "bertrandmeyer.com": [1830], "topblo.gs": [2024], "ad2.udn.com": [17020], "chplan.us": [2024], "c.bonyana.ir": [2024], "trov.to": [2024], "mswr.me": [2024], "deviceids-meda-id4.wdr.de": [18113], "fitocracy.com": [5870], "trueisl.am": [2024], "c.xkcd.com": [22652], "www.talkactive.net": [15989], "*.don.ac.uk": [4673], "stbrd.in": [2024], "static-seawolf.cursecdn.com": [3927], "a9ny.com": [2024], "tdpf.co": [2024], "m.poczta.wp.pl": [18012], "www.hrkgame.com": [7584], "dms-d.wiiings.com": [18381], "ecdrappeals.ed.gov": [4881], "edinburghfestival.list.co.uk": [16273], "*.coloradoan.com": [3445], "www.gutefrage.net": [7011], "bw.gm.163.com": [50], "dedigitaletopschool.nl": [4235], "ftp.usa.openbsd.org": [11955], "itweed.co": [2024], "soeren-hentzschel.at": [15152], "www.hamburg.fau.org": [5543], "ciner.gy": [2024], "www.onionshare.org": [11900], "frwl.tv": [2024], "l.tpt.bz": [2024], "prtn.rs": [2024], "link.lejuez.com": [2024], "join.hrc.org": [7609], "hy.is": [2024], "a.planetlan.com": [12808], "live.dus.c3voc.de": [2514], "kwdub.ai": [2024], "e-banking2.hangseng.com": [7183], "sealserver.trustwave.com": [16870], "tuiles.mondediplo.com": [10578], "addons.opera.com": [12086], "cs.vu.nl": [17608], "d.icetravel.xyz": [2024], "thepiratebay.rs": [22174], "biop.ox.ac.uk": [17359], "yuizinha.link": [2024], "x.nuckpup.ca": [2024], "glassfish.java.net": [8538], "va-l1.duckduckgo.com": [4785], "rcdata.ca": [2024], "terengganu.worldcat.org": [18536], "krownz.info": [2024], "*.drownedinsound.com": [4767], "drakk.link": [2024], "kanal.meo.pt": [10286], "www.upf.edu": [17471], "my.wku.edu": [22602], "e-barr.com": [2024], "joao.cat": [2024], "39.rkn.gov.ru": [13971], "https.downforeveryone.com": [4720], "insight.rapid7.com": [13613], "blogs.kent.ac.uk": [17402], "www.okcupid.com": [11809], "luisrs.co": [2024], "uc.vtb24.ru": [22512], "www.mantor.org": [9972], "*.dx.com": [4242], "usplusu.com": [17532], "zeke.ws": [2024], "tob.ac": [2024], "tahitivahine.lemonde.fr": [9204], "assets.dnainfo.com": [19857], "ccan.me": [2024], "events.ch": [5435], "cms.myspacecdn.com": [10889], "www.eav.admin.ch": [22061], "gymhotti.es": [2024], "atcal.berkeley.edu": [17329], "a.next.la": [2024], "www.contact-sys.com": [3607], "tbm.li": [2024], "buycraft.net": [2488], "www.westlandutrechtbank.nl": [18311], "content.skyscnr.com": [15006], "lib.tax": [2024], "iampp.in": [2024], "b.tourkick.com": [2024], "yarch.co": [2024], "www.youtube.si": [18800], "zhiku.tmall.com": [22222], "www.snsbank.nl": [14207], "talent.usc.edu": [17366], "es.cryptonator.com": [3873], "bunchball.com": [2438], "mhy.me": [2024], "loud.ie": [2024], "1.lextogo.com": [2024], "www.usrowing.org": [17130], "mymail.coop.ch": [3647], "content.oneplus.net": [11880], "on.axed.nl": [2024], "www.checkpoint.com": [3052], "www.groupon.com": [6953], "cmnf.engineering.osu.edu": [11797], "goldstar.com": [6803], "tywyn.wales": [2024], "a.kjp.co": [2024], "maxshar.es": [2024], "vldz.in": [2024], "rfs.oxfordjournals.org": [12222], "kdp.amazon.co.jp": [19169], "s.maxi.host": [2024], "addresspicker.io": [632], "www.healthunlocked.com": [7257], "allpayments.net": [19154], "vtr.pe": [2024], "www.peerio.com": [12554], "admin.zuji.com.hk": [19021], "*.bcvs.ch": [1681, 20683], "fvn.no": [6029], "gametreedeveloper.com": [6406], "*.atlantic.net": [1344], "justice.gov.uk": [10465], "cheryl.at": [2024], "uk-info.sky.de": [14990], "npa.gov-murman.ru": [20293], "restaurants.afisha.ru": [19107], "give.am": [2024], "mvptitle.com": [9821], "blog.witness.org": [18472], "globalsummitry.oxfordjournals.org": [12222], "itseo.org": [2024], "accdn.tl": [2024], "account.buckscc.gov.uk": [19465], "blim.co": [2024], "macworld.idg.se": [7709], "casino.williamhill.com": [18406], "s.qbpros.net": [2024], "domov.sme.sk": [14198], "imgdino.com": [7994], "boss.berlinonline.de": [1823], "dukgo.com": [4785], "go.outfithq.de": [2024], "reep.refeds.org": [13472], "fandw.me": [2024], "www.alternatives.ca": [932], "foyi.net": [2024], "acre.ws": [2024], "twobyfo.re": [2024], "youtube.com.ua": [18800], "nmed.inl.gov": [20537], "marc.sx": [2024], "mygsd.org": [2024], "4bits.dk": [2024], "via.mrkw.se": [2024], "vspl.in": [2024], "static.reporo.com": [13841], "preview-studyinthestates.dhs.gov": [4026], "s.bfreeporn.com": [2024], "cdnakmi.kaltura.com": [8790], "www.infinow.net": [8099], "www.shorte.st": [14796], "www.studentchaptersonline.acs.org": [974], "shatura.beeline.ru": [1778], "documents.buzzfeed.com": [2489], "goparallel.sf.net": [14167], "lglifes.gd": [2024], "www.joycasino0.com": [20654], "administrace.hosting90.cz": [7534], "skyonline.sky.de": [14990], "bface.es": [2024], "cern.ch": [2588], "podpora.skolaonline.cz": [21852], "*.electricembers.net": [5138], "ticket.yandex.kz": [18743], "epx.ms": [2024], "*.thesfmarathon.com": [14336], "5thin.gs": [2024], "ygtech.tools": [18706], "r24820200.sync.app.asana.com": [1265], "prod.aws.onegreenplanet.org": [11871], "fbo.gov": [5704], "tlhp.cf": [15888], "h.live.com": [9495], "www.ourproject.org": [21314], "android.hkjc.com": [20384], "templ.show": [2024], "switch.uy": [2024], "alertonline.nl": [839], "www.jolicloud.com": [20649], "www.slice.com": [15021], "www.binsearch.info": [1918], "bug-attachment.xfce.org": [18603], "ilg.usc.es": [17506], "my.neo900.org": [11187], "static.jrnl.ie": [20656], "elrepo.org": [4916], "dvidshub.net": [4083], "imaps.spnet.ru": [21939], "rcm-ca.amazon.ca": [19167], "simplereach.com": [14886], "souvenir.ust.hk": [22412], "chrysalisventures.com": [3130], "streetlink.org.uk": [22011], "licensecompliance.gettyimages.com": [6604], "alfa.cz": [848], "i.fabian.mx": [2024], "webpaper.nzz.ch": [21216], "crplz.in": [2024], "careers.dkit.ie": [4032], "at.lldlaw.com": [2024], "yeas.yahoo.co.jp": [18730], "lxty.us": [2024], "link.asseny.org": [2024], "link.kollmer.me": [2024], "lobjet.eu": [2024], "dnvgl.link": [2024], "cam.illinois.edu": [17346], "mlvk.co": [2024], "s1.adformdsp.net": [640], "www.ontraport.com": [21261], "metal.utb.ru": [17538], "trmm.net": [16831], "shoot.camp": [2024], "in.elisete.com": [2024], "pragmaticmarketing.com": [13059], "m.vedomosti.ru": [22433], "actavetscand.biomedcentral.com": [1931], "skooz.me": [2024], "phs.tanx.com": [22097], "kwww.play-asia.com": [12828], "nush.co": [2024], "hsn.bz": [2024], "pic.mathi.eu": [2024], "home.capitalone360.com": [2832], "parkinsonsblog.stanford.edu": [15448], "molotro.ru": [21008], "mywebsite.1and1.ca": [70], "cheapairportparkingbirmingham.com": [3047], "s80.cnzz.com": [3328], "torfx.co": [2024], "kwn.is": [2024], "mail.vas-hosting.cz": [22428], "crnt.engineering.osu.edu": [11797], "ssl.instructables.com": [8199], "google.*": [6822, 6824, 6829, 6831], "tagx.radiox.ch": [13576], "lk.pochtabank.ru": [12876], "forum-lw-4.xda-cdn.com": [22647], "ugst.umd.edu": [17351], "printrbot.com": [13121], "cybercon.com": [3958], "icsu.co": [2024], "itp.link": [2024], "eidmsidf.un.org": [17057], "www.cryptostorm.is": [3881], "genglow.com": [2024], "at.pw.org": [2024], "beyondbinary.io": [19361], "www.ohiounion.osu.edu": [11797], "76.pe": [2024], "anticenz.org": [19207], "b.oudin.me": [2024], "curso.ms": [2024], "sbber.me": [2024], "partners.datamotion.com": [19767], "vrn.te-st.ru": [22103], "wiki.rit.edu": [13493], "t.alipayobjects.com": [864], "lbrehr.stanford.edu": [15448], "horoskopy.blesk.cz": [2088], "activew.in": [2024], "aj-b.co": [2024], "www.cryptojedi.org": [3866], "lightning.cdn.overdrive.com": [12192], "event.condenastdigital.com": [3557], "rcm-na.assoc-amazon.com": [1312], "subscriptions.economist.com": [5052], "dimonvideo.ru": [19840], "pc.1688.com": [51], "www.fuzeqna.com": [1435], "richardoil.me": [2024], "www.emas.portsmouth.gov.uk": [21467], "provost.stanford.edu": [15448], "r24823682.sync.app.asana.com": [1265], "www.goeshow.com": [6781], "b.device42.com": [2024], "brasil247.com": [2308], "molcat1.bl.uk": [2358], "myb.tips": [2024], "mauritania.usembassy.gov": [22406], "webapp.wizards.com": [18477], "uwayuc.org": [2024], "lists.mplayerhq.hu": [9798], "www.kde-apps.org": [8734], "cdn.ssbkyh.com": [15412], "myfreecopyright.com": [10806], "kwdesign.at": [2024], "communitymednews.stanford.edu": [15447], "b.dube.us": [2024], "forums.ipleak.net": [20571], "skillet.lifehacker.com": [9346], "myprogress.collyers.ac.uk": [3433], "mysupport.attachmate.com": [1363], "frctr.me": [2024], "k.kiro.bg": [2024], "lite-mail.centrum.cz": [19547], "hailguardian.com": [7154], "www.libssh.org": [9335], "wfa.re": [2024], "script.ioam.de": [7787], "morocco.usembassy.gov": [22406], "www.iab.org": [7668], "ww2313.smartadserver.com": [15049], "s1rx.com": [2024], "brightfutures.portsmouth.gov.uk": [21467], "6.wate.com": [2024], "www.bose.co.uk": [2248], "cooltee.us": [2024], "www.6erpack.sky.de": [14990], "cdn.indacoin.com": [8054], "box.mbank.pl": [9733], "www.skandia.se": [14961], "cdn5.fnmag.co": [5573], "youtube.it": [18800], "mnpx.fr": [2024], "findnsave.com": [5820], "dtmf2.cdnvideo.ru": [19536], "dikle.in": [2024], "uwdo.gs": [2024], "liblearn.osu.edu": [11713], "www.adhocracy.de": [641], "s.lismo.jp": [2024], "www.pandora.com": [12389], "jabber.logilab.org": [9569], "www.mozilla.com.tw": [10692], "s3.antimac.org": [2787], "www.environment.leeds.ac.uk": [17403], "spnet.ru": [21939], "www.perfectmarket.com": [12592], "dzerzhinsk.beeline.ru": [1778], "trojanone.co": [2024], "u.eduk8.me": [2024], "dgtlgyd.in": [2024], "portal.emergingthreats.net": [5199], "posh.so": [2024], "eussencs.link": [2024], "store.amara.org": [956], "www.findretros.com": [5823], "s.ldg.me": [2024], "axp.zedo.com": [18906], "wiki.lugons.org": [9121], "*.ana.net": [1320], "go.grabone.com": [2024], "www.openfoundry.org": [11975], "bhat.me": [2024], "forums.factorio.com": [20068], "rwdy.us": [2024], "*.gtcsonline.mycashflow.fi": [6369], "careerbuilder.com": [2853], "hsic.com": [2024], "aipaichina.1688.com": [51], "altacar.ga": [2024], "sidthms.us": [2024], "studclient.htwk-leipzig.de": [7596], "jpopsuki.eu": [8666], "sdsp.ipinyou.com": [7807], "mail.apan.org": [388], "strelkacard.ru": [15590], "kungfu.chef.io": [3061], "cache.podseed.org": [12891], "c.gatech.edu": [2024], "uas.osu.edu": [11797], "compass.thecthulhu.com": [16403], "www.pcrdist.com": [21373], "gigasize.com": [6627], "dialin.raiffeisen.ru": [13587], "imgbox.com": [7997], "openstreetmap.org": [12015], "www.osuosl.org": [21304], "aldergrovecu.ca": [833], "m.tune.yandex.com.tr": [18740], "searchcommander.com": [14505], "qte.me": [2024], "www.jtlebi.fr": [8672], "eddievera.com": [2024], "notiz.ie": [2024], "exler.ru": [20050], "expohomes.com": [5616], "www.2ip.ru": [127], "*.verizonwireless.com": [17717], "fdbo.is": [2024], "butik.information.dk": [8125], "4dc.at": [2024], "wick.video": [2024], "europe.unfpa.org": [17062], "kamyshin.biglion.ru": [19375], "casj.biz": [2024], "www.xm1math.net": [18670], "topolcanyinfo.sme.sk": [14198], "*.isdewinkelopen.nl": [20470], "occrp.atlatszo.hu": [1349], "strt.mx": [2024], "wuissrv20.wustl.edu": [18089], "lxvc.co": [2024], "*.he.net": [7633], "www.toyfoundry.net": [16692], "cansmile.net": [2024], "k-pop.fans": [2024], "hrc.org": [7609], "kable.com": [8777], "*.napoleonmakeupacademy.com.au": [11074], "shop.eset.com": [5347], "ktsaunders.co": [2024], "www.cm.be": [3114], "tweet.scmp.com": [2024], "www.zattoo.com": [18900], "agari.com": [763], "*.signon.trb.com": [16806], "*.populisengage.com": [12969], "*.butterflylabs.com": [2481], "jdami.co": [2024], "go.lpia.co": [2024], "iawat.ch": [2024], "signup.taboola.com": [15963], "ctznt.it": [2024], "service.lastpass.com": [9175], "jamanetwork.com": [8423], "wanab.be": [2024], "x3.gm.163.com": [50], "st4.gismeteo.ru": [6650], "www.lebanon.hsbc.com": [7090], "www.tchibo.hu": [16050], "piwik.liberdade.digital": [9312], "dashboard.aggregateknowledge.com": [770], "immers.me": [2024], "www.ing.nl": [7775], "modernis.tk": [2024], "tmk-eqx-geoloc.smartadserver.com": [15049], "lists.lysator.liu.se": [9097], "www.vdqbulbs.com.au": [17563], "tlc.telford.gov.uk": [22121], "playfire.com": [12842], "azplay.co": [2024], "readrboard.com": [13677], "link.cgiu.org": [2024], "r24617712.sync.app.asana.com": [1265], "media.eloqua.com": [5171], "net.koide.jp": [2024], "go.djjavo.co.uk": [2024], "owa.groupware.kuleuven.be": [8832], "23systems.net": [99], "www.rockpaperphoto.com": [13990], "www.heatball.de": [7275], "www.metrix.net": [10345], "find.firefox.com": [5842], "www.gept.org.tw": [20236], "www.asseenontv.com": [1263], "websitealive1.com": [18242], "members.jpost.com": [8667], "bpa.gov": [2212], "*.oe24.at": [11766], "fox25.com": [2024], "sandbox.ietf.org": [7725], "fdopk.org": [5553], "ttl.ut.ee": [17148], "www.mobigum.com": [10529], "kantarworldpanel.com": [8801], "sgmothe.rs": [2024], "*.broadinstitute.org": [2364], "lfov.net": [9089], "demo.mtree.mycelium.com": [21063], "ilias2.hs-karlsruhe.de": [7587], "eeic.osu.edu": [11797], "theguardian.com": [16364], "yanao.psbank.ru": [13231], "bet365.com": [1841], "studentchaptergrants.acs.org": [974], "jicru.oxfordjournals.org": [12222], "iwz.li": [2024], "nosky.us": [2024], "svdpgs.ru": [2024], "www.opencaching.pl": [21269], "primanka.friday.ru": [20175], "ajm.im": [2024], "s.aysray.com": [2024], "eacuk.org": [2024], "help.cir.ca": [3156], "thef.ro": [2024], "eshne.ws": [2024], "se.tips": [2024], "somerset-kctcs.edusupportcenter.com": [19962], "buy.stubhub.co.uk": [15602], "www.belpino.se": [1799], "*.assembly.com": [1305], "www.getdigital-blog.de": [6555], "www.debekijkerie.nl": [4233], "www.yottos.com": [22686], "prospect.prospectpublishi.netdna-cdn.com": [13205], "m.facebook.com": [5609], "notification.adblockplus.org": [616], "assets.couchsurfing.com": [19696], "cit.khabkrai.ru": [20709], "pa6.me": [2024], "sourcearchive.raspbian.org": [13630], "zyrotech.uk": [2024], "itunes.anadolu.edu.tr": [1029], "eng.asana.com": [1265], "nwcn.tv": [2024], "www.netmediaeurope.co.uk": [11238], "*.leidenuniv.nl": [9256], "www.teacupsandtrinkets.co.uk": [16058], "cash.me": [15396], "www.agileu.com": [771], "trideci.com": [16796], "92keys.io": [2024], "re.porting.co": [2024], "rochford.firmstep.com": [20109], "l.hwm.io": [2024], "beckerweb.wustl.edu": [18089], "*.stayfriends.at": [15510], "call.vtweb.us": [2024], "mery.jp": [9749], "photos3.zillowstatic.com": [18965], "reisen.eduscho.at": [16050], "jcrmx.es": [2024], "portal.cloudisc.bezeqint.net": [1862], "www.crimethinc.com": [3793], "elisa.to": [2024], "kitapsatis.anadolu.edu.tr": [1029], "pjblack.me": [2024], "www.lightbluetouchpaper.org": [9358], "kb.mediatemple.net": [10177], "challenge25.go.jp": [8527], "scsi.sec.samsung.net": [14334], "kamkombank.dengisend.ru": [4344], "profesia.sk": [21505], "tuban.lansp.ru": [20781], "bazzapp.com": [1739], "markjr.link": [2024], "naprts.us": [2024], "support.apple.com": [1151], "www.bet365.es": [19357], "url.ttlvrs.com": [2024], "northamptonshire.firmstep.com": [20109], "rcicruiseholidays.ourvacationcentre.net": [18578], "kasp.co": [2024], "r24618024.sync.app.asana.com": [1265], "*.cargocollective.com": [2860], "zionpermits.nps.gov": [11122], "conference.jesus.cam.ac.uk": [17332], "calqu.in": [2024], "lbk.li": [2024], "nxeassets.xbox.com": [18639], "debuggex.com": [4266], "config.webconverger.com": [22543], "c0.ifengimg.com": [20487], "golf2go.net": [1532], "bgm.stanford.edu": [15447], "mysqlbackup.zmanda.com": [18980], "newstuff.seagate.com": [14499], "interac.vogogo.com": [22488], "www.fortumo.com": [6037], "forumblog.org": [6040], "system.spektrix.com": [21933], "jakearchibald.com": [8505], "antho.cm": [2024], "gav.in": [2024], "pbwebdev.com": [12243], "kevmas.com": [2024], "glavbukh.ru": [20262], "tp.mosoblgaz.ru": [21024], "tnwt.co": [2024], "lk.jyh.me": [2024], "m.corec.jp": [2024], "spec.org": [14221], "m.arqtgn.cat": [2024], "zzirc.xyz": [2024], "neimanmarcus.com": [15916], "wag.com": [22517], "www.webmaster.yandex.kz": [18743], "onlinepermits.lambeth.gov.uk": [20773], "git76.rostrud.ru": [21677], "szocio.atlatszo.hu": [1349], "quarknet.fnal.gov": [5741], "img01.findgravy.com": [5827], "bazb.in": [2024], "rickw.in": [2024], "moti.onl": [2024], "pix.sv.us.criteo.net": [3798], "activity.wallstreetcn.com": [18057], "go.ousd.org": [2024], "getpol.org": [6591], "cdn4.colocationamerica.com": [3435], "*.www.maxymiser.com": [10111], "www.maps.yandex.com": [18742], "www.vacando.ch": [17613], "auth.berkeley.edu": [17329], "installations.bobcares.com": [2189], "hyp-r.co": [2024], "www.bosslinux.in": [19431], "kartta.porvoo.fi": [21468], "www.haaksbergen.nl": [11172], "asc.cc": [2024], "openfmri.org": [12064], "prospect.rsc.org": [14047], "help.aol.com": [380], "wealden-consult.objective.co.uk": [21225], "globalizationandhealth.biomedcentral.com": [1931], "cdn7.openculture.com": [12039], "dailyre.co": [2024], "magadan.rt.ru": [13529], "codingteam.net": [3383], "www.exploreb2b.com": [5500], "brightfort.com": [2338], "sparanoid.com": [21921], "elkline.co": [2024], "abhi.ws": [2024], "adingo.jp": [646], "360.gl": [2024], "to.dailey.io": [2024], "chpskt.com": [2024], "www.stealthy.co": [21986], "geologia.uniovi.es": [17282], "static.yunaq.com": [22702], "faiz.cc": [2024], "partner.steamgames.com": [15519], "berdychiv.o3.ua": [21219], "*.blog.sme.sk": [14198], "blpn.co": [2024], "channelslb.ap.dell.com": [4317], "www.assoc-amazon.co.uk": [1311], "*.segurosuniversales.net": [14623], "xetra.com": [18656], "nurd.space": [11015], "momloves.it": [2024], "pjain.co": [2024], "ssl.weborama.fr": [18231], "chlstowg.co": [2024], "webtrends-lb.ericsson.net": [5331], "ws.cubby.com": [3903], "ubs.re": [2024], "www.24paybank.com": [109], "info.securityinabox.org": [14595], "dmil.uk": [2024], "cafrb.us": [2024], "hellosign.com": [7297], "tboxtv.de": [2024], "himg.bdimg.com": [1747], "cdns.gigya.com": [6641], "www.thalys.com": [16245], "dealtoday.me": [2024], "g2crowd.link": [2024], "nc.gs": [2024], "api.t411.io": [15847], "on.recode.net": [2024], "admin.ubuntuusers.de": [17184], "community.plot.ly": [12860], "pol.mn": [2024], "yllwprl.com": [2024], "www.starttls.info": [14251], "reframe.gizmodo.com": [6677], "do206.co": [2024], "springe.st": [2024], "707.me": [2024], "naryan-mar-realty.rambler.ru": [13600], "owin.co": [2024], "drdnxt.de": [2024], "beremennost.cdnvideo.ru": [19536], "cdn11.iconfinder.com": [7920], "chbe.illinois.edu": [17346], "centzy.com": [2968], "vip.april.org": [1171], "epcpa.us": [2024], "ethlife.ethz.ch": [4966], "nr.gy": [2024], "www.pwdhash.com": [13305], "www.geoiptool.com": [20232], "blog.twenga.com": [16945], "ci.openmrs.org": [11989], "aegeanair.com": [6896], "*.cfapps.io": [2982], "blog.codebasehq.com": [3358], "www.ghostnoteapp.com": [6616], "*.americanheart.org": [988], "*.incommonfederation.org": [8035], "btno.de": [2024], "83.mvd.ru": [21055], "southbankcentre.co.uk": [15260], "econda.de": [5050], "shw.gd": [2024], "gorod.yandex.ua": [18747], "b.brianwolf.tv": [2024], "inkin.club": [2024], "intel.sharedvue.net": [14737], "on.ihs.com": [2024], "ypwn.co": [2024], "static4.flattr.net": [5888], "mae.osu.edu": [11797], "www.polyvore.com": [21458], "www.stemulitefitnessformula.com": [15535], "an.gl": [2024], "itmatrix.eu": [7862], "osulibrary.oregonstate.edu": [12134], "levier.news": [2024], "s3.t6k.co": [22080], "wwhoco.de": [2024], "members.mtna.org": [9815], "ichef.bbci.co.uk": [19332], "s.mior.ca": [2024], "www.cedmagazine.com": [2582], "app.alipay.com": [864], "zacks.com": [18869], "www.polymer-project.org": [12938], "foi.cardiff.gov.uk": [19509], "meeting-reg.com": [10021], "nano.beeline.kz": [19345], "www.sweden.se": [15746], "subscriptions.parliament.uk": [21349], "i4.code.msdn.microsoft.com": [10396], "valuecommerce.ne.jp": [17630], "www.destroyallsoftware.com": [4383], "www.10minutemail.com": [19], "manager.web4all.fr": [18148], "prod.worldofwarcraft.com": [18542], "um.tdc.no": [15863], "*.en.alibaba.com": [857], "digi77.com": [4459], "col.ckbe.at": [2024], "web.housing.illinois.edu": [17346], "dissernet.org": [19848], "inka.f4.htw-berlin.de": [7103], "jobs.thomsonreuters.com": [16456], "privatelayer.com": [13146], "www.obsoleet.org": [11744], "l.carlo.sg": [2024], "cris.ws": [2024], "forum12.hkgolden.com": [7058], "www.blacktonic.com": [2060], "buzzti.me": [2024], "timeweb.com": [16531], "www.sealswithclubs.eu": [14501], "vtunnel.com": [17607], "pirate-party.ru": [12736], "gianno.ug": [2024], "s.nikonpro.eu": [2024], "www.familie.bw.aok.de": [376], "mt.9gag.com": [252], "www.mehring.com": [10246], "cleveland.police.uk": [3238], "keepupweb.us": [2024], "www.engineering.leeds.ac.uk": [17403], "jsw.li": [2024], "wupath.wustl.edu": [18089], "tv-online.gq": [2024], "fskills.idoxgroup.com": [20484], "aol.it": [2024], "webfolio.spla.ulaval.ca": [17319], "public.worcestershire.gov.uk": [22611], "*.lumosity.com": [9677], "www.cacetech.com": [2721], "transparency.automattic.com": [1452], "ondemand2.monex.co.jp": [10583], "dealers.eurogap.cz": [5407], "icflw.co": [2024], "aviris.fi": [1475], "porco.cc": [2024], "preferences.truste.com": [15922], "sy.amebaownd.com": [19185], "ammvpn.unicef.org": [17069], "revenuesbenefits.charnwood.gov.uk": [3021], "www.feedpress.me": [5721], "owa.alfa.de": [847], "snld.com.au": [2024], "upickem.net": [17474], "imagecache2.allposters.com": [882], "bspk.me": [2024], "blog.sys4.de": [15811], "fr.aliexpress.com": [854], "m.islamweb.net": [8373], "selfcare.tdc.dk": [15862], "a8.hitravel.xyz": [2024], "delallo.co": [2024], "s.approdo.it": [2024], "lohas-scout.de": [2024], "skipass.psbank.ru": [13231], "5fi.sh": [2024], "www.tasteofthenorthend.org": [16035], "www.nero.com": [11201], "invete.ch": [2024], "ubjobs.buffalo.edu": [17382], "l.shahr.uz": [2024], "paulrees.me": [2024], "hex.tw": [2024], "login.proxy.uchicago.edu": [17334], "businessservices.usc.edu": [17366], "crechi.tw": [19718], "secure.opinionlab.com": [12090], "npin.cdc.gov": [19532], "mssvm.sc": [2024], "invm.co": [2024], "www.kable.com": [8777], "comptroller.nyc.gov": [11332], "www.legitscript.com": [9247], "k.copyleft.org": [3658], "rbu.sh": [13654], "hartz.us": [2024], "www.mobot.net": [7556], "l.pincom.be": [2024], "*.wildapricot.org": [18395], "f1.thejournal.ie": [16299], "muv.uio.no": [17414], "channelshift.holyrood.com": [20393], "watson.ch": [22537], "www.banyen.com": [1684], "shr7t.com": [2024], "awkward.wtf": [2024], "bb16.us": [2024], "izhevsk-realty.rambler.ru": [13600], "bizo.com": [2052], "hubpeople.com": [20444], "webconf.hku.hk": [20387], "arsen.io": [2024], "ear.wf": [2024], "atupri.me": [2024], "maps.beeline.ru": [1778], "www.carters.com": [2878], "epikn.tw": [2024], "b4t.co": [2024], "insightseries.splashthat.com": [15351], "www.netteca.com": [11293], "annyit.atlatszo.hu": [1349], "lesestoff.ch": [20814], "www.thepiratebay.gy": [22175], "stars.leeds.ac.uk": [17403], "sciatl.org": [2024], "discussion.theguardian.com": [16364], "a.fetitch.com": [2024], "www.kybernetes.htwk-leipzig.de": [7596], "www.glee.co.uk": [20263], "netc.im": [2024], "gospel4.life": [2024], "bot.djurl.co.uk": [2024], "www.dbnnor.no": [4593], "tbte.ch": [2024], "ricoh.com.hk": [13935], "attictv.com": [1366], "d7v.me": [2024], "community.oracle.com": [12116], "www.thepiratebay.gd": [22175], "www.thepiratebay.gg": [22174], "sother.ly": [2024], "newyorktimes.com": [11340], "a1.lscdn.net": [9115], "eduscho.at": [16050], "cpa.meetme.com": [10224], "r24626444.sync.app.asana.com": [1265], "forms.cert.org": [2596], "jkry.org": [8453], "reiner-sct.com": [13808], "www.browsershots.org": [2389], "www.refedd.org": [13471], "fb.lagardere-pub.com": [9147], "tpb.unlockme.space": [22259], "on.wsoctv.com": [2024], "cdn.adsrvmedia.net": [687], "nwsty.co": [2024], "info.zscaler.com": [19012], "weypav.uk": [2024], "www.ascr.usda.gov": [17299], "wow-beta.curseforge.com": [3927], "films.deathmask.net": [4254], "go.vydia.com": [2024], "beta.element14.com": [5148], "www.openhub.net": [12045], "sdmht.biligame.com": [1903], "vhunt.rs": [2024], "pwk.cossacklabs.com": [3693], "community.invisionpower.com": [8319], "origin.img.domaintools.com": [4653], "careers.hugoboss.com": [7608], "www.studiumundbehinderung.kit.edu": [8812], "www.cryengine.com": [3835], "jakarta.usembassy.gov": [22406], "slb.com": [14418], "dkng.co": [2024], "wpp.to": [2024], "nl.hertz.be": [7338], "avina.sh": [2024], "www.youtube.cz": [18800], "drakene.ws": [2024], "wz2100.net": [18083], "dev.chromium.org": [3124], "storage.stgbssint.com": [15540], "pungence.info": [2024], "www.youtube.ch": [18800], "www1.firstdirect.com": [20111], "music.bi": [2024], "www.youtube.co": [18800], "jshoq.me": [2024], "www.youtube.ca": [18800], "www.it.uu.se": [17153], "to.omy.fr": [2024], "secure.ourneighborhoodmilf.com": [12178], "img14.360buyimg.com": [148], "bishopfox.com": [1947], "apt.buildd.debian.org": [4263], "cdn.islamictech.com": [8380], "2tix.es": [2024], "code.hackerspace.pl": [7136], "www.netis.ru": [21111], "bkp.al": [2024], "myprima.co": [2024], "metro-set.ru": [20971], "cdn.xfinity.com": [22650], "vpdata.video.qq.com": [13329], "blog.yourkarma.com": [18820], "rngd.es": [2024], "short.raggl.me": [2024], "cloud.mts.ru": [21042], "www.dotsec.com": [4691], "ftsz.tv": [2024], "e.vo6.info": [2024], "fx.fruitninja.com": [6214], "freerunet.ru": [20166], "prima.urospace.net": [17500], "cheboksary.beeline.ru": [1778], "hfn.me": [2024], "l.facebook.com": [5609], "onb.lu": [2024], "kunde.feide.no": [5729], "58.kavkaz-uzel.ru": [20694], "telebank.tatsotsbank.ru": [16039], "zenit.dengisend.ru": [4344], "mtna.org": [9814], "a.wish.org": [2024], "www.virtualizationreview.com": [17841], "tcr.bz": [2024], "cabinet.utex-telecom.ru": [22416], "apps.uillinois.edu": [17034], "q8ne.ws": [2024], "weotta.me": [2024], "signpostsheffield.sheffield.gov.uk": [14755], "www.tvheadend.org": [16934], "cadw.wales.gov.uk": [2729], "csbaacademy.com": [2678], "lrn.io": [2024], "cmpbell.com": [2024], "create-dmgmedia.co.uk": [3767], "box.repsol.info": [2024], "in-disguise.com": [8028], "chelyabinsk.startsmile.ru": [21980], "qr.cmrn.cat": [2024], "www.lebsanft.org": [20797], "sharideangelo.com": [14743, 14744], "micetro.xyz": [2024], "secure2.sophos.com": [15224], "discoverypark.bnl.gov": [19418], "wddnc.es": [2024], "www.nodejsmodules.org": [11487], "ytfcne.ws": [2024], "www.iwantmyname.com": [20614], "hour.ly": [2024], "i01.appmifile.com": [1138], "caltech-sp.blackboard.com": [2069], "lbdb.ust.hk": [22412], "axit.me": [2024], "fs7.formsite.com": [20139], "msdnadminprodscussu1.app.msdnadmin.visualstudio.com": [17872], "www.ispid.nl": [7835], "team.oschina.net": [11702], "stomp.life": [2024], "mielv.be": [2024], "ae.ro": [2024], "track.rsdn.org": [21685], "kckk.co": [2024], "surety-mail.com": [2024], "admin4.providesupport.com": [13218], "secure.vcab.com": [17559], "www.peterboroughandstamford.nhs.uk": [10953], "elsat.ch": [2024], "*.oppo.com": [12096], "avantitest.tocco.ch": [16600], "www.rapidsite.jp": [13618], "avatar.roblox.com": [13980], "cdsweb.cern.ch": [2588], "kspaceyfound.at": [2024], "w.rtnc.me": [2024], "4resu.lt": [2024], "lids.mit.edu": [9763], "appear.in": [1145], "support.tenable.com": [16180], "netreg.berkeley.edu": [17329], "ea.objective.co.uk": [21225], "ticketing.heanet.ie": [7267], "mvbdunlap.com": [2024], "st.gs": [2024], "shop.snob.ru": [15103], "query.nytimes.com": [11041], "eregistrar.westsussex.gov.uk": [18305], "rgr.cc": [2024], "www.ruby-forum.com": [14070], "o.icomos.org.br": [2024], "passerelle.montpellier3m.fr": [10609], "s02.appmifile.com": [1138], "lvngbnfts.com": [2024], "go.umair.me": [2024], "solasit.es": [2024], "appv2.adextent.com": [575], "ethr.ee": [2024], "www.test.kairo.at": [8782], "riot.site": [2024], "novn.ir": [2024], "office15client.microsoft.com": [10396], "kit.edu": [8812], "extranet.wienit.at": [18376], "customtiburon.com": [3932], "tor.spline.inf.fu-berlin.de": [6166], "www.thediplomat.com": [16262, 22150], "ural.tpprf.ru": [22260], "svc.engineering.osu.edu": [11797], "ext.ligatus.com": [9356], "asset-7.soup.io": [15235], "test.kfc.ru": [20707], "nwlife.ch": [2024], "manchester.objective.co.uk": [21225], "meta.ps": [2024], "nikg.uk": [2024], "ip.sandia.gov": [14341], "drhyman.me": [2024], "rda.link": [2024], "www.developer.here.com": [7325], "www.tacticaltech.org": [15966], "retronaut.com": [13886], "jmcd.me": [2024], "s.durasite.net": [2024], "www.senderscore.org": [14642], "home.uni-erlangen.de": [17396], "chels.ag": [2024], "www.focusonlearningcenter.com": [5955], "onbusiness.britishairways.com": [1513], "mebeer.co": [2024], "www.charnwood.gov.uk": [3021], "labs.infinum.co": [20526], "s1.adform.net": [638], "datamappi.fi": [4195], "odwpr.us": [2024], "fishbase.us": [5862], "bigbrother.se": [1884], "craigslist.ca": [3752], "posta-online.poste.it": [13013], "r24625315.sync.app.asana.com": [1265], "success.economist.com": [5052], "www.gametreedeveloper.com": [6406], "www.getfirebug.com": [6559], "jobsatosu.com": [8613], "fpt.me": [2024], "*.retail-link.gr": [13878], "docs.nice.org.uk": [10961], "cheboksary.psbank.ru": [13231], "ticket4u.com.my": [22206], "smuglabs.com": [2024], "gfl.tips": [2024], "z.5162.us": [2024], "e12.xhamsterpremiumpass.com": [18607], "gismeteo.pl": [20252], "img1.chbtc.com": [3041], "www.he.com": [7633], "colocation-datacenter.com": [20305], "jmusic.id": [2024], "appsites.com": [1166], "www.energie.vellum.cz": [19995], "ei.wnev.es": [2024], "www.youngstonewall.org.uk": [22690], "studentaidcalculator.com": [15604], "r24820212.sync.app.asana.com": [1265], "saransk-realty.rambler.ru": [13600], "jpics.co": [2024], "*.logitech.com": [9571], "chita.beeline.ru": [1778], "www.bitin.io": [2018], "www.toutiao.com": [16680], "www.cyphar.com": [3975], "games.ictv.ua": [20476], "wafj.fm": [2024], "l.skarum.net": [2024], "*.cxt.ms": [3944], "mijn.groenlinks.nl": [6942], "cmrld.info": [2024], "ctpcba.net": [2024], "bsun.md": [2024], "*.alivenotdead.com": [867], "www.easthants.gov.uk": [5004], "dakko.us": [4120], "www.jabberd.org": [8489], "cc.earthlink.net": [4997], "cw.wycw.tv": [2024], "www.nginx.org": [11413], "webcast.cnbc.com": [2644], "fly.ga": [2024], "mybelize.tips": [2024], "ox-d.aa.com": [273], "fo7.be": [2024], "forcecast.media": [2024], "www.makibox.com": [9929], "www.helpscout.net": [7306], "ir.pblos.org": [2024], "rlph.de": [2024], "4ftne.ws": [2024], "minecon.minecraft.net": [10452], "www.jenner.ac.uk": [8566], "freetvonline.com": [6129], "www.colm.net": [3434], "sphincs.cr.yp.to": [3745], "inetinteractive.com": [7780], "weread.qq.com": [13329], "hwang.engineering.osu.edu": [11797], "bgbilling.ru": [19366], "snapengage-4.wpengine.netdna-cdn.com": [15091], "us.wa.ui-portal.de": [17026], "www.tacar.org": [15848], "2200kultur.kk.dk": [8748], "www.varian.com": [17655], "thelocal.de": [22164], "l.vom.tc": [2024], "on.branch.com": [2024], "svn.macports.org": [9836], "agenda.kuleuven.be": [8832], "docsend.com": [4602], "mickey.us": [2024], "secure.mozilla.jp": [10694], "www.trendmicro.eu": [16790], "www.adagio.com": [605], "secure.gmo.jp": [6325], "o-w.ca": [2024], "www.uni-mainz.de": [17410], "qy.hitravel.xyz": [2024], "poshliving.com": [12990], "jeffl.co": [2024], "admmintrud.49gov.ru": [187], "sxbk.co": [2024], "raglan23.co.nz": [21575], "toxme.se": [16691], "pacificasd.illuminateed.com": [20494], "news.shazam.com": [14749], "colleges.holyrood.com": [20393], "kudama.x5.ru": [18590], "www.vespermarine.com.au": [17738], "pressroom.ceneo.pl": [2944], "kb.worldcat.org": [18536], "repix.us": [2024], "medcatalog.stanford.edu": [15447], "lrnlbty.co": [2024], "media.trafficjunky.net": [16721], "glyphicons.com": [6737], "airasia.com": [789], "tune.pk": [16900], "shittyurl.org": [2024], "astrobl.ru": [19264], "*.rollingstonesubscriptions.com": [14015], "open.voa.gov.uk": [22483], "netflix.com": [11269], "l.maft.co": [2024], "zndr.nl": [2024], "www.sociamonials.com": [15141], "mi-vsp2.kh.hu": [8739], "stjo.es": [2024], "go.chasset.net": [2024], "www.rossendale.gov.uk": [14027], "private.gmocloud.com": [6323], "andai.tk": [2024], "arcg.is": [2024], "arca.ly": [2024], "dtws.gm.163.com": [50], "admin.vik.bme.hu": [1556], "l.shadoll.com": [2024], "trails.com": [4325], "www.centralops.net": [19543], "torrentbit.net": [16656], "afpimages.eastday.com": [5010], "justclicknow.ca": [2024], "advertise.bingads.microsoft.com": [10396], "plun.me": [2024], "anthonycameron.com": [1100], "bwurst.org": [1608], "beckerproxy.wustl.edu": [18089], "iwnt.my": [2024], "xtian.es": [2024], "teamcenter.desy.de": [4386], "msi.tmall.com": [22222], "arun-consult.objective.co.uk": [21225], "clill.me": [2024], "www.coloradocaptures.com": [3442], "www.sovsekretno.ru": [21916], "nyke.co": [2024], "tdig.it": [2024], "ijpor.oxfordjournals.org": [12222], "xpbg.it": [2024], "ccar.co": [2024], "demo.alternc.org": [928], "esiss.ac.uk": [4953], "*.psmprogram.gov.au": [13258], "wondo.us": [2024], "get.panopto.com": [12394], "rfba.uk": [2024], "saxp.zedo.com": [18906], "new.ksk66.ru": [20759], "uzlovaya.beeline.ru": [1778], "bbier.us": [2024], "www.blinddesign.nl": [2093], "www.medsci.ox.ac.uk": [17359], "atariage.com": [1333], "mandelbrot.kairo.at": [8782], "renshiphil.com": [2024], "www.mcmelectronics.com": [9739], "tweaktown.to": [2024], "goucher.starfishsolutions.com": [21977], "saml.socialtext.net": [15139], "wiki.linuxlovers.at": [9445, 9446], "scottishpublicserviceawards.holyrood.com": [20393], "elster.de": [5180], "*.hi.nl": [7388], "zlatoust.startsmile.ru": [21980], "reproxy.ted.com": [15871], "ktlane.ws": [2024], "dl.aarddict.org": [2024], "warthunder.com": [22528], "www.nanohub.org": [11068], "www.isnic.is": [7828], "vysokeskoly.sme.sk": [14198], "www.cs.umd.edu": [17351], "nexav.org": [2024], "*.0nl1ne.at": [3], "france.isidewith.com": [20466], "metashop.at": [13072], "mfp.li": [2024], "bestmastersdegrees.com": [1834], "kolep.bva.bund.de": [5706], "r.kiloforce.com": [2024], "01.org": [1], "intranet.montpellier3m.fr": [10609], "sanyaguan.jd.com": [8434], "l.wolt.com": [2024], "host1.aberdeenshire.gov.uk": [472], "allstar.link": [2024], "static.nortoncdn.com": [11545], "service.telecolumbus.net": [16138], "tnie.in": [2024], "wgnrd.es": [2024], "flexo.co": [2024], "support-it.upc-cablecom.ch": [22386], "dataconservancy.org": [4184], "partnerwsact.kh.hu": [8739], "b.ur.ly": [2024], "blockchase.com": [2024], "www.ansibleworks.com": [1094], "nabs.us": [2024], "tracking.netcologne.de": [11226], "julesblake.com": [2024], "ycpi.ad.yieldmanager.com": [13937], "tokenrank-stage.tokenly.com": [22229], "www.filescrunch.com": [5789], "new.forceline.net": [20134], "ted2018.ted.com": [15871], "www.rutracker.cr": [21702], "cas.oaklands.ac.uk": [21221], "files.conferencemanager.dk": [19665, 19666], "farmhou.se": [2024], "www.stanfordhealthcare.org": [15450], "dhmsmag.uk": [2024], "suffolk.spydus.co.uk": [21952], "forum.winehq.org": [18442], "support.cryptothrift.com": [3858], "afrinc.co": [2024], "mymeme.link": [2024], "thinkingchristian.net": [16438], "nnovgorod.biglion.ru": [19375], "kp.obit.ru": [21223], "discussions.nokia.co.uk": [9480], "webmail.consumer.org.hk": [3599], "www.bk55.ru": [19398], "bst4.gismeteo.ru": [6650], "denx.de": [4019], "ichitaso.xyz": [2024], "marieclaire.co.uk": [10001], "i1s.sinaimg.cn": [14910], "blog.1und1.de": [91], "m.golem.de": [6804], "www.diffchecker.com": [4449], "www.viestintavirasto.fi": [17795], "kier.uk": [2024], "burymbc.firmstep.com": [20109], "fsnfrm.com": [2024], "cubeweb.cc": [2024], "btprt.dj": [2024], "skynz.co": [2024], "kf.sudipb.com": [2024], "ww386.smartadserver.com": [15049], "id.google.co.*": [6821], "vr.tl": [2024], "lsvgs.us": [2024], "www.myscore180.com": [10827], "eventbrite.mailchimp.com": [9893], "v.aty.sohu.com": [15171], "thaq.co": [2024], "cds.linear.com": [9385], "skillsmatter.com": [14975], "xnet.unit4.com": [22378], "us.carousell.com": [2870], "www.useotrproject.org": [17121], "www.ioninteractive.com": [20561], "account.jolla.com": [8636], "whiteraven.co": [2024], "getcashboard.com": [15624], "des.ictv.ua": [20476], "www.realtime.email": [13685], "sourcemod.net": [21907], "navteq.com": [10914], "gewinnspiel.hofer.at": [357], "*.nhsdirect.nhs.uk": [10951], "www.pyneo.org": [13313], "app.hubspot.com": [7599], "post.at": [12995], "suggest.atechmedia.com": [428], "hosting.dxw.com": [4811], "alojamiento02.unizar.es": [17441], "poistenie.financnahitparada.sk": [5812], "classzone.com": [3218], "login.secureserver.net": [14574], "mktfan.es": [2024], "slvr.cr": [2024], "www.cno.org": [3424], "a4apphack.com": [269], "humrep.oxfordjournals.org": [12222], "www.miniand.com": [10458], "wiki.openmpt.org": [11987], "www.tdesktop.com": [16053], "zynga.com": [19033], "static.contentful.com": [3616], "n4g.uk": [2024], "netloan.cardiff.gov.uk": [19509], "odair.cnt.br": [2024], "cdn.adreclaim.com": [19087], "p8.sinaimg.cn": [14910], "carlson.pspr.fi": [2024], "binkypop.me": [2024], "*.cv.uma.es": [17225], "afi.me": [2024], "css.tv.itc.cn": [8401], "ocenka.belregion.ru": [19353], "account.kyivstar.ua": [9067], "media.rightmove.co.uk": [13942], "bitly.sork.in": [2024], "incoin.io": [8050], "www.puu.sh": [13302], "pt-contrainfo.espiv.net": [20021], "r24616707.sync.app.asana.com": [1265], "journalretinavitreous.biomedcentral.com": [1931], "niden.net": [11431], "fastcodesign.com": [5669], "*.mototradeup.com": [10657], "st-sima-land.cdnvideo.ru": [19536], "sync.smartadserver.com": [15049], "go.c4dg.net": [2024], "gha.ly": [2024], "dfm.bz": [2024], "classes.cornell.edu": [3676], "*.bandcamp.com": [1662], "event.avdbf.uk": [2024], "discr.eu": [2024], "s.etcetera.ws": [2024], "clinicalepigeneticsjournal.biomedcentral.com": [1931], "blog.deepin.org": [4287], "emitent.1prime.ru": [83], "my.onmedic.com": [2024], "cache.ruby-china.org": [14069], "benzinga.com": [1813], "news.eoportal.org": [5303], "a.meipian.me": [10247], "www.portaildescours.ulaval.ca": [17319], "edmsdirect.desy.de": [4386], "opsgui.de": [2024], "www.jackandjillraffle.com": [8491], "svn.nmap.org": [11472], "hg.logilab.org": [9569], "www.advconversion.com": [704], "maps.here.com": [7325], "onlineshoes.com": [11912], "datane.ws": [2024], "www.cse.iitb.ac.in": [7748], "ftp.flux.utah.edu": [17374], "iztl.co": [2024], "lacie.com": [9134], "jobs.python.org": [13314], "www.xsolla.com": [18685], "eulerian.sarenza.com": [14362], "secure.domaintools.com": [4653], "accounts.onlinegaming.wizards.com": [18477], "www.rating-widget.com": [13637], "sobytiya.info": [21887], "familytr.ee": [2024], "projet-plume.org": [13190], "l.vincentr.me": [2024], "storage.aircrack-ng.org": [794], "cdn.securelist.com": [14555], "purchase.1688.com": [51], "discourse.org": [4534], "hylr.biligame.com": [1903], "mobile.washington.edu": [17376], "www.vu.nl": [17608], "www.hestore.hu": [7374], "bremen2.fau.org": [5543], "www.active24.es": [19064], "assa.intertelecom.ru.com": [20555], "huk.de": [7107], "go.bctv.hr": [2024], "titchy.me": [2024], "www.virginmedia.com": [17822], "smashing.glass": [2024], "spanish.chile.usembassy.gov": [22406], "i6x.duoshuo.com": [19906], "www.zhukovsky.net": [22718], "nalchik.startsmile.ru": [21980], "likelyloans.com": [20840], "x.formasaur.us": [2024], "cds.cern.ch": [2588], "ui.zanox.com": [18885], "static.wired.com": [18454], "l.execut.com.br": [2024], "hf-lx.de": [2024], "www.oman.hsbc.com": [7090], "btcs.me": [2024], "esj.com": [4954], "www.criticalthinking.org": [3802], "www.zenmate.is": [18917], "www.ferroh.com": [5745], "on.tdmark.co": [2024], "job.alibaba.com": [857], "hrbl.me": [2024], "forbetterliv.es": [2024], "searchpub.nssc.nasa.gov": [10909], "www.atrpms.net": [429], "rcicruiseholidays.com": [18578], "special.yahoo.co.jp": [18730], "archive.ualinux.com": [22340], "beedie.sfu.ca": [14708], "fbc.cm": [2024], "en.trend.az": [22281], "www.ehrenamt.sachsen.de": [14279], "imss.caltech.edu": [2771], "publishing.aip.org": [349], "cdn0.theawl.com": [16253], "hevcp.engineering.osu.edu": [11797], "audiocultu.re": [2024], "hydra-media.cursecdn.com": [3927], "solutionconnection.netapp.com": [11221], "allianzfuercybersicherheit.de": [900], "glg.im": [2024], "blog.alwaysdata.com": [946], "otrs.unizar.es": [17441], "bankcoop.ch": [3647], "jal.co.jp": [8525], "lfchosting.com": [9087], "www.ut.ee": [17148], "smartpage.stanford.edu": [15448], "www.postaffiliatepro.com": [13001], "wins.adentifi.com": [636], "www.skatemall.com": [14964], "www.unlicense.org": [17443], "support.playkey.net": [12844], "www.factorio.com": [20068], "userecho.com": [17515], "premium.flightradar24.com": [20119], "status.reevoo.com": [13772], "passes.northyorks.gov.uk": [21161], "www.cit.cornell.edu": [3676], "q6.hitravel.xyz": [2024], "onfleet.com": [11896], "aspne.ws": [2024], "tx-assets.scdn5.secure.raxcdn.com": [21590], "mdsupport.emoryhealthcare.org": [5203], "tfsimg.alipay.com": [864], "mercyships.org": [10303], "www.dosowisko.net": [4683], "metric.yandex.kz": [18743], "chromebook.me": [2024], "qtkp.me": [2024], "cbmi.catalyst.harvard.edu": [7211], "static.appcelerator.com": [1144], "mwrinfosecurity.com": [9824], "phrill.link": [2024], "www.webnms.com": [18174], "ugs.vg": [2024], "6.dbstatic.no": [19775], "www.redmatrix.me": [13737], "uwww.umweltbundesamt.de": [17230], "bitn.us": [2024], "cts-strasbourg.eu": [3898], "shop.usa.canon.com": [2822], "mht.co.in": [2024], "www.carbonwind.net": [2845], "images.srad.jp": [21956], "*.gmedianetworks.com": [6738], "www.hmrc.gov.uk": [7076], "tmzupdates.com": [2024], "static.slidesharecdn.com": [15029], "bmlink.nl": [2024], "reyn.ir": [13909], "fntx.co": [2024], "skyrimforge.com": [3927], "scarborough-self.achieveservice.com": [19051], "69.rkn.gov.ru": [13971], "boell.org": [19422], "js2.unwire.hk": [17460], "waitrosedirect.com": [18046], "traffic.megaphone.fm": [20958], "webita.ethz.ch": [4967], "voachinese.com": [17584], "www.iod.ucsd.edu": [17011], "esalink.info": [2024], "overclockers.com": [12197], "linkbiz.co": [2024], "fox-it.com": [6063], "org.rambler.ru": [13600], "www.connexity.com": [3586], "shakhty.tpprf.ru": [22260], "s24.postimg.org": [13024], "thmpr.co": [2024], "horizon.tv": [22386], "allthings.host": [2024], "webmail.domtele.com": [19878], "www.lean-hochschulgruppe.htwk-leipzig.de": [7596], "d-g-z.nl": [2024], "www.democracynow.org": [4336], "profile.surfconext.nl": [14261], "anthemchur.ch": [2024], "urbnbd.co": [2024], "swish.mycelium.com": [21063], "www.skreened.com": [14983], "m.slotsfarm.com": [2024], "toys.play-asia.com": [12828], "jbh.uk": [2024], "dinerstravel.rsb.ru": [14058], "authorqt.edu.rosminzdrav.ru": [21674], "elections.transformativeworks.org": [16740], "minecraft.curseforge.com": [3927], "extidp.ornl.gov": [11730], "vle.lsbu.ac.uk": [9111], "hopp.mihalko.eu": [2024], "dude.aosvn.xyz": [2024], "entm.ag": [2024], "www.ekm.admin.ch": [22061], "lecturecapture.hku.hk": [20387], "dogfood.axonify.com": [1502], "on.pier1.com": [2024], "rauf1.beget.com": [19347], "e3.hitravel.xyz": [2024], "dlcl.stanford.edu": [15448], "vhs-lu.de": [22459], "www.dyson.ie": [4831], "p2.music.126.net": [40], "test.lurkmore.so": [9683], "shouji.360.cn": [142], "cernvm.cern.ch": [2588], "mssrts.co": [2024], "secure.helpscout.net": [7306], "static.adzerk.com": [727], "go.topbrands.ru": [2024], "tools.parkrun.com": [12438], "www.futurezone.at": [6263], "at.mclib.net": [2024], "www.lusternia.com": [20893], "vipserv.org": [17574], "epicgames.com": [5309], "offers.hubspot.com": [7599], "on.bcg.com": [2024], "x6.chaucanh.net": [2024], "f9.hitravel.xyz": [2024], "sgitt-gis-fgp.dfs.un.org": [17057], "blog.nazwa.pl": [11156], "hlaun.ch": [2024], "panel.dreamhost.com": [4743], "iwantclips.com": [7873], "www.sseeventsgroup.com": [14238], "hctr.me": [2024], "zugerkb.ch": [20683], "static5.avonmaquiagem.com.br": [1480], "shop.netcologne.de": [11226], "zbrest.tocco.ch": [16600], "deco.li": [2024], "ynccla.co": [2024], "warrington.gov.uk": [18079], "ijmfreedommaker.org": [7749], "*.britannica.com": [2353], "meatify.me": [2024], "mpw.bz": [2024], "www.rackspace.hk": [13564], "g.sislac.net": [2024], "www.parallella.org": [12419], "www.isc-events.com": [8260], "uqwimax.jp": [17094], "upc.edu": [12940], "che.gg": [2024], "sendy.christianforums.com": [3116], "my.1dedic.ru": [76], "a1.ifengimg.com": [20487], "svn.osdn.net": [21298], "postpointsrewards.com": [12999], "pd4s.uk": [2024], "financialprotection.usa.gov": [17110], "tknd.co": [2024], "secure.isidewith.com": [20466], "jobs.recruitee.com": [21611], "out.wf": [2024], "reflets.info": [21623], "www.assembly.wales": [1304], "now.netapp.com": [11221], "ancr.co": [2024], "moviemagnet.net": [10681], "mail.hadithbd.com": [7149], "minobr.permkrai.ru": [21390], "doxy.li": [2024], "s.my.tmocache.com": [15901], "srce.mp": [2024], "www.geekflare.com": [20220], "files.messe.de": [4396], "mrk.ms": [2024], "hkg.aastocks.com": [19037], "brightcontext.com": [2336], "thingiverse.com": [16431], "gospel.mk": [2024], "fliparena.com": [2024], "www.bioconductor.org": [1936], "app.dlvrit.com": [19855], "sdtr.co": [2024], "thelocal.se": [22170], "pcm.websitealive.com": [18242], "www.online.hmrc.gov.uk": [7076], "mrk.mn": [2024], "insig.ht": [2024], "www.markup.io": [10035], "cre8.tips": [2024], "caeu.megabus.com": [10244], "fonts.com": [5972], "www.zenmate.ie": [18917], "ltmsu.com": [2024], "srv0.bakerlab.org": [1646], "www.law.illinois.edu": [17346], "www.holbi.co.uk": [20391], "dagbladet.tns-cs.net": [22226], "mpp.mxptint.net": [10786], "1.url.cn": [22399], "referees.aps.org": [976], "ad.yello.biz": [2024], "admin.lb.delfi.lv": [19800], "nakenprat.nu": [2024], "sche.ma": [2024], "*.goldkeys.net": [6800], "psykologteam.dk": [13602], "subscriberconcierge.com": [10020], "drive.jolicloud.com": [20649], "mrrt.in": [2024], "allmyvideos.net": [906], "tpb.press": [22174], "miaclu.org": [10359], "voffka.com": [17905], "pha.ulaval.ca": [17319], "wwwl.accuweather.com": [520], "p2n.me": [2024], "cdn4.micasa.ch": [10370], "fatwa.islamweb.net": [8373], "freshlife.co": [2024], "www.salon.com": [14315], "hssk12.co": [2024], "promos.sapo.pt": [14131], "www.informationactivism.org": [8127], "pictures.reuters.com": [13893], "nrarofcochairs.com": [21187], "shop.look.co.uk": [9605], "www.skepticink.com": [14970], "ivanovo-realty.rambler.ru": [13600], "password.umd.edu": [17351], "techportal.eere.energy.gov": [5243], "l.m23.eu": [2024], "beenverified.com": [1779], "imgcache.qq.com": [13329], "eaak.tk": [3536], "con.tra.do": [2024], "targetedthreats.net": [16026], "duckdns.org": [4786], "ting.com": [16548], "x-blog.jp": [18585], "espinafre.se": [2024], "ans.avast.com": [1469], "www.mhcache.com": [10358], "gm-x.ga": [2024], "adpu.sh": [2024], "www.48months.ie": [186], "www.therealtalk.org": [16311], "l.fldx.org": [2024], "dem.nso.ru": [21192], "eken.ga": [2024], "www.coy.im": [3738], "transloadit.com": [4265], "twin.pk": [2024], "a.shuabao.us": [2024], "brewcabi.net": [2024], "hyperoptic.com": [7652], "www.truenudists.com": [16847], "portal.zarafa.com": [18893], "hitbtc.com": [7424], "k1ssm3n90.ml": [2024], "systemcenteradvisor.net": [15825], "jira.freeswitch.org": [6106], "nordichardware.com": [11511], "lin.kit.se": [2024], "clicktotweet.com": [3257], "gep13.me": [2024], "healthcare.gov": [7259], "www.healthiernorthwestlondon.nhs.uk": [10953], "r.6-cube.com": [2024], "www.productie.gx.uvt.nl": [16521], "go.siete7.org": [2024], "support.dell.com": [4317], "lensculture.co": [2024], "www.netbetsport.fr": [11224], "dashboard.pantheon.io": [12401], "nsmac.co": [2024], "s.nshoji.com": [2024], "play-full.96.lt": [2024], "amandify.pw": [2024], "teqrt.io": [2024], "opus-codec.org": [12112], "avt.foto.mail.ru": [9891], "nam.nes.scot.nhs.uk": [10953], "dev.horde.org": [7503], "robtv.co": [2024], "mrrenz.yt": [2024], "www.weizmann.ac.il": [18282], "advancedsupport.oracle.com": [12116], "fx.yandex.kz": [18743], "a1.hertzrent2buy.com.br": [7339], "blogs.biomedcentral.com": [1931], "norf.in": [2024], "www.ndla.no": [11158], "vbrnt.us": [2024], "gkob.es": [2024], "mtdk.sport-express.ru": [21941], "l.rud.is": [2024], "www.ifosslr.org": [8259], "youtube.com.ng": [18800], "www.abookapart.com": [19042], "www.privacyfoundation.de": [6542], "static.netverify.com": [11297], "commencement.usc.edu": [17366], "www2.edi7.lu": [4887], "thelayoff.com": [22161], "housing.nvcc.edu": [11627], "orange.jobs": [12119, 12120], "www.commando.io": [3478], "stij.in": [2024], "orangea.us": [2024], "bad00d8a-7c4c-863c-43f5-f503361e1519-rum.cdnvideo.ru": [19536], "bavington.uk": [2024], "zenmate.hk": [18917], "nfc.mastercard.ru": [10065], "www.tada.com": [15967], "www.bit9.com": [1952], "ly.ifra.cc": [2024], "www.xmpp.net": [18616], "l.nileshgr.com": [2024], "www.webmproject.org": [18170], "thatoneprivacysite.net": [16248], "www.plot.ly": [12860], "engaged.educ.cam.ac.uk": [17332], "*.hh.ru": [7044], "img.nxjimg.com": [11630], "mbsportsweb.com": [9732], "l.azin.se": [2024], "clearlinux.org": [3233], "file.bagumec.be": [2024], "ewen.be": [2024], "www.orderhlp.com": [14785], "avia.yandex.by": [18739], "btbaggers.com": [2024], "api.tog.ie": [15909], "api.btckan.com": [1584], "history.com": [7422], "kfq.biligame.com": [1903], "market.yandex.com.tr": [18740], "7chan.org": [231], "www.esn.bme.hu": [1556], "*.gymglish.co.uk": [7021], "srv.clickfuse.com": [3248], "bizlab.website": [2024], "www.spectraflow.com": [15317], "www.windstreambusiness.com": [18438], "cze.us": [2024], "airwarriors.com": [19125], "boxing.sport-express.ru": [21941], "nl.roblox.com": [13980], "go.isiddiq.com": [2024], "*.maricopa.edu": [9998], "amos.alicdn.com": [853], "feedback2.yandex.com": [18742], "www.liveclicker.com": [9516], "beckag.us": [2024], "masataka.info": [2024], "lndt.us": [2024], "www.skm.vutbr.cz": [17609], "vorpal.io": [17933], "accountsolution.gcion.com": [6286], "shoppingcartelite.com": [14790], "einstellungen.e-plus.com": [4837], "poddery.com": [12887], "www01.fonts.com": [5972], "payzapp.biz.hdfcbank.com": [7249], "www.mapquesthelp.com": [9979], "*.uhrzeit.org": [17203], "pgpru.com": [12000], "hvnshp.ca": [2024], "www.findmyorder.com": [5825], "*.comenity.net": [3464], "portalcorreotest.ulpgc.es": [17213], "cabinet.multi-vpn.biz": [10735], "l.alvinhkh.com": [2024], "agency.reuters.com": [13893], "kurgan-region.auto.ru": [19276], "integrity.pt": [8205], "mintid.co.uk": [2024], "reviewboard.kde.org": [8735], "globalhealth.stanford.edu": [15447], "test.showapi.com": [21815], "rol.la": [2024], "*.fossbazaar.org": [5578], "skillstoolkit.ox.ac.uk": [17359], "cbx.im": [2024], "*.ipage.com": [7806], "80.93.18.36": [4499], "map.gek.wupper.freifunk-rheinland.net": [20171], "benlik.es": [2024], "media.spontex.org": [15357], "peytz.co": [2024], "oppin.st": [2024], "s.midokite.com": [2024], "allthingsd.com": [887], "freebible.to": [2024], "eset.la": [2024], "downloads.somethingawful.com": [15200], "npth.se": [2024], "events.piratenpartei-bayern.de": [12753], "m.fp20.org": [2024], "wond.us": [2024], "docs.c9.io": [3279], "*.comodo.com": [3507], "credits.buzz": [2024], "dataplus.aliyun.com": [868], "static.bityes.com": [1978], "www.postel.it": [13015], "clicktalecdn.sslcs.cdngc.net": [19533], "snkrs.me": [2024], "htacad.org": [2024], "link.jmcnee.uk": [2024], "www-static.exoclick.com": [5489], "afraf.oxfordjournals.org": [12222], "endzone.me": [2024], "kspr.io": [2024], "www.ico.jobs": [4518], "go.mkvstore.com": [2024], "my.chiebukuro.yahoo.co.jp": [18730], "acor.bio": [2024], "snackomat.snacktv.de": [15086], "jnytrvl.es": [2024], "joshr.us": [2024], "getsafe.get.no": [20237], "r.thephonemt.eu": [2024], "chechnya.kavkaz-uzel.ru": [20694], "content.time.com": [15884], "rackspace.dk": [13563], "woocall.sina.com.cn": [14904], "www.gigya.com": [6641], "us.gamigo.com": [6426], "blog.nearlyfreespeech.net": [11162], "*.icu-project.org": [8256], "go.eiffel.ag": [2024], "submit.escholarship.org": [4963], "*.radikal.com.tr": [13573], "uci.site": [2024], "wgsmt.org": [2024], "t21c.com": [2024], "eurobsdcon.org": [5394], "koktejl.aktuality.sk": [1507], "pausani.as": [2024], "www.zeroanthropology.net": [22716], "www.campina.de": [2796], "scllc.co": [2024], "docs.moodle.org": [10616], "support.coinjar.com": [3397], "mdeglf.us": [2024], "help.gumroad.com": [7002], "investor.logmeininc.com": [9560], "www.epsom-sthelier.nhs.uk": [10953], "efiliale.de": [19816], "www.squirrelmail.org": [15403], "www.volksverschluesselung.de": [17918], "correoweb.ulpgc.es": [17213], "platform.corvisacloud.com": [3689], "www.rosevrobank.ru": [14024], "blu.tips": [2024], "ucf.edu": [17333], "anderson.stanford.edu": [15448], "07.imgmini.eastday.com": [5010], "5by.co": [2024], "parkingeye.co.uk": [12437], "carparks.great-yarmouth.gov.uk": [20304], "*.pcicomplianthosting.com": [12568], "pamm.btc-e.nz": [19460], "csycb.co": [2024], "naturpixel.link": [2024], "omha.net": [11925], "service.tanke-wienenergie.at": [18376], "001.img.qf.56.itc.cn": [8401], "greenwood.org": [6923], "gigaone.pl": [6635], "static.libsyn.com": [9336], "git.linux-mips.org": [9428], "ybe.cc": [2024], "rt.debconf.org": [4256], "pbo.belregion.ru": [19353], "cz28.ws": [2024], "atipso.com": [1340], "www.bucketlistly.com": [2404], "lfne.ws": [2024], "go.invetic.com": [2024], "ce4.uicdn.net": [17032], "dshs.state.tx.us": [16224], "tj2.me": [2024], "allmybase.com": [893], "img.sleviste.cz": [15019], "myesri.com": [5352], "cors.uicdn.net": [17032], "medovniky.artmama.sme.sk": [14198], "affsoc.com": [2024], "link.benzin.no": [2024], "merkleinc.com": [20967], "latika.me": [2024], "a.ct1v.com": [2024], "whast.us": [2024], "fbc.link": [2024], "www.saintaardvarkthecarpeted.com": [14306], "ceurl.net": [2024], "www.saint-petersburg.ru": [21715], "citymapper.com": [3195], "sprwd.com": [2024], "secure.bathnes.gov.uk": [1715], "rally.org": [13596], "medical-treatments-management.com": [10202], "bettermoneyhabits.bankofamerica.com": [1669], "kskrg.nl": [2024], "static.criteo.net": [3798], "ehrenamt.sachsen.de": [14279], "apps.fm": [19219], "www.biddeal.com": [1874], "qdp.qidian.com": [13349], "cusd.illuminateed.com": [20494], "rtc.debian.org": [4263], "masternet.org": [10062], "fed.princeton.edu": [13113], "porter.io": [12981], "file.e-tabs.com": [2024], "si5.twimg.com": [16949], "www.iqualita.link": [8349], "alta.cc": [2024], "boardgamegeek.com": [2183], "www.movie2k.pe": [10674], "hlp.sc": [2024], "instant.rom1504.fr": [21668], "www.sign-up.to": [14842], "todd.upickem.net": [17474], "s99.cnzz.com": [3328], "partners-api.pinterest.com": [12731], "xinghe.jd.com": [8434], "*.acenet-inc.net": [526], "mimco.me": [2024], "bitly.orz.gr.jp": [2024], "www.neo-direct.com": [10940], "*.hostoople.com": [7547], "hlp.st": [2024], "anastasial.ca": [2024], "metrica.yandex.com": [18742], "choctaw.events": [2024], "teracomconsulting.com": [16190], "gw.api.aliexpress.com": [19140], "yum.theforeman.org": [22152], "www.cs.illinois.edu": [17346], "tfas.co": [2024], "dicocitations.lemonde.fr": [9204], "f.ranchi.se": [2024], "mkala.europaplus.ru": [20034], "csc.gov.au": [3497], "translational-medicine.biomedcentral.com": [1931], "login.microsoftonline.com": [10399], "heychur.ch": [2024], "wazapp.im": [18110], "www.chooseblocks.com": [3106], "msdnadmin.visualstudio.com": [17872], "www.nouveausite.refedd.org": [13471], "vitamintalent.com": [17879], "media.xiph.org": [18667], "*.b9.stumbleupon.com": [15612], "angeliica.tk": [2024], "amzt.co": [2024], "*.koding.com": [8966], "www.brainyquote.com": [2293], "shorte.st": [14796], "flybaden.win": [2024], "clov.in": [2024], "www.healthreach.nlm.nih.gov": [11090], "webftp.aerohosting.cz": [737], "jagm.us": [2024], "www.almeshkat.net": [19158], "locationmetadataeditor.data.gov.uk": [19762], "buybitcoinww.co": [2024], "slp.tl": [2024], "bin.mediatemple.net": [10177], "www.tv.yandex.com.tr": [18740], "sups.co": [2024], "git.swift.im": [15751], "www.astro.rug.nl": [17342], "5am.info": [2024], "archive-it.org": [1193], "c9x.me": [2519], "www.modsecurity.org": [10551], "t4.58cdn.com.cn": [213], "technocrat.net": [16106], "cases.sc": [2024], "givingcomfort.com": [6672], "contact.yandex.com.tr": [18740], "www.supplyframe.com": [15703], "cyber-defense.sans.org": [14128], "wire.com": [18451], "www.asta.thm.de": [15876], "shortnow.tk": [2024], "kaust-cu.cornell.edu": [3676], "www.badosoft.com": [1633], "bajaurl.com": [2024], "*.abba.accenture.com": [499], "steamunlock.com": [15524], "download.tizen.org": [16580], "group.aliexpress.com": [19140], "www.bmbf.de": [19414], "downloadbox.me": [4723], "pay.freedom-vrn.ru": [20159], "zelenogorskspb.startsmile.ru": [21980], "api.zhihu.com": [18956], "mixpo.co": [2024], "mee.in": [2024], "hlst.ee": [2024], "39dpi.com": [2024], "fate.libav.org": [9306], "paymentech.com": [12509], "signup.pagerduty.com": [12361], "www.mobioinsider.com": [10541], "dudleyfoi.org.uk": [19904], "rev.oxfordjournals.org": [12222], "gsejournal.biomedcentral.com": [1931], "a2.beeg.com": [19343], "subastas.boe.es": [1563], "www.groups.io": [6959], "www.pirateproxy.se": [22174], "ehr.oxfordjournals.org": [12222], "m.vitori.org": [2024], "sgral.udistrital.edu.co": [17195], "trafficjunky.com": [22265], "hot.s8bbs.com": [21709], "www.resin.io": [13864], "boybrew.co": [2024], "consclass.eu": [2024], "www.popaul77.tuxfamily.org": [22319], "www.theiabm.org": [7669], "www.owasp.org": [11729], "i.guim.co.uk": [6996], "www.reutov.ru": [21641], "cdn1.xda-developers.com": [18598], "www.manything.com": [20924], "new.adestra.com": [637], "mcarlo.lv": [2024], "efilinginternaljustice.un.org": [17057], "st.org": [14250], "www.cirw.in": [3163], "staging.duckduckgo.com": [4785], "ashn.uk": [2024], "htvip.us": [2024], "www.hostcenter.com": [2172], "ke.qq.com": [13329], "ideabank.opendns.com": [11969], "huston.at": [2024], "www.campinaboerderijdag.nl": [2796], "sysdig.com": [22071], "alexlawn.com": [2024], "ibank.tatsotsbank.ru": [16039], "tours.unite.un.org": [17057], "i3.microsoft.com": [10396], "ranzcp.org": [13457], "croc3.gq": [2024], "gmodules.com": [6823], "www.yeswescan.org": [13253], "*.adspirit.de": [597], "www.moderncrypto.org": [10557], "as.stanford.edu": [15448], "moderndata.plot.ly": [12860], "s0.ssl.qhimg.com": [13347], "l.cs-5.me": [2024], "go.elego.com": [2024], "grandmargherita.com": [6874], "www.awesomejar.com": [1488], "crimecommission.gov.au": [1411], "feedback.yandex.kz": [18743], "blog.getfirebug.com": [6559], "test-login.geant.org": [6292], "survey.pckeyboard.com": [21370], "montanalinux.org": [21015], "amazonwebservices.com": [963], "serato.com": [14655], "thecanadianpress.com": [2815], "its2.monex.co.jp": [10583], "go.techsrv.biz": [2024], "twinsornot.net": [16954], "piwik1eaf.literotica.com": [9479], "open.weixin.qq.com": [13329], "fremz.co": [2024], "corporate.stanford.edu": [15448], "tqcali.com": [2024], "www.oaa.osu.edu": [11797], "www.xhamster.biz": [832], "altos.it": [2024], "jon.oberheide.org": [11734], "uavisitscheduler.wustl.edu": [18089], "resources.civilservice.gov.uk": [19601], "www.skyscanner.ch": [15006], "mrcl.pw": [2024], "botkyrka.tdconline.se": [15865], "mobile.thehill.com": [16365], "cantheyseemydick.com": [2805], "barclaycard.co": [2024], "ecampusdot.com": [2024], "wdsc.club": [2024], "ck12.org": [19604], "www.drupalwatchdog.com": [4775], "cdn.tinybuddha.com": [16562], "de.play-asia.com": [12828], "pg.onlinesbi.com": [11911], "junkie.cc": [2024], "secure2.worldwildlife.org": [18544], "ww3.autoreview.ru": [19277], "www.ftjcfx.com": [3484], "on.prsir.co": [2024], "tag.contextweb.com": [3618], "go.myejl.com": [2024], "whotels.ht": [2024], "www.animenfo.com": [1069], "www.cs.ut.ee": [17148], "helixo.fr": [20365], "multiply.crwdcntrl.net": [9622], "azg.xyz": [2024], "services.irctc.co.in": [7814], "*.ticketcorner.ch": [16492], "myaccount.stubhub.co.uk": [15602], "logoyes.com": [9572], "mass.ag": [2024], "ads.alibaba.com": [857], "dev.guardianproject.info": [6983], "superblock.net": [15690], "shoujibbs.2345.cn": [97], "lbm.io": [2024], "media.pogliad.ua": [21449], "bibl.sh.se": [14174], "sublimetext.com": [15626], "space.bilibili.com": [1904], "shows.ec": [2024], "www.cumbria.gov.uk": [19742], "usictest.tocco.ch": [16600], "astaro.com": [1321], "*.laverna.cc": [9187], "4impr.in": [2024], "debian-fr.org": [4260], "h.bing.com": [1926], "leic.it": [2024], "www.cira.kyoto-u.ac.jp": [9070], "talk.roleplaychat.org": [14008], "www.superbrightleds.com": [15684], "www.tofour.net": [16596], "thehabbos.org": [16406], "umassathletics.cstv.com": [17353], "logos.tlecdn.net": [16586], "pags.io": [2024], "www.iterm2.com": [20467], "j.taruo.net": [2024], "fileconnect.symantec.com": [15780], "psicologia.uniovi.es": [17282], "*.pool.datamind.ru": [4196], "rpclient.oebb.at": [21230], "box.qweery.nl": [13441], "mnspt.me": [2024], "byrise.co": [2024], "elligator.cr.yp.to": [3745], "southdowns.gov.uk": [21909], "knewt.ly": [2024], "casecurity.org": [2533], "api.nice.org.uk": [10961], "msd38.illuminateed.com": [20494], "uber.lastpass.com": [9175], "base64encode.org": [19322], "bitcoinstore.com": [1999], "*.convar.de": [3626], "temai.alitrip.com": [865], "www.iibuy.com.au": [7960], "wkstatic.bdimg.com": [1747], "forums.informaction.com": [8123], "torrents-time.com": [22246], "baldershage.se": [1650], "lfrr.es": [2024], "shop.nbsklep.pl": [2024], "chrm.me": [2024], "az.trend.az": [22281], "tqn.me": [2024], "static1.symanteccloud.com": [15780], "www.bugsnag.com": [2424], "tempolibero1.ffs.ch": [15756], "chnd.in": [2024], "innocean-insight.adsrvr.org": [688], "mirweb.mir.wustl.edu": [18089], "p6.raasnet.com": [13716], "magazine.islamtoday.net": [8372], "*.comm100.cn": [3472], "ritpress.rit.edu": [13493], "s.s-s.xyz": [2024], "camdenactive.camden.gov.uk": [2785], "pizzabottle.co": [2024], "sts.sccgov.org": [14401], "i2.3conline.com": [169], "straply.com": [15573], "tw.kenmainr.net": [2024], "m.vtb.com": [17601], "cir0oo.cf": [2024], "whosgamingnow.net": [18365], "cinnamon-look.org": [3152], "git04.rostrud.ru": [21677], "www.managerewardsonline.bankofamerica.com": [1669], "core.epitesz.bme.hu": [1556], "careerbuilder.no": [19512], "l.dada.li": [2024], "scraporchard.com": [14466], "fs03.enter.ru": [20002], "horde.active24.cz": [19062], "*.networkcomputing.com": [11310], "comcast.com": [3462], "www.cod.ed.gov": [4881], "topdz.in": [2024], "handoff-cdn.appadvice.com": [1143], "nsprn.co": [2024], "udm.sledcom.ru": [21858], "assets.onelogin.com": [11874], "eater.com": [5029], "v.adsrvr.org": [688], "assets.clickmotive.com": [3249], "hfhome.com": [2024], "mobile.wwf.ch": [18028], "adjuggler.com": [581], "my.2345.com": [98], "etrtbs4.smartstream.tv": [15064], "gameological.com": [6413], "forums.garrysmods.org": [20206], "graal.onl": [2024], "oversee.net": [12201], "i.hfahmy.net": [2024], "avoa.co": [2024], "pic2.qiyipic.com": [13354], "on.unknwn.com": [2024], "blog.datadryad.org": [19763], "forum.gitlab.com": [6658], "middendrenthe.nl": [11172], "libreville.usembassy.gov": [22406], "cdn.nice.org.uk": [10961], "r.foll.me": [2024], "www.prxy.com": [13230], "ldsc.info": [2024], "services.amazon.com": [960], "tr.free-torrents.org": [20154], "accountsolution.zanesvilletimesrecorder.com": [18883], "adage.com": [3756], "img.frostmourne-wow.eu": [6209], "baden-wuerttemberg.de": [19302], "phrma.co": [2024], "www.httpstatuses.com": [20440], "mjusd.illuminateed.com": [20494], "*.clickfun.com": [3260], "piratebaymirror.eu": [22176], "postto.me": [13004], "ql.ecrchs.net": [2024], "jpn.fm": [2024], "cdon.dk": [2576], "sociamonials.com": [15141], "bsym.pl": [2024], "covr.me": [2024], "stats.sandstorm-media.de": [14344], "tncv.me": [2024], "www.hubzero.org": [7106], "intranet8.eee.hku.hk": [20387], "www.assayassured.co.uk": [1299], "cchdnursing.hkuspace.hku.hk": [20387], "asana.com": [1265], "cookies.cmpnet.com": [2640], "www.avtrade.co.uk": [1482], "mattermap.nl": [20936], "www.ioplex.com": [7784], "elbanadm.khabkrai.ru": [20709], "npu.me": [2024], "www03.fonts.com": [5972], "www.nbcudigitaladops.com": [10917], "biblos.unizar.es": [17441], "tagmil.es": [2024], "na.gcsip.com": [20217], "www.glassdoor.com": [6683], "api.thechive.com": [22141], "dslshop.vodafone.de": [17901], "f-p.us": [2024], "gfxm.biligame.com": [1903], "bmi.bund.de": [2443], "nojoneses.com": [2024], "on.kompass.ua": [2024], "publicaccess.northumberland.gov.uk": [21160], "nabima.ble.de": [19406], "osmglobal.com": [11711], "mobehero.com": [2024], "www.ovh.co.uk": [12205], "bigod.in": [2024], "bio.migros.ch": [10417], "go2arena.com": [6749], "hefr.in": [2024], "spd.gy": [2024], "foco.tax": [2024], "0m.io": [2024], "stuf.it": [2024], "n24.cm": [2024], "sbi.tips": [2024], "everde.me": [2024], "dil.sg": [2024], "www.oracleimg.com": [12116], "niod.worldcat.org": [18536], "bury.greenparty.org.uk": [6908], "community.talktalk.co.uk": [15993], "s1.postimg.org": [13024], "prosto.beeline.ru": [1778], "cloud.google.com": [6818], "login.stormpost.datranmedia.com": [13270], "fatrat.dolezel.info": [4633], "vlc-addons.org": [17580], "smart.begun.ru": [1785], "cdn.xplosion.de": [18677], "www.fablabtruck.nl": [5605], "es.anthem.com": [19206], "tech.mozilla.com.tw": [10692], "pdf.20mn.fr": [94], "goto.lto.de": [2024], "costes.to": [2024], "prometeus.net": [13193], "bhosting.ru": [1545], "brandho.me": [2024], "partner.internetessentials.com": [20553], "halo.pluska.sk": [12870], "hgdf.co": [2024], "krasnoufimsk.startsmile.ru": [21980], "*.zingcheckout.com": [18970], "freepress.net": [6123], "nationalcapital.gov.au": [11104], "glasgow.gov.uk": [6681], "y.yoritano.com": [2024], "www.vegasdealhunter.com": [17679], "alimng.ru": [2024], "debis.tips": [2024], "soe.ucsc.edu": [17390], "joelb.co": [2024], "www.mywickr.com": [18374], "dica.faisca.org": [2024], "onorobot.org": [11686], "bangjamal.my.id": [2024], "oxford.ly": [2024], "omnisky.co": [2024], "krasnodar.biglion.ru": [19375], "seiko.ec": [2024], "pt.piliapp.com": [12706], "ushpsk.mvd.ru": [21055], "ijponline.biomedcentral.com": [1931], "meg.tw": [2024], "forum.telekom.de": [4397], "www.agava.ru": [765], "mail.linux-mips.org": [9428], "www.skyscanner.net": [15006], "crwd.sc": [2024], "foxydeal.com": [6067, 6068], "m.se.imhd.sk": [8004], "rj.cx": [2024], "wiki.greasespot.net": [6887], "*.webspace4clans.de": [18248], "theadulthub.com": [22142], "*.rfihub.com": [13912], "naef.in": [2024], "fengche.growingio.com": [20312], "apps.sstaffs.gov.uk": [21964], "tnnet.fi": [15903], "cpni.gov.uk": [2964], "adultplay.se": [2024], "*.wikimedia.ch": [18388], "sceneaccess.eu": [14405], "media.tango.me": [16009], "270h.io": [2024], "q.winofsql.jp": [2024], "cdn.smugmug.com": [15078], "davidsopas.com": [4216], "lisam.liu.se": [9097], "www.whitehelmets.org": [22579], "illiad.wustl.edu": [18089], "table.rocketbank.ru": [13994], "wcdy.org": [2024], "kali.org": [8786], "xdot.us": [2024], "datasaveslives.eu": [4177], "www.klub.com.pl": [8948], "rap8.tnsglobal.com": [15906], "smoove.ws": [2024], "use-tor.adsrvr.org": [688], "srku.ir": [2024], "gfscan.ca": [2024], "about.tagboard.com": [22085], "westbyte.com": [22565], "go.ing.im": [2024], "itsnow.hku.hk": [20387], "sketchfab.com": [14973], "avia.sakh.com": [21719], "cp.rentalserver.jp": [13835], "caravan.ma": [2024], "visiblemeasures.com": [17856], "bulletproofmeteor.com": [2430], "shib.med.cornell.edu": [3676], "www.finavia.fi": [5818], "www.acls.org": [294], "todayidol.id": [2024], "support.mapbox.com": [9977], "vliegtickets.nl": [17890], "goto.je": [2024], "imgstore.cdn.sogou.com": [15168], "www.wyreforest.greenparty.org.uk": [6908], "i2.services.social.s-msft.com": [14114], "www.xn--90aijkdmaud0d.xn--p1ai": [22654], "elch.in": [2024], "bpxl.me": [2024], "v2.retargeter.com": [13661], "www.globetrotter.de": [6725], "emvn.co": [2024], "crypto.stanford.edu": [15448], "www.forms.portsmouth.gov.uk": [21467], "trchb.it": [2024], "moja.pss.sk": [13233], "twemoji.maxcdn.com": [10102], "oc.cm": [2024], "trvln.to": [2024], "boxing.biligame.com": [1903], "cache3.youla.io": [22689], "podcast.golem.de": [6804], "go.cliqpass.com": [2024], "cindyk.me": [2024], "projects.icij.org": [7689], "h.ligatus.com": [9356], "apply.business.hsbc.co.uk": [20422], "www.adviceguide.org.uk": [716], "superoh.lt": [2024], "popup.taboola.com": [15963], "support.audioboom.com": [19272], "my.t-mobile.com": [15837], "*.slotsgaminator.com": [6427], "img.kaloo.ga": [8788], "vpnac.com": [22504], "styknd.co": [2024], "cwspodmusic.com": [2708], "dbspixel.hbz-nrw.de": [7245], "www.cdon.dk": [2576], "yakutsk.sumtel.ru": [22031], "portail.strasbourg.eu": [15574], "go.techt3.com": [2024], "sobatkuis.tk": [2024], "b.i5m.nl": [2024], "thecenterforrights.org": [16332], "piwik.april.org": [1171], "ddm.cu.cc": [2024], "itsc.ust.hk": [22412], "www.yumpu.com": [18837], "night.sakh.com": [21719], "www.zoomeye.org": [19002], "u.ortc.link": [2024], "wwte10.com": [18031], "maldon.gov.uk": [20914], "rtbf.be": [14063], "sverigesradio.se": [15738], "dalnegorsk.startsmile.ru": [21980], "atlanticsoft.axosoft.com": [1504], "www.ipython.org": [7811], "nachbarschaft.immobilienscout24.de": [8008], "uvision.hku.hk": [20387], "weget.co": [2024], "31b.it": [2024], "services.snoopy.swisscom.com": [15761], "androidpolice.com": [1050], "mnsw.ch": [2024], "2kgbalsecfw1.2kgames.com": [117], "historyp.in": [2024], "pixel.mathtag.com": [10083], "mrtn.is": [2024], "cyprus.psbank.ru": [13231], "readthedocs.org": [13671], "www.harvardpilgrim.org": [7212], "www.accessprivacy.ca": [505], "testfahrer.autoscout24.de": [1458], "v.qq.com": [13329], "tpg.li": [2024], "pay.video.qq.com": [13329], "server.buycraft.net": [2488], "go.abhi.sk": [2024], "thumbshots.*": [16475], "m.kapital.kz": [20685], "*.versia.ru": [22446], "azof.fr": [2024], "cksource.com": [2634], "hrv.st": [2024], "documentation.cloudbees.com": [19622], "www.jkry.org": [8453], "www.serverfruit.com": [14676], "faq.web4all.fr": [18148], "www.courttheatre.org.nz": [19702], "mmrnll.com": [2024], "l.trio.sexy": [2024], "jobs.linux.com": [8606, 9417], "www.thepirate.zone": [21522], "store.gigabyte.com": [6628], "www.bigstockphoto.com": [1895], "signup.edgar-online.com": [4884], "pmrx.me": [2024], "tasc.stanford.edu": [15447], "libby.bz": [2024], "sl.tahr.org.tw": [2024], "cyrus.foundation": [3981], "sprdlx.co": [2024], "lewrockwell.com": [9293], "sht.golkai.com": [2024], "freehookupsearch.com": [20162], "www.gmx.at": [6330], "community.48months.ie": [186], "www.stanford.edu": [15448], "aj.fyi": [2024], "www.sis.gov.uk": [14533], "mem.gfx.ms": [6607], "e-onlinedata.com": [4851], "admin-vh.es.clara.net": [3212], "prefetch-maps.yandex.com.tr": [18740], "*.sanalika.com": [14337], "www.efiliale.de": [19816], "ija.red": [2024], "media4.congstar-media.de": [3579], "ecaforums.com": [5281], "thesun.co.uk": [22188], "cdn.travis-ci.org": [16775], "trustlogo.com": [3507], "www.flixbus.nl": [5911], "accounts.euractiv.com": [5388], "k99.fm": [2024], "americaslongestwar.com": [993], "www.owenservices.com": [12209], "canterbury.objective.co.uk": [21225], "developer.swisscom.com": [15761], "*.maliit.org": [9933], "www.enisa.europa.eu": [5411], "health.ancestry.com": [1035], "wkg.li": [2024], "raj.as": [2024], "nikp.in": [2024], "www.blackoutcongress.org": [2073], "sportisimo.com": [14223], "r24625284.sync.app.asana.com": [1265], "www1.informatik.uni-erlangen.de": [17396], "holtstrom.com": [7469], "www.sust.admin.ch": [22061], "www.targetedthreats.net": [16026], "ld-8.itunes.apple.com": [1151], "www.o2extra.cz": [16141], "www.planet-work.fr": [12796], "merpic.intelliwebservices.com": [8220], "on.si.com": [2024], "www.freed0m4all.net": [6139], "forums.verizon.com": [17715], "www.joindiaspora.com": [4435], "buzuluk.startsmile.ru": [21980], "inspection.hyd.gov.hk": [7063], "be.ch": [22061], "on.lappari.com": [2024], "jp.rbth.com": [21596], "help.anz.co.nz": [19211], "api.demandbase.com": [4324], "baina.jd.com": [8436], "sheknw.tk": [2024], "swot.cnes.fr": [2647], "hpbw.de": [2024], "www.texthelp.com": [16233], "static.jsbin.com": [20659], "www.shopyourway.com": [14784], "www.ieee.org": [7719], "www.waytools.com": [18107], "wetter.gq": [2024], "by.redstift.com": [2024], "cus.tm": [2024], "law.illinois.edu": [17346], "blogs.citizensadvice.org.uk": [19596], "elbadil.com": [5133], "webmail.gmobb.jp": [6322], "ic.lbp.me": [20789], "capmh.biomedcentral.com": [1931], "community.sharefilesupport.com": [14725], "*.salesforceliveagent.com": [14312], "daniel.holba.ch": [7455], "hornbach.de": [7504], "websupport.f5.com": [5537], "id.dokyasde.com": [2024], "courses.wustl.edu": [18089], "s-asia.net": [2024], "r24625282.sync.app.asana.com": [1265], "ma.ttias.be": [9831], "www.utopianet.org": [17543], "vutbr.cz": [17609], "cluster.litmus.com": [9483], "www.video.oms.eu": [11673], "collect.anz.com": [374], "notice.ms.yahoo.co.jp": [18730], "resurs.se": [13876], "www.aclumaine.org": [301], "itfr.dm": [2024], "chaitan.me": [2024], "75.mvd.ru": [21055], "sltz.us": [2024], "www.tageswoche.ch": [15972], "support.brookings.edu": [2379], "contents.gunosy.com": [7005], "webr.ch": [2024], "airwav.es": [2024], "iwpsd.georgetown.edu": [6531], "005.img.qf.56.itc.cn": [8401], "dhk.li": [2024], "emed.un.org": [17057], "strass.media": [2024], "www.science-alliance.de": [14438], "49e.info": [2024], "netis.ru": [21111], "op-lib.ch": [2024], "collections.umontpellier.fr": [22365], "1n6ha9yn13l9oy7syzqjib7kzph5dg7wf9w7wx29.ipleak.net": [20571], "portal.office.com": [11780], "sync.teads.tv": [16059], "augur.io": [1392], "icij.org": [7689], "www.dynastyfdn.com": [19915], "blog.yammer.com": [18738], "shopthemint.co": [2024], "anyoption.com": [1115], "media.nips.cc": [10970], "supplierportal.hkjc.com": [20384], "minpt.khabkrai.ru": [20709], "chinapaymentservices.com": [3085], "baidj.us": [2024], "www.albertathome.org": [5115], "iku.youku.com": [18804], "w.krulz.nl": [2024], "pairnic.com": [12365], "gplus.chainfire.eu": [19556], "partitaiva.tiscali.it": [16572], "www.hayward-pool.com": [7243], "www.successchef.com": [15637], "data.video.qq.com": [13329], "passed.cc": [12462], "www.theora.org": [16416], "www.eduroam.vutbr.cz": [17609], "repair.dji.com": [4029], "www.reclog.jp": [13702], "mrqt.nl": [2024], "l.endfy.com": [2024], "fi.theanarchistlibrary.org": [16290], "login.library.ethz.ch": [4967], "secure.excaliburfilms.com": [5472], "servercow.de": [14673], "balashov.beeline.ru": [1778], "www.nordkapp.net": [11515], "to.kras.nl": [2024], "tokens.oauth.net": [11645], "norsk-tipping.no": [21155], "meritrustcu.org": [10305], "kulp.me": [2024], "skatemall.com": [14964], "sbcusd.illuminateed.com": [20494], "woodgreenshop.org.uk": [18508], "osicodesinc.com": [11709], "austenb.io": [2024], "hostasaurus.com": [7528], "secure.me": [14552], "b.hitravel.xyz": [2024], "difran.co": [2024], "ozery.biglion.ru": [19375], "crazzed.com": [3764], "fut.sky.de": [14990], "s.mrj.ae": [2024], "login.domains.live.com": [9495], "dialdirect.co.uk": [4430], "chldrns.org": [2024], "shopcms.southbankcentre.co.uk": [15260], "encrypt-the-planet.com": [19992], "hello-russia.friday.ru": [20175], "padsdel2.cdnads.com": [2928], "l.motormsm.com": [2024], "browser.export.yandex.com": [18742], "outflux.net": [12184], "zooniverse.org": [19005], "lcchr.com": [2024], "*.webshopapp.com": [18240], "ropo.it": [2024], "hppkt.co": [2024], "securetheatre.telford.gov.uk": [22120], "test-haonan2.bjctc.scs.sohucs.com": [15173], "ad.exelate.com": [4988], "vrct.se": [2024], "seb.sx": [2024], "njm.at": [2024], "provider.havering.gov.uk": [7236], "www.bplaced.net": [19438], "images.yemeksepeti.com": [18767], "test201503csf.bjcnc.scs.sohucs.com": [15173], "gira.ph": [2024], "planning.bradford.gov.uk": [2282], "cheapssl.com": [3045], "account.pcapredict.com": [21367], "hrla.ws": [2024], "www.shands.org": [17341], "2sx4u.com": [2024], "i3d.net": [7664], "www.gentooexperimental.org": [6518], "open-mesh.com": [11943], "osinniki.startsmile.ru": [21980], "tfgu.co": [2024], "dpost.co": [2024], "pass.ag": [2024], "www.naturalmessage.com": [11137], "glyph.twistedmatrix.com": [16958], "www.scorecardresearch.com": [14455], "play.google.com": [6818], "*.rug.nl": [17342], "www.weimarnetz.de": [22558], "images.footlocker.com": [5986], "fldwrk.co": [2024], "uoc.to": [2024], "init.itunes.apple.com": [1151], "app.marinsoftware.com": [10005], "gum.co": [7000], "extranet.ble.de": [19406], "3.darkroom.shortlist.com": [14795], "mumzworld.com": [10740], "ukfssweb.food.gov.uk": [20132], "www.smartmontools.org": [21868], "tinkernut.com": [22211], "mchl.gr": [2024], "fowler.illuminateed.com": [20494], "do.ngs.ru": [21134], "learningcentral.cf.ac.uk": [2847], "partner.edgecast.com": [5070], "diy.lovebizhi.com": [20878], "news.sohu.com": [15171], "zona.media": [18992], "bkk-advita.de": [1550], "the.blvr.org": [2024], "www.polygon.com": [12937], "energiwatch.dk": [5241], "m.heise.de": [7288], "www.yaca.yandex.kz": [18743], "www.binbox.io": [1923], "www.icln.org": [7691], "*.shopping.com": [4865, 14789], "bawa.ba": [2024], "studentblackboardhelp.usc.edu": [17366], "mail.silentcircle.com": [14848], "customerlobby.com": [3933], "mvst.pe": [2024], "hbooker.com": [20354], "eagleeye.umw.edu": [17349], "www.3dvisionlive.com": [162], "allmovie-top.cf": [2024], "owa.1x.com": [67], "www.fas.harvard.edu": [7211], "lubakiagenda.net": [20885], "my.bitdefender.com": [2012], "backstage.here.com": [7325], "ask.mcdonalds.ru": [20941], "www.exportingisgreat.gov.uk": [20054], "www.cozumpark.com": [3739], "ds.io": [2024], "wemonit.de": [18119], "t37.net": [15845], "tpik.co": [2024], "hr-recruit.web.cern.ch": [2588], "www.active24.co.uk": [19060], "ca-contrainfo.espiv.net": [20021], "gifl.it": [2024], "www.fat.bme.hu": [1556], "cbdr.se": [2024], "m.tune.yandex.kz": [18743], "metatu.be": [2024], "images.stackcommerce.com": [15426], "mdr.io": [2024], "atfamily.co": [2024], "s55.cnzz.com": [3328], "cdnapi.kaltura.com": [8790], "shop.niksoftware.com": [11439], "cpld.co": [2024], "btlbx.co": [2024], "photos.univers-libre.net": [17316], "pingback.giphy.com": [6646], "thepiratebay.casa": [22174], "www.asnuul.asso.ulaval.ca": [17319], "assets-auto.rbl.ms": [13652], "www.dnsstuff.com": [4062], "www.wikilov.es": [18388], "whosonfirst.mapzen.com": [9987], "hov.li": [2024], "s91.cnzz.com": [3328], "www.tqlkg.com": [3484], "portugues.istockphoto.com": [20595], "dgus.tv": [2024], "pensions.southwark.gov.uk": [15264], "my.apa.org": [386], "www.widgitonline.com": [22587], "vologda.europaplus.ru": [20034], "opts.jp": [2024], "ned.ipac.caltech.edu": [2771], "www.tomsofmainestore.com": [16619], "www.personalsavings.americanexpress.com": [979], "www.canon.dk": [2822], "longtailvideo.com": [9601], "empw.ca": [2024], "go.artywah.info": [2024], "assets-animated.rbl.ms": [13652], "shiri.info": [2024], "uat.adr.org": [19086], "wildarchives.com": [18392], "kiyoshifone.jp": [2024], "tawke.rs": [2024], "lib.law.washington.edu": [17376], "jpff.tk": [2024], "scata.mykopat.slu.se": [14195], "www.torrentdownloads.me": [22244], "mail.bezopasnik.org": [19363], "cas.wku.edu": [22602], "www.dobrochan.org": [4601], "runningrout.es": [2024], "hertzequip.com": [7371], "*.seedr.cc": [14613], "analytics.sanoma.fi": [14351], "www.resetthenet.org": [13862], "*.weebly.com": [18270], "www.collection.hotpics-amateur.com": [7557], "villas4you.co.uk": [18579], "dbphone.tk": [2024], "pkpla.net": [2024], "miles-and-more.com": [10431], "mancrush.me": [2024], "www.courses.osu.edu": [11797], "lesterchan.net": [9277], "mcdabb.in": [2024], "lumiblade-shop.com": [9673], "b.yandex.com.tr": [18740], "vip.invictus.mx": [2024], "*.partitopirata.ch": [12314], "videos.abuledu.org": [19044], "tpl.forsale": [2024], "l-dm.co": [2024], "socialwork.buffalo.edu": [17382], "spr.tn": [2024], "tihoretsk.europaplus.ru": [20034], "js.hubspot.com": [7599], "ajax.asp.net": [413], "mmom.me": [2024], "shortnote.jp": [21812], "www.knightlab.com": [8958], "bioethics.georgetown.edu": [6531], "akademie.skolaonline.cz": [21852], "adk.kay.my": [2024], "on.ampya.com": [2024], "obraschenie-ksenii-sobchak.friday.ru": [20175], "www.circanews.com": [3157], "x.9-agency.com": [2024], "cdn.ticketsource.co.uk": [22207], "medlaw.oxfordjournals.org": [12222], "bustreaming.ulpgc.es": [17213], "www.gemeentebest.nl": [11172], "pics.qxlstatic.dk": [13341], "altai.sledcom.ru": [21858], "www.anonyproz.com": [1116], "on.epi.org": [2024], "ru.norton.com": [11545], "galaxy.ansibleworks.com": [1094], "www.evernote.com": [5440], "partners.rackspace.com": [13566], "www.statefarm.com": [15483], "i-share.carli.illinois.edu": [17346], "slm-assets1.secondlife.com": [14527], "my.ufanet.ru": [22347], "tune.play-asia.com": [12828], "www.downthemall.net": [4717, 4718], "msk.rosevrobank.ru": [14024], "www.proxybay.pl": [21523], "low.do": [2024], "wyndhamjobs.com": [18578], "www.news.cornell.edu": [3676], "couch.fyi": [2024], "offi.gq": [2024], "hope.net": [7501], "mads.io": [2024], "*.meituan.com": [10248], "powells.us": [2024], "feeds.bbci.co.uk": [19332], "www.telemetry.com": [16156], "p.spodermen.com": [2024], "www.audicon.net": [1378], "rlng.co": [2024], "www.viaduct.io": [17749], "remilia.zdoom.org": [22710], "www.nebelwelt.net": [11164], "riverbed.com": [13964], "sjmjr.me": [2024], "plus.politiken.dk": [12922], "www.anadolu.edu.tr": [1029], "support.airmap.com": [790], "s103.cnzz.com": [3328], "vc-server.de": [17558], "clear-link.com": [3229], "login.bibproxy.ulpgc.es": [17213], "www.glasgowconsult.co.uk": [20257], "logancij.com": [9562], "afcne.ws": [2024], "cs6.myzuka.fm": [21079], "nottingham.greenparty.org.uk": [6908], "divitup.com": [4568], "hertzondemand.com": [7371], "lovingsupport.fns.usda.gov": [17299], "gcmasia.com": [6287], "u.tthe.se": [2024], "dixie.life": [2024], "on.wisn.com": [2024], "www.weekplan.net": [18272], "static.wangyin.com": [18068], "pgeverydaysolutions.com": [13168], "lmwtesting.newegg.com": [11356], "providence.voxmedia.com": [22503], "bugzilla.redhat.com": [13735], "*.hd.se": [7035], "sf3.io": [2024], "dj1.xyz": [2024], "onehelp.cz": [11679], "brianchristner.io": [19448], "m.eclipso.de": [5042], "www.bbsey.es": [1743], "login.domaindiscount24.com": [19869], "hostgator.com": [7520], "ocronusa.net": [11750], "link.renga3.com": [2024], "www.warrington.gov.uk": [18079], "mcm.me": [2024], "armenia.kavkaz-uzel.ru": [20694], "www.wwis.dwd.de": [19911], "updates-yum.ro.vutbr.cz": [17609], "u62.org": [2024], "emergency.illinois.edu": [17346], "rss.root.cz": [14020], "community.sbaglobal.com": [14685], "*.bendigobank.com.au": [1805], "instapaper.com": [8190], "maxm.eu": [2024], "www.changedetection.com": [3000], "camp.ai": [2024], "ipswit.ch": [2024], "feeds2.feedburner.com": [5720], "haweso.me": [2024], "creativepartnershipsaustralia.org.au": [3776], "www.cenowarka.pl": [2947], "jive.to": [2024], "*.aufeminin.com": [1495], "kunden.1und1.de": [91], "br1.es": [2024], "cas.iu.edu": [8069], "images.salon.com": [14315], "salesmedia.pl": [21720], "www.lenizdat.ru": [20807], "iconnect.colchester.gov.uk": [3414], "glze.me": [2024], "nasp.ws": [2024], "radio98fm.espiv.net": [20021], "go.wiriamu.net": [2024], "*.gamestar.de": [6420], "keepassx.org": [8850], "wiki.vortexbox.org": [22498], "employer.careerbuilder.com": [2853], "www.matildajaneclothing.com": [10084], "downloads.plex.tv": [12854], "dod.mn": [2024], "hbjoy.co": [2024], "postcodeanywhere.co.uk": [21469], "*.consumersunion.org": [3605], "assetscdn.students.uophx.edu": [12664], "lyncdiscover.mbank.pl": [9733], "impression.tips": [2024], "www.drupalgardens.com": [4774], "vesica.ws": [17737], "s4.rationalcdn.com": [21588], "phclarity.co": [2024], "shuv.es": [2024], "burly.me": [2024], "pskov.startsmile.ru": [21980], "jwdcr.com": [2024], "getoutofdebt.org": [6583], "www-d0.fnal.gov": [5741], "cm.life": [2024], "ds.heanet.ie": [7267], "anxitea.jd.com": [8434], "jw-l.info": [2024], "assu-web.stanford.edu": [15447], "bentasker.co.uk": [1803], "www.alldebrid.com": [877], "duoshuo.com": [19906], "psbank.ru": [13231], "zcty.it": [2024], "www.tsv.fi": [16511], "www.royalsociety.org": [14053], "www.hook.io": [20405], "secure.payconnect.net": [4886], "saimd.com": [3683], "postmaster.tdc.dk": [15862], "kde-apps.org": [8734], "lyncdiscover.rockstargames.com": [13997], "npjscilearncommunity.nature.com": [11140], "bakn.me": [2024], "cdyapp.co": [2024], "lifehap.pn": [2024], "smartf.ly": [2024], "lnks.li": [2024], "p.giphy.com": [6646], "slax.org": [15017], "wmp.nrafamily.org": [21180], "tikhvin.startsmile.ru": [21980], "blog.netways.de": [11300], "alfonso.link": [2024], "www.investsmart.com.au": [8311], "ykso.us": [2024], "videolab.avnet.kuleuven.be": [8832], "pubs.ext.vt.edu": [17825], "bsidesslc.org": [1574], "dd.lc": [2024], "www.blog.fau.de": [17396], "www.nordichardware.se": [11511], "r24616617.sync.app.asana.com": [1265], "s.sound-c.co.jp": [2024], "graduateschool.wustl.edu": [18089], "www.pacw.org": [12235], "tech.sina.com.cn": [14904], "authproxy.trafficanalytics.here.com": [7325], "01.mvd.ru": [21055], "a2.ifengimg.com": [20487], "unrestrict.li": [17452], "ftfbr.co": [2024], "alternet.org": [925], "a.xgolf.kr": [2024], "out.vitzo.com": [2024], "www.pingability.com": [12717], "e.onthe.io": [11926], "upa.rocks": [2024], "livememe.com": [9504], "learn.adafruit.com": [604], "tariff.nso.ru": [21192], "x.thisr.com": [2024], "linux.rz.ruhr-uni-bochum.de": [14086], "csmonitor.com": [19737], "social.mayfirst.org": [10113], "e-scrooge.is": [19920], "stuff.offog.org": [11793], "web-style.educ.cam.ac.uk": [17332], "staging.amara.org": [956], "www.hereford.greenparty.org.uk": [6908], "english.mirea.ru": [20993], "ashur.st": [2024], "anev.is": [2024], "webspace4clans.de": [18248], "pub.ietf.org": [7725], "alebego.li": [2024], "www.all4xs.net": [873], "ethai.land": [2024], "edweek.org": [5061], "*.iapplicants.com": [8603], "trachea.stanford.edu": [15448], "bdsdr.me": [2024], "firmstep.com": [20109], "www.slaveryfootprint.org": [15016], "*.bwin.com": [7737], "xizang.jd.com": [8434], "gurkanaltay.com": [2024], "zmknox.xyz": [2024], "image.play-asia.com": [12828], "chrisd.me": [2024], "sellerhelp.discogs.com": [4529], "feeds.soundcloud.com": [15231], "*.adition.com": [648], "www.focus.de": [5953], "b2b.cmbchina.com": [2639], "alumniapp.hkuspace.hku.hk": [20387], "imagewz.winzip.com": [18424], "digimint.ly": [2024], "dukes.me": [2024], "pcr.io": [2024], "go.majksner.com": [2024], "www.sicontact.at": [14821], "mail.sohu.net": [15172], "linuxnewmedia.de": [9409], "cvtt.me": [2024], "getglue.com": [6560], "ail.htwk-leipzig.de": [7596], "puxlit.tumblr.com": [16897], "qxl.no": [13442], "xarel.to": [2024], "web-api.migros.ch": [10417], "hgr.mn": [2024], "www.kolabsys.com": [8971], "www.otumm.com": [12169], "op1c.com": [2024], "wordvine.sydney.edu.au": [22063], "www.southrivertechnologies.com": [21913], "tiberis.me": [2024], "mysafe.f-secure.com": [5533], "www.dice.com": [4439, 4440], "zhan.bjcnc.scs.sohucs.com": [15173], "hoz.me.uk": [2024], "alp.hr": [2024], "vpn.uibk.ac.at": [22350], "keep2share.cc": [8720], "*.urkb.ch": [20683], "www.3fm.nl": [163], "www.passsource.com": [12460], "trav.pt": [2024], "*.synacor.com": [15787], "datadoghq.com": [4193], "jepmr.fr": [2024], "irhod.es": [2024], "i.fantasyracing.telegraph.co.uk": [16149], "sandbox.mydigipass.com": [10869], "www.waze.com": [18111], "secure.syndetics.com": [15798], "ulyanovsk.beeline.ru": [1778], "reach.fm": [2024], "www.l0g.us": [9074], "img6.yeggi.com": [18760], "camden.spydus.co.uk": [21952], "git10.rostrud.ru": [21677], "img.amiami.jp": [997], "knote.cc": [2024], "nfpeo.uk": [2024], "r.freecoins4.me": [2024], "ftp.rnl.tecnico.ulisboa.pt": [20184], "stat.inetcom.ru": [20524], "wolfire.com": [18485], "bookings.bookitsecure.com": [19427], "fous.ly": [2024], "medicine.nature.com": [11140], "belogorsk.startsmile.ru": [21980], "new.enfield.gov.uk": [5247], "www.nasa.gov": [10909], "blog.travis-ci.com": [16775], "feed.thenewslens.com": [16302], "abakan.beeline.ru": [1778], "lnk.nickmke.com": [2024], "y0y.me": [2024], "upc-cablecom.ch": [22386], "cgit.collabora.com": [3418], "www.piwik.uni-hamburg.de": [17025], "www.enlightenment-themes.org": [19999], "jobs.bce.ca": [1792], "nwst.cc": [2024], "invn.co": [2024], "adviate.ch": [2024], "hybridsp.com": [2024], "ftp.x5.ru": [18590], "shopgbt.com": [2024], "elsevier.ca": [5176], "smiliblog.stanford.edu": [15448], "sceper.eu": [14406], "gthss.com": [2024], "modules.openmrs.org": [11989], "countysuppliesonline.hants.gov.uk": [7185], "www.scoding.de": [21753], "etrieveca.htzpartners.com": [7371], "manageengine.jp": [9950], "utk.edu": [17424], "picsea.me": [2024], "quamnet.com": [13384], "awtari.ca": [2024], "www.kth.bme.hu": [1556], "www.mastozytose-schweiz.org": [10070], "www.tribecafilm.com": [16801], "images.dynamicyield.com": [4822], "on.revo.com": [2024], "www.leaseweb.com": [9229], "www.bbpress.org": [1740], "*.stagingspeak.com": [16901], "www.cosmote.gr": [3692], "jdshot.us": [2024], "tlng.me": [2024], "go.techreach.in": [2024], "thumbs.dachix.com": [3757], "c.pichard.me": [2024], "business.gov.au": [2470], "static.linuxdistrocommunity.com": [9436], "www.mnot.net": [10518], "tieclip.it": [2024], "amazon.co.uk": [19170], "support.evernote.com": [5440], "www.adobe.com": [669], "wrgm.ag": [2024], "a.4sqdaykc.co": [2024], "peixun.alibaba.com": [857], "tomsk.biglion.ru": [19375], "www.iseclab.org": [8361], "lagoa.in": [2024], "www.menshealth.de": [10281], "szamlazo.mito.hu": [10496], "wspk.co": [2024], "www.mcdelivery.com.my": [10132], "mghocd.org": [9712], "*.bigbrotherwatch.org.uk": [1885], "www.egedalkommune.dk": [5100], "stat.netis.ru": [21111], "phil.camera": [21396], "searchengineland.com": [16441], "townre.nyc": [2024], "hi.bakingit.com": [2024], "broadbandreports.com": [4075], "ossbss.link": [2024], "runscope.com": [14094], "collinz.co": [2024], "slu.gg": [2024], "a3.ec-images.myspacecdn.com": [10889], "secondmarket.com": [14526], "support.codeanywhere.com": [19635], "jenkins.linuxcontainers.org": [9435], "nlft.co": [2024], "bbk.bund.de": [19335], "alumni.cgi.rice.edu": [13925], "jinhuo.1688.com": [51], "s.pairs.lv": [2024], "easy-tracking-protection.truste.com": [15922], "silverte.ch": [2024], "prd-eipe.imercer.com": [20502], "disk.yandex.kz": [18743], "*.host1plus.com": [7513], "cdn.scribblelive.com": [14474], "www.csiac.org": [2684], "zmb.me": [2024], "admission.stanford.edu": [15448], "spothe.ro": [2024], "overclockers.at": [12196], "www.roammobility.com": [13975], "base64-image.de": [19321], "community.marketdojo.com": [10019], "www.55ch.org": [210], "on.docx.ca": [2024], "kb.isc.org": [7823], "penngse.me": [2024], "childrenandarmedconflict.un.org": [17057], "www.vtnews.vt.edu": [17825], "info.bitsighttech.com": [1973], "*.oneclickdigital.eu": [21252], "imgnt.it": [2024], "facultyhandbook.georgetown.edu": [6531], "nominatim.openstreetmap.org": [12015], "zem.si": [2024], "dijitv.co": [2024], "www.firmstep.com": [20109], "trustpilot.com": [16869], "www.duckduckhack.com": [19903], "www.utbm.fr": [22414], "www.netforumpro.com": [11230], "secure.thepensionsregulator.gov.uk": [22173], "www.happyhardcore.com": [7188], "cf.thumbs.xxxbunker.com": [18699], "ctvcom.co": [2024], "www.securepoint.de": [14572], "edht.cf": [2024], "tritonlink.ucsd.edu": [17012], "webmail.f-secure.com": [5533], "meetup.com": [10231], "volumio.org": [22495], "espana.isidewith.com": [20466], "cornerstone.wustl.edu": [18089], "loui.sv": [2024], "*.freeforums.net": [13158], "support.24paybank.com": [109], "forum14.hkgolden.com": [7058], "www.mikeconley.ca": [10421], "friends.nico": [6196], "myhub.biz": [2024], "www.pol.ulaval.ca": [17319], "www.meinfernbus.de": [10250], "www.aful.org": [343], "*.uk2.net": [17037], "toxstats.com": [22256], "www.stopthehacker.com": [15557], "on.wptz.com": [2024], "bit.0.md": [2024], "secured.greenpeace.org": [6920], "jjvirg.in": [2024], "rply.cl": [2024], "archive-5.kali.org": [8786], "www.kop11.com": [8758], "inetvl.ru": [20525], "izag.co": [2024], "lkimg.zamimg.com": [18878], "lkk.mosoblgaz.ru": [21024], "photo.p0p0v.ru": [2024], "www.joycasino8.com": [20654], "b2d-linux.com": [19296], "upcase.com": [17469], "news.ourlocality.org": [12177], "secure.sextoy.com": [14702], "www.avadirect.com": [1462], "dl.bitmask.net": [2027], "hrweb.apple.com": [1151], "www.indiana.edu": [8070], "ib.rosbank.ru": [21671], "download.yidianzixun.com": [22679], "kstovo.startsmile.ru": [21980], "lmden.tl": [2024], "hrlink.healthnet.com": [20360], "www.oomphme.com": [11932], "d38.me": [2024], "vipcams.play-asia.com": [12828], "fmly.co": [2024], "arc.publicdebt.treas.gov": [17139], "www.drillisch.de": [4755], "dlink.ml": [2024], "scotty.ac": [2024], "home.pl": [7475], "s.gflaig.eu": [2024], "kamchatskiy-kr.beeline.ru": [1778], "u.jobnavy.com": [2024], "*.myfbo.com": [10802], "daok.us": [2024], "resnet.rit.edu": [13493], "vidyaevo.beeline.ru": [1778], "dnd.wizards.com": [18477], "jefftips.co": [2024], "smsl.osu.edu": [11797], "shop.openbsdeurope.com": [11956], "mye.cards": [2024], "vitamin.play-asia.com": [12828], "www.leo.org": [9270], "choc.lt": [2024], "chm.link": [2024], "jdc.io": [2024], "go.foxct.com": [2024], "frms.bz": [2024], "srware.net": [15411], "crunchbangplusplus.org": [3832], "alternativeto.net": [934], "l.safadinho.net": [2024], "qr.cogmpgt.org": [2024], "trdwnds.life": [2024], "si.wsj.net": [18021], "www.braincert.org": [2287], "val.vutbr.cz": [17609], "a4.lscdn.net": [9115], "dontspyonus.org.uk": [4674], "riz.li": [2024], "tilburguniversity.worldcat.org": [18536], "www.rpmfusion.org": [14056], "u.horia.me": [2024], "static-s.bilibili.com": [1904], "cf.scdn.co": [14147], "retail.svyaznoy.ru": [22053], "altimatewellness.com": [939], "fs.monex.co.jp": [10583], "secure.brandify.com.au": [2302], "sh.balintant.me": [2024], "forum.jquery.com": [8463], "performance.demandbase.com": [4324], "www.rbdigital.com": [21593], "www.neko.im": [11178], "hiasrefuge.es": [2024], "www.permits.performance.gov": [12600], "safaribooksonline.com": [14284], "www.emep.org": [5196], "www.ciao.de": [3136], "domru.a-3.ru": [258], "wallet.tenpay.com": [16185], "mrvnchr.co": [2024], "yoklapi.com": [18783], "rusticwed.com": [2024], "liebach.tumblr.com": [16897], "nizhnekamsk.startsmile.ru": [21980], "e18.xhamsterpremiumpass.com": [18607], "sharkloves.com": [2024], "video10.0xdb.org": [10], "kolbi.me": [2024], "growerscup.coffee": [20311], "www.jammerbugt.dk": [8516], "bookings.see.leeds.ac.uk": [17403], "www.adpeepshosted.com": [600], "www.aktiiviraha.fi": [7174], "s3.cn.bing.net": [1925], "is.onmedic.com": [2024], "1.goke.me": [2024], "reslife.wustl.edu": [18089], "www.intelligence.org": [8216], "jo.tl": [2024], "www.navicast.co.jp": [14801], "amd.co.at": [969], "usic.tocco.ch": [16600], "enrsi.rtvs.sk": [13536], "jolla.com": [8636], "trgam.es": [2024], "value-domain.com": [17627], "community2.newcastle.gov.uk": [11355], "cancer-fi.directo.fi": [15809], "utsouthwestern.edu": [17369], "by.0atz.com": [2024], "www.sideshowtoy.com": [14826], "pirates.mail.ru": [9891], "mystr.us": [2024], "on.feif.me": [2024], "ro-journal.biomedcentral.com": [1931], "s.hychen.org": [2024], "go.vtxw.com": [2024], "www.spacex.com": [15278], "www.ksk66.ru": [20759], "link.aveeo.de": [2024], "www.dinside.no": [19844], "digital.georgetown.edu": [6531], "ishrank.it": [2024], "msfn.org": [9804], "images.tweaktown.com": [16938], "amnesty.org.uk": [1015], "www.refugee.ru": [21624], "www.dmgt.co.uk": [4115], "instructlab.educ.cam.ac.uk": [17332], "umw.io": [2024], "www.tescodiets.com": [16209], "lk.pirate-party.ru": [12736], "fyndiq.ly": [2024], "burst.net": [2462], "email.consumer.org.hk": [3599], "my.edgecast.com": [5070], "iabe.jp": [2024], "biz.wangyin.com": [18068], "labs.tageswoche.ch": [15972], "petitions.moveon.org": [10669, 10670], "ln-s.us": [2024], "16t2yi0ys6nbtqowybvpg1lq0ynvmqq535xgi8eo.ipleak.net": [20571], "nowj.ga": [2024], "mbpr.sh": [2024], "www.yemeksepeti.com": [18767], "www.providercentral.org.uk": [21520], "connecthr.nl": [2797], "domaincontext.com": [4646], "*.responsys.net": [13873], "latingram.my": [2024], "www.sinnfein.ie": [14918], "tfp.cool": [2024], "tools.digitalpoint.com": [4484], "gran-turismo.com": [6872], "s.adroll.com": [590], "jdrk.in": [2024], "newdelhi.usembassy.gov": [22406], "tuleap.udistrital.edu.co": [17195], "shltr.net": [2024], "playfi.sh": [2024], "endpol.io": [2024], "s7.addthis.com": [626], "srco.us": [2024], "i.zooettes.com": [2024], "7s84myi970vl03x965s6q7r029cb25kw4ofgcxv9.ipleak.net": [20571], "s-light.co": [2024], "internetbeta.beeline.kz": [19345], "chinadialogue.net": [3087], "weblog.un.org": [17057], "ico.jobs": [4518], "www.tools4noobs.com": [22235], "ssum.it": [2024], "downloads.openmicroscopy.org": [12052], "boomtra.in": [2024], "rabota.astrobl.ru": [19264], "giveto.mariestopes.org.au": [10000], "www2.jcp.org": [8431], "hepe.com": [7318], "pt.malwarebytes.org": [9941], "www.bayproxy.press": [21524], "owls.oxfordshire.gov.uk": [21327], "23consu.lt": [2024], "taskwarrior.org": [16034], "moneyandmarkets.com": [18281], "lukb.ch": [20683], "duplication.cdbaby.com": [19531], "natpo.st": [2024], "urbanproxy.eu": [22176], "forum.ubuntu.org.cn": [17174], "discuss.atom.io": [1351], "media3.congstar-media.de": [3579], "www.ernw.de": [4942], "my.figva.com": [2024], "www.similarweb.com": [14875], "media-es.almayadeen.net": [19157], "borisoglebsk.startsmile.ru": [21980], "pcani.com.br": [2024], "historia.uniovi.es": [17282], "static-touchdown.cursecdn.com": [3927], "ndia.org": [11087], "onlinebanking.mandtbank.com": [9701], "tco.osu.edu": [11797], "ss.hkuspace.hku.hk": [20387], "*.zacks.com": [18869], "vi.aliexpress.com": [854], "support.brightidea.com": [2347], "auctionbunker.com": [1372], "acym.tk": [2024], "chita.biglion.ru": [19375], "jsh.gd": [2024], "ftx.me": [2024], "pop.pr": [2024], "ical.yc.sg": [2024], "cpoula.in": [2024], "utils.nypost.com": [21213], "idrsolutions.com": [7713], "sommerkunstskolen.jammerbugt.dk": [8517], "ustatik.com": [17534], "bill.sulwer.io": [2024], "stream.cz": [15584], "www.metafetish.com": [10329], "epires.me": [2024], "planete.inrialpes.fr": [8162], "*.osa.org": [12102], "campusspiele.htwk-leipzig.de": [7596], "associates.amazon.co.uk": [19170], "biasreporting.georgetown.edu": [6531], "unref.in": [2024], "www.barracuda.com": [1707], "esdad.com": [2024], "arec.vaes.vt.edu": [17825], "7.wspa.com": [2024], "ine.do": [2024], "www.hosterbox.com": [7529], "zdns.knet.cn": [8757], "l.cuauhtli.info": [2024], "hosts.co.uk": [7551], "transportstyrelsen.se": [16758], "on.hoffarch.com": [2024], "go.smridh.com": [2024], "www.amnesty.fi": [1005], "ivoting.taipei": [20611], "finance.google.com.*": [6821], "jobs.cardiff.gov.uk": [19509], "www.msfn.org": [9804], "www.vouchedfor.co.uk": [17937], "jnj.me": [2024], "hamburg.fau.org": [5543], "on.str3am.cf": [2024], "famigros.migros.ch": [10417], "l.cvbell.com": [2024], "mycard.site": [2024], "static.youcaring.com": [18795], "fanyi.beego.me": [1776], "alexand.us": [2024], "garr.co": [2024], "werden.play-asia.com": [12828], "www.exratione.com": [5461], "ymjc.me": [2024], "jasn.me": [2024], "mm.vh1.com": [2024], "facultydevelopment.stanford.edu": [15448], "bigjocker.com": [1891], "webftp.vas-hosting.cz": [22428], "api.freifunk.net": [6170], "cisco.re": [2024], "www.sylvancompany.com": [15779], "blog.centreon.com": [2965], "anme.uk": [2024], "forum.bittorrent.com": [1974], "www.laravel-news.com": [9168], "track.roiservice.com": [14006], "dww.ipleak.net": [20571], "forums.shutterfly.com": [14814], "terveysportti.net": [16204], "www.wikispaces.asu.edu": [1221], "*.speakychat.com": [15308], "casecurity.ssllabs.com": [14243], "nativeads.site": [2024], "www.gnutls.org": [6745], "www.voucherexpress.co.uk": [7316], "www.muslimpro.com": [10764], "www.fastshare.cz": [5663], "yazm.in": [2024], "cdn-d-vid-public.pornhub.com": [12972], "i.cube-au.com": [2024], "mssv.ly": [2024], "stratford.gov.uk": [22004], "www.oneclickreseller.com": [21253], "www.2ch.hk": [122], "ngvpn04.nvidia.com": [11022], "qd-sol.com": [2024], "*.hwstatic.com": [18138], "gmclerkstlgaccess.hants.gov.uk": [7185], "sc.wustl.edu": [18089], "profil.wp.pl": [18012], "gsto.co": [2024], "planning.lancaster.gov.uk": [20778], "knewone.com": [8956], "www.uptodown.com": [22396], "gehrcke.de": [6492], "firstdedic.ru": [5851], "www.charlottenaturemuseum.org": [3020, 19562], "pajon.es": [2024], "kde.org": [8735], "mediaquestcorp.com": [10195], "imsh.co": [2024], "srv5.bakerlab.org": [1646], "www.planetromeo.com": [12802], "community.akamai.com": [806], "rejo.zenger.nl": [18927], "ww1289.smartadserver.com": [15049], "*.nagra.com": [11051], "wchom.es": [2024], "pardubice.idnes.cz": [20483], "www.huque.com": [7631], "www.hitbtc.com": [7424], "urlquery.net": [22400], "www.cryptopp.com": [3879], "www.researchcompliance.vt.edu": [17825], "liveupdate.symantec.com": [15780], "ss15.sinaimg.cn": [14910], "www.mycanvas.com": [10795], "latimes.com": [9621, 16805], "au.chaucanh.net": [2024], "services.yahoo.co.jp": [18730], "dl.boxcloud.com": [2274], "shiseido.jp": [2024], "everythingfury.com": [3469], "blog.mailchimp.com": [9893], "rosminzdrav.ru": [21674], "www.beaker-project.org": [1756], "123p4.sogoucdn.com": [15169], "datacentrumgids.nl": [4191], "www.vpac.org": [17586], "www.eweka.nl": [5458], "webmail.htwg-konstanz.de": [7104], "tpb.unlockme.site": [22259], "blog.dave.org.uk": [3999], "collegiatepeaksbank.com": [3430], "sk.calameoassets.com": [2749], "m1.ifengimg.com": [20487], "pex.me": [2024], "tem.fi": [16980], "sherloc.unodc.org": [17075], "rizon.net": [13968], "www.opensignal.com": [12010], "nhot.us": [2024], "gocrisp.in": [2024], "syn.ac": [2024], "prs.cgilink.org": [2024], "sc03.alicdn.com": [853], "bmcurol.biomedcentral.com": [1931], "app.cameo.tv": [2024], "myloc.in": [2024], "www.eigen.tuxfamily.org": [22319], "netspi.com": [11245], "l.rzk.jp": [2024], "store.yubico.com": [18835], "marketplace.magento.com": [9868], "www.nickyhager.info": [11428], "hulunbeier.jd.com": [8434], "turkey.thecthulhu.com": [16403], "reg.nso.ru": [21192], "chatenabled.mail.google.com": [6818], "quizo.ro": [2024], "ipho.fi": [2024], "css.welt.de": [18290], "mont-bell.jp": [2024], "www.rki.de": [13970], "notalwaysrelated.com": [21164], "www.galaxus.com": [6385], "plctwittcr.com": [2024], "wosign.com": [18483], "xslt.alexa.com": [843], "hrselfservice.sevenoaks.gov.uk": [14696], "blog.snap-ci.com": [21878], "translations.cacert.org": [2534], "www.spkrb.de": [21937], "m.fanli.com": [5645], "mrr.gr": [2024], "obrazky.o2active.cz": [16140], "passportstatus.state.gov": [17146], "bhrld.co": [2024], "dwarffortresswiki.org": [4807], "auth.robokassa.ru": [13982], "newferre.com": [21121], "releases.ansible.com": [1093], "www.onarbor.com": [11860], "www.postimg.org": [13024], "l1.suprana.com": [2024], "testdata.coremetrics.com": [3665], "mbfair.info": [2024], "www.unian.net": [22369], "volvocars.us": [2024], "betvictor.com": [17757], "gtk-apps.org": [6370], "remote.2kgames.com": [117], "cdn.smartstream.tv": [15064], "export.yandex.com": [18742], "stafftravel.ba.com": [1513], "www.bookboon.com": [2213], "nx.vbrr.ru": [17668], "theamuse.so": [2024], "stylessl.alibaba.com": [857], "adamr.is": [2024], "wpstar.me": [2024], "docs.owncloud.org": [12215], "cashproonline.bankofamerica.com": [1669], "gov.uk": [6344], "e15.xhamsterpremiumpass.com": [18607], "prsntbwy.co": [2024], "www.direct.gov.uk": [4519], "main.lurkmore.so": [9683], "adallom.com": [606], "c-and-a.com": [2510], "portail.bastamag.net": [19325], "search3.openobjects.com": [12053], "cablog.me": [2024], "golinks.ncsu.edu": [11531], "www.villas4you.co.uk": [18579], "on.leosoki.com": [2024], "kbane.ws": [2024], "blog.xen.org": [22648], "axeso5.com": [1499], "clodo.ru": [19620], "www.vinumeris.com": [17810], "www.lcsd.gov.hk": [7067], "b.eth.pw": [2024], "trusu.biz": [2024], "rimonth.ly": [2024], "news.techdirt.com": [16091], "www.dccc.org": [4005], "employment.harvard.edu": [7211], "www.performancewheel.com": [12602], "a320.emulate.su": [5217], "www.xmpp.jp": [18615], "ezeitung.badische-zeitung.de": [1632], "royr.us": [2024], "tknr.me": [2024], "trybooth.com": [22299], "trip30.co": [2024], "gettyimages.be": [6604], "notebook.zoho.com": [18984], "filez.link": [2024], "db.tt": [4763], "payments-parkright.westminster.gov.uk": [18315], "www.inventati.org": [1438], "storebrand.no": [15562], "tros.nl": [16836], "pamdyer.us": [2024], "git.rtems.org": [13532], "link.khevin.com": [2024], "www.ay.gy": [577], "support.google.com": [6818], "wrzru.com": [22624], "go.beert.co": [2024], "static.rottentomatoes.com": [14034], "ssl.pstatic.net": [13234], "hungertoho.pe": [2024], "l.col.lt": [2024], "waimaie.meituan.com": [10248], "fax.org": [2024], "www.ideastorm.com": [7930], "hydra.q1media.com": [13318], "168.airelf.com.tw": [19123], "s365.it": [2024], "spectrum.gettyimages.com": [6604], "privacy-policy.truste.com": [15922], "hwevents.co": [2024], "go.achuro.com": [2024], "*.windriver.com": [18428], "b-t.energy": [2024], "drchat.co": [2024], "appcenter.software-univention.de": [17315], "lien.csf.bc.ca": [2024], "cdn-storage.br.de": [1566], "pda-passport.yandex.com": [18742], "u.guanqun.org": [2024], "static.bitcoinstats.com": [1998], "hiro.pw": [2024], "provider.ogilvy.com": [21233], "blog.bizo.com": [2051], "thumbnail.image.shashinkan.rakuten.co.jp": [13594], "bugs.mojang.com": [9789], "*.hsr.ch": [17326], "git.eigenstate.org": [19972], "www.mediatemple.net": [10177], "www.fs01.androidpit.info": [1052], "www.utopia-ad.org": [22417], "fishtr.hk": [2024], "tvn967.co": [2024], "share.mp": [2024], "opbe.at": [2024], "ss1.bdstatic.com": [19339], "pix.btrll.com": [2339], "www.isleaked.com": [8358], "stavropol.beeline.ru": [1778], "wapbaike.baidu.com": [1641], "rdae.eu": [2024], "txfusa.tv": [2024], "service.gmx.com": [6330], "img01.mall.cmbchina.com": [2639], "www.codetriage.com": [3381], "m.datart.cz": [3998], "phpmyadmin.rom1504.fr": [21668], "world-airport-codes.com": [22617], "www.recsports.osu.edu": [11797], "extranet.lubw.baden-wuerttemberg.de": [19302], "mtr.li": [2024], "dnscrypt.eu": [4053], "demo.sparebank1.no": [21922], "sweb.hku.hk": [20387], "www.faa.gov": [5703], "apollo.unlimitedhost.asia": [17444], "static.7x7-journal.ru": [237], "sfmoma.do": [2024], "*.cleanprint.net": [3227], "s1.mi.com": [10361], "caisse.me": [2024], "spreadshirt.es": [15371], "*.zappos.com": [18889], "www.hpac.nhs.uk": [10953], "www.ipcc.ch": [7793], "www.hiawatha-webserver.org": [7393], "icure.ml": [2024], "scratchcards.williamhill.com": [18407], "www.sharefest.me": [14738], "ari.jozz.xyz": [2024], "mpokec.azet.sk": [1507], "www.rcitravelstore.co.uk": [18579], "txhrt.org": [2024], "services.assetmanagement.hsbc.co.in": [20419], "missionandministry.georgetown.edu": [6531], "www.meet.fm": [10221], "consultations.oxfordshire.gov.uk": [21327], "fortumo.com": [6037], "otvorenesudy.sme.sk": [14198], "kray.link": [2024], "r24823511.sync.app.asana.com": [1265], "aduhm4n9.ml": [2024], "www.tyumedia.ru": [22335], "www.korbit.co.kr": [8995], "vouve.tv": [2024], "ks.sinaimg.cn": [14910], "catalog.ayyo.ru": [19292], "*.clear-link.com": [3229], "coveredca.com": [3728], "*.wiredforchange.com": [14316], "httplab.it": [7593], "josipfranjkovic.com": [20653], "ras-gateway.ncl.ac.uk": [10926], "www.foodler.com": [5982], "a1.hitravel.xyz": [2024], "azbau.ru": [2024], "humanw.in": [2024], "it.xhamster.com": [18606], "videolan.org": [17775], "www.fanpagegeneratorpro.com": [6698], "group.cnblogs.com": [19631], "sesiri.org": [2024], "restricted.westberks.gov.uk": [22564], "shm.ir": [2024], "hacks.mit.edu": [9761], "static.xiaomi.net": [18663], "support.alpnames.com": [919], "kb.vpsfree.cz": [22506], "macw.us": [2024], "iqon.me": [2024], "www.sp.nl": [14216], "ssoa.bl.uk": [2358], "icstars.com": [7925], "jomil.es": [2024], "shoporca.com": [21808], "*.dabs.com": [4096], "www.cheshiremerseysidecsu.nhs.uk": [10953], "support.tenten.vn": [16187], "media4.giphy.com": [6646], "www.congresstmi.org": [5769], "x.evrworld.com": [2024], "mailnull.com": [9895], "s7sps1.scene7.com": [14402], "www.wacken.com": [18036], "eargasmic.me": [2024], "www.spirit.com": [15348], "www.login.bme.hu": [1556], "l.njpc.it": [2024], "sixt.info": [2024], "ahk4.me": [2024], "sbux.co": [2024], "www.pravda-kr.com.ua": [21478], "it.srad.jp": [21956], "tools.its.waikato.ac.nz": [17431], "tescohub.com": [2024], "m.hertsdirect.org": [7334], "www.doi.org": [4067], "adhere.tips": [2024], "public.unit4.com": [22378], "websrv01.kidshealth.org": [8899], "events.berkeley.edu": [17329], "*.furaffinity.net": [6248], "s4.rr.itc.cn": [8401], "trtl.bz": [2024], "blog.xapo.com": [18630], "thinkusc.com": [17365], "3spot.us": [2024], "blog.okturtles.com": [11810], "discover.rsb.ru": [14058], "corp.onlinesbi.com": [11911], "link.arroyo.me": [2024], "icom.live": [2024], "mndlss.biz": [2024], "*.visualrevenue.com": [17871], "www.transformativeworks.org": [16741], "media.business.spectrum.com": [15318], "r24617803.sync.app.asana.com": [1265], "cache1.djoser.nl": [19851], "jsh.oxfordjournals.org": [12222], "www.studifit.htwk-leipzig.de": [7596], "motoring.guide": [2024], "*.vo.msecnd.net": [10715], "www.ruweb.ru": [14104], "sprbl.st": [2024], "mem.keepy.me": [2024], "sinc.ws": [2024], "www.mydigipass.com": [10869], "m.oracle.com": [12116], "docusign.net": [4620], "crcp.it": [2024], "sab.to": [2024], "espndeportes.espn.com": [20024], "static.atv.hu": [422], "staff.uclan.ac.uk": [17392], "verify.givingprograms.com": [6673], "swne.ws": [2024], "sab.tg": [2024], "findyo.ga": [2024], "libraries.io": [9319], "*.bxl.indymedia.org": [8090], "spreadshirt.pl": [15371], "www.lequipe.fr": [20811], "www.aclunc.org": [316], "codeclub.org.uk": [3352], "elance.com": [5129], "hoth.stalkr.net": [15437], "pag.tech": [2024], "mosx.tv": [2024], "assetmanager.api.qbrick.com": [13345], "lancashiremss.yourpensionservice.org.uk": [22693], "www.unifiedtracking.com": [17273], "htqw.co": [2024], "testfamilysafety.bing.com": [1926], "www.suitey.com": [15653], "re-shap.es": [2024], "levoleague.com": [9291], "zh.beego.me": [1776], "img.aws.livestrongcdn.com": [9510], "winswitch.org": [18431], "tgav.in": [2024], "www.srad.jp": [21956], "www.mashape.com": [10053], "indiegam.es": [2024], "www.zahrada.artmama.sme.sk": [14198], "500miles.us": [2024], "forensic.to": [18930], "www.trumba.com": [16849], "static.mediatemple.net": [10177], "*.barnesandnoble.com": [1705], "ctpx.cc": [2024], "dng.li": [2024], "issues.oasis-open.org": [11644], "roger.ucsd.edu": [17012], "www.socialcodedev.com": [15129], "shurk.us": [2024], "l.vtech.fr": [2024], "mnem.co": [2024], "*.adbutler.com": [572], "www.rk37.ru": [13969], "bankiru-smarttv.cdnvideo.ru": [19536], "mxcursos.com": [9828], "localedge.com": [9550], "blogit.ashleymadison.com": [1277], "www.adjug.com": [580], "the-independent-news.com": [8061], "hoag.me": [2024], "tsptry.com": [2024], "songlist.hclippr.com": [7034], "www.remusexhauststore.com": [13825], "graphics.nytimes.com": [11041], "nesl.edu": [10943], "sponsoredprograms.illinois.edu": [17346], "www.tweetadder.com": [16941], "www4.pipni.cz": [12287], "www.esdiscuss.org": [4961], "metrics.geek.com": [18960], "credit.utb.ru": [17538], "www.sbvimprover.com": [14142], "remeslennik.ais.by": [19126], "clda.co": [2024], "etipos.sk": [5375], "jcp.org": [8431], "www.pbproxy.tech": [22174], "www.eecs.umich.edu": [17354], "defn.tv": [2024], "idris-lang.org": [7947], "fcatha.la": [2024], "r.1k.dk": [2024], "tzkn.co": [2024], "ckbe.at": [2024], "blcrft.us": [2024], "task.actis.ru": [19058], "stats.pastebin.ca": [12477], "remote.vuze.com": [17971], "min.gs": [2024], "sports-aba.link": [2024], "www.andaluciapropertyrentals.com": [1039], "minecraftserverlijst.nl": [10453], "223.img.pp.sohu.com.cn": [15170], "www.maketecheasier.com": [9921], "birdag.tocco.ch": [16600], "*.ekomi.co.uk": [4913], "vantiv.com": [17653], "awpftest.tocco.ch": [16600], "webmail.slu.se": [14195], "pcrm.org": [21374], "armenpress.am": [19233], "resellers.trustico.com": [16865], "www.anonymousspeech.com": [1088], "qrsolutions.com": [13331], "pixe.lt": [2024], "www.dgl.cx": [4426], "my.ysu.edu": [18832], "www.cometdocs.com": [3465], "portal.bucknell.edu": [2406], "cars.mail.ru": [9891], "www.ballicom.co.uk": [1654], "www.gototraining.com": [6770], "ciety.com": [3137], "scotseafar.ms": [2024], "frgt.co": [2024], "alh.oxfordjournals.org": [12222], "paxson.me": [2024], "www.ps3crunch.net": [12327], "paid2play.co.vu": [2024], "image1.play-asia.com": [12828], "webmo.to": [2024], "g.rastitkac.net": [2024], "alumni.buffalo.edu": [17382], "hut.li": [2024], "www.jazz.co": [8549], "shopping.nero.com": [11201], "mbsgrp.co": [2024], "www.theadulthub.com": [22142], "nu41nx.tk": [2024], "t.tuki.info": [2024], "interacposcentre.ca": [8234], "lippupalvelu.fi": [16495], "caixadirectaonline.cgd.pt": [2984], "hlmod.ru": [7442], "van-works.jp": [2024], "www.ecodissident.net": [5045], "global.ib-ibi.com": [7678], "smilebox.co": [2024], "codeship.com": [3378], "2sm.pl": [2024], "privacy.f-secure.com": [5533], "dmdi.pl": [2024], "nizhny-novgorod-region.auto.ru": [19276], "ci.numenta.com": [21201], "tomh.co": [2024], "postbank.de": [13007], "inburke.com": [8044], "lifenogg.in": [2024], "admissions.uic.edu": [17321], "event.viu.tv": [22475], "jeze.co": [2024], "mp101.me": [2024], "www.pressfreedomfoundation.org": [6150], "www.wellingborough.gov.uk": [18287], "fa.gl": [2024], "s.melt.bz": [2024], "ysu.edu": [18832], "go.liondesk.com": [2024], "web.de": [18146], "on.wdsu.com": [2024], "lonap.net": [9106], "1nsk.ru": [80], "bodw.info": [2024], "beta.hstor.org": [7591], "openingco.me": [2024], "www.canon.at": [2822], "www.jamadu.ch": [3646], "jy.sk": [2024], "www.netguava.com": [11275], "wad.mg": [2024], "a.247aussie.com": [2024], "erinjo.me": [2024], "trac.inf.mit.bme.hu": [1557], "metooo.io": [10343], "atarnotes.me": [2024], "www.directspace.net": [4513], "wd.sharethis.com": [14730], "cdn-eu-i1.userscontent.net": [17522], "bible.com": [18801], "abr.gov.au": [1408], "m.dxy.com": [19912], "rs.boell.org": [19422], "udistrital.edu.co": [17195], "www.bitnami.com": [2032], "resilientcommunities.govspace.gov.au": [6851], "auth.verizon.com": [17715], "icims.com": [7690], "www.wustl.edu": [18089], "vert.ms": [2024], "yandex.net": [18745], "www.bretagne-web.eu": [2325], "via.ecilia.fr": [2024], "cyberphoto.se": [3954], "*.argusleader.com": [1216], "s.z80.be": [2024], "theexplorercard.com": [16348], "theke.migros.ch": [10417], "go.mcafee.com": [10129], "rdhl.us": [2024], "www.marketplace-used.com": [10027], "www.vkarpinsk.info": [22477], "url.lei.lt": [2024], "too.bz": [2024], "ncsc.nl": [10928], "shagaholic.com": [832], "orel-i-reshka-neizvedannaya-evropa.friday.ru": [20175], "www.easywhois.com": [5023], "www.silverrushstyle.com": [14863], "www.aeea.asso.ulaval.ca": [17319], "login.active24.com": [19061], "crdi.co": [2024], "sg.anz.com": [374], "podaac-www.jpl.nasa.gov": [10909], "www.benefits.caltech.edu": [2771], "wetransfer.com": [18124], "assets.democracynow.org": [4336], "www.igtt.hscic.gov.uk": [20435], "robb.biz": [2024], "edge.avangate.net": [1464], "wpku.be": [2024], "app-d.hskampus.de": [7588], "bestofferbuy.com": [1836], "threadingbuildingblocks.org": [16465], "bqknews.com": [2024], "mine4su.re": [2024], "www.appdevelopermagazine.com": [1142], "devscape01.x5.ru": [18590], "moment.douban.com": [4701], "pafurl.com": [2024], "holderdeord.no": [7457], "bm.sarras.net": [2024], "live.bittorrent.com": [1974], "kbia.fm": [2024], "trialpay.com": [16798], "linuxpl.com": [9448], "luxhv.com": [9685], "meltwaternews.com": [10261], "ibm.com": [7679], "fls-na.amazon.ca": [19167], "thesmokers.club": [2024], "g1.hitravel.xyz": [2024], "shop.epsilon-telecom.de": [5317], "www.airtop-pc.com": [800], "www.lipreading.org": [9455], "www.thefrozenfire.com": [16405], "s.willo.ws": [2024], "1838.co": [2024], "alfresco.ual.es": [17162], "mediaus.topshop.com": [22238], "www.bloomberg.com": [2133], "flab.be": [2024], "hyperlu.sh": [2024], "www.vt.edu": [17825], "bitterman.me": [2024], "walthamforest.gov.uk": [18061], "www.ldpreload.com": [9200], "s.sjks.us": [2024], "www.smileexperts.osu.edu": [11797], "hkwallet-fe.price.com.hk": [13095], "itunes.apple.com": [1151], "ssca.pe": [2024], "www.cleanenergyexperts.com": [3225], "*.necuhb.org": [11170], "a--t.co": [2024], "acs.utb.ru": [17538], "proj-lti.web.cern.ch": [2588], "5222t.net": [2024], "amsweb.ams.org": [367], "explainxkcd.com": [5497], "c.egeka.nl": [2024], "huna.citrix.unicef.org": [17069], "tagilka.ru": [22087], "s.vinals.me": [2024], "y1ne.ws": [2024], "www.srv2020real.com": [21958], "bk101.net": [2024], "leaptp.tk": [2024], "bmc.co": [2024], "factory.pixiv.net": [12778], "www.guidestar.org": [6989], "www.mozdev.org": [10687], "online3.drweb.com": [4776], "naper.cc": [2024], "*.signals.com": [14844], "brmlab.cz": [2362], "l.rfsk.org.uk": [2024], "gyazo.com": [7019], "abo.tagesanzeiger.ch": [15973], "pue.zus.pl": [18863], "laser.unizar.es": [17441], "amnistia.org.mx": [1021], "rspcansw.org": [2024], "b.alethos.com": [2024], "*.sharpspring.com": [14745], "observatory.leeds.gov.uk": [20799], "blog.tape.tv": [16019], "www.clockers.at": [12196], "www.digiguide.tv": [19835], "na.decdna.net": [4269], "rd.gt": [2024], "pic-google.com": [2024], "binbank.ru": [1922], "rrtjournal.biomedcentral.com": [1931], "tokyotosho.se": [16612], "researchintegrityjournal.biomedcentral.com": [1931], "profile.federalreserve.org": [5707], "www.glot.io": [20269], "content.shaklee.com": [14715], "hofstra.edu": [7452], "i.diarioip.com": [2024], "chibas.co": [2024], "rufus.li": [2024], "www.cbfisap.ed.gov": [4881], "clkk.me": [2024], "phobos.play-asia.com": [12828], "sign.boell.de": [2192], "aktrack.pubmatic.com": [13241], "trevo.us": [2024], "pay.waverly.gov.uk": [22538], "login.schmidtcom.de": [14419], "cmtele.com": [2024], "orgcitad.in": [2024], "downloads.videolan.org": [17775], "shop.newsmax.com": [11383], "horns.by": [2024], "www.meetme.com": [10224], "22t.be": [2024], "noginsk.biglion.ru": [19375], "siz.ch": [21843], "petit.link": [2024], "www.kapital.kz": [20685], "www.open.hpi.de": [7082], "secure.asufoundation.org": [1220], "optum.com": [21288], "image-assets.stackcommerce.com": [15426], "edu.tiki.org": [16520], "go.labproy.com": [2024], "rbopl.nl": [2024], "www.findlegalforms.com": [5822], "joykazino.com": [20654], "iqt.org": [8029], "q.irhh.de": [2024], "u.techware.me": [2024], "s9.postimg.io": [13024], "grtlink.com": [2024], "elt2.co.uk": [2024], "www.escrowlive.net": [5344], "www.avenirclimatique.org": [1472], "www.christ-swiss.ch": [3647], "delivery.support.theplatform.com": [16308], "mapquestapi.com": [9979], "andr.as": [2024], "swordfishdc.com": [15769], "l.scalepods.io": [2024], "images.wondershare.com": [22608], "kf-x.com": [2024], "worldlandscapearchitect.com": [18547], "a.ezero.mx": [2024], "blogs.msdn.com": [10396], "go.jreb.me": [2024], "*.ea.com": [5141], "iotmed.us": [2024], "uk.usembassy.gov": [22406], "red.ht": [2024], "cfaith.us": [2024], "*.hrcdn.net": [7130], "www.cloudproven.net": [3299], "hanyuanguan.jd.com": [8434], "s109.cnzz.com": [3328], "planapp.tue.nl": [15940], "fla-men.co": [2024], "www.simlystore.com": [14877], "nwf.org": [11126], "careers.lloydsbankinggroup.com": [20859], "www.seravo.fi": [14656], "help.vodafone.co.nz": [17899], "catsbway.co": [2024], "bb.rakboy.com": [2024], "www.akismet.com": [811], "media.debconf.org": [4257], "ianmart.in": [2024], "static.weibopay.com": [18280], "www.highseer.com": [7406], "thereit.is": [2024], "www.abicko.cz": [2088], "sysnews.ncsu.edu": [11531], "admhetta.yanao.ru": [22665], "diasporabr.com.br": [4436], "blog.httpwatch.com": [7102], "recrw.pl": [2024], "nginx.nieman.de": [21139], "*.lokus.se": [9578], "openlinksys.info": [11986], "developer.mediamath.com": [10169], "weixin110.qq.com": [13329], "fisync.dwolla.com": [4809], "pnp.ru": [21444], "go.roszczyk.net": [2024], "buildd.debian.org": [4263], "crim.sledcom.ru": [21858], "www.ethics.uillinois.edu": [17034], "mathematics.stanford.edu": [15449], "pan.baidu.com": [1641], "thephone.coop": [16418], "by.ciemades.org": [2024], "vendetta-online.com": [17693], "bjsw.oxfordjournals.org": [12222], "go.win32.io": [2024], "logon.aastocks.com": [19037], "dcult.net": [2024], "www.hoverwatch.com": [20414], "www.filmon.com": [5797], "tinder.pt": [2024], "powerlane.co": [2024], "opal.com.au": [11940], "www.lead-analytics-1000.com": [20792], "ox-i.overdrive.com": [12192], "crux.bz": [2024], "www.new.to.ourlocality.org": [12177], "www.bitaddress.org": [1980], "spanish.ecuador.usembassy.gov": [22406], "aphrodite.krystal.co.uk": [9037], "education.ie": [19958], "www.hazing.cornell.edu": [3676], "internet.beeline.kz": [19345], "support.contentful.com": [3616], "nikcub.com": [11438], "onenet.vodafone.pt": [17903], "gnome.org": [6334], "mordovia.tpprf.ru": [22260], "mbr.nlm.nih.gov": [11090], "fxphd.com": [6269], "publish.indymedia.org": [8090], "kb8ojh.net": [8844], "mais.uol.com.br": [17079], "www.brighttalk.com": [2340], "dornsifecms.usc.edu": [17366], "s.beij.in": [2024], "cdn.photosynth.net": [12680], "myus.com": [10838], "www.kiwicon.org": [8942], "anwiki.com": [19210], "cdn3.sportxx.ch": [15362], "mashape.com": [10053], "notefly.org": [11559], "e-filatelia.poste.it": [13013], "www.pokemon-world-online.net": [12900], "dengisend.ru": [4344], "notepad-plus-plus.org": [11564], "mobile.dhl.de": [4025], "purple.cm": [2024], "mrsl.co": [2024], "fed.cafe": [2024], "radi.co": [2024], "www.podupti.me": [12884], "artsci.inl.gov": [20537], "ince.co": [2024], "techfet.ch": [2024], "act-on.com": [19054], "gzero.tv": [2024], "adeccowaytowork.com": [633], "cod.worldcat.org": [18536], "mediate.com": [10196], "video24.0xdb.org": [10], "ducs.net-entreprises.fr": [21107], "www.virtualqube.com": [17835], "cdn.bayan.ir": [1729], "www.scrambl3.com": [14465], "imja.me": [2024], "r.nirs.us": [2024], "vespermarine.co.nz": [17738], "strava.com": [15581], "esdal.dft.gov.uk": [19825], "www.hastrk1.com": [7226], "michaelsl.net": [2024], "pear.oops.org": [11933], "st.jakuta.biz": [2024], "wed.is": [18267], "catholicstudies.georgetown.edu": [6531], "www.jobzonen.dk": [8618], "admdeptarif.49gov.ru": [187], "partnerlocator.symantec.com": [15780], "tnsn.de": [2024], "nrrr.us": [2024], "www.adcap.biz": [573], "community.conviva.com": [3633], "prisonphonejustice.org": [13126], "zohocorp.com": [18985], "knry.us": [2024], "www.senat.edu.pl": [14635], "refugees.jp": [2024], "www.pizzaportal.pl": [21428], "files.list.co.uk": [16273], "c.tutti.ch": [22317], "a2.lc": [2024], "www.pirate-proxy.info": [22174], "diegocm.com": [2024], "docs.duckduckhack.com": [19903], "www.in-tend.co.uk": [20516], "ftom.co": [2024], "help.getadblock.com": [571], "phpa.me": [2024], "www.calazan.com": [2750], "policing.oxfordjournals.org": [12222], "platform.vine.co": [17807], "cdn-chat.sstatic.net": [15424], "fwre.co": [2024], "mietek.io": [10410], "zd.net": [2024], "cdn.cdtoimge.com": [3917], "123p3.sogoucdn.com": [15169], "a.domai.nr": [2024], "shopmania.es": [14778], "pheedo.com": [12648], "prov.ly": [2024], "csp-reports.tocco.ch": [16600], "kvalitet.difi.no": [4452], "goooo.cf": [2024], "creative-award.yahoo.co.jp": [18730], "www.transactauto.com": [16735], "lithive.com": [9468], "diff3.smartadserver.com": [15049], "posta.ch": [12996], "freifunk-rheinland.net": [20171], "stats.webplatform.org": [18176], "wmd.so": [2024], "hnds.hk": [2024], "www.fluxx.io": [5938], "lab.to": [2024], "www.geekdad.com": [20218], "redgage.me": [2024], "secure.gq.com": [6356], "on.ifgf.to": [2024], "cu2.uicdn.net": [17032], "ote.gr": [12164], "*.alz.org": [949], "lasvegas.hertzequip.com": [7371], "www.egotasticallstars.com": [5104], "www.eatsa.com": [19944], "x1.play-asia.com": [12828], "fmworld.net": [6223], "img2.gtimg.com": [6975], "kikomila.no": [2024], "saud.ws": [2024], "scr.bi": [2024], "vand.so": [2024], "www.portlandoregon.gov": [3197], "equityhealthj.biomedcentral.com": [1931], "gsx.apple.com": [1151], "ecops.org.uk": [19951], "www.mdosche.de": [10144], "korny.me": [2024], "www.macports.org": [9836], "www.thecreatorsproject.com": [16339], "careers.asa.org.uk": [19245], "mail.mkb.ru": [10512], "radio.bede.tfm.ro": [22135], "m6.baidu.com": [1641], "psynrgy.us": [2024], "rsstest.tocco.ch": [16600], "rdv.im": [2024], "statewatch.org": [15489], "l.pets-wd.com": [2024], "vine.co": [17807], "join.boozedgfs.com": [13086], "gaborszathmari.me": [6379], "www.thestandnews.com": [16315], "m.v.qq.com": [13328], "*.hrusecky.net": [10372], "www.dom.bg": [4638], "groupon.com.br": [6952], "visa.com": [17846], "www.thebuddyforum.com": [2250], "smtpauth.infradead.org": [8135], "there.al": [2024], "archive.wired.com": [18454], "hertz247.is": [7348], "ib.swedbank.nl": [15745], "www.net.cn": [21108], "bfps.co": [2024], "crowdflare.it": [2024], "wikis.mit.edu": [9763], "*.atrativa.com.br": [1358], "lynda.georgetown.edu": [6531], "srmn.co": [2024], "www.blocket.com": [2108], "www.vocab.com": [22484], "bme.hu": [1556], "www.osdir.com": [11706], "admissions.rotherham.gov.uk": [14032], "binsearch.net": [1918], "whi.ch": [2024], "www.magicalbutter.com.au": [9875], "discovery.refeds.org": [13472], "pcp.oxfordjournals.org": [12222], "webdesk.1and1.com": [69], "*.alumniconnections.com": [945], "www.icp.uni-stuttgart.de": [17260], "paxum.com": [21361], "dmnd.ga": [2024], "hvb.de": [7654], "gpg4usb.cpunk.de": [3743], "seba-geek.de": [15199], "www.zerocater.com": [18941], "studentaffairs.stanford.edu": [15448], "qcvert.com": [2024], "www.verdadmedia.com": [17707], "info.ebayclassifieds.com": [19945], "trusted-introducer.org": [16857], "noevil.co": [2024], "write.nu": [2024], "www.checkbox.com": [19568], "blogs.nlnetlabs.nl": [10980], "david-campbell.org": [4212], "market.bigmir.net": [1894], "tlrd.us": [2024], "pcgns.tk": [2024], "mcp.anchor.com.au": [1036], "kenbuck.co": [2024], "rfq.alibaba.com": [857], "*.d4designstudios.com": [3991], "listas.trisquel.info": [16827], "enrr.mx": [2024], "x-pay.cc": [22640], "msds.ornl.gov": [11730], "blog.kaspersky.com": [8820], "www.publish2.me": [21536], "msds.open.ac.uk": [11947], "sorry.google.com": [6830], "imba.illinois.edu": [17346], "klm.com": [8754], "www.webforest.eu": [18197], "rbinvestwdc.eu": [13460], "efsm.bristol.gov.uk": [19451], "kinox.nu": [20720], "akamai.kaltura.com": [8790], "konto.t-mobilebankowe.pl": [22076], "doza.it": [2024], "pmk.khabkrai.ru": [20709], "kamyshin.tpprf.ru": [22260], "media.ldscdn.org": [16293], "lanq.co": [2024], "www.researchblogging.org": [13852], "6joycasino.com": [20654], "js.intercomcdn.com": [8242], "s3g.info": [2024], "itella.fi": [20601], "gohugo.io": [20281], "uclearning.ucsd.edu": [17012], "www.3taps.com": [177], "kxan.tv": [2024], "achin.gr": [2024], "ep2.vzp.cz": [17611], "ssp.life": [2024], "splash.riverbed.com": [13964], "mth.link": [2024], "exportingisgreat.gov.uk": [20054], "www.defenceandsecurity.ca": [2526], "g.marcgarcia.es": [2024], "status.silktide.com": [14859], "etrtbs3.smartstream.tv": [15064], "www.mvi.baden-wuerttemberg.de": [19302], "campuslabs.com": [2800], "static.lpgenerator.ru": [20879], "compte.nextinpact.com": [10945], "trk.names.co.uk": [11064], "bram.se": [2024], "kimt.us": [2024], "csl.stanford.edu": [15447], "audiencetargeting.com": [1383], "play.yandex.com.tr": [18740], "international.berkeley.edu": [17329], "4sun.es": [2024], "pdl8.co": [2024], "m.mutualofamerica.com": [10777], "healthtap.com": [7256], "cdn.print.io": [13114], "source-elements.com": [15237], "ldlw.me": [2024], "simplybusiness.co.uk": [14897], "ch.avm.de": [1478], "on.mlmbe.at": [2024], "go.mbasra.com": [2024], "www.diasp.de": [4433], "s04.de": [2024], "erickra.us": [2024], "accgov.com": [2024], "psiphon.ca": [21529], "onlinebusinessplus.vancity.com": [17643], "www.alumni.nottingham.ac.uk": [11567], "s.bsd.net": [1569], "3ds.vtb24.ru": [22512], "chat.adults.men": [2024], "ece.illinois.edu": [17346], "answers.com": [1096], "s.byeto.jp": [2024], "st.dcm-ich.jp": [2024], "media.kitsu.io": [8938], "store.invensense.com": [8306], "www.arewewebextensionsyet.com": [19228], "dmak.us": [2024], "s.aug.tw": [2024], "connect.brunel.ac.uk": [19459], "lippu.fi": [9454], "errors.ubuntu.com": [17183], "www.chromium.org": [3124], "www.umich.edu": [17354], "login.hdvlink.com": [20359], "www.openweb.or.kr": [12059], "lnk.dudas.in": [2024], "www.odmenazadobiti.cz": [16141], "theapex.link": [2024], "htcmaraphon.grape.ru": [20303], "www.aaai.org": [274], "exercise.com": [20049], "veloviewer.com": [17688], "sends.ms": [2024], "mcdonalds.ru": [20941], "roye.la": [2024], "big12.us": [2024], "www.tribalfusion.com": [16799], "somo.nu": [2024], "ja.foursquare.com": [6061], "www.splone.com": [15354], "s11.postimg.org": [13024], "mog.com": [9788], "langzijn.com": [2024], "sinsun.it": [2024], "oktd.kent.gov.uk": [8867], "zhivie.friday.ru": [20175], "support.maxcdn.com": [10102], "api.microsofttranslator.com": [10402], "go.r0x.fr": [2024], "www.bigfile.to": [19373], "rickb.ws": [2024], "chp.decc.gov.uk": [19795], "*.brightcove.com": [2345], "l.swissrail.com": [2024], "turisticke-znamky.cz": [22312], "data.alibaba.com": [857], "www.orderstatus.earthlink.net": [4997], "nrc-cnrc.gc.ca": [11096], "secure.stage-gettyimages.es": [6604], "www.nydailynews.com": [11028], "duno.co": [2024], "www.hackademix.net": [7128], "employeeexpress.gov": [5209], "stats.ft.com": [5810], "1prime.ru": [83], "s4.qhimg.com": [13347], "git22.rostrud.ru": [21677], "jffc.us": [2024], "turn.appear.in": [1145], "lnk.demb.com": [2024], "pcoa.ch": [2024], "alojamiento.unizar.es": [17441], "static.leboncoin.fr": [20796], "bny.mn": [2024], "kms.te-st.ru": [22103], "analytics.yandex.by": [18739], "b.ptrlvn.us": [2024], "fotp.in": [2024], "www.get.no": [20237], "discosoupe.org": [4528], "weechat.org": [18268], "logs1.smithsonian.museum": [15072], "rxpharmacyusa.com": [14107], "grant.expo2020dubai.ae": [5502], "www.fruitninja.com": [6214], "www.palmcoastdata.com": [12374], "r.fpsnews.net": [2024], "acm.wustl.edu": [18089], "stat.openbank.ru": [21267], "www.enterbrain.co.jp": [20003], "www.keenetic.net": [20701], "affiliate.abftracker.com": [474], "ondemand.duke.edu": [4791], "ascendapp.com": [1268], "api.mall.sk": [9934], "nizhniy-novgorod.beeline.ru": [1778], "www.mobiusconsortium.org": [9784], "odmate.kr": [2024], "c.haq.de": [2024], "europeana.eu": [20036], "www.superguarantee.com": [15678], "gic7.mycdn.me": [10866], "sdcoop.jd.com": [8434], "careers.adelphi.de": [635], "*.yellowpages.ca": [18763], "www.minedu.sk": [15037], "innv.at": [2024], "hongkongfp.com": [20403], "bgcworld.today": [2024], "elliptictech.com": [5164], "acm.org": [317, 318], "p.tharroshk.com": [2024], "quickline.ch": [21566], "uat.imercer.com": [20502], "beta.paradoxplaza.com": [12414], "uprise.link": [2024], "rca.buzz": [2024], "nue.ag": [2024], "buyric.co": [2024], "flameeyes.eu": [5880], "sbx.cm": [2024], "go.qbeats.com": [2024], "42h.it": [2024], "*.avangate.com": [1464], "alexb.be": [2024], "haas.org": [2024], "www.laaclu.org": [300], "lojasadelia.co": [2024], "youtube.com.es": [18800], "cm.be": [3114], "tsqr.co": [2024], "portforward.com": [12977], "shared.gmocloud.com": [6323], "static-noxia.cursecdn.com": [3927], "url.jwzhang.com": [2024], "p.vanroeijen.nl": [2024], "www.scribblelive.com": [14473], "farsi.alarabiya.net": [19131], "cdn.zuhah.com": [19020], "stvp.stanford.edu": [15448], "youtube.com.ee": [18800], "kwiksurveys.com": [9062], "youtube.com.eg": [18800], "weheartit.com": [18115], "*.eservices.montpellier3m.fr": [10609], "sosnovoborsk.startsmile.ru": [21980], "share.discoverhongkong.com": [19847], "bcs.91.com": [246], "uif.unizar.es": [17441], "cultureme.sh": [2024], "opensource.cse.ohio-state.edu": [11798], "mail.sumologic.com": [15658], "zocdoc.me": [2024], "facilities.ucsd.edu": [17012], "www.salesmedia.pl": [21720], "iice.co": [2024], "dg53.mycdn.me": [10866], "tnl.su": [2024], "ju.st": [2024], "appsconnect.oracle.com": [12116], "payments.camden.gov.uk": [2785], "b3.aztravel.xyz": [2024], "publicaccess.chichester.gov.uk": [19579], "fastweb.com": [5678], "s.itoen.co.jp": [2024], "srvt.co": [2024], "www.sbc.empireblue.com": [19988], "agent.mcafee.com": [10129], "portal.distil.it": [4561], "returnpath.net": [13891], "secure.lesbianpornfan.com": [20812], "s29.pixxxels.org": [21427], "www.youtube.sn": [18800], "www.pijnacker-nootdorp.nl": [11172], "glrv.ws": [2024], "api-gateway.readcube.com": [13666], "jenkins.gnupg.org": [6744], "pims.dongenergy.dk": [4068], "portal5.hku.hk": [20387], "ultrabug.fr": [17222], "www.judicialwatch.org": [8677], "develop.thegreatcoursesplus.com": [16360], "brgdf.co": [2024], "ech.pub": [2024], "securosis.com": [14597], "webtrends.com": [18264], "t.bwrs.co": [2024], "et.nytimes.com": [11041], "info64.top": [2024], "prelove.ly": [2024], "host.ie": [4500], "testweb.derby.gov.uk": [4367], "www.eigenlab.org": [19971], "*.berlin-airport.de": [1820], "masak.in": [2024], "prsup.io": [2024], "peremena.openbank.ru": [21267], "chulym.startsmile.ru": [21980], "lists.volatilesystems.com": [17912], "aaau.org": [19035], "lrnja.net": [2024], "*.akcje.home.pl": [7475], "webcontrolcenter.com": [18208], "everysi.de": [2024], "secure.kettering.gov.uk": [8877], "bearded.link": [2024], "app.jobvite.com": [8616], "ethics.uillinois.edu": [17034], "my.covad.com": [3722], "msu.edu": [21040], "clarity.link": [2024], "trf.fit": [2024], "media.mobyhub.com": [10543], "w01.my-files.de": [10787], "www.pop6.com": [12948], "*.tweakimg.net": [16939], "gds.bz": [2024], "hugoc.at": [2024], "logo.ui-portal.de": [17026], "lab.lugons.org": [9121], "videoassets.porndig.com": [21464], "phin.in": [2024], "www.zdv.uni-tuebingen.de": [17429], "testobb.ppby.de": [12740], "wrdm.ag": [2024], "init.sh": [20534], "rcm.amazon.com": [960], "s4.sinaimg.cn": [14910], "on.mylesnm.com": [2024], "gateway.lsc.gov.uk": [20881], "participer.framasoft.org": [6075], "bjp9ld6sx8r174ssm0h9va4do4hiiezi4ruywhxy.ipleak.net": [20571], "coralsprin.gs": [2024], "kobo.to": [2024], "pinz.co": [2024], "bit.ccswim.net": [2024], "qres.me": [2024], "ly.hr-d.in": [2024], "bpfr.at": [2024], "www10.informe.org": [8118], "www.sportisimo.cz": [14223], "marketplace.zanox.com": [18885], "fxperts.ca": [2024], "git66.rostrud.ru": [21677], "www.recycleforsurrey.org.uk": [21613], "www.bananian.org": [1660], "redsk.in": [2024], "*.spd.de": [15269], "www.sade.com": [14282], "easy-hebergement.fr": [5024], "pr.computerworld.ch": [3544], "www.brew.sh": [19447], "nova.rambler.ru": [13600], "chic.kn": [2024], "cp.maxcdn.com": [10102], "whatson.tameside.gov.uk": [22095], "www.cbcrypt.org": [2536], "static.rbl.ms": [13652], "pacev.co": [2024], "design.sharethrough.com": [14742], "journalistforbundet.dk": [8660], "pinggu.jd.com": [8434], "passets-ak.pinterest.com": [12731], "koba.lt": [2024], "danvr.1688.com": [51], "data.gov.au": [4173], "forum.linode.com": [9401], "cyber.law.harvard.edu": [7211], "*.ul.ie": [17053], "www.hydrogen.energy.gov": [5243], "nileshgr.com": [11446], "expert.axonify.com": [1502], "srlnk.co": [2024], "brandhk.gov.hk": [19442], "filmaffinity.com": [20095], "cfr.org": [3702], "ejecteject.com": [2024], "viddler.com": [17769], "blakec.me": [2024], "i2.gallery.technet.microsoft.com": [10396], "oculu.com": [11758], "solicitor-concierge.com": [15186], "saat.yandex.com.tr": [18740], "business.verizon.net": [22441], "data.bl.uk": [2358], "plntxprs.com": [2024], "www.whitelabel.net": [18350], "onstp.net": [2024], "deepl.ink": [2024], "monoclem.ag": [2024], "torproject.org": [16647], "yka.be": [2024], "blog.0xbadc0de.be": [9], "nhn.com": [10949], "*.vxcdn.com": [17714], "cs3.myzuka.fm": [21079], "book.qidian.com": [13349], "qwi.ki": [2024], "zlin.idnes.cz": [20483], "go.ryanjose.com": [2024], "n4.chaucanh.net": [2024], "nvijournal.biomedcentral.com": [1931], "*.chitika.com": [3095], "www.ucl.ac.uk": [17380], "w4j.net": [2024], "support.vodafone.ie": [17902], "jpberlin.de": [8458], "go.forks.tokyo": [2024], "www.skhynix.com": [14189], "cme.mitre.org": [10497], "support.office.com": [11780], "tgilinks.com": [2024], "creatives.sascdn.com": [15049], "support.imodules.com": [7766], "mbeds.audioboom.com": [19272], "ntp.niehs.nih.gov": [11090], "assets.wwf.ch": [18028], "biotronicslab.osu.edu": [11797], "rbwm-consult.objective.co.uk": [21225], "mastercard.com": [10060], "medicalxpress.com": [10200], "s.cfbolz.de": [2024], "svnweb.mageia.org": [9865], "devs.mailchimp.com": [9893], "wush.co": [2024], "*.sandsmedia.com": [14273], "bugs.frugalware.org": [6213], "my.flightradar24.com": [20119], "wifiwx.com": [18378], "redmine.karelia.pro": [20687], "gfx.fel.one": [2024], "fishshell.com": [5864], "partner.tageswoche.ch": [15972], "lists.manjaro.org": [9966], "www.maam.ru": [20901], "www.jenkins-ci.org": [8565], "security.webmoney.ru": [18173], "teachstart.co": [2024], "shop.fsf.org": [5590], "*.hrep.nhmrc.gov.au": [7610], "zw1.co": [2024], "cache0.bigcartel.com": [1878], "www.meteorhacks.com": [10340], "manage.sencha.com": [14637], "fatpacket.me": [2024], "socialreader.com": [15132], "mail.ipchicken.com": [20567], "www.mturk.com": [9819], "activities.aliexpress.com": [19140], "trlov.com": [2024], "aplikace.skolaonline.cz": [21852], "on.digy.co": [2024], "rmbl.co": [2024], "www.logancij.com": [9562], "thnk.cc": [2024], "koste.es": [2024], "rdpt.ga": [2024], "strato-mailcenter.com": [14256], "www.gaminatorslots.com": [6427], "www.gatewaytohomechoice.org.uk": [20208], "openarchives.org": [12033], "www.performancealley.com": [12601], "audio-video.sv.gnu.org": [6337], "919.am": [2024], "www.directbox.at": [4517], "www.smart.ly": [15051], "secure.longtailvideo.com": [9601], "gemeenteberkelland.nl": [11172], "jenkins.x2go.org": [18589], "www.alumni.state.gov": [17146], "www.pay4bugs.com": [12499], "hmnds.io": [2024], "zh.uptimeinstitute.com": [22393], "www.platinumskincare.com": [12824], "open.t.qq.com": [13329], "vxm.cc": [2024], "api.fixer.io": [5877], "eeeeeats.it": [2024], "www.siliconera.com": [14854], "vxm.co": [2024], "dalio.justgive.org": [8709], "wn1.link": [2024], "www.cgran.org": [2605], "share.here.com": [7325], "webmail.hispeed.ch": [22386], "idsync.rlcdn.com": [13494], "netmediaeurope.co.uk": [11238], "srvl.co": [2024], "tosdr.org": [16597], "murf.co": [2024], "*.image-qoo10.cn": [13358], "miy-us.djicdn.com": [4029], "s.drawncon.com": [2024], "holoscripter.org": [7468], "socialnews.rakuten.co.jp": [13594], "www.teapartypatriots.org": [16056], "amyne.ws": [2024], "accreditation.usc.edu": [17366], "www.ndcls.ox.ac.uk": [17359], "www.snapnames.com": [8880], "thepiratebay.gs": [22175], "blog.pressdisplay.com": [2144], "tygr.me": [2024], "i.kissmetrics.com": [8745], "www.hertzrent2buy.fr": [7344], "paymium.com": [12512], "smarthead.ru": [21867], "music.ohiolink.edu": [11799], "tcare.co": [2024], "*.opc.gov.au": [11786], "b4tc.us": [2024], "theknot.justgive.org": [8709], "blogs.halowaypoint.com": [7165], "ox4.li": [21322], "www.zoho.com": [18984], "partnerdirect.dell.com": [4317], "agenpremium.com": [19108], "www.gpfi.org": [6347], "www.mixi.co.jp": [10505], "noip.co": [2024], "alternativeto-blog.disqus.com": [4559], "yourworld.anz.com": [374], "jobs.zentralbahn.ch": [22715], "unesco-ihe.worldcat.org": [18536], "2.poppap.com": [2024], "e.ligatus.com": [9356], "images.yemeksepetim.com": [18767], "raphaelhertzog.com": [13612], "linkbucks.com": [9392], "pccasegear.com": [12251], "secure2.segpay.com": [14618], "www.sslshopper.com": [14245], "nigeria.usembassy.gov": [22406], "go.smashfly.com": [15066], "ripe71.ripe.net": [13953], "municode.com": [10742], "dykesa.me": [2024], "savegaelic.com": [2024], "askubuntu.com": [15424], "www.tokyo2020.jp": [22230], "www.database.com": [4186], "crate.us": [2024], "go.r33d.me": [2024], "mxys.tk": [2024], "frtv.eu": [2024], "www.earthlink.net": [4997], "www.stubhub.com": [15602], "static.btcc.com": [2400], "www.click-sec.com": [3242], "*.cc.com": [2546], "beta.rhb.ch": [13914], "www.openbittorrent.com": [11959], "ocsp.kr.cdnetworks.com": [2574], "uneasy.in": [2024], "feed.issuu.com": [8392], "www.ordercourses.com": [2946], "prmtiv.es": [2024], "my.rethink.org": [21637], "www.hsbc.com.bd": [20424], "b96.yahoo.co.jp": [18730], "schl.asia": [2024], "movie4k.pe": [10675], "www-ne.ucsd.edu": [17012], "venturebeat.com": [17700], "opendata.bristol.gov.uk": [19451], "blog.vpsfree.cz": [22506], "jloving.info": [2024], "lcbo.me": [2024], "xenvps.com": [18648], "a.mefi.be": [2024], "itmb.in": [2024], "clubabonnes.ladepeche.fr": [9128], "ttgt.co": [2024], "sochi.fbk.info": [5691], "jybd.co": [2024], "aquent.com": [1176], "cdn-img.easyicon.net": [19942], "on.elemb.ee": [2024], "*.justiceinspectorates.gov.uk": [3794], "belleclive.co": [2024], "1e3.us": [2024], "s5.addthis.com": [626], "verseone.vocoll.com": [22486], "www.consultwebs.com": [3597], "www.resiprocate.org": [13658], "icesjms.oxfordjournals.org": [12222], "mods.factorio.com": [20068], "*.list-manage.com": [9460], "ghd.georgetown.edu": [6531], "mynewflag.com": [11346], "nibguy.uk": [2024], "ohpop.me": [2024], "r24625312.sync.app.asana.com": [1265], "404ts.com": [2024], "atlas.centrum.cz": [19547], "gvnblk.com": [2024], "tcrl.engineering.osu.edu": [11797], "edge.ldscdn.org": [16293], "zht.alipay.com": [864], "isocpp.org": [7833], "to.ambrossa.ru": [2024], "api.dnschain.net": [4052], "branchable.com": [2295], "www.weedtraqr.com": [18271], "becker.wustl.edu": [18089], "tapiture.com": [16021], "www.cryptoparty.org": [3877], "laup.nu": [9183], "smeshariki.friday.ru": [20175], "hulaw.co": [2024], "www.lunarline.com": [9680], "flt1.us": [2024], "www.kd2.us": [8731], "s.tkool.info": [2024], "iceoblog.mit.edu": [9761], "ww651.smartadserver.com": [15049], "new.karusel-tv.ru": [20690], "netgate.com": [11272], "youwin.by": [2024], "www.videolicious.com": [17783], "certivox.com": [2974], "www.slant.co": [21856], "4.sisap.cat": [2024], "authcode.jd.com": [8435], "neos.io": [11196], "www.cimbclicks.com.sg": [2619], "solarmovie.is": [15181], "www.bikeji.com": [1900], "click.aokhi.com": [2024], "neooffice.org": [11190], "auth.giantbomb.com": [6620], "www.help.perle.com": [12607], "platon.unizar.es": [17441], "ru.boell.org": [19422], "s4.gismeteo.md": [20251], "link.mos.rocks": [2024], "pxlgfx.de": [2024], "www.jobsat.g4s.com": [20195], "petri.com": [12627], "slisystems.com": [14192], "www.mito.hu": [10496], "go.grit.space": [2024], "www.threadingbuildingblocks.org": [16465], "publisher.weboolu.com": [18230], "libs.coop.ch": [3647], "fast.fonts.com": [5972], "www.yammer.com": [18738], "openingscience.org": [12068], "kronos.calacademy.org": [2746], "help.blogger.com": [2122], "node3.bbcimg.co.uk": [19333], "s1.gismeteo.md": [20251], "ems.sheffield.gov.uk": [14755], "ilha.es": [2024], "help.juno.com": [8699], "static.showapi.com": [21815], "trqu.se": [2024], "www.catooh.com": [2916], "remit.bundesnetzagentur.de": [2445], "m-wa.re": [2024], "www.acluva.org": [310], "tylrgt.rs": [2024], "lehosit.net": [2024], "webmail.ameslab.gov": [19191], "gonewsoft.com": [6763], "37.rkn.gov.ru": [13971], "muse.jhu.edu": [16370], "francisc.us": [2024], "www.gdata.it": [6272], "bcaa.com": [1529], "code.berkeley.edu": [17329], "1.milfrases.org": [2024], "bugzilla.mplayerhq.hu": [9798], "bookonline.saudiairlines.com": [14367], "informer.onl": [2024], "neow.in": [2024], "policy.islamic-relief.com": [8377], "info.woolyss.com": [18512], "s.outvia.cz": [2024], "careers.insidehighered.com": [8165], "ughk.co": [2024], "derpiboo.ru": [4368], "bbs.boxun.com": [19436], "sealinfo.verisign.com": [17712], "user.lucidmedia.com": [9652], "iclubs.co": [2024], "domain.fi": [4643], "*.rubygems.org": [14076], "www.brightcontext.com": [2336], "megashare.im": [10242], "id.trove-stg.com": [16837], "dsny.com.au": [2024], "*.yottaa.com": [18793], "www.publichealth.wustl.edu": [18089], "img.youm7.com": [18805], "amito.tk": [2024], "healthandsocialcare.holyrood.com": [20393], "zmgy.me": [2024], "kwls.in": [2024], "khabarovsk.beeline.ru": [1778], "help.runbox.com": [14093], "chfs.me": [2024], "secure.dundeecity.gov.uk": [4794], "americanfreedom.com": [986], "hackerschool.com": [7135], "angebote.maxdome.de": [10106], "bchbody.life": [2024], "b.globe.com": [2024], "blog.pushbullet.com": [13295], "compass.hdvlink.com": [20359], "isalo.org": [8360], "w0uter.nl": [2024], "l.liion.mx": [2024], "baby.360.cn": [142], "www.worldcommunitygrid.org": [18537], "blinkeye.ch": [2095], "css.x-cart.com": [18583], "redrum.lp0.eu": [9648], "viziciti.es": [2024], "blog.kryptnostic.com": [9030], "my.ntv.ru": [21197], "www.manyvids.com": [9976], "strategypage.com": [22003], "pages.endgame.com": [19994], "chomp-cdn.appadvice.com": [1143], "eapp.us": [2024], "i.w55c.net": [17984], "open-groupe.nl": [21263], "c.navs.me": [2024], "nexus.od.nih.gov": [11090], "oeffentliche-it.de": [11767], "mobielbreedband.ziggozakelijk.nl": [18963], "*.sarenza.net": [14362], "help.plot.ly": [12860], "connectivity-test.asana.com": [1265], "papp.ca": [2024], "t4s.co": [2024], "cache2.integriscu.ca": [8204], "bzp.lt": [2024], "www.unsw.edu.au": [17076], "looppay.com": [9615], "dalia.click": [2024], "a.cavbk.ca": [2024], "rd.geekwind.net": [2024], "madoka.upyun.com": [17492], "websurveys.govmetric.com": [6850], "*.aweber-static.com": [437], "www.uni-heidelberg.de": [17262], "guitar.co.uk": [10298], "g.denik.cz": [4347], "www.cjfe.org": [2630], "www.tjournal.ru": [16582], "www.satoshidice.com": [14363], "blog.scienceathome.org": [14443], "5www.play-asia.com": [12828], "eqx-tmk-geoloc.smartadserver.com": [15049], "melus.oxfordjournals.org": [12222], "www.lloydstsb-offshore.com": [9536], "www.icanhazip.com": [7906], "www.jackson-it.de": [8495], "mj.majordomo.ru": [9914], "image3.play-asia.com": [12828], "cutedigi.com": [3937], "preventreview.homeoffice.gov.uk": [20399], "filologiainglesa.unizar.es": [17441], "zuf.cz": [2024], "www.gneis.bankinter.com": [1674], "dynamic.xkcd.com": [22652], "screenshots.debian.net": [4261], "nghttp2.org": [11412], "source.ind.ie": [8052], "nalchik-realty.rambler.ru": [13600], "banyen.com": [1684], "wangpai.2345.cn": [97], "wisedu.ca": [2024], "support.devzing.com": [4406], "g1261.co": [2024], "o.wowtrk.com": [2024], "developer.conviva.com": [3633], "comics.lp0.eu": [9648], "www.tifpa.infn.it": [7771], "u-mich.me": [2024], "yjdyc.biligame.com": [1903], "*.bigo.net": [1546], "apidocs-stage.tokenly.com": [22229], "vimal.mobi": [2024], "a.mvd.ru": [21055], "www.aits.uillinois.edu": [17034], "leisurecourses.derby.gov.uk": [4367], "auth.quakenet.org": [13376], "nctrn.co": [2024], "lifeinthefastlane.ca": [9344], "succeed.eloqua.com": [5171], "cdn.softlayer.com": [15159], "sip.unicef.org": [17069], "misd.sc": [2024], "mobilism.org": [21004], "echoplex.us": [5038], "tech.hk01.com": [7056], "devfac.to": [2024], "riskware.sydney.edu.au": [22063], "bnptr.sk": [2024], "www98.verizon.com": [17715], "www.abuse.vutbr.cz": [17609], "dsc.fyi": [2024], "www.ntvspor.net": [11013], "*.collegehumor.com": [3427], "volgograd.kavkaz-uzel.ru": [20694], "lachie.me": [2024], "175.mclaut.com": [20942], "portrait2.sinaimg.cn": [14910], "on.titans.space": [2024], "www.yourvideohost.com": [18824], "otumm.com": [12169], "shredded-n.fit": [2024], "ijustyn.xyz": [2024], "staticimg.yidianzixun.com": [22679], "m.unicef.org.uk": [17068], "www.westlaw.com": [18312], "*.battle.net": [1719], "www.cqrollcall.com": [2669], "hmrl.es": [2024], "pancast.it": [2024], "jstsh.me": [2024], "my.okhi.co": [2024], "www.bpb.de": [19437], "licensingregisters.southlanarkshire.gov.uk": [15258], "www.spaceup.org": [15276], "web.viu.com": [17883], "cpro.baidu.com": [1641], "www.emacswiki.org": [5182], "cryptosanta.xyz": [3862], "www.hostican.com": [7531], "spis.korzar.sme.sk": [14198], "tevatron.fnal.gov": [5741], "crap.at": [2024], "d4k.us": [2024], "bekliyorum.play-asia.com": [12828], "s.zimcar.kr": [2024], "www.ovh.us": [11724], "www.jandan.net": [8518], "symb.co": [2024], "fitstudio.com": [5868], "sslstatic.wix.com": [18473], "self.maidstone.gov.uk": [9885], "questionnaire.umontpellier.fr": [22365], "bmcpediatr.biomedcentral.com": [1931], "img3.tv4cdn.se": [15947], "www.cefas.co.uk": [2937], "blog.roblox.com": [13980], "bude.co": [2024], "www.godoc.org": [6757], "l.db6edr.de": [2024], "suche.web.de": [18146], "*.spatialbuzz.com": [15301], "sc1.checkpoint.com": [3052], "cockpit.swisscom.ch": [15761], "twidex.com": [2024], "points.houseoffraser.co.uk": [7570], "go.joewang.net": [2024], "shit-i-mech.friday.ru": [20175], "www.mitmproxy.org": [10495], "cdn.codementor.io": [3370], "link.boca.pro": [2024], "freshfem.refresher.sk": [13781], "wis.sndcdn.com": [15096], "img11.warez-bb.org": [18072], "flashtalking.net": [5885], "preview.unwire.hk": [17460], "www.whitehathouston.com": [18349], "www.chrismatic.io": [3113], "sorokino.admtyumen.ru": [19082], "betterbills.com": [1854], "pay.alfabank.ru": [849], "www.baylibre.com": [1726], "stwmd.ws": [2024], "blogs.allnokia.ru": [19153], "*.pornbb.org": [21463], "www.aaau.org": [19035], "seeks-project.info": [14617], "zangki.cf": [2024], "mushnet.works": [2024], "jguitar.com": [8446], "secure.comic-con.org": [3467], "corset.tips": [2024], "smirne.de": [2024], "cdn1.pravobraz.ru": [21480], "bro.lv": [2024], "www.gelgif.ulaval.ca": [17319], "s.daspixl.com": [2024], "i.jay.ph": [2024], "lionelba.com": [2024], "store.2600.com": [111], "wimp.no": [18368], "vubranch.com": [2024], "ai.juliar.org": [8686], "fbg.desidees.eu": [2024], "fcsdata.aastocks.com": [19037], "lljj.us": [2024], "nite.mobi": [2024], "shop.mheducation.com": [20975], "mindtools.com": [10447], "git.gnu.io": [6336], "haskell.org": [7220], "www.gamefly.co.uk": [6397], "client.fitbit.com": [5867], "user47.link": [2024], "help.switch.ch": [15762], "fdm.co": [2024], "preview.history.com": [7422], "cinplx.co": [2024], "www.eventbrite.de": [20039], "leafne.ws": [2024], "www.fvap.gov": [20191], "2.zkc.idv.tw": [2024], "www.onorobot.org": [11686], "fin.qidian.com": [13349], "lynda.com": [9692], "marketing.extensis.com": [5512], "synapsepay.com": [22066], "n.wawolfpac.org": [2024], "spangle.us": [2024], "specialized.net": [15311], "loopt.com": [9618], "vrs.legal": [2024], "ezproxy.uned.es": [17248], "ritter.vg": [13961], "www.nubits.com": [11600], "trueachievements.com": [16844], "rochesterhomepage.*": [13987], "acn.oxfordjournals.org": [12222], "myid.cz": [2024], "ngvpn16.nvidia.com": [11022], "on.kttc.com": [2024], "monkey.collabora.co.uk": [3417], "devbridge.com": [19819], "mdst.in": [2024], "www.bitfinex.com": [2017], "soetke.es": [2024], "shawn.io": [2024], "u.den.my": [2024], "kc.mcafee.com": [10129], "sites.stanford.edu": [15448], "piwik.ei.rub.de": [13539], "halfton.es": [2024], "eu4.startingpage.com": [15476], "it.support.tomtom.com": [16615], "www.pyeongchang2018.org": [21545], "sexnarod.ru": [14698], "ww1755.smartadserver.com": [15049], "i.oozo.tv": [2024], "www.refresher.cz": [13781], "privatesearch.io": [13153], "mail.webcitation.org": [18153], "archive.khabarovskadm.ru": [20708], "darcitalks.tips": [2024], "scounter.rt.com": [13528], "t3b.eu": [2024], "ericn.us": [2024], "l.fsfe.org": [5591], "gorod.yandex.com": [18742], "artsn.ax": [2024], "leisure.northlincs.gov.uk": [21158], "help.zencoder.com": [18919], "forum.fairphone.com": [5625], "forever.btcc.com": [2400], "auis.worldcat.org": [18536], "gvz.tocco.ch": [16600], "sergiev-posad.beeline.ru": [1778], "global.taobao.com": [16015], "widgets.amazon.com": [960], "linguee.fr": [9390], "fit.edu": [5922], "www.goodline.info": [20288], "wmp.shootingillustrated.com": [21805], "www.20minutes.fr": [94], "manage.sendmoneytoschool.com": [14639], "sconfir.com": [2024], "www.drafthouse.com": [820], "pt.socialclub.rockstargames.com": [13997], "b.bostonglobemedia.com": [2254], "cdn.searchenginejournal.com": [21763], "g.adspeed.net": [595], "go.ajsb.co": [2024], "www.socialprogressimperative.org": [15131], "pressetreff.3sat.de": [174], "tiny.direct": [2024], "m.lovebizhi.com": [20878], "lux.ms": [2024], "vol.com.br": [2024], "*.compasscard.ca": [3518], "opendesktop.org": [21266], "fisa-ext-devred.ble.de": [19406], "www.middelburg.nl": [11172], "sifomedia.idg.se": [7709], "www.dict.leo.org": [9270], "ppb.cancer.gov": [2819], "ssl.zoomshare.com": [19004], "stopfasttrack.com": [15552], "marconet.co": [2024], "www.bilio.com": [1905], "files.poulsander.com": [5788], "rt1.map.gtimg.com": [6975], "portal.bolehvpn.net": [2204], "cdn.opinionlab.com": [12090], "admeld.com": [661], "helpdesk.leeds.ac.uk": [17403], "shoppbs.org": [12242], "42.rkn.gov.ru": [13971], "home.console.aliyun.com": [868], "kg-link.com": [2024], "www.pirateproxybay.tech": [22174], "html5rocks.com": [7098], "nobelprize.org": [21147], "learning.environment-agency.gov.uk": [20006], "spb.sumtel.ru": [22031], "tchfsh.tk": [2024], "klimaschutzpartner-berlin.de": [8946], "spryd.com": [2024], "cpaclick.com": [2024], "secure.ethicspoint.com": [5370], "myadv.us": [2024], "via.cf.sg": [2024], "l.myi.gg": [2024], "www.wetstonetech.com": [18318], "e-junkie.com": [4847], "ss.brighthub.com": [2343], "jcongenitalcardiology.biomedcentral.com": [1931], "spike.newswhip.com": [11374], "www.online.net": [11908], "s.anaz.ae": [2024], "imagecurl.com": [20497], "1.f.ix.de": [8417], "44.mvd.ru": [21055], "static.kfc.ru": [20707], "git.thm.de": [15876], "mail.dimonvideo.ru": [19840], "www.york.edu": [18787], "iwys.co": [2024], "Sesamstrasse.de": [14688], "*.reportnhsfraud.nhs.uk": [10953], "pegasusdigital.de": [11867], "brin.me": [2024], "*.thedrum.com": [16346], "registerresnet.neu.edu": [10944], "pbase.com": [12244], "lastpass.com": [9175], "syd.is": [2024], "www.libdrc.org": [9308], "*.keepallthethings.com": [8854], "fbconnect.democrats.org": [4338], "go.oclasrv.com": [21227], "init7.net": [8146], "www.savethelink.org": [14375], "kiks.yandex.kz": [18743], "omns.americanexpress.com": [979], "gr.pn": [2024], "f85.fr": [2024], "xoom.io": [2024], "chet.today": [2024], "nisar.jpl.nasa.gov": [10909], "pnradio.tk": [2024], "tv.mail.ru": [9891], "www.camtools.cam.ac.uk": [17332], "info.hubspot.com": [7599], "spanish.tags.literotica.com": [9479], "es.cloudflare.com": [3284], "mining.money": [2024], "link.nawbi.com": [2024], "www.montpellier3m.fr": [10609], "realty.ya.ru": [18716], "3dcrt.co": [2024], "www.eiffel.com": [5111], "www.parkhere.org": [14401], "brshar.es": [2024], "saratov.tpprf.ru": [22260], "vpn.dfs.un.org": [17057], "www.duckduckgo.com": [4785], "millei.ro": [2024], "tas-nl.nl": [2024], "www.faithinmotion.com.au": [5626], "tfs.me": [2024], "ereh.oxfordjournals.org": [12222], "www.tokobitcoin.com": [16609], "trauer.nzz.ch": [21216], "*.jabbr.net": [8483], "www.12joycasino.com": [20654], "rallydev.com": [13598], "brbll.org": [2024], "mispy.me": [10491], "swe.fronter.com": [20179], "dinside.no": [19844], "dolltasti.cc": [2024], "formsite.com": [20139], "www.bundesnetzagentur.de": [2445], "copy.bz": [2024], "www-edge.empflix.com": [5205], "www.launchclasses.com": [9181], "play.pokemonshowdown.com": [12901], "sq1res.com": [2024], "gtgn.co": [2024], "armavir.tpprf.ru": [22260], "u.choy.in": [2024], "blogs.fsfe.org": [5591], "direct.companieshouse.gov.uk": [3509], "agroba.se": [2024], "mograph.video": [2024], "www.yedxxx24hr.com": [18759], "tools.euroland.com": [5408], "winweb.desy.de": [4386], "www.cabinet-office.gov.uk": [2715], "prv-web.eng.buffalo.edu": [17382], "www.getpol.org": [6591], "www.legolanddiscoverycentre.de": [9249], "controlpanel.active24.com": [19061], "ms.cpa-net.jp": [2024], "www.istanbulhs.org": [8394], "ps.ht": [2024], "foroempleo.uniovi.es": [17282], "ape.ag": [2024], "link.etz.io": [2024], "herrig.es": [2024], "www.hyd.gov.hk": [7063], "letstou.ch": [2024], "askrew.ca": [2024], "total.ac": [2024], "exxonmobil.co": [2024], "forabank.ru": [5994], "www.nku.gov.sk": [15037], "directdebit.rother.gov.uk": [14031], "proera.nyc": [2024], "skillschk.com": [2024], "simpe.co": [2024], "brasil.isidewith.com": [20466], "track.unodc.org": [17075], "www.alanreed.org": [19130], "nasasearch.nasa.gov": [10909], "b.collective-media.net": [3422], "autd.us": [2024], "ad.yieldmanager.com": [13937], "privacy.microsoft.com": [10396], "s.inmon.de": [2024], "p.hue.sk": [2024], "www.dotnetkicks.com": [19887], "co.plugz.me": [2024], "analytics.yacuna.com": [18720], "eb.my.msn.com": [9808], "athometech.co": [2024], "www.wiki.unbit.it": [17234], "www.googleadservices.com": [6834], "svnly.org": [2024], "jlms.oxfordjournals.org": [12222], "devforums.apple.com": [1151], "fls-eu.amazon.de": [19174], "www.ultrabug.fr": [17222], "zenmate.co.nz": [18917], "freezeray.co": [2024], "telecurso.tc": [2024], "nrc.gov": [17301], "www.tmview.europa.eu": [5411], "wusmhelp.wustl.edu": [18089], "att.mcafee.com": [10129], "cntnd.cc": [2024], "fhl.uk": [2024], "season.kde.org": [8735], "ps.oxfordjournals.org": [12222], "developer.netdna.com": [11227], "corp.houseoffraser.co.uk": [7570], "delto.ro": [2024], "zabbix.maryno.net": [20928], "srt.ivrm.nl": [2024], "parkingappeals.bristol.gov.uk": [19451], "cpe.mitre.org": [10497], "craftbee.rs": [2024], "netbank2.danskebank.dk": [4138], "www.bbcchildreninneed.co.uk": [1525], "next.novayagazeta.ru": [21169], "*.blogspot.kr": [2127], "cxholidays.com": [2913], "lists.sabayon.org": [14275], "dpreview.com": [4483], "*.starsearchcasting.com": [15462], "bmpr.ca": [2024], "planet.lugons.org": [9121], "ww1551.smartadserver.com": [15049], "peer5.com": [12547], "qingyangguan.jd.com": [8434], "ly.pantry.biz": [2024], "ralphie.co": [2024], "hilfe.telekom.de": [4397], "zona.t-com.sk": [16155], "nag.bz": [2024], "*.ardour.org": [1204], "img.bizrate.com": [2054], "anketa.kfc.ru": [20707], "www.blesta.com": [2089], "dpmaster.deathmask.net": [4254], "www.thepiratebay.rs": [22174], "www.livelib.ru": [9522], "corkg.bz": [2024], "mindtouch.onelogin.com": [11874], "www.oit.umd.edu": [17351], "bloxcon.roblox.com": [13980], "support.fluidhosting.com": [5931], "www.sparklit.com": [15293], "udmedia.de": [17021], "fndz.us": [2024], "www.gov.wales": [6843], "jvd.ink": [2024], "yichangguan.jd.com": [8434], "lists.eurobsdcon.org": [5394], "eletmodvaltok.aldi.hu": [357], "m.eaipop.com.br": [2024], "auth.yell.com": [22672], "gifbook.io": [6622], "ixia.cc": [2024], "asset-b.soupcdn.com": [15236], "manheim.to": [2024], "www.parking.wustl.edu": [18089], "go.shore3.com": [2024], "blog.twitch.tv": [16961], "www.zuhah.com": [19020], "www.rainforestqa.com": [13592], "mail.ign.com": [7734], "www.kuantokusta.pt": [9040], "viralt.ag": [2024], "hark.com": [7198], "mailer.iphonelife.com": [8341], "start.rit.edu": [13493], "q4.qlogo.cn": [13355], "*.get.it": [6550], "scip.portsmouth.gov.uk": [21467], "www.solar-energy-installers.com": [15176], "embrwb.link": [2024], "www.kimonolabs.com": [8906], "scrapbookroyalty.org": [3016], "ybc.church": [2024], "jgb.bz": [2024], "on.inc.com": [2024], "www.roszkh.ru": [21679], "das-elena-verfahren.de": [4914], "trvltrxs.nl": [2024], "app.com": [1267], "exmo.com": [5488], "community.virginmedia.com": [17822], "www.dshs.state.tx.us": [16224], "ftp.tfb.ru": [16236], "san.fo": [2024], "refs.in": [2024], "tpl.fm": [2024], "wp.qiye.qq.com": [13329], "gtld.knet.cn": [8757], "panicbutton.io": [12392], "www.youtube.lt": [18800], "bigdata.cse.ust.hk": [22412], "www.youtube.lv": [18800], "okturtles.com": [11810], "*.buzzdock.com": [2492], "e.ryancowan.com": [2024], "shivd.me": [2024], "meetinleeds.co.uk": [10223], "s.stoloto.ru": [21996], "www.intuitpayments.com": [8299], "socio.us": [2024], "bairdmounts.com": [19306], "simplyjes.us": [2024], "login.cern.ch": [2588], "whistleout.com.au": [18344], "*.vmware.com": [17581], "hivoice-ct.hivos.org": [7436], "www.southdowns.gov.uk": [21909], "www.richarddawkinsfoundation.org": [13929], "bter.com": [2401], "serverfruit.com": [14676], "www.securepurchaseserver2.com": [14573], "m.bystrobank.ru": [2500], "perlentaucher.de": [12608], "maxdome.de": [10106], "cdn.ws.citrix.com": [3180], "www.dialdirect.co.uk": [4430], "neotelecom.ru": [21103], "www.join.me": [8631], "www.milanuncios.com": [10426], "ztbh.co": [2024], "units.wesnoth.org": [18298], "identitytheft.org.uk": [7940], "www-dji-china.dji.com": [4029], "wsio.buttercoin.com": [2479], "www.coastalmicrosupply.com": [3338], "www.voicethread.com": [17909], "www.gismeteo.pl": [20252], "www.lewrockwell.com": [9293], "*.booking.com": [2220], "b2b.t-mobile.com": [15837], "c.xbox.com": [18639], "jcastro.mx": [2024], "baja-rally.com": [2024], "www.reliableisp.net": [13816], "iqa.104.com.tw": [18], "thirstpro.je": [2024], "on.mhm.ag": [2024], "gargoyle.uni.illinois.edu": [17346], "static.clickon.com.ar": [3250], "c-tree.com": [2024], "id.nikkei.com": [11442], "blog.srcclr.com": [15404], "oosfarm01.bl.uk": [2358], "pskov.psbank.ru": [13231], "wiki.parabolagnulinux.org": [12413], "m.airbnb.lu": [793], "pilot.cndls.georgetown.edu": [6531], "www.medicaljane.com": [10201], "sr4.liveperson.net": [9505], "auth.launchpad.nasa.gov": [10909], "qcq.me": [2024], "sportmaster.ru": [21944], "www.bsdcan.org": [1570], "atemda.com": [662], "www.kumu.io": [9050], "7di.as": [2024], "companion.here.com": [7325], "bricoetloisirs.ch": [3647], "www.nrsr.sk": [15037], "l.omer.io": [2024], "pon.gl": [2024], "nla.io": [2024], "wkx.jp": [2024], "intranet.thm.de": [15876], "thewellss.org": [2024], "forums.psychcentral.com": [21531], "go.mgpf.it": [2024], "jackets.gardners.com": [20203], "ft-live-chat.kyivstar.ua": [9067], "tiswww.case.edu": [2884], "thought.artsci.wustl.edu": [18089], "www.scientific.net": [14447], "www.pikpok.com": [12704], "bosh.io": [2249], "cvote.cc": [2024], "geology.illinois.edu": [17346], "rpmfind.net": [14055], "pre.scnsrc.net": [21752], "skreened.com": [14983], "paste.ubuntuusers.de": [17184], "card.jd.com": [8436], "www.oz-affiliate.com": [12226], "eme.moe": [19986], "shopping.yahoo.co.jp": [18730], "financement.m6r.fr": [9709], "runcourage.me": [2024], "yom.io": [2024], "meetings.ripe.net": [13953], "elipho.to": [2024], "www.cms-etcount.admin.ch": [22061], "emknowledge.gov.au": [1414], "ra-ftc.moodys.com": [21020], "logovut.ro.vutbr.cz": [17609], "besmith.com": [1612], "subrosa.io": [15628], "hcfun.co": [2024], "www.emaileri.fi": [5184], "www.granularproject.org": [20302], "rgi.me": [2024], "thumby.grvcdn.com": [6968], "snider.io": [2024], "go.hea.biz": [2024], "l.nhaquan1.top": [2024], "m.shacombank.com.hk": [14719], "padlister.com": [12351], "www.guitar.co.uk": [10298], "de-ipd.videoplaza.tv": [17785], "link.hipo.kz": [2024], "aktion.netcologne.de": [11226], "community.alumni.harvard.edu": [7211], "download.elastic.co": [5131], "remoteadvisor.apple.com": [1151], "helpshift.com": [7309], "www.departments.bucknell.edu": [2406], "freescale.com": [6161], "blot.im": [2137], "www.freelanguage.org": [6118], "taojinbi.taobao.com": [16015], "www.thepirateproxy.co": [22174], "primegrid.com": [13108], "billing.flokinet.com": [5918], "c101.co": [2024], "rnib.in": [2024], "backissues.time.com": [15884], "www.aclu-cu.org": [2995], "bruteforce.gr": [2397], "libanywhere.com": [9320], "www.dulwich.io": [4793], "yuncheng.jd.com": [8434], "wasc.stanford.edu": [15448], "coxds.com": [3735], "go.ammarcus.com": [2024], "www.ix.br": [20619], "slzbrt.com": [2024], "b.danielrozo.es": [2024], "cdn03.mir.afisha.ru": [19107], "webmail.websupport.sk": [18253], "finchi.es": [2024], "bhgmag.co": [2024], "secure.tameside.gov.uk": [22095], "astnmrt.in": [2024], "www.wimo.com": [18370], "accounts.cloud.databricks.com": [4189], "lists.metalab.at": [10331], "on.gobig.at": [2024], "jobhint.co": [2024], "decc.gov.uk": [19795], "forum.typo3.org": [15959], "link.crogo.com": [2024], "t.scl.io": [2024], "lavo.co": [2024], "packrun.info": [2024], "et12.xhcdn.com": [18605], "*.rega.ch": [13785], "anonimag.es": [1081], "2ton.com.au": [119], "www.kore.io": [8996], "notblocked.telex.cc": [16164], "www.devprom.ru": [4419], "hebrew.alibaba.com": [857], "anon.click": [1078], "secure.voyage-prive.it": [17947], "wholesaler.alibaba.com": [857], "tvfutu.re": [2024], "kitd.com": [8746], "www.buildbot.net": [19469], "gnv.xyz": [2024], "sus.tocco.ch": [16600], "www.bostonreview.net": [2255], "gentoo-ev.org": [6516], "www.up.jobs": [22385], "www.dedra.cz": [4015], "blogs.constantcontact.com": [3594], "posthaven.com": [13023], "*.themoneyreferral.com": [3508], "dejon.es": [2024], "strasbourg.eu": [15574], "food.gov.uk": [20132], "psst.li": [2024], "plugring.farmanager.com": [5650], "miy-cn.djicdn.com": [4029], "media.xda-developers.com": [18598], "ru.libreoffice.org": [9327], "pcprogschool.cdnvideo.ru": [19536], "fbdn.ga": [2024], "usembassy.state.gov": [17146], "www.kk.dk": [8748], "www.gpodder.net": [6354], "nuagemo.de": [2024], "nothing.ch": [11565], "form.lt": [2024], "civic.moveon.org": [10670], "eiopa.europa.eu": [5411], "hmg.oxfordjournals.org": [12222], "adv.money.pl": [10585], "euro.gifts": [2024], "old.harita.yandex.com.tr": [18740], "doresearch.stanford.edu": [15448], "register.com": [13793], "money.yandex.kz": [18743], "www.sogeti.com": [15167], "*.wholeliving.com": [10041], "enterprisecioforum.com": [5279], "www.orafarm.com": [11694], "worldsoc.cr": [2024], "www.savana.cz": [14370], "experts.studentdoctor.net": [15603], "facultydiversity.org": [5617], "via.khow.it": [2024], "bunniestudios.com": [2454], "home.kyivstar.ua": [9067], "true-security.nl": [15923], "static-cdn.malwarebytes.org": [9941], "portal3.wildfire.paloaltonetworks.com": [12378], "mypea.ch": [2024], "vall.ie": [2024], "surreymaps.surreycc.gov.uk": [22040], "caracas.usembassy.gov": [22406], "cor.gsfc.nasa.gov": [10909], "daily.jstor.org": [8472], "techtun.es": [2024], "shop.sophos.com": [15224], "al.md": [2024], "w.zipbob.net": [2024], "stat.starlink.ru": [21978], "darwin.uk": [2024], "www.facebook.mx": [5612], "istar.usc.edu": [17366], "tv-show.ga": [2024], "no.piliapp.com": [12706], "kib.ki.se": [8743], "www.zoosk.com": [19006], "dfab.it": [2024], "krita.org": [9026], "ore.wsj.net": [18021], "api.airmap.com": [790], "quint.ly": [2024], "qingchengguan.jd.com": [8434], "rnwd.net": [2024], "www.cheshirepolicealert.co.uk": [19573], "pixcept.de": [12770], "i.onthe.io": [11926], "aer.co": [2024], "cctnft.ch": [2024], "logo.to": [2024], "oldschool.stalkr.net": [15437], "*.qoo10.com": [13359], "koumbit.net": [9009], "nzqa.govt.nz": [11044], "www.checkip.org": [17877], "www.meynconnect.com": [10355], "fnn.jp": [2024], "yorkshireandhumber.greenparty.org.uk": [6908], "therocktrading.com": [16379], "aehr.co": [2024], "acoustid.org": [532], "on.krem.com": [2024], "reddpics.com": [13746, 13747], "pgsql.vas-hosting.cz": [22428], "rpkjr.us": [2024], "workersandbox.mturk.com": [9819], "freetype.org": [20168], "sci-hub.ac": [14436], "siemens.*": [14831], "potom.ac": [2024], "v.you2play.com": [2024], "jasondfox.com": [2024], "foodandwaterwatch.org": [5978], "edu.ietf.org": [7725], "www.smul.sachsen.de": [14279], "yur.is": [2024], "archdai.ly": [2024], "quakonapp.ble.de": [19406], "beli.io": [2024], "opentag.qubitproducts.com": [13395], "ldnbri.de": [2024], "petyard4.info": [2024], "mobilesync.boell.de": [2192], "icln.org": [7691], "search.ietf.org": [7725], "bikin.ch": [2024], "hideki.hclippr.com": [7034], "clients.cleanenergyexperts.com": [3225], "sharethenetwork.com": [14732], "static.ucsc.edu": [17390], "eene.ws": [2024], "tibus.com": [22205], "r.sanzon.mx": [2024], "libya.usembassy.gov": [22406], "taylrm.sn": [2024], "b.ptstyle.biz": [2024], "in2.kr": [2024], "s.atea.no": [2024], "fb.ypgames.fr": [2024], "gasngrills.com": [6444], "enbg.dict.cc": [4442], "lpil.es": [2024], "bit.pourboy.ca": [2024], "cdn5.xvideosx.tv": [18627], "marco.upo.es": [17479], "jira.enaza.ru": [5222], "*.alwaysdata.com": [947], "oscommerce.com": [12152], "www.code42.com": [3344], "london.hackspace.org.uk": [9593], "public.nicereply.com": [11426], "kennslumidstod.hi.is": [7049], "wan.xiaomi.cn": [18661], "robotshop.com": [13983], "scimuseumok.org": [2024], "warisboring.com": [22526], "www.h.switchadhub.com": [15764], "www.mcxnow.com": [10141], "tonolucro.com": [2024], "assets-ssl.nnm-club.ws": [10982], "e-idt.co": [2024], "m.hertzequip.com": [7371], "dps.usc.edu": [17366], "ga.libreoffice.org": [9327], "saleshack.it": [2024], "omron.me": [2024], "selinc.com": [14157], "render.githubusercontent.com": [6661], "mail.yaziba.net": [20908], "*.bellinghamschools.org": [1796], "jezykpolski.istockphoto.com": [20595], "graphics.pop6.com": [12948], "12f.us": [2024], "noahr.co": [2024], "salsalabs.com": [14316], "mdws.vancity.com": [17643], "mkcor.us": [2024], "sport.leeds.gov.uk": [20799], "www.foriswine.com": [6017], "ussoc.cr": [2024], "duosecurity.com": [4796], "approach0.xyz": [19217], "knihy.root.cz": [14020], "malcontentsgambit.com": [9931], "media.firstclassmagazine.se": [5858], "www2.enthought.com": [5286], "www.rsb.ru": [14058], "360rea.ch": [2024], "prospecteye.com": [13206], "disk.yandex.by": [18739], "aemi.edu.au": [336], "link.madeby.hm": [2024], "legal.alibaba.com": [857], "api.newegg.com": [11356], "apps.eastsussex.gov.uk": [19938], "domainreseller.ru": [4657], "www2.woolworthsonline.com.au": [18511], "ar-904g.play-asia.com": [12828], "p4u.mall.cz": [9934], "t.uani.com": [2024], "evth.in": [2024], "metrica.yandex.kz": [18743], "adobeid-na1.services.adobe.com": [669], "lane-preprod.stanford.edu": [15448], "b.wbec.ca": [2024], "myitworksevents.com": [10850], "*.i-grasp.com": [7739], "mobioinsider.com": [10541], "giftofspeed.com": [20245], "golly.cc": [2024], "orders.thewarehouse.co.nz": [16425], "vsenovostint.ru": [22511], "vlebb.leeds.ac.uk": [17403], "buckeyelink3.osu.edu": [11797], "www.kirlism.ga": [20724], "vsqz.me": [2024], "probikekit.co.uk": [13164], "archi-strasbourg.org": [1191], "docs.oasis-open.org": [11644], "www.cmake.org": [19629], "www.ideascale.com": [20479], "jpmorgan.am": [2024], "my.netts.ru": [21114], "mchs.jwerk.in": [2024], "harrow.io": [7205], "flavors.me": [5890], "russko-vysotskoe.beeline.ru": [1778], "cs.ap.dell.com": [4317], "netpol.org": [11287], "piraten.lu": [21417], "jobs.n-kesteven.gov.uk": [10897], "www.litle.com": [9482], "totalinvestor.co.uk": [16675], "www.openit.de": [11982], "travelinsiders.americanexpress.com": [979], "flights.webjet.com.au": [18219], "fabbeat.us": [2024], "greensmoke.com": [6911], "mr.bitly.pro": [2024], "apap.wustl.edu": [18089], "makeuseof.com": [9919], "www.standagainstspying.com": [15441], "fastpiratebay.co.uk": [22176], "link.mylesm.uk": [2024], "p-tr.fr": [2024], "www.voiceteachertraining.com": [11341], "www.webassign.net": [18150], "www.visualisingadvocacy.org": [17873], "i85.me": [2024], "stats.traffichaus.com": [16725], "processnet.hu": [4659], "rostov.tpprf.ru": [22260], "a.camp-king.com": [2024], "it-ccs.com": [20596], "j0nathan.nl": [2024], "talitha.co": [2024], "on.e-nor.com": [2024], "test2.tocco.ch": [16600], "admin.mtree.mycelium.com": [21063], "m.bnkomi.ru": [19417], "stlrs.co": [2024], "security.srad.jp": [21956], "wallaby.demo.bitmask.net": [2027], "middlemanapp.com": [20978], "848.bz": [2024], "ampfy.in": [2024], "sprsm.pl": [2024], "www.briteobjects.com": [2355], "media7.congstar-media.de": [3579], "savana.cz": [14370], "notebook.bbg.gov": [19334], "onlinemovies.virginmedia.com": [17822], "deutsch.rt.com": [13528], "illinoislawreview.org": [7969], "openfabrics.org": [11974], "img.i4wifi.cz": [20459], "extranet.wienernetze.at": [18376], "static.theiconic.com.au": [16367], "certificatemonitor.org": [2976], "camcit.co": [2024], "*.stowesports.com": [352], "login.sas.com": [14132], "img.zwame.pt": [19025], "s.mblm.com": [2024], "smbz.us": [2024], "p.insighto.com": [2024], "ctl.tv": [2024], "hi.zenmate.in": [18917], "forge.typo3.org": [15959], "net.educause.edu": [5086], "hosting5.mclaut.com": [20942], "papiro.unizar.es": [17441], "24heures.newsnetz.ch": [11371], "miraclewkr.com": [2024], "url.exefull.net": [2024], "construx.com": [3595], "link.xnet.tk": [2024], "www.incapsula.com": [8047], "cyzr.biligame.com": [1903], "twinlane.co": [2024], "thiswhole.city": [2024], "antitheft.drweb.com": [4776], "r.peterprice.tv": [2024], "fnst.cc": [2024], "macmia.co": [2024], "christianheilmann.com": [3117], "apps.n-somerset.gov.uk": [10898], "sh.mallet.be": [2024], "oxfordtoday.ox.ac.uk": [17359], "www.funkhauseuropa.de": [18113], "password.1and1.com": [69], "www.tar-jx.bz": [16022], "student.slu.se": [14195], "iea.org": [8263], "mario.ninja": [2024], "assets.1688.com": [51], "ss4.sinaimg.cn": [14910], "hrsystems.admin.cam.ac.uk": [17332], "watchon.co.vu": [2024], "subscribe.hk01.com": [7056], "www.pkcommunitywatch.co.uk": [21429], "lego.build": [2024], "yelp.my": [18766], "assets.evoluted.net": [5456], "cmh.io": [2024], "amiibos.co": [2024], "ucat.osu.edu": [11797], "podaac.jpl.nasa.gov": [10909], "hp.com": [7379], "gvcr.info": [2024], "dl.polagr.am": [2024], "password.1and1.ca": [70], "eddieizzard.com": [5066], "go.dmoruzzi.com": [4043], "www.root.lerelais.org": [9205], "sl.cesa6.org": [2024], "bookings.tmbc.gov.uk": [15892], "supgrnd.com": [2024], "www.kbpublisher.com": [8726, 8727], "sports.wakefield.gov.uk": [22518], "cjdns.info": [3206], "malexpinto.tk": [2024], "www.warisboring.com": [22526], "www3.wolframalpha.com": [18487], "mojeid.cz": [10572], "l.htv.ninja": [2024], "buzzaldr.in": [2024], "u6.hitravel.xyz": [2024], "www.ncwit.org": [10931], "*.lessthan3.com": [9274], "bnbym.yandex.com.tr": [18740], "aes.uic.edu": [17321], "www.uif.uillinois.edu": [17034], "sprk.co": [2024], "traumamanagement.biomedcentral.com": [1931], "nuneatonandbedworth.gov.uk": [21202], "asic.gov.au": [408], "sprk.cc": [2024], "pagseguro.uol.com.br": [17079], "sensor.21.co": [95], "static1.uk.businessinsider.com": [2471], "mmy.oxfordjournals.org": [12222], "artsy.net": [1260], "www.nic.es": [4666], "sphomerun.co": [2024], "payments.rbwm.gov.uk": [21597], "www.anunciou.com": [1110], "photo.vegasinc.com": [17678], "secure.officeleaks.com": [11783], "recruit.zoho.com": [18984], "tdjak.es": [2024], "insure-systems.co.uk": [4430], "www.scripts.mit.edu": [9763], "go.java.com": [8539], "reut.tv": [2024], "code.mythtv.org": [10890], "chndlr.me": [2024], "pkr.com": [12789], "occmed.oxfordjournals.org": [12222], "baja-truckz.com": [2024], "www.smartbear.com": [21865], "www.logmeininc.com": [9560], "ojrq.net": [11805], "www3.sans.org": [14128], "livlinks.me": [2024], "assets.simplifydigital.co.uk": [21833], "statics1.beauteprivee.fr": [1766], "api.yubico.com": [18835], "eoportal.org": [5303], "lh.church": [2024], "join.me": [8631], "t-pepping.eu": [2024], "rbpde.tv": [2024], "mirc.com": [9760], "go.osu.edu": [11797], "sso.skatteverket.se": [14966], "go.teamviewer.com": [16069], "nzos.me": [2024], "stellify.media": [2024], "images.smartertools.com": [15058], "t.iverged.com": [2024], "typodun.unistra.fr": [17265], "huig.es": [2024], "pirateproxies.info": [22174], "smsng.us": [2024], "payza.com": [12523], "dermpath.wustl.edu": [18089], "www.bigjocker.com": [1891], "thewashi.com": [2024], "demand.rubiconproject.com": [14066], "demo.tiki.org": [16520], "goidm.unodc.org": [17075], "scm.thm.de": [15876], "htvn.co": [2024], "wiki.mythic-beasts.com": [10891], "snop.me": [2024], "skitch.com": [14979], "venst.re": [2024], "wikia.com": [18385], "harrow.greenparty.org.uk": [6908], "i-su.es": [2024], "scnsrc.net": [21752], "cdn.evbstatic.com": [5426], "ad.adriver.ru": [588], "insinuator.net": [8174], "www.express.co.uk": [5507], "laforge.gnumonks.org": [6748], "s36.cnzz.com": [3328], "www.leadwerks.com": [9216], "thinkmoney.co.uk": [22192], "www.vanillamastercard.com": [17649], "tclr.se": [2024], "www.uni-hamburg.de": [17025], "www.asiabsdcon.org": [1281], "moodle2.unizar.es": [17441], "bugs.gpodder.org": [6354], "fau.org": [5543], "atlas.arbor.net": [1185], "groupwise.klilu.de": [20734], "you-tube-com.cf": [2024], "downloads.bbc.co.uk": [19331], "n.planlicht.com": [2024], "www.maplight.org": [9978], "discrete18.com": [2024], "1ak.in": [2024], "www4.um.baden-wuerttemberg.de": [19302], "lensrentals.com": [9269], "www.futurelearn.com": [6261], "mbts.cc": [2024], "go.prtgh.eu": [2024], "www.bookfusion.com": [19425], "www.dcpower.eu": [4007], "qr.6g.cl": [2024], "www.muslimvillage.com": [10765], "mcdelivery.com.my": [10132], "icn.io": [2024], "popm.at": [2024], "hedgl.in": [2024], "d503.epimg.net": [5126], "www.outflux.net": [12184], "portal.lubw.baden-wuerttemberg.de": [19302], "www.stonearch.net": [14633], "startcom.org": [15472], "blogs-stage.oracle.com": [12116], "www.rac.co.uk": [13453], "blog.simplyhired.com": [14894], "minobr.government-nnov.ru": [20295], "home.hungryhowies.com": [20446], "breakoutband.com": [2318], "services.dyc.edu": [4089], "links.sn0w.me": [2024], "lieblingskaffees.tchibo.de": [16050], "c.snownavi.jp": [2024], "seopwr.st": [2024], "www.tverigrad.ru": [22325], "glife.kr": [2024], "j8.chaucanh.net": [2024], "oralb.com": [13168], "onlinebackup.elgiganten.se": [5154], "page.1688.com": [51], "apps1.bdimg.com": [1747], "hfpp.cms.gov": [19630], "zoo.mn": [2024], "www.ipredator.se": [7808], "*.dydx.io": [4813], "www.fcc.gov": [5699], "002.img.qf.56.itc.cn": [8401], "tkno.ir": [2024], "library.ingenico.com": [8141], "k.kitsos.ninja": [2024], "bit-hdtv.com": [19383], "detail.chiebukuro.yahoo.co.jp": [18730], "ghealthcare.anthem.com": [19206], "ut13.xhcdn.com": [18605], "councilmeetings.lewisham.gov.uk": [20820, 20821], "en.avm.de": [1478], "mobil.dhl.de": [4025], "ads.eurogamer.net": [5405], "seclab.illinois.edu": [17346], "chav.is": [2024], "kyle.life": [2024], "performance.surreycc.gov.uk": [22040], "vborg.es": [2024], "p78.nl": [2024], "secureupload.eu": [14560], "img4.leboncoin.fr": [20796], "www.migros.ch": [10417], "*.lendo.se": [9262], "www.pbebank.com": [13249], "ka.gg": [2024], "www.norx.io": [11550], "www.skyscanner.de": [15006], "c1.hitravel.xyz": [2024], "superherostuff.com": [15696], "ems.cambridgeshire.gov.uk": [19496], "www.newportmotorsports.com": [11359], "rclnk.me": [2024], "runbox.com": [14093], "rapidssl.com": [13617], "*.ugc.bazaarvoice.com": [1736], "my.curated.co": [3918], "gw2.alicdn.com": [853], "trader.tms.pl": [22224], "www.rns.online": [21658], "www.hee.nhs.uk": [10953], "chek.li": [2024], "www.cachebrowser.info": [2722], "synergi.enta.net": [5277], "static.bullionstar.com": [2435], "rememberthemilk.com": [13820], "blockr.io": [2112], "s.delphaber.com": [2024], "isec1047.ubrr.ru": [17173], "*.grdc.com.au": [6871], "www.subnet05.ru": [22023], "lola.gsfc.nasa.gov": [10909], "www.translationproject.org": [16748], "vip.jr.jd.com": [8436], "thomsonreuters.com": [16456], "ctln.co": [2024], "www.blimpme.com": [2092], "content22.online.citibank.com": [3174], "ppint.uk": [2024], "bioconductor.org": [1936], "robinsonpool.bedford.gov.uk": [19341], "aoquadrado.catracalivre.com.br": [2917], "digitalcourage.de": [4489], "ulyanovsk-realty.rambler.ru": [13600], "bugulma.startsmile.ru": [21980], "tnij.noop.pl": [2024], "www.itk.org": [20605], "scmagazine.com": [21751], "www.hr.uic.edu": [17321], "hayek.mercatus.org": [10296], "*.raeng.org.uk": [14044], "auth.lbp.me": [20789], "www.paste.ee": [12472], "business.leeds.ac.uk": [17403], "i1.gallery.technet.microsoft.com": [10396], "n210adserv.com": [21081], "www.jackpotmillions.com": [8493], "www.swm-infrastruktur.de": [14269], "selfsolve.apple.com": [1151], "www.path.com": [12485], "securemedia.compete.com": [3522], "go.mikepero.com": [2024], "static.yelpreservations.com": [22675], "senditnow.courierpost.co.nz": [3714], "piscatus.se": [12760], "snip2code.com": [15100], "550g.mcafee.com": [10129], "dr.com.tr": [4071], "images.theappendix.net": [16322], "www.youtube.co.kr": [18800], "spja.in": [2024], "mobile.portalpilot.equinix.com": [5322], "criticalmuslim.com": [3801], "rvls.co": [2024], "igorbellino.com": [2024], "www.bitbucket.org": [1982], "exjlux.news": [2024], "hackweek.suse.com": [14262], "neustarlocaleze.biz": [11323], "m.newstral.com": [11389], "shantou.jd.com": [8434], "ct.gov": [2695], "gtnacd.me": [2024], "sensay.me": [2024], "armory.monster-wow.com": [10604], "on.yourolly.com": [2024], "*.images-amazon.com": [963], "www.area17.com": [1208], "*.adseekmedia.com": [682], "asset4.djicdn.com": [4029], "moai.tw": [2024], "dukefuqua.com": [2024], "tech.bitrise.io": [19393], "kaosx.us": [20684], "tstats.xyz": [2024], "alpharatio.cc": [19160], "services.sstaffs.gov.uk": [21964], "saratov-region.auto.ru": [19276], "axonify.com": [1502], "hudora.biz": [2024], "at.mtn.com.cy": [2024], "sproutinc.com": [15389], "service.bitsighttech.com": [1973], "www.inform.umd.edu": [17351], "socialcodedev.com": [15129], "ln.alian.info": [2024], "www.parrotsec.org": [21351], "www.northkoreatech.org": [11536], "*.comicvine.com": [18340], "mijnzakelijk.ing.nl": [7775], "a1.adform.net": [638], "remote.gettyimages.com": [6604], "noao.edu": [11091], "onlinepayment.com.my": [9790], "bh.gg": [2024], "s.dimonvideo.ru": [19840], "i.nv8.org": [2024], "hkexpress.com": [20383], "pfdry.me": [2024], "hopel.es": [2024], "taltak.com": [2024], "images.c-spanvideo.org": [2509], "globevestor.com": [6726], "aries.apache.org": [1118], "a.tuposllc.com": [2024], "r9.ms": [2024], "betvic.to": [2024], "r.kargel.at": [2024], "clique.ly": [2024], "fusionhelp-stage.oracle.com": [12116], "0r1slpz5giymqauw08n85h27yig9ifkjabzlyyo4.ipleak.net": [20571], "srqymca.org": [2024], "www.aivd.nl": [350], "lgti.me": [2024], "a1air.info": [2024], "cuffl.in": [2024], "access.hinckley-bosworth.gov.uk": [7415], "www.discovermeteor.com": [4540], "www.thephone.coop": [16418], "splsh.pw": [2024], "scai.fraunhofer.de": [6091], "www.royalnavy.mod.uk": [14046], "boi.st": [2024], "www.remixdepolitiek.nl": [12741], "pbh.online": [2024], "yatima.org": [18755], "files.readme.io": [13668], "www.strelkacard.ru": [15590], "shrt.prog.li": [2024], "s.xgolf.kr": [2024], "zu.oxforddictionaries.com": [12223], "adler.biglion.ru": [19375], "www.tvsupport.net": [16935], "myaccount2.courant.com": [19699], "inmap.org": [2024], "suppliers.www.uprr.com": [22392], "u.boxwilson.com": [2024], "new.jd.com": [8436], "cdnsecureservep1.amexserve-static.com": [952], "ohag.xyz": [2024], "s3.percona.com": [12589], "maps.yandex.ua": [18747], "mchp.us": [2024], "sslcheck.alfabank.kz": [849], "blvdq.com": [2024], "www.cryptoparty.in": [3877], "css.nlx.org": [21146], "*.pairlite.com": [12365], "*.web-stat.net": [18139], "bspan.org": [2024], "winerooki.es": [2024], "schneier.com": [14423], "t.grimpe.fr": [2024], "certsoft.tpprf.ru": [22260], "camo.githubusercontent.com": [6661], "realmatch.com": [13684], "1.www.s81c.com": [21708], "home.f-secure.com": [5533], "gargoyle-router.com": [20204], "ftlk.org": [2024], "www.tsbmag.com": [15925], "economics.unian.info": [22369], "j-r.io": [2024], "mackeypro.co": [2024], "tt.imhd.sk": [8004], "search.uis.georgetown.edu": [6531], "benprie.be": [2024], "hotelsm.ag": [2024], "deis.dict.cc": [4442], "fatcy.cl": [2024], "reise.kurier.at": [9055], "gencat.cat": [6510], "ba.yandex.by": [18739], "news.zhatv.in": [2024], "hit4.hotlog.ru": [7554], "www.anon.freifunk.net": [6170], "stats.feedsportal.com": [5726], "accounts.infinum.co": [20526], "billpay.de": [1907], "yammer.com": [18738], "snapitoff.nus.org.uk": [21204], "vhns.co": [2024], "flybuys.com.au": [5940], "www.distil.it": [4561], "cssystem.cse.ust.hk": [22412], "centri.info": [2024], "www.liqd.net": [9456], "collect.tealiumiq.com": [16060], "thumbs.motherlessmedia.com": [10649], "kolophon.oreilly.de": [10322], "learningcentre.netapp.com": [11221], "cars24.link": [2024], "orlan.do": [2024], "craftulo.us": [2024], "api.excellencegateway.org.uk": [20047], "www.docs.indymedia.org": [8090], "on.wnct.com": [2024], "www.blumenthals.com": [2174], "globalsign.*": [6700], "freeapi.domaintools.com": [4653], "www.shippable.com": [21803], "biology4.wustl.edu": [18089], "slntd.co": [2024], "www.integriscu.ca": [8204], "ln.hhmr.biz": [2024], "about.downthemall.net": [4718], "www.cathaypacific.com": [2913], "fotocommunity.de": [6054], "go.web.cern.ch": [2588], "solarpowerrocks.com": [15177], "www.campaign.cam.ac.uk": [17332], "bylines.news.yahoo.co.jp": [18730], "ubt6.fanli.com": [5645], "uppsalahem.se": [17482], "front2.ulule.com": [17224], "www.tibiamaps.io": [22204], "soundcloud-wpengine.netdna-ssl.com": [15231], "cdn2.static.xtube.com": [18694], "almaany.com": [19155], "cdn4.iconfinder.com": [7920], "piwik.vm.de": [22479], "pagenotfound.lpice.eu": [9109], "ruag.com": [21690], "americanrifleman.org": [19189], "ryatta-yt.com": [2024], "ichef-1.bbci.co.uk": [19332], "tcf.org": [15856], "threestore.three.co.uk": [16471], "www.itce.ru": [20599], "community.gns3.com": [6335], "aoizemi.com": [2024], "cn.boell.org": [19422], "dcerpc.org": [19779], "ccianet.org": [2563], "riversidemajestic.com": [13965], "entr.dict.cc": [4442], "awaps.yandex.kz": [18743], "s.chikaki.me": [2024], "askkoko.co": [2024], "tor.com": [9846], "www.printmojo.com": [13116], "xiscosoft.es": [18668], "w.awsmpwrd.com": [2024], "go.rhino.link": [2024], "regiobank.nl": [13789], "*.accountservergroup.com": [518], "on.wrex.com": [2024], "tiles.maplecroft.com": [20925], "t.suntravel.xyz": [2024], "www.myreloadable.ca": [17643], "a.intentmedia.net": [8227], "www.compaign.ox.ac.uk": [17359], "www.arangodb.com": [1183], "minprom_old.government-nnov.ru": [20295], "*.vk.se": [17577], "diver.so": [2024], "risingstack.com": [21654], "ren.tv": [21626], "women.nra.org": [21176], "spursgroups.com": [2024], "pocketmags.com": [21445], "www.santoku-linux.com": [14356], "myopac.oxfordshire.gov.uk": [21327], "www.forum.fruct.org": [5585], "www.controllerpro.com": [3625], "stue.be": [2024], "alloresto.fr": [20671], "cu1.uicdn.net": [17032], "icflorida.us": [2024], "sfm-offshore.com": [14169], "htap.it": [2024], "media.readcube.com": [13666], "files.quizsnack.com": [13426], "pokerstars.com": [21451], "www.barna.org": [1700], "yesah.co": [2024], "teimp.de": [2024], "go.cyfm.ca": [2024], "coh.link": [2024], "verifier.accounts.firefox.com": [5842], "rewards.thankyou.com": [16246], "calnet.berkeley.edu": [17329], "itportal.decc.gov.uk": [19795], "eps.stanford.edu": [15448], "changzhi.jd.com": [8434], "burnab.it": [2024], "*.boingo.com": [2198], "standardne.ws": [2024], "fivewish.es": [2024], "for.photos": [2024], "assisto.net.br": [2024], "www.industry-incentive.taipei": [20521], "l.kevincheng.me": [2024], "pssap.gov.au": [13259], "ictrl.co": [2024], "static.kavkaz-uzel.ru": [20694], "agfyi.info": [2024], "biblio.parlament.ch": [22061], "aspplayground.net": [415], "php.pastebin.ca": [12477], "www.spaceweatherphone.com": [15282], "sulibrary.worldcat.org": [18536], "zenmate.dk": [18917], "astrobotic.com": [1326], "bsns.me": [2024], "manager.presspage.com": [13079], "www.protocolesevaluation.svs.ulaval.ca": [17319], "s.ghrebaa.com": [2024], "forum.pfsense.org": [12637], "uspgo.to": [2024], "autodiscover.sviaz-bank.ru": [15740], "bien-fait.paris": [2024], "aexrs.us": [2024], "hollister.co": [2024], "www.lso.com": [9114], "barclayscorporate.com": [1689], "heimatkunde.boell.de": [2192], "www.savethechildren.org.uk": [14376], "ws3.sinaimg.cn": [14910], "www.migrol-heizoel.ch": [10413], "lase.lc": [2024], "reviewedge.ml": [2024], "www.widget.whatsbroadcast.com": [18332], "www.mynewflag.com": [11346], "cgi.debian.org": [4263], "umstudent.com": [2024], "api.sina.com.cn": [14904], "lequipe.fr": [20811], "koozzz.us": [2024], "www.cloudinary.com": [3306], "taheerah.com": [2024], "s.cstori.es": [2024], "danm.in": [2024], "fnk.lv": [2024], "inventhelp.com": [8308], "images2.dailykos.com": [4110], "ellen.tv": [2024], "gazellegames.net": [20214], "bp.nserver.ru": [11588], "arsenal.rubiconproject.com": [14066], "www.qualityunit.com": [13381], "thefastandthefurious.com": [5672], "cs.oxfordjournals.org": [12222], "bbybgrl.com": [2024], "duracellcloud.com": [4801], "osadl.org": [11701], "www.24.cbsm.at": [8782], "on.dgx.me": [2024], "g1-bre.pagekite.net": [12359], "icefilms.info": [7909], "rs.broadcastjobs.co.uk": [2370], "acell.osu.edu": [11797], "test.quanam.cl": [2024], "docs.pivotal.io": [12765], "extranet.hku.hk": [20387], "*.ssl.catalog.video.msn.com": [9810], "atav.st": [2024], "zzounds.com": [18866], "clocks.yandex.com": [18742], "go.csdo.org": [2024], "files.nyaa.eu": [11634], "radio4.nu": [2024], "www.cadence.com": [2727], "sharethrough.com": [14742], "ibc.ubrr.ru": [17173], "www.blocketsannonswebb.se": [2110], "ciscolive.com": [3168], "fa.libreoffice.org": [9327], "archive.debian.net": [4261], "mpiweb.org": [9795], "pmu-info.rosminzdrav.ru": [21674], "cdn.sevenforums.com": [21793], "*.corecommerce.com": [3664], "longnow.org": [9603], "www.togahotels.com": [16604], "*.ostkcdn.com": [12202], "html.atm.youku.com": [18804], "coinmate.io": [3398], "brstbl.me": [2024], "french.tags.literotica.com": [9479], "crunchbase.com": [3830], "*.wt-eu02.net": [18263], "cims.so.one.un.org": [17057], "go.3arrafni.com": [2024], "oma.9tv.co.il": [257], "accesspr.us": [2024], "tsbohemia.cz": [22300], "eina.unizar.es": [17441], "aktib.co": [2024], "cdn03.gitter.im": [6666], "l.copps.nz": [2024], "my.preston.gov.uk": [21491], "giz.tech": [2024], "images.google.com": [6824], "www.yorkfitness.com": [18789], "www.nextgen-gallery.com": [11406], "mobile.zuno.sk": [18862], "identity.paloaltonetworks.com": [12378], "elt.oup.com": [12224], "recipes.gobolinux.org": [20276], "andri.at": [2024], "www.verisign.dk": [17712], "shmoop.com": [14771], "www.nerfnow.com": [11200], "*.uni-greifswald.de": [17398], "soez.bz": [2024], "www.srm.de": [14234], "mysupport.nvcc.edu": [11627], "aje.oxfordjournals.org": [12222], "es.account.my.t-mobile.com": [15837], "hackthe.computer": [7146], "press.post-gazette.com": [12994], "s.deratrox.de": [2024], "etegro.com": [4969], "active24.cat": [19059], "themes.nyc": [2024], "jemp.ml": [2024], "app.airmap.com": [790], "absolvent.vutbr.cz": [17609], "ibank.akbars.ru": [19128], "a.gfx.ms": [6607], "www.unfpa.org": [17062], "qlp.promo": [2024], "lp.am": [2024], "idpjournal.biomedcentral.com": [1931], "im.bnymellon.com": [19420], "reg.ft-static.com": [20182], "www.rol.im": [21667], "a.devb.us": [2024], "lcry.us": [2024], "export.martinus.sk": [10044], "www.learnertrack.net": [20795], "o.andromaza.com": [2024], "harv.pw": [2024], "coloniallife.us": [2024], "secure.zt03.net": [19016], "railsbox.io": [13590], "gbrl.me": [2024], "zein.nl": [2024], "b.id0.me": [2024], "cultura.unizar.es": [17441], "jwebb.me": [2024], "vtmnieu.ws": [2024], "qiu.be": [2024], "www.medicare.gov": [20953], "litographs.co": [2024], "www.rhizome.org": [13920], "gis.ngdc.noaa.gov": [11121], "forum.t411.io": [15847], "encres-noires.squat.net": [21955], "cdn.visiblemeasures.com": [17856], "shib.raven.cam.ac.uk": [17332], "smartlingsource.com": [15060], "i.dell.com": [4317], "sstats.nikkei.com": [11442], "sd.aniart.com.ua": [19199], "wbginvestmentclimate.org": [8258], "jay1.co": [2024], "lsca.st": [2024], "*.audiko.net": [1384], "www.bit2c.co.il": [1951], "www.stiftung.htwk-leipzig.de": [7596], "getconnected.gmu.edu": [6529], "pradee.ps": [2024], "yourlogicalfallacyis.com": [18815], "www.elsevier.ca": [5176], "521d.me": [2024], "*.traction-digital.com": [16706], "jrl.ink": [2024], "bhrl.ga": [2024], "go.350.org": [2024], "pagerduty.com": [12361], "s.v9p.org": [2024], "*.utwente.nl": [17151], "lichfielddc.gov.uk": [20832], "products.office.com": [11780], "video.am730.com.hk": [19163], "img1.glassdoor.ca": [20258], "teletrust.de": [22119], "*.devx.com": [18171], "origin-www.blackberry.com": [2068], "my.codecoon.com": [3363], "www.elrippoisland.net": [19983], "www.simcity.com": [14871], "agogis.tocco.ch": [16600], "rqga.me": [2024], "jseltz.com": [2024], "chris.sh": [2024], "pcity.us": [2024], "publicaccess.barnet.gov.uk": [19317], "us.samsung.com": [14326], "pik.domofond.ru": [19876], "cnxs.ca": [2024], "www.hadithanswers.com": [7148], "jappix.org": [8530], "mlcruises.com": [2024], "www.cert.se": [2595], "stats.silentcircle.com": [14848], "vysl.in": [2024], "reseller.apple.com": [1151], "bit.fosk.it": [2024], "www.inductionsolutions.com": [8080], "www.hvb.de": [7654], "audits.uillinois.edu": [17034], "live.sport-express.ru": [21941], "eplus-gruppe.de": [4839], "kuibyshev.nso.ru": [21192], "webmail.kth.se": [8768], "txag.me": [2024], "library.leeds.ac.uk": [17403], "121e.co": [2024], "fordela.com": [5999], "who.int": [17999], "jiagu.qcloud.com": [13346], "trial.scene7.com": [14402], "wiki.typo3.org": [15959], "eqx-secure.smartadserver.com": [15049], "febra.me": [2024], "fotki.yandex.kz": [18743], "ntss.ws": [2024], "ilo.org": [7756], "cn-hangzhou.oss.aliyun-inc.com": [19142], "tmx.mn": [2024], "meldium.com": [10254], "*.careplace.org.uk": [19515], "www.compulab.co.il": [3534], "update.flightradar24.com": [20119], "asset-a.soup.io": [15235], "links.fca.org": [2024], "r24617304.sync.app.asana.com": [1265], "oneonline.bradford.gov.uk": [2282], "cart.rapidbuyr.com": [13614], "standeyo.com": [15439], "*.extreme-dm.com": [5517], "crsh.in": [2024], "cscportal.org.uk": [19736], "gdc.indeed.com": [8056], "cms.iprsoftware.com": [7800], "voscast.com": [17934], "man.freebsd.org": [6097], "hogn.xyz": [2024], "aesnet.org": [975], "support.iopus.com": [7788], "filter.mywot.com": [10841], "federalregister.gov": [5702], "ladesk.com": [9496], "121cc.us": [2024], "portal.datart.cz": [3998], "babyolo.gy": [2024], "foorumi.ovh-hosting.fi": [12205], "www.fxsitecompat.com": [20192], "selby.greenparty.org.uk": [6908], "ko.snstatic.fi": [14208], "tsb.plus": [2024], "widgets.membership.s-msft.com": [14114], "font.me": [2024], "conferences.avenirclimatique.org": [1472], "www.glyphicons.com": [6737], "izqciu.cl": [2024], "filr.stadtwerke-bamberg.de": [15433], "www.pgp.com": [12275], "getsoci.al": [2024], "bela.vc": [2024], "bill.mclaut.com": [20942], "wof-cluster.desy.de": [4386], "biologia.uniovi.es": [17282], "w.lbci.com": [2024], "www.infrequently.org": [8137], "www.agenpremium.com": [19108], "tw.terps.io": [2024], "digitaldollhouse.com": [4478], "ghosteryenterprise.com": [6614], "usrc.me": [2024], "spaz.us": [2024], "cobaltmania.com": [3339], "files.ezaxess.com": [5529], "agil.cf": [2024], "msmales.co": [2024], "support.stripe.com": [15594], "mail.phygee.com": [12686], "rtb-csync-blackhole.smartadserver.com": [15049], "lubw.baden-wuerttemberg.de": [19302], "*.businesscatalyst.com": [2474], "update.gitter.im": [6666], "pay02.zong.com": [18996], "13nmxyyh5smdprm6vtrlm4gh2zwm6wkc5ye3ehen.ipleak.net": [20571], "tu.am": [2024], "lantern.news": [2024], "static.frostwire.com": [6208], "numato.com": [11615], "counter.theconversation.edu.au": [16338], "ivx.tv": [2024], "breslow.im": [2024], "www.jobbik.hu": [8609], "api.snip2code.com": [15100], "ns1.balnet.ru": [19310], "ymcmbofficial.com": [18710], "api.analytics.mashape.com": [10053], "x.tinglrr.com": [2024], "hrng.us": [2024], "mrko.nl": [2024], "www.aescrypt.com": [19100], "item-funs.com": [2024], "s.jiho.co.jp": [2024], "haber.yandex.com": [18742], "ixirc.com": [20620], "dubb.biz": [2024], "vallfer.in": [2024], "link.whotv.com": [2024], "www.fastwebmedia.com": [5660], "amnesty.de": [1004], "movzeed.com": [18758], "dashband.islandsavings.ca": [8381], "*.helpserve.com": [8840], "platform.slack-edge.com": [15008], "www.elpais.com": [5126], "chimbio.com": [2024], "s3.postimg.io": [13024], "www.canarywatch.org": [2818], "*.craigsmith.net": [19714], "ease.edp.pt": [4888], "bo-staging.getjaco.com": [6590], "alelo.in": [2024], "mport.ua": [9799], "e5.xhamsterpremiumpass.com": [18607], "amurskaya-obl.beeline.ru": [1778], "www.coloradocollege.edu": [3443], "eucalyptus.com": [5387], "s.ecosoft.co.jp": [2024], "bldng.gd": [2024], "rut.gr": [2024], "mxlogic.com": [10126], "members.vpnreactor.com": [17591], "t.iskmrkt.in": [2024], "l.ivoxy.com": [2024], "go.dhmtl.ca": [2024], "go.fg.cz": [2024], "s.hauter.de": [2024], "s.hofer.at": [357], "kaliningrad.psbank.ru": [13231], "www.torrentdownload.ch": [22243], "siia.net": [15166], "rbm.me": [2024], "player.qbrick.com": [13345], "assets.www.npo.nl": [10988], "studiolb.co": [2024], "www.dnsdynamic.org": [4061], "djle.in": [2024], "stonewallcymru.org.uk": [21998], "rus.lostfilm.tv": [20876], "t4.qlogo.cn": [13355], "ql.e-diary.com": [2024], "g.patabbo.com": [2024], "pnpr.jp": [2024], "nrv.ee": [2024], "mtrz.us": [2024], "reb.fund": [2024], "egrvs.com": [2024], "*.adhands.ru": [579], "takeflight.me": [2024], "admin-assets.start.me": [15470], "cloudfront-assets.reason.com": [13696], "www.hertzequipsales.com": [7371], "yipit.co": [2024], "yourmechanic.com": [18816], "www.sabayon.org": [14275], "leetmedia.com": [9238], "radar.hackerspaces.org": [7138], "gatr.tk": [2024], "spontex.org": [15357], "biomedcentral.com": [1931], "tap2-cdn.rubiconproject.com": [14066], "chkytr.us": [2024], "me.assets.me": [2024], "m.siemens.com": [14830], "*.void.gr": [6897], "soyef.info": [2024], "lhost.link": [2024], "esl.education": [2024], "adc-srv.net": [19074], "app.gonightshift.com": [20287], "dot.j4ve1in.com": [2024], "gatewaysb.com": [6447], "witham-braintree.greenparty.org.uk": [6908], "login.qacomplete.smartbear.com": [21865], "idaas.iam.ibm.com": [7679], "www.ilxgroup.com": [7757], "la.tms.edu": [2024], "eipocimb.com": [2618], "ondemand.bl.uk": [2358], "kohalibrary.halton.gov.uk": [20334], "rod-g.us": [2024], "d4designstudios.com": [3991], "modsto.com": [2024], "scdistrib.com": [2024], "mmflint.me": [2024], "short.jo-co.com": [2024], "on.droidslk.com": [2024], "rgsguild.fr": [2024], "www.flibusta.is": [5895], "www.filetrip.net": [5781], "ci.sigxcpu.org": [14846], "imap.nlnetlabs.nl": [10980], "www.uni-stuttgart.de": [17260], "help.avast.com": [1469], "digikey.com": [4457], "s2.openrussia.org": [12077], "www.al-akhbar.com": [818], "dnfco.com": [2024], "kirkja.co": [2024], "meet.ioninteractive.com": [20561], "prtk.ca": [2024], "ssmf.edu.rosminzdrav.ru": [21674], "gosoapbox.com": [6765], "ed.stanford.edu": [15448], "lists.uu.se": [17153], "ba9.re": [2024], "dev.fitbit.com": [5867], "ger.ms": [2024], "adr.adriver.ru": [588], "i.sgt.gr": [2024], "*.roi.ru": [13504], "kldr.st": [2024], "www.buchhaus.ch": [19463], "mgame-f.netease.com": [11228], "montpelerin.org": [21016], "shop.buckscc.gov.uk": [19465], "www.hush.com": [7636], "trezor.io": [22282], "*.pixelx.de": [12771], "android-git.linaro.org": [9377], "exitco.uk": [2024], "goto.gpalmer.me": [2024], "elctrclassic.tk": [2024], "demo.richrelevance.com": [13927], "nkos.ms": [2024], "at.kitbs.com": [2024], "uconnect.tealiumiq.com": [16060], "*.nss.udel.edu": [17337], "secure.x-cart.com": [18583], "studentconduct.wustl.edu": [18089], "www.thelayoff.com": [22161], "erica.click": [2024], "ecigpros.com": [4876], "familyinfoservice.westsussex.gov.uk": [18305], "anymore.play-asia.com": [12828], "fract.link": [2024], "prtimes.jp": [21527], "*.bestbuy.com": [1832], "sites-auth.hubspot.com": [7599], "shop.whyopencomputing.fr": [22584], "www.alljoyn.org": [879], "forumwizard.net": [6041], "myfreeschoolmeals.firmstep.com": [20109], "highcharts.com": [7408], "akademy.kde.org": [8735], "jingxi.1688.com": [51], "dustn.ws": [2024], "ptagr.me": [2024], "chrisanthemums.com": [3112], "maxx.link": [2024], "155p6glaoln7dzjwz4s5a2dth4v1kedibqc0wefa.ipleak.net": [20571], "terveysportti.org": [16204], "epson.com": [5318], "prnt.at": [2024], "security.stanford.edu": [15448], "www.naiin.com": [11053], "bestpractical.com": [1838], "60.rkn.gov.ru": [13971], "networkedblogs.com": [11312], "webmail.parkrun.com": [12438], "afd.calpoly.edu": [2764], "bb.cdn.gmru.net": [6329], "u.folkano.com": [2024], "www.exaccess.ru": [12821], "webmon.com": [18227], "o.ayie.net": [2024], "spectator.sme.sk": [14198], "dav.jianguoyun.com": [8580], "atb-online.ru": [1335], "ipv6.tunnelbroker.net": [16905], "autodiscover.merton.gov.uk": [10311], "s119.cnzz.com": [3328], "hacklab.to": [7123], "oar.uwm.edu": [17379], "digital.rg.ru": [21646], "cssiw.wales.gov.uk": [18051], "www.cs.cornell.edu": [3676], "webmail.phpnet.org": [12281], "illiniunion.illinois.edu": [17346], "wowjs.zamimg.com": [18878], "opendatacity.de": [21271], "09.imgmini.eastday.com": [5010], "evo.com": [5452], "images.yandex.kz": [18743], "cdn3.xvideosx.tv": [18627], "stats.zaehlwerk.net": [18872], "blog.diasporafoundation.org": [4438], "apps.secure.me": [14552], "ssaportal.parature.com": [12425], "shop.keepkey.com": [20702], "neba.nasa.gov": [10909], "hypo.neos.eu": [10941], "shopping.unistream.ru": [17291], "forms.business.yahoo.co.jp": [18730], "backend.golem.de": [6804], "5.vgc.no": [17569], "helpvote.us": [2024], "mydundeeaccount.dundeecity.gov.uk": [4794], "webalert.jp": [18149], "go.srcr.nl": [2024], "0bin.net": [2], "mgm.congstar.de": [3580], "www.security-database.com": [14581], "mfund.link": [2024], "1ad0xi83d7te2a5xyusjrlekvzcr3kuhwo9rvw17.ipleak.net": [20571], "www.vis.occrp.org": [11648], "fus.news": [2024], "mmlt.me": [2024], "rus-asean.tpprf.ru": [22260], "soros.org": [11944], "verywell.com": [22449], "admin.govdelivery.com": [6846], "ads2.where.com": [18334], "mfin.permkrai.ru": [21390], "totalrecall.com": [1919], "genomemedicine.biomedcentral.com": [1931], "dev.modern.ie": [10556], "ve.godaddy.com": [6755], "gaona.work": [2024], "www.miramax.com": [10477], "login.proboards.com": [13158], "mylimehouse.west-norfolk.gov.uk": [22563], "hsss.hsbc.co.uk": [20422], "fmc.vc": [2024], "roofclimb.com.au": [21669], "libav.org": [9306], "hio.ca": [2024], "apotea.se": [1129], "n.thaniel.co.uk": [2024], "ravihandika.com": [2024], "abo.mondediplo.com": [10578], "accel-ppp.org": [19046], "replay.pokemonshowdown.com": [12901], "cmsp.mobile.unionpay.com": [17281], "lhse.co": [2024], "2rog.at": [2024], "ww1936.smartadserver.com": [15049], "imagesc.btol.com": [1645], "rtb.photos": [2024], "www-apps.hillingdon.gov.uk": [7413], "gonol.es": [2024], "masterh3.adriver.ru": [588], "eetimes.com": [4900], "www.ponyfoo.com": [21460], "www15.smartadserver.com": [15049], "tric.es": [2024], "todd.in": [2024], "blog.xsolla.com": [18685], "izea.com": [7884], "fnly.co": [2024], "alternative-settings.educ.cam.ac.uk": [17332], "jd.hk": [8437], "wtgrants.wellcome.ac.uk": [22559], "projetos.ossystems.com.br": [11716], "pdf.datasheetcatalog.com": [4205], "chcemvediet.sk": [3042], "bonita.illuminateed.com": [20494], "www.ebanking.cimbthai.com": [2620], "fonder.ki.se": [8743], "mbi.mbnet.fi": [9734], "traiteur.coop.ch": [3647], "marketplace.org": [10026], "gspp.berkeley.edu": [17329], "hpol.it": [2024], "umd1.mycdn.me": [10866], "quch.io": [13396], "interface.sina.cn": [14903], "v.suntravel.xyz": [2024], "a.company-target.com": [3511], "test.drive.ru": [19897], "pour.5euros.com": [2024], "www.vodafone.ie": [17902], "www.tutanota.de": [16923], "*.wikia.com": [18385], "hvst.co": [2024], "contributors.debian.org": [4263], "jhrp.oxfordjournals.org": [12222], "static.nexcess.net": [11396], "downloads.powerdns.com": [13036], "intranet.uow.edu.au": [17434], "coursefinder.northyorks.gov.uk": [21161], "www.wintotal.de": [18449], "cntrvlr.com": [2024], "piratebay.site": [21524], "mv-azeroth.cursecdn.com": [3927], "ozcards.com": [2024], "www.sourcefabric.org": [15248], "m80.co": [2024], "sitemanager2.adicio.com": [642], "jserv.es": [2024], "creocommunico.com": [7509], "jobs.leeds.gov.uk": [20799], "on.einstein.is": [2024], "r24820226.sync.app.asana.com": [1265], "ma2.twimg.com": [16949], "www.101weiqi.com": [17], "securelist.com": [14555], "hometheaterreview.com": [7483, 7484], "*.richarddawkins.net": [13929], "sensiolabs.com": [14648], "i.rahidelvi.ca": [2024], "www.give.berkeley.edu": [17329], "shftwa.co": [2024], "partner.justeat.nl": [20671], "shouji.2345.com": [98], "www.tolvutaekni.is": [16614], "seattle.gov": [3194], "mypbx.primus.ca": [13112], "search.lbl.gov": [9079], "news.osu.edu": [11797], "ccc.jd.com": [8435], "*.asada.gov.au": [405], "tomv.nl": [2024], "thedo.do": [2024], "oaa.onlinesbi.com": [11911], "mathinstitutes.ima.umn.edu": [17356], "placecrew.com": [2024], "ad.3.cn": [135], "4-t.imgbox.com": [7997], "basket-nba.lemonde.fr": [9204], "esia.rkn.gov.ru": [13971], "freeway.ju.taobao.com": [16015], "opscode.com": [12097], "sourcesup.renater.fr": [13826], "spkrb.de": [21937], "www.adaptec.com": [610], "l.webdo.tn": [2024], "km.saha.vn": [2024], "ricochet.com": [13934], "co.great.estate": [2024], "adsales.rakuten.co.jp": [13594], "ahr.oxfordjournals.org": [12222], "introversion.co.uk": [8297], "www.languageperfect.com": [9160], "goemerchant.com": [6758], "go.eboy.com": [2024], "chat1.mylivechat.com": [10853], "tp.wpml.org": [18013], "www.ce.jhu.edu": [16370], "vn.webike.tk": [2024], "yelp.com.hk": [18766], "cmdl.us": [2024], "factus.ru": [20069], "gg.tlgrm.ru": [22221], "on.ktvb.com": [2024], "monitor.bvg.de": [1605], "*.purdue.edu": [13279], "www.marc-stevens.nl": [9989], "codest.ag": [2024], "dropboxteam.com": [4763], "melvyl.worldcat.org": [18536], "go.jess.mk": [2024], "kona32.kontera.com": [8991], "assets-jpcust.jwpsrv.com": [8717], "megg.io": [2024], "www.kch.nhs.uk": [10953], "shop.adapteva.com": [611], "www.bibl.liu.se": [9096], "www.codeship.com": [3378], "blul.at": [2024], "isc.hk": [2024], "ldstr.me": [2024], "seoul.usembassy.gov": [22406], "indonesia.rbth.com": [21596], "dashboard.twinprime.com": [16953], "asp.io": [2024], "url.mik.nu": [2024], "mozakdesign.us": [2024], "wicnss.fns.usda.gov": [17299], "www.lumigon.com": [9674], "egorievsk.europaplus.ru": [20034], "www.mosoblgaz.ru": [21024], "www.printm3d.com": [13117], "buywithconfidence.gov.uk": [19484], "caller.com": [2768], "pic.nudefap.com": [2024], "store.f-secure.com": [5533], "media.aclufl.org": [297], "a.plnk.co": [2024], "www.islamicfinder.org": [8379], "games.tlgrm.ru": [22221], "esusd.illuminateed.com": [20494], "www.upload.af": [22388], "www.puphpet.com": [21542], "peertech.org": [12559], "a1afastcash.com": [264], "ssl.images-createspace.com": [7985], "www.mkk.com.tr": [9770], "*.parrable.com": [12441], "www.iei.liu.se": [9097], "get.no": [20237], "www.hgst.com": [7043], "webapps.bart.gov": [1708], "richmond.firmstep.com": [20109], "*.nap.edu": [16275], "mj.taobao.com": [16015], "snel.derekk.nl": [2024], "sou.gratis": [2024], "www.bodum.com": [2190], "newrepublic.com": [11350], "lane-beta.stanford.edu": [15448], "augsburg.worldcat.org": [18536], "www.trakt.tv": [22269], "compass-ssl.microsoft.com": [10396], "ver.sh": [2024], "on.dujour.com": [2024], "tpfrb.dk": [16696], "melkweb.frieslandcampina.com": [2797], "www.tu-hamburg.de": [15942], "*.lboro.ac.uk": [9199], "videotass.cdnvideo.ru": [19536], "status.campaignmonitor.com": [2794], "drift.to": [2024], "docs.cloud.datapipe.com": [4203], "t.chzbgr.com": [3060], "trasy.docelu.pl": [4604], "subscriberhelp.govdelivery.com": [6846], "freshde.sk": [2024], "trac.transmissionbt.com": [16751], "gmoserver.jp": [6327], "zugaina.com": [19018], "rpkr.co": [2024], "northernillinois.imodules.com": [7766], "www.bernina-solothurn.ch": [1827], "helk.im": [2024], "mrkt.co.in": [2024], "hub.togetherjs.com": [16605], "www.boxwoodtech.com": [2279], "*.polldaddy.com": [12926], "nrlc.cc": [2024], "snf.link": [2024], "tblk.co": [2024], "static2cdn.hubspot.com": [7599], "s.ymyzk.com": [2024], "www.shazam.com": [14750], "www.system-rescue-cd.org": [22073], "9oo.pl": [2024], "www.register4less.com": [13794], "i.gyazo.com": [7019], "x.ligatus.com": [9356], "fp-fami.ly": [2024], "www.pokerstars.com": [21451], "a.fw.my": [2024], "qtcloudservices.com": [13366], "carlos.me": [2024], "dawanda.me": [2024], "iceintranet.admin.cam.ac.uk": [17332], "eonli.ne": [2024], "lpro.io": [2024], "flap.me": [2024], "l.dalahavens.se": [2024], "insight.adsrvr.org": [688], "detail.co": [2024], "www.r00tz.org": [13448], "www.ortho.hku.hk": [20387], "admarkt.marktplaats.nl": [10034], "dragndropbuilder.com": [4731], "m20.mx": [2024], "editola.com": [5076], "jobs.redbridge.gov.uk": [13742], "hku.me": [2024], "chamber.350.org": [140], "seal.wosign.com": [18483], "medarbejdere.kk.dk": [8748], "escr.it": [2024], "*.artstation.com": [1248], "my.pay.qq.com": [13329], "feedbackify.com": [5722], "www.10gen.com": [22], "ma.boell.org": [19422], "kt81.net": [2024], "yq.aliyun.com": [868], "ndunn.ca": [2024], "bbs.dji.com": [4029], "bc.edu": [1528], "cog.mect.cuhk.edu.hk": [2704], "dcly.io": [2024], "go.hood.ie": [2024], "mcbmx.biz": [2024], "bpgtp.clp.com.hk": [2636], "msp.f-secure.com": [5533], "ifs.io": [2024], "blog.synology.com": [15803], "steven.im": [2024], "diffoscope.org": [4451], "md03.plex.tv": [12854], "www.europaplus.ru": [20034], "c3.thejournal.ie": [16299], "go.pga.com": [2024], "test-events.kcrw.com": [20699], "downloads.sms.cam.ac.uk": [17332], "login.recruit.naukri.com": [11146], "go.trakt.tv": [2024], "jpfara.co": [2024], "connect.globalcapacity.com": [6704], "ostrava.idnes.cz": [20483], "egy.im": [2024], "nycfc.us": [2024], "www.in2code.de": [8032], "ocws.us": [2024], "img2.thejournal.ie": [16299], "rip.city": [2024], "eriga.lv": [13936], "cluck.it": [2024], "www.overviewproject.org": [12203], "sphotos-d.ak.fbcdn.net": [5689], "sipgate.co.uk": [14922], "fahrradfoerderung.vcd.org": [17560], "lektorium.tv": [9257], "ahouse.me": [2024], "www.backpack.tf": [1624], "2.coubur.com": [2024], "wrs.sg": [2024], "electionmentions.com": [19977], "help.cloudforge.com": [3286], "s26.postimage.org": [13024], "socialdigidu.de": [2024], "jren.info": [2024], "s.rana.at": [2024], "parent.osu.edu": [11797], "j.kainy.cn": [2024], "sina.cn": [14903], "www.libreplanet.org": [9329], "bbits.in": [2024], "www.garagegames.com": [6438], "pic.sogou.com": [15168], "www.hertz.ae": [7369], "mldlink.info": [2024], "rollbar.com": [14012], "clkmon.com": [3271], "pensionscoach.cash.ch": [19522], "gu.twimg.com": [16949], "url.waqiang.com": [2024], "ttzn.co": [2024], "fundrazr.com": [6236], "support.unlocator.com": [22380], "roa.rs": [2024], "kaz.tips": [2024], "sc-mall.jd.com": [8434], "r24820164.sync.app.asana.com": [1265], "bitcoinplus.com": [2007], "go.odomera.com": [2024], "s.afisha.ru": [19107], "www.cvent.com": [3941], "login.mobile.de": [21001], "funque.us": [2024], "gnsys.info": [2024], "audi.us": [2024], "a8.sphotos.ak.fbcdn.net": [5689], "nutsbolts.co": [2024], "www.eduncovered.com": [5063], "www.iwantclips.com": [7873], "tjs.sjs.sinajs.cn": [14909], "abid.es": [2024], "pad.systemli.org": [15830], "hywr.us": [2024], "www.unian.info": [22369], "www.gmplib.org": [6328], "www.tros.nl": [16836], "cada.at": [2024], "rhcdc.cc": [2024], "eclkmpsa.com": [19949], "a2hosting.com": [266], "www.servercraft.co": [14674], "seefun.town": [2024], "mcohn.me": [2024], "hosting.uaa.alaska.edu": [17323], "app-portal.volexity.com": [17915], "*.lookdumbass.com": [9607], "robrt.co": [2024], "www.veronmaksajat.fi": [17721], "cathca.re": [2024], "mirrorservice.org": [10485], "mappe.istella.it": [8395], "uke.li": [2024], "wsmith.us": [2024], "dot.se-1.net": [2024], "www.powerlinemanmag.com": [13049], "plusgirot.se": [12869], "eastday.com": [5010], "frnd.su": [2024], "bibbs.li": [2024], "kizlyar.startsmile.ru": [21980], "aproz.migros.ch": [10417], "mitre.org": [10497], "www.thechangelog.com": [16333], "static.hummingbird.me": [7620], "digital-forensics.sans.org": [14128], "www.hangerproject.com": [20337], "www.create-dmgmedia.co.uk": [3767], "vw.hdvlink.com": [20359], "dntly.com": [4597], "www.census.gov": [17108], "gic3.mycdn.me": [10866], "intraweb.marion.ohio-state.edu": [11798], "vdfn.co": [2024], "isc.sans.org": [14128], "digitalbond.com": [4467], "f.blickamabend.ch": [2091], "promo.awempire.com": [700], "www.deathmask.net": [4254], "eecs.umich.edu": [17354], "madewith.unity.com": [17310], "seatgen.law.yale.edu": [18732], "wsw.play-asia.com": [12828], "cloudbees.com": [19622], "zooko.com": [18998], "cabr.us": [2024], "mji.me": [2024], "givetosyr.com": [2024], "u.s.kqed.net": [8764], "pl.godaddy.com": [6755], "dwsn.co": [2024], "spectrumbusiness.net": [15319], "fnsdr.com": [2024], "*.communigator.co.uk": [3500], "ju42.com": [2024], "www.streamuk.com": [22008], "gongyi.youku.com": [18804], "woods.to": [2024], "bastamag.net": [19325], "www.rkhd.in": [21657], "enr.ms": [2024], "slark.gq": [2024], "www.etsi.us.es": [17502], "mlfa.org": [9773], "arb.so": [2024], "arb.sa": [2024], "fotky.sme.sk": [14198], "image.ahnlab.com": [781], "video.cc.netease.com": [11228], "lpb.io": [2024], "ale.solutions": [2024], "holy.rocketbank.ru": [13994], "arb.st": [2024], "www.ahorroentinta.com": [16601], "www.promote.ie": [4500], "campusassist.sydney.edu.au": [22063], "www.houten.nl": [11172], "*.globalsources.com": [6714], "www.mngt.waikato.ac.nz": [17431], "pix.fr.eu.criteo.net": [3798], "newint.org": [11337], "tsrf.co": [2024], "www.tucowsdomains.com": [16887], "cdn.animenewsnetwork.com": [19201], "www.datacentrumgids.nl": [4191], "xprize.org": [18584], "www.commonplacebooks.com": [3491], "eag.gr": [2024], "community.bistudio.com": [2195], "www.georgiegirl.com.au": [6533], "d.ynam.it": [2024], "ehpd.gsfc.nasa.gov": [10909], "fark.com": [5653], "i.vvall.com": [2024], "dyntrdr.co": [2024], "toppreise.ch": [22237], "andyc.us": [2024], "www.w-tune.com": [18202], "bl.ifm.io": [2024], "johnny.loak.org": [2024], "www.ansible.com": [1093], "images.switchadhub.com": [15764], "live.wifidb.net": [18367], "www.kkbox.com": [8749], "nvcc.edu": [11627], "go.wisco.tech": [2024], "merlot.me": [2024], "calendario.cc": [2754], "www.confianzaonline.es": [3571], "www.purehacking.com": [13283], "ninjoservices.dwd.de": [19911], "*.networks.nhs.uk": [10953], "bbc.co.uk": [1524, 19331], "events.tpprf.ru": [22260], "www.farehamandgosportccg.nhs.uk": [10953], "spectrum.jino.ru": [8589], "hood.ee": [2024], "megworld.co.uk": [10232], "stabm.ag": [2024], "mygov.elmbridge.gov.uk": [5166], "visindavefur.hi.is": [7049], "discuss.zetetic.net": [18951], "www.appsites.com": [1166], "images.ddlvalley.rocks": [19787], "webf.in": [2024], "pt.videogamer.com": [17782], "bnlawfirm.co": [2024], "fhs.se": [5560], "applygene.com": [2024], "api.proofpositivemedia.com": [13199], "ole.hs-karlsruhe.de": [7587], "cmkra.us": [2024], "pda-passport.yandex.kz": [18743], "teampace.co": [2024], "esolangs.org": [5348], "on.adn.com": [2024], "pow.li": [2024], "faac.ec": [2024], "rcare.co": [2024], "aumigforu.ms": [2024], "thepiratebay.se": [16306], "pollinghelp.cit.cornell.edu": [3676], "l.unplayer.com": [2024], "addthis.com": [626], "10g8rkwt7n1humbermiys9fjen43gjg67my2qtgq.ipleak.net": [20571], "apollon.uio.no": [17414], "z.ad1.me": [2024], "reklama.1188.cz": [2024], "master.apan.net": [387], "new.eastsussex.gov.uk": [19938], "go.cbs4indy.com": [2024], "drinkc.sx": [2024], "origin-enterprise.omniture.com": [11842], "on.basf.com": [2024], "northdistrict.kavkaz-uzel.ru": [20694], "www.steaknshake.com": [15513], "manage.zerigo.com": [18934], "rackspace.com": [13566], "www.gifgratis.net": [6623], "jordans.ws": [2024], "blog.blocktrail.com": [2104], "marketing.dell.com": [4317], "opsnl.tk": [2024], "forum.inosmi.ru": [20538], "c1.ifengimg.com": [20487], "opvn.nl": [2024], "youth.khabarovskadm.ru": [20708], "cluedumps.mit.edu": [9761], "bistro.sk": [1507], "meshkit.weimarnetz.de": [22558], "hklive.islamtoday.net": [8372], "6ep.ru": [2024], "mini-dweeb.org": [4784], "www.sugarlabs.org": [15646], "tbear.me": [2024], "www.4gifs.com": [6015], "tgq8.com": [2024], "node2.bbcimg.co.uk": [19333], "jpumc.org": [2024], "chita.startsmile.ru": [21980], "style.litmuscdn.com": [9484], "visaeurope.ch": [17847], "peterborough.spydus.co.uk": [21952], "link.boipr.com": [2024], "peterbroderick.com": [12620], "labs.w3.org": [17980], "hidekisaito.com": [7396], "www.smartauction.biz": [914], "xml.yandex.com.tr": [18740], "statistik-gallup.net": [15905], "cryptoparty.org": [3877], "8.wfla.com": [2024], "cp-filin.mail.ru": [9891], "imena.ua": [20501], "www.globalsign.com.*": [6700], "oauth-admin.life.ru": [20835], "cba.co": [2024], "link.b-mind.pl": [2024], "i.nu11.co": [2024], "dn-firweb.qbox.me": [13344], "housing.osu.edu": [11797], "on.rsd.it": [2024], "subscribe.sloanreview.mit.edu": [9763], "cdn.myfonts.com": [10804], "rawk.es": [2024], "www.googlemail.com": [6827], "linkz.click": [2024], "my.o3.ua": [21219], "www.hollywoodlife.com": [7465], "b.df2.co": [2024], "tekno.asia": [2024], "ccr-abcam.cancer.gov": [2819], "sb-ssl.google.com": [6818], "p.mediamath.com": [2024], "nom.ski": [2024], "wit.ai": [18468], "bit.cu.cc": [2024], "luna1.co": [20889], "go.spire.me": [2024], "mful.tv": [2024], "soh.ms": [2024], "law.stanford.edu": [15448], "st-en.jd.com": [8436], "go.ajayjp.com": [2024], "lsbbugs.linuxfoundation.org": [9427], "app.college.police.uk": [19645], "lyricau.axonify.com": [1502], "humantrafficking.csmonitor.com": [19737], "data1.bell.ca": [1792], "gobrn.co": [2024], "sjobs.brassring.com": [19443], "www.colors-il.com": [3447], "ajax.li": [2024], "edoha.us": [2024], "assistlyhelper.mojang.com": [9789], "scottevest.com": [14460], "www.fundacion.uned.es": [17248], "*.piriform.com": [12759], "console.adsnative.com": [19091], "members.zipcar.com": [18973], "mx.isidewith.com": [20466], "bar.love.mail.ru": [9891], "www.relevate.ru": [13815], "forum.sparkfun.com": [15291], "nciphub.org": [21096], "c.katjezek.com": [2024], "mth.fyi": [2024], "cyberport.hk": [3967], "*.intel.co.uk": [8207], "*.business2community.com": [2473], "www.wpml.org": [18013], "m.sockassist.com.au": [16171], "cmf.li": [2024], "wocreative.co": [2024], "api.open.uc.cn": [17003], "blog.copilotgps.com": [19686], "agir.april.org": [1171], "www.hydraproxy.party": [20454], "jarinmart.in": [2024], "relayurl.xxxbunker.com": [18699], "on-web.fr": [11846], "www.virtualboximages.com": [17834], "www.popin.cc": [12954], "www.balabit.com": [1647], "www-pw.cr0.org": [3746], "itkdl.biz": [2024], "l.uccsda.org": [2024], "libtoxcore.so": [9337], "gtar.pt": [2024], "sfg.ly": [2024], "b-s.ee": [2024], "consumosocial.catracalivre.com.br": [2917], "nasaspaceflight.com": [10910], "statuscake.com": [15502], "www.fenland.gov.uk": [5735], "corwm.decc.gov.uk": [19795], "liste.fe.linux.it": [9419], "ina.unizar.es": [17441], "accounts.google.co.*": [6821], "media.almayadeen.net": [19157], "youtube.my.to": [2024], "enpass.io": [5269], "static-01-www.icij.org": [7689], "whis.tl": [2024], "www.hellolife.net": [7296], "i.ligatus.com": [9356], "amo.li": [2024], "menu.sakh.com": [21719], "www.hivos.org": [7436], "oxfam.org.uk": [12221], "advent.com": [706], "img0.dditscdn.com": [4228], "tech.wikimedia.org.uk": [18388], "ns6.theregister.co.uk": [22182], "www.figshare.com": [5772], "ethicspoint.com": [5370], "jobtracker.me": [2024], "conference.educ.cam.ac.uk": [17332], "wesllendj.tk": [2024], "partner.m3connect.de": [20900], "www.kirklees.gov.uk": [8929], "www.etproxy.com": [5516], "www.rockvalleycollege.edu": [13992], "website.ws": [18183], "cyrilametod.rtvs.sk": [13536], "glnr.in": [2024], "blog.gigaserver.cz": [14651], "a3.sphotos.ak.fbcdn.net": [5689], "lists.clearlinux.org": [3233], "sakhalin-region.auto.ru": [19276], "*.grid5000.fr": [6931], "qs.tc": [2024], "bit.hb.tc": [2024], "khalud.tk": [2024], "ring.cx": [13947], "netzausbau.de": [2445], "maid.tw": [2024], "saratov.startsmile.ru": [21980], "cody.unizar.es": [17441], "rug.nl": [17342], "www.gitignore.io": [20254], "www.snagajob.com": [15088], "www.tvcom-tv.ru": [22324], "artistscorner.jamendo.com": [8512], "app.fosshub.com": [20141], "controllerpro.com": [3625], "www.dreamspark.com": [4744], "www.lib.uchicago.edu": [17334], "netiq.com": [11234], "audilatam.com": [2024], "www.epa.admin.ch": [22061], "development.syllable.org": [22064], "cesk.ml": [2024], "*.mara.gov.au": [11787], "youcanbook.me": [18794], "printfection.com": [13119], "dom.lenta.ru": [20809], "tothis.info": [2024], "dnce.co": [2024], "one.southend.gov.uk": [15261], "tms.alicdn.com": [853], "www.roseurosud.org": [21672], "www.msi-shop.de": [9805], "www.css-security.com": [3891], "u.outbrain.com": [12182], "www.identrust.com": [7936], "careerbuildercareers.com": [19513], "barclays.co": [2024], "chat.majordomo.ru": [9914], "r24820165.sync.app.asana.com": [1265], "secure.nationalarchives.gov.uk": [11103], "info.bankofamerica.com": [1669], "www.mitsubishi.com": [10499], "n4.hitravel.xyz": [2024], "www.airbnb.de": [793], "commande.easy-hebergement.fr": [5024], "gmglam.me": [2024], "arcadeflex.com": [5216], "p.liadm.com": [7797], "fbinc.co": [2024], "mlr.baden-wuerttemberg.de": [19302], "accrualnet.cancer.gov": [2819], "mobile.hillingdon.gov.uk": [7413], "ustyuzhna.startsmile.ru": [21980], "www.7joycasino.com": [20654], "tglb.it": [2024], "deal.canvas.my": [2024], "malechkino.beeline.ru": [1778], "liemph.us": [2024], "www.avoinyliopisto.fi": [19289], "git.decadent.org.uk": [4268], "mingqi.1688.com": [51], "s-media-cache-ak1.pinimg.com": [12724], "stat.prostovpn.org": [21517], "cas.inria.fr": [8161], "google-melange.com": [6826], "manero.me": [2024], "sw.csiac.org": [2684], "mbg.is": [2024], "freelosophy.tiscali.it": [16572], "chc.li": [2024], "i.yldbt.com": [18773], "www.e-mail.sachsen.de": [14279], "origin.cdbaby.com": [19531], "nkor.de": [2024], "bittorrent.org": [2046], "mail.deathmask.net": [4254], "ova.la": [2024], "travel.openbank.ru": [21267], "my-beta.variomedia.de": [17658], "oneonline.monmouthshire.gov.uk": [10598], "www.svz-bw.de": [22054], "ppmdeals.co": [2024], "rsnbl.us": [2024], "detnet2-staging.intevation.de": [8293], "www.vott.ru": [22500], "rettighedsalliancen.dk": [13888], "sunyadk.com": [2024], "blaiz.be": [2024], "stec-t11.xhcdn.com": [18605], "www.sendgrid.com": [14638], "img-sporx.mncdn.com": [10516], "jwchat.org": [8478], "helponclick.com": [7304], "nizhnevartovsk.tpprf.ru": [22260], "bsgd.me": [2024], "s.v6ak.com": [2024], "*.yelp.at": [18766], "abakan.psbank.ru": [13231], "www.odir.org": [12040], "*.entertainment.ie": [5283], "www.schoolpartnership.wustl.edu": [18089], "k8t.ru": [2024], "www.cvis.vutbr.cz": [17609], "iibuy.com.au": [7960], "ahead.org": [19115], "fr.libreoffice.org": [9327], "www.oeffentliche-it.de": [11767], "sgd.tocco.ch": [16600], "shnsmn.co": [2024], "developers.adultwork.com": [698], "app.nodeny-plus.com.ua": [21149], "historytoday.com": [7423], "pda.leo.org": [9270], "civicscience.com": [3203], "homesta.rs": [2024], "rki.lt": [2024], "mydigipass.com": [10869], "uni-hub.us": [2024], "www.xively.com": [18669], "commerce.ti.com": [16225], "notsc.co": [2024], "hezenparastin.com": [7385], "orkanmin.or.is": [21289], "www.lanyrd.com": [9166], "www.nattstad.se": [11135], "www.trezor.io": [22282], "mcitours.us": [2024], "adserv.quality-channel.de": [15341], "c.angen.me": [2024], "www.onthemedia.org": [11856], "teachr.co": [2024], "gis-gji.nso.ru": [21192], "tro.pe": [2024], "i4u.kr": [2024], "petcare.space": [2024], "missional.it": [2024], "plaza.rakuten.co.jp": [13593], "www.upay.co.uk": [17468], "www.dpbolvw.net": [3484], "partenaires.amazon.fr": [19176], "api01.newegg.com": [11356], "gozamm.life": [2024], "www.southwark.gov.uk": [15264], "x.suntravel.xyz": [2024], "tinhte.vn": [16549], "www.emeraldinsight.com": [5197], "lex.im": [2024], "www.federalregister.gov": [5702], "ylaw.us": [2024], "linguee.com": [9390], "faiusa.org": [5977], "theverge.com": [16286], "economics.unian.ua": [22369], "tbo.mx": [2024], "cmln.co": [2024], "control.freefind.com": [6103], "modsci.co": [2024], "nserver.ru": [11588], "www.airvpn.org": [792], "bacil.io": [2024], "qr.gruma.de": [2024], "kngo.co": [2024], "uk.reuters.com": [13893], "people.collabora.co.uk": [3418], "rsrch.co": [2024], "board.bs.to": [2459], "www.golos-ameriki.ru": [20285], "jp.reuters.com": [13893], "annie.cpiz.net": [19708], "www.xbetsport.com": [18638], "fkick.co": [2024], "cwcc.io": [2024], "languageediting.nature.com": [11140], "bidz.com": [1877], "wcd.me": [2024], "oe.cr": [2024], "www.iceheberg.fr": [7910], "tae.is": [2024], "toolchain.gitbook.com": [6655], "verisign.com": [17712], "schools.sheffield.gov.uk": [14755], "genius.com": [20226], "marc.info": [9721], "canzps.georgetown.edu": [6531], "www.indiemerchstore.com": [8075], "cdn.washingtonexaminer.biz": [16287], "artpractical.com": [1243], "spunq.oe24.strgstatic.com": [11766], "g-5600.play-asia.com": [12828], "g.asian4fun.com": [2024], "codeimprv.co": [2024], "wuwei.jd.com": [8434], "neko.me": [2024], "soutez.vshosting.cz": [17599], "hdp.rocks": [2024], "equipment.nottingham.ac.uk": [11567], "s4ve.me": [2024], "hexgeo.co": [2024], "www.gemeentenoordenveld.nl": [11172], "purduealumni.org": [13277], "ssl.zoho.co.jp": [18983], "cryptopals.com": [3876], "blinddesign.nl": [2093], "login.dagbladet.no": [4103], "vott.ru": [22500], "mayas.us": [2024], "cso-yarkovo.admtyumen.ru": [19082], "piliapp.com": [12706], "dochelp.debian.net": [4261], "hms.to": [2024], "hz.youku.com": [18804], "miles-and-more-kreditkarte.com": [10431], "www.facedetection.com": [20065], "blog.honeynet.org.mx": [20400], "emc.com": [4921], "rosinterbank.dengisend.ru": [4344], "amazonsupply.com": [961], "help.ancestry.com": [1035], "in.boell.org": [19422], "m.klops.ru": [20735], "www.iglo.tk": [3536], "my.charitywater.org": [3017], "codyhouse.co": [19640], "pmm.nasa.gov": [10909], "www.eventsforce.net": [20040], "federatedmedia.net": [5712], "tomm.my": [2024], "jeatdisord.biomedcentral.com": [1931], "ugc.futurelearn.com": [6261], "ston.tc": [2024], "mirrors.ocf.berkeley.edu": [17329], "account.cyanogenmod.org": [3947], "refer.istockphoto.com": [20595], "cms.citilink.ru": [19594], "smnz.co": [2024], "l.lx4.us": [2024], "browse.dict.cc": [4442], "hndshk.in": [2024], "ay.md": [2024], "nwa.deals": [2024], "co-optim.us": [2024], "vagosec.org": [22422], "paste.openttdcoop.org": [12018], "www.nawaat.org": [11154], "l.nailbook.jp": [2024], "*.nationalcapital.gov.au": [11104], "strana.ua": [22001], "realtime.email": [13685], "drugs-forum.com": [4772], "www.douban.com": [4701], "*.nmugroup.com": [10981], "images.tlasecure.com": [22218], "windriver.com": [18428], "blog.getsatisfaction.com": [6601], "wrk.hk": [2024], "link.co.pl": [2024], "9f.to": [2024], "www.lzone.de": [20898], "38.de": [156], "appstore.alipay.com": [864], "s124.cnzz.com": [3328], "www.pv.gov.sa": [14368], "womble.decadent.org.uk": [4268], "blog.malwarebytes.org": [9941], "wsm.la": [2024], "toolbar.vip.symantec.com": [15780], "modernpgp.org": [10559], "mehcore.com": [2024], "stat.profintel.ru": [21507], "translate.yandex.by": [18739], "mojang.com": [9789], "brokun.link": [2024], "ch.armfx.com": [2024], "www.bayfiles.com": [1724], "gapt.ch": [2024], "www.fldemo.nsf.gov": [11098], "webanalytics.acs.org": [974], "www.billdesk.com": [1906], "atlr.ec": [2024], "manage.pro-market.net": [13157], "fahrinfo.bvg.de": [1605], "www.mercycorps.org": [20966], "www.dragonflybsd.org": [4734], "my.usc.edu": [17366], "www.justiz.sachsen.de": [14279], "www.sipsolutions.net": [14184], "pckeyboard.com": [21370], "www.freifunk.net": [6170], "dnzn.gr": [2024], "www.temp-mail.ru": [16176], "beta.fastmail.com": [5677], "sierraclubgreenhome.com": [14832], "geb.xyz": [2024], "shop2give.us": [2024], "thankyoucard.citi.com": [3171], "religionnews.com": [13817], "parkingin.sheffield.gov.uk": [14755], "gudiol.info": [2024], "lsvr.engineering.osu.edu": [11797], "www.joycasino2.com": [20654], "www.gov.uk": [6344], "go.tfmes.com": [2024], "tinychat.com": [16556], "e.dianping.com": [19830], "piotr.flightradar24.com": [20119], "hilik.us": [2024], "www.bayphoto.com": [1732], "fcw.com": [5550], "ctychr.ch": [2024], "x5.hitravel.xyz": [2024], "x.translateth.is": [16746], "rjn.tw": [2024], "www.biofitt.com": [1937], "partnernaurovni.sk": [12453], "staff.tumblr.com": [16898], "webui_55571204.asana.com": [1265], "gph.li": [2024], "elizabethtown-kctcs.edusupportcenter.com": [19962], "talentcommunity.bnymellon.com": [19420], "l.meon.be": [2024], "cdn-t.omsnative.de": [11673], "www.vtrenz.net": [14865], "ngfl.northumberland.gov.uk": [21160], "dediserve.com": [4280], "login.f-secure.com": [5533], "jboss.org": [8429], "datatilsynet.no": [4206], "shop.skeptic.com": [14969], "4sevens.com": [201], "www.petakillsanimals.com": [12271], "www.icio.us": [7919], "ma.rcel.biz": [2024], "www.forensischinstituut.nl": [11172], "*.spreadshirt.com.au": [15371], "www.asjo.org": [1283], "yougov.de": [18796], "www.mygoya.de": [10873], "lab.pentestit.ru": [12575], "i.janeshao.com": [2024], "new.showrss.info": [14805], "sg.dkv.es": [2024], "gsy.me": [2024], "wishwi.sh": [2024], "go.edoctor.us": [2024], "www.pacebus.com": [12341], "pshared.5min.com": [217], "code.sfu.ca": [14708], "url.n9mtq4.com": [2024], "squat.net": [21955], "asmallorange.com": [259], "ib.mookie1.com": [10617], "www.cryptohaze.com": [3864], "ibxpress.ibx.com": [20473], "budennovsk.europaplus.ru": [20034], "status.stackpath.com": [21970], "tudo.xyz": [2024], "www.esdominios.com": [5345], "matd.si": [2024], "trust.zscaler.com": [19012], "yelp.cz": [18766], "link.egton.net": [2024], "peluche.umontpellier.fr": [22365], "www.msu.edu": [21040], "hb.valleyfirstcu.org": [17621], "pre-kpag.es": [2024], "rstud.io": [2024], "n.ons.org": [2024], "f1n.co.uk": [2024], "support.sonatype.com": [15202], "labs.jstor.org": [8472], "puteulanus.duoshuo.com": [19906], "safesetup.guidancesoftware.com": [6988], "blog.legacy.com": [9242], "simflight.*": [14869], "www.leadspend.com": [9210], "wlkh.to": [2024], "pocasie.sme.sk": [14198], "melhores.co": [2024], "go.revo.pw": [2024], "version5.edeveloperz.com": [4891], "promotion.yahoo.co.jp": [18730], "family.utoronto.ca": [17427], "me.mindwork.net": [2024], "s.maxikg.de": [2024], "mill.yt": [2024], "coz.tokyo": [2024], "sp2015.photos": [2024], "*.heatmap.it": [7277], "neweast.play-asia.com": [12828], "storage.cloud.kargo.com": [8810], "dpelp.alhur.es": [19137], "e-fense.com": [19918], "www.firemail.de": [5846], "*.aweber.com": [437], "aben.ca": [2024], "www.clevelandclinic.org": [3237], "moidom.karelia.pro": [20687], "geodyna.mx": [2024], "secure.trafficholder.com": [16720], "www.moana-surfrider.com": [10523], "vmt.link": [2024], "yanhu.jd.com": [8434], "status.codacy.com": [19634], "tokbw.co.uk": [2024], "www.openvpn.net": [12024], "themesandco.com": [16412], "plssl.com": [13078], "brnyrs.net": [2024], "www.pirate-party.ru": [12736], "sdr.entropia.de": [20004], "svetlodarsk.com": [15739], "openuserjs.org": [12022], "go.allied.mv": [2024], "www.swm.de": [14269], "chartbigchart.gtm.idmanagedsolutions.com": [8239], "www.postsuisseid.ch": [12996], "wiki.sourcefabric.org": [15248], "tu.company": [2024], "onderwijssso.tue.nl": [15940], "go.iltempo.de": [2024], "kuler.adobe.com": [669], "rfd.video": [2024], "extranet.libis.be": [9318], "www.blackbox.co.uk": [2063], "myaffiliateprogram.com": [21060], "*.tu-ilmenau.de": [15939], "www.rz.htw-berlin.de": [7103], "mdl3.udn.com": [17020], "cdn.cnblogs.com": [19631], "data.flightradar24.com": [20119], "frontend-assets.dnc.org": [4050], "kao.sh": [2024], "calderdale-consult.objective.co.uk": [21225], "discuss.python.org": [13314], "dah.la": [2024], "plcstr.com": [2024], "commandfive.com": [3476], "zakupki.rt.com": [13528], "www.jobscout24.de": [8605], "sandilands.info": [14342], "specialisttraining.g4s.com": [20195], "268f298b-a9c4-3367-18c7-a295fd3f7745-rum.cdnvideo.ru": [19536], "www.open-stand.org": [21264], "bypassingcensorshipinthe.uk": [19487], "i3.code.msdn.s-msft.com": [14114], "dis.us.criteo.com": [3798], "*.eease.com": [5208], "hppd.la": [2024], "y0.ifengimg.com": [20487], "cd.init.ai": [2024], "sntscr.tv": [2024], "halebop.se": [7162], "smplnr.gy": [2024], "lee.to": [2024], "dble.co": [2024], "loyo.la": [2024], "portal.cca.edu": [2547], "cln.gs": [2024], "movementecologyjournal.biomedcentral.com": [1931], "digitaltransactions.net": [4470], "rtby.co": [2024], "www.jewishvirtuallibrary.org": [20640], "twan.gy": [2024], "metrics.autotrader.co.uk": [19280], "third.lv": [2024], "bbliss.in": [2024], "www.apps1.lbhf.gov.uk": [9078], "nordicsemi.com": [11514], "avgr.co": [2024], "www.imine.co": [8006], "goaml.unodc.org": [17075], "static.artskills.com": [1247], "www.clustrmaps.com": [19628], "securedcards.capitalone.com": [2831], "go.hffk.info": [2024], "uzr.co": [2024], "cail.biz": [2024], "ss3.vas-hosting.cz": [22428], "www.bethblog.com": [18928], "www.fifengine.net": [5563], "ourwatchmember.org.uk": [21316], "debian-facile.org": [4259], "wrts.pm": [2024], "tigermobil.es": [2024], "resadmin.lsbu.ac.uk": [9111], "www.manisec.com": [9946], "counter.cnblogs.com": [19631], "sslvpn-europe.sonymusic.com": [15217], "www.campaignforhouston.com": [19498], "www.comparitech.com": [3516], "www.mygoxclaim.com": [10809], "tcs.sec.samsung.net": [14334], "plk.me": [2024], "tejia.taobao.com": [16015], "www.experiencedays.co.uk": [5496], "theory.mondediplo.com": [10578], "255b.us": [2024], "x.bitcoin.co.id": [1992], "www.pingless.co.il": [12720], "voyage-prive.co.uk": [17945], "tabee.mobi": [2024], "nustarz.com": [11602], "blog.dandb.com": [4129], "ptw.im": [2024], "infile.com": [8094], "cdn.nomensa.com": [11501], "ticket.lan.ua": [20774], "*.tut.fi": [15943], "link.cibul.cz": [2024], "www.warmcat.com": [18075], "jessep.co": [2024], "pgsql.qcloud.com": [13346], "krasnodar-realty.rambler.ru": [13600], "m.slovari.yandex.kz": [18743], "cp.win-is.com": [18415], "media.dreamhost.com": [4743], "www.bimhse.hku.hk": [20387], "da-dk.facebook.com": [5609], "www.serversaurus.com.au": [14680], "portuguesbrasileiro.istockphoto.com": [20595], "wee.sk": [2024], "karlfris.ch": [2024], "docs.scipy.org": [14437], "cdnbakmi.kaltura.com": [8790], "myvigor.draytek.com": [4741], "otazky.skylink.cz": [15002], "wrkbx.com": [2024], "www.phusionpassenger.com": [12685], "mail.mediapart.fr": [10194], "www.hkex.com.hk": [20382], "kotb.co": [2024], "nl.media.rbth.ru": [14098], "nojork.us": [2024], "motherjones.com": [10647], "14tw7v6uidpr0za8grsgmlphj4wvdic6buozs1qh.ipleak.net": [20571], "keckselfservice.med.usc.edu": [17366], "blends.debian.org": [4263], "www.piquadro.com": [12735], "url.krakn.xyz": [2024], "botaanikaaed.ut.ee": [17148], "ann.cc.ntu.edu.tw": [11010], "securitypsa.com": [2024], "*.markit.com": [10031], "www.onapp.com": [11847], "fampra.oxfordjournals.org": [12222], "c.palbertus.ch": [2024], "ruck.ly": [2024], "s0.ifengimg.com": [20487], "admatic.com.br": [659], "dailyedge.ie": [19751], "www.law.cuny.edu": [3190], "magister.unizar.es": [17441], "sa.gumtree.com": [20323], "cuusoo.com": [3939], "camp16.faith": [2024], "st.dynamicyield.com": [4822], "git.netfilter.org": [11265], "acr.org": [984], "acms.ucsd.edu": [17012], "gitlab-ci.nlnetlabs.nl": [10980], "lvfpayments.streamamg.com": [22006], "kontakt.gmx.net": [6330], "bayannaoer.jd.com": [8434], "*.fbo.gov": [5704], "welcome.logmein.com": [9559], "help.pushbullet.com": [13295], "alrt.co": [2024], "kfc.ru": [20707], "dev.bananian.org": [1660], "*.wlxrs.com": [18005], "lk-subscr.tricolor.tv": [22287], "www.shoporca.com": [21808], "jobs.leeds.ac.uk": [17403], "i01.lw.aliimg.com": [861], "www.syoparekisteri.fi": [15809], "www.sba-research.org": [14138], "e17.xhamsterpremiumpass.com": [18607], "htsab.co": [2024], "schallert.com": [14410], "pld-linux.org": [12299], "login.whitelabeldating.com": [22581], "knight.stanford.edu": [15449], "en.crupzi.com": [2024], "googlecode.com": [6828], "fetlife.com": [5748], "www.alfabank.ru": [849], "lkml.org": [9100], "content.truste.com": [15922], "ona.gov.au": [11785], "s.outpic.com": [2024], "cdn.cultofmac.com": [3909], "16.rkn.gov.ru": [13971], "search.popin.cc": [12954], "www.gmu.edu": [6529], "gateway.gear.mycelium.com": [21063], "les.khabkrai.ru": [20709], "at.strat.tools": [2024], "secure.yes.co.il": [22677], "parks.coffee": [2024], "www.wind.com.gr": [18427], "careandsupportforyou.halton.gov.uk": [20335], "layn.es": [2024], "www.sanger.ac.uk": [18286], "birobidzhan.startsmile.ru": [21980], "www.archive-it.org": [1193], "www.osdv.org": [11704], "theproxypirate.pw": [22174], "eshremonographs.oxfordjournals.org": [12222], "git.haskell.org": [7220], "*.shopstyle.co.uk": [14781], "z5.sinaimg.cn": [14910], "search.motherpipe.com": [10652], "sbst.be": [2024], "mobil.idnes.cz": [20483], "earthlink.biz": [4997], "jpapa.me": [2024], "images.noteapp.com": [11560], "evts.io": [2024], "go.mehdi.it": [2024], "bldk.nl": [2024], "justgive.org": [8709], "shibboleth.illinois.edu": [17346], "rt05.epimg.net": [5126], "uk.patronbase.com": [21358], "rrts.com": [13510], "www.rhombus-tech.net": [13921], "rabuja.xyz": [2024], "sfabe.es": [2024], "clxt.org": [2024], "cnp.mn": [2024], "www.browsec.com": [19456], "afearl.es": [2024], "easyd.us": [2024], "app-us-lb2.resrc.it": [13659], "feedback.vodafone.co.nz": [17899], "www.f9.fi": [5539], "you.38degrees.org.uk": [157], "data.norge.no": [11521], "vtechworks.lib.vt.edu": [17825], "buy.courierpost.co.nz": [3714], "benaughty.com": [1749], "cpdmn.com": [2024], "nsomniture.nvidia.com": [11022], "static.mobile01.com": [10533], "wantickts.co": [2024], "ajax.aspnetcdn.com": [414], "lucidchart.com": [9654], "www.mondediplo.com": [10578], "www.pdftoword.com": [12267], "vxml.ifengimg.com": [20487], "hlwd.ly": [2024], "www.aqmen.ac.uk": [19224], "affiliates.walmart.com": [18059], "tcds.mobi": [2024], "www.deprogressive.dk": [4363], "files.espiv.net": [20021], "domenkozar.com": [4662], "wodpla.net": [2024], "mt.libreoffice.org": [9327], "s.kamekura.org": [2024], "piratebay.click": [22176], "whoisaccuracy-portal.register.com": [13793], "mysupport.symantec.com": [15780], "openstack.org": [12011], "prosper.play-asia.com": [12828], "comix.jd.com": [8436], "hsbc.co.jp": [20420], "qote.co": [2024], "tune.yandex.by": [18739], "t.gan.co": [2024], "hpy.tax": [2024], "img03.taobaocdn.com": [16016], "tnbc.tanomail.com": [16011], "trh.la": [2024], "iBUTtxn02.hkjc.com": [20384], "regimg.medicinenet.com": [10206], "youtube.co.th": [18800], "sessioncam.com": [14690], "boxopus.com": [2277], "gdhm.us": [2024], "volgograd.beeline.ru": [1778], "www.norman.com": [11526], "www.overclock.net": [12194], "dhi-scotland.com": [19827], "www.dephormation.org.uk": [4357], "bouch.co": [2024], "at.larron.se": [2024], "oldbayproxy.eu": [22174], "wbr.bike": [2024], "form.unistream.ru": [17291], "poweredbypaquin.com": [13045], "stars.chromeexperiments.com": [3122], "www.mystar.org.uk": [21071], "bbgue.com": [2024], "link.vfmz.info": [2024], "broadland-consult.objective.co.uk": [21225], "lcef.us": [2024], "amur.rt.ru": [13529], "internetessentials.com": [20553], "m.taringa.net": [16027], "mail2.virginmedia.com": [17822], "maj.to": [2024], "www.corbanworks.com": [3660], "calligra.org": [2769], "secure.csmonitor.com": [19737], "quill.link": [2024], "www.playosmo.com": [12158], "ml.oxfordjournals.org": [12222], "spectrumbusinessinsights.com": [15320], "eme.ssa.gov": [21959], "www.naughtyshowreviews.com": [11145], "perfo.in": [2024], "u.sbhat.me": [2024], "static3.twilio.com": [16948], "thestamp.umd.edu": [17351], "ntv.ac": [2024], "fryguy.me": [2024], "23.mvd.ru": [21055], "www.bet365.com": [1841], "cooliris.com": [3645], "i.calameoassets.com": [2749], "feeds.trendmicro.com": [16791], "www.mir-skidok.psbank.ru": [13231], "hrz.io": [2024], "gettyimages.it": [6604], "to.y59.jp": [2024], "sctr.co": [2024], "profil.sme.sk": [14198], "password.uow.edu.au": [17434], "pdev.co": [2024], "*.fasthosts.co.uk": [5674], "to.junkpit.net": [2024], "www.cccure.org": [2556], "astatt.re": [2024], "phys.org": [21403], "enisa.europa.eu": [5411], "khabarovsk.startsmile.ru": [21980], "gettyimages.in": [6604], "wac.51d5.edgecastcdn.net": [13301], "*.bromley.gov.uk": [2377], "0409fe8a-181c-f8f8-4e0e-bd6ac6088823-rum.cdnvideo.ru": [19536], "www.twittercounter.com": [16964], "e30.cc": [2024], "content.jwplatform.com": [8479], "eventp.tv": [2024], "blob.freent.de": [6158], "tuxingsun.net": [16882], "static.mozo.com.au": [10703], "sip.clp.com.hk": [2636], "filenuke.com": [5778], "recruitmentplatform.com": [13713], "www.viveris.fr": [17886], "c.cldlr.com": [3223], "bgbl.de": [19367], "xiw.cx": [2024], "explosm.net": [5501], "*.synopsys.com": [15804], "gogeek.us": [2024], "app.qlogo.cn": [13355], "jcompassionatehc.biomedcentral.com": [1931], "viewer.calameo.com": [2748], "popcorn.webmaker.org": [10701], "on.ktnv.com": [2024], "cnrd.dk": [2024], "scp.la": [2024], "jcullem.co": [2024], "www.hsbc.com.eg": [20426], "www.tookapic.com": [16627], "www.ultimateeditionoz.com": [22360], "libreoffice.collabora.co.uk": [3418], "vonage.my": [2024], "knab.nl": [8952], "partnerfocus.mcafee.com": [10129], "www.mailigen.com": [9901], "my.101domain.com": [15], "greggoodman.me": [2024], "escan.usa.cc": [2024], "cardtocalluat.courierpost.co.nz": [3714], "pinnovat.es": [2024], "ur.oxforddictionaries.com": [12223], "business.upc.cz": [17081], "synaptop.com": [15789], "orng.be": [2024], "www.totalbarcode.com": [16670], "support.fastwebhost.com": [5668], "www.luca-steeb.com": [20886], "cjres.oxfordjournals.org": [12222], "stats.kkh-allianz.de": [8750], "z.spotsmath.com": [2024], "www.protu.fi": [13194], "www.zenmate.nl": [18917], "sndstr.ms": [2024], "www.uhhospitals.org": [17202], "m.fastcompany.com": [5659], "kbuzz.fr": [2024], "po.st": [12874], "gdatasoftware.com": [6272], "can2.biz": [2024], "get.bekind.gift": [2024], "content.autoscout24.ch": [1457], "www.scaleengine.com": [14388], "moil.in": [2024], "www.hoccer.com": [20390], "analytics.sparkfun.com": [15291], "today4you.in": [2024], "p-360.de": [2024], "cdn.content.compendiumblog.com": [3520], "t.5.ua": [2024], "www.gotowebinar.com": [6771], "v.topmall.ua": [2024], "www.spiderwebsoftware.com": [15340], "solo.bodleian.ox.ac.uk": [17359], "enda.run": [2024], "mobile.bahn.de": [1640], "test-ipv6.cz": [16214, 16215], "stnthro.ch": [2024], "pic.yify-torrent.org": [18707], "ottsens.com": [2024], "sitesafe.org.nz": [14945], "forum.hosts-file.net": [20410], "piwik.iwi-i.info": [20617], "swi.ucollege.wustl.edu": [18089], "www.alpnames.com": [919], "ims-dm.com": [8236], "archive.kali.org": [8786], "www.tux.org": [16928], "unb.lu": [2024], "africajobs.g4s.com": [20195], "www.eduserv.org.uk": [19961], "s.m.sohu.com": [15171], "zalando.fr": [18877], "www.quikcallus.com": [13417], "mysalifree.info": [2024], "partner.just-eat.dk": [20671], "gs1.wpc.edgecastcdn.net": [5070], "i.dpavlik.cz": [2024], "zalando.fi": [18877], "i-d-images.vice.com": [17754], "rt.uninett.no": [17280], "agent.mail.ru": [9891], "sd.tl": [2024], "tvnz.co.nz": [15951], "ricoh.co.in": [13935], "shivm.ch": [2024], "cards.linaro.org": [9377], "asihub.com": [2024], "www.bardwilhome.com": [1691], "adoption.state.gov": [17146], "umwblogs.org": [17349], "2lr.co": [2024], "www.medikamente-per-klick.de": [10210], "mail.marmotte.net": [10036], "denuncia.uol.com.br": [17079], "www4.consumer.org.hk": [3599], "lyncwebapps.sviaz-bank.ru": [15740], "js.trip.cmbchina.com": [2639], "ambiti0.us": [2024], "www.peekvids.com": [21379], "link.cajs.co.uk": [2024], "free-torrents.org": [20154], "bemobile.ua": [1752], "shopyouth.co": [2024], "static.mydrive.ch": [10870], "utne.ws": [2024], "indico.cern.ch": [2588], "app-us.resrc.it": [13659], "esd.kent.ac.uk": [17402], "arena.razerzone.com": [13647], "www.bd.alibaba.com": [857], "si.se": [14178], "s.scrbliv.me": [2024], "hgsd.us": [2024], "shtuff.it": [14809], "j-sca.link": [2024], "*.yahoofs.com": [18728], "www.groenlinks.nl": [6942], "shkykns.co": [2024], "lsh.li": [2024], "dashlane.com": [4156], "2012.de.pycon.org": [13307], "www.mincommsy.uni-hamburg.de": [9758], "gamay.tools.ietf.org": [7725], "cdn4.openculture.com": [12039], "cbcblueprint.com": [2535], "wm-p.org": [2024], "mix-computer.de": [9767], "haidarax.ml": [2024], "cdn.at.ai": [844], "kigo3kombit.kmd.dk": [20740], "shop.orangechickenlove.com": [12385], "xenbits.xen.org": [22648], "riscure.com": [13957], "teddyonlinejudge.net": [16122], "b.s.thebrighttag.com": [2342], "begbiz.com": [2024], "images.vice.com": [17754], "www.attac.at": [1361], "www.ikeepincloud.com": [7754], "path.com": [12485], "ourskillsforce.co.uk": [21315], "*.plus.net": [12868], "on.tnfans.co.uk": [2024], "www.myhealthonline-emisweb.wales.nhs.uk": [10953], "igvita.com": [7975], "finaid.georgetown.edu": [6531], "2gwc-kbhkort.kk.dk": [8748], "forums.manageengine.com": [9951], "gitlab.com": [6658], "dl.stgraber.org": [15419], "app.convertexperiments.com": [19679], "subscribe.wired.com": [18454], "eu.api.kimsufi.com": [8908], "ba.rboza.com": [2024], "d.adsbyisocket.com": [8387], "lczine.com": [2024], "rjpho.to": [2024], "on.hoards.com": [2024], "www.opswat.com": [11693], "publish.illinois.edu": [17346], "experts.giffgaff.com": [20243], "signalblog.stanford.edu": [15448], "www.epoxate.com": [5315], "*.rbi.com.au": [13764], "lp.ideco.ru": [20480], "www.bartleby.com": [1711], "www.thepiratebay.run": [21522], "new.aviationweather.gov": [19285], "snapchats.me": [2024], "golucid.co": [6775], "chat.zuno.cz": [18860], "log.outbrain.com": [12182], "shangzhiguan.jd.com": [8434], "archive.fosdem.org": [6046], "ar.norton.com": [11545], "hn.premii.com": [7444], "www.jcore.fr": [8432], "g0g0.me": [2024], "messagingengine.com": [10315], "l.e-net.info": [2024], "www.dy.fi": [19913], "proboards.com": [13158], "doku.spline.inf.fu-berlin.de": [6166], "cno.org": [3424], "buzzhosting.org": [2495], "hmztr.com": [2024], "www.notalwaysright.com": [21164], "www1.bgbl.de": [19367], "eclipso.de": [5042], "twinprime.com": [16953], "www.freizeitparkweb.de": [20172], "imap.bookdepository.co.uk": [2216], "press.activision.com": [556], "ariejan.net": [1218], "oliahad.co": [2024], "investor.visa.com": [16454], "*.perl.org": [12606], "mrktng.tips": [2024], "wella.unicef.org.uk": [17068], "mdc-b.de": [2024], "barrett.gr": [2024], "www-it.desy.de": [4386], "slf.se": [14191], "sns-static.aolcdn.com": [382], "join.queervids.com": [13400], "addiction-partnership.wustl.edu": [18089], "cdn.evbuc.com": [5427], "peppermintos.com": [21386], "slf.sh": [2024], "springdale.math.ias.edu": [7673], "emssoftware.com": [19990], "grapher.compete.com": [3522], "plctwlttler.com": [2024], "wordstat.yandex.com.tr": [18740], "www.libraryfreedomproject.org": [9322], "crtc.io": [2024], "*.paymentech.com": [12509], "www.flatlinesecurity.com": [5887], "mondoplayer.net": [2024], "ogem.co": [2024], "oyb.kr": [2024], "a4.aztravel.xyz": [2024], "school.planeta.ru": [21431], "kipm.cc": [2024], "trdu.de": [2024], "jgaw.at": [2024], "www.jive.com": [8597], "www.epochstats.com": [5313], "testpilot.dinside.no": [19843], "www.civica.co.uk": [19598], "autozot.com": [2024], "www.cadlink.com": [19491], "upload.api.weibo.com": [18279], "*.secure.epi.org": [5051], "bangumi.bilibili.com": [1904], "m.xhamster.com": [18606], "ar.reuters.com": [13893], "www.e-nls.com": [11437], "bop.li": [2024], "r.hbt.li": [2024], "neonarca.de": [2024], "emm.samsungknox.com": [14331], "c5.xkcd.com": [22652], "www.mikrocontroller.net": [10425], "www.cei.org": [3523], "www.tetadrogerie.cz": [22132], "spcie.de": [2024], "de.tracking.regiochannel.com": [13791], "ads.gunosy.com": [7005], "thepiratebay.gg": [22174], "hye.tech": [2024], "short.4dq.com": [2024], "fut.bo": [2024], "r24626534.sync.app.asana.com": [1265], "direkt.postbank.de": [13007], "cs4.myzuka.fm": [21079], "pass.tanx.com": [22097], "m.salespro.co": [2024], "www.quidsi.com": [21567], "www.op5.com": [11938], "portal.lsbu.ac.uk": [9111], "husmaf.us": [2024], "www.oxfam.org.uk": [12221], "i.fnn.kr": [2024], "on.gofbw.com": [2024], "bestgifs.makeagif.com": [20912], "plus.sandbox.google.com": [6818], "go.oust.me": [2024], "www.insight.bn-mclp.org": [2178], "lnks.era-go.com": [2024], "interac.ca": [8233], "www.falkirk.gov.uk": [5630], "*.prweb.com": [12322], "mangaupdates.com": [9958], "click.showcase-tv.jp": [14801], "www.piratepartei.lu": [21418], "compassionjournal.stanford.edu": [15448], "playlists.net": [12845], "dev.militarymaps.info": [20985], "m.futurezone.at": [6263], "daim.co": [2024], "p11.vc": [2024], "www.snacktools.com": [15084], "usessh001.com": [17509], "try.mongodb.org": [10592], "imstore.bet365affiliates.com": [19358], "subscribe.newscientist.com": [11338], "i8s.us": [2024], "jcso.to": [2024], "secure.kurier.at": [9055], "www.megaglest.org": [10238], "hbls.eu": [2024], "taich.in": [2024], "uwb.edu": [17157], "open.spotify.com": [15367], "lutube.leeds.ac.uk": [17403], "www.alchemyglobal.com": [831], "sejour.officiel-des-vacances.com": [11791], "confluence.richrelevance.com": [13927], "moodle.uowplatform.edu.au": [17434], "tools.woolyss.com": [18512], "r24820241.sync.app.asana.com": [1265], "codepunker.com": [3350], "muenster.fau.org": [5543], "yourls.org": [22692], "vjv.cc": [2024], "fabr.me": [2024], "*.spire.umass.edu": [17353], "r.zaharia.io": [2024], "unilever.com": [17277], "2314.at": [2024], "u.dai.gr": [2024], "siri-cdn.appadvice.com": [1143], "wiki.freifunk.net": [6170], "www.melonbooks.co.jp": [10258], "go.spyluv.com": [2024], "rdhn.cf": [2024], "forge.ocaml.org": [11649], "0p.io": [2024], "cool.haxx.se": [20348], "irclogs.wesnoth.org": [18298], "flights.zuji.com.hk": [19021], "*.nbc.com": [11086], "www.southribble.gov.uk": [21912], "www.webmaster.yandex.com": [18742], "hslu.ch": [7589], "si2.rgstatic.net": [13481], "wwwow.osumc.edu": [11714], "www.topshop.com": [22238], "smsreceiveonline.com": [21876], "commandoboxing.com": [3479], "www.lnf.infn.it": [7771], "i-rn.fr": [2024], "fr.xhamster.com": [18606], "downloads.egenix.com": [19923], "youburnwith.us": [2024], "korb.io": [2024], "imagerights.com": [7982], "jt.mu": [2024], "10joycasino.com": [20654], "dn-st.oss.aliyuncs.com": [19143], "www.okfn.de": [21236], "at.official.gr": [2024], "my.aesnet.org": [975], "jdsde.oxfordjournals.org": [12222], "jcmr-online.biomedcentral.com": [1931], "www.netgate.com": [11272], "cxense.com": [2709], "cdn.shoutlet.com": [21814], "toyzil.la": [2024], "mitey.us": [2024], "l.t-jark.de": [2024], "adeck.co": [2024], "fachschaft.informatik.fh-nuernberg.de": [16239], "saymedia.com": [14381], "*.liftsecurity.io": [9352], "*.pssl.com": [12330], "bsub.co": [2024], "www.ssb.no": [14237], "plsn.me": [2024], "wwpi.info": [2024], "support.leadpages.net": [9209], "www.ghbtns.com": [6609], "www.sans.edu": [14127], "epgy.stanford.edu": [15448], "techtalk.saturn.de": [21736], "secure.tt": [2024], "www.tlasecure.com": [22218], "zde.ukaz.info": [2024], "www.wiremask.eu": [22600], "clocks.yandex.by": [18739], "a.faaacts.com": [2024], "thesixthaxis.com": [16314], "youtube.ca": [18800], "www.it-tv.org": [20597], "tdc-wholesale.com": [15862], "esouth-osetia.kavkaz-uzel.ru": [20694], "www.onlinepayment.com.my": [9790], "picviewers.co": [2024], "simplepickup.com": [14887], "www.mooshi.com.au": [10621], "govtrequests.facebook.com": [5609], "www.us.sogeti.com": [15167], "netbetsport.fr": [11224], "*.brightoncollectibles.com": [2348], "zwfz.biligame.com": [1903], "mmlearn.me": [2024], "cuca.illuminateed.com": [20494], "mtv.fi": [21045], "d.popin.cc": [12954], "hms.media": [2024], "sfc1881.uk": [2024], "*.publicradio.org": [10467], "arranca.org": [1237], "images.11main.com": [31], "telfordandwrekin.greenparty.org.uk": [6908], "www.9to5mac.com": [255], "*.mixi.jp": [10505], "imgmil.eastday.com": [5010], "wsgr.to": [2024], "c7.xkcd.com": [22652], "emsisoft.com": [5215], "catchthemes.com": [19524], "*.merchantquest.net": [10299], "www.nanopool.org": [11069], "www.trainingcenter.nih.gov": [11090], "www.insecure.ws": [8164], "media.tmz.com": [15897], "api-new.tropo.com": [16835], "bandce.info": [2024], "l.koeltzs.ch": [2024], "arms.crimestoppers-uk.org": [19720], "bluemountain.com": [2156], "www.cintec.cuhk.edu.hk": [2704], "bern.usembassy.gov": [22406], "www.torrenthounds.com": [16657], "knct.club": [2024], "www.tylercipriani.com": [16977], "thewordpro.com": [18521], "cache1.integriscu.ca": [8204], "www.femen.org": [20083], "gloucestershire.objective.co.uk": [21225], "login.alibaba.com": [857], "as00.estara.com": [5356], "s.ynet.io": [18780], "ylilauta.org": [22682], "builder-dashboard.quay.io": [21564], "linx.la": [2024], "www.anon.click": [1078], "wiki.yabause.org": [18718], "cassadtv.cdnvideo.ru": [19536], "hftmtest.tocco.ch": [16600], "urtm.co": [2024], "www.viz.berlin.de": [1821], "nigpl.us": [2024], "zelenavlna.rtvs.sk": [13536], "www.wifilib.com": [18377], "clane.in": [2024], "s.vdoga.me": [2024], "www.talemetrytoday.com": [15982], "beta.root.cz": [14020], "fi.boardgamearena.com": [2182], "owen.in": [2024], "www.remotecoder.io": [13822], "dl.360safe.com": [144], "www.ibqonline.com": [7902], "enhr.dict.cc": [4442], "on-msn.com": [2024], "sb-bs.link": [2024], "www.weburg.me": [22553], "images-tv.adobe.com": [669], "fave.me.uk": [2024], "youtube.cz": [18800], "365mkup.co": [2024], "*.static.collegehumor.cvcdn.com": [3427], "parents.usc.edu": [17366], "www.tancity.de": [16003], "img10.360buyimg.com": [148], "djz.io": [2024], "zuki.ie": [2024], "cyberphoto.fi": [3954], "partners.overdrive.com": [12191], "ads.adriver.ru": [588], "chromedata.com": [3121], "jpackage.org": [8461], "raaf.gov.au": [2024], "www.elektro-paloucek.cz": [19979], "to.babaa.es": [2024], "hnurture.co": [2024], "www.stgraber.org": [15419], "swoo.sh": [2024], "www.netgo.hu": [11233], "agent.blackphone.ch": [2066], "m.online.t-mobilebankowe.pl": [22076], "uptobox.com": [22395], "static.arxiv.org": [1180], "rupa2.co": [2024], "api.authbox.io": [1433], "ivi.tv": [20610], "track.affiliate-b.com": [745], "order.upc-cablecom.ch": [22386], "s.vizu.lt": [2024], "event.sovcombank.ru": [21914], "ns-cdn.neuweb.biz": [11324], "student.gototraining.com": [6770], "www.businesscompanion.info": [2476], "recipe.piliapp.com": [12706], "seminary.lds.org": [16293], "d.seal.fyi": [2024], "*.inpros.net": [8160], "sustain.wustl.edu": [18089], "webmail.pro-linux.de": [13155], "uttley.in": [2024], "com.res.nimg.jp": [11450], "ca.boardgamearena.com": [2182], "zabaykalye.sledcom.ru": [21858], "apiportal.whitepages.com": [18352], "recruitment.powys.gov.uk": [21474], "ohlc.us": [2024], "www.melbourneaquarium.com.au": [10253], "im3.kommersant.ru": [20746], "gruntjs.com": [20313], "prod1si.click4assistance.co.uk": [3243], "www.bestvpn.com": [1839], "cmptch.ca": [2024], "clock.yandex.kz": [18743], "s12.cnzz.com": [3328], "www.mikeash.com": [10420], "boutique.rts.ch": [21957], "saga.to": [2024], "www.cryptbin.com": [3844], "thomasnet.co": [2024], "help.zoho.com": [18984], "gizmobo.lt": [2024], "za.imhd.sk": [8004], "www.cp.fonality.com": [3740], "zezu.xyz": [2024], "yp4h.osu.edu": [11797], "fundusze-emerytalne.money.pl": [10584, 10585], "jerm.co": [2024], "yeni.asia": [2024], "affiliatewindow.com": [4472], "emailvision.com": [5186], "forum.eset.com": [5347], "security.symantec.com": [15780], "linkto.pro": [2024], "www.darktrace.jp": [19760], "t.vun.gl": [2024], "iff.pm": [2024], "www.r66t.com": [13450], "marketo.net": [10024], "car.tmall.com": [22222], "rsnd.co": [2024], "f52.co": [2024], "ryangrim.es": [2024], "webbyawards.com": [18206], "cbsi.am": [2024], "grupfoni.com": [6965], "media9.congstar-media.de": [3579], "www.firstintegrity.com": [5859], "api.mall.cz": [9934], "smeserver.org": [21870], "pipr.me": [2024], "monitoring-plugins.org": [10594], "rcm-na.amazon-adsystem.com": [958], "blackducksoftware.com": [2064], "sftp.bundesanzeiger-verlag.de": [19471], "gdata.co.jp": [6272], "israh.es": [2024], "www.montyprogram.com": [10610], "cur.lt": [2024], "sans.edu": [14127], "www.aboutads.info": [480], "data.unicef.org": [17069], "iemc-test.rosminzdrav.ru": [21674], "samknows.*": [14319], "www.donmai.us": [19880], "ww.csmonitor.com": [19737], "www.charlie.bz": [3019], "dmtr.us": [2024], "mail.bluepoint.com.ph": [2147], "www.jasondavies.com": [8536], "www.iwi.hs-karlsruhe.de": [7587], "jclinbioinformatics.biomedcentral.com": [1931], "gate.consumer.org.hk": [3599], "thefrozenfire.com": [16405], "360tourview.eu": [2024], "www.hoorn.nl": [11172], "url.kar.gl": [2024], "nodesource.com": [11489], "plexapp.com": [12855], "vt633.tk": [2024], "dns02.enter.ru": [20002], "www.ageriul.asso.ulaval.ca": [17319], "on.uc.edu": [2024], "go.schieb.de": [2024], "goldsborowebdevelopment.com": [6802], "btguard.com": [1594], "www.floek.net": [5917], "ijreview.com": [7751], "www.kti.admin.ch": [22061], "guya.co.uk": [2024], "www.qxl.dk": [13340], "ve.ntu.re": [2024], "kwebb.me": [2024], "inspiredgifts.unicefusa.org": [17070], "exsila.ch": [20056], "secure.hi5.com": [20371], "bmmm.fr": [2024], "solo-prd.bodleian.ox.ac.uk": [17359], "go.plixer.com": [2024], "hr.boardgamearena.com": [2182], "guide.alibaba.com": [857], "*.sparxtrading.com": [15298], "l.shop63.co.za": [2024], "lsf.htwg-konstanz.de": [7104], "www.cars.ru": [19518], "ln.rs": [2024], "go.ca-de.com": [2024], "www.mycp.co.nz": [12067], "yank.life": [2024], "vrsl.nu": [2024], "thepiratebay.gy": [22175], "dev.bit-hdtv.com": [19383], "l.opdo.vn": [2024], "img.wlresources.com": [22604], "playstation.com": [12832], "l.loadx.io": [2024], "www.orwall.org": [12113], "www.mobile.yandex.com.ua": [18741], "bewerbung.wdr.de": [18113], "pgusd.illuminateed.com": [20494], "www.stunnel.org": [15613], "newcastle-staffs.gov.uk": [21119], "www.fact.group": [20066], "reviews.ti.com": [16225], "manual.limesurvey.org": [9372], "secure.freedesktop.org": [6102], "www.siff.net": [14181], "rylands.wigan.gov.uk": [18379], "gstv.media": [2024], "login.wechat.com": [18116], "shazmakeup.com": [2024], "slu.tdconline.se": [15865], "chzb.gr": [2024], "www.illinoistech.org": [7970], "www.bioxfel.org": [1935], "ita.calameo.com": [2748], "www.boerse.to": [19423], "fah.life": [2024], "www.podtrac.com": [21448], "newsroom.avv.de": [1485], "mic.cx": [2024], "kea.nu": [2310], "byfqm3ezheocc4b7.asana.com": [1265], "adpselect.com": [328], "api.dlvr.it": [19855], "spectrum.stanford.edu": [15448], "76.rkn.gov.ru": [13971], "stefand.es": [2024], "blog.haproxy.com": [7029], "wdfr.li": [2024], "surreali.sm": [2024], "skylink.cz": [15002], "mic.cm": [2024], "fungalbiolbiotech.biomedcentral.com": [1931], "gt2l.com": [2024], "ad.us-ec.adtechus.com": [692], "*.supadupa.me": [15676], "advmot0.com": [2024], "jaguar.cis.vutbr.cz": [17609], "8.cbsm.at": [8782], "maas.ubuntu.com": [17183], "tripadvisor.co.nz": [22290], "forschergeist.de": [10322], "dev.wowace.com": [3927], "www.nccam.nih.gov": [11090], "www.fishwrapper.com": [5865], "ideashop.stage.ogilvy.co.uk": [21232], "www.idp.tnsglobal.com": [15906], "www.sirrix.de": [14926], "l.bobbinz.co.uk": [2024], "optical-tool.me": [2024], "pip.verisignlabs.com": [17713], "dev.mysql.com": [10825], "lith.io": [2024], "r24616732.sync.app.asana.com": [1265], "khabarovsk-kr.beeline.ru": [1778], "umassulearn.net": [17353], "epp.fnal.gov": [5741], "g.tquran-wh.org": [2024], "cotonou.usembassy.gov": [22406], "meetic.pt": [10227], "feide.no": [5729], "signup.network-maker.com": [11311], "asset-1.java.net": [8538], "www.tshare.to": [15931], "www.linux.com": [9417], "nybba2csg.bloomberg.net": [2132], "*.riverisland.com": [13963], "ugcbsy.qq.com": [13329], "okiene.ws": [2024], "forum.gsmhosting.com": [6972], "xanmod.org": [22644], "*.covisint.com": [3733], "tpb.dashitz.com": [21522], "*.reimanpub.com": [13807], "fraglive.cl": [6074], "ms-info.rosminzdrav.ru": [21674], "webmail.web4all.fr": [18148], "stratechery.li": [2024], "vera.cd": [2024], "cpro.baidustatic.com": [1641], "voucher.sapo.pt": [14131], "txplo.re": [2024], "tools.verisignlabs.com": [17713], "on.vetr.com": [2024], "moxi.ee": [2024], "oekostrom.web.de": [18146], "ra.revolvermaps.com": [21643], "www.about.me": [481], "g33k.us": [2024], "pbym.co": [2024], "webpush2.wechat.com": [18116], "ocien.tm.com.my": [16150], "m-fanshop.ch": [9698], "itf.is": [2024], "alumnispac.es": [2024], "junostatic.com": [8701], "www.pogoda.yandex.com": [18742], "openshift.redhat.com": [13735], "jitscale.com": [8594], "www.hello.tokyo": [7295], "3will.com": [2024], "forums.zoho.com": [18984], "www-rba.educ.cam.ac.uk": [17332], "www.telegeography.com": [16136], "blumen.tchibo.de": [16050], "preyproject.com": [13091], "monday.pm": [2024], "domvi.tk": [2024], "pgraf.eu": [2024], "43.kavkaz-uzel.ru": [20694], "anz.com": [374], "webui_47142330.asana.com": [1265], "go.anki.com": [2024], "my.psychologytoday.com": [13236], "git.xenomai.org": [18654], "webmailnew.legtux.org": [9241], "uk2img.net": [17037], "ct-mkt.sakura.ne.jp": [14307], "lheld.de": [2024], "knigafund.ru": [20741], "tanks.mail.ru": [9891], "www.getmymgmbalance.com": [6598], "fig.re": [2024], "gmocloud.com": [6323], "nypf.org.uk": [21212], "desktop.parlmany.com": [21350], "fabb.lu": [2024], "casesjournal.biomedcentral.com": [1931], "movmov.tk": [2024], "api.storify.com": [15564], "bit.ms": [2024], "pville.ca": [2024], "mail.sedo.de": [14605], "hot.curry.com": [2024], "login.vutbr.cz": [17609], "www19.pipni.cz": [12287], "www.bahrain.hsbc.com": [7090], "oe24.at": [11766], "armagazine.com": [2024], "dropship.amazon.es": [19175], "*.dealextreme.com": [4242], "drivethrurpg.com": [11867], "dingyue.taobao.com": [16015], "goril4zvid.tk": [2024], "io-gw.vutbr.cz": [17609], "npo.gs": [2024], "oks.enaza.ru": [5222], "digest.bps.org.uk": [1565], "viram.net": [2024], "pbc.fyi": [2024], "m.mediafire.com": [10166], "s.simonwill.me": [2024], "startssl.us": [15472], "www.backchannel.com": [19298], "sdc-cordis.mainstrat.com": [9911], "asterix.uvt.nl": [16521], "emergency.med.cornell.edu": [3676], "edtr.ru": [2024], "woolworths.com.au": [18511], "www.codefisher.org": [3366], "www.liquidlight.co.uk": [9458], "i1.buimg.com": [16509], "jmicro.oxfordjournals.org": [12222], "cart-api.step.rakuten.co.jp": [13594], "www.proxypirate.pw": [22174], "search.newsru.com": [11388], "lucy.apache.org": [1118], "richmond.objective.co.uk": [21225], "appengine.cloudbees.com": [19622], "newsome.cc": [2024], "publicidade.sapo.pt": [14131], "denl.dict.cc": [4442], "crep.so": [2024], "apiproxy.telphin.ru": [16170], "www.census-labs.com": [2949], "p-lnk.alni.info": [2024], "www.suttonhousingpartnership.org.uk": [22049], "vv20.net": [2024], "openfiler.com": [12065], "blog.zen.co.uk": [18913], "kaiserslautern.de": [8785], "ww2.wirral.gov.uk": [18461], "cdn.themis-media.com": [16413], "a-w.me": [2024], "adsnative.com": [19091], "www.voltage.com": [17921], "spb.buzz": [2024], "me.a2gigs.com": [2024], "gohite.ch": [2024], "www.972mag.com": [250], "pub.lp0.eu": [9648], "unisend.com.mx": [17287], "www.unclineberger.org": [17060], "www.av-comparatives.org": [430], "weboffers.co": [2024], "*.myjobscotland.gov.uk": [10879], "*.hbrstatic.com": [2946], "forgestaging.puppetlabs.com": [13276], "zlatkovic.com": [18977], "cdfx.us": [2024], "geneseephoto.com": [6511], "thsnd.me": [2024], "s42.cnzz.com": [3328], "www.onelogin.com": [11874], "jmammal.oxfordjournals.org": [12222], "password.kuleuven.be": [8832], "neorea.ch": [2024], "lnk.a-kep.at": [2024], "boc.engineering.osu.edu": [11797], "online.pdf-tools.com": [21376], "fosscon.us": [6047], "coventry.firmstep.com": [20109], "jlvallejo.es": [2024], "forum.taobao.com": [16015], "m.irs01.com": [20584], "www.marxists.org": [10051], "bfr.ble.de": [19406], "admkrai.krasnodar.ru": [20754], "i.openhouses.do": [2024], "entlh.ch": [2024], "multimedia.unodc.org": [17075], "semantic-mediawiki.org": [21777], "r24625012.sync.app.asana.com": [1265], "partners.roblox.com": [13980], "avangard.ru": [1463], "qcloud.dpfile.com": [19892], "joycasino10.com": [20654], "www1.mplayerhq.hu": [9798], "www.seattleaquarium.org": [14515], "utrec.ht": [2024], "www.contrasterra.ru": [19677], "ent-na.uk": [2024], "onestop.umn.edu": [17356], "openwrt-mirror.lede-project.org": [20798], "huggies.com.au": [7606], "www.alumni.ox.ac.uk": [17359], "r24627813.sync.app.asana.com": [1265], "bauwerksinformation.htwk-leipzig.de": [7596], "business.forums.bt.com": [1578], "daph.in": [2024], "user.img.todaoferta.uol.com.br": [17079], "rtd.rt.com": [13528], "www.accuenmedia.com": [521], "secure.trust-guard.com": [16851], "teik.ml": [2024], "smartinsig.ht": [2024], "cancermodels.nci.nih.gov": [11090], "pccomponentes.com": [21368], "iono.fm": [8335], "library.ecc-platform.org": [4871], "netsparker.com": [11291], "www.bioinfobank.com": [1930], "www.psychologicalscience.org": [13235], "secure.rockfile.eu": [21664], "promo.rhb.ch": [13914], "developers.urx.com": [17097], "tsmm.co": [2024], "chriscloses1.st": [2024], "tdre.me": [2024], "*.sixapart.jp": [14956], "tsurl.nl": [2024], "californiaunitedbank.com": [2767], "m.empireblue.com": [19988], "jet.is": [2024], "muslimpro.com": [10764], "wtrpr.tl": [2024], "icenter.stanford.edu": [15448], "broker-test.svyaznoy.ru": [22053], "www.parkerpen.com": [12435], "global.blackberry.com": [2068], "dn-dji-videos.qbox.me": [13344], "snwz.link": [2024], "o.pmzo.com": [2024], "threatassessment.georgetown.edu": [6531], "www.5july.org": [215], "astrakhan.biglion.ru": [19375], "proxy.lib.ohio-state.edu": [11798], "socialshows.com": [15127], "*.allseenalliance.org": [884], "parama.cf": [2024], "aylj.ru": [2024], "www.hkuspace.hku.hk": [20387], "*.emc.com": [4921], "kronshtadt.beeline.ru": [1778], "gadf.ly": [2024], "itmetrics.stanford.edu": [15448], "www.mediaquestcorp.com": [10195], "latemodelres.to": [2024], "www.zona.media": [18992], "idrix.fr": [7711], "sap.hslu.ch": [7589], "*.qualtrics.com": [13382], "godvillegame.com": [6787], "cardfit.co": [2024], "*.tau.ac.il": [15852], "g.jandan.net": [8518], "click.vnote.hk": [2024], "*.unicaondemand.com": [17270], "courttheatre.org.nz": [19702], "pkso.so.ch": [22061], "kettering.objective.co.uk": [21225], "assetstest.acs.org": [974], "waeplus.co.uk": [17985], "vidarholen.net": [17766], "www.isv.liu.se": [9097], "s.cmcdn.net": [3323], "tv2.li": [2024], "start.vtb24.ru": [22512], "kanev.mclaut.com": [20942], "1.atwill.com": [2024], "webplatform.org": [18176], "heinzmkt.in": [2024], "ifttt.com": [7729], "*.uci.edu": [17331], "nationalexpress.com": [11088], "hlx.lt": [2024], "store.apple.com": [1151], "go.pk-rocks.com": [2024], "pdf.dn.se": [19856], "www.heusden.nl": [11172], "*.frieslandbank.nl": [6198], "www.kurs.expert": [20764], "bydleni.idnes.cz": [20483], "tubeoffline.com": [16886], "bmcpublichealth.biomedcentral.com": [1931], "*.limun.org": [9375], "o2online.de": [11640], "www.mate-desktop.co": [9727], "c-js.co.uk": [2024], "www.elatinos.com": [4919], "www.uplay.ubi.com": [17475], "taxactonline.com": [16044], "corporate.navteq.com": [10913], "www.48ertandler.wien.gv.at": [22588], "imp.pt.afl.rakuten.co.jp": [13594], "help.smartertools.com": [15058], "rarediseases.org": [13627], "bwdlibraries.libraryebooks.co.uk": [20828], "study.163.com": [49], "www.bassetlaw.gov.uk": [1714], "www.thecthulhu.com": [16403], "gis.breitbandmessung.de": [2319], "hinesapp.com": [2024], "www.ksb.dwd.de": [19911], "txt.msg.so": [2024], "gfield.me": [2024], "yemeksepeti.com": [18767], "bill.st": [2024], "zerve.com": [18947], "bokelskere.no": [2200], "brlnt.co": [2024], "i-2.info": [2024], "*.arizona.edu": [17384], "*.img.digitalriver.com": [4469], "i-ph.me": [2024], "community.developers.thomsonreuters.com": [16456], "stony.fm": [2024], "www.compose.io": [3530], "fnsz.co": [2024], "youtube.com.jo": [18800], "datacenterworld.com": [4183], "cs.marinsoftware.com": [10005], "kvue.tv": [2024], "gubkin.tpprf.ru": [22260], "form.sk.mbank.eu": [9733], "srm.de": [14234], "seatra.de": [2024], "slo.ms": [2024], "on.mi4p.info": [2024], "studentchaptersreview.acs.org": [974], "dmtracking2.alibaba.com": [857], "elearning.nursing.osu.edu": [11797], "www.speedrun.com": [15329], "m.dailykos.com": [4111], "redcentric.akixi.com": [19129], "www.hs-esslingen.de": [7449], "ignite.microsoft.com": [10396], "s.poin.co": [2024], "vuitton.lv": [2024], "ticketservice.zdf.de": [22709], "rosw.us": [2024], "magik.ml": [2024], "bamdan.uk": [2024], "www.keepassx.org": [8850], "menus.livingsocial.com": [9530], "scott.arciszewski.me": [1200], "land-der-ideen.de": [9153], "awkn.us": [2024], "jeadvoca.at": [2024], "gni.me": [2024], "www.lurkmore.net": [9682], "movie-ngur.tk": [2024], "downloads6.mamp.info": [20916], "favz.me": [2024], "www.broadcasthe.net": [2371], "m-ent.biz": [2024], "taym.co": [2024], "srtfl.io": [2024], "lineageos.org": [9384], "domo.ly": [2024], "lists.illinois.edu": [17346], "es-mx.socialclub.rockstargames.com": [13997], "skatteverket.se": [14966], "fpmaps.com": [2024], "www.webmail.shaw.ca": [14748], "calendar.ideco.ru": [20480], "lbstatic.resrc.it": [13659], "projectmeshnet.org": [13185], "formacionpermanente.uned.es": [17248], "www.flightglobalimages.com": [5900], "procurement.usc.edu": [17366], "cdnrepo.oss-cn-shanghai.aliyuncs.com": [19143], "gostehnadzor.49gov.ru": [187], "mxpt.co": [2024], "belpino.se": [1799], "n.olutador.com": [2024], "fr.topshop.com": [22238], "bsoj.co": [2024], "manutan.fr": [9974], "frallc.com": [5582], "www.cirt.net": [2624], "10.rkn.gov.ru": [13971], "www.origin.digicert.com": [4461], "heyaa.pl": [2024], "*.discovernetwork.com": [4541], "fpgroup.foreignpolicy.com": [6002], "www.olabini.se": [21239], "screenit.com": [14468], "www.telekom.hu": [9881], "hd-site.com": [2024], "www.gnucitizen.org": [20272], "kindlescout.amazon.com": [960], "gc-pl.co": [2024], "online.binbank.ru": [1922], "taylorbarr.co": [2024], "pmsq.it": [2024], "leam.info": [2024], "dcohen.xyz": [2024], "howtowriteabookasap.com": [6698], "pp.myapp.com": [21061], "911.gov": [247], "da.boardgamearena.com": [2182], "now.play-asia.com": [12828], "*.rarbg.com": [21584], "eckig.es": [2024], "www.glowing.com": [6732], "button.flattr.com": [5889], "d-eship.com": [2024], "dplk.cf": [2024], "boulle.co": [2024], "web1.adf.ly": [577], "istlsfastyet.com": [8359], "marinsoftware.de": [10004], "g4.tv": [2024], "i3a.unizar.es": [17441], "ncp-e.com": [21097], "ko.boardgamearena.com": [2182], "softperfect.com": [15161], "fedshirevets.gov": [20080], "andre.hemk.es": [7314], "2014.wooconf.com": [18504], "iconfindr.com": [2024], "honors.utdallas.edu": [17150], "polleverywhere.com": [12925], "www.starmotorcycles.com": [15454], "ijbnpa.biomedcentral.com": [1931], "sovetsk.klops.ru": [20735], "evaluations.state.gov": [17146], "www.cpanel.com": [2665], "lib.calpoly.edu": [2764], "s.twimg.com": [16949], "fmuth.beer": [2024], "qrd.qualcomm.com": [13378], "axosoft.com": [1504], "fatv.la": [2024], "www.astrobl.ru": [19264], "gtx02.hkjc.com": [20384], "trac.ubuntuusers.de": [17184], "www.pressplay.cc": [21490], "cdn.evidon.com": [5448], "myaccount.hackney.gov.uk": [7143], "modsecurity.org": [10551], "mobile.umeng.com": [22363], "janedoz.es": [2024], "www.lichfielddc.gov.uk": [20832], "r.ealti.me": [2024], "vcommerce.com": [17670], "www.dmlp.org": [4036], "www.uni-kl.de": [17256], "go.random.re": [2024], "daryl.me.uk": [2024], "ato.gov.au": [1427], "liicr.nl": [2024], "www.xeromag.com": [18655], "www.harlandclarkewebsmart.com": [7199], "busoperations.inl.gov": [20537], "aon.io": [2024], "botbot.me": [2257], "mbank.pl": [9733], "data.unfpa.org": [17062], "j.hitoxu.com": [2024], "*.sae.kau.se": [8723], "labli.st": [2024], "tanto.dnc.org": [4050], "www.powerdns.com": [13036], "mgn1.me": [2024], "tdm.pharm.buffalo.edu": [17382], "heyrecruit.me": [2024], "payments.valeofglamorgan.gov.uk": [17619], "dad.am": [2024], "webpsy.ch": [2024], "marionstar.com": [10009], "www.twisp.me": [16955], "www.vice.com": [17754], "www.lysator.liu.se": [9097], "zps.la": [2024], "*.o2.de": [16141], "ja.localwiki.org": [9551], "j.alexmr.me": [2024], "philzimmermann.com": [12650], "partner.gmocloud.com": [6323], "www.commonsensemedia.org": [19652], "shr.ghosted.xyz": [2024], "ghrc.nsstc.nasa.gov": [10909], "www.ashford.com": [1275], "www.youtube.it": [18800], "oss-bgr.infinum.co": [20526], "www.kipoint.it": [8927], "theaa.com": [16289], "digitalnewsagency.com": [4480], "www.adlibris.com": [657], "wohnungsunternehmen.telecolumbus.de": [16138], "bedrift.get.no": [20237], "www.ekomi.co.za": [4913], "grssnbr.de": [2024], "gnccne.ws": [2024], "donate.icij.org": [7689], "jprh.de": [2024], "kiss.toshiba-tec.com.cn": [22252], "ekaer.nav.gov.hu": [10912], "b.is-e.jp": [2024], "*.hcl.in": [7033], "wld.mn": [2024], "go.psonar.com": [2024], "rcc.stanford.edu": [15448], "youtube.dk": [18800], "consult.peterborough.gov.uk": [12625], "cof.lu": [2024], "corporate.aldi.us": [357], "to.kisty.net": [2024], "geizhals.eu": [6496], "b.brames.com": [2024], "fail.worldofwarcraft.com": [18542], "ei.nl": [2024], "dynamics.com": [4823], "tjn.nz": [2024], "appdevelopermagazine.com": [1142], "robin.yt": [2024], "administration.thepensionsregulator.gov.uk": [22173], "fusma.de": [2024], "paymentgate.tfb.ru": [16236], "fschem.es": [2024], "ross.ma": [2024], "ipaddresslabs.com": [7792], "n.verbeke.co": [2024], "download.qfxsoftware.com": [13325], "billetten.dk": [1910], "*.telia.se": [16166], "*.channelintelligence.com": [3007], "n-4-2.dcs.redcdn.pl": [13744], "voidtools.com": [22490], "amlawye.rs": [2024], "backoffice.botscanner.com": [2258], "archpublichealth.biomedcentral.com": [1931], "webrover.ru": [22551], "elfrn.co": [2024], "www.kazanfirst.ru": [20695], "cancer.jpl.nasa.gov": [10909], "*.and.co.uk": [4587], "cutler4.me": [2024], "unvanquished.net": [17458], "support-en.upc-cablecom.ch": [22386], "oskins.com": [2024], "markete.rs": [2024], "i6.hitravel.xyz": [2024], "varuste.net": [17661], "goto.google.com": [6818], "dn4.im": [2024], "api.afeld.me": [19102], "www.bazaar.tf": [1733], "secure.migrosbank.ch": [10414], "bri.st": [2024], "my.everplans.com": [5441], "sfeg.co": [2024], "bill.relevate.ru": [13815], "www.twylah.com": [16974], "rhp.cc": [2024], "msj.gs": [2024], "status.mediatemple.net": [10177], "6cp.ca": [2024], "europe-consommateurs.eu": [5412], "litecoin.info": [9474], "www.jobs.barclays.co.uk": [1688], "djoser.nl": [19851], "signup.ppa.hku.hk": [20387], "umlib.us": [2024], "www.kdoes.nl": [8848], "jamadu.ch": [3646], "www.balboa.io": [1649], "britishgas.co.uk": [2356], "fnrl.rip": [2024], "www.voog.com": [22497], "common.mutualofamerica.com": [10777], "secure.netistrar.com": [11279], "s.htc.com": [2024], "page.ly": [12360], "autodiscover.macfound.org": [9833], "yegne.ws": [2024], "agn.tl": [2024], "txt2.eu": [2024], "firstdirect.com": [20111], "*.pirati.cz": [12756], "i.revelacnj.com": [2024], "www.tango.me": [16009], "on.breakline.us": [2024], "us3.startingpage.com": [15476], "download.spdb.com.cn": [21925], "orland.am": [2024], "fotp.ro": [2024], "cl.atcs.ms": [2024], "gusto.com": [7010], "nrth.it": [2024], "www.ugenr.dk": [17199], "www.rcis.aist.go.jp": [802], "*.bmmetrix.com": [2177], "www.easel.ly": [5001], "news.illinois.edu": [17346], "wiki.jasig.org": [8535], "ssp-rce.veeseo.com": [17677], "kopiosto.fi": [8994], "moo.bz": [2024], "hvac.mn": [2024], "www.gigaset.com": [6637], "itunes.swisscom.com": [15761], "secure.nzqa.govt.nz": [11044], "www.vogogo.com": [22488], "hexchat.net": [20370], "m.office.co.uk": [11779], "donejs.com": [19879], "panic.com": [12391], "www.youtube.com.ar": [18800], "helpme.viber.com": [17751], "a.orkut.gmodules.com": [12145], "rms1.us": [2024], "dft.mnkys.io": [2024], "insir.is": [2024], "*.yoctoproject.org": [18781], "moscow.sci-hub.ac": [14436], "yesil.co": [2024], "nearlyfreespeech.net": [11162], "acorns.com": [531], "myprofile.oracle.com": [12116], "seanpdent.com": [2024], "ativa.me": [2024], "autodiscover.eecs.berkeley.edu": [17329], "n.vesti.ru": [22450], "crocs.com": [3805], "indonesian.alibaba.com": [857], "fahrzeuge.autoscout24.de": [1458], "conference.libreoffice.org": [9327], "moose.inl.gov": [20537], "digitalfiref.ly": [2024], "www.boutique.ina.fr": [7769], "futhead.cursecdn.com": [3927], "css.yuga.ru": [22701], "v4-alpha.getbootstrap.com": [6592], "l.mace.ws": [2024], "www.informahealthcarestore.com": [8122], "cdn.tubemogul.com": [16885], "learn.javascript.ru": [20629], "www.ovh.es": [12205], "eb.nu": [2024], "engineering.mit.edu": [9763], "www.heroup.com": [7330], "lilk.me": [2024], "evals.wustl.edu": [18089], "webmail.vanaqua.org": [17637], "*.jeffnabers.com": [8560], "2frm.co": [2024], "capr.io": [2024], "www.platform.sh": [12819], "www.anonymousads.com": [1089], "www.surf.nl": [14260], "mail.starlink.ru": [21978], "bluech.lk": [2024], "firew.at": [2024], "www.bizland.com": [2050], "aka.ms": [354], "corp.ddos-guard.net": [19788], "www.airbnb.it": [793], "ssl-cdn-media.tmz.com": [15897], "16personalities.com": [54], "*.aspen.com": [1296], "on.roampod.com": [2024], "my.noctov.us": [2024], "sv.4.boardgamearena.com": [2182], "dfranke.us": [4091], "viciousre.co": [2024], "mmz.li": [2024], "zarunet.org": [22707], "fm.qq.com": [13329], "www.telphin.ru": [16170], "droidghost.ml": [2024], "ladsholidayguide.com": [20770], "cdn6.iconfinder.com": [7920], "www.wildlifesydney.com.au": [18400], "m.bilio.com": [1905], "*.fotki.com": [6050], "livelingua.com": [9514], "www.jmconnexus.com": [20643], "srv.cdn-asknet.com": [1292], "www.okcoin.com": [11665], "telerik-web-assets.com": [16160], "djf.me": [2024], "*.vegaspartnerlounge.com": [17680], "mscr.pt": [2024], "www.arbornetworks.com": [1185], "mahara.unizar.es": [17441], "fcglo.be": [2024], "sales.admin.cam.ac.uk": [17332], "clinicalmovementdisorders.biomedcentral.com": [1931], "masha.pe": [2024], "pic7.qiyipic.com": [13354], "albin.web.de": [18146], "stats.spydus.co.uk": [21952], "derrel.us": [2024], "s.onemapua.co": [2024], "pwdhash.com": [13305], "clicks.id": [2024], "www.gravity4.com": [6885], "go-ecm.com": [2024], "zenmate.is": [18917], "jbrushwood.com": [2024], "service.upc.nl": [17083], "pogoda.yandex.com.ua": [18741], "dana.lavabit.com": [9185], "lbcx.us": [2024], "presse.wdr.de": [18113], "n4l.nz": [2024], "pma.web4all.fr": [18148], "pinta-outlet.fi": [12730], "*.cyberwar.nl": [3971], "www.import.io": [20513], "d3.hitravel.xyz": [2024], "my.8d.cx": [2024], "portrait6.sinaimg.cn": [14910], "www.brasil.elpais.com": [5126], "sexualviolence.wustl.edu": [18089], "flxr.co": [2024], "migrosmagazin.ch": [10418], "www.kabeldeutschland.com": [8775], "jasong.us": [2024], "portal.scanscout.com": [14399], "m.douban.com": [4701], "kel.by": [2024], "mymoustache.net": [10816], "btr-link.info": [2024], "1.kcls.org": [2024], "doileak.com": [4628], "www.euractiv.com": [5388], "newsroom.intel.com": [8210, 8211], "www.gdata.be": [6272], "visionairlines.com": [17860], "ss16.sinaimg.cn": [14910], "tvfo.co": [2024], "e360.link": [2024], "soc.un.org": [17057], "siff.net": [14181], "api.thebrighttag.com": [2342], "mcci.io": [2024], "secure.commbank.com.au": [3480], "lusternia.com": [20893], "cpa.kyivstar.ua": [9067], "lookbw.com": [2024], "it.johnshopkins.edu": [8626], "vinc.li": [2024], "luxresale.net": [2024], "www.registration123.com": [13795], "demo.owncloud.org": [12215], "adscale.de": [680], "www.josipfranjkovic.com": [20653], "pquent.in": [2024], "c4.nrostatic.com": [21189], "www.jua.com": [8474], "asset-5.soupcdn.com": [15236], "ngcomics.co": [2024], "enpl.dict.cc": [4442], "tv.jobindex.dk": [8611], "www.techxpress.net": [16087], "v.evbb.net": [2024], "tucuatro.info": [2024], "wpgjets.co": [2024], "dmm.rocks": [2024], "pmyl.tk": [2024], "www.ibood.com": [7901], "portmorgan.com": [12978], "aacqa.gov.au": [276], "s.hsvcd.com": [2024], "piratebay.usbypass.xyz": [22259], "nhq.se": [2024], "alitrip.com": [865], "f.money.chtah.net": [3132], "zoelife.biz": [2024], "fanhattan.com": [5644], "edit.tosdr.org": [16597], "webstats.zdv.uni-mainz.de": [17410], "www.centralfield.com": [2961], "klient.ppl.cz": [12313], "*.duracellcloud.com": [4801], "haiku-os.org": [7152], "slm-assets0.secondlife.com": [14527], "tescoba.by": [2024], "signup.hasoffers.com": [7214], "dtribe.me": [2024], "www.plugunplug.net": [12865], "vtiger.com": [17959], "archy.re": [2024], "www.cdwg.com": [2579], "apwg.org": [1102], "www.aoptix.com": [385], "monarc.ift.ulaval.ca": [17319], "www.pipl.com": [12733], "pss.united.com": [17302], "wx1.sinaimg.cn": [14910], "friend.weblogin.umich.edu": [17354], "salsanc.com": [2024], "www.panax.net": [12384], "uocoe.me": [2024], "bettersales.se": [1858], "tphar.ma": [2024], "cloud.r-project.org": [13447], "chmln.co": [2024], "plsiii.plsinfo.org": [12570], "csc.ncsu.edu": [11530], "bitcoinwatch.com": [19390], "ardis.ru": [1203], "webmail.domaindiscount24.com": [19869], "www.icehost.is": [7913], "awds.x5.ru": [18590], "piwik.documentfoundation.org": [16295], "www.jobfinder.dk": [8610], "myed.wachovia.com": [18035], "wearewizards.io": [18126], "esytt.com": [2024], "thef.net": [2024], "maps.aimpulse.com": [786], "video34.0xdb.org": [10], "junshi.qidian.com": [13349], "bookie.deals": [2024], "www.bankrate.com": [1676], "links.neoid.es": [2024], "1upbox.co": [2024], "rockzi.com": [13502], "t411.li": [15847], "i.snag.gy": [21877], "www.ilmasto-opas.fi": [7974], "*.chase.com": [3032], "cn.opera.com": [12086], "pt.wustl.edu": [18089], "ne.cr": [2024], "www.gemeenteberkelland.nl": [11172], "www.3dsupply.de": [172], "www.euroforum.com": [5403], "domainsbyproxy.com": [4658], "www.mikemasin.com": [10422], "npjbiofilmscommunity.nature.com": [11140], "list.chiebukuro.yahoo.co.jp": [18730], "static.wixstatic.com": [18474], "wsl.tv": [2024], "help.mojang.com": [9789], "mpi.severgazbank.ru": [14697], "s-2.us": [2024], "jona.tw": [2024], "dinge.tips": [2024], "dev.openaccessbutton.org": [11951], "active24.cz": [19062], "www.rankwise.net": [13609], "roc4life.me": [2024], "intelligentexploit.com": [8217], "l.mettapsy.com": [2024], "offensivebits.com": [11774], "static-mamba.cursecdn.com": [3927], "sav.cymru": [2024], "pdog.ws": [2024], "*.systemcenteradvisor.net": [15825], "connect.facebook.net": [5608], "img.realty.mail.ru": [9891], "www.anpdm.com": [1091], "sarah.is": [2024], "www.tue.nl": [15940], "www.chcidoo2.cz": [16141], "graphics.friendfinder.com": [6192], "spitf.re": [2024], "authbox.io": [1433], "tnrt.link": [2024], "be.avm.de": [1478], "www.verisign.com.br": [17712], "oodt.apache.org": [1118], "images.sciencedaily.com": [14439], "o00oo0o0illi.us": [2024], "www.igaming.biz": [7736], "init.unizar.es": [17441], "a5.sphotos.ak.fbcdn.net": [5689], "go.hbude.de": [2024], "www.laughingsquid.us": [9178], "is20.snstatic.fi": [14208], "bmcmedresmethodol.biomedcentral.com": [1931], "www.pdu.edu": [12985], "spm.southwark.gov.uk": [15264], "cdn.culturesforhealth.com": [3912], "ollief.uk": [2024], "app.resrc.it": [13659], "ntlk.nl": [2024], "vpnglobe.com": [17590], "z.mclaut.com": [20942], "vida-sana.xyz": [2024], "www.flinkster.de": [20120], "debug.dingtalk.com": [19842], "toofishes.net": [16625], "drvk.ru": [2024], "jsk.tips": [2024], "api.autoscout24.ch": [1457], "my2.whatsbroadcast.com": [18332], "g.pedroq.org": [2024], "plarrys.co": [2024], "www.ring.cx": [13947], "mvapich.cse.ohio-state.edu": [11796], "op-in.es": [2024], "lady.mail.ru": [9891], "www.neustar.com": [11322], "kncminer.com": [8951], "*.verzekeringssite.nl": [17735], "plastic.sc": [2024], "www.providesupport.ru": [13217], "bizhv.com": [2024], "planet.espiv.net": [20021], "*.mail2web.com": [15156], "www.grouponworks.com": [6958], "ielts.org": [7723], "s-brd.me": [2024], "lpc-afs.web.cern.ch": [2588], "brandnewbooty.com": [2298], "item.microad.jp": [10377], "www.zenmate.co.uk": [18917], "nd.edu": [17413], "blog.foreignpolicy.com": [6002], "zlra.co": [2024], "newark.webconsole.linode.com": [9401], "optim.ly": [2024], "careers.ageuk.org.uk": [19109], "*.billiongraves.com": [1913], "resweb.passkey.com": [12465], "extranet.wienenergie.at": [18376], "www.downloadhelper.net": [4721], "bituri.com": [2024], "www.polyu.edu.hk": [12936], "mdgs.un.org": [17057], "*.yourmoney.ch": [20683], "debconf3.debconf.org": [4257], "hdvn.ga": [2024], "majestic12.co.uk": [9912], "10x.news": [2024], "codeassass.in": [2024], "login.web.de": [18146], "*.switchplus.ch": [15768], "pages.qualcomm.com": [13378], "karelia.sledcom.ru": [21858], "www.digits.com": [4496], "static1.kikisso.com": [20717], "group.xakep.ru": [18628], "img.bol.de": [16244], "bitrix2.cdnvideo.ru": [19536], "inno.im": [2024], "www.osmand.cz": [12156], "forums.ouvaton.org": [12187], "ouya.tv": [11722], "shsling.me": [2024], "mitderzeitspielen.sbb.ch": [15756], "vagai.admtyumen.ru": [19082], "sfex.news": [2024], "x.ploki.me": [2024], "circularhub.com": [3160], "i22.me": [2024], "geocaching.com": [6526, 6527], "hebei.jd.com": [8434], "verisign.ch": [17712], "gvm.mvd.ru": [21055], "variomedia.de": [17658], "*.homelessveterans.co.uk": [7488], "smartdo.tk": [2024], "yakutiya.beeline.ru": [1778], "www.adsl.by": [19090], "sec-sso.click-sec.com": [3242], "72276598-70d1-9c86-b36c-e1aa4152d4df-rum.cdnvideo.ru": [19536], "www.acnc.gov.au": [319], "notedcode.com": [11563], "shop.die-linke.de": [4444], "tbd.yanao.ru": [22665], "leapmotion.com": [9224], "flixfra.me": [2024], "www.multicore-devcon.com": [10737], "thrtf.org": [2024], "*.ua.edu": [16997], "findtbresources.cdc.gov": [19532], "a1.itc.cn": [8401], "www.kdenlive.org": [8847], "podfilter.de": [21446], "oh-b.tw": [2024], "www.gnuheter.com": [12804], "tr-add.com": [2024], "lendo.se": [9262], "icibarb.es": [2024], "mediafire.com": [10166], "static4.businessinsider.com": [2471], "skatelescope.org": [21846], "fs01.androidpit.info": [1052], "oxfordcc.co.uk": [21325], "babbel.com": [1614], "img1.km.com": [20738], "mobify.com": [10532], "hon.ch": [7080], "ccczh.ch": [19529], "gvnkrlmr.de": [2024], "*.snapengage.com": [15091], "*.catalysthost.com": [2906], "21r.de": [2024], "mmyt.co": [2024], "theticketfactory.com": [16490], "heurekashopping.sk": [7377], "qa.fastmail.fm": [5677], "heroku.com": [7331], "d3k.me": [2024], "lists.nic.cz": [11418], "nevistashealth.com": [11327], "pop.claranet.de": [3213], "hbid.org.uk": [2024], "nhs.uk": [10953], "asept.co": [2024], "dinsr.uk": [2024], "deve1op.net": [2024], "kiere.nz": [2024], "files8.adme.ru": [660], "nlbb.engineering.osu.edu": [11797], "kaneva.com": [8795], "sda.so": [2024], "www.directlyrics.com": [19845], "r24616631.sync.app.asana.com": [1265], "clients.kickassvps.com": [8892], "app.fastshoppingcart.com": [13411], "www.playerio.com": [12841], "dprado.ml": [2024], "enterprisezones.gov.wales": [6843], "eum.io": [2024], "www.konstfack.se": [8989], "www.mathbuntu.org": [10078], "www.garlandscience.com": [8120], "navdem.com": [11149], "code.not-your-server.de": [11553], "www.internetevolution.com": [4391], "mmn.click": [2024], "rsb.mobi": [2024], "utclient.utorrent.com": [22337], "ssu.vg": [2024], "mlno6.com": [9778], "bundestag.de": [4401], "piwik.oppelt.com": [12095], "s.qli.jp": [2024], "sa0.roadtrippers.com": [21659], "s.softbag.jp": [2024], "www.digilinux.ru": [4466], "mme.events": [2024], "forum.codeigniter.com": [19636], "s.thefletch.xyz": [2024], "special.admtyumen.ru": [19082], "post.update.chartbeat.com": [3024], "data1.aastocks.com": [19037], "ergon.ch": [5328], "sslcam.news.com.au": [11379], "www.dietrolldie.com": [4446], "static.ocf.berkeley.edu": [17329], "services.libis.kuleuven.be": [8832], "udacity.com": [17193], "glo.bo": [2024], "rss.packetstormsecurity.com": [12346], "employer.dice.com": [4440], "yy.1688.com": [51], "www.collegiatepeaksbank.com": [3430], "ancud.de": [1038], "preptix.me": [2024], "spic3.51fanli.net": [209], "workshop.netfilter.org": [11265], "tagcommander.com": [15969], "kdup.co": [2024], "www.cityemail.com": [3185], "www.qualaris.com": [13377], "novaserrana.tk": [2024], "a.nicco.org": [2024], "projectdev.org": [21511], "1.shupilov.com": [2024], "horarioscentros.uned.es": [17248], "apomedifot.de": [1128], "telemetry.soundcloud.com": [15231], "csswz.it": [2024], "brownpapertickets.com": [2383], "tikv.es": [2024], "90grados.mx": [2024], "mcp.bucket.nchr.io": [21095], "listes.ens-lyon.org": [5272], "data.cloud.unity3d.com": [17310], "fangzhi.1688.com": [51], "adintegration.insideygs.com": [8170], "gvavpn.unicef.org": [17069], "incm.in": [2024], "brshort.com": [2024], "mso365msk.softline.ru": [21889], "www.magix-online.com": [9716], "untergeschoss.ch": [17456], "fy.io": [2024], "uindy.worldcat.org": [18536], "publib.boulder.ibm.com": [7679], "diversity.wustl.edu": [18089], "linux.com": [9417], "jobs.nzz.ch": [21216], "forms.tcs.ph": [2024], "js.microsoft.com": [10396], "vacenza.com": [17615], "crazysal.es": [2024], "hive.us": [2024], "*.silkroad.com": [14855], "italerts.usc.edu": [17366], "pol.sh": [2024], "on.plugco.net": [2024], "t.tbj.me": [2024], "www.btcgreece.com": [1582], "px.belchevs.com": [2024], "howard-cottage.co.uk": [20415], "choctaw.link": [2024], "www.koumbit.net": [9009], "www.cga.ct.gov": [2695], "kerwinr.ae": [2024], "a.mesoshqip.org": [2024], "forum.spring.io": [15373], "luclibrary.worldcat.org": [18536], "www.al-islam.org": [816], "appuio.ch": [1168], "tr0n.net": [16698], "azooz-pro.tk": [2024], "etrtbs6.smartstream.tv": [15064], "www.freiburg.fau.org": [5543], "hawi.in": [2024], "curiosity.im": [2024], "freepri.se": [2024], "register.smext.faa.gov": [5703], "s0.uczzd.cn": [17003], "www.voyage-prive.co.uk": [17945], "tweegy.nl": [16940], "myfbc.info": [2024], "*.linuxaria.com": [9442], "www.wiroos.com": [22601], "do-it.org": [4598], "www.csszengarden.com": [3890], "idle.srad.jp": [21956], "www.footlocker.eu": [5988], "upperc.se": [2024], "www.maddcalifornia.org": [9715], "ssl.gmobb.jp": [6322], "*.indystar.com": [8072], "veritone.us": [2024], "event.fanli.com": [5645], "*.prosystemfx.com": [13208], "s.thewieb.es": [2024], "www.voachinese.com": [17584], "www.luminoworld.com": [9675], "ksl.rocks": [2024], "www.publicmobile.ca": [13257], "securityinabox.org": [14595], "ovh.es": [12205], "pasazfin.wp.pl": [18012], "fm.douban.com": [4701], "dsl.1und1.de": [91], "sede.uned.es": [17248], "gns3.com": [6335], "image-cdn.zap2it.com": [18886], "netd.bz": [2024], "images.obi.de": [21222], "www.agol.dk": [773], "secure.xaraonline.com": [18633], "fed1.us": [2024], "payroll-remote.ymcastlouis.org": [18709], "nationaleatingdisorders.org": [11106], "guavap.as": [2024], "www.uniovi.es": [17282], "s11.postimg.io": [13024], "ftcy.co": [2024], "go.offside.id": [2024], "tecn.is": [2024], "vpi.nav.gov.hu": [10912], "advertising.criteo.com": [3798], "s.iriss.org.uk": [2024], "medikamente-per-klick.de": [10210], "mo.ma": [2024], "zlatyfond.sme.sk": [14198], "bia2.com": [1866], "forum.etrend.sk": [5383], "blog.ixwebhosting.com": [7880], "malariajournal.biomedcentral.com": [1931], "inpvp.gg": [2024], "st6.gismeteo.ru": [6650], "ghbtns.com": [6609], "ikarus2.beget.com": [19347], "gift.nature.org": [11141], "gridzdirect.com": [6935], "platt.com": [12825], "harakahdaily.net": [7194], "brlyavg.com": [2024], "www.tchibo.com.tr": [16050], "ictl.bs": [2024], "www.nothing.ch": [11565], "static-orig.stoloto.ru": [21996], "www.wegoted.com": [18118], "config.parabolagnulinux.org": [12413], "transit.yahoo.co.jp": [18730], "connect.withsix.com": [18469], "rgg.me": [2024], "sgr.is": [2024], "arfo.sk": [2024], "media.tumblr.com": [16898], "es.squat.net": [21955], "jrf.jesus.cam.ac.uk": [17332], "img.1und1.de": [91], "fr.rpmfind.net": [14055], "yahooresearch.tumblr.com": [16897], "www.visitsealife.com": [22470], "www.e-magin.se": [4849], "honeynet.org.mx": [20400], "blackboard.aber.ac.uk": [473], "phlp.be": [2024], "sneakerfreaker.com": [21881], "newschallenge.org": [11375], "osnabrueck.intevation.de": [8293], "www.surreycc.gov.uk": [22040], "lklawl.es": [2024], "spi.tocco.ch": [16600], "watche.es": [2024], "blbrd.co": [2024], "cdn01.animenewsnetwork.com": [19201], "my.unet.by": [22367], "www.priorygroup.com": [13123], "www.dynamicyield.com": [4822], "docelu.pl": [4604], "img05.taobaocdn.com": [16016], "barc.ly": [2024], "rsync.uhulinux.hu": [22349], "home.regit.org": [13799], "www.storebrand.no": [15562], "*.personalitypage.com": [12614], "assets.americas1stfreedom.org": [19190], "cheboksary.europaplus.ru": [20034], "tml.osu.edu": [11797], "www.lv.com": [9524], "sustainability.publish.uic.edu": [17321], "www.sapo.io": [14130], "employeeorientation.nasa.gov": [10909], "dezhou.jd.com": [8434], "exposefacts.org": [5504], "elshoe.co": [2024], "utils.usembassy.gov": [22406], "halfl.io": [2024], "tokyo.webconsole.linode.com": [9401], "www.jiscmail.ac.uk": [8451], "landsend.com": [9154], "www.wemonit.de": [18119], "tilecache4.kairo.at": [8782], "tkpk.me": [2024], "spirop.us": [2024], "terrain.flightradar24.com": [20119], "mail.edu.rosminzdrav.ru": [21674], "metasearch.kib.ki.se": [8743], "slm-assets2.secondlife.com": [14527], "thatdai.ly": [2024], "*.wsjeuropesubs.com": [11361], "mail.jesus.cam.ac.uk": [17332], "sml.devry.edu": [2024], "work.1688.com": [51], "a2.adformdsp.net": [640], "www.bagatoo.se": [1637], "www.pantz.org": [12404], "app.mailaway.homeaway.com": [20396], "grt.st": [2024], "ulan-ude.europaplus.ru": [20034], "go.titon.ovh": [2024], "lm.rtgit.com": [2024], "www.tilburguniversity.nl": [16521], "status.iwantmyname.com": [20614], "on.werviral.com": [2024], "e-commerce.raiffeisen.ru": [13587], "se.icecat.biz": [7912], "bngl.es": [2024], "mrkpnvrd.site": [2024], "stavropol.biglion.ru": [19375], "maintenance.etoro.com": [4970], "webmail.szm.com": [15832], "res2.nabtrade.com.au": [10905], "nyp.link": [2024], "bbseyes.com": [1743], "*.pgi.com": [12277], "acn.mx": [2024], "heym.co": [2024], "l.46hours.com": [2024], "mrn.bz": [2024], "pa.gs": [2024], "to.thorp.co": [2024], "www.law.georgetown.edu": [6531], "usa.play-asia.com": [12828], "dating.taobao.com": [16015], "e2.xhamsterpremiumpass.com": [18607], "caps.bz": [2024], "bit.imanel.net": [2024], "help.beeline.kz": [19345], "bunsen.wapolabs.com": [18033], "gp46.tk": [2024], "www.lucaspetter.com": [9650], "www.upaiyun.com": [17467], "l.rltynyc.com": [2024], "www.yourmailinglistprovider.com": [18813], "now.httpbin.org": [7594], "*.armytimes.com": [1230], "iffptest.tocco.ch": [16600], "abakan.europaplus.ru": [20034], "nextthree.com": [2024], "dc.to": [2024], "oekolandbau-redaktion.ble.de": [19406], "www.iai.inf.tu-dresden.de": [15937], "bnns.co": [2024], "eurobilltracker.com": [20033], "www.kinogo.co": [20721], "devmo.co": [2024], "passport.weibo.cn": [18277], "berufsmatura.so.ch": [22061], "*.compiz-fusion.org": [3526], "yourkarma.com": [18820], "www.fresh-hotel.org": [6178], "uslax.in": [2024], "www.uniregistry.com": [17285], "smtp.sigxcpu.org": [14846], "imdis.un.org": [17057], "storehouse.co": [22000], "www.skyviewinghelp.com": [14992], "nyc.de": [2024], "basket.li": [2024], "aolo.tk": [3536], "kronshtadt.biglion.ru": [19375], "www.rhapsody.com": [13915], "forums.usa.canon.com": [2822], "app.cityplan.es": [2024], "u.jle.im": [2024], "discre.co": [2024], "voskresensk.tpprf.ru": [22260], "yungwww.play-asia.com": [12828], "a.logan.xyz": [2024], "2014.eurobsdcon.org": [5394], "vladikavkaz-realty.rambler.ru": [13600], "cdn-w.gettraffic.com": [6568], "cn.isidewith.com": [20466], "www.elafnettv.com": [5128], "snowflake.unicefusa.org": [17070], "*.igodigital.com": [7738], "ickl.co": [2024], "ruji.co": [2024], "snp.cdn.dell.com": [4317], "getgo.de": [6596], "s1.rationalcdn.com": [21588], "onlinestore.ccccloud.com": [2554], "www.mensaplan.de": [10280], "adsecurity.org": [332], "www.ispsystem.ru": [20591], "runnersconnect.net": [21693], "www.residenciasuniversitarias.ulpgc.es": [17213], "q87.us": [2024], "*.fema.gov": [5705], "www.hypestat.com": [20458], "verserecla.me": [2024], "pass.beta.ya.ru": [18716], "cmdev.com": [2643], "ericri.es": [2024], "enlighten.enphaseenergy.com": [5271], "ru.pornworms.com": [12974], "fcusd.illuminateed.com": [20494], "brblck.com": [2024], "wac.20f5.edgecastcdn.net": [13769], "www.visophyte.org": [17866], "liquidweb.com": [9457], "53s.co": [2024], "artem.biglion.ru": [19375], "worldmarkbywyndham.com": [18579], "rollingstonesubscriptions.com": [14015], "mail.ionitcom.ru": [20562], "etravelway.com": [5380], "bc3.tech": [2024], "apps.unhosted.org": [17251], "dcdt.io": [2024], "wkndcllc.tv": [2024], "store.linksys.com": [9398], "www.jabber.no": [8485], "ssl9.ovh.net": [12205], "hosting.0x539.de": [7], "tw.opera.com": [12086], "cms.manchester.gov.uk": [9954], "applications.barnsley.gov.uk": [19318], "go.vgn.it": [2024], "r.suntravel.xyz": [2024], "melbfe.st": [2024], "mjam.net": [10510], "opn.so": [2024], "dzdz.cz": [2024], "portal.ultradns.com": [17217], "s1.postimg.io": [13024], "on.whas11.com": [2024], "www.ekiga.org": [5118], "borrower.ecsi.net": [4873], "startjesucces.nl": [20470], "public.earthcamcdn.com": [19932], "a.akashseo.com": [2024], "careers.tvnz.co.nz": [15951], "mz.cm": [2024], "signin.comparethemarket.com": [3513], "www.hightail.com": [7410], "api.roblox.com": [13980], "wimpmusic.com": [18369], "tripgigs.com": [2024], "origin.geek.com": [6472], "spb.oldi.ru": [21240], "www.prokopievsk.ru": [21513], "tfa.link": [2024], "x.ogxo.com": [2024], "r24626759.sync.app.asana.com": [1265], "docs.arangodb.com": [1183], "doane.worldcat.org": [18536], "*.blogspot.tw": [2127], "lse.ac.uk": [9112], "www.extratorrent.life": [5516], "nsn.com": [11499], "b-link.bucknell.edu": [2406], "version.clearlinux.org": [3233], "s.naitwo.me": [2024], "css-refugeesmigrants.un.org": [17057], "indikom.ru": [20520], "cptha.ml": [2024], "ntvspor.net": [11013], "www.youtube.com.mk": [18800], "code.flickr.com": [5898], "go.visiblebody.com": [17859], "www.blekko.com": [2085], "www.movie4k.tv": [10675], "onenetuk.vodafone.pt": [17903], "my.obit.ru": [21223], "my.democrats.org": [4338], "www.domoticz.com": [4668], "www.movie4k.to": [10675], "tedxth.es": [2024], "www.digitalpacific.com.au": [4482], "platform.sh": [12819], "www.ispgids.com": [7834], "www.icc-cpi.int": [7688], "esp.forbes.com": [5995], "go.jeprog.xyz": [2024], "atp2.co": [2024], "stau.fr": [2024], "tchms.to": [2024], "komza.khabkrai.ru": [20709], "vod.super8-movie.com": [12422], "files.i4wifi.cz": [20459], "ols.nab.com.au": [10905], "omni.media": [21245], "era.nih.gov": [11090], "www-ssl.intel.com": [8211], "pime.us": [2024], "raybucknell.blogs.bucknell.edu": [2406], "pubdash.q1media.com": [13318], "iconfinder.com": [7920], "www.abysmal.nl": [491], "artikel.li": [2024], "ejtaal.net": [19973], "mobile.webtrends.com": [18264], "people.kafanews.com": [20677], "www.initex.com": [8148], "wf.mail.ru": [9891], "fltz.it": [2024], "thx.alibaba-inc.com": [19138], "youtube.se": [18800], "getcomposer.org": [6575], "fibrogenesis.biomedcentral.com": [1931], "bokon.se": [2201], "sumtel.ru": [22031], "www.e-mielenterveys.fi": [4850], "community.joomla.org": [8641], "erben.rhb.ch": [13914], "redirect.disqus.com": [4559], "thunderranchinc.com": [16477], "lookat.v-ip.co": [2024], "geektime.com": [6477], "natu.re": [2024], "*.f-cdn.com": [5531], "*.sjrdesign.net": [15601], "a3.hitravel.xyz": [2024], "ami.com": [365], "tv.native.ad": [2024], "www.mate-desktop.info": [9727], "www13.pipni.cz": [12287], "osp.vt.edu": [17825], "dzotsi.com": [2024], "www.store.xkcd.com": [22652], "*.golflink.com": [6805], "dtns.ch": [2024], "disk.karelia.pro": [20687], "delivery.a.switchadhub.com": [15764], "www.pbebank.com.my": [13249], "*.myheritage.com": [10875], "ftp.intevation.de": [8293], "*.boards.ie": [2185], "www.btcmarkets.net": [1590], "www.gruen-digital.de": [6964], "psmedia.playstation.com": [12832], "lists.zaehlwerk.net": [18872], "id.idnc.link": [2024], "url.folin.com": [2024], "www.cossacklabs.com": [3693], "thesavvy.us": [2024], "a6.sphotos.ak.fbcdn.net": [5689], "uni-potsdam.de": [17417], "surgut.europaplus.ru": [20034], "ad1.netshelter.net": [11247], "m.azet.sk": [1507], "qvne.ws": [2024], "mcc.gov": [20940], "manturovo.europaplus.ru": [20034], "lumovies.com": [9678], "deals.sourceforge.net": [15242], "nationalexpress.jobs": [11088], "fais.co": [2024], "*.escapistexpo.com": [16264], "pix.boxi.me": [2024], "tickets.seattleaquarium.org": [14515], "www.alumniandfriends.usyd.edu.au": [22413], "tracking.kurier.at": [9055], "*.exacttarget.com": [5466], "afisha.ngs.ru": [21134], "www.getpelican.com": [6564], "firstclick.io": [2024], "gittip.com": [6667], "blogs.janestreet.com": [8522], "publeaks.nl": [13248], "magneto-x.com": [2024], "*.admin.mailchimp.com": [9893], "zhuanlan.zhihu.com": [18956], "events.dianping.com": [19830], "spreadshirt.com": [15371], "shor-tn.us": [2024], "www.imation.com": [7988], "www.nodeserv.com": [11488], "login.ec21.com": [4870], "jnanobiotechnology.biomedcentral.com": [1931], "business.skyscanner.net": [15006], "www.coderwall.com": [3377], "chatme.im": [3035], "*.host.ie": [4500], "www.zillowstatic.com": [18965], "on.clemmer.co": [2024], "commonapp.org": [3486], "puri.fi": [2024], "ecn.t2.tiles.virtualearth.net": [17840], "www.adform.com": [639], "tpet.me": [2024], "k-e-s.nl": [2024], "ssl.kaptcha.com": [8808], "dwrk.in": [2024], "cjsp.me": [2024], "ksaen.skyscanner.net": [15006], "eddie.linux-mips.org": [9428], "www.hf.ntnu.no": [11004], "gaiahost.coop": [6280], "sa.alibaba.com": [857], "*.metapress.com": [10324], "panel.cinfu.com": [3151], "www.hackthe.computer": [7146], "cdn1.static.xtube.com": [18694], "www.virtual-server.org": [17832], "henan.qiyi.com": [13353], "login.m.taobao.com": [16015], "www.multitran.ru": [21050], "heroic.link": [2024], "img.printfection.com": [13119], "tribuna.pl.ua": [22286], "sprwttchn.com": [2024], "eia.gov": [4909], "kels.io": [2024], "15v4jgca39txh712wysuf6eo38lgl8s9t59x3sii.ipleak.net": [20571], "salud.to": [2024], "creatives.gunosy.com": [7005], "oml.cc": [2024], "secure-www.novell.com": [11569], "www35t.glam.com": [6679], "www.vrijstellingoldtimer.nl": [22508], "eurapa.biomedcentral.com": [1931], "aldoz.xyz": [2024], "arctic0.co": [2024], "www.wdm.org.uk": [18545], "providersearch.communitycares.com": [19654], "www.corp.mamba.ru": [9944], "www.dpmc.gov.au": [4070], "autisticadvocacy.org": [1437], "elrippoisland.net": [19983], "legolanddiscoverycentre.de": [9249], "appstore.open.ac.uk": [11947], "aliasane.com": [2024], "www.porta.codes": [12979], "x.bwine.nl": [2024], "thtes.co": [2024], "ethn.io": [5371], "kunde.maxdome.de": [10106], "sl.sonisa.com": [2024], "teams.nikhef.nl": [11441], "wangwang.1688.com": [51], "rtt.adrolays.de": [679], "nationstates.net": [11083], "secdev-foundation.org": [21766], "termsofservicegenerator.com": [6698], "engineering.riotgames.com": [13952], "myoffe.rs": [2024], "treasury.un.org": [17057], "chetv.ru": [19577], "rd.sikanavi.jp": [2024], "www.aclu-sc.org": [308], "search.microsoft.com": [10396], "www.2pay.ru": [132], "www.bet555.eu": [1842], "ahpcrc.stanford.edu": [15447], "www.middleware.georgetown.edu": [6531], "hardware.slashdot.org": [15012], "used.s1.citilink.ru": [19594], "aotw.in": [2024], "paid.outbrain.com": [12182], "standup2cancer.org": [15442], "forum.dokuwiki.org": [4631], "helloplay.ulule.com": [17224], "thepiratebay.bypassed.press": [21524], "mobile_web.okcupid.com": [11809], "tklbs.us": [2024], "imagesource.allposters.com": [882], "agent.ipip.net": [20570], "scld.us": [2024], "wade.tips": [2024], "jackpotmillions.com": [8493], "www.huuto.net": [20449, 20450], "vinews.co": [2024], "only.co": [2024], "otapps.wustl.edu": [18089], "thewave.online": [2024], "apcmag.com": [389], "sttr.in": [2024], "s.ghctim.com": [2024], "webmate.io": [18225], "muslimmatch.thecthulhu.com": [16403], "linuxgamepublishing.com": [9438], "www.patchofland.com": [12481], "mysql12.vas-hosting.cz": [22428], "prlf.eu": [2024], "edge.careerbuilder.com": [2853], "xxxyours.com": [22662], "innovaciondocente.unizar.es": [17441], "www.thingsquare.com": [16432], "lolla.in": [2024], "ultimateeditionoz.com": [22360], "armorfor.us": [2024], "adnetworkperformance.com": [19085], "nautl.us": [2024], "zakovska.skolaonline.cz": [21852], "*.halifax-online.co.uk": [7163], "sp.onlinelibrary.wiley.com": [18401], "static.legacy.com": [9242], "streams.videolan.org": [17775], "kowhy.xyz": [2024], "justeat.it": [20671], "s.neogard.ch": [2024], "www.acsac.org": [321], "protected.fscs.org.uk": [5588], "commencement.berkeley.edu": [17329], "www.sc.pages05.net": [12362], "fa.law.yale.edu": [18732], "research.cbc.osu.edu": [11797], "www.talky.io": [15998], "wiki.geant.org": [6292], "tongshan.jd.com": [8434], "uhhospitals.org": [17202], "www.appsecute.com": [1165], "images-uat.freescale.com": [6161], "staticv.net": [17663], "imageservice.nordjyske.dk": [21152], "*.webmail.dotcomhost.com": [4687], "www.staytoday.com": [15509], "u.xuhuongmoi.vn": [2024], "on.4029tv.com": [2024], "londonsockcompany.com": [9595], "boyarka.domonet.ua": [19877], "xtraz.icq.com": [7695], "hackthissite.org": [7126], "apt.movim.eu": [10684], "theartstack.com": [16323], "fasterbadger.com": [5673], "www.mport.ua": [9799], "www.yamgo.com": [18735], "www.xperiastudio.com": [18675], "go.imodules.com": [7766], "*.starfieldtech.com": [15467], "files.adspdbl.com": [685], "*.globalvoicesonline.org": [6716], "*.displaymarketplace.com": [4558], "1wt.eu": [66], "arnest.co": [2024], "www.sms.cam.ac.uk": [17332], "hospitalityleaders.com": [7508], "cineworld.catchdigital.com": [19523], "uolr3.leeds.ac.uk": [17403], "pa.elsevier.com": [5177], "viviscal.co.uk": [17887], "ens-lyon.org": [5272], "www.safariflow.com": [14285], "c10.nrostatic.com": [21189], "www.giganews.com": [6632], "tchsl.de": [2024], "units.georgetown.edu": [20235], "www.worlddab.org": [18538], "planelopnik.com": [2024], "489tw.cc": [2024], "www.bevoelkerungsschutz-portal.de": [2443], "1.cgroup.iz.rs": [2024], "a.markmcdow.com": [2024], "historyofmedicine.wustl.edu": [18089], "www.bragazeta.ru": [19441], "www.nuug.no": [11017], "planningpublicaccess.southampton.gov.uk": [15259], "cyber.gd": [2024], "jnit.cz": [2024], "schla.gr": [2024], "yhoo.it": [2024], "cert-bund.de": [2589], "aldi-nord.de": [357], "admin.qun.qq.com": [13329], "m.finance.rambler.ru": [13600], "www.aldi.co.uk": [357], "in.pinterest.com": [12731], "seller.ju.taobao.com": [16015], "tic.tl": [2024], "feedly.com": [5724], "davis.com": [4221], "bg.mondediplo.com": [10578], "adecco.pe": [2024], "www.startengine.com": [15473], "www.ballotpedia.org": [19309], "m.kosmas.cz": [8759], "haveyoursay.ashford.gov.uk": [19253], "www.cnbc.com": [2645], "miscolor.es": [2024], "passwordreset.dkit.ie": [4032], "tmb.fm": [2024], "www.aniart.com.ua": [19199], "myaccount.thomsonreuters.com": [16456], "ero-advertising.com": [5335], "www.landscape.io": [9155], "www.dtunnel.com": [4080], "broadcasthe.net": [2371], "cateee.net": [2910], "au-sk.tpprf.ru": [22260], "*.zugerkb.ch": [20683], "nomnom.fitness": [2024], "wareable.com": [22525], "far.gl": [2024], "ziron.it": [2024], "url2txt.com": [2024], "www.makeagif.com": [20912], "miacasa.is": [2024], "www.aralbalkan.com": [1182], "gps.caltech.edu": [2771], "a.im9.eu": [20496], "oferrer.com": [2024], "*.magnatune.com": [9877], "img.geocaching.com": [6527], "larecla.me": [2024], "maplight.org": [9978], "fdshort.com": [2024], "tvd.tips": [2024], "ww.catster.com": [2024], "*.sonos.com": [15210], "galena.mery.jp": [9749], "on.cranprep.org": [2024], "hhub.co": [2024], "wmsoftwa.re": [2024], "www.crashplan.com": [3760], "www.emaileri.net": [5184], "partners.guidestar.org": [6989], "newmoon.com": [11330], "lab.mondediplo.com": [10578], "blogs.sans.org": [14128], "vzw.com": [17717], "www.msgme.com": [21037], "n1.itc.cn": [8401], "emrescr.ml": [2024], "*.eurexrepo.com": [5389], "freelansim.ru": [6156], "idus.co": [2024], "www.clicklivechat.com": [3261], "startsw.it": [2024], "rdsig.yahoo.co.jp": [18730], "rmbox.work": [2024], "go.csar.co": [2024], "18.rkn.gov.ru": [13971], "cdn02.animenewsnetwork.com": [19201], "tickets.events.ccc.de": [2553], "u.domiciwk.com": [2024], "sh.loriena.lv": [2024], "iframe.svyaznoy.ru": [22053], "iuware.iu.edu": [8069], "mobilelinux.co": [2024], "www.pirateproxies.org": [22174], "apps.cisco.com": [3165], "forum.tushino.com": [22315], "www.alexcabal.com": [842], "voltairenet.org": [22494], "vpn.nordicacademy.no": [11512], "password.gmu.edu": [6529], "smahoy.com": [2024], "www.fsf.org": [5590], "newstube.ru": [21130], "affiliate.bitbay.net": [1954], "owensad.com": [2024], "bayareapsy.ch": [2024], "adl.osu.edu": [11797], "kinguin.net": [8917], "scrpbx.in": [2024], "partnerweb.westminster.gov.uk": [18315], "f.denaes.es": [2024], "b.gen.rs": [2024], "pthumbnails.5min.com": [217], "www.blockscript.com": [2103], "www.inapub.co.uk": [8040], "cyberlaw.stanford.edu": [15448], "www.politicalcompass.org": [12917], "linkit2.me": [2024], "fahrradguide.at": [2024], "goingup.com": [6793], "www.titanshare.to": [16577], "tedne.ws": [2024], "go.afrrent.com": [2024], "shdk.co": [2024], "dsl.wrating.com": [18564], "*.duosecurity.com": [4796], "chpqa.decc.gov.uk": [19795], "sso.calacademy.org": [2746], "beaconinitiative.com": [1754], "freecallscanada.co.uk": [20866], "www.bitcard.org": [1956], "www.df.eu": [4020], "www.golosislama.com": [6810], "*.sonystyle.com.mx": [15220], "lli.ucollege.wustl.edu": [18088], "2co.com": [125], "isiknowledge.com": [18203], "on.mtdb.com": [2024], "absolventi.vutbr.cz": [17609], "edequ.it": [2024], "iedm.io": [2024], "xiscosoft.info": [18668], "go.sfarn.tk": [2024], "i.shanelife.com": [2024], "dml.tdnetdiscover.com": [22102], "splp.me": [2024], "m.zuno.cz": [18860], "sweflix.net": [15749], "www.tutti.ch": [22317], "g.29a.in": [2024], "made.mn": [2024], "owlfolio.org": [12211], "r24820175.sync.app.asana.com": [1265], "ws.amazon.co.jp": [1310], "shoryuken.com": [14798], "social.sbi.co.in": [14140], "s2.lemde.fr": [9259], "auth.openmandriva.org": [11992], "mmoc.io": [2024], "visachampions.psbank.ru": [13231], "ccf15.ca": [2024], "www.cp.org": [2815], "okcupid.com": [11809], "www.green.ch": [20305], "go.reevoo.com": [13772], "bigfi.sh": [2024], "www.sweflix.net": [15749], "beginnertriathlete.com": [1784], "berlin.fau.org": [5543], "gcaptain.com": [6289], "sie.pm": [2024], "web.stonewall.org.uk": [21997], "dafont.com": [4099], "www.progllc.com": [13196], "help.mailgun.com": [9898], "iad.apple.com": [1151], "walsall.gov.uk": [22523], "prod3si.click4assistance.co.uk": [3243], "s.pu.nl": [2024], "www.postbydnx.com": [13009], "eclaim.walthamforest.gov.uk": [18061], "pool.btcc.com": [2400], "ngvpn33.nvidia.com": [11022], "1.next.westlaw.com": [18312], "sihongguan.jd.com": [8434], "www.gffg.com": [6297], "cine.fund": [2024], "abk.pics": [2024], "www.inria.fr": [8161], "g3t.link": [2024], "juggler.services.disqus.com": [4559], "www.empflix.com": [5205], "chum.ba": [2024], "s2.gismeteo.pl": [20252], "www.semabuzz.com": [14159], "online.openbank.ru": [21267], "opr.tl": [2024], "mta.wtf": [2024], "personalausweisportal.de": [12613], "dive.fyi": [2024], "eman.tht.re": [2024], "lazykush.com": [9197], "trendpics.today": [2024], "www.boulder.swri.edu": [15265], "picture.stanford.edu": [15449], "puser.centrum.sk": [19548], "hyv.ee": [2024], "www.sbc.anthem.com": [19206], "or.is": [21289], "news.eastsussex.gov.uk": [19938], "www.veloviewer.com": [17688], "*.4channel.org": [196], "www.just-eat.no": [20671], "www.voodooping.com": [17930], "www.votesmart.org": [13186], "c.france.st": [2024], "w3roi.com": [1490], "dovr.uk": [2024], "survey.admaster.com.cn": [584], "salesctr.me": [2024], "searscommerceservices.com": [14509], "npdgroup.com": [10986], "expld.co": [2024], "tree.sci-hub.ac": [14436], "mdvs.me": [2024], "wealden.gov.uk": [22541], "go.idris.org": [2024], "farmaki.co": [2024], "hk.civil.photos": [2024], "atraining.cdnvideo.ru": [19536], "www.space2u.com": [15273], "donn.us": [2024], "wiki.galaxyproject.org": [6386], "customers.darktrace.jp": [19760], "www.stadium.ru": [21971], "s.pixta.jp": [2024], "www.webhungary.hu": [18218], "mwil.it": [2024], "cscoengs.co.vu": [2024], "vdust.co": [2024], "www.officersforbundet.se": [11789], "rom1504.fr": [21668], "www.tune.pk": [16900], "cdn3.outspark.com": [12186], "www.hermite.uvt.nl": [16521], "cdn3.jitscale.com": [8595], "erubrica.upf.edu": [17471], "shamsher.in": [2024], "enigmail.net": [5263], "www.supporterz.jp": [15704], "nav.no": [21093], "static.xxxbunker.com": [18699], "lnk.cmti.me": [2024], "www.ampravda.ru": [19194], "p2p.alfabank.kz": [849], "alipass.alipay.com": [864], "cwstud.io": [2024], "gara.io": [2024], "nav.mageia.org": [9865], "laino.olasagasti.info": [11818], "www.kenshoo.com": [8799], "distraction.gov": [4563], "pxlabs.org": [2024], "pixlr.com": [12779], "microchipdirect.com": [10387], "fbf8.com": [5690], "neengland.greenparty.org.uk": [6908], "widget.ayyo.ru": [19292], "*.stardock.net": [15465], "online.hmrc.gov.uk": [7076], "wild.ng": [2024], "jotter.educ.cam.ac.uk": [17332], "vegas.williamhill.com": [18406], "connect.wustl.edu": [18089], "jamesmcd.com": [2024], "www.cpge.utexas.edu": [17371], "tchst.gs": [2024], "dwb.pw": [2024], "*.hush-hush.com": [7634], "elizabethsmartfoundation.org": [5162], "tryo.co": [2024], "ayo.aqlis.in": [2024], "www.w1.fi": [17979], "www.t411.me": [15847], "brot.migros.ch": [10417], "lawblog.de": [9191], "www.asfera.info": [19252], "weixin.spdbccc.com.cn": [21926], "zenmate.my": [18917], "zenmate.mx": [18917], "pgnet.stanford.edu": [15448], "gift.gm.163.com": [50], "333.play-asia.com": [12828], "adobelogin.com": [673], "shawnr.net": [2024], "gayln.ru": [2024], "homebase.com": [7486], "url.jckzone.com": [2024], "zenmate.ma": [18917], "partner.symantec.com": [15780], "www.ekmpowershop.com": [5119], "emporioalberghiero.com": [5211], "audit.te-st.ru": [22103], "s.fotoglut.de": [2024], "banniere.reussissonsensemble.fr": [13892], "www.openclipart.org": [11965], "socialsafety.org": [15125], "www.gabry.hu": [6380], "bugs.gnu.org": [6337], "www.linux.conf.au": [9418], "www.thalia.de": [16244], "pfefferkoerner.de": [12638], "support.uglymugs.ie": [17200], "gympass.me": [2024], "s.qumaris.jp": [2024], "pacebus.com": [12341], "www.esv.de": [4960], "pledge.lessig2016.us": [9275], "www.police.wustl.edu": [18089], "favp.ro": [2024], "dersi.rtvs.sk": [13536], "festeirice.com.br": [5746], "dnschain.net": [4052], "www.dailystavropol.ru": [19753], "pitchi.it": [2024], "litecointalk.org": [9476], "thepiratebay.gd": [22175], "wip3.play-asia.com": [12828], "greaterchinajobs.g4s.com": [20195], "elgiganten.dk": [5154], "www.smartrecruiters.com": [15056], "www.now.unicef.org.nz": [17067], "images.autoscout24.ch": [1457], "bgentry.io": [1864], "www.digitalmarketplace.civilservice.gov.uk": [19601], "live.cmbchina.com": [2639], "m.sparebank1.no": [21922], "hg.gajim.org": [6383], "usg.to": [2024], "greatbig.is": [2024], "ynevd.ml": [2024], "stdc.ro": [2024], "images.rambler.ru": [13600], "online.vbrr.ru": [17668], "giv.today": [2024], "www.bizshark.com": [2055], "youtube-html.ga": [2024], "ttc.bz": [2024], "txrt.uk": [2024], "www.dobrochan.com": [4601], "admin.websupport.sk": [18253], "docultu.re": [2024], "ecaptest.tocco.ch": [16600], "infospyware.com": [8131], "www.glitterbank.com": [6693], "dailydot.com": [4108], "www.bufferapp.com": [2419], "secure.sipgate.co.uk": [14922], "secure.research.vt.edu": [17825], "link.kc.co.uk": [2024], "scien.se": [2024], "www.openbl.org": [11954], "mtailor.com": [9818], "spboyer.me": [2024], "comixology.com": [3466], "10be.st": [2024], "*.sqsp.com": [15395], "epbfi.com": [4931], "trakt.tv": [22269], "mozo.com.au": [10703], "downloads.smartbear.com": [21865], "api.wsq.umeng.com": [22363], "crm.gd": [2024], "bedrockformsbluenext.msn.com": [9810], "kfm.city": [2024], "jobs.nintendo.de": [11458], "developers.rambler.ru": [13600], "www.wpenginestatus.com": [18015], "postbus.ch": [12996], "save.org": [21737], "happylaptop.chef.io": [3061], "*.kicknews.com": [8893], "www.beamyourscreen.de": [1757], "pro-talents.co": [2024], "engaging.me": [2024], "libdems.org.uk": [9307], "fr.hertz.ca": [7340], "avuofu.me": [2024], "export.martinus.cz": [10044], "www.spacetelescope.org": [15275], "zj.taobao.com": [16015], "myta.co": [2024], "go72.de": [2024], "pcp.cancer.gov": [2819], "cdn.petri.com": [12627], "www.digikey.de": [4457], "secure.eventim.*": [5433], "go.syrkaz.com": [2024], "daac-news.ornl.gov": [11730], "*.myhosting.com": [15156], "postnewsads.com": [13027], "tlasecure.com": [22218], "alumni.state.gov": [17146], "go.disqus.com": [4559], "vivilo.us": [2024], "ats.stanford.edu": [15448], "stonelab.osu.edu": [11797], "androidapi.xamarin.com": [18629], "i1.c.dk": [2512], "doc.ogis.com.br": [2024], "resume.submittable.com": [22022], "maba.ga": [2024], "vivolab.unizar.es": [17441], "ebrk.net": [2024], "exchange.uic.edu": [17321], "clva.ca": [2024], "elbrus.raiffeisen.ru": [13587], "www.heliny.com": [7290], "wza.us": [18582], "*.invincea.com": [8318], "click.d4h.org": [2024], "310ei.biz": [2024], "rdmp.sydney.edu.au": [22063], "www.cjdns.info": [3206], "bblnk.com": [2024], "ganne.tt": [2024], "login.ezproxy1.library.sydney.edu.au": [22063], "date.adults.men": [2024], "oregon.gov": [15486], "abite.co": [2024], "www.aarondcampbell.com": [451], "l.jav4you.com": [2024], "hesaplabakalim.com": [7372], "www.anubisnetworks.com": [1109], "de-no.dict.cc": [4442], "yellowpages.superpages.com": [15698], "www.stupid.com": [15614], "1nes.co": [2024], "gcomm.tv": [2024], "citgrd.co": [2024], "d-dv.us": [2024], "rh.gd": [2024], "us.topshop.com": [22238], "samb.ga": [2024], "www.ipip.net": [20570], "makarov.sakh.com": [21719], "selfservice.sevenoaks.gov.uk": [14696], "rockfile.eu": [21664], "msquad.co": [2024], "rsi.rtvs.sk": [13536], "tonshalovo.beeline.ru": [1778], "echomedia.cz": [19948], "forms.bl.uk": [2358], "moreti.me": [2024], "www.prudentbear.com": [13228], "articulate.fyi": [2024], "yyg.me": [2024], "semor.cz": [14160], "zinfandel.tools.ietf.org": [7725], "affiliate.bigstockphoto.com": [1895], "vedote.ch": [2024], "me.jd.com": [8436], "leapit.co": [2024], "jaoler.be": [2024], "ssopt.me": [2024], "threatwiki.checkpoint.com": [3052], "sl.njwag.com": [2024], "etsie.us.es": [17502], "mtp.hkjc.com": [20384], "gen.cat": [2024], "x.quadpoint.org": [2024], "e-banking1.hangseng.com": [7183], "easydns.net": [5016], "i.imm.io": [12779], "images.variety.com": [17656], "embedded.communities.intel.com": [8211], "secure.tibia.com": [22203], "inandw.in": [2024], "www.livenation.co.*": [9493], "www.customercenter.dynamic1001.eu": [19914], "npy.so": [2024], "api.yokl.com": [18782], "www.initlab.org": [8147], "www.polity.co.uk": [12923], "jlos.go.ug": [17198], "aescentia.info": [2024], "pulse.iciciprulife.com": [7917], "kellyr.me": [2024], "insight.oxfordshire.gov.uk": [21326], "fontspring.com": [5974], "www.srware.net": [15411], "www.spark.ru": [15288], "www3.labcorp.com": [9139], "prime.500px.com": [205], "kojipkgs.fedoraproject.org": [5716], "baml.bankofamerica.com": [1669], "go.fox59.com": [2024], "nimius.maxon.net": [10110], "bshs.tk": [2024], "agvd.li": [2024], "register.vshn.ch": [17957], "cs.crowdin.com": [3823], "9-t.imgbox.com": [7997], "on.deezy.tips": [2024], "falcon12.beget.com": [19347], "mail.touchgen.net": [16684], "localina.local.ch": [9548], "dsbc.me": [2024], "mulliner.org": [21048], "mpull.co.za": [2024], "yworks.com": [22663], "eastriding.connecttosupport.org": [19670], "gbx.es": [2024], "paseka.te-st.ru": [22103], "s.sikac.hu": [2024], "moderngovwebpublic.bromsgrove.gov.uk": [19455], "s.ts4g.de": [2024], "www.fkie.fraunhofer.de": [6091], "open.live.bbc.co.uk": [19331], "browser.yandex.com.tr": [18740], "blaster.media": [2024], "anja.haxx.se": [20348], "*.nakanohito.jp": [17517], "www.boingboing.net": [2197], "ticket.trafficholder.com": [16720], "*.gambling-affiliation.com": [7737], "pilot-eip.stanford.edu": [15448], "eor.permkrai.ru": [21390], "continental.com": [3620], "www.thrillist.com": [22201], "selam.io": [2024], "migrosmagazine.ch": [10418], "www.forum.bitcoin.pl": [1993], "www.wodc.nl": [11172], "a14.wal.co": [18048], "mdz.news": [2024], "associatedcontent.com": [1317], "www.ohiolink.edu": [11799], "larissa.spelthorne.gov.uk": [21934], "maliit.org": [9933], "pub9.media-clic.com": [10161], "cmcordon.com": [2024], "rk37.ru": [13969], "disc.yandex.com": [18742], "elearn.cuhk.edu.hk": [2704], "twhite.me": [2024], "www.onetaste.us": [11884], "swisspost.com": [12996], "t.pbcc.me": [2024], "tcp.com.de": [2024], "*.esi.dz": [4952], "arth.me": [2024], "autos.udn.com": [17020], "akrwds.com": [2024], "aisec.fraunhofer.de": [6091], "cdn.apple-mapkit.com": [1149], "www.premium-link.ninja": [21484], "www.synchronicer.dk": [15794], "rb.voskie.com": [2024], "www.deluge-torrent.org": [4321], "www.bergdorfgoodman.com": [15916], "fcns.eu": [6202], "ir.monster.com": [16454], "l.cpresence.com": [2024], "obh.me": [2024], "u.herrd.me": [2024], "jisc.ac.uk": [8591], "checkout.lemonde.fr": [9204], "s24.postimg.io": [13024], "fsce.in": [2024], "p1.ifengimg.com": [20487], "ap.pn": [2024], "www.musixmatch.com": [10758], "bsuw.co": [2024], "samhain.me": [2024], "secure.membersaccounts.com": [20961], "amnesty.tw": [1017], "hpr.click": [2024], "www.ebis.ne.jp": [5031], "62.rkn.gov.ru": [13971], "www.tonicdev.com": [22233], "heasarc.nasa.gov": [10909], "test-auth.airbitz.co": [19121], "twit.tv": [15957], "tenpay.com": [16185], "apple.com": [1151], "www.securelist.com": [14555], "telegram.how": [16144], "ss.sport-express.ru": [21941], "www.tuitam.pl": [15938], "www.desy.de": [4386], "booking-uat.hkexpress.com": [20383], "thearctic.in": [2024], "ln.ganshani.com": [2024], "nm.debian.org": [4263], "sneakac.es": [2024], "daus.to": [2024], "www.iqt.org": [8029], "aldpr.gs": [2024], "rll.bz": [2024], "assetinsightinc.com": [1306], "online.mbank.pl": [9733], "outics.com": [2024], "personalitypage.com": [12614], "maps.yandex.by": [18739], "www.chartmogul.com": [3022], "intranet.ecom-icom.hku.hk": [20387], "tiksn.net": [2024], "moderni-domacnost.datart.cz": [3998], "viteb.sk": [2024], "b21win.es": [2024], "w1716.smartadserver.com": [15049], "www.rests.afisha.ru": [19107], "js.chefkoch.de": [3062], "socialtheater.com": [15134], "irc.tiki.org": [16520], "plblog.kaspersky.com": [8820], "idkv9gflwnwmjlwa2grwd8uuggnlhe4k5ixtcpda.ipleak.net": [20571], "api.mediaklik.com": [20947], "jand.in": [2024], "docs.redhat.com": [13735], "img3.appinn.com": [1148], "www.obi.pl": [21222], "species.mol.org": [10521], "ice.uniovi.es": [17282], "payments.discourse.org": [4534], "www.skype.com": [15003], "drillisch.de": [4755], "nobitcoinlicense.org": [11481], "www.hustlermagazine.com": [7637], "darkfasel.net": [4145], "meow.bnw.im": [19419], "www.livingwage.org.uk": [20856], "l.vileware.com": [2024], "agol.dk": [773], "www.ruhr-uni-bochum.de": [14085, 14086], "music.youku.com": [18804], "webmail.ual.es": [17162], "neocto.org": [2024], "bishopinteractive.com": [1949], "www.srb2.org": [14231], "joli.paris": [2024], "prsp.in": [2024], "www.m.maps.yandex.by": [18739], "psu.ag": [2024], "www.bytes.com": [19488], "revenuesqua.red": [2024], "stealthy.io": [15515], "talonline.worldcat.org": [18536], "www.bookstore.ucsd.edu": [17012], "www.freedompop.com": [6146], "yoci.al": [2024], "wildstar.curseforge.com": [3927], "www.p3pwiz.com": [11215], "hilli.us": [2024], "secureorders.digiweb.ie": [4500], "app.keeptempo.com": [8853], "bjns.ca": [2024], "apms.es": [2024], "txna.co": [2024], "proverbs.es": [2024], "iarchiv.es": [2024], "aaa.ipleak.net": [20571], "x.mategelei.com": [2024], "rvw.cc": [2024], "blogs.sos.wa.gov": [14215], "r24626502.sync.app.asana.com": [1265], "discuz-lbsbbs.oss-cn-hangzhou.aliyuncs.com": [19143], "b.shaney.net": [2024], "webservices.amazon.de": [19174], "127tyu0gouekdnthebtl8gzwe1zomjvf198tbq73.ipleak.net": [20571], "assets.amung.us": [18363], "ancstry.me": [2024], "news-info.wustl.edu": [18089], "creationkit.com": [19717], "www.gns3.com": [6335], "limetorrents.com": [20842], "fbidhs.thecthulhu.com": [16403], "images3.sanalmarket.com.tr": [14338], "flygoo.jd.com": [8434], "www.fsawebenroll.ed.gov": [4881], "zr.ru": [22725], "livehelp.cancer.gov": [2819], "www.backupify.com": [1628], "ad.propellerads.com": [13200], "bluvelvtg.com": [2024], "*.heureka.sk": [7377], "blogs.mediapart.fr": [10194], "www.stop-hcv.ox.ac.uk": [17359], "www.irc.lc": [20575], "m.russian.alibaba.com": [857], "m.tutti.ch": [22317], "kcq.site": [2024], "gateway.ipfs.io": [8337], "abo1.co": [2024], "j.avocarrot.com": [2024], "cauto.ca": [2024], "gladsne.ws": [2024], "link.whnt.com": [2024], "bitin.io": [2018], "sous-surveillance.fr": [15253], "www.9seeds.com": [253], "esigns4.us": [2024], "srcclr.com": [15404], "mtvex.it": [2024], "mirin.xerq.net": [2024], "www.vc.ru": [17669], "emailpref.acs.org": [974], "3dv.me": [2024], "uptimerobot.com": [22394], "secure.spamgourmet.com": [15283], "www.spotplanet.org": [15368], "vancity.com": [17643], "7gp.de": [2024], "parallax.com": [12418], "thump.com.de": [2024], "nb.getsatisfaction.com": [6601], "microad.vn": [10379], "yooutube.ml": [2024], "lives.sina.cn": [14902], "depo.bercsenyi.bme.hu": [1556], "buildbetter.software": [2426], "caleblik.es": [2024], "auth.elsevier.com": [5177], "www.bob131.so": [2187], "bett.es": [2024], "www.svs.ulaval.ca": [17319], "status.toolslib.net": [16629], "bahg.at": [2024], "studenthealth.ucsd.edu": [17012], "baca.vatih.com": [2024], "provost.georgetown.edu": [6531], "medias.jbfavre.org": [8552], "sansalvador.usembassy.gov": [22406], "photosby.tc": [2024], "bucketexplorer.com": [2405], "partners.nvbugs.nvidia.com": [11022], "pfbe.net": [2024], "overtherh.in": [2024], "rvbd.ly": [2024], "www.acs.ncsu.edu": [11531], "www.adjust.com": [651], "fndrzng.biz": [2024], "bower.io": [19435], "4.da.gd": [4092], "*.marvelheroes.com": [10048], "www.coolminiornot.com": [3640], "insightondemand.tnsglobal.com": [15906], "moshc.am": [2024], "skycure.com": [21853], "tweb.fir.im": [20106], "evoltobor.co": [2024], "rc.active24.cz": [19062], "synopsys.com": [15804], "bench.chainfire.eu": [19556], "s2.marketwatch.com": [10029], "b2bnew.beeline.kz": [19345], "89a.me": [2024], "*.conduit.com": [3567], "picload.org": [12693], "fullyinvo.lv": [2024], "candidats.april.org": [1171], "live.startmail.com": [15475], "www.netcloude.cz": [11258], "frederikssund.dk": [6095], "*.liberalamerica.org": [9310], "bbstatic.geek.com": [6472], "epigr.am": [2024], "t.www.ua": [2024], "dhminor.stanford.edu": [15448], "tnij.je": [2024], "bulmer.info": [2024], "www.xapo.com": [18630], "ukirelandblog.netflix.com": [11268], "register.cocubes.com": [3332], "feeds.gawker.com": [6454], "neo-direct.com": [10940], "kaku.io": [2024], "llnl.gov": [9193], "epostctfs.memberdirect.net": [10265], "54.mvd.ru": [21055], "www.tracker-software.com": [16704], "cemg.tk": [2024], "s.iknow.travel": [2024], "go.cordon.click": [2024], "www.farmlogs.com": [5654], "bookshop.europa.eu": [5411], "franchise.7-eleven.com": [227], "arego.co": [2024], "*.wikimedia.de": [18388], "*.gz.bcebos.com": [19337], "forum8.hkgolden.com": [7058], "cybersicherheits-allianz.de": [900], "www.fgdc.gov": [20084], "tfa.codes": [2024], "overheid.nl": [11172], "*.history.state.gov": [17146], "prww.co": [2024], "techopedia.com": [16112], "cdn.rsi.ch": [21957], "img.myslo.ru": [21070], "butian.360.cn": [142], "r.foodco.ma": [2024], "git65.rostrud.ru": [21677], "lnitup.co": [2024], "cmack.me": [2024], "travelcb.com": [2024], "static.ngs.ru": [21134], "st-petersburg.uio.no": [17414], "uofl.me": [2024], "forum.sabayon.org": [14275], "autode.sk": [2024], "gruen.net": [6361], "www.ilovefreegle.org": [7890], "www.zalando.co.uk": [18877], "ene.co": [2024], "rrhh.unizar.es": [17441], "www3.ipleak.net": [20571], "libertymutual.economist.com": [5052], "15.cbsm.at": [8782], "yun.boutique": [2024], "l.nzz.nl": [2024], "sbfs.spatialbuzz.com": [15300], "regencesecure.snowfly.com": [15109], "d3.sinaimg.cn": [14910], "sslshopper.com": [14245], "cbla.st": [2024], "go.mytiny.de": [2024], "on.adzima.me": [2024], "rbl.lp0.eu": [9648], "an6.in": [2024], "totalboox.com": [16671], "www.djoserwandelenfiets.nl": [7461], "v.meson.kr": [2024], "eos1.it": [2024], "advize.tv": [2024], "boutique.april.org": [1171], "gcbhm.co": [2024], "anilkpat.ro": [2024], "buysub.com": [2577], "www.tauday.com": [16041], "jhsmh.org": [8870], "game.bilibili.com": [1904], "www.samaratoday.ru": [21725], "sn.sanoma.fi": [14351], "synapse.darkfasel.net": [4145], "cce.mitre.org": [10497], "2mre.net": [2024], "stelligent.com": [21990], "r24820195.sync.app.asana.com": [1265], "maqraa-en.islamacademy.net": [8366], "id.avast.com": [1469], "4bbs.us": [2024], "seopl.us": [2024], "iffp1.tocco.ch": [16600], "*.netnea.com": [11285], "tlms.oxfordjournals.org": [12222], "fpn.croydon.gov.uk": [19727], "lolws.link": [2024], "sevastopol.tpprf.ru": [22260], "ohwildyou.tk": [2024], "st.ab0.me": [2024], "hfb.me": [2024], "www.netmile.co.jp": [11239], "*.asahi.com": [1264], "www.sydneytowereye.com.au": [15774], "fontox.ml": [2024], "blog.wdr.de": [18113], "www.thesyriacampaign.org": [22190], "www.privacychoice.org": [13134], "financiallink.ucsd.edu": [17012], "100-1.cz": [2024], "logs-01.loggly.com": [9564], "containerids-id2.wdr.de": [18113], "www.zarunet.org": [22707], "w2w.ipleak.net": [20571], "learninglink.dol.gov": [19867], "api.bt.com": [1578], "dbrgn.ch": [4227], "arden.tc": [2024], "cbet.ly": [2024], "gamefly2.gameflycdn.com": [6398], "pl.tedcdn.com": [15871], "www.tubbergen.nl": [11172], "images.obi.at": [21222], "tchno.be": [2024], "on.mfox.me": [2024], "booklibrarycomputer.derby.gov.uk": [4367], "dadc.co": [2024], "raion-kms.khabkrai.ru": [20709], "cdn07.boxcdn.net": [2271], "www.gem.co": [6497], "*.jobware.de": [8617], "03.mvd.ru": [21055], "devel.oops.org": [11933], "cookbt.es": [2024], "soarss.com": [2024], "www.hazro.com": [20350], "jgumm.us": [2024], "waptianqi.2345.com": [98], "wonderwall.msn.com": [9808], "*.smowtion.com": [15077], "fbme.htwk-leipzig.de": [7596], "consult.maidstone.gov.uk": [9885], "eusecwest.com": [4973], "www.imeem.com": [7989], "www.care-net.org": [2849], "genius-download-2.itunes.apple.com": [1151], "de.nlx.org": [21146], "radforduniversity.worldcat.org": [18536], "www.bridgeways.com": [2332], "iemk.egisz.rosminzdrav.ru": [21674], "authors.iop.org": [8196], "serpukhov.beeline.ru": [1778], "www.peteraba.com": [12622], "eurpub.oxfordjournals.org": [12222], "zh.cloudflare.com": [3284], "cfosat.cnes.fr": [2647], "tree.sci-hub.bz": [14436], "www.issf.ox.ac.uk": [17359], "sports-ne.ws": [2024], "planet-source-code.com": [12795], "osu.edu": [11797], "abiresearch.com": [289], "www.feedarea.de": [12886], "node1.teleguide.info": [22115], "allan.re": [2024], "cso-isetsk.admtyumen.ru": [19082], "bbdig.it": [2024], "ads.admarvel.com": [583], "anyt.im": [2024], "www.rugby.gov.uk": [14083], "ftby.us": [2024], "neup.inl.gov": [20537], "journal.uptimeinstitute.com": [22393], "bbs.jianguoyun.com": [8580], "www.ccc-mannheim.de": [2550], "dish.my": [2024], "kippcolorado.illuminateed.com": [20494], "objectif-securite.ch": [11739], "de-ro.dict.cc": [4442], "api.rtvs.sk": [13536], "stitcher.com": [15544], "senor.cool": [2024], "software.ac.uk": [21891], "vnvn.gq": [2024], "go.mmo-pro.com": [2024], "tlemcen.in": [2024], "mars.jpl.nasa.gov": [10909], "www.from-ua.com": [20178], "stirling.gov.uk": [15543], "id.leakedsource.com": [9222], "sboo.me": [2024], "yolovilag.444.hu": [183], "online.rsb.ru": [14058], "ctolink.us": [2024], "www.bundesrat.de": [2447], "urlq.me": [2024], "inkw.us": [2024], "*.itv.com": [7856], "superdeals.aliexpress.com": [19140], "uwaterloo.ca": [17377], "wlnt.cc": [2024], "www.cert.fi": [2594], "access.gp": [2024], "link.wreg.com": [2024], "datavantage.com": [4181], "brighttalk.com": [2340], "testip.geekzone.co.nz": [6491], "copt.co": [2024], "l.npbn.space": [2024], "www.defora.org": [4297], "www.slu.se": [14195], "download.httpwatch.com": [7102], "hlvy.co": [2024], "tog4.me": [2024], "apt.mopidy.com": [10625], "onbe.in": [2024], "spi.georgetown.edu": [6531], "immunicity.org": [8010], "go.tbforum.ru": [2024], "creative.mailchimp.com": [9893], "icat.ch": [2024], "swtch.com": [22062], "ufa.europaplus.ru": [20034], "accadis.eu": [2024], "cdn.mycommerce.com": [10798], "fr.godaddy.com": [6755], "simblee.com": [14872], "kankolmo.squat.net": [21955], "www.getpostman.com": [20240], "sa.segpay.com": [14618], "r-t.ca": [2024], "erayymz.com": [2024], "vvcap.net": [17610], "go.vomu.org": [2024], "www.braintree.gov.uk": [2291], "english.oxfordjournals.org": [12222], "codeu.rs": [2024], "balh.us": [2024], "bit.dirigent.jp": [2024], "api.eat.ch": [4860], "sfs.georgetown.edu": [6531], "zebit.me": [2024], "dcall.uk": [2024], "r.muito.in": [2024], "www.mollom.com": [10573], "emaileri.fi": [5184], "cpmt.link": [2024], "*.envirostyles.ca": [5296], "ceaccp.oxfordjournals.org": [12222], "eci.ac": [2024], "taiget.ru": [22088], "oplata.info": [12094], "hostbaby.com": [7515], "ultrasurf.us": [17223], "ws.amazon.ca": [19167], "i.ci8.ca": [2024], "business-blog.zomato.com": [18990], "skltr.com": [2024], "themoneyreferral.com": [3508], "bnf.tocco.ch": [16600], "www.logilab.org": [9569], "tile.openstreetmap.org": [12015], "29.cbsm.at": [8782], "r24820221.sync.app.asana.com": [1265], "tag1consulting.com": [15968], "citrix.gettyimages.com": [6604], "es.business.t-mobile.com": [15837], "pops.weillcornell.org": [22557], "www.upickem.net": [17474], "reportingitc.apple.com": [1151], "www.intsig.net": [20557], "jobsearch.works": [2024], "developer.capitalone.com": [2831], "lttl.lc": [2024], "voog.com": [22497], "webstarts.com": [18187], "communaute.publicmobile.ca": [13257], "mein.edeka.de": [19953], "mail.ukeer.de": [17207], "www.technical.ly": [16099], "app.dlvr.it": [19855], "hilfe-center.1und1.de": [91], "*.richmond.edu": [13931], "nam.aviationweather.gov": [19285], "catedras.unizar.es": [17441], "www.playlists.net": [12845], "money.fbk.info": [5691], "namgate.nes.scot.nhs.uk": [10953], "jy2.me": [2024], "www.studentprivacypledge.org": [22016], "pt.godaddy.com": [6755], "*.saga.co.uk": [14298], "spell.roundcube.net": [14039], "pcgw.org": [2024], "www.cryptopia.co.nz": [3878], "www.hopstudios.com": [7500], "www.countbayesie.com": [3704], "webdl.symantec.com": [15780], "go.davidba.in": [2024], "collect-us-east-1.tealiumiq.com": [16060], "charitynavigator.org": [3015], "www.kinguin.net": [8917], "reservationcounter.com": [13861], "mtafboston.com": [2024], "readindex.bjcnc.scs.sohucs.com": [15173], "www.onecloudsecurity.com": [11868], "s.gjm.it": [2024], "machinegunsvegas.com": [9844], "baylorpr.es": [2024], "ken.sc": [2024], "status.chartbeat.com": [3024], "support.leahscape.com": [9221], "chococurb.me": [2024], "api.sailthru.com": [14304], "m.weibo.cn": [18277], "www.epito.bme.hu": [1556], "www.fullrate.dk": [6234], "kornyezetvedelem.atlatszo.hu": [1349], "www.ccedlookup.acs.org": [974], "yrpay.co": [2024], "merchant.bankofamerica.com": [1669], "www.gmx.de": [6330], "amt-softwareportal.axosoft.com": [1504], "canaldigital.dk": [2817], "x.ngjuliann.com": [2024], "theolo.gy": [2024], "entretiens.ina.fr": [7769], "infosec.un.org": [17057], "e.weibo.com": [18278], "mcal.me": [2024], "www.etao.com": [4965], "kraken.com": [9015], "*.infomaniak.com": [8114], "secdev.com": [14522], "webmailer.hosteurope.de": [7524], "gifgratis.net": [6623], "by.mediatica.co": [2024], "hcr8.co": [2024], "social.technet.microsoft.com": [10396], "at.doctv.gr": [2024], "www.pod.geraspora.de": [6537], "www.feefo.com": [5727], "dnain.fo": [2024], "watch-online.ga": [2024], "www.promisejs.org": [21514], "zhukovsky.net": [22718], "denisferrari.co": [2024], "go.rallydm.com": [2024], "esomar.org": [4955], "see.rahul.se": [2024], "secure.aces.illinois.edu": [17346], "justgiving.com": [8710], "tld.pl": [16585], "glv.nz": [2024], "*.zenimax.com": [18928], "iambosch.dk": [2024], "www.flsenate.gov": [20123], "janus.dsi.cnrs.fr": [6174], "gccommunity.saturn.de": [21736], "hilbrink.org": [2024], "www.variantweb.net": [22427], "science.slashdot.org": [15012], "www.comedy.co.uk": [19650], "secure.indeed.com": [8056], "gww.rocks": [2024], "mot.ms": [2024], "res-x.com": [2979], "de-fi.dict.cc": [4442], "ceo.decc.gov.uk": [19795], "static-corp.cursecdn.com": [3927], "gms.georgetown.edu": [6531], "z.vvh.io": [2024], "kp.biovendor.cz": [1933], "accounts-cdn.9gag.com": [252], "grnr.in": [2024], "dx.im": [2024], "charts.edgar-online.com": [4884], "ads.pubsqrd.com": [21539], "x.enkin.cc": [2024], "www.bav.admin.ch": [22061], "gmx.org": [6330], "help.yandex.com": [18742], "ivn.us": [8062], "ohsx.stanford.edu": [15448], "partnernoc.cpanel.net": [2667], "*.yelp.co.jp": [18766], "www.network23.org": [11305], "api.ok.ru": [11806], "*.ofb.net": [11657], "cecpdonline.org": [2954], "webmail.freenet.de": [6158], "c.mpj.jp.net": [2024], "www.1tulatv.ru": [87], "nsfwstories.us": [2024], "*.ucla.edu": [17007], "andrewbrookins.com": [1046], "info12.top": [2024], "marketplace.firefox.com": [5842], "calendar.activedatax.com": [551], "telefonica.cz": [16141], "slashcdn.com": [15010], "www.photobtc.com": [12669], "gygy.ga": [2024], "www.ajnasz.hu": [19127], "rst.permkrai.ru": [21390], "aai.io": [2024], "www.bankia.es": [22626], "nevada.ual.es": [17162], "migration.digitale-diathek.net": [4490], "www.joinos.com": [8633], "ppcoin.org": [12312], "minijob-zentrale.de": [10462], "100r.be": [2024], "student.liu.se": [9097], "census-labs.com": [2949], "south-america.hivos.org": [7436], "izvestia.ru": [8419], "webmail.anchor.net.au": [19196], "engage.advent.com": [706], "mtle.bo": [2024], "zarte-it.qc.to": [2024], "lvld.nl": [2024], "caliber.re": [2024], "www.flixbus.com": [5911], "s46.cnzz.com": [3328], "piwik.i4wifi.cz": [20459], "www.supersec.com": [15699], "*.hosting.ru.nl": [13570], "bestchange.ru": [19356], "www.nz.anz.com": [374], "www.lancaster.gov.uk": [20778], "cla.rocks": [2024], "*.mtb.com": [9701], "mintguide.org": [10471], "njhom.es": [2024], "goiowa.solar": [2024], "secure.www.cfr.org": [3702], "bjmn.co": [2024], "www.bitquick.in": [1969], "origin-software.intel.com": [8211], "www.ubermedia.com": [17166], "python.org": [13314], "client-event-reporter.twitch.tv": [16961], "familie.aok.de": [376], "center6.top": [2024], "badad.co": [2024], "nmky.be": [2024], "lpdedicated.com": [624], "dyson.ie": [4831], "blog.elearnsecurity.com": [4920], "financialplanning.hsbc.co.uk": [20422], "media.memrise.com": [10273], "*.adultadworld.com": [695], "cnhands.co": [2024], "inventory.roblox.com": [13980], "url.veerkun.com": [2024], "nws.fd.nl": [2024], "accounts.silentcircle.com": [14848], "bestellservice.saturn.de": [21736], "sphotos-h.ak.fbcdn.net": [5689], "www.hertz.qa": [7359], "genetics.nature.com": [11140], "pv.sohu.com": [15171], "cdn.printfriendly.com": [13115], "golot.to": [2024], "lists.tizen.org": [16580], "*.wi-fi.org": [18366], "messenger.live.com": [9495], "freelanguage.org": [6118], "paste.debian.net": [4261], "euronuclear.org": [5415], "kgcr.co": [2024], "munin.openstreetmap.fr": [12079], "ordynsk.nso.ru": [21192], "piratenpartei-bayern.de": [12753], "bnjmn.al": [2024], "extranet.swisscom.ch": [15761], "madadsmedia.com": [20902], "media.digikey.com": [4457], "33across.com": [137], "t5.pixhost.org": [21426], "www.zsl.org": [19000], "mu.lmbt.uk": [2024], "manage.mcafee.com": [10129], "tricorder-dev.kairo.at": [8782], "stat.rapida.ru": [13619], "hst.net": [2024], "www.imgkings.com": [20506], "answers.argos.ie": [1213], "*.invincealabs.com": [20558], "kian.fit": [2024], "da-dk.facebook.dk": [5612], "online-convert.com": [11905], "mentalhelp.net": [20963], "www.sport-express.ru": [21941], "srb.am": [2024], "*.wimm.com": [18002], "identity.mageia.org": [9865], "admin.wechat.com": [18116], "go.cara.media": [2024], "ostashkov.startsmile.ru": [21980], "lists.verisignlabs.com": [17713], "eforms.lancashire.gov.uk": [20777], "im.my": [2024], "m.mintcams.com": [2024], "*.xenogamers.org": [18652], "*.testcloud.de": [16216], "turku.fi": [22313], "kzbra.in": [2024], "theproxybay.pw": [22174], "altz.co": [2024], "next-geebee.ft.com": [5810], "facebook.es": [5612], "www.dietmardreier.de": [19833], "l-m.co": [2024], "wos.im": [2024], "www.energiesparcheck.at": [18376], "promobra.in": [2024], "store.kcrw.com": [20700], "omarawad.tk": [2024], "buy.sky.com": [14989], "usv.io": [2024], "blumenthals.com": [2174], "www01.tracer.jp": [11007], "dams.stanford.edu": [15448], "clnpstr.com": [2024], "shrtct.cc": [2024], "cdn.netvibes.com": [11298], "wcmsqa.unicef.org": [17069], "cloudsquare.biz": [2024], "c9s.us": [2024], "betches.co": [2024], "yes.co.il": [22677], "www.casascius.com": [2882], "www.otto.de": [12168], "wiefleis.ch": [2024], "en.novayagazeta.ru": [21169], "jasig.org": [8535], "www.xtremepapers.com": [18693], "svn.xiph.org": [18667], "7ubo.ro.lt": [2024], "life.spdbccc.com.cn": [21926], "www.adxpansion.com": [599], "blowfi.sh": [2024], "www-950.ibm.com": [7679], "www.careercenter.wustl.edu": [18089], "i.like.ie": [2024], "l.ll1l.net": [2024], "daac.ornl.gov": [11730], "help.openstreetmap.org": [12015], "i.depeempe.com": [2024], "via.picklu.com": [2024], "2016.unistream.ru": [17291], "lovers.play-asia.com": [12828], "auth.bournemouth.gov.uk": [2268], "r24625338.sync.app.asana.com": [1265], "iamthecavalry.org": [7885], "my.1and1.com": [69], "s3.cnzz.com": [3328], "mesfichiers.org": [79], "www.pixel.fsg.ulaval.ca": [17319], "shofu.so": [2024], "www.placeimg.com": [12791], "tinfoilsecurity.com": [16547], "wvnts.co": [2024], "metrics.reedbusiness.net": [13762], "markt.merkur.de": [10306], "sailfishos.org": [14302], "www.omim.org": [21242], "www.ecpic.gov": [4872], "tid.bl.it": [2024], "fray.li": [2024], "schmidtcom.de": [14419], "trademark.harvard.edu": [7211], "die.net": [4445], "url.googol.im": [2024], "rtpj.us": [2024], "bugsnag.com": [2424], "www.airbnb.jp": [793], "assets.unbounce.com": [17239], "www.paris-web.fr": [21345], "git.lp0.eu": [9648], "stormcraft.xyz": [2024], "attta.ch": [2024], "box.georgetown.edu": [6531], "www.fotoblur.com": [6053], "ancla.info": [2024], "wwrb.tk": [2024], "forum.golem.de": [6804], "swtlnk.net": [2024], "tasha.serversaurus.com.au": [14680], "link.dynamicyield.com": [4822], "go.fmb.co.uk": [2024], "mstr.cl": [2024], "s.kaovilai.pw": [2024], "mstr.cd": [2024], "x.fl.am": [2024], "outbrain.com": [12182], "koolf.ly": [2024], "jbiol.biomedcentral.com": [1931], "provost.illinois.edu": [17346], "i.torrenthound.com": [22245], "bygil.es": [2024], "marron.link": [2024], "code.visualstudio.com": [17872], "samsungknox.com": [14331], "tpbproxy.pw": [22174], "lists.young-pirates.eu": [18807], "for3.co": [2024], "*.foxydeal.de": [6067], "bitsplit.tokenly.com": [22229], "hirlevel.nav.gov.hu": [10912], "pnch.us": [2024], "s.kotatsu.org": [2024], "www.accessibility.nl": [508], "ngrok.com": [11414], "cdabba.com": [2024], "ecal.in": [2024], "testclientupdate.curse.com": [3927], "dashboard.toolslib.net": [16629], "mutuals.fsa.gov.uk": [5587], "tverweek.com": [22326], "manager.londit.com": [9582], "yashi.me": [2024], "shft.bz": [2024], "fnh.utoronto.ca": [17427], "click.otaserve.net": [21307], "api.news.rambler.ru": [13600], "certcourse.cetl.hku.hk": [20387], "jensart.co": [2024], "zod.ee": [2024], "www.biblegateway.com": [1870], "s.rcconf.com": [2024], "ogmo.de": [2024], "myposteimpresa.poste.it": [13013], "go.murt.uz": [2024], "*.pcbooster.com": [12262], "www.gfi-italia.com": [6298], "ftp.openssh.com": [12006], "apps1.buckscc.gov.uk": [19465], "tocco1.tocco.ch": [16600], "www.ielts.org": [7723], "www.offlinemode.org": [11792], "imap.sigxcpu.org": [14846], "tour.ua.edu": [16996], "apscatalog.majordomo.ru": [9914], "tinyims.co": [2024], "bigdinosaur.org": [1889], "a2zinc.net": [267], "amyjo.be": [2024], "schoolsonlineservices.leeds.gov.uk": [20799], "sqimg.qq.com": [13329], "status.hostdime.com": [7518], "signup.icij.org": [7689], "donate.lls.org": [9102], "carz88.com": [2024], "minstroy.nso.ru": [21192], "s.mailstand.net": [2024], "remote.nhclu.org": [11347], "jaxne.ws": [2024], "sndofl.at": [2024], "zru.me": [2024], "xplor.id": [2024], "siteor.pl": [14950], "www.voltairenet.org": [22494], "supraz.info": [2024], "albumarsiv.com": [828], "conference.apnic.net": [1279], "ehsaweb.wusm.wustl.edu": [18089], "ftrc.me": [2024], "fr.pastebin.ca": [12477], "meta.serverfault.com": [15424], "jrhn.ga": [2024], "allynisconnect1.gemalto.com": [6499], "frkyf.st": [2024], "consult.education.gov.uk": [19957], "snap.cdnvideo.ru": [19536], "nwswimshop.com": [11543], "festvl.com": [2024], "coldb.us": [2024], "hfmag.co": [2024], "courthou.se": [2024], "rwine.uk": [2024], "b.remarkabl.org": [2024], "instructables.com": [8199], "a4172wzpiq0apj1fz84318a7tkdc91fen4nl0z3n.ipleak.net": [20571], "alble.us": [2024], "smkngsc.tn": [2024], "www.spamcop.net": [21920], "gillette.mn": [2024], "blogs.monash.edu": [10577], "www.mauras.ch": [10096], "win8.svn.automattic.com": [1452], "lvp.rs": [2024], "imakethingswork.com": [7888], "eforms.woking.gov.uk": [22605], "nintex.us": [2024], "*.bethere.co.uk": [16141], "technet.idnes.cz": [20483], "s02.flagcounter.com": [20115], "s.paulmarc.org": [2024], "detectors.fnal.gov": [5741], "inventivedesigners.com": [8309], "go.mpls.tv": [2024], "*.iomtt.com": [8330], "flytog.me": [2024], "rugby.lemonde.fr": [9204], "casseta.me": [2024], "ddg.nu": [2024], "iam.colorofchange.org": [3439], "cppt.rs": [2024], "www.sccgov.org": [14401], "selms.spydus.co.uk": [21952], "www.verisign.co.uk": [17712], "shinystat.com": [21802], "agrisupply.com": [777], "on9news.tv": [2024], "www.bookshare.org": [2224], "www.generations-futures.fr": [20223], "ux.mailchimp.com": [9893], "cspbugtracker.jstor.org": [8472], "lane.by": [2024], "mcuk.xyz": [2024], "linkshare.com": [13595], "avatar.ms": [2024], "siteground.com": [14932], "publishers.viglink.com": [17797], "solohour.co": [2024], "sodaspeaks.org": [2024], "u.marlukki.eu": [2024], "epay.cardiff.gov.uk": [19509], "na.apachecon.com": [1120], "cle.clinic": [2024], "thepiratebay.immunicity.party": [21524], "afm.tv": [2024], "www.radio.feec.vutbr.cz": [17609], "r.2redbeans.com": [2024], "iBUTtxn01.hkjc.com": [20384], "seome.ch": [2024], "bau.mn": [2024], "chg.to": [2024], "s.smartson.se": [2024], "securitylabs.websense.com": [18180], "d.turn.com": [16911], "www.proxxy.site": [22174], "perens.com": [2395], "go.zicha.name": [2024], "gcsuns.com": [2024], "kurvy.co": [2024], "35.rkn.gov.ru": [13971], "nvcp.tk": [2024], "static.kameleoon.com": [8791], "url.lalit.org": [2024], "scholarships.stanford.edu": [15448], "gates.ly": [2024], "developers.intercom.io": [8241], "syfy.ly": [2024], "support.photobucket.com": [18922], "meetmaest.ro": [2024], "www.research.illinois.edu": [17346], "*.payza.com": [12523], "neobookings.com": [11193], "be.dad.com.br": [2024], "open.http.mp.streamamg.com": [22006], "6sm.link": [2024], "www.torrentsmirror.com": [16660], "cdn3.eurodns.com": [5396], "mnma.de": [2024], "providers.filepicker.io": [5787], "semaphoreci.com": [14632], "zenmate.com.ru": [18917], "alpinez.com": [2024], "fujino.com": [2024], "images.selfridges.com": [14629], "noransom.kaspersky.com": [8820], "cyngn.com": [3974], "devices.ted.com": [15871], "censor.net.ua": [19538], "www.clickandpledge.com": [3256], "55chan.org": [211], "my.reflected.net": [13776], "www.upsilon.cc": [17484], "images.nvidia.com": [11022], "clicktools.com": [3264], "b.johnestep.com": [2024], "buckwear.com": [19466], "cvote.it": [2024], "tradeinchecker.com": [16714], "kcoti.com": [2024], "51fanli.net": [209], "dailycamp.us": [2024], "yamil.cc": [2024], "api.growingio.com": [20312], "pma-old.wedos.net": [17993], "dn-geekpark-new.qbox.me": [13344], "main-old.admtyumen.ru": [19082], "m.animenewsnetwork.com": [19201], "sndp.me": [2024], "www.anchor.com.au": [1036], "gys.1688.com": [51], "images.nobelprize.org": [21147], "www.netcologne.de": [11226], "serkes.co": [2024], "m.stubhub.co.uk": [15602], "www.hackhands.com": [7122], "usdoedregistration.ed.gov": [4881], "www.dotdeb.org": [4695], "www.imgjam.com": [7995], "www.ask.fm": [1284], "mycouncil.surreycc.gov.uk": [22040], "miy.ag": [2024], "*.rsna.org": [13580], "my.bayphoto.com": [1732], "source.winehq.org": [18442], "property.now.com": [11572], "gkzn.mx": [2024], "malabo.usembassy.gov": [22406], "environmentalevidencejournal.biomedcentral.com": [1931], "help.securingthehuman.org": [14579], "hatzicf.sfu.ca": [14708], "moonfruit.com": [10620], "correu.upf.edu": [17471], "*.umw.edu": [17350], "album.surf": [2024], "southend-on-the-move.org.uk": [21910], "www.webtype.com": [18191], "webservices.stanford.edu": [15448], "*.epic.com": [5308], "pvac-sites.leeds.ac.uk": [17403], "redstone.minecraft.net": [10452], "veganvi.be": [2024], "arruda.eu": [2024], "solar1.net": [15178], "npch.us": [2024], "lovehoney.co.uk": [9634], "api.challenge.gov": [2991], "g.ontrip.in": [2024], "agoga.me": [2024], "www.kinkontap.com": [8922], "wqww.play-asia.com": [12828], "www.packagelab.com": [12344], "worldsecuresystems.com": [667], "www.yaostrov.ru": [22666], "images.apple.com": [1151], "to.axanite.net": [2024], "esprtsdsk.com": [2024], "pyramida.rtvs.sk": [13536], "af.boell.org": [19422], "webhostingpad.com": [18200], "om.dowjoneson.com": [11361], "nasenovezamky.sme.sk": [14198], "rry.im": [2024], "site.biz.id": [7512], "rimg03.rl0.ru": [13972], "www.bcptransparent.avenirclimatique.org": [1472], "tsa.io": [2024], "learning.southdowns.gov.uk": [21909], "dstnc.rs": [2024], "newspix.nzherald.co.nz": [11354], "*.m-pathy.com": [9703], "artsprojekt.com": [18902], "skillsdevelopmentscotland.co.uk": [21850], "www.raynersoftware.com": [13646], "privacy-cd.org": [13132], "www.umeng.com": [22363], "squarepenguin.co.uk": [15397], "aram.ca": [2024], "wlspro.com": [2024], "mail.islamdownload.net": [8367], "kdenlive.org": [8847], "www.myskai.ch": [10886], "code.nsnam.org": [11591], "www.dragonbyte-tech.com": [4733], "*.kunk.org": [10989], "online.firsttechfed.com": [5854], "wuro.wustl.edu": [18089], "en-sk.dict.cc": [4442], "plhair.co": [2024], "bbagm.info": [2024], "staging.www.gigya.com": [6641], "www.ivacy.com": [8411], "www.ip-check.info": [7805], "s.tjpmo.com": [2024], "together.wustl.edu": [18089], "usweeklysubscriptions.com": [17504], "api.ad.cnblogs.com": [19631], "ss3.sinaimg.cn": [14910], "ao.tstest.net": [2024], "www.stresslinux.org": [22013], "www.genivi.org": [6294], "www.avuecentral.com": [1483], "fisonline.lancashire.gov.uk": [20777], "runsci.co": [2024], "svnsft.co.uk": [2024], "cert.uninett.no": [17280], "ntagil.europaplus.ru": [20034], "hellus.tk": [2024], "www.encosia.com": [5225], "ilovesa.lt": [2024], "omgr.in": [2024], "biostatistics.wustl.edu": [18089], "ft0.eu": [2024], "os.geeki.es": [2024], "vehcl.es": [2024], "stlbeacon.org": [15421], "shop.forgefields.com": [6013], "www.erlang.org": [5333], "tige.rs": [2024], "tixto.info": [2024], "apm.buzz": [2024], "trk.tidaltv.com": [16507], "piwik.upo.es": [17479], "kyleisom.net": [9068], "usyd.be": [2024], "www.modulus.io": [10563], "p4.raasnet.com": [13716], "directory.unm.edu": [17072], "gw3.alicdn.com": [853], "pscorp.pstprod.peoplestrategy.com": [12581], "shop.bvg.de": [1605], "llhprd.ukw.jp": [22353], "m.chromeexperiments.com": [3122], "www.dragonflydigest.com": [4735], "www.troopers.de": [16834], "www.ultradns.*": [17218], "pure.unileoben.ac.at": [17267], "usask.ca": [17421], "www.rushmypassport.com": [14096], "a.liapis.info": [2024], "www.infosecisland.com": [8129], "www.nehnutelnosti.sk": [11177], "ontheweb.geekfaeries.fr": [20219], "oip.sc.egov.usda.gov": [17299], "siosm.fr": [14921], "www.sigmabeauty.com": [14840], "go.miicut.com": [2024], "www.regiobank.nl": [13789], "debt.wmtransfer.com": [18173], "bspb.ru": [2398], "asset-4.soup.io": [15235], "nuaz.co": [2024], "blogher.com": [2117], "hfs.washington.edu": [17376], "siod.co": [2024], "www.yarddigital.com": [18753], "*.dellin.ru": [19802], "wrc.osu.edu": [11797], "www.engagingnetworks.net": [5252], "kaj.me": [2024], "*.factoryselecthomes.com": [5616], "ecomm2.dell.com": [4317], "hmnco.link": [2024], "www.valleyfirst.com": [17620], "kbpravda.ru": [20698], "www.globalsign.co.in": [6700], "aarhus.dk": [449], "track.www.zazzle.com": [18903], "ufa.beeline.ru": [1778], "comic-con.net": [3467], "formget.com": [20138], "workspaces.statushub.io": [15504], "www.viidii.info": [22466], "jnck.ga": [2024], "travel.piliapp.com": [12706], "on.wcvb.com": [2024], "slghtjr.nl": [2024], "milkd.it": [2024], "birsk.startsmile.ru": [21980], "clientportal.fox-it.com": [6063], "strava.fitbit.com": [5867], "mbib.hsbc.com.hk": [20427], "jbn.pw": [2024], "nasa.gov": [10909], "www.kscu.com": [8993], "anth.me": [2024], "santafelinux.com": [21733], "www.carnegiescience.edu": [2867], "www.planningpa.bolton.gov.uk": [19424], "*.parti-pirate.ch": [12314], "www.xdomain.ne.jp": [18643], "url.urandul.net": [2024], "wiki.ethereum.org": [5367], "www.hertz.nl": [7354], "www.linguistlist.org": [9094], "zeus.krystal.co.uk": [9037], "valueclick.com": [17629], "www.turku.fi": [22313], "jwat.ch": [2024], "www.adoyacademy.se": [676], "myscore180.com": [10827], "www.splitreason.com": [15352], "demonoid.cc": [19807], "bitkonan.com": [2020], "klbr.co": [2024], "secure.ch.nicovideo.jp": [11430], "*.amiando.com": [998], "mixpanel.com": [10506], "bioextrat.us": [2024], "hhvw.lt": [2024], "wtreset.wellcome.ac.uk": [22559], "*.monsoon.co.uk": [10601], "m.theregister.co.uk": [22182], "bja.oxfordjournals.org": [12222], "at.azder.mk": [2024], "www.catchy.com": [2909], "ari.li": [2024], "dayshalldeclare.refugee.ru": [21624], "education.thepensionsregulator.gov.uk": [22173], "go.ogasuna.info": [2024], "neux.co": [2024], "mrp.illinois.edu": [17346], "uberflip.cdntwrk.com": [19535], "grinnellcollege.worldcat.org": [18536], "www.sublimetextbook.com": [22021], "hosp.fr": [2024], "pushkin.biglion.ru": [19375], "go.ivovi.ch": [2024], "apple.srad.jp": [21956], "6.cbsm.at": [8782], "pointclickcare.axonify.com": [1502], "go.housejoy.in": [2024], "tema.so": [2024], "rt.bakerlab.org": [1646], "www.mtmweb.biz": [10202], "b5.chaucanh.net": [2024], "kenneth.io": [8865], "ipv6.lurkmore.so": [9683], "cometdocs.com": [3465], "iwowcase.com": [7872], "www.byte.nl": [2501], "webwork.math.ust.hk": [22412], "wisesync.link": [2024], "sync.americanexpress.com": [979], "pjc.co": [2024], "declic.io": [2024], "blu.mn": [2024], "*.alltop.com": [910], "*.redbull.com": [13726], "dock1.beget.com": [19347], "nsho.re": [2024], "email.ipswich.gov.uk": [8348], "mdyn.co": [2024], "status.tealium.com": [16060], "l.hireup.com.au": [2024], "www.britmilfit.com": [19452], "hpac.cambridgeshire.gov.uk": [19496], "ruanko.taobao.com": [16015], "stronger.su": [2024], "loc1.hitsprocessor.com": [7432], "mibi.xiaomi.com": [18662], "qfphcc.qf.org.qa": [21557], "www.careers.cam.ac.uk": [17332], "indexcat.nlm.nih.gov": [11090], "company.naukri.com": [11146], "www.qgazette.com": [13397], "gionn.net": [6645], "sstats.golfdigest.com": [6808], "www.yourworld.anz.com": [374], "cdn.mediavoice.com": [12904], "bbs.showapi.com": [21815], "mirs.permkrai.ru": [21390], "www.credoaction.com": [3789], "cyberstewards.org": [3955], "medienberufe-sde.kursbuero.de": [9057], "shop.1prime.ru": [83], "maputo.usembassy.gov": [22406], "www.vmail.me": [17892], "phare.normalesup.org": [11524], "dug.so": [2024], "backendless.com": [19299], "research.nvidia.com": [11022], "static.tierra.net": [16510], "feeds.thesun.co.uk": [22188], "parentalcontrol.eset.com": [5347], "ru.tsn.ua": [22301], "donbalon.us": [2024], "jstdb.com": [2024], "www.teachingcenter.wustl.edu": [18089], "blogs.intevation.de": [8293], "owa.ncl.ac.uk": [10926], "rnis.nso.ru": [21192], "pthree.org": [13238], "www.fortnite.com": [6034], "videolicious.com": [17783], "launchde.sk": [2024], "www.usmagazine.com": [17503], "adamlou.is": [2024], "aspiredrinks.us": [2024], "e5.io": [2024], "go.htc.de": [2024], "betnet.fr": [11224], "on.dgbarnett.me": [2024], "message.58.com": [212], "mtv.tl": [2024], "mailservice.unitech.net": [17266], "www.domainwho.is": [4654], "www.internetvotes.org": [8278], "mobile.xmarks.com": [18671], "lifeb.it": [2024], "mcdia.co": [2024], "ovh-hosting.fi": [12205], "businessaccount.bl.uk": [2358], "*.hitbox.com": [7427], "postauto.ch": [12996], "www.net-mobile.com": [11217], "stmacs.ca": [2024], "cjs-cdkeys.com": [2631, 2632], "aqmag.co": [2024], "to.zdp.us": [2024], "liste.ferrara.linux.it": [9419], "mynexus.ch": [2024], "www.pximg.net": [12778], "cdn.xsolla.com": [18685], "pojonews.co": [2024], "poczta.hekko.pl": [7289], "TNSpostalplatformGMS.tnsglobal.com": [15906], "cdn.samsung.com": [14326], "www.flexport.com": [5893], "xvrg.me": [2024], "www.bitmovin.com": [2031], "a.kodirai.com": [2024], "bw8.co": [2024], "slejm.atlatszo.hu": [1349], "bam-bu.co": [2024], "status.braintreepayments.com": [2292], "downloads.baruwa.com": [19320], "mollom.com": [10573], "mayh.ws": [2024], "www.gustavus.edu": [7009], "hkg1.aastocks.com": [19037], "mtswelding.co.uk": [21043], "www.6.cbsm.at": [8782], "old.motor.ru": [21026], "2013-main.admtyumen.ru": [19082], "webmail.digi.hu": [4458], "cdn.file.octopuspop.com": [11754], "abovealloffers.com": [871], "fsf.deals": [2024], "www.vikingvpn.com": [17798], "thawrah.in": [2024], "grnlt.info": [2024], "static.prisguide.no": [21499], "s68.cnzz.com": [3328], "great-yarmouth.gov.uk": [20304], "v.alid.co": [2024], "jknig.ht": [2024], "support.worldofwarcraft.com": [18542], "nikl.us": [2024], "japerna.com": [2024], "akademy2006.kde.org": [8735], "fnpl.io": [2024], "performancealley.com": [12601], "www.intevation.de": [8293], "www.getjaco.com": [6590], "forums.openvpn.net": [12024], "git12.rostrud.ru": [21677], "www.filesmonster.com": [20093], "www.familie.hessen.aok.de": [376], "anomos.info": [1076], "vestor.ly": [2024], "hashbang.ca": [7217], "stuffgate.com": [22019], "calm.ac": [2024], "its.weill.cornell.edu": [3676], "cqrollcall.com": [2669], "www.rit.edu": [13493], "try.jupyter.org": [8703], "in.opera.com": [12086], "mpul.ly": [2024], "are.to": [2024], "folkyp.com": [2024], "show.dji.com": [4029], "toolbox-stage.dnc.org": [4050], "www.microcorruption.com": [10388], "www.comptroller.nyc.gov": [11332], "www.diogomonica.com": [4508], "bnkomi.ru": [19417], "htwr.co": [2024], "tfb.ru": [16236], "cbo.to": [2024], "mgs.bz": [2024], "bbs.aliyun.com": [868], "mtec.ir": [2024], "www.eoft.eu": [4926], "*.pokemon.com": [12899], "www.buzzvpn.com": [2491], "dco-cdn.w55c.net": [17984], "www.uden.nl": [11172], "blog.justgiving.com": [20672], "techco.tl": [2024], "epro.marketing": [2024], "loader.engage.gsfn.us": [6970], "tools.percona.com": [12589], "radar.qrator.net": [21562], "*.roe.ch": [13999], "www.infocity.az": [20527], "developer.bluetooth.org": [2170], "arb-contrainfo.espiv.net": [20021], "grscp.com": [2024], "www.avm.de": [1478], "atomicinsights.com": [1353], "aravo.kompany.com": [8980], "lovefood.com": [9639], "go.piszek.com": [2024], "xssposed.org": [18626], "esfl.info": [2024], "home.mcafee.com": [10129], "ay.wtf": [2024], "www.xt-commerce.com": [18687], "citicenter.info": [2024], "backstage.soundcloud.com": [15231], "skrt.io": [2024], "nowsecure.com": [11573], "pnl.pe": [2024], "www.lbo-news.com": [20788], "profile.ak.fbcdn.net": [5689], "help.weibopay.com": [18280], "snabb.co": [15082], "yehz.us": [2024], "jobs.un.org": [17057], "framegrabs.vzaar.com": [17976], "www.forsakringskassan.se": [6027], "srv3.bakerlab.org": [1646], "*.net.edgesuite.net": [805], "www.enfuseconference.com": [6988], "ange.io": [2024], "dfrdb.gov.au": [4291], "westasia.hivos.org": [7436], "on.gorrindo.com": [2024], "twca.mp": [2024], "mynortonaccount.com": [11545], "blog.hitbtc.com": [7424], "litecoinlocal.net": [9477], "*.schwabcdn.com": [14433], "www.teardowniq.com": [16072], "center4.top": [2024], "selfservice.blackpool.gov.uk": [2074], "www.zalando.pl": [18877], "feedback-form.truste.com": [15922], "mobile.asda.com": [407], "de.syllable.org": [22064], "wpimg.wallstcn.com": [18057], "www.dersverilir.net": [4370], "faz.link": [2024], "www.squarefree.com": [8570, 15398], "bugreport.filemobile.com": [5785], "3ischn.de": [2024], "l.svendsen.xyz": [2024], "unc.live": [2024], "analysis.avira.com": [1474], "c.mms.fit": [2024], "ly.cpau.org": [2024], "imagesb.btol.com": [1645], "pass.alitrip.com": [865], "cherkessk.beeline.ru": [1778], "dashboard.voice.aol.com": [380], "*.buerger-cert.de": [2413], "egfx.me": [2024], "upsilon.cc": [17484], "www-static.ubuntu-fr.org": [17178], "boxee.tv": [2276], "recalll.co": [13704], "beefree.io": [1774], "link.icon.me": [2024], "omniatv.com": [21246], "correo.upo.es": [17479], "as.upc.ie": [17082], "bvrs.us": [2024], "id.4.boardgamearena.com": [2182], "*.onion.to": [11897], "www.bn.com": [1705], "pws.sc.egov.usda.gov": [17299], "docketalarm.com": [4607], "swthm.co": [2024], "cisco-images.cisco.com": [3165], "iwa.js.test.octopuspop.com": [11754], "bmay.me": [2024], "*.cupidplc.com": [3916], "www.livebusinesschat.com": [9513], "sparkyjax.link": [2024], "ska.li": [2024], "authdb.ohiolink.edu": [11799], "jos.oxfordjournals.org": [12222], "btyw.info": [2024], "u.badgerdash.tk": [2024], "cdn.elegantthemes.com": [5146], "store.theverge.com": [16286], "internet.org.nz": [8275], "bit.tdf.org": [2024], "oebb-co2-ticker.at": [21230], "bggk.co": [2024], "mainlinem.co.uk": [2024], "c21.in": [2024], "mohr4.me": [2024], "prop.red": [2024], "saisapp67.stanford.edu": [15447], "www.webpay.cl": [18232], "www.cimbpreferred.com": [2618], "uweb3.host.ie": [4499], "pndt.co": [2024], "tfrte.co": [2024], "becker.starfishsolutions.com": [21977], "discuss.dwolla.com": [4809], "www.anybots.com": [1113], "www.allcoin.com": [875], "99bitcoin.com": [2024], "chebarkul.startsmile.ru": [21980], "workable.com": [18529], "coiiege.com": [2024], "nhn.li": [2024], "www.site.yandex.com.tr": [18740], "poste.io": [13012], "nslk.ly": [2024], "backgroundwp.oxfordjournals.org": [12222], "www.cartersoshkosh.ca": [2879], "fastmail.com": [5677], "archive.stsci.edu": [15281], "proteomesci.biomedcentral.com": [1931], "itzb.nl": [2024], "ia.media-imdb.com": [7760], "tmz.com": [15897], "precisionpros.com": [13065], "l.sd3.in": [2024], "blogs.vinuthomas.com": [17811], "m5.baidu.com": [1641], "kbb.com": [8859], "es.foursquare.com": [6061], "398-fz.rkn.gov.ru": [13971], "www.saymedia.com": [14381], "iphos.ru": [2024], "thiswebhost.com": [16446], "portalcontent.johnshopkins.edu": [8626], "www.thelocal.no": [22169], "csl.illinois.edu": [17346], "jsb.im": [2024], "partner.yandex.by": [18739], "m.gatewaytohomechoice.org.uk": [20208], "lccn.loc.gov": [9541], "*.fireeye.com": [5836], "www.rapidmoviez.eu": [21581], "redpix.ie": [2024], "publish.escholarship.org": [4962], "securepaynet.net": [14570], "mcl.tw": [2024], "adamcaudill.com": [607], "thepiratebay.unblocked.stream": [21524], "23.rkn.gov.ru": [13971], "1anh.com": [73], "verifiedvoting.org": [17709], "bow.life": [2024], "www.igolder.com": [7957], "reverbnation.com": [13899], "docs.tw": [19860], "neowiki.neooffice.org": [11190], "nwk-unbrick2.apple.com": [1151], "www.oroboro.com": [21292], "t.boegl.in": [2024], "secura.us": [2024], "m.btcchina.com": [1581], "j.w12.org": [2024], "www-amsweb-ext.imf.org": [7761], "lex.to": [2024], "seancassidy.me": [14502], "rdns.cc": [3988], "r.priztek.com": [2024], "edtll.es": [2024], "www.sfz.uni-mainz.de": [17410], "pirateparty.gr": [21419], "l.xtsunamix.xyz": [2024], "portrait5.sinaimg.cn": [14910], "ancora.click": [2024], "bcs-mx.com": [2024], "samples.asp.net": [413], "holometer.fnal.gov": [5741], "support.surfeasy.com": [15714], "ccsdlib.ccsd.cnrs.fr": [6174], "passport-ckicheck.yandex.com": [18742], "www.phpclasses.org": [12683], "bit.thdev.net": [2024], "go.nelwel.net": [2024], "redcoon.pt": [13745], "dolimg.com": [4634], "as.cx": [2024], "meb.manuel.pw": [2024], "idgkonto.idg.se": [7709], "www.post.cz": [14705], "vologda.rt.ru": [13529], "mailman.stanford.edu": [15448], "s33.postimg.org": [13024], "gwdang.com": [20327], "static.chefkoch-cdn.de": [3062], "rottenecards.com": [14035], "thr.com": [15878], "imglf.nosdn.127.net": [41], "www.post.ch": [12996], "sstats.adobe.com": [669], "roadcode.kannz.com": [20682], "www.teletrust.de": [22119], "brs.io": [2024], "zapis.cesa.vutbr.cz": [17609], "download.qt-project.org": [13364], "*.opscode.com": [12097], "cmu.edu": [2869], "lo.tpprf.ru": [22260], "cdtlicio.us": [2024], "x.mcrbrasil.net": [2024], "www.solutionshealthcare.com": [15195], "l.evj.nl": [2024], "panajunior.com": [2024], "souq.social": [2024], "kink.ly": [2024], "oberpfalz.piratenpartei.de": [12740], "uchastings.edu": [17014], "assessment.sia.homeoffice.gov.uk": [20399], "kah.vi": [2024], "ffc.ph": [2024], "jrcon.me": [2024], "www.craphound.com": [3758], "audbn.co": [2024], "static.scientificamerican.com": [14446], "s.fam-rose.net": [2024], "t.anbell.co.uk": [2024], "services.postcodeanywhere.co.uk": [21469], "ausinfotech.net": [1400], "secular.org": [14536], "nsm.me": [2024], "52.rkn.gov.ru": [13971], "vrg-s.com": [2024], "daweso.me": [2024], "deli.jd.com": [8436], "lists.gajim.org": [6383], "aninha.tk": [2024], "v.day.az": [2024], "api.zuji.com.hk": [19021], "avoinyliopisto.fi": [19289], "sbs.e-paycapita.com": [19919], "fell.to": [2024], "version6.ru": [22447], "h.irs01.com": [20584], "cqnow.co": [2024], "www.tuftsmedicalcenter.org": [16892], "www.meine-verbraucherzentrale.de": [17706], "realworldocaml.org": [13689], "shrty.pw": [2024], "cookbooks.adobe.com": [669], "nettitude.com": [11295], "sakerhet.idg.se": [7709], "chessbase.com": [3073], "policemutual.co.uk": [12908], "www.hertztrucks.de": [7345], "dropdav.com": [4762], "myin.at": [2024], "embracelife.co": [2024], "cl.vc": [2024], "www.docelu.pl": [4604], "tlu.yt": [2024], "orionhub.org": [12142], "www.valuedial.com": [17634], "www.sony.eu": [15213], "s-t-d.org": [21707], "microad.co.jp": [10376], "www.calendarwiz.com": [2753], "lnca.mp": [2024], "mystarwars.tk": [2024], "api-accounts.wired.com": [18454], "jotace.me": [2024], "lrnskls.org": [2024], "www.notefly.org": [11559], "hampshire.firmstep.com": [20109], "luxomo.com": [9686], "steverul.es": [2024], "img1.wsimg.com": [14570], "tcninfo.com": [2024], "www.allaboutcircuits.com": [19146], "grj.se": [2024], "games.yandex.com.tr": [18740], "azet.sk": [1507], "*.infrastructure.gov.au": [4356], "search.hkgolden.com": [7058], "www.gcaptain.com": [6289], "keyp.la": [2024], "wwwcf2.nlm.nih.gov": [11090], "myheritage.pl": [10875], "lstrn.us": [2024], "www.cluster1.easy-hebergement.net": [5024], "imgwx4.2345.com": [98], "hdbits.org": [7248], "embed.5min.com": [217], "admin.zsl.org": [19000], "annualreport.stanford.edu": [15448], "tpbay.co": [22174], "xmpp.org": [18617], "mcshort.pe.hu": [2024], "adygheya.sledcom.ru": [21858], "ganzestore.com": [6437], "german.alibaba.com": [857], "due.la": [2024], "mload.me": [2024], "sapaac.com": [2024], "mycg.hk": [2024], "m.onofoods.com": [2024], "professionals.engineering.osu.edu": [11797], "00f.net": [0], "go.ironman.com": [2024], "desktop.vip.symantec.com": [15780], "nws.sunmarg.in": [2024], "roomscheduling.uwm.edu": [17379], "sitemanager.ncl.ac.uk": [10926], "www.fav.me": [4409], "mediastorehouse.net": [10160], "fb.aim-sa.net": [2024], "med.uio.no": [17414], "jobs.jobvite.com": [8616], "makerble.com": [9924], "fullcirclestudies.com": [6226], "cs16.myzuka.fm": [21079], "mkkh.co": [2024], "dl.web.sogoucdn.com": [15169], "www.vr.org": [17953], "to.thrivedc.org": [2024], "luci.criosweb.ro": [3796], "historum.co": [2024], "easthants.gov.uk": [5004], "api.weibo.com": [18279], "html.m.cmbchina.com": [2639], "by.sjm.us": [2024], "www.washingtonblade.com": [22533], "glassdoor.co.in": [20259], "tinybp.com": [2024], "blog.newsela.com": [21125], "browsingprotection.f-secure.com": [5533], "books.enaza.ru": [5222], "www.coinwallet.eu": [3400], "thomsonreuters.com.ar": [22198], "onthemap.staffordshire.gov.uk": [15435], "prky.me": [2024], "www.jaim.at": [8504], "r24823064.sync.app.asana.com": [1265], "1ty.me": [89], "minpred.government-nnov.ru": [20295], "www.bosh.io": [2249], "e5.karusel-tv.ru": [20690], "aboren.org": [2024], "webfestglobal.com": [18211], "mdws.blueshorefinancial.com": [2149], "talentne.ws": [2024], "l.imti.co": [2024], "go.luca.lk": [2024], "wldktn.co": [2024], "*.autohits.vn": [1441], "fylde.gov.uk": [6270], "townta.lk": [2024], "btcbm.io": [2024], "skne.at": [2024], "kamchatka.auto.ru": [19276], "sr.stanford.edu": [15448], "www.jqplay.org": [20655], "s.suhrthu.com": [2024], "leiajung.org": [9252], "glam.opendata.ch": [21270], "wa236.teamviewer.com": [16069], "go.redirectingat.com": [21621], "mack.pw": [2024], "m.atoz2u.com": [2024], "tech.netapp.com": [11221], "ntnl.org.nz": [2024], "automotive.dianomi.com": [4432], "beatlim.it": [2024], "static.yota.ru": [22685], "baden-airpark.de": [19301], "z.1re.ca": [2024], "secure.last.fm": [9174], "www.npi.org.uk": [10987], "www.upcase.com": [17469], "dna.ancestry.com": [1035], "training.obfs.uillinois.edu": [17034], "rossvi.de": [2024], "cbridge.to": [2024], "vkarpinsk.info": [22477], "applications.telford.gov.uk": [22121], "anti-theft.kaspersky.com": [8820], "www.assoc-amazon.com": [1312], "doc.mono.ch": [2024], "volusiaflagler.aclufl.org": [297], "youmail.com": [18797], "www.cryptonomicon.com": [3875], "i1.services.social.microsoft.com": [10396], "itbiz.cz": [8400], "evenement.april.org": [1171], "teltarif.de": [16173], "*.bellsouth.com": [1794], "on.namgbr.org": [2024], "history.fnal.gov": [5741], "admin.trafficstars.com": [22267], "api.curation.ameba.jp": [971], "re.taobao.com": [16015], "opac.ub.uni-mainz.de": [17410], "jaf.li": [2024], "static.biligame.net": [1903], "www.icts.kuleuven.be": [8832], "hu.4.boardgamearena.com": [2182], "smr.citilink.ru": [19594], "baz.co": [2024], "ec2.cdn.dell.com": [4317], "simage4.pubmatic.com": [13241], "eatsa.com": [19944], "hannahousetours.stanford.edu": [15447], "www.torreycommerce.com": [16665], "to.appinvit.es": [2024], "altrm.co": [2024], "cancercoun.cl": [2024], "library.mit.edu": [9763], "ow.fwd.fm": [2024], "msk2.rosevrobank.ru": [14024], "gradle.org": [6867], "*.alienvault.com": [860], "www.old.civitas.ru": [19603], "yourvideohost.com": [18824], "*.nulab-inc.com": [11611], "kachingle.com": [8779], "juni.pr": [2024], "embed.ted.com": [15871], "test-nqs.nice264.com": [11422], "cdn.yottos.com": [22686], "l.skpetites.com": [2024], "*.htrnews.com": [7321], "cinema.usc.edu": [17366], "roblahb.la": [2024], "softaculous.com": [15162], "*.neo-interactive.hu": [11186], "realty.rambler.ru": [13600], "evdrive.com": [4976], "slproweb.com": [15040], "testbed.aviationweather.gov": [19285], "brvry.me": [2024], "mondo2000.net": [10581], "www.acrobatusers.com": [537], "btnapps.net": [2371], "rdean.me": [2024], "es.oxforddictionaries.com": [12223], "blogs.nottingham.ac.uk": [11567], "c1.neweggimages.com": [11356], "militaryfriendly.com": [20984], "ops.ietf.org": [7725], "trituns.co": [2024], "www.kmymoney.org": [8756], "myaccount.rotherham.gov.uk": [14032], "my.yota.ru": [22685], "barnet.moderngov.co.uk": [21005], "www.net.vutbr.cz": [17609], "www.ecommercebrasil.com.br": [4877], "app.fastly.com": [5676], "star.erg.cuhk.edu.hk": [2704], "udc.bing.com": [1926], "www.latimes.com": [16805], "opaskartta.turku.fi": [22313], "p-g.me": [2024], "phrmcyt.ms": [2024], "evs.so": [2024], "sso.acs.org": [974], "lib.chipdip.ru": [19582], "www.faxrobot.com": [5685], "americanspaces.state.gov": [17146], "www.macfound.org": [9833], "res-ga.smzdm.com": [15081], "www.cimbsecurities.co.th": [2620], "www.charterourcommunity.com": [3029], "getapp.com": [20238], "card.yahoo.co.jp": [18730], "www.brandnewbooty.com": [2298], "repar.co": [2024], "senkyo.yahoo.co.jp": [18730], "libraries.ceredigion.gov.uk": [2972], "community.roblox.com": [13980], "livehd.me": [2024], "dolphin.com": [19868], "cmag.to": [2024], "eqt-voirie.montpellier3m.fr": [10609], "zarechye.beeline.ru": [1778], "fcs.co.at": [2024], "govsen.se": [2024], "carefre.co": [2024], "static.packagelab.com": [12344], "chromium.org": [3124], "careint.uk": [2024], "exchange.1and1.com": [69], "www4c.medicare.gov": [20953], "safelinks.f-secure.com": [5533], "evita.hnonline.sk": [7445], "beta.play-asia.com": [12828], "stc.sandbox.pagseguro.uol.com.br": [17079], "fa.trend.az": [22281], "w.tides.org": [2024], "www.lazycoins.com": [9196], "dennik.hnonline.sk": [7445], "web3.login.cornell.edu": [3676], "www-304.ibm.com": [7679], "lg.ayyo.ru": [19292], "loc-aid.com": [9547], "typehype.eu": [2024], "likes.kr": [2024], "secure.coursesmart.com": [19701], "bgcky.us": [2024], "wcms-prod-web-3.ucsc.edu": [17390], "bmd.gy": [2024], "mail.msk.dlink.ru": [19853], "tr.prospecteye.com": [13206], "not-bad.link": [2024], "sologi.co": [2024], "img0.leboncoin.fr": [20796], "lipetskaya-obl.beeline.ru": [1778], "pxc.otto.de": [12168], "*.groupersocialclub.com": [6951], "apcjobs.co": [2024], "www.gallup.com": [6387], "www.dotcologne.de": [4689], "mobiro.be": [2024], "www.airshipventures.com": [796], "bereavement.bedford.gov.uk": [19341], "www.chip-chap.com": [3088], "logmein.com": [9559], "dolgoprudnyiy.biglion.ru": [19375], "ssl.aimpulse.com": [786], "www.six.feec.vutbr.cz": [17609], "lick.ms": [2024], "mntr.it": [2024], "pb1.vbrr.ru": [17668], "cloudmark.com": [3308], "perk.as": [2024], "myricom.com": [10884], "d.igit.al": [2024], "vikash.link": [2024], "livepassdl.conviva.com": [3633], "streaming.amediateka.ru": [19186], "stats.aws.rubiconproject.com": [14066], "apac.redhat.com": [13735], "glazov.startsmile.ru": [21980], "itci.eu": [2024], "mail.econda.de": [5050], "amex.justgive.org": [8709], "qntm.co": [2024], "doc.zarafa.com": [18893], "*.gizmodo.com": [6677], "ww856.smartadserver.com": [15049], "www.canon.fi": [2822], "eztv.ch": [20063], "www.canon.fr": [2822], "g4.std3.ru": [15511], "tresssd.es": [2024], "www.patronbase.com": [21358], "secure.*.onsugar.com": [11853], "ians.ch": [2024], "mygannett.gannett.cornell.edu": [3676], "shophumanity.us": [2024], "palliative.stanford.edu": [15448], "account.mypostoffice.co.uk": [13002], "os.alipayobjects.com": [864], "parallels.com": [12420], "kcrw.com": [20700], "codemirror.net": [3371], "argonaut.es": [2024], "conference.sport-express.ru": [21941], "bex.is": [2024], "tjunks.us": [2024], "urbanartcloud.com": [17497], "www.zimperium.com": [18969], "dpct.co": [2024], "myshar.es": [2024], "webregister.web.cern.ch": [2587], "securifera.com": [14578], "rajo.photo": [2024], "extra.sankakucomplex.com": [21730], "tle.seng.ust.hk": [22412], "boyb.me": [2024], "sstic.org": [14248], "cases.legal": [19521], "helpingrhinos.org": [20366], "ielm.ust.hk": [22412], "u.iphide.net": [2024], "tinfoil.co": [16547], "www1.pconline.com.cn": [12263], "s.anime.dj": [2024], "courses.islamacademy.net": [8366], "beta.disk.yandex.com.tr": [18740], "l.udr.me": [2024], "cf-wp-prod.sharethis.com": [14730], "fetz.us": [2024], "steganos.com": [15530], "uimag.in": [2024], "www.blenderclan.tuxfamily.org": [22319], "clpush.es": [2024], "dl.phncdn.com": [12661], "dvadrt.co": [2024], "ctu.io": [2024], "endlp.me": [2024], "chltr.cl": [2024], "sangnite.info": [2024], "wbt.ms": [2024], "time.yandex.com": [18742], "mcross.us": [2024], "formscau.upf.edu": [17471], "jscsecmat.ctscdn.com": [3899], "nin.li": [2024], "www.rackspacecloud.com": [13567], "subgraph.com": [15623], "chtl.it": [2024], "ec.razerzone.com": [13647], "vclz.co": [2024], "emeasuretool.cms.gov": [19630], "www.smarthide.com": [15053], "www.wolframscience.com": [18490], "boat.voyagegroup.com": [17948], "worldfoodprize.org": [18546], "secretmaryo.org": [14531], "whitefamily.in": [2024], "carbonmade.com": [2844], "durif.tools.ietf.org": [7725], "georgievsk.beeline.ru": [1778], "i.rixv.net": [2024], "kjbr.at": [2024], "online.alumni.rice.edu": [13926], "tbldr.co": [2024], "diogo.me": [2024], "admin.google.com": [6818], "qzy.fr": [2024], "phishd.com": [12660], "aoptix.com": [385], "230.atlatszo.hu": [1349], "www.red-gate.com": [13718], "paymybill.uillinois.edu": [17034], "ocg.cancer.gov": [2819], "mountspace.com": [10661], "glamp.in": [2024], "web.boldchat.com": [2203], "w.drgarytho.com": [2024], "www.atlasofprejudice.com": [1347], "meter-svc.nytimes.com": [11041], "l.androdize.com": [2024], "www.studiegids.tue.nl": [15940], "customersonly.dtint.com": [4079], "mhsmith.us": [2024], "habbo.news": [2024], "oloadcdn.net": [12070], "srilanka.usembassy.gov": [22406], "static6.uk.businessinsider.com": [2471], "tatepublishing.com": [16038], "podhelp.me": [2024], "jobs.ieee.org": [7717], "www.instantpage.me": [8188], "i.gaenali.pe.kr": [2024], "affiliate.hitbtc.com": [7424], "y.yehs.co": [2024], "pnauti.co": [2024], "www.icsalabs.com": [7696], "21xxx.ml": [2024], "help.pandora.com": [12389], "www.parametersecurity.com": [12421], "www.instat.com": [8030], "cargom.tc": [2024], "on.tmj4.com": [2024], "balkanleaks.eu": [1651], "photobtc.com": [12669], "www.comic-con.org": [3467], "localc.us": [2024], "pdq.at": [2024], "thepiratebay.bypassed.download": [21524], "conference.oracle.com": [12116], "srbes.com": [2024], "spclzd.uk": [2024], "ajhaslett.info": [2024], "he-x.com": [2024], "grc.com": [6357], "git.cru.fr": [3826], "itg.sh": [2024], "abhis.hk": [2024], "cdn.ht.trafficforce.com": [16724], "forc.ir": [2024], "slce.us": [2024], "www.everydayfeminism.com": [5445], "rood.sp.nl": [14216], "www.briehost.com": [2333], "vk-prize.europaplus.ru": [20034], "www.speed-dreams.org": [15321], "desktop.vovici.com": [17938], "b.tro.ph": [2024], "animalbiotelemetry.biomedcentral.com": [1931], "politiken.dk": [12922], "poole-consult.objective.co.uk": [21225], "www.slenderkitchen.com": [15018], "mailbox.otpbank.ru": [12165], "ae01.alicdn.com": [853], "moodle-test.uni-mainz.de": [17410], "sedo.fr": [14606], "azct.info": [2024], "rtfd.org": [13671], "store.wsj.com": [22625], "www.ictu.nl": [7698], "eti.ae": [2024], "sgms.co": [2024], "listonic.com": [9466], "torrentz.me": [16663], "sxod.im": [2024], "business.yahoo.co.jp": [18730], "foodt.be": [2024], "xsens.com": [18683], "knowledge.hubspot.com": [7599], "rlink.pw": [2024], "mrea.ch": [2024], "mfaj.ml": [2024], "ngy.me": [2024], "48.mvd.ru": [21055], "bitly.upslon.ga": [2024], "answers.virginmobileusa.com": [17819], "www.torrents.me": [22247], "infor.mr": [2024], "popute.es": [2024], "www.electronicinsanity.com": [5143], "download2.mikrotik.com": [10424], "*.ellislab.com": [19982], "webshotcdn.dynamicyield.com": [4822], "telebasel.ch": [22114], "www.fimc.net": [10175], "processing.org": [13167], "constantcontact.com": [3594], "www.gocoin.com": [6753], "www.beabloo.com": [19340], "www.familie.bayern.aok.de": [376], "diagonalperiodico.net": [4429], "ac-ao.de": [2024], "ccbill.com": [2549], "l.rthr.me": [2024], "enovance.com": [19927], "*.aans.org": [973], "5pts.cc": [2024], "hpci-tech.aics.riken.jp": [13489], "roaringpenguin.com": [13976], "7-s.imgbox.com": [7997], "3ds.ubrr.ru": [17173], "ivanrafael.info": [2024], "goto.mattm.cc": [2024], "cdn-www.reflected.net": [13776], "radio.mvd.ru": [21055], "www.nnmclub.to": [10982], "cmbt.gt": [2024], "claytonsaur.us": [2024], "www.spacelaunchreport.com": [15280], "gsg.today": [2024], "www.islambook.com": [8374], "www.amnesty.org.ru": [1013], "hngt.co": [2024], "sources.opencorporates.com": [11967], "www.adsafecontrol.com": [591], "allclearid.com": [874], "fgtix.to": [2024], "w5m.ag": [2024], "we3.djicdn.com": [4029], "s.kalastro.id": [2024], "movies.friday.ru": [20175], "go.reckoning.nl": [2024], "www.formassembly.com": [6018], "betyt.ml": [2024], "lcurio.us": [2024], "bigseb.me": [2024], "www.k7r.eu": [20675], "discussions.apple.com": [1151], "properties.metrogroup.de": [10350], "www.23andme.com": [100], "ac.duckduckgo.com": [4785], "p7.raasnet.com": [13716], "www.drdobbs.com": [16999], "ee-www.stanford.edu": [15448], "meteoprog.kz": [10338], "www.skolaonline.cz": [21852], "clearchain.com": [3231], "sync.mathtag.com": [10083], "lists.us.dell.com": [4317], "r24624994.sync.app.asana.com": [1265], "portal.sevenoaks.gov.uk": [14696], "www.scottlinux.com": [14463], "leshanguan.jd.com": [8434], "vitalsupply.co": [2024], "at.svastha.net": [2024], "usvisa-info.com": [2679], "irm.iciciprulife.com": [7917], "qianbao.baidu.com": [1641], "molloy.worldcat.org": [18536], "mjt.co": [2024], "domani.ly": [2024], "advq.yandex.com.ua": [18741], "www.kingston.greenparty.org.uk": [6908], "s.iuniv.tv": [2024], "edtech.team": [2024], "*.pipedot.org": [12732], "www.travelnow.com": [16766], "support.cape-it.de": [2828], "delegated.osu.edu": [11797], "rsdn.me": [2024], "se.wwte9.com": [18031], "sites.usa.gov": [17110], "link.jbeurel.io": [2024], "office.wikimedia.org.uk": [18388], "s.mouallem.com": [2024], "www.1x.com": [67], "support.runbox.com": [14093], "beesecure.prpa.org": [15109], "www.redcoon.pt": [13745], "www.sympa.org": [15785], "examcr.am": [2024], "mnd.ly": [2024], "cdn10.iconfinder.com": [7920], "erthx.pl": [2024], "ecco.me": [2024], "campusplan.georgetown.edu": [6531], "sanantonio2016.honeynet.org": [20401], "hostica.com": [7530], "vkf.mobi": [2024], "data.netzausbau.de": [2445], "gkgl.co": [2024], "www.yacuna.com": [18720], "sl8d.co": [2024], "dot.sachin21.jp": [2024], "tools.bakerlab.org": [1646], "stiff.ninja": [2024], "n3.hitravel.xyz": [2024], "jamp.ae": [2024], "coachup.me": [2024], "edg.gs": [2024], "www.wine-staging.com": [18440], "6may.fbk.info": [5691], "komi-news.ru": [20744], "phonograph-static.voxmedia.com": [22503], "butrfli.es": [2024], "assessment.104.com.tw": [18], "www.provost.usc.edu": [17366], "hiesorrentovalley.hotelwifi.com": [7560], "www.zenmate.pt": [18917], "media.cheatography.com": [19567], "www.openmoko.org": [12071], "*.riverisland.fr": [13963], "jira.upc-cablecom.ch": [22386], "specials.lidl.co.uk": [20833], "reader.udn.com": [17020], "www.pss.sk": [13233], "order.1and1.co.uk": [71], "ztunnel.com": [18859], "www.acspul.asso.ulaval.ca": [17319], "www.mims.co.id": [9756], "rss.bataysk-gorod.ru": [19326], "alah.li": [2024], "lists.openswan.org": [12080], "*.violetindigo.com.au": [17814], "www.companic.nl": [19655], "stegre.fr": [2024], "ss7.sinaimg.cn": [14910], "visiba.com": [17855], "gaia-gis.it": [6381], "east-africa.hivos.org": [7436], "whatson.sydney.edu.au": [22063], "subscribeonline.co.uk": [4716], "collcons.it": [2024], "www.xtgem.com": [18689], "504.la": [2024], "arch0.sv.gnu.org": [6337], "mus.cr": [2024], "earth.leeds.ac.uk": [17403], "www.juki.co.jp": [8476], "*.vcommerce.com": [17670], "urb.yt": [2024], "piratetavern.org": [22174], "*.buysellads.com": [2484], "s.draiser.net": [2024], "www.billmaher.com": [1908], "jrx.to": [2024], "developer.appcelerator.com": [1144], "support.unichange.me": [22370], "sirket.yandex.com.tr": [18740], "kcons.co": [2024], "myarea.autoscout24.de": [1458], "*.biowarestore.com": [1934], "madametussauds.com": [9853], "owca.mp": [2024], "emailcenter.acs.org": [974], "audio-stori.es": [2024], "amrx.oxfordjournals.org": [12222], "inter.ly": [2024], "flo.mx": [2024], "polpix.sueddeutsche.com": [15642], "twcardsonline.anz.com": [374], "kop11.com": [8758], "lrc.businesslink.gov.uk": [2477], "find.siz.ch": [21843], "www.xfire.com": [18658], "mail.vieux.mondediplo.com": [10578], "stories.rackspace.com": [13566], "www.antiphishing.org": [1102], "learningzone.northyorks.gov.uk": [21161], "cdn.betteradvertising.com": [5448], "murmansk.beeline.ru": [1778], "img5.thalasseo.com": [16241], "pagseguro.captcha.uol.com.br": [17079], "nap-pflanzenschutz-prered.ble.de": [19406], "nextgenautoparts.com": [11407], "now.mmedia.me": [10302], "door.wndr.nl": [2024], "lvoc.org": [9124], "waba.co": [2024], "vod.shaw.ca": [14748], "ebms.cimb.com": [2618], "24.rkn.gov.ru": [13971], "r24628109.sync.app.asana.com": [1265], "therealreal.com": [22180], "lk.cal2.com": [2024], "mysongspk.cf": [2024], "janus.cnrs.fr": [6174], "crtvint.co": [2024], "conferencing.swisscom.ch": [15761], "secure.prleap.com": [3562], "dotdeb.org": [4695], "new.novayagazeta.ru": [21169], "rst.rosevrobank.ru": [14024], "www.tinyapps.org": [16563], "www.tvkultura.ru": [22327], "library.ucsc.edu": [17390], "l.junookyo.xyz": [2024], "prezi.com": [13092], "7dt.us": [2024], "www.backbox.org": [1621], "*.trefis.com": [16781], "git44.rostrud.ru": [21677], "www.nghttp2.org": [11412], "www.djicdn.com": [4029], "www.datatilsynet.no": [4206], "postalheritage.org.uk": [13006], "www.mozilla.kairo.at": [8782], "www.glad.org": [6319], "slov-lex.sk": [15037], "cesky-hosting.cz": [19553], "*.nkb.ch": [20683], "caskstore.com": [2894], "darjeelin.fr": [4141], "www.homelessworldcup.org": [7490], "nc-buyiphone.apple.com": [1151], "leads.hdfcbank.com": [7249], "ns2.boum.org": [2261], "forums.wildstar-online.com": [18394], "*.templatemonster.com": [16177], "eltj.oxfordjournals.org": [12222], "it-blogger.co": [2024], "postpoints.washingtonpost.com": [18086], "directly.play-asia.com": [12828], "s-cm.send.microad.jp": [10377], "s.iffy.io": [2024], "guq.lubw.baden-wuerttemberg.de": [19302], "*.fused.com": [6251], "volunteers.unicefusa.org": [17070], "images-www.localist.com": [9553], "tlfc.co": [2024], "account.napster.com": [21084], "tsplin.es": [2024], "www.pagesix.com": [21336], "imoga.at": [2024], "cryptonews.ca": [2024], "develop.aliyun.com": [868], "cz.boell.org": [19422], "pathways.nice.org.uk": [10961], "mgnwp.com": [2024], "updates.atomicorp.com": [1355], "www.somed.bfs.admin.ch": [22061], "www.sas.admin.ch": [22061], "bpl.me": [2024], "jonathan.sh": [2024], "www.wargaming.com": [18074], "www.pubs.ext.vt.edu": [17825], "www.identityworkshop.eu": [7941], "cdneu2.wahanda.net": [18042], "wed.rs": [2024], "svn.thedarkmod.com": [16342], "hekko.pl": [7289], "notalwayshopeless.com": [21164], "acluaz.org": [295], "l.dh.hu": [2024], "thndr.it": [2024], "avpti.me": [2024], "way.fm": [2024], "nitc.ga": [2024], "securepayapi.zuji.com.hk": [19021], "hobby.idnes.cz": [20483], "x1.xingassets.com": [18666], "*.activeevents.com": [548], "from.gd": [2024], "url.alexake.com": [2024], "adp.com": [1451], "i.sshare.ca": [2024], "vineyardvines.com": [17808], "*.shopstyle.com.au": [14781], "*.newyorker.com": [16276], "sip.nso.ru": [21192], "inv.ca": [2024], "premium-link.ninja": [21484], "solutionsfinder.capitalone360.com": [2832], "www.ultrahdtv.net": [17219], "flageo.lt": [2024], "mail.kn.vutbr.cz": [17609], "picti.me": [2024], "www.goodlucktrunk.com": [6812], "dlcu.homeoffice.gov.uk": [20399], "nstpmo.org": [2024], "baltika.fm": [19311], "bps.education": [2024], "eriksen.cz": [2024], "summerexperiences.wustl.edu": [18089], "pay.youku.com": [18804], "redeem.itunes.apple.com": [1151], "huh.gbrsr.co": [2024], "simferopol-realty.rambler.ru": [13600], "moralepatch.es": [2024], "m.japantimes.co.jp": [8526], "h-node.org": [7026], "planet.haskell.org": [7220], "webapps.stgeorge.com.au": [21992], "careers.dyson.com": [4831], "www.middleeastmonitor.com": [10406], "krystals.co": [2024], "rescomp.stanford.edu": [15448], "www.abnamro.nl": [290], "benl.ink": [2024], "account.viber.com": [17751], "peopleschoicecu.com.au": [12584], "hilbr.ch": [2024], "surftown.com": [15717], "trg.gr": [2024], "postfixadmin.hska.info": [20437], "grid.worldcommunitygrid.org": [18537], "elgiganten.se": [5154], "www.tchibo.pl": [16050], "www.customworks.ca": [9591], "softimtt.myapp.com": [21061], "consumersunion.org": [3605], "plms.oxfordjournals.org": [12222], "a-db.fr": [2024], "www.haixia-info.com": [20333], "www.brennancenter.org": [2322], "no.libreoffice.org": [9327], "www.freedominc.nl": [6147], "netzpolitik.org": [11318], "elogin01.hkjc.com": [20384], "scldvnt.co": [2024], "waveney.firmstep.com": [20109], "chore.cm": [2024], "htrs.co": [2024], "wordo.za.com": [2024], "www.smartcity.wien.gv.at": [22588], "insp.ca": [2024], "my.wmtransfer.com": [18173], "boutique.ina.fr": [7769], "www.coisas.com": [3412], "spic2.51fanli.net": [209], "www.tvline.com": [15949], "hr.georgetown.edu": [6531], "rezo.pink": [2024], "umaine.edu": [17406], "docs.getfoxyproxy.org": [6577], "www.bsideslv.org": [1573], "esrb.org": [4956], "www.luckyshare.net": [9660], "crttns.co": [2024], "www.atmos.illinois.edu": [17346], "vstrm.com": [2024], "gcia.co": [2024], "www.koumbit.org": [9010], "app-us1.resrc.it": [13659], "cs.kindful.com": [8909], "hockey.saves.co": [2024], "ghst.pro": [2024], "correctiv.org": [3686], "jcbsn.gr": [2024], "cca.environment-agency.gov.uk": [20006], "bhad.info": [2024], "*.unm.edu": [17074], "www.aboutmyvote.co.uk": [484], "btcstore.eu": [1592], "m3server.com": [9707], "na.schottenland.de": [14428], "bulletin.net": [2431], "s.ign.com": [7734], "www.zalando.com": [18877], "kyhwana.org": [9065], "www.ddlvalley.rocks": [19787], "mytailgate.tv": [2024], "ad.yieldlab.net": [18775], "skoo.ly": [2024], "procontract.due-north.com": [19905], "www.mlpchan.net": [9775], "cdn1.tnwcdn.com": [22227], "cents.life": [2024], "img03.findgravy.com": [5827], "oxs.mediabistro.com": [10182], "g2a.com": [6274], "tent.is": [16186], "skoo.li": [2024], "trac.ietf.org": [7725], "jkrbrnd.com": [2024], "esc.isis.poly.edu": [12933], "evolvecom.co": [2024], "dev.ashampoo.com": [1273], "bulletin.stanford.edu": [15448], "image13.bizrate-images.com": [2054], "static.sparkfun.com": [15291], "go.ohd.io": [2024], "www.page.ly": [12360], "accan.org.au": [292], "www.life.ru": [20835], "afilias.info": [750], "dialogte.ch": [2024], "mail.win.dtu.dk": [16096], "cbu04.alicdn.com": [853], "customerrewards.sky.com": [14989], "www.hobsons.com": [20389], "advertising.yandex.com.tr": [18740], "rlx.mx": [2024], "cap.st": [2024], "ambac.ht": [2024], "dober.tk": [2024], "sax.sina.com.cn": [14904], "artmama.sme.sk": [14198], "www.alexandercoward.com": [845], "docs.sourcemod.net": [21907], "vr.youku.com": [18804], "giyp.co": [2024], "tianqi.eastday.com": [5010], "s.theuswalk.com": [2024], "marcan.st": [9991], "rav.to": [2024], "*.slate.wvu.edu": [18306], "l.b-u-d.info": [2024], "accidentalne.ws": [2024], "trnql.space": [2024], "directline.metafaq.com": [4514], "www.42floors.com": [181], "veritas.com": [22440], "gentl.mn": [2024], "www.colocation-datacenter.com": [20305], "sprtbd.co": [2024], "dev.kommersant.ru": [20746], "jmpho.to": [2024], "kswain.link": [2024], "money.yandex.by": [18739], "www.64px.com": [219], "thebrigade.thechive.com": [22141], "www.cublinux.com": [19740], "l1m1tl.es": [2024], "www.textmagic.com": [16230], "jobs.allianz.com": [19151], "*.bin-store.com": [1916], "o.xbox.com": [18639], "global.georgetown.edu": [6531], "btelecom.net": [2024], "1mj.io": [2024], "kiva.org": [8939], "www.pc-ostschweiz.ch": [12248], "www.stand.org": [15440], "go.franki.net": [2024], "esat.kuleuven.be": [8832, 9047], "m.apan.org": [388], "*.confused.com": [3576], "www.netim.com": [11277], "*.hackerschool.com": [7135], "american-favorites.migros.ch": [10417], "via.don.ph": [2024], "otc.georgetown.edu": [6531], "l.geocrono.com": [2024], "images.plattstatic.com": [12826], "cio2.uchastings.edu": [17015], "ptps.oxfordjournals.org": [12222], "meeting.teamviewer.com": [16069], "superfast-openreach.co.uk": [15694], "go2sra.co": [2024], "buyer.alibaba.com": [857], "www.betts.com.au": [1860], "email.xnet.cz": [18622], "testfabrik.com": [22130], "c.cksource.com": [2634], "amplifypixel.outbrain.com": [12182], "kyn.me": [9069], "blog.avv.de": [1485], "nr.church": [2024], "www.bigboxsave.com": [1888], "socialdemocrats.ie": [21888], "globalexpo.alibaba.com": [857], "img07.taobaocdn.com": [16016], "lilfox.co": [2024], "www.beastnode.com": [1763], "www.cpaptalk.com": [3742], "*.branchable.com": [2295], "seysol.com": [2024], "www.youtube.ru": [18800], "secureprosoftware.com": [14557], "www.tpbpro.xyz": [21524], "my.volia.com": [17917], "minnpo.st": [2024], "mbr.rosbank.ru": [21671], "clery-dev.ucsc.edu": [17390], "zoyya.ga": [2024], "www.100-gute-gruende.de": [11], "mk.nso.ru": [21192], "go.robozome.com": [2024], "lohud.us": [2024], "cimm.co": [2024], "coplusk.com": [2024], "www.newyorktimes.com": [11340], "y-v.de": [2024], "online2pdf.com": [11910], "shopgaia.nyc": [2024], "l.verslu.is": [2024], "envyus.gq": [2024], "kotaserang.net": [2024], "clsmat.es": [2024], "mail.qf.org.qa": [21557], "jsci.me": [2024], "bkate.me": [2024], "www.ddlvalley.eu": [19786], "enwp.org": [18388], "j.necjar.com": [2024], "www1.energy.gov": [5243], "www.bullionstar.com": [2435], "image.winzip.com": [18424], "inmn.io": [2024], "voltalinux.sicurezzarete.com": [21824], "www.notehub.org": [21165], "ninthdecimal.com": [11460], "www.formatdynamics.com": [6021], "www.nossenateurs.fr": [21163], "mcts.tech": [2024], "givingwhatwecan.org": [20255], "amzer.me": [2024], "*.crossrider.com": [3815], "jsp.hn": [2024], "fli.pm": [2024], "frep.meituan.net": [10249], "phabricator.cooltrainer.org": [19682], "kompleks.co": [2024], "audioblog.c-base.org": [2506], "brant.news": [2024], "kazakhstan.usembassy.gov": [22406], "researchstore.com": [4198], "lishui.1688.com": [51], "der.makf.de": [2024], "sccps.silentcircle.com": [14848], "*.wargaming.net": [18074], "desktopsummit.org": [4380], "www.kb.cert.org": [2596], "camn.is": [2024], "jag.photos": [2024], "ngvpn21.nvidia.com": [11022], "www.facebook.jp": [5612], "siterecruit.comscore.com": [3454], "u.rateout.co.uk": [2024], "testsite.airbites.net.ua": [19120], "www.aldi.hu": [357], "www.inaturalist.org": [7779], "git63.rostrud.ru": [21677], "secure.chesterfield.gov.uk": [19576], "*.differencebetween.net": [4450], "tdsql.qcloud.com": [13346], "freeprivacypolicy.com": [6698], "www.authbox.io": [1433], "git56.rostrud.ru": [21677], "academy.fruitninja.com": [6214], "pedsit.stanford.edu": [15448], "staydine.com": [2024], "www.bikt.de": [1547], "gg.te-st.ru": [22103], "russian.rt.com": [13528], "status.modern.ie": [10556], "wholesale.1688.com": [51], "soom.cz": [21903], "l.primal.mx": [2024], "xenomai.org": [18654], "zsk.cm": [2024], "*.rhcloud.com": [13483], "support.bitmain.com": [2025], "whatismyip.com": [18326], "jintangguan.jd.com": [8434], "www.cnsi.ucla.edu": [17330], "*.kinja.com": [8920], "caktusgroup.com": [2738], "www.mecoffee.nl": [10145], "tyonantaja.oikotie.fi": [21234], "dashboard.lob.com": [9546], "images.yandex.com.tr": [18740], "ikkeh.ml": [2024], "cn.nikkei.com": [11442], "www.fakaheda.eu": [5627], "cryptoexperts.com": [3852], "star.duodecim.fi": [4798], "zlla.co": [2024], "zys.im": [2024], "118information.co.uk": [30], "s.wlm.com.mx": [2024], "cloud.itsc.cuhk.edu.hk": [2704], "www.broadcom.com": [2372], "twitpic.es": [2024], "adair.co": [2024], "stopcyberspying.com": [15551], "icommons.org": [7704], "www.plannedgiving.com": [12810], "p8m.in": [2024], "on.ofadam.com": [2024], "flightglobalshop.com": [5901], "welles.me": [2024], "bg4.in": [2024], "icd10cc.co": [2024], "strongi.es": [2024], "www.holytransaction.com": [7472], "answers.nssc.nasa.gov": [10909], "www.sa-as.com": [17854], "mediatheques.montpellier3m.fr": [10609], "www.normer.uio.no": [17414], "secure.xfinity.com": [22650], "www.opentext.com": [12020], "cm.ipinyou.com": [7807], "c-ware.de": [2511], "www.ibc.researchcompliance.vt.edu": [17825], "www.freech.net": [20156], "grilletlab.stanford.edu": [15448], "a16z.com": [263], "www.es.amnesty.org": [1000], "shr.li": [2024], "*.awm.gov.au": [1430], "www.spicebox.co.jp": [15337], "g.xmez.co": [2024], "www.ubmchannel.com": [16999], "www.comixology.com": [3466], "by.hironozu.com": [2024], "shel.tv": [2024], "on.ftv.com": [2024], "www.seatgeek.com": [14514], "api.simplyhired.com": [14894], "addbooks.se": [625], "referafriend.xfinity.com": [22650], "myheritage.com.il": [10875], "subs.develop-online.net": [19820], "tltp.io": [2024], "972mag.com": [250], "qcdloop.fnal.gov": [5741], "website.webgo.de": [18161], "austinge.com": [2024], "yejin.1688.com": [51], "communigator.co.uk": [3500], "x2z.eu": [2024], "leonel.onl": [2024], "svzd.ch": [2024], "ak.sascdn.com": [15049], "mathuinsgd.cf": [2024], "links.ngtv.nl": [2024], "inv8.co": [2024], "sim.cr": [2024], "spendabit.co": [15333], "i.sso.sina.com.cn": [14904], "info.binary.com": [2024], "www.aok.de": [376], "judici.com": [8676], "clipperz.is": [3270], "locators.bankofamerica.com": [1669], "widget.boomads.com": [2227], "mkta.de": [2024], "www.susestudio.com": [14263], "proud4christ.us": [2024], "info.shortnote.jp": [21812], "ctmr.tk": [2024], "tv.sme.sk": [14198], "search.disconnect.me": [4531], "microfocus.com": [10382], "www.jobsatosu.com": [8613], "join.pirateparty.org.au": [12746], "ss6.sinaimg.cn": [14910], "academico.unizar.es": [17441], "womeninnovatemobile.com": [18495], "babc.us": [2024], "bust.li": [2024], "poupe.info": [2024], "www.discoverhongkong.com": [19847], "zdf.de": [22709], "camao.at": [2024], "q.nbtechllc.com": [2024], "haute.io": [2024], "twenga-solutions.com": [16944], "flitto.com": [5909], "ulpgc.es": [17213], "saltstack.com": [14317], "mers.me": [2024], "*.hbr.org": [7032], "scho.me": [2024], "xrgnx.co": [2024], "on.vfmb.ch": [2024], "www.haiku-os.org": [7152], "images.randomhouse.com": [13604], "rtd.tubemogul.com": [16885], "standards.data.gov.uk": [19762], "media.msg.dotomi.com": [4698], "mjrlink.us": [2024], "apollo.ro.vutbr.cz": [17609], "arazas.unizar.es": [17441], "ukash.com": [17205], "gn3campus.uninett.no": [17280], "myfrey.ch": [3100], "api.csmonitor.com": [19737], "wscu.com": [18314], "www.hotukdeals.com": [7556], "docs.puppetlabs.com": [13276], "fulltraffic.net": [6231], "www.williamhill.com": [18407], "smash.social": [2024], "rfn.co": [2024], "*.android.com": [1049], "id5.idqqimg.com": [7926], "www.sigmaxi.org": [14841], "basko.ro": [2024], "dev.jd.com": [8436], "doctors.im": [2024], "schw-rz.de": [2024], "vanityfair.com": [3554], "nej.md": [2024], "ba.stienv.me": [2024], "status.bnc4free.com": [2180], "forum.glx-dock.org": [20270], "chiste.cc": [2024], "partner.yandex.kz": [18743], "cl-kit.mondediplo.com": [10578], "allerderm.com": [15055], "data.montpellier3m.fr": [10609], "www.jbp.io": [8553], "metrics.westernunion.com": [18310], "idp.touchstonenetwork.net": [16685], "www.mirea.ru": [20993], "br.social": [2024], "tdcv.us": [2024], "blog.habets.se": [7116], "webmail.jimdo.com": [8586], "js.org": [20657], "tngld.tk": [2024], "heyaw.co": [2024], "docu.sn": [2024], "m.web.cern.ch": [2588], "l.jsrm.dk": [2024], "nrthstr.co": [2024], "gamesrocket.de": [6419], "www.getdigital.co.uk": [6556], "llmap.in": [2024], "drupaltraining.stanford.edu": [15448], "img3.store.microsoft.com": [10396], "www.mendeley.com": [10276], "www.warthunder.com": [22528], "mood.sapo.pt": [14131], "www.gchat.com": [6290], "short.amido.com": [2024], "blog.popads.net": [12949], "trustwave.com": [16870], "pics.crucial.fr": [3828], "15.lc": [2024], "*.thewatershed.com": [16391], "courseadmin.theguardian.com": [16364], "m.newegg.com": [11356], "thecreatorsproject.com": [16339], "planetsyria.org": [21433], "primes.utm.edu": [17426], "www.wigan.gov.uk": [18379], "www.smoozed.com": [21873], "www.as112.net": [403], "media.skyandtelescope.com": [14997], "nemo.ozlabs.org": [12228], "s.r-tsushin.com": [2024], "www.canon.com.mk": [2822], "news.boxun.com": [19436], "mygoxclaim.com": [10809], "swissin.fo": [2024], "rus-sco.tpprf.ru": [22260], "kiwins.xyz": [2024], "acdn.stsdb.com": [14258], "secure2.roisolutions.net": [13505], "anongit.mindrot.org": [10450], "belorechensk.startsmile.ru": [21980], "magazine.redhat.com": [18518], "swapbotstats.tokenly.com": [22229], "www.youtube.com.qa": [18800], "kirklees-consult.objective.co.uk": [21225], "itmb.nl": [7850], "whsq.qld.gov.au": [2024], "trycvr.co": [2024], "go.allen.io": [2024], "portal.pochtabank.ru": [12876], "www.spatialbuzz.com": [15300], "go.cz.bbelements.com": [1742], "www.dotcom-tools.com": [19886], "1.hofarc.com": [2024], "www.domonet.ua": [19877], "isr.events": [2024], "vtly.co.uk": [2024], "j.ganzbunt.de": [2024], "sherw.in": [2024], "www.fewis.dwd.de": [19911], "gtsn.biligame.com": [1903], "www.g-ir.com": [6696], "skycityauckland.co.nz": [14188], "www.balabit.hu": [19308], "s19.postimg.io": [13024], "nxtforum.org": [11631], "pintrest.ga": [2024], "vtb.ru": [8469], "lsulibraries.worldcat.org": [18536], "www.virtualedge.com": [329], "kfc.cdnvideo.ru": [19536], "a.darjeelin.fr": [4141], "s.2.taobao.com": [16015], "teamswch.in": [2024], "bsop.us": [2024], "igt856yqup18zdv0cg03yhvhc8hwqhruf0lwgfqk.ipleak.net": [20571], "ssl.tiggerswelt.net": [16517], "www.velex.htwk-leipzig.de": [7596], "ivrit.academy": [2024], "doel.kuleuven.be": [8832], "myshc.us": [2024], "ellak.gr": [6897], "vnjv.co": [2024], "wiki.x2go.org": [18589], "snellman.net": [15099], "s.pawlik.in": [2024], "spinfx.me": [2024], "rtek.biz": [2024], "montpellier.squat.net": [21955], "static.letvcdn.com": [20817], "www.lfg.com": [20823], "www.pdfill.com": [21377], "portal.whitelabeldating.com": [22581], "iflash.me": [2024], "vc-kundencenter.de": [17558], "insder.co": [2024], "magazin.tchibo.de": [16050], "sawch.uk": [2024], "www.informahealthcare.com": [8122], "datacell.is": [4169], "ser.bz": [2024], "cnre.vt.edu": [17825], "www.ytchannelembed.com": [18714], "stefan-betz.net": [15529], "harare.usembassy.gov": [22406], "webshop.scooter-attack.com": [14452], "brasil.fronter.com": [20179], "codehs.com": [3347], "info.rts.ch": [21957], "updates.postecert.poste.it": [13013], "lush.la": [2024], "www.ab4all.com": [19038], "app.fieldnation.com": [20086], "4armed.com": [195], "login.free-torrents.org": [20154], "gsp3.baidu.com": [1641], "www.master.yandex.by": [18739], "reserveaspace.wustl.edu": [18089], "i.blauespony.de": [2024], "www.lyrishq.com": [9696], "ibitz.net": [2024], "conferences.unite.un.org": [17057], "fr.mondediplo.com": [10578], "nev4.com": [2024], "*.teachersassurance.co.uk": [16057], "synergistscada.com": [15800], "irresistabl.es": [2024], "vector.support": [2024], "www.bataysk-gorod.ru": [19326], "tickets.cpanel.net": [2667], "force.ft.com": [5810], "barra.r7.com": [13451], "control.fraedom.com": [20146], "a4-images.myspacecdn.com": [10889], "wap.tv.mail.ru": [9891], "appfx.in": [2024], "demichei.com": [2024], "64.thestandnews.com": [16315], "buyagile.com": [2024], "www.lavabit.com": [9185], "pyladi.es": [2024], "pan.oxfordjournals.org": [12222], "ezimages.eu": [4994], "metanav.uninett.no": [17280], "ijnp.oxfordjournals.org": [12222], "www.shop.mts.ru": [21042], "www.bezrealitky.cz": [19364], "40df.com": [2024], "analytics.meituan.com": [10248], "jkat.me": [2024], "convention.bio.org": [1548], "httpoxy.org": [20439], "blog.whitehatsec.com": [18346], "www.teddyhyde.com": [16121], "i.jspeaks.com": [2024], "dashho.us": [2024], "it.mirea.ru": [20993], "go.724685.com": [2024], "msg.mail.163.com": [50], "gqrcode.alicdn.com": [853], "neck2neck.com": [11169], "findmycard.capitalone.com": [2831], "www.debian-facile.org": [4259], "www.m6r.fr": [9709], "webmail.kscu.com": [8993], "use.resrc.it": [13659], "spotify.aia.ag": [2024], "sts.wustl.edu": [18089], "oxelt.gl": [2024], "lifeline.org.au": [9347], "nyc-lane.wj32.org": [18480], "sipproxy.telphin.ru": [16170], "geoiptool.com": [20232], "nyue.org": [2024], "jplspaceship.jpl.nasa.gov": [10909], "rapidsite.jp": [13618], "www.county-star.com": [3709], "nestle.com": [11207], "dasiz.khabarovskadm.ru": [20708], "cre8.buzz": [2024], "mail.gna.org": [6740], "s.kei-n.com": [2024], "srvz.co": [2024], "newspape.rs": [2024], "tax.gd": [2024], "city.sakh.com": [21719], "uptime.netcraft.com": [11259], "www.grml.org": [6359], "r.khammami.com": [2024], "b.mickenta.net": [2024], "ceskaposta.cz": [2981], "cnb.cx": [2024], "ovpn.se": [11726], "pxie.fnal.gov": [5741], "r.ryhug.com": [2024], "thinkprogress.org": [16435], "www.o2.sk": [16141], "mobil.danskebank.dk": [4138], "ideasonboard.com": [7932], "knot1.co": [2024], "web.rigoeva.ro": [2024], "*.inkfrog.com": [8150], "tajs.qq.com": [13329], "static4.wareable.com": [22525], "wlstrm.me": [2024], "imdb.to": [2024], "data.is": [2024], "yun.115.com": [28], "future.state.gov": [17146], "www.empleos.g4s.com": [20195], "wcp.link": [2024], "www.megabus.com": [10244], "tps30.doubleverify.com": [4703], "buyfacefx.com": [14856], "bsrbog.us": [2024], "www.s-t-d.org": [21707], "www.tem.fi": [16980], "ebx.io": [2024], "cvnteyes.co": [2024], "iosafe.com": [8331], "support.cloudpassage.com": [19625], "blog.growingio.com": [20312], "www.develz.org": [19822], "www.piazza.com": [12690], "s.nichtray.com": [2024], "static1.money.pl": [10585], "s3o.ft.com": [5810], "www.goalworthy.com": [6782], "yoyo.com": [22696], "www.zerodium.com": [18852], "css.slough.gov.uk": [15036], "wamd.at": [2024], "www.zareason.com": [18895], "yandex.by": [18739], "front-dev.rg.ru": [21646], "info.teleport2001.ru": [22117], "dnlchw.net": [2024], "ko.socialclub.rockstargames.com": [13997], "build.go.cd": [20273], "acronymfinder.com": [539], "leastfixed.com": [9231], "cprit.us": [2024], "yoursav.me": [18829], "pcp.med.cuhk.edu.hk": [2704], "conetix.com.au": [3568], "ce2.uicdn.net": [17032], "dsa.debian.org": [4263], "bjack.ca": [2024], "test1.tocco.ch": [16600], "www.dn.no": [4046], "telesign.com": [22118], "xmarks.com": [18671], "php.net": [12280], "crysys.hu": [3834], "classx-admin.stanford.edu": [15448], "www.bercsenyi.bme.hu": [1556], "xnt.li": [2024], "*.samsungapps.com": [14327], "www.nraila.org": [21182], "g.gethlc.org": [2024], "dfiles.eu": [4023], "healthdesigns.com": [7255], "www.dpcfrontier.com": [4069], "godaddy.com": [6755], "u.nm.com": [2024], "brandsolutions.sonymusic.com": [15217], "snag.tv": [2024], "secure.kicker.de": [8895], "futurologischer-salon.de": [10322], "s8.sinaimg.cn": [14910], "www.jdoqocy.com": [3484], "elektro-paloucek.cz": [19979], "fb.bmw.at": [2024], "n0.sinaimg.cn": [14910], "*.www.odcdn.com": [11784], "lconsu.lt": [2024], "kyb.buttercoin.com": [2479], "tracker.rom1504.fr": [21668], "s1.gismeteo.pl": [20252], "123count.com": [35], "www.juno.com": [8699], "cards-mobile.pochtabank.ru": [12876], "*.hosting-advantage.com": [11232], "dbtb.us": [2024], "health.spectator.co.uk": [21928], "4linuxfun.duoshuo.com": [19906], "sclpro.co": [2024], "tonyc.me": [2024], "circulars.bostonglobe.com": [2253], "crucl.co": [2024], "*.umext.maine.edu": [17406], "www.washpostco.com": [18085], "quintao.me": [2024], "openbeta.usaspending.gov": [17114], "store.cpanel.net": [2667], "www.ero-advertising.com": [5335], "bernina-wil.ch": [1827], "www.kaspersky.com": [8820], "on.sctimes.com": [2024], "www.alum.kuleuven.be": [8832], "etreshop.com": [5381], "trinityhome.org": [16814], "www.forbrukerportalen.no": [5997], "mintrans.permkrai.ru": [21390], "www.kink.com": [20719], "image.showapi.com": [21815], "monsanto.info": [2024], "www.websense.com": [18180], "warnerartists.com": [18076], "my.webmoney.ru": [18173], "go.jamesvg.com": [2024], "capitalone.com": [2831], "chan.sankakucomplex.com": [21730], "images.local.ch": [9548], "www.theprivacyblog.com": [16309], "esp.attachmategroup.com": [1362], "williams.worldcat.org": [18536], "careers.georgetown.edu": [6531], "likeneon.love": [2024], "1.mrwrk.nl": [2024], "cif.pirate-party.ru": [12736], "guide-images.ifixit.net": [7730], "crimw.me": [2024], "bigfiles.upf.edu": [17471], "*.futurequest.net": [6262], "ucfknights.co": [2024], "www.alts.trade": [360], "www.scanmyserver.com": [14392], "tym.cool": [2024], "dfnd.us": [2024], "tght.me": [2024], "bellring.in": [2024], "khms0.google.com": [6825], "telepigeon.com": [16159], "r.coat.se": [2024], "www.megiteam.pl": [10245], "status.icq.com": [7695], "wmg.ie": [2024], "static7.startnext.com": [15478], "pcboc.com": [2767], "wepawet.iseclab.org": [8361], "*.fidelity.com": [5760], "gcmcomputers.com": [6288], "thesafety.us": [16313], "hi-rd.com": [2024], "www.opencart.com": [11963], "www.captora.com": [19508], "wndr3800.infradead.org": [8135], "tlng.net": [2024], "heaven.lp0.eu": [9648], "baekdal.com": [1636], "www.gumstix.com": [7003], "on.mikyu.com": [2024], "gov1.info": [6844], "wiki.openmw.org": [11990], "www.visiba.com": [17855], "packs.clearlinux.org": [3233], "bpaz.me": [2024], "go.femistans.cf": [2024], "wikitest.ro.vutbr.cz": [17609], "assets.cms.gov": [19630], "vamospra.la": [2024], "dlrs.link": [2024], "acc.partners": [2024], "static2.1tv.ru": [88], "staging.eastmon.com.au": [5012], "*.scrs.gc.ca": [2816], "workforceportal.elabor.com": [4918], "mkrs.ch": [2024], "s.am-ind.com": [2024], "go.anunt.com": [2024], "ellislab.com": [19982], "lenoblast.rt.ru": [13529], "cits.wustl.edu": [18089], "data.unodc.org": [17075], "maidstone.objective.co.uk": [21225], "priceshoes.com": [21495], "beta-wallet.trezor.io": [22282], "avito.ru": [19287], "img3.126.net": [40], "ibank2.genbank.ru": [6506], "demp.mx": [2024], "www.0bin.net": [2], "s.frk.com": [2024], "broll.be": [2024], "ami.graphics": [2024], "maap.es": [2024], "app.curdbee.com": [17736], "www.lpi.org": [9108], "nowybip.pl": [11575], "mng.us": [2024], "www.responsive.io": [13871], "data-staging.flightradar24.com": [20119], "recruiting.aldi.hu": [357], "s.causio.com": [2024], "*.colossal.com": [16447], "sjobs.net": [2024], "dm3.so": [2024], "www.overpass-turbo.eu": [21319], "yglf.co": [2024], "tirana.usembassy.gov": [22406], "ic1p.com": [2024], "www.dornsife.usc.edu": [17366], "getstory.in": [2024], "theproxy.site": [22174], "nti.org": [11001], "*.mynaweb.com": [10881], "snssdk.com": [21884], "ns4.theregister.co.uk": [22182], "bankieren.triodos.nl": [16816], "help.pardot.com": [12428], "www.filterbypass.me": [5799], "*.yourhosting.nl": [18827], "tv.yandex.by": [18739], "*.blogspot.com.ng": [2127], "vikulovo.admtyumen.ru": [19082], "mastodon.social": [10069], "heurekashopping.cz": [7377], "www.orange.co.il": [12122], "www.whms.com": [17998], "talktalk.co.uk": [15993], "l.pack9nc.org": [2024], "c.msn.co.jp": [9809], "dailykos.com": [4111], "www.btcchina.com": [1581], "ptrtvoic.es": [2024], "l3nk.net": [2024], "163.mclaut.com": [20942], "cutesoft.net": [19745], "www.alexandrasangelgifts.co.uk": [846], "www.39dollarglasses.com": [158], "www2.guidestar.org": [6989], "brtr.pl": [2024], "shftm.co": [2024], "1njera.com": [2024], "ikio.sk": [2024], "forum.nutyx.org": [21207], "voyager.aber.ac.uk": [473], "s.jessenixon.me": [2024], "www.webtatic.com": [18255], "www.printfection.com": [13119], "apps.bdimg.com": [1747], "m.voyage-prive.com": [17946], "www13.anthem.com": [19206], "11-instant.okcupid.com": [11809], "fuamo.rosminzdrav.ru": [21674], "*.corporate-ir.net": [3681], "stuwww.uvt.nl": [16521], "tofinosecurity.com": [16603], "rdhs.us": [2024], "www.rcicruiseholidays.com": [18578], "st5.gismeteo.ru": [6650], "subs.mcvuk.com": [20943], "biz.zumzi.com": [19023], "www.adbrite.com": [619], "*.38.de": [156], "www.*.vaforvets.va.gov": [17100], "service.garagegames.com": [6438], "a.crework.one": [2024], "silabs.com": [14850], "ctlst.me": [2024], "www.billetten.dk": [1910], "*.iaapa.org": [7666], "myphone.primus.ca": [13112], "www.license.avira.com": [1474], "zikao.qiyukf.com": [21560], "aka.education.gov.uk": [19957], "on.wwltv.com": [2024], "plus.netzausbau.de": [2445], "2012.eurobsdcon.org": [5393], "meet.raiffeisen.ru": [13587], "*.claranet.nl": [3213], "cloudflarechallenge.com": [3285], "*.mozilla.net": [10695], "tedxfsm.com": [2024], "jpem.tk": [2024], "hg0.savannah.gnu.org": [6337], "oh.fuh-q.com": [2024], "fto.link": [2024], "p5s.co": [2024], "lastcall.com": [15916], "sapo.pt": [14131], "on.rolex.com": [2024], "zeist.nl": [11172], "i.rashdesign.co": [2024], "exootlab.com": [5490], "adn.fm": [2024], "ar.atcs.ms": [2024], "lux.ht": [2024], "i4.gallery.technet.microsoft.com": [10396], "vip.hao123.com": [20339], "u.fixstudio.com": [2024], "www.vivaciti.net": [17884], "punchouttest.digikey.com": [4457], "landalcampings.nl": [18579], "*.wemfbox.ch": [18293], "mrtch.co": [2024], "mmjne.ws": [2024], "domeny.aerohosting.cz": [737], "carnet.ec": [2024], "www.ingdirect.com.au": [7773], "online.ihp.hku.hk": [20387], "blog.cyphertite.com": [3978], "www.streetmoda.com": [15589], "*.staticwars.com": [15493], "www.insight.sensiolabs.com": [14648], "nspublieksprijs.nl": [21194], "anthe.mx": [2024], "secure.switchkonnect.com": [15765], "brusselsnewcomernetwork.state.gov": [17146], "pa.shropshire.gov.uk": [21819], "rightoncri.me": [2024], "sj.2345.cn": [97], "read.amazon.ca": [19167], "git69.rostrud.ru": [21677], "www.modelviewculture.com": [10555], "ruptly.tv": [14095], "ssl.apple.com": [1151], "www.uptonhomehardware.co.uk": [17487], "atm.tk": [2024], "www.roblox.com": [13980], "suppliers.houseoffraser.co.uk": [7570], "lists.ktk.bme.hu": [1556], "subconadmin.com": [15621], "v2.go2yd.com": [20274], "s.jdg.net": [2024], "iwh.nz": [2024], "www.perryellis.com": [12609], "vish.co": [2024], "prosport.tsn.ua": [22301], "chank.me": [2024], "www.vgwort.de": [17568], "s.yunlou.net": [2024], "krakelbont.squat.net": [21955], "kindne.ws": [2024], "1.agx.eu": [2024], "slof.co": [2024], "bluemix.net": [2166], "steije.ga": [2024], "fcity.co": [2024], "www.muse.mu": [10746], "embedr.flickr.com": [5898], "track.iconfinder.com": [7920], "metafaq.com": [20970], "gyps.ws": [2024], "genpr.gs": [2024], "newsurp.co": [2024], "mail.bfriars.ox.ac.uk": [17359], "static.buydomains.com": [19483], "webpush.weixin.qq.com": [13329], "ctym.ps": [2024], "www.baymirror.tech": [21524], "www.tptq-arabic.com": [15919], "law.admtyumen.ru": [19082], "adrs.unodc.org": [17075], "0kbhkort.kk.dk": [8748], "goldenblg.ch": [2024], "*.decisionbriefs.com": [4272], "starrez.its.sfu.ca": [14708], "tracfone.com": [16699], "ma3.twimg.com": [16949], "kis.hosteurope.de": [7524], "nasapeople.nasa.gov": [10909], "familie.plus.aok.de": [376], "www.viu.com": [17883], "ovh.us": [11724], "m00m.in": [2024], "backports.debian.org": [4263], "ausregistry.com.au": [1399], "*.trails.com": [4325], "westlandutrecht.nl": [18311], "anonbox.net": [1083], "floorforce.websitealive.com": [18242], "atblog.co": [2024], "*.business.gov.au": [2470], "hwcdn.libsyn.com": [9336], "on.apa.org": [2024], "signup.memberful.com": [10266], "wiki.osgeo.org": [11707], "ln.cronofy.com": [2024], "blogsp.ashleymadison.com": [1277], "humanresources.illinois.edu": [17346], "particle.io": [12451], "cdn.spectator.co.uk": [21928], "connect.charter.com": [3026], "offt.me": [2024], "ibs.la": [2024], "help.sumome.com": [22030], "opalang.org": [11939], "www.broadcomfoundation.org": [2373], "taglink.us": [2024], "idlegam.es": [2024], "www.netwheels.fi": [21115], "www.telebrands.net": [16137], "www.taz.de": [15853], "map.utoronto.ca": [17427], "triplemint.com": [16821], "pfact.nottingham.ac.uk": [11567], "crook.st": [2024], "www.devpress.com": [4418], "i9.lbp.me": [20789], "mynyp.org": [21066], "mmkg.me": [2024], "www.sq.crowdrise.com": [3825], "jobs.bart.gov": [1708], "leaseweb.com": [9229], "joy.sapatos.no": [2024], "t.btstatic.com": [1603], "www.piratewiki.info": [22174], "benefits.georgetown.edu": [6531], "proxy07.newsnetz.ch": [11371], "frier.us": [2024], "events.sfu.ca": [14708], "motea.ch": [2024], "api-test.nzqa.govt.nz": [11044], "*.newslook.com": [11370], "img2.yeggi.com": [18760], "www.aacqa.gov.au": [276], "www.cals.cornell.edu": [3676], "st-m.me": [2024], "broadconnect.akixi.com": [19129], "profile.oracle.com": [12116], "www.windowsitpro.com": [18435], "agz.permkrai.ru": [21390], "tyjp.co": [2024], "resetthenet.org": [13862], "koolkat.co": [2024], "www.ccmp.ox.ac.uk": [17359], "www.gridzdirect.com": [6935], "mastozytose-schweiz.org": [10070], "torlock.com": [16640], "ir4.co": [2024], "iguate.me": [2024], "xmission.com": [18621], "*.gstatic.com": [6823], "envoc.io": [2024], "podcast.entropia.de": [20004], "alfabank.ru": [849], "202.tw": [2024], "tdman.us": [2024], "go.howto.coffee": [2024], "gccma.info": [2024], "tescodiets.com": [16209], "belarus.indymedia.org": [8090], "nc.me": [10920], "nc.md": [2024], "seagate.jd.com": [8436], "*.myheritage.nl": [10875], "*.myheritage.no": [10875], "omprom.pt": [2024], "url.blanjo.id": [2024], "hivos.nl": [7435], "medf.nl": [2024], "shopbop.com": [21807], "rlmk.me": [2024], "huntonprivacyblog.com": [20447], "repos.alhur.es": [19137], "www.saucytime.com": [14366], "link.tomte.net": [2024], "to.relais.com": [2024], "fncash.com": [5571], "backblaze.com": [1619], "deniso.nu": [2024], "manage.rooof.com": [14019], "irnut.co": [2024], "www.anrdoezrs.net": [3484], "www.legolanddiscoverycenter.jp": [9249], "www.becoquin.com": [1748], "comoinsi.de": [2024], "nytchinese.disqus.com": [4559], "vendrevite.ricardo.ch": [13923], "business.kaspersky.ru": [8821], "smjg.org": [15074], "webmail.ukeer.de": [17207], "www.artw.ru": [19241], "portal.pfsense.org": [12637], "eecscal.mit.edu": [9763], "cdn2.colocationamerica.com": [3435], "libraryh3lp.com": [11531], "wedc.lu": [2024], "pipl.com": [12733], "avadirect.com": [1462], "gifi.tf": [2024], "freecb.us": [2024], "www.jansbrug.nl": [8524], "myleague.com": [10812], "boj.im": [2024], "zeringo.com": [18935], "www.mjdk.dk": [20996], "powernotebooks.com": [13050], "www.gannettridge.com": [6436], "v51.co": [2024], "blackmoreops.com": [19403], "www.gnucash.org": [6743], "beanbaginc.com": [1758], "engees.unistra.fr": [17265], "secure.landal.com": [18579], "trce.in": [2024], "digitalrepository.smu.edu": [14202], "ihkofr.de": [2024], "2bg.tv": [2024], "museu.me": [2024], "shop.kagi.com": [8781], "trsoluco.es": [2024], "tallahassee.aclufl.org": [297], "jolexa.net": [8635], "*.image-repository.com": [17757], "deutsch.istockphoto.com": [20595], "webforest.eu": [18197], "halifax.co.uk": [7163], "www.shutthebackdoor.net": [14813], "s.midd.ag": [2024], "divi.ng": [2024], "gadgt.co": [2024], "kayak.co.uk": [8839], "unix4lyfe.org": [17438], "vidn.verisign.com": [17712], "zdoc.me": [2024], "redbullusa.com": [13726], "dbs.com.sg": [4001], "cert.se": [2595], "nerdhaven.nuug.no": [11017], "dgspe.ca": [2024], "regina.rtvs.sk": [13536], "outreach.web.cern.ch": [2588], "note.wiz.cn": [18475], "vidaengdl.mx": [2024], "p0.qhimg.com": [13347], "*.craigslist.ca": [3752], "novosibirsk.auto.ru": [19276], "www.rt.com": [13528], "crst.in": [2024], "remote.modern.ie": [10556], "gamefly.co.uk": [6397], "treasury.uillinois.edu": [17034], "nhp.me": [2024], "my-f.netease.com": [11228], "daily.zhihu.com": [18956], "go.durham.fyi": [2024], "malwaredomainlist.com": [9942], "www.fitchratings.ru": [20113], "murmashi.beeline.ru": [1778], "148apps.com": [46], "www.weather.yandex.by": [18739], "cherkessk.startsmile.ru": [21980], "ads.pro-market.net": [13157], "engineering.groupon.com": [6953], "shaza.ml": [2024], "disman.tl": [4553], "torrentdr.com": [22174], "loans.bankofamerica.com": [1669], "support.recordedfuture.com": [13712], "www.1823.gov.hk": [56], "www.matomymedia.com": [10087], "blints.me": [2024], "ire.org": [20577], "chambers.is": [2024], "www.mysmartrend.com": [15048], "en.aegeanair.com": [6896], "cms.lifereimagined.org": [9345], "k3000.com": [2024], "minforsyningplugin.kmd.dk": [20740], "www.unisg.ch": [17289], "centrance.com": [2601], "go.mailinhs.com": [2024], "c8.nrostatic.com": [21189], "st-andrews.ac.uk": [15417], "app.blueturn.earth": [2171], "update.utorrent.com": [22337], "*.jotformpro.com": [8649], "wiki.ornl.gov": [11730], "plusmtl.link": [2024], "cebit-2010.lpice.eu": [9109], "gnu.io": [6336], "blck.us": [2024], "www.in-disguise.com": [8028], "mng.no": [2024], "d.pixiv.org": [12778], "tuli.ga": [2024], "chen.cat": [2024], "start.roboform.com": [13981], "rushput.in": [2024], "b2b.clickvoyage.ru": [3255], "www.leafly.com": [9218], "s.heartwalk.org": [2024], "bugado.play-asia.com": [12828], "l-rc.co": [2024], "motherboard.vice.com": [17754], "id.google.*": [6821], "allposters.com": [882], "img5.2345.com": [98], "rhymnbe.at": [2024], "*.yelp.no": [18766], "choutatsu.riken.jp": [13489], "lenizdat.ru": [20807], "i4.microsoft.com": [10396], "topdown.co": [2024], "kan.trylle.no": [2024], "premiumsupport.kaspersky.com": [8820], "lh.co.th": [9298], "product.voxmedia.com": [17941, 22503], "tout.me": [2024], "apply.jhu.edu": [16370], "*.wdtinc.com": [18132], "www.npp.org.hk": [21175], "api.hub.jhu.edu": [16370], "*.blogspot.de": [2127], "*.blogspot.dk": [2127], "to.balikita.com": [2024], "www.undergrad.osu.edu": [11797], "frsupport.msi.com": [9806], "members.elearnsecurity.com": [4920], "www.lettre-de-motivation-facile.com": [9282], "video.eetimes.com": [4899], "www.eup-network.de": [5386], "www.semaphoreapp.com": [21778], "mnbvcxz.com": [2024], "buk.is": [2024], "www.notenoughshaders.com": [11555], "devel.lulzbot.com": [9669], "www.cihan.com.tr": [19590], "airbnb.co.uk": [793], "l.peti.info": [2024], "cafeto.co": [2024], "1.*.wdfiles.com": [18387], "www.etext.illinois.edu": [17346], "estate.mk.co.kr": [20997], "saturnug.nottingham.ac.uk": [11567], "static.criteo.com": [3798], "jedb.xyz": [2024], "winmskhost3.ispserver.com": [20588], "steals.me": [2024], "boozallen.com": [2240], "www.nervoussystems.org": [11203], "cdn.distilnetworks.com": [4562], "*.resellerratings.com": [13859], "mynewsdesk.com": [10882], "jcea.es": [8554], "samy.pl": [21728], "digitalcommons.georgetown.edu": [6531], "instraffic.com": [8198], "view.us.adjug.com": [580], "www.tagboard.com": [22085], "gansvr2.desy.de": [4386], "jfelt.us": [2024], "hawking.mp3scene.info": [21032], "www.krlmedia.nl": [8765], "aji.fyi": [2024], "barnskospecialisten.se": [1706], "jnv.dj": [2024], "www.tools.ietf.org": [7725], "links.ncqrs.org": [2024], "buffy.eecs.berkeley.edu": [17329], "t.iaaz.at": [2024], "www.lsa.umich.edu": [17354], "www.youtube.in": [18800], "mint.btcc.com": [2400], "www.mlno6.com": [9778], "structuralengineering.de": [7595], "press.cern": [2588], "itsjust.in": [2024], "jibetalk.in": [2024], "www.scrambl.is": [14464], "dsco.rs": [2024], "drl.me": [2024], "r.tl": [2024], "lunarpages.com.mx": [624], "www.awltovhc.com": [3484], "vgnews.co": [2024], "mmpo.st": [2024], "aob.oxfordjournals.org": [12222], "pro.cnbc.com": [2645], "www.kavkaz-uzel.ru": [20694], "webftp.active24.com": [19061], "fashion.1688.com": [51], "www.pottermore.com": [21472], "cenccu.co": [2024], "s.clickability.com": [4821], "jagdelar.dn.se": [19856], "dcbroni.es": [2024], "scrnflx.us": [2024], "x.hypem.com": [2024], "ltp.im": [2024], "nxtck.com": [11632], "mobinar.tk": [2024], "*.uclouvain.be": [17320], "on.aprilia.me": [2024], "marvin.linux-mips.org": [9428], "www.media.gta.arch.ethz.ch": [4967], "y.1ac.us": [2024], "as.alipayobjects.com": [864], "*.grenoble.indymedia.org": [8090], "sb.jlos.shoes": [2024], "tprc.pharm.buffalo.edu": [17382], "sgz.link": [2024], "www.2buntu.com": [120], "c.ooyala.com": [11936], "factor.io": [20067], "go.dcsu.co.uk": [2024], "desmond.yfrog.com": [22678], "bronx.esat.kuleuven.be": [8832], "s.koumuwin.com": [2024], "acessando.co": [2024], "gradimages.com": [6865], "www.dbs.com.sg": [4001], "*.a1000words.com": [441], "litapp.me": [2024], "matter-lab.co": [2024], "www.canon.co.nz": [2822], "mzink.mx": [2024], "pwne.ws": [2024], "buy.stubhub.com": [15602], "7.xhcdn.com": [18605], "ccs.com": [2565], "xchange.demandware.com": [4331], "static.ijreview.com": [7751], "lsia.tk": [2024], "www.dct.org.uk": [19781], "rosetta.alhur.es": [19137], "vpst.it": [2024], "deals.techdirt.com": [16091], "develop2050.vcd.org": [17560], "on.contv.com": [2024], "www.onemonth.com": [11888], "joyfulnoi.se": [2024], "fstrn.at": [2024], "www.denfri.dk": [4343], "hope.ly": [2024], "*.store.winzip.com": [18424], "lists.libreplanet.org": [9329], "mosqueedeparis.net": [10644], "www.tehtri-security.com": [15872], "ab-dep-op-elogbook.web.cern.ch": [2588], "wiki.cxense.com": [2709], "s.dv.nu": [2024], "deviceids-meda-id3.wdr.de": [18113], "prospera.ca": [13207], "finsurf.in": [2024], "dance.russia.tv": [21698], "www.torrentsstorage.net": [22248], "coventgarden.london": [19703], "www.superstranka.cz": [22039], "full.sc": [2024], "www.bankcomat.com": [19313], "pollserver.lastpass.com": [9175], "auth.auto.ru": [19276], "www.isc.org": [7823], "anue.cc": [2024], "pwc.to": [2024], "www.allmybase.com": [893], "admin.kuleuven.be": [8832], "go.ola.ski": [2024], "akevot.in": [2024], "*.towelroot.com": [22255], "piratebay.unlockproject.us": [22259], "g.christianbook.com": [3118], "blog.asmallorange.com": [259], "adreclaim.com": [19087], "secureportal.inl.gov": [20537], "librarylicense.org": [9323], "lk.atvc.ru": [19271], "partyrev.info": [2024], "auscert.org.au": [1397], "dfas.cca.edu": [2547], "blana.ru": [2024], "research.sparx.org.nz": [15297], "s.sophia24.com": [2024], "sso.debian.org": [4263], "rford.me": [2024], "www.weblogin.umich.edu": [17354], "adpe.csod.com": [1451], "www.golflink.net": [6805], "go.visor.co": [2024], "gtcvrd.am": [2024], "desorden.co": [2024], "apl.osu.edu": [11797], "cnet.co": [2024], "www.hyper.sh": [7649], "streetmoda.com": [15589], "manchesterdigital.com": [20918], "tbig.info": [2024], "fr.centos.org": [2950], "omht.us": [2024], "api.live.bilibili.com": [1904], "foodru.sh": [2024], "simon.butcher.name": [14879], "l.y4ng.com": [2024], "zendo.ly": [2024], "cta.cern.ch": [2588], "s92.cnzz.com": [3328], "cnyns.org": [2024], "www.asciinema.org": [1270], "canddi.com": [19502], "corecode.at": [3663], "data.nodc.noaa.gov": [11121], "digitalocean.com": [4481], "btcchina.com": [1581], "signup.deploybot.com": [19809], "www.novainfosec.com": [11479], "api.wienenergie.at": [18376], "www.ericw.us": [5330], "www.utm.edu": [17426], "vendorsvoice.idg.se": [7709], "app.maddroid.ru": [2024], "planet.april.org": [1171], "www.123count.com": [35], "vc-kundenservice.de": [17558], "eyoffie.co": [2024], "candi4.me": [2024], "on.app.com": [2024], "na3.www.gartner.com": [6442], "myuw.uw.edu": [17156], "*.coxds.com": [3735], "siepr.stanford.edu": [15448], "sixxsen.se": [2024], "vedomosti.ru": [22433], "ewellnessmag.com": [4984], "corp.bankofamerica.com": [1669], "*.foundationsource.com": [6056], "razor1911.com": [21591], "clipgen.com": [2024], "darkroom.sundayworld.com": [15664], "communities.cisco.com": [3165], "lcp-dl.com": [2024], "image.syncsearch.jp": [15796], "ad.netshelter.net": [11247], "*.livenation.be": [9493], "www.ruag.com": [21690], "insightcommunity.com": [5920], "pczn.us": [2024], "so36.net": [21886], "www.torrentfreak.com": [16651], "oneday.lvrj.com": [9172], "economicimpact.publish.uic.edu": [17321], "k.hitravel.xyz": [2024], "connect.ulaval.ca": [17319], "uaegolf.info": [2024], "o-zwo.com": [2024], "andyhb.com": [2024], "www.toofishes.net": [16625], "jerry.tips": [2024], "www.huntonprivacyblog.com": [20447], "transparency.hu": [22275], "www.sencha.com": [14637], "thesysint.com": [2024], "www.mysql.fr": [10825], "autodiscover.asus.com": [417], "www.liu.se": [9097], "r.adc-srv.net": [19074], "youth.nra.org": [21176], "stjr.nl": [2024], "verkhnyayapyshma.startsmile.ru": [21980], "theideas.agency": [2024], "rdrgsm.in": [2024], "au3.effectivemeasure.net": [5096], "hamburg.freifunk.net": [6170], "intelligence.house.gov": [17108], "v3.pebblepad.co.uk": [12542], "bookstore.law.illinois.edu": [17346], "slovakia.usembassy.gov": [22406], "www.alditalk.de": [357], "ospa.me": [2024], "va.mvd.ru": [21055], "uvmob.com": [2024], "soych.cl": [2024], "webchat.quakenet.org": [13376], "ws21.shacombank.com.hk": [14719], "happyassassin.net": [7192], "*.shopco.com": [14776], "secularhumanism.org": [14537], "www.isoc.org": [7831], "k4m4sutr4.ml": [2024], "*.infinet.com.au": [8095], "*.axa-winterthur.ch": [439], "rumorscity.com": [14088], "s.design.tc": [2024], "mpto.co": [2024], "chsvu.mvd.ru": [21055], "ep.lendlea.se": [2024], "tiba.es": [2024], "www.ssl.com": [14241], "groupon.gr": [6954], "wldt.ms": [2024], "rhizome.org": [13920], "samate.nist.gov": [11089], "doc.oss.aliyuncs.com": [19143], "logpres.so": [2024], "vsevolozhsk.beeline.ru": [1778], "yodb.it": [2024], "izhevsk.startsmile.ru": [21980], "betriebsunterhalt.tocco.ch": [16600], "f.bnkomi.ru": [19417], "www.idrbiz.com": [9756], "vavinet.vutbr.cz": [17609], "go.andyy.me": [2024], "my.enalean.com": [5221], "mail.pirate-party.ru": [12736], "redeem.tokenly.com": [22229], "on.wvec.com": [2024], "oldnvy.me": [2024], "smoozed.com": [21873], "vdgr.is": [2024], "13fkdf3qvqmuvrpquo4w9y991pf61ybmqtlpw15r.ipleak.net": [20571], "masterchan.org": [10061], "s29.postimage.org": [13024], "purecars.com": [13280], "urdu.alarabiya.net": [19131], "help.maxon.net": [10110], "today.gmu.edu": [6529], "adpub.desjardins.com": [4378], "mygf.eu": [2024], "glowing.com": [6732], "jive.com": [8597], "www.getname.ru": [6599], "learn.code.org": [3343], "comm.insure": [2024], "kr.forums.oracle.com": [12116], "u.cppswift.org": [2024], "www.ispsystem.com": [20590], "www.spamgourmet.com": [15283], "doc.chriseb.se": [2024], "secure.hostsearch.com": [7522], "amada.dj": [2024], "www.active24.de": [19063], "cn.norton.com": [11545], "mir.wandoujia.com": [18066], "*.circleci.com": [3158], "stat.uptodown.com": [22396], "emg.tw": [2024], "stjo.co": [2024], "www.xfce-look.org": [18602], "ea.com": [5141], "tyumen.tpprf.ru": [22260], "sec-s.uicdn.com": [17031], "vdata.nikkei.com": [11442], "www.8r.com": [242], "politov.me": [2024], "koa.ipac.caltech.edu": [2771], "rsicc.ornl.gov": [11730], "chatdepot.twitch.tv": [16961], "cdn.sms-online.co": [21875], "mobilesecurity.norton.com": [11545], "sydostran.se": [15775], "sosi.mp": [2024], "git32.rostrud.ru": [21677], "rabota.gazeta.uz": [20215], "nebula.wsimg.com": [14570], "www.coop.no": [3648], "huit.re": [6075], "git.1f0.de": [78], "buggi.es": [2024], "pinocc.io": [12728], "go.onwae.com": [2024], "kander.team": [2024], "u7.qiyipic.com": [13354], "vgst.ch": [2024], "www.natureshop.com": [11142], "backup.ob.f-secure.com": [5533], "upm.cc": [2024], "wiz.bi": [2024], "t.dsot.it": [2024], "free.360totalsecurity.com": [145], "www.corneredcat.com": [3677], "tbh.io": [2024], "www.arrivabus.co.uk": [1241], "*.npr.org": [10989], "*.theoutnet.com": [16375], "hrvth.co": [2024], "qpap.us": [2024], "rockhursthawks.com": [13996], "labs.inspirehep.net": [8178], "git79.rostrud.ru": [21677], "info.undp.org": [17061], "www.visitorcentre.hku.hk": [20387], "dadshift.com": [2024], "elpo.in": [2024], "code.freenet.de": [6158], "deannaf.me": [2024], "*.trekaroo.com": [16782], "portal.mcafee.com": [10129], "www.spkcn.com": [15349], "usedcar.hdfcbank.com": [7249], "acfintl.org": [2024], "vifon.444.hu": [183], "rewild.in": [2024], "deluge-torrent.org": [4321], "m.kshb.com": [2024], "upload.xhamster.com": [18606], "learnshare.com": [9225], "s3.www.universalsubtitles.org": [17317], "gigascience.biomedcentral.com": [1931], "mediafactory.fm": [10180], "livingwage.org.uk": [20856], "www.znaturalfoods.com": [18867], "account.console.aliyun.com": [868], "ru.godaddy.com": [6755], "wnwn.inl.gov": [20537], "*.dfiles.eu": [4023], "ca.usembassy.gov": [22406], "*.ucf.edu": [17333], "hal.buzz": [2024], "s2.hdslb.com": [20358], "abl.jobs": [2024], "pacio.me": [2024], "velocity.theme.co": [16411], "dontblink.ink": [2024], "lav.ac": [2024], "pages.dea.com": [4251], "sh.prosser.ch": [2024], "eu.elsevierhealth.com": [5179], "git.lighttpd.net": [9362], "numbering.neustar.biz": [11320], "emre.im": [2024], "alumni.utah.edu": [17374], "www.hearthbuddy.com": [2250], "thebigweddingmovie.com": [16326], "cooltrainer.org": [19682], "go.readcube.com": [13666], "go.sfr.io": [2024], "informationactivism.org": [8127], "www.comcav.com": [3452], "img2.dditscdn.com": [4228], "www.freemailer.ch": [6157], "sizzl.in": [2024], "vesti.ru": [22450], "pages.nist.gov": [11089], "gobby.debian.org": [4263], "storebot.me": [15561], "cumassmail.itsc.cuhk.edu.hk": [2704], "easymail.ca": [5018], "archive-12.kali.org": [8786], "d-vs.co": [2024], "www.formget.com": [20138], "www.itbookshelf.com": [7861], "secure.rochford.gov.uk": [13988], "minibuk.us": [2024], "sensei.pixiv.net": [12778], "files.ozbargain.com.au": [12227], "www.helloneighbour.com": [7294], "yelp.be": [18766], "catho.me": [2024], "*.bluessl.com": [2148], "westorangehistory.com": [18304], "www.voa.gov.uk": [22483], "cumbria.police.uk": [3913], "dmc2014pro.grape.ru": [20303], "eservices.south-wales.police.uk": [21908], "tskel.me": [2024], "tlsur.net": [2024], "www.joycasino777.net": [20654], "hsht.gs": [2024], "www.4armed.com": [195], "www.otr.im": [11719], "on.shopigo.com": [2024], "gridserver.com": [6933], "kcart.alipay.com": [864], "global.islamweb.net": [8373], "umm.ph": [2024], "comptepro.leboncoin.fr": [20796], "www.media-proweb.de": [10159], "laesp2.lad.gov.hk": [7066], "luckyv.it": [2024], "app.vogogo.com": [22488], "4y2c.com": [2024], "scontent.fmad3-1.fna.fbcdn.net": [5689], "ist.mit.edu": [9763], "webmail.gogetssl.com": [6762], "firmavpn.azet.sk": [1507], "cordis.europa.eu": [5411], "s31.cnzz.com": [3328], "www.coastcapitalsavings.com": [3335], "git.xiph.org": [18667], "ldng.ag": [2024], "crbn38.co": [2024], "lin.mn": [2024], "de-captcher.com": [4229], "l.jugemcart.com": [2024], "t.tinkoff.ru": [16552], "9tv.co.il": [257], "gunadiframework.com": [509], "bioconductor.riken.jp": [13489], "xx.kojisese.com": [2024], "www.theme.co": [16411], "wiki.xen.org": [22648], "www.nylas.com": [11636], "omar.photo": [2024], "campus.alibaba.com": [857], "lcat.co": [2024], "gallery.debconf.org": [4257], "agbeg.in": [2024], "a.mintkit.com": [2024], "www.boredtodeath.me": [2242], "www.marketo.net": [10024], "slnews.me": [2024], "t.d3h.nl": [2024], "on.640k.in": [2024], "wbez.is": [2024], "mkau.rocks": [2024], "*.oneeyedman.net": [11885], "volby.idnes.cz": [20483], "ecoott.ca": [2024], "alec.at": [2024], "store.esellerate.net": [5346], "bit.karlots.eu": [2024], "*.hawaiianair.com": [7238], "antifa.cz": [1103], "manyvids.com": [9976], "rogueamoeba.com": [14003], "go.mdeco.kr": [2024], "www.wooconf.com": [18504], "static1.banki.ru": [1672], "garron.me": [6441], "www.waindigo.org": [18044], "gwld.gs": [2024], "www.scenetap.com": [14404], "calendar.teamup.com": [22108], "content.novayagazeta.ru": [21169], "phpclasses.org": [12683], "39.mvd.ru": [21055], "it.functions-online.com": [20187], "slack.airbitz.co": [19121], "csy.co": [2024], "cdni.wired.co.uk": [22599], "rlist.biz": [2024], "myalbum.co": [2024], "orlovskaya-obl.beeline.ru": [1778], "media.coindesk.com": [3394], "legislationsurveys.com": [9246], "garr.mobi": [2024], "limeservice.com": [9371], "m.haigou.unionpay.com": [17281], "ww1075.smartadserver.com": [15049], "8ballpoolforum.miniclip.com": [10460], "*.adobelogin.com": [673], "q6.chaucanh.net": [2024], "libraryreserve.com": [20829], "www.discoveryplacekids.org": [4545], "travelocity.ca": [16772], "www.citywerkz.com": [3200], "audit.median.hu": [10191], "gpage.co": [2024], "skfout.mvd.ru": [21055], "www.maawg.org": [9713], "407.co.nz": [2024], "www.verizonbusiness.com": [22442], "messenger.com": [10316], "www.srclib.org": [15407], "www.staff.uni-mainz.de": [17410], "www.trademark.harvard.edu": [7211], "magictouch.com": [9876], "whois.serveriai.lt": [14677], "www.lexmachina.com": [9294], "www.notalwaysrelated.com": [21164], "*.iinet.net.au": [7961], "forge.laravel.com": [9169], "patsanki.friday.ru": [20175], "osl.iu.edu": [8069], "togo.usembassy.gov": [22406], "support.software.dell.com": [4317], "www.passports.state.gov": [17146], "sp.eota.energy.gov": [5243], "grotebroek.squat.net": [21955], "relap7.inl.gov": [20537], "www.gettyimages.co.uk": [6604], "r24625414.sync.app.asana.com": [1265], "www.facebook.se": [5612], "www.gl.ciw.edu": [2867], "support.uformia.com": [17197], "www.imperialcollegeunion.org": [8019], "s83.cnzz.com": [3328], "palla.link": [2024], "www.avangard.ru": [1463], "pjsi.ps": [2024], "www.easymail.ca": [5018], "r24617864.sync.app.asana.com": [1265], "nz.norton.com": [11545], "yummm.me": [2024], "sapna.cc": [2024], "bes.bz": [2024], "dxo.me": [2024], "wrk.guru": [2024], "bklt.org": [2024], "4tt.co": [2024], "my.sina.com.cn": [14904], "s.frc.ch": [2024], "images.jitsmart.com": [8691], "www.aftenposten.no": [754], "forum.auto.ru": [19276], "mean.se": [2024], "embed.insider.thomsonreuters.com": [16456], "go.ocp.org": [2024], "visatovietnam.org": [17851], "my.rakuten.co.jp": [13594], "www.membernumberlookup.acs.org": [974], "uoflphysicians.com": [17462], "aereo.com": [734], "lists.dns-oarc.net": [4051], "www.kimpluscraig.com": [8907], "www.studentchaptersreview.acs.org": [974], "m.geekzone.co.nz": [6491], "secure.touchnet.com": [16682], "fluxus.cca.edu": [2547], "ashampoo.com": [1273], "jiaohe.jd.com": [8434], "mgid.com": [9752], "exep.jpl.nasa.gov": [10909], "merlot.tools.ietf.org": [7725], "www.rossp.ru": [21675], "refer.islandsavings.ca": [8381], "press.3dr.com": [171], "pool.gridcoin.us": [6932], "s.jjapp.in": [2024], "discovery.resultspage.com": [13875], "bugzilla.clamav.net": [3210], "her.oxfordjournals.org": [12222], "erinl.ee": [2024], "lp.appoi.me": [2024], "openaccess.easthants.gov.uk": [5004], "*.tugg.com": [16893], "bookshelf.theanarchistlibrary.org": [16290], "fb.trmb.co": [2024], "kingisepp.startsmile.ru": [21980], "sana.odessa.tv": [21229], "rddrss.pl": [2024], "cdnjs.dmjx.dk": [4588], "marika.cc": [2024], "boum.org": [2261], "www.jesus.cam.ac.uk": [17332], "mobi.pccu.edu.tw": [12250], "dai.aliloan.com": [19141], "rnicole.co": [2024], "fb.peeptoe.cz": [2024], "serovglobus.ru": [21786], "sr.one.un.org": [17057], "sbhs.astrobl.ru": [19264], "analysis.oxfordjournals.org": [12222], "git.soranzi.net": [2024], "challengepost.com": [2992], "support.verio.com": [17711], "your.derbyshire.gov.uk": [19810], "deposit.rocketbank.ru": [13994], "smtp2.schmidtcom.de": [14419], "bodum.com": [2190], "2bit.co.in": [2024], "www.pyd.io": [13311], "sndr.one": [2024], "service-prod.mcafee.com": [10129], "bt.numerique.ca": [2024], "es.news.walmart.com": [18059], "theracosmeti.co": [2024], "fxsystems.com": [5601], "mtth.in": [2024], "academics.de": [495], "prs.do": [2024], "*.umaine.edu": [17406], "pravc.xyz": [2024], "mdecar.mx": [2024], "lghts.tk": [2024], "tutor.com": [16924], "pulpix.co": [13267], "7thin.gs": [2024], "lanet.ua": [20780], "s.kibdg.in": [2024], "recalls.gov.au": [13170], "z.hebe.ch": [2024], "feedback.arma3.com": [1227], "kanotix.org": [8797], "checkip.dedyn.io": [19789], "www.wilkinsons-auctioneers.co.uk": [22592], "i.actup.org": [2024], "frim.nl": [6199], "remote.cathaypacific.com": [2913], "yellowpages.apnaindia.com": [1127], "www.compteur.fr": [3533], "lsgrps.co": [2024], "sallie-info.stanford.edu": [15448], "unei.info": [2024], "novell.com": [11569], "artdivas.co": [2024], "vsexshop.ru": [17956], "z6.sinaimg.cn": [14910], "dnss2.play-asia.com": [12828], "www.monazilla.org": [21009], "www.2ksports.com": [118], "libcxxabi.llvm.org": [9103], "ea.voyage-prive.co.uk": [17945], "feeds.videogamer.com": [17782], "edgar-online.com": [4884], "daacdata.apps.nsidc.org": [11100], "calacademy.worldcat.org": [18536], "bethere.co.uk": [16141], "asmedia.me.uk": [2024], "mww.play-asia.com": [12828], "gojira.skyscanner.net": [15006], "tippcenter.zdf.de": [22709], "cas.lis.illinois.edu": [17346], "research.cals.vt.edu": [17825], "docker.io": [4606], "www.addresspicker.io": [632], "argoscareers.com": [1214], "*.animoto.com": [1070], "l.4vr.me": [2024], "smdd.adviva.net": [719], "m.nso.ru": [21192], "sales.chinapaymentservices.com": [3085], "mail.marxists.org": [10051], "filozofia.bme.hu": [1556], "10mtweet.netmeister.org": [11284], "my.fsb.de": [2024], "mdws.gffg.com": [6297], "control.thebrighttag.com": [2342], "media2.woolworths.com.au": [18511], "f.s-c.pw": [2024], "avanti.tocco.ch": [16600], "unfrmw.com": [2024], "brkl.in": [2024], "tatarstan.tpprf.ru": [22260], "www.morpho.hu": [10639], "i.jwie.be": [2024], "16hikxdlfslgjpvft66av72hhpkhyb802wrazk6w.ipleak.net": [20571], "livelib.ru": [9522], "area17.com": [1208], "m.taz.de": [15853], "zmap.io": [18853], "blog.getadblock.com": [571], "www.milepoint.com": [10430], "h-s.in": [2024], "novaya-usman.beeline.ru": [1778], "s.tuuli.info": [2024], "l.rapimg.com": [13621], "customerservice.aldi.com.au": [357], "forum.jide.com": [8450], "classic.surreycc.gov.uk": [22040], "missyward.me": [2024], "www.hkw.de": [7072], "cs.bite.lt": [2015], "www.auth.kairo.at": [8782], "mjg.in": [9768], "www.jstor.org": [8472], "frank69.eu": [2024], "paraduxmedia.com": [12415], "india.hivos.org": [7436], "www.bitflyer.jp": [1958], "levny-hosting.cz": [9289], "www.independent.co.uk": [8058], "www.pgi.com": [12278], "develz.org": [19822], "www.stg.comcast.com": [3462], "brewsne.ws": [2024], "static.kirklees.gov.uk": [8929], "forum.utorrent.com": [22337], "*.utk.edu": [17424], "*.tidalhifi.com": [16506], "rij.cc": [2024], "arin.net": [397], "roadside-mba.stanford.edu": [15448], "labs.spotify.com": [15367], "vitgrp.com": [2024], "neil.to": [2024], "www.dashpay.io": [4157], "landalparkshop.*": [18579], "postofficeshop.de": [19816], "feconnect.sfa.bis.gov.uk": [19381], "energymadeeasy.gov.au": [5244], "uat.community.mcafee.com": [10129], "docs.vogogo.com": [22488], "qv.hitravel.xyz": [2024], "matt.ucc.asn.au": [17381], "wwwe.play-asia.com": [12828], "www.hubspot.com": [7599], "oi.poop.io": [2024], "www.openmedia.org": [11995], "www.hackthissite.org": [7126], "www.perfeval.pol.ulaval.ca": [17319], "lfhk.ru": [2024], "unionreps.org.uk": [22376], "kolab.intevation.de": [8293], "crb.li": [2024], "stg.gogobot.com": [6791], "raymond.cc": [13645], "dramaticarts.usc.edu": [17366], "jerr.yt": [2024], "l.5min.com": [217], "gobtb.co": [2024], "w.inaveed.com": [2024], "*.housingwire.com": [7571], "hizlisaat.com": [7437], "hammacher.com": [7170], "ppm.lowes.com": [9645], "www.rspca.org.uk": [13521], "r24625320.sync.app.asana.com": [1265], "ekmsecure6.co.uk": [5122], "passagebank.com": [12461], "nib.vub.sk": [17962], "c.live.com": [9495], "citywk.ly": [2024], "secure.oxfordjournals.org": [12222], "mp.fnac.pt": [5947], "simrussia.com": [14869], "app.bilibili.com": [1904], "rehs.us": [2024], "careers.checkpoint.com": [3052], "*.man.com": [9947], "lyris.com": [9696], "www.emfcamp.org": [19987], "bevsit.es": [2024], "dmu.my.centrify.com": [19546], "elr.io": [2024], "thebe.cc": [2024], "www.dbtv.no": [19776], "zdrojak.root.cz": [14020], "qsna.us": [2024], "gb.hyd.gov.hk": [7063], "m.hdfcbank.com": [7249], "sheetsu.com": [21800], "jeffmclean.co": [2024], "xrel.to": [18681], "mondediplo.com": [10578], "accessnow.createsend.com": [3769], "www.pure-privacy.org": [13281], "epoch.fit": [2024], "nekoz.in": [2024], "admissions.com": [663], "imagecache.allposters.com": [882], "selfpayca.sh": [2024], "college.georgetown.edu": [6531], "yunqi.aliyun.com": [868], "raffi.today": [2024], "xmlgw.companieshouse.gov.uk": [19657], "chelmsford.greenparty.org.uk": [6908], "hypernews.cern.ch": [2587], "www.parnasparty.ru": [12440], "netfronts.com": [11231], "s.glowfm.nl": [2024], "kau.toke.dk": [16608], "austrade.gov.au": [1404], "secure-checkout.t-mobile.com": [15837], "home.immobilienscout24.de": [8008], "aflex.bpmonline.softline.ru": [21889], "ggty.co": [2024], "www.computerfulfillment.com": [3538], "help.cloud66.com": [19621], "*.ivn.us": [8062], "www.peterodding.com": [12624], "odintsovo.beeline.ru": [1778], "new.leadforensics.com": [9211], "go.tdh.me": [2024], "www.subgraph.com": [15623], "gftd.pt": [2024], "ots.treas.gov": [17139], "www.ceop.police.uk": [19549], "247exchange.com": [105], "mobile.gmx.de": [6330], "conference.joomla.org": [8641], "rdns.im": [13656], "fr.stripchat.com": [22014], "www.muslimsdiscuss.com": [10767], "erhverv.tdc.dk": [15862], "link2.mobi": [2024], "news.webpodo.de": [2024], "www.flockport.com": [5916], "beatmec.ca": [2024], "www.codepen.io": [3348], "cm1.criticalmass.com": [3799], "de.norton.com": [11545], "causa.men": [2024], "munin.videolan.org": [17775], "whs.pr": [2024], "songkick.rocks": [2024], "laughable-jam.surge.sh": [15718], "mysql.fr": [10825], "*.getmein.com": [9493], "bardwilhome.com": [1691], "47.kavkaz-uzel.ru": [20694], "sites.cardiff.ac.uk": [2847], "on.dogbees.com": [2024], "cuttlefish.com": [3938], "nigx.net": [2024], "m.theinquirer.net": [22157], "techtargetsummit.techtarget.com": [16084], "www.vervehosting.com": [17732], "www.gsmmap.org": [20314], "popma.lt": [2024], "blog.alipay.com": [864], "bountic.video": [2024], "dontech.link": [2024], "news.ifrs.ne.jp": [2024], "an.unutag.com": [2024], "om.cnet.com.au": [2540], "www.reyn.ir": [13909], "www.xakep.ru": [18628], "linux-tips.org": [9413], "gdta.st": [2024], "mail-migration.fnal.gov": [5741], "primp.in": [2024], "rivals.com": [21655], "*.adpay.com": [677], "chidsweb1.admin.uillinois.edu": [17034], "*.media.collegehumor.cvcdn.com": [3426], "ls.sir.sportradar.com": [21945], "link.soph.space": [2024], "img.christ-swiss.ch": [3647], "www.modx.pro": [21006], "sole.dk": [15185], "fileserver.ble.de": [19406], "chatango.com": [3037], "enroll.allclearid.com": [874], "www.myub.buffalo.edu": [17382], "mbot.co": [2024], "localsearchassociation.org": [18761], "cart.rackspace.com": [13566], "rledge.co": [2024], "*.deviantart.net": [4410], "www.db.ripe.net": [13953], "sportinghip.co": [2024], "skins.minecraft.net": [10452], "brze.us": [2024], "tribalhosting.net": [16800], "panel.goldenline.pl": [6799], "tpshlf.co": [2024], "tectonic.com": [16120], "www.jamesvillas.co.uk": [18579], "mail.rockstargames.com": [13997], "rodaw.me": [2024], "i.ubm-us.net": [16998], "pandoblog.com": [12388], "bortarsasag.hu": [2245], "optimizegoogle.com": [12106], "cuctac.cf": [2024], "time.yandex.by": [18739], "corris.pw": [2024], "www.cals.vt.edu": [17825], "wearete.mp": [2024], "koryw.co": [2024], "csdb.dk": [2682], "www.research.cals.vt.edu": [17825], "www.trinityhome.org": [16814], "wrkt.co": [2024], "www.grabcad.com": [6863], "debian.piwik.org": [12768], "api.meetme.com": [10224], "pagekite.net": [12359], "exploit.in": [5498], "rdmpt.in": [2024], "www.omniture-static.com": [11841], "www.andreafabrizi.it": [1043], "www.eduscho.at": [16050], "wiley.com": [18401], "www.gettyimages.co.nz": [6604], "login.engineyard.com": [5255], "military.stanford.edu": [15448], "odco.com": [2024], "a.curpress.com": [2024], "identity.lbl.gov": [9079], "novartisart.com": [11568], "url.hwbot.org": [2024], "tereva.pro": [2024], "*.startcom.org": [15472], "go.brit.co": [2024], "expobibtic.upf.edu": [17471], "ob.s.co": [2024], "scootermagru.de": [2024], "www.nextag.com.au": [11402], "travel.yahoo.co.jp": [18730], "sipsolutions.net": [14184], "www.mykplan.com": [327], "debs.dict.cc": [4442], "mail.is74.ru": [20586], "mydrl.umd.edu": [17351], "www.collabora.co.uk": [3418], "up3.co": [2024], "lab.msdn.microsoft.com": [10396], "items-attachments.s1.citilink.ru": [19594], "yho.com": [18771], "sutaz.refresher.sk": [13781], "www.amoad.com": [371], "*.shop.forgefields.com": [6013], "www.nominate.acs.org": [974], "orel-i-reshka-map.friday.ru": [20175], "bayphoto.com": [1732], "itunes.swisscom.ch": [15761], "molecularautism.biomedcentral.com": [1931], "hello.ted.com": [15871], "www.hft-leipzig.de": [7386], "bitly.run-e.com": [2024], "mv.peanuts.com": [2024], "novoshakhtinsk.startsmile.ru": [21980], "ib.primabanka.sk": [13105], "cybergolf.com": [3962], "prcl.io": [2024], "widgets.bufferapp.com": [2419], "elements.yandex.kz": [18743], "autodiscover.enter.ru": [20002], "ssl.washingtonpost.com": [18086], "charts.ycharts.com": [18704], "datax.baidu.com": [1641], "oram.link": [2024], "www.crowthornepc.org.uk": [19726], "bt.sunward-t.jp": [2024], "p3.ivideo.sina.com.cn": [14904], "hosting.asp.net": [413], "socr.it": [2024], "myno.tc": [2024], "yousuu.com": [22694], "theapp.voicelessonstotheworld.com": [11341], "benj.xyz": [2024], "sadobe.autoscout24.de": [1458], "onelov.co": [2024], "www.buzzorange.com": [19485], "service.ringcentral.com": [13948], "bbva.info": [2024], "nl.mouseflow.com": [10664], "www.maarssen.nl": [11172], "scottishculture.basekit.com": [19323], "*.heureka.cz": [7377], "*.allpoetry.com": [909], "highpeak-consult.objective.co.uk": [21225], "jucycruize.co.nz": [8475], "radar.squat.net": [21955], "learnerview.ofsted.gov.uk": [21231], "www.edgewall.org": [5073], "demisto.com": [4335], "tbtbooks.us": [2024], "www.travelocity.ca": [16772], "egais.ru": [19969], "asmp.a1.net": [261], "cyta.co": [2024], "login.adf.ly": [577], "www.jobs.nhs.uk": [10953], "www.godaddymobile.com": [6756], "ca.com": [2525], "bornthiswayfoundation.org": [2243], "acmsf.food.gov.uk": [20132], "metrogroup.de": [10350], "www.aan.sh": [448], "publications.environment-agency.gov.uk": [20006], "r.qq.com": [13329], "southrivertech.com": [21913], "www.spotify.com": [15367], "bundesrat.de": [2447], "cie.utm.edu": [17426], "fashion.sina.cn": [14902], "znefx.com": [2024], "stellar.org": [15532], "www.choon.net": [3103], "owncloud.documentfoundation.org": [16295], "www.a1afastcash.com": [264], "languageperfect.co.nz": [9160], "wdg2.apple.com": [1151], "wi.wtf": [2024], "live.asp.net": [413], "yaplakal.com": [22668], "henan.jd.com": [8434], "www.clevercoin.com": [3240], "geeksphone.com": [6489], "dgrl.co": [2024], "www.websitealive2.com": [18242], "g.mahditajik.ir": [2024], "beerded.link": [2024], "reg.centrum.sk": [19548], "nattstad.se": [11135], "www.usuhs.mil": [17133], "cdw.com": [2579], "go.s-fellow.com": [2024], "s.si.edu": [2024], "firefall.curseforge.com": [3927], "*.voodoo.com": [17929], "typeamanifes.to": [2024], "www.subdownloader.net": [15619], "blkd.md": [2024], "bugs.wine-staging.com": [18440], "reyn.cc": [2024], "blkd.mn": [2024], "minsport.khabkrai.ru": [20709], "frug.co": [2024], "companynet.mbank.pl": [9733], "uchaly.europaplus.ru": [20034], "*.ssldomain.com": [15414], "piter1409.golosinfo.org": [20286], "pcache.alexa.com": [843], "www.sydneyaquarium.com.au": [15773], "on.abc10.com": [2024], "opendemocracy.net": [12063], "sacfw.co": [2024], "www.slovensko.sk": [15037], "www.londonpreparesseries.com": [9583], "www.formilux.org": [6022], "mjb.media": [2024], "iute.ch": [2024], "www.balkongshoppen.se": [1652], "asapps.artsci.wustl.edu": [18089], "www.schoolforge.net": [14425], "my.tv.mail.ru": [9891], "www.vineyardvines.com": [17808], "nationaleombudsman.nl": [11172], "vologodskaya-obl.beeline.ru": [1778], "blogs.fau.de": [17396], "stvh.me": [2024], "www.emptywheel.net": [5213], "www.webbyawards.com": [18206], "occstrate.gy": [2024], "developer.clockworkmod.com": [3272], "codereview.qt-project.org": [13364], "go2me.net": [2024], "btwifi.co.uk": [1602], "www.getambassador.com": [6571], "calfutures.berkeley.edu": [17329], "etherpad.inka.f4.htw-berlin.de": [7103], "lkl.st": [2024], "maxmind.com": [10109], "www.sourcecoast.com": [15239], "www.vanhaaren.net": [17639], "optin.stopwatching.us": [15555], "bestdj.website": [2024], "forum2.hkgolden.com": [7058], "developer.servicenow.com": [14682], "cdn-origin.snv.vcmedia.com": [17628], "static2.wareable.com": [22525], "lists.openwrt.org": [12025], "mailoutinteractive.com": [9904], "a.21bet.com": [2024], "i.23.design": [2024], "api.picatcha.com": [12691], "www.theforeman.org": [22152], "auto.yaplakal.com": [22668], "sec.juliar.org": [8686], "nokia.co.uk": [11498], "zdfsport.de": [22709], "miscssl.360buyimg.com": [148], "files.gyazo.com": [7019], "i2.gallery.technet.s-msft.com": [14114], "gitlab.nlnetlabs.nl": [10980], "www.demisto.com": [4335], "agricen.ag": [2024], "flhsfb.us": [2024], "smartmoney.com": [11361], "capitalbreastcare.georgetown.edu": [6531], "l.chornco.com": [2024], "infosecindustry.com": [8104], "usp.li": [2024], "go.tiket.com": [2024], "*.bishopi.com": [1949], "u.moneylover.me": [2024], "webmail.tierra.net": [16510], "mobile.mediapart.fr": [10194], "fileshare.democrats.org": [4338], "go.skuare.net": [2024], "*.prositehosting.co.uk": [5674], "wildlifesydney.com.au": [18400], "american.edu": [978], "calculators.mozo.com.au": [10703], "suse.com": [14262], "the109.org": [16319], "nahb.bz": [2024], "j6.hitravel.xyz": [2024], "www.pulpix.co": [13267], "my.2hrcash.com": [2024], "g.seion.me": [2024], "j.labrecque.me": [2024], "download.spiceworks.com": [15338], "daln.co": [2024], "www.mindtools.com": [10447], "dudesha.red": [2024], "alionet.org": [863], "gofundme.com": [6761], "s.therosies.net": [2024], "ztrk.me": [2024], "www.jhsmh.org": [8870], "hubcr.8iv.ca": [2024], "www.npm.im": [11578], "www.insurancetech.com": [16999], "grclrk.co": [2024], "webpub.mit.edu": [9763], "auth.telegraph.co.uk": [16149], "stuaff.usc.edu": [17366], "fotoservice.telekom.de": [4397], "kirklees.firmstep.com": [20109], "www.blogoverflow.com": [15424], "lms.iciciprulife.com": [7917], "on.kivitv.com": [2024], "mumbrel.la": [2024], "tarunchaw.la": [2024], "1www.play-asia.com": [12828], "potok.alfabank.ru": [849], "t.kuozumi.jp": [2024], "render-api-kr.worldofwarcraft.com": [18542], "sharesix.com": [14729], "respectnetwork.com": [13869], "www.veloplus.ch": [22437], "ssl-tools.net": [21961], "survey.logilab.fr": [9568], "secure.capitalone360.com": [2832], "unrealengine.com": [17450], "paste.ee": [12472], "ss.zumzi.com": [19023], "*.pentacon.de": [14421], "*.valuedopinions.co.uk": [17633], "www.coed.com": [3385], "webevent.wustl.edu": [18089], "corp.sts.microsoft.com": [10396], "exablox.io": [2024], "suo.fyi": [2024], "opensvc.com": [12008], "okm.ag": [2024], "sprtly.me": [2024], "www.muob.ru": [21051], "static.stubhub.co.uk": [15602], "segurosuniversales.net": [14623], "roysac.com": [21684], "uden.nl": [11172], "fs26.formsite.com": [20139], "ptn.io": [2024], "bcex.bedford.gov.uk": [19341], "forum.t411.li": [15847], "www.highfidelity.io": [7405], "www.intuitlabs.com": [8301], "gmglf.co": [2024], "aboutus.org": [482], "form.education.gov.uk": [19957], "maps.sakh.com": [21719], "finance.play-asia.com": [12828], "hideout.cc": [2024], "www.superblock.net": [15690], "superbreak.com": [22037], "www.forestsangha.org": [6007], "r24822986.sync.app.asana.com": [1265], "mam.netease.com": [11228], "www.purinastore.com": [13290], "tedrub.in": [2024], "fastspringblog.com": [5665], "bank.hangseng.com": [7183], "bossier.illuminateed.com": [20494], "songtripp.in": [2024], "mcont.co": [2024], "cooks.io": [2024], "delaware.gov": [15485], "vanbler.gs": [2024], "portal.htbridge.com": [7105], "collectbritain.bl.uk": [2358], "dvps.pro": [2024], "bugs.chromium.org": [3124], "docker.com": [4605], "static-titanium.cursecdn.com": [3927], "www.rediris.net": [13722], "poste-impresa.it": [13011], "motox.accu-weather.com": [520], "si.mpati.co": [2024], "getjive.com": [8597], "yourtee.co": [2024], "novosibirskaya-obl.beeline.ru": [1778], "publisher.tinypass.com": [16565], "to.akima.de": [2024], "octopuspop.com": [11754], "s.8qp.co": [2024], "images.proboards.com": [13158], "shutup.us": [2024], "yuribey.yanao.ru": [22665], "developer.actor.im": [19068], "greyhound.com.mx": [6929], "luxuryreplica.net": [9688], "www.scheduleonce.com": [14412], "staging.hellobond.com": [7298], "gr-contrainfo.espiv.net": [20021], "www.phoronix.com": [12668], "aldi.dk": [357], "as.on.aol.com": [380], "b.jd.com": [8436], "bybil.oxfordjournals.org": [12222], "cre.pe": [2024], "help.ubuntu.com": [17183], "brog.co": [2024], "i.l2df.com": [2024], "esote.ch": [2024], "barter.vg": [1710], "j.mfcimg.com": [20972], "smartlivingnetwork.com": [15057], "membercentre.fairfax.com.au": [5623], "fusion.libsyn.com": [9336], "m.mpbk.us": [2024], "myaccount.primustel.ca": [21498], "www.adeccowaytowork.com": [633], "content.worldnow.com": [18540], "projects.coin-or.org": [2652], "mail.t-com.sk": [16155], "secure.thestar.com": [16646], "sustainability.asda.com": [407], "www.weko.admin.ch": [22061], "bc.legal": [2024], "gz.jd.com": [8434], "btlr.net": [2024], "dict.leo.org": [9270], "www.sparx.org.nz": [15297], "bnlip.co": [2024], "amblin.io": [967], "gulas.sme.sk": [14198], "uapp.ly": [2024], "plctwltter.co": [2024], "www.zivi.admin.ch": [22061], "villageclimatise.boum.org": [2261], "au.norton.com": [11545], "wiki.junge-piraten.de": [8695], "rated.co.uk": [2024], "www.seeedstudio.com": [14615], "mdy.lv": [2024], "images.google.com.*": [6824], "protect.iu.edu": [8069], "bpspt.mobi": [2024], "epetitionslincolnshire.firmstep.com": [20108], "inspira-apps.un.org": [17057], "font.news": [2024], "gept.org.tw": [20236], "dej.si": [2024], "afraud.otpbank.ru": [12165], "de.media.regiochannel.com": [13791], "bsclibrary.worldcat.org": [18536], "cop.dfs.un.org": [17057], "*.ja.net": [8426], "lyncdialin.dfs.un.org": [17057], "eyelig.ht": [2024], "fundaciontelevisa.org": [6238], "www.camden.gov.uk": [2785], "blueprint.uchicago.edu": [17334], "fdscp.com": [2024], "ds.hpci.nii.ac.jp": [10968], "on.fzel.us": [2024], "mosaic.re.taobao.com": [16015], "choosealicense.com": [3105], "mmi.bnymellon.com": [19420], "wakefield-consult.objective.co.uk": [21225], "blog.wku.edu": [22602], "lnkr.ch": [2024], "verbraucher-sicher-online.de": [17705], "www.limetorrents.com": [20842], "lists.01.org": [1], "www.toyou.co.uk": [22258], "parnl.me": [2024], "*.itu.int": [7855], "support.zend.com": [18920], "www.geizhals.de": [6495], "pnn.cl": [2024], "ibuttxn01.hkjc.com": [20384], "data.belregion.ru": [19353], "www.facebook.us": [5612], "www.act.ulaval.ca": [17319], "www.dml.kuleuven.be": [8832], "sktch.es": [2024], "c21ff753-4258-7177-b2db-9346e734d3f4-rum.cdnvideo.ru": [19536], "mcvpacific.com": [8225], "staging.gitignore.io": [20254], "wiki.metroethernetforum.com": [10349], "rong.36kr.com": [154], "stuff-rw.umeahackerspace.se": [17228], "pages.goswm.com": [2024], "vliet.land": [2024], "helpdesk.panopto.com": [12394], "retail.sdm.ru": [14494], "www.flexnow.ruhr-uni-bochum.de": [14086], "m.qidian.com.tw": [13349], "japanese.alibaba.com": [857], "myaccount.talktalkbusiness.co.uk": [15994], "nglbrg.us": [2024], "www.apollon.uio.no": [17414], "wap.sogou.com": [15168], "tpb.review": [22259], "*.prxy.com": [13230], "planete.april.org": [1171], "piratebay.esbypass.download": [22259], "southtyneside.greenparty.org.uk": [6908], "www.ew-online.de": [4982], "www.openvirtualizationalliance.org": [12058], "hornsby.law": [2024], "www.skyscanner.es": [15006], "gateway.degica.com": [3333], "gtk.ninja": [2024], "ide.la": [2024], "www.library.cornell.edu": [3676], "awaps.yandex.ua": [18747], "www.iwoulddo.it": [7877], "imagefile.51fanli.net": [209], "sunwood.jd.com": [8436], "ejy.co": [2024], "*.fwc.gov.au": [5621], "developer.justgiving.com": [8710], "edmjr.nl": [2024], "bookstore.ucsd.edu": [17012], "paymybill.uic.edu": [17321], "lkviva.tk": [2024], "esentire.axonify.com": [1502], "s118.cnzz.com": [3328], "ibx.com": [20473], "opencorporates.com": [11967], "emery.illuminateed.com": [20494], "profection.al": [2024], "www.aok-gesundheitspartner.de": [376], "tlrd.net": [2024], "barti.cz": [2024], "on.prx.org": [2024], "www.shacomsecurities.com.hk": [14719], "*.usfca.edu": [17122], "0w1.xyz": [2024], "ox.mediabistro.com": [10182], "s.epm-music.com": [2024], "berryreview.com": [1829], "secure.autoscout24.de": [1458], "arevie.ws": [2024], "mycalendarbook.com": [10794], "nintendoworldreport.com": [11459], "ny529.us": [2024], "dev.withsix.com": [18469], "ndjamena.usembassy.gov": [22406], "t1.mediamath.com": [10169], "www.antananarivo.usembassy.gov": [22406], "itcast.tk": [2024], "www.nasaspaceflight.com": [10910], "www.gbatemp.net": [6283], "www.ghost.org": [6611], "survey.hslu.ch": [7589], "renfit.me": [2024], "sweetpepper.org": [13031], "help.247exchange.com": [105], "netsafe.hdfcbank.com": [7249], "shoprep.ly": [2024], "recom.popin.cc": [12954], "blog-dev.habets.se": [7116], "www3.bio.org": [1548], "*.suggester.pl": [15649], "www2.walsall.gov.uk": [22522], "dw.uptodown.com": [22396], "email.bild.de": [1901], "signup.thrillist.com": [22201], "felix.click": [2024], "rhsd.io": [2024], "tmla.bz": [2024], "customerservice.costco.com": [3695], "dennikn.sk": [4349], "analytics.readcube.com": [13666], "lmd.guru": [2024], "install.sandstorm.io": [14346], "www.cs.cf.ac.uk": [2847], "ctr4.me": [2024], "gubernator.admtyumen.ru": [19082], "cardiovascres.oxfordjournals.org": [12222], "www.legolandholidays.co.uk": [20804], "www.eregulations.ct.gov": [2695], "kerbal.curseforge.com": [3927], "www.onthewire.io": [11857], "sl.boardgamearena.com": [2182], "message.bilibili.com": [1904], "puui.qpic.cn": [13360], "providesupport.cn": [13217], "xsf.to": [2024], "varda.gs": [2024], "pogose.at": [2024], "www.openprovider.ru": [12074], "gadel.me": [2024], "biz.kolektiva.com": [8974], "facilities.georgetown.edu": [6531], "mysql.active24.cz": [19062], "link.oevae.com": [2024], "*.goldstar.com": [6803], "www.mangagamer.com": [20920], "cdn.almayadeen.net": [19157], "torrentbutler.eu": [16649], "lion8.us": [2024], "pakistanrisk.us": [2024], "osmpe.ourproject.org": [21314], "amre.st": [2024], "my.tecne.ws": [2024], "deprati.co": [2024], "redirekto.com": [2024], "videomeet.telekom.de": [4397], "leeg.photo": [2024], "p4tg.com": [2024], "www.computextaipei.com.tw": [19661], "www.scrapbookroyalty.org": [3016], "www.mdshooters.com": [10052], "a.irfe.cl": [2024], "members.rethink.org": [21637], "www.stackmonkey.com": [15427], "www.nlx.org": [21145], "anidb.net": [1065], "www2.hostingsolutions.cz": [7538], "s.jaf0.com": [2024], "nbts.co": [2024], "3dsecure.mbank.cz": [9733], "chriscoyne.com": [3110], "holler.to": [2024], "blackmesh.com": [2058], "digifund.link": [2024], "fltrgr.de": [2024], "expo.getbootstrap.com": [6592], "palazz.io": [2024], "test.karnet.tpprf.ru": [22260], "spdap.de": [2024], "flsinc.co": [2024], "explore.autotrader.co.uk": [19280], "secure.visitsealife.com": [22470], "dev.research.vt.edu": [17825], "ihose.co": [2024], "topuniversities.com": [22240], "combo.ag": [2024], "bpwsk.ca": [2024], "api.rg.ru": [21646], "lefebvre.org": [9203], "f.cov.church": [2024], "ae02.alicdn.com": [853], "login.andersonvalleypost.com": [4981], "www.micron.com": [10390], "www.webhostlist.de": [18217], "blueshorefinancial.com": [2149], "n8k.me": [2024], "brkn.ws": [2024], "tudcom.tk": [2024], "www.cdromland.nl": [2580], "eltatar.com": [5181], "intigr.is": [2024], "ningxia.jd.com": [8434], "url.bazuki.com": [2024], "www.support.sensiolabs.com": [14648], "store.openhost.net.nz": [12067], "www.bofh.it": [2194], "en.inria.fr": [8161], "www.kentuckyonehealth.org": [8870], "mybenefitscalwin.org": [10791], "linux.conf.au": [9418], "lists.openmamba.org": [21276], "account.sogou.com": [15168], "st.golosinfo.org": [20286], "vancity-test.memberdirect.net": [10265], "developer.gimp.org": [20246], "oyun.yandex.com.tr": [18740], "www.pirateproxies.info": [22174], "simmtester.com": [14878], "shop.whyopencomputing.ch": [22584], "twtimg.co": [2024], "api.stackpath.com": [21970], "*.vitalcred.com.br": [12357], "admin.rkn.gov.ru": [13971], "pprf.astrobl.ru": [19264], "oktb.europaplus.ru": [20034], "lists.gnutls.org": [6745], "confirmsubscription.com": [3574], "synwork.oss.aliyuncs.com": [19143], "service.taobao.com": [16015], "www.torbay.gov.uk": [16641], "*.allplayers.com": [881], "billing.pluralsight.com": [21441], "vserver.pipni.cz": [12287], "www.bth.se": [1595], "www.sedo.de": [14605], "amp.freetalklive.com": [20167], "samsungsem.com": [14332], "uguu.se": [17201], "f9.chaucanh.net": [2024], "mip2014.engineering.osu.edu": [11797], "l.falu.me": [2024], "www.cyngn.com": [3974], "jcellb.io": [2024], "pogoda.nso.ru": [21192], "secure.bingads.microsoft.com": [10396], "buitr.es": [2024], "en.business.skyscanner.net": [15006], "cylncr.me": [2024], "dev.contextly.com": [3617], "www.regiedeseaux.montpellier3m.fr": [10609], "code.openhub.net": [12045], "knng.pw": [2024], "parkb.it": [2024], "kia.bi": [2024], "www.boarnsterhim.nl": [11172], "www.rwe.de": [21706], "hsuk.co": [2024], "pic.zhimg.com": [18956], "status.mojang.com": [9789], "library.polyu.edu.hk": [12936], "assets4.sendgrid.com": [14638], "pointroll.com": [12896], "content.xap.com": [18593], "barvaux.org": [1712], "ultmt.rs": [2024], "comms.informahealthcare.com": [8121], "bitcore3.trezor.io": [22282], "h5.sinaimg.cn": [14910], "www.kontalk.net": [8990], "*.staradvertiser.com": [7494], "hendrik.luup.info": [7317], "facebook.us": [5612], "www.mbitcasino.com": [20938], "annasbest.migros.ch": [10417], "mijnlenen.snsbank.nl": [14207], "*.stackexchange.com": [15424], "blogs.tageswoche.ch": [15972], "www.splashthat.com": [15351], "homebello.com": [7476], "sp8l.com": [2024], "www.ois.uic.edu": [17321], "*.alertir.com": [837], "www.kontoapi.de": [8992], "oh-tech.org": [11660], "afreetee.com": [2024], "on.hotelrado.pl": [2024], "haystacksoftware.com": [7242], "myinterfase.com": [10877], "w.gameduc.com": [2024], "binarycontrol.debian.net": [4261], "sp0.baidu.com": [1641], "ipify.org": [20569], "colossal.jp": [3448], "ihcc.us": [2024], "kozlekedes.bme.hu": [1556], "www.ecb.europa.eu": [5411], "icareifu.li": [2024], "s.buzzr.in": [2024], "0vercl0k.tuxfamily.org": [22319], "pono.net": [2024], "www.golfsuisse.ch": [6809], "www.afnic.fr": [340], "login.apiary.io": [19213], "bbd.link": [2024], "linuxquestions.org": [9430], "law.washington.edu": [17376], "vmd.1688.com": [51], "www.trancebase.fm": [22270], "geog.gr": [2024], "r24626476.sync.app.asana.com": [1265], "themoviedb.org": [16372], "lk.ionitcom.ru": [20562], "tsb.ba": [2024], "muscat.bl.uk": [2358], "cngrm.co": [2024], "4cdn.org": [196], "www.tante.cc": [16012], "dsb.zh.ch": [22061], "scuba.im": [2024], "tch.ae": [2024], "faq.1and1.com": [69], "jux.by": [2024], "rashpixel.co": [2024], "uncg.edu": [17412], "pass.yandex.kz": [18743], "adamcod.es": [19071], "isub.snssdk.com": [21884], "smctest.tocco.ch": [16600], "sxmelect.ro": [2024], "newsound.refresher.sk": [13781], "m-mail.centrum.cz": [19547], "www.wholesalelabels.com": [18361], "urielmatt.foolz.us": [5985], "apps.mhf.dod.mil": [17109], "www.ehoiva.fi": [19925], "www.thunderkick.com": [16480], "megiteam.pl": [10245], "finanswatch.dk": [5813], "websites.ipleak.net": [20571], "l.mgsog.nl": [2024], "svnbrgr.eu": [2024], "fa2v.com": [2024], "mb.cash": [2024], "xy.ag": [2024], "greatergood.me": [2024], "takeaway.com": [15980], "sdi.agency": [2024], "mpp2.specificclick.net": [15314], "nihrecord.nih.gov": [11090], "www.onehelp.cz": [11679], "iimagepics.com": [2024], "apoc.freedesktop.org": [6102], "virtua.ca": [2024], "czr.bz": [2024], "i.lilsixty.com": [2024], "mrwrk.nl": [2024], "getpreso.com": [2024], "u.thebrighttag.com": [2342], "go.east-tec.com": [2024], "www.barnsley.nhs.uk": [10953], "kevinv.me": [2024], "www.sandwell.gov.uk": [21729], "jamia.oxfordjournals.org": [12222], "sl1.ir": [2024], "hmwy.co": [2024], "gaytimesmagazine.com": [20213], "media.vegasinc.com": [17678], "niamey.usembassy.gov": [22406], "asset-3.netbeans.org": [11223], "www.cdon.no": [2576], "stpiusweb.org": [2024], "cheshirepolicealert.co.uk": [19573], "www.sunlightfoundation.com": [15667], "ob.tener.me": [2024], "maskido.play-asia.com": [12828], "fellowship.fsfeurope.org": [5592], "ally.com": [914], "olinblog.wustl.edu": [18088], "p7.hitravel.xyz": [2024], "i.stv.tv": [2024], "*.perceptivepixel.com": [12588], "uva.nl": [17545], "docs.abuledu.org": [19044], "slovensko.rtvs.sk": [13536], "vxfd.cc": [2024], "tfish.us": [2024], "alxo.me": [2024], "nmbl.in": [2024], "stfa.uk": [2024], "iam4.me": [2024], "media.islamacademy.net": [8366], "dashboard.stanford.edu": [15448], "educatetheworld.com.au": [5084], "media.villahostels.com": [17800], "ayr.sg": [2024], "sahayn.es": [2024], "static.googlewatchblog.de": [6832], "connect.tms.pl": [22224], "api.58.com": [212], "dinesafe.hacklab.to": [7123], "greek.rit.edu": [13493], "www.ameliaandersdotter.eu": [972], "gd.libreoffice.org": [9327], "service.videoplaza.tv": [17785], "theatr.net": [2024], "reality.sme.sk": [14198], "aberdeenmosque.org": [469], "i.drawy.xyz": [2024], "courses.washington.edu": [17376], "s1.2mdn.net": [129], "musicsorb.rocks": [2024], "aspen.com": [1296], "sids.me": [2024], "www.uno.im": [17447], "www.prettyeasyprivacy.com": [12535], "unops.dfs.un.org": [17057], "crwdly.co": [2024], "www.directadvert.ru": [4512], "room.rakuten.co.jp": [13594], "motherboard.tv": [10648], "www.vbseo.com": [17555], "*.dodlive.mil": [17109], "alumni.ust.hk": [22412], "chemeketa.worldcat.org": [18536], "hrmatch.es": [2024], "modul.tivi.de": [22709], "*.hpcloud.com": [7083], "go.terbaru.us": [2024], "wicworks.nal.usda.gov": [17299], "dziary.xyz": [2024], "fr.pornhub.com": [12972], "lkld.cc": [2024], "www.guldencoin.com": [6998], "pic6.qiyipic.com": [13354], "www.ndmrb.ox.ac.uk": [17359], "prolo.gs": [2024], "wp.kazy.in": [2024], "bink.it": [2024], "www.telex.cc": [16164], "live-feed.bilibili.com": [1904], "scripts.kissmetrics.com": [8745], "deyang.jd.com": [8434], "blog.lookout.com": [9612], "earthfirst.org.uk": [4998], "advertising.yandex.by": [18739], "jdbr.ga": [2024], "go.kedco.ca": [2024], "07.rkn.gov.ru": [13971], "acuitybus.com": [2024], "r24625435.sync.app.asana.com": [1265], "ponychat.net": [12943], "www.taxact.com": [16044], "biomedicalresearch.georgetown.edu": [6531], "www.nice.nhs.uk": [10953], "cdn03.boxcdn.net": [2271], "nl2.us": [2024], "www.ballotready.org": [1655], "l.floh.in": [2024], "ticketnet.fr": [16496], "www.dma.ens.fr": [4922], "theturtle.mobi": [2024], "g.wilker.org": [2024], "store.playstation.com": [12832], "api.littlesis.org": [9488], "www.aulani.jobs": [1393], "as2.in": [2024], "planning.chorley.gov.uk": [19586], "accesd.desjardins.com": [4378], "www.nuget.org": [11601], "inventati.org": [1438], "jfrog.com": [8445], "my.syncplicity.com": [15795], "tigr.net": [16518], "imajna.oxfordjournals.org": [12222], "cdn.dealerfire.com": [4246], "videodirect.amazon.co.jp": [19169], "www.fbf8.com": [5690], "eari.me": [2024], "m-rry.me": [2024], "www.swissreg.ch": [15759], "navicast.co.jp": [14801], "global.gotomeeting.com": [6769], "www.5.cbsm.at": [8782], "hell0.ws": [2024], "m.unibet.com.au": [17268], "solarlist.com": [15180], "base64.alanreed.org": [19130], "www.fakeplasticcubes.demozoo.org": [19808], "burningshed.co.uk": [2458], "people.csail.mit.edu": [9763], "cd.newsnetz.ch": [11371], "nmtea.co": [2024], "ao.1sp.jp": [2024], "www.wusmhealth.wustl.edu": [18089], "rui.mvd.ru": [21055], "salavat.biglion.ru": [19375], "clickbank.net": [3244], "fbs.usc.edu": [17366], "burtcorp.com": [2465], "donate.unicefusa.org": [17070], "fls-eu.amazon.it": [19178], "tageswoche.ch": [15972], "pli.si": [2024], "private-communities.netapp.com": [11221], "forum.avast.com": [1469], "eltirabeque.ourproject.org": [21314], "scrypt.cc": [14487], "kf.al": [2024], "i.eroshare.com": [5338], "cdn.scriptlogic.com": [14484], "volgograd-region.auto.ru": [19276], "os.js.org": [20657], "www.openpetition.de": [12002], "sa.bbc.co.uk": [1524], "raspberrypi.org": [13629], "cdn5.iconfinder.com": [7920], "snl.blue": [2024], "uk.3.boardgamearena.com": [2182], "mediastore.portsmouth.gov.uk": [21467], "www.pharmacievirtuelle.pha.ulaval.ca": [17319], "go.brightcove.com": [5170], "gdw.biz": [2024], "03.static-maxdome.de": [10106], "me.scaasi.co.uk": [2024], "wccusd.illuminateed.com": [20494], "suay.co": [2024], "an9.104.com.tw": [18], "dax.comscore.com": [3454], "infojobs.net": [8102], "peerstudio.org": [12558], "corporate.leboncoin.fr": [20796], "lvng.ga": [2024], "boobne.ws": [2024], "s.savinyurii.ru": [2024], "www.lse.ac.uk": [9112], "t411.me": [15847], "www.razor1911.com": [21591], "auth.opensocietyfoundations.org": [21280], "bbmc.es": [2024], "stat.coxds.com": [3734], "fus.in": [2024], "www.grahamcluley.com": [6870], "at.rahemsa.com": [2024], "24.sapo.pt": [14131], "thttpd.lp0.eu": [9648], "*.redbull.tv": [13731], "www.vates.fr": [17665], "support.wmtransfer.com": [18173], "nanzhuang.taobao.com": [16015], "ir.riverbed.com": [13964], "pressone.akixi.com": [19129], "by.eslamoda.com": [2024], "www2.f-secure.com": [5533], "uk2.net": [17037], "www.nlnetlabs.nl": [10980], "go.mayorga.net": [2024], "ronsen.us": [2024], "glitterbank.com": [6693], "julia.fyi": [2024], "rec.x-lift.jp": [18587], "cdn2.moneycorp.com": [21013], "bpt.bz": [2383], "lib-unique.un.org": [17057], "redmine.mvv-muenchen.de": [9823], "artsdashboard.stanford.edu": [15448], "amanuensans.net": [2024], "mgirl.nyc": [2024], "cheapoz.com.au": [3044], "assets.115.com": [28], "hghr.se": [2024], "nsites.me": [2024], "planet.mate-desktop.net": [9727], "fuding.jd.com": [8434], "drm.chipworks.com": [3092], "www.2dialog.com": [114], "legal.yandex.com": [18742], "www.1u1s.de": [90], "penninecare.nhs.uk": [10953], "www4.walsall.gov.uk": [22523], "machcomedyfest.co.uk": [9843], "5gwc-kbhkort.kk.dk": [8748], "deportes.elpais.com": [5126], "cdn.filepicker.io": [5787], "leisureworldmemberships.colchester.gov.uk": [3414], "gky.no": [2024], "diret.us": [2024], "kellytarltons.co.nz": [8860], "www.your-freedom.net": [18812], "red.bankofamerica.com": [1669], "www.hetlnvloket.nl": [11172], "maintool.fr": [2024], "biz.cultofmac.com": [3909], "micronews.debian.org": [4263], "mcgrl.net": [2024], "cyrilbladier.eu": [2024], "sse.jpl.nasa.gov": [10909], "www.asi.ru": [19256], "beartooth.us": [2024], "vspc.us": [2024], "i1.microsoft.com": [10396], "yuntuapi.amap.com": [19166], "sdigit.al": [2024], "a-i-b.eu": [2024], "www.hertz.jo": [7352], "l1.jo.je": [2024], "mshkn.ch": [2024], "www.e-cegjegyzek.hu": [4843], "x.chmuul.net": [2024], "www.rheinland24.info": [13917], "mobileidentity.telus.com": [16174], "online.fit.edu": [5922], "ashu.uno": [2024], "dcra.in": [2024], "bauundhobby.ch": [3647], "r24617758.sync.app.asana.com": [1265], "vendorportal.newegg.com": [11356], "dev-lounge.gamigo.com": [6426], "www.budsgunshop.com": [2412], "nfa.jd.com": [8436], "nxtbl.us": [2024], "carolmorena.tk": [2024], "esinet.norfolk.gov.uk": [21154], "uncatolico.org": [2024], "csd.m9q8k3b.com": [2024], "api.23andme.com": [100], "blog.trendmicro.de": [16789], "links.shs.vn": [2024], "weoinvoice.com": [18295], "crwdwk.com": [2024], "*.tilt.com": [16524], "centbrowser.com": [19540], "varis.me": [2024], "uits.iu.edu": [8069], "icculus.org": [7907], "sophievipescort.com": [15223], "apress.com": [1169], "kstm.co": [2024], "ropo.so": [2024], "*.sonicwall.com": [15207], "bernina-solothurn.ch": [1827], "ir.pleotec.com": [2024], "nakia.me": [2024], "www.qelectrotech.org": [21556], "tnyjtpk.com": [2024], "freeovi.com": [20165], "buryatia.sledcom.ru": [21858], "redmine2.mvv-muenchen.de": [9823], "www.vodafone.com": [17904], "performance.westsussex.gov.uk": [18305], "documents.nytimes.com": [11040], "edeka.de": [19953], "i.khan.org": [2024], "facebook.no": [5612], "*.mygreenbeanextract.com": [6906], "aka-img-1.h-img.com": [7621], "biohorizons.oxfordjournals.org": [12222], "hkg3.aastocks.com": [19037], "traintimes.org.uk": [16731], "upcbusiness.nl": [17084], "theurb.co": [2024], "defendr.co": [2024], "gu.gd": [2024], "mvps.org": [9822], "lists.ubuntu-nl.org": [17181], "netcloude.cz": [11258], "www.hurl.it": [20448], "securitylunch.stanford.edu": [15447], "www.snelpanel.com": [15097], "order.emcraft.com": [5192], "www.javacoolsoftware.com": [8542], "*.jobs2web.com": [8612], "tsou.sg": [2024], "www.dealabs.com": [19791], "ads.intergi.com": [8246], "www.action.mind.org.uk": [10443], "algorithms.rdio.com": [13655], "content.findnsave.com": [5820], "www.quinstreet.com": [13419], "go.bqphoto.info": [2024], "sec.ch9.ms": [2985], "www.fedbizopps.gov": [5704], "www.socialsafety.org": [15125], "orangestatic.com": [12125], "od2.visiblemeasures.com": [17856], "kap.mx": [2024], "www.subway.com": [15635], "www.lizard-cloud.htwk-leipzig.de": [7596], "nutritionhistory.nal.usda.gov": [17299], "community.linksys.com": [9398], "oplata.beeline.kz": [19345], "mrshe.de": [2024], "cpnking.com": [2024], "lamar.sh": [2024], "syntra.li": [2024], "s1t1.net": [2024], "glsafe.co": [2024], "etnokonf.astrobl.ru": [19264], "dug.net.pl": [4081], "u.tap.me": [2024], "www.cyberport.de": [3966], "topti.ps": [2024], "map.karlsruhe.freifunk.net": [20688], "php-webdav.pureftpd.org": [13282], "l.ph1l.tv": [2024], "www.d115.de": [2443], "investors.homeaway.com": [20396], "fpscdn.yam.com": [18734], "rc.mu": [2024], "argh.wtf": [2024], "www.metalab.at": [10331], "www.jinx.com": [8590], "aff.xnite.net": [2024], "panel.cint.com": [3153], "go.knitbot.com": [2024], "casro.org": [2897], "clinicalsarcomaresearch.biomedcentral.com": [1931], "cva.io": [2024], "bbyb.ca": [2024], "crcls.in": [2024], "cdnssl.mediafire.com": [10166], "streamaloud.com": [2024], "selfservice.unit4.com": [22378], "w3counter.com": [17981], "leagueofgreenembassies.state.gov": [17146], "www.dac.co.jp": [3993], "hacoder.com": [7111], "express.hertz.com": [7371], "motoslave.net": [21027], "*.iberdrola.es": [7895], "www.33bits.org": [138], "support.astaro.com": [1321], "u.uneek.org": [2024], "www.swft.nhs.uk": [10953], "dune.lan.ua": [20774], "javadoc.io": [8543], "c.getsatisfaction.com": [6601], "support.gitter.im": [6666], "www.esinet.norfolk.gov.uk": [21154], "cr8.me": [2024], "gohc.net": [2024], "volgograd.rt.ru": [13529], "mynottingham.nottingham.ac.uk": [11567], "stat.mozo.com.au": [10703], "r24625313.sync.app.asana.com": [1265], "jtreminio.com": [20664], "lounge.zohocrm.com": [18982], "aci-europe.org": [293], "www.oldebroek.nl": [11172], "*.grooveshark.com": [6945], "www.journeyed.com": [8661], "provantage.com": [13214], "kb.siteground.com": [14932], "www.projet-coclico.org": [3341], "idfo.in": [2024], "gradescope.com": [6866], "ut01.xhcdn.com": [18605], "sug.htwk-leipzig.de": [7596], "mail.forceline.net": [20134], "shft.io": [2024], "www.clover.com": [3316], "citi.com": [3171], "honors.illinois.edu": [17346], "huxo.co.uk": [7639], "daymrk.co": [2024], "www.carrefour.es": [19517], "payments.virginmedia.com": [17822], "gk1.biz": [2024], "logon.billpay.de": [1907], "sweetandsourstudio.com": [15747], "foto.vpsfree.cz": [22506], "deutsche-rentenversicherung.de": [4394], "www.solmusica.com": [15175], "photos.america.gov": [19187], "tpchur.ch": [2024], "elekafa.nav.gov.hu": [10912], "kickass-torrents.to": [8894], "www.uaa.alaska.edu": [17323], "speed-burger.com": [15322], "www1.pollg.com": [7203], "www.kinox.pe": [20720], "interactiveonline.com": [8240], "www.caat.org.uk": [19490], "bose.co": [2024], "elkosmas.gr": [19981], "dofunsh.it": [2024], "opcw.org": [11689], "indeeds.ml": [2024], "*.parkersoft.co.uk": [12434], "udo.lubw.baden-wuerttemberg.de": [19302], "rif.ai": [2024], "www.knot-dns.cz": [8960], "aleksin.beeline.ru": [1778], "autoimg.rtl.de": [13534], "astrakhan.ru": [19263], "mate.as": [2024], "video2.0xdb.org": [10], "join.fedoraproject.org": [5716], "rynobl.us": [2024], "catraquinha.catracalivre.com.br": [2917], "sacredrid.es": [2024], "vodafone.uk": [2024], "kameleoon.com": [8791], "ux-eco.corp.appnexus.com": [1139], "goes-app.cbp.dhs.gov": [4026], "pristi.ne": [2024], "*.plssl.com": [13078], "cca.edu": [2547], "www.xprize.org": [18584], "l.mivistore.com": [2024], "kazan.auto.ru": [19276], "chuang.36kr.com": [154], "www.armorybids.com": [1229], "isq.oxfordjournals.org": [12222], "the.realb.it": [2024], "admin.tagman.com": [15970], "www.tpb.cricket": [22259], "www.ciscolearningsystem.com": [3167], "www.miles-and-more.com": [10431], "clic-study.org": [2635], "*.garciniacambogiavitalmend.com": [6439], "www.adobeformscentral.com": [672], "mk7.cc": [2024], "www.syncplicity.com": [15795], "www.english-heritage.org.uk": [5258], "slides.kairo.at": [8782], "bpr1.tk": [2024], "bunte.biz": [2024], "www.malverndiabeticfoot.org": [9936], "portlandmercury.com": [12984], "www.testyourmight.com": [16220], "gdbns.ga": [2024], "aac.io": [2024], "acecent.re": [2024], "nette.me": [2024], "flts.im": [2024], "www.betvictor.com": [17757], "www.starkist.com": [15455], "gfg88.tk": [2024], "www.uniongang.net": [22373], "www.gulas.ch": [20004], "sbtix.xyz": [2024], "demos.intercom.io": [8241], "s.rakit.my": [2024], "www.markeedragon.com": [10015], "*.helpdocsonline.com": [7307], "offi.me": [2024], "signup.hootsuite.com": [7496], "www.mijnusenet.nl": [20983], "psrm.co": [2024], "s.mentalt.jp": [2024], "lnk.eberapp.com": [2024], "prnr.me": [2024], "portalmasq.com": [12310], "tgv.tocco.ch": [16600], "blink-182.com": [2094], "wpezdev.com": [2024], "secure.disney.co.jp": [4554], "www.hr.caltech.edu": [2771], "kamensk-shahtinskiy.europaplus.ru": [20034], "developer.mbed.org": [10122], "g3boy.ml": [2024], "asset-4.soupcdn.com": [15236], "nrdry.net": [2024], "almamater.xkcd.com": [22652], "cbpi.info": [2024], "armstrong.osu.edu": [11797], "www.invisionpower.com": [8319], "icsdelivery.com": [7924], "beta.wired.com": [18454], "www.com-sys.de": [3451], "admin.mims.com": [9756], "*.webmail.uni-weimar.de": [1722], "aa.lifehacker.ru": [20836], "adat.atlatszo.hu": [1349], "static.mi.com": [10361], "mtu.news": [2024], "martamari.am": [2024], "dev.netzob.org": [11317], "img.vim-cn.com": [22467], "www.nccgroup.com": [10921], "moneropool.com": [21012], "go.jadoel.info": [2024], "www.gay180.com": [6456], "portalval.cms.gov": [19630], "www.gmx.net": [6330], "forums.mageia.org": [9865], "npssa.nps.gov": [11122], "purchasealerts.visa.com": [17846], "z.icetravel.xyz": [2024], "assets.centralindex.com": [19542], "failure.play-asia.com": [12828], "lists.contribs.org": [3621], "chemsysbio.stanford.edu": [15448], "tonicdev.com": [22233], "bear.me": [2024], "anidb2.anidb.net": [1065], "functions-online.com": [20187], "elburg.nl": [11172], "m.tokyo2020.jp": [22230], "www.mate-desktop.com": [9727], "trent.utfs.org": [17539], "mdigit.al": [2024], "ickk.es": [2024], "b-static.net": [2185], "www.talkhealthpartnership.com": [15995], "www.winzip.com": [18424], "myaccount.utopianet.org": [17543], "www.lacie.com": [9134], "www.toptip.ch": [3647], "web-toolkit.global.sky.com": [14989], "ideamens.ch": [2024], "freeunlocks.com": [6110], "www.tinyurl.com": [16561], "safekey.mcafee.com": [10129], "team.hon.ch": [7080], "www.boostbybenz.com": [2231], "ffmpeg.org": [5556], "support.zadarastorage.com": [18871], "lh2.google.co.*": [6821], "hra-news.org": [7086], "fwd.youcanbook.me": [18794], "secure.neomailbox.com": [11194], "elru.moe": [2024], "ivano-frankivsk.o3.ua": [21219], "eevee.moe": [2024], "portal.donotpay.treasury.gov": [16778], "www.familysearch.org": [5636], "lri.link": [2024], "ob.ksk66.ru": [20759], "planet.osgeo.org": [11707], "s137.cnzz.com": [3328], "www.sudact.ru": [22027], "mmahq.com": [9779], "studentblogs.nvcc.edu": [11627], "ksk66.ru": [20759], "ncfit.club": [2024], "www.webtimeclock.com": [18257], "badges.instagram.com": [8182], "hertztrucks.com.au": [7335], "static.flixstercdn.com": [5913], "dug.cc": [2024], "cheezburger.com": [3060], "thefnf.org": [16349], "connect1.osu.edu": [11797], "devdocs.wesnoth.org": [18298], "film-21.co": [2024], "avlt.co": [2024], "error.incites.thomsonreuters.com": [16456], "www.channel4.com": [3009], "blog.dreamhost.com": [4743], "*.univie.ac.at": [17437], "s.chzbgr.com": [3060], "ii.lc": [2024], "www.thethinkingvegan.com": [16316], "connect.megapathwholesale.com": [10241], "traceroute-online.com": [22263], "johalputt.com": [2024], "atwp.fr.nf": [2024], "go.dc50tv.com": [2024], "vmne.ws": [2024], "www.domainbox.com": [4655], "system.casalemedia.com": [2880], "dgtl.ly": [2024], "giving.stanford.edu": [15448], "www.escholarship.org": [4963], "streamline.uprr.com": [22392], "www.nlg.org": [10976], "revosec.ch": [13907], "uswfb.adsrvr.org": [688], "crec.bz": [2024], "nxtblocks.info": [11024], "l4.51fanli.net": [209], "www.crowdcurity.com": [3822], "treatsm.ag": [2024], "c-js.uk": [2024], "usm.ag": [2024], "www.qatar.hsbc.com": [7090], "planner.bingads.microsoft.com": [10396], "ifxm.ag": [2024], "www.nominet.uk": [21151], "rmndr.co": [2024], "poloniex.com": [12930], "leo.io": [2024], "athletics.cmu.edu": [2868], "www.smartcity.taipei": [21866], "palemoon.start.me": [15470], "tver-realty.rambler.ru": [13600], "eshop.eset.com": [5347], "on.thai.ga": [2024], "about.me": [481], "www.runnymede.gov.uk": [21694], "job.web.cern.ch": [2588], "crowdsupply.com": [3821], "nrahq.org.org": [21181], "seafileserver.de": [14497], "hservices.nra.org": [21176], "ssl5.ovh.net": [12205], "wc.vg": [2024], "static.oddschecker.com": [21228], "krystalstatus.co.uk": [9036], "www.canvasholidays.co.uk": [18579], "www.sics.se": [14179], "cat.elpais.com": [5126], "fcitx-im.org": [5692], "hub.microsofttranslator.com": [10402], "dreki.tech": [2024], "no-cache.hubspot.com": [7599], "gyal.rocks": [2024], "www.dagbladet.no": [4102], "secure.gettyimages.ch": [6604], "secure-id.impressiondesk.com": [20514], "esus.megabus.com": [10244], "jcnup.es": [2024], "turbotax.com": [8300], "oms.auone.jp": [2024], "kiosk.sportmaster.ru": [21944], "*.eex.com": [5419], "assessment.plymouth.ac.uk": [12873], "www.surveillancelaw.org": [15721], "erc.europa.eu": [5411], "office.bbva.es": [1744], "o2.co.uk": [16141], "www.iis.se": [7746], "planet.documentfoundation.org": [16295], "www.finance.gov.sk": [15037], "wurk.in": [2024], "mnot.es": [2024], "gruus.net": [2024], "ozon.ru": [12231], "res.mfs.ykimg.com": [22681], "knappschaft.de": [8953], "account.mojang.com": [9789], "changeagain.me": [19558], "www.prosody.im": [13204], "intranet.open.ac.uk": [11947], "common.restaurantfurnitureresource.com": [8157], "go.head.com": [2024], "reestr-svyaz.rkn.gov.ru": [13971], "frgl.us": [2024], "geo.unistream.ru": [17291], "55ch.org": [210], "mobile.udn.com": [17020], "get.uberid.tech": [2024], "www.jobs.cam.ac.uk": [2777], "*.thesatanictemple.com": [16380], "www.wazapp.im": [18110], "s.lair.io": [2024], "hartl.in": [2024], "*.mediapost.com": [10174], "roble.unizar.es": [17441], "dg.specificclick.net": [15314], "www.congress.gov": [3578], "india.gov.in": [8066], "www.minecraftserverlijst.nl": [10453], "www.colocationamerica.com": [3435], "arvutiabi.ut.ee": [17148], "forum.bittiraha.fi": [2044], "surfdo.me": [2024], "pophealthmetrics.biomedcentral.com": [1931], "prvshw.co.uk": [2024], "zerties.org": [18946], "02.mvd.ru": [21055], "ukrm.ag": [2024], "gfd.co": [2024], "tvngl.sm": [2024], "mapy.cz": [9986], "kb.radware.com": [13584], "url.teammay.com": [2024], "altquick.co": [922], "themainemag.co": [2024], "clickdimensions.com": [19611], "www.brandportal.skyscanner.net": [15006], "re.telitsin.ru": [2024], "brgr.it": [2024], "go.vinofeed.co": [2024], "garyw.in": [2024], "www.worldmarkbywyndham.com": [18579], "teendriversource.org": [16123], "bluecatnetworks.com": [2140], "www.starship.xyz": [15468], "59.rkn.gov.ru": [13971], "www.grad.ua": [20300], "www.netlock.hu": [11236], "*.emailsrvr.com": [5185], "www.hkedcity.net": [7057], "mspecies.oxfordjournals.org": [12222], "mvto.ws": [2024], "benefits.redbridge.gov.uk": [13742], "pindrop.com": [21408], "otsuka-shokai.co.jp": [12167], "l.deze.net": [2024], "tvpop.news": [2024], "ssl-cert-shop.com": [14239], "enshinong.jd.com": [8434], "beauty.yahoo.co.jp": [18730], "hardbase.fm": [20342], "it24tjanster.idg.se": [7709], "avc.qcloud.com": [13346], "mstrb.us": [2024], "skyboxed.in": [2024], "*.aer.gov.au": [1415], "www.thcservers.com": [22138], "xuzhou.jd.com": [8434], "cora.ucc.ie": [17006], "analytics.similargroup.com": [14874], "go.gohres.de": [2024], "cdn8.sure-assist.com": [15709], "igw.link": [2024], "www.metal-detector-town.com": [10330], "www.abuledu.org": [19044], "herdprotect.com": [7323], "r24617953.sync.app.asana.com": [1265], "sdb.science.ust.hk": [22412], "numru.sh": [2024], "pistolsfir.in": [2024], "zfh.me": [2024], "youraccount.salford.gov.uk": [21721], "blog.agava.ru": [765], "*.inductionsolutions.com": [8079], "autodiscover.mtsbank.ru": [10720], "www.zr.ru": [22725], "innovwthrdev.uwm.edu": [17379], "www.getsharex.com": [6587], "blog.360totalsecurity.com": [145], "pivotaltracker.com": [12767], "zucks.co.jp": [22728], "project-slhc.web.cern.ch": [2588], "kback.us": [2024], "techin.asia": [2024], "infocenter.stanford.edu": [15448], "anywhere.consumer.org.hk": [3599], "alxd.re": [2024], "www.natmonitor.com": [11081], "www.n-tv.de": [21080], "giftshop.cancerresearchuk.org": [19501], "it.jobindex.dk": [8611], "fp3a.browsersafetymark.io": [2393], "ansible.com": [1093], "www.linux-libre.fsfla.org": [5593], "referendum.holyrood.com": [20393], "hpiagd.com": [2024], "barikat.gr": [6897], "sa1.roadtrippers.com": [21659], "software-security.sans.org": [14128], "religions.unian.ua": [22369], "medici-manager.com": [10203], "stats.eon-uk.com": [4855], "www.meetinleeds.co.uk": [10223], "hmnact.in": [2024], "l.nchp.mn": [2024], "assets-on.spiceworksstatic.com": [15339], "partner.yahoo.co.jp": [18730], "natl.as": [2024], "www.compiz-themes.org": [3525], "ju.taobao.com": [16015], "bvc.so": [2024], "l.xida.de": [2024], "alo.ph": [2024], "akrwd.com": [2024], "ldd.rs": [2024], "caa.co.uk": [3205], "wpycb.info": [2024], "gympp.xyz": [2024], "holly.im": [2024], "*.cashboardapp.com": [15624], "www.uua.org": [17294], "feeds.tv2.dk": [15946], "mypack.acs.ncsu.edu": [11531], "localmedia.org": [9552], "sertifikatai.lt": [14659], "prototype.boston.com": [2252], "eigo.co": [2024], "cat-test.eduroam.org": [5089], "bityes.com": [1978], "e.jd.com": [8436], "s.sk-inc.jp": [2024], "test.freesound.org": [6162], "static.cloudmagic.com": [3289], "volgistics.com": [17916], "ulassessment.gmu.edu": [6529], "coll.coach": [2024], "riglogix.com": [1948], "willrz.me": [2024], "kph.la": [2024], "developer.swisscom.ch": [15761], "www.harlandclarke.com": [7199], "adelphi.de": [635], "ogvidi.us": [2024], "roc-noc.com": [13984], "dkc1.digikey.com": [4457], "cardiab.biomedcentral.com": [1931], "ramhost.us": [13455], "a-dnews.co": [2024], "fredandpickles.co.uk": [6092], "1pipfix.com": [63], "boleti.us": [2024], "mail.motoslave.net": [21027], "joblist.ala.org": [356], "abacus.com": [458], "schijndel.nl": [11172], "e-estonia.com": [4832], "ala13.co": [2024], "www.clubnix.fr": [3317], "w.9ly.in": [2024], "beta.welt.de": [18290], "i.onride.de": [21259], "pitnb.com": [2024], "www.fcw.com": [5550], "tec.kaeitec.com": [2024], "link.wtkr.com": [2024], "sql4.endora.cz": [5237], "ianonym.com": [7677], "sukhoylog.startsmile.ru": [21980], "irishtimes.com": [16271], "www.esb.ie": [4944], "ww3.play-asia.com": [12828], "ssl.chroot-me.in": [3129], "www22.verizon.com": [17715], "doom3.beget.com": [19347], "community.ubuntu.com": [17183], "portal.videohub.tv": [17774], "projectatomic.io": [21510], "panel.cloudatcost.com": [3281], "m.fark.com": [5653], "mailing.channel4.com": [3008, 3009], "lafab.tv": [2024], "www.dalemacartney.com": [4121], "www.1anh.com": [73], "chrgtr.com": [2024], "cdn-api.ooyala.com": [11936], "go.bengals.com": [2024], "lists.pfsense.org": [12637], "samri.dk": [2024], "fleaba.gs": [2024], "fnws.fr": [2024], "gdcg.co": [2024], "api.axelname.ru": [1498], "webmail01.register.com": [13793], "planete.abuledu.org": [19044], "www.jaoa.org": [20624], "payments.ebay.co.uk": [4866], "robohash-stage.tokenly.com": [22229], "www.allianz.com": [19151], "www.getasgard.com": [6570], "licitacion.unizar.es": [17441], "jkr.gl": [2024], "opm.gov": [11690], "discussions.nessus.org": [11204], "resources.basekit.com": [19323], "waeckerlin.org": [18037], "www.neptun.bme.hu": [1556], "woodgreen.org.uk": [18507], "www.minfin.nl": [11172], "proxy1.switchadhub.com": [15764], "kuki.js.test.octopuspop.com": [11754], "sa.usembassy.gov": [22406], "camcors.cam.ac.uk": [17332], "drbk.ws": [2024], "shows.kingdomofloathing.com": [1331], "mare-system.de": [9722], "www.btwholesale.com": [1601], "www.foundingfathers.info": [6058], "m.ulozenka.cz": [17212], "ad5.netshelter.net": [11247], "api.t411.li": [15847], "yeroshka.europaplus.ru": [20034], "upend.me": [2024], "www.datared.dk": [4204], "business.unicefusa.org": [17070], "bandito.me": [2024], "www.fasterbadger.com": [5673], "biotechnologyforbiofuels.biomedcentral.com": [1931], "www.yunbi.com": [18840], "plentyofjobs.us": [2024], "ph-ilo.com": [2024], "cme.wustl.edu": [18089], "exgf.teenbff.com": [13087], "m-ic.in": [2024], "mla-bs.co": [2024], "static.fsf.org": [5590], "shop.overclockers.at": [12196], "go.mdscomp.net": [2024], "alaraby.co.uk": [19132], "details.jd.com": [8436], "curiouscat.me": [3924], "c-sky.org": [2024], "chn.wf": [2024], "astro.uchicago.edu": [17334], "shared.ilovefreegle.org": [7890], "ekol.me": [2024], "www.bargains4business.com.au": [1696], "zutphen.nl": [11172], "www.hands.com": [7178], "*.patientslikeme.com": [12489], "a48.in": [2024], "moollaza.duckduckgo.com": [4785], "shop.baden-wuerttemberg.de": [19302], "vladivostok.auto.ru": [19276], "c3.reifman.org": [13806], "skynet.ie": [16283], "go.pyarb.com": [2024], "*.theory.org": [16417], "reg.tmall.com": [22222], "newsact.net": [2024], "*.spectator.org": [15315], "forum.bits.media": [2036], "my.dealzod.com": [2024], "us.gizmodo.com": [6677], "piratepad.ca": [12739], "wikileaksparty.org.au": [18384], "imgfrg.co": [2024], "myvisaaccount.com": [17643], "cheapandspeedytrafficschool.com": [19565], "zalando.pl": [18877], "vip.asus.com": [417], "www.mos.org": [10522], "kurgan.beeline.ru": [1778], "*.kobobooks.fr": [8962], "sacredcrystalsingingbowls.net": [14281], "ahdhckr.co": [2024], "www.vmd.defra.gov.uk": [4298], "www.gsi.de": [6365], "m.highways.gov.uk": [20376], "nintendo.de": [11458], "h-mn.co": [2024], "techhub.osu.edu": [11797], "maps.cheshire.gov.uk": [3068], "rpos.link": [2024], "acuna.pe": [2024], "tpd.sk": [16695], "leap.se": [9081], "*.tuts4you.com": [16927], "web-registry.com": [18141], "nostarch.com": [11483], "www.ifightsurveillance.org": [7886], "ad-stub-vgtrk.cdnvideo.ru": [19536], "bsan.co": [2024], "forums.fanboy.co.nz": [5640], "mobile.srad.jp": [21956], "www.jlos.go.ug": [17198], "c.t4ft.de": [5853], "1.zasaratov.com": [2024], "dlvrit.com": [19855], "technobase.fm": [22111], "a.mcindoe.info": [2024], "link.kinglau.co": [2024], "tel3.co": [2024], "www.binbank.ru": [1922], "www.moveon.org": [10670], "www.globalnetwork.pl": [6708], "deviceids-medt-id2.wdr.de": [18113], "trbx.me": [2024], "deste.pt": [2024], "nbskle.pl": [2024], "www.theeventdiva.com": [16265], "tripodo.de": [16823], "www.internetbrands.com": [8279], "bangkok.usembassy.gov": [22406], "fox.tv": [2024], "www.concourse.ci": [19664], "*.foolcdn.com": [10654], "packet.net": [12345], "tvt.ag": [2024], "vwww.play-asia.com": [12828], "davide.photo": [2024], "users.dal.net": [3994], "ispserver.com": [20588], "file.glinso.net": [2024], "mdk.anadolu.edu.tr": [1029], "list.jd.com": [8435], "lccsecure.lancashire.gov.uk": [20777], "snkrs.dk": [2024], "kotex.com": [9005], "on.ora.tv": [2024], "godzilla.websitealive.com": [18242], "autodiscover.audit.wales": [19273], "fs10.formsite.com": [20139], "wnm.al": [2024], "emis.sr": [2024], "i1.zst.com.br": [19015], "towerhamlets.greenparty.org.uk": [6908], "r.chevia.com": [2024], "a5.websitealive.com": [18242], "www.xparkmedia.com": [18674], "docracy.com": [4609], "*.c.yimg.jp": [18778], "spoor-api.ft.com": [5810], "www.three.ne.jp": [15879], "www.vidarholen.net": [17766], "anskaffelser.no": [19205], "epay.uio.no": [17414], "*.a4uexpo.com": [270], "shop.flixbus.com": [5911], "reviews.eastbay.com": [5007], "www.billund.dk": [1914], "lizardtech.com": [2940], "renshou.jd.com": [8434], "jira.actis.ru": [19058], "www.lomolenobl.ru": [20872], "badma.ch": [2024], "octv.me": [2024], "*.cybertip.ca": [3970], "edfa3.ly": [2024], "*.linuxaudio.org": [9443], "hdfury.com": [7036], "mfi.re": [9751], "*.admatrix.jp": [585], "www.actionautowreckers.com": [544], "fadra.me": [2024], "dbh.li": [2024], "muscdn.us": [2024], "easylist-downloads.adblockplus.org": [616], "gulesider.no": [6999], "labmed.oxfordjournals.org": [12222], "www.lille.indymedia.org": [8090], "m.wallstreetcn.com": [18057], "demo.virtkick.com": [17830], "*.coe.int": [3701], "snpy.tv": [2024], "tdnvl.me": [2024], "www.eztv.wf": [20063], "account.hidester.com": [20372], "comtest.kairo.at": [8782], "secure.bankofamerica.com": [1669], "platem.ag": [2024], "shirts.ec": [2024], "ivfba.by": [2024], "ccq.ec": [2024], "deples.government-nnov.ru": [20295], "caynb38yx3i1vs7oujl1z92075zmeow0lxo9jldo.ipleak.net": [20571], "myweddings.ca": [2024], "murmansk.europaplus.ru": [20034], "www.thelocal.es": [22166], "info.anz.com": [374], "sudo.ubuntu-tr.net": [17182], "themuse.jezebel.com": [8578], "chatserver.comm100.com": [3473], "www.poistenie.financnahitparada.sk": [5812], "2cb.li": [2024], "vhq.me": [2024], "onamae-server.com": [11858], "hnporadna.hnonline.sk": [7445], "sverdlovsk.sledcom.ru": [21858], "jeeptopsdirect.com": [8558], "cdn.reporo.net": [21629], "tedxa.ms": [2024], "upc.es": [12940], "prototypefund.de": [21518], "www.freethoughtblogs.com": [6164], "z.jdeere12.com": [2024], "www.euobserver.com": [4974], "files.pp-international.net": [21475], "acs.play-asia.com": [12828], "lourdas.name": [9632], "nathnac.org": [11125], "b.rad.msn.com": [9810], "https.kavkaz-uzel.ru": [20694], "b43.cdnvideo.ru": [19536], "usmo.org": [2024], "truckt.re": [2024], "secure.meinauto.autoscout24.de": [1458], "shop.why-opencomputing.com": [22584], "airbnb.co.ve": [793], "stock.walmart.com": [18059], "t.eml.office.co.uk": [11779], "fribid.se": [6188], "bdd.yt": [2024], "gfts.co": [2024], "www.vedomosti.ru": [22433], "truecommerce.com": [22296], "aastatus.net": [456], "arxiv.org": [1180], "secure.techrepublic.com": [16081], "web-t.9gag.com": [252], "city.yandex.com.tr": [18740], "artnt.cm": [2024], "www.real-debrid.com": [13681], "sysaid.com": [15812], "trtsgtx.com": [2024], "acronis.com": [538], "forum.clara.io": [3211], "intuitpayments.com": [8299], "www.wanikani.com": [18069], "hootsuite.com": [7497], "magic.fr": [9872], "thp.io": [16463], "seniorl.st": [2024], "piter.tv": [21423], "redpump.me": [2024], "uhg.hr": [2024], "ns.x5.ru": [18590], "news.bbcimg.co.uk": [19333], "www.mdm.ru": [10143], "www.asustor.com": [19265], "fpaly.com": [2024], "r.gamers411.net": [2024], "affiliate-program.amazon.co.uk": [19170], "sfsite.com": [14170], "s28.pixxxels.org": [21427], "yeisk.tpprf.ru": [22260], "rigzone.com": [13944], "freewheel.tv": [6111], "mpik.permkrai.ru": [21390], "s.sociopal.com": [2024], "7ny.tv": [2024], "crftd.md": [2024], "go.husk.co": [2024], "enroute.boum.org": [2261], "seliga.ai": [2024], "u.creodelic.com": [2024], "www.spaceindustrynews.com": [15279], "blogs.rsdn.org": [21685], "www.holtstrom.com": [7469], "home.wistia.com": [18467], "ameli.us": [2024], "loveeyes.us": [2024], "blackm.ac": [2024], "*.wyndhamvrap.com": [18579], "internationalpayments.co.uk": [8265], "s.joey.ninja": [2024], "topcodr.co": [2024], "mirag.us": [2024], "davidsontutoring.com": [4217, 4218], "ameliaandersdotter.eu": [972], "masterspaswi.com": [10064], "static.alipayobjects.com": [864], "r24617434.sync.app.asana.com": [1265], "bigbrotherawards.de": [1880], "www.cdkeys.com": [2926], "onlime.dengisend.ru": [4344], "singularityhub.com": [14916], "desinter.es": [2024], "*.avinc.com": [1473], "www.yaqeeninstitute.org": [18752], "swzaccess.unicef.org": [17069], "timeshighereducation.com": [16539], "community.riverbed.com": [13964], "fam.ag": [2024], "cdn.gosquared.com": [6766], "kotlas.europaplus.ru": [20034], "cox.ciqueto.com": [2024], "cottageselection.co.uk": [18579], "unite.un.org": [17057], "atg.mediamarkt.de": [20949], "s.nowlan.me": [2024], "lfwy.co": [2024], "populartv.96.lt": [2024], "owl.cm": [2024], "r24820224.sync.app.asana.com": [1265], "www.linuxcounter.net": [9406], "secure.htw-berlin.de": [7103], "play.itunes.apple.com": [1151], "minfinans.khabkrai.ru": [20709], "pt.support.tomtom.com": [16615], "events.bucknell.edu": [2406], "maemo.org": [9862], "msnbc.com": [9811], "www.trueachievements.com": [16844], "go.zmph.it": [2024], "*.thegazette.co.uk": [16356], "shc.is": [2024], "devstructure.com": [4405], "m0ve.co": [2024], "angarsk.biglion.ru": [19375], "renew.norton.com": [11545], "rocketnet.jp": [13995], "www.privacytools.io": [13139], "cdn2.onlinelaw.wustl.edu": [18089], "magas-realty.rambler.ru": [13600], "shop.wwf.ch": [18028], "wisoreisen.zdf.de": [22709], "localwiki.org": [9551], "teamotg.us": [2024], "ryan.to": [2024], "sandeej.us": [2024], "pic.fritz.im": [2024], "limango.de": [9370], "breitbandmessung.de": [2319], "l.d.efinima.com": [2024], "nulled.cc": [21199], "i4.rgstatic.net": [13481], "svn.gd": [2024], "cdn01.boxcdn.net": [2271], "nstyl.es": [2024], "www.tienda.ulpgc.es": [17213], "ligm.in": [2024], "www.rallydev.com": [13598], "pptl.me": [2024], "sydneyaquarium.com.au": [15773], "assets.ssusa.org": [21965], "szybki.link": [2024], "littler.com": [9485], "unm.starfishsolutions.com": [21977], "ntnu.edu": [11003], "www.justice.sk": [15037], "tutorials.getclouder.com": [6554], "ctplt.us": [2024], "trent.im": [2024], "www.medicine.nature.com": [11140], "www.imwukong.com": [20515], "hct.me": [2024], "iyouport.com": [7883], "l.caspervox.com": [2024], "chat.koumbit.net": [9009], "www.hup.hu": [7108], "alum.mit.edu": [9763], "istar-chla.usc.edu": [17366], "eat.sr": [2024], "hydrogen.energy.gov": [5243], "astr0.co": [2024], "shibboleth2.uchicago.edu": [17334], "image.adjug.com": [580], "*.penninecare.nhs.uk": [10953], "dujia.jd.com": [8436], "jnssn.us": [2024], "lnrd.us": [2024], "pad.tools.ietf.org": [7725], "jmug.gs": [2024], "dev.syncplicity.com": [15795], "paris-web.fr": [21345], "smiley.37signals.com": [155], "dev.pokd.it": [2024], "syndetics.com": [15798], "uv.uio.no": [17414], "webmail.wedos.net": [17993], "consult.kent.gov.uk": [8867], "g04.s.alicdn.com": [853], "pote.gq": [2024], "gigaserver.cz": [6636], "portal.roadworks.org": [21660], "www.bostonglobemedia.com": [2254], "ticket.iop.org": [8196], "librarians.aps.org": [976], "www.tradeleaks.com": [16709], "*.kpn.com": [8761], "kolchugino.startsmile.ru": [21980], "*.c-and-a.com": [2510], "mis.east.spu.ac.th": [14224], "2-url.mobi": [2024], "*.e-prawnik.pl": [4853], "hnr.gd": [2024], "gettyimages.de": [6604], "careers.autotrader.co.uk": [19280], "armfp.com": [2024], "blogburst.com": [4325], "www.quadrant.org.au": [13372], "lv.boardgamearena.com": [2182], "650h.rs": [2024], "gettyimages.dk": [6604], "tango.me": [16009], "www.tpb.review": [22259], "nisym.pl": [2024], "sbc.empireblue.com": [19988], "shot.ht": [2024], "kor.pw": [2024], "ech.link": [2024], "communicatoremail.com": [3502], "joindiaspora.com": [4435], "www.rspamd.com": [14060], "ian.so": [2024], "www.braintreepaymentsolutions.com": [2292], "service-beta.mcafee.com": [10129], "drupal.soundonsound.com": [15229], "hpfy.co": [2024], "*.blog.hipmunk.com": [7419], "www.landalskilife.fr": [18578], "www.canon-europe.com": [2822], "partners.smartname.com": [11061], "geografia.uniovi.es": [17282], "*.vistech.net": [17868], "burg.cx": [2024], "ppar.oxfordjournals.org": [12222], "webcitz.com": [18154], "bradamaxi.com": [2024], "db-ip.com": [4000], "tdc.tdconline.se": [15865], "pay.kyivstar.ua": [9067], "piratebay.usbypass.top": [22259], "patchwork.osmocom.org": [12159], "*.standup2cancer.ca": [15442], "*.roloil.com": [14016], "m.smocca.jp": [2024], "r24625308.sync.app.asana.com": [1265], "video32.0xdb.org": [10], "collect-eu-west-1.tealiumiq.com": [16060], "media.newjobs.com": [11358], "cogh.land": [2024], "secure.research.illinois.edu": [17346], "flwctrl.com": [2024], "s.ntv.io": [11597], "campaigner.com": [2792], "emily-owens-md.friday.ru": [20175], "m.indablabla.nl": [2024], "bsdcan.org": [1570], "www.flixster.com": [5913], "wksm.at": [2024], "d3.islamhouse.com": [8368], "social.agima.ru": [19112], "zszs.us": [2024], "lmada.me": [2024], "files.sans.org": [14128], "central.bitdefender.com": [2012], "swkr.co": [2024], "www.thehut.com": [16298], "m.udn.com.tw": [17020], "srvrsi.de": [2024], "stories.doublerobotics.com": [4705], "kyrgyz.bishkek.usembassy.gov": [22406], "git53.rostrud.ru": [21677], "tornadoweb.org": [16645], "nrievents.org": [2024], "forums.d2jsp.org": [3989], "moldova.usembassy.gov": [22406], "www.security-portal.cz": [14582], "www.ricoh.sg": [13935], "cyphdbyhiddenbhs.onion": [3976], "conference2006.kde.org": [8735], "www.golosinfo.org": [20286], "cineslate.net": [2024], "*.kobobooks.com": [8962], "n.sbs.co.kr": [2024], "on.fehlkauf.net": [2024], "imaging.hdfcbank.com": [7249], "dilgnt.gr": [2024], "bl.pcma.org": [2024], "www.cryptocoding.net": [19728], "www.duck.co": [4785], "www.valuehost.ru": [17631], "www.websecweekly.org": [18238], "help.tvsupport.net": [16935], "*.wizard.ca": [18476], "www.handtekening.nl": [7180], "mysql.de": [10825], "beetailer.com": [1781], "rafaelsoar.es": [2024], "nbcnews.com": [10916], "yakala.co": [18731], "kronix.xeneris.net": [18649], "rimg06.rl0.ru": [13972], "velez.link": [2024], "sysdata.cl.cam.ac.uk": [17332], "forum.girlsoutwest.com": [6648, 20247], "*.hometheaterreview.com": [7484], "signaling.simplewebrtc.com": [21832], "www.maillift.com": [9894], "www.policia.es": [12909], "i4.services.social.microsoft.com": [10396], "blog.demisto.com": [4335], "trackingtool.ncwit.org": [10931], "r4lly.me": [2024], "pay4bugs.com": [12499], "r.kryo.pro": [2024], "status.io": [21983], "isyot.com": [2024], "unnec.to": [2024], "sso.mycdsglobal.com": [2578], "m.habrahabr.ru": [7119], "v2.screencast-o-matic.com": [14471], "ny.cx": [2024], "mediara.in": [2024], "moevideo.net": [10565], "choices-or.truste.com": [15922], "pearlsilk.link": [2024], "cloudsso.cisco.com": [3165], "lists.sf.net": [14167], "tools-tracking.adform.com": [639], "www.set.io": [14691], "licensing.scarborough.gov.uk": [21740], "dxtorrent.com": [4810], "community.mobify.com": [10532], "www.era.int": [4940], "gogobot.com": [6791], "gchem.us": [2024], "www.mvd.ru": [21055], "baremet.al": [2024], "go.mmt.digital": [2024], "asset3.djicdn.com": [4029], "www.quantummansite.com": [13392], "blgr.us.to": [2024], "cfout.mvd.ru": [21055], "3millions7.cfjlab.fr": [2604], "red.sr": [2024], "images.sf.net": [14167], "e56.taobao.com": [16015], "i.rryl.me": [2024], "jwge.org": [2024], "*.theeca.com": [5282], "nelincs-consult.objective.co.uk": [21225], "mototradeup.com": [10657], "fuerzapopular.pe": [6222], "americanexpress.com": [979], "infa.media": [2024], "theb.me": [2024], "vzd.co": [2024], "www.kraxel.org": [9019], "www.tilburguniversity.edu": [16521], "cnst.ws": [2024], "whistle.fish": [2024], "www.deciduouspress.com.au": [4270], "daily.co.uk": [4107], "samara.citilink.ru": [19594], "cylance.rocks": [2024], "help.newegg.com": [11356], "job.alipay.com": [864], "congstar.de": [3580], "devsmart.jd.com": [8436], "wijchen.nl": [11172], "www.nvidia.eu": [11021], "static.symplicity.com": [15786], "ulakbim.gov.tr": [17054], "reelvidz.com": [13769], "neurotalk.org": [21117], "www.gmoserver.jp": [6327], "bitquick.me": [1968], "dongdong.jd.com": [8436], "geraldinas.com": [2024], "nl.godaddy.com": [6755], "stagingtvpass.streamamg.com": [22006], "nebah.at": [2024], "thch.pl": [2024], "share.etarget.sk": [5362], "thinkpad.jd.com": [8436], "contrast.ly": [2024], "petrogen.com": [12630], "shona.li": [2024], "cosmicdis.co": [2024], "hi.philpy.com": [2024], "istrat.gy": [2024], "tprp.eu": [2024], "hydrus-prod.stanford.edu": [15448], "wyyx.hao123.com": [20339], "coz.ms": [2024], "bugzilla.netfilter.org": [11265], "active-srv02.de": [549], "static.katsomo.fi": [20692], "services.handbrake.fr": [7173], "www.bugzilla.sheppyware.net": [14761], "cultureatkin.gs": [2024], "www.brreisen.de": [1566], "gloucestershire.gov.uk": [6730], "depaul.worldcat.org": [18536], "i.blip.tv": [2098], "marylhur.st": [2024], "jimc.me": [2024], "s29.postimg.io": [13024], "lists.osgeo.org": [11707], "livingforsport.skysports.com": [14996], "www.formsanity.com": [6020], "almnt.co": [2024], "rd.bizrate.com": [2054], "tenants.southampton.gov.uk": [15259], "secure.wildlifesydney.com.au": [18400], "ksp.khabarovskadm.ru": [20708], "static.avast.com": [1469], "bitinstant.com": [1960], "www.botbot.me": [2257], "nola.upyun.com": [17492], "a.qlou.be": [2024], "ut08.xhcdn.com": [18605], "volunteermatters.com": [17925], "falconjet.com": [4159], "parksouth.co": [2024], "gt5-jres2015.univ-montp3.fr": [17313], "support.riverbed.com": [13964], "bitaddress.org": [1980], "data.de.coremetrics.com": [3665], "stavklass.ru": [21984], "lagunita.stanford.edu": [15448], "pesa.us": [2024], "i8.3conline.com": [169], "help.localizejs.com": [20864], "dev.asana.com": [1265], "zenmate.in": [18917], "cf8.100r.org": [12], "nramemberservices.org": [21183], "gbln.co": [2024], "piwik.companieshouse.gov.uk": [3509], "amoena.us": [1023], "computing-images.web.cern.ch": [2588], "www.thirddoormedia.com": [16440], "cdn.bunadformenn.info": [2437], "sbcc.worldcat.org": [18536], "4.mrwrk.nl": [2024], "epi.ph": [2024], "tvnutt.com": [15954], "files.goenergetix.com": [5240], "s.jonasn.nu": [2024], "develop.sms-online.co": [21875], "blogs.psychcentral.com": [21531], "saforms.stanford.edu": [15448], "s2c.aol.com": [380], "cdn.geekzone.co.nz": [6491], "ibiy.net": [2024], "url.vorlif.org": [2024], "smpth.co": [2024], "www.uchastings.edu": [17014], "www.paymentwall.com": [12511], "jaar.oxfordjournals.org": [12222], "raychem.hk": [2024], "www.imageshack.us": [7983], "www.solidalert.com": [15188], "iamjenn.net": [2024], "x.wmay.org": [2024], "bugs.gnupg.org": [6744], "es.getsatisfaction.com": [6601], "reseller.b2b.gigabyte.com": [6628], "sam.sso.bluewin.ch": [2173], "simcenter.osu.edu": [11797], "s81.cnzz.com": [3328], "flr.pt": [2024], "ug.usembassy.gov": [22406], "urology.weillcornell.org": [22557], "pay.ionitcom.ru": [20562], "images-static.trustpilot.com": [16869], "omd.info": [2024], "*.noc.ac.uk": [17364], "www.showcase.ca": [14802], "app3.qdaily.com": [21554], "m.uexternado.co": [2024], "upload.csmonitor.com": [19737], "ftp.eu.openbsd.org": [11955], "www.norwegian.com": [11548], "www.staffordshireandstokeontrent.nhs.uk": [10953], "prec.is": [2024], "help.dreamhost.com": [4743], "www.speedppc.com": [15324], "tendo.cm": [2024], "kck.st": [2024], "osiris.statushub.io": [15504], "0click.cf": [2024], "scholarship.mcdonalds.ru": [20941], "cbe.engineering.osu.edu": [11797], "www.gogotraining.com": [6789], "gsu.edu": [6367, 6368], "a0.webproxy.nic.tel": [16169], "drawingbynumbers.org": [4740], "d.adrolays.de": [679], "staging.muttscomics.com": [10775], "click-west.acuityplatform.com": [559], "toptip.ch": [3647], "bolla.me": [2024], "small.gg": [2024], "hertz247.fr": [7344], "static.telus.com": [16174], "sec-i0.web.de": [18146], "budget.permkrai.ru": [21390], "owenservices.com": [12209], "titanshare.to": [16577], "develop.roblox.com": [13980], "dropboxforum.com": [4764], "www.homebuzz.co.uk": [7485], "i2.zst.com.br": [19015], "mshp.it": [2024], "npor1.nl": [2024], "znpt.co": [2024], "ct.tms.pl": [22224], "giving.cornell.edu": [3676], "edwardtufte.com": [5092], "press.internet.org": [8276], "live.ambercutie.com": [19180], "www.cjs.leeds.ac.uk": [17403], "*.itex.com": [8403], "bandisoft.com": [1664], "acpica.org": [320], "*.trulia-cdn.com": [16848], "extensions.libreoffice.org": [9327], "www.securitykiss.com": [14584], "metalab.at": [10331], "publicaccess.canterbury.gov.uk": [2824], "bmccellbiol.biomedcentral.com": [1931], "l.u4ic.co": [2024], "irkutsk.psbank.ru": [13231], "pmhawk.com": [2024], "sha.ne": [2024], "algorithmwatch.org": [852], "weteach.me": [2024], "pod.geraspora.de": [6537], "www.clickerheroes.com": [3259], "gofz.co": [2024], "www.powerlineman.com": [13048], "q.andersons.com": [2024], "icnaweb.com": [2024], "eventsjobsuk.g4s.com": [20195], "s17.pixxxels.org": [21427], "www.sciencedirect.com": [21750], "l.navin.com.np": [2024], "s.sieuthivp.com": [2024], "*.ehowcdn.com": [19926], "frs.monotypeimaging.com": [10600], "tbc.axonify.com": [1502], "www.databricks.com": [4189], "www.skyscanner.it": [15006], "order.shareislam.com": [14727], "careers.americanexpress.com": [979], "casey.mobi": [2024], "qiwi.me": [21559], "one2buy.com": [11866], "cdn.madgex.com": [20904], "charlie.bz": [3019], "n-somerset.gov.uk": [10898], "protct.me": [2024], "mi-vsp.kh.hu": [8739], "har.lt": [2024], "jhps.oxfordjournals.org": [12222], "qblx.co": [2024], "www.btcjam.com": [1583], "ynao.tpprf.ru": [22260], "scrninv.com": [2024], "parasitesandvectors.biomedcentral.com": [1931], "konachan.com": [8983], "rr.mu": [2024], "learning.hku.hk": [20387], "structure.ncbi.nlm.nih.gov": [11090], "go.xodc.us": [2024], "special.auto.ru": [19276], "mawhiba.sa": [2024], "www.sv.no": [14264], "democracy.spelthorne.gov.uk": [21934], "kwine.us": [2024], "cwtr.org": [2024], "ftb.ca.gov": [2759], "*.pszaf.hu": [12332], "consult.wealden.gov.uk": [22541], "*.pocketcasts.com": [12878], "m3.hitravel.xyz": [2024], "dotbo.co": [2024], "api.continuousphp.com": [19675], "skycache.pureftpd.org": [13282], "partner-myefc.efinancialcareers.com": [4903], "blinddate.meetme.com": [10224], "banki.ru": [1672], "count5.pconline.com.cn": [12263], "blog.udemy.com": [17194], "06.rkn.gov.ru": [13971], "nppc.us": [2024], "www.bilddb.gta.arch.ethz.ch": [4967], "on.wfaa.com": [2024], "go.sqish.it": [2024], "it.desy.de": [4386], "weitao.taobao.com": [16015], "video9.0xdb.org": [10], "uxt.ucsd.edu": [17012], "easywallet.org": [5028], "www-robotics.jpl.nasa.gov": [10909], "recruiting.nra.org": [21176], "mikeash.com": [10420], "domainfest.com": [12201], "contacts-df.live.com": [9495], "www.hertz.com.jo": [7352], "locdeva.hertz.com": [7371], "widget.shopstyle.fr": [14780], "chita.rt.ru": [13529], "quran.com": [13433], "volume.itunes.apple.com": [1151], "mjkk.co": [2024], "18md5l34wt3w8vvpdfqz9adoim0jm39eahgdnl8x.ipleak.net": [20571], "www.levny-hosting.cz": [9289], "openload.co": [12070], "wcmcentral.weill.cornell.edu": [3676], "khiri.co": [2024], "www.studivz.net": [15607], "support.youmail.com": [18797], "smartrecruiters.com": [15056], "ibuc.co": [2024], "*.sitemasonmail.com": [14948], "shop.sp.nl": [14216], "lokus.no": [9577], "sitizens.com": [14953], "tyva.beeline.ru": [1778], "twitchinstalls.com": [16962], "gpi.bz": [2024], "www.nesl.edu": [10943], "bahnshop.de": [1640], "wtim.es": [2024], "freejeremy.net": [6117], "emaileri.net": [5184], "umil.iii.com": [20491], "www.bisnow.com": [1950], "jmall.360buy.com": [147], "apps-cms.jp": [19218], "swertr.es": [2024], "fflix.co": [2024], "snarglr.net": [2024], "support.unet.by": [22367], "london-squat-project.squat.net": [21955], "www.shrinktheweb.com": [14807], "lm.imhd.sk": [8004], "tracking-stage.websitealive.com": [18242], "www.guifi.net": [6992], "my.blood.co.uk": [2129], "*.johnsonking.com": [8627], "mydrive.tomtom.com": [16615], "www.just-eat.com": [20671], "irc.gitter.im": [6666], "sitegeist.sunlightfoundation.com": [15667], "labb.nl": [2024], "ccr.so": [2024], "swpr.co": [2024], "s.imgrap.com": [8000], "www.medstop.se": [10216], "sso-cas.rmit.edu.au": [13496], "www.onemancan.org": [11887], "daddys.link": [2024], "www.blamestella.com": [2076], "muj.cesky-hosting.cz": [19553], "mdrn.md": [2024], "assetstore.unity3d.com": [17310], "blog.cloudfoundry.org": [3297], "as-sec.casalemedia.com": [2880], "*.corp.google.com": [6818], "support.dreambox.com": [19895], "amzin.pw": [2024], "www.envoymediagroup.com": [5300], "11spotfree.be": [2024], "enro.dict.cc": [4442], "infozona.co": [2024], "expomobilehomes.com": [5616], "offers4u.com": [2024], "82.mvd.ru": [21055], "go.aurora.co": [2024], "bernina-lugano.ch": [1827], "euge.in": [2024], "eas.elephorm.com": [19980], "my.mbnews.co.za": [2024], "*.ibsrv.net": [8279], "www.geant.net": [6291], "agav.co": [2024], "api.airmap.io": [790], "crn.tw": [2024], "lns.gt": [2024], "www.mattermap.nl": [20936], "investors.redhat.com": [13735], "4rum.eu": [2024], "www.domofond.ru": [19876], "advq.yandex.com": [18742], "derochier.us": [2024], "www.klick2contact.com": [20731], "esad.ulaval.ca": [17319], "dfwsem.co": [2024], "mfilms.us": [2024], "hkuc.co": [2024], "www.fuelcdn.com": [6221], "www.privacynotprism.org.uk": [13136], "s3.freepress.net": [6123], "gdata.at": [6272], "clutchprep.co": [2024], "secure.gog.com": [6343], "lgct.nl": [2024], "imap.spnet.ru": [21939], "arsca.linneanet.fi": [9400], "www.euronuclear.org": [5415], "ysz.ae": [2024], "*.akamai.steamstatic.com": [15518], "cincodias.elpais.com": [5126], "in.godaddy.com": [6755], "munchies.vice.com": [17754], "www.macular.org": [9851], "www.opendesktop.org": [21266], "scrambl3.com": [14465], "y-me.us": [2024], "t.ligatus.com": [9356], "ericw.us": [5330], "eazyprint.uk": [2024], "helgi.me": [2024], "www.blockitpocket.com": [2111], "images.amazon.com": [963], "pregamestraining.tokyo2020.jp": [22230], "acxiom-online.com": [562], "commercialappeal.com": [4981], "dfolk.es": [2024], "images-cdn.9gag.com": [252], "teamcity.tocco.ch": [16600], "voxi.st": [2024], "a.bitlz.co": [2024], "shop.genius.com": [20226], "hideme.ru": [7395], "dt.developer.here.com": [7325], "kiss.tdc.no": [15863], "nehnutelnosti.sk": [11177], "prg.computerandvideogames.com": [6259], "lps.leadpages.net": [9209], "www.orangechickenlove.com": [12385], "vladikavkaz.rt.ru": [13529], "ambitiousaboutautism.org.uk": [19182], "www.lenr-forum.com": [20808], "in.ckbe.at": [2024], "shareislam.com": [14727], "holarse-linuxgaming.de": [7454], "image4.putlocker.is": [21543], "*.smartone.de": [21862], "www.r-project.org": [13447], "uni.web.id": [2024], "slpnt.co": [2024], "emory.edu": [5204], "phpartners.org": [12283], "www.engineering.wustl.edu": [18089], "shop.sky.com": [14989], "suwebmasters.stanford.edu": [15448], "foundry.electrum.org": [5145], "m.tt.imhd.sk": [8004], "mediapart.fr": [10194], "kjoo.io": [2024], "archives-ouvertes.fr": [1197], "jmp.imami.net": [2024], "abonnes.lequipe.fr": [20811], "itx4.smartadserver.com": [15049], "www.uen.org": [17537], "wupd.wustl.edu": [18089], "www.newsblur.com": [11366], "baidu.com": [1641], "l.cswp.co": [2024], "blog.flightradar24.com": [20119], "tigger.uic.edu": [17321], "blckbx.co": [2024], "efilms.nyc": [2024], "bm.adentifi.com": [636], "medstop.se": [10216], "thsea.org": [2024], "dayz.com": [4225], "hitr8.me": [2024], "link.o79.lv": [2024], "www.ualinux.com": [22340], "mattermark.com": [20937], "*.tfag.de": [5953], "resources.lloydsbank.com": [9537], "web-app.usc.edu": [17366], "www.vs.ch": [22061], "geekz.444.hu": [183], "blackbx.in": [2024], "forum-en.msi.com": [9806], "a.asset.soup.io": [15235], "a.tipspring.com": [2024], "www.frieslandcampina.nl": [2796], "ma.twimg.com": [16949], "av-comparatives.org": [430], "cur.im": [2024], "servage.*": [14660], "samples.ffmpeg.org": [5556], "caniuse.com": [19503], "www.elitekeyboards.com": [5159], "submit.pandora.com": [12389], "mintrans.government-nnov.ru": [20295], "www.forsvarsforbundet.se": [6030], "www.cyphertite.com": [3978], "www.fb.com": [5687], "goapetri.be": [2024], "ilm4.us": [2024], "hippoc.ms": [2024], "mpg.de": [9794], "hwoodpost.com": [2024], "dicai.re": [2024], "platform.bitly.com": [2022], "gocast.me": [2024], "polldaddy.com": [12926], "assets2.vice.com": [17754], "shop.southbankcentre.co.uk": [15260], "ind.pn": [2024], "sl.kvtm.vn": [2024], "monitor.ccccloud.com": [2554], "oglethor.pe": [2024], "www.wholeearth.com": [18358], "www.asianfanfics.com": [1282], "video.eastday.com": [5010], "p.atrac613.com": [2024], "joec.co": [2024], "download.mobile01.com": [10533], "jasshar.es": [2024], "someserver.de": [15199], "m.qdaily.com": [21554], "ntmx.de": [11594], "theferf.com": [2024], "www.rootless.org": [21670], "www.straply.com": [15573], "go.ns1.com": [2024], "ximm.io": [2024], "rascal999.co.uk": [21586], "biz.alibaba.com": [857], "museum.stanford.edu": [15448], "mreb.es": [2024], "repo1.maven.org": [10099], "www.cdnetworks.com": [2574], "www.liftdna.com": [9353], "expert.bger.ch": [19368], "err.ee": [5358], "assets.audioboom.com": [19272], "*.cansecwest.com": [2803], "www.pipni.cz": [12287], "www.interference.cc": [8245], "www.jewelosco.com": [8576], "ba.yandex.kz": [18743], "si.imhd.sk": [8004], "content.dyson.co.uk": [4831], "petscage.cdnvideo.ru": [19536], "zlien.us": [2024], "surveydaddy.com": [15725], "swe.osu.edu": [11797], "ningde.jd.com": [8434], "kenexa.jobs": [8863], "www.orangegeek.com": [12124], "fr.flightradar24.com": [20119], "bilddb.gta.arch.ethz.ch": [4967], "d8.sinaimg.cn": [14910], "x.getivi.com": [2024], "limelight.assets.stitcher.com": [15544], "brsu.co": [2024], "www3.student.liu.se": [9097], "ad.mail.ru": [9891], "hrvth.com": [2024], "www.dakko.us": [4120], "inti.ms": [2024], "go.cf.ac.uk": [2024], "info.puppetlabs.com": [13276], "*.eetnordic.com": [4898], "muk.xyz": [2024], "sha2i3.com": [2024], "game.yandex.com.tr": [18740], "nkl.fi": [11055], "link.belblog.eu": [2024], "gi-japon.unizar.es": [17441], "u.dgabc.com.br": [2024], "www.get-digital.it": [6547], "www.webgility.com": [18213], "getharvest.com": [6562], "tahoepo.st": [2024], "tarif.nso.ru": [21192], "011.vuejs.org": [17963], "ventoso.org": [17698], "nathairrul.es": [2024], "www.123bay.space": [22174], "www1.fir.im": [20106], "nl.norton.com": [11545], "www.huzs.net": [7640], "lawbc.co": [2024], "xtrav.me": [2024], "content9.flixster.com": [5913], "p.hitravel.xyz": [2024], "qevsi9y283g710dxfx6us5eaxlbj7sv68b6rn9pp.ipleak.net": [20571], "atgreen.co": [2024], "switchoff.nus.org.uk": [21205], "menf.it": [2024], "shop.oracle.com": [12116], "whelp.us": [2024], "ya.russia.tv": [21698], "jeffnabers.com": [8561], "mirg.engineering.osu.edu": [11797], "brando.nyc": [2024], "tremix.us": [2024], "www.zscaler.com": [19012], "tv.bt.com": [1578], "axisbank.com": [1501], "security.debian.org": [4263], "pizzahut.co.uk": [12786], "gutenberg.org": [7012], "www.allmychanges.com": [880], "im2.smartadserver.com": [15049], "wwwmag.fr": [2024], "mbeta.slashdot.org": [15012], "mjw.ms": [2024], "accountcenter.mediatemple.net": [10177], "r24617868.sync.app.asana.com": [1265], "*.khoc.co": [8741], "ncric.org": [10927], "help.esellerate.net": [5346], "wet.pt": [2024], "gsn.government-nnov.ru": [20295], "web.lib.aalto.fi": [447], "nottinghamshirealert.co.uk": [21166], "yakzytees.com": [2024], "cas.thm.de": [15876], "ws.amazon.fr": [19176], "asset-a.soupcdn.com": [15236], "www.totalpolitics.com": [22253], "gesd.me": [2024], "moneygr.am": [2024], "lrt.io": [2024], "b.falcon31.net": [2024], "www.ocdem.ox.ac.uk": [17359], "svn.php.net": [12280], "iamkj.us": [2024], "my.wondershare.com": [22607], "amsk.in": [2024], "usurpa.squat.net": [21955], "sdl.town": [2024], "scordit.com": [2310], "aws-cache.vevo.com": [17566], "mobilemacs.de": [10322], "www.dragndropbuilder.com": [4731], "www.copilotgps.com": [19686], "*.marionstar.com": [10009], "team-share.net": [16061], "inahat.co": [2024], "photomaniafx.me": [2024], "hllywd.co": [2024], "www.bwurst.org": [1608], "vtv.fi": [17625], "u.jonatan.cl": [2024], "*.wwte10.com": [18031], "www.osutravel.osu.edu": [11797], "logs.sumtel.ru": [22031], "p16.qhimg.com": [13347], "mjo60.com": [2024], "www.jackandjillraffle.org": [8491], "www.atech.io": [426], "foodsporn.com": [2024], "mail.sohu.com": [15171], "webnms.com": [18174], "pgm.buzz": [2024], "baichuan.taobao.com": [16015], "l.thehawkins.us": [2024], "npsus.xyz": [2024], "*.secunia.com": [14539], "filebox.tv": [5774], "homesear.ch": [2024], "c3.rgstatic.net": [13481], "s.shop-land.ir": [2024], "arhivach.org": [19230], "ihg.link": [2024], "mosta.sh": [2024], "www.tmobile.com": [15899], "zentralbahn.ch": [22715], "cimbbank.com.my": [2618], "*.mango.com": [9959], "imgwl.yeggi.com": [18760], "events.nibusinessinfo.co.uk": [21135], "mud-tierschutz-redaktion.ble.de": [19406], "nxg.li": [2024], "popgoestheweek.com": [12960], "mwave.com.au": [10781], "s.sintax.me": [2024], "tru.vc": [2024], "izk.co": [2024], "forum.whmcs.com": [17997], "www.womensaid.ie": [18498], "spongecell.com": [21940], "href.li": [7583], "amstud.io": [2024], "robb.news": [2024], "jobs.lincolnshire.gov.uk": [9380], "empuss.com": [2024], "www.powerdns.net": [13037], "1.seth.org": [2024], "jacobsstudent.ucsd.edu": [17012], "ridecompare.com": [21650], "*.moneyadviceservice.org.uk": [10586], "core.vntsm.com": [22481], "mltz.ml": [2024], "cdn.dynamicyield.com": [4822], "recruiter.jobfinder.dk": [8610], "www.alertonline.nl": [839], "www.berniesanders.com": [1826], "olioboard.com": [11820], "odd.dog": [2024], "draw.sx": [2024], "click.kin2.net": [2024], "www.startech.com": [15459], "ownthatsh.it": [2024], "nanjing.jhu.edu": [16370], "parra.club": [2024], "visg.co": [2024], "support.softnik.com": [21890], "slckr.co": [2024], "sydsvenskan.se": [15776], "misco.co.uk": [10489], "j1visa.state.gov": [17146], "*.ada.edu.au": [1412], "gettyimages.ie": [6604], "promotionalads.yahoo.co.jp": [18730], "nso.wustl.edu": [18089], "shortn.cf": [2024], "mail.activision.com": [556], "bertrams.com": [1850], "mentalhealth.asn.au": [10283], "www.seedboxes.cc": [14612], "yooco.de": [18784], "andyr.co": [2024], "depositfiles.com": [4359], "elhomb.re": [2024], "www.customer.swish.mycelium.com": [21063], "shopping.reevoo.com": [13772], "octo.ly": [2024], "vtnews.vt.edu": [17825], "mail.unionpay.com": [17281], "downloads.mysql.com": [10825], "djangote.ca": [2024], "twibright.com": [16947], "dripthat.co": [2024], "nzmacc.as": [2024], "community.sky.de": [14990], "www.fhserve.com": [5753], "report.nih.gov": [10966], "www.fybse.se": [5603], "subscriptiongenius.com": [15629], "ehcb.westminster.gov.uk": [18315], "www.gyft.com": [7020], "www.gawker-labs.com": [6453], "secure2.mastermindpro.com": [10067], "roi.ru": [13504], "www.ccs.com": [2565], "philosophersguild.com": [12654], "module.youku.com": [18804], "pic.news.mail.ru": [9891], "onega.startsmile.ru": [21980], "www.yousuu.com": [22694], "isger.link": [2024], "tevnphwg.fnal.gov": [5741], "my.ixwebhosting.com": [7880], "www.milwaukeemakerspace.org": [10438], "rxh.cc": [2024], "business.kaspersky.com": [8820], "idp-pilot.hs-karlsruhe.de": [7587], "www.tg.ethz.ch": [4967], "fantastik.cf": [2024], "lite.apan.org": [388], "beta.nativo.net": [11130], "clrkwlmt.co.uk": [2024], "fw.cdn.technolutions.net": [16108], "druckhaustour.merkur.de": [10306], "noelia.fi": [11494], "www.all-about-security.de": [890], "fw2.org": [2024], "jira.counterpath.com": [19697], "www.instapanel.com": [8189], "postimg.org": [13024], "questionnaires.ecn.ulaval.ca": [17319], "mpa.io": [2024], "webmail.cs.hku.hk": [20387], "www.agente.vodafone.pt": [17903], "pclsr.com": [2024], "my.goldsborowebdevelopment.com": [6802], "hadithanswers.com": [7148], "*.timesrecordnews.com": [16540], "davini.co": [2024], "www.domainpunch.com": [19871], "wldmtn.co": [2024], "conser.ro": [2024], "kndred.co": [2024], "swiftype.com": [15753], "scoo.ps": [2024], "g.alicdn.com": [853], "servery.cz": [21789], "www.english.ox.ac.uk": [17359], "auto.tsn.ua": [22301], "indybay.org": [8087], "s1.reutersmedia.net": [13893], "www.evidence.nhs.uk": [10953], "www.partnernaurovni.sk": [12453], "www.lede-project.org": [20798], "www.bj.admin.ch": [22061], "chscp.co": [2024], "cdn.rooof.com": [14019], "zarkzork.com": [18897], "info.profitbricks.com": [13176], "*.videogateway.tv": [3508], "www.heidelberg.de": [7282], "*.tradedirect.ch": [20683], "secure.dvdfab.cn": [4082], "skullsecurity.org": [14987], "nnu.worldcat.org": [18536], "c3tag.com": [2516], "oatv.me": [2024], "static2.glassdoor.com": [6683], "www.arcadeflex.com": [5216], "www.ihc.ru": [7740], "*.bodyworkmovementtherapies.com": [8654], "search.ch": [14504], "paw.princeton.edu": [13113], "services.amazon.co.jp": [19169], "blog.echoplex.us": [5038], "acolyt.es": [2024], "www.ica.se": [7684], "hopest.re": [2024], "cihan.com.tr": [19590], "rohu.co": [2024], "folssc.org": [2024], "www.tuftsgiving.org": [16891], "*.storesecured.com": [15560], "www.fcpablog.com": [5549], "medieval.history.ox.ac.uk": [12220], "www.havering.gov.uk": [7236], "dashboard.stripe.com": [15594], "psng.me": [2024], "ringsid.ec": [2024], "vt.edu": [17825], "learn1.open.ac.uk": [11947], "storystudio.oculusvr.com": [11760], "support.gogetssl.com": [6762], "www.dragonsreach.it": [4737], "*.tsl.state.tx.us": [16226], "ucollege.wustl.edu": [18089], "www.iki.fi": [7964], "www.aaenhunze.nl": [11172], "www.krebsdaten.de": [9023], "intel.co.uk": [8207], "jbiolres.biomedcentral.com": [1931], "planetb.lu": [2024], "blaster.blastingnews.com": [2078], "gcai.co": [2024], "kogod.biz": [2024], "portable.play-asia.com": [12828], "www.lihs.cuhk.edu.hk": [2704], "dlvr.it": [19855], "g.tm.tl": [2024], "veille.it": [2024], "akers.co": [2024], "yllwpg.es": [2024], "www.insurance.wustl.edu": [18089], "www.tronixcomputers.com": [16833], "youtube.com.om": [18800], "www.dr.dk": [4072], "images.excaliburfilms.com": [5472], "rstorage.filemobile.com": [5786], "cnes.fr": [2647], "uclefs.uk": [2024], "go.maestro.io": [2024], "evermeet.cx": [5439], "sam.im": [2024], "vivaldi.net": [17885], "amsterdam.nl": [11172], "firsat.link": [2024], "www.googleartproject.com": [6817], "www.thetvdb.com": [16424], "deadspin.com": [4240], "photos.nsrc.org": [10998], "roundcube.mayfirst.org": [10113], "bpd.to": [2024], "s93.cnzz.com": [3328], "hr.carnegiescience.edu": [2867], "www.mangolanguages.com": [9960], "dryn.cc": [2024], "ramm.st": [2024], "drerin.co": [2024], "www.pay.va.gov": [17100], "nndad.co": [2024], "forum.kernelnewbies.org": [20704], "cs.lpi.org": [9108], "shr.gd": [2024], "www.chaturbate.com": [3040], "nbkr.in": [2024], "www.connecttosupport.org": [19670], "www.courthousenews.com": [3718], "brainpickings.org": [2286], "www.flux.utah.edu": [17374], "listart.mit.edu": [9763], "thepiratebay.xn--fiqs8s": [22174], "tre.mr": [2024], "peerlibrary.org": [12549], "s20.postimg.org": [13024], "hailo.io": [2024], "www.sci-hub.cc": [14436], "monitor.wpm.neustar.biz": [11320], "gctru.st": [2024], "opensource.srad.jp": [21956], "tomy.to": [2024], "go.mfeiz.com": [2024], "m.bingads.microsoft.com": [10396], "mobile.de": [21001], "lesa.in": [2024], "opsy.st": [2024], "airshipventures.com": [796], "ontology.co": [11927], "www.excelsior-usa.com": [5473], "*.tor2web.fi": [16638], "lbbc.co": [2024], "bekb.ch": [20683], "www.pebblepad.co.uk": [12542], "go.webdg.net": [2024], "on.vbdance.com": [2024], "www.galaxus.ch": [6385], "file.answcdn.com": [1095], "ecospip.org": [2024], "londonmet.worldcat.org": [18536], "www.werstreamt.es": [18296], "sterlitamak.europaplus.ru": [20034], "rtlyd.co": [2024], "www.genbank.ru": [6506], "euro.play-asia.com": [12828], "www.3suisses.de": [176], "san1.st": [2024], "inx.press": [2024], "*.ndi.org": [10935], "cscsci.com": [2024], "ubounce.wpengine.netdna-cdn.com": [17239], "phin.ws": [2024], "ftl.secure-decoration.com": [21767], "hosting7.mclaut.com": [20942], "sso.datapipe.com": [4203], "www.heifer.org": [7283], "d.eazycheat.com": [2024], "soe.link": [2024], "*.nsm.stat.no": [11078], "event.wifiwx.com": [18378], "ru.rateyourmusic.com": [13633], "www.f5networks.co.uk": [5536], "css-cdn.7digital.com": [232], "trov.es": [2024], "fr.canon.be": [2822], "pavlovskiy-posad.beeline.ru": [1778], "url.haehnel.at": [2024], "adcaccess.adur.gov.uk": [19096], "northstaffs.greenparty.org.uk": [6908], "little.my": [9487], "guildmc.com": [6994], "syscan.org": [15813], "www.eater.com": [5029], "www.centbrowser.com": [19540], "blog.woobox.com": [18506], "emptywheel.net": [5213], "sina.is": [14906], "www.flattr.net": [5888], "source.tizen.org": [16580], "idp.hs-esslingen.de": [7449], "contactus.aol.com": [380], "jds.tv": [2024], "feeblemind.tuxfamily.org": [22319], "digifense.com": [4465], "pspmedia.ign.com": [7734], "estore.perle.com": [12607], "96ty.co.uk": [2024], "cdn.moneycorp.com": [21013], "tydenik.echo24.cz": [19948], "img4.refresher.sk": [13781], "www.hhh.umn.edu": [17356], "www.slidedeck.com": [15026], "vk.com.cm": [2024], "wkimo.bi": [2024], "moffice.escap.un.org": [17057], "intern.arch.ethz.ch": [4967], "zzu.uy.to": [2024], "constellations.boum.org": [2261], "www.nikhef.nl": [11441], "dsi.link": [2024], "securepay.zuji.com.hk": [19021], "ne1.wpc.edgecastcdn.net": [5070], "peoplebank.com": [21384], "www.videoplaza.tv": [17785], "onlinewellnessassociation.com": [11916], "support.agima.ru": [19112], "tricoa.ch": [2024], "photonconsulting.com": [12678], "post.ruguoapp.com": [21692], "*.stumbleupon.com": [15612], "true.cr": [2024], "sellercentral.amazon.es": [19175], "bephoto.id": [2024], "www.cksource.com": [2634], "www.goke.me": [6795], "www.premiumize.me": [13074], "sd2.citilink.ru": [19594], "ev.kde.org": [8735], "estoestele.tv": [2024], "thepiratebay.am": [22175], "www.dcboee.org": [4004], "c1ay.me": [2024], "csiac.org": [2684], "www.sferra.com": [14707], "i.andydelso.com": [2024], "fldzn.com": [2024], "masterh1.adriver.ru": [588], "etrn.ws": [2024], "segedi.net": [2024], "emi.wpengine.com": [5523], "normenscreening.bmi.bund.de": [2443], "www.hosting.com": [20408], "www.reethus-adeline.de": [13771], "edtr.ie": [2024], "rootsa.net": [2024], "10.majordomo.ru": [9914], "work.threema.ch": [16473], "blog.perfectaudience.com": [12591], "www.hamppu.net": [7171], "tdg.bz": [2024], "nnov.europaplus.ru": [20034], "why-opencomputing.com": [22584], "sks-keyservers.net": [14187], "forum.bitcoin.pl": [1993], "avatars-cdn.9gag.com": [252], "finance.opendata.ch": [21270], "et.libreoffice.org": [9327], "jaylen.co": [2024], "ww8.thomascook.com": [16450], "www.eveger.de": [5423], "enterbrain.co.jp": [20003], "b-ho.me": [2024], "colotti.me": [2024], "jerseyvillelibrary.worldcat.org": [18536], "cbxp.rs": [2024], "cache.iwowcase.com": [7872], "glitchwitch.co": [2024], "hostingcon.com": [7536], "philadelphiabar.org": [12651], "agn.mx": [2024], "picture4.cyberport.de": [3966], "www.juicycanvas.com": [8683], "www.zandvoort.nl": [11172], "youtube.ch": [18800], "www.array.is": [1238], "go.mitef.org": [2024], "youtube.cl": [18800], "www.taskforceonshalegas.uk": [16032], "youtube.co": [18800], "wcom.in": [2024], "www.katescomment.com": [8831], "www.agima.ru": [19112], "komi.rt.ru": [13529], "02.files.namecheap.com": [11060], "qkin.tk": [2024], "omaze.com": [11828], "igg.ms": [2024], "jesus.cam.ac.uk": [17332], "use.cloudtrax.com": [3295], "s5.gismeteo.lv": [20250], "tdc.be": [2024], "*.domain.com": [4641], "mgtn.us": [2024], "new.bulkorder.ftc.gov": [5710], "optmlz.es": [2024], "heartlandclient.ecsi.net": [4873], "api.cloudsponge.com": [3293], "www.epa.ie": [4930], "jus.to": [2024], "m.prace.cz": [13054], "twin.sci-hub.cc": [14436], "analysis.ligatus.com": [9356], "proxy4.switchadhub.com": [15764], "ask.bucknell.edu": [2406], "www.fafsa.ed.gov": [4881], "jlog.in": [2024], "sport.idnes.cz": [20483], "on.okck.net": [2024], "survey.risingstack.com": [21654], "be.pcpartpicker.com": [12529], "cdn.filefactory.com": [5775], "static.sockshare.com": [15148], "services.libis.be": [9318], "*.cas.org": [3063], "vrnt.co": [2024], "wanzai.jd.com": [8434], "whatsmychaincert.com": [18330], "www.informatik.uni-hamburg.de": [17025], "pica81.ub.uni-mainz.de": [17410], "s5.rr.itc.cn": [8401], "ripe67.ripe.net": [13953], "fbcstum.in": [2024], "silvertunnel.org": [14866], "quid.fyi": [2024], "h.msn.com": [9810], "mptpr.astrobl.ru": [19264], "webmail.tiggerswelt.net": [16517], "in.eveoh.nl": [2024], "www.pushover.net": [13298], "go.lbpho.to": [2024], "tomsk.tpprf.ru": [22260], "www.purecambogia.com": [13286], "www.statuscake.com": [15502], "i6.go2yd.com": [20274], "parking.hastings.gov.uk": [7225], "o4.aztravel.xyz": [2024], "transmission.xmission.com": [18621], "www.sitejam.com": [21839], "discovermerchants.com": [4539], "cem.danskebank.dk": [4138], "register.irknet.ru": [20581], "wbx.ac": [2024], "izh.biglion.ru": [19375], "shopthemint.net": [2024], "www.michaelwlucas.com": [10371], "hbca.co": [2024], "download.fosshub.com": [20141], "autodiscover.gettyimages.com": [6604], "vln.ro": [2024], "mx.norton.com": [11545], "inthefield.co": [2024], "richm.co": [2024], "*.noblogs.org": [21148], "som.georgetown.edu": [6531], "artbattle.rocketbank.ru": [13994], "gettyimages.co.uk": [6604], "forum.plop.at": [21440], "*.m01.eu": [9705], "www.gamingonlinux.com": [6428], "w1z.us": [2024], "landing.vendini.com": [22438], "stafflearning.bl.uk": [2358], "globalhivmeinfo.org": [6706], "uid0.me": [2024], "wiki.creativecommons.org": [3774], "uelfteswagen.de": [2024], "embed.tumblr.com": [16898], "mcrump.me": [2024], "i.corefilms.uk": [2024], "2016.appseccalifornia.org": [1164], "sleep.biomedcentral.com": [1931], "ess.stanford.edu": [15448], "cme-online.wustl.edu": [18089], "periscope.io": [12604], "transcend.org": [16737], "ourfam.ly": [2024], "community.tealiumiq.com": [16060], "*.invodo.com": [8325], "www.clearos.com": [19608], "bungalows.nl": [19472], "housingwire.com": [7571], "newsledge.com": [21128], "www.helpingrhinos.org": [20366], "clink.news": [2024], "www.truelife.com": [16842], "static.adzerk.net": [726], "mediabank.utb.ru": [17538], "secureselfservice.northwarks.gov.uk": [11538], "useit.tk": [2024], "www.endgame.com": [19994], "zelo.tv": [2024], "www.virtualnewscenter.com": [17838], "l.anterrabi.com": [2024], "jtmq.xyz": [2024], "eco4.me": [2024], "ezorigin.csmonitor.com": [19737], "pskov.sledcom.ru": [21858], "www.per.cuhk.edu.hk": [2704], "pidpic.stanford.edu": [15448], "go.wrry.me": [2024], "*.massrelevance.com": [10057], "stevekroeger.de": [2024], "jlou.is": [2024], "ikoula.com": [7966], "x6y.net": [2024], "www.threatpost.com": [16468], "lbrundb.cern.ch": [2588], "whq.oxfordjournals.org": [12222], "static.sascdn.com": [15049], "www16.georgetown.edu": [6531], "www.trusted-introducer.org": [16857], "www.bitnz.com": [1966], "nl.boardgamearena.com": [2182], "adelle.ch": [2024], "www.eddieizzard.com": [5066], "macgamestore.com": [9842], "liu.se": [9097], "adelle.co": [2024], "www.linksalpha.com": [9395], "u.org": [2024], "www.kateheddleston.com": [8830], "vjs.zencdn.net": [18914], "margal.us": [2024], "backoffice.tocco.ch": [16600], "thd.co": [2024], "shopdev.mheducation.com": [20975], "z4.hitravel.xyz": [2024], "pro.activ.my": [2024], "m2.ifengimg.com": [20487], "licensingprograms.symantec.com": [15780], "epste.in": [2024], "propublica.net": [13159], "rs.gwallet.com": [13582], "mibew.org": [10368], "n64.ru": [2024], "idiom.as": [2024], "api.elpais.com": [5126], "huangshan.jd.com": [8434], "www.specialized.net": [15311], "eezy.ly": [2024], "newmatilda.com": [11329], "privatbanka.sk": [13144], "aard.at": [2024], "hetem.la": [2024], "kurz.bpb.de": [19437], "ru.thinksteroids.com": [9750], "mspartnerlp.mspartner.microsoft.com": [10396], "cash.ch": [19522], "www.lef.org": [9240], "img.alipay.com": [864], "tv.isport.blesk.cz": [2088], "www.pastebin.ca": [12477], "shuien.co": [2024], "forums.plausible.coop": [12827], "webirc.skynet.ie": [16283], "wlksply.co": [2024], "portal.wku.edu": [22602], "a.kiddsock.com": [2024], "www.suma-ev.de": [15655], "www.sofort.com": [15155], "troz.co": [2024], "harland.net": [7199], "*.foresters.com": [6008], "www.virginmobile.com.au": [17821], "m5videos.com": [2024], "sales-images3.therealreal.com": [22180], "www.delish.com": [4312], "static.shorte.st": [14796], "ew-online.de": [4982], "beacon.classrooms.walmart.com": [18059], "download.univention.de": [17315], "cdnapisec.kaltura.com": [8790], "pay.vbrr.ru": [17668], "commandhub.democrats.org": [4338], "chooseprivacyweek.org": [19585], "yo.url2.la": [2024], "scamwatch.gov.au": [14145], "dynatrace.com": [4819], "turnonsocial.com": [16916], "extra.to": [20057], "drweb.com": [4776], "r24618077.sync.app.asana.com": [1265], "yahoo.tw.weibo.com": [18279], "*.carestream.com": [2858], "pguy.in": [2024], "ddb2.play-asia.com": [12828], "go.pjtnt11.com": [2024], "kurgan.tpprf.ru": [22260], "webmail.beget.com": [19347], "help.yandex.ua": [18747], "webpayments.sepa.org.uk": [21783], "ewww.ipleak.net": [20571], "el-tramo.be": [5125], "static2.businessinsider.com": [2471], "wiki.mate-desktop.info": [9727], "3.url.cn": [22399], "www.paxvapor.com": [21362], "msdv.sh": [2024], "uf.u-f.ru": [22336], "my.beeline.ru": [1778], "secureimage.securedataimages.com": [14563], "cardiovascularultrasound.biomedcentral.com": [1931], "checkmyrota.com": [19569], "*.anonym-surfen.de": [8637], "bfstd.io": [2024], "yuri-ism.com": [18842], "www.levonline.com": [9292], "ign.com": [7733], "auth.corvisacloud.com": [3689], "media-cache-ec0.pinterest.com": [12731], "nwh.me": [2024], "parkingtickets.portsmouth.gov.uk": [21467], "gotclu.es": [2024], "alphabankbonusredemptionel.aegeanair.com": [6896], "gis.nso.ru": [21192], "support.inventivedesigners.com": [8309], "weblogawards.org": [18221], "challenge.gov": [2991], "l.fixrd.net": [2024], "www.512pixels.net": [208], "assets.shootingillustrated.com": [21805], "www.onlychange.com": [11918], "ads.chango.ca": [3003], "illiad.lib.cuhk.edu.hk": [2704], "nag.forceline.net": [20134], "m.phys.org": [21403], "s.dianping.com": [19830], "console.lingospot.com": [9389], "svqxerfeho0n1yor.asana.com": [1265], "support.gyazo.com": [7019], "*.gamefactory.jp": [6409], "mpi.onlinesbi.com": [11911], "asmerk.in": [2024], "aran.li": [2024], "r24625740.sync.app.asana.com": [1265], "unux.cf": [2024], "on.maxspeedcdn.com": [10104], "www.cler.ch": [3647], "hugedomains.com": [7605], "wiki.umeahackerspace.se": [17228], "asset-e.soupcdn.com": [15236], "acs.minbank.ru": [10442], "scs.publish.uic.edu": [17321], "dialogue.shareholder.com": [14739], "www.ibens.ens.fr": [4922], "moreinfohere.us": [2024], "x.pax.io": [2024], "dbs.com.cn": [4001], "p.tab.do": [2024], "api.bart.gov": [1708], "framacolibri.org": [6075], "www.podcast.at": [12886], "ninjai.co": [2024], "nyt.com": [11035], "siteblindado.com": [14943], "www.namebright.com": [11057], "neos.typo3.org": [15959], "*.dmri-library.com": [4590], "indiegala.com": [8077], "pensions.cambridgeshire.gov.uk": [19496], "piratebox.top": [21524], "www.internet.org": [8276], "fxt.uc.cn": [17003], "portfolio.debian.net": [4261], "*.haymarketmedia.com": [7241], "lh5.google.com.*": [6821], "shle.pw": [2024], "cobalt.pm": [2024], "asig.info": [2024], "cdn-d-ss.pornhub.com": [12972], "www.nuneatonandbedworth.gov.uk": [21202], "www.slsknet.org": [21861], "codersclan.net": [3376], "offerz.info": [2024], "q.classpass.com": [2024], "srs.synology.com": [15803], "www.hardforum.com": [20343], "tanki.mail.ru": [9891], "dsnmtr.ir": [2024], "investorseu.com": [2024], "mail.ntu.edu.tw": [11010], "bitly.pro": [2024], "doxygen.openinfosecfoundation.org": [12048], "www.irrlab.com": [20583], "dms.wiiings.com": [18381], "vodafonecontactos.vodafone.pt": [17903], "fertecon.agra-net.com": [775], "wthnh.co": [2024], "*.flyasite.com": [5939], "heartland.ecsi.net": [4873], "wprk.co": [2024], "spendbitcoins.com": [15334], "wck2.companieshouse.gov.uk": [3509], "px.rs": [2024], "bmcstructbiol.biomedcentral.com": [1931], "www.ulpgc.es": [17213], "silverrushstyle.com": [14863], "www.people.ysu.edu": [18832], "lp.longtailvideo.com": [9601], "www.arne.schuldt.info": [1232], "hh.ru": [7044], "m.proxfree.com": [13219], "forum.islamacademy.net": [8366], "media.univcomm.cornell.edu": [3676], "images.thecarconnection.com": [7401], "pw-a.co": [2024], "www.counterpartychain.io": [3706], "celiac.org": [2941], "pizza.de": [12783], "collector.opensvc.com": [12008], "no.emarin.no": [2024], "ask.barclaycard.co.uk": [1690], "secure.acpa.ca": [788], "honcode.ch": [7081], "scan.oxfordjournals.org": [12222], "secure.runbox.com": [14093], "jobs.fitbit.com": [5867], "ecn.t1.tiles.virtualearth.net": [17840], "nn.auto.ru": [19276], "ven.nz": [2024], "dev.c-ware.de": [2511], "lgbt.ly": [2024], "journal.paul.querna.org": [13401], "www.cointelgraph.com": [19644], "summertime.fazekas.hu": [5686], "bancopostaclick.poste.it": [13013], "teamgaslight.com": [16065], "ewww.play-asia.com": [12828], "bbu.axonify.com": [1502], "techstdout.boum.org": [2261], "workaround.ch": [22613], "wosign.cn": [18482], "m.my.t-mobile.com": [15837], "pixel.facebook.com": [5609], "anidb7.anidb.net": [1065], "www.tpg.com": [15915], "shw.mx": [2024], "legal.gawker.com": [6454], "www.qibla.com": [13350], "jus.im": [2024], "karens.tips": [2024], "www.lxcenter.org": [9689], "www.hornbach.nl": [7504], "s.sex-photo.eu": [2024], "voigt.land": [2024], "media.mnn.com": [9783], "researcha.cc": [2024], "www.sandofsky.com": [14343], "modelmayhem.com": [10554], "s.idarknight.ca": [2024], "nutrition.gov": [11622], "ybitcoin.com": [18702], "sendvid.com": [14646], "www6.northyorks.gov.uk": [21161], "ijsnu.nl": [2024], "isis.jhu.edu": [16370], "watch.yandex.kz": [18743], "i.mrtr.jp": [2024], "stenerik.me": [2024], "www.myajc.com": [10789], "dron.lat": [2024], "on.thehatch.es": [2024], "fctn.me": [2024], "turris.cz": [16918], "oculusvr.com": [11760], "swapbotembed.tokenly.com": [22229], "beta.biomedcentral.com": [1931], "www.okta.com": [11814], "research.theinquirer.net": [22157], "link.junlem.com": [2024], "www.tailormadeanswers.com": [15978], "*.webmail.sk": [15742], "huanghekou.jd.com": [8434], "1x.com": [67], "mailerlite.com": [9897], "www.codebasehq.com": [3358], "huff.to": [2024], "www.libreofficebox.org": [9328], "s.kgbureau.nl": [2024], "ahpra.gov.au": [1419], "files.gizmag.com": [6676], "online-go.com": [11906], "niallk.com": [2024], "cms.here.com": [7325], "mysql.ut.ee": [17148], "lmine.ws": [2024], "www.liquidmatrix.org": [9459], "2007-2012.nosdeputes.fr": [21162], "jaynen.com": [2024], "www.website.webgo.de": [18161], "novodvinsk.beeline.ru": [1778], "www.propolevskoy.ru": [21516], "uconn.worldcat.org": [18536], "www.events.ubm.com": [17000], "ehawaii.gov": [7237], "www.quup.com": [13440], "press.walthamforest.gov.uk": [18061], "aclj.us": [2024], "workfor.greenpeace.org": [6920], "djf.so": [2024], "www.htwk-leipzig.de": [7596], "pengpod.com": [12567], "dleer.com": [2024], "facultynotes.williams.edu": [18408], "fam-ad.com": [20073], "ltzco.com": [2024], "ricp.co": [2024], "basekit.com": [19323], "www1.iitb.ac.in": [7748], "meizhou.jd.com": [8434], "cdn3.sbnation.com": [14137], "glf.io": [2024], "wiki.projectmeshnet.org": [13185], "2n9.xyz": [2024], "standardebooks.com": [15445], "genius-2.itunes.apple.com": [1151], "babelzilla.org": [1615], "evga.com": [4978], "cabforum.org": [2520], "g2kww.org": [2024], "www4.eere.energy.gov": [5243], "www.metabunk.org": [10328], "www.teendriversource.org": [16123], "lijit.com": [9365], "potedansla.com": [2024], "aegoya.es": [2024], "i2.msdn.microsoft.com": [10396], "a1.ec-images.myspacecdn.com": [10889], "frype.com": [4738], "www.trustifier.com": [16866], "store.buddyauth.com": [2250], "byod-amr.moodys.com": [21020], "3dsecure-korporacje.mbank.pl": [9733], "js.tudouui.com": [16889], "www.amiunique.org": [953], "politi.co": [2024], "ssl.abma.de": [19041], "medias.lequipe.fr": [20811], "puritan.com": [13291], "static3.wareable.com": [22525], "sl.advdat.com": [2024], "webmail.cyberport.hk": [3967], "*.longaccess.com": [9602], "download.untangle.com": [17454], "ingenuity.net.au": [8143], "*.aerlingus.com": [731], "portal.azure.com": [1508], "blueb.us": [2024], "*.blogspot.com.au": [2127], "s.mtt.li": [2024], "*.blogspot.com.ar": [2127], "duurzaambv.nl": [2024], "lahormigonera.squat.net": [21955], "jedec.com": [8442], "yent.be": [2024], "developer.marvel.com": [10047], "api.cloudcontrol.com": [3282], "dashboard.eindhoven.nl": [5114], "www.nordportal.ru": [21153], "www.chbtc.com": [3041], "scan.xamarin.com": [18629], "riksgalden.se": [13946], "a2bi.me": [2024], "byrory.me": [2024], "ndite.ch": [2024], "ir-de.amazon-adsystem.com": [958], "vxl.gr": [2024], "www.world-airport-codes.com": [22617], "static-mdev.gbot.me": [6791], "subscribe.ajc.com": [351], "www.dataxu.com": [4182], "lnk.minkabu.jp": [2024], "tchpd.co": [2024], "www.pulsepoint.com": [13270], "www.mantisbt.org": [20923], "www.scripturaengage.com": [14486], "dribper.com": [19896], "images2.sanalmarket.com.tr": [14338], "www.regnum.ru": [13802], "reserved.co.nz": [2024], "yroo.com": [18831], "ccrec.at": [2024], "www.european-privacy-seal.eu": [5398], "s360.in": [2024], "mjf.cc": [2024], "upotv.upo.es": [17479], "booo.ms": [2024], "www.bircko.com": [1942], "gallup.com": [6387], "fpay.us": [2024], "chelmsfordgov.firmstep.com": [20109], "b.kentbackman.com": [8868], "www.resonant.org": [13867], "tms.press": [2024], "www.entropia.de": [20004], "www.sem.admin.ch": [22061], "jbp.io": [8553], "newsandinsight.thomsonreuters.com": [16456], "poma.jp": [2024], "on.walex.me": [2024], "plotlin.es": [2024], "unbound.net": [17240], "answers.nei.nih.gov": [11090], "anarm.ml": [2024], "bln.kr": [2024], "www.wetransfer.com": [18124], "derwesten.de": [4371], "glx-dock.org": [20270], "epayments.ipswich.gov.uk": [8348], "bfmo.us": [2024], "link.petmart.vn": [2024], "kansk.europaplus.ru": [20034], "bm.ashokg.com": [2024], "estore.drweb.com": [4776], "wodwell.co": [2024], "noconow.co": [2024], "g2li.me": [2024], "*.linuxquestions.org": [9430], "iamkebi.com": [2024], "www.kids.org.uk": [20713], "img0.glassdoor.ca": [20258], "cm85.co": [2024], "go.plexure.net": [2024], "tryn.co": [2024], "skk.mvd.ru": [21055], "blog.babbel.com": [1613], "progress.lighttpd.net": [9362], "vanderbilthealth.com": [17646], "voor.us": [2024], "bchns.com": [2024], "supportprofile.apple.com": [1151], "www.alumniweb.ox.ac.uk": [17359], "m.cygnus.cc.kuleuven.be": [8832], "*.st-andrews.ac.uk": [15417], "www.polleverywhere.com": [12925], "nanyangguan.jd.com": [8434], "www.broadbandbuyer.co.uk": [2368], "zakupyzali.pl": [2024], "www.bgbilling.ru": [19366], "loverpi.com": [9640], "snapdeal.com": [15094], "wms.assoc-amazon.co.uk": [1311], "vast.com": [17663], "www.pluska.sk": [12870], "*.brownpapertickets.com": [2383], "desertory.de": [4373], "ely.sm": [2024], "24paybank.com": [109], "www.com.kairo.at": [8782], "autocustom.co": [2024], "petrovka2.sitesoft.ru": [21841], "petmood.me": [2024], "small.linncdn.com": [9399], "forums.code.org": [3343], "partner.etracker.de": [5378], "customerhub.net": [8139], "grp.vn": [2024], "www.wyzerme.com": [18581], "listbox.com": [9463], "youtube.hr": [18800], "thevi.ps": [2024], "www.timeclockdeals.com": [16534], "direct.rhap.com": [21647], "bugs.cacert.org": [2534], "apexea.oracle.com": [12116], "cityoflondon.gov.uk": [3192], "glsswrks.co": [2024], "forum.cpmstar.com": [2661], "inkfrog.com": [8150], "memb.li": [2024], "wahoowa.net": [2024], "pro-linux.de": [13155], "ufa.rt.ru": [13529], "my.newark.ohio-state.edu": [11798], "www.moniker.com": [8880], "sealswithclubs.eu": [14501], "zeeland.nl": [11172], "www.newsthatmoves.org": [21129], "report.nrls.nhs.uk": [10953], "itrusteauth.nih.gov": [11090], "bitnami.org": [1970], "s7.postimage.org": [13024], "wacom.li": [2024], "snaps.php.net": [12280], "usfsco.uillinois.edu": [17034], "nwww.play-asia.com": [12828], "winesp.ec": [2024], "fanwagon.us": [2024], "qis.hs-karlsruhe.de": [7587], "www.sos-addictions.org": [14214], "blog.wired.com": [18454], "lev.st": [2024], "www.dbs.com.cn": [4001], "www.ecp.hkex.com.hk": [20382], "brin.ca": [2024], "wildbeau.tv": [2024], "www.pureloto.com": [13288], "formassembly.com": [6018], "www.cronius.nl": [3807], "s5.mt-cdn.net": [9812], "is.lacie.com": [9134], "podtrac.com": [21448], "www.worldhealth.net": [18554], "crwd.mx": [2024], "wwwstage.cityoflondon.gov.uk": [3192], "economics.mirea.ru": [20993], "coveredcacertifiedpartners.com": [3728], "www.beautybar.com": [1769], "www.bis.doc.gov": [17138], "33.cbsm.at": [8782], "sogeti.com": [15167], "dmjx.dk": [4588], "humblebundle.com": [7619], "e.lvme.me": [9504], "now.gdhnews.com": [2024], "admin.chainfire.eu": [19556], "cryptodesign.org": [3861], "roche.cr": [2024], "passsource.com": [12460], "www4.skatteverket.se": [14966], "*.verkkomaksut.fi": [17718], "www.vidaysalud.com": [17764], "act.plus": [2024], "jobscout24.de": [8605], "on.sqisl.me": [2024], "digitalriver.com": [4469], "whr.tn": [2024], "www.xcfa.tuxfamily.org": [22319], "www.pgl.co.uk": [21393], "www.sickdaysurfshop.com": [14819], "vdk.st": [2024], "buckid.osu.edu": [11797], "vietnamese.alibaba.com": [857], "artc.in": [2024], "mobile.ipleak.net": [20571], "votekelli.com": [2024], "www.airsoftgi.com": [798], "kink.com": [20719], "queer.dance": [2024], "joejulian.name": [20648], "i.brajo.co.uk": [2024], "fr.rateyourmusic.com": [13633], "www.tv4play.se": [15947], "events.birmingham.gov.uk": [19380], "www.ozi-ru.org": [12229], "jobs.newscientist.com": [11338], "b4.aztravel.xyz": [2024], "vxlabs.com": [22514], "www.ono.es": [11919], "sft.its.cern.ch": [2587], "openwebmail.org": [12060], "lixillearn.axonify.com": [1502], "tuwa.ga": [2024], "hra.cc": [2024], "med.cornell.edu": [3676], "xt-commerce.co.uk": [18686], "mby.link": [2024], "macromedia.com": [9850], "projects.vpsfree.cz": [22506], "tr.verbling.com": [17704], "connect.mailchimp.com": [9893], "common.i12.de": [7661], "cfpcblog.com": [2024], "www.jabber.org.uk": [8486], "gupnp.org": [6334], "thevaultbar.co.uk": [16285], "statushub.io": [15504], "s.cloppar.com": [2024], "master.tocco.ch": [16600], "nwschat.weather.gov": [18130], "webmail.wku.edu": [22602], "www.aviris.fi": [1475], "www.writtenchinese.com": [22623], "ncmp.hscic.gov.uk": [20435], "*.togevi.com": [8413], "music.jd.com": [8436], "l.carved.email": [2024], "www.lifehacker.com": [9346], "cdn.krxd.net": [9028], "vivaldi.rsl.ru": [21686], "webmail.informatik.uni-hamburg.de": [17025], "jb.ht": [2024], "go.sbhs.ph": [2024], "1in3campaign.org": [11890], "g1.nz": [2024], "itservices.stanford.edu": [15448], "www.mclaut.com": [20942], "cp.win-sv.jp": [18417], "nz.godaddy.com": [6755], "youlun.jd.com": [8436], "cty.li": [2024], "pbu.bezeqint.net": [1862], "manisec.com": [9946], "www.efinancialcareers.com": [4903], "sparkfun.com": [15291], "web.archive.org": [1195], "snipcart.com": [15101], "whistleout.co.uk": [18344], "grad.uic.edu": [17027], "3ww.play-asia.com": [12828], "gamingonlinux.com": [6428], "litlab.stanford.edu": [15448], "harlandforms.com": [7199], "apptest.mobile.de": [21001], "mstrp.nl": [2024], "book.majordomo.ru": [9914], "gosuslugi.ru": [6835], "w.jibsam.com": [2024], "l.hughson.dk": [2024], "escrowlive.net": [5344], "arbornetworks.com": [1185], "track.hempel.cx": [2024], "www.douban.fm": [19888], "www.internet.org.nz": [8275], "fbgo.uk": [2024], "runcrs.co": [2024], "c.bing.com": [1926], "c.char.gd": [2024], "wukong.laiwang.com": [20771], "piratebay.ukbypass.xyz": [22259], "pronosticuri-tenis.com": [7736], "intranet.creatis.insa-lyon.fr": [7777], "dose.ly": [2024], "nu.worldcat.org": [18536], "developer.onedrive.com": [11869], "r24625295.sync.app.asana.com": [1265], "apps2.bdimg.com": [1747], "ulgov.ru": [22356], "www.kbc.com": [8725], "s3.reutersmedia.net": [13893], "list.youku.com": [18804], "caseking.de": [2886], "m.airbnb.fr": [793], "*.blogspot.qa": [2127], "fitchratings.ru": [20113], "blog.cir.ca": [3156], "s27.postimage.org": [13024], "www.zend.com": [18920], "vantage.rubiconproject.com": [14066], "changyan.itc.cn": [8401], "monde-diplomatique.de": [9201], "penglai.jd.com": [8434], "onion.com": [2024], "internal.pti.iu.edu": [8069], "apm.com": [391], "m.airbnb.fi": [793], "arbor.net": [1185], "altai-krai.sledcom.ru": [21858], "pro.stubhub.com": [15602], "lifedai.ly": [2024], "hugendubel.info": [20445], "languageperfect.com": [9160], "fundusze-inwestycyjne.money.pl": [10584, 10585], "g.grax.com": [2024], "sics.se": [14179], "umanitoba.ca": [17348], "zbird.jd.com": [8436], "l.nist.kr": [2024], "www.shotgunclub.com": [14799], "www.bediff.com.br": [1751], "unk.co": [2024], "webliberty.ru": [22547], "hmv.co.jp": [7078], "talis.co": [2024], "account.longtailvideo.com": [9601], "efukt.com": [4906], "webmail.forthnet.gr": [6031], "ch.res.nimg.jp": [11450], "wallstreetcn.com": [18057], "preferences.em.bankofamerica.com": [1669], "beelz.net": [2024], "storage.shareislam.com": [14727], "api.jquery.com": [8463], "rc.ortho.hku.hk": [20387], "rrs.la": [2024], "it.avm.de": [1478], "www.tipp10.com": [16569], "31dayson.info": [2024], "*.pinme.ru": [12727], "bphil.me": [2024], "www.notesappstore.com": [10115], "blog.digital.cabinetoffice.gov.uk": [2716], "www.peerstudio.org": [12558], "vx.ag": [2024], "www.heroesofnewerth.com": [14118], "on.welt.de": [2024], "dl0.sv.gnu.org": [6337], "o-w.me": [2024], "www.sciencealert.com": [21749], "backstage.forgerock.com": [20136], "www.abanet.org": [982], "help.yandex.kz": [18743], "www.layerbnc.org": [9194], "cnsrvtv.cc": [2024], "infowar.com": [8107], "b.fan.si": [2024], "l.duydev.me": [2024], "m10.baidu.com": [1641], "atld.link": [2024], "eadaily.com": [19929], "leisureonline.chesterfield.gov.uk": [19576], "siia.ga": [2024], "lh6.google.co.*": [6821], "s2.shinystat.com": [21802], "www.dexmedia.com": [4422], "www.youtube.rs": [18800], "buy.symantec.com": [15780], "nih.gov": [11090], "alcalc.oxfordjournals.org": [12222], "justfordomino.com": [10114], "224.img.pp.sohu.com.cn": [15170], "onslice.co": [2024], "www.woodgreen.org.uk": [18507], "imgt2.bdstatic.com": [19339], "bssrush.co": [2024], "support.firmstep.com": [20109], "cdn.css-tricks.com": [2692], "nickelled.com": [21137], "*.api.bing.com": [1926], "account.asus.com": [417], "onlineadmission.ignou.ac.in": [7956], "media.umbel.com": [17227], "chpo.st": [2024], "www.jolexa.net": [8635], "www.tauceti.org.au": [16040], "www.codecentric.de": [3360], "thomsprn.nl": [2024], "ctus.it": [2024], "improper.com": [8023], "hyptxt.org": [2024], "badil.info": [19303], "14ujd3b8v7t1zyrwndgv33ikjgoqwtrf4w7nxssv.ipleak.net": [20571], "webmail.umftgm.ro": [22364], "blog.jessfraz.com": [8569], "www.dynamics.com": [4823], "www.bistudio.com": [2195], "*.egnyte.com": [5102], "cestovani.idnes.cz": [20483], "www.hayloft-plants.co.uk": [20349], "personal.ie.cuhk.edu.hk": [2704], "support.openload.co": [12070], "bnolan.co": [2024], "assets.puma.com": [13271], "gld.la": [2024], "s4.cnzz.com": [3328], "userstyles.org": [22410], "tsapps.nist.gov": [11089], "r.kenhkelly.us": [2024], "frontcounter.sccgov.org": [14401], "surratt.me": [2024], "main.calibre-ebook.com": [2757], "berta.it": [2024], "float.fyi": [2024], "seecrypt.com": [14610], "mtrskr.in": [2024], "gateway-kctcs.edusupportcenter.com": [19962], "donate.wikimedia.org.uk": [18388], "symbeta.symantec.com": [15780], "link.clvr.nu": [2024], "www.lan.ua": [20774], "publicfeed.stubhub.com": [15602], "duckduckgo.com": [4785], "www.whodoyou.trust": [18356], "tpurpo.se": [2024], "adnuguk.me": [2024], "all.rocketbank.ru": [13994], "kinogo.net": [20722], "help.smartadserver.com": [15049], "barkacs.444.hu": [183], "ctl.co": [2024], "williamhill.com": [18407], "t321.tianji.360.cn": [142], "tongcheng.jd.com": [8434], "*.landslide.com": [9157], "8r.com": [242], "seravo.fi": [14656], "www.fod.osu.edu": [11713], "s.gish.se": [2024], "lists.sigxcpu.org": [14846], "r.ad6media.fr": [569], "intern.connecthr.nl": [2797], "mwcip.hkjc.com": [20384], "froot.co": [2024], "cnnct.ch": [2024], "on.yloils.me": [2024], "www.vsenovostint.ru": [22511], "www.buildbetter.software": [2426], "www.trek.kairo.at": [8782], "pep.foundation": [21385], "ifn.by": [2024], "tmit.bme.hu": [1556], "dialin.here.com": [7325], "www.dgex.com": [4024], "guildwars2.com": [6993], "zelo.space": [2024], "angies.tips": [2024], "rareaviation.com": [13625], "bluetooth.org": [2170], "alliedmedia.org": [902], "j.suntravel.xyz": [2024], "services.community.lego.com": [9082], "mjclrk.ca": [2024], "d.adroll.com": [590], "3wb.tv": [2024], "lng.mn": [2024], "hr.caltech.edu": [2771], "www.jackandjill.ie": [8491], "n.akbaar.ir": [2024], "jiwire.com": [8579], "orsk.ufanet.ru": [22347], "acnbuzz.me": [2024], "coe.im": [2024], "sommer.migros.ch": [10417], "19w7rsn3uqc7l0sy8fv66ljdrziid8nfm2walpfg.ipleak.net": [20571], "www.edihealth.com": [4886], "uni.yandex.com.tr": [18740], "www.torrenthound.com": [22245], "tbp.im": [2024], "www.usc.edu": [17366], "jmhr.co": [2024], "no.norton.com": [11545], "eatb.us": [2024], "gorizont.admtyumen.ru": [19082], "*.omnitec.com": [11839], "worker105.scrutinizer-ci.com": [21759], "www.opticsinfobase.org": [12102], "cloudsigma.com": [3291], "gptd.co": [2024], "darbie.link": [2024], "www.transit.land": [16744], "wiki.aalto.fi": [447], "ganjimobile.bjcnc.scs.sohucs.com": [15173], "style.omniture.com": [11842], "k-n.io": [2024], "rodina.rg.ru": [21646], "bbs.boingboing.net": [2197], "*.epson.jp": [5318], "purpledog.tips": [2024], "nkz.europaplus.ru": [20034], "musc.mn": [2024], "pathofexile.com": [12487], "imaiai.oxfordjournals.org": [12222], "www.active24.sk": [19067], "thinkfun.co": [2024], "bmczool.biomedcentral.com": [1931], "lillypad.lilly.ca": [5155], "otrs.datamotion.com": [19767], "2kgames.com": [117], "dylan.la": [2024], "shipto.com": [14768], "*.shurgardpayment.eu": [14812], "files.garrysmods.org": [20206], "v.icetravel.xyz": [2024], "ucuzu.com": [17191], "thwt.pw": [2024], "nsnd.me": [2024], "snowmagazineonline.com": [15107], "bullguard.com": [2434], "trancebase.fm": [22270], "www.peerj.com": [12548], "www.octoshape.com": [11756], "api.ccbill.com": [2549], "paulblok.nu": [2024], "forums.stablehost.com": [15423], "www.trustlogo.com": [3507], "g.yft.io": [2024], "www.harland.com": [7199], "wa.gs": [2024], "img.tnastatic.com": [16593], "masspirg.org": [9724], "fm.ipinyou.com": [7807], "blog.fust.ch": [6258], "doc.glx-dock.org": [20270], "www.pogoda.yandex.by": [18739], "mpoliti.co": [2024], "uicbookstore.org": [17028], "*.secure-secure.co.uk": [14549], "l.tigervpn.com": [2024], "*.loopiasecure.com": [9617], "www.consortiumlibrary.org": [3593], "images.ccs.com": [2565], "orderit-pmg.stanford.edu": [15448], "cont.fyi": [2024], "webservices.ignou.ac.in": [7956], "xcache.lighttpd.net": [9362], "indefinitelywild.gizmodo.com": [6677], "fdc.freescale.com": [6161], "thrly.in": [2024], "disconnect.me": [4531], "aggregateknowledge.com": [770], "businessforums.verizon.net": [9480, 22441], "www.csa-cee-summit.eu": [2677], "meolocalizz.meo.pt": [10286], "zdravstvuite-ya-vasha-pyatnica.friday.ru": [20175], "www.watford.gov.uk": [22536], "gallery.webtype.com": [18191], "diasp.eu": [4434], "video19.0xdb.org": [10], "guandongge.jd.com": [8434], "www.wingolog.org": [18443], "cryptopro.ru": [3855], "www.rblack.hku.hk": [20387], "ikampioen.com": [2024], "mhzsocial.ca": [2024], "www.bluemovie.net": [2139], "www.screendaily.com": [14470], "alsoactebis.com": [359], "legolanddiscoverycentre.ca": [9249], "ngo-jvc.info": [2024], "rr-link.com": [2024], "kgs.steampowered.com": [15516], "forum.dlang.org": [19852], "c1.tacdn.com": [22082], "httpbin.org": [7594], "softwareplattform.d115.de": [2443], "autoitscript.com": [1443], "smb.bz": [2024], "xterra.co": [2024], "glvnt.co": [2024], "sip.derby.gov.uk": [4367], "my.vegatele.com": [22435], "main.exoclick.com": [5489], "arkos.io": [1222], "teamtailor.com": [16068], "rd.tpprf.ru": [22260], "bayproxy.date": [21524], "dynamic01.livestrongcdn.com": [9510], "tek.khabkrai.ru": [20709], "www.systembolaget.se": [15828], "www.oebb.at": [21230], "mdon.co.uk": [2024], "ayebro.nz": [2024], "lolzparade.com": [4112], "help.snapengage.com": [15090], "wwwboards.auto.ru": [19276], "deaf.islamweb.net": [8373], "api.toster.ru": [16669], "thepiratebay.bypassed.org": [21524], "mix.djvenky.com": [2024], "l.akiffatmi.com": [2024], "childprotection.holyrood.com": [20393], "s7e5a.scene7.com": [14402], "signin.epek.com": [5307], "rlog.9gag.com": [252], "labs.bad-dragon.com": [19300], "tutorial-signup.hku.hk": [20387], "herep.in": [2024], "licensing.gov-murman.ru": [20293], "agrtp.co": [2024], "hotmali.play-asia.com": [12828], "affiliate.law.yale.edu": [18732], "uno.im": [17447], "www.ldcu.ca": [9146], "blackpoolfylde.greenparty.org.uk": [6908], "support.opencorporates.com": [11967], "go.riofrios.com": [2024], "www.amnesty.se": [1016], "developer.maxdome.de": [10106], "60.mvd.ru": [21055], "revcontent.com": [21642], "www.utinam.cnrs.fr": [6174], "www.pcpartpicker.com": [12529], "gigafreak.net": [6630], "tcgcom.me": [2024], "auth.whiskeymedia.com": [18340], "wiki.leloop.org": [9206], "www.mi-pro.co.uk": [8225], "scans.gradle.com": [20301], "cccure.org": [2556], "dacapoalfine-dd.de": [4095], "quantcast.com": [13387], "efas.cen.uiuc.edu": [17030], "um.baden-wuerttemberg.de": [19302], "cdn.corporate.walmart.com": [18059], "*.yelp.ca": [18766], "accounts.hants.gov.uk": [7185], "cunet.co": [2024], "ums.adtech.de": [691], "r24617433.sync.app.asana.com": [1265], "chinese.mirea.ru": [20993], "gsmnras.oxfordjournals.org": [12222], "myhailprotector.com": [7153], "olhe.ga": [2024], "ytri.us": [2024], "ycdb.us": [2024], "airbnb.mx": [793], "convar.com": [3626], "staffsmoorlands.greenparty.org.uk": [6908], "bernina-chur.ch": [1827], "www.zeushash.com": [18952], "webcruiter.no": [18209], "r24626398.sync.app.asana.com": [1265], "www.hr-skyen.dk": [7085], "si.gmu.edu": [6529], "status.bytemark.co.uk": [2503], "www.ashleymadison.com": [1278], "software.nasa.gov": [10909], "jlsa.co": [2024], "www.vetdepot.com": [17741], "prokopevsk.startsmile.ru": [21980], "sot.bz": [2024], "s.nonk.in": [2024], "muslimsdiscuss.com": [10767], "einspru.ch": [2024], "www.jfrog.com": [8445], "c.inal.info": [2024], "eca.state.gov": [17146], "analys.in": [2024], "uploads.billiondigital.com": [1912], "www.gnomejournal.org": [6334], "agentoa.hu": [2024], "xykstatic.cmbchina.com": [2639], "cpthq.cc": [2024], "iatg.co": [2024], "nwf.sh": [2024], "consultantnews.anthem.com": [19206], "community.adobe.com": [669], "sabb.com": [21711], "sjv.tocco.ch": [16600], "urbrns.nl": [2024], "gemeentewesterveld.nl": [11172], "*.no-ip.com": [17878], "wiki.bicomsystems.com": [19371], "myactive.cc": [2024], "payment.empflix.com": [5205], "wkbn.ch": [2024], "lug.mtu.edu": [9816], "hlt.bz": [2024], "img2.blogblog.com": [2122], "app.wistia.com": [18467], "www.lambeth.gov.uk": [20773], "ryazan.startsmile.ru": [21980], "mdf.ms": [2024], "ads.neudesicmediagroup.com": [11321], "asexuality.org": [19251], "lambeth.gov.uk": [20773], "ddktoday.niddk.nih.gov": [11090], "counterpoint.in": [2024], "getclicky.com": [6593], "www.uniblue.com": [17269], "theacc.co": [2024], "jailbreakingisnotacrime.org": [8503], "l.noobs.sexy": [2024], "statics.meetic-affinity.com": [10226], "manabalss.lv": [9949], "portrait1.sinaimg.cn": [14910], "db.debconf.org": [4256], "consumer.org.hk": [3599], "alta.com": [923], "portal.etc.cmu.edu": [2868], "hrthrudf.com": [2024], "lib.mg": [2024], "vttts.readspeaker.com": [13670], "www.pyra-handheld.com": [21548], "clyp.it": [3322], "campusapps.itsc.cuhk.edu.hk": [2704], "2-t.imgbox.com": [7997], "requestb.in": [21631], "imja.red": [2024], "pivot.js.org": [20657], "pr-old.adform.com": [639], "file.test.octopuspop.com": [11754], "www.linuxslut.net": [9450], "sant.work": [2024], "rpgo.me": [2024], "thc.vc": [2024], "techworld.idg.se": [7709], "linus.link": [2024], "l.stebet.net": [2024], "bkmc.me": [2024], "jue.oxfordjournals.org": [12222], "www.purchasing.osu.edu": [11797], "knowledge.seagate.com": [14499], "cpip.me": [2024], "www.iwowcase.com": [7872], "pc6.gtimg.com": [6975], "coolbr.am": [2024], "snte.tv": [2024], "movie2k.pe": [10674], "indiemerchandising.com": [8074], "www.agar.io": [762], "naca.ws": [2024], "reed.io": [2024], "r24820214.sync.app.asana.com": [1265], "ipvanish.com": [7803], "*.inburke.com": [8044], "insurance.rocketbank.ru": [13994], "cc2.dealer.com": [4245], "shortoftheweek.com": [21813], "cpf.engineering.osu.edu": [11797], "buffalo-technology.com": [2416], "produk.ghazi.id": [2024], "from-ua.com": [20178], "lmb.tocco.ch": [16600], "tlshar.es": [2024], "i3.gallery.technet.s-msft.com": [14114], "chechnya.tpprf.ru": [22260], "go.tjek24.dk": [2024], "ouagadougou.usembassy.gov": [22406], "inuits.eu": [8305], "battlewww.play-asia.com": [12828], "l.dds.ec": [2024], "*.shopatron.com": [14785], "*.appkb.ch": [20683], "discoverbsd.com": [4537], "sp.nl": [14216], "zewo.tocco.ch": [16600], "pages.rts.ch": [21957], "conco.co": [2024], "s.cmns.nl": [2024], "postfinance.ch": [12996], "portal.webgility.com": [18213], "mods.curse.com": [3927], "www.dar.fm": [3996], "oj4.us": [2024], "mmixr.com": [10514], "smallbusinessonlinecommunity.bankofamerica.com": [1669], "chrisjlopez.com": [2024], "www.thedaywefightback.org": [16343], "lgpc.me": [2024], "dglink.co": [2024], "alme.re": [2024], "www.daha.net": [15156], "r24823041.sync.app.asana.com": [1265], "mopo.ws": [2024], "rbth.com": [21596], "www.thegyllenhall.com": [22154], "alme.ro": [2024], "yelp.com": [18766], "mail.almayadeen.net": [19157], "www.sendmail.com": [14643], "*.hjr-verlag.de": [7055], "mog.gy": [2024], "store.fileforum.com": [1846], "monoapp.psbank.ru": [13231], "cau.upf.edu": [17471], "link.kiran.be": [2024], "stable.melpa.org": [10259], "gpt.nserver.ru": [11588], "on.scouts.ie": [2024], "devint.anidb.net": [1065], "dm9.io": [2024], "mytm.tm.com.my": [16150], "webwsp.aps.kuleuven.be": [8832], "ses.leeds.ac.uk": [17403], "piratebay.esbypass.xyz": [22259], "shoro.uk": [2024], "lvlre.co": [2024], "shk.life": [2024], "xsolla.com": [18685], "sueddeutsche-tickets.de": [15643], "catedraemprender.unizar.es": [17441], "superior.solar": [2024], "cbgb.link": [2024], "tumba.ch": [22306], "secure.classmates.com": [3219], "go.kim.al": [2024], "kc2.io": [2024], "tree.sci-hub.la": [14436], "cryengine.com": [3835], "store.devolverdigital.com": [4414], "combell.link": [2024], "maxcdn.com": [10102], "on.ducati.co": [2024], "api.mixcloud.com": [10503], "dnga.info": [2024], "www.mamba.ru": [9944], "tink.la": [2024], "*.agenda.athaliasoft.fr": [1337], "eek.in": [2024], "tifisr.org": [2024], "a.tado.com": [2024], "app.marketo.net": [10024], "*.jalopnik.com": [8507], "www.cdn-net.com": [2927], "sourceforge.net": [15242], "cdn.greenchef.com": [6899], "www.crazzed.com": [3764], "cardlimit.rsb.ru": [14058], "x.calu.me": [2024], "cabinet.st.uz": [21966], "cri.ucsd.edu": [17012], "www.bag.admin.ch": [22061], "blog.getcloudapp.com": [9387], "www.tldrlegal.com": [15887], "atxne.ws": [2024], "guide-fbapp.discoverhongkong.com": [19847], "p3.ssl.qhimg.com": [13347], "p2-u.itunes.apple.com": [1151], "promo.goldenline.pl": [6799], "umaryland.worldcat.org": [18536], "sso.amd.com": [970], "wallet.mycelium.com": [21063], "de-es.dict.cc": [4442], "blesk.cz": [2088], "employerview.ofsted.gov.uk": [21231], "nxtblog.co": [2024], "alfrd.co": [2024], "czwww.play-asia.com": [12828], "r24616686.sync.app.asana.com": [1265], "zenmate.fi": [18917], "ant1.in": [2024], "w.ocara.net": [2024], "ion.io": [2024], "account.xiaomi.com": [18662], "basemap.stanford.edu": [15448], "rating-widget.com": [13637], "bnchd.me": [2024], "lnomad.co": [2024], "readings.owlfolio.org": [12211], "meets.media": [2024], "wgo.mmstat.com": [10515], "zenmate.fr": [18917], "maxcdn.bootstrapcdn.com": [2237], "awin1.com": [4472], "help.vanaqua.org": [17637], "feedback.ndla.no": [11158], "tunnelsup.com": [22310], "amstelveen.nl": [11172], "*.infoworld.com": [8133], "www.play-asia.com": [12828], "combo.b.qq.com": [13329], "player.music-stage.tokenly.com": [22229], "api.openload.co": [12070], "s.digitalpix.nl": [2024], "chach.ee": [2024], "kariera.hofer.si": [357], "www.geekify.com.au": [6487], "moonpig.com": [10619], "frda.nl": [2024], "changyan.sohu.com": [15171], "rugby.gov.uk": [14083], "at.luxor.me": [2024], "www.nic.cz": [11418], "forums.mozfr.org": [21030], "sfsecuremail.statefarm.com": [15483], "sundance.tv": [22032], "6al.al": [2024], "minfil.org": [10439], "www.kantarainitiative.org": [8802], "hpcloud.com": [7083], "www.nic.ch": [10960], "planning.adur-worthing.gov.uk": [19095], "stats2.arstechnica.com": [1242], "mzoic.com": [2024], "basc.energy.gov": [5243], "status.prestashop.com": [13085], "wwwrc.hertzentertainment.com": [7371], "a.petassure.com": [2024], "assetweb.psc.gov": [21528], "www.dyson.co.uk": [4831], "parlamentri.ru": [21347], "www.tpb.accountant": [22259], "orchid.hosts.jhmi.edu": [8448], "dvc.sccgov.org": [14401], "reut.rs": [2024], "hamptons.curbed.com": [3920], "bpat.tk": [2024], "s2.gismeteo.md": [20251], "ui.tescoassets.com": [16206], "www.lexity.com": [9295], "www.proxybay.press": [22259], "forums.catalysttg.com": [2907], "www.rtbpopd.com": [21688], "techblog.workiva.com": [18532], "p5.ssl.qhimg.com": [13347], "potato.usa.cc": [2024], "npower.com": [11583], "mathiasbynens.be": [10080], "uproxy.org": [17093], "netnanny.com": [11253], "*.cdn.office.net": [11781], "*.eetimes.com": [4900], "*.calchamer.com": [2741], "dav.io": [2024], "adainfo.us": [2024], "dev.vr.fruitninja.com": [6214], "*.e-junkie.com": [4847], "*.mmixr.com": [10514], "americanancestors.org": [981], "a1000words.com": [441], "guilford.worldcat.org": [18536], "thesoci.al": [2024], "uscnow.usc.edu": [17366], "ras.jpl.nasa.gov": [10909], "govwaste.co.uk": [6853], "prstatics.com": [12325], "gridcoin.us": [6932], "951shi.ne": [2024], "website.local.ch": [9548], "www.thebookpeople.co.uk": [16292], "www.beeldengeluid.nl": [1777], "mvn.tocco.ch": [16600], "static-elerium-beta.cursecdn.com": [3927], "banners.8ch.net": [243], "go.hoo.dk": [2024], "help-ja-jp.nike.com": [11440], "tm-b.org": [2024], "lkbl.mx": [2024], "gb-d.openx.net": [12026], "vpp.itunes.apple.com": [1151], "dpmbapps.lowes.com": [9645], "www.dentistry.osu.edu": [11797], "lvb.link": [2024], "hardenedbsd.org": [7196], "www.geti2p.net": [6578], "gmr.link": [2024], "alanw.me": [2024], "staging.syncplicity.com": [15795], "vets4212.dol.gov": [19867], "v.vhq.cc": [2024], "www.verifiedvoting.org": [17709], "poker.williamhill.com": [18406], "www.delta.no": [4319], "web.roblox.com": [13980], "obninsk.startsmile.ru": [21980], "premiumleech.eu": [21486], "shmoocon.org": [14770], "static.mvd.ru": [21055], "d-ma.ca": [2024], "salon.com": [14315], "pccu.edu.tw": [12250], "maro.co": [2024], "www.netcompetition.org": [11214], "login.outspark.com": [12186], "cluster016.ovh.net": [12205], "*.oracleoutsourcing.com": [12117], "whamcat.com": [18322], "www.whoisology.com": [18357], "www.adr.org": [19086], "mathoverflow.net": [15424], "tecnoguru.info": [2024], "iq.adtechus.com": [692], "queenslib.org": [2024], "www.digi77.com": [4459], "files.cerfav.fr": [2024], "cdn.cybergolf.com": [3962], "mit150.mit.edu": [9763], "diaspora.subsignal.org": [15631], "i.antsdaq.com": [19209], "fr.crowdin.com": [3823], "go.nath.li": [2024], "stocks.sina.cn": [14902], "afsc.me": [2024], "sevn.in": [2024], "40l.im": [2024], "stori.cc": [2024], "com.denoray.com": [2024], "corp.zaif.jp": [18874], "r24820235.sync.app.asana.com": [1265], "comca.st": [2024], "ad.crwdcntrl.net": [9622], "spratl.in": [2024], "baja.osu.edu": [11797], "animallaw.info": [1067], "*.moonfruit.com": [10620], "rndom.io": [2024], "mgass.com": [2024], "netti.mtvmedia.fi": [21046], "login.qt.io": [13365], "kow.rocks": [2024], "link.vlint.nu": [2024], "www.vagrantcloud.com": [17616], "bdtk.co": [2024], "mrc.lu": [2024], "lillypad.lilly.com": [5155], "pcc.coop": [2024], "highju.mp": [2024], "ellatino.eu": [2024], "www.privateinternetaccess.com": [13145], "www.freesoundeffects.com": [6108], "community.podlove.org": [10322], "r.ournet.biz": [2024], "redcrosstest.tocco.ch": [16600], "capita.bathnes.gov.uk": [1715], "iass.co": [2024], "mahadevi.me": [2024], "*.speakyweb.com": [15308], "iact.atdmt.com": [10393], "euniovi.uniovi.es": [17282], "esg.li": [2024], "www.xn--j1aab.xn--90aijkdmaud0d.xn--p1ai": [22654], "stg.m.here.com": [7325], "files.edx.org": [5062], "volley.so": [2024], "www.accessedge.com": [19048], "synw.info": [2024], "bttrack.com": [2403], "csweb.me": [2024], "wdc-cmp01.mollom.com": [10573], "oustudents.com": [2024], "mecca.ca": [5106], "www.syslog-ng.org": [15819], "wf.scrutinizer-ci.com": [21759], "xab.lu": [2024], "floridatoday.com": [5923], "www.huk.de": [7107], "glas.to": [2024], "www.aimpulse.com": [786], "onebitbug.me": [11892], "i.imm.bz": [2024], "www.focuscamera.com": [5954], "chronicle.com": [3127], "cp.cloud.softline.ru": [21889], "onenetworkdirect.com": [11877], "spa.bz": [2024], "spoil.gift": [2024], "sfa.osu.edu": [11797], "www.genomicseducation.hee.nhs.uk": [10953], "lazaunl.info": [2024], "srvn.co": [2024], "dev.evernote.com": [5440], "annett.piware.de": [10043], "www.rapidleaf.com": [13616], "nccam.nih.gov": [11090], "hlp.io": [2024], "www.save.org": [21737], "sliu.link": [2024], "mtthlvr.fr": [2024], "ghk.ktk.bme.hu": [1556], "www.iis.net": [7745], "photosp.uk": [2024], "germany.tpprf.ru": [22260], "a3-images.myspacecdn.com": [10889], "www.krystal.info": [20758], "*.hailguardian.com": [7154], "concourse.ci": [19664], "api.lovebizhi.com": [20878], "courrielweb.videotron.com": [17787], "awsinsider.net": [433], "mytdc.me": [2024], "lkyspp.sg": [2024], "id.wsj.com": [22625], "confianzaonline.es": [3571], "registration.cesnet.cz": [2598], "brendaneich.com": [2321], "beyondsecurity.com": [1861], "www.s-hertogenbosch.nl": [11172], "community.ussf2010.org": [17106], "fp.newegg.com": [11356], "login.dotomi.com": [4698], "ushaz.com": [2024], "wwf.hk": [2024], "www.youtube.co.at": [18800], "plantronics.com": [12815], "l.gomaxlive.com": [2024], "gigamon.com": [6631], "kmp.li": [2024], "www.eprize.net": [4937], "pki.google.com": [6818], "www.krasnoturinsk.info": [20755], "www.ncmm.uio.no": [17414], "m.exmail.qq.com": [13327], "5vpn.net": [218], "idp.kuleuven.be": [8832], "www.getapp.com": [20238], "giblod.no": [6618], "partners.kaspersky.ua": [8822], "help.skrill.com": [14984], "winters.illuminateed.com": [20494], "s.asbestos.com": [2024], "www.igb.uiuc.edu": [17030], "hu.boardgamearena.com": [2182], "chrt.se": [2024], "www.tv.yandex.by": [18739], "www.aimatmelanoma.org": [19118], "lviskovic.tk": [2024], "afsic.nal.usda.gov": [17299], "secure.twitch.tv": [16961], "m.kurier.at": [9055], "hsd.to": [2024], "dvwx.in": [2024], "www.codebeamer.com": [3346], "swww22.glam.com": [6679], "ovg.link": [2024], "img.computerbild.de": [19660], "zylon.net": [19030, 19031], "www.symbolab.com": [15781], "data.roblox.com": [13980], "t4pm3.tk": [2024], "investor.verisign.com": [17712], "maps.halton.gov.uk": [20335], "willkommen.sky.de": [14990], "s-eu.thebrighttag.com": [2342], "weisf.essex.gov.uk": [5354], "truenudists.com": [16847], "*.ipower.com": [7798], "tcsm.creatavist.com": [3766], "zalando.co.uk": [18877], "heynas.com": [2024], "s.iammike.co": [2024], "hvr.co": [2024], "jobs.calderdale.gov.uk": [2752], "a.jobnavy.com": [2024], "openswan.org": [12080], "csr.etrend.sk": [5383], "gwit.co": [2024], "shne.ch": [2024], "edub.me": [2024], "strato-pro.com": [14257], "question-defense.com": [13406], "*.fundageek.com": [6237], "ask.derby.ac.uk": [17394], "www.sadecehosting.com": [14283], "battlecreekenquirer.com": [1720], "psta.co": [2024], "xlmoto.net": [2024], "wcmaas.dhs.gov": [4026], "www.veggiekarte.de": [22436], "hurricaneelectric.net": [7633], "538.to": [2024], "vagab.it": [2024], "helpcenter.electric-cloud.com": [19978], "img02.sogoucdn.com": [15169], "www.zylon.net": [19030, 19031], "www.telekom-profis.de": [16152], "joshw.us": [2024], "docs.quay.io": [21564], "b4ly.tk": [2024], "sumac.stanford.edu": [15448], "discourse.wolfire.com": [18485], "charity.acnc.gov.au": [319], "foreninger.canaldigital.dk": [2817], "ahrun.me": [2024], "chroniclebooks.com": [10133], "idp.micropolia.com": [10383], "on.psi.de": [2024], "give.stanford.edu": [15448], "s.thibeault.io": [2024], "carah.st": [2024], "xkcd.com": [22652], "n.jlau.mx": [2024], "mjd.me": [2024], "smwcentral.net": [14203], "dada.cs.washington.edu": [17376], "apps.dinglisch.net": [19841], "avtoradio.ru": [19290], "embr.li": [2024], "buzzd.at": [2024], "srviv.in": [2024], "4.shawn2nd.com": [2024], "wiki.451unavailable.org": [185], "ipwd.co": [2024], "schd.ws": [14411], "adxpansion.com": [599], "uberads.com": [17166], "debconf12.debconf.org": [4257], "buy.wistia.com": [18467], "croc3.ml": [2024], "b.nya.net.br": [2024], "e.asset.soup.io": [15235], "www.2gis.prokopievsk.ru": [21513], "teachingexcellence.mit.edu": [9763], "compass.xboxlive.com": [18640], "*.yelp.com.sg": [18766], "staticwhich.co.uk": [18336], "hey.li": [2024], "astrahan.europaplus.ru": [20034], "passport.biligame.com": [1903], "pic-photo.net": [2024], "stayfriends.at": [15510], "ttdib.com": [2024], "gnrdbrg.com": [2024], "*.miles-and-more-kreditkarte.com": [10431], "b.guu.vn": [2024], "portalen.dtu.dk": [16096], "psty.co": [2024], "bmwclub.cdnvideo.ru": [19536], "www.thecustomizewindows.net": [22148], "wb.mysql.com": [10825], "oss.aliyuncs.com": [19143], "api.maillift.com": [9894], "aeis.bassetlaw.gov.uk": [1714], "r24625028.sync.app.asana.com": [1265], "secure.swisspostbox.com": [12996], "www.wargamevault.com": [11867], "picksapp.co": [2024], "hk01.com": [7056], "www.spyderco.com": [15393], "git.coderouge.co": [3375], "x-cart.com": [18583], "www.cas.sk": [1507], "www.skatteverket.se": [14966], "bournetocode.com": [2267], "www.darkreading.com": [4143], "wlogin.icq.com": [7695], "wearechoosy.com": [1214], "rackham.eu": [2024], "owncloud.com": [12214], "shop.vodafone.co.uk": [17900], "awsmr.ch": [2024], "yusut.sledcom.ru": [21858], "sngls.club": [2024], "checkout.adultshopping.com": [697], "webmail07.register.com": [13793], "theleanstartup.com": [16272], "static.uclinics.com": [17018], "redmine.darktable.org": [4147], "foia.fbi.gov": [5698], "ho.ln.com.ar": [2024], "larpdocs.fnal.gov": [5741], "www.re-publica.de": [13657], "tmlwry.com": [2024], "log.otaserve.net": [21307], "mata.do": [2024], "mirror-master.debian.org": [4263], "mkl.it": [2024], "link.admium.nl": [2024], "spiegel.de": [15342], "findababysitter.com.au": [5819], "*.realrobothigh.com": [13688], "hizliresim.com": [7438], "www.lovefood.com": [9639], "wktv.co": [2024], "sentry.services.disqus.com": [4559], "eskil.flightradar24.com": [20119], "hndm.co": [2024], "afisa.espiv.net": [20021], "sellercentral.amazon.fr": [19176], "go.gamv.ca": [2024], "niceadminreview.web.cern.ch": [2588], "retrousb.com": [13885], "community.wbgames.com": [3505], "img07.rl0.ru": [13972], "bulls.one": [2024], "sharedfacilities.stanford.edu": [15448], "image.apps.rakuten.co.jp": [13594], "tab.cm": [2024], "bluecu.be": [2024], "h.op3.eu": [2024], "ezinearticles.com": [5530], "heritage.gov.hk": [20369], "art.bathnes.gov.uk": [1715], "url.rbj.hu": [2024], "go.dinda.com.br": [2024], "*.esomar.org": [4955], "prod6.magentohotel.dk": [9871], "slash.srad.jp": [21956], "fushi.1688.com": [51], "webhosting.services.balnet.ru": [19310], "license.ayyo.ru": [19292], "glaz.mx": [2024], "democrator.ru": [19806], "www.plumbr.eu": [12866], "coursesmart.edusupportcenter.com": [19962], "ads.contextweb.com": [3618], "www.giftcards.tesco.com": [16206], "my.enahost.com": [5220], "cims.af.one.un.org": [17057], "buildroot.busybox.net": [19479], "s.hreinfo.com": [2024], "www.ruc.dk": [14025], "www.mapillary.com": [9980], "str.tg": [2024], "osh.is": [2024], "www.growthhackers.com": [6963], "sibhub.co": [2024], "geschenkkarte.coop.ch": [3647], "plugins.serverdensity.com": [14675], "liberec.idnes.cz": [20483], "cdn.rbth.com": [21596], "bxl.indymedia.org": [8090], "deciduouspress.com.au": [4270], "images2.q8car.com": [13321], "appk.permkrai.ru": [21390], "abru.es": [2024], "sphere.com": [15335], "kwtx.us": [2024], "refresher.cz": [13781], "11dg.tl": [2024], "inside.hfs.washington.edu": [17376], "on.mukhodim.com": [2024], "wwwd.amd.com": [970], "www.invest.dha.gov.au": [4292], "corp.riyadonline.com": [13967], "www.buch.ch": [16244], "www.megabusgold.com": [10244], "*.cduniverse.com": [2581], "getmeadow.com": [6582], "urozhai.rshb.ru": [14059], "r24820213.sync.app.asana.com": [1265], "xfce.org": [18603], "hilfe.vodafone.de": [17901], "api.blockspring.com": [2113], "quiz.rg.ru": [21646], "cardiff.moderngov.co.uk": [21005], "apexcie.co": [2024], "bar.pornhub.com": [12972], "www.sysaid.com": [15812], "agsaga.es": [2024], "s.quadpiece.net": [2024], "xfru.ga": [2024], "b.namaste.co.il": [2024], "support.privatelayer.com": [13146], "feedpress.me": [5721], "a.triggit.com": [16809], "nc.oxfordjournals.org": [12222], "lfal.co": [2024], "www.isy.liu.se": [9097], "www.burningshed.co.uk": [2458], "www.forgefields.com": [6014], "mlk.onlime.ru": [11902], "out.snat.co.uk": [2024], "sites.un.org": [17057], "dons.monde-diplomatique.fr": [21011], "danm.co": [2024], "uknow.co": [2024], "bugtracker.rsbac.org": [13515], "pl.m.xhamster.com": [18606], "contacts.live.com": [9495], "giftplanning.nature.org": [11141], "thai.vi": [2024], "l.adph.ws": [2024], "dbis.hk": [2024], "ui.manwin.doublepimp.com": [4711], "www4.va.gov": [17100], "blogs.akamai.com": [806], "demo-res.cloudinary.com": [3306], "webdisk.fe.ru": [20078], "www.whatbrowser.org": [18324], "nic.cz": [11418], "www.metashop.at": [13072], "oilsk.im": [2024], "swt.com": [14270], "aquion.energy": [2024], "thewallacecenter.rit.edu": [13493], "s.bazoo.me": [2024], "cusis.cuhk.edu.hk": [2704], "sqlik.link": [2024], "evermap.com": [5436], "cdon.no": [2576], "registerresnet.northeastern.edu": [11539], "learn.104.com.tw": [18], "alumni.brunel.ac.uk": [19459], "photos-e.ak.fbcdn.net": [5689], "notaisoldani.it": [2024], "sdk.jibo.com": [2024], "careeren.li": [2024], "www.lfov.net": [9089], "help.premiumize.me": [13074], "www.ringinout.com": [13950], "www.aat-net.de": [891], "www.piratemedia.net": [12748], "www.do-it.org": [4598], "www.commercialappeal.com": [4981], "lomba.xyz": [2024], "a.sendertime.de": [2024], "www.freeporngif.com": [6121, 6122], "members.chicagotribune.com": [3076], "pccn.nu": [2024], "technologyreview.com": [16107], "transmedcomms.biomedcentral.com": [1931], "heimarbeit.lubw.baden-wuerttemberg.de": [19302], "*.carepackage.org": [2530], "biapreview.homeoffice.gov.uk": [20399], "www.archive.fo": [1194], "vintui.tv": [2024], "phototass4.cdnvideo.ru": [19536], "*.crowdfactory.com": [3816], "premier.dell.com": [4317], "www.ras.org.uk": [14045], "*.hochschule-trier.de": [7450], "visitestonia.com": [17865], "stattl.io": [2024], "yzr2.biligame.com": [1903], "sid.ac": [2024], "kirkusreviews.com": [8930], "www.decathlon.es": [22628], "tinylx.ml": [2024], "www.electric-cloud.com": [19978], "3es.me": [2024], "seetv.ml": [2024], "cars.tigerair.com": [16515], "*.gandi.net": [6432], "secure.gettyimages.co.nz": [6604], "365tr.biz": [2024], "t.1230.me": [2024], "vision.gel.ulaval.ca": [17319], "api.clever.com": [3239], "bmcbiol.biomedcentral.com": [1931], "*.wire.com": [18451], "inphi.com": [8159], "hji.news": [2024], "www.migipedia.ch": [10417], "opros.x5.ru": [18590], "s3-ak.buzzfed.com": [2489], "www.ukconstitutionallaw.org": [22351], "aferg.co": [2024], "app.ontraport.com": [21261], "khelf.co": [2024], "widget.barnebys.com": [1703], "ddagst.tk": [2024], "apps.uat.splash.riverbed.com": [13964], "axcm.it": [2024], "goodbarber.co": [2024], "www.e-fense.com": [19918], "eotours.co": [2024], "www.ubmaviationnews.com": [16999], "snrnews.us": [2024], "booking.clickvoyage.ru": [3254], "bauermedia.co.uk": [19329], "*.staticsfly.com": [14815], "go.ni9at.com": [2024], "www.liveperson.com": [9506], "secure.trialinteractive.com": [22283], "www.joycasino4.com": [20654], "pl.malwarebytes.com": [9940], "www.primedice.com": [13109], "cp.music.qq.com": [13329], "stkh.us": [2024], "www.ribblevalley.gov.uk": [13922], "aerob.is": [2024], "*.cad-comic.com": [3897], "secure.tagged.com": [15974], "l.goodbuyz.com": [2024], "blog.codepen.io": [3348], "ping.getadblock.com": [571], "sites-jumpstart.stanford.edu": [15448], "volafile.io": [22492], "*.computerandvideogames.com": [6260], "static1.codehs.com": [3347], "www.lib.ncsu.edu": [11531], "gpugrid.net": [6351], "rss.sme.sk": [14198], "l.inc.com": [2024], "agil.ly": [2024], "myvote.democrats.org": [4338], "qinnova.uned.es": [17248], "result.cntraveler.com": [3558], "1.updates.services.karlsruhe.freifunk.net": [20688], "www.piratebox.top": [21524], "majuro.usembassy.gov": [22406], "spring.ura.gov.sg": [22398], "autodiscover.consumer.org.hk": [3599], "dnspod.qcloud.com": [13346], "41v6ks452gikd1iuh35qef1l2yfl2o52lwqfl9l9.ipleak.net": [20571], "visualsonline.cancer.gov": [2819], "avatar.xboxlive.com": [18640], "handylinux.org": [20336], "aum.worldcat.org": [18536], "studentessentials.cornell.edu": [3676], "picshareunit.com": [12699], "lomolenobl.ru": [20872], "s18.cnzz.com": [3328], "vqs.is": [2024], "cupjo.co": [2024], "nichebeauty.de": [2024], "textpad.com": [16231], "kbn.im": [2024], "magro.nikhef.nl": [11441], "ozi-ru.org": [12229], "www.ck12.org": [19604], "*.wolrdssl.net": [18492], "arc.solutions": [2024], "st.s-herb.com": [2024], "studios.streamray.com": [15521], "www.fusion.net": [20190], "kr.khabkrai.ru": [20709], "pgp.com": [12275], "annhyg.oxfordjournals.org": [12222], "www.plan.gs": [15533], "crill.co": [2024], "librivox.org": [9334], "automatricula.upo.es": [17479], "insp.tl": [2024], "help.sixapart.com": [21842], "admin.kfc.ru": [20707], "www.consumer.org.hk": [3599], "www.zazzle.com": [18903], "s.upr-info.org": [2024], "nz.patronbase.com": [21358], "hotelmangaby.com": [7559], "login.wildstar-online.com": [18394], "www.gratisoft.us": [6881], "morethantwo.com": [10628], "ba-ka.net": [2024], "mentalquote.com": [2024], "twecv.primbank.ru": [13107], "askf5.f5.com": [5537], "womens.uaa.alaska.edu": [17323], "crik.me": [2024], "ddgu.ddos-guard.net": [19788], "rmx.so": [2024], "d-cache.microad.jp": [10377], "fermilinux.fnal.gov": [5741], "api.dynamicyield.com": [4822], "stavropol.rt.ru": [13529], "a.huodong.mi.com": [10361], "racetohealth.co.uk": [13552], "security.weibo.com": [18279], "jsantos.co": [2024], "rig.by": [2024], "monty.to": [2024], "verigames.com": [17710], "wp-plugins.in": [2024], "wishak.co": [2024], "omgkv.in": [2024], "yandexadexchange.net": [18749], "adzn.de": [2024], "partner.aliyun.com": [868], "www.psy.ulaval.ca": [17319], "*.tyndall.ie": [16978], "go2.microsoft.com": [10396], "no1366.org": [11480], "cdn2.micasa.ch": [10370], "tools.google.com": [6818], "export.yandex.com.tr": [18740], "ma.tthewk.com": [2024], "picviewer.in": [2024], "www.yaplakal.com": [22668], "www.secure-resumption.com": [14548], "abhisekp.tk": [2024], "img3.sj.qq.com": [13329], "socialwg.indiewebcamp.com": [8076], "quantifiedcode.com": [13388], "browser.yandex.kz": [18743], "direct.yabumi.cc": [18719], "ftp.ualinux.com": [22340], "psnly.co": [2024], "coe.int": [3701], "gingerand.co": [2024], "hipmunk.com": [7420], "www.btdig.com": [19461], "shangjia.tmall.com": [22222], "ld-3.itunes.apple.com": [1151], "revstr.com": [13908], "flz.me": [2024], "img6.eadaily.com": [19929], "*.ehosting.ca": [5106], "go.rusen.eu": [2024], "edu.exmail.qq.com": [13329], "www.armenpress.am": [19233], "makeapledgepayment.stanford.edu": [15448], "helpdesk.easyspace.com": [5026], "js.3conline.com": [169], "www.quackquackgo.nl": [13370], "bwnews.pr": [2024], "www.enhancedsteam.com": [5261], "collection.bnz.co.nz": [1561], "www.simplytechnology.net": [14899], "www.banym.de": [1685], "rik.bz": [2024], "r24616740.sync.app.asana.com": [1265], "acts.onl": [2024], "geekopedia.in": [2024], "www.hackertarget.com": [7132], "s.cloudjim.com": [2024], "fsmclick.co": [2024], "www.isalo.org": [8360], "ludismedia.com": [9663], "nmo.me": [2024], "bsong.me": [2024], "web.wechat.com": [18116], "www.ovh-hosting.fi": [12205], "testnet.bitmex.com": [1962], "academy.govloop.com": [20297], "ereceptionist.co.uk": [4943], "www.blognone.com": [2125], "w.javimata.com": [2024], "spark.bazaarvoice.com": [1736], "2cns.co": [2024], "*.sellaband.com": [14630], "www.darebee.com": [19757], "imperativeideas.com": [8018], "www.email-lists.org": [5183], "05.static-maxdome.de": [10106], "img.oroboro.com": [21292], "www.talkable.com": [22092], "*.recalls.gov.au": [13170], "tvmazecdn.com": [22328], "uswvideo.adsrvr.org": [688], "ensijaturvakotienliitto.fi": [20000], "74li.me": [2024], "www.hostingcatalog.com": [7540, 7541], "durh.am": [2024], "s.mutantbox.com": [2024], "www.measuredvoice.com": [2837], "blottr.com": [2138], "es.crowdin.com": [3823], "emne.ws": [2024], "aldi.ie": [357], "applyroche.com": [2024], "tgwk.co": [2024], "sigdet.nu": [14837], "backoffice.cdn.arkena.com": [1224], "go.dawah-wh.org": [2024], "www.jsna.portsmouth.gov.uk": [21467], "klo.pm": [2024], "www.cru.fr": [3826], "ucla.in": [2024], "linuxslut.net": [9450], "hypem.com": [7648], "www.okchanger.ru": [21235], "luna.6xq.net": [226], "dbb.la": [2024], "docs.ocaml.org": [11649], "royale.spongecell.com": [21940], "www.thepirateproxy.website": [22174], "banking.us.hsbc.com": [7090], "wifilogin.xfinity.com": [22650], "northclicks.com": [11534], "weth.co": [2024], "nrd.gr": [2024], "l.sricola.com": [2024], "www.nruns.com": [11587], "www.mxguarddog.com": [9826], "*.golf2go.net": [1531], "e-boks.dk": [4842], "earthsystems.stanford.edu": [15448], "wayback.archive.org": [1195], "dietrolldie.com": [4446], "*.janrain.com": [8519], "getin.bz": [2024], "ssum-sec.casalemedia.com": [2880], "catalog.buffalostate.edu": [2418], "whois.nic.swiss": [19884], "kurskaya-obl.beeline.ru": [1778], "c.fsdn.com": [5589], "www.completelyprivatefiles.com": [3527], "parkandgo.uk": [2024], "jappix.com": [8531], "www.pabo.nl": [12336], "next.co.uk": [11399], "in.gosen.top": [2024], "ticketcorner.ch": [16492], "dr.exactag.com": [5467], "youtube.com.gr": [18800], "a3.websitealive.com": [18242], "microsoftne.ws": [2024], "b.zmtcdn.com": [22720], "ver.fm": [2024], "bitty.to": [2024], "*.boots.com": [2233], "netbeat.de": [11256], "ir.convio.com": [3631], "trial.resrc.it": [13659], "*.btdigg.org": [1593], "atl.la": [2024], "update.sourcemod.net": [21907], "hg.debian.org": [4263], "danscal.co": [2024], "www.collectifstoptafta.org": [3421], "gcc.gnu.org": [6337], "www.shtuff.it": [14809], "mfi.apple.com": [1151], "newser.me": [2024], "v.virg0.org": [2024], "full-episode.ga": [2024], "asbestossafety.gov.au": [1266], "api.ashampoo.com": [1273], "*.tintup.com": [16553], "www.prace.cz": [13054], "s63.cnzz.com": [3328], "hjoe.eu": [2024], "*.vippy.co": [17815], "amay.me": [2024], "acs-webmail.ucsd.edu": [17012], "www.browser.yandex.kz": [18743], "ru.reuters.com": [13893], "nm.pe": [2024], "intuitivepassword.com": [8303], "jenkins.logilab.org": [9569], "bleskmobil.blesk.cz": [2088], "m.legal.yandex.ua": [18747], "l.eldonchew.com": [2024], "kelli.us": [2024], "foxycart.com": [6066], "r24820167.sync.app.asana.com": [1265], "www.os3.nl": [11700], "blog.sourcetreeapp.com": [15244], "onetaste.us": [11884], "*.nyaa.se": [11635], "to.jetpens.com": [2024], "www.hromadskeradio.org": [20418], "m.vtb24.ru": [22512], "princeton.edu": [13113], "trust.jivesoftware.com": [8598], "kredyty-gotowkowe.money.pl": [10584, 10585], "node1.bbcimg.co.uk": [19333], "sky.get.no": [20237], "link.gge.co.jp": [2024], "www.barkbox.com": [1697], "dbl.to": [2024], "www.studentgrantreview.acs.org": [974], "zorrovpn.com": [19010], "bitsapphire.com": [2037], "*.copy.com": [3657], "os.uk": [11699], "xmlrpc2.mollom.com": [10573], "services.scribus.net": [14478], "vogogo.com": [22488], "pages.optimizely.com": [12107, 21287], "ssl2.cdngc.net": [19533], "l.posb.kr": [2024], "www.hypanova.com": [7647], "www.ble.de": [19406], "tims.tk": [2024], "x2u.us": [2024], "teleportal.telesign.com": [22118], "dev.univers-libre.net": [17316], "www.infosecurity-magazine.com": [13761], "ghgrp.co": [2024], "s4.mt-cdn.net": [9812], "es.libreoffice.org": [9327], "secure.xhamster.com": [18606], "cl.oud.im": [2024], "trbt.co": [2024], "cmpl.se": [2024], "3wx.us": [2024], "youtube.com.gh": [18800], "giftcard.place": [2024], "forum.icefilms.info": [7909], "www.asecus.ch": [1272], "m.opencaching.pl": [21269], "sysadmincasts.com": [15815], "www.fontdeck.com": [5969], "declaration.rostrud.ru": [21677], "apollo.krystal.co.uk": [9037], "weakdh.org": [18127], "slovenia.usembassy.gov": [22406], "z.0mfg.net": [2024], "pshp.co": [2024], "speakyweb.com": [15308], "ajl.media": [2024], "photo.kaywa.com": [8842], "m.pitch.pe": [2024], "my.turbobytes.com": [16908], "www.adweek.com": [723], "sales-images4.therealreal.com": [22180], "scripts.cocubes.com": [3332], "ae.chaucanh.net": [2024], "kaufman.usc.edu": [17366], "*.hailstormproducts.com": [7154], "firstllp.uk": [2024], "kashira.beeline.ru": [1778], "askwictor.com": [2024], "www.memberservices.hsbc.com": [7090], "style.sndcdn.com": [15096], "cruzcat.ucsc.edu": [17390], "iwslink.us": [2024], "docs.prediction.io": [13069], "dynadot.com": [4818], "www.hotmail.msn.com": [9810], "probation.homeoffice.gov.uk": [20399], "smartzip.me": [2024], "11.rkn.gov.ru": [13971], "yuedust.yuedu.126.net": [40], "mnps.co": [2024], "gopsu.info": [2024], "d0in.gs": [2024], "cpsc.gov": [2663], "obo.li": [2024], "enlghtn.me": [2024], "aloft.ht": [2024], "x-1.science": [2024], "img1.youm7.com": [18805], "rosso.me": [2024], "univie.ac.at": [17437], "www.appetize.io": [1146], "polylearn.calpoly.edu": [2764], "g0ga.ga": [2024], "f.fontdeck.com": [5969], "go.turnto10.com": [2024], "*.allyoucanarcade.com": [895], "www.n-somerset.gov.uk": [10898], "mtrtrvl.mx": [2024], "hacktivity.com": [20332], "scottish-country-cottages.co.uk": [18579], "rnapoli.info": [2024], "cz.zenmate.com": [18917], "gw.alicdn.com": [853], "cisneros.com.pe": [2024], "thinkpo.st": [2024], "online.cyberaces.org": [3949], "labs.sign-up.to": [14842], "merchant.xsolla.com": [18685], "svfcg.nl": [2024], "www.duiven.nl": [11172], "mechon-mamre.org": [10150], "ivacy.com": [8411], "idp.aalto.fi": [447], "www.fonticons.com": [5970], "timetable4.cuhk.edu.hk": [2704], "mdws.interiorsavings.com": [8249], "s.pothunter.net": [2024], "wetter.ml": [2024], "foxb.it": [2024], "fremont.webconsole.linode.com": [9401], "knightswarm.com": [8957], "cd-docdb.fnal.gov": [5741], "support.tango.me": [16009], "cheddar.wesbos.com": [18297], "mantas.loak.org": [2024], "front1.ulule.com": [17224], "tvoyu-mamu.friday.ru": [20175], "r24627513.sync.app.asana.com": [1265], "www.netdev01.org": [11260], "tabletm.ag": [2024], "r24822924.sync.app.asana.com": [1265], "engelschall.com": [5253], "www.hyperisland.com": [20456], "genome.gov": [17108], "paste.ubuntu.org.cn": [17174], "portal.zg.ch": [22061], "info.tiki.org": [16520], "phaser.io": [12646], "myem.us": [2024], "i.tippvet.com": [2024], "i.motorsport.bz": [2024], "goodsearch.com": [6814], "8tv8.cf": [2024], "sicuz.unizar.es": [17441], "910df9d9-c862-7986-d234-e0c03ceed8a0-rum.cdnvideo.ru": [19536], "gr.godaddy.com": [6755], "the.shpa.org.au": [2024], "emarketee.rs": [2024], "smp.difi.no": [4452], "jrdb.xyz": [2024], "icon.oxfordjournals.org": [12222], "cp-m.org": [2024], "ingn.it": [2024], "i2icc.co.uk": [2024], "hostcenter.com": [2172], "www.sopastrike.com": [5769], "notifications.roblox.com": [13980], "munzinger.de": [10743], "www.fukuchi.org": [6224], "gmwv.fr": [2024], "downstreamtoday.com": [4724], "jsi.ms": [2024], "bsg.blogs.bucknell.edu": [2406], "valleyfirstcu.org": [17621], "flipdw.com": [2024], "url.arnokrol.nl": [2024], "ba-l.co": [2024], "loma.la": [2024], "kvm-vps.com": [8771], "s.up-crest.org": [2024], "pdo.io": [2024], "t.9gag.com": [252], "mocf.ws": [2024], "configuration.apple.com": [1151], "id.3.boardgamearena.com": [2182], "www.sha2sslchecker.com": [14175], "www.bazl.admin.ch": [22061], "www.bve.ulaval.ca": [17319], "remezc.la": [2024], "www.codeforamerica.org": [3357], "www.tfsprays.com": [15873], "idahostateu.com": [2024], "erdt.plymouth.ac.uk": [12873], "kev.uno": [2024], "direct.binbank.ru": [1922], "site.ya.ru": [18716], "gsfn.us": [6970], "www.rca.org": [13461], "i9.buimg.com": [16509], "a.rad.msn.com": [9810], "kcvids.com": [8730], "lists.debian.org": [4263], "thrv.in": [2024], "static0.twilio.com": [16948], "content.newegg.com": [11356], "biglinux.com.br": [19374], "www.freeunlocks.com": [6110], "www.mbusa.com": [9735], "www.pubservice.com": [13265], "www.revbens.manchester.gov.uk": [9954], "tnc.io": [2024], "jbev.co": [2024], "hdigest.me": [2024], "share.confex.com": [3570], "www.jekkt.com": [8556], "mano.tele2.lt": [16134], "fs19.formsite.com": [20139], "analytics.performable.com": [12598], "cimbniaga.com": [2617], "*.launchpad.net": [9182], "edph.in": [2024], "bookings-streaming.sydney.edu.au": [22063], "www.westlandutrecht.nl": [18311], "int.debenhams.com": [19794], "iby2.duoshuo.com": [19906], "wiki.anidb.net": [1065], "theduffel.co": [2024], "www.alt.ac.uk": [1319], "rdstat.tanx.com": [22097], "25.mvd.ru": [21055], "sfacil.co": [2024], "bitbay.net": [1954], "7mnpep.com2.z0.glb.qiniucdn.com": [6476], "mauivaaircruise.com": [10095], "biomechanics.osu.edu": [11797], "barnesjewish.org": [1704], "www.woodtreeswing.com": [18509], "borgnet.link": [2024], "rev.al": [2024], "op.pf.nl": [2024], "nsem.us": [2024], "taganrog.startsmile.ru": [21980], "bmcmedicine.biomedcentral.com": [1931], "foodwatch.org": [5983], "www.howtoforge.de": [7580], "go.concat.us": [2024], "fitstre.am": [2024], "applications.contactatonce.com": [3609], "g.masslight.com": [2024], "fakedomains.accessnow.org": [503], "link.buyr.com": [2024], "gitlab.unizar.es": [17441], "frtd.eu": [2024], "forzad.in": [2024], "fund.monex.co.jp": [10583], "d2n.us": [2024], "www.ertos.nicta.com.au": [10962], "adbuyer.com": [621], "emc.force.com": [4921], "sfederation.intel.com": [8211], "gnda.energy.gov": [5243], "rna.to": [2024], "identity.stanford.edu": [15448], "2.xhcdn.com": [18605], "yelp.com.br": [22673], "www.bof.nl": [1564], "www.domainmarket.com": [4647], "massrelevance.com": [10057], "dlry.co": [2024], "3.wrbl.com": [2024], "news.jobs.nzz.ch": [21216], "rnd.hbsi.ph": [2024], "vyborg.startsmile.ru": [21980], "appserv6.admin.uillinois.edu": [17034], "www.register.bg": [13792], "go.awezome.com": [2024], "ernaehrung-per-klick.de": [10210], "fly.tdc.dk": [15862], "clicktoverify.truste.com": [15922], "georgetown.usembassy.gov": [22406], "nutritionreviews.oxfordjournals.org": [12222], "odb.acs.caltech.edu": [2771], "electrek.co": [5137], "www.mycommerce.com": [10798], "lxld.us": [2024], "necuhb.org": [11170], "abrown.me": [2024], "www.soundslice.com": [15234], "foldingcoin.net": [5962], "amyskolaut.com": [2024], "felveteli.mesterek.bme.hu": [1556], "cms.marketplace.org": [10026], "lvst.at": [2024], "www.sk.ru": [21845], "*.slsp.sk": [15039], "tampa.aclufl.org": [297], "reman.info": [2024], "jblk.us": [2024], "on.notjaya.com": [2024], "bepartne.rs": [2024], "testdrive.alfresco.com": [850], "tijs.co": [2024], "maxkitap.com": [10105], "ubuntu-fr.org": [17178], "e3wwwtestmobile.newegg.com": [11356], "www.sinaimg.cn": [14910], "learning.ausport.gov.au": [1425], "www.moodle.net": [10615], "icoco.us": [2024], "ttv.tv2.dk": [15945], "*.skimlinks.com": [14976], "l.drupal.vc": [2024], "www.askthe.police.uk": [19258], "pti.world": [2024], "stackedit.io": [21969], "ykrec.youku.com": [18804], "upland.illuminateed.com": [20494], "r.pilic.eu": [2024], "posteo.de": [13016], "aks.im": [2024], "ihelper.mts.ru": [21042], "febuv.de": [2024], "out.outlayer.it": [2024], "*.ryanair.com": [14110], "mail.dielinke-sachsen.de": [4447], "www.growingio.com": [20312], "vortexbox.org": [22498], "api.whatsbroadcast.com": [18332], "yjb.me": [2024], "cmascenter.org": [2638], "wtbl.link": [2024], "www.cloudpassage.com": [19625], "katm.me": [2024], "www.sebastianwick.net": [14520], "*.squarefree.com": [8570], "www.aaronbrotherscircular.com": [450], "tccne.ws": [2024], "biomedica.tocco.ch": [16600], "irap.oxfordjournals.org": [12222], "m.fotki.yandex.by": [18739], "bee.ma": [2024], "maklr.de": [2024], "east.play-asia.com": [12828], "s.cbmainz.de": [2024], "www.pviq.com": [13304], "wickford.co": [2024], "procurement.southend.gov.uk": [15261], "www.azet.sk": [1507], "u3.qiyipic.com": [13354], "aka-etl.decc.gov.uk": [19795], "begrp.co": [2024], "p2p.chbtc.com": [3041], "*.hhmi.org": [7577], "lannan.georgetown.edu": [6531], "ssl.a.xnimg.cn": [18673], "w.sunybroome.edu": [2382], "renrencaopan.com": [13831], "pro.btcc.com": [2400], "bge.me": [2024], "tcd.link": [2024], "dn.vapplive.com": [2024], "www.value-domain.com": [17627], "hs.fi": [7311], "www.leaderlandnews.com": [9214], "framakey.org": [6075], "localmotors.com": [20865], "static-web.last.fm": [9174], "www2.polskieradio.pl": [12932], "new.edit.bulkorder.ftc.gov": [5710], "maga.lu": [2024], "ludia.gg": [2024], "ajax.googleapis.com": [6823], "severouralsk.startsmile.ru": [21980], "careers.dyc.edu": [4088], "*.brooklinecollege.edu": [2380], "*.startssl.eu": [15472], "www.filenuke.com": [5778], "strato-hosting.co.uk": [14255], "lpr.st": [2024], "faisaly.id": [2024], "www.ebanking.hsbc.com.hk": [20427], "go.rully.net": [2024], "tshak.it": [2024], "svy.searchco.nl": [2024], "order.store.yahoo.co.jp": [18730], "hometab.boldchat.com": [2203], "fiksu.com": [5773], "0x41.no": [6], "fotd.me": [2024], "railn.ws": [2024], "torrentr.eu": [16654], "www.zohocorp.com": [18985], "images.betanews.com": [19359], "s.gavr.xyz": [2024], "support.web-hosting.com": [18140], "strangeremains.com": [22002], "ingsoc.tk": [2024], "shop.hrc.org": [7609], "www.boxuk.com": [2273], "gomixte.co": [2024], "www.sanet.me": [14135], "hartbro.com": [2024], "listat.effi.org": [5097], "epki.wosign.com": [18483], "pics.qxlstatic.no": [13342], "www.click4assistance.co.uk": [3243], "stats.ox.cx": [7646], "www.nae.edu": [11114], "services.social.microsoft.com": [10396], "planning.wakefield.gov.uk": [22518], "keksbude.net": [8857], "ongzh.com": [2024], "verified.capitalone.com": [2831], "emeajobs.oracle.com": [12116], "augi.astrobl.ru": [19264], "on.untp.it": [2024], "bcf.ch": [20683], "skt.la": [2024], "www.web4all.fr": [18148], "tiles.cdnst.net": [2571], "mnerd.co": [2024], "www.adsonar.com": [593], "linuxmonk.ch": [9447], "settrade.com": [14693], "29a.se": [2024], "pressflex.com": [13083], "www.assetstore.unity3d.com": [17310], "torea.co": [2024], "www3.djicdn.com": [4029], "nabconnect1.nab.com.au": [10905], "webmail.quickline.ch": [21566], "kaniv.mclaut.com": [20942], "scaleway.com": [14389], "reviews.play-asia.com": [12828], "doc.intercom.io": [8241], "bandv.us": [2024], "wesail.me": [2024], "help.basespace.illumina.com": [7971], "m.blogs.yandex.by": [18739], "wrapbootstrap.com": [18562], "blog.opendesktop.org": [21266], "s.utchy.jp": [2024], "go.tpo.us": [2024], "s0.pstatp.com": [16680], "www.pegasusdigital.de": [11867], "www.paulirish.com": [21359], "www.armscontrol.org": [19234], "nikn.ly": [2024], "docs.synapsepay.com": [22066], "n-aana.org": [11131], "s4.media.ft.com": [5810], "broadland.gov.uk": [19454], "*.la-hora.org": [17203], "pvdd.me": [2024], "gsdm.biz": [2024], "www.vodafone.co.uk": [17900], "go.sseverns.com": [2024], "sarov.beeline.ru": [1778], "blog.ibutsu.org": [20472], "*.wikispaces.com": [16182], "bwin.com": [7737], "mvpx.tv": [2024], "www.pirateparty.org.au": [12746], "kyshtym.startsmile.ru": [21980], "filtr.sonymusic.com": [15217], "cm.send.microad.jp": [10377], "showercounter.cypouz.com": [3979], "shopping.e2enetworks.com": [4856], "djamentis.link": [2024], "st7.gismeteo.ru": [6650], "nooelec.com": [11505], "oksend.me": [2024], "www.predb.me": [21482], "support.goldenfrog.com": [6798], "gta.curseforge.com": [3927], "target.mail.ru": [9891], "i.stda.vn": [2024], "p.noguwo.com": [2024], "phs.to": [2024], "data.discogs.com": [4529], "secretcon.com": [14532], "9.url.cn": [22399], "17o42b6z8n65q6nm0eme8nv95z13f7w28m39a2pk.ipleak.net": [20571], "sleqty.co": [2024], "www.med.hku.hk": [20387], "www.cal.net": [2739], "www1.va.gov": [17100], "*.woodgreenshop.org.uk": [18508], "www.t-engine.org": [15833], "univ-brest.fr": [17312], "compteperso.leboncoin.fr": [20796], "eut.cc": [2024], "shop.teac.com": [15870], "www.gimp.org": [20246], "goke.me": [6795], "media.badische-zeitung.de": [1632], "mrei.ch": [2024], "hakasiya.rt.ru": [13529], "lgn.io": [2024], "www.tinkoff.ru": [16552], "buy.stubhub.de": [15602], "rufc.co": [2024], "shopjw.co": [2024], "on.1170kfaq.com": [2024], "stout.in": [2024], "auth.mayday.us": [10117], "qxl.dk": [13340], "status-page-blog.herokuapp.com": [15503], "epic.tips": [2024], "resource.xiaomi.net": [18663], "snkhy.pe": [2024], "lk.tricolor.tv": [22287], "equinix-direct.equinix.com": [5322], "www.mynortonaccount.com": [11545], "interhyp.de": [8248], "h1.ifengimg.com": [20487], "c5.rgstatic.net": [13481], "jump.godeep.cc": [2024], "wfti.co": [2024], "gaug.es": [6978], "git.informatik.fh-nuernberg.de": [16239], "cbs.to": [2024], "www.support.whitepages.com": [18352], "secure.nationaljournal.com": [1342], "volute.asana.com": [1265], "adasa.info": [2024], "hightail.com": [7410], "to.lab701.nl": [2024], "ww2.sinaimg.cn": [14910], "gofor.cd": [2024], "hasanix.co": [2024], "moviefloss.us": [2024], "pluscontrollers.com": [3624], "gp-url.com": [2024], "do.de": [4640], "ws.assoc-amazon.co.uk": [1311], "snelis.com": [15097], "chemefacsrch.mit.edu": [9763], "www.assured.se": [19262], "cache.20minutes.fr": [94], "notfx.co": [2024], "www.benthamsgaze.org": [1811], "social.webtrends.com": [18264], "gblt.co": [2024], "muddypuddl.es": [2024], "lenobl.auto.ru": [19276], "www.rooof.com": [14018], "login.golem.de": [6804], "cabinet.auto.ru": [19276], "*.helpshift.com": [7309], "www.ditii.com": [3985], "redant.link": [2024], "community.chicagotribune.com": [3076], "www.pcp.ch": [12528], "sudact.ru": [22027], "www.sc2mapster.com": [3927], "media.ft.com": [5810], "atav.is": [2024], "vf.fifedirect.org.uk": [5764], "escwa.un.org": [17057], "danbooru.donmai.us": [19880], "acd.link": [2024], "mindma.de": [2024], "asjrny.net": [2024], "plnt.sv": [2024], "brookti.de": [2024], "www.synology.com.tw": [15802], "cfs1.gcaptain.com": [6289], "account.xbox.com": [18639], "prettymuch.it": [2024], "www.gradschool.utah.edu": [17374], "nightcode.info": [11435], "www.blah.im": [2075], "cemreg.us": [2024], "static.kurier.at": [9055], "atvc.ru": [19271], "pudmf.tk": [2024], "porh.me": [2024], "naytev.com": [11155], "greatdomains.com": [6889], "pmf.gov": [21443], "drrnmllr.com": [2024], "arak.ovh": [2024], "ii.techdirt.com": [16091], "m.rasp.yandex.com": [18742], "www.adultshopping.com": [697], "cname.aseaw.me": [2024], "www.booklog.jp": [2221], "file.pizza": [20089], "marketingsolutions.masslive.com": [10056], "obsdn.me": [2024], "pcskin.care": [2024], "nicks.im": [2024], "rdd.li": [2024], "mnnz.cc": [2024], "french.cotedivoire.usembassy.gov": [22406], "www.nrel.gov": [11095], "publichealthreviews.biomedcentral.com": [1931], "publit.as": [2024], "forums.pcbsd.org": [12247], "sync.1dmp.io": [77], "url.siwah.com": [2024], "seanmckaybeck.com": [14503], "tamingte.ch": [2024], "*.yuku.com": [18836], "call.stopwatching.us": [15555], "used-it.at": [2024], "smwrld.us": [2024], "yejik.ru": [2024], "lnk.mradder.com": [2024], "groups.google.com.*": [6821], "www.kinox.me": [20720], "jwurl.net": [2024], "torrentz.in": [16663], "www.mythtv.org": [10890], "tkksft.com": [2024], "tmoore.co": [2024], "zakird.com": [18875], "prizecat.ch": [2024], "www.wilhelmtux.ch": [22591], "speedworldgrafix.com": [15326], "go.ishelly.com": [2024], "r24616974.sync.app.asana.com": [1265], "adverta.in": [2024], "madbs.in": [2024], "developers.filepicker.com": [5787], "community.xe.com": [18599], "www.drivethrurpg.com": [11867], "itservices.usc.edu": [17366], "www.domainskate.com": [4650], "fhub.in": [2024], "slimstyle.me": [2024], "restud.oxfordjournals.org": [12222], "hotail.play-asia.com": [12828], "*.oculus.com": [11759], "resources.alibaba.com": [857], "bsfs.georgetown.edu": [6531], "www.govloop.com": [20297], "www.mathoverflow.net": [15424], "stagecdn.greatnonprofits.org": [6892], "12joycasino.com": [20654], "zenodo.org": [22714], "company.here.com": [7325], "rss.tocco.ch": [16600], "url.miko2.net": [2024], "poq.oxfordjournals.org": [12222], "marcm.me": [2024], "sochi.europaplus.ru": [20034], "*.kintera.org": [8926], "ups.xplosion.de": [18677], "www.pricegrabber.com": [13099], "www.dhs.gov": [4026], "www.gradle.org": [6867], "littlecms.com": [9489], "forum.mediatemple.net": [10177], "keys.mailvelope.com": [9907], "r.justinek.me": [2024], "bsv.co": [2024], "www.bookdepository.com": [2217], "potd.es": [2024], "tvicio.us": [2024], "www.dshield.org": [4078], "free10.beget.com": [19347], "kchd.co": [2024], "www.ecosia.org": [5055], "www.femtoduino.com": [5731], "registration.ymcastlouis.org": [18709], "www.helmholtz-berlin.de": [7301], "checkout.coinjar.com": [3397], "til.shop.dk": [2024], "nextgen.link": [2024], "www.exhaleprovoice.org": [5481], "www.ukfsn.org": [17040], "www.g2a.com": [6274], "media-touchdown.cursecdn.com": [3927], "www.jino.ru": [8589], "bulgaria.usembassy.gov": [22406], "developer.getcloudapp.com": [9387], "www.wj32.org": [18480], "offer.live": [2024], "account.netflix.com": [11269], "creditcards.citi.com": [3171], "s.purlllaw.com": [2024], "ldpaa.com": [2024], "blog.justgive.org": [8709], "forums.southwark.gov.uk": [15264], "ecco-jccs.oxfordjournals.org": [12222], "beta.dzone.com": [4090], "imu.my": [2024], "www.thalia.at": [16244], "www.itmb.nl": [7850], "domaintools.com": [4653], "bnds.in": [2024], "cardiffnetwork.cf.ac.uk": [2847], "assets1.sendgrid.com": [14638], "www.genges.com": [6505], "ddel.co": [2024], "go.abh.my": [2024], "bookkeeper.itunes.apple.com": [1151], "kostroma.europaplus.ru": [20034], "www.volgistics.com": [17916], "naughtydog.com": [11144], "www.7springs.com": [230], "jrnl.to": [2024], "uscyberchallenge.org": [17137], "t.iy.ag": [2024], "www.andrewmohawk.com": [19198], "podrobnosti.ua": [21447], "ab.co": [2024], "www.theappendix.net": [16322], "lk.eurenet.com": [2024], "btdigg.org": [1593], "otto.me": [2024], "links.yshome.me": [2024], "fandom.deals": [2024], "gigaom.com": [6626], "paste.proxy.sh": [13225], "mupb.us": [2024], "www.exposefacts.org": [5504], "jobs.sqcp.com": [2024], "www.edonorcentral.com": [4896], "privacyenforcement.net": [13135], "barnesandnoble.com": [1705], "www.ttip-stoppen.at": [15933], "1and1.co.uk": [71], "ctunnel.com": [2702], "horsesho.ws": [2024], "open.wien.at": [22588], "tba.stanford.edu": [15448], "www.familie.niedersachsen.aok.de": [376], "iwight.com": [7876], "univers-libre.net": [17316], "peteraba.com": [12622], "link.djdex.net": [2024], "gps.x5.ru": [18590], "cyberfret.com": [3960], "owk.li": [2024], "dev.dlvrit.com": [19855], "uet.li": [2024], "ednxt.co": [2024], "itspm.ag": [2024], "goat.bz": [2024], "www.disk42.com": [4550], "banking.postbank.de": [13007], "*.comparis.ch": [3515], "c.asbr.in": [2024], "lwllp.co.uk": [2024], "welder.link": [2024], "umu.si": [2024], "media.scmagazine.com": [21751], "sagecell.sagemath.org": [14300], "www.silverum.cz": [14867], "stats.matraxis.net": [20934], "its.myq.club": [2024], "cypouz.com": [3979], "www.jcrosoft.com": [8433], "uez.in": [2024], "chn.ge": [2024], "www.robertsspaceindustries.com": [13978], "calm.li": [2024], "widgets.awe.sm": [1486], "caradvice.com.au": [2840], "outletdesign.cz": [2024], "af.forobeta.com": [2024], "whcgjobs.co": [2024], "mvt.mcafee.com": [10129], "idox.cambridge.gov.uk": [19494], "go.berniesanders.com": [1826], "www.fusionforge.org": [6253], "prd-geo.imercer.com": [20502], "mixify.me": [2024], "www.spiil.org": [15344], "passport.alipay.com": [864], "crp.ovh": [2024], "www.reporter-ohne-grenzen.de": [13843], "wc2.ibx.com": [20473], "amitrad.it": [2024], "lifeshirts.co": [2024], "smrt.bz": [2024], "hcvb.us": [2024], "jlist.com": [8454], "grana.world": [2024], "silvamr.tk": [2024], "business.zenmate.com": [18917], "s1.cn.bing.net": [1925], "pages.emssoftware.com": [19990], "apps2.cardiff.gov.uk": [19509], "url.jimv.com": [2024], "www.site.biz.id": [7512], "ss2.bdstatic.com": [19339], "cn1.websitealive.com": [18242], "mpsa.co": [2024], "offlinemode.org": [11792], "regiobankadviseurs.nl": [13790], "docs.google.com": [6818], "pro.whitepages.com": [18352], "s.x-mr.com": [2024], "www.olcf.ornl.gov": [11730], "l.alvarosc.com": [2024], "pinknews.co.uk": [12725], "talam.co": [2024], "bit.jbjs.org": [2024], "creditindication.business.hsbc.co.uk": [20422], "subscribe.swatmag.com": [22059], "www.icecat.biz": [7912], "bl.mts.ru": [21042], "002.img.pu.sohu.com.cn": [15170], "accounts.wired.com": [18454], "lupintees.net": [2024], "mattwilcox.net": [10093], "*.linguee.it": [9390], "wichmann.indymedia.org": [8090], "www.pace2race.com": [12340], "a.olm.tw": [2024], "elitedai.ly": [2024], "cfx.ws": [2024], "mapfan.to": [2024], "www.glimmerblocker.org": [6691], "portaltransparencia.unizar.es": [17441], "ca-fr.norton.com": [11545], "portal.egisz.rosminzdrav.ru": [21674], "liquid.piratenpartei.at": [12754], "ssl17.ovh.net": [12205], "webmail.impulse.net": [8025], "concierge.apple.com": [1151], "malwarebytes.org": [9941], "www.bbl.admin.ch": [22061], "www.nwswimshop.com": [11543], "www.novoed.com": [11570], "lnstgrarm.com": [2024], "cosmicopia.gsfc.nasa.gov": [10909], "jobs.chichester.gov.uk": [19579], "inmb.mx": [2024], "www.entroware.com": [5289], "btcmedia.org": [1591], "kostromskaya-obl.beeline.ru": [1778], "www.blocket.se": [2109], "porlaputa.com": [12970], "www.sysdig.com": [22071], "playfree.96.lt": [2024], "vang.mx": [2024], "img.mail.ru": [9891], "to.leglise.ca": [2024], "www.itau.com.br": [8399], "playgroundne.ws": [2024], "www.ekiga.net": [5118], "kemerovo.biglion.ru": [19375], "www.1pipfix.com": [63], "www.torrentz.site": [22250], "thinkmobile.appcelerator.com": [1144], "casop.xyz": [2024], "zcrm.us": [2024], "groupon.com": [6953], "chvc.us": [2024], "thepiratebay.immunicity.win": [21524], "cinto.schmidtcom.de": [14419], "sidebar.golem.de": [6804], "syspectr.com": [15822], "powweb.com": [13033], "olx.pt": [11824], "u.cfdp.dk": [2024], "hillingdon.firmstep.com": [20109], "www.southend-on-the-move.org.uk": [21910], "ssl.x5.ru": [18590], "www.sensic.net": [11620], "artcoordination.aalto.fi": [447], "vdv.de": [17564], "bobcares.com": [2189], "blanqi.me": [2024], "m5s.info": [2024], "via.dj": [2024], "*.datstathost.com": [4162], "codecentric.de": [3360], "cass.io": [2024], "heyeddie.me": [2024], "i.aaxs.org": [2024], "brdy.in": [2024], "umd2.mycdn.me": [10866], "torqu.es": [2024], "travel.visa.com": [17846], "webapps01.un.org": [17057], "www.fsrwiwi.htwk-leipzig.de": [7596], "zane.ga": [2024], "m.ke.imhd.sk": [8004], "login.trustwave.com": [16870], "forum.adium.im": [649], "s3.music.126.net": [40], "my-radio.europaplus.ru": [20034], "2www.ipleak.net": [20571], "kabel.canaldigital.no": [2817], "seb4.net": [2024], "unrl.me": [2024], "l.einar.me": [2024], "i.warketing.cl": [2024], "brrt.co": [2024], "email.play-asia.com": [12828], "vm.ag": [17891], "www2.atomicorp.com": [1355], "bngeni.us": [2024], "g.tbcdn.cn": [16047], "designova.net": [4376], "url.nucafl.org": [2024], "supporterz.jp": [15704], "givingprograms.com": [6673], "forms.canonical.com": [2823], "ngvpn36.nvidia.com": [11022], "m.plangrade.com": [2024], "esetnod32.ru": [4948], "dudley.greenparty.org.uk": [6908], "dell.to": [2024], "northeastjobs.org.uk": [21157], "panel.kei.pl": [8856], "r24616694.sync.app.asana.com": [1265], "emunewz.net": [5216], "ulthar.pw": [2024], "bmcfampract.biomedcentral.com": [1931], "aldi.com.au": [357], "www.meraki.com": [10294], "assets.adobedtm.com": [674], "www01.wdr.de": [18113], "www.ourbay.xyz": [21524], "www.turntonetworks.com": [16914], "allbas.es": [2024], "www.feralinteractive.com": [5738], "uni-ulm.de": [22368], "duran.io": [2024], "developer.mulesoft.com": [10729], "daxinganling.jd.com": [8434], "wykop.pl": [18577], "1gn.in": [2024], "p4p.alibaba.com": [857], "www.niveusluna.org": [9679], "core-staging.mtree.mycelium.com": [21063], "nymity.ch": [11637], "hbnk.org": [2024], "hao.1688.com": [51], "wayf.switch.ch": [15762], "garr.in": [2024], "www.bluemountain.com": [2156], "sprmar.io": [2024], "brbs.co": [2024], "telushealth.com": [16174], "business2.comcast.com": [3462], "esf.link": [2024], "g.4thepf.com": [2024], "g4.hitravel.xyz": [2024], "lyle.ly": [2024], "action.mathtag.com": [10083], "csj.news": [2024], "noris.net": [11523], "kjll.cm": [2024], "s10.postimg.io": [13024], "kaazing.com": [8774], "flict.it": [2024], "www.bnymellon.com": [19420], "seeedstudio.com": [14615], "antiblock.valdikss.org.ru": [22423], "www.smackcoders.com": [15045], "www.apricorn.com": [1170], "www1.theladbible.com": [22158], "hamradioscience.com": [7168], "cleg.us": [2024], "www.codepoet.com": [19638], "madgr.co": [2024], "decor.eik.bme.hu": [1556], "e.pxlrmpg.com": [2024], "support.amara.org": [956], "www.mathiasbynens.be": [10080], "go.vrelk.com": [2024], "donottrack-doc.com": [4600], "natty.us": [2024], "bg.rbth.com": [21596], "v3.moodys.com": [21020], "cherepovets.beeline.ru": [1778], "doi.crossref.org": [3812], "review.udacity.com": [17193], "secure10.pipni.cz": [12287], "vladikavkaz.europaplus.ru": [20034], "universalenroll.dhs.gov": [4026], "www.bsidesslc.org": [1574], "vnydarts.us": [2024], "store.xfinity.com": [22650], "o.ouileo.com": [2024], "1nk.it": [2024], "wind.st": [2024], "www.victorinox.com": [17761], "www.pony.fm": [12942], "my.screenname.aol.com": [380], "pictwiittcr.com": [2024], "fiction.libgen.pw": [9317], "gdnrs.cafe": [2024], "static4.wonderwall.com": [18502], "payment.lightreading.com": [20837], "s.bewetravel.pl": [2024], "advancement.umd.edu": [17351], "review.openstack.org": [12011], "fs21.formsite.com": [20139], "lxm.cc": [2024], "autodiscover.cs.berkeley.edu": [17329], "ligman.me": [2024], "allcrypt.com": [876], "*.de-cix.net": [4013], "scf.alfabank.ru": [849], "warwickshire-consult.objective.co.uk": [21225], "name.com": [11056], "leef.to": [2024], "git.llvm.org": [9103], "img2.eadaily.com": [19929], "ftbll.co": [2024], "sumo.com": [22029], "br.de": [1566], "hi.oxforddictionaries.com": [12223], "customers.percona.com": [12589], "go.alexvt.nl": [2024], "ic.hkuspace.hku.hk": [20387], "globalvoicesonline.org": [6716], "ci.usembassy.gov": [22406], "ay.gy": [577], "nt.md": [2024], "docs.zoho.com": [18984], "vinumeris.com": [17810], "petemargot.me": [2024], "amil1.play-asia.com": [12828], "morchkov.com": [2024], "www.enter.ru": [20002], "www.cablesurf.de": [2720], "rnmkr.me": [2024], "www.criticalmuslim.org": [3801], "btbr.ca": [2024], "www.linear.com": [9385], "plantsolution.de": [12813], "*.inwx.com": [8230], "*.our-hometown.com": [12174], "bekir.ga": [2024], "login.virginmedia.com": [17822], "images.icecat.biz": [7912], "www.pauldotcom.com": [12493], "www.alternativeto.net": [934], "mail.stoloto.ru": [21996], "jar.in.ua": [2024], "sellb2b.com": [2024], "adminnationalcareersservice.direct.gov.uk": [4519], "ln-x.com": [2024], "pro.syncsearch.jp": [15796], "jimc.biz": [2024], "m.tatry.imhd.sk": [8004], "url.aziz.pw": [2024], "admin.hosts.co.uk": [7552], "appseccalifornia.org": [1164], "supporthtml.oracle.com": [12116], "mobiepaper.apps.welt.de": [18290], "chernogorsk.startsmile.ru": [21980], "travelga.me": [2024], "fimc.net": [10175], "ivanovo.tpprf.ru": [22260], "delivery.o.switchadhub.com": [15764], "www.randombit.net": [21578], "grp03.id.rakuten.co.jp": [13594], "wallet.bitcoinchain.com": [19387], "tdy.sg": [2024], "think.usc.edu": [17365], "grcgrp.co": [2024], "100pu.re": [2024], "eat.ch": [4860], "bbs.freech.net": [20156], "tk.1688.com": [51], "stateoftheinternet.com": [15487], "pilgrimagesoftware.com": [12705], "www.hubic.com": [7601], "www.carrefoursa.com": [2872], "icecat.biz": [7912], "www.1431am.org": [45], "www.parrot.org": [12444], "support.digiguide.tv": [19835], "ssl.ncsu.edu": [11531], "writ.rs": [2024], "lws.gsfc.nasa.gov": [10909], "med.news.am": [21124], "t41.ru": [2024], "www.orchiddiva.com": [12129], "*.grinnell.edu": [6938], "vansso.harland.net": [7199], "www.greenpeace.de": [6919], "gmnfbk.de": [2024], "stat.onestat.com": [11883], "frontr.co": [2024], "freemovement.org.uk": [6120], "slhr.hk": [2024], "t.web.tn": [2024], "data.miasto.payback.pl": [21363], "tante.cc": [16012], "mediaportal.unicef.org": [17069], "www.lurkmore.ru": [9683], "portal-qa1.threatmetrix.com": [16467], "hd.lanbilling.ru": [20775], "deciso.com": [19797], "app-de.resrc.it": [13659], "stedebroec.nl": [11172], "s.dtsn.me": [2024], "aea.se": [730], "nz.imhd.sk": [8004], "rockpapershotgun.com": [13991], "maps.westlancs.gov.uk": [22567], "selfserve.havant.gov.uk": [20347], "dulin.me": [2024], "link.myfox8.com": [2024], "tunnelbroker.net": [16905], "kwiz.li": [2024], "keepsthelightson.vpsboard.com": [17952], "www.lincstothepast.com": [9381], "cloudcoach.me": [2024], "jingmen.jd.com": [8434], "revolvermaps.com": [21643], "ar.udacity.com": [17193], "www.newclimateforpeace.org": [11343], "piv.al": [2024], "za.firis.de": [2024], "l.zangha.com": [2024], "www.gavick.com": [20209], "forgottenlands.eu": [6016], "infobox.ru": [8109], "consult.barnsley.gov.uk": [19318], "pro-far.it": [2024], "signalvnoise.com": [21825], "bzzq.co": [2024], "w6.ab.ust.hk": [22412], "rehabmedicine.georgetown.edu": [6531], "freemail.web.de": [18146], "bi.insydeit.com": [2024], "sila.rg.ru": [21646], "osetinskie-pirogi.cdnvideo.ru": [19536], "technologypartner.visa.com": [17846], "exchange.dnv.com": [4065], "worksthatwork.com": [18535], "wa.ui-portal.de": [17026], "res-3.cloudinary.com": [3306], "der-preis-jaeger.de": [4365], "s.aioria.jp": [2024], "developer.subscriptiongenius.com": [15629], "zm.usembassy.gov": [22406], "thelocal.ch": [22163], "rvve.in": [2024], "www.multistre.am": [21049], "lambeth.greenparty.org.uk": [6908], "smthfldfds.co": [2024], "tnsne.ws": [2024], "images3.bovpg.net": [2269], "www.omarandwill.com": [11827], "cpxl.golem.de": [6804], "biostatistics.oxfordjournals.org": [12222], "cdn.trend.az": [22281], "sss.gov": [17105], "quote.ms": [2024], "www.myshaklee.com": [14715], "vladikavkaz.beeline.ru": [1778], "cent.lu": [2024], "sandsmedia.com": [14273, 14274], "lagi.sale": [2024], "www.federalreserve.org": [5707], "www.bloomingtonfools.org": [6089], "wegohealth.com": [18276], "ctc.hku.hk": [20387], "www.marmotte.net": [10036], "gerrit.beaker-project.org": [1756], "d.calameo.com": [2748], "www.gettyimages.pt": [6604], "teessi.de": [2024], "pictures.escapia.com": [20016], "libreofficebox.org": [9328], "kbord.me": [2024], "spokane.wustl.edu": [18089], "yuntian.cnblogs.com": [19631], "*.dating.superforum.org": [14698], "s125.cnzz.com": [3328], "strea.mr": [2024], "barclays.co.uk": [1688], "citaco.es": [2024], "crissp.poly.edu": [12933], "www.solanolabs.com": [21895], "www.adreclaim.com": [19087], "nine.ch": [11452], "m.openbank.ru": [21267], "service.avm.de": [1478], "cvip.in": [2024], "monster-wow.com": [10604], "on.fhei.org": [2024], "aspirationtech.org": [1297], "www.aolplatforms.com": [384], "content.sharethrough.com": [14742], "kundencenter.telekom.de": [4397], "enetbanking.hdfcbank.com": [7249], "go.bleam.co.uk": [2024], "sportifik.com": [15360], "mail.rsc.org.uk": [13517], "www.webarch.net": [18204], "dnav.cms.gov": [19630], "www.redbullmobile.at": [13730], "*.eucalyptus.com": [5387], "casanaranja.squat.net": [21955], "239r.tk": [2024], "*.halifax.co.uk": [7163], "link.aev.su": [2024], "tri.nity.me": [2024], "autodiscover.earth.leeds.ac.uk": [17403], "bannon.me": [2024], "forms.brent.gov.uk": [2324], "ecn.t5.tiles.virtualearth.net": [17840], "myaccount.primus.ca": [13112], "forensischinstituut.nl": [11172], "madeinafreeworld.com": [9855], "cultura.elpais.com": [5126], "pay.a-3.ru": [258], "pjh.link": [2024], "my.oracle.com": [12116], "lam.norton.com": [11545], "intouch.pichesky.ru": [21405], "kunk.org": [10989], "beta.works": [2024], "ratingsportal.food.gov.uk": [20132], "bsr.life": [2024], "toppro.tv": [2024], "sldvs.uic.edu": [17321], "ergoba.by": [2024], "delivery.com": [4315], "www.davidgold.co.uk": [4214], "postmaster.xmission.com": [18621], "news.uic.edu": [17321], "cdn-sec.optmd.com": [12099], "dailym.ai": [2024], "www.cryptonetwork.com": [3854], "lobik.es": [2024], "*.piraten-partei.ch": [12314], "sforce.co": [2024], "www.cryptoseal.com": [3857], "pix01.revsci.net": [13897], "southsudan.usembassy.gov": [22406], "harbour.jolla.com": [8636], "cereproc.com": [2971], "content.prnewswire.com": [12317], "westwilts.greenparty.org.uk": [6908], "*.gameological.com": [6413], "www.anibis.ch": [19200], "nouveauxfrancais.cfjlab.fr": [2604], "technor.ms": [2024], "www.ppcw.osu.edu": [11713], "amyrose.org": [2024], "developer.axosoft.com": [1504], "ideal.jobs": [2024], "pbx.spnet.ru": [21939], "noleav.es": [2024], "*.ytimg.com": [18800], "epn.mx": [2024], "sacent.co": [2024], "wordville.me": [2024], "surp.co": [2024], "kingston.greenparty.org.uk": [6908], "b.blackpier.com": [2024], "translate.yandex.com.tr": [18740], "safariflow.com": [14285], "*.advertstream.com": [708], "*.mayoclinic.org": [10119], "hupstream.com": [7630], "www.jacoblangvad.com": [8498], "tuv.com": [3626], "t11.tv": [2024], "j.kashiken.net": [2024], "www.afeld.me": [19102], "platt.guru": [2024], "yumbl.es": [2024], "sslvpn.x5.ru": [18590], "infobaselistexpress.com": [563], "bst7.gismeteo.ru": [6650], "cdn03.animenewsnetwork.com": [19201], "archive.wizards.com": [18477], "cdn.oreillystatic.com": [11698], "morphis.com": [10638], "cdn.mobify.com": [10532], "www.ipchicken.com": [20567], "bits.debian.org": [4263], "appt.fr": [2024], "image.infoseek.rakuten.co.jp": [13594], "esac.osu.edu": [11797], "shaunlorrain.com.au": [14747], "web-coach.at": [2024], "academy.sciencealert.com": [21749], "community.jivesoftware.com": [8598], "www.httpsnow.org": [4901], "www.mdapplicants.com": [9746], "poc.fyi": [2024], "images.futurezone.at": [6263], "www.chocolatfrey.ch": [3100], "es.gamigo.com": [6426], "wodc.nl": [11172], "support.kaspersky.ru": [8821], "lynn.so": [2024], "si3.rgstatic.net": [13481], "cfinewine.com": [2024], "maclaur.in": [2024], "airbnb.co.kr": [793], "metrics.ikea.com": [7962], "customers.reuters.com": [13893], "ntchosting.com": [11000], "www.coinmarketcap.com": [19643], "lists1.mail.ruhr-uni-bochum.de": [14086], "exposure.mobi": [2024], "www.bikeability.org.uk": [19376], "www.cip.ikea.com": [7962], "kbne.ws": [2024], "datalogix.com": [4194], "3dsupply.de": [172], "ai.taobao.com": [16015], "thegearhunter.co.uk": [16357], "stackcommerce.com": [15426], "yndl.co": [2024], "marketplace.constantcontact.com": [3594], "tshon.com": [2024], "mchl.ws": [2024], "plymouth-consult.objective.co.uk": [21225], "gator880.play-asia.com": [12828], "browhaus.nyc": [2024], "stream1.ml": [2024], "lists.parabolagnulinux.org": [12413], "nquaye.me": [2024], "50000.majordomo.ru": [9914], "www.trinityfi.org": [16813], "canaan.nets.hk": [2024], "i.tvit.cz": [2024], "geoservice.curse.com": [3927], "stratechery.com": [15576], "w.danielpaz.net": [2024], "www.digitalforensicsmagazine.com": [4473], "trev.pl": [2024], "dovetailservices.com": [4715], "nchinc.biz": [2024], "aircargoworld.com": [16999], "www.zoum.ca": [18856], "*.www.cadsoft.de": [2725], "go.es.io": [2024], "dfc.to": [2024], "apidocs.mailchimp.com": [9893], "urls.colearn.be": [2024], "voys.nl": [17949], "scs-assets-cdn.vice.com": [17754], "gbh.ag": [2024], "www.hexplo.it": [7383], "www.mexbt.com": [10146], "media.sundance.tv": [22032], "*.media6degrees.com": [10163], "jolyn.us": [2024], "eugene.kaspersky.com": [8820], "optmzpr.me": [2024], "labs.parabola.nu": [12412], "publicapps.oxfordshire.gov.uk": [21327], "roadworks.org": [21660], "assets.filemobile.com": [5786], "c.amazon-adsystem.com": [958], "deepsec.net": [4284], "gamehou.se": [2024], "www.ticketdriver.com": [16489], "earlyyears.valeofglamorgan.gov.uk": [17619], "imap-02.ct.infn.it": [7771], "api.coderwall.com": [3377], "thumb.mais.uol.com.br": [17079], "www.coastdigital.co.uk": [3336], "nclr.tv": [2024], "encase.com": [6988], "click.simba.taobao.com": [16015], "apache.pastebin.ca": [12477], "myaccount.n-somerset.gov.uk": [10898], "go.iamlee.ch": [2024], "gocarolinas.us": [2024], "www.dental.uw.edu": [17156], "www.fazekas.hu": [5686], "babol.at": [2024], "advncd.st": [2024], "severskaya.tpprf.ru": [22260], "endv.co": [2024], "ucsb.imodules.com": [7766], "carenet.fnfismd.com": [5949], "wings.buffalo.edu": [17382], "opac.alpenverein.de": [19159], "netfox.ru": [11271], "shoptiques.com": [14792], "api.emojione.com": [5202], "310ei.info": [2024], "groups.io": [6959], "www.islamhouse.com": [8368], "holidays.cathaypacific.com": [2913], "img-hw.xvideos.com": [22660], "m.kfc.ru": [20707], "squat.gr": [21954], "www.playonlinux.com": [12830], "cir.ca": [3156], "4nd.de": [2024], "www.btckan.com": [1584], "stage.mbusa.com": [9735], "myheritage.no": [10875], "myheritage.nl": [10875], "glassdoor.com": [6683], "doig.net.au": [2024], "url.scott.ws": [2024], "svn.re": [2024], "playmates.com": [12846], "bitly.srwz.us": [2024], "so.awe.sm": [1486], "youla.io": [22689], "alex.dojotoolkit.org": [4630], "red-dove.com": [13717], "gju.st": [2024], "blogdomello.co": [2024], "*.norid.no": [11522], "cdn.postovoy.org": [21471], "beacon.savingscatcher.walmart.com": [18059], "community.grid.hku.hk": [20387], "l.h4s.club": [2024], "r24820188.sync.app.asana.com": [1265], "dngdng.net": [2024], "myc.ph": [2024], "oae.stanford.edu": [15448], "dnt.twimg.com": [16949], "midog.net": [2024], "plld.co": [2024], "sheets.alhur.es": [19137], "infotomb.com": [8106], "www.bit.nl": [1549], "go.bingoal.be": [2024], "adagio.com": [605], "quotebot.tokenly.com": [22229], "fool.com.au": [10654], "images.cheezburger.com": [3060], "mediaed.org": [10165], "www.virwox.com": [17816], "advertising.paypal.com": [12500], "g02.t.alicdn.com": [853], "assets.crucial.de": [3828], "www.rd.io": [13655], "www.kommaer.dk": [8976], "realmedia.channel4.com": [3009], "www.criticalmuslim.com": [3801], "s.aimerci.in": [2024], "ssl-i.cdn.openx.com": [12028], "kyzyl.beeline.ru": [1778], "burp.renderfarming.net": [13827], "satoshidice.com": [14363], "etf.as": [2024], "blog.hubspot.com": [7599], "froy.co": [2024], "web2.login.cornell.edu": [3676], "chatbot.link": [2024], "www.approach0.xyz": [19217], "sunglasswarehouse.com": [15666], "cpsc.co": [2024], "lbo-news.com": [20788], "graph.renren.com": [13830], "accounts.apigee.com": [1124], "dmp.theadex.com": [16400], "git52.rostrud.ru": [21677], "www.zdtronic.com": [18849], "adslabs.bingads.microsoft.com": [10396], "2fwww.play-asia.com": [12828], "stork.eid.lt": [5109], "cospar-assembly.org": [2655], "bilibili.biligame.com": [1903], "cme.stanford.edu": [15447], "gettyimages.se": [6604], "r-itx4.sascdn.com": [15049], "3.cn": [135], "new-nations.net": [11335], "ilpo.st": [2024], "t3.io": [15843], "sejr.nl": [2024], "imagepics.co": [2024], "via.parithi.com": [2024], "forgeworld.co.uk": [20137], "ccuo.co": [2024], "litsupp.guru": [2024], "omron.com": [11843], "q.s2node.com": [2024], "rss.golem.de": [6804], "cdn.bizible.com": [19395], "go.ociru.net": [2024], "www.swissdigicert.ch": [15761], "sharedvalue.org": [14735], "miasto.payback.pl": [21363], "support.sharethrough.com": [14742], "be.contentful.com": [3616], "bdha.co": [2024], "www.ikk-gesundplus.de": [7752], "learn.uvm.edu": [17154], "fisd.westminster.gov.uk": [18315], "purplecrush.net": [2024], "tag.yieldoptimizer.com": [18776], "my.rarus.ru": [21585], "tubep.ro": [2024], "condor.com": [3564], "d1g1tl.space": [2024], "websvn.kde.org": [8735], "gftrib.com": [2024], "www.ubuntu-fr.org": [17178], "ftrclss.ca": [2024], "www.expandedsupport.com": [5491], "t7.io": [2024], "www.aic.cuhk.edu.hk": [2704], "thekitc.hn": [2024], "*.australia-unsc.gov.au": [1405], "bmp.social": [2024], "www.mediacru.sh": [10183], "kylebj.us": [2024], "nst.bz": [2024], "www.schijndel.nl": [11172], "enrol.kirklees.gov.uk": [8929], "my.lsu.edu": [9630], "on.cr25.uk": [2024], "buywh.at": [2024], "pay.netverify.com": [11297], "blogs.unicef.org.uk": [17068], "patriotssuperbowl.us": [12491], "jay.tools": [2024], "on.lapakko.com": [2024], "www.is-its.org": [8357], "*.malwaretracker.com": [9939], "30.mvd.ru": [21055], "alkutubcafe.com": [19144], "bmcdermatol.biomedcentral.com": [1931], "www.netzpolitik.org": [11318], "dewa.rs": [2024], "berkonl.in": [2024], "mi.sviaz-bank.ru": [15740], "blogbr.ashleymadison.com": [1277], "data.highways.gov.uk": [20376], "passport.everydayhero.com": [5444], "x.annihil.us": [1073], "itv.com": [7856], "ctkarch.org": [19739], "sypadelai.de": [2024], "engineering.linode.com": [9401], "www.atmail.com": [1350], "cp.beget.com": [19347], "jobcloud.ch": [20646], "rex.to": [2024], "accounts.surfeasy.com": [15714], "yrj.legal": [2024], "go.dmuth.org": [2024], "www.zenmate.hu": [18917], "atmos.illinois.edu": [17346], "l.kchoptalk.com": [2024], "pay.gov": [12498], "th4nk.ml": [2024], "moto.zr.ru": [22725], "www.curse.com": [3927], "www.zenmate.hk": [18917], "spogo.io": [2024], "payments.amazon.de": [19174], "junkyard.ly": [2024], "od-api.oxforddictionaries.com": [12223], "anse.rs": [2024], "mullet.se": [10730], "stats.nic.cz": [11418], "s.ixq.com.tw": [2024], "www.lotto.de": [9623], "statistiky.cesky-hosting.cz": [19553], "m.fotki.yandex.kz": [18743], "*.duke.edu": [4792], "secure1.tagonline.com": [15849], "to.semiotica.jp": [2024], "springboard.fastspring.com": [5666], "paie.state.gov": [17146], "eric.ly": [2024], "partner.just-eat.no": [20671], "bbhelp.cit.cornell.edu": [3676], "endchan.xyz": [5235], "gq-magazine.co.uk": [6355], "bogota.usembassy.gov": [22406], "dg54.mycdn.me": [10866], "dotmailer.com": [4690], "www.elearning.homeoffice.gov.uk": [20399], "onemonth.com": [11888], "macports.org": [9836], "www.arteradio.com": [19239], "wiht.link": [2024], "andym.im": [2024], "rosbank.ru": [21671], "descience06.carbonmade.com": [2844], "www.piwik.univention.de": [17315], "vpic.video.qq.com": [13329], "apps.ipswich.gov.uk": [8348], "filetrip.net": [5781], "konami.com": [8985], "flixbus.cz": [5911], "b1-link.de": [2024], "flixden.com": [5912], "www.mcwhirter.com.au": [10136], "www.wishmich.org": [9915], "*.bennetts.co.uk": [1810], "ui.aggregateknowledge.com": [770], "www.dialogic.com": [19829], "l.euri.ca": [2024], "cloudworks.nu": [3296], "cao.stanford.edu": [15448], "static.thefullsignal.com": [6232], "gockel.me": [2024], "cwf.staticcache.org": [15496], "www.democrats.org": [4338], "kb-api.cnblogs.com": [19631], "3.vgc.no": [17569], "uat2.aastocks.com": [19037], "w.lcrga.com": [2024], "api.asana.com": [1265], "*.ahcdn.com": [19114], "kommaer.dk": [8976], "bitcoinfoundation.org": [2005], "ourbay.xyz": [21524], "www.pamconsult.com": [12381], "www.youtube.bg": [18800], "www.nordichardware.com": [11511], "includes.okccdn.com": [11807], "*.adsrvmedia.com": [686], "login.postini.com": [13025], "dsum-sec.casalemedia.com": [2880], "rcort.es": [2024], "tailgatersparking.com": [15977], "pdftoword.com": [12267], "www.hdfury.com": [7036], "bitmissile.com": [1965], "www.londonstockexchange.com": [9589], "zzinsi.de": [2024], "www.magnetsearch.net": [22174], "webmail.names.co.uk": [11064], "myresumeagent.com": [10824], "nicola.xyz": [2024], "xfce-help.org": [18601], "www1.umn.edu": [17356], "ooda.com": [11687], "gtrc.biz": [2024], "url.vorst.co": [2024], "gorno-altaysk.beeline.ru": [1778], "plantmethods.biomedcentral.com": [1931], "ideasm.co": [2024], "fastpiratebay.eu": [22174], "fu.io": [2024], "www.maxcdn.com": [10102], "shrt.webdots.at": [2024], "announce.ft.com": [20183], "www.magazin.io": [9863], "ilogo.in": [7758], "www.quotemedia.com": [13430], "api.facebook.com": [5609], "stc.tc": [2024], "www.msn.com": [9810], "warez-bb.org": [18072], "msmas.mx": [2024], "www.bluemle-neubrunn.de": [2167], "developers.bitinvest.com.br": [2019], "spreadshirt.at": [15371], "sp4.us": [2024], "keepkey.com": [20702], "mspinsider.co": [2024], "dev.w3.org": [17980], "dnscurve.org": [4054], "dutch.belgium.usembassy.gov": [22406], "jilin.jd.com": [8434], "kkarim.co": [2024], "twtpoll.com": [16973], "*.photoprintit.com": [12679], "www.tns-counter.ru": [16595], "eastdevon.greenparty.org.uk": [6908], "www.munzinger.de": [10743], "hrg.ms": [2024], "filmkult.refresher.sk": [13781], "domain-dns.com": [4639], "quintusmkg.ca": [2024], "sso.svyaznoy.ru": [22053], "openclassrooms.com": [11964], "secure.gettyimages.in": [6604], "interlan.se": [8251], "status.acuityscheduling.com": [558], "secure.glad.org": [6319], "secure.gettyimages.ie": [6604], "compass-ssl.xbox.com": [18639], "forum.musixmatch.com": [10758], "labconnect.wustl.edu": [18089], "ekomi.co.*": [4913], "license.psoft.net": [12991], "secure.gettyimages.it": [6604], "bycraft.cz": [2498], "embed.spotify.com": [15367], "way.in": [2024], "r.ijustin.hk": [2024], "www.topuniversities.com": [22240], "gattutor.us": [2024], "islamedia.id": [8375], "www.bnf.org": [2359], "thechangelog.com": [16333], "accountkiller.com": [514], "rtky.co": [2024], "play.podtrac.com": [21448], "loopiasecure.com": [9616], "bdsphoto.co.uk": [2024], "chart.weibo.com": [18278], "www.miapple.me": [10362], "academicimpact.un.org": [17057], "oez.49gov.ru": [187], "people.xiph.org": [18667], "www.sundance.tv": [22032], "accountsupport.com": [515], "l.gocdkeys.com": [2024], "en.mvd.ru": [21055], "petrozavodsk.beeline.ru": [1778], "linkomanija.net": [9394], "20khz.gizmodo.com": [6677], "s.bsk.im": [2024], "www.bud.tid.gov.hk": [7069], "*.moddb.com": [10552], "steverei.ch": [2024], "theads.me": [16401], "zuno.eu": [18861], "blogs.netapp.com": [11221], "blog.acsf.cornell.edu": [3676], "urac.org": [17095], "bev.click": [2024], "bcaws.aviationweather.gov": [19285], "www.es.gy": [5341], "autodiscover.oaklands.ac.uk": [21221], "jogos.zwame.pt": [19025], "shop.btcs.com": [1585], "hobsons.com": [20389], "www.datacell.is": [4169], "m.yandex.ua": [18747], "hed.vg": [2024], "www.paetec.com": [12236], "rpa.life": [2024], "www.tinkersoup.de": [16550], "dungnv173.visualstudio.com": [17872], "beta.mining.bitcoin.cz": [10463], "tnkg.tk": [2024], "www.traviscistatus.com": [16776], "www.dave.org.uk": [3999], "city.xiaomi.cn": [18661], "jordan.usembassy.gov": [22406], "training.drweb.com": [4776], "geef.nl": [6471], "registration.ft.com": [5810], "bmcgenet.biomedcentral.com": [1931], "support.play-asia.com": [12828], "packetstormsecurity.com": [12346], "r24617005.sync.app.asana.com": [1265], "www.librarycatalogue.northamptonshire.gov.uk": [21156], "money.us": [2024], "www.mitls.org": [10363], "pypy.org": [10309], "revolversweeper.com": [21644], "spiritsnj.co": [2024], "p4.xyx.hao123img.com": [20340], "fxp.co": [2024], "ssl0.ovh.net": [12205], "pt.crowdin.com": [3823], "pkg.im": [2024], "grail.cs.washington.edu": [17376], "inprof.us": [2024], "germanwin.gs": [2024], "uno.vc": [2024], "lists.ens.fr": [4922], "btl.today": [2024], "securepurchaseserver2.com": [14573], "www.ensigniamail.com": [5274], "utexas.edu": [17372], "security.mirea.ru": [20993], "gearworkstire.com": [6469], "scanmyserver.com": [14392], "*.mystockoptions.com": [10832], "blogi.pspr.fi": [2024], "www.voyage-prive.it": [17947], "sl.laborsux.com": [2024], "ikiwiki.iki.fi": [7964], "stations.fcc.gov": [5699], "emoryhealthcare.org": [5203], "elf.sovcombank.ru": [21914], "en.unionpay.com": [17281], "edugui.de": [2024], "www.dcard.tw": [19778], "messenger.ngageics.com": [11411], "www.stavrovski.net": [15505], "hlh.scot": [2024], "mrow.co": [2024], "s.booknik.ru": [2024], "tainaya-komnata.friday.ru": [20175], "www.chain.com": [2986], "www.ejpd.admin.ch": [22061], "www.t2-project.org": [22078], "fotki.yandex.by": [18739], "i3-groceries.asda.com": [407], "www2.houseoffraser.co.uk": [7570], "northgatemarkets.axonify.com": [1502], "tandfonline.com": [8120], "venuemaps.virtualearth.net": [17840], "s22.postimg.io": [13024], "mndfx.co": [2024], "za1.effectivemeasure.net": [5096], "japantimes.co.jp": [8526], "img02.static-nextag.com": [11402], "odeg.nu": [2024], "www.xtwo.ne.jp": [18695], "hiplogin.stanford.edu": [15448], "shally.me": [2024], "skatens.co": [2024], "m.contact.yandex.com.tr": [18740], "akado.a-3.ru": [258], "stp.gsfc.nasa.gov": [10909], "*.redbullmobile.at": [13729], "ss5.sinaimg.cn": [14910], "billing.nashnet.ua": [21087], "arif.fm": [2024], "dev.gogetssl.com": [6762], "cpanel1.9tv.co.il": [257], "individual-villas.co.uk": [18579], "s.vevo.com": [17566], "code.jquery.com": [8463], "intrgn.co": [2024], "sourcetreeapp.com": [15244], "workat.careerbuilder.com": [2853], "capify.org": [2829], "posterstoreuk.com": [13017], "hotell.nuug.no": [11017], "*.gaiahost.coop": [6280], "finavia.fi": [5818], "sikkerhetsbutikken.sparebank1.no": [21922], "swartz.link": [2024], "svn.videolan.org": [17775], "www.psychologytoday.com": [13236], "www.ovh.biz": [11723], "arte.tv": [19239], "x.plmb.co": [2024], "gnomejournal.org": [6334], "developer.parkrun.com": [12438], "www3.bnl.gov": [19418], "help.gmx.com": [6330], "jons.me": [2024], "www.djoserjunior.nl": [7461], "www.cooperating-objects.eu": [3649], "go.tao.ru": [2024], "jmcb.oxfordjournals.org": [12222], "news.mstr.cd": [2024], "caprioli.se": [12621], "bw.vcd.org": [17560], "media.podcasts.it.ox.ac.uk": [17359], "www.telusinternational.com": [16174], "wilt.cl": [2024], "blog.rstudio.org": [13527], "fybsg.com": [5602], "ornl.gov": [11730], "octcom.co": [2024], "a8r.co": [2024], "dv8.io": [2024], "thefemin.co": [2024], "s.qlake.com": [2024], "rc4nomore.com": [21599], "www.commoncrawl.org": [3489], "www.arigus-tv.ru": [19232], "expr.tv": [2024], "consultationhub.edinburgh.gov.uk": [5074], "easylist.adblockplus.org": [616], "spreadshirt.net": [15371], "laleo.mx": [2024], "chel.europaplus.ru": [20034], "tedxtalks.ted.com": [15871], "familypoint.co": [2024], "1nr.tv": [2024], "ln.alireza.es": [2024], "devolo.com": [4413], "blogs.iis.net": [7745], "mobl.io": [2024], "anderson.worldcat.org": [18536], "store.malwarebytes.org": [9941], "byo.com": [1610], "micropage.opera.com": [12086], "www.pureftpd.org": [13282], "formscentral.acrobat.com": [536], "dstlld.co": [2024], "e-iper.stanford.edu": [15448], "www.businesslink.gov.uk": [2477], "yelp.com.mx": [18766], "urolo.gy": [2024], "peermonitor.thomson.com": [16457], "g8.chaucanh.net": [2024], "zyan.scripts.mit.edu": [9763], "www.expo-virtuelle.fss.ulaval.ca": [17319], "www.adlantis.jp": [19078], "cms.elderscrolls.com": [18929], "testing.gimp.org": [20246], "www.hannover.fau.org": [5543], "www.dashlane.com": [4156], "fbdblog.co": [2024], "sds.to": [2024], "jphysiolanthropol.biomedcentral.com": [1931], "piratebayproxy.be": [22174], "z1.zhimg.com": [18956], "f2.chaucanh.net": [2024], "udt.news": [2024], "*.cubics.com": [3904], "jgclarke.org": [2024], "cdn-d-vid-mobile.pornhub.com": [12972], "wy.ndh.am": [2024], "vinyl-on-demand.com": [17812], "dbr.mn": [2024], "www.darlinghq.com": [4148], "s.luosimao.com": [20891], "forums.hubspot.com": [7599], "gfasia.ca": [2024], "blog.bufferapp.com": [2419], "space.hgo.se": [7042], "celeb.bz": [2024], "domain.hadithbd.com": [7149], "hainan.jd.com": [8434], "lvanlife.jd.com": [8434], "on.rudylim.com": [2024], "tbgk.me": [2024], "omise.co": [21243], "fshnisyr.biz": [2024], "epa-sprg.ornl.gov": [11730], "quipne.ws": [2024], "www2.ulaval.ca": [17319], "wiki.libsdl.org": [9305], "media.vodafone.de": [17901], "clext.net": [2024], "a.adrolays.de": [679], "subscribe.condenastdigital.com": [3557], "rgou.in": [2024], "today.lbl.gov": [9079], "support.mashery.com": [10055], "*.codeplex.com": [3373], "go.bazinga.org": [2024], "go.phl17.com": [2024], "demo.piwik.org": [12768], "cdn-srv-public-c.xxxyours.com": [22662], "www.kbpravda.ru": [20698], "r24629636.sync.app.asana.com": [1265], "snkrhlcs.de": [2024], "1stwarning.com": [85], "*.ovi.com": [12206], "pivic.com": [2024], "fud.community.services.support.microsoft.com": [10396], "shop.flixbus.be": [5911], "yoak.in": [2024], "sheds.ws": [2024], "elements.photos": [2024], "fakena.me": [20072], "yourvideofile.org": [18830], "partiality.itunes.apple.com": [1151], "bytemark.co.uk": [2503], "wiw.cl": [2024], "myibj.com": [2024], "www.hotelmangaby.com": [7559], "grupotriton.com": [6966], "ticketshop.mvv-muenchen.de": [9823], "cstwy.co": [2024], "forums.nux.ro": [21208], "sfmagic.us": [2024], "is.ayokay.com": [2024], "thunder.cdn.overdrive.com": [12192], "bkb.ch": [20683], "wcis.1823.gov.hk": [56], "go.billtsai.com": [2024], "zgzc.es": [2024], "budsgunshop.com": [2412], "93.biz": [2024], "dads.to": [2024], "www.beanbaginc.com": [1758], "www.mnultimate.org": [20999], "webtrends.telegraph.co.uk": [16149], "oas.monster.com": [10602], "nicknym.demo.bitmask.net": [2027], "jsnt.dk": [2024], "m.medicalxpress.com": [10200], "www.ml314.com": [9772], "rdy.16mb.com": [2024], "images.capitalone360.com": [2832], "www.avic.ox.ac.uk": [17359], "cengagebrain.com": [2946], "hollywoodreporter.com": [7464], "pressbooks.ch": [21488], "calacade.my": [2024], "epayne.me": [2024], "suprt.us": [2024], "es.explore.t-mobile.com": [15837], "e14t.ca": [2024], "securecommunities.hse.gov.uk": [20436], "help.fitbit.com": [5867], "www.kaazing.com": [8774], "s.bfm.ru": [19365], "bigdata.holyrood.com": [20393], "kungur.startsmile.ru": [21980], "sellercentral.amazon.de": [19174], "*.mci.edu": [10138], "axelsimon.net": [1497], "go.rajanand.org": [2024], "outulsa.worldcat.org": [18536], "www.simplednscrypt.org": [14890], "on.msnbc.com": [2024], "wiki.vorratsdatenspeicherung.de": [353], "mrmnt.re": [2024], "yr.no": [22699], "www.humanevents.com": [7613], "wealden.objective.co.uk": [21225], "planet.xamarin.com": [18629], "vespermarine.com.au": [17738], "www.xww.ro": [18697], "bloomingdales.axonify.com": [1502], "mdia.st": [2024], "kan.do": [2024], "s.ip-edu.org": [2024], "finweb.hnonline.sk": [7445], "s1.rr.itc.cn": [8401], "v2c.me": [2024], "www.osdisc.com": [21297], "media5.com": [20945], "emskr.chefkoch.de": [3062], "braintreepayments.com": [2292], "www.ansa.it": [1092], "www.privatesearch.io": [13153], "csirt.vutbr.cz": [17609], "kruhtz.yt": [2024], "iris.va.gov": [17100], "hsrls.com": [2024], "stats.redditmedia.com": [13749], "nikevideo.nike.com": [11440], "www.btsportbusiness.com": [1600], "midas.gtimg.cn": [6974], "tud.im": [2024], "pirateproxy.wf": [22176], "www.financialplanning.hsbc.co.uk": [20422], "www.careers.dpd.co.uk": [19891], "ulyanovsk.europaplus.ru": [20034], "content.edgar-online.com": [4884], "rta.bz": [2024], "mcr.eaststaffsbc.gov.uk": [19937], "www.qxl.no": [13442], "v3lo.co": [2024], "auth.univ-paris-diderot.fr": [12431], "avi.gd": [2024], "go.qrafter.com": [2024], "cubify.com": [3905], "www.iweb.com": [7874], "jitc.biomedcentral.com": [1931], "ci.beap.ad.yieldmanager.net": [13937], "cdn.keepstat.com": [7889], "uc4.me": [2024], "www.bbk.bund.de": [19335], "craftg.in": [2024], "sample.1688.com": [51], "my.milton-keynes.gov.uk": [10437], "booklog.jp": [2221], "goacn.us": [2024], "coursematerials.amazon.com": [960], "dietmardreier.de": [19833], "www.geocaching.com": [6526, 6527], "webmaker.org": [10701], "zimbrablog.com": [18968], "dorg.io": [2024], "www.tourismepourtous.ch": [16687], "cult-labs.com": [3908], "bmrg.in": [2024], "www.chasepaymentech.com": [3033], "dl.smwcentral.net": [14203], "www.mett.tk": [3536], "mu.ln.com.ar": [2024], "asia.adformdsp.net": [640], "netpl.us": [2024], "files.zenhub.io": [22713], "bioinformatics.knowledgeblog.org": [8961], "alasu.worldcat.org": [18536], "basul.to": [2024], "i.rystuff.net": [2024], "regiony.aktuality.sk": [1507], "ebib.co": [2024], "startrack.co": [2024], "ittra.in": [2024], "thedungeons.com": [16263], "www.privatecore.com": [13149], "static.123rf.com": [36], "adjaria.kavkaz-uzel.ru": [20694], "cdn1.xvideosx.tv": [18627], "atlas.thecthulhu.com": [16403], "affiliates.adultshopping.com": [697], "i.sli.mg": [21859], "lh4.google.com.*": [6821], "s.tbcdn.cn": [16047], "js3.unwire.hk": [17460], "kcoe.biz": [2024], "www.eduroam.es": [5090], "techpowerup.com": [16114], "club.360buy.com": [147], "*.unisys.com": [17293], "ltu.se": [9666], "folio.jhu.edu": [16370], "winthe.net": [2024], "konto.money.pl": [10585], "www.jolla.com": [8636], "go.ethow.com": [2024], "msi.world.tmall.com": [22222], "autodiscover.education.leeds.ac.uk": [17403], "statuspage.io": [15503], "dfly.in": [2024], "blog.whiteout.io": [18351], "js.adsrvr.org": [688], "peem.osu.edu": [11797], "origin-www.bloomberg.com": [2133], "rcoa.ch": [2024], "www.korpijaakko.com": [20750], "rec.g.163.com": [50], "img.timeinc.net": [16535], "zhuxig.jd.com": [8434], "viestintavirasto.fi": [17795], "www.shoebuy.com": [14775], "favorites.live.com": [9495], "mcand.us": [2024], "slcn.pro": [2024], "maplesoft.com": [9981], "wordsapi.com": [18526], "www.conversejs.org": [3628], "gz.ige.ch": [15759], "*.performgroup.com": [12597], "pbgd.co": [2024], "kyberia.sk": [9064], "hounddogcentral.com": [7569], "secure.hbo.com": [7031], "www.ircity.ru": [20576], "m.cn.nytstyle.com": [11037], "www.joomlainfo.ch": [20652], "mimg.127.net": [41], "sailplays3.cdnvideo.ru": [19536], "tosine.jd.com": [8434], "kore.io": [8996], "*.uploading.com": [17478], "amanda.zmanda.com": [18980], "widget.trustpilot.com": [16869], "tandridge.gov.uk": [16006], "bugs.exim.org": [5483], "ulr.oxfordjournals.org": [12222], "secure.pangaea.de": [12238], "secure.neuwagen.autoscout24.de": [1458], "w4.nz": [2024], "nasaviz.gsfc.nasa.gov": [10909], "www.jeffnabers.com": [8561], "se.imhd.sk": [8004], "cygwin.com": [3972], "alex.je": [2024], "assets.kachingle.com": [8779], "trojantime.usc.edu": [17366], "link.mvaria.com": [2024], "mdshooters.com": [10052], "iplists.firehol.org": [20107], "myaccount.stubhub.de": [15602], "christendom.worldcat.org": [18536], "momentum.akixi.com": [19129], "forum.ovh.it": [12205], "l.1043.io": [2024], "freenode.net": [20164], "*.voxel.net": [17942], "www.whitehatsec.com": [18346], "portal.thalysnet.com": [16245], "games.unizar.es": [17441], "mbe.pm": [2024], "www.fe-ddis.dk": [5554], "go.cmualum.com": [2024], "obstud.io": [2024], "dassaultfalcon.com": [4159], "www.me.washington.edu": [17376], "programm.froscon.de": [6071], "pk.boell.org": [19422], "pix.elfrau.com": [2024], "pinkong.bbs.taobao.com": [16015], "ticketonline.de": [16491], "bacaberita.org": [2024], "notif.bonadza.com": [2210], "api.neighbourhoodalert.co.uk": [21100], "ph.godaddy.com": [6755], "www.juso.ch": [20668], "catalog.plsinfo.org": [12570], "www.mythic-beasts.com": [10891], "towelroot.com": [22255], "jcstore.co": [2024], "sdry.co": [2024], "ykatr.youku.com": [18804], "motion-store.adtile.me": [693], "www.cs.stanford.edu": [15448], "l.sascha.us": [2024], "www.pbproxy.com": [22174], "it-sicherheit.de": [8194], "geak.tk": [3536], "cdn.flowtab.mobi": [5928], "secure.progress.com": [13178], "sso.liveperson.net": [9505], "www.iberiabank.com": [7897], "r-n.co": [2024], "pibank.dengisend.ru": [4344], "licensing.wirral.gov.uk": [18461], "datacloud.tealiumiq.com": [16060], "campina.com": [2796], "hrys.co": [2024], "a.mybank.cn": [21062], "ngcr.co": [2024], "*.mephi.ru": [10288], "c3i.nl": [2024], "www.matrix.org": [10089], "on.cpsj.com": [2024], "mk.gl": [2024], "bendigobank.com.au": [1805], "shop.tdc.dk": [15862], "*.loopia.se": [9616], "jb.pearlsha.re": [2024], "ww3.lawschool.cornell.edu": [3676], "weather.ssl.qhimg.com": [13347], "buyiphone.apple.com": [1151], "tracker.anidb.net": [1065], "www.mailerlite.com": [9897], "help.growingio.com": [20312], "www.tepamine.com": [4048], "assets.filestackapi.com": [5787], "d2.ligatus.com": [9356], "phil.mobi": [2024], "ramenskoe.biglion.ru": [19375], "insft.co": [2024], "*.taxpayersalliance.com": [16045], "static.miniclipcdn.com": [10461], "sl.alglab.net": [2024], "youtube.sa": [18800], "jtdisc.link": [2024], "www.imagerights.com": [7982], "radioplayer.co.uk": [13581], "youtube.co.uk": [18800], "dxp.to": [2024], "jrpny.co": [2024], "ljp.es": [2024], "youtube.sk": [18800], "lumosity.com": [9677], "youtube.sn": [18800], "www.ai-radio.org": [345], "ecollector.responsetek.com": [21636], "hirehelp.co": [2024], "ocrm.iciciprulife.com": [7917], "vsprt.com": [2024], "www.iniy.org": [20536], "www.youtube.com.eg": [18800], "get.mu": [2024], "signon.thomsonreuters.com": [16456], "i.root.cz": [14020], "i.iucnredlist.org": [7865], "www.directbox.net": [4517], "schedule.friday.ru": [20175], "wscont.apps.microsoft.com": [10396], "ltrdmrk.xyz": [2024], "ideabank.mit.edu": [9763], "origin.static.ctctcdn.com": [3896], "donate.greenparty.org.uk": [6908], "www.offensive-security.com": [11773], "www.admin.ias.edu": [7673], "monarch.calacademy.org": [2746], "jobs.groupon.com": [6953], "www5.djicdn.com": [4029], "dice.com": [4439, 4440], "relevate.ru": [13815], "fanatik.play-asia.com": [12828], "blog.greenchef.com": [6899], "background.oxfordjournals.org": [12222], "www.fws.gov": [17140], "www.houndci.com": [7568], "techbriefings.stanford.edu": [15448], "www.elsevierhealth.com.au": [5178], "mtnplay.one": [2024], "go.dorint.tv": [2024], "r.spruse.com": [2024], "icnt.re": [2024], "static.entstix.com": [20005], "www.conoha.jp": [3590], "ideastations.org": [7929], "www.mywot.com": [10841], "cdn.nejm.org": [11344], "xyd.re": [2024], "downtownhost.com": [4725], "a.tumblr.com": [16898], "honestani.me": [2024], "ffdiaporama.tuxfamily.org": [22319], "s21.postimage.org": [13024], "www.library.nuigalway.ie": [11101], "*.vast.com": [17663], "s.reevoo.com": [13772], "js.oldi.ru": [21240], "specc.ie": [2024], "issues.shibboleth.net": [14763], "nitn.gl": [2024], "promos.mcafee.com": [10129], "alnco.net": [2024], "www.stratford.gov.uk": [22004], "www.gamesrocket.de": [6419], "tesu.social": [2024], "is.to": [2024], "slct.al": [2024], "www.chtn.nci.nih.gov": [11090], "liberalamerica.org": [9310, 9311], "www.octopoos.com": [11752], "erpm.umich.edu": [17354], "www.cryptography.com": [3886], "www.li.admin.ch": [22061], "o.inje.de": [2024], "static.velvetcache.org": [17691], "twoseasons.co.uk": [16969], "www.luciosgold.ca": [9657], "quiz.islamqa.info": [8370], "content.rolex.com": [14009], "gji.oxfordjournals.org": [12222], "portroach.openbsd.org": [11955], "m.zalando.pl": [18877], "mobile.smartadserver.com": [15049], "support.jstor.org": [8472], "bonitaetscheck.immobilienscout24.de": [8008], "project.tmt.org": [16444], "bk.chaucanh.net": [2024], "omlb.de": [2024], "archive.org": [8269], "0images-production.ideeli.com": [7933], "kfb.sparebank1.no": [21922], "mn.uio.no": [17414], "learn.websecurify.com": [18239], "www.contentful.com": [3616], "subscriptions-dsms.consilium.europa.eu": [5411], "www.youtube.com.tw": [18800], "taxi.yandex.com": [18742], "www.petridish.org": [12628], "www.youtube.com.tr": [18800], "yourfone.de": [18826], "paprb.ac": [2024], "rushweb.us": [2024], "bizchannel.cimbbank.com.kh": [2616], "onename.io": [11876], "kabeldeutschland.com": [8775], "mdgx.com": [9742], "git.anomos.info": [1076], "us2.startingpage.com": [15476], "www.youtube.com.tn": [18800], "tiup.in": [2024], "maxloans.nz": [2024], "www.ekomi-us.com": [4913], "*.cryptomonkeys.com": [3871], "www.natoonline.org": [21090], "mathsisfun.com": [10082], "bro.sh": [2024], "freespeech.org": [6127], "static.hsappstatic.net": [7093], "www.mibew.org": [10368], "scs.viceland.com": [22460], "bignerdranch.com": [1887], "beckerweb2.wustl.edu": [18089], "www.intechnology.co.uk": [8039], "www.boum.org": [2261], "azs.auto.ru": [19276], "www.gemeinderecht.wien.at": [22588], "edtrdept.me": [2024], "cmthd.com": [2024], "dhorner.us": [2024], "ecc-platform.org": [4871], "list.qiyi.com": [13353], "otkritie.rapida.ru": [13619], "italian-country-cottages.co.uk": [18579], "piwik.kairo.at": [8782], "support.woothemes.com": [18505], "id.modx.pro": [21006], "bluespirit.es": [2024], "r-j.co": [2024], "l.santsys.com": [2024], "*.isle.jp": [8382], "ruha.ma": [2024], "gkyz.tk": [2024], "drty.fr": [2024], "advancesinsimulation.biomedcentral.com": [1931], "l.fosi.org": [2024], "support.avito.ru": [19287], "sneakersaddict.com": [21882], "stresslinux.org": [22013], "readcube.com": [13666], "syncplicity.com": [15795], "vip.bitcoin.co.id": [1992], "minetrack.me": [20987], "twtw.co": [2024], "cdn.history.com": [7422], "cloud.citius.usc.es": [17506], "canvas.ust.hk": [22412], "edupassport.bridgend.gov.uk": [19449], "bmmetrix.com": [2177], "kola.beeline.ru": [1778], "my.101domain.ru": [16], "stonewall.org.uk": [21997], "diplomaframe.com": [3134], "northyorks.greenparty.org.uk": [6908], "tribal.hants.gov.uk": [7185], "gbh.so": [2024], "podcast.zwame.pt": [19025], "hng.me": [2024], "i.lynx.works": [2024], "sslink.co": [2024], "ejo.oxfordjournals.org": [12222], "legacy.kingston.com": [8916], "bsi-ni.brain.riken.jp": [13489], "gvh.bz": [2024], "bugs.webkit.org": [18220], "myjeepgear.com": [2024], "printfriendly.com": [13115], "ongen.us": [2024], "cas.nottingham.ac.uk": [11567], "www.raspbian.org": [13630], "plancompare.medicare.gov": [20953], "n8br.us": [2024], "swvtest.tocco.ch": [16600], "wpchick.me": [2024], "www.harperreed.com": [7201], "gamebillet.com": [6407], "www.rack911.com": [13555], "shop.dnaserum.com": [4048], "www.Avanza.se": [1468], "rec-log.jp": [13702], "apidump.anidb.net": [1065], "uobiz.co": [2024], "imap.ct.infn.it": [7771], "youtube.com.tr": [18800], "gofi.gs": [2024], "rstbl.ch": [2024], "youtube.com.tw": [18800], "portal.triggit.com": [16809], "amazi.xyz": [2024], "ipo.boomstarter.ru": [19429], "mdws.valleyfirst.com": [17620], "www.kettering.gov.uk": [8877], "rskd.me": [2024], "zaoik.finam.ru": [20099], "koka.bz": [2024], "sealedabstract.com": [14500], "others.sport-express.ru": [21941], "s110.cnzz.com": [3328], "www2.seetickets.com": [14609], "get.debian.org": [4263], "a.tribalfusion.com": [16799], "www.trashy.com": [22280], "xn--90aijkdmaud0d.xn--p1ai": [22654], "savewhal.es": [2024], "transpay.money": [2024], "trygghansa.se": [16878], "stats.ipinyou.com": [7807], "easypath.ecsi.net": [4873], "expert.yandex.com.tr": [18740], "etvita.com": [2024], "commonroom.engagedoncaster.co.uk": [5251], "beta.skypeassets.com": [15004], "ncds.netflix.com": [11269], "bitly.icf.io": [2024], "mytritonlink.ucsd.edu": [17012], "ru-golos.ru": [13538], "status.online.net": [11908], "account.kuleuven.be": [8832], "ainul-url.tk": [2024], "18l0sgj3uk4hvjo6j9kjhcy9blnm0grc0celvn14.ipleak.net": [20571], "it.vuejs.org": [17963], "secure.mastermindpro.com": [10067], "i.envieapp.com": [2024], "cloudns.net": [3275], "www-numi.fnal.gov": [5741], "static-dominaria.cursecdn.com": [3927], "commerce.1prime.ru": [83], "tiki.org": [16520], "drivethrufiction.com": [11867], "fccsyd.unizar.es": [17441], "www.yts.ag": [22700], "ciw.edu": [2867], "www.guardtime.com": [20319], "dragoonarmy.msi.com": [9806], "3c.m.tmall.com": [22222], "*.iway.ch": [20615], "blog.localizejs.com": [20864], "*.freelancer.com": [6154], "edas.info": [5065], "podpora.zse.sk": [19013], "merethis.com": [10304], "portal.m3-connect.de": [20900], "eletr.tk": [2024], "www2.speedwellsoftware.com": [21931], "art.com": [1244], "g.zisick.de": [2024], "secure.cryptocapital.co": [3860], "www.buckscc.gov.uk": [19464], "afew.to": [2024], "sunybroome.edu": [15674], "www.asmallorange.com": [259], "www.allegro.pl": [897], "facepunch.com": [5613], "3joycasino.com": [20654], "iwmnetwork.com": [7871], "is.vutbr.cz": [17609], "kochshow.mediamarkt.de": [20949], "dp2.specificclick.net": [15314], "chron.ly": [2024], "x2.chaucanh.net": [2024], "s.1688.com": [51], "winkdex.com": [18446], "go.jn222.com": [2024], "zwame.pt": [19025], "*.apwg.org": [1102], "i1.next.westlaw.com": [18312], "metrics.tape.tv": [16019], "www.document.no": [4615], "www.ee.cuhk.edu.hk": [2704], "terminal.securenet.com": [14556], "www.youla.io": [22689], "g0t0.co": [2024], "m.mobile.de": [21001], "lawschool.westlaw.com": [18312], "alumni.weill.cornell.edu": [3676], "saltti.de": [2024], "springrts.com": [15377], "webmail.fastdomain.com": [5661], "sib.swedbank.nl": [15745], "cloud.cloudfoundry.org": [3297], "pond.imperialviolet.org": [8021], "www.cryptosanta.xyz": [3862], "prod-web.neu.edu": [10944], "carlsbad.org": [2865], "store.magicalbutter.com": [9875], "auto.1688.com": [51], "acnfp.food.gov.uk": [20132], "kpt.ch": [8762], "on.fsp.org": [2024], "pof.com": [12853], "www.searx.me": [14512], "www.mammut.ch": [9945], "fb.anyweb.it": [2024], "egov.scambs.gov.uk": [21739], "on.voce.tv": [2024], "www.sklik.cz": [14980], "semr.nl": [2024], "www.machineslikeus.com": [9845], "autographicsportal.axosoft.com": [1504], "portals.radware.com": [13584], "www.spidweb.com": [15340], "netfilter.org": [11265], "stl.co": [2024], "*.pumo.com.tw": [13272], "content.developer.mashery.com": [10055], "blg.kreaweb.cl": [2024], "kruger.axonify.com": [1502], "dryicons.com": [4778], "jifo.co": [8583], "cloud.feedly.com": [5724], "www.demo.com": [4018], "auth.ndla.no": [11158], "developer.nvidia.com": [11022], "domain.de": [4642], "deviceids-medp-id1.wdr.de": [18113], "rsbac.org": [13516], "gwnne.org": [2024], "www.baratikor.com": [4738], "go.crux.la": [2024], "jhs.oxfordjournals.org": [12222], "yumm.my": [2024], "dubai2013.honeynet.org": [20401], "tdg.im": [2024], "bmcophthalmol.biomedcentral.com": [1931], "startl.co": [2024], "get.file43.com": [2024], "dlz.io": [2024], "wbwi.re": [2024], "www.bioshockinfinite.com": [1932], "tumorbiology.georgetown.edu": [6531], "stats.iformula.ru": [20489], "mosobl.tpprf.ru": [22260], "wellc.me": [2024], "clickto.site": [2024], "library.cornell.edu": [3676], "tema.aktuality.sk": [1507], "intranet.humber.nhs.uk": [10953], "jcr.incites.thomsonreuters.com": [16456], "www.energiedesign.htwk-leipzig.de": [7596], "www.gfsfrance.com": [6305], "ww57.smartadserver.com": [15049], "aimatch.com": [785], "rasmussen.co": [2024], "raulbielsa.com": [2024], "starbucks.com": [15464], "www.trustedshops.co.uk": [16858], "card.wustl.edu": [18089], "wsuperslots.com": [2024], "ka.zuhi.co": [2024], "youtube.ng": [18800], "opswat.com": [11693], "domenovyprohlizec.cz": [4665], "youtube.no": [18800], "api.fbcdn.net": [5689], "ffs.ch": [15756], "www.misadventureswithandi.com": [10488], "link.spedu.org": [2024], "ebppprod.alipay.com": [864], "www.financnahitparada.sk": [5812], "w.forumwizard.net": [6041], "giftshop.mos.org": [10522], "www.fashiondip.com": [5656], "mcap.me": [2024], "a-ez.me": [2024], "u.osu.edu": [11797], "bit.jamm.ly": [2024], "1.azdhs.gov": [2024], "rightscale.com": [13940], "rorybe.ca": [2024], "www.phys.org": [21403], "blackboard.wku.edu": [22602], "modcab.in": [2024], "www.exacom.sk": [5464], "econo.uniovi.es": [17282], "forsakringskassan.se": [6027], "provider.wirral.gov.uk": [18461], "www5.eere.energy.gov": [5243], "console.greenchef.com": [6899], "dcert.co": [2024], "billing.krasno.ru": [20753], "shop.cryptalloy.de": [3842], "www.newstatesman.com": [11351], "blogs.yandex.by": [18739], "ns1.ionitcom.ru": [20562], "cybrary.it": [19749], "ken.net.nz": [2024], "mry.cm": [2024], "emprbzr.co": [2024], "collectiveip.com": [3423], "crts.eu": [2024], "dnshistory.org": [4055], "buckinghamshire.spydus.co.uk": [21952], "uk.tpprf.ru": [22260], "corp.ibrands.es": [2024], "robvance.link": [2024], "nagios.debian.org": [4263], "w.ffab0.com": [2024], "dsny.io": [2024], "admin.solicitor-concierge.com": [15186], "external.flightradar24.com": [20119], "lifemapp.it": [2024], "rebrick.it": [2024], "*.spreadshirt.at": [15371], "osca.rs": [2024], "static5.publish2.me": [21536], "hwj.oxfordjournals.org": [12222], "life.tenpay.com": [16184], "www.frid.ge": [6190], "supermedia.com": [15680], "*.stack.nl": [15425], "www.leapmotion.com": [9224], "*.articulate.com": [1259], "my.faa.gov": [5703], "thesatanictemple.com": [16380], "recruitment.highways.gov.uk": [20376], "storm.to": [2024], "cryptome.org": [3869], "*.myshopify.com": [14786], "jcr.us": [2024], "wiki.nci.nih.gov": [11090], "www.drchrono.com": [4742], "reconnecting.co": [2024], "tiscali.nl": [16165], "ffa.vutbr.cz": [17609], "adultflirt.no": [2024], "sht.deazl.com": [2024], "tricolor.tv": [22287], "contest.yandex.com": [18742], "university.aliexpress.com": [854], "zandvoort.nl": [11172], "zmanda.com": [18980], "stations.itunes.apple.com": [1151], "saj.cc": [2024], "sweetslyrics.com": [15748], "dbo.metcombank.ru": [10336], "s1.music.126.net": [40], "o.nttur.ru": [2024], "privacyapp.aclu.org": [312], "registry.hub.docker.com": [4605], "secure-static.tagged.com": [15974], "eso.qld.gov.au": [2024], "login.uber.com": [17169], "www.sipgate.co.uk": [14922], "radiate.fnal.gov": [5741], "www.sif.admin.ch": [22061], "deeo.dict.cc": [4442], "virtualinventions.com": [17837], "staging.maxmind.com": [10109], "amp.collective.com": [3422], "dalee.ru": [19754], "sdbk.cc": [2024], "usti.idnes.cz": [20483], "www.easy-hebergement.fr": [5024], "orders.cspinet.org": [2689], "info-slhc-pp.web.cern.ch": [2588], "www.cumulusnetworks.com": [3914], "news.slashdot.org": [15012], "edc1.healthtap.com": [7256], "angl.in": [2024], "tver.biglion.ru": [19375], "osmocom.org": [12159], "pivovar.karelia.pro": [20687], "library.stanford.edu": [15448], "praktikpladsen.dk": [21477], "derbyshirealert.co.uk": [19811], "acctx.co": [2024], "rosettacode.org": [14023], "crscrs.fr": [2024], "go.cogdog.it": [2024], "porn.homecomputing.fr": [7487], "rtbi.eu": [2024], "ptwi.se": [2024], "forums.adobe.com": [669], "wdws.com": [17991], "w1.admtyumen.ru": [19082], "cn.forums-stage.oracle.com": [12116], "noshfol.io": [2024], "www.wavpin.com": [18106], "l.diehupe.com": [2024], "paydirtgold.com": [12504], "z7.sinaimg.cn": [14910], "kccr.me": [2024], "lunametrics.co": [2024], "launch.stellar.org": [15532], "fieldguide.automattic.com": [1452], "undocumented.georgetown.edu": [6531], "sharepoint.aber.ac.uk": [473], "bathecho.uk": [2024], "libsdl.org": [9305], "182.fm": [2024], "miyun.jd.com": [8434], "www.jellynote.com": [8564], "b.gdski.pl": [2024], "masterclasses.nature.com": [11140], "www.is.vutbr.cz": [17609], "swke.co": [2024], "groupees.com": [6950], "www.xamarin.com": [18629], "www.hsbc.com.qa": [20431], "dsp.send.microad.jp": [10377], "s.zumzi.com": [19023], "services.fit.edu": [5922], "d2gn.us": [2024], "okl2.scene7.com": [14402], "pcste.ps": [2024], "corporate.eastsussexlearning.org.uk": [19940], "www.hertz.com": [7371], "dailysign.al": [2024], "cnvrt.it": [2024], "www.csirt.cz": [2686], "bot.ngx.cc": [11415], "moelleken.org": [10564], "metrics.carphonewarehouse.com": [2871], "jupiterartland.org": [8702], "r24625271.sync.app.asana.com": [1265], "linguee.pt": [9390], "mainpage.pixfs.net": [12776], "it4msp.com": [2024], "okha.sakh.com": [21719], "hcinv.co": [2024], "img04.rl0.ru": [13972], "lvn.io": [2024], "cdn.zeltser.com": [18911], "minside.amnesty.no": [1018], "www.aspel.homeoffice.gov.uk": [20399], "s.onehundred.be": [2024], "asos.to": [2024], "kostroma.startsmile.ru": [21980], "charterourcommunity.com": [3029], "go.veron.sg": [2024], "idealse.at": [2024], "i.s-microsoft.com": [14113], "weather.bartbania.com": [1709], "www.earthlink.biz": [4997], "gounes.co": [2024], "fshfol.us": [2024], "simonsfoundation.org": [14881], "nice.freedesktop.org": [6102], "www.questionmarket.com": [13409], "such001.reichelt.de": [13805], "www.wcfan.de": [18112], "hitta.se": [20381], "www.housing.uic.edu": [17321], "www.regiobankadviseurs.nl": [13790], "community-stage.mediamarkt.de": [20949], "hello.neustar.biz": [11320], "www.trafficprivacy.com": [16722], "bidev.unicef.org": [17069], "t3dev.maxon.net": [10110], "1-t.imgbox.com": [7997], "theiconic.com.au": [16367], "www.devon.gov.uk": [4415], "xangobuzz.com": [2024], "static-immo.ladepeche.fr": [9128], "colomtn.me": [2024], "fdag.co": [2024], "techempower.com": [16074], "*.overcast.fm": [12193], "at.abv.mk": [2024], "rapidbuyr.com": [13615], "n1ck.in": [2024], "pete.pro": [2024], "df-feeds.live.net": [9494], "gocf.ml": [2024], "www.kosimak.com": [9003], "ijl.oxfordjournals.org": [12222], "pirateproxy.yt": [22176], "m-s.co": [2024], "slh.pw": [2024], "resources.risingstack.com": [21654], "odnote.com": [2024], "sagal.in": [2024], "nordkapp.net": [11515], "gnucitizen.org": [20272], "facebook.is": [5612], "bon.lk": [2024], "www.quantixtickets8.com": [13389], "simplifydigital.co.uk": [21833], "b.tkcs.in": [2024], "app-de5.resrc.it": [13659], "b.rstmo.co": [2024], "status.lineageos.org": [9384], "stmr.co": [2024], "wiredto.me": [2024], "ner.bz": [2024], "www.campusjob.com": [2798], "www.mirtv33.ru": [20994], "apostolics.in": [2024], "chevyta.lk": [2024], "eski.be": [2024], "hyperion.stalkr.net": [15437], "i.microsoft.com": [10396], "zgal.re": [2024], "hubzero.org": [7106], "oeticket.com": [11769], "www.rhein-neckar-loewen.de": [13916], "chrs-scc-cm.marxists.org": [10051], "myip.ws": [2024], "nlx.org": [21145], "www.teamviewer.com": [16069], "uws.link": [2024], "twlk.ru": [2024], "url.raona.com": [2024], "cdn3.mos.org": [10522], "fasm.co.uk": [2024], "jdit.me": [2024], "wikler.org": [2024], "winp.kr": [2024], "www.iaea.org": [7670], "wireclub.com": [18453], "www.healthcareers.nhs.uk": [10953], "liveblitzcb.chessbase.com": [3073], "epnbc.objective.co.uk": [21225], "taylorandfrancis.com": [8120], "*.directory.live.com": [9495], "sync-push-proxy.bittorrent.com": [1974], "*.easyspace.com": [5027], "ovh.pt": [12205], "s13.postimg.org": [13024], "ovh.pl": [12205], "rns.ninja": [2024], "beta.nyx.cz": [11638], "drop.userscape.com": [17516], "youmiwang.tmall.com": [22222], "www.4kdownload.com": [190], "nzne.ws": [2024], "assets2.vzaar.com": [17976], "buy.fineproxy.org": [5830], "redbullbaja.com": [2024], "tickets.megaadventure.com.au": [20956], "stats.bedis.eu": [1773], "go.grgry.net": [2024], "ukba.homeoffice.gov.uk": [20399], "ne1.news": [2024], "zdravie.aktuality.sk": [1507], "www.pandaexpress.com": [12385], "majors.stanford.edu": [15448], "petgl.ad": [2024], "wiki.boum.org": [2261], "on.dtj.org": [2024], "b.revlisoft.com": [2024], "utravel.udn.com": [17020], "s21.postimg.org": [13024], "r.web.de": [18146], "callum.li": [2024], "www.zrey.com": [22726], "www.webdesignmarketing.eu": [18196], "frntrnnr.com": [2024], "paypass.livingsocial.com": [9530], "ckd.li": [2024], "id3.idqqimg.com": [7926], "tender.utb.ru": [17538], "login.novell.com": [11569], "okla.st": [2024], "www.bundesanzeiger-verlag.de": [19471], "corporate.miniclip.com": [10460], "no.citrix.com": [3180], "mador.ph": [2024], "www.copay.io": [19684], "www.catlinseaviewsurvey.com": [2914], "mod.gnutls.org": [6745], "patexia.com": [12483], "hntjmp.be": [2024], "ejournals.bc.edu": [1528], "democracy.tmbc.gov.uk": [15892], "tabletenn.is": [2024], "www.maker.tv": [9922], "developer.buscape.com.br": [2469], "s2net.it": [2024], "gii.st": [2024], "greenparty.org": [6909], "www.ernaehrung-per-klick.de": [10210], "go.osnetpr.com": [2024], "s.wp8.com.br": [2024], "rabota.sakh.com": [21719], "action.amnesty.org": [1000], "manage.passkey.com": [12465], "www.blackarrowsoftware.com": [19400], "donate.fbk.info": [5691], "vq.io": [2024], "s.srinitai.net": [2024], "24.cbsm.at": [8782], "thex.academy": [2024], "nc.ht": [2024], "t.abs.ec": [2024], "assets.intego.com": [8202], "asumail.biz": [2024], "appstickers-cdn.appadvice.com": [1143], "doktor.sovcombank.ru": [21914], "mail.shareislam.com": [14727], "bill.tomtel.ru": [22232], "supertracker.usda.gov": [17299], "images.tchibo.de": [16050], "www.rewag.de": [13475], "w.saifsamir.com": [2024], "ovdinfo.org": [21318], "az31609.vo.msecnd.net": [8866], "73.mvd.ru": [21055], "download.qt.io": [13365], "www.world-lotteries.org": [22618], "www.cem.danskebank.dk": [4138], "www.thebigweddingmovie.com": [16326], "*.thefind.com": [16404], "m1x3d.co": [2024], "petergof.startsmile.ru": [21980], "store.bgr.com": [1541], "tpc.googlesyndication.com": [6827], "status.mail.ru": [9891], "t.uppr.de": [22389], "api-cdn.embed.ly": [5188], "mrbrwn.co": [2024], "www.hckrnews.com": [7246], "www.ntpandp.com": [11014], "asteron.life": [2024], "cloud1.arc.nasa.gov": [10909], "3sat.de": [174], "kasperskypartners.com": [8824], "krasnodar.auto.ru": [19276], "ars.shoes": [2024], "publicaffairs.stanford.edu": [15448], "sal.hn": [2024], "grd.bz": [2024], "www.millenniumseating.com": [10434], "vixn.co": [2024], "mrtz.us": [2024], "m.airbnb.co.kr": [793], "www.gdata.fr": [6272], "servicios.afip.gob.ar": [19106], "*.rnw.nl": [13498], "pcblog.atlatszo.hu": [1349], "unicef-irc.org": [17064], "corp.pochtabank.ru": [12876], "status.udacity.com": [17192], "edrn.jpl.nasa.gov": [10909], "berdyuje.admtyumen.ru": [19082], "anima.link": [2024], "gwel.ch": [2024], "miniclip.com": [10460], "www.hdbits.org": [7248], "aburchfield.com": [2024], "openwebtorrent.com": [21283], "developers.zomato.com": [18990], "77sq.uk": [2024], "video.unfpa.org": [17062], "symbolab.com": [15781], "www.theworkdept.com": [16396], "totalpolitics.com": [22253], "secure5.vend-o.com": [17694], "link.svrooij.nl": [2024], "online.unistream.ru": [17291], "store.richarddawkins.net": [13928], "i0.poll.fm": [12926], "admin.touclick.com": [16679], "theweek.io": [2024], "www.onlandscape.co.uk": [11855], "u.shafeeque.in": [2024], "itslearning.com": [8408], "zncommute.com": [2024], "admisiones.upr.edu": [17087], "imlarry.me": [2024], "eindhoven.cr.yp.to": [3745], "foundation.walmart.com": [18059], "plista.com": [12858], "rescue.org": [21633], "www.marvel.com": [10047], "booking.tigerair.com": [16515], "blog.apiary.io": [19213], "www.wageworks.com": [18040], "zunyi.jd.com": [8434], "*.freelancer.co.uk": [6154], "uflx.co": [2024], "wfts.tv": [2024], "pt-br.cloudflare.com": [3284], "www.velocitymicro.com": [17687], "classifieds.nncogannett.com": [6434], "thaws.me": [2024], "www.sitefinity.com": [14946], "images.ukfast.co.uk": [17043], "i.jackgraal.com": [2024], "aazr.in": [2024], "wcs.fyi": [2024], "sso-prod3.cisco.com": [3165], "proxy.piratenpartij.nl": [12741], "tel.care": [2024], "copiny.com": [3656], "download0.sv.gnu.org": [6337], "web.satd.uma.es": [17225], "escrow.alibaba.com": [857], "release.thegreatcoursesplus.com": [16360], "insshow.tk": [2024], "lokalsystem.ub.uni-mainz.de": [17410], "branding.tiki.org": [16520], "p22.qhimg.com": [13347], "i2c.no": [2024], "status.dyn.com": [4814], "www.technomedia.com": [16109], "adserver.adtech.de": [691], "twky.in": [16968], "www.thetechnoskeptic.com": [16388], "www.bezeq.co.il": [19362], "www.gemius.pl": [6501], "shadowofmordor.com": [14713], "hemden-de.de": [2024], "static.trafficjunky.com": [22265], "authors.curseforge.com": [3927], "appleseedcdn.apple.com": [1151], "www.marvelstore.com": [10049], "buffalo.worldcat.org": [18536], "idpdesa.ual.es": [17162], "gloucestershire.police.uk": [6731], "brrebellion.com": [2024], "consumeraffairs.com": [3600], "prices.psc.gov": [21528], "dynamic-med.biomedcentral.com": [1931], "i.jmlagapa.com": [2024], "sra.illuminateed.com": [20494], "about.anquan.org": [19204], "smart.ciifad.cornell.edu": [3676], "www.ekomi.*": [4913], "vap.life": [2024], "edu.youku.com": [18804], "gakiris.com": [2024], "spriza.com": [15388], "astr.citilink.ru": [19594], "scoutsx.tn": [2024], "sport.panorama.am": [21341], "support.allcrypt.com": [876], "cgul.co": [2024], "www.events.ya.ru": [18716], "login.truste.com": [15922], "lewisburgcommunitygarden.blogs.bucknell.edu": [2406], "claws-mail.org": [3222], "s.cmshikaku.com": [2024], "mpl.pm": [2024], "lsblaw.birmingham.gov.uk": [19380], "ajbre.ws": [2024], "revenuesbenefits.southoxon.gov.uk": [21911], "bddm.play-asia.com": [12828], "www.mysn.de": [10887], "www.subscene.com": [22024], "forum.openoffice.org": [1117], "youtube.ie": [18800], "trailer.zdf.de": [22709], "serialist.net": [14657], "ahas.info": [2024], "www.the42.ie": [22140], "blog.quay.io": [21564], "i.aol.com": [380], "cccure.training": [2557, 2558], "chuvashia.sledcom.ru": [21858], "fndri.com": [2024], "i.chasecho.co": [2024], "kak-fishka-lyazhet.friday.ru": [20175], "tbunkers.com": [2024], "newzbin.com": [11392], "1drnrd.me": [2024], "clubnix.fr": [3317], "22dagestan.kavkaz-uzel.ru": [20694], "extranet.wienerstadtwerke.at": [18376], "e-o.us": [2024], "pubdirecte.com": [13247], "cs.is": [2024], "p.im9.eu": [20496], "myrusakov.ru": [21068], "esupport.sony.com": [15215], "*.blogspot.ae": [2127], "kaw.stb.s-msn.com": [14115], "quiz.tivi.de": [22709], "mgv.mobi": [2024], "go.sfsh.com": [2024], "blog.postimage.org": [13024], "rt02.epimg.net": [5126], "security-tracker.debian.org": [4263], "www.miun.se": [9766], "assets.tumblr.com": [16898], "go.dtrnr.in": [2024], "pic.swirl.us": [2024], "2.no19.com": [2024], "twm.co": [2024], "mnky.us": [2024], "korpijaakko.com": [20750], "ssyh.us": [2024], "nhw.se": [11511], "w.preston.ie": [2024], "www.yoast.com": [22683], "richrelevance.com": [13927], "dataview.ofsted.gov.uk": [21231], "iceo.mit.edu": [9761], "onlinestore.usatoday.com": [17112], "rbgusd.illuminateed.com": [20494], "pda.blogs.yandex.kz": [18743], "free-sex.ga": [2024], "s.apibloke.tech": [2024], "thro.ne": [2024], "bandz.co": [2024], "dg.ens.fr": [4922], "www.fe.ru": [20078], "nationalgeographic.sapo.pt": [14131], "oracle.com": [12116], "pinewoodte.ch": [2024], "www.occupycorporatism.com": [11745], "www.keelog.com": [8851], "c2b.me": [2024], "zest.ee": [2024], "news.companynet.mbank.pl": [9733], "gss1.baidu.com": [1641], "www.pmf.gov": [21443], "pic0.qiyipic.com": [13354], "www.tickets.london2012.com": [9584], "piao.163.com": [49], "dineke.me": [2024], "et07.xhcdn.com": [18605], "dbo.sviaz-bank.ru": [15740], "youtube.in": [18800], "*.duke-energycenter.com": [4790], "2.getscg.com.br": [2024], "icepay.me": [2024], "tahaj.sme.sk": [14198], "content.erooups.com": [5337], "link.aws-muc.de": [2024], "design.staging.yammer.com": [18738], "rrplus.ag": [2024], "btcjam.com": [1583], "slgstatus.bridgend.gov.uk": [19449], "skyacademy.com": [14993], "illq.net": [2024], "wyp.me": [2024], "docs.bankinter.com": [1674], "4608.ga": [2024], "thebureauinvestigates.com": [16330], "www.flipperctx.sony.com.hk": [15212], "www.youtube.bh": [18800], "links.emek.org": [2024], "krsk.europaplus.ru": [20034], "cydnie.co": [2024], "zinp.ro": [2024], "soapboxcms.com": [15119], "ecs.re": [2024], "cybksr.info": [2024], "amarama.org": [2024], "www.youtube.be": [18800], "www.workiva.com": [18532], "nppa.org": [11092], "www2.coop.ch": [3647], "h2ote.ch": [2024], "taboola.com": [15963], "www.cebit.de": [2933], "ub.uio.no": [17414], "asset-9.soup.io": [15235], "www.yanao.ru": [22665], "thepiratebay.bypassed.site": [21524], "www.tdcanadatrust.com": [15866], "etopia.shropshire.gov.uk": [21819], "www.westbyte.com": [22565], "darkmoney.cc": [4142], "tiny.hsys.net": [2024], "aedn.ws": [2024], "www.tonmo.com": [22234], "abo.monde-diplomatique.fr": [21011], "public.tableau.com": [15962], "herba.li": [2024], "d.elsto.us": [2024], "spv.tocco.ch": [16600], "go.infocux.com": [2024], "norid.no": [11522], "rbej.biomedcentral.com": [1931], "www.hover.com": [7573], "fl.lc": [2024], "mmoen.ch": [2024], "supermileage.osu.edu": [11797], "jasbsci.biomedcentral.com": [1931], "sog-links.org": [2024], "ftp.ayyo.ru": [19292], "exposure.co": [5506], "nbct02.baidupcs.com": [1643], "*.testcloud.io": [16216], "independent.co.uk": [8058], "trackandtrace.courierpost.co.nz": [3714], "www.nestlepurinacareers.com": [11208], "customercare.kansas.com": [8798], "oct-oeeo.ca": [2024], "konchura.omniweb.ru": [21247], "heise-medien.de": [7288], "skuter.16mb.com": [2024], "jbv.ovh": [2024], "www.wattpad.com": [18103], "trav.legal": [2024], "lvlt.co": [2024], "resizes.over-blog.com": [12188], "help.optimizely.com": [12107], "lomiwae.press": [2024], "l.odysseum.de": [2024], "educate.intel.com": [8211], "crystalmark.info": [19735], "www.ficora.fi": [5757], "rspt.us": [2024], "www.myaccount.socialsecurity.gov": [15126], "*.inc.com": [8046], "extyl-pro.ru": [20060], "wiser.be": [2024], "hezenong.jd.com": [8434], "chafc.soccer": [2024], "my.ams-ix.net": [1025], "verul.am": [2024], "habarovsk.psbank.ru": [13231], "shop.acehotel.com": [525], "dsgb.online": [2024], "adindex.de": [333], "www.a2zinc.net": [267], "l.chillaid.org": [2024], "de.support.tomtom.com": [16615], "kontrolling.bme.hu": [1556], "bt.tmmh.us": [2024], "sumka.ubrr.ru": [17173], "int.khabarovskadm.ru": [20708], "m.wosign.com": [18483], "t.avia.ml": [2024], "onjive.com": [11849], "lushstories.com": [20892], "gourl.eu": [2024], "*.transloadit.com": [4265], "fav.re": [2024], "cvs.gnu.org": [6337], "apt.gd": [2024], "www.aolo.tk": [3536], "static.globalweb.co.uk": [6717], "hush-hush.com": [7634], "*.accuvant.com": [523], "www.parlamentri.ru": [21347], "ezding.com.tw": [5528], "empwrd.co": [2024], "fcadata.aastocks.com": [19037], "on.sce.com": [2024], "www.paulschou.com": [21360], "s.linz2.at": [2024], "irissi.ms": [2024], "s.riyuk.de": [2024], "blog.asana.com": [1265], "www.comp.polyu.edu.hk": [12936], "rte.ie": [13530], "w3.org": [17980], "*.etsystatic.com": [5384], "mork.no": [10633], "nyel.la": [2024], "liqd.net": [9456], "responsive.io": [13871], "b.markbroe.net": [2024], "www.vpnglobe.com": [17590], "iamcb.me": [2024], "developer.washingtonpost.com": [18086], "fbpe.co": [2024], "jshotels1.cdnvideo.ru": [19536], "*.bgpmon.com": [1540], "ticketsource.co.uk": [22207], "qrator.net": [21562], "dero.dict.cc": [4442], "63.rkn.gov.ru": [13971], "*.ticketonline.de": [16491], "s.dulces.com.pa": [2024], "dearbytes.com": [4252], "mysql.variomedia.de": [17658], "kuai.alipay.com": [864], "lgcy1.xyz": [2024], "jobs.stausa.com": [2024], "entsale.co": [2024], "img-hx.newjobs.com": [11358], "www.atarnotes.com": [1334], "siliconrepublic.com": [14852], "stinky.in": [2024], "clorg.co": [2024], "cpe.oxfordjournals.org": [12222], "*.datacloudmail.ru": [4192], "www.dnoid.me": [19807], "bano.openstreetmap.fr": [12079], "nau.edusupportcenter.com": [19962], "empleo.uniovi.es": [17282], "kismetwireless.net": [8932], "tragachil.es": [2024], "www.iperceptions.com": [20464], "cpaste.org": [19706], "cdn.mediaworks.co.nz": [10179], "shchekino.beeline.ru": [1778], "go.secte.ga": [2024], "photos4.meetupstatic.com": [10231], "ny.cmbchina.com": [2639], "signon.shaw.ca": [14748], "www.tribecastudios.co.uk": [16803], "coderwall.com": [3377], "link.iggg.org": [2024], "i7.tj": [2024], "oc.schmidtcom.de": [14419], "source.jobvite.com": [8616], "krasnogorsk.beeline.ru": [1778], "bitly.build": [2024], "skygfx.live.com": [9495], "mttj.in": [2024], "croaks.us": [2024], "www3.basildon.gov.uk": [19324], "futbal.rtvs.sk": [13536], "dom.tips": [2024], "wowinterface.com": [18484], "ph.redhat.com": [13735], "hak5.org": [7156, 7157], "www.prozeny.cz": [13163], "www.coop.ch": [3646], "www.discovercarlisle.co.uk": [19846], "t.dianping.com": [19830], "l.pi.mu": [2024], "thw.obkm.eu": [2024], "*.google.com": [6819, 6829, 6831], "courseevalum.umd.edu": [17351], "clientcenter.thomasnet.com": [16449], "wiki.qt.io": [13365], "www.litecoinlocal.net": [9477], "ssc.cvent.com": [3941], "www.mysql.it": [10825], "smtp.play-asia.com": [12828], "www.roeck-us.net": [14000], "enet.name": [2024], "payments.guildford.gov.uk": [20321], "control.akamai.com": [806], "careers.tableau.com": [15962], "loveourlocalbusiness.com": [9637], "status.npmjs.org": [11580], "eco.rocketbank.ru": [13994], "merkur.de": [10306], "xn--b1aoke0e.xn--90aijkdmaud0d.xn--p1ai": [22654], "publisher.connexity.com": [3586], "shashinkan.rakuten.co.jp": [13593], "es.verbling.com": [17704], "census.edina.ac.uk": [19955], "vive.kg": [2024], "www.ringcentral.com": [13948], "bestlawyers.com": [1833], "www.itservices.bt.com": [1578], "usl.me": [2024], "go.icwnow.com": [2024], "www.boca.gov.tw": [2181], "go.metadata.mx": [2024], "mixer.cz": [10504], "www.niskanencenter.org": [11463], "www.lrz.de": [9253], "*.collegiatelink.net": [3429], "wholebra.in": [2024], "l.pjkel.ly": [2024], "www.xxxhubba.com": [22661], "www.openttdcoop.org": [12018], "udemy.com": [17194], "www.nesterov.pw": [11206], "subscribenww.com": [11308], "s0.wlresources.com": [22604], "crazybump.com": [3763], "quora.com": [13428], "courtneyaura.us": [2024], "wngwp.es": [2024], "resources.inbenta.com": [8041], "g6.hitravel.xyz": [2024], "co.norton.com": [11545], "media.linuxdistrocommunity.com": [9436], "on.wpin.me": [2024], "carrierbagcharge.wales.gov.uk": [18051], "join.exgf.com": [13086], "medapps.wusm.wustl.edu": [18089], "laaclu.org": [300], "static3.uk.businessinsider.com": [2471], "www.technocrat.net": [16106], "www.tapirex.com": [12380], "cap.csail.mit.edu": [9763], "www.sanalmarket.com.tr": [14338], "weichouji.sina.com": [14905], "www.kuleuven.be": [8832], "sale.jd.hk": [8437], "extg.co": [2024], "vk-radio.europaplus.ru": [20034], "export.ispserver.ru": [20589], "secured.ols.empireblue.com": [19988], "kerckhoffs.g10code.com": [20194], "www.vitalads.com": [17874], "forum.opnsense.org": [11692], "www.secure-usb.co.uk": [21768], "m.opera.com": [12086], "www.rcking.eu": [13463], "url.matejka.cc": [2024], "ural-trans.sledcom.ru": [21858], "dsmag.us": [2024], "edu.skift.com": [21849], "smart-mail.de": [15050], "*.baifendian.com": [19304], "cjip.oxfordjournals.org": [12222], "campanda.io": [2024], "wiki.secondlife.com": [14527], "www.ndm.ox.ac.uk": [17359], "baker.love": [2024], "en.wiki.hidekisaito.com": [7396], "uvo.gov.sk": [15037], "jas.xyz": [2024], "www.twistlock.com": [22332], "tmmy.me": [2024], "rstl.es": [2024], "www12.qth.com": [13336], "parago.ehosts.net": [5107], "www.pornworms.com": [12974], "media.3dsupply.de": [172], "plaud.it": [2024], "ser.oxfordjournals.org": [12222], "iffp.tocco.ch": [16600], "bath.ac.uk": [17385], "qu2.co": [2024], "www.pirateportal.xyz": [21522], "oaklands.ac.uk": [21221], "muslimamericansociety.org": [10761], "card2cash.unistream.ru": [17291], "store.counterpunch.org": [3705], "media.zipcar.com": [18973], "siry.se": [2024], "ufl.ink": [2024], "ccp.cloudaccess.net": [3277], "uat.daily.afisha.ru": [19107], "accounts.flipboard.com": [5905], "jlau.me": [2024], "www.ageuk.org.uk": [19109], "iframed.cqrcengage.com": [2668], "m.sportbox.ru": [21942], "www.panopticlick.com": [12393], "www.fbcdn.net": [5689], "extra04.sfc.hk": [14706], "portal.opera.com": [12086], "romdashboard.com": [13506], "sgstyle.co": [2024], "www.wetlandpark.gov.hk": [22572], "fsret.it": [2024], "cyberaide.ca": [3970], "tracker.coreboot.org": [3670], "thegrandtheatre.com": [16359], "*.italian-country-cottages.co.uk": [18579], "minregion.nso.ru": [21192], "cowl.es": [2024], "www.cbpweb.nl": [4806], "dras.rocks": [2024], "www.cccliparts.org": [19528], "dev.camscanner.com": [19500], "www.loyalforex.com": [9647], "s.bakashimoe.me": [2024], "wa.op-online.de": [2024], "www.uline.com": [17211], "thestoryex.ch": [2024], "provost.umd.edu": [17351], "www.alpenverein.de": [19159], "luv.wtf": [2024], "web.weixin.qq.com": [13329], "avntn.com": [2024], "l.xal.li": [2024], "soma.co": [2024], "svgopen.org": [14265], "eregulations.ct.gov": [2695], "exne.ws": [2024], "transparencytoolkit.org": [16755], "widgets.yandex.by": [18739], "www.hi-eg.com": [7387], "forum.renoise.com": [21627], "wbsmba.uk": [2024], "de.osdn.net": [21298], "www.xmpp.ru.net": [18618], "snow.rocketbank.ru": [13994], "painelhost.uol.com.br": [17079], "johnlewis.ie": [8625], "frensh.am": [2024], "zoink.it": [4994], "www.onehealthtalk.org": [11886], "beacon.jumptime.com": [8689], "jke.me": [2024], "think-local.co": [2024], "putlocker.is": [21543], "gentoo-overlays.zugaina.org": [19019], "hexplo.it": [7383], "gamefaqs.com": [20201], "sq.crowdrise.com": [3825], "geo.zenmate.com": [18917], "mozy.co.uk": [10705], "gsrv.gs": [2024], "www.typepad.com": [16985], "go.nshost.co": [2024], "lijintechan.jd.com": [8434], "origin-www.marketplace.org": [10026], "go.fredonia.edu": [2024], "wbsm.it": [2024], "www.nrarofcochairs.com": [21187], "support.nanorep.com": [11070], "user.geetest.com": [20222], "levels.io": [9284], "aliw.me": [2024], "t1beta.mediamath.com": [10169], "docs.xfce.org": [18603], "phpmyadmin.online.net": [11908], "gegyg.com": [2024], "hmbl.be": [2024], "tid.al": [16504], "seagm.com": [14154], "seflorida.bbb.org": [1851], "techkr.info": [2024], "technomedia.com": [16109], "netbsd.org": [11222], "www.infowar.com": [8107], "cfun.cc": [2024], "bbaker.me": [2024], "queminova.catracalivre.com.br": [2917], "erikti.me": [2024], "spbuzz.it": [2024], "tiles.lightningmaps.org": [9361], "c.co2.web.id": [2024], "wamu.fm": [2024], "forums.satellitecyprus.com": [3980], "go.vienmy.vn": [2024], "templates.hostgator.com": [7519], "urlparser.com": [17096], "mi.skparate.mx": [2024], "legal.yandex.by": [18739], "petersen.mysql.cesky-hosting.cz": [19553], "*.heacademy.ac.uk": [7409], "edit.theregister.co.uk": [22182], "bmlt.co": [2024], "www.ftp.rnl.tecnico.ulisboa.pt": [20184], "diffchecker.com": [4449], "bogley.me": [2024], "tradepub.com": [16718], "thl.engineering.osu.edu": [11797], "regiochannel.de": [13791], "www.womenonweb.org": [18496], "sakhalin.tpprf.ru": [22260], "start.advent.com": [706], "www.sozone.de": [15116], "*.kaimi.ru": [20678], "voices.com": [17911], "vs.symantec.com": [15780], "unity3d.com": [17310], "aug6.us": [2024], "video.flixster.com": [5913], "sny.ms": [2024], "econsultation.decc.gov.uk": [19795], "pcbooking.staffordshire.gov.uk": [15435], "rtc.li": [2024], "static.dynamicyield.com": [4822], "gabriel.cf": [2024], "culturaemcasa.catracalivre.com.br": [2917], "uedata.amazon.com": [960], "ccofgb.uk": [2024], "avatar.fsl.cs.sunysb.edu": [15548], "ukecos.as": [2024], "taverna.us": [2024], "www.zuno.eu": [18861], "*.compari.ro": [3514], "clinic.dj": [2024], "bike.sh": [2024], "ssl1.gmti.com": [6434], "link.mrcs.fr": [2024], "mutage.oxfordjournals.org": [12222], "ictindel.es": [2024], "zbbeer.co": [2024], "www.zaehlwerk.net": [18872], "myevolve.us": [2024], "defacto2.net": [19799], "subscribe.scientificamerican.com": [14446], "fishandshrimp.mcdonalds.ru": [20941], "ndiscpa.info": [2024], "edition.independent.co.uk": [8058], "glnry.us": [2024], "lmms.io": [20861], "sli.mg": [21859], "twocents.lifehacker.com": [9346], "go-ml.com": [2024], "vmag.fashion": [2024], "www.cineble.com": [3147], "rsgedi-vpn.rockstargames.com": [13997], "corningcu.org": [3679], "french-country-cottages.co.uk": [18579], "*.mediaite.com": [10184], "www.wz2100.net": [18083], "clients.microtronix-tech.com": [10405], "dmf.is": [2024], "d77.co": [2024], "images.securycast.com": [14599], "www.politicshome.com": [12921], "www.typecast.com": [16982], "go.unbounce.com": [17239], "ipa.la": [2024], "www.mir.wustl.edu": [18089], "zudo.xyz": [2024], "drbrad.link": [2024], "webcampus.wilmu.edu": [18411], "aboutus.godaddy.net": [6754], "imgacade.my": [2024], "blog.zencoder.com": [18919], "mystel.la": [2024], "eods.nasa.gov": [10909], "glsm.co": [2024], "www2.unicef.or.jp": [17066], "license.steeleye.com": [15527], "developer.go.cd": [20273], "itootr.me": [2024], "jamx.re": [2024], "link.gerzer.net": [2024], "static.somethingawful.com": [15200], "kpay.co": [2024], "irvine.ly": [2024], "deddla.in": [2024], "openbeta-comm.usaspending.gov": [17114], "fzbr.in": [2024], "wsjpro.com": [11360], "livesales.snelis.com": [15097], "www.tmdn.org": [15893], "ar.tns-counter.ru": [16595], "halley.ens.fr": [4922], "ib.psbank.ru": [13231], "m.vietnamese.alibaba.com": [857], "ct.jd.com": [8436], "ipv4.da.gd": [4092], "kinsta.com": [8925], "help.bigstockphoto.com": [1895], "st.wdjcdn.com": [18066], "pimleroy.com": [2024], "ed.gov": [4881], "bitly.elms.edu": [2024], "www.administrator.de": [19081], "www.2ndvote.com": [130], "virtualqube.com": [17835], "categories.play-asia.com": [12828], "careers.annsummers.com": [1072], "bataysk.beeline.ru": [1778], "www.instantssl.com": [8186], "careersfdr.ucc.ie": [17006], "onlineservices.carlisle.gov.uk": [19516], "buy.qcloud.com": [13346], "stargaz.tt": [2024], "inhumanity.com": [8145], "hotw.re": [2024], "ehtuhin.xyz": [2024], "mktg.me": [2024], "coll.ec": [2024], "hr.uillinois.edu": [17034], "q.tokyoshure.jp": [2024], "jaan.ut.ee": [17148], "old.civitas.ru": [19603], "www.emunewz.net": [5216], "ij-healthgeographics.biomedcentral.com": [1931], "nanguosp.1688.com": [51], "teams.lastpass.com": [9175], "neuronline.sfn.org": [15144], "ngrid.com": [2024], "www.pacs.wustl.edu": [18089], "mail2.schmidtcom.de": [14419], "vanelli.tips": [2024], "www.uni-erlangen.de": [17396], "biovendor.cz": [1933], "courtneyluv.com": [2144], "www.blesk.cz": [2088], "b.asset.soup.io": [15235], "www.dafont.com": [4099], "securecoding.cert.org": [2596], "www.jambit.com": [8510], "mail.hska.info": [20437], "www.mimsonline.com": [9756], "www.alphabankcards.gr": [6893], "zenmate.vn": [18917], "secure.sydneyaquarium.com.au": [15773], "wdm.org.uk": [18545], "my.rmit.edu.au": [13496], "www.utsystem.edu": [17370], "list.jr.jd.com": [8436], "fantasyracing.telegraph.co.uk": [16149], "joshtheoak.com": [2024], "n.tkrp.net": [2024], "www.norwalkreflector.com": [11547], "www.pmddtc.state.gov": [17146], "iosbsinfo01.hkjc.com": [20384], "products.wolframalpha.com": [18487], "www.samsungindiaestore.com": [14330], "dutra.ga": [2024], "notacon.org": [11558], "kinogo.co": [20721], "l.maishsk.com": [2024], "www.yroo.com": [18831], "fastly.com": [5676], "go.dwnld.codes": [2024], "*.brukerprofil.difi.no": [4452], "pulse.asda.com": [407], "rxs1.answcdn.com": [1095], "thegreatcoursesplus.com": [16360], "code.entropia.de": [20004], "community-content-assets.minecraft.net": [10452], "guilin.jd.com": [8434], "kbcrtulra.kh.hu": [8739], "kondratovo.beeline.ru": [1778], "autolinkmaker.itunes.apple.com": [1151], "vgi.vg": [2024], "pics.mobygames.com": [10542], "ad.overthin.gs": [2024], "pwie.in": [2024], "eforms.rbkc.gov.uk": [21595], "nodeserv.com": [11488], "go.maxjp.me": [2024], "1ajd.us": [2024], "static.weborama.fr": [18231], "kabardino-balria.kavkaz-uzel.ru": [20694], "alternate-b2b.nl": [929], "some.fyi": [2024], "golfrev.com": [6806], "www.bugs.au.freebsd.org": [6097], "www.slanted.de": [15009], "torchbox.com": [16643], "forums.geforce.com": [6462], "dmp.adform.net": [638], "lk.onlime.ru": [11902], "threatmatrix.com": [22199], "voyage-prive.com": [17946], "l.tzty.net": [2024], "trends.skift.com": [21849], "cdn05.boxcdn.net": [2271], "www.shopmanhattanite.com": [9962], "www.givingwhatwecan.org": [20255], "peer2peer.giffgaff.com": [20243], "yourchoiceyourhome.org.uk": [22691], "selim.uniovi.es": [17282], "scl.mipoliza.es": [2024], "web.caltech.edu": [2771], "cdn1.mos.org": [10522], "tlaunch.it": [2024], "support.2co.com": [125], "territoires.net-entreprises.fr": [21107], "alisa.tm": [2024], "modules.fd.ulaval.ca": [17319], "autodiscover.its.leeds.ac.uk": [17403], "www.plausible.coop": [12827], "bugs.centos.org": [2950], "pfauth.nu": [2024], "support.filefactory.com": [5775], "brkv.ch": [2024], "on.vangquan.com": [2024], "botfrei.de": [2260], "s.twnet.us": [2024], "sampa.cs.washington.edu": [17376], "*.uncg.edu": [17412], "wx2.qq.com": [13329], "les.tumba.ch": [22306], "at.125f8.co.uk": [2024], "mwellner.de": [10782], "klub.com.pl": [8948], "safeprofile.f-secure.com": [5533], "mileiq.com": [10429], "1.0pe.ru": [2024], "www.chango.com": [3003], "espionageapp.com": [5351], "monitoring.datamotion.com": [19767], "www.wearewizards.io": [18126], "www.aesnet.org": [975], "a15.ysicdo002.com": [18799], "www.suitabletech.com": [15652], "i1.lbp.me": [20789], "miltonkeynes.objective.co.uk": [21225], "pro.psychcentral.com": [21531], "suz.beeline.kz": [19345], "node3.rg.ru": [21646], "healthiertogethergm.nhs.uk": [10953], "toyland.gizmodo.com": [6677], "www.kancloud.cn": [20681], "fbmonitor.thenewslens.com": [16302], "tvgd.co": [2024], "berlinonline.de": [1823], "fbulo.us": [2024], "www.ivteleradio.ru": [20613], "efa.org.au": [5142], "kosice.korzar.sme.sk": [14198], "ivy1.nl": [2024], "www.broadband.bt.com": [1578], "ejobs.umd.edu": [17351], "*.copyninja.info": [19688], "lpon.us": [2024], "strgygui.de": [2024], "www.freebsdfoundation.org": [6099], "linguistlist.org": [9094], "thumbzilla.com": [16476], "www.longdate.pl": [9600], "aliqin.tmall.com": [22222], "www.virtualearth.net": [17840], "kwiclnk.us": [2024], "overleaf.com": [12199], "cloudstorage.iu.edu": [8069], "image.unwire.com": [17461], "go.ke-v.in": [2024], "www.voa.va.gov": [17100], "docs.database.com": [4186], "pushchino.beeline.ru": [1778], "math.uchicago.edu": [17334], "www.giftedandtalented.com": [6625], "fml.osu.edu": [11797], "tuapse.tpprf.ru": [22260], "bkkvcse01.escap.un.org": [17057], "secure.meetup.com": [10231], "nl3d.co": [2024], "l.lobu.co": [2024], "www.123bay.online": [21522], "hayward-pool.com": [7243], "knj.news": [2024], "the405.co": [2024], "gss2.bdstatic.com": [19339], "jabber.ru": [8487], "i.zemanta.com": [18912], "sitelabs.co.uk": [21840], "tbl.click": [2024], "m.zuno.sk": [18862], "www.http.cat": [7100], "r24625326.sync.app.asana.com": [1265], "www.selinc.com": [14157], "*.alaska.gov": [15484], "i.wpimg.pl": [22621], "wfapm.com": [2024], "nckp.ru": [2024], "go.ecigs.city": [2024], "evrln.co": [2024], "www.tinybytes.me": [16555], "*.uu.nl": [17152], "j89.co": [2024], "brandj.es": [2024], "ax.phobos.apple.com.edgesuite.net": [1152], "techtoolsforactivism.org": [16089], "www.surplus.osu.edu": [11797], "cz.support.tomtom.com": [16615], "business.sohu.com": [15171], "thesd.co": [2024], "daw.apple.com": [1151], "inbnd.bz": [2024], "mind.org.uk": [10443], "tt.1und1.de": [91], "earspl.it": [2024], "opennicproject.org": [21277], "ssy.ms": [2024], "oxfordjournals.org": [12222], "www.roaringpenguin.com": [13976], "cryptoanarchy.freed0m4all.net": [6139], "*.canadapost.ca": [2807], "briandunning.com": [2329], "gigantic.com": [6633], "blog.ozbargain.com.au": [12227], "url.brugh.co": [2024], "www.dmachoice.org": [4034], "nrkbeta.no": [10997], "www.anonfiles.com": [1079], "www.lth.se": [9117], "unmarsys.ru": [2024], "mykip.co": [2024], "cdn.real-debrid.com": [13681], "tppro.oag.com": [11642], "easynews.com": [5019], "forum.root.cz": [14020], "blog.octopart.com": [11751], "forward.immobilienscout24.de": [8008], "www.meinvz.net": [10251], "*.finna.fi": [5835], "www.verivox.de": [17714], "blog.golfdigest.com": [6808], "www.acronymfinder.com": [539], "vanillatest.geogebra.org": [6522], "irad.io": [2024], "vn.te-st.ru": [22103], "rostov-na-donu.startsmile.ru": [21980], "in.beeline.kz": [19345], "go.thgllc.co": [2024], "static.95516.com": [248], "dschultz.us": [2024], "tvkultura.ru": [22327], "c4vi.me": [2024], "inews.gtimg.com": [6975], "www.agwa.name": [778], "pkimber.net": [12296], "img5.bdstatic.com": [19339], "as220.us": [2024], "pr.co": [13053], "vnat.ca": [2024], "nvzhuang.taobao.com": [16015], "media.codeweavers.com": [3351], "facultysenate.georgetown.edu": [6531], "litmus.com": [9483], "atxpo.stanford.edu": [15448], "corporate.fitbit.com": [5867], "www.connect.gov": [3582], "choon.net": [3103], "acdd.tk": [3536], "www-nds.iaea.org": [7670], "jiangsunong.jd.com": [8434], "www.snowmagazineonline.com": [15107], "nav.files.bbci.co.uk": [19332], "squrl.it": [2024], "www.dpskolkata.com": [4729], "14.rkn.gov.ru": [13971], "grve.me": [2024], "beatport.com": [1764], "ldf.io": [2024], "2012.asiabsdcon.org": [1281], "mrk.li": [2024], "www.cts-strasbourg.eu": [3898], "smacktls.com": [14196], "macewa.nu": [2024], "magenta.tocco.ch": [16600], "intro.cm": [2024], "southparkstudios-intl.mtvnimages.com": [9817], "campus.bankofamerica.com": [1669], "cfvod.kaltura.com": [8790], "porteus-kiosk.org": [12982], "*.uni-tuebingen.de": [17430], "r24616660.sync.app.asana.com": [1265], "dtu.dk": [16096], "echothrust.com": [5039], "m.baidu.com": [1641], "www.nebula.com": [11167], "*.mmahq.com": [9779], "www.hongkongpost.gov.hk": [20404], "searchblog.yahoo.co.jp": [18730], "garabatoaldea.ourproject.org": [21314], "bit.ibee.se": [2024], "tech.justgiving.com": [20672], "freesign.al": [2024], "entertainment.ie": [5283], "www.amsl.com": [368], "l.getticket.jp": [2024], "myaccount.lewisham.gov.uk": [20821], "slunik.slu.se": [14195], "ftp.openbsd.org": [11955], "www.zaption.com": [18891], "afu.bundesnetzagentur.de": [2445], "www.techreport.com": [16115], "l.rtl.be": [2024], "www.lb.ca": [9198], "assets.motherboard.tv": [10648], "agency.governmentjobs.com": [20296], "eco.velt.be": [2024], "permit.by": [2024], "www.fi.ncsu.edu": [11531], "i.i.ua": [7659], "rbwm.spydus.co.uk": [21952], "go.eqd.co.il": [2024], "*.unrestrict.li": [17452], "ripe64.ripe.net": [13953], "gopards.co": [2024], "webmail.bananian.org": [1660], "f.asset.soup.io": [15235], "dog.tv.br": [2024], "www.quantixtickets.com": [13389], "drbbl.in": [2024], "voled.in": [2024], "khl.ru": [20711], "forum.selfhtml.org": [21775], "www.productsandservices.bt.com": [1578], "gap.us": [2024], "eao.rt.ru": [13529], "folkler.yanao.ru": [22665], "www.soobest.com": [15222], "naturemicrobiologycommunity.nature.com": [11140], "corp.schelkovo-net.ru": [21741], "onlinelibrarystatic.wiley.com": [18401], "s17.cnzz.com": [3328], "ukbusiness.hsbc.com": [7090], "t.qidian.com": [13349], "opnsg.nl": [2024], "mbusd.illuminateed.com": [20494], "bitly.events": [2024], "kb.cloudlinux.com": [3287], "i.microad.net": [10378], "grbi.co": [2024], "u.nbz.net.br": [2024], "uptonhomehardware.co.uk": [17487], "*.gamestop.com": [6405], "oba.org.in": [2024], "tn.dm": [2024], "es-es.facebook.mx": [5612], "media-diablofans.cursecdn.com": [3927], "jambit.com": [8510], "www.vpsboard.com": [17952], "www.cogneurosociety.org": [19641], "bdhx.uk": [2024], "tucsonj.cc": [2024], "eflor.es": [2024], "www.ignum.cz": [7735], "rayyan.co": [2024], "gom.ba": [2024], "ckey.co": [2024], "webmail4.hosts.co.uk": [7552], "www.95516.com": [248], "thru-redaktion.ble.de": [19406], "str.do": [2024], "sludyanka.irknet.ru": [20581], "tcl.tk": [16051], "cute.li": [2024], "vers.al": [2024], "ilovemydog.tv": [2024], "womenonwaves.org": [18497], "localcoverage.cms.gov": [19630], "inforos.ru": [20532], "tize.tw": [2024], "lgs.cm": [2024], "old.a-3.ru": [258], "m.flyero.us": [2024], "rdey.se": [2024], "inl.gov": [20537], "gcs.school": [2024], "www.cheapassgamer.com": [3043], "fun.io": [2024], "thou.gt": [2024], "volzhsky.beeline.ru": [1778], "hopelove.us": [2024], "ff.gm.163.com": [50], "hubic.com": [7601], "link.chetbc.ca": [2024], "bokeh.rocks": [2024], "ju.mmstat.com": [10515], "intranet.tue.nl": [15940], "share.aber.ac.uk": [473], "*.dvidshub.net": [4083], "gbpg.net": [2024], "community.elearnsecurity.com": [4920], "rsh.cc": [2024], "fuwu.jd.com": [8436], "ghash.io": [6308], "api.5min.com": [217], "mari.mn": [2024], "bctr.cornell.edu": [3676], "subdomain.ipleak.net": [20571], "gossi.pr": [2024], "g.idevator.com": [2024], "sqa.ir": [2024], "www.youcanbook.me": [18794], "jobshop.lloydsbankinggroup.com": [20859], "forums.alfresco.com": [850], "img.naukimg.com": [21091], "lan.ua": [20774], "blogs.distributed.net": [4564], "aj.com": [2024], "zenmate.kr": [18917], "www.clear-code.com": [3228], "h.suntravel.xyz": [2024], "typg.co": [2024], "on.dnj.com": [2024], "tix.spybar.club": [2024], "job.rarus.ru": [21585], "nestlepurinacareers.com": [11208], "word.camera": [22612], "img03.en25.com": [5219], "southeast.greenparty.org.uk": [6908], "bridge.simplefin.org": [14885], "www.futurity.org": [6265], "on.apecrime.de": [2024], "featured-cdn.9gag.com": [252], "cargdn.co": [2024], "careermov.es": [2024], "fetisov.fbk.info": [5691], "www.fr.tchibo.ch": [16050], "ruwo.uk": [2024], "qjmed.oxfordjournals.org": [12222], "domaining.com": [4656], "www.apsiol.uned.es": [17248], "email.freenet.de": [6158], "webadvisor-test.cca.edu": [2547], "cms.www.switch.ch": [15762], "ide.c9.io": [3279], "islands.lloydsbank.com": [9537], "www.devb.gov.hk": [7061], "x.tedxutn.org": [2024], "dp.metro-set.ru": [20971], "melm.co": [2024], "forum.sozone.de": [15116], "lsda.jsc.nasa.gov": [10909], "auf.uwc.de": [2024], "*.ufies.org": [17024], "syktyvkar-realty.rambler.ru": [13600], "udoprojekte.lubw.baden-wuerttemberg.de": [19302], "jamestown.org": [20622], "audit.vaultoro.com": [22430], "chortl.es": [2024], "debconf.org": [4257], "bouncebidder.com": [2263], "eureka.uninett.no": [17280], "safebilling.com": [14292], "thenation.com": [16274], "request.augur.io": [1392], "www-2.danskebank.dk": [4138], "forms.fbi.gov": [5698], "i6.piimg.com": [16509], "www.mxtoolbox.com": [9827], "w.hitravel.xyz": [2024], "www.ca-pca.fr": [2521], "tomsofmainestore.com": [16619], "pypi.douban.com": [4701], "rmkey.co": [2024], "itson.tw": [2024], "s8.postimage.org": [13024], "we-b.lv": [2024], "server.adformdsp.net": [640], "go.collect.it": [2024], "ericor.me": [2024], "appstatus.osu.edu": [11797], "cntme.co": [2024], "www.carphonewarehouse.com": [2871], "export.yandex.kz": [18743], "fjellner.eu": [3119], "people.williams.edu": [18408], "*.stcllctrs.com": [9744], "areg.centrum.cz": [19547], "mobile.services.lovtidende.dk": [13887], "on.wjtv.com": [2024], "vidpro.me": [2024], "crls.ch": [2024], "od3g.co.uk": [2024], "account.dexmedia.com": [4422], "tvline.com": [15949], "huan.jd.com": [8436], "*.app.com": [1267], "tlgr.me": [2024], "www.leerstandsmelder.de": [20800], "windowsphone.com": [18436], "gymr.us": [2024], "squirrel-webmail.surftown.com": [15402], "kruvina.com": [2024], "www.lists.kit.edu": [8812], "*.webkite.com": [18166], "vin.krasnodar.ru": [20754], "ptrace.fefe.de": [5728], "www.the-body-shop.ch": [3646], "url.wiz.cn": [18475], "serval.lib.vutbr.cz": [17609], "lazada.co": [2024], "buch.ch": [16244], "outdoored.georgetown.edu": [6531], "i.tapactive.com": [2024], "map.sepa.org.uk": [21782], "www.charities.org": [3014], "d.gr-assets.com": [6861], "www.youtube.co.za": [18800], "pass.tmall.com": [22222], "50ft.net": [2024], "xewa.cl": [2024], "redmine.lighttpd.net": [9362], "najisto.centrum.cz": [19547], "oaklandish.com": [11731], "track.securedvisit.com": [14562], "btbsecure.business.bt.com": [1578], "msc.engg.hku.hk": [20387], "bleecker.me": [2024], "niu.imodules.com": [7766], "*.sears.com": [14508], "secure.fnac.pt": [5947], "cdn.www.hbo.com": [20351], "arbinger.me": [2024], "wearebattle.co": [2024], "bwat.us": [2024], "master.yandex.by": [18739], "forums.halowaypoint.com": [7165], "dance.smugmug.com": [15078], "managedservices.otenet.gr": [12164], "www.bitnik.org": [2033], "secure.insightexpressai.com": [8173], "login.uic.edu": [17321], "libraries.highland.gov.uk": [20374], "mklv.me": [2024], "chesb.bjcnc.scs.sohucs.com": [15173], "secure.goldmann.pl": [6801], "monmouthshire.gov.uk": [10598], "go.utah.edu": [17374], "propertylistings.ft.com": [5810], "nspcc.org.uk": [21193], "gimmickwear.com": [6644], "www.tv.yandex.com.ua": [18741], "ruffinos.co": [2024], "r24626553.sync.app.asana.com": [1265], "codebeamer.com": [3346], "ssl.biglion.ru": [19375], "app-us6.resrc.it": [13659], "url.rocsl.com": [2024], "on.kljb-s.de": [2024], "upupgame.sslcs.cdngc.net.sslcs.cdngc.net": [19533], "www.connectpros.com": [13064], "s.l-a.cc": [2024], "priozersk.startsmile.ru": [21980], "mail.carezone.cz": [2859], "travel.cnn.com": [2649], "x.apwn.de": [2024], "habo.ly": [2024], "support.1btcxe.com": [60], "academy.frieslandcampina.com": [2797], "mcb.net": [9975], "nccrj.pt": [2024], "cvs.sedo.de": [14602], "mead.es": [2024], "www.wovn.io": [18008], "milanuncios.com": [10426], "voci.co": [2024], "couchbase.com": [3700], "www.baden-airpark.de": [19301], "stemsha.re": [2024], "backpackerslucerne.ch": [1625], "etel.io": [2024], "ohneverlag.de": [2024], "www.domain.hadithbd.com": [7149], "eweb.acs.org": [974], "nogliki.sakh.com": [21719], "midco-test.axonify.com": [1502], "2ndvote.com": [130], "www.aquent.us": [1176], "www.m-w.co.uk": [9700], "m.woolworthsonline.com.au": [18511], "www.css-tricks.com": [2692], "xmlsearch.yandex.by": [18739], "rebecka.me": [2024], "vox.com": [17940], "rp.certification.openid.net": [11980], "webapps.dol.gov": [19866], "media.techonline.com": [16078], "www.oneserver.cz": [11681], "sgfmo.co": [2024], "mcfm.fnal.gov": [5741], "accounts.paradoxplaza.com": [12414], "pete.photos": [2024], "accessprivacy.com": [507], "www.tuleap.net": [16894], "t-nation.com": [15838], "2013www.play-asia.com": [12828], "a.tcpapps.com": [2024], "uie.com": [17029], "www.desmume.org": [4232], "www.parabolagnulinux.org": [12413], "t.nicandro.org": [2024], "paypalgivingfund.org": [12517], "upload.lovebizhi.com": [20878], "intell.co": [2024], "mail.tdc.dk": [15862], "hbr.org": [7032], "my.adap.tv": [608], "www.shootingillustrated.com": [21805], "svkeslov.se": [2024], "migrate.axosoft.com": [1504], "leadspend.com": [9210], "nl.squat.net": [21955], "www.oia.cuhk.edu.hk": [2704], "*.oreilly.com": [11698], "powershellgallery.com": [13039], "shre.it": [2024], "www.r-hpc.com": [13444], "www.mind.org.uk": [10443], "jobs.seagate.com": [14499], "static.micloud.xiaomi.net": [18663], "e.dealerdn.com": [2024], "www.ece.ucsd.edu": [17012], "support.cxense.com": [2709], "nagi.to": [2024], "datared.dk": [4204], "remixdepolitiek.nl": [12741], "siteheart.com": [14933], "static4.boligportal.dk": [2207], "jpcc.me": [2024], "t.got2b.info": [2024], "peterborough.greenparty.org.uk": [6908], "www.pwmt.org": [13306], "assets-origin.nytimes.com": [11041], "publius.oxfordjournals.org": [12222], "migration.oxfordjournals.org": [12222], "julieannenoying.com": [8687], "bs.mail.ru": [9891], "sitedirector.symantec.com": [15780], "gpf.me": [2024], "esv.de": [4960], "europace.oxfordjournals.org": [12222], "www.landalcampings.nl": [18579], "comsecuris.com": [3548], "www.rareaviation.com": [13625], "koolspan.com": [20748], "map.qq.com": [13329], "www.thereadingroom.com": [16310], "stix.mitre.org": [10497], "www.fralin.vt.edu": [17825], "secure.espn.com": [20025], "www.assertible.com": [19260], "www.sfu.ca": [14708], "www.nsupdate.info": [11592], "d.jd.com": [8436], "z.zoe.com": [2024], "nyheter.sparebank1.no": [21922], "ncs.bz": [2024], "cm.commerce5.com": [3482], "secure.nav.gov.hu": [10912], "opensecrets.org": [2953], "projects.unbit.it": [17234], "broco.link": [2024], "client.softline.ru": [21889], "alumni.pragmaticstudio.com": [13060], "gmw.nhs.uk": [10953], "prvn.de": [2024], "www.smartlife.swisscom.com": [15761], "ifip.tpprf.ru": [22260], "my.teslamotors.com": [16213], "grove.io": [6960], "www.pureinfo.com": [13284], "lyncdiscover.here.com": [7325], "www.bluecatnetworks.com": [2140], "www.metro.yandex.by": [18739], "service.tygem.com": [22334], "shop.scooter-attack.com": [14452], "mevy.co": [2024], "www.kriminalvarden.se": [9024], "extranet.zg.ch": [22061], "push.svyaznoy.ru": [22053], "uniregistry.com": [17285], "*.facdn.net": [6248], "memes.link": [2024], "oir-krugosvetka.friday.ru": [20175], "*.rhul.ac.uk": [13482], "partner.dota2.com": [4693], "www.meebey.net": [10218], "static.petitions.moveon.org": [10670], "*.gnd-tech.com": [6331], "ayyildiz.de": [1505], "prks.io": [2024], "6to4.ru": [225], "beta.stacksocial.com": [15428], "developer.kaazing.com": [8773, 8774], "s.propro.us": [2024], "flixbus.com": [5911], "deezer.com": [4288], "overijssel.nl": [11172], "frdm.co": [2024], "*.t-online.de": [15839], "ceci.li": [2024], "cb.qq.com": [13328], "idm.east.cox.net": [3736], "blog.sme.sk": [14198], "*.orange.ch": [12122], "platform.tumblr.com": [16898], "m.sydneyaquarium.com.au": [15773], "tmbkpk.us": [2024], "braintree.gov.uk": [2291], "www.linuxmint.com": [20852], "apprenticeships.scot": [19216], "yalutorovsk.admtyumen.ru": [19082], "wtac.hinxton.wellcome.ac.uk": [22559], "www-edge.tnaflix.com": [16594], "rotlogix.com": [14033], "bolman.co": [2024], "eprocure.cyberport.hk": [3967], "static.4kdownload.com": [190], "nicdevo.link": [2024], "img.ntv.ru": [21197], "www.macruby.org": [9837], "soundcloud.com": [15231], "m-vg.de": [9699], "forums.creationkit.com": [19717], "oas.autotrader.ie": [19281], "site-cdn3.ghosteryenterprise.com": [6614], "www.googletagmanager.com": [20289], "one.org": [11676], "sc.hkex.com.hk": [20382], "muckefuck.nadir.org": [11049], "hpm.io": [2024], "www.drive2.ru": [4757], "wam.rocks": [2024], "u.sldr.us": [2024], "bigdata.stanford.edu": [15447], "forum.rottentomatoes.com": [14034], "jdi-solutions.co.uk": [20632], "www.momentusmedia.com": [10574], "www2.halton.gov.uk": [20335], "cryptedmemo.com": [3845], "glali.be": [2024], "scs.uic.edu": [17321], "mpowe.red": [2024], "www.myportableworld.com": [10857], "bnc4free.com": [2180], "kickflip.io": [8896], "www.sendmoneytoschool.com": [14639], "www.redkestrel.co.uk": [21622], "www.feefighters.com": [5717], "www.1and1.es": [72], "u.elitekast.com": [2024], "pic4.zhimg.com": [18956], "mrlyn.ch": [2024], "www.pochtabank.ru": [12876], "www.mh21.de": [10357], "lawst.in": [2024], "t38.co": [2024], "welcomeweek.gmu.edu": [6529], "www.geizhals.at": [6494], "network.feral.io": [5736], "www.anthonycameron.com": [1100], "rik.re": [2024], "task.im": [2024], "evesys11.sstest.jp": [15416], "www.journal-republican.com": [12689], "prds.io": [2024], "wurfljs.com": [18574], "namescon.com": [21083], "on.soheil.us": [2024], "buran6.beget.com": [19347], "pylink.xyz": [2024], "www.searchdatacenter.de": [16083], "qwty.co": [2024], "ednz.co": [2024], "comms.worldreader.org": [18555], "it.redhat.com": [13735], "dov.li": [2024], "static.lovefilm.*": [9633], "www.bitcointrezor.com": [19389], "whenbchapp.in": [2024], "*.clippings.com": [19616], "www.cheapandspeedytrafficschool.com": [19565], "*.myhailprotector.com": [7153], "sport.uni-mainz.de": [17410], "fisonline.bury.gov.uk": [19476], "extranet.fernwaermewien.at": [18376], "jobs.croydon.gov.uk": [19727], "*.autotrack.nl": [1444], "ilearningcontent.oracle.com": [12116], "www.abbott.com": [460], "jhb.me": [2024], "shop.education.lego.com": [9082], "www.morawa-buch.at": [21021], "linx.wizdom.ca": [2024], "www.techidiots.net": [16093], "tfaforms.com": [16235], "bingl.ee": [2024], "www.rarediseases.org": [13627], "d2jsp.com": [3989], "hunanguan.jd.com": [8434], "nifty.com": [10965], "stylem.ag": [2024], "ihgagent.com": [8229], "auth.finance.58.com": [212], "www.getvoip.com": [6569], "help.life.ru": [20835], "www.mrp.illinois.edu": [17346], "apps.hackney.gov.uk": [7142], "cgy.xyz": [2024], "www.professionalsecuritytesters.org": [13172], "leto.admtyumen.ru": [19082], "botany101.jstor.org": [8472], "fnmag.co": [5572], "rob-clay.com": [2024], "*.beyondsecurity.com": [1861], "clothingattesco.com": [3274], "sonycsl.co.jp": [15218], "fris.pro": [2024], "urll.nl": [2024], "provi-247.mobi": [2024], "vdp.link": [2024], "sprl.in": [2024], "www.ukreg.com": [5674], "*.documentcloud.org": [4616], "platform.instagram.com": [8182], "imgsrv.toppreise.ch": [22237], "sysbio.oxfordjournals.org": [12222], "p.rvie.us": [2024], "s.hitap.jp": [2024], "goo.im": [6811], "pdxhwk.us": [2024], "starmoney.de": [15456], "mgvrl.it": [2024], "monsterdivx.com": [10603], "story.br.de": [1566], "ceomilly.com": [2024], "dlh.nso.ru": [21192], "remaxslm.co": [2024], "downloads.realviewdigital.com": [13694], "reviews.thegreatcourses.com": [16268], "zerorobotics.org": [18937], "northol.me": [2024], "finkmanufacturing.com": [1932], "moakt.com": [21000], "corporategames.lcsd.gov.hk": [7067], "hcice.co": [2024], "ncgem.com": [2024], "www.dn.com": [4044], "oh.ln.com.ar": [2024], "api.orinr.in": [2024], "deviantart.net": [4410], "cj2.nl": [2629], "crmondemand.oracle.com": [12116], "5.cbsm.at": [8782], "ru.opera.com": [12086], "www.werkenbijdeoverheid.nl": [11172], "www.kkh.se": [8751], "1c-bitrix.ru": [74], "lsq.st": [2024], "tiny.mn": [2024], "oem.whyopencomputing.ch": [22584], "*.blogspot.com.by": [2127], "ozvoucher.com.au": [12227], "hsbc.co.uk": [20422], "certmixtap.es": [2024], "static-thelab.cursecdn.com": [3927], "apleywoodprimary.taw.org.uk": [22100], "artvillage.club": [19240], "online.st.uz": [21966], "spd.de": [15269], "www.rotaryview.com": [14029], "busk.rs": [2024], "gpn-noc.entropia.de": [20004], "www.archive.is": [1194], "zel.cr": [2024], "pype.ly": [2024], "herom.ag": [2024], "bit.iqbits.net": [2024], "sbl.fund": [2024], "icons-ak.wxug.com": [18128], "www.cavirtex.com": [2919], "git43.rostrud.ru": [21677], "yco.me": [2024], "s2.adform.net": [638], "www.harita.yandex.com.tr": [18740], "gmghq.link": [2024], "99b.it": [2024], "yo.yourhonor.org": [13253], "penzenskaya-obl.beeline.ru": [1778], "www.mirrorbingo.com": [10481, 10482], "u.icetravel.xyz": [2024], "zha.la": [2024], "dropboxatwork.com": [4763], "tresor.uv.es": [17544], "vinceq.com": [2024], "panhandle.aclufl.org": [297], "www.glo.wustl.edu": [18089], "smtn.tv": [2024], "www.mernetwork.com": [10292], "onlineservices.milton-keynes.gov.uk": [10437], "calbea.rs": [2024], "nb-no.facebook.com": [5609], "unitedtech.co": [2024], "1tulatv.ru": [87], "go.flag.co.uk": [2024], "web.yakovets.ru": [2024], "avanza.adenu.ia.uned.es": [17248], "res.mobsec.ruhr-uni-bochum.de": [14086], "upp.itunes.apple.com": [1151], "render.lv3.hbo.com": [20351], "kursk.beeline.ru": [1778], "l.drz.ac": [2024], "gis.ncdc.noaa.gov": [11121], "stble.co": [2024], "www.wordentropy.org": [18523], "www.globalways.net": [6722], "mantis.zdoom.org": [22710], "jaymart.co.th": [8548], "www.jondos.org": [8637], "css.gov.au": [2693], "wallet.google.com": [6818], "mikel.olasagasti.info": [11818], "www.bm.ru": [2176], "s.chool.ch": [2024], "daazo.444.hu": [183], "www.materiel.net": [10076], "shop.sloanreview.mit.edu": [9763], "spartafx.com": [15295], "welcomecottages.com": [18579], "snth.me": [2024], "cdn7.iconfinder.com": [7920], "travelpro.skyscanner.net": [15006], "go.cttapp.com": [2024], "j.r70.us": [2024], "studyabroad.washington.edu": [17376], "algiers.usembassy.gov": [22406], "soap.stanford.edu": [15448], "www.habrastorage.org": [7120], "yahoopolicy.tumblr.com": [16897], "michaelwlucas.com": [10371], "www.precedent.com": [21481], "asset1.djicdn.com": [4029], "postmaster.msn.com": [9810], "blog.bing.com": [1926], "www.e-gold.com": [4846], "apps.admob.com": [586], "kathy.io": [2024], "university.appcelerator.com": [1144], "ethersheet.org": [5368], "www.kiwiirc.com": [8943], "bbuzz.bz": [2024], "www.checktls.com": [3057], "acs.cmbchina.com": [2639], "discovercard.com": [4538], "tjoos.com": [16581], "www.lezhin.com": [20822], "reverse.play-asia.com": [12828], "writer.zoho.com": [18984], "newcastleccas.firmstep.com": [20109], "pop.schmidtcom.de": [14419], "admin2.providesupport.com": [13218], "p1-u.itunes.apple.com": [1151], "www.enpass.io": [5269], "glu.co.nz": [2024], "jss.oxfordjournals.org": [12222], "images.path.com": [12485], "distfiles.macports.org": [9836], "mcxnow.com": [10141], "www.nypost.com": [21213], "chris.lu": [3108], "wib.li": [2024], "www.portlandonline.com": [3197], "sol-m.co": [2024], "thumbnail.waywire.com": [22539], "thebodyshop.ch": [3646], "de.colocation-datacenter.com": [20305], "wht.to": [2024], "a.pgtb.me": [10171], "aboutairportparking.com": [12201], "chipdiz.us": [2024], "www.operationfabulous.com": [12088], "tokbox.com": [16607], "piware.de": [10043], "ads-by.yieldselect.com": [18772], "ongoing.pro": [2024], "makeagift.stanford.edu": [15448], "4u.sambila.net": [2024], "foek.li": [2024], "preview.npmjs.com": [11579], "mediamarkt.ru": [10188], "careers.bloomberg.com": [2133], "video.ecc-platform.org": [4871], "www.ico.org.uk": [7693], "reg.confuzzled.org.uk": [3577], "www.cdon.eu": [2576], "a.ltrbxd.com": [9281], "www.cmpxchg8b.com": [2641], "metastatuspage.com": [15503], "*.media.tumblr.com": [16898], "iclick.site": [2024], "static.picload.org": [12693], "dtct.it": [2024], "fius.us.es": [17502], "cibulka.squat.net": [21955], "www.returnpath.com": [13890], "fshn.st": [2024], "www.redhotoffers.hsbc.com.hk": [20427], "t2rknowledge.bt.co.uk": [1576], "renderoti.ca": [2024], "strength.runnersconnect.net": [21693], "businesscatalyst.com": [2474], "www.brandspankingnew.net": [2299], "forum7.hkgolden.com": [7058], "solebicycl.es": [2024], "enigmabox.net": [5262], "jslib.iweb.com": [7874], "afewsc.us": [2024], "dtomc.at": [2024], "studie.me.uk": [2024], "umw.edu": [17350], "item.jd.com": [8435], "pi.pardot.com": [12428], "comcourts.gov.au": [3494], "thechasqui.com": [2024], "www.browser-update.org": [19457], "*.macfarlanepackaging.com": [9841], "static-hearth.cursecdn.com": [3927], "static1.bentasker.co.uk": [1803], "kr.piliapp.com": [12706], "www.nos-oignons.org": [11551], "login.gawker.com": [6454], "sprung.to": [2024], "www.instasync.com": [20544], "wiki.ubuntuusers.de": [17184], "wccb.net": [2024], "www.torrentproject.com": [16659], "7elements.co.uk": [229], "app.snssdk.com": [21884], "debian.lighttpd.net": [9362], "allmend.ch": [905], "code.google.com": [6818], "a.napwr.pl": [2024], "events.snacktv.de": [15086], "ask.puppetlabs.com": [13276], "pe.liternet.ro": [2024], "roc.gg": [2024], "www.journal.ualinux.com": [22340], "www.kinogo.net": [20722], "*.bloxcms.com": [1551], "youtube.ph": [18800], "*.gamesplanet.com": [6416], "link.bleep.com": [2024], "pelo.tl": [2024], "a4.twimg.com": [16949], "www.accountkiller.com": [514], "www2.bt.com": [1578], "akv8.in": [2024], "sh.sdp.ca": [2024], "cms-static.uni-muenchen.de": [9104], "dolomit.es": [2024], "www.anon-ib.com": [1077], "iki.fi": [7964], "www.bastamag.net": [19325], "tesla-new.desy.de": [4386], "bzbz.ca": [2024], "images.shrinktheweb.com": [14807], "nocache.vesti.ru": [22450], "psly.co": [2024], "b5connect.com": [2024], "store.archive.org": [8269], "bsclib01.buffalostate.edu": [2418], "luck.betcoin.tm": [1843], "travaux.web4all.fr": [18148], "api.hertz.com": [7371], "www.finma.ch": [15760], "circleofmoms.com": [3159], "www.axelsimon.net": [1497], "www.theme-fusion.com": [16410], "seiu.cc": [2024], "gift.jd.com": [8436], "resellers.guidancesoftware.com": [6988], "on.koco.com": [2024], "kororaproject.org": [9001], "shrew.net": [21817], "info.maths.ed.ac.uk": [5059], "rosfcts.com": [2024], "www.extratorrent.works": [5516], "www.pbs-erhverv.dk": [12526], "www.unirel.vt.edu": [17825], "www.inschrijven.nl": [8163], "www.nandos.com": [11066], "hamstudy.org": [7167], "read.amazon.com.au": [19171], "gerontologist.oxfordjournals.org": [12222], "smolensk.rt.ru": [13529], "p.yieldlab.net": [18775], "www.ncsi.com": [10929], "ihh.cl": [2024], "3etoil.es": [2024], "*.illuminated-pots.com": [7972], "hi4em.derby.gov.uk": [4367], "community.understood.org": [17244], "smartbetty.me": [2024], "kkk.nav.gov.hu": [10912], "pinboard.in": [12710], "www.getpersonas.com": [6565], "22.whlt.com": [2024], "afra-berlin.de": [341], "dtt.me": [2024], "foundation.berkeley.edu": [17329], "statichukd.com": [7556], "stablehost.com": [15423], "iwcp.usuhs.edu": [17132], "www.agcs.allianz.com": [19151], "inci.to": [2024], "smartaremobil.idg.se": [7709], "app.binbank.ru": [1922], "www.communities.idea.gov.uk": [20477], "www.culturehumanities.hku.hk": [20387], "tirabyt.es": [2024], "www.womenshealthspecialists.org": [18499], "bmic.ro": [2024], "activestatic.net": [555], "belaruspartisan.org": [19350], "fakoshima.link": [2024], "scmjo.bz": [2024], "test.uat.groupon.com": [6953], "kia.nz": [2024], "www.thewesternworld.com": [16395], "rnwllms.nl": [2024], "love.163.com": [50], "beta.yr.no": [22699], "linq.ws": [2024], "xdbs.in": [2024], "corporate.visa.com": [17846], "login.truelife.com": [16841], "pixal.at": [2024], "m.metro.ya.ru": [18716], "www.fose1.plymouth.ac.uk": [12873], "consultant.ru": [19672], "bmel-kooperationsprogramm-prered.ble.de": [19406], "hlfmn.co": [2024], "static01.nyt.com": [11035], "100p.biligame.com": [1903], "www.browserhacker.com": [2391], "printem.ps": [2024], "www.unrealitytv.co.uk": [17451], "www.neos.io": [11196], "mbmoo.se": [2024], "www.over-yonder.net": [12189], "forms.myinteriorsavings.com": [8249], "trade.vaultoro.com": [22430], "constructive.is": [2024], "1-instant.okcupid.com": [11809], "geografia.unizar.es": [17441], "7x7-journal.ru": [237], "ems-ph.org": [5214], "www.valdikss.org.ru": [22423], "baike.1688.com": [51], "mggk.eu": [2024], "m-w.co.uk": [9700], "webmail.banan.cz": [1514], "staging.wordvine.sydney.edu.au": [22063], "ticket.rakuten.co.jp": [13593], "www.andrewbrookins.com": [1046], "www.nwtime.org": [11306], "www.thecisogroup.com": [16257], "waojournal.biomedcentral.com": [1931], "www.insidehighered.com": [8165], "jweir.co": [2024], "twtstrm.co": [2024], "www.streamtip.com": [15587], "*.pay.gov": [12498], "*.artlebedev.ru": [1249], "ejil.oxfordjournals.org": [12222], "cloud.debian.org": [4263], "backup.avv.de": [1485], "ads.dyc.edu": [4089], "c4ss.org": [2517], "files.intevation.de": [8293], "cdn-images.mailchimp.com": [9893], "adserver.msn.com": [9810], "www.crackedconsole.com": [3747], "mall.cz": [9934], "samu.li": [2024], "s.f87.me": [2024], "www2.sites.uidaho.edu": [17345], "cryptonotestarter.org": [19731], "infrastructure.gov.au": [4356], "ycharts.com": [18704], "aiaphl.org": [2024], "docs.jstor.org": [8472], "u.onpc.kr": [2024], "www.investors.com": [8317], "whispergifts.com": [18341], "support.mcafee.com": [10129], "www.imgrush.com": [8001], "roqu.in": [2024], "r24617873.sync.app.asana.com": [1265], "www.exiledonline.com": [4989], "www.buffalo-technology.com": [2416], "yabumi.cc": [18719], "go.ivotize.com": [2024], "corp.hdslb.com": [20358], "zetetic.net": [18951], "46.mvd.ru": [21055], "*.jobthread.com": [8607], "gitlab-ci.rom1504.fr": [21668], "jobs.thenextweb.com": [16374], "www.flonline.eu": [5568], "securityconference.de": [14588], "kaolian.link": [2024], "www.bitballoon.com": [1953], "www.blackmoreops.com": [19403], "s.friki.moe": [2024], "mx.01.org": [1], "www.ucu.org.uk": [22345], "stowesports.com": [352], "liuwg.web.cern.ch": [2588], "guigang.jd.com": [8434], "apk27.ml": [2024], "www.studentmoney.uillinois.edu": [17034], "profilocommercialeprivati.poste.it": [13013], "clahub.com": [19605], "followmail.com": [20130], "qt-apps.org": [13335], "zuno.cz": [18860], "www.aclu-mo.org": [303], "tribot.org": [15924], "2011azure.srad.jp": [21956], "static01.vg.no": [17569], "jaces.co": [2024], "cba.im": [2024], "ssl-cdn.highwebmedia.com": [7411], "www.justgive.org": [8709], "member.societyforscience.org": [15145], "www.obi.hu": [21222], "data.utsystem.edu": [17370], "im.ovi8.es": [2024], "c1.rgstatic.net": [13481], "affiliates.bhphotovideo.com": [19370], "de-pl.dict.cc": [4442], "static.cdn.realviewdigital.com": [13694], "api.airbitz.co": [19121], "e.gettyimages.com": [6603], "mot.sh": [2024], "i2.itc.cn": [8401], "calendars.com": [2755], "son.plus": [2024], "clients.imodules.com": [7766], "3turl.eu": [2024], "spb.te-st.ru": [22103], "gpoffers.co": [2024], "i.nmly.co": [2024], "androids.ac": [2024], "go.xelio.eu.org": [2024], "zbblg.me": [2024], "*.rarbg.to": [21584], "encrypted.redteam.net": [13738], "givingtostanford.stanford.edu": [15448], "www.fuerzapopular.pe": [6222], "www.baidu.com": [1641], "www.gls-group.eu": [6508], "fws.gov": [17140], "nl.4.boardgamearena.com": [2182], "www.m.lyngsat.com": [20897], "finlex.fi": [20104], "mlkshk.co": [2024], "tags.news.com.au": [11379], "www.itc.u-tokyo.ac.jp": [16991], "play.rtr.ch": [21957], "disruptionclaim.britishairways.com": [1513], "i.local.ch": [9548], "www.tonergiant.co.uk": [16620], "developers.linode.com": [9401], "www.cits.ruhr-uni-bochum.de": [14085, 14086], "zywv.us": [2024], "underwaterworld.com.au": [17246], "kubrick.link": [2024], "ucb.cau.arq.br": [2024], "manager.showapi.com": [21815], "www.flughafen-zuerich.ch": [20124], "cedarcrestcollegecressmanlibrary.worldcat.org": [18536], "app-de6.resrc.it": [13659], "phoenix.edu": [12664], "s30.postimg.io": [13024], "bpnww.biz": [2024], "www.dionyziz.com": [6897], "apps.peterborough.gov.uk": [12625], "www.verisign.com.hk": [17712], "zath.me": [2024], "secure.unicef.org.uk": [17068], "cce.engineering.osu.edu": [11797], "m.lezhin.com": [20822], "cchtml.com": [2923], "blog.talktalkbusiness.co.uk": [15994], "t4l.co": [2024], "ipre.educ.cam.ac.uk": [17332], "vlas.io": [2024], "appimg.bjcnc.scs.sohucs.com": [15173], "ripmedicaldebt.org": [21653], "hu.rgovind.com": [2024], "player.open.ac.uk": [11947], "www.matrox.com": [10091], "secure.magazin.autoscout24.de": [1458], "www.bitquick.co": [1969], "ca-securem.ikea.com": [7962], "mdv.vc": [2024], "olsnsanonymo.us": [2024], "sel.vg": [2024], "www.freetvonline.com": [6129], "earth.nullschool.net": [21200], "*.linuxnewmedia.com": [9410], "mak.so": [2024], "git72.rostrud.ru": [21677], "www.ispbilling.com": [16887], "*.burstmedia.com": [2463], "filmarkivet.no": [20096], "reader.wustl.edu": [18089], "nextbus.com": [11400], "www.khabarovskadm.ru": [20708], "byvanie.pluska.sk": [12870], "chen.mysql.cesky-hosting.cz": [19553], "faasand.gpehosting.com": [6353], "bndtools.ci.cloudbees.com": [19622], "lists.tog.ie": [15909], "jobs.kirklees.gov.uk": [8929], "c1.xkcd.com": [22652], "bitcard.org": [1956], "g.mfcimg.com": [20972], "cdntest-b.ndla.no": [11158], "acctair.com": [2024], "nimans.akixi.com": [19129], "*.clickequations.net": [3246], "si4.twimg.com": [16949], "enes.dict.cc": [4442], "wms.assoc-amazon.ca": [1309], "i4n.in": [2024], "sendmoneytoschool.com": [14639], "tuva.sledcom.ru": [21858], "maricopa.edu": [9998], "www.root.cz": [14020], "desy2.desy.de": [4386], "eastlund.buzz": [2024], "p.l.youku.com": [18804], "kovidgoyal.net": [9011], "severnaya-osetiya.beeline.ru": [1778], "andrewmunsell.com": [1045], "firmas.lv": [5848], "lint.travis-ci.org": [16775], "assure.ly": [2024], "sindsau.de": [2024], "on.pdo5.org": [2024], "medgadget.com": [10155], "*.confirmit.com": [3573], "*.nasasearch.nasa.gov": [10909], "pirateproxies.org": [22174], "sdfestaticassets.sciencedirectassets.com": [21750], "pc3.gtimg.com": [6975], "www.astro.cf.ac.uk": [2847], "www.sweetandsourstudio.com": [15747], "cdn1.sportxx.ch": [15362], "daryl.at": [2024], "zcpt.me": [2024], "lucidpress.com": [9655], "webapps.kent.gov.uk": [8867], "planet.nuug.no": [11017], "movi.ps": [2024], "atomicorp.com": [1355], "www.ghosteryenterprise.com": [6614], "kotori.link": [2024], "strk.org.uk": [2024], "bty.tips": [2024], "speeddl.com": [10134], "vuxml.freebsd.org": [6097], "a-v2.sndcdn.com": [15096], "bxf.sh": [2024], "trustpass.alibaba.com": [857], "img.qidian.com": [13349], "desimg.zamimg.com": [18878], "at.ma": [2024], "www.colta.ru": [19648], "thelab.co": [2024], "icaro.ual.es": [17162], "jon.bz": [2024], "community.vodafone.co.nz": [17899], "cdn.sparkfun.com": [15291], "zacatr.us": [2024], "www.techtoolsforactivism.org": [16089], "www.genieessp.com": [20225], "s.ashford.io": [2024], "23h.us": [2024], "junt.in": [2024], "www.hps.org": [20417], "exmail.qq.com": [13329], "edrs.sfa.bis.gov.uk": [17039], "netmusic.es": [2024], "pcper.com": [21371], "beant.in": [2024], "i.living.is": [2024], "graceho.pe": [2024], "www.niap-ccevs.org": [10955], "www.b-link.bucknell.edu": [2406], "mdac.net": [2024], "v00.at": [2024], "lht.io": [2024], "trr.windstar.com": [22596], "instartlogic.com": [8191], "dbs.com.tw": [4001], "sfnm.co": [2024], "lucaspetter.com": [9650], "jhawk.co": [2024], "b.pi.mu": [2024], "www.ancud.de": [1038], "www.taylorandfrancis.com": [8120], "elect.fyi": [2024], "addons.cursecdn.com": [3927], "i.adingo.jp": [646], "blog.slideshare.net": [15028], "mein.ktk.de": [8769], "unvr.se": [2024], "napaau.to": [2024], "www.ederdrom.de": [5068], "cerlogin.wosign.com": [18483], "associates.amazon.ca": [19167], "www.braindecoder.com": [2285], "www.zerties.org": [18946], "torrentshack.me": [16655], "showcase.ca": [14802], "unvr.st": [2024], "alclr.co": [2024], "www.tagged.com": [15974], "awesomejar.com": [1488], "hod.im": [2024], "appelli.amnesty.it": [1009], "visistat.com": [17854], "marinvo.co.uk": [2024], "*.idc.com": [7707], "mina.so": [2024], "olvmy.lv": [2024], "i.fj2.ru": [2024], "sso.alfa-openmedia.de": [847], "www.pravdatyt.com": [21479], "www.rebornbuddy.com": [2250], "ombudsman.achieveservice.com": [19051], "www.article19.org": [1257], "*.keymile.com": [8883], "k9.chaucanh.net": [2024], "beta.leboncoin.fr": [20796], "www.nrf.com": [11097], "hardware.redhat.com": [13735], "artoncampus.rit.edu": [13493], "feeds.aps.org": [976], "extstage.unfpa.org": [17062], "extranet.ic.nhs.uk": [10953], "www.interpol.int": [8290], "themghty.co": [2024], "www.just-eat.dk": [20671], "curious.li": [2024], "newshu.gs": [2024], "wbp.me": [2024], "trumpconspiracies.democrats.org": [4338], "jenkins.tribler.org": [16804], "freech.net": [20156], "seer.cancer.gov": [2819], "secure.junodownload.com": [8700], "ci-staging.swift.org": [15752], "www.kickass-torrents.to": [8894], "steadfast.net": [15512], "ontar.gt": [2024], "jmp2.tk": [2024], "moda.sh": [2024], "dashboard.ngrok.com": [11414], "b.ronboris.com": [2024], "forum.warthunder.com": [22528], "aplikacie.rtvs.sk": [13536], "www.pariloto.net": [7736], "*.cdn.kixeye.com": [8747], "www.gslug.org": [6971], "aguses.me": [2024], "url.ubds.mn": [2024], "portia.worldcat.org": [18536], "www.poltava.to": [21456], "origin.cultofmac.com": [3909], "resource.intsig.net": [20557], "www.ideco.ru": [20480], "moderator.leader-id.ru": [20793], "stage-mas.wiiings.com": [18381], "www.monkeysaudio.com": [10597], "omsk.europaplus.ru": [20034], "rlmo.me": [2024], "imlk.me": [2024], "towerfts.csbf.nasa.gov": [10909], "spb.auto.ru": [19276], "bigcityplan.birmingham.gov.uk": [19380], "ohsulibrary.worldcat.org": [18536], "secure.buypremiumtech.net": [2482], "cnmlyt.in": [2024], "www.cmascenter.org": [2638], "m13.me": [2024], "thspielt.at": [2024], "file.service.qq.com": [13329], "www.revcontent.com": [21642], "www.payback.pl": [21363], "nj02all01.baidupcs.com": [1643], "www1.citibank.com": [3174], "www.corelio.be": [3672], "democracy.buckscc.gov.uk": [19465], "imap2.schmidtcom.de": [14419], "theorie.mondediplo.com": [10578], "cpri.me": [2024], "igalia.com": [7952], "jobs.bathnes.gov.uk": [1715], "rangenetworks.com": [13608], "l.jessen.pe": [2024], "barnard.edu": [1701], "www.jcbusa.com": [8430], "images.csmonitor.com": [19737], "ipe.events": [2024], "zeze.sci-hub.bz": [14436], "baltimoresun.com": [16805], "freebsdfoundation.org": [6099], "ferx.co": [2024], "gamefly1.gameflycdn.com": [6398], "hxj.me": [2024], "www.syncaccess.net": [22067], "link.afgvg.com": [2024], "openadultdirectory.com": [11952], "selenic.com": [10300], "www.bupa.com": [2455], "ly.holy666.net": [2024], "www.lovtidende.dk": [9643], "www.usc.es": [17506], "jonathanmayer.org": [8638], "torreycommerce.com": [16665], "www.socialcampaign.com": [3816], "www.marketing.allianz.com": [19151], "nerdstat.us": [2024], "see.fbtab.co.uk": [2024], "on.nfl.com": [2024], "workshop.lifehacker.com": [9346], "sa.bbc.com": [1523], "media.phonehouse.com": [12667], "on.fox6now.com": [2024], "www.metro.yandex.kz": [18743], "mchor.us": [2024], "download.chainfire.eu": [19556], "cdn.podseed.org": [12891], "afo.re": [2024], "mhhg.us": [2024], "store.lds.org": [16293], "tvsa.mx": [2024], "login.centreon.com": [2965], "lyncdiscover.mbank.sk": [9733], "hungarian.hungary.usembassy.gov": [22406], "i1.sndcdn.com": [15096], "mail.testyourmight.com": [16220], "www.etoro.com": [4970], "www.tmcnet.com": [16591], "bergenopzoom.nl": [11172], "espanol.istockphoto.com": [20595], "cinestar.de": [3146], "s.gooc.us": [2024], "sales.ubrr.ru": [17173], "sp.ulule.com": [17224], "rm.yieldmanager.com": [13937], "joanne.media": [2024], "showmecon.com": [14800], "tabar.me": [2024], "becky.tk": [2024], "webmail.cp.pt": [3741], "www.thepiratebay.gl": [22175], "vk.wix.com": [2024], "tsbmag.com": [15925], "url.paperon.net": [2024], "blogs.ncl.ac.uk": [10926], "pbesignup.euw.leagueoflegends.com": [9220], "www.devbridge.com": [19819], "14cf93tv1ti4kslmycncq5tddqox4er4qimpj75h.ipleak.net": [20571], "cybermill.com": [3964], "www.maxmind.com": [10109], "knowledge.rapidssl.com": [13617], "cmb.is": [2024], "hr-skyen.dk": [7085], "www.circuitlab.com": [19593], "maureen.link": [2024], "www.degica.com": [3333], "www.executiveinterviews.biz": [5477], "go.binz.ws": [2024], "www.airelf.com.tw": [19123], "sndcom.us": [2024], "jcqu.es": [2024], "meta.superuser.com": [15424], "resiste.squat.net": [21955], "mycrap.co": [2024], "candidates.golosinfo.org": [20286], "edu.simplebooklet.com": [14889], "www.hlmod.ru": [7442], "prgo.me": [2024], "*.targetimg2.com": [16024], "ka.biligame.com": [1903], "www.bkrtx.com": [19399], "base.liveperson.com": [9506], "krone.hugb.de": [2024], "xue.xiaomi.cn": [18661], "www.neovim.io": [21104], "www.sunbeltsoftware.com": [15662], "gdat.co": [2024], "nssf.it": [2024], "lyrishq.com": [9696], "inhk.us": [2024], "sociales.unizar.es": [17441], "ukconstitutionallaw.org": [22351], "www.backendless.com": [19299], "www.goodzer.com": [6816], "www.vonage.ca": [17927], "flexyourrights.org": [5894], "*.pixnet.net": [12781], "netsite.pro": [2024], "mjm.ag": [2024], "cas.sk": [1507], "buz.by": [2024], "coins.arstechnica.com": [1242], "prnv.me": [2024], "klick.is": [2024], "www.freifunk-goettingen.de": [6168], "payments.pirateparty.org.au": [12746], "opendoors.org": [12042], "enfuse.co": [6988], "qnypy.doubanio.com": [19889], "*.library.wisc.edu": [17433], "www.bluetoad.com": [2151], "o-test.sportmaster.ru": [21944], "mark.reevoo.com": [13772], "memorydealers.com": [10272], "bluestatedigital.com": [2158], "unhm.org": [2024], "foob.org": [2024], "cdn2.openculture.com": [12039], "widget.weibo.com": [18278], "stackoverflow.com": [15424], "stream.cms.rakuten.co.jp": [13594], "soul2.hkuspace.hku.hk": [20387], "accounts.lastpass.com": [9175], "muying.1688.com": [51], "www.compete.com": [3522], "tck.st": [2024], "point.widgit.com": [22586], "s02.gt": [2024], "rocknytt.co": [2024], "gestespaceprive.moncompteformation.gouv.fr": [21010], "my.choopa.com": [3104], "www.aqueousvapor.com": [1177], "tkds.co": [2024], "jbiomedsci.biomedcentral.com": [1931], "htltn.com": [2024], "clickandpledge.com": [3256], "bfm.sdm.ru": [14494], "www.yandex.com.tr": [18740], "wizbangpop.com": [18479], "homepage.files.bbci.co.uk": [19332], "features.cpanel.net": [2667], "ruu.dk": [2024], "tui.amazon.cn": [19168], "swi.je": [2024], "i.szocialis.net": [2024], "admissions.bucknell.edu": [2406], "psha.xyz": [2024], "dodsshop.co.uk": [19863], "photos.friendfinder.com": [6192], "gibsonintl.co": [2024], "www.illuminateed.com": [20494], "www.trafficmaxx.de": [16728], "sgoti.ws": [2024], "teststackoverflow.com": [15424], "www.formstack.com": [6023], "cpfp.cancer.gov": [2819], "*.harakahdaily.net": [7194], "postalinspectors.uspis.gov": [17108], "go.aclu-nj.org": [2024], "choicecheapies.co.nz": [12227], "www.militaryfriendly.com": [20984], "indiestylestore.com": [20519], "www.togevi.com": [8414], "smplbtcs.co": [2024], "cielchien.xyz": [2024], "brkfts.nl": [2024], "appicon.nimg.jp": [11450], "www.mojandroid.sk": [10570], "www.thelocal.at": [22162], "777s.co": [2024], "francescopalazzo.com": [20148], "zlrath.co": [2024], "grozny.startsmile.ru": [21980], "s38.cnzz.com": [3328], "*.intuitivepassword.com": [8303], "forum.federalsoup.com": [5709], "statswales.wales.gov.uk": [18051], "fri.center": [2024], "cees.uio.no": [17414], "w.kerala.viajes": [2024], "static.plymedia.com": [12301], "tucsoncos.me": [2024], "www.enygf.eu": [5416], "datacenterknowledge.com": [4170], "myhosting.com": [15156], "lpcvan.co": [2024], "l.hindmar.sh": [2024], "ru.aegeanair.com": [6896], "voiceteachertraining.com": [11341], "a.mfcimg.com": [20972], "kicking.horse": [2024], "q3nz.net": [2024], "metrika.yandex.by": [18739], "datasheets.maximintegrated.com": [10108], "msql.co": [2024], "support.balabit.hu": [19308], "desjardins.com": [4378], "cadence.com": [2727], "go.mmradio.dk": [2024], "*.onamae.com": [11859], "pirateproxies.net": [22174], "www.biomedcentral.com": [1931], "help.sina.com.cn": [14904], "messages.meetme.com": [10224], "ap.test.octopuspop.com": [11754], "l.unga.dk": [2024], "sts2.x5.ru": [18590], "www.overclockers.co.uk": [12190], "otakumode.com": [12162], "old.beeline.kz": [19345], "www.mozillians.org": [10702], "blog.vevo.com": [17566], "goldetfprod.alipay.com": [864], "natawhat.tumblr.com": [16897], "w10.hillingdon.gov.uk": [7413], "www.pogliad.ua": [21449], "sh.syarihu.net": [2024], "www.quickline.com": [21566], "*.warwick.ac.uk": [17432], "tedwomen2017.ted.com": [15871], "browsec.com": [19456], "policyalternatives.ca": [21454], "www1.netflix.com": [11269], "direct123.fi": [4510], "comingolstadt.de": [3470], "aqueousvapor.com": [1177], "videos.plannedparenthood.org": [12809], "i5.piimg.com": [16509], "go.cheatha.de": [2024], "rlg.mx": [2024], "ogt.bz": [2024], "www.prv.se": [12321], "rximage.nlm.nih.gov": [11090], "planet.moodle.org": [10616], "mdt.me": [2024], "imgix.8tracks.com": [245], "quitter.is": [13422], "allac.es": [2024], "vidcoa.ch": [2024], "j.md-5.net": [2024], "linuxcontainers.org": [9435], "s.gambe.jp": [2024], "www.eon-hungaria.com": [20007], "bosch-sensortec.com": [2246], "www.vip.vetbiz.gov": [17100], "megapay.sviaz-bank.ru": [15740], "feedback.myinteriorsavings.com": [8249], "g01.a.alicdn.com": [853], "masterxchange.com": [10063], "aaulan.dk": [457], "www.hkexpress.com": [20383], "425702ff-d062-19eb-2f23-adbc7ebdd3ad-rum.cdnvideo.ru": [19536], "www.buywithconfidence.gov.uk": [19484], "qmail.jms1.net": [8601], "sbar.in": [2024], "open.plymouth.ac.uk": [12873], "admin.coretime.fm": [19691], "www.sputniknews.com": [21951], "agwa.name": [778], "fp.fraudmetrix.cn": [20151], "ogni.me": [2024], "3rd1dr.co": [2024], "lz0772.jd.com": [8434], "collect.cn.miaozhen.com": [10366], "api-tw.wolframalpha.com": [18487], "firstamendmentcoalition.org": [5857], "familie.niedersachsen.aok.de": [376], "www.rainierarms.com": [21576], "bowie.it": [2024], "www.kangurum.com.tr": [8796], "reverb.echo.nasa.gov": [10908, 10909], "r.heima.jp": [2024], "nwsgn.com": [2024], "www.jewishpress.com": [8577], "services.forthnet.gr": [6031], "webarch.net": [18204], "www.mobile-ent.biz": [8225], "*.localedge.com": [9550], "fls-eu.amazon.fr": [19176], "uformia.com": [17197], "static-business.verizon.net": [22441], "metro.co.uk": [10346], "displaysolutions.samsung.com": [14326], "atmail.dreamhost.com": [4743], "www.nhm.uio.no": [17414], "werok.it": [2024], "register.shaw.ca": [14748], "dontbreakourphones.org": [19881], "flyersrights.com": [5941], "digitalis.leeds.ac.uk": [17403], "www.piratpartiet.no": [12758], "pick.pink": [2024], "natation.lemonde.fr": [9204], "sydneytowereye.com.au": [15774], "sysconfig.org.uk": [15817], "bmcsurg.biomedcentral.com": [1931], "pluss.io": [2024], "milton-keynes.gov.uk": [10437], "jcl.im": [2024], "leastauthority.com": [9230], "www.zyado.com": [19028], "a.882u.com": [2024], "schnz.es": [2024], "outof.co": [2024], "prtg44.smartadserver.com": [15049], "rles.tv": [2024], "gwla.co": [2024], "www.antiwar.com": [1106], "webmail.ncl.ac.uk": [10926], "vh2.ro.vutbr.cz": [17609], "blackboard.stonybrook.edu": [15548], "wandoujia.com": [18066], "*.domena.pl": [4664], "sbuys.me": [2024], "www.tv.rambler.ru": [13600], "was-3.umd.edu": [17351], "bitly.bramp.net": [2024], "snip.udooz.net": [2024], "image.ias.rakuten.co.jp": [13594], "www.vouchers.bt.com": [1578], "itx5.smartadserver.com": [15049], "crm.engagemedia.org": [5250], "pics-photo.com": [2024], "*.nsm.uh.edu": [17400], "www.system76.com": [15823], "forum.hitbtc.com": [7424], "hi-tech.mail.ru": [9891], "www.bgbl.de": [19367], "kubieziel.de": [9041], "www.topatoco.com": [16636], "b.whit.la": [2024], "i.roidsmall.org": [2024], "btcgreece.com": [1582], "dg.af": [2024], "ctzsi.de": [2024], "rasende.dk": [13628], "thecreatorsproject-images.vice.com": [17754], "events.msdn.microsoft.com": [10396], "coccoc.com": [3340], "heute.de": [22709], "www.infopackets.com": [8115], "www.triodos.com": [16815], "cryptocoinsnews.com": [3851], "omcr.oxfordjournals.org": [12222], "go.postmuch.com": [2024], "loadeu.exelator.com": [4988], "zesti.es": [2024], "*.dmslocal.com": [6434], "sanwork.com": [14357], "idac.me": [2024], "buy.entrust.net": [5291], "jira.mongodb.org": [10592], "opensource.srlabs.de": [14583], "stat.bit-com.ru": [19382], "townsq.co": [2024], "cdn.whmcs.com": [17997], "aqua.ly": [2024], "it.chaturbate.com": [3040], "e.mfcimg.com": [20972], "s.luca-steeb.com": [20886], "cabrerafirm.co": [2024], "m.bucknell.edu": [2406], "shnk.in": [2024], "blpg.gy": [2024], "rajesh.cc": [2024], "support.southrivertech.com": [21913], "autodiscover.ntv.ru": [21197], "ne.solidarites.ch": [21897], "v.norvine.net": [2024], "adamp.co": [2024], "beta.rsaconference.com": [13514], "*.newzbin.com": [11392], "go.west.gs": [2024], "www.nhs.uk": [10953], "cam.ac.uk": [17332], "s.troop1998.com": [2024], "rchy.net": [2024], "plymouth.greenparty.org.uk": [6908], "lprs.se": [2024], "realtech-vr.com": [13690], "edia.to": [2024], "sarapul.biglion.ru": [19375], "staging.python.org": [13314], "core.hostdime.com": [7518], "katalog.ub.uni-heidelberg.de": [17262], "dvelo.me": [2024], "1.zdraveinfo.sk": [2024], "jobs.aber.ac.uk": [473], "apps3.bdimg.com": [1747], "orch.me": [2024], "www.colino.net": [3415], "johnl.us": [2024], "static.qiwi.com": [13352], "c125.co": [2024], "blog.mangolanguages.com": [9960], "rawgit.com": [13641], "myin.to": [2024], "qatar.sfs.georgetown.edu": [6531], "l.doh.ms": [2024], "ace.sh": [2024], "www.hairsmize.com": [7155], "your.myfonts.net": [10805], "viewer.rsl.ru": [21686], "s23.cnzz.com": [3328], "www.eiskent.co.uk": [4911], "gropro.org": [2024], "www.groton.org": [6946], "j.oitc.ch": [2024], "www.websitealive6.com": [18242], "skolenie.zse.sk": [19013], "capublic.worcestershire.gov.uk": [22611], "www.calpolyarts.org": [2744], "jobboerse.web.de": [18146], "fas.biomedcentral.com": [1931], "destrijd.squat.net": [21955], "www.umwelt.sachsen.de": [14279], "wulong.jd.com": [8434], "le-vpn.com": [9202], "bmcmusculoskeletdisord.biomedcentral.com": [1931], "dvpr.es": [2024], "dcs.megaphone.fm": [20958], "ww1575.smartadserver.com": [15049], "www.cloudtrax.com": [3295], "www.1phads.com": [82], "recordnotfound.com": [21610], "piratebay.usbypass.online": [22259], "*.lightreading.com": [16086], "www.ip-search.ch": [15759], "dannyurl.us": [2024], "webadvisor.cca.edu": [2547], "www.sknt.ru": [21851], "edu.unizar.es": [17441], "*.iamnoone-solutions.net": [7892], "filesender.upo.es": [17479], "go.dive.in": [2024], "crpk.ornl.gov": [11730], "m.sledcom.ru": [21858], "lgnv.co": [2024], "vf.com": [3554], "www.bitcointoyou.com": [2010], "www.apk-dl.com": [19215], "*.mediatakeout.com": [10176], "jaku.in": [2024], "eureka.berkeley.edu": [17329], "download.alicdn.com": [853], "wiwi.htwk-leipzig.de": [7596], "www.shareit.com": [14731], "www.thebodyshop.co.uk": [16328], "cathext.in": [2024], "pereselenie.admtyumen.ru": [19082], "acmc.astrobl.ru": [19264], "vpn.vse.sk": [17955], "mfru.it": [2024], "media.compete.com": [3522], "search.mywot.com": [10841], "vanguard.com": [22426], "kca.re": [2024], "e.lode.com.au": [2024], "www.ssl-cert-shop.com": [14239], "credit.pochtabank.ru": [12876], "webmail.barvaux.org": [1712], "www.christianforums.com": [3116], "golang.org": [6774], "www.alloscomp.com": [907], "www.rsaconference.com": [13514], "*.easyjet.com": [5017], "justhost.com": [8707], "forums.suse.com": [14262], "esrsi.rtvs.sk": [13536], "gigigorgeo.us": [2024], "ccsdlib-preprod.ccsd.cnrs.fr": [6174], "cartercenter.org": [2877], "www.privacy-handbuch.de": [13130], "j.plasser.net": [2024], "filerio.in": [5780], "blog.discourse.org": [4534], "ehsa.osu.edu": [11797], "alien.net.au": [859], "semiaccurate.com": [14633], "murf.me": [2024], "www.dixy.ru": [4576], "webapps.brown.edu": [2384], "go.erickt.me": [2024], "banner.euroads.se": [5392], "hpge.co": [2024], "tgc.1688.com": [51], "tins.it": [2024], "thebodyshop.co.uk": [16328], "i.snssdk.com": [21884], "sl.trapplex.eu": [2024], "7oi.org": [2024], "dvtdmnn.com": [2024], "cfsi.pgcdn.com": [12276], "101.taobao.com": [16015], "business.sky.com": [14989], "scuf.co": [2024], "cp8.win-rd.jp": [18416], "usel.es": [2024], "qmc.quickline.com": [21566], "copy.me": [19687], "b0mb.co": [2024], "magic.microad.co.jp": [10376], "w-dm.us": [2024], "www.mcpmag.com": [9740], "www.qrz.com": [13363], "www.startlogic.com": [15474], "*.store.pgp.com": [12275], "www.t6k.co": [22080], "suma-ev.de": [15655], "lsbu.ac.uk": [9111], "wdgt.link": [2024], "s3.mediamatters.org": [10170], "www.havelockinvestments.com": [7235], "jieyang.jd.com": [8434], "f2.blick.ch": [2091], "docs.indymedia.org": [8090], "doostan.mondediplo.com": [10578], "www.clevelandclinicmeded.com": [3237], "rubixlinux.org": [21691], "ap.gy": [2024], "*.ruptureit.com": [21696], "support.lenovo.com": [9267], "www.intsig.com": [20556], "clmo.ms": [2024], "publisher.qbrick.com": [13345], "kushevskaya.tpprf.ru": [22260], "www.movie4k.org": [10675], "www.sirportly.com": [14925], "de.about.aegeanair.com": [6896], "blog.cnes.fr": [2647], "itossi.co": [2024], "www.optionbit.com": [12109], "api.tealiumiq.com": [16060], "hable.pw": [2024], "microsites.lincolnshire.gov.uk": [9380], "mynddot.co": [2024], "s1.pstatp.com": [16680], "www.stk.uio.no": [17414], "sentby.jp": [2024], "hn1.co": [2024], "c-cargus.co": [2024], "b.4na.xyz": [2024], "img2.pixhost.org": [21426], "helpjuice.com": [7308], "mydatapipe.com": [10846], "www.ysubookstore.com": [18833], "www2.adm.ku.dk": [17336], "freecallstousa.co.uk": [20866], "a.wattpad.com": [18103], "anynin.es": [2024], "actvt.io": [2024], "lists.linuxfoundation.org": [9427], "actvt.im": [2024], "cryptocapital.co": [3860], "fishy.at": [2024], "blog.debconf.org": [4257], "forum.handbrake.fr": [7173], "www.draugiem.lv": [4738], "*.hanselman.com": [14458], "irkutskaya-obl.beeline.ru": [1778], "df.ht": [2024], "iamam.thomsonreuters.com": [16456], "www.pulpcentral.com": [12335], "www.unwire.hk": [17460], "images.hugoboss.com": [7608], "lab.neos.eu": [10941], "via.arne030.eu": [2024], "witchery.social": [2024], "2.*.wdfiles.com": [18387], "infopaginas.com": [8116], "lwm.me": [2024], "cn.mondediplo.com": [10578], "gitlab.labs.nic.cz": [11418], "medianew.wlresources.com": [22604], "www.cinchouse.com": [3140], "sww.midwife.org": [2024], "liboil.freedesktop.org": [6102], "rci.rs": [2024], "url.muzinic.net": [2024], "memsg.com": [2024], "sdlf.stanford.edu": [15448], "eoft.eu": [4926], "cvrtg.io": [2024], "www.expatexplorer.hsbc.com": [7090], "*.stc.org": [15142], "ipe.report": [2024], "www.blastingnews.com": [2078], "x.vrmrck.be": [2024], "l.musleh.com": [2024], "101domain.ru": [16], "mobileenterprise360.com": [10537], "towsonuniversity.worldcat.org": [18536], "www.rangenetworks.com": [13608], "www.pinboard.in": [12710], "leaserig.net": [9228], "democracynow.org": [4336], "sdc.countquest.se": [3708], "www.aclu-wa.org": [311], "saintaardvarkthecarpeted.com": [14306], "www.spotware.com": [15369], "cspinet.org": [2689], "blogg.se": [2121], "nxeassets-ssl.xbox.com": [18639], "cmeadows.co": [2024], "devh.at": [2024], "login.migros.ch": [10417], "at.in.gov": [2024], "realestate.rakuten.co.jp": [13593], "shop.ualinux.com": [22340], "lso.com": [9114], "k7s.co": [2024], "arkve.in": [2024], "ads.bundesanzeiger-verlag.de": [19471], "git.glandium.org": [20256], "secure.backblaze.com": [1619], "investorfunds.us.hsbc.com": [7090], "quickleak.se": [13413], "www.ooyala.jp": [11935], "img6.leboncoin.fr": [20796], "pradeep.co": [2024], "cnfm.is": [2024], "privacyfoundation.de": [6542], "cdn.spiegel.de": [15342], "tweet.rapmag.tv": [2024], "cadlink.com": [19491], "r.vietkites.com": [2024], "pi.tedcdn.com": [15871], "www.mailpoet.com": [9896], "omarandwill.com": [11827], "fr.m.xhamster.com": [18606], "*.getchute.com": [6552], "unedabierta.uned.es": [17248], "wobs.co": [2024], "scurt.in": [2024], "www.varusteleka.fi": [17662], "q.tani.mu": [2024], "bishkek.europaplus.ru": [20034], "media.disquscdn.com": [4559], "kr.hsbc.com": [7090], "psych.tips": [2024], "m.forums.theregister.co.uk": [22182], "feefighters.com": [5717], "r.cornguo.net": [2024], "regard-de-pro.lemonde.fr": [9204], "chcsl.com": [2024], "samsungindiaestore.com": [14330], "mythic-beasts.com": [10891], "tula.auto.ru": [19276], "hidekibin.hidekisaito.com": [7396], "sdc.fiscal.treasury.gov": [16778], "statcounter.com": [15482], "por.grudiz.es": [2024], "trekaroo.com": [16782], "success.centennialcollege.hku.hk": [20387], "tips.fbi.gov": [5698], "s.designplus.co": [2024], "tedcinema.com": [15871], "i5.go2yd.com": [20274], "www.osc.gov": [21296], "maw.so": [2024], "www.letsencrypt.org": [9279], "sp.lenta.ru": [20809], "cloudconnect.norton.com": [11545], "www.twinprime.com": [16953], "sme-fr.com": [2024], "aclumaine.org": [301], "www.nomachine.com": [11476], "go.thraxx.co": [2024], "mtoza.vzaar.com": [17976], "nyagan.europaplus.ru": [20034], "kiks.yandex.com.tr": [18740], "www.comsecuris.com": [3548], "flixster.com": [5913], "s4.shinystat.com": [21802], "insight.duo.com": [4797], "www.oig.dol.gov": [19867], "thewrap.com": [16288], "fertilityresearchandpractice.biomedcentral.com": [1931], "cdn.colocationamerica.com": [3435], "www.mathias-kettner.de": [10079], "zerve.me": [2024], "visuel.l214.com": [20767], "cdkeys.com": [2926], "inverse.ca": [8310], "buy.norton.com": [11545], "baylor.edu": [1731], "*.samba.com": [14126], "elmntcf.it": [2024], "wsh.io": [2024], "www.cumbriapartnership.nhs.uk": [10953], "krie8.tv": [2024], "sw.oxforddictionaries.com": [12223], "aleach.ca": [2024], "try.diffoscope.org": [4451], "cert.pl": [2590], "rodericvs.net": [2024], "webmarket.rwe.de": [21706], "youngminds.org.uk": [18808], "abcfam.ly": [2024], "langaoguan.jd.com": [8434], "*.ticketmaster.co.uk": [16495], "download.plop.at": [21440], "openbittorrent.com": [11959], "torrentdownload.ch": [22243], "aitao.taobao.com": [16015], "tuki.kapsi.fi": [8806], "widget.us.criteo.com": [3798], "wbdef.nl": [2024], "bl.hqmw.com": [2024], "www.marc.info": [9721], "heiress.ws": [2024], "elafnettv.com": [5128], "support.transifex.com": [16743], "hivemc.link": [2024], "yuzumizki.xyz": [2024], "gotroy.us": [2024], "www.mndigital.com": [10172], "s4.reutersmedia.net": [13893], "www.zyvoxassist.com": [18865], "www.dm-mailinglist.com": [4040], "jkb.yt": [2024], "logistics.zalando.com": [18877], "de.mouseflow.com": [10664], "lovingsupport.nal.usda.gov": [17299], "www.westoxon.gov.uk": [18316], "oma.mvd.ru": [21055], "*.admitad.com": [664], "www.s-pankki.fi": [14116], "*.jodohost.com": [8621], "www.demonsaw.com": [4341], "www.efurnitureny.com": [4907], "red-blog.co.uk": [2024], "oce-docworks.rz.htw-berlin.de": [7103], "www.myfonts.com": [10804], "4g.if.qidian.com": [13349], "cryptonomicon.com": [3875], "rylwarfare.net": [13544], "livesupport.xmission.com": [18621], "x.veilands.com": [2024], "cheur.fr": [2024], "www.onehealthcommission.org": [21254], "www.thearchive.me": [16291], "www.blinktrade.com": [2097], "evkitch.com": [2024], "docs.pnp4nagios.org": [12305], "bgbr.in": [2024], "ekat.lubw.baden-wuerttemberg.de": [19302], "mabeo.pro": [2024], "bekijkjefoto.nu": [2024], "fwk.allshareplay.com": [885], "www.wwf.ch": [18028], "cdn.scriptfodder.com": [14482], "www.guide.nature.com": [11140], "dekeuze.nl": [2024], "www.manchester.gov.uk": [9954], "mail.scs.uiuc.edu": [17030], "julieg.me": [2024], "static.fas.harvard.edu": [7211], "1m1w.co": [2024], "archives.somethingawful.com": [15200], "mbjake.uk": [2024], "vpn.kyivstar.ua": [9067], "blah.im": [2075], "pres.sso.bluewin.ch": [2173], "www.peersm.com": [12557], "your.burnley.gov.uk": [2461], "www.pinkpaislee.com": [12726], "store.xkcd.com": [22652], "users.sakh.com": [21719], "www.kungfunation.com": [9051], "bugs.vestacp.com": [17740], "img.discogs.com": [4529], "vrtc.co": [2024], "chuangye.bbs.taobao.com": [16015], "www.webtrekk.com": [18263], "partner.steampowered.com": [15516], "ru.functions-online.com": [20187], "legitbs.net": [9248], "www.2joycasino.com": [20654], "www.flinq.de": [5902], "www.gamefaqs.com": [20201], "slg.bridgend.gov.uk": [19449], "registrationcenter.intel.com": [8211], "neonmob.com": [11195], "www.personaldataecosystem.org": [12611], "thetoadfly.com": [16599], "kirovskaya-obl.beeline.ru": [1778], "cl.ly": [3208], "cooldestinations.net": [3643], "z.rabs.ro": [2024], "gettyimages.ca": [6604], "precollegiate.stanford.edu": [15448], "kita.ninja": [2024], "thepirateproxy.tech": [22174], "gettyimages.ch": [6604], "luca-steeb.com": [20886], "fwc24.ru": [2024], "louisx.co": [2024], "latextemplates.com": [9133], "bernalbucks.org": [1824], "delecorp.delaware.gov": [15485], "gnr8ns.com": [2024], "sinnfein.ie": [14918], "ian.tv": [2024], "gear.mycelium.com": [21063], "www.timesofmoney.com": [16541], "www.bva.bund.de": [5706], "ab.monsalvat.no": [2024], "*.kirkusreviews.com": [8930], "omdl.me": [2024], "clvr.in": [2024], "hcstx.org": [20356], "www.mupdf.com": [21052], "www.postlapsaria.com": [13026], "www.jdi-solutions.co.uk": [20632], "pm.free-torrents.org": [20154], "pneumonia.biomedcentral.com": [1931], "familie.bayern.aok.de": [376], "m.indonesian.alibaba.com": [857], "www.zombeewatch.org": [18991], "www.literotica.com": [9479], "tellmescotland.gov.uk": [22123], "rtmet.com": [2024], "milodigit.al": [2024], "photos-g.ak.fbcdn.net": [5689], "www.admin.ox.ac.uk": [17359], "secure1.allerdale.gov.uk": [19148], "www.educationusa.state.gov": [17146], "alienvault.com": [860], "www.gumroad.com": [7002], "cilkplus.org": [3139], "www.shkspr.mobi": [14176], "scansm.com": [2024], "www.perlentaucher.de": [12608], "*.divshot.com": [4573], "secure16.pipni.cz": [12287], "etnasoft.com": [5376], "svn.mozdev.org": [10687], "wwf.org": [18030], "download-software.intel.com": [8211], "www.schuilenburg.org": [14430], "focuspull.in": [2024], "scon.do": [2024], "celmir.tuxfamily.org": [22319], "search.ssa.gov": [21959], "wtmjpa.tk": [2024], "www.interiorsavings.com": [8249], "elavon.co": [2024], "www.nowwhere.com.au": [21173], "nrb.email": [2024], "ontara.me": [2024], "s.webtrends.com": [18264], "forum.nashnet.ua": [21087], "rapidleaf.com": [13616], "blog.dlvrit.com": [19855], "nashnet.ua": [21087], "tokyote.ch": [2024], "static02.nyt.com": [11035], "tpssl.weibo.cn": [18277], "chelyabinsk.auto.ru": [19276], "pin.aliyun.com": [868], "linak.us": [2024], "employment.uow.edu.au": [17434], "secure.fogcreek.com": [5959], "www.loc-aid.com": [9547], "qcloud.com": [13346], "petcu.re": [2024], "es5.javascript.ru": [20629], "theybf.me": [2024], "et.gy": [2024], "chronixradio.com": [3125], "vipfree.96.lt": [2024], "mvn.click": [2024], "w.qiwi.ru": [13352], "newsroom.uber.com": [17169], "creativecdn.com": [3778], "a5.lscdn.net": [9115], "www.xserver.*.jp": [18684], "www.burthub.com": [2468], "victoriassecret.com": [17759], "www.diplomaframe.com": [3134], "megapath.com": [10240], "directories.piers.com": [12286], "huji.in": [2024], "r.sy.am": [2024], "id1.idqqimg.com": [7926], "veber.co.uk": [17675], "ferienhaus-seepark-eiken.de": [5740], "www.auctionthing.net": [1373], "onr.io": [2024], "kt.kz": [20761], "tls.so": [15890], "source.play-asia.com": [12828], "mdc.is": [2024], "ask.electric-cloud.com": [19978], "wiki.spnet.ru": [21939], "renho.tl": [2024], "vdownloader.es": [17565], "standaard.be": [15444], "hounslow.greenparty.org.uk": [6908], "www.ebuyer.com": [5033], "secure.leaseweb.com": [9229], "www.theaj.co.uk": [1192], "secureimg2.allposters.com": [882], "erwin.me": [2024], "suffolkcoastalandwaveney.firmstep.com": [20109], "myremax.co": [2024], "atlbulbs.com": [2024], "eduroam.vutbr.cz": [17609], "1310app.asana.com": [1265], "lmas.mind.org.uk": [10443], "es.redhat.com": [13735], "pegasus.georgetown.edu": [6531], "qisserver.htwg-konstanz.de": [7104], "www.ozon.ru": [12231], "www.mirakar.com": [10476], "infrequently.org": [8137], "secure.skype.com": [15003], "dselive.co": [2024], "*.wikidot.com": [18387], "*.launchrock.com": [9180], "ww-l.co": [2024], "picimage.co": [2024], "www.shopbop.com": [21807], "www.imagemagick.org": [7980], "e-cosm2015.osu.edu": [11797], "www.usweeklysubscriptions.com": [17504], "uk.state.gov": [17146], "my.115.com": [28], "adct.co": [2024], "www.specimens.cancer.gov": [2819], "ro.oxforddictionaries.com": [12223], "webmail.ucsd.edu": [17012], "l.ravi.be": [2024], "shopinfo.net": [14787], "www.pornel.net": [12976], "silkspan.com": [14858], "www.tropo.com": [16835], "metroride.hk": [2024], "st.niceia.com": [2024], "*.jrrt.org.uk": [8645], "www.youtube.jo": [18800], "www.vasexperts.ru": [22429], "files2.ostagram.ru": [12160], "ht.vc": [7592], "clk.so": [2024], "matematicas.uniovi.es": [17282], "pcmatic.us": [2024], "molevalley-consult.objective.co.uk": [21225], "www.tummy.com": [22307], "blog.usa.gov": [17110], "git.marmotte.net": [10036], "realvnc.com": [13687], "21.mvd.ru": [21055], "lovettpublishinghouse.com": [9642], "ripe.net": [13953], "m.fitbit.com": [5867], "cbauters.com": [2024], "janus.senate.gov.ph": [14636], "trp.io": [2024], "patil.la": [2024], "otalliance.org": [11718], "www.portal.scot.nhs.uk": [10953], "images.psxextreme.com": [12331], "rb-t.us": [2024], "webmetrics.com": [18226], "users.soe.ucsc.edu": [17390], "ss.fyi": [2024], "sur.om.net": [2024], "lumia.ms": [2024], "ronna.apan.org": [388], "cars.webjet.co.nz": [18219], "urlptt.com": [2024], "www.eecs.berkeley.edu": [17329], "catalyst.amazon.com": [960], "www.2ton.com.au": [119], "www.cathaypacificcargo.com": [2913], "kaseya.com": [8816], "mcafee.com": [10129], "go.salespro.co": [2024], "ecuav.tv": [2024], "worlddab.org": [18538], "go.forgerock.com": [20136], "www.marktplaatsperskamer.nl": [10034], "www.mcb.net": [9975], "saltr.io": [2024], "linuxwall.info": [9451], "wbutcher.link": [2024], "www.csis.ysu.edu": [18832], "bio-one.co": [2024], "archive-7.kali.org": [8786], "theuntapped.co": [2024], "cesv.cz": [2024], "khalifaofislam.com": [8886], "s32.postimage.org": [13024], "hongyushipin.jd.com": [8434], "helpdesk.pcc.nhs.uk": [10953], "krasnodar.sumtel.ru": [22031], "cbe.osu.edu": [11797], "www.ezding.com.tw": [5528], "wwv.ipleak.net": [20571], "www.cloudfoundry.org": [3297], "snackbox.microsoft.com": [10396], "8ug.cc": [2024], "emsonline.cumbria.gov.uk": [19742], "x.boardgamearena.net": [2182], "resilience.engineering.osu.edu": [11797], "cfimag.es": [2024], "xorg.freedesktop.org": [6102], "home.live.com": [9495], "rf.revolvermaps.com": [21643], "webforms.merton.gov.uk": [10311], "world.popadscdn.net": [12950], "votewatch.eu": [17935], "cdn.mars-one.com": [10038], "u.msdynamics.es": [2024], "xxi.mx": [2024], "rzz.li": [2024], "chcidoo2.cz": [16141], "focl.co": [2024], "learnmyway.com": [9226], "www.kgnb.am": [8738], "www.claimformsplus.com": [3209], "www.simplesharebuttons.com": [14888], "pinkm.tv": [2024], "fntastic.xyz": [2024], "crvs.io": [2024], "plos.org": [13252], "www.devon-cornwall.police.uk": [4416], "igl.net": [2887], "s.oktamam.com": [2024], "guangxi.jd.com": [8434], "uky.cc": [2024], "sfs01.hkuspace.hku.hk": [20387], "mail.exratione.com": [5461], "*.wp.com": [18520], "seedboxes.cc": [14612], "*.dane.verisignlabs.com": [17713], "maymay.net": [10118], "www.plati.ru": [12821], "cadastro.uol.com.br": [17079], "news.interfax.kz": [20552], "*.hackers.fi": [7134], "hpcltr.co": [2024], "*.kbb.com": [8859], "t3.pixhost.org": [21426], "shop.anthem.com": [19206], "klmf.ly": [2024], "assiste.ai": [2024], "*.gostorego.com": [9870], "global-entry.beta.homeoffice.gov.uk": [20399], "yar.fruct.org": [5585], "123.sogou.com": [15168], "d1.sinaimg.cn": [14910], "www.m-vg.de": [9699], "s.w-x.co": [17977], "nset.pw": [2024], "tubemogul.com": [16885], "at.on.aol.com": [380], "0pen.me": [2024], "www.exist.de": [4986], "cob-sp.com": [2024], "t.tellapart.com": [22122], "pre-software-security.sans.org": [14128], "athena10.mit.edu": [9763], "skdl.it": [2024], "shftm.com": [2024], "v.popincdn.com": [12955], "jobs.cpanel.com": [2665], "consult.highland.gov.uk": [20374], "ak-console.aliyun.com": [868], "status.run.pivotal.io": [12765], "qr.hrenatoh.net": [2024], "software.topcoder.com": [13119], "connectpros.com": [13064], "549.worldcat.org": [18536], "r.mway.co": [2024], "balatarin.com": [1648], "translate.evernote.com": [5440], "candy.do": [2024], "bernina.com": [1827], "ijpeonline.biomedcentral.com": [1931], "amazon.it": [19178], "fqd.me": [2024], "lilurl.org": [2024], "x.niche.com.au": [21136], "*.morningstar.com": [10636], "apps.liveperson.com": [9506], "ammec.de": [366], "h1.hitravel.xyz": [2024], "cdn.mark.reevoo.com": [13772], "travis-ci.org": [16775], "tktwb.tw": [2024], "www.sitesafe.org.nz": [14945], "cdon.eu": [2576], "amazon.in": [19177], "www.rutracker.org": [21702], "*.fc2.com": [5546], "www.online-go.com": [11906], "www.allizom.org": [904], "the.alias.black": [2024], "www.myplaydirect.com": [10819], "kraxel.org": [9019], "www.coveredcacertifiedpartners.com": [3728], "mysql.carezone.cz": [2859], "y.icetravel.xyz": [2024], "s.digitec.ru": [2024], "p20.qhimg.com": [13347], "www.robotshop.com": [13983], "weighttp.lighttpd.net": [9362], "stat.auto.ru": [19276], "sarg.li": [2024], "isa.to": [2024], "kbs.de": [8953], "go.imacandi.net": [2024], "velemenyvezer.444.hu": [183], "pt.pcisecuritystandards.org": [12253], "biz.censor.net.ua": [19538], "vault.fbi.gov": [5698], "www.elsteronline.de": [5180], "*.libav.org": [9306], "*.imimg.com": [8067], "*.meetrics.de": [10230], "www.fonts.com": [5971, 5972], "mkthlt.ga": [2024], "faaaccess.ed.gov": [4881], "thetechnoskeptic.com": [16388], "onlineforms.northyorks.gov.uk": [21161], "support.jlist.com": [8454], "mikeb.it": [2024], "jav.ma": [2024], "xy2.gm.163.com": [50], "ejam.my": [2024], "login.mts.ru": [21042], "antiphishing.org": [1102], "www.dollarshaveclub.com": [4635], "appiehein.com": [1147], "kammeratadam.dk": [8792], "*.waikato.ac.nz": [17431], "cdromland.nl": [2580], "tar-jx.bz": [16022], "www.bunniestudios.com": [2454], "russian.rt.ru": [13529], "newsvine.com": [11390], "img.marvelstore.com": [10049], "m.lastpass.com": [9175], "seawolv.es": [2024], "www.rrzn.uni-hannover.de": [17255], "nemesis.marxists.org": [10051], "piwik.fau.org": [5543], "187.play-asia.com": [12828], "www.next.co.uk": [11399], "careers.weill.cornell.edu": [3676], "www.abdussamad.com": [465], "www.canaldigital.dk": [2817], "images.victorinox.com": [17761], "mikews.co": [2024], "*.npario-inc.net": [10991], "i.dlayphoto.com": [2024], "alumni.thm.de": [15876], "tawa.us": [2024], "sc04.alicdn.com": [853], "brew4.us": [2024], "*.e.champssports.com": [2998], "pr.photozou.jp": [2024], "afternoontee.co": [2024], "pgeveryday.ca": [13168], "cms.gameflycdn.com": [6398], "assets.newsinc.com": [11376], "*.soton.ac.uk": [17364], "kyleschaeffer.com": [2144], "www.buffered.io": [2421], "roxy.jayeshb.me": [2024], "u.bay.rocks": [2024], "www.firsttechfed.com": [5854], "userlike.com": [17520], "bundesnetzagentur.de": [2445], "gat.rs": [2024], "www.konsumentverket.se": [20747], "www.sdilej.cz": [14492], "scan.botscanner.com": [2258], "images.1sfx.net": [11881], "26.mvd.ru": [21055], "deals.iphoneincanada.ca": [8340], "ning.it": [2024], "pcriu.com": [2024], "unite.opera.com": [12086], "t.fanscup.com": [2024], "whatspeci.es": [2024], "thregr.org": [22200], "ont.li": [2024], "cdn.joomla.org": [8641], "bitcoinarmory.com": [2002], "ar.atwola.com": [377], "www.maine.gov": [9908], "view.vzaar.com": [17976], "bolehvpn.net": [2204], "omegaup.com": [11831], "www.nickelled.com": [21137], "wthink.me": [2024], "newchat.bezeqint.net": [1862], "stay.am": [2024], "*.sfm-offshore.com": [14169], "s134.cnzz.com": [3328], "mosoblast.rt.ru": [13529], "m7a.co": [2024], "media2.bazaarvoice.com": [1735], "s.jalan.net": [2024], "sega.play-asia.com": [12828], "www.turris.cz": [16918], "www.gfmtrader.com": [6304], "parents.wustl.edu": [18089], "trophyclass.us": [2024], "belregion.ru": [19353], "on.mktw.net": [2024], "connectmyphone.com": [3584], "www.marinsoftware.de": [10004], "st.3.cn": [135], "owkb.ch": [20683], "payments.amazon.co.jp": [19169], "m.ina.fr": [7769], "altng.ucsd.edu": [17012], "msec.xp1.ru4.com": [14064], "ustyle.me": [2024], "getasgard.com": [6570], "rsbplus.rsb.ru": [14058], "cacheserve.williamhill.com": [18407], "www.eriga.lv": [13936], "crimereduction.homeoffice.gov.uk": [20399], "kochanski.mysql.cesky-hosting.cz": [19553], "trucchifb.com": [2024], "go.rebun.jp": [2024], "user.hao123.com": [7186], "www.launchkit.io": [9179], "hornyzemplin.korzar.sme.sk": [14198], "samsungdirect.com": [14328], "r7.tv2.dk": [15946], "y11r.com": [2024], "p25.qhimg.com": [13347], "mpi.otpbank.ru": [12165], "cdn.thesn.net": [16423], "svcntr.in": [2024], "transition.fcc.gov": [5699], "www.medawar.ox.ac.uk": [17359], "m.bankcoop.ch": [3647], "pcsp-emu.com": [5216], "mgstn.ly": [2024], "www.bctr.cornell.edu": [3676], "edfenergy.com": [4882], "osa.org": [12102], "ness.ncl.ac.uk": [10926], "2.vgc.no": [17569], "www.douglas.firmstep.com": [20108], "www.ijreview.com": [7751], "www.bt.com": [1578], "ripe66.ripe.net": [13953], "jura.uni-potsdam.de": [17417], "de-cix.net": [4013], "www.waterfoxproject.org": [18098], "www.collabora.com": [3418], "tampabaysod.com": [16001], "piwik.bytemark.co.uk": [2503], "telesales.iciciprulife.com": [7917], "lpnt.fr": [2024], "mslj.im": [2024], "nmtlg.me": [2024], "u.mic.io": [2024], "nlin.jp": [2024], "www.lastlog.de": [9176], "www.aberdeenmosque.org": [469], "www.hipmunk.com": [7420], "r24624961.sync.app.asana.com": [1265], "elearning.rhb.ch": [13914], "rcking.eu": [13463], "mypostbusiness.ch": [12996], "beautym.be": [2024], "*.mentor.com": [10284], "father.fitness": [2024], "plus.uc.cn": [17003], "apps.itunes.com": [20468], "s.xeni.me": [2024], "geoportal.khabarovskadm.ru": [20708], "cvnyd.ch": [2024], "www.ezv.admin.ch": [22061], "umvd72.mvd.ru": [21055], "b.mfndl.com": [2024], "muscleandstrength.com": [10745], "www.lichtblick.de": [9340], "mcrae.in": [2024], "ideo.is": [2024], "secure.hslda.org": [7091], "www.vespermarine.co.uk": [17738], "opendaylight.org": [11972], "customer.pdc.prd.xfinity.com": [22650], "www.dontbreakourphones.org": [19881], "www.donejs.com": [19879], "crowd.cms.gov": [19630], "secure.eu.playstation.com": [12832], "ufa.psbank.ru": [13231], "www.discord.me": [4532], "www.piliapp.com": [12706], "payment.bhphotovideo.com": [19370], "trigacy.me": [2024], "debekijkerie.nl": [4233], "tti-tam.us": [2024], "petrol.life": [2024], "www.kayak.com": [8839], "trnc.pw": [2024], "cdn.segment.com": [14621], "cancer.stanford.edu": [15448], "www.revosec.ch": [13907], "*.getchef.com": [6573], "ulogin.ru": [22357], "www.bnl.gov": [19418], "npjmicrogravitycommunity.nature.com": [11140], "td.tdprro.com": [2024], "mai.amazon.cn": [19168], "acs.onlinesbi.com": [11911], "www.zabmedia.ru": [22704], "www.kairo.at": [8782], "frtw.nl": [2024], "heartbleed.com": [7273], "cbs.centos.org": [2950], "outilsdevie.fr": [2024], "register.msi.com": [9806], "aps.org": [976], "*.civicscience.com": [3203], "www.glasscraftexpo.com": [6682], "static.truckingunlimited.com": [16838], "customercenter.dynamic1001.eu": [19914], "5kbhkort.kk.dk": [8748], "paste2.org": [12474], "ak2.static.dailymotion.com": [4119], "l.stanpol.ru": [2024], "efn.tv": [2024], "www.securecode.com": [10060], "www.euroland.com": [5408], "img100-875.xvideos.com": [22660], "md.cair.com": [2528], "pacs.wustl.edu": [18089], "extras.glx-dock.org": [20270], "dtc.*.gplhost.com": [6349], "www.twrp.me": [15956], "pastebin.com": [12478], "boutique.liberal.ca": [9309], "lewisham.objective.co.uk": [21225], "101xp-portal-pl-stage.cdnvideo.ru": [19536], "qjmath.oxfordjournals.org": [12222], "snap.licdn.com": [9098], "coyote.srv1.oms.eu": [11673], "www.my-history.co.uk": [21057], "ww1097.smartadserver.com": [15049], "nocworx.nexcess.net": [11396], "her.is": [2024], "lil.self.is": [2024], "tobaccofree.osu.edu": [11713], "storage.evozi.com": [5457], "mrbl.info": [2024], "kernel-recipes.org": [8872], "*.getty.edu": [6602], "sinastorage.com": [14911], "b.tks.pw": [2024], "urlig.de": [2024], "www.ppaweb.hku.hk": [20387], "status.realtimeboard.com": [21604], "gdsapi.cnbc.com": [2645], "www.bfm.ru": [19365], "i2-groceries.asda.com": [407], "www.iconfinder.com": [7920], "zoom.bz": [2024], "portal.cp.pt": [3741], "cdn.destructoid.com": [4384], "bhmc.tmall.com": [22222], "r.ynhn.com": [2024], "b.gkec.info": [2024], "t.bf-g.de": [2024], "blackbaud.com": [2067], "achenglab.stanford.edu": [15448], "*.fender.com": [5734], "bittrex.com": [2047], "nlm7.us": [2024], "merlinux.eu": [10309], "ep2015.europython.eu": [5399], "bl.vosjero.me": [2024], "s-media-cache-ec1.pinimg.com": [12724], "fntk.co": [2024], "*.geccdn.net": [6470], "on.wb.com": [2024], "cpsd.es": [2024], "pflag.org": [12273], "hhs87.co": [2024], "gc.agar.io": [762], "www.vdc-sy.org": [2952], "mbing.de": [2024], "stansult.com": [2024], "si.rgstatic.net": [13481], "netdoktor.se": [11263], "gmax.maryno.net": [20928], "www.redfin.com": [13753], "fb.ge": [2024], "tanzania.usembassy.gov": [22406], "res.axeso5.com": [1500], "sxplr.do": [2024], "*.em.gov.au": [1414], "dn.mail.ru": [9891], "www.runabove.com": [14090], "www.invizbox.io": [8322], "ceneo.pl": [2945], "eoc.anthem.com": [19206], "foerderung.migros-kulturprozent.ch": [10416], "pantherfile.uwm.edu": [17379], "s.suzusyo.info": [2024], "envirotrend.com.au": [5297], "www.mail.nic.ru": [11419], "silicon.com": [14851], "frys.com": [6215], "gdata.de": [6272], "go.bretep.me": [2024], "mailoo.org": [9903], "afiestas.org": [749], "www.alianza.tv": [855], "customer.iciciprulife.com": [7917], "sutr.in": [2024], "ohba.by": [2024], "promo.vedomosti.ru": [22433], "aliyunecs.oss.aliyuncs.com": [19143], "b91.yahoo.co.jp": [18730], "githost.io": [20253], "css.redblue.de": [13739], "loa.org": [9540], "arqbackup.com": [1235], "scr.golem.de": [6804], "101fr.org": [2024], "www.amejobs.g4s.com": [20195], "fun.mozilla.com.tw": [10692], "t-mo.co": [2024], "www.catalog.update.microsoft.com": [10396], "public-dc2.govdelivery.com": [6846], "auto-verkaufen.mobile.de": [21001], "shop.ichkoche.at": [7916], "photos.state.gov": [17146], "mail.lantek.ru": [20783], "bush.ly": [2024], "kkdn.at": [2024], "over.farm": [2024], "www.classes.osu.edu": [11797], "katf.in": [2024], "suomityo.fi": [2024], "disc.sci.gsfc.nasa.gov": [10909], "img.tenpay.com": [16185], "bmw.axonify.com": [1502], "www.worldwildlife.org": [18544], "cltglobal.com": [2637], "www.marine.scotland.gov.uk": [21755], "www.dailykos.com": [4111], "static5.glassdoor.com": [6683], "university.xamarin.com": [18629], "www.wikimedia.cz": [18388], "p.andrin.ga": [2024], "trac.osgeo.org": [11707], "tpvs2.hmrc.gov.uk": [7076], "www.visaeurope.si": [17847], "twlnk.co": [2024], "funio.com": [6243], "popular.com.tw": [12965], "www.cstatic-images.com": [3893], "regraonline.tk": [2024], "plctwitlerr.com": [2024], "www.linuxliteos.com": [20850], "mdpri.de": [2024], "www.f2.htw-berlin.de": [7103], "sploid.gizmodo.com": [6677], "static.hypestat.com": [20458], "hr-innovation.htwk-leipzig.de": [7596], "opendata.camden.gov.uk": [2785], "www.recode.net": [13709], "tickets.puppetlabs.com": [13276], "7search.com": [234], "derecho.uniovi.es": [17282], "purejingl.es": [2024], "studyrooms.lib.plymouth.ac.uk": [12873], "frbn.ch": [2024], "emcraft.com": [5192], "status.asmallorange.com": [259], "acrchi.com": [2024], "swu.mobi": [2024], "www.ucommand.com": [17190], "krkn.cf": [2024], "bettersk.in": [2024], "branchisd.illuminateed.com": [20494], "yunaq.com": [22702], "www.andover.edu": [12653], "pchrb.dengisend.ru": [4344], "trendit.me": [2024], "*.pbase.com": [12244], "*.talkingphonebook.com": [9550], "110.alipay.com": [864], "foe11.com": [2024], "sport.uni-ulm.de": [22368], "admissions.valeofglamorgan.gov.uk": [17619], "bdyw.se": [2024], "bet365affiliates.com": [19358], "c.sdbx.co": [2024], "sentinelone.com": [14649], "nitrocloud.com": [11468], "klinika.friday.ru": [20175], "shoppt.co": [2024], "www.jazzy.id.au": [8550], "www.sitetagger.co.uk": [14940], "media.now.com": [11572], "uned.it": [2024], "rdvn.co": [2024], "pyb.li": [2024], "zchat.com": [22708], "s.sbuf.me": [2024], "*.groupon.gr": [6954], "zenmate.de": [18917], "aktualne.centrum.sk": [19548], "open.map.qq.com": [13329], "marketplace.ricoh.com.sg": [13935], "fasttrack.va.gov": [17100], "fprnt.com": [6069], "www.banking.us.hsbc.com": [7090], "quiz.lifehacker.ru": [20836], "www.xfinity.com": [22650], "bmbf.de": [19414], "www.iphones.ru": [20568], "*.rakdigital.co.uk": [13546], "bitcoin.at": [1989], "keef.me": [2024], "s.scouter.at": [2024], "basicsof.biz": [2024], "www.doesnotwork.eu": [4622], "mypension.wirral.gov.uk": [18461], "www.vpnreactor.com": [17591], "digicert.com": [4461], "explorecourses.stanford.edu": [15448], "www.secondlife.com": [14527], "sandstorm.io": [14346], "cloudforge.com": [3286], "www.torrentr.eu": [16654], "mindtouch.com": [10445], "softserve.8ch.net": [243], "facilities.med.wustl.edu": [18089], "www.ige.ch": [15759], "www.philosophersguild.com": [12654], "webmail.1and1.com": [69], "usatoday.com": [17111], "app-uk2.resrc.it": [13659], "hbt.news": [2024], "app.loadimpact.com": [9542], "blog.eloqua.com": [5172], "service.velaro.com": [17684], "cleancoast.co": [2024], "www.pendle.gov.uk": [12565], "geo2.unistream.ru": [17291], "www.kasserver.com": [8722], "www.getgophish.com": [20239], "orangegeek.com": [12124], "myplatinumpak.com": [12823], "www.stage-mobioinsider.com": [10541], "s.jgog.in": [2024], "community.hide.me": [7394], "evcn.co": [2024], "jobs.uif.uillinois.edu": [17034], "redmine.enaza.ru": [5222], "baymirror.win": [21524], "hotelshelp.skyscanner.net": [15006], "simpleforms.scripts.wvu.edu": [18306], "www.coursesmart.com": [19701], "schooladmissions.wirral.gov.uk": [18461], "jabbr.net": [8483], "wiki.associatie.kuleuven.be": [8832], "infocentre.dsi.cnrs.fr": [6174], "e8.xhamsterpremiumpass.com": [18607], "on.nba.com": [2024], "kal.ki": [2024], "fusioncrm.oracle.com": [12116], "mobicents.ci.cloudbees.com": [19622], "sip.mosoblgaz.ru": [21024], "cimbclicks.co.id": [2617], "wmfdesigns.nl": [2024], "www.ocronusa.net": [11750], "l.ell.io": [2024], "jqplay.org": [20655], "www.tlgrm.ru": [22221], "sexualassault.georgetown.edu": [6531], "myhearstnewspaper.com": [7270], "www.linuxdays.cz": [9424], "az4u.it": [2024], "go.th3pf.com": [2024], "evakad.de": [2024], "www.mytime.com": [10836], "hrms.onlinesbi.com": [11911], "i1.itc.cn": [8401], "snib.be": [2024], "careerfoundry.com": [2856], "cageit.us": [2024], "l.cjb.im": [2024], "t4p0ut.tk": [2024], "asip.me": [2024], "*.globalsign.com": [6700], "www.weboolu.com": [18230], "its-proposals-dev.ucsc.edu": [17390], "*.gamestarmechanic.com": [6421], "unm.edu": [17072, 17074], "www.kilometrikisa.fi": [8904], "portal.nitrosell.com": [11467], "nic.io": [11421], "tribecafilminstitute.org": [16802], "mwatt.ca": [2024], "kupfi.me": [2024], "r24820239.sync.app.asana.com": [1265], "www.sertifikatai.lt": [14659], "www.htw-berlin.de": [7103], "ehjcimaging.oxfordjournals.org": [12222], "yoshkar-ola-realty.rambler.ru": [13600], "ca.isohunt.com": [8386], "ehs.osu.edu": [11797], "server314.com": [14665], "rcktrip.co": [2024], "difi.no": [4452], "kamenskshah.tpprf.ru": [22260], "mail.bisaquran.com": [1945], "go.beckatl.com": [2024], "ilearn.cathaypacific.com": [2913], "www.feral.io": [5736], "www.topg.org": [22236], "oamp.od.nih.gov": [11090], "translate.gajim.org": [6383], "cdn2.iconfinder.com": [7920], "p71.nl": [2024], "brabysads.com": [2281], "rdinfo.uk": [2024], "wphomes.soic.indiana.edu": [8070], "nalogforum.tpprf.ru": [22260], "nottmwi.re": [2024], "a.kuhave.com": [2024], "l.siseci.net": [2024], "edgecastcdn.net": [5070], "www.sportmaster.ru": [21944], "www.liberiangeek.net": [9313], "www.segpaychat.com": [14618], "epay.bg": [4935], "www.vesti.ru": [22450], "7.*.wdfiles.com": [18387], "go.ringgle.com": [2024], "highf.ly": [2024], "aukcie.datart.sk": [3998], "prd-paymonitor.imercer.com": [20502], "www.soros.org": [11944], "fcs.unizar.es": [17441], "de.manjaro.org": [9966], "lkjs.zamimg.com": [18878], "geofas.me": [2024], "www.dfrdb.gov.au": [4291], "sindeo.co": [2024], "hypovereinsbank.de": [7654], "ajma.me": [2024], "www.partnernet.avira.com": [1474], "sf.bizible.com": [19395], "foriswine.com": [6017], "kronos-time.nytco.com": [11036], "support.infoblox.com": [8108], "momysg.co": [2024], "tdata.link": [2024], "www.altera.com": [926], "go.cihanek.com": [2024], "www.opencpu.org": [11961], "daileopaleo.us": [2024], "kmpaint.co": [2024], "tspr.ng": [16880], "materiel.net": [10076], "sc.spriggan.net": [2024], "reactjsnews.com": [13663], "clsync.it": [2024], "tacoma.uw.edu": [17156], "er.lrc.usuhs.edu": [17132], "www.organdonation.nhs.uk": [10953], "streamline.com": [22007], "we.taobao.com": [16015], "gizey.at": [2024], "piwik.openstreetmap.org": [12015], "undrs.td": [2024], "alfaportal.kz": [849], "sith.my": [2024], "maplecroft.com": [20925], "auth.montpellier3m.fr": [10609], "scs.cals.cornell.edu": [3676], "bezeq.co.il": [19362], "getf.ly": [2024], "slovnik.azet.sk": [1507], "cachebrowser.info": [2722], "thrv.co": [2024], "www.thompsonhotels.com": [16453], "sohosted.com": [15114], "webmail2.beget.com": [19347], "oprtnty.co": [2024], "rest.dynamicyield.com": [4822], "s3.hdslb.com": [20358], "www.innovations.cms.gov": [19630], "phase.to": [2024], "cdn.embed.ly": [5188], "objective-see.com": [11740], "stamini.st": [2024], "www.erowid.org": [5339], "companieshouse.gov.uk": [3509], "apps.dealer.com": [4245], "tags.api.umbel.com": [17227], "idealconceal.com": [20478], "www.thehackernews.com": [16407], "journ.us": [2024], "b3n.im": [2024], "scim.ag": [2024], "www.sketchfab.com": [14973], "static.warthunder.ru": [22530], "www.bitrig.org": [2035], "bankd.co": [2024], "bghl.co": [2024], "asctrust.com": [406], "d4.design": [2024], "data.information.dk": [8125], "*.umanitoba.ca": [17348], "*.mla.com.au": [10148], "li.wly.ch": [2024], "*.happyknowledge.com": [7189], "www.thepirateproxy.info": [22174], "tmn.gp": [2024], "dbq.me": [2024], "cdn-2.sundul.us": [2024], "baz.link": [2024], "downloads.checkpoint.com": [3052], "my.gyf.io": [2024], "may.desi": [2024], "mega.com": [10233], "www.newsoffice.mit.edu": [9763], "grassroots.groupon.com": [6953], "addons.videolan.org": [17775], "vos.symantec.com": [15780], "www.joycasino11.com": [20654], "b.vapourbox.co": [2024], "www.opalang.org": [11939], "shkspr.mobi": [14176], "fl.cobweb.ch": [2024], "es.manage.my.t-mobile.com": [15837], "freecause.com": [6135], "staffrecord.aber.ac.uk": [473], "dl.audiobob.net": [2024], "clarreo.larc.nasa.gov": [10909], "www.ieee-elearning.org": [7722], "secure.datei.li": [19768], "www.indieweb.org": [8076], "ict-helpdesk.lsbu.ac.uk": [9111], "*.cert-bund.de": [2589], "ufa.startsmile.ru": [21980], "jer.si": [2024], "homedecorsto.re": [2024], "echoditto.com": [5037], "*.ticketweb.com": [16495], "apps.owncloud.com": [12214], "fetshop.co.uk": [5749], "clmtp.lc": [2024], "bit.jppharma.in": [2024], "admin.netnanny.com": [11253], "www.dezertdepot.com": [4424], "cntrct.co": [2024], "dru-cdn.zipcar.com": [18973], "www.mozillazine-fr.org": [21031], "l.oire.fi": [2024], "webapp.icarol.com": [20460], "www.interactiveonline.com": [8240], "eastriding.objective.co.uk": [21225], "game-static.msi.com": [9806], "schrotty.la.welt.de": [18290], "www.eere.energy.gov": [5243], "on.mtv.com": [2024], "byfiles.storage.msn.com": [9810], "atlassian.com": [1348], "hlsd-31kz.cdnvideo.ru": [19536], "digifox.me": [2024], "progd.me": [2024], "transportation.amazon.fr": [19176], "custom-css.basekit.com": [19323], "update.local.ch": [9548], "www.versitech.hku.hk": [20387], "git01.rostrud.ru": [21677], "constitutionday.aclu.org": [312], "j1visawaiverstatus.state.gov": [17146], "frog.qrq.de": [13362], "paradox-interactive.teamtailor.com": [16068], "pogiblog.atlatszo.hu": [1349], "caco.me": [2024], "www1.citymapper.com": [3195], "www.btm.admin.ch": [22061], "update.dedyn.io": [19789], "slp4.somerset.gov.uk": [15197], "d211.st": [2024], "www.scnsrc.net": [21752], "riga.lv": [13936], "shop.flixbus.it": [5911], "couragecampaign.org": [3712], "prosody.im": [13204], "www.static-cisco.com": [15490], "mesr.me": [2024], "emv3.com": [5186], "www.bell.ca": [1792], "lum.im": [2024], "ivorde.com": [8415], "new.mediastorage.afisha.ru": [19107], "panstwomiasto.pl": [12398], "blog.invisiblethings.org": [20559], "www.askubuntu.com": [15424], "4.ltno.us": [2024], "vsprf.ca": [2024], "dealfish.co.th": [4249], "vetca.re": [2024], "cbwd.us": [2024], "ocaf.georgetown.edu": [6531], "igy.me": [2024], "www.adblade.com": [615], "pornp.co": [2024], "www.feedbackify.com": [5722], "secure.rec1.com": [13703], "forums.desmume.org": [4232], "indw.es": [2024], "callcenter.reservation-desk.com": [13860], "forum6.hkgolden.com": [7058], "on.vhpost.tv": [2024], "*.groupon.co.uk": [6956], "hiring.careerbuilder.com": [2853], "registrars.registry.asia": [13797], "hannovermesse.de": [7184], "cepascc.org": [14401], "wkr.me": [2024], "west-norfolk.objective.co.uk": [21225], "tula.europaplus.ru": [20034], "connect.visualstudio.com": [17872], "blackbox.fbk.info": [5691], "*.alliedmedia.org": [902], "secure.paysol.se": [12519], "www.fsa.usda.gov": [17299], "www.simplemachines.org": [21830], "i2m.link": [2024], "seati.ms": [2024], "*.on24.com": [11675], "www.aldi.be": [357], "get.yavi.co": [2024], "kundservice.svd.se": [15734], "www.hyb.pw": [20451], "tags.mathtag.com": [10083], "demo.crowdin.com": [3823], "www.aberystwythartscentre.co.uk": [19039], "www.wilmerhale.com": [18410], "arvn.cf": [2024], "campushuesca.unizar.es": [17441], "technische-aufklaerung.de": [16103], "c64.assets-yammer.com": [1307], "krb-sjobs.brassring.com": [19443], "gorb.it": [2024], "ja.hideki.hclippr.com": [7034], "www.alldebrid.fr": [878], "ru.piliapp.com": [12706], "digtb.us": [2024], "mspu.co": [2024], "privacy.truste.com": [15922], "web.consumerreports.org": [3601], "getaddr.bitnodes.io": [2034], "nrdle.us": [2024], "www.linuxgamepublishing.com": [9438], "cambridgelibrary.worldcat.org": [18536], "www.itactic.com": [7863], "pics.cdn.librarything.com": [9321], "ada.edu.au": [1412], "chooseblocks.com": [3106], "rep-li.ca": [2024], "m.voyage-prive.it": [17947], "www.pet-nanny.net": [12618], "ikin.ci": [2024], "jab.bz": [2024], "l.td00.de": [2024], "dekori.us": [2024], "twr.ky": [2024], "go.shfx.xyz": [2024], "www.intux.de": [8304], "usertags.com": [17167], "u.djchuang.com": [2024], "tkgorod.ru": [22217], "l.svj2291.cz": [2024], "myi.tw": [2024], "www.hidekisaito.com": [7396], "sh.kang2oon.com": [2024], "fischbestaende-redaktion.ble.de": [19406], "crame.co": [2024], "www.kyleschaeffer.com": [2144], "img.pastebin.ca": [12477], "docs.continuum.io": [19676], "www.ultratools.com": [17220], "wwninvite.com": [2024], "*.musicnotes.com": [10755], "forums.sabnzbd.org": [14276], "cdn.onscroll.com": [11851], "my.profitbricks.com": [13176], "www.celmir.tuxfamily.org": [22319], "snort.org": [15106], "url.pradjadj.id": [2024], "www.encipher.it": [5223], "bim.holyrood.com": [20393], "free13.beget.com": [19347], "u3.hitravel.xyz": [2024], "static-02-www.icij.org": [7689], "www.glasses.com": [6684], "tickets.openmrs.org": [11989], "cst.usc.edu": [17366], "legacy.law.georgetown.edu": [6531], "r.dmp.sina.cn": [14903], "irc.geany.org": [6463], "securemail.zg.ch": [22061], "servercraft.co": [14674], "hcsportal.studaff.calpoly.edu": [2764], "www.auth.usyd.edu.au": [22413], "panel.medianova.com": [10192], "puborder.ncjrs.gov": [10925], "webgen.vodafone.pt": [17903], "*.siemens.com": [14831], "mxguarddog.com": [9826], "datenspuren.de": [4209], "www.francescopalazzo.com": [20148], "www.fs02.androidpit.info": [1052], "moodle.caltech.edu": [2771], "home-bap.navigator.web.de": [18146], "ccclub.cmbchina.com": [2639], "www.brilig.com": [2349], "hr-info.web.cern.ch": [2588], "je.tl": [2024], "www.fkl.fi": [5815], "freshn.es": [2024], "at.sksn.co": [2024], "uni-saarland.de": [17259], "www.addthis.com": [626], "clickfuncasino.com": [3260], "*.pricerunner.com": [13100], "intentmedia.co.uk": [8226], "action-intell.com": [546], "skate.sh": [2024], "watchmedier.dk": [18093], "remote.aacqa.gov.au": [276], "*.surpasshosting.com": [15719], "fabricecarle.fr": [2024], "coastalmicrosupply.com": [3338], "www.audiencetargeting.com": [1383], "tracker.clearos.com": [19608], "cache.thumbs.sbstatic.com": [14860], "flatbeds.me": [2024], "lists.ipv4.tip.net.au": [15885], "northdorset.greenparty.org.uk": [6908], "j.gethustle.co": [2024], "attach.mobile01.com": [10533], "myapps.developer.ubuntu.com": [17183], "www.footprintnetwork.org": [6695], "sf.mail.ru": [9891], "wok.social": [2024], "helptorrents.com": [20367], "portal.cuhk.edu.hk": [2704], "live-trc33.cdnvideo.ru": [19536], "networkadvertising.org": [11309], "hzmy.alibaba.com": [857], "issa.beltelecom.by": [1801], "wavpin.com": [18106], "*.hjcms.de": [7054], "gtt.net": [6371], "siw.stanford.edu": [15448], "www.packetflagon.uk": [21334], "jenkins.videolan.org": [17775], "www.blackburn.gov.uk": [19401], "www.theiconic.com.au": [16367], "www.kiva.org": [8939], "lunarpages.co.uk": [624], "drapt.com": [19894], "www.teamunicef.org": [16066], "static.polskieradio.pl": [12932], "qiang.taobao.com": [16015], "infz.eu": [2024], "load.exelator.com": [4988], "www.nanog.org": [11529], "blog.bk55.ru": [19398], "*.coochey.net": [3635], "alssl.askleomedia.com": [1288], "maskmag.com": [2024], "classy.org": [19606], "maven.co": [10098], "extratorrentonline.com": [5516], "sbb.ch": [15756], "messaging-notifications.api.nytimes.com": [11041], "www.ftc.gov": [5710], "phi.sx": [2024], "pda.bnkomi.ru": [19417], "packagist.org": [21332], "www.keyworddiscovery.com": [8884], "a8.net": [271], "empleos.g4s.com": [20195], "temp-pt.mondediplo.com": [10578], "rootsoffight.ca": [2024], "jason.cnes.fr": [2647], "di2d.info": [2024], "kajota.me": [2024], "navalny.com": [11148], "whispersystems.org": [18343], "www.zdv.uni-mainz.de": [17409, 17410], "srf.ch": [21957], "deadline.com": [4239], "protectedtext.com": [13212], "i.lokerbox.com": [2024], "t.aking.ca": [2024], "quantopian.com": [13390], "www-stg.jobvite.com": [8616], "myhome.britishgas.co.uk": [2356], "popte.ch": [2024], "hog.onl": [2024], "peertube.cpy.re": [19710], "pic8.qiyipic.com": [13354], "soundkit.io": [15227], "l.vigier.at": [2024], "sf.hu": [2024], "rutland.in": [2024], "paquins.us": [2024], "raceresu.lt": [2024], "tfexplorevr.com": [2024], "jp.piliapp.com": [12706], "ktmdot.net": [2024], "booking.aalto.fi": [447], "www.etravelway.com": [5380], "secondlookforensics.com": [14528], "crimestoppers-uk.org": [19720], "www.shellspace.net": [14757], "www.visitthecapitol.gov": [17864], "1dbs.co": [2024], "*.liberty.me": [9314], "svn.llvm.org": [9103], "indberet.virk.dk": [17826], "typecast.com": [16982], "www.instacominc.com": [8179], "www.bolagsverket.se": [2202], "tzt.ovh": [2024], "fcac.org": [5624], "www.knab.nl": [8952], "dnscurve.net": [4054], "ivanovo.rt.ru": [13529], "anyterm.skynet.ie": [16283], "moot.it": [10622], "forum.hostican.com": [7531], "www.deadline.com": [4239], "publicaccessapplications.newcastle.gov.uk": [11355], "spanish.bogota.usembassy.gov": [22406], "dino.sr": [2310], "w3techs.com": [22516], "cloc.us": [2024], "dbnr.co": [2024], "jba.gs": [2024], "svn.timeinc.net": [16535], "audicon.net": [1378], "www.netlify.com": [11280], "go.pohyby.co.uk": [2024], "kerbalspaceprogram.com": [8871], "blogs.drweb.com": [4776], "cessle.me": [2024], "muush.co": [2024], "xvrs.ch": [2024], "im.typotheque.com": [16989], "contact.framasoft.org": [6075], "www.jyllands-posten.dk": [8719], "fi.norton.com": [11545], "s.awads.net": [2024], "b40.cdnvideo.ru": [19536], "identity.virginmedia.com": [17822], "inmotionhosting.com": [8037], "*.onion.city": [16638], "www.youtube.com.om": [18800], "assets.onestore.ms": [11895], "service.10046.mi.com": [10361], "inur.se": [2024], "www.underskog.no": [17243], "scanmarker.com": [14396], "metrics.adzip.co": [728], "webchat.oftc.net": [11659], "pssjournal.biomedcentral.com": [1931], "komi.sledcom.ru": [21858], "librarything.com": [9321], "*.yourlocaledge.com": [18821], "drgdss.me": [2024], "www.youtube.ug": [18800], "dailymotion.com": [4119], "dealer.com": [4245], "vib.link": [2024], "sl.ohds.ch": [2024], "spillehallen.tv2.dk": [15946], "snocd.org": [2024], "keinesch.eu": [2024], "www.urac.org": [17095], "rwd.opencaching.de": [21268], "www.youtube.ua": [18800], "nagios2.ibn.ulpgc.es": [17213], "anarplex.net": [1034], "*.pidgin.im": [12703], "www.nzz-libro.ch": [21216], "krebsonsecurity.com": [9022], "gotly.gq": [2024], "cycetc.co": [2024], "kontoeroeffnung.cash.ch": [19522], "www.ojrq.net": [11805], "edge.org": [5069], "mouserepository.cancer.gov": [2819], "binefreund.de": [5917], "support.econda.de": [5050], "cille.ro": [2024], "docs.cpanel.net": [2667], "hkm.to": [2024], "vozip.xyz": [2024], "10t.co": [2024], "comic.worldofwarcraft.com": [18542], "www.netiq.com": [11234], "www.printchomp.com": [13118], "c6e.trade": [2024], "promote.ie": [4500], "sot.tips": [2024], "www.brandhk.gov.hk": [19442], "www.jacquelinegold.com": [8500], "www.st.uz": [21966], "bmbl.bz": [2024], "arm.koji.fedoraproject.org": [5716], "libraries.mit.edu": [9763], "*.gamehouse.com": [6399], "cricketwireless.com": [3791], "xyzd.us": [2024], "www.bwo.admin.ch": [22061], "acehotel.com": [525], "hgse.me": [2024], "portal.imn.htwk-leipzig.de": [7596], "www.poderpda.com": [12888], "theplatform.com": [16308], "kiwi.freed0m4all.net": [6139], "transform.nyaquarium.com": [11026], "hitgr.id": [2024], "jockey.jd.com": [8436], "www.musicweek.com": [10751], "www.jslinterrors.com": [8600], "wiki.alfresco.com": [850], "s4.gismeteo.lv": [20250], "s4.gismeteo.lt": [20249], "wearesl.am": [2024], "www.eu.elsevierhealth.com": [5179], "bitrhym.es": [2024], "www.awards.acs.org": [974], "on.codehunt.io": [2024], "strath.co": [2024], "www.4tulemar.com": [193], "05.mvd.ru": [21055], "*.cdn1.cloudfiles.rackspacecloud.com": [13567], "ipfs.pics": [8338], "ci.uchicago.edu": [17334], "quotebot-stage.tokenly.com": [22229], "carnegiescience.edu": [2867], "www.openstat.ru": [12013], "mact.es": [2024], "m.oliahad.me": [2024], "cbu02.alicdn.com": [853], "discuss.nubits.com": [11600], "www.dftba.com": [4022], "index.thenextweb.com": [16374], "mint.ca": [10469], "co-in-f210.play-asia.com": [12828], "indonesia.allianz.com": [19151], "bme.osu.edu": [11797], "mxnkey.com": [2024], "www.vantageonerealty.com": [17652], "skyrad.io": [2024], "braveinfo.net": [2311], "transparency.org.ru": [22276], "doubleclick.com": [4709], "fd.ulaval.ca": [17319], "tickets.stanford.edu": [15448], "neuro.georgetown.edu": [6531], "r-mcp.uk": [2024], "tnesia.tk": [2024], "www.interstices.info": [8292], "debconf2.debconf.org": [4257], "5io.in": [2024], "api.kurier.at": [9055], "www.dynstatus.com": [4817], "us.sogeti.com": [15167], "fafsademo.test.ed.gov": [4881], "rexona.matchtv.ru": [20932], "3ds.com": [4160], "computing.stanford.edu": [15448], "www.sobollubov.ru": [15120], "lrj.me": [2024], "egov.astrobl.ru": [19264], "asa.pe": [2024], "urlfiltering.paloaltonetworks.com": [12378], "www.khashaev.ru": [20710], "redeem.flixster.com": [5913], "psearch.vuze.com": [17972], "sted.es": [2024], "chron.it": [2024], "ckpd.to": [2024], "godoc.org": [6757], "*.salecycle.com": [14308], "sicontact.at": [14821], "image.issuu.com": [8392], "app4.admin.cam.ac.uk": [17332], "bitcoinwisdom.com": [2000], "l.timw.co": [2024], "scrawl.in": [2024], "www.crew.co": [3790], "nmbbq.bz": [2024], "go.illuminateed.com": [20494], "www.tittygram.ru": [16579], "est-odin-sekret.friday.ru": [20175], "asir-journal.biomedcentral.com": [1931], "www.victorops.com": [17758], "s34.cnzz.com": [3328], "apps.usa.gov": [17110], "redmine.digitaria.com": [4493], "frank.geekheim.de": [6486], "wihist.org": [2024], "s9.mt-cdn.net": [9812], "uzhavinventar.tocco.ch": [16600], "webpower.nl": [18137], "bcove.me": [1746], "www.swan.sk": [15742], "connects.catalyst.harvard.edu": [7211], "extranet.megapath.com": [10240], "info4derby.derby.gov.uk": [4367], "www.op-co.de": [11937], "client.lanbilling.ru": [20775], "www.doc.ic.ac.uk": [8020], "*.desertnews.com": [4372], "sellmy.mobi": [2024], "cue.me": [3906], "aperture.displaymarketplace.com": [13269], "cchh.fyi": [2024], "hpi.uni-potsdam.de": [17417], "docs.zone": [4610], "tb2.bdstatic.com": [19339], "wndrjm.com": [2024], "roblox.com": [13980], "instart2.flixster.com": [5913], "accounts.dji.com": [4029], "hr.leeds.ac.uk": [9236], "brrk.co": [2024], "npmjs.com": [11579], "luccks.co": [2024], "go.sbstngrss.me": [2024], "speedcoin.org": [15327], "stats.framasoft.org": [6075], "btwifi.com": [1602], "sprd.no": [2024], "nib.bz": [2024], "tcluk.tk": [2024], "on.trailr.tv": [2024], "callum.in": [2024], "sopit.as": [2024], "gotohk.discoverhongkong.com": [19847], "ubub.us": [2024], "dynamic.websterwood.com": [18251], "itx5-secure.smartadserver.com": [15049], "i2-captcha.luosimao.com": [20891], "www.naqshbandi.org": [11075], "voronezh.biglion.ru": [19375], "charnwood.firmstep.com": [20108], "onlinethreatalerts.com": [11915], "sh.shore.org.uk": [2024], "www.frenchtv.to": [6175], "dd4c.hscic.gov.uk": [20435], "liberal.ca": [9309], "jasonyx.vinilox.eu": [17809], "www.scribit.com": [14476], "*.rec-registry.gov.au": [13470], "www.nextpowerup.com": [11409], "ssl.trustwave.com": [16870], "hazen.xyz": [2024], "spath.us": [2024], "lk-pr.de": [2024], "dazd.co": [2024], "info.legalsolutions.thomsonreuters.com": [16456], "git.collabora.co.uk": [3418], "log.stoloto.ru": [21996], "diagnostics.sky.com": [14989], "www.marksdailyapple.com": [20927], "chorki.co": [2024], "puttytray.goeswhere.com": [6788], "rbls.me": [2024], "cove.in": [2024], "my.aliexpress.com": [854], "dbyco.us": [2024], "www.ipfs.com": [7795], "b80.co": [2024], "iamcherm.ac": [2024], "kent.ac.uk": [17402], "neflix.cf": [2024], "ooyala.com": [11936], "ramadan.islamhouse.com": [8368], "tdrevolution.com": [15868], "*.swapspace.net": [15743], "filepicker.com": [5787], "mishimo.to": [2024], "*.ds-static.com": [4773], "weesp.in": [2024], "wo.wbat.us": [2024], "zuse-crew.de": [19024], "xp.corefact.com": [2024], "scout.sunlightfoundation.com": [15667], "zajezdy.atlas.cz": [1346], "wto.org": [18025], "secure1.plymouth.gov.uk": [21442], "omoda.nu": [2024], "federalreserve.gov": [5708], "tomskaya-obl.beeline.ru": [1778], "torin.fyi": [2024], "s30.postimage.org": [13024], "trac.gajim.org": [6383], "mail.desy.de": [4386], "publishing.kaloo.ga": [8788], "secure.coop.no": [3648], "www-stats-so.f-secure.com": [5533], "ui.phn.doublepimp.com": [4711], "media2.legacy.com": [9242], "*.shoptiques.com": [14792], "www.mpx.no": [10710], "secure.catchdigital.com": [19523], "product.adingo.jp": [646], "m.melamorsi.com": [2024], "partners.appsflyer.com": [1162], "2010.asiabsdcon.org": [1281], "elle.com": [5163], "api-gemini.jd.com": [8436], "m.wsj.net": [18021], "umdrightnow.umd.edu": [17351], "developer.visa.com": [17846], "*.thefnf.org": [16349], "donate.familysearch.org": [5636], "hs.mediadelivery.io": [10164], "www.lngs.infn.it": [7771], "bentley.edu": [1812], "www.iaata.info": [7667], "payments.coventry.gov.uk": [19705], "cloud.malwarebytes.com": [9940], "stc.pagseguro.uol.com.br": [17079], "deals.dell.com": [4317], "m.fi.it": [2024], "fastdomain.com": [5661], "dab.re": [2024], "procurement.crick.ac.uk": [19719], "conceptn.co": [2024], "tldr.444.hu": [183], "sc.cr": [2024], "portal.5ninesdata.com": [214], "*.sw-i.de": [15434], "www.soa.org": [14210], "kyc.hn": [2024], "www-colsonservices.extlb.bnymellon.com": [19420], "www.searslabs.com": [14511], "iosco.org": [7785], "sqmail.ust.hk": [22412], "slack.gitbook.com": [6655], "*.careerperfect.com": [2855], "www.talentedapp.hku.hk": [20387], "masspirgedfund.org": [9725], "imglf2.nosdn.127.net": [41], "kud.us": [2024], "jrb2b.jd.com": [8436], "media-proweb.de": [10159], "i2.microsoft.com": [10396], "l.spintires.top": [2024], "ezpost.me": [2024], "saucelabs.com": [14365], "www.hertzautovermietung.com.pl": [7357], "translations.documentfoundation.org": [16295], "cinapalace.com": [3141], "wvguard.sky.de": [14990], "s.asuka.jp": [2024], "*.targetimg1.com": [16024], "tix.tm": [2024], "hkpl.gov.hk": [20385], "www.falcon-uav.com": [5629], "www.molotro.ru": [21008], "www.lsi.com": [9113], "dorianquis.pe": [2024], "go.crn.com": [2024], "shop.chessbase.com": [3073], "jotapeah.com": [2024], "alep.in": [2024], "stories.dlvr.it": [19855], "herebg.com": [2024], "*.nejm.org": [11345], "sfpr.es": [2024], "so.ch": [22061], "ysis.me": [2024], "notendur.hi.is": [7049], "bbry.by": [2024], "so.cl": [15111], "digtl.net": [2024], "www.stopthinkconnect.org": [15554], "theva.in": [2024], "api-interest.unbounce.com": [17239], "community.snsbank.nl": [14207], "cjb.pt": [2024], "s.jakob.cc": [2024], "722074ab-ea94-8cea-0656-3afa8d9ec10f-rum.cdnvideo.ru": [19536], "www.grandmargherita.com": [6874], "pokemon.truelife.com": [16842], "*.posterous.com": [13019], "www.pretty52.com": [21493], "srb2.org": [14231], "*.misadventureswithandi.com": [10487], "special.astrobl.ru": [19264], "*.sonymobile.com": [15216], "gruensparshop.l.de": [9072], "isorno.com": [8389], "arifmetika-dobra.ru": [19231], "www.archi-strasbourg.org": [1191], "deb.knot-dns.cz": [8960], "help.cloudtrax.com": [3295], "*.qidian.com": [13348], "www.ixd.cca.edu": [2547], "cwrld.us": [2024], "www.local.com.ua": [20862], "electrabrush.co": [2024], "xm.vbrr.ru": [17668], "www.business.kaspersky.com": [8820], "www.runbook.io": [14092], "www.everydayhero.com.au": [5444], "uofr.us": [2024], "adn.impactradius.com": [8015], "sec.sinacloud.com": [14908], "www4.gotomeeting.com": [6769], "flirt.icony.com": [7923], "eqtm.co": [2024], "petsathome.com": [12631], "theravive.com": [22179], "edrcdn.com": [4889], "support.gpgtools.org": [6348], "notboring.yt": [2024], "gifts.stanford.edu": [15448], "forum33.djicdn.com": [4029], "range.nra.org": [21177], "chemistry.williams.edu": [18408], "interactive.act-on.com": [19054], "captcha.weibo.com": [18279], "2007.asiabsdcon.org": [1281], "rhssci.com": [2024], "www.domainnamesales.com": [4648], "omim.org": [21242], "www.gorails.com": [6764], "promociones.visa.com": [17846], "zyrk.us": [2024], "shftm.io": [2024], "lhncbc.nlm.nih.gov": [11090], "retailmenot.com": [13879], "levo.com": [9290], "bingads.microsoft.com": [10396], "*.linguee.com": [9390], "www.novostivoronezha.ru": [21170], "serve.com": [14661], "cdn1.kongcdn.com": [8987], "www.motherless.com": [10650], "blco.at": [2024], "websa.us": [2024], "www.turnto.com": [16913], "mxdig.co": [2024], "cart.jd.com": [8436], "zabaikalsky-krai.auto.ru": [19276], "crn.com": [2673], "montpellier.fr": [10608], "serviziseo.eu": [2024], "thefappening.sexy": [16350], "o.dagoubert.fr": [2024], "up4.click": [2024], "*.gawkermediagroup.com": [20210], "szfout.mvd.ru": [21055], "terrorismlegislationreviewer.independent.gov.uk": [8059], "www.domaining.com": [4656], "birchlane.ly": [2024], "www.opencaching.de": [21268], "abbott.com": [460], "atrw.co": [2024], "caitpo.sh": [2024], "meet.fm": [10221], "*.feedblitz.com": [5719], "staradvertiser.com": [7494], "www.livecomm.ru": [20855], "sciof.us": [2024], "dcsl.software": [2024], "rutracker.net": [21702], "admin.xnet.cz": [18622], "www.eyeo.com": [20061], "www.zlatkovic.com": [18977], "kielh.me": [2024], "cc-f.netease.com": [11228], "ntzl.de": [2024], "www.whyopencomputing.com": [22584], "bit.fish": [2024], "phpmyadmin.ds3.hfonetz.de": [7041], "syllabusshare.com": [15777], "ca.debian.net": [4261], "www.pastevault.com": [12476], "usesthis.com": [17527], "werdis.dwd.de": [19911], "images.sneakersaddict.com": [21882], "over-blog.com": [12188], "wwwstg.lg.com": [9090], "serviceo.xfinity.com": [22650], "a.awg.co": [2024], "www.migrosmagazine.ch": [10418], "updates.oracle.com": [12116], "www.pr0gramm.com": [21476], "tdt.buzz": [2024], "s4.music.126.net": [40], "www.revealnews.org": [13898], "netsale.aktiiviraha.fi": [7174], "chainfire.eu": [19556], "www.piware.de": [10043], "k8.chaucanh.net": [2024], "www.igiveonline.com": [7887], "survey.clicktools.com": [3264], "*.ebay.com": [4866], "www.agendaless.com": [768], "my.alipay.com": [864], "passwordreset.fnal.gov": [5741], "thepiratebay.immunicity.top": [21524], "mumble.freifunk-rheinland.net": [20171], "opencyclemap.org": [11968], "mtwidget03.affiliate.ashiato.rakuten.co.jp": [13594], "mko.es": [2024], "c2.thejournal.ie": [16299], "sleybk.com": [2024], "frontier.co.uk": [6203], "sustrans.me": [2024], "lksz.me": [2024], "djh.link": [2024], "ru.support.tomtom.com": [16615], "wiganandleigh.greenparty.org.uk": [6908], "i.aug.co": [2024], "*.media.mobyhub.com": [10543], "86.mvd.ru": [21055], "dtelinux.us": [2024], "holes.in": [2024], "ulive.pccu.edu.tw": [12250], "opengarden.com": [12066], "www.reviewingcomics.com": [13901], "occmx.net": [2024], "m3m.us": [2024], "ovva.tv": [21320], "go-faar.org": [2024], "on.mo.gov": [2024], "www.theinspirationroom.com": [16270], "freethoughtblogs.com": [6164], "www.ee.washington.edu": [17376], "nttxstore.jp": [11596], "myaccount2.chicagotribune.com": [3076], "steph.bz": [2024], "informationformps.homeoffice.gov.uk": [20399], "www.schrodinger.com": [14808], "korenovsk.tpprf.ru": [22260], "koshiatsutest.tocco.ch": [16600], "discovery.com": [4543], "beijing.douban.com": [4701], "www.2kom.ru": [128], "cal.md": [2024], "onlinebanking.bankcoop.ch": [3647], "www.jjc.edu": [8452], "36.mvd.ru": [21055], "authorize.net": [1435], "youngsoutheastasianleaders.state.gov": [17146], "www.iweb.co.uk": [20616], "jbalm.es": [2024], "beta.musicbrainz.org": [10752], "my.green.ch": [20305], "feeds.live.net": [9494], "here.com": [7325], "drvl.it": [2024], "ebill.t-mobile.com": [15837], "egk.mkk.com.tr": [9770], "microad.jp": [10377], "status.jiveon.com": [8599], "thejournalnews.com": [9575], "www2.thewarehouse.co.nz": [16425], "rd.click.ro": [2024], "bbzr.co": [2024], "central.provider.anthem.com": [19206], "bbpress.automattic.com": [1452], "gvlhou.se": [2024], "www.1105media.com": [23], "secure.dd-wrt.com": [4009], "jets.js.org": [20657], "www.pando.com": [12387], "rxf1.answcdn.com": [1095], "www.hhcdn.ru": [7046], "www.clickon.com.ar": [3250], "amazon.com": [960], "img.delvenetworks.com": [4322], "www.atvc.ru": [19271], "track.eyeviewads.com": [5526], "*.ladesk.com": [9496], "rampl.in": [2024], "robokassa.ru": [13982], "static-00-www.icij.org": [7689], "nationbuilders.thenation.com": [16274], "m-budget.migros.ch": [10417], "go.pitp.it": [2024], "vijay.link": [2024], "lvn.bz": [2024], "fzcrp.eu": [2024], "webuzz.de": [2024], "blogsmithmedia.com": [378], "americanbar.org": [982], "jlbranham.co": [2024], "l.frikichan.com": [2024], "nykeurope.com": [11032, 11033], "www.cambs.police.uk": [2783], "beaker-project.org": [1756], "dog.ro.vutbr.cz": [17609], "www.osdn.net": [21298], "email.sfu.ca": [14708], "acce.do": [2024], "dota2.com": [4693], "loisirs1.cff.ch": [15756], "iwagner.usa.cc": [2024], "go.c01.me": [2024], "woosp.co": [2024], "*.usps.com": [17129], "c.58cdn.com.cn": [213], "www.ahead.org": [19115], "*.new.livejasmincdn.com": [9501], "forum.slysoft.com": [15041], "correlatedvm.netspi.com": [11245], "www.choiceofgames.com": [3102], "epay.gm.163.com": [50], "assets.wp.nginx.com": [21133], "enaza.ru": [5222], "ruidirect.info": [2024], "channel4.com": [3009], "www.bezosexpeditions.com": [1863], "mkas.tpprf.ru": [22260], "g.hullen.me": [2024], "c1.nrostatic.com": [21189], "fs07.enter.ru": [20002], "museodelprado.es": [10748], "www.jpberlin.de": [8458], "d504.epimg.net": [5126], "www.patronbase.co.uk": [21357], "vatten.lasav.nu": [2024], "nb.yanao.ru": [22665], "a.ggr.gt": [2024], "on.cambrex.com": [2024], "ckf.io": [2024], "www.audioscrobbler.com": [1387], "www.bokelskere.no": [2200], "ltd.play-asia.com": [12828], "chernyaxovsk.klops.ru": [20735], "library.islamweb.net": [8373], "tuceducation.org.uk": [22305], "cdn.psddev.com": [12596], "spsn.net": [15391], "santodomingo.usembassy.gov": [22406], "ocrete.ca": [11749], "el.boardgamearena.com": [2182], "ws.coresecurity.com": [3669], "www.hddn.com": [11227], "api.nextgen.guardianapps.co.uk": [20318], "kunde.comdirect.de": [19649], "www.quadpoint.org": [13371], "bridgeroadmarketing.com": [2331], "www.cambodiadaily.com": [2779], "api.giphy.com": [6646], "fonts.timeinc.net": [16535], "gmcoff.ee": [2024], "www.mintguide.org": [10471], "linaro.co": [2024], "l2l.tech": [2024], "blog.blgrd.co": [2024], "wiki.inf.ed.ac.uk": [5059], "media.secondstreetapp.com": [14529], "fsb.oxfordjournals.org": [12222], "wiki.gnucash.org": [6743], "www.bio.org": [1548], "go.canalamd.com": [2024], "bkga.me": [2024], "feeds.kommersant.ru": [20746], "eastriding.gov.uk": [5006], "sti.bo": [2024], "www.journalistforbundet.dk": [8660], "hfsresear.ch": [2024], "turb.co": [2024], "amwtp.inl.gov": [20537], "dogsbodytechnology.com": [4626], "sslwidget.criteo.com": [3798], "alexandrasangelgifts.co.uk": [846], "fundri.se": [2024], "machineslikeus.com": [9845], "forum.sourcefabric.org": [15248], "dovetal.es": [2024], "mygenerositywater.dntly.com": [4597], "worldnewz.us.to": [2024], "www.platina.ru": [12822], "attr.co": [2024], "imgix.com": [20504], "cdn2.content.compendiumblog.com": [3520], "www.stacklet.com": [15429], "eduserv.org.uk": [19961], "www.xe.com": [18599], "test.scribus.net": [14478], "metrics.pisces-penton.com": [12577], "westconsincu.org": [18309], "clax.to": [2024], "dn.se": [19856], "lists.hacklab.to": [7123], "sonatype.com": [15202], "affiliates.nitetimetoys.com": [11465], "to.rdrct.net": [2024], "poster.parkrun.com": [12438], "atlas.ripe.net": [13953], "freelancersunion.org": [6155], "cdn.egopay.com": [5103], "myphone.coop": [10865], "yolotrain.oebb.at": [21230], "photos.modelmayhem.com": [10553], "www.hush.technology": [7635], "www.surfconext.nl": [14261], "engineering.cloudscaling.com": [3313], "multinationalpremiumsolutions.visa.com": [17846], "track.bankinter.com": [1674], "partner.yota.ru": [22685], "fhember.gr": [2024], "revizorro.friday.ru": [20175], "*.chrisanthemums.com": [3112], "on.cosmo.uk.com": [2024], "cdn.brandisty.com": [2303], "my.crypteron.com": [3847], "account.jetbrains.com": [8573], "wcf.co": [2024], "emea3.recruitmentplatform.com": [13713], "www.bitcoin.pl": [1993], "namecentr.al": [11059], "rabota.yanao.ru": [22665], "eb.flik.at": [2024], "precharge.com": [13062], "bgo.tips": [2024], "www.it.liu.se": [9097], "givetocal.berkeley.edu": [17329], "fr-contrainfo.espiv.net": [20021], "jmcveyc.ht": [2024], "pushover.net": [13298], "go.foal14.com": [2024], "rvsn.in": [2024], "ra4-gifs.weather.gov": [18130], "e9.xhamsterpremiumpass.com": [18607], "www.granitephone.com": [14847], "www.braunschweig.de": [2309], "10rvqeb4onzisiwc8xdgkr1zxg5dn8bn7i3e1qzz.ipleak.net": [20571], "hlj.biligame.com": [1903], "jl.gm.163.com": [50], "ashleymadison.com": [1278], "attlinks.com": [2024], "1984hosting.com": [59], "control.xvideos.com": [22660], "patriotpost.us": [16377], "www.sedmitza.ru": [21771], "www.bankofamerica.com": [1669], "status.net": [15501], "*.bmc.com": [1553], "app.mipay.com": [10473], "rebelmouse.com": [13700], "derosete.ch": [2024], "s117.cnzz.com": [3328], "es.malwarebytes.org": [9941], "on.wimzey.com": [2024], "cco.pe": [2024], "www.cardiff.ac.uk": [2847], "orders.pandaexpress.com": [12385], "shop.heifer.org": [7283], "zkbtz.tk": [2024], "*.myus.com": [10838], "goto.mattpro.hk": [2024], "ein.st": [2024], "buytrezor.com": [2485], "gibdd.mvd.ru": [21055], "silentsparks.com": [21827], "cdn.login.vu.nl": [17608], "withknown.com": [18471], "dgrph.com": [2024], "tsec.io": [2024], "www.datadryad.org": [19763], "bitly.de-b.de": [2024], "developers.podio.com": [12889], "i.answers.microsoft.com": [10396], "oao.zr.ru": [22725], "vendor.tv2.dk": [15946], "link.kidpub.com": [2024], "afl.ink": [2024], "2.url.cn": [22399], "icanlocalize.com": [7700], "stage-community.tealiumiq.com": [16060], "catgirlsare.sexy": [2912], "top.mail.ru": [9891], "l.0303.club": [2024], "video.ust.hk": [22412], "pluc.co": [2024], "www.stackoverflow.com": [15424], "in2code.de": [8032], "g.aniart.com.ua": [19199], "img01.suumo.com": [22050], "www.reactjsnews.com": [13663], "rfm.website": [2024], "webdev.pdu.edu": [12985], "ircreviews.org": [7815], "fuel4f.it": [2024], "pogo.com": [12893], "labs.microsofttranslator.com": [10402], "www.ecc-platform.org": [4871], "m.edu.tue.nl": [15940], "uc.gl": [2024], "cestovanie.sme.sk": [14198], "mkgf.co": [2024], "bkto.me": [2024], "static2.readyflowers.com": [13680], "purdue.edu": [13279], "amctv.com": [363], "omniture.com": [11842], "sciencedaily.com": [14439], "cdn.taxact.com": [16044], "gweb.io": [7016], "l.comm2ig.dk": [2024], "cloud.youku.com": [18804], "www.tmobile.nl": [15900], "news.wallet.mycelium.com": [21063], "glb.bz": [2024], "my.incapsula.com": [8047], "ivanovo.biglion.ru": [19375], "chcoc.gov": [19564], "k9.me.uk": [2024], "*.precharge.com": [13062], "m.airbnb.mx": [793], "bgc.am": [2024], "linuxluddites.com": [9439], "onestopshop.infinum.co": [20526], "inf.mit.bme.hu": [1557], "*.cdn-hotels.com": [7562], "drivethrucomics.com": [11867], "foolz.us": [5985], "www.infosecindustry.com": [8104], "lum.is": [2024], "comcluster.cxense.com": [2709], "autopay.mts.ru": [21042], "7mc.us": [2024], "cdgcommerce.com": [2566], "connochaetos.org": [3589], "genumedia.htwk-leipzig.de": [7596], "stanfordyou.stanford.edu": [15448], "sknvibes.com": [14186], "jokbo.oops.org": [11933], "sandwell.greenparty.org.uk": [6908], "www.thepiratebay.sx": [22175], "collabprojects.linuxfoundation.org": [9427], "www.mdgx.com": [9742], "dinclinx.com": [9859], "*.heart.org": [7272], "bcv.ch": [20683], "www.tpucdn.com": [22261], "nirogam.org": [2024], "systemausfall.org": [15827], "*.atgsvcs.com": [1336], "ohhey.cl": [2024], "kassini6.beget.com": [19347], "l.stinv.co": [2024], "ptra.in": [2024], "calum.org": [2772], "www.tpblist.xyz": [22259], "*.bkb.ch": [20683], "www.thepiratebay.se": [16306], "www.exchanges.state.gov": [17146], "teatime.fm": [22109], "*.defcongroups.org": [4017], "dgt-ml.in": [2024], "lrens.ch": [20880], "img06.taobaocdn.com": [16016], "sihack.te-st.ru": [22103], "8bat.ga": [2024], "ad-juster.com": [566], "stura.htwk-leipzig.de": [7596], "ill.rit.edu": [13493], "www.kfwebs.net": [8737], "greenwire.greenpeace.org": [6920], "parliament.uk": [21349], "www.epicgames.com": [5309], "api.backendless.com": [19299], "www.ots-net.ru": [21309], "auchan.ru": [1370], "hackerexperience.com": [7131], "community.fitbit.com": [5867], "ss0.bdstatic.com": [19339], "www.chesterfieldroyal.nhs.uk": [10953], "g.rexthedog.net": [2024], "www.covad.net": [3723], "piwik.web.cern.ch": [2588], "dulio.in": [2024], "orbit.cites.illinois.edu": [17346], "bgis.me": [2024], "smtt.eu": [2024], "services.netapp.com": [11221], "2tb.ch": [2024], "auth.uillinois.edu": [17034], "clientchat.minacs.com": [10440], "www.fbk.info": [5691], "*.onsugar.com": [11853], "20minutes.fr": [94], "reads.club": [2024], "www.ote.gr": [12164], "uncsa.worldcat.org": [18536], "nctry.pw": [2024], "greenparty.org.uk": [6908], "www.4freeproxy.com": [194], "www.housetime.fm": [20413], "zonomi.com": [18997], "www.aliloan.com": [19141], "home.fnal.gov": [5741], "religions.unian.net": [22369], "www.gearman.org": [6467], "www.tpb.host": [22259], "www.numenta.com": [21201], "www.receivesmsonline.net": [21608], "unmultimedia.org": [17077], "uclan.ac.uk": [17392], "bradh.us": [2024], "onehub.com": [11873], "deliciousgreencoffee.com": [4310], "frkpn.com": [2024], "pucek.co": [2024], "fold.liqd.net": [9456], "harlem.in": [2024], "short.xenom.ro": [2024], "www.gogoair.com": [6790], "www.101domain.com": [15], "apture.com": [6817], "webmail02.register.com": [13793], "ttl.dj": [2024], "drew.mobi": [2024], "corl.co": [2024], "epilepsyresearch.org.uk": [20008], "adminuat.pageuppeople.com": [21338], "ihm.nlm.nih.gov": [11090], "extralunchmoney.com": [5514], "l.nowforce.com": [2024], "socials.vice.com": [17753], "courses.cs.sfu.ca": [14708], "veuwer.com": [17743], "kip.gg": [2024], "customworks.ca": [9591], "*.tuxfamily.org": [16929], "on.gopride.com": [2024], "nextbit.com": [11403], "gruppen.greenpeace.de": [6919], "tweee.tk": [2024], "qaapp.clp.com.hk": [2636], "singapore.usembassy.gov": [22406], "crhe.org": [2024], "www.sportbox.ru": [21942], "embed-ssl.wistia.com": [18467], "wearca.re": [2024], "www.securityconference.de": [14588], "playluc.ky": [2024], "www.slb.com": [14418], "app-coding.de": [1132], "wumatrix.wusm.wustl.edu": [18089], "medepor.uniovi.es": [17282], "www.hounddogcentral.com": [7569], "url.webtrip.in": [2024], "git-public.kairo.at": [8782], "go.wsc.edu": [2024], "login.comcast.net": [3461], "www.godownloadsongs.com": [15271], "www.online-mahnantrag.de": [11903], "www2.whipplehill.com": [18338], "qual.m-connect.ch": [10417], "it.boardgamearena.com": [2182], "ocforums.com": [12197], "planet.mate-desktop.info": [9727], "onefi.re": [2024], "forum.ovh.lt": [12205], "*.razorservers.com": [13650], "www.sl.one.un.org": [17057], "thalysthecard.com": [16245], "privacychoice.org": [13134], "img3.glassdoor.ca": [20258], "wgea.gov.au": [18534], "ireeco.com": [8352], "bit.loak.org": [2024], "acth.co": [2024], "ojlr.oxfordjournals.org": [12222], "support.sumologic.com": [15658], "brea.st": [2024], "wrdz.us": [2024], "help.bigcartel.com": [1878], "www.trisquel.info": [16827], "ss.six22.tech": [2024], "a.taobao.com": [16015], "www.facebook.nl": [5612], "dlhz.be": [2024], "go.versa.design": [2024], "www.facebook.no": [5612], "flysafe-api.dji.com": [4029], "titan.pm": [2024], "internews.org": [8288], "bitrig.org": [2035], "irkutsk.irknet.ru": [20581], "ma-ins.dk": [2024], "popcash.net": [12952], "www.redcross.org": [13732], "www.anciensite.refedd.org": [13471], "adygeysk.startsmile.ru": [21980], "cli3k.me": [2024], "kolab.org": [8970], "easeus.degica.com": [3333], "support.pinterest.com": [12731], "forums.libsdl.org": [9305], "punto.ar": [13275], "kredyty-samochodowe.money.pl": [10584, 10585], "guidefaq.com": [6990], "cld.yt": [2024], "plastc.com": [12816], "cybr.pt": [2024], "flightglobal.com": [5901], "cbsm.kairo.at": [8782], "www.everydayrewards.com.au": [18511], "gfl.la": [2024], "www.opening-times.co.uk": [21275], "ppixel.net": [2024], "wiki.ciphershed.org": [3155], "extranet.websitepipeline.com": [18244], "if.lanet.ua": [20780], "ut09.xhcdn.com": [18605], "*.cables.com": [2719], "forum.openstreetmap.fr": [12079], "zimbra.webstyle.ch": [18252], "cesifo.oxfordjournals.org": [12222], "bankofamerica.com": [1669], "cshor.es": [2024], "*.patriotpost.us": [16377], "gedery.us": [2024], "www.virag.si": [17817], "*.austiners.com": [1403], "www.lijit.com": [9365], "ll.de": [2024], "card.mycelium.com": [21063], "aeriagames.com": [735], "nkul.tk": [2024], "wiki.young-pirates.eu": [18807], "zakb.me": [2024], "scdn.cxense.com": [2709], "devusa.djicdn.com": [4029], "m.fuhr.me": [2024], "m.pornhub.com": [12972], "sup.ee": [2024], "mknell.co": [2024], "api.wipmania.com": [18003], "*.ensimag.fr": [5275], "rtsentreprise.ch": [21957], "s78.cnzz.com": [3328], "*.turtlebeach.com": [16920], "static.kabelmail.de": [8775], "nakul.gq": [2024], "onlinelaw.wustl.edu": [18089], "www.yar.fruct.org": [5585], "ep01.epimg.net": [5126], "shop.whyopencomputing.com": [22584], "airbnb.jp": [793], "blog.runbox.com": [14093], "pt.chaturbate.com": [3040], "sony.eu": [15213], "b.edi.bz": [2024], "trip.163.com": [50], "devmonk.com": [4412], "www.auto.ro": [1439], "*.donotcall.gov.au": [4599], "tigerdirect.com": [16516], "wishpot.com": [18464], "go.dhpit.com": [2024], "darsak.com": [2024], "algr.in": [2024], "ggs.alibaba.com": [857], "*.alternate.nl": [929], "www.sethvargo.com": [14692], "www.goldenfrog.com": [6798], "ci.phncdn.com": [12661], "i8.piimg.com": [16509], "lms.wiss.ch": [18465], "winners.flonline.eu": [5568], "www.artemis-ia.eu": [1254], "hi.kickassapp.com": [8890], "daws.in": [2024], "185ouroe43z7vkvoi67jzx6jslnur46kc2tgdj2l.ipleak.net": [20571], "business.yell.com": [22672], "connect.microsoft.com": [10396], "vantageone.mycumulus.ca": [17652], "s.girlylane.com": [2024], "socialtwist.com": [15128], "ttbat.es": [2024], "informahealthcarestore.com": [8122], "pagead2.googlesyndication.com": [6827], "textbooks.com": [16232], "*.koderoot.net": [8964], "ridefor.me": [2024], "da.4.boardgamearena.com": [2182], "hpoto.play-asia.com": [12828], "tonton.yt": [2024], "airbnb.lu": [793], "static.lwn.net": [9125], "bnet.io": [2024], "pointit.co": [2024], "lp0.eu": [9648], "trakehner-nord-west.de": [16732], "somos.unizar.es": [17441], "medipreis.de": [10156], "zrey.com": [22726], "go.cnbgfans.com": [2024], "vmcl.cl": [2024], "m.ngs.ru": [21134], "www.masty.nl": [10071], "go.xoynq.com": [2024], "minpr.khabkrai.ru": [20709], "doc.wallabag.org": [18054], "krybd.in": [2024], "acts.qidian.com": [13349], "airwifi.rocks": [2024], "shop.spiegel.de": [15342], "pixxy.it": [2024], "usil.logmein.com": [9559], "git34.rostrud.ru": [21677], "f.blick.ch": [2091], "estate.rocketbank.ru": [13994], "multitran.ru": [21050], "3min.de": [173], "www.ovh.com": [12205], "images.outbrain.com": [12182], "campaigns.wesnoth.org": [18298], "s.pulte.com": [2024], "s.hustle.ws": [2024], "douglas.firmstep.com": [20108], "www.forum.avira.com": [1474], "*.webtraffiq.com": [18259], "bourgeois.me": [2266], "leviat.hn": [2024], "web4u.cz": [18147], "backstage.cultofmac.com": [3909], "www.getinvolved.wustl.edu": [18089], "h-rs.me": [2024], "pccasegear.com.au": [12251], "shropshire.gov.uk": [21819], "apps.opendatacity.de": [21271], "islambook.com": [8374], "www.ctkarch.org": [19739], "www.avis.com": [1476], "www.jitsi.org": [8596], "forum.boardgamearena.com": [2182], "m.ndr.de": [11159], "avana.de": [2024], "thekatm.com": [2024], "love.haqs.es": [2024], "yourgho.st": [2024], "histne.ws": [2024], "web.cvs0.savannah.gnu.org": [6337], "reputation.com": [13849], "m.feedback.yandex.com.tr": [18740], "aurora.central-lincs.org.uk": [19541], "aptdeco.com": [1173], "wilgis.us": [2024], "mtgrat.es": [2024], "womensaid.ie": [18498], "pridez.us": [2024], "cruises.webjet.co.nz": [18219], "ep.jhu.edu": [16370], "redhat.com": [13735], "www.recordstoreday.com": [13711], "ctf.eindbazen.net": [5113], "freshapps.com": [6181], "bromley-consult.objective.co.uk": [21225], "podc.club": [2024], "www.isc.vutbr.cz": [17609], "zekes.nl": [2024], "tab-beim-bundestag.de": [22081], "justsecurity.org": [8712], "lipuguan.jd.com": [8434], "rasp.yandex.by": [18739], "*.thesims3.com": [5141], "www.archive.today": [1194], "tvm.im": [2024], "info.sciencedirect.com": [21750], "barl.in": [2024], "planet.ubuntu-fr.org": [17178], "ehs.georgetown.edu": [6531], "c6.xkcd.com": [22652], "launchclasses.com": [9181], "support2.microsoft.com": [10396], "blog.jbfavre.org": [8552], "dreadshare.com": [2024], "m.yaplakal.com": [22668], "imdia.us": [2024], "img.deusm.com": [4392], "uni-due.de": [17252], "raun.co": [2024], "autodiscover.chem.leeds.ac.uk": [17403], "hpcf.upr.edu": [17087], "www.penfoldgolf.com": [12566], "lanxiguan.jd.com": [8434], "www.crystalmark.info": [19735], "api.rasp.yandex.com.tr": [18740], "www.ymcastlouis.org": [18709], "flossmanuals.net": [5567], "l.aureljared.tk": [2024], "www.proxyshard.uk": [21525], "jo-se.ph": [2024], "myg.sk": [2024], "p8.qhimg.com": [13347], "b-t-r.co": [2024], "reikimadr.it": [2024], "pollst.at": [2024], "toyaberr.yt": [2024], "mwl.telekom.de": [4397], "www.tiltbrush.com": [16525], "s.getowned.us": [2024], "www.meetbsd.com": [10222], "minec.khabkrai.ru": [20709], "backup.f-secure.com": [5533], "engage.rescue.org": [21633], "b.retailmenot.com": [13879], "itea3.org": [7848], "www.maximintegrated.com": [10108], "www.spacecraft.co.uk": [21917], "wiz.fm": [2024], "www.gasngrills.com": [6444], "nuvio.us": [2024], "neard.es": [2024], "vocab.com": [22484], "www.empeopled.com": [5206], "www.ccaa.elpais.com": [5126], "www.projectcounter.org": [2657], "watford.gov.uk": [22536], "tippr.in": [2024], "www.travelblog.org": [16764], "iam.edp.pt": [4888], "bmst.co": [2024], "cdnjpg.dmjx.dk": [4588], "geenstijl.nl": [20221], "radioeins.de": [13578], "blog.startech.com": [15459], "www.debian.org": [4263], "internetretailer.com": [17727], "www.ccbill.com": [2549], "communities.sas.com": [14132], "dean-faculty.williams.edu": [18408], "www.okfn.org": [12049], "www.govspace.gov.au": [6851], "www.fsl.cs.sunysb.edu": [15548], "support.gradwell.com": [6868], "www.ngx.cc": [11415], "dhl.de": [4025], "forum.lulzbot.com": [9669], "sangregorio.uniovi.es": [17282], "policy.ssa.gov": [21959], "nl-contrainfo.espiv.net": [20021], "payments.northamptonshire.gov.uk": [21156], "cn.forums.oracle.com": [12116], "gems.infinum.co": [20526], "31.rkn.gov.ru": [13971], "obfs.uillinois.edu": [17034], "your.styleba.be": [2024], "ccrls.worldcat.org": [18536], "go5.cz": [2024], "go.ore-n.com": [2024], "svtz.it": [2024], "rplr.co": [2024], "creditreportnation.com": [3787], "branz.tv": [2024], "bestbass.gr": [2024], "receptiontours.state.gov": [17146], "www.tech.plymouth.ac.uk": [12873], "jobs.bristol.gov.uk": [19451], "www.meeting-reg.com": [10021], "gcole.us": [2024], "holbi.co.uk": [20391], "gph.to": [2024], "www.vpn4all.com": [17588], "verjano.co": [2024], "iovation.com": [8336], "*.westpac.com.au": [18317], "inkblot.link": [2024], "gctv.to": [2024], "solariz.de": [21896], "krb-jobs.brassring.com": [19443], "nluk.co": [2024], "webmail.atlantis.sk": [1345], "www.evoluted.net": [5456], "cure53.de": [3921], "www.hgo.se": [7042], "direct.govdelivery.com": [6845], "www.avherald.com": [19283], "globusreisen.ch": [7561], "newsland.com": [21127], "www.ionicframework.com": [8333, 8334], "www.wolverhampton.gov.uk": [18494], "ccrally.co": [2024], "faq.lookout.com": [9612], "rscweb.org": [14048], "kth.se": [8768], "dscvr.me": [2024], "static-azeroth.cursecdn.com": [3927], "pfr.ec": [2024], "reuters.tv": [21640], "*.likes-media.com": [9366], "ars.els-cdn.com": [5174], "www.torreycommerce.net": [16664], "www.gac.edu": [6279], "images.us.jobs": [22403], "r.xl.pt": [2024], "static.rust-lang.org": [14102], "0to.com": [2024], "olimex.com": [11819], "vn.if.qidian.com": [13349], "*.kf5.com": [20706], "cdn.mail.aol.com": [380], "cscm.ag": [2024], "ryan.cat": [2024], "dwp.lequipe.fr": [20811], "non-t.co": [2024], "manila.usembassy.gov": [22406], "cdnsecakmi.kaltura.com": [8790], "smolensk.sledcom.ru": [21858], "reset.qf.org.qa": [21557], "*.twitcasting.tv": [16959], "jotform.com": [8649], "stellar.mit.edu": [9763], "go.nminc.co": [2024], "*.pssap.gov.au": [13259], "www.giantbomb.com": [6620], "fmsgr.se": [2024], "kyl.ie": [2024], "www2.pbebank.com": [13249], "forums.serversforhackers.com": [14679], "www.stealthnet.de": [15514], "finance.idnes.cz": [20483], "www.thechive.com": [22141], "www.fishshell.com": [5864], "dissh.me": [2024], "note.115.com": [28], "vein.co": [2024], "www.mycareinbirmingham.org.uk": [10845], "franz.tv": [2024], "flyakite.msfn.org": [9804], "ccn.la": [2024], "fonts.wsj.net": [18021], "mrm.freewheel.tv": [6112], "blog.evernote.com": [5440], "forum.openmw.org": [11990], "jpta.me": [2024], "myjobscotland.gov.uk": [10879], "render-api-eu.worldofwarcraft.com": [18542], "owncloud.dkit.ie": [4032], "www.odpadnes.sk": [18979], "artace.uk": [2024], "gust.ly": [2024], "miranda-im.org": [10478], "cockpit.mykolab.com": [10811], "www.vistumbler.net": [13605], "fs05.enter.ru": [20002], "builder-grafana.quay.io": [21564], "go.cylac.ca": [2024], "ivpr.es": [2024], "e96.cdnvideo.ru": [19536], "www.terrariaotherworld.com": [22124], "content.worldwildlife.org": [18544], "m.addthis.com": [626], "www.phpans.com": [21400], "www.forgeworld.co.uk": [20137], "xfel.desy.de": [4386], "66.rkn.gov.ru": [13971], "www.inspirationgreen.com": [8177], "ac1.memberdirect.net": [10265], "easyreadfs.nosdn.127.net": [41], "simul.tips": [2024], "concierge.shopspring.com": [21810], "www.codesourcery.com": [10284], "webofknowledge.com": [18203], "s.aja.jp": [2024], "cdn.websharks-inc.com": [18181], "viaverio.com": [17747], "link.stjerne.nu": [2024], "mlife.lv": [2024], "coreboot.org": [3670], "www.piwik.ei.rub.de": [13539], "belezanaweb.net.br": [1789], "landing.newsinc.com": [11376], "www.everyoneisgay.com": [5446], "*.saltpack.org": [21724], "u.ggs.jp": [2024], "kids.greenpeace.de": [6919], "drinkaware.co.uk": [4756], "i1.adis.ws": [647], "quinta.in": [2024], "www.theravive.com": [22179], "auth0.com": [1432], "at.fmt.lt": [2024], "pom.me": [2024], "asset-2.java.net": [8538], "patentbaristas.com": [12482], "subply.com": [15620], "light-paint.com": [9357], "safeshepherd.com": [14297], "alumni.rmit.edu.au": [13496], "omics.gs": [2024], "*.bosch.com": [2247], "includes.ncl.ac.uk": [10926], "bitx.co": [1977], "www.canterbury.gov.uk": [2824], "register4less.com": [13794], "api.mywot.com": [10841], "map.mol.org": [10521], "rabota.mail.ru": [9891], "is.i2.datinglab.net": [19770], "on.kcra.com": [2024], "sbot.co": [2024], "b.advoua.org": [2024], "clarionledger.com": [3214], "www.baksman.com": [19307], "milwaukeemakerspace.org": [10438], "www5.hertz.com": [7371], "aip.org": [349], "hr.alibaba-inc.com": [19139], "eib.tw": [2024], "connect.raiffeisen.ru": [13587], "binera.de": [7209], "www.wordpress.tv": [18519], "www.zimbrablog.com": [18968], "www.securityinnovation.com": [14592], "mobil.lubw.baden-wuerttemberg.de": [19302], "cestovanie.azet.sk": [1507], "www.accountchooser.com": [516], "7-instant.okcupid.com": [11809], "kradio.bede.tfm.ro": [22135], "www.wartstick.com": [18080], "fr.reuters.com": [13893], "nazh.us": [2024], "lists.geany.org": [6463], "koletech.info": [2024], "www.tastekid.com": [16036], "screen.oxfordjournals.org": [12222], "conference2010.kde.org": [8735], "calvin.cloud": [2024], "rach.tv": [2024], "blmd.me": [2024], "cmswm.it": [2024], "dinr.us": [2024], "www.cbf.ox.ac.uk": [17359], "ookla.com": [11931], "www.androidfilehost.com": [1051], "s.gr-assets.com": [6861], "image4.play-asia.com": [12828], "mrc.io": [2024], "idi.ntnu.no": [11004], "e21.io": [2024], "miikka.net": [2024], "emsonline.blackpool.gov.uk": [2074], "cdn1.micasa.ch": [10370], "jayshapiro.is": [2024], "p2n.co": [2024], "tdk.jp": [2024], "www.astronomicaltours.net": [1328], "www.doncaster.greenparty.org.uk": [6908], "wiki.pirate-party.ru": [12736], "l5.io": [2024], "webstats.maths.ed.ac.uk": [5059], "iuanyware.iu.edu": [8069], "rgs.me": [2024], "imend.co": [2024], "img.tweetimag.es": [1844], "bluecava.com": [2142], "block.deals": [2024], "url.matheus.me": [2024], "se.no": [21762], "svn.gnumonks.org": [6748], "*.boozallen.com": [2240], "www.ohm2013.org": [11661], "hrio.in": [2024], "nrlynkd.com": [2024], "www.mandelbrot.kairo.at": [8782], "securityblog.stanford.edu": [15448], "lnka.de": [2024], "www.honeynet.org": [20401], "blicher.co": [2024], "www.coreix.net": [3671], "hdnux.com": [7269], "empireblue.com": [19988], "fenixgsm.net": [2024], "tvfiber.tk": [2024], "i1.mifile.cn": [10411], "www.peopleclick.com": [12583], "directadvert.ru": [4512], "www.parliament.uk": [21349], "commsys.isy.liu.se": [9096], "thcservers.com": [22138], "democracyclub.org.uk": [19804], "anmd.tv": [2024], "blogs.nvcc.edu": [11627], "wasi.link": [2024], "paszport.money.pl": [10585], "*.list-manage2.com": [9461], "lmbrt.in": [2024], "getinvolved.guildford.gov.uk": [20321], "find.es.t-mobile.com": [15837], "www.mediaarts-db.jp": [10181], "agib.me": [2024], "www.postofficeshop.de": [19816], "4pda.uz": [191], "newyorkneedsyou.org": [11353], "www.openfiler.com": [12065], "hlp.bz": [2024], "affil.walmart.com": [18059], "www.hosting.cz": [20409], "cree.me": [2024], "eri.ma": [2024], "mepi.state.gov": [17146], "hoy.do": [2024], "cannex.com": [2529], "contact.sk.ru": [21845], "17v01t6srs3ux3c46f51hujohzdvxvgu7fo5ncb1.ipleak.net": [20571], "s.uploadhero.co": [17476], "buildbot.tools.ietf.org": [7725], "tvax4.sinaimg.cn": [14910], "rrg.me": [2024], "digit.re": [2024], "theol.mx": [2024], "mrex.us": [2024], "developers.asana.com": [1265], "clevelandconnected.co.uk": [19610], "dreamstime.com": [4750], "etrtbs5.smartstream.tv": [15064], "www.internationalpayments.co.uk": [8265], "ravendb.net": [13639], "*.moverall.com": [10672], "rally.stopwatching.us": [15555], "theinspirationroom.com": [16270], "unndd.it": [2024], "www.nice.org.uk": [10961], "revizorro-show.friday.ru": [20175], "lsy-www.swiss.com": [15758], "cch.com": [2562], "quarry.wmflabs.org": [18388], "wat.vc": [2024], "thebookbang.com": [2024], "burthub.com": [2468], "www.hr-s.co.jp": [7087], "on.unesco.org": [2024], "wjburgin.info": [2024], "go.bodin.ac.th": [2024], "www.nb.admin.ch": [22061], "www.bugzilla.org": [2425], "www.advocate-europe.eu": [720], "cs.4.boardgamearena.com": [2182], "www.bristol.gov.uk": [19451], "scnttrnk.com": [2024], "www.kasimp3.co.za": [8818], "theblog.news": [2024], "3dlz.co": [2024], "xapo.com": [18630], "cll.conted.ox.ac.uk": [17359], "*.villas.com": [17802], "tv.pgtrk.ru": [21394], "sitecdn.answcdn.com": [1095], "jwl.am": [2024], "lh2.google.com.*": [6821], "mslk.co": [2024], "r.rvhfoto.nl": [2024], "connect.colchester.gov.uk": [3414], "forums.virtualbox.org": [17833], "streamco.us": [2024], "torrentz-proxy.com": [16661], "img.thalia.de": [16244], "win-sv.jp": [18417], "*.moxiesoft.com": [10685], "www.openfoo.org": [21273], "www.simbad.cnrs.fr": [6174], "www.mypostbusiness.ch": [12996], "newssense.in": [2024], "tjc.cc": [2024], "fitandfun.ky": [2024], "galaxus.com": [6385], "www.iipvv.nl": [7744], "go.onclasrv.com": [21249], "localoffer.bradford.gov.uk": [2282], "webmail.nasa.gov": [10909], "www.yartv.ru": [22670], "zeushash.com": [18952], "m.slashdot.org": [21857], "www.vianetfuelsolutions.com": [17750], "101xp-portal-ru.cdnvideo.ru": [19536], "go.catmoji.com": [2024], "trea.tw": [2024], "jigex.com": [2024], "*.euroforum.de": [5403], "fr.faqs.bookmyname.com": [2215], "rpgmakerweb.com": [14054], "cdig.me": [2925], "go.hoki.la": [2024], "account.cern.ch": [2588], "makr.life": [2024], "b.azrul.net": [2024], "radr.fr": [2024], "erti.us": [2024], "static5.startnext.com": [15478], "z.dial.nl": [2024], "hack.te-st.ru": [22103], "bugs.siedler25.org": [13889], "ufa.tpprf.ru": [22260], "democracy.kirklees.gov.uk": [8929], "www.pixiv.net": [12778], "answers.stripe.com": [15594], "bdtw.co.vu": [2024], "www.mycarfinance.lloydsbank.com": [9537], "extranet.nsidc.org": [11100], "universityofarizona.worldcat.org": [18536], "support.pipni.cz": [12287], "img.auctiva.com": [1374], "www.sunriseprintonline.com": [15671], "washex.am": [2024], "www.w.hs-karlsruhe.de": [7587], "it24.idg.se": [7709], "north-winds.net": [2024], "em.dynamicyield.com": [4822], "assoc-amazon.de": [1313], "cfcblu.es": [2024], "ourproject.org": [21314], "ssl-i.xx.openx.com": [12028], "output1s.rssinclude.com": [13523], "wat.ky": [2024], "joycasino0.com": [20654], "o.rly.at": [2024], "www.givekidstheworldstore.org": [6668], "talgov.com": [15988], "shsta.co": [2024], "jpdirector.com": [2024], "rally1.rallydev.com": [13598], "jaimegomez.ml": [2024], "myoc.co": [2024], "events.redditmedia.com": [13749], "l.longtailvideo.com": [9601], "hi.kskv.co": [2024], "blog.kaywa.com": [8843], "jewishpress.com": [8577], "ugyfelkapu.digi.hu": [4458], "xstore.jp": [2024], "help.yandex.com.tr": [18740], "dkfan.de": [2024], "collectors.sumologic.com": [15658], "012.vuejs.org": [17963], "digibond.wpengine.netdna-cdn.com": [4467], "client.primbank.ru": [13107], "globx.co": [2024], "go.cmru.info": [2024], "dpskolkata.com": [4729], "af.reuters.com": [13893], "church.ez-web-hosting.com": [4991], "int.sitestat.com": [14952], "hkn.de": [7071], "s.2ji-iro.com": [2024], "nlgcdn.com": [11471], "fr.opera.com": [12086], "konrath.co": [2024], "denrey.me": [2024], "wndrful.co": [2024], "adaway.org": [614], "l.nutyoutube.tk": [2024], "dc801.org": [4003], "www.darkmatter.ae": [19758], "*.pjtv.com": [12292], "www.seower.com": [14652], "tsmlab.org": [2024], "url.senviet.org": [2024], "englearn.osu.edu": [11797], "www.hackinthebox.org": [7141], "portal.hugoboss.com": [7608], "eshop.martinus.sk": [10044], "sitecamp.us": [2024], "www.betnet.fr": [11224], "experts.mailchimp.com": [9893], "cdn.guildford.gov.uk": [20321], "ncld.co": [2024], "trendmicro.eu": [16790], "flx.mr": [2024], "ssc.osu.edu": [11797], "familycohort.sph.hku.hk": [20387], "*.circularhub.com": [3160], "amazingweb.co": [957], "revue.idnes.cz": [20483], "explorer.dot-bit.org": [4686], "home.wpm.neustar.biz": [11320], "user-agents.org": [17514], "alsace.alternativelibertaire.org": [931], "tools.sparklabs.com": [15289], "mixer.gettyimages.com": [6604], "cdn.transifex.com": [16743], "lcky.mg": [2024], "sanoma.com": [14350], "eksod.us": [2024], "s1.afisha.ru": [19107], "wikitest.geogebra.org": [6522], "on.wyff4.com": [2024], "open.rocketbank.ru": [13994], "www.connecthr.nl": [2797], "www.imfreedom.org": [8184], "hps.org": [20417], "red-pill.eu": [13719], "amnesty.or.jp": [1010], "r.sjsu.edu": [2024], "aibsbulletin.oxfordjournals.org": [12222], "miim.de": [2024], "api.flightradar24.com": [20119], "cirs.georgetown.edu": [6531], "hongkongpost.gov.hk": [20404], "www.money.pl": [10585], "shangqiu.1688.com": [51], "*.ppjol.com": [13080], "join.anquan.org": [19204], "nx8.tv": [2024], "www.hakin9.org": [7158], "www.aliyun.com": [868], "stat.myttk.ru": [21076], "hungerhost.com": [7623], "people.php.net": [12280], "support.novell.com": [11569], "finsku.ga": [2024], "admin.theatlanticwire.com": [1342], "edd.me": [2024], "on.tenerant.com": [2024], "t5.qlogo.cn": [13355], "businessclass.comcast.net": [3461], "www.cups.org": [2705], "t3fm.com": [2024], "tmwsne.ws": [2024], "vdrn.redplum.com": [13723], "bluecastle.nottingham.ac.uk": [11567], "brew.sh": [19447], "secn.ws": [2024], "www.postimage.org": [13024], "prjkt.se": [2024], "tor.lugons.org": [9121], "innvt.it": [2024], "*.hostpoint.ch": [7548], "www.ludialudom.sk": [9661], "m.zalando.ch": [18877], "achievementstats.com": [529], "storybots.co": [2024], "wo-mobi.us": [2024], "pblogging.com": [2024], "alb.albennet.com": [826], "secure.redflush.com": [13734], "ovrc.lk": [2024], "spain.palsolidarity.org": [12367], "correo.uned.es": [17248], "support.tagboard.com": [22085], "support.udemy.com": [17194], "www.piratelinux.org": [12744], "yo.xcvb.co.uk": [2024], "linuxpenguins.xyz": [20853], "se1.info": [2024], "msb.link": [2024], "haysom.co": [2024], "pcauto.irs01.com": [20584], "jrs.im": [2024], "rkyw.me": [2024], "oikotie.fi": [21234], "theeventdiva.com": [16265], "klibert.pl": [8945], "www.psykologteam.dk": [13602], "roskomzakon.ru": [21673], "mail.qwknetllc.com": [13339], "es.videos.t-mobile.com": [15835], "ptu.me": [2024], "www.um.baden-wuerttemberg.de": [19302], "m.onride.de": [21259], "ghstrbt.com": [2024], "m.portal.hku.hk": [20387], "onetbl.co": [2024], "dong.nikhef.nl": [11441], "heusden.nl": [11172], "xt-commerce.com": [18687], "ehis.me": [2024], "girlbeauty.uk": [2024], "ho14.majordomo.ru": [9914], "wap.baidu.com": [1641], "adminit.usc.edu": [17366], "ruv.me": [2024], "images.springer.com": [15380], "www.pcbsd.org": [12247], "just-eat.dk": [20671], "www.precos.com.pt": [13067], "en-is.dict.cc": [4442], "s.cuezva.net": [2024], "rpsc.energy.gov": [5243], "dallas.webconsole.linode.com": [9401], "jungewelt.de": [20667], "ucu.org.uk": [22345], "tambov.psbank.ru": [13231], "planning.stoke.gov.uk": [21995], "i.wem.mx": [2024], "jobb.blocket.se": [2109], "mdrio.mx": [2024], "fx2.xe.com": [18599], "www.skyscanner.ru": [15006], "*.argos.co.uk": [1214], "podcast.anarchistnews.org": [1033], "live-movie.ml": [2024], "www.unwantedwitness.or.ug": [17459], "www.dhavalkapil.com": [4427], "lie.lv": [2024], "diploby.mondediplo.com": [10578], "woxxy.foolz.us": [5985], "letter.government-nnov.ru": [20295], "swdh.in": [2024], "www.1xbet.com": [92], "mrsh.cm": [2024], "app.vrr.de": [17954], "impac.tw": [2024], "stvn.so": [2024], "www.gjopen.com": [6315], "nyx.com": [11034], "myeaccount.islington.gov.uk": [8384], "*.sdlcdn.com": [14493], "goaz.me": [2024], "git16.rostrud.ru": [21677], "g5.gov": [6278], "www.bankinter.com": [1674], "ant.mn": [2024], "jett.me": [2024], "adct.me": [2024], "zgp.tocco.ch": [16600], "jekkt.com": [8556], "www.btcc.com": [2400], "ebillet.lequipe.fr": [20811], "www.geni.net": [6296], "bell.ca": [1792], "bollettino.poste.it": [13013], "www.gamecraft.cz": [20200], "bio-ontologies.knowledgeblog.org": [8961], "go.nxu.hu": [2024], "www.abebooks.com": [467], "killerwhale.vanaqua.org": [17637], "jhpv.co": [2024], "l.danielooi.com": [2024], "pece.o2.cz": [2024], "www.hit.bme.hu": [1556], "sede.uniovi.es": [17282], "sterl.in": [2024], "turnoff.us": [22314], "txtil.co": [2024], "1in5.io": [2024], "bosh.me": [2024], "jiel.oxfordjournals.org": [12222], "xpiconly.com": [18624], "www.itea3.org": [7848], "brlyco.de": [2024], "static9.startnext.com": [15478], "minstr.khabkrai.ru": [20709], "readme.io": [13668], "skyriderplay.com": [15005], "lgc.click": [2024], "i.nhg-homer.org": [2024], "*.malina.hu": [4659], "userscripts-mirror.org": [17523], "u.bravodms.com": [2024], "www.einslive.de": [18113], "mail.re-publica.de": [13657], "www.numergy.com": [11618], "qwp.es": [2024], "www.7-eleven.com": [227], "info.nowsecure.com": [11573], "reservations.mgmmirage.com": [20973], "studi.f4.htw-berlin.de": [7103], "image.gametracker.com": [6423], "dealchicken.com": [12662], "ppmlk.com": [2024], "static4.publish2.me": [21536], "discuz.gtimg.cn": [6974], "admin.exmasters.com": [5487], "*.cooliris.com": [3645], "publicaccess.glasgow.gov.uk": [6681], "support.cex.io": [2600], "gethashing.com": [6563], "ruby-china.org": [14069], "api.enter.ru": [20002], "*.sitesense-oo.com": [11061], "my.fireclick.com": [5839], "m.ya.ru": [18716], "xine-project.org": [18665], "www.torrent.tm": [16648], "www.vozpopuli.com": [17950], "www.mykolab.com": [10811], "loka.ly": [2024], "images.yandex.ua": [18747], "*.fanhattan.com": [5644], "www.canvaslms.com": [2826], "waa-jla.xyz": [2024], "bratsk.europaplus.ru": [20034], "download.ust.hk": [22412], "dgeorge.ml": [2024], "carbodyshop.org": [2024], "asset-d.soup.io": [15235], "feedback.dayz.com": [4225], "www.cryptologie.net": [3867], "auth.church": [2024], "rackspace.hk": [13564], "strs.co": [2024], "semver.io": [21779], "searchmarketingnow.com": [16441], "bilbo.ozlabs.org": [12228], "sjs.bizographics.com": [2053], "rmn.pw": [2024], "informers.sinoptik.ua": [14919], "sthelen.co": [2024], "kirklees.gov.uk": [8929], "*.moneysavingexpert.com": [10587], "lists.kde.org": [8735], "community.lls.org": [9102], "boston.com": [2252], "glaube.me": [2024], "oveelife.com": [2024], "p4.music.126.net": [40], "maps.stanford.edu": [15447], "in.punelive.in": [2024], "*.kldp.net": [8752], "3dhubs.me": [2024], "www.linotype.com": [9402], "yrbiz.uk": [2024], "weg.bz": [2024], "gotom.tg": [2024], "subscription.people.com": [12579], "wtr.ie": [2024], "stat.uptodown.net": [22397], "numsys.eu": [11619], "fruitflylife.co": [2024], "gradsch.osu.edu": [11797], "ecn.t4.tiles.virtualearth.net": [17840], "wlm5.tk": [2024], "www.wand.com": [18065], "www.drivee.ne.jp": [4759], "ord.mx": [2024], "www.dsi.cnrs.fr": [6174], "www.androidpit.de": [1052], "account.ubnt.com": [17164], "static-strawpoll.cursecdn.com": [3927], "hebrew.duapp.com": [19902], "pepe.ag": [2024], "0ln3y20azh9pxvgh1c64ys2g4jktjyy9i5y3ayt5.ipleak.net": [20571], "bouman.xyz": [2024], "www.apertureinsight.com": [13270], "datatracker.ietf.org": [7725], "thenwo.co": [2024], "go.conncoll.edu": [2024], "www.nadaguidesstore.com": [10907], "jobs.daringfireball.net": [4140], "parking.bedford.gov.uk": [19341], "luxf.it": [2024], "i2.gmx.com": [6330], "r24625245.sync.app.asana.com": [1265], "www.namebrightstatic.com": [11058], "opros.rg.ru": [21646], "burningshed.com": [2458], "oceandiscoveryportal.xprize.org": [18584], "dl.msf.fr": [2024], "d.pcs.baidu.com": [1641], "chapnick.tk": [2024], "www.clkmon.com": [3271], "amys.co": [2024], "noembed.com": [11495], "*.kinghost.net": [8913], "www.gigenet.com": [6638], "s.acmt.net": [2024], "www.pressflex.com": [13083], "tout.ly": [2024], "ru.squat.net": [21955], "www.gq.com": [6356], "ronalds.link": [2024], "mmedia.ozon.ru": [12231], "enrgy.co": [2024], "www.ll.georgetown.edu": [6531], "r.moiskidki.com": [2024], "test.firehol.org": [20107], "www.reclaim-your-privacy.com": [13707], "www.korruption.dk": [9002], "egenix.com": [19923], "vult.re": [2024], "edge.fscdn.org": [5595], "nl-marketing.tradepub.com": [16718], "automotivelinux.org": [1454], "tvheadend.org": [16934], "scottbrand.com": [14459], "www.here.com": [7325], "scare.at": [2024], "ugla.hi.is": [7049], "www.ihgagent.com": [8229], "comunidade.edp.pt": [4888], "appserv7.admin.uillinois.edu": [17034], "weicaifu.com": [22556], "tb1.bdstatic.com": [19339], "kidona.rakuten.co.jp": [13593], "pgspt.me": [2024], "bokno.ws": [2024], "www.tecnocode.co.uk": [16119], "www.erhvervsstyrelsen.dk": [5329], "www.earthobservations.org": [19933], "workorder.aliyun.com": [868], "prxl.co": [2024], "cp.lunik.xyz": [20890], "5.play-asia.com": [12828], "peterodding.com": [12624], "brchan.org": [1567], "tmp-uat-www.imercer.com": [20502], "comparative-hepatology.biomedcentral.com": [1931], "jneuroengrehab.biomedcentral.com": [1931], "fulcrumbiometrics.com": [6225], "zareason.com": [18895], "my.pingdom.com": [12719], "www.yatima.org": [18755], "go.psman.gq": [2024], "login.libproxy.aalto.fi": [447], "registro.br": [13796], "htrnews.com": [7321], "reestr.rublacklist.net": [14068], "download.sv.gnu.org": [6337], "lk.seven-sky.net": [21792], "www.eba.europa.eu": [5411], "vistastar.co.uk": [2024], "www.argoscareers.com": [1214], "d.mhcache.com": [10358], "netid.georgetown.edu": [6531], "files.qabel.de": [13343], "developers.hubspot.com": [7599], "www.domcomp.com": [4660], "s.joonh.com": [2024], "*.ciao.com": [3136], "nctr.life": [2024], "inkl.co": [2024], "e.teenbr.com.br": [2024], "en.verbling.com": [17704], "www.cvl.isy.liu.se": [9097], "360buy.com": [147], "tbr1.tk": [2024], "www2.healthunlocked.com": [7257], "paranoidsecurity.nl": [12423], "dml.kuleuven.be": [8832], "rhapsody.com": [13915], "caissesmaladie.search.ch": [14504], "agaris.net": [2024], "www.jd.hk": [8437], "buyback.rakuten.co.jp": [13593], "*.kixeye.com": [8747], "i.cdn.cnn.com": [2649], "mmnews.mm.am": [2024], "help.screencast-o-matic.com": [14471], "terd.us": [2024], "learn.cca.edu": [2547], "ic.nu": [2024], "www.heartbleed.com": [7273], "www.retronaut.com": [13886], "hugoboss.com": [7608], "zno.yandex.ua": [18747], "kr.sputniknews.com": [21951], "l.seddon.me": [2024], "www.oecdilibrary.org": [11655], "*.talkactive.net": [15990], "cp.idg.de": [2024], "www.volatilesystems.com": [17913], "day.org.ru": [19773], "hsd.bz": [2024], "www.vibrantmedia.com": [17752], "gallery.hizliresim.com": [7438], "sbaglobal.com": [14685], "service.danmu.youku.com": [18804], "glcl.co": [2024], "www.who.int": [17999], "para.maximintegrated.com": [10108], "www.terveysportti.net": [16204], "static.ylilauta.org": [22682], "status.zen.co.uk": [18913], "fiannafail.ie": [5754], "sfbrande.is": [2024], "jba.link": [2024], "www.javvin.com": [8545], "tufts.worldcat.org": [18536], "ws.cnetcontent.com": [2648], "pbs.twimg.com": [16949], "www.businessadvice.anz.com": [374], "eng.fronter.com": [20179], "www.nsslabs.com": [10999], "phusionpassenger.com": [12685], "verisign.com.tw": [17712], "amp.timeinc.net": [16535], "webtype.com": [18191], "retailsails.com": [13880], "mirrorbits.lineageos.org": [9384], "image12.bizrate-images.com": [2054], "www.unionreps.org.uk": [22376], "awesome-it.de": [1487], "duk.ma": [2024], "help.conoha.jp": [3590], "www.tripwire.com": [16825, 16826], "stpdcn.cr": [2024], "aldi.nl": [357], "on.wsj.com": [2024], "smozaika.ru": [21874], "bugs.freedesktop.org": [6102], "api.dlvrit.com": [19855], "www.civilservice.gov.uk": [19601], "trace.risingstack.com": [21654], "www.cert.pl": [2590], "api.met.no": [20968], "vdoth.com": [17673], "kotaku.com": [9004], "trafikstorning.ul.se": [22355], "parcelforce.com": [12426], "ogu.la": [2024], "auth.illinois.edu": [17346], "press.11main.com": [31], "tiras.ru": [22215], "1mof.me": [2024], "ntwc.co": [2024], "forum.fineproxy.org": [5830], "thepbproxy.website": [22174], "eauk.co": [2024], "git.centos.org": [2950], "tecnica.ist.utl.pt": [16097], "genesenvironment.biomedcentral.com": [1931], "kwib.us": [2024], "man.openbsd.org": [11955], "ct.hwcmc.com": [2024], "mylikes.com": [10814], "www.sqlconverter.com": [14228], "46.kavkaz-uzel.ru": [20694], "mbitly.co": [2024], "timekat.state.gov": [17146], "nekvapor.com": [10939], "amty.co": [2024], "act.alternet.org": [925], "it.uu.se": [17153], "p23.qhimg.com": [13347], "vdivpn.microad.co.jp": [10376], "onemancan.org": [11887], "cache.legacy.com": [9242], "addisonlee.com": [631], "mediademocracyfund.org": [10158], "az.oxfordjournals.org": [12222], "atlassec.web.cern.ch": [2588], "blog.freenode.net": [20164], "www.mims.com.ph": [9756], "l.druffin.fr": [2024], "android5g.xyz": [2024], "www.shopping.ba.com": [1513], "moxcar.com": [2024], "equalit.ie": [4938], "a.hbt.li": [2024], "sir.cern.ch": [2588], "*.stardock.com": [15465], "m.censor.net.ua": [19538], "tcd.ie": [16812], "www.oneplus.net": [11880], "www.inverse.ca": [8310], "www.dareboost.com": [4139], "shopho.us": [2024], "mijnwestlandutrecht.nl": [18311], "donate.thenation.com": [16274], "fiv.link": [2024], "dnswatch.info": [4059], "www.popcorn-time.se": [12961], "wgsp.georgetown.edu": [6531], "bayproxy.pw": [22174], "ahs.mn": [2024], "webpg.org": [18175], "buyboard.com": [2483], "dtmpg.co": [2024], "newsblur.com": [11366], "oberoesterreich.neos.eu": [10941], "*.www.loopia.se": [9616], "www.netvibes.com": [11298], "rcar.me": [2024], "cday.us": [2024], "be.godaddy.com": [6755], "dojotoolkit.org": [4630], "ci.cms.gov": [19630], "11gam.es": [2024], "mywt.us": [2024], "my.lsbu.ac.uk": [9111], "spreadshirt.se": [15371], "igloo.nsidc.org": [11100], "thehague.usembassy.gov": [22406], "peerreach.com": [12550], "tbssf.org": [2024], "*.questadmin.net": [6262], "intrahr.nih.gov": [11090], "support.ipvanish.com": [7803], "pb9.co": [2024], "*.networkdepot.com": [11301], "hd.etnasoft.com": [5376], "ngve.co": [2024], "ipack.dinglisch.net": [19841], "www.linuxwall.info": [9451], "www.photosynth.net": [12680], "memberprod.alipay.com": [864], "gpul.org": [6352], "*.servage.net": [14660], "resultater.nrk.no": [11586], "kikifet.ch": [2024], "assets2.motherboard.tv": [10648], "brief.vet": [2024], "rdvs.be": [2024], "careers.fi": [2857], "shack.net": [2024], "chistopol.startsmile.ru": [21980], "airquality.portsmouth.gov.uk": [21467], "openmailbox.org": [11991], "www.synthetix.info": [15808], "www.owlverkehr.de": [12212], "lapa.xyz": [2024], "s98.cnzz.com": [3328], "*.maxroam.com": [9728], "www.madboa.com": [9854], "*.moderngiver.com": [10558], "cdn.ravenjs.com": [21589], "go.linuxfoundation.org": [9427], "www36.verizon.com": [17715], "on.elle.de": [2024], "ghandi.wtf.im": [2024], "fbkoralky.cz": [2024], "www.art19.com": [19238], "fortresslinux.org": [6035], "cdn-1.sundul.us": [2024], "mrsteve.me": [2024], "itstools.ornl.gov": [11730], "www.debenhams.com": [19794], "email.ixwebhosting.com": [7880], "edx.org": [5062], "rdst.mp": [2024], "secure.exonet.nl": [20051], "tbr.rocks": [2024], "community.amd.com": [970], "ibxa.net": [2024], "tcn.fff.co.nz": [2024], "panthernet.york.edu": [18787], "api.qrsolutions.com": [13331], "www.technologyconversations.com": [22112], "www.vehicular.isy.liu.se": [9097], "shop.sneakerfreaker.com": [21881], "i.1mlnlks.com": [2024], "url.oasistv.com": [2024], "api.yr.no": [22699], "*.bundestag.de": [4401], "dicon.io": [2024], "api.ooyala.com": [11936], "repmedia.tv": [2024], "charter.com": [3026], "www.cybergolf.com": [3961], "s.epoint.es": [2024], "liqd.tv": [2024], "statinfo.ksh.hu": [8766], "video.friday.ru": [20175], "www.philadelphiabar.org": [12651], "hcdi.gs": [2024], "s4.test.ft-static.com": [20182], "on.nyc.gov": [2024], "link.wine": [2024], "milliways.cryptomilk.org": [3870], "www.f35.com": [5534], "coorisd.illuminateed.com": [20494], "glljobs.org": [20266], "r1.zemanta.com": [18912], "www.educationnext.org": [5085], "www.aktivix.org": [815], "09.static-maxdome.de": [10106], "www.supermedia.com": [15680], "w1.sndcdn.com": [15096], "ibmmobile.info": [2024], "www.thomsonreuters.com.ar": [22198], "static-slapshot.cursecdn.com": [3927], "socialcube.net": [15137], "community.saturn.de": [21736], "www.ziggo.nl": [18962], "hirlevel.aldi.hu": [357], "my.usda.gov": [17299], "afhi.us": [2024], "newsroom.fb.com": [5687], "stm.baden-wuerttemberg.de": [19302], "jabber.hot-chilli.net": [7553], "url.albj.net": [2024], "www.washingtonpostmedia.com": [18085], "rating.sostav.ru": [21905], "r.creema.jp": [2024], "mref.nl": [2024], "www.ssl.gostats.com": [6767], "mimuslimcouncil.org": [9757], "6box-channel.co": [2024], "education.getsatisfaction.com": [6601], "*.u-tokyo.ac.jp": [16992], "www.samltool.com": [21726], "hits.epochstats.com": [5313], "es.stock.walmart.com": [18059], "professionalprivacypolicy.com": [6698], "omarm.cu.cc": [2024], "docs.blesta.com": [2089], "evga.com.au": [4978], "getdigital.co.uk": [6556], "*.umass.edu": [17353], "okz.ro": [2024], "hpi.de": [7082], "dashboard.tawk.to": [16043], "tomlee.wtf": [16616], "www.8joycasino.com": [20654], "gidforums.com": [6311], "community.secondlife.com": [14527], "rocketmail.com": [18728], "mall.sk": [9934], "edsu.me": [2024], "my.m3xs.net": [9708], "dgit.in": [2024], "miniatur-wunderland.de": [10459], "a.dyndns.com": [4814], "fph.nz": [2024], "thepirateboat.eu": [22174], "www.exploit.in": [5498], "novosibirsk.rt.ru": [13529], "*.nationbuilder.com": [11082], "link.useed.org": [2024], "www.holoscripter.org": [7468], "voxmedia.com": [17941, 22503], "www.thp.io": [16463], "u2rl.com": [2024], "www.pas.org.my": [12382], "webauth1.slac.stanford.edu": [15448], "www.ofono.org": [21220], "engedmenyes.kh.hu": [8739], "www.taxactonline.com": [16044], "ga.kijk.nl": [2024], "ampy.io": [2024], "curetheitch.com": [3923], "sops.news.com.au": [11379], "viz.li": [2024], "go.crossline.io": [2024], "www1.handelsbanken.fi": [7174], "ccc-tool-1.entropia.de": [20004], "wiki.netbsd.org": [11222], "developers.elsevier.com": [5177], "aftonbladet.se": [759], "r.rcogm.dk": [2024], "b6.chaucanh.net": [2024], "stats.salford.gov.uk": [21721], "apperdeck.com": [7471], "calendar.mit.edu": [9761], "instapanel.com": [8189], "thefund.stanford.edu": [15448], "thescpn.org": [2024], "teardowniq.com": [16072], "nesoya.link": [2024], "opentechfund.org": [12019], "msg.telus.com": [16174], "www.alumni.rmit.edu.au": [13496], "www.fightaging.org": [5771], "dmn.hm": [2024], "ecdn.liveclicker.net": [9517], "ru.cryptonator.com": [3873], "2checkout.com": [113], "mscgen.js.org": [20657], "s27.postimg.org": [13024], "mcitizen.com": [9883], "bluehost-cdn.com": [2163], "www.planet-lab.org": [12801], "sait.usc.edu": [17366], "outlet.lenovo.com": [9265], "ngvpn03.nvidia.com": [11022], "cdn.iqcontentplatform.de": [7812], "maps.org": [9720], "static-cdn.jtvnw.net": [16961], "teachingcenter.wustl.edu": [18089], "liyang.jd.com": [8434], "www.avicoder.me": [19286], "kayak.com": [8839], "bloggeek.me": [2116], "civ.moveon.org": [10670], "roundup.kolab.org": [8970], "xianning.jd.com": [8434], "m.games.mail.ru": [9891], "appimg.showapi.com": [21815], "online.mkb.ru": [10512], "ausd.illuminateed.com": [20494], "warners.gr": [2024], "identityworkshop.eu": [7941], "treealert.forestry.gov.uk": [20135], "theone.axonify.com": [1502], "*.www.erowid.org": [5339], "images1.miniclipcdn.com": [10461], "innoc02.at": [2024], "mobile.francetvinfo.fr": [20149], "webmail.sydney.edu.au": [22063], "coinkite.com": [3406], "wksp.guru": [2024], "his.com": [7292], "ww.pornhub.com": [12972], "f.ooty.pl": [2024], "vnjc.co": [2024], "unishare.un.org": [17057], "daac.gsfc.nasa.gov": [10909], "*.ew.com": [5284], "jon.re": [2024], "researchnews.osu.edu": [11797], "ww965.smartadserver.com": [15049], "gostehnadzor.government-nnov.ru": [20295], "tuleap.net": [16894], "meeting.weill.cornell.edu": [3676], "*.ussco.com": [17308], "nimenhuuto.com": [11449], "hd.mi.com": [10361], "checkrepair.apple.com": [1151], "08.static-maxdome.de": [10106], "support.mariadb.com": [9995], "neiyi.taobao.com": [16015], "10.dbstatic.no": [19775], "*.multicastmedia.com": [10736], "rat.rakuten.co.jp": [13594], "blog.kaspersky.ru": [8821], "www.shopspring.com": [21810], "web-ast.dsi.cnrs.fr": [6174], "status.freed0m4all.net": [6139], "schoolapplications.kirklees.gov.uk": [8929], "c.jimophoto.com": [2024], "nwblink.co": [2024], "www.adbusters.org": [620], "host1.jabbi.pl": [8490], "bizx.me": [2024], "t-t.site": [2024], "target.nci.nih.gov": [11090], "shop.heise.de": [7288], "jjj.works": [2024], "feral.io": [5736], "www.viewsourceconf.org": [22465], "fffinds.co": [2024], "git.spatialbuzz.com": [15300], "www.joycasino14.com": [20654], "void.nyc": [2024], "s24.postimage.org": [13024], "www.wdr5.de": [18113], "www.panerabread.com": [21340], "nisp-captcha.nosdn.127.net": [41], "radiology.weill.cornell.edu": [3676], "expeditedssl.com": [5494], "psiquiatra.tk": [2024], "to.nfood.mx": [2024], "jennife.red": [2024], "snel.com": [15098], "on.torelay.org": [2024], "nso.oxforddictionaries.com": [12223], "*.argos.ie": [1214], "hamburg.de": [7169], "ocls.co": [2024], "kazan.startsmile.ru": [21980], "penge.ms": [2024], "covisint.com": [3733], "schooladmissions.cheshirewestandchester.gov.uk": [19575], "widget.criteo.com": [3798], "zahrada.artmama.sme.sk": [14198], "www.dtcc.edu": [4305], "media-hearth.cursecdn.com": [3927], "a1.websitealive.com": [18242], "libreoffice.org": [9327], "starrez.com": [15458], "aishelp.wustl.edu": [18089], "ymstat.com": [18712], "ubmaviationnews.com": [16999], "online.mirea.ru": [20993], "*.medscape.com": [10215], "www.theinfosphere.org": [22156], "*.gu.se": [6372], "fst.pw": [2024], "hyx.95516.com": [248], "mail.northumberland.gov.uk": [21160], "i.modrykonik.sk": [2024], "lists.ocamlcore.org": [11650], "luv.ba": [2024], "secure.aastocks.com": [19037], "www.isb.admin.ch": [22061], "insurancetech.com": [16999], "broadland.objective.co.uk": [21225], "arb.im": [2024], "www.oeffentliche.de": [11768], "render-us.worldofwarcraft.com": [18542], "*.epi.org": [5051], "eprotocol.stanford.edu": [15448], "webmail.osu.edu": [11797], "prv.se": [12321], "x.edb.so": [2024], "scllb.eu": [2024], "extranet.dft.gov.uk": [19825], "www.centreforeffectivealtruism.org": [2963], "evrvlt.co": [2024], "sn.badaudio.de": [2024], "blog.freifunk.net": [6170], "nz.pcpartpicker.com": [12529], "dok.ut.ee": [17148], "retirees.www.uprr.com": [22392], "s9.rr.itc.cn": [8401], "rwe.de": [21706], "hmrs.in": [2024], "corporateshop.unicef.org.uk": [17068], "m.afisha.ru": [19107], "*.wush.net": [18575], "calyxinstitute.org": [2774], "uwkb.ca": [2024], "bl.phncdn.com": [12661], "rows.io": [14043], "mediproviders.anthem.com": [19206], "widget.plugrush.com": [12864], "25live.collegenet.com": [3428], "cdn-d-img.pornhub.com": [12972], "ashford.com": [1275], "astronomy.fas.harvard.edu": [7211], "globaltap.com": [6721], "boxun.com": [19436], "download.guardian.co.uk": [6982], "virtualnewscenter.com": [17838], "secure.boxwoodtech.com": [2279], "d-fw.co": [2024], "www.hellholecheesefactory.org": [7291], "feedme.schmidtcom.de": [14419], "www.city.com.ua": [3188], "www.searscommerceservices.com": [14509], "langton.blue": [2024], "go.nwab.de": [2024], "my.taobao.com": [16015], "andiaut.com": [2024], "shwyz.ca": [14817], "tsabd.com": [2024], "digboston.com": [4454], "css-ebolaresponse.un.org": [17057], "m.posteo.de": [13016], "thejainman.com": [2024], "www.ethos-os.org": [5373], "abo.freitag.de": [6173], "sprwb.pro": [2024], "admin.groupcommerce.com": [6948], "sociomantic.com": [15146], "iamtim.co": [2024], "www.mybank.cn": [21062], "*.gannett.com": [6434], "yoshkar-ola.startsmile.ru": [21980], "livecoding.tv": [9518], "mwl.me": [2024], "blog.hartwork.org": [7209], "ocg.tech": [2024], "heaithtips.com": [2024], "vorstand.c-base.org": [2506], "spacelaunchreport.com": [15280], "roitw.it": [2024], "verfgh.baden-wuerttemberg.de": [19302], "broadcaster.email-tickets.com": [16499], "iwebthin.gs": [2024], "vectormediagroup.com": [17676], "ngov.us": [2024], "sitemasonmail.com": [14948], "oss-mk.infinum.co": [20526], "www.vereinigte-ikk.de": [17708], "hiring.cs.stonybrook.edu": [15548], "store.shopping.yahoo.co.jp": [18730], "blogs.uned.es": [17248], "akamaicovers.oreilly.com": [11697], "open.taobao.com": [16015], "in.aue.ae": [2024], "vmware.com": [17581], "www5.informe.org": [8118], "sk.ru": [21845], "nucci.co": [2024], "www.spcala.com": [14218], "cnstrc.tv": [2024], "en-tr.dict.cc": [4442], "victory2016.democrats.org": [4338], "chenpi.jd.com": [8434], "www.egopay.com": [5103], "lissn.nikkei.com": [11442], "clvry.us": [2024], "ui.bingads.microsoft.com": [10396], "phoo.play-asia.com": [12828], "arrr.xyz": [22174], "bd.abuledu.org": [19044], "portal.leeds.ac.uk": [17403], "lyncdiscover.mbank.cz": [9733], "ryanin.nz": [2024], "t35.com": [15844], "go.cardback.in": [2024], "www.office.com": [11780], "ru.verbling.com": [17704], "phoronix.com": [12668], "dyg.nu": [2024], "abc7ne.ws": [2024], "*.zulius.com": [19022], "*.console.mxlogic.com": [10126], "blogs.unicef.org": [17069], "pasha.bz": [2024], "manage.zeringo.com": [18935], "a.wiiare.in": [2024], "mindythe.li": [2024], "btp.police.uk": [2402], "dccomics.com": [4006], "anketa.binbank.ru": [1922], "music-stage.tokenly.com": [22229], "www.law.umich.edu": [17354], "rogr.org": [2024], "video.sport-express.ru": [21941], "www.ubuntu.org.cn": [17174], "buckeyemail.osu.edu": [11797], "comni.co": [2024], "htbiz.co": [2024], "fastly.us": [2024], "meso.osu.edu": [11797], "aex.ae": [2024], "www.gmoregistry.com": [6326], "tnin.es": [2024], "jabber.org.uk": [8486], "www.cryptomator.org": [3868], "young-pirates.eu": [18807], "pcmall.websitealive.com": [18242], "w.egyutt2014.hu": [2024], "ferien.immobilienscout24.de": [8008], "umftgm.ro": [22364], "strypt.me": [2024], "www.iflygo.com": [20275], "secure.codeforamerica.org": [3357], "www.copyleft.org": [3658], "arewecompressedyet.com": [1207], "omnigroup.com": [11832], "mechbunny.com": [10149], "gotoi.so": [2024], "blog.haschek.at": [7215], "www.ballotmeasuredomains.com": [1656], "suntimes.com": [15660], "www.ecatering.irctc.co.in": [7814], "b.osteen.co": [2024], "miaosha.jd.com": [8436], "blog.openaccessbutton.org": [11951], "www.proteansec.com": [13209], "gutmann.link": [2024], "my.sohoby.com": [2024], "gedr.im": [2024], "www.journalism.co.uk": [8659], "1234512345123451234512345123451234567.bjcnc.scs.sohucs.com": [15173], "lk.maryno.net": [20928], "giant.ms": [2024], "services.mobile.hsbc.com": [7090], "www.mitre.org": [10497], "ez.xdaya.com": [2024], "securelb.imodules.com": [7766], "gccdbn.org.za": [2024], "s.ietty.me": [2024], "gnee.us": [2024], "itx5-eqx.smartadserver.com": [15049], "hmp.ac": [2024], "cesiumjs.org": [2980], "terminatio.org": [16194], "h5.taobao.com": [16015], "*.advertise.com": [710], "get.sfumc.info": [2024], "si.cdn.dell.com": [4317], "virtualboximages.com": [17834], "revselfservegg.eastlothian.gov.uk": [5005], "itswbd.org": [2024], "mindshap.es": [2024], "pclog.dftoutiao.com": [19826], "irsh.us": [2024], "qutebrowser.org": [13438], "doubleclickbygoogle.com": [4702], "ubuntuforums.org": [17185], "contact.lemonde.fr": [9204], "cdn2.xda-developers.com": [18598], "www.uv.uio.no": [17414], "bogi.uk": [2024], "www.wsj.com": [22625], "notalwaysfriendly.com": [21164], "netroots.me": [2024], "status.uillinois.edu": [17034], "shop.vcd.org": [17560], "picker.mit.edu": [9763], "uk-skyticket.sky.de": [14990], "doers.build": [2024], "turbot.opencorporates.com": [11967], "pdf-online.com": [21375], "r-oo.me": [2024], "www.heise.de": [7288], "itek.di.dk": [3569], "www.etracker.de": [5378], "smar.sh": [2024], "dobby2.beget.com": [19347], "eagl.me": [2024], "aws.passkey.com": [12465], "www.gartner.com": [6442], "snkrjg.rs": [2024], "guatemala.engineering.osu.edu": [11797], "www.lavaboom.com": [9186], "library.uvm.edu": [17154], "sustainability-ornl.org": [11730], "edu.khabarovskadm.ru": [20708], "jot.is": [2024], "volgogradskaya-obl.beeline.ru": [1778], "docs.ansible.com": [1093], "img3.glassdoor.co.in": [20259], "www.hertzequipmentsales.com": [7371], "memberportal.communitycares.com": [19654], "twitrss.me": [16960], "online.billdesk.com": [1906], "lcsun.co": [2024], "www.matthewsmarking.com": [10094], "www.blankonlinux.or.id": [19405], "l.bchgrp.co": [2024], "3ws.me": [2024], "liveperson.hosted.jivesoftware.com": [9506], "zoologicalletters.biomedcentral.com": [1931], "www.getclef.com": [6574], "api.stripe.com": [15594], "conflictandhealth.biomedcentral.com": [1931], "netlib.re": [11235], "s64.cnzz.com": [3328], "at.wftv.com": [2024], "inh.im": [2024], "butterflynetinc.com": [2480], "scasera.com": [2024], "www.myaccount.earthlink.net": [4997], "begun.ru": [1785], "valio.ly": [2024], "www.openstreetmap.org": [12015], "abc13.co": [2024], "www.chs.us": [3131], "yakutsk.beeline.ru": [1778], "foll.ws": [2024], "wbro.oxfordjournals.org": [12222], "maitai.me": [2024], "triplebyte.com": [16822], "tva3.sinaimg.cn": [14910], "www.wildplanetphotomagazine.com": [18393], "wiki.networktimefoundation.org": [11306], "a4r.info": [2024], "ff.hrw.org": [7616], "r.casalemedia.com": [2880], "v.anquan.org": [19204], "ssl-product-images.www8-hp.com": [7379], "www.ouvaton.coop": [12187], "sa.zenmate.com": [18917], "www.etipos.sk": [5375], "mg1.co": [2024], "forums.playfire.com": [12842], "wj.qq.com": [13329], "secure.hrw.org": [7616], "sso.dell.com": [4317], "sourcecoast.com": [15239], "naza.be": [2024], "zenimaxonline.com": [18928], "www.plugrush.com": [12864], "git.jcrosoft.com": [8433], "campus.oracle.com": [12116], "wuft.it": [2024], "ut02.xhcdn.com": [18605], "people.inf.ethz.ch": [4967], "sd.citilink.ru": [19594], "rift.curseforge.com": [3927], "www.flyertalk.com": [5942], "t-w-h.be": [2024], "secure.phabricator.com": [12644], "hideh.co": [2024], "f.curbed.cc": [3919], "www.huobi.com": [7628], "dsar.me": [2024], "mellanox.com": [10257], "go.kirv.es": [2024], "fp.advertising.microsoft.com": [10396], "bundler.io": [2451], "habracdn.net": [7118], "lvsm.pl": [2024], "gfmtrader.com": [6304], "wine.social": [2024], "fickdat.es": [2024], "munin.vinilox.eu": [17809], "infectagentscancer.biomedcentral.com": [1931], "corporateblog.progress.com": [13178], "www.receivefreesms.net": [21607], "tae.st": [2024], "www.litebit.eu": [9469], "my.swiss.com": [15758], "pilot.ix.equinix.com": [5322], "friaspin.se": [2024], "gitstats.gnupg.org": [6744], "dotaznik.vutbr.cz": [17609], "www.unbubble.eu": [22366], "helpdesk.canadianwebhosting.com": [2809], "wmcurt.is": [2024], "support.websupport.sk": [18253], "delphiau.to": [2024], "bluemanticketing.com": [2155], "go.rvrs.in": [2024], "b3st-4u.ml": [2024], "sergach.startsmile.ru": [21980], "www.dps.uiuc.edu": [17030], "pki.irisgrid.es": [13722], "minpromtorg.permkrai.ru": [21390], "www.gruene.de": [898], "*.yelp.com.br": [22673], "specials-images.forbesimg.com": [5995], "www.addictionhelpchat.com": [629], "l.bozza.mobi": [2024], "www.cmdev.com": [2643], "meilenrechner.de": [10431], "islam4u.com": [8365], "go.snhusga.org": [2024], "ibank.privatbanka.sk": [13144], "scpd.stanford.edu": [15448], "kontaktinfo-ws-ver1.difi.no": [4452], "phantompeer.com": [12645], "subversions.gnu.org": [6337], "qianbao.qukuai.com": [13369], "medialne.etrend.sk": [5383], "www.publons.com": [21538], "dupr.ee": [2024], "cust.fr": [2024], "service-live-chat.kyivstar.ua": [9067], "xk3d.xkcd.com": [22652], "cpath.it": [2024], "giac.org": [6309], "player.cdnvideo.ru": [19536], "palmira.squat.net": [21955], "cmog.co": [2024], "www.iso.cuhk.edu.hk": [2704], "novel.udn.com": [17020], "breider.net": [2024], "kmblm.dk": [2024], "to.arvindsa.com": [2024], "quiz.bz": [2024], "ar.ch": [22061], "c.eblastengine.com": [4869], "l.fcjr.co": [2024], "playingwithtime.sbb.ch": [15756], "qip.ru": [13326], "www.popcash.net": [12952], "in.support.tomtom.com": [16615], "www.poormanmotorsports.com": [12947], "careers.moodys.com": [21020], "www.fime.me": [5565], "ms.3.boardgamearena.com": [2182], "www.capitalone.com": [2831], "urlencode.org": [22402], "*.getpocketbook.com": [12879], "book.homeaway.com": [20396], "zabbix.nso.ru": [21192], "www.ncric.org": [10927], "www.mariadb.org": [9996], "www.heurekashopping.cz": [7377], "thepirateproxy.website": [22174], "www.salixos.org": [21722], "stfrancisuniversity.worldcat.org": [18536], "mv.itmahal.com": [2024], "bgap.co": [2024], "www.garyjohnson2012.com": [6443], "pol.fronter.com": [20179], "b90.yahoo.co.jp": [18730], "baksman.com": [19307], "support.intand.com": [16004], "ianthehenry.com": [7894], "api.sofort.com": [15155], "vatten.lamna.nu": [2024], "go.sirac.us": [2024], "on.wisports.com": [2024], "s.outw.me": [2024], "contact.familysearch.org": [5636], "docs.salixos.org": [21722], "aisle.to": [2024], "dvs.ninja": [2024], "sports-images.vice.com": [17754], "www.newmatilda.com": [11329], "www.aviris.nkl.fi": [1475], "spendmanagement.barclaycard.co.uk": [1690], "dl.laser2000.de": [2024], "iiaa.it": [2024], "www2.tutti.ch": [22317], "anketa-mobile.pochtabank.ru": [12876], "letm.be": [2024], "letsjump.uk": [2024], "ad1.udn.com": [17020], "expolibre.april.org": [1171], "www.vocaroo.com": [17897], "vestacp.com": [17740], "manitu.de": [9965], "secur1ty.com": [14540], "pressroom.rolex.com": [14009], "voicestar.com": [9993], "www.just-eat.ie": [20671], "icnd.co": [2024], "habervision.com": [7114], "www.studentdoctor.net": [15603], "www.webonic.hu": [18229], "filecloud.io": [5784], "social.cerjo.ch": [2024], "www.edinburgh.gov.uk": [5074], "wordstat.yandex.by": [18739], "www.visual-paradigm.com": [17869], "inductionsolutions.com": [8079, 8080], "sites.krieger.jhu.edu": [16370], "*.wowanalytics.co.uk": [18009], "insta.savji.com": [2024], "edm.viu.tv": [22475], "stproxy.lsbu.ac.uk": [9111], "qzcom.es": [2024], "secure.istockphoto.com": [20595], "swv.tocco.ch": [16600], "bahn.de": [1640], "*.pirateparty.ch": [12314], "tmcnet.com": [16591], "a.blujamz.com": [2024], "s106.cnzz.com": [3328], "x40.us": [2024], "www.fco.gov.uk": [5548], "blog.cpy.re": [19710], "crashplan.com": [3760], "grouponworks.com": [6958], "data.birmingham.gov.uk": [19380], "windowsitpro.com": [18435], "fnet.us": [2024], "telestaff.bart.gov": [1708], "l.jayagonoy.xyz": [2024], "spblog.co.uk": [2024], "fb.longhand.hu": [2024], "forum.siedler25.org": [13889], "shrmp.it": [2024], "napa.la": [2024], "capitalcampaign.kcrw.com": [20699], "u.acehpo.com": [2024], "m.kamshe.com": [2024], "reports.boldchat.com": [2203], "shellmix.com": [14226], "connectdata.holyrood.com": [20393], "box.osu.edu": [11797], "www.mmoculture.com": [9781], "status.digitalocean.com": [4481], "libraries.lambeth.gov.uk": [20773], "lists.infradead.org": [8135], "cre8.li": [2024], "zopixa.info": [2024], "garfield.com": [6440], "blu.gl": [2024], "nayf.li": [2024], "thepiratebay.unblockerproxy.xyz": [21524], "www.architektur.uni-kl.de": [17256], "haber.yandex.com.tr": [18740], "www.unlocator.com": [22380], "music-cache.xbox.com": [18639], "www.rackspace.co.za": [13560], "theforeman.org": [22152], "abdullah-ocalan.com": [464], "tracking.m6r.eu": [9710], "adblockplus.org": [616], "quran.islamhouse.com": [8368], "www.jobsite.com": [8615], "tbr.mx": [2024], "messages.yale.edu": [18732], "amp.twimg.com": [16949], "scu.ba": [2024], "blog.local.ch": [9548], "blogs.nasa.gov": [10909], "update.ideco.ru": [20480], "dialogica.tk": [2024], "peertransfer.com": [12551], "prpwz.com": [2024], "seoz.eu": [2024], "hg.sv.gnu.org": [6337], "lists.posteo.de": [13016], "www.organicconsumers.org": [12138], "www.eforms.rbkc.gov.uk": [21595], "effectivemeasure.net": [5096], "backstage.renoise.com": [21627], "www.androidpolice.com": [1050], "weather.rambler.ru": [13600], "image2.ceneo.pl": [2945], "www.imagelayers.io": [20498], "skytal.es": [21855], "dcpower.eu": [4007], "trbl.link": [2024], "epx.me.uk": [2024], "mymail.preston.gov.uk": [21491], "aidma.104.com.tw": [18], "sorry.fnal.gov": [5741], "static.politico.com": [12919], "addtoyourlife.wales.nhs.uk": [10953], "www.springerzahnmedizin.de": [15381], "pdflabs.com": [12266], "l.mitcholson.nz": [2024], "familie.nordwest.aok.de": [376], "typtest.tivi.de": [22709], "buzzfed.com": [2489], "www.proxybay.la": [16306], "gnl.me": [2024], "ar15.com": [396], "mail.whitelisbon.com": [18348], "sc.lcsd.gov.hk": [7067], "h.tagsoku.jp": [2024], "virtual-server.org": [17832], "www.b3.manchester.gov.uk": [9954], "caltech-imss-website-v3-storage.s3.amazonaws.com": [2771], "mdtm.pl": [2024], "secure.hostcentric.com": [7517], "octopoos.com": [11752], "on.kmbc.com": [2024], "lloydsbank.com": [9537], "surveys.tnsglobal.com": [15906], "www.entrust.com": [5290], "s1-news.yamedia.tw": [18734], "kmza.co": [2024], "cdn.v2ex.co": [17549], "j.kir.by": [2024], "*.zendesk.com": [18923], "store.2k.com": [116], "st.yell.com": [22672], "www.monkeybrains.net": [10596], "dnsquery.org": [4056], "alxh.ws": [2024], "ly2.me": [2024], "witb.io": [2024], "*.french-country-cottages.co.uk": [18579], "www.arkos.io": [1222], "buyiphone1.apple.com": [1151], "bfy.red": [2024], "www.mpfund.uk": [21035], "hd3.me": [2024], "sapsports.com": [2024], "orens.es": [2024], "ads.9gag.com": [252], "wrc.link": [2024], "asset-e.soup.io": [15235], "cnjournal.biomedcentral.com": [1931], "*.guitarcenter.com": [6997], "m.money.mail.ru": [9891], "ericly.co.uk": [2024], "cdn.42floors.com": [181], "www.canon.ba": [2822], "blog.fir.im": [20106], "trv4.ml": [2024], "help.hover.com": [7573], "rungo.idnes.cz": [20483], "opensource.samsung.com": [14326], "stack.st": [2024], "cambridgeshire.gov.uk": [19496], "dearbyt.es": [2024], "www.fablabtacoma.com": [5604], "umbr3.cabinetoffice.gov.uk": [2716], "m2c.ru": [20899], "www.deutscher-radiopreis.de": [4400], "fs08.enter.ru": [20002], "*.dt07.net": [9752], "fmnews.co": [2024], "alumniconnections.com": [945], "w.catster.com": [2024], "pkg.hardenedbsd.org": [7196], "www.inlinkz.com": [8036], "www.curseforge.com": [3927], "7sta.rs": [2024], "clicks.citilink.ru": [19594], "www.tunnelbroker.com": [16905], "megafon.bfm.ru": [19365], "whispercast.amazon.com": [960], "www.clergyproject.org": [3236], "jeffs.info": [2024], "dashboard.resin.io": [13864], "enf.mx": [2024], "thinkupthemes.com": [22193], "trustedmessenger.com": [16859], "holts.io": [2024], "manage.serverpilot.io": [14669], "1431am.org": [45], "lawrd.co": [2024], "famvin.net.pl": [2024], "gctrl.co": [2024], "www.islamic-relief.me": [8377], "camt.me": [2024], "32.cbsm.at": [8782], "merton.greenparty.org.uk": [6908], "mopub.co": [2024], "mail.azet.sk": [1507], "blogs.mail.ru": [9891], "nixon.news": [2024], "sqan.it": [2024], "smfta.com": [14199], "www.coca-cola.ru": [19633], "klinika.zdravie.sk": [8947], "scontent-a.igcdn.com": [7953], "lewisham.gov.uk": [20821], "www.logmein.com": [9559], "go.klab.ca": [2024], "primility.us": [2024], "www.fir.im": [20106], "ddns2.play-asia.com": [12828], "bloo.vi": [2024], "www.esr.org": [4999], "cea.tips": [2024], "dorar.net": [19882], "wwq.ipleak.net": [20571], "sport.news.am": [21124], "www.easports.com": [4861], "desktop-client.fitbit.com": [5867], "resources.guild-hosting.net": [5265], "pacbsd.org": [12337], "cmswire.com": [2642], "lithium.com": [9481], "life.panorama.am": [21341], "n.pavkovic.com": [2024], "dl.sincx.x10.mx": [2024], "www.livecoding.tv": [9518], "hstor.org": [7591], "pxml.ly": [2024], "ww.dogster.com": [2024], "ismart.engineering.osu.edu": [11797], "kryo.se": [9029], "kar.ly": [2024], "mfcde.es": [2024], "forums.bakabt.me": [1644], "admin.ccbill.com": [2549], "www.davidwalsh.name": [19772], "ivi-f5-vcp.cdnvideo.ru": [19536], "static.iptorrents.com": [7802], "getbein.us": [2024], "interstices.info": [8292], "azt.allianz.com": [19151], "www.webdevstudios.com": [18157], "vladimir.beeline.ru": [1778], "www.active24.cat": [19059], "adguard.com": [19077], "blog.zenmate.com": [18917], "www.redding.com": [4981], "homesvc.co": [2024], "img09.rl0.ru": [13972], "j.mkg.nz": [2024], "racers.friday.ru": [20175], "eng.yammer.com": [18738], "www.achievementstats.com": [529], "abu.se.com": [2024], "go.a-gbr.de": [2024], "www.annonce.cz": [1074], "stlow.iii.com": [20491], "dellupdater.dell.com": [4317], "scrm.unicef.org": [17069], "darujps.biomedcentral.com": [1931], "devnull.link": [2024], "*.gpshopper.com": [6350], "shop.t-mobile.nl": [15836], "www.dodsshop.co.uk": [19863], "rcd.link": [2024], "www2.citymapper.com": [3195], "sport.nso.ru": [21192], "cdn.vni.la": [17648], "direc.ga": [2024], "i.cmpnet.com": [2640], "oshkosh.com": [12155], "blog.upyun.com": [17492], "aiocypr.us": [2024], "m.plan9.uk": [2024], "thcuis.in": [2024], "mkhl.me": [2024], "connections.unite.un.org": [17057], "dieecs.uniovi.es": [17282], "cloudfront.omgubuntu.co.uk": [11669], "rarma.us": [2024], "unity.mi.com": [10361], "ticket-it.courierpost.co.nz": [3714], "rjnews.is": [2024], "seetickets.com": [14609], "aadv.co": [2024], "www.questacon.edu.au": [13404], "jhnb.me": [2024], "retina.news.mail.ru": [9891], "williamsjm.us": [2024], "osm.one": [2024], "www.premiertaxfree.com": [13073], "nisd.co": [2024], "www.brsmblog.com": [1568], "www.webcitation.org": [18153], "techdirt.com": [16091], "proxer.me": [13220], "touf.co": [2024], "generations-futures.fr": [20223], "sebastian.mysql.cesky-hosting.cz": [19553], "at.renesakl.com": [2024], "esri.ie": [4957], "widgets.itunes.apple.com": [1151], "*.vidplay.net": [17789], "clairejd.me": [2024], "forums.netiq.com": [11234], "llor.ch": [2024], "pic.cnblogs.com": [19631], "mlhs.co": [2024], "rit.edu": [13493], "valuehost.ru": [17631], "cdn-dbapp.netdna-ssl.com": [4104], "djicdn.com": [4029], "siamogeek.com": [21820], "tennis.lemonde.fr": [9204], "meter.cern.ch": [2588], "my.thinkmoney.co.uk": [22192], "ov.kurier.at": [9055], "static.planetminecraft.com": [12807], "dms.ski": [2024], "www.sourcesoftdownload.com": [15251], "3cmls.co": [2024], "wwwp.sony.com.hk": [15212], "secure.heide-park.de": [7281], "k4gdw.us": [2024], "*.gamesports.net": [6402], "aspt.co": [2024], "wacha.lol": [2024], "nodejitsu.com": [11491], "japan.norton.com": [11545], "mxtoolbox.com": [9827], "nish.co": [2024], "mailpile.is": [9905], "devchannel.modern.ie": [10556], "cfs.canon.com": [2822], "www.vxlabs.com": [22514], "www.openpgpkey.info": [12072], "img2.linuxdeepin.com": [4287], "srt.cre8r.info": [2024], "www.aexp-static.com": [729], "tpb.unlockme.bid": [22259], "longform.org": [9604], "www.dcsec.uni-hannover.de": [17255], "grjnk.co": [2024], "thedailyedge.thejournal.ie": [16299], "twtp.gs": [2024], "consumidor.ftc.gov": [5710], "cdn.dwolla.com": [4809], "l.ria.cc": [2024], "pettyrevenge.co": [2024], "sbbank.dengisend.ru": [4344], "wrldd.at": [2024], "ntia.doc.gov": [17138], "romin.co.uk": [2024], "lizearle.co": [2024], "www.tellapart.com": [22122], "varnish-software.com": [17660], "sl.dcssk12.org": [2024], "mlv-cdn.com": [10814], "mentor.ieee.org": [7717], "stmx.info": [2024], "rayssaeluis.tk": [2024], "boxtr.co": [2024], "www.youtube.co.il": [18800], "hact.in": [2024], "consultation.staffordshire.gov.uk": [15435], "www.dbackpolice.com": [4226], "shop.coed.com": [3385], "www.itradecimb.com.my": [2618], "crm.caat.org.uk": [19490], "theaud.us": [2024], "qa-www.unicef.org": [17069], "goeric.ca": [2024], "statfa.me": [2024], "install.pi-hole.net": [21404], "www.rbt.asia": [13653], "vdp.mycdn.me": [10866], "static2.meetupstatic.com": [10231], "www.linksunten.indymedia.org": [8090], "elsteronline.de": [5180], "sot.admtyumen.ru": [19082], "api.adsymptotic.com": [19092], "www.mechbunny.com": [10149], "bgat.es": [2024], "www.classzone.com": [3218], "qbgam.in": [2024], "us.7digital.com": [232], "om.pro2om.net": [2024], "forum.allaboutcircuits.com": [19146], "www.mvg-mobil.de": [9820], "report.threatmetrix.com": [16467], "virtualspirits.com": [17839], "blog.sigfig.com": [14835], "www.eroshare.com": [5338], "cloudtools.access.iu.edu": [8069], "aker.io": [2024], "fpx.lc": [2024], "pt.malwarebytes.com": [9940], "www.fbm.htwk-leipzig.de": [7596], "stlpl.co": [2024], "docs.cs.cf.ac.uk": [2847], "trustifier.com": [16866], "kclark.co": [2024], "dusty.st": [2024], "thyroidresearchjournal.biomedcentral.com": [1931], "jonnyi.co.uk": [2024], "cusp.com": [15916], "briteobjects.com": [2355], "mitpressjournals.org": [9764], "img1.pixhost.org": [21426], "therealtalk.org": [16311], "kygop.co": [2024], "proxy.xelerance.com": [18644], "www.jsao.io": [8473], "blog.flirble.org": [16267], "www.citrix.com": [3180], "mysociety.co.uk": [10830], "forum.transmissionbt.com": [16751], "danthold.co": [2024], "rs.andrea.com": [2024], "hfho.me": [2024], "girlscouts.org": [6647], "cndg.tl": [2024], "vinothek.hofer.at": [357], "mattos.us": [2024], "afps1.info": [2024], "www.clickdelivery.gr": [3258], "img6.km.com": [20738], "qstack.com": [13334], "lexer.link": [2024], "gr8co.co": [2024], "mp.weixin.qq.com": [13329], "magnop.us": [2024], "j3.hitravel.xyz": [2024], "www.kampyle.com": [8793], "satka.startsmile.ru": [21980], "s7.gismeteo.md": [20251], "*.binefreund.de": [5917], "m.total.fark.com": [5653], "portal.erp.ohio-state.edu": [11798], "osteen.co": [2024], "msr.nso.ru": [21192], "mail.o2active.cz": [16141], "walderwyss.com": [18050], "www.dealerrater.com": [4247], "git1.net": [2024], "rogerevans.link": [2024], "hs.ias.edu": [7673], "changemakers.com": [3002], "jobsp.swisscom.com": [15761], "cdn.vedomosti.ru": [22433], "ikeepincloud.com": [7754], "oumedicine.staywellsolutionsonline.com": [12173], "www.sumo.com": [22029], "wedgi.es": [2024], "www.theses.fr": [22186], "sbarber.me": [2024], "sandiegostate.worldcat.org": [18536], "pau.by": [2024], "*.chcoc.gov": [19564], "basespace.illumina.com": [7971], "crew.cm": [2024], "ent.youku.com": [18804], "crew.co": [3790], "cdn.jariangibson.com": [8534], "jptips.co": [2024], "blog.pop.watch": [2024], "pdoc.home.svyaznoy.ru": [22053], "www.kubieziel.de": [9041], "pingyin.jd.com": [8434], "*.ria.ua": [13485], "policies.ncsu.edu": [11531], "elcomidista.elpais.com": [5126], "u-uralsk.europaplus.ru": [20034], "prod.lutte-ouvriere.org": [20894], "oppo.com": [12096], "tndc.co": [2024], "consultation.richmond.gov.uk": [21649], "internet.org": [8276], "security.georgetown.edu": [6531], "b2b.dlink.ru": [19853], "volgograd.startsmile.ru": [21980], "ebill2.virginmedia.com": [17822], "www.tradelab.fr": [16715], "gopride.us": [2024], "mlog.dianping.com": [19830], "www.assetinsightinc.com": [1306], "www.gmocloud.com": [6323], "minprirod.49gov.ru": [187], "resolv.org": [13474], "jpta.co": [2024], "games.web.de": [18146], "spws.co": [2024], "itools.link": [2024], "developers.braintreepayments.com": [2292], "www.izquierda-unida.es": [8418], "qis2.hs-karlsruhe.de": [7587], "znk.co": [2024], "complianceoffice.wustl.edu": [18089], "expose.ly": [2024], "bskt.eu": [2024], "www.komi-news.ru": [20744], "account.iweb.com": [7874], "*.piwik.prisma-it.com": [13124], "gigadesign.cz": [14651], "bradv.us": [2024], "mslpainsolu.com": [2024], "b2g.co": [2024], "enis.dict.cc": [4442], "allcoin.com": [875], "bitcoi.net": [2024], "www.onlineregister.com": [11904], "bdale.co": [2024], "m.mbank.pl": [9733], "aonc.co": [2024], "l.rgauss.com": [2024], "book.gohhh.com": [2024], "researchfestival.nih.gov": [11090], "alt-a.es": [2024], "mstrok.ru": [21039], "devitre.co": [2024], "www.mojeid.cz": [10572], "acunetix.com": [561], "lutece.fnal.gov": [5741], "cheerm.ag": [2024], "mail.hpcf.upr.edu": [17087], "nwsl.us": [2024], "studios.amazon.com": [960], "riseofthevegan.com": [13958], "vg247.com": [22454], "*.musiciansfriend.com": [10753], "luv.asn.au": [9123], "www.eforensicsmag.com": [4904], "cs.illinois.edu": [17346], "elstcp.at": [2024], "static.issuu.com": [8392], "*.r.worldssl.net": [2570], "cam.freetalklive.com": [20167], "khanty-mansiysk.beeline.ru": [1778], "vsbl.io": [2024], "www.bitx.co": [1977], "gimlet.media": [2024], "fxprime.com": [5600], "*.vaforvets.va.gov": [17100], "fitebac.co": [2024], "stage.nortoncdn.com": [11545], "developerbugs.linuxfoundation.org": [9427], "puur.li": [2024], "libgam.es": [2024], "fenj.eu": [2024], "cdn.zamimg.com": [18878], "s.arinco.org": [2024], "www.protectwise.com": [13210], "frservicing.capitalone.com": [2831], "snkrne.ws": [2024], "brnstr.co": [2024], "www.livestrong.com": [9510], "effectivemeasure.com": [5095], "ethical.tips": [2024], "help.axosoft.com": [1504], "travel.youku.com": [18804], "playbonds.link": [2024], "gnuheter.org": [6746], "avatars1.githubusercontent.com": [6661], "soubrette.decadent.org.uk": [4268], "banners.s1.citilink.ru": [19594], "www.accessnow.org": [503], "neo.to": [2024], "nimb.li": [2024], "yng.sh": [2024], "sbahn.mvv-muenchen.de": [9823], "e3.boxcdn.net": [2271], "aruru.link": [2024], "s.zvin.is": [2024], "coupaw.us": [2024], "pod.movim.eu": [10684], "blog.gov.uk": [6344], "openrce.org": [12003], "sslimgs.xkcd.com": [22652], "urbc.de": [2024], "prsh.ir": [2024], "www.hass.de": [7223], "tyt.my": [2024], "dev.irc.lc": [20575], "japan.usembassy.gov": [22406], "nieuwe.mobi": [2024], "render.groupon-content.net": [14624], "cdn.starfishsolutions.com": [21977], "downloads.dell.com": [4317], "a.masbr.com": [2024], "driving.co.uk": [19898], "teetimes.buzz": [2024], "s14.postimg.org": [13024], "napoleonmakeupacademy.com.au": [11074], "i2.walmartimages.com": [18060], "www.pro-xy.com": [8836], "streamtip.com": [15587], "*.uksrv.co.uk": [17210], "wpymedia.nhm.ac.uk": [10948], "go.websitealive.com": [18242], "qune.kuluttajavirasto.fi": [13427], "parkerpen.com": [12435], "www.technobase.fm": [22111], "anthonyland.com": [2024], "vpn-mobile.sportmaster.ru": [21944], "s49.cnzz.com": [3328], "oppp.ca": [2024], "tlmag.co": [2024], "ldpreload.com": [9200], "ekb.oldi.ru": [21240], "foodallergy.org": [5980], "old.lostfilm.tv": [20876], "link.v15.de": [2024], "mysql10.vas-hosting.cz": [22428], "a.mitmilch.at": [2024], "worstpills.org": [18557], "www.upaymobile.co.uk": [17468], "theamericanscholar.org": [16321], "static.geek.com": [6472], "www.contextly.com": [3617], "hsr.ch": [17326], "recurse.com": [13714], "profiles.myfreecams.com": [21065], "link.coziie.com": [2024], "zk.cm": [2024], "credit-card-asda-payments.creation.co.uk": [3771], "pf.pochtabank.ru": [12876], "www.primalblueprint.com": [13106], "doc.ispsystem.ru": [20591], "forex.finam.ru": [20099], "security.trustsign.com.br": [16854], "secby.me": [2024], "inoreader.com": [8158], "static.woopra.com": [18513], "anxiguan.jd.com": [8434], "utdallas.edu": [17373], "maloyaroslavets.startsmile.ru": [21980], "58play.tw": [2024], "envhis.oxfordjournals.org": [12222], "img.yousuu.com": [22694], "www.bn.by": [19416], "www.syllabusshare.com": [15777], "ntavda.admtyumen.ru": [19082], "mysociety.org": [10831], "mnaonline.org": [10375], "3gb.cc": [2024], "ply.bz": [2024], "libreswan.org": [9332], "www.almadinainstitute.org": [19156], "www.collateralmurder.com": [3419], "vl.io": [2024], "priberam.pt": [13094], "courses.edx.org": [5062], "ural.mvd.ru": [21055], "aescrypt.com": [19100], "h.alhamri.org": [2024], "nwea.us": [2024], "ffasellerportal.newegg.com": [11356], "peijian.jd.com": [8436], "wximg.gtimg.com": [6975], "india.findlegalforms.com": [5822], "esi-group.com": [4951], "s.tag9.de": [2024], "onforb.es": [2024], "developer.nytimes.com": [11041], "radiology.georgetown.edu": [6531], "www.swissinfo.ch": [21957], "wrts.ws": [2024], "kuak.in": [2024], "mdrg.co": [2024], "klintsy.startsmile.ru": [21980], "www.rachelbythebay.com": [13553], "8trx.com": [2024], "www.skyrimforge.com": [3927], "methemissus.co": [2024], "apk-dl.com": [19215], "anyang.jd.com": [8434], "*.davis.com": [4221], "voice.nature.org": [11141], "planet.ubuntuusers.de": [17184], "openmandriva.org": [11992], "s53.cnzz.com": [3328], "*.openxenterprise.com": [12031], "toph.at": [2024], "andrewmohawk.com": [19198], "s8.rr.itc.cn": [8401], "nolp.dhl.de": [4025], "consult.rbwm.gov.uk": [21597], "community.bt.com": [1578], "go.italki.com": [2024], "s.mrph.es": [2024], "usa.canon.com": [2822], "*.sinica.edu.tw": [14917], "www.triplebyte.com": [16822], "www.checkmyrota.com": [19569], "fordoh.co": [2024], "appsupport.commonapp.org": [3486], "orhnk.ml": [2024], "planningpublicaccess.havant.gov.uk": [20347], "www-cs-students.stanford.edu": [15448], "*.hbanet.org": [7030], "ra-lon.moodys.com": [21020], "www.comkort.com": [3471], "backpack.openbadges.org": [12034], "soroush.secproject.com": [14530], "luohe.1688.com": [51], "www.imerys.com": [7991], "people.zoho.com": [18984], "passmark.com": [12458, 12459], "nswk.ly": [2024], "psound.tk": [2024], "img.chefkoch-cdn.de": [3062], "contentreserve.com": [19673], "www.dyn.com": [4814], "www.girlsoutwestfreestuff.com": [6649], "savethechildren.org.uk": [14376, 14377], "mah.se": [9719], "www.migrolcard.ch": [10413], "*.mypcbackup.com": [8707], "field.ly": [2024], "gmgm.in": [2024], "*.europeanssl.eu": [5418], "21s.nl": [2024], "images.superherostuff.com": [15696], "www.blogger.com": [2122], "ynsa.diet": [2024], "www.fbe.hku.hk": [20387], "www.iz.hs-karlsruhe.de": [7587], "demo.tocco.ch": [16600], "*.bgpmon.net": [1540], "passwordbox-prod.mcafee.com": [10129], "login.paloaltonetworks.com": [12378], "bble.us": [2024], "reports.smartadserver.com": [15049], "www.astaro.com": [1321], "jcor.pw": [2024], "www.thefire.org": [16353], "openmaps.dwd.de": [19911], "l.qispi.fr": [2024], "per.gs": [2024], "www.greenhost.nl": [6913], "allde.co": [2024], "fashionfix.net-a-porter.com": [11210], "on.choisr.com": [2024], "logika.net": [9567], "bosuil.eu": [2024], "weborder.active24.com": [19061], "naturalmessage.com": [11137], "www.hungryhowies.com": [20446], "www.afew-store.com": [19103], "hypdls.de": [2024], "pluska.sk": [12870], "biomedical-engineering-online.biomedcentral.com": [1931], "datacenter.illinois.edu": [17346], "08.imgmini.eastday.com": [5010], "ncar.cc": [21094], "www.cuteness.com": [19744], "seacloud.zaehlwerk.net": [18872], "now.pearlsha.re": [2024], "qr.hitravel.xyz": [2024], "transifex.zoom.us": [22724], "postoffice.insure-systems.co.uk": [13002], "s8.wlresources.com": [22604], "jtwr.io": [2024], "master.yandex.com.tr": [18740], "forum13.hkgolden.com": [7058], "footaction.com": [5990], "public.honeynet.org": [20401], "streets.st": [2024], "www.home.kairo.at": [8782], "clientupdater.raptr.com": [13622], "data.sparkfun.com": [15291], "test.tocco.ch": [16600], "www.thinkupthemes.com": [22193], "www.jaast.net": [12380], "sfbeer.co": [2024], "getambassador.com": [6571], "youtube.co.ug": [18800], "cr.yp.to": [3745], "rise.osu.edu": [11797], "on.3egg.ch": [2024], "s.cnn.net": [2650], "ox.ac.uk": [17359], "yuba.douyu.com": [4712], "botic.ca": [2024], "m.karelia.pro": [20687], "partsa.nikkei.com": [11442], "mekz.me": [2024], "kogalym.startsmile.ru": [21980], "*.oneexchange.com": [11870], "static2.wonderwall.com": [18502], "osna.ps": [2024], "mobiusconsortium.org": [9784], "cdn2.hubspot.net": [7598], "mail.klyaznik.ru": [20737], "djtech.tools": [2024], "drserver.net": [4732], "www.hornyzemplin.korzar.sme.sk": [14198], "phieagl.es": [2024], "cayler.me": [2024], "trax.tech": [2024], "portrait3.sinaimg.cn": [14910], "shanefin.nyc": [2024], "wow-u.tv": [2024], "www.1stwarning.com": [85], "jasonsde.li": [2024], "changeinfo.ru": [19560], "dpm.gr": [2024], "westlandutrechtbank.nl": [18311], "go.textko.com": [2024], "pffoc.us": [2024], "heat.st": [2024], "str.tips": [2024], "*.fairwork.gov.au": [5622], "*.provantage.com": [13214], "www.trmm.net": [16831], "domaindiscount24.com": [19869], "osmfoundation.org": [11710], "www.localmedia.org": [9552], "www.onjive.com": [11849], "www.askleo.com": [1287], "libdig.co": [2024], "www.research.buffalo.edu": [17382], "*.artemis.net": [1255], "gunosy.com": [7005], "rcru.it": [2024], "*.highbeam.com": [2946], "mompop.co": [2024], "gila.deathmask.net": [4254], "devblog.more-onion.com": [10627], "rentex.com": [13836], "www.citl.illinois.edu": [17346], "ecap.tocco.ch": [16600], "sslapi.tv4play.se": [15947], "boaiguan.jd.com": [8434], "ww1510.smartadserver.com": [15049], "b.rickmahn.com": [2024], "www.schuelervz.net": [14429], "www.usessh001.com": [17509], "uofi.uic.edu": [17321], "gitlab.rom1504.fr": [21668], "support.rstudio.com": [13527], "www.toynews-online.biz": [22257], "on.dutzu.net": [2024], "mutuals.cabinetoffice.gov.uk": [2716], "ussurysk.startsmile.ru": [21980], "alexbank.dengisend.ru": [4344], "spxj.nl": [2024], "cptr.cancer.gov": [2819], "pollenwarndienst.at": [12929], "socchan.com": [2024], "vegasinc.com": [17678], "ba.yandex.com": [18742], "intra.kth.se": [8768], "p9.qhimg.com": [13347], "forum.vuejs.org": [17963], "www.foodallergy.org": [5980], "mslink.click": [2024], "openpetition.de": [12002], "*.cchtml.com": [2923], "myshaklee.com": [14715], "edcnts.com": [2024], "wayf.ukfederation.org.uk": [17038], "sony.com": [15215], "poppysports.com": [12963], "go.kronicle.co": [2024], "info.sourcefire.com": [15249], "*.nestle.com": [11207], "b.narino.gov.co": [2024], "fr.sogeti.com": [15167], "qingyuan.jd.com": [8434], "applij.oxfordjournals.org": [12222], "www.dandb.com": [4129], "syndication.exoclick.com": [5489], "ryankno.ws": [2024], "yui-s.yahooapis.com": [18729], "gsn.com": [6394], "frca.megabus.com": [10244], "*.alta.com": [923], "campus.leeds.ac.uk": [17403], "meaw.co": [2024], "next.ft.com": [5810], "portal.iitb.ac.in": [7748], "redeem.nvidia.com": [11022], "forc.mx": [2024], "hkux-survey.cetl.hku.hk": [20387], "www.library.georgetown.edu": [6531], "xnet-x.net": [18672], "sky.me": [2024], "www.canon.pt": [2822], "mail2008.sina.com.cn": [14904], "vates.fr": [17665], "vie.olut.ninja": [2024], "josh.freech.net": [20156], "howtospendit.ft.com": [5810], "go.choicerewards.ca": [2024], "www.efsyn.gr": [19967], "www.gettyimages.fr": [6604], "studentclub.msra.cn": [21038], "alertlogic.com": [838], "webmail.hpcf.upr.edu": [17087], "elfa.se": [5153], "dailytv.96.lt": [2024], "r24820153.sync.app.asana.com": [1265], "via.owlin.com": [2024], "go.apprope.com": [2024], "oxfordshire.gov.uk": [21327], "img.japhub.com": [8528], "geektutor.es": [2024], "hejobs.co": [2024], "www.tdconline.se": [15865], "app-us3.resrc.it": [13659], "encosia.com": [5225], "codeaurora.org": [3345], "on.afil.io": [2024], "ipv4.nebezi.cz": [11165], "morrisons-corporate.com": [10640], "hostingxtreme.com": [7539], "cas.umontpellier.fr": [22365], "s.tki.jp": [2024], "mssoc.uk": [2024], "cdn2.shoptiques.net": [14792], "123.com": [2024], "seca.anthem.com": [19206], "www.internationalman.com": [8261], "tkerb.me": [2024], "standishmanagement.com": [15446], "static.shopspring.com": [21810], "i.ideoworks.com": [2024], "www.hostcreo.com": [7509], "sbvimprover.com": [14142], "partner.just-eat.es": [20671], "system.netsuite.com": [11248], "ckte.co": [2024], "azm.ag": [2024], "prw.publons.com": [21538], "www.comtest.kairo.at": [8782], "cas.sfu.ca": [14708], "www.internetconsultatie.nl": [11172], "sdblog.ca": [2024], "mkdo.in": [2024], "ptrvl.ca": [2024], "rfcexpress.com": [13478], "www.praktikpladsen.dk": [21477], "wiki.lighttpd.net": [9362], "portal.settrade.com": [14693], "core.cloudfoundry.com": [3298], "ak.astei.com.mx": [2024], "versions.nodejitsu.com": [11491], "order.gmocloud.com": [6323], "*.data.fm": [4167], "vdgo.es": [2024], "vampire-dairy.friday.ru": [20175], "cl.gg": [2024], "mysciencework.com": [10826], "getintel.co": [2024], "ppmd.info": [2024], "lists.hackerspaces.org": [7138], "gettyimages.no": [6604], "faithinmotion.com.au": [5626], "gettyimages.nl": [6604], "tcap.tl": [2024], "*.dmca.com": [4035], "s3.postimage.org": [13024], "bthl.church": [2024], "s.fungidb.org": [2024], "mmlf.co": [2024], "bberg.me": [2024], "ltch.fr": [2024], "it.jhu.edu": [16370], "chi-10g-1-mirror.fastsoft.net": [5664], "s7.qhimg.com": [13347], "secure.autotrader.co.uk": [19280], "support.wordfence.com": [18524], "blnd.io": [2024], "www.resinfo.org": [13865], "pockets-service.tokenly.com": [22229], "discounts.nusextra.co.uk": [21206], "fxtm.co": [2024], "edocket.anpost.ie": [1028], "x.d-shen.xyz": [2024], "content.atomz.com": [1356], "hochwasser.baden-wuerttemberg.de": [19302], "vscrt.co": [2024], "secure.colorofchange.org": [3439], "portal.autotrader.co.uk": [19280], "kundservice.dn.se": [19856], "lnk.hornoxe.com": [2024], "auctions.godaddy.com": [6755], "adultdp.portsmouth.gov.uk": [21467], "davidpa.it": [2024], "blog.contextweb.com": [3618], "d.3.cn": [135], "journalism.georgetown.edu": [6531], "staging-api.challenge.gov": [2991], "imation.com": [7988], "ssl.xui.ptlogin2.qq.com": [13329], "thenewsfunnel.com": [11377], "www.tushino.com": [22315], "static.shanaproject.com": [14718], "m.zalando.fr": [18877], "www.imiclk.com": [8005], "irbt.bcn.magento.com": [9868], "prolik.adv.br": [2024], "web.uniovi.es": [17282], "fr.gamigo.com": [6426], "www.naacpimageawards.net": [10903], "pristina.usembassy.gov": [22406], "monta.ge": [2024], "go.netspire.nl": [2024], "bvan.me": [2024], "genz.in": [2024], "ifro.ga": [2024], "ads.nicovideo.jp": [11430], "www.updateframework.com": [17470], "xxx.yedxxx24hr.com": [18759], "post.spl.org": [2024], "www.oxdare.ox.ac.uk": [17359], "purl.ladepeche.fr": [9128], "www.nzbs.org": [21214], "ic.tlig.org": [2024], "rajiv.ph": [2024], "deliver-stage.tokenly.com": [22229], "onlinedoctor.superdrug.com": [15692], "www.homeoffice.gov.uk": [20399], "support.covad.com": [3722], "xtremo.tk": [2024], "www.screenshotmachine.com": [14472], "floridalobbyist.gov": [20122], "piclist.friendfinder.com": [6192], "uine.co": [2024], "stcndl.com": [2024], "r0bz.com": [2024], "mintrans59.permkrai.ru": [21390], "secure.gettyimages.fr": [6604], "sfq.design": [2024], "bdot.me": [2024], "secure.gettyimages.fi": [6604], "social.moodys.com": [21020], "advertising.yahoo.co.jp": [18730], "www.icbit.se": [7687], "jpepsy.oxfordjournals.org": [12222], "minbzk.nl": [11172], "ninjaworld.cdnvideo.ru": [19536], "radsec.org": [13568], "qrobe.it": [13361], "www.swisssign.com": [12996], "defro.st": [2024], "www.nytimes.com": [11040], "r.theafh.net": [2024], "tlc.worldcat.org": [18536], "pbne.ws": [2024], "www.fml.osu.edu": [11797], "transactionsexplorer.cabinetoffice.gov.uk": [2716], "mh.tl": [2024], "mava.co": [2024], "www.sogou.com": [15168], "media.vocativ.com": [17898], "cdn04.boxcdn.net": [2271], "epson.jd.com": [8436], "infogr.am": [8111], "www.jsdelivr.com": [20660], "www.greyhound.com": [6929], "gogotraining.com": [6789], "flixbus.nl": [5911], "robm.in": [2024], "insight.mynewsdesk.com": [10882], "www.oss.nl": [11172], "cdnjs.gtimg.com": [6975], "www.leedsbuildingsociety.co.uk": [9237], "cer.org.uk": [19550], "ngvpn13.nvidia.com": [11022], "www.unitech.net": [17266], "www.usecryptos.com": [17508], "board.sknt.ru": [21851], "code.breakfastquay.com": [2317], "crmag.co.uk": [2024], "vbg.de": [17554], "warframe.partner.uol.com.br": [17079], "www.adsimilis.com": [684], "account.microsoft.com": [10396], "tsinet.ca": [2024], "www.energieschweiz.ch": [22061], "gzip.static.woot.com": [18514], "checkout.courant.com": [19699], "*.cox.com": [3736], "schoorsteen.geenstijl.nl": [20221], "keepa.ch": [2024], "www.shop.cryptalloy.de": [3842], "send.microad.jp": [10377], "u2.hitravel.xyz": [2024], "aezoo.compute.dtu.dk": [16096], "tjo.me": [2024], "2palit.us": [2024], "www.volumio.org": [22495], "www.islamic-relief.org": [8377], "a.nursegrid.com": [2024], "www.yieldselect.com": [18772], "msgn.co": [2024], "itrust.org.cn": [8406], "go.kldp.in": [2024], "www.uni-muenchen.de": [9104], "ciclops.org": [2614], "partners.yandex.kz": [18743], "maddcalifornia.org": [9715], "feedback.rackspace.com": [13566], "app.clp.com.hk": [2636], "wndsr.co": [2024], "*.shef.ac.uk": [17422], "wiki.gpehosting.com": [6353], "a.musicsense.me": [2024], "outreach.ors.nih.gov": [11090], "employee.hospital.uic.edu": [17321], "www.celiac.org": [2941], "dotnot.cnblogs.com": [19631], "marsrovers.jpl.nasa.gov": [10909], "berdsk.startsmile.ru": [21980], "www.ndr.de": [11159], "www.sonderdesign.com": [15203], "swimb.ee": [2024], "mbs.re": [2024], "mobile.georgetown.edu": [6531], "interfax.kz": [20552], "www.theeroticreview.com": [16296], "www.bk.admin.ch": [22061], "www.bakom.admin.ch": [22061], "juristech.co": [2024], "board.perfect-privacy.com": [12590], "www.spot.im": [15364], "www.baomoi.com": [1686], "www.wiki.gnupg.org": [6744], "img04.sogoucdn.com": [15169], "gstatic.uptodown.net": [22397], "discuss.codecademy.com": [3359], "copublishers.live.cf.public.springer.com": [15380], "search.vodafone.co.nz": [17899], "vpn.unizar.es": [17441], "www.growery.org": [6962], "okturtles.org": [11811], "custdc.status.io": [21983], "*.morrisons.com": [10641], "shopwiki.com": [14782], "nursing.osu.edu": [11797], "ws.pagseguro.uol.com.br": [17079], "a.heppellit.com": [2024], "www.inspectlet.com": [8176], "volu.sn": [2024], "xml2rfc.tools.ietf.org": [7725], "*.odmp.org": [11788], "jrbp.stanford.edu": [15448], "i3.lbp.me": [20789], "compliancesigns.com": [3529], "estavisas.org": [4959], "dzle.me": [2024], "www.ewebscapes.com": [4983], "www.meltin.net": [10260], "www.shortoftheweek.com": [21813], "swr.oxfordjournals.org": [12222], "lenketil.no": [2024], "hotler.tech": [2024], "wtsrv.co": [2024], "pxl.st": [2024], "www.nextiva.com": [11408], "s.basg.nl": [2024], "on.vsedela.ru": [2024], "equid.la": [2024], "asdcdocs.democrats.org": [4338], "without.rocks": [2024], "freebiz.tips": [2024], "forum.openhatch.org": [11978], "img.auto.ru": [19276], "manhattan.ikea.com": [7962], "www.infolan.by": [20529], "cajadenu.tk": [2024], "slupub.slu.se": [14195], "pshapi.ro": [2024], "*.easydns.net": [5016], "forums.openitc.co.uk": [11983], "collecte2016.montpellier3m.fr": [10609], "lnch.co": [2024], "de-cs.dict.cc": [4442], "enfsr.es": [2024], "blog.pivotal.io": [12765], "k.buildnet.nl": [2024], "publicobject.com": [13261], "yournice.xyz": [2024], "*.shodan.io": [14773], "dgex.com": [4024], "i2.mifile.cn": [10411], "*.adbooth.net": [617], "three.libsyn.com": [9336], "thauv.in": [2024], "baby.jd.com": [8436], "prefs.connect.comcast.net": [3461], "ooyala.jp": [11935], "beta.1tv.ru": [88], "ebuz.bz": [2024], "images.unian.net": [22369], "shop.entropia.de": [20004], "www.jupiterartland.org": [8702], "123systems.net": [38], "imglf0.nosdn.127.net": [41], "a1.formsite.com": [20139], "spoti.fi": [2024], "on.aizzard.net": [2024], "bcktsbrnd.co": [2024], "scalability.org": [14387], "ambitieu.se": [2024], "www2.visitsealife.com": [22470], "syncproxy3.eu.debian.org": [4263], "www.plop.at": [21440], "csmm.osu.edu": [11797], "www.ttk.ru": [16881], "alumni.wustl.edu": [18089], "cic.fr": [1679], "abo.welt.de": [18290], "novokubansk.startsmile.ru": [21980], "help.tenmarks.com": [16178], "thethemefoundry.com": [16389], "dogg.be": [2024], "kfixer.com": [2024], "mythbusters.friday.ru": [20175], "forces-money.uk": [2024], "cryptonetwork.com": [3854], "maven.stanford.edu": [15448], "scripbe.io": [2024], "*.www.vispashop.com": [17867], "www.liberalamerica.org": [9311], "gkb.ch": [20683], "go.fontiran.com": [2024], "rchrismart.in": [2024], "goflam.es": [2024], "img10.warez-bb.org": [18072], "www.freemarketlite.cc": [6104], "s.iwsale.com": [2024], "evolmed.com": [5454], "almetevsk.startsmile.ru": [21980], "storage.siliconera.com": [14854], "sprk.ywb.com.au": [2024], "ruxconbreakpoint.com": [14106], "wecar.osu.edu": [11797], "ebill.spdbccc.com.cn": [21926], "rsc.dfs.un.org": [17057], "lists.mayfirst.org": [10113], "www.cse.ucsd.edu": [17012], "greenbillion.org": [6905], "instasync.com": [20544], "bikt.de": [1547], "somd.me": [2024], "www.wi.htwk-leipzig.de": [7596], "ss9.sinaimg.cn": [14910], "www.sberbank.ru": [14383], "kidp.tk": [2024], "gnu.org": [6337], "www.lau.hku.hk": [20387], "acom.azurecomcdn.net": [1510], "www.amsallegations.homeoffice.gov.uk": [20399], "analyticssl.clickpathmedia.com": [3251], "mindlink.rockstargames.com": [13997], "foli.co.vu": [2024], "qnetp.net": [13356], "www.civicaepay.co.uk": [3204], "bwth.me": [2024], "city.yandex.kz": [18743], "click.domru.ru": [2024], "kafanews.com": [20677], "kriso.*": [9025], "www.howtowriteabookasap.com": [6698], "l.darocker.xyz": [2024], "business.udemy.com": [17194], "images4.videolan.org": [17775], "www.loggn.de": [9565], "daman.id": [2024], "sumatrapdfreader.org": [22028], "css.riastatic.com": [13487], "ab9il.net": [282], "secure.politico.com": [12919], "wiki.glx-dock.org": [20270], "rss.idnes.cz": [20483], "go.ncpan.org": [2024], "studior.co": [2024], "shmnt.me": [2024], "adgoo.ru": [2024], "translation.rnd.feide.no": [5729], "static.insided.nl": [8038], "*.lexpress.fr": [9085], "capdesign.idg.se": [7709], "dyuc.mx": [2024], "nltf.am": [2024], "global.alipay.com": [864], "american-fiance.friday.ru": [20175], "itvsn.resultspage.com": [13875], "kuleuven.ezproxy.kuleuven.be": [8832], "review.int.qrator.net": [21562], "www.regex101.com": [13787], "alch.in": [2024], "www.freehookupsearch.com": [20162], "trtlrm.com": [2024], "pip2.fnal.gov": [5741], "wwwold.crossref.org": [3812], "www.freepress.net": [6123], "sjpl.org": [21844], "jobzonen.dk": [8618], "*.solidcactus.com": [15189], "www.aaronlindsay.com": [452], "dlrkn.ws": [2024], "www.warwickshire.police.uk": [18082], "tech.bz": [2024], "i1.go2yd.com": [20274], "kraut.cc": [2024], "upyun.com": [17492], "fondul.ac": [2024], "cdn.techdirt.com": [16091], "z3ro.in": [2024], "bl.vn-new.com": [2024], "ssonic.co": [2024], "tvtorrents.com": [16933], "instart3.flixster.com": [5913], "certigna.fr": [2978], "forums.hubic.com": [7601], "www.diasporabrazil.org": [4437], "spjour.nl": [2024], "lrwc.co": [2024], "www.changingclimate.osu.edu": [11797], "workspace.nottingham.ac.uk": [11567], "www.electionmentions.com": [19977], "art.tools.ietf.org": [7725], "le.ac.uk": [17404], "etk.pw": [2024], "www.greenleft.org.au": [6907], "autodiscover-s.outlook.com": [12185], "www.hertz.com.pt": [7358], "creditdisputeprogram.com": [3785], "deaconess.com": [4237], "mhsa.aihw.gov.au": [10282], "billing.eoreality.net": [4927], "*.rfparts.com": [13479], "support.proxpn.com": [21504], "bfac.to": [2024], "groupersocialclub.com": [6951], "afpbit.org": [2024], "www.image-maps.com": [7978], "lamf.click": [2024], "teespring.com": [16125], "www.blogs.zoho.com": [18984], "pbh.cc": [2024], "www.hertz.com.pl": [7357], "blog.times.am": [22210], "duisburg.fau.org": [5543], "www.weheartit.com": [18115], "fmaba.com": [5637], "r24616632.sync.app.asana.com": [1265], "google.co.*": [6822, 6824, 6829, 6831], "hollywoodoutlaws.com": [7466, 7467], "goodreads.com": [6813], "www.dshop.se": [4779], "secure.i.telegraph.co.uk": [16149], "howesee.it": [2024], "dkc3.digikey.com": [4457], "alibaba.aliloan.com": [19141], "personnels.u-bordeaux.fr": [16990], "www.vzp.cz": [17611], "pjga.me": [2024], "ident.familysearch.org": [5636], "dev.equityzen.com": [5325], "bigconcerts.co.za": [1886], "rv.cr": [2024], "bioenergylibrary.inl.gov": [20537], "inuv.it": [2024], "x.smejko.org": [2024], "jfs.io": [2024], "blog.aldi.us": [357], "s.arink.de": [2024], "a.shibeflix.win": [2024], "ho19.majordomo.ru": [9914], "www.telecom.sk": [16155], "sfll.ws": [2024], "sportradar.com": [21945], "www.atb-online.ru": [1335], "securesso.ieee.org": [7719], "trik.ro": [2024], "metadata.ftp-master.debian.org": [4262], "gesetzessammlungen.ag.ch": [22061], "j0n1.at": [2024], "hipson.com": [2024], "connect.hbo.com": [7031], "prlist.microadinc.com": [10380], "oktyabrskiy.beeline.ru": [1778], "at.mcnully.co": [2024], "app-agoda.com": [2024], "www.canon.it": [2822], "divpro.hdfcbank.com": [7249], "www.sparebank1.no": [21922], "whlove.taobao.com": [16015], "cornell.worldcat.org": [18536], "a4.ec-images.myspacecdn.com": [10889], "c.kinja-static.com": [8919], "magento.com": [9868], "managed.entrust.net": [5291], "nmrccktails.co": [2024], "infocon.te-st.ru": [22103], "www.upx69.com": [17490], "aliceinfo.cern.ch": [2587], "www.hackerspaces.nl": [7137], "globat.com": [6723], "mindfactory.de": [10448], "i.gsat.cl": [2024], "ecampus.bsm.upf.edu": [17471], "www.ucpi.org.uk": [17010], "usage.jenkins.io": [20638], "osrfoundation.org": [11712], "ewents.ya.ru": [18716], "cas.fsf.org": [5590], "r24626285.sync.app.asana.com": [1265], "printso.me": [2024], "hoasted.link": [2024], "pushkino.beeline.ru": [1778], "popdu.st": [2024], "mydigitallife.net": [21064], "www.tinypass.com": [16565], "gowalker.org": [6780], "okst.biz": [2024], "ichaits.com": [2024], "stash.sourcefabric.org": [15248], "eveger.de": [5423], "ryot.org": [13545], "globalwitness.org": [6699], "on.wellfra.me": [2024], "wei.sos.wa.gov": [14215], "everest3.beget.com": [19347], "secure-niketown.nike.com": [11440], "www.skyscanner.com.my": [15006], "pilot-coupons.paypal.com": [12500], "mlife.cmbchina.com": [2639], "czlo.in": [2024], "www.eset.com": [5347], "jac.oxfordjournals.org": [12222], "maps.bloomsky.com": [19411], "www-static-blogs.operacdn.com": [21286], "bgo.zugaina.org": [19019], "ask.barnet.gov.uk": [19317], "pt.trainings.350.org": [140], "syncproxy2.wna.debian.org": [4263], "alpha.linode.com": [9401], "*.tunespeak.com": [16901], "vladimir.rt.ru": [13529], "www.seznam.cz": [14705], "img02.final4ever.com": [5804], "yoctoproject.org": [18781], "publish.dvlabs.com": [19910], "stat.yandex.by": [18739], "m.up.com": [22384], "snapnames.com": [8880], "ww3.autoscout24.de": [1458], "cdn.psychologytoday.com": [13236], "fbxak.co": [2024], "cre.dp.sina.cn": [14903], "s.kenrick95.org": [2024], "www.geog.leeds.ac.uk": [9236], "www.neustar.biz": [11320], "basket.lemonde.fr": [9204], "rigov.firmstep.com": [20109], "mmtx.nlm.nih.gov": [11090], "www.jubii.dk": [8673], "outreach.un.org": [17057], "flag.ws": [2024], "www.diskcryptor.net": [4551], "www.wikimedia.org.il": [18388], "glittering.blue": [20265], "www.rbb-online.de": [13651], "et10.xhcdn.com": [18605], "volotea.com": [17920], "burci.ag": [2024], "nyi.net": [11031], "www.croydon.gov.uk": [19727], "dgb.io": [2024], "r.remino.net": [2024], "*.vook.com": [17931], "url.derbit.de": [2024], "memotr.ac": [2024], "gigaz.in": [2024], "smtp.schmidtcom.de": [14419], "i.newsuv.org": [2024], "k.ilius.net": [10228], "jogustine.uni-mainz.de": [17410], "www.halowaypoint.com": [7165], "dskvr.it": [2024], "s4.wsj.net": [18021], "www.gogoyoko.com": [6792], "websecurify.com": [18239], "distile.net": [2024], "schema.org": [21742], "clicky.com": [6593], "litthe.oxfordjournals.org": [12222], "joshjenk.in": [2024], "www.hsbc.co.uk": [20422], "ebureau.umontpellier.fr": [22365], "lilyskit.ch": [2024], "opnmsc.cc": [2024], "www.flexinvestments.net": [5892], "languagecareers.un.org": [17057], "www.alertbot.com": [836], "answers.play-asia.com": [12828], "www.canadajobs.g4s.com": [20195], "license.macromates.com": [9849], "jjay.cc": [2024], "*.sustatic.com": [15612], "cortellis.thomsonreuterslifesciences.com": [16458], "www.openclassrooms.com": [11964], "russiain.space": [21699], "n2s.in": [2024], "us.adform.net": [638], "m.pogoda.yandex.by": [18739], "moodsmith.com": [10611], "www.space.dtu.dk": [16096], "ruxcon.org.au": [14105], "news.sunybroome.edu": [2382], "widgit.com": [22586], "zkb.ch": [20683], "wender.co": [2024], "www.commscope.com": [3475], "crawler.feide.no": [5729], "supply.unicef.org": [17069], "ijlit.oxfordjournals.org": [12222], "s51.cnzz.com": [3328], "deals.neowin.net": [11198], "go.hafi.at": [2024], "casmussoc.eu": [2024], "etherpad.tools.ietf.org": [7725], "totalrecall.switchingon.com": [17271], "www.indiegala.com": [8077], "emb.astrobl.ru": [19264], "asset-0.java.net": [8538], "thehubpeople.com": [22155], "www.fotoforensics.com": [6051], "go.bivia.com": [2024], "www.veber.co.uk": [17675], "e.poko.lt": [2024], "slettmeg.no": [4206], "gobz.in": [2024], "remas.swisscom.com": [15761], "search.freefind.com": [6103], "*.okpay.com": [11666], "blog.cloudfoundry.com": [3298], "hdlab.stanford.edu": [15449], "liftshare.com": [9351], "dgt.im": [2024], "03.rkn.gov.ru": [13971], "objecta.hk01.com": [7056], "aircolt1.com": [2024], "nfs9.me": [2024], "transportation.georgetown.edu": [6531], "nxc.be": [2024], "spreadshirt.no": [15371], "kzk.io": [2024], "www.phenix.bnl.gov": [19418], "ecocampus.ens.fr": [4922], "wiki.ativismo.org.br": [1341], "edizb.tw": [2024], "djp3.me": [2024], "tunisia-sat.com": [16903], "mozillazine-fr.org": [21031], "*.squarespace.com": [15400], "search.auto.ru": [19276], "pdfserv.maximintegrated.com": [10108], "rbtv.to": [2024], "earwolf.com": [5000], "psdev.transform.nottingham.ac.uk": [11567], "blog.tox.chat": [16690], "checkin.mcdonalds.ru": [20941], "magek.co": [2024], "www.paris-luttes.info": [12430], "service.xara.com": [18632], "artofdr.ink": [2024], "mnmdl.osu.edu": [11797], "skrsi.rtvs.sk": [13536], "sol.no": [21894], "www.notedcode.com": [11563], "www.krasnodar.ru": [20754], "couchsurfing.com": [19696], "wizrd.biz": [2024], "desire2learn.com": [4377], "ru.3.boardgamearena.com": [2182], "bonus.vtb24.ru": [22512], "a2k.it": [2024], "images1.ivoox.com": [7870], "search.georgetown.edu": [6531], "help.slideshare.com": [15028], "www.hotmail.com": [7565], "cdn2.optimizely.com": [12107], "fb.youfeelm.com": [2024], "xescampus.usc.es": [17506], "shop.ticketpro.hu": [16498], "blog.archive.org": [8269], "*.metro.co.uk": [10347], "business.mirea.ru": [20993], "lewesdc.firmstep.com": [20109], "pyn.jp": [2024], "school.kafanews.com": [20677], "www.ensi.ch": [22061], "de.linak.de": [2024], "fs04.enter.ru": [20002], "indiemnl.info": [2024], "learningzone.hongkongairport.com": [20402], "tixm.at": [2024], "url.ltdav.com": [2024], "comodo.ssllabs.com": [14243], "rand.org": [13456], "login.wx.qq.com": [13329], "tjns.in": [2024], "prioritysubmit.com": [13122], "rt.gsspat.jp": [20315], "forums.site24x7.com": [14928], "tol.bz": [2024], "p10.pstatp.com": [16680], "wiki.t411.ch": [15847], "info.css-security.com": [3891], "tnw.co": [2024], "www.u-blox.com": [16993], "stat.telenet.ru": [22116], "public-online.hmrc.gov.uk": [7076], "ica.se": [7684], "hi.metasyn.pw": [2024], "umbel.com": [17227], "www.zammad.org": [18881], "jamesvillas.co.uk": [18579], "to.cluff.me": [2024], "minsport.astrobl.ru": [19264], "blackfoot.co.uk": [2071], "ev.sg": [2024], "robb.rocks": [2024], "adaptivecomputing.com": [612], "go.brighttalk.com": [2340], "cma.ms": [2024], "muslimadvocates.org": [10760], "dogroup.co": [2024], "www.unanimis.co.uk": [17232], "u.ocsb.pw": [2024], "www.superstart.se": [15700], "www.sysprovide.de": [22072], "nx.gt": [2024], "www.talktalk.co.uk": [15993], "www.tigr.net": [16518], "americorpsconnect.org": [11128], "mstf.ca": [2024], "leedsportal.leeds.ac.uk": [17403], "www.sportisimo.ro": [14223], "l.seebeetee.com": [2024], "manasource.org": [9953], "race2.me": [2024], "api.oubo.rakuten.co.jp": [13594], "stide.us": [2024], "newsdaily.com": [11368], "srfrsj.nl": [2024], "hddn.com": [11227], "virg.pw": [2024], "imrn.oxfordjournals.org": [12222], "music.yandex.by": [18739], "mcssl.com": [10140], "btsportbusiness.com": [1600], "www.xmlgold.eu": [18612], "synthetix.info": [15808], "webcijfers.nl": [18152], "u.sarhov.com": [2024], "dz2cdn1.dzone.com": [4090], "debug.siedler25.org": [13889], "kffn.co": [2024], "rating.startsmile.ru": [21980], "thepiratebay.vg": [22175], "*.bitsontherun.com": [2041], "app.cloud66.com": [19621], "robd.ml": [2024], "www.rutracker.net": [21702], "*.lovemoney.com": [9639], "sjtb-tuan.jd.com": [8436], "hosts-file.net": [20410], "uniforum.uio.no": [17414], "*.flowtab.com": [5928], "federation.amd.com": [970], "medicine.georgetown.edu": [6531], "www.telegram.wiki": [16147], "thegcloud.com": [16355], "payservice.alipay.com": [864], "cdn.duelinganalogs.com": [4789], "www.maybemaimed.com": [10116], "dgullett.us": [2024], "status.xsolla.com": [18685], "pic5.58cdn.com.cn": [213], "www.tunnelbroker.net": [16905], "switch.atdmt.com": [10393], "ieeexplore.ieee.org": [7718, 7719], "staminus.thecthulhu.com": [16403], "go.sqr.fr": [2024], "www.haveproof.com": [7234], "mk.unfpa.org": [17062], "m.newsland.com": [21127], "fullcoin.com": [6227], "ext.cursosvirtuales.uned.es": [17248], "fedtimes.ly": [2024], "services.comparethemarket.com": [3513], "secure.live.sipgate.de": [14924], "www.mayday.us": [10117], "www.plos.org": [13252], "booking.hkexpress.com": [20383], "osp.georgetown.edu": [6531], "glassdoor.co.uk": [20260], "www.rockzi.com": [13502], "www.kubuntu.org": [9042], "demo.phpdoc.org": [12684], "www.cees.uio.no": [17414], "pkok.lol": [2024], "write.bz": [2024], "mycanvas.com": [10795], "hardy.play-asia.com": [12828], "yo.europaplus.ru": [20034], "ty.powiedz.tk": [2024], "wpstartbox.com": [15471], "s.toksedo.com": [2024], "de.hosting.adjug.com": [580], "satirius.de": [2024], "www.vinyl-on-demand.com": [17812], "amrcnprks.co": [2024], "epitest-ext.slu.se": [14195], "www.hertz.com.tw": [7367], "nightly.mozfr.org": [21030], "dropship.amazon.fr": [19176], "uk.isidewith.com": [20466], "ispam.nl": [7836], "www.efast.dol.gov": [19867], "www.sysresccd.org": [22073], "www.hrc.org": [7609], "www.getkeepsafe.com": [6579], "bs.phncdn.com": [12661], "auction.jd.com": [8436], "w.cranear.com": [2024], "picard.musicbrainz.org": [10752], "codecov.io": [3365], "www.ox.ac.uk": [17359], "uspara.us": [2024], "intranet.law.ox.ac.uk": [17359], "en-bs.dict.cc": [4442], "55b558c7-site.sitejam.com": [21839], "booklink.me": [2214], "scripps.edu": [14479], "gpk-new.qiniudn.com": [6476], "hr.4.boardgamearena.com": [2182], "www.xmarks.com": [18671], "advertising.autotrader.co.uk": [19280], "www.madinatube.com": [20905], "mapstr.at": [2024], "drlnfo.co": [2024], "blog.chromium.org": [3124], "dbfh.us": [2024], "www.gethashing.com": [6563], "wikimedia.f4.htw-berlin.de": [7103], "nemid.nu": [11183], "portal2.threatmetrix.com": [16467], "s-rtb.send.microad.jp": [10377], "cdn.geekwire.com": [6478], "www.thaliproject.org": [16243], "*.coag.gov.au": [3703], "uat.communities.coverity.com": [3731], "defenceandsecurity.ca": [2526], "yiwu.1688.com": [51], "gitter.im": [6666], "childcare.milton-keynes.gov.uk": [10437], "wklandb.com": [2024], "*.faiumoni.de": [20071], "ne.wac.edgecastcdn.net": [5070], "www.t-shirtmojo.com": [15840], "rsq.oxfordjournals.org": [12222], "donationcoder.com": [4671], "pbthdmw.bt.motive.com": [21025], "demo.hoverwatch.com": [20414], "vms.drweb.com": [4776], "www.bistro.sk": [1507], "stories.colorofchange.org": [3439], "zeromq.org": [18944], "belgorod.psbank.ru": [13231], "www.dc801.org": [4003], "zumzi.com": [19023], "mail-pda.rambler.ru": [13600], "innovation.mit.edu": [9763], "klspayments.streamamg.com": [22006], "xumo.tv": [2024], "st.navalny.com": [11148], "retailnews.co": [2024], "neutrons.ornl.gov": [11730], "shb.myuni.sydney.edu.au": [22063], "www.aldergrovecu.ca": [833], "static.kent.ac.uk": [17402], "www.ecaforums.com": [5281], "s16.postimg.io": [13024], "weedtraqr.com": [18271], "download.neptuneos.com": [21105], "login.kyivstar.ua": [9067], "cisomb.dhs.gov": [4026], "bangong.jd.com": [8436], "espaceautogere.squat.net": [21955], "pik.my": [2024], "baycre.ws": [2024], "docs.studyjamscn.com": [22018], "food.list.co.uk": [16273], "tilecache1.kairo.at": [8782], "www.libsdl.org": [9305], "repsvcs-prod2.wustl.edu": [18089], "img2.t6k.co": [22080], "pica8.ub.uni-mainz.de": [17410], "pgapps.nottingham.ac.uk": [11567], "tjne.ws": [2024], "theleagueof.co": [2024], "ecocar.osu.edu": [11797], "portal.nottingham.ac.uk": [11567], "bmcinthealthhumrights.biomedcentral.com": [1931], "img0.qidian.com": [13349], "onsite.ztat.net": [18877], "cdn2.greenchef.com": [6899], "www.sitepoint.com": [14937], "ladyfootlocker.com": [9145], "www.atheists.org": [1338], "sgnds.io": [2024], "kdxs.co": [2024], "www.statistik.bayern.de": [15500], "goha.bs": [2024], "rts.mirea.ru": [20993], "jsro.co": [2024], "shopnm.co": [2024], "pstprod.peoplestrategy.com": [12581], "6xq.net": [226], "ad.api.biligame.net": [1903], "bkslfph.ml": [2024], "singyoursong.kairo.at": [8782], "www.opencyclemap.org": [11968], "economicpolicy.oxfordjournals.org": [12222], "parkp.me": [2024], "gro.seagate.com": [14499], "hg.quakenet.org": [13376], "vf.fo": [2024], "paris.l214.com": [20767], "www.continuousdelivery.com": [19674], "paike.youku.com": [18804], "soartex.cursecdn.com": [3927], "wiki.winehq.org": [18442], "partner.solarflare.com": [15183], "hsports.co": [2024], "futures.visaeurope.com": [17847], "*.blogs.uv.es": [17544], "assets.vg247.com": [22454], "framasphere.org": [6075], "acdn.lezhin.com": [20822], "totemapp.com": [16677], "m.zalando.co.uk": [18877], "p3.music.126.net": [40], "tokyo-9ball.com": [2024], "communityengagement.georgetown.edu": [6531], "pinews.co": [2024], "*.dolphin-emu.org": [4637], "bit.bfish.us": [2024], "mail.nruns.com": [11587], "m.uzairktk.me": [2024], "menslacrosse.clubs.bucknell.edu": [2406], "www.meerssen.nl": [11172], "smsng.news": [2024], "www.susyradio.com": [15732], "*.ut.edu": [17423], "renkum.nl": [11172], "embanner.univcomm.cornell.edu": [3676], "www.ayyo.ru": [19292], "www.ecommerce.com": [5048], "*.orcid.org": [11696], "vtcsec.ru": [17603], "csc-test1.cisco.com": [3165], "gaap.georgetown.edu": [6531], "udifo.com": [22346], "hack.ens.fr": [4922], "dmrg.co": [2024], "www.cornify.com": [3678], "*.hotpics-amateur.com": [7557], "evoluted.net": [5456], "lindas.pw": [2024], "cdn5.sure-assist.com": [15709], "www.trustedshops.*": [16858], "www.clicken.us": [19612], "pay.sina.com.cn": [14904], "s.gln.me": [2024], "bit9.com": [1952], "www6.atomicorp.com": [1355], "ypy.douban.com": [4701], "www.twoseasons.co.uk": [16969], "en-fi.dict.cc": [4442], "portal.cedexis.com": [2935], "pt.itao.com": [20598], "blog.publons.com": [21538], "rider.red": [2024], "lists.gnucash.org": [6743], "shop.gdeal.my": [2024], "kallithea-scm.org": [8787], "ctrlh.co": [2024], "linuxserver.io": [9449], "fs09.enter.ru": [20002], "auth.firebase.com": [5838], "l.vaks.me": [2024], "www.eurobsdcon.org": [5394], "ru.stripchat.com": [22014], "help.flavors.me": [4923], "*.planet-work.com": [12796], "fido.ly": [2024], "php-fusion.co.uk": [12279], "www.dtc.umn.edu": [17356], "trafficstars.com": [22267], "www.cs.sunysb.edu": [15548], "fboxx.net": [2024], "submissions.epetitions.direct.gov.uk": [4519], "billing.prgmr.com": [13093], "*.phoenix.edu": [12664], "gsmmap.org": [20314], "www.prometheusgroup.com": [13195], "pgp.mit.edu": [9763], "thecommunicationtrust.org.uk": [22147], "n2v.co": [2024], "apoya.re": [2024], "malina.hu": [4659], "on.nbc26.com": [2024], "sjday.co": [2024], "macmillandictionary.com": [9847], "pirateproxy.red": [21522], "muth.life": [2024], "www.wandisco.com": [17986], "b.meituan.com": [10248], "ango.in": [2024], "spacecraft.co.uk": [21917], "wl2s.co": [2024], "abbonati.tiscali.it": [16572], "www.whistleout.co.uk": [18344], "b10p.com": [2024], "www.marsocial.com": [9723], "i.reddituploads.com": [21619], "nt-ap.com": [2024], "moodle.vhs-karlsruhe.de": [22458], "inka.tips": [2024], "osetia.sledcom.ru": [21858], "join.mbank.pl": [9733], "xqt.mx": [2024], "www.david-dm.org": [19771], "x.joaa.se": [2024], "clk.ist": [2024], "tmac.ro": [2024], "home.meetme.com": [10224], "redsoftkw.mobi": [2024], "webmail.myphone.coop": [10865], "www.instantchat.io": [8185], "lacasadelaslenguas.uniovi.es": [17282], "petstore.com": [12632], "intranet.plymouth.ac.uk": [12873], "sweetd.me": [2024], "ivanovo.europaplus.ru": [20034], "awaps.yandex.by": [18739], "gruene.de": [898], "www.adigital.org": [644], "vci.im": [2024], "news.net.finam.ru": [20099], "www.piratenpartei.de": [12755], "2car.ga": [2024], "checkout.paddle.com": [12353], "tmda.kr": [2024], "gm.mmstat.com": [10515], "jpe.oxfordjournals.org": [12222], "tookapic.com": [16627], "www.transformationmadeeasy.com": [16739], "stumbleupon.com": [15612], "forums.groundspeak.com": [6947], "starkist.com": [15455], "t.khongming.my": [2024], "oceansw.im": [2024], "jmldirect.com": [8455], "pb.imhd.sk": [8004], "ilearn.un.org": [17057], "www.cryptonotestarter.org": [19731], "foroaccionistas.bankinter.com": [1674], "2.bp.blogspot.com": [2122], "element.yandex.com.ua": [18741], "www.urlquery.net": [22400], "palbin.com": [12369], "www.ercnsm.osu.edu": [11797], "tools.digitale-diathek.net": [4490], "omr.mtsbank.ru": [10720], "osm.intevation.de": [8293], "www.incoin.io": [8050], "rooof.com": [14018], "connectedu.net": [19668], "m.rasp.yandex.kz": [18743], "*.blogspot.co.ke": [2127], "hls.care": [2024], "www.trilightzone.org": [22288], "m2.ttxm.co.uk": [15934], "eur.bitcurex.com": [2011], "*.mozilla-russia.org": [10690], "1.downloader.disk.yandex.com": [18742], "socialprogressimperative.org": [15131], "l.egculture.de": [2024], "atom.io": [1351], "usenetter.nl": [22407], "*.mini-dweeb.org": [4784], "forum.sumtel.ru": [22031], "easywhois.com": [5023], "www.sophievipescort.com": [15223], "bitpay.com": [1967], "rdmkt.mx": [2024], "sung.to": [2024], "3md.co": [2024], "portuguese.alibaba.com": [857], "epic.org": [4934], "on.gotham.love": [2024], "nar.oxfordjournals.org": [12222], "www.vitalmend.com": [17875], "idee.li": [2024], "onepagerapp.com": [11894], "attracta.com": [1368], "wwe.ipleak.net": [20571], "dcos.io": [19780], "store.openfiler.com": [12065], "y-g.co": [2024], "host.theme.co": [16411], "nws.4krc.com.ar": [2024], "itx5-itx4.smartadserver.com": [15049], "10th.me": [2024], "ak1.abmr.net": [807], "3www.ipleak.net": [20571], "www.schwabplan.com": [14434], "dohane.ws": [2024], "universe.microad.co.jp": [10376], "essex.gov.uk": [5354], "www.piratepad.ca": [12739], "www.pandasoph.de": [21339], "sizzlejs.com": [14959], "chat.linuxlovers.at": [9446], "api.listenerapproved.com": [9465], "e2.chaucanh.net": [2024], "kikisso.com": [20717], "myste.ch": [2024], "vision.udn.com": [17020], "vespermarine.co.uk": [17738], "im1.kommersant.ru": [20746], "fntr.thomsonreuters.com": [16456], "shdw.me": [2024], "www.noisebridge.net": [11496], "astrakhan.psbank.ru": [13231], "www.tdcserviceonline.com": [15864], "radio.un.org": [17057], "digwebinterface.com": [19839], "read.qidian.com": [13349], "admtyumen.ru": [19082], "rfparts.com": [13479], "cfd-handel.biz": [2024], "mixi.co.jp": [10505], "www.webpg.org": [18175], "tl2.runicgam.es": [2024], "go.maumaus.nl": [2024], "my.megapath.com": [10240], "emr.gs": [2024], "i.obj.no": [2024], "www.coolutils.com": [3641], "ymb.nyc": [2024], "emr.gy": [2024], "dcvote.org": [4008], "tduk.co": [2024], "hswt.eu": [2024], "serving.portal.dmflex.com": [4042], "qiwi.beeline.kz": [19345], "app.quotemedia.com": [13430], "wage.104.com.tw": [18], "kicknews.*": [8893], "*.rootbsd.net": [14021], "www.dropboxteam.com": [4763], "mxmy.in": [2024], "vcint.com": [17757], "business.ngs.ru": [21134], "mstar101xp.cdnvideo.ru": [19536], "www.idrsolutions.com": [7713], "brli.co": [2024], "*.discountclick.com": [703], "m.tubez.me": [2024], "victorinox.com": [17761], "l.tarry.cat": [2024], "new.kyivstar.ua": [9067], "fye.osu.edu": [11797], "snapengage-3.wpengine.netdna-cdn.com": [15091], "thsf.us": [2024], "s.lgfoot.be": [2024], "www.adindex.de": [333], "engd.es": [2024], "energinet.dk": [5242], "dealerrater.com": [4247], "ww234.smartadserver.com": [15049], "www.tv-release.net": [16932], "frequentis.com": [6177], "blog.openlibrary.org": [12050], "hpwb.net": [2024], "resourcestore.plymouth.ac.uk": [12873], "i.dgro.me": [2024], "edu-image.nosdn.127.net": [41], "cdn.images.express.co.uk": [5507], "udc.msn.com": [9810], "2ndoath.com": [2024], "www.store4geeks.com": [15559], "rooar.ca": [2024], "www.jsbin.com": [20659], "bioxfel.org": [1935], "3.boardgamearena.com": [2182], "th365.us": [2024], "rss.itunes.apple.com": [1151], "www.bia.homeoffice.gov.uk": [20399], "scle.me": [2024], "simplytechnology.net": [14899], "stock.sohu.com": [15171], "custodianvaults.com.au": [3930], "making-cards.uk": [2024], "www.someserver.de": [15199], "hrvuit.com": [2024], "forgerock.co": [2024], "origin2-www.unicef.org": [17069], "lbpo.st": [2024], "www.raynersw.com": [13646], "blog.namei.org": [11063], "hwi.pw": [2024], "www.rg.ru": [21646], "video.idnes.cz": [20483], "commentsapi.cnbc.com": [2645], "ads.chartbeat.com": [3024], "objects.dreamhost.com": [4743], "2edu.eu": [2024], "bbes.us": [2024], "casprezeny.azet.sk": [1507], "on.askjess.com": [2024], "paymentssource.com": [12510], "*.plone.org": [12859], "on.mikian.com": [2024], "tdc.dk": [15862], "bad.as": [2024], "www.haskoin.com": [7222], "www.ovh.de": [12205], "www.ncsu.edu": [11531], "us1.rallydev.com": [13598], "www.realtech-vr.com": [13690], "www.president.osu.edu": [11797], "torcache.net": [16642], "ido-stage.justgive.org": [8709], "forums.vandyke.com": [17638], "www.hathitrust.org": [7230], "publications.usa.gov": [17110], "id.rpmfusion.org": [14056], "trade.1688.com": [51], "technologycareers.g4s.com": [20195], "official.duoshuo.com": [19906], "tracker.leadforensics.com": [9211], "connectawards.holyrood.com": [20393], "evartha.tv": [2024], "rt3.map.gtimg.com": [6975], "woman.infoseek.co.jp": [8130], "reservations.eliomotors.com": [5158], "www.ayyildiz.de": [1505], "ahmns.io": [2024], "into.gl": [2024], "gqsha.re": [2024], "blog.adafruit.com": [604], "beta.webapps.blackberry.com": [2068], "berkeleylug.com": [1816], "axa-winterthur.ch": [439], "cheshir.cf": [2024], "muse.huaban.com": [20441], "careers.dandb.com": [4129], "jsonresume.org": [8471], "rce-reporting.ligatus.com": [9356], "www.appseccalifornia.org": [1164], "solid-run.com": [15187], "submit.comixology.com": [3466], "mediavoice.com": [12904], "secure.trustico.com": [16865], "jckno.ws": [2024], "amediateka.ru": [19186], "tchr.ca": [2024], "corp.roblox.com": [13980], "creativegallery.axa.com": [438], "*.gutenberg.org": [7012], "blogs.securiteam.com": [14577], "thf.yt": [2024], "compliance.chef.io": [3061], "dobrovolnici.ludialudom.sk": [9661], "pentestmag.com": [12576], "www.cerit-sc.cz": [2584], "unternehmen.bvg.de": [1605], "www.ivsezaodnogo.ru": [20612], "itstac.tc": [2024], "silverum.cz": [14867], "140gms.info": [2024], "totalbarcode.com": [16670], "t-q.tv": [2024], "autodiscover.afisha.ru": [19107], "www.contributoria.com": [3622], "m.www.linksynergy.com": [9397], "trib.net": [2024], "student.plymouth.ac.uk": [12873], "idol.ly": [2024], "support.paradoxplaza.com": [12414], "go.sgray.me": [2024], "origin-ars.els-cdn.com": [5174], "checkout.rakuten.co.jp": [13593], "www.strana.ua": [22001], "free14.beget.com": [19347], "mchlcr.tv": [2024], "widget.whatsbroadcast.com": [18332], "cdn1-smallimg.phncdn.com": [12661], "f9.fi": [5539], "globalecology.stanford.edu": [15448], "webmail.wyenet.co.uk": [18576], "www.fortinet.com": [6033], "n.p.ly": [2024], "mail.opera.com": [12086], "traf.kr": [2024], "secure.dormproject.ch": [4681], "ipv6.nnmclub.to": [10982], "www.apel.asso.ulaval.ca": [17319], "dvrre.co": [2024], "app-de1.resrc.it": [13659], "byod.bz": [2024], "www.gamebillet.com": [6407], "*.blogspot.com.tr": [2127], "vc.tv": [2024], "lumesse.com": [9672], "www.ac.infn.it": [7771], "www.bebo.com": [1771], "omniture.chip.eu": [2610], "www.somevid.com": [15201], "on.dayton.com": [2024], "www.roccat.org": [13985], "b95.yahoo.co.jp": [18730], "dougthorpe.us": [2024], "stylig.ht": [2024], "www.nnetworks.co.jp": [11473], "*.cdn.gaiaonline.com": [6382], "milesto.ne": [2024], "jivesoftware.com": [8598], "ikea.com": [7962], "belorechensk.tpprf.ru": [22260], "kiev.unian.net": [22369], "beta.io": [2024], "people.freebsd.org": [6097], "ukr.net": [17208], "qlogo4.store.qq.com": [13329], "share.sandia.gov": [14341], "64px.com": [219], "bb.unizar.es": [17441], "moveit.sonymusic.com": [15217], "shippingwatch.dk": [14767], "ljg.li": [2024], "dev.avv.de": [1485], "rmc.press": [2024], "owncube.com": [12216], "casesic.rocks": [2024], "www.xt-commerce.co.uk": [18686], "wsws.org": [18023], "renovationexperts.com": [13829], "huoyan.etao.com": [4965], "fluidsbarrierscns.biomedcentral.com": [1931], "www.temando.com": [16175], "global.adform.net": [638], "vipnews.org.uk": [2024], "bitdeli.com": [2013], "to.tui.nl": [2024], "rttire.com": [13537], "cdn-2.tribepad.com": [22285], "soslapsiky.la": [2024], "2.t-dub.net": [2024], "www.zotac.com": [18855], "ockovanie.sme.sk": [14198], "utl.pt": [16098], "avasocial.xyz": [2024], "bnhealth.li": [2024], "www.honest.com": [7491], "counter.lightningmaps.org": [9361], "img03.static-nextag.com": [11402], "rebelsw.in": [2024], "tshaonline.org": [15927], "www.appnexus.com": [1139], "billing.auto.ru": [19276], "dashboard.cloudtrax.com": [3295], "i.raus.co": [2024], "www.privatelayer.com": [13146], "mrning.co": [2024], "economics.unian.net": [22369], "anmlst.co": [2024], "mail2.friday.ru": [20175], "images.derstandard.at": [19814], "nvrsk.europaplus.ru": [20034], "adams.to": [2024], "www.habpl.us": [7117], "download.cyanogenmod.org": [3947], "s420.co": [2024], "intranet.math.ust.hk": [22412], "moonsys.co": [2024], "00.imgmini.eastday.com": [5010], "cei.org": [3523], "m.modul-int.com": [2024], "mktmgl.co": [2024], "shwks.co": [2024], "www.filesharingshop.com": [20092], "monitor1.returnpath.net": [13891], "xl.vc": [2024], "ge.ch": [22061], "flare.ly": [2024], "www.all-inkl.*": [872], "account.xsolla.com": [18685], "logon.jstor.org": [8472], "www.gamespot.com": [6403], "s.flus.be": [2024], "wwww.unistream.ru": [17291], "morpho.hu": [10639], "www.site.ya.ru": [18716], "ion.postclickmarketing.com": [12993], "deals.iphones.ru": [20568], "eus.squat.net": [21955], "www.ppcoin.org": [12312], "consumers.unian.ua": [22369], "ggvis.rstudio.com": [13527], "yngs.info": [2024], "server.4mlinux.com": [199], "sent.li": [2024], "kleiner.sc": [2024], "dvd.netflix.com": [11269], "submission.nature.com": [11140], "mm.gs": [2024], "forum.owncloud.org": [12215], "*.instartlogic.com": [8191], "*.myheritage.de": [10875], "*.myheritage.dk": [10875], "app.rplus.biz": [2024], "eski.harita.yandex.com.tr": [18740], "aarnet.edu.au": [278], "hardwareluxx.ru": [20344], "txwine.us": [2024], "www.wikimedia.org.uk": [18388], "www.so.cl": [15111], "mdts.uk.com": [9745], "selfservice.wokingham.gov.uk": [22606], "u.pe.hu": [2024], "waindigo.org": [18044], "srs.myrusakov.ru": [21068], "startup.ubrr.ru": [17173], "getlantern.org": [6580], "digil.es": [2024], "wltr.me": [2024], "www.hq.nasa.gov": [10909], "ve.edit.usembassy.gov": [22406], "tehtri-security.com": [15872], "www.kentico.com": [8869], "bonadza.com": [2210], "squirrelmail.org": [15403], "secure.rating-widget.com": [13637], "www.bither.net": [19391], "x.tammifull.com": [2024], "konstfack.se": [8989], "engine.discojuice.org": [4530], "scalingbitcoin.org": [14390], "l.cpx.se": [2024], "cardsagainsthumanity.com": [2848], "yugatech.ph": [2024], "buest.de": [2024], "cyber.mirea.ru": [20993], "toq.qualcomm.com": [13378], "wellsfargo.com": [18289], "marum.de": [10046], "se.ndtex.eu": [2024], "m.airbnb.co.nz": [793], "securityresponse.symantec.com": [15780], "my.fnf.fm": [2024], "pldn.co": [2024], "stubconnect.stubhub.com": [15602], "vilistlane.ut.ee": [17148], "www.pgcon.org": [12274], "qolo.gy": [2024], "url.spjain.in": [2024], "www.ooshirts.com": [11934], "nintendo.com": [11457], "cn.redhat.com": [13735], "cumlou.de": [2024], "pix.isalo.org": [8360], "community.ubnt.com": [17164], "rqrd.me": [2024], "m.kinja-static.com": [8919], "www.m3server.com": [9707], "www.addictech.com": [628], "www.nodpi.org": [11474], "support.couchsurfing.com": [19696], "www.dyankov.eu": [4812], "advertserve.com": [707], "gallerypix.net": [2024], "portix.bitbucket.org": [1981], "de.chessbase.com": [3073], "www.nhsdirect.wales.nhs.uk": [10953], "essaysreasy.com": [5353], "tinyl.aw": [2024], "help-flint-mi.zerowater.com": [18945], "kicktraq.com": [8898], "photos.meetic.fr": [10226], "*.thinkgeek.com": [16434], "wmdry.com": [2024], "bitmovin.com": [2031], "bepp.es": [2024], "trustly.com": [16867], "www.catalysttg.com": [2907], "www.hsbc.com.vn": [20432], "www.4sevens.com": [201], "on.wgrz.com": [2024], "*.addisonlee.com": [631], "sutton.greenparty.org.uk": [6908], "alterapraxis.com": [927], "grv.io": [2024], "miar.tk": [2024], "tu-ilmenau.de": [15939], "im.qq.com": [13329], "www.feeblemind.tuxfamily.org": [22319], "devnet.kentico.com": [8869], "lijst.wirelessleiden.nl": [18458], "forums2.openfiler.com": [12065], "memberful.com": [10266], "courant.chictrib.netdna-cdn.com": [19698], "stage.ogilvy.co.uk": [21232], "nursing.hku.hk": [20387], "www.unodc.org": [17075], "www.vhs-karlsruhe.de": [22458], "mypressplus.com": [13080], "transitlab.osu.edu": [11797], "community.dynatrace.com": [4819], "dev.openwrt.org": [12025], "walk.sc": [2024], "www.fightforthefuture.org": [5770], "www.airbnb.co.nz": [793], "a.lensmark.kz": [2024], "www.vdi-wissensforum.de": [17562], "ecohenshc.usc.edu": [17366], "capstechops.usc.edu": [17366], "www.netmeister.org": [11284], "hizook.com": [7439], "slhost.com": [15156], "tturl.net": [2024], "petrovsk-zabaykalsky.startsmile.ru": [21980], "www.goeswhere.com": [6788], "ad.directrev.com": [4522], "www.citibank.com.au": [3173], "furaffinity.net": [6248], "rdo.rocks": [2024], "www.vespermarine.com": [17738], "radiotochka.kz": [21574], "gku.khabkrai.ru": [20709], "docs.hotjar.com": [20412], "www.coderbits.com": [3374], "podcast.leadpages.net": [9209], "8.vgc.no": [17569], "c-ch.co": [2024], "lpi.org": [9108], "leicestershire.gov.uk": [9254], "www.bokon.se": [2201], "portal.servercentral.net": [14666], "ebookauth.hkpl.gov.hk": [20385], "netmediaeurope.fr": [11238], "pphoto.play-asia.com": [12828], "secure.quotestream.com": [13431], "br.inter.net": [8228], "*.thejournalnews.com": [9575], "post.imageshack.us": [7983], "2spn.us": [2024], "s.maxm.org": [2024], "go.nbpa.com": [2024], "index.postscapes.com": [13029], "elec.ie": [2024], "libs.coremetrics.com": [3665], "s96.fr": [2024], "lksc.stanford.edu": [15447], "cwo.ng": [2024], "*.mibbit.com": [10367], "www.fastweb.com": [5678], "peh-med.biomedcentral.com": [1931], "lime-technology.com": [20841], "courses.caltech.edu": [2771], "mindhealthconnect.org.au": [10449], "help.gmobb.jp": [6322], "secure.cato.org": [2915], "url.dx.cu.cc": [2024], "img.gawkerassets.com": [6455], "git02.rostrud.ru": [21677], "ru.cloudflare.com": [3284], "side.cr": [14822], "theiabm.org": [7669], "czoy.in": [2024], "criticalthinking.org": [3802], "geldermalsen.nl": [11172], "kislovodsk.biglion.ru": [19375], "s33.postimg.io": [13024], "ot.obi.ch": [21222], "onlinebanking.tdbank.com": [15861], "wiki.backbox.org": [1621], "static-vox.cursecdn.com": [3927], "cdale.me": [2024], "on.ifthi.com": [2024], "s.keat.es": [2024], "r24616626.sync.app.asana.com": [1265], "s.twuertele.de": [2024], "huhu.at": [2024], "housingca.co": [2024], "www.sata-io.org": [14133], "60plus.vcd.org": [17560], "encrypt.to": [5226], "sv-se.facebook.com": [5609], "thsafshp.uk": [2024], "www.northdevontheatres.org.uk": [11535], "morrisons.com": [10641], "mc.rg.ru": [21646], "www.zataz.com": [18899], "forum.userstyles.org": [22410], "1day1shirt.com": [2024], "apan.net": [387], "link.zhihu.com": [18956], "alternativlos.org": [935], "motocenter.mx": [2024], "trt.photography": [2024], "smlb.in": [2024], "shul.ph": [2024], "osdv.org": [11704, 11705], "velleman.eu": [17685], "sport.tpprf.ru": [22260], "id.tokyo2020.jp": [22230], "support.tilera.com": [16523], "sm.ableammo.com": [2024], "devblog.warthunder.ru": [22530], "link.revi.xyz": [2024], "vvib.es": [2024], "andreas.flightradar24.com": [20119], "wifi.umontpellier.fr": [22365], "lumimart.ch": [3647], "iris.gsfc.nasa.gov": [10909], "www.hornbach.de": [7504], "passports.state.gov": [17146], "fast.wistia.com": [18467], "laa.io": [2024], "*.flashtalking.com": [5885], "btctrade.com": [2399], "b.labaq.com": [2024], "link.frame.is": [2024], "www.thepiratebay.cd": [22174], "nbcnews.to": [2024], "serverstack.com": [14670], "op-webtools.web.cern.ch": [2588], "planet.mate-desktop.org": [9727], "piratebay.ukbypass.top": [22259], "cdn2.ustream.tv": [17535], "chrisrhair.com": [2024], "conra.do": [2024], "smc.cybercon.com": [3958], "selfcare.netbynet.ru": [11257], "dgmc.in": [2024], "cl.norton.com": [11545], "oastyouth.co.uk": [2024], "fr.rbth.com": [21596], "www.english-heritageshop.org.uk": [5259], "developer.valvesoftware.com": [17636], "www.siggraph.org": [14838], "s30.pixxxels.org": [21427], "knm.tl": [2024], "gx3.me": [2024], "mys1s.net": [2024], "www.subscriberconcierge.com": [10020], "m.3dcenter.org": [159], "metr.lc": [2024], "www.wauland.de": [18104], "thewirel.es": [2024], "gorodets.startsmile.ru": [21980], "feeds.laughingsquid.com": [20786], "designer.bayphoto.com": [1732], "exploithub.com": [5499], "assets.ixwebhosting.com": [7880], "bond.houseoffraser.co.uk": [7570], "webmail5.hyd.gov.hk": [7063], "annual-report.thomsonreuters.com": [16456], "papers.xtremepapers.com": [18693], "icm.cherwell.gov.uk": [3067], "purechat.com": [13287], "sv.rentalserver.jp": [13835], "service.meltwaternews.com": [10261], "mital.me": [2024], "www.piano.kairo.at": [8782], "slrme.us": [2024], "w.archiliste.fr": [2024], "knoll.google.com": [6818], "www.develop-online.net": [19820], "adfs.geant.org": [6292], "gh.oxfordjournals.org": [12222], "madewit.love": [2024], "www.perfectmoney.com": [12595], "lowestrat.es": [2024], "whodoyou.trust": [18356], "ie.worldcat.org": [18536], "sade.com": [14282], "onenews.cz": [11680], "www.mysociety.org": [10831], "m.pb.imhd.sk": [8004], "cdn-st4.rtr-vesti.ru": [21689], "www.mispy.me": [10491], "*.astrill.com": [1325], "fls-eu.amazon.com": [963], "www.blackboard.cornell.edu": [3676], "tracking.verisign.co.nz": [17712], "forums.lanik.us": [9162], "market.sakh.com": [21719], "icolo.gy": [2024], "insecure.ws": [8164], "pay.bilibili.com": [1904], "minec.government-nnov.ru": [20295], "bkp.es": [2024], "*.ssl.qihucdn.com": [13351], "swblo.gs": [2024], "7gee.se": [2024], "montereybayaquarium.tumblr.com": [16897], "spotcam.us": [2024], "www.stopfasttrack.com": [15552], "f.qidian.com": [13349], "blog.ipvanish.com": [7803], "*.dawandastatic.com": [4094], "www.firstfloor.org": [5860], "www.interfacelift.com": [8244], "qualidadetur.tk": [2024], "mtln.us": [2024], "ifortuna.sk": [7949], "alumni.cam.ac.uk": [17332], "go.ieit.edu.vn": [2024], "www.uvek.admin.ch": [22061], "www.centennialbulb.org": [9523], "www.photographer.io": [12676], "gtn.astrobl.ru": [19264], "arkivet.dn.se": [19856], "ww264.smartadserver.com": [15049], "au.redhat.com": [13735], "www.jako-o.lu": [8506], "cozmedics.com.au": [2658], "regalii.com": [13786], "*.nudevista.com": [11608], "abc7.ws": [2024], "maxpr.in": [2024], "rhu.ms": [2024], "webanalytics.dfs.un.org": [17057], "store.earthlink.net": [4997], "mailinglist.bis.doc.gov": [17138], "godliteratury.ru": [20277], "discuss.gogs.io": [20280], "blog.amazon.in": [19177], "www.winswitch.org": [18431], "mh21.piware.de": [10043], "www.semor.cz": [14160], "s69.cnzz.com": [3328], "internet.bs": [8274], "l.acuerdalo.com": [2024], "api.geokretymap.org": [20234], "*.gourmetgiftbaskets.com": [6842], "link.fauche.net": [2024], "unigine.com": [17275], "heanet.ie": [7266], "static.campusjob.com": [2798], "t4ft.de": [5853], "b.jordanbest.co": [2024], "post-gazette.com": [12994], "heaith.info": [2024], "eu-u.openx.net": [12026], "cdn.mediaworks.nz": [10179], "shop.telegraph.co.uk": [16149], "www.hydrogenaud.io": [20455], "ivteleradio.ru": [20613], "akla.su": [2024], "vzaar.com": [17976], "e.issuu.com": [8392], "www.fotki.yandex.kz": [18743], "ae.utbm.fr": [22414], "nuss.fnal.gov": [5741], "upload.manyvids.com": [9976], "dashboard.ophan.co.uk": [12089], "phpserver5.anadolu.edu.tr": [1029], "www.askapatient.com": [1289], "www.iconical.com": [7921], "simg.uol.com.br": [17079], "69.mvd.ru": [21055], "lovefilm.*": [9633], "dionysus.krystal.co.uk": [9037], "blog.formstack.com": [6023], "dashboard.airmap.com": [790], "mvg-mobil.de": [9820], "sver.in": [2024], "m4c.im": [2024], "neuroalzheimerscommunity.nature.com": [11140], "310ei.com": [2024], "tinylnx.us": [2024], "logql.yahoo.co.jp": [18730], "staging.httpbin.org": [7594], "news.alibaba.com": [857], "metroethernetforum.com": [10349], "theblends.xyz": [2024], "cabot.co": [2024], "www.banan.cz": [1514], "magna.unizar.es": [17441], "parisschoolofeconomics.eu": [12432], "www.linksys.com": [9398], "passport.gigabyte.com": [6628], "rdsecure.org": [13572], "m.draugiem.lv": [4738], "www.berkman.harvard.edu": [7211], "www.picshareunit.com": [12699], "edn.re": [2024], "thelocal.com": [9549], "chloe.re": [3096], "learn.ag": [2024], "www.watchmedier.dk": [18093], "noc.livecomm.ru": [20855], "borna.host": [2024], "mychatagent.com": [8707], "tydmag.com": [2024], "aps.psychologicalscience.org": [13235], "trendin.com": [16792], "bnft.io": [2024], "www.webzilla.com": [18195], "www.creationkit.com": [19717], "coord.ca": [2024], "times.am": [22210], "salford.greenparty.org.uk": [6908], "cmp.onlinesbi.com": [11911], "www.ziedot.lv": [18958], "qzs.qq.com": [13329], "community.developer.visa.com": [17846], "cas-online-de.sky.de": [14990], "www.zaragoza.es": [22634], "gotoassist.com": [6768], "www.flixbus.cz": [5911], "thecy.cl": [2024], "okne.ws": [2024], "www.drwho.virtadpt.net": [4777], "papermart.com": [12409], "backupify.com": [1628], "www.cuhk.edu.hk": [2704], "www.go2arena.com": [6749], "global.acs.org": [974], "okshop.me": [2024], "vaes.vt.edu": [17825], "ppk.li": [2024], "300.astrobl.ru": [19264], "ds5.static.rtbf.be": [14063], "m.citilink.ru": [19594], "fbrtl.co": [2024], "coloman.nl": [3438], "itemname.com": [20602], "wmp.americas1stfreedom.org": [19190], "account.3playmedia.com": [165], "content.adfox.ru": [578], "lk.quacuabo.com": [2024], "unscrip.td": [2024], "us.madgex.com": [20904], "www.e621.net": [4859], "ctrn.io": [2024], "lists.srlabs.de": [14583], "iam.ziad.com": [2024], "trkclk.cf": [2024], "sec.ietf.org": [7725], "wfol.ly": [2024], "www.pollenwarndienst.at": [12929], "*.meetrics.net": [10230], "henvis.tdc.no": [15863], "centralreg.ru": [2962], "ripe72.ripe.net": [13953], "m.bb.imhd.sk": [8004], "admin.flixster.com": [5913], "www.timeweb.ru": [16532], "telebank.minbank.ru": [10442], "www.sysadmins.ru": [22068], "www.moviii.isy.liu.se": [9097], "linuxlovers.at": [9446], "cnscio.us": [2024], "p5.pstatp.com": [16680], "xchan.pw": [18641], "codie.cc": [2024], "compass.microad.jp": [10377], "sum.uio.no": [17414], "www.radiotochka.kz": [21574], "fdct.me": [2024], "kinox.ag": [20720], "magnitog.biglion.ru": [19375], "rsob.me": [2024], "me.nursefit.co": [2024], "ats.tumri.net": [16899], "nwsym.ph": [2024], "myors.us": [2024], "www.rfxn.com": [13913], "shop.oo-software.com": [11929], "www.dealfish.co.th": [4249], "i.digiguide.tv": [19835], "www.fluttertoday.com": [5934], "www.ala.org": [356], "samara.tpprf.ru": [22260], "www.stayintheknow.co.uk": [21985], "personal.unizar.es": [17441], "www.f5networks.com.br": [5536], "r.dsouza.org.in": [2024], "note.citilink.ru": [19594], "t.rasp.yandex.kz": [18743], "*.falconjet.com": [4159], "www.chat-place.org": [3034], "vjl.me": [2024], "pediatrics.georgetown.edu": [6531], "edg3.it": [2024], "boldinter.net": [2024], "www.online.cyberaces.org": [3949], "job.cx": [2024], "w4g.pw": [2024], "inspirehep.net": [8178], "www.bbc.com": [1522], "bookit.rmit.edu.au": [13496], "secure.golfdigest.com": [6808], "wiki.tizen.org": [16580], "www.tangerine.ca": [16008], "*.twibright.com": [16947], "www.fortum.com": [6036], "support.mcafeesecure.com": [10128], "instalacie.datart.sk": [3998], "www.trademarkia.com": [16717], "blog.qt.io": [13365], "boligejer.dk": [2205], "g7f.co": [2024], "www.muwazna.org": [10779], "in-it.co": [2024], "audiotent.co.uk": [2024], "webmail.pipni.cz": [12287], "no.3.boardgamearena.com": [2182], "bknot.com": [2024], "lk.contact-sys.com": [3607], "hij.review": [2024], "palette.slu.se": [14195], "tpac.in": [2024], "ssl.datamotion.com": [19767], "www.ispam.nl": [7836], "2url.me": [2024], "auth.local.ch": [9548], "melbourneaquarium.com.au": [10253], "chh411.com": [2024], "static.osdn.net": [21298], "hyipvietnam.net": [2024], "downloads.kachingle.com": [8779], "www.caovisa.hku.hk": [20387], "entertowin.at": [2024], "www.buergerbeteiligung.sachsen.de": [14279], "samsu.accu-weather.com": [520], "www.placehold.it": [12792], "www.geektime.com": [6477], "orphus.ru": [21293], "panzhou.jd.com": [8434], "audience.umbel.com": [17227], "contacts.ats.aq": [421], "www.properpet.com": [13202], "xera.xe.com": [18599], "cm.send.microadinc.com": [10380], "movie.to": [10675], "jet.maryno.net": [20928], "telecolumbus.de": [16138], "meta.metaebene.me": [10322], "ncdc.noaa.gov": [11121], "static5.twilio.com": [16948], "new.livejasmin.com": [9501], "menulog.com.au": [20964], "blog.asciinema.org": [1270], "sesi.sc": [2024], "dcdr.me": [2024], "tlscompare.org": [15891], "*.btwifi.com": [1602], "news.gnome.org": [6333], "marketing.1688.com": [51], "bitnami.com": [2032], "kbka.us": [2024], "www.wangyin.com": [18068], "starttls.info": [14251], "*.exportawards.gov.au": [1416], "url.pluym.com": [2024], "maarssen.nl": [11172], "felype.com.br": [2024], "pernasoppa.net": [2024], "liukanshan.zhihu.com": [18956], "slavyansk.europaplus.ru": [20034], "www.beirel.ru": [19349], "mb.mtsbank.ru": [10720], "jsclasses.net": [8671], "spop.fm": [2024], "argus.ch": [1215], "politicaladarchive.org": [12916], "rs.azet.sk": [1507], "planet.com": [12798], "sharath.vc": [2024], "sshine.tips": [2024], "koti.kapsi.fi": [8806], "www.skyscanner.co.th": [15006], "decisionbriefs.com": [4272], "spoonful.com": [15358], "lviv.o3.ua": [21219], "www.hypovereinsbank.de": [7654], "trpaslici.rtvs.sk": [13536], "coad.cc": [2024], "www.nursing.osu.edu": [11797], "dashboard.bloomsky.com": [19411], "reg.test.ft-static.com": [20182], "avonandsomerset.police.uk": [1479], "werstreamt.es": [18296], "www.antsdaq.com": [19209], "www.barclayscorporate.com": [1689], "moms.ly": [2024], "*.bronto.com": [2378], "www.findgravy.com": [5827], "skwdr.at": [2024], "i3.pixiv.net": [12778], "uxlnt.link": [2024], "content.courierpost.co.nz": [3714], "climatechangescience.ornl.gov": [11730], "eleccomm.ieee.org": [7719], "omc.overdrive.com": [12192], "live.1688.com": [51], "esfulletperdut.ourproject.org": [21314], "llk.co": [2024], "thegrommet.com": [16362], "disk.yandex.ua": [18747], "downloads9.mamp.info": [20916], "online.bezeqint.net": [1862], "fbapp.aclu.org": [312], "uber.com": [17169], "chico.vc": [2024], "wellcomelibrary.org": [22560], "almc.me": [2024], "digitalwpc.com": [4488], "pipni.cz": [12287], "www.wilsoncenter.org": [18412], "www.lumesse.com": [9672], "www.osicodesinc.com": [11709], "www.animenewsnetwork.com": [19201], "jp.xvideos.com": [22660], "www.promotedstories.com": [19855], "lmly.co": [2024], "holyrood.com": [20393], "feefo.com": [5727], "dtc.gplhost.com": [6349], "git38.rostrud.ru": [21677], "www.cryptothrift.com": [3858], "supercardkd.coop.ch": [3647], "ww.jorrito.nl": [2024], "sinialo.espiv.net": [20021], "euobserver.com": [4974], "ftp.ietf.org": [7725], "media.libreplanet.org": [9329], "taa.tools": [2024], "support.business.skyscanner.net": [15006], "vms.boldchat.com": [2203], "mijnusenet.nl": [20983], "c.oupl.es": [2024], "www.railsbox.io": [13590], "ayudica.unizar.es": [17441], "dhgate.com": [4027], "wiki.musl-libc.org": [10759], "corbettreport.com": [3661], "s23.postimg.org": [13024], "www.quikpayasp.com": [13416], "en.guvm.mvd.ru": [21055], "support.euractiv.com": [5388], "sohu.wrating.com": [18564], "blog.imageshack.com": [7983], "www.newsmaxhealth.com": [11384], "supagro.fr": [22036], "validator.yandex.com.tr": [18740], "cdn.cooldestinations.net": [3643], "f.tmzio.org": [2024], "launchpad.unicef.org.uk": [17068], "skift.com": [21849], "monkeybrains.net": [10596], "tmed.it": [2024], "gateway.threema.ch": [16473], "www.pubmed.gov": [13242], "avt.ar.com": [2024], "www.maps.yandex.by": [18739], "kurier.at": [9055], "www.roundcube.net": [14039], "blogmhm.com.br": [2024], "*.pss.gov.au": [13260], "www.wku.edu": [22602], "estonia.usembassy.gov": [22406], "jackandjillraffle.com": [8491], "rigidtrack.co": [2024], "www.germantv.net": [6540], "fb.mini.at": [2024], "www.xchange.cc": [22645], "uk.nso.ru": [21192], "liftconference.com": [9350], "www.unitymedia.de": [17311], "ernieb.al": [2024], "tinyvs.in": [2024], "uat.rsaconference.com": [13514], "search.zoho.com": [18984], "partnersignup.srsplus.com": [14235], "info.dynatrace.com": [4819], "italy.usembassy.gov": [22406], "cdn.comcast.com": [3462], "api.smartrecruiters.com": [15056], "pnkpl.us": [2024], "vexor.io": [22453], "on-myajc.com": [2024], "zmrx.co": [2024], "media-mamba.cursecdn.com": [3927], "*.signon.org": [10669], "www.sub.uni-goettingen.de": [17253], "ocamson.eu": [2024], "crm.axelname.ru": [1498], "superstrands.com": [15683], "r24820223.sync.app.asana.com": [1265], "*.megaglest.org": [10239], "socpol.co": [2024], "irns.de": [2024], "www.jud2.ct.gov": [2695], "tchmrk.co": [2024], "*.tvbrowser.org": [15948], "saratov.sledcom.ru": [21858], "nwnd.co": [2024], "mtclb.in": [2024], "rbdigital.com": [21593], "amana.us": [2024], "links.uv.es": [17544], "bugs.kubuntu.org": [9042], "*.avg.com": [431], "isc-events.com": [8260], "www.pheedcontent.com": [12647], "i.luke.in": [2024], "docs.particle.io": [12451], "webdev.co": [2024], "bcj.to": [2024], "sli-systems.resultspage.com": [13875], "assets-secure.guim.co.uk": [6996], "azzy.ch": [2024], "rwne.ws": [2024], "lee.dinglisch.net": [19841], "beautytv.co": [2024], "login.moniker.com": [8880], "cbpr.link": [2024], "go.iorz.cc": [2024], "login2.capitalone.com": [2831], "id.oxforddictionaries.com": [12223], "downloads.wired.com": [18454], "www.fromorbit.com": [6201], "manning.com": [20921], "serrad.as": [2024], "ig.gy": [2024], "infoeuri.criosweb.ro": [3796], "the42.ie": [22140], "img.lemde.fr": [9259], "pardus.org.tr": [12429], "plrx.gs": [2024], "rmj.me": [2024], "webprospector.de": [18177], "ru.chaturbate.com": [3040], "escan.com": [17845], "www.las.portsmouth.gov.uk": [21467], "ww946.smartadserver.com": [15049], "postdirekt.de": [19816], "www.norge.no": [11521], "www.profintel.ru": [21507], "lg.ht": [2024], "www.cspinet.org": [2689], "tags.bkrtx.com": [19399], "altai.te-st.ru": [22103], "zhucunren.jd.com": [8434], "bintray.com": [1928], "utva.link": [2024], "intranet.cardiff.ac.uk": [2847], "briggs-riley.com": [2334], "ulsk.te-st.ru": [22103], "animenfo.com": [1069], "primal.ly": [2024], "txmnth.ly": [2024], "realzips.net": [2024], "consult.northyorks.gov.uk": [21161], "maykop.rt.ru": [13529], "apps.cheshirewestandchester.gov.uk": [19574], "lists.opensource.org": [12055], "wolfram.com": [18486], "eimem.uniovi.es": [17282], "www.normation.com": [11527], "git.leloop.org": [9206], "nzz-libro.ch": [21216], "www.maelsoucaze.com": [9861], "osn.io": [2024], "*.brightkidsnyc.com": [2344], "open.unionpay.com": [17281], "www.team-share.net": [16061], "guangyuan.jd.com": [8434], "cyberleninka.ru": [3963], "forestsangha.org": [6007], "extranet.auchan.ru": [1370], "*.totalchoicehosting.com": [16672], "www.knowledge.hsbc.co.uk": [20422], "syit.us": [2024], "gscsa.co": [2024], "chechnya.beeline.ru": [1778], "noviny.dennikn.sk": [4349], "doublefine.com": [4704], "store.winzip.com": [18424], "o9.hitravel.xyz": [2024], "ronis.ninja": [2024], "maeve.is": [2024], "num.ist": [2024], "tyrolit.social": [2024], "sols.uow.edu.au": [17434], "mspartner.microsoft.com": [10396], "fr.ree.me": [2024], "kraft.ca": [2024], "www.gihyo.jp": [6642], "cdnetworks.com.sg": [2573], "s.frev.jp": [2024], "go.bioshack.org": [2024], "cnbcafri.ca": [2024], "zapunited.com": [18892], "*.sourcemaking.com": [15243], "tieba.baidu.com": [1641], "shackl.es": [2024], "filmpa.net": [2024], "i.gather.london": [2024], "r.khanhhoa79.vn": [2024], "go.neto.me": [2024], "www.skyscanner.ca": [15006], "api.segment.io": [14621], "hansard.parliament.uk": [21349], "jasonl.co": [2024], "berkeley.edu": [17329], "newspics.us.to": [2024], "blade24.ual.es": [17162], "jhweb.dev.jhu.edu": [16370], "s.lv73.net": [2024], "site-cdn4.ghosteryenterprise.com": [6614], "*.img-dpreview.com": [4483], "austausch.bbk.bund.de": [19335], "*.mobilenations.com": [10538], "m.voa-islam.com": [17583], "secwiki.org": [14523], "www.ectc-online.org": [5011], "deacs.info": [2024], "plrm.in": [2024], "www.rogerfederershop.com": [14002], "easy-share.com": [3804], "torrentdownloads.cc": [22244], "pharmgkb.org": [21395], "ddos.arbornetworks.com": [1185], "*.dartmouth.edu": [4151], "armored.auto.ru": [19276], "catlinseaviewsurvey.com": [2914], "mycrains.crainsnewyork.com": [3755], "affiliate.techstats.net": [16117], "www.qconsf.com": [13324], "www.angus.gov.uk": [1062], "livedemo.xsolla.com": [18685], "novosibobl.tpprf.ru": [22260], "stec-t08.xhcdn.com": [18605], "www.appdynamics.com": [1134], "www.snelserver.com": [15097], "www.shmoocon.org": [14770], "ytchannelembed.com": [18714], "jngl.ph": [2024], "akb.ch": [20683], "*.hertz-carsales.com": [7371], "aphyr.com": [1122], "j-url.com": [2024], "homes.ngs.ru": [21134], "coah.co": [2024], "txstdz.it": [2024], "i.g0.eu": [2024], "initlab.org": [8147], "cgar.us": [2024], "multica.re": [2024], "xenon.stanford.edu": [15448], "infomaniak.ch": [8114], "mail.com": [9890], "www.codeanywhere.com": [19635], "www.international.uni-mainz.de": [17410], "londonmag.co": [2024], "hg.libsdl.org": [9305], "bugs.vhffs.org": [22457], "04.rkn.gov.ru": [13971], "bugs.eclipse.org": [5040], "bewell.stanford.edu": [15448], "*.afx.ms": [760], "berniewo.ng": [2024], "app.engagesciences.com": [5249], "a.delta2.co.uk": [2024], "education.admtyumen.ru": [19082], "d500.epimg.net": [5126], "dev.mozilla.jp": [10694], "*.energylivenews.com": [5246], "yaliapp.irex.org": [20579], "s.borcel.com": [2024], "*.lovelens.ch": [9638], "br.creativecommons.org": [3774], "gtps.nl": [2024], "www.ilovebluesea.com": [7891], "www.aegeanair.com": [6896], "wptips.at": [2024], "bizchannel.cimbthai.com": [2620], "picostocks.com": [12696], "emploi.cnrs.fr": [6174], "webap.is": [2024], "ekt.rt.ru": [13529], "kazan.biglion.ru": [19375], "selfserve.n-kesteven.gov.uk": [10897], "bit.corq.co": [2024], "singapore.webconsole.linode.com": [9401], "akkonferens.slu.se": [14195], "outg.ro": [2024], "status.intercom.io": [8241], "www.openload.co": [12070], "account.golem.de": [6804], "resources.convio.com": [3631], "laz.me": [2024], "kinko.me": [8923], "citywerkz.com": [3200], "akn.cl": [2024], "njr80.ml": [2024], "roadiculo.us": [2024], "objc.tv": [2024], "scms.enter.ru": [20002], "coinurl.com": [3399], "www.west-lindsey.gov.uk": [18299], "osec.pl": [11945], "mckry.co": [2024], "jira.icony.com": [7923], "ipfs.tokenly.com": [22229], "static.58.com": [212], "manager.mijndomeinreseller.nl": [20917], "scholar.google.com.*": [6821], "pensionsonline.ucc.ie": [17006], "researchblogging.org": [13852], "de-eo.dict.cc": [4442], "go.spsdc.org": [2024], "livechat.sumtel.ru": [22031], "www.electronicintifada.net": [5144], "www.pekwm.org": [12534], "go.pxa.ca": [2024], "committedgiving.uk.net": [19651], "reproductive-health-journal.biomedcentral.com": [1931], "education.web.cern.ch": [2588], "loan.beeline.kz": [19345], "incoming.debian.org": [4263], "search.secondlife.com": [14527], "usharbors.smartadserver.com": [15049], "prks.org": [2024], "*.hypem.com": [7648], "tmdrn.com": [2024], "news.walmart.com": [18059], "7-wave.com": [2024], "stuartcoat.es": [2024], "ad-api.cnblogs.com": [19631], "www.shop.heise.de": [7288], "airo.ws": [2024], "www.kvack.org": [9060], "christie.events": [2024], "managebeta.smartadserver.com": [15049], "campustechnology.com": [19499], "rompe.la": [2024], "static.wipmania.com": [18003], "bishkek.usembassy.gov": [22406], "source.pixiv.net": [12778], "l-cs.me": [2024], "*.wsjsafehouse.com": [11361], "js.static.shropshire.gov.uk": [21819], "webdam.com": [18156], "webpayments.rutland.gov.uk": [21701], "tnsglobal.com": [15906], "chiromt.biomedcentral.com": [1931], "crlplnt.me": [2024], "sites.williams.edu": [18408], "az3.tv": [2024], "corner.squareup.com": [15396], "nuclearinnovationworkshop.inl.gov": [20537], "furf.it": [2024], "media.rbl.ms": [13652], "www.trainingjournal.com": [22268], "uml.worldcat.org": [18536], "juliel.me": [2024], "imensa.de": [7990], "mechse.illinois.edu": [17346], "firstgiving.com": [5852], "nichs.us": [2024], "feeds.pinboard.in": [12710], "motorhomes.autotrader.co.uk": [19279], "autistica.org.uk": [19275], "wac.mn": [2024], "cirque.me": [2024], "9ar.de": [2024], "weekplan.net": [18272], "www.speedcoin.org": [15327], "8.*.wdfiles.com": [18387], "sbts.worldcat.org": [18536], "donate.oxfam.org.uk": [12221], "recordedfuture.com": [13712], "blog.zamzar.com": [18882], "moodle.bury.gov.uk": [19475], "merchants.nextag.com": [11402], "ads.aiha.org": [19117], "dairasaboia.tk": [2024], "www.imodules.com": [7766], "kluk.pw": [2024], "dcb17.me": [2024], "www.mexicoleaks.mx": [10354], "www.nublue.co.uk": [11599], "www.pixcept.de": [12770], "lincolnshire.spydus.co.uk": [21952], "neo-interactive.hu": [11186], "www.documentfreedom.org": [4617], "www.myworldofwork.co.uk": [21078], "cloud66.com": [19621], "js.islamictech.com": [8380], "disabilityresources.uic.edu": [17321], "www.petrogen.com": [12630], "loopu.in": [2024], "u301.me": [2024], "bdd.khabkrai.ru": [20709], "online.severgazbank.ru": [14697], "clubic.cc": [2024], "cufp.org": [2703], "shr.feature.fm": [2024], "piphone.lqdn.fr": [9126], "www.inxpo.com": [8328], "www.openstat.com": [21281], "cvirtual.ual.es": [17162], "deals.slashdot.org": [15012], "rotaryview.com": [14029], "eshop.martinus.cz": [10044], "engg.hku.hk": [20387], "thisgif.com": [2024], "www.openhost.net.nz": [12067], "myhome.1688.com": [51], "lehka.ovh": [2024], "mssql.active24.cz": [19062], "dl.djicdn.com": [4029], "changemg.info": [2024], "education.gov.uk": [19957], "identity.linuxfoundation.org": [9427], "static1.gac.edu": [6279], "linkurl.nut.cc": [2024], "mng.showapi.com": [21815], "mosobl.auto.ru": [19276], "www.gdargaud.net": [6995], "whirlpool.net.au": [18339], "ww50.smartadserver.com": [15049], "allizom.org": [904], "pobierak.jeja.pl": [8563], "6.url.cn": [22399], "myuofmhealth.org": [17463], "convio.berkeley.edu": [17329], "agbr.me": [2024], "jayso.nz": [2024], "emakeup.love": [2024], "blog.junglee.com": [8696], "bzone.link": [2024], "orenburg.auto.ru": [19276], "on.edmhub.com": [2024], "listas.ulpgc.es": [17213], "ibusiness.shacombank.com.hk": [14719], "*.drinkaware.co.uk": [4756], "www.consumerswin.com": [3606], "pricerunner.com": [13100], "app.thestorefront.com": [16385], "rightnow.com": [13939], "svenskaspel.se": [15737], "choice.microsoft.com": [10396], "fujitsu-webmart.com": [6223], "nakh.li": [2024], "a2.lscdn.net": [9115], "master3.tocco.ch": [16600], "r-news.co": [2024], "tine.pw": [2024], "espanol.victoriassecret.com": [17759], "ecs.osu.edu": [11797], "en.osdn.net": [21298], "bmsh.co": [2024], "url.ps3blog.net": [2024], "www.ssusa.org": [21965], "fmv.se": [5569], "www.elegantthemes.com": [5146], "blog.jquery.com": [8463], "pgbrandsampler.ca": [13168], "www.americorpsconnect.org": [11128], "www.tcfmailvault.info": [15857], "stats.sportbox.ru": [21942], "risiinfo.com": [13492], "mrkt.us": [2024], "tortoyo.tk": [2024], "www.introversion.co.uk": [8297], "greenhouse.io": [6914], "partnerportal.sophos.com": [15224], "go.jobs.com.pk": [2024], "perm.rt.ru": [13529], "s1.islamhouse.com": [8368], "i.radiotemp.com": [2024], "s6.qhimg.com": [13347], "uk.zopa.com": [19007], "greenpeace-magazin.de": [6918], "site.yandex.by": [18739], "musicbox.netcologne.de": [11226], "bugs.pcbsd.org": [12247], "s.uniqlo.com": [2024], "lists.freebsoft.org": [6100], "ppm.pps.eosdis.nasa.gov": [10909], "*.snagajob.com": [15088], "m.cff.ch": [15756], "www.neqos.nhs.uk": [10953], "www.northwest.greenparty.org.uk": [6908], "s.7fukujin.org": [2024], "optin.to": [2024], "ppmo.it": [2024], "pinpoint.microsoft.com": [10396], "argusleader.com": [1216], "ysa.li": [2024], "cabinet.schelkovo-net.ru": [21741], "mdws.envisionfinancial.ca": [5298], "dpkn.me": [2024], "steaknshake.com": [15513], "content-baseball.gunosy.com": [7005], "mosu.mvd.ru": [21055], "berezniki.europaplus.ru": [20034], "gynecomastia.org": [7023], "wt.cherry.de": [3066], "mx.april.org": [1171], "*.applepartsstore.com": [1153], "franken.de": [6081], "vvv.ipleak.net": [20571], "static.hungryhouse.co.uk": [7625], "forensicinstitute.nl": [6005], "www.userstory.ru": [22409], "mailhost.ut.ee": [17148], "www.malcovery.com": [9932], "m.kyle.gs": [2024], "www.cloudcontrol.com": [3282], "cherniahiv.o3.ua": [21219], "www.nypf.org.uk": [21212], "piwik.disconnect.me": [4531], "www.thebureauinvestigates.com": [16330], "indystar.com": [8072], "okom.it": [2024], "controller.osu.edu": [11797], "iteu.megabus.com": [10244], "p.sfx.ms": [14709], "onehealthtalk.org": [11886], "emarketing.thestar.com": [16646], "images.womenshealth.de": [18500], "upmcwp.us": [2024], "nfcu.me": [2024], "clar.in": [2024], "die-linke.de": [4443], "h-ssl.ligatus.com": [9356], "mail-archive.com": [9886], "www.alumni.buffalo.edu": [17382], "varnish-cache.org": [17659], "www.webcijfers.nl": [18152], "www.medialinx-academy.de": [10186], "thestar.com": [16646], "opdaterdinpc.tdc.dk": [15862], "www.wokingham.gov.uk": [22606], "mail.yandex.com": [18742], "vintageurl.com": [2024], "hari.is": [2024], "zenmate.lt": [18917], "jama.md": [2024], "zenmate.lv": [18917], "www.youtube.ee": [18800], "flatlinesecurity.com": [5887], "zenmate.li": [18917], "productsandservices.bt.com": [1578], "*.csmres.co.uk": [8302], "www.snl.com": [14206], "zions.me": [2024], "rol.st": [2024], "subterraneangames.com": [15632], "www.southlanarkshire.gov.uk": [15258], "blogs.mondediplo.net": [10579], "webinar.yanao.ru": [22665], "literotica.com": [9479], "ondarossa.info": [11863], "ekonomika.etrend.sk": [5383], "vhalo.cc": [2024], "saucytime.com": [14366], "account.login.aol.com": [380], "engr.washington.edu": [17376], "mims.com": [9756], "m.telphin.ru": [16170], "sciencenews.org": [14441], "api.alpha.linode.com": [9401], "diasporafoundation.org": [4438], "lnk.cthue.com": [2024], "medias.myskreen.com": [10829], "evdrive.evdriveinfo.com": [4976], "www.habrahabr.ru": [7119], "www.greenchef.com": [6899], "www.bluemanticketing.com": [2155], "actn.it": [2024], "www.zapchain.com": [18887], "domedia.info": [2024], "tomsk.startsmile.ru": [21980], "member-registration.neighbourhoodalert.co.uk": [21100], "ontogenesis.knowledgeblog.org": [8961], "freedominc.nl": [6147], "flyertalk.com": [5942], "l.forex13.com": [2024], "rdppr.it": [2024], "vocms0153.cern.ch": [2587], "www.ligatus.com": [9356], "r.9jang.net": [2024], "tcfmailvault.info": [15857], "ics.imensa.de": [7990], "beta.zr.ru": [22725], "www.brmlab.cz": [2362], "eu.vitalizei.me": [2024], "cdn.tofour.net": [16596], "widgets-live-chat.kyivstar.ua": [9067], "blogs.sophos.com": [15224], "pixelh8.co.uk": [12774], "share.gerste.in": [2024], "www.logentries.com": [9563], "*.ning.com": [11455], "nvstest.tocco.ch": [16600], "pass.1688.com": [51], "www.oyunhizmetleri.com": [12225], "www.richmondteaparty.com": [13932], "*.secure.xtenit.com": [18691], "www.heise-gruppe.de": [7288], "sheet.zoho.com": [18984], "idearcmedia.com": [15679], "musicofnow.co": [2024], "custom.cvent.com": [3941], "www.taiga.io": [15976], "www.apm.com": [391], "krystal.info": [20758], "l.66099.co.uk": [2024], "t.uwsc.org": [2024], "developers.over-blog.com": [12188], "prld.it": [2024], "*.hartware.de": [7208], "mi21.co": [2024], "*.bravemedia.org": [2310], "forecast.io": [6001], "nrb.uy": [2024], "gcts.us": [2024], "community.linuxmint.com": [20852], "file.ws.stu.126.net": [40], "agr.hm": [2024], "www.megamozg.ru": [20957], "gom.io": [2024], "my.dogechain.info": [4625], "*.blogspot.ru": [2127], "qops.co": [2024], "www.bestchange.ru": [19356], "maapatl.net": [2024], "comd.gs": [2024], "mt.cx": [2024], "btccpag.es": [2024], "arch.sv.gnu.org": [6337], "quote.cnbc.com": [2645], "community.mega.com": [10234], "yagi-antennas.com": [18722], "mra.ski": [2024], "gentoo.wheel.sk": [18333], "karrier.kh.hu": [8739], "haskoin.com": [7222], "download.avm.de": [1478], "aerote.ch": [2024], "freebsdnews.com": [6098], "go.freddy.mx": [2024], "mobilecore.com": [10534], "torguard.net": [16639], "go.elms.pro": [2024], "itj1.top": [2024], "node.video.qq.com": [13329], "icm.aexp-static.com": [729], "zlr.tw": [2024], "cdn.coverstand.com": [3724], "wvw.ipleak.net": [20571], "mybitly.uk.to": [2024], "rabota.yandex.by": [18739], "aclj.org": [983], "twt.tv": [2024], "tarsnap.com": [16029], "patronbase.co.uk": [21357], "links.nduf.org": [2024], "www.grandhaventribune.com": [6875], "wiki.zmanda.com": [18980], "netid.usc.edu": [17366], "webmail.ionitcom.ru": [20562], "clindiabetesendo.biomedcentral.com": [1931], "www.silvawoodflooring.co.uk": [14861], "bartgrp.uk": [2024], "nodesecurity.io": [11490], "babsn.co": [2024], "netstat.cern.ch": [2588], "go.son4r.com": [2024], "ghowl.in": [2024], "go.jcf.gov.jm": [2024], "data.alpenverein.de": [19159], "hccpjournal.biomedcentral.com": [1931], "autodiscover.sedoholding.com": [14607], "*.memset.com": [10274], "mentoringcentral.net": [10285], "newgam.es": [2024], "pub.lmmp.nasa.gov": [10909], "hart.ac": [2024], "www.visa.com": [17846], "elotouchexpress.com": [5169], "www.nimbledeals.com": [11447], "reevoo.com": [13772], "manage.amoad.com": [371], "trndl.in": [2024], "r24617865.sync.app.asana.com": [1265], "noodleremover.news": [11506], "occ.upf.edu": [17471], "www.newrepublic.com": [11350], "declaredthoughtfulness.co": [19798], "*.cengagebrain.com": [2946], "help.campaignmonitor.com": [2794], "www.xlove.com": [22653], "on.thec-l.com": [2024], "espoarchive.nasa.gov": [10909], "sdb.admin.uw.edu": [17156], "scopeblog.stanford.edu": [15448], "videogateway.tv": [3508], "idms.financialpost.com": [5809], "s-mb.us": [2024], "ifightsurveillance.net": [7886], "rusradio.ru": [21697], "honors.uw.edu": [17156], "blog.documentfoundation.org": [16295], "irantun.es": [2024], "help.publish2.me": [21536], "cp.unistream.ru": [17291], "www.t-analytics.com": [22075], "www.karma.mg": [8813], "muni.cz": [10741], "www.zendition.net": [18924], "apn.fyi": [2024], "media.x5.ru": [18590], "details.com": [4388], "r24823442.sync.app.asana.com": [1265], "t1.pixhost.org": [21426], "dotnettools-support.jetbrains.com": [8573], "wuphysicians.wustl.edu": [18089], "grooveshark.com": [6945], "rarbg.com": [21584], "pogliad.ua": [21449], "arts.stanford.edu": [15448], "in.1688.com": [51], "wp.outbrain.com": [12182], "docs.ftl.events": [2024], "images.cmbinsight.hsbc.com": [20423], "nci.edu.rosminzdrav.ru": [21674], "*.ashlands.net": [10597], "spanish.guatemala.usembassy.gov": [22406], "git20.rostrud.ru": [21677], "catgr.am": [2024], "www.primesecoenergie.com": [13110], "www.adultdp.portsmouth.gov.uk": [21467], "feedxl.co": [2024], "www.elkosmas.gr": [19981], "panopto.con.ohio-state.edu": [11798], "astrill.com": [1325], "www.youtube.co.ae": [18800], "urbanvilla.nl": [17496], "soundviz.com": [15228], "bmcnutr.biomedcentral.com": [1931], "www.source.uillinois.edu": [17034], "itsoft.ru": [20607], "mylootcr8.com": [2024], "babymed.com": [1617], "bbte.am": [2024], "taoeffect.com": [16013], "a.stat.xiaomi.com": [18662], "preach.li": [2024], "wb.kvbaden.ch": [2024], "lists.oasis-open.org": [11644], "interfacelift.com": [8244], "people.live.com": [9495], "lh6.google.com.*": [6821], "bit.icoff.ee": [2024], "www.hackover.de": [7144], "monash.edu": [10577], "app.snyk.io": [21885], "mts.co": [2024], "dft.gov.uk": [19825], "www.muenster.fau.org": [5543], "komro.net": [8982], "direct.money.pl": [10585], "ctscentr.al": [2024], "slskin.co": [2024], "r131.us": [2024], "suqianguan.jd.com": [8434], "ac.104.com.tw": [18], "www.mangaupdates.com": [9958], "www.staffordshire.gov.uk": [15435], "canvsp.com": [2024], "open.exmail.qq.com": [13327], "whale.delfi.lv": [19800], "kinfolk.com": [8911], "vgndu.de": [2024], "api2.whatsbroadcast.com": [18332], "www.urlencode.org": [22402], "dmca.adf.ly": [577], "bitballoon.com": [1953], "wthms.co": [2024], "dl.twrp.me": [15956], "www.hillingdon.gov.uk": [7413], "ginac.de": [6619], "www.roofclimb.com.au": [21669], "*.mytextgraphics.com": [10835], "www.myapnic.net": [1280], "cojoin.co": [2024], "giv3.org": [2024], "creativevirtual.com": [3781], "admin.instantpage.me": [8188], "kmp.bz": [2024], "mouse.pt": [2024], "ssl15.ovh.net": [12205], "www2.mcafeesecure.com": [10128], "aces.wakefield.gov.uk": [22518], "comm.stanford.edu": [15448], "r24625719.sync.app.asana.com": [1265], "isso.cpy.re": [19710], "gladrags.com": [6678], "youngstonewall.org.uk": [22690], "c4.xkcd.com": [22652], "get.pictos.cc": [12700], "thumb.holidaypirates.com": [20392], "b3a.me": [2024], "www.corporateshop.unicef.org.uk": [17068], "cards.utb.ru": [17538], "dfir.to": [2024], "1link.mail.ru": [9891], "1sq.me": [2024], "edit.mux.de": [10780], "tanneries.squat.net": [21955], "ubuntu-mate.boutique": [17179], "tmg.mc": [2024], "s-bn.co": [2024], "blast.ncbi.nlm.nih.gov": [11090], "www.i.cx": [7657], "link.ngengs.com": [2024], "www.sonymusic.com": [15217], "osalt.com": [21295], "kickstarter.com": [8897], "s.site-home.ru": [2024], "nihpublications.od.nih.gov": [11090], "jub.xyz": [2024], "www.openmrs.org": [11988], "i0.cz": [7660], "sektioneins.de": [14625], "buy.vedomosti.ru": [22433], "volgograd.psbank.ru": [13231], "inwx.ch": [8230], "www.luckymarmot.com": [9659], "join.adform.com": [639], "newoldcool.com": [2024], "www.doublepimp.com": [4711], "level3cdn.kiva.org": [8939], "tylerj.us": [2024], "dwin1.com": [4087], "facebook.freifunk.net": [6170], "videos.somethingawful.com": [15200], "chrisd.news": [2024], "get.active": [2024], "www.thecanadianpress.com": [2815], "secure.innocenceproject.org": [8153], "www.skylineregistrations.co.uk": [15001], "fatcow.com": [5679], "kutv.com": [8770], "yieldlab.de": [18774], "www.muscleandstrength.com": [10745], "liquidlight.co.uk": [9458], "gss1.bdstatic.com": [19339], "on.mcat.me": [2024], "musicnotes.com": [10755], "go.drankush.com": [2024], "www.walthamforest.gov.uk": [18061], "splitpdf.com": [21938], "imagery.pragprog.com": [13058], "jobs.usc.edu": [17366], "www.quranproject.org": [13435], "wingware.com": [18444], "shareth.ru": [2024], "ijes.se": [2024], "l.calzo.co.uk": [2024], "go.matt.pw": [2024], "online.mbank.sk": [9733], "ibiwa.net": [2024], "tpoint.shopping.yahoo.co.jp": [18730], "welike.to": [2024], "fldemo.nsf.gov": [11098], "smmt.co": [2024], "nurf.it": [2024], "ff14.de": [2024], "www.turtl.it": [16919], "pentest.link": [2024], "s16.sinaimg.cn": [14910], "workforus.co": [2024], "300run.in": [2024], "www.keen.io": [8852], "72.rkn.gov.ru": [13971], "spctrm.stanford.edu": [15447], "webapp.beeline.kz": [19345], "fishercenter.georgetown.edu": [6531], "www.myhealth.va.gov": [17100], "gestiona.unizar.es": [17441], "xplt.ch": [2024], "ven.ky": [2024], "zakupki.nso.ru": [21192], "www.summerals.hku.hk": [20387], "totally.awe.sm": [1486], "photo3.kavkaz-uzel.ru": [20694], "tuleap.org": [16895], "anapirana.com": [19195], "lafb.co": [2024], "www.solidarites.ch": [21897], "go.anat.pt": [2024], "vks.yanao.ru": [22665], "jobs.nodejs.org": [14893], "www.abovealloffers.com": [871], "cdneu.wahanda.net": [18042], "ax-link.de": [2024], "embed-assets.wakelet.com": [18047], "responsys.com": [13872], "www.bookonline.saudiairlines.com": [14367], "hoseasons.co.uk": [18579], "ftp.kevag-telekom.de": [8878], "nasanitra.sme.sk": [14198], "resources.openmpt.org": [11987], "vibrantmedia.com": [17752], "widas.co": [2024], "transperfect.com": [22277], "srad.jp": [21956], "euractiv.com": [5388], "czpaes.tk": [2024], "migra.in": [2024], "mgz.me": [2024], "static-copper.cursecdn.com": [3927], "www.eeqj.com": [4897], "sandbox.itunes.apple.com": [1151], "links.jstor.org": [8472], "static.jsconf.us": [8470], "ant.anthem.com": [19206], "www.lessbuttons.com": [20816], "myesi.esi-group.com": [4951], "intranet.huit.harvard.edu": [7211], "u.tgu.ca": [2024], "spin.atomicobject.com": [1354], "www.hosting.agava.ru": [765], "maawg.org": [9713], "bcy.ca": [6876], "ricardofra.ga": [2024], "brighteroption.com": [2346], "utrn.ws": [2024], "www.solidarity-us.org": [15191], "lipetsk.startsmile.ru": [21980], "ivents.ya.ru": [18716], "hjaelp.virk.dk": [17826], "kha.bar": [2024], "url.gwardia.org": [2024], "nailso.me": [2024], "imcpr.xyz": [2024], "m.agar.io": [762], "www.crazespaces.pw": [19716], "its.345am.com": [2024], "firmy.etrend.sk": [5383], "www.crp.gov.sk": [15037], "www.barkerjr.net": [1698], "static.dezeen.com": [4423], "auxa.no": [2024], "www.mobileapptracking.com": [21002], "es.medicare.gov": [20953], "www.numa.paris": [11614], "*.worldremit.com": [18543], "ministerialtidende.dk": [10464], "www.speedtest.net": [15330], "lhcb.cern.ch": [2588], "chasepaymentech.com": [3033], "www.gateshead.gov.uk": [6446], "ventrachicago.com": [17699], "id.nlm.nih.gov": [11090], "blog.etrend.sk": [5383], "medicalgasresearch.biomedcentral.com": [1931], "international.government-nnov.ru": [20295], "mirror2.openwrt.org": [12025], "secularstudents.org": [14535], "spa.lastminute.com": [9177], "lookmark.link": [2024], "fluiddigit.al": [2024], "iciv.fr": [2024], "sl.petrbelik.cz": [2024], "htbridge.com": [7105], "via.wickett.ca": [2024], "dabot.co": [2024], "www.mathjobs.org": [10081], "dnns2.play-asia.com": [12828], "api.sndcdn.com": [15096], "portal.smartertools.com": [15058], "blog.zanox.com": [18884], "www.tinfoilsecurity.com": [16547], "b1g.news": [2024], "gayswap.com": [6457], "webshopapp.com": [18240], "www.dnssec-validator.cz": [4058], "www.ufcfit.com": [17023], "pco.lt": [2024], "www.asctrust.com": [406], "script.wpm.neustar.biz": [11320], "eb-magic.com": [2024], "safedr.ug": [2024], "mnza.us": [2024], "mail.usp.br": [17128], "beijing.jd.com": [8434], "p3.sinaimg.cn": [14910], "www.condor.de": [3564], "web.etao.com": [4965], "soulmates.guim.co.uk": [6996], "wrdc.mp": [2024], "experts-proves.upf.edu": [17471], "rtardy.com": [2024], "ld-7.itunes.apple.com": [1151], "watchdog.truste.com": [15922], "sp.ngs.ru": [21134], "bess.gs": [2024], "go.umw.edu": [2024], "hpm.li": [2024], "preferences.capitalone.com": [2831], "gigsoup.co": [2024], "tcr.tynt.com": [16979], "whitelabeldating.alcuda.com": [832], "dev.windowsphone.com": [18436], "krys.co": [2024], "nrcc.me": [2024], "nl.com.vn": [2024], "geor.gr": [2024], "grasp.fm": [2024], "acmcu.georgetown.edu": [6531], "fly-acs.com": [2024], "firefox.enhancedsteam.com": [5261], "vzls.net": [2024], "www.esa.int": [5420], "minsoc.gov-murman.ru": [20293], "st8.gismeteo.ru": [6650], "maam.ru": [20901], "www.mailvelope.com": [9907], "forum.popcorn-time.se": [12961], "cnnct.io": [2024], "secure2.insideknc.com": [8777], "tools.oasis-open.org": [11644], "ticketf.ly": [2024], "admin.pageuppeople.com": [21338], "cultofmac.com": [3909], "cmjournal.biomedcentral.com": [1931], "s2.music.126.net": [40], "abbr.it": [2024], "cdn1.thr.com": [15878], "shebpr.es": [2024], "saras.link": [2024], "c.delsonmoo.com": [2024], "*.nintendo.com": [11457], "geier.md": [2024], "mail.hover.com": [7573], "khz.bz": [2024], "*.poppyuk.com": [12964], "a.thupukari.com": [2024], "jeccr.biomedcentral.com": [1931], "wii.re": [2024], "theweekendedition.com.au": [18273], "teodoro.ml": [2024], "pmln.cf": [2024], "space.gizmodo.com": [6677], "www.gosi.gov.sa": [14368], "leshop.ch": [10417], "oes.umd.edu": [17351], "www.simplebooklet.com": [14889], "jdahl.me": [2024], "ruang.tk": [2024], "svn.siedler25.org": [13889], "lilongwe.usembassy.gov": [22406], "www.preyproject.com": [13091], "train.jd.com": [8436], "www.coreboot.org": [3670], "broker.svyaznoy.ru": [22053], "1.davidfri.de": [2024], "ka.sina.com.cn": [14904], "s-hope.co": [2024], "hackintosh.top": [2024], "theprivacyblog.com": [16309], "shopmag.biz": [2024], "*.instellaplatform.com": [8192], "citeulike.org": [3170], "ev-end.com": [2024], "eidq.org": [4910], "*.wolframalpha.com": [18487], "zenpayroll.me": [2024], "www.sacredcrystalsingingbowls.net": [14281], "studentaffairs.illinois.edu": [17346], "*.starbucks.com": [15464], "cb8.me": [2024], "www.gajim.org": [6383], "spamcontrol.primus.ca": [13112], "sl.syllable.org": [22064], "def6.bz": [2024], "whitehothair.co.uk": [18347], "deb.theforeman.org": [22152], "*.core.cdn.streamfarm.net": [15586], "shop.morningstaronline.co.uk": [10634], "randombit.net": [21578], "*.mybalsamiq.com": [1658], "pdora.co": [2024], "www.ulule.com": [17224], "support.name.com": [11056], "blog.couchsurfing.com": [19696], "assetmanagement.hsbc.com": [7090], "igboaka.com": [2024], "sungardhe.com": [15659], "go.ahazan.com": [2024], "beta.asana.com": [1265], "www.cnaf.infn.it": [7771], "juso.ch": [20668], "cdn.oseems.com": [12154], "developer.foursquare.com": [6061], "moodle.org": [10616], "britishg.as": [2024], "gocastl.es": [2024], "to.aetn.org": [2024], "boko.in": [2024], "citizenfour.thecthulhu.com": [16403], "joinvr.io": [2024], "ethicon.axonify.com": [1502], "support.21.co": [95], "pedroventura.es": [2024], "www.operatingsystems.io": [12087], "swtor.com": [15770], "wanikani.com": [18069], "logger.scot.nhs.uk": [10953], "bund.de": [17734], "cs.umontpellier.fr": [22365], "citibank.com.au": [3173], "digikam.org": [4462], "primo.uvm.edu": [17154], "www.yandex.kz": [18743], "npc.me": [2024], "i.bijdaphne.nl": [2024], "ea1.earcu.com": [4862], "telex.cc": [16164], "tnm.ext.here.com": [7325], "www.mod.gnutls.org": [6745], "tiles.mapbox.com": [9977], "assets1.jimstatic.com": [8585], "r24626069.sync.app.asana.com": [1265], "circuitlab.com": [19593], "fpcomplete.com": [5581], "www.archive.li": [1194], "www.tagilka.ru": [22087], "www.familie.rps.aok.de": [376], "secure.admin.myvirtualpaper.com": [10863], "www.remotestorage.io": [13823], "bromley.greenparty.org.uk": [6908], "chat.echoplex.us": [5038], "icc4.it": [2024], "admin.iovation.com": [8336], "dploy.io": [19809], "isbgj.me": [2024], "ru.pornhub.com": [12972], "faita.ru": [2024], "phlm.cc": [2024], "arteradio.com": [19239], "www.recruitmentplatform.com": [13713], "jgp.mx": [2024], "kolektiva.com": [8974], "www.commoncraft.com": [3492], "pfla.nz": [2024], "lists.frugalware.org": [6213], "crossmark-cdn.crossref.org": [3812], "korbit.co.kr": [8995], "internapply.cartercenter.org": [2877], "consultations.southwark.gov.uk": [15264], "meet.bl.uk": [2358], "integr.al": [2024], "api.rasp.yandex.kz": [18743], "static.trustedshops.com": [16858], "fast10.fonts.com": [5972], "interiorsavings.com": [8249], "cdn.dynatrace.com": [4819], "s.nikkei.com": [11442], "uk-squatting-archive.squat.net": [21955], "psc.edu": [12329], "blog.nustarz.com": [11602], "www.efax.co.uk": [5094], "sessionserver.mojang.com": [9789], "e-cpa.com": [2024], "lizdp.ca": [2024], "developer.qualcomm.com": [13378], "use.typekit.net": [16983], "daily.hkgolden.com": [7058], "static.beeline.ru": [1778], "assets.software.eu.playstation.com": [12832], "open.login.yahooapis.com": [18729], "www.ekmsecure.co.uk": [5120], "oregrown.co": [2024], "w2.mtyrc.org": [2024], "*.overleaf.com": [12199], "ticketsage.com": [15883], "wp.com": [18520], "futd.us": [2024], "browsercan.rapid7.com": [13613], "client.museter.com": [10750], "www.biapreview.homeoffice.gov.uk": [20399], "incisivemedia.com": [8049], "support.smartadserver.com": [15049], "forms.bracknell-forest.gov.uk": [19440], "www.securosis.com": [14597], "revo.pt": [2024], "parkingonline.lincoln.gov.uk": [9378], "translate.skyscanner.net": [15006], "www.neo900.org": [11187], "omsk.sledcom.ru": [21858], "investors.com": [8317], "baltreds.us": [2024], "www.melectronics.ch": [10255], "eindbazen.net": [5113], "bit.hdmovie.vn": [2024], "entportal.ieeeusa.org": [7720], "go.tanaja7.com": [2024], "app.prospecteye.com": [13206], "glp.lv": [2024], "bitlove.org": [2021], "crikey.com.au": [3792], "www.experian.com": [5495], "geeksi.de": [2024], "planet.mcafee.com": [10129], "stocial.ca": [2024], "www.hosthorde.com": [7521], "hi.ichdaf.com": [2024], "m.revolutiontt.me": [13906], "msidocs.com": [2024], "booleweb.ucc.ie": [17006], "www.gorickshaw.com": [6777], "mail.centrum.sk": [19548], "gstand.co": [2024], "cvrep.us": [2024], "common.staticskynet.be": [15498], "www.newcastle-staffs.gov.uk": [21119], "kepek.444.hu": [183], "smn.onl": [2024], "*.upc.edu": [12940], "subscription-assets.timeinc.com": [16535], "meldrada.net": [2024], "www.wpstartbox.com": [15471], "verisign.com.au": [17712], "bleutrade.com": [2090], "www.transparency.org.ru": [22276], "samba.catracalivre.com.br": [2917], "faq.kaywa.com": [8843], "docs.godotengine.org": [20278], "zheleznogorsk-kurskaya-obl.beeline.ru": [1778], "www.livenation.*": [9493], "mix.beeline.kz": [19345], "www.ionaudio.com": [7783], "*.gameswelt.de": [6422], "*.translink.co.uk": [16750], "inf.shoes": [2024], "visaeurope.at": [17847], "russian.estonia.usembassy.gov": [22406], "rtek2000.com": [13531], "maps.yandex.com.tr": [18740], "staffwiki.library.georgetown.edu": [6531], "go.ckk.im": [2024], "secure.walmartimages.com": [18060], "images.akban.org": [809], "*.huffingtonpost.com": [7604], "www.drownedinsound.com": [4768], "docs.freeswitch.org": [6106], "mi-pro.co.uk": [8225], "calmth.online": [2024], "socialmil.li": [2024], "www.ngdc.noaa.gov": [11121], "i.cacao.io": [2024], "www.hifx.co.uk": [7390], "envy.zenspider.com": [18931], "el.about.aegeanair.com": [6896], "afn.io": [2024], "deportes.unizar.es": [17441], "ktt.ninja": [2024], "medienstiftung-hsh.de": [10209], "svbtle.com": [15735], "www.boomstarter.ru": [19429], "lrzxk.voluumtrk2.com": [22496], "www.vectorborne.fralin.vt.edu": [17825], "secure2.comic-con.org": [3467], "hinckley-bosworth.gov.uk": [7415], "link.xms.nl": [2024], "trust.taobao.com": [16014], "m.zalando.fi": [18877], "twet.ga": [2024], "jobs.upc-cablecom.ch": [22386], "www.code.osu.edu": [11797], "m.zuji.com.hk": [19021], "cdn-media.joomlainfo.ch": [20652], "centrum.active24.sk": [19067], "pond.bz": [2024], "holdings.sciencedirect.com": [21750], "thflm.ch": [2024], "mail.kde.org": [8735], "fanpagegeneratorpro.rhinosupport.com": [13919], "www.womeninnovatemobile.com": [18495], "actva.me": [2024], "data.nasa.gov": [10909], "anxiety.mind.org.uk": [10443], "blog.migrosbank.ch": [10414], "tayt.im": [2024], "baswa.re": [2024], "www.thisismynext.com": [16445], "gtpa.co": [2024], "espaciosweb.ulpgc.es": [17213], "learning.unisys.co.jp": [17292], "apac.littlehotelier.com": [9486], "xar.ph": [2024], "edelivery-hqdc-test.oracle.com": [12116], "retail-link.gr": [13878], "cran.rstudio.com": [13527], "1n.io": [2024], "eastsussex.objective.co.uk": [21225], "mail.yandex.com.tr": [18740], "perfectmarket.com": [12592], "mangacast.in": [2024], "cathaypacifichost.com": [2913], "help.dyn.com": [4814], "tbricks.tv": [2024], "static.media.ccc.de": [2553], "ezgram.com": [4992], "min.unpaper.com": [2024], "stg-coupons.paypal.com": [12500], "appbac.kr": [2024], "r.4xs.org": [2024], "i9.c.dk": [2512], "instantpage.me": [8188], "bypriscilla.tk": [2024], "planeta.ru": [21431], "*.enterprisecioforum.com": [5279], "www.code.org": [3343], "element14.com": [5148], "fellowship.fsfe.org": [5591], "filt.re": [2024], "wiki.nginx.org": [11413], "search.maven.org": [10099], "*.skrill.com": [14984], "debuggify.net": [4267], "www.sac.se": [14278], "www.opensocietyfoundations.org": [21280], "services.hearstmags.com": [7271], "ie.lbp.me": [20789], "ksod.se": [2024], "lup.vc": [2024], "ega.la": [2024], "id.sputniknews.com": [21951], "forum.torrent411.com": [15847], "dfngo.us": [2024], "gmdy.us": [2024], "link.rbpam.de": [2024], "c24.io": [2024], "account.infousa.com": [8112], "media.8chan.co": [244], "artcodec.link": [2024], "mpint.co": [2024], "avno.us": [2024], "partner.kh.hu": [8739], "bedford.gov.uk": [19341], "www.neverddos.com": [11325], "home.uv.es": [17544], "searx.me": [14512], "strck.mx": [2024], "www.pantheos.com": [12403], "inconstruction.kairo.at": [8782], "figue.com": [5564], "trace.qq.com": [13329], "www.giving.acs.org": [974], "www.webcitz.com": [18154], "i.modrykonik.cz": [2024], "lessig2016.us": [9275], "ss2.sinaimg.cn": [14910], "www.energimanager.dongenergy.dk": [4068], "www.erowid.com": [5339], "exjobb.meb.ki.se": [8743], "learner.centennialcollege.hku.hk": [20387], "www.fye.osu.edu": [11797], "questcomp.com": [13403], "remotecoder.io": [13822], "myjobmag.co": [2024], "www.orioninc.com": [12144], "fr.zalando.be": [18877], "www.dispenser.tf": [4557], "veeba.se": [2024], "recgk.in": [2024], "d3w.io": [2024], "globalnetwork.pl": [6708], "lesmax.fr": [2024], "img1.leboncoin.fr": [20796], "lagos.pro": [2024], "gullipics.com": [20322], "sgdtest.tocco.ch": [16600], "nanog.org": [11529], "go.qpg.us": [2024], "a2.sndcdn.com": [15096], "j.koguma98.com": [2024], "d3w.it": [2024], "tdp-feedback.truste.com": [15922], "traq.exitec.com": [5485], "cpj.me": [2024], "nyc.gov": [11332], "biox.stanford.edu": [15448], "tiads.timeinc.net": [16535], "wh.istmein.de": [2024], "at.cnampls.org": [2024], "ucsdbkst.ucsd.edu": [17012], "csi.agency": [2024], "tr.trend.az": [22281], "mld.st": [2024], "desivi.be": [2024], "cougar-town.friday.ru": [20175], "citysmart.biz": [2024], "wt.rdg.ac": [2024], "rxys.ch": [2024], "feedback.yandex.by": [18739], "assets.drupal.ku.edu": [17347], "www.evaske.com": [5425], "ww881.smartadserver.com": [15049], "blackpool.gov.uk": [2074], "ampyr.us": [2024], "ewc.deals": [2024], "alfappl.com": [2024], "rohe.im": [2024], "bprc.osu.edu": [11797], "*.herts.ac.uk": [17344], "www.versioneye.com": [17723], "twitch.tv": [16961], "bmcgenomics.biomedcentral.com": [1931], "symplicity.com": [15786], "bfnews.co": [2024], "torchlt.jp": [2024], "wise.centennialcollege.hku.hk": [20387], "blog.hqcodeshop.fi": [7581], "login.zooniverse.org": [19005], "ohotnadzor.government-nnov.ru": [20295], "speakychat.com": [15308], "rprportal.wustl.edu": [18089], "barfi.ch": [1695], "www.icommunity.fr": [7705], "ssl7.ovh.net": [12205], "partners.unit4.com": [22378], "terminal.banki.ru": [1672], "ut.autoscout24.de": [1458], "www.sirrix.com": [14926], "api.21.co": [95], "blraa.bl.uk": [2358], "dclibrary.ideascale.com": [20479], "blossoms.mit.edu": [9763], "popper.js.org": [20657], "rfi.my": [2024], "*.online-convert.com": [11905], "freelauri.com": [6119], "www.brabant.nl": [11172], "micfarris.us": [2024], "www.dosomething.org": [4682], "mail.action.at": [322], "click.aliyun.com": [868], "forum.hornbach.de": [7504], "www.hackerexperience.com": [7131], "link.nhw.se": [2024], "*.drugstore.com": [4773], "*.pagpop.com.br": [12357], "magicalbutter.com.au": [9875], "dwidi.id": [2024], "dialshield.com": [1489], "studentprograms.jpl.nasa.gov": [10909], "vrb.bz": [2024], "sesame.syncplicity.com": [15795], "myaccount.charter.com": [3026], "www.texaco.com": [16222], "nic.br": [10959], "app.cloudforge.com": [3286], "www.mah.se": [9719], "nasastg.gpehosting.com": [6353], "artchristina.com": [1246], "www.xgaming.com": [18604], "jtultrasound.biomedcentral.com": [1931], "media.ign.com": [7734], "news.usc.edu": [17366], "torridge.greenparty.org.uk": [6908], "003.img.pu.sohu.com.cn": [15170], "www.mercurynews.com": [10301], "bairdmounts.globalreach.com": [20268], "faq.lemonde.fr": [9204], "en.oxforddictionaries.com": [12223], "*.domaintank.hu": [4659], "hcia.cms.gov": [19630], "nnov.sumtel.ru": [22031], "bri.mu": [2024], "www.blog.nodejitsu.com": [11491], "*.garmin.com": [20205], "es.pcpartpicker.com": [12529], "rvz.la": [2024], "industrybrains.com": [9993], "*.cs.oberlin.edu": [11735], "wvrlthr.co": [2024], "direct.seagate.com": [14499], "14.ly": [2024], "nnmclub.to": [10982], "forum.nationstates.net": [11083], "a7.sphotos.ak.fbcdn.net": [5689], "anth.link": [2024], "oxforddictionaries.com": [12223], "www.safenet-inc.com": [14289], "boligportal.dk": [2206], "media.9gag.com": [252], "dock4.beget.com": [19347], "cdn.captora.com": [19508], "open.cdash.org": [19530], "www.hertz.pl": [7357], "ia.do": [2024], "www.aics.riken.jp": [13489], "vit.so": [2024], "heinz.is": [2024], "yam.com": [18734], "register.sparklabs.com": [15289], "shop.haymarket.com": [7241], "wms.assoc-amazon.fr": [1314], "interference.cc": [8245], "rad.education": [2024], "www.hertz.pt": [7358], "sustrans.org.uk": [22046], "designernews.co": [4375], "k-p.li": [2024], "xm0.mx": [2024], "mail.lumiere.ens.fr": [4922], "lookout.com": [9612], "rhinosoft.com": [13918], "ngs.is": [2024], "f.domdex.com": [4661], "launchkit.io": [9179], "kwok.in": [2024], "edm.us.com": [2024], "*.whstatic.com": [18383], "www.ethicspoint.com": [5370], "sndr.co": [2024], "bst6.gismeteo.ru": [6650], "cfweb.cc.ysu.edu": [18832], "medinf.efi.th-nuernberg.de": [16239], "forum.ubuntuusers.de": [17184], "doncasterhrportal.rotherham.gov.uk": [14032], "www.wpi.edu": [18516], "ysmo.ga": [2024], "api-devint.dwolla.com": [4809], "warosu.org": [18078], "3-s.imgbox.com": [7997], "*.kriso.lt": [9025], "webfecs.vodafone.pt": [17903], "me2.la": [2024], "crtny.me": [2024], "www.encrypteverything.ca": [5227], "www.applytracking.com": [1158], "secure.powys.gov.uk": [21474], "lift.awp.nhs.uk": [10953], "s107.cnzz.com": [3328], "filmon.com": [5797], "homechoice.southglos.gov.uk": [15257], "fusionforge.org": [6253], "scaleengine.com": [14388], "secvirtual.uv.es": [17544], "dmitrov.tpprf.ru": [22260], "vincent.bl.uk": [2358], "joapr.co": [2024], "admin-brokenships-staging.infinum.co": [20526], "bmccardiovascdisord.biomedcentral.com": [1931], "www.pricezombie.com": [13101], "www.hunchlab.com": [7622], "s.sample.yahoo.co.jp": [18730], "video.udn.com": [17020], "www.gifbook.io": [6622], "floma.me": [2024], "www.diea.ulpgc.es": [17213], "a.liner.jp": [2024], "static-weichouji.sina.com": [14905], "jamar.io": [2024], "anubisnetworks.com": [1109], "secure.dealinteractive.com": [19792], "mskjr.dk": [2024], "static0.gac.edu": [6279], "rd.bundesnetzagentur.de": [2445], "mediation.tpprf.ru": [22260], "es.pornhub.com": [12972], "tur.admtyumen.ru": [19082], "bit.ilya2606.ru": [2024], "rjpp.ca": [2024], "wiki.mtt.ru": [21044], "shop.inu-inu.co": [2024], "facebook.de": [5612], "clk.pixellu.com": [2024], "awempire.com": [700], "connect.sensiolabs.com": [14648], "go.kolbe.co": [2024], "www.utorrent.com": [22337], "makerpot.info": [2024], "facebook.dk": [5612], "ntrnl.org": [2024], "ben.gd": [2024], "elderscrolls.com": [18928], "ynfy.de": [2024], "adultplay.dk": [2024], "regi.laptop.hu": [9167], "aventeur.ucsd.edu": [17012], "www.equalit.ie": [4938], "apps.staffordshire.gov.uk": [15435], "i.techweb.com": [16086], "fanmil.es": [2024], "benjamin.sipsolutions.net": [14184], "*.nachrichtendienstgesetz.ch": [21082], "as.uv.es": [17544], "www.cpr.cuhk.edu.hk": [2704], "shpig.me": [2024], "wmck.co": [2024], "media.economist.com": [5052], "devilteam.pl": [4411], "*.rtfd.org": [13671], "ksocial.me": [2024], "www.hertz247.pt": [7358], "wisr.co": [2024], "issh.it": [2024], "b.lide.us": [2024], "l.rkr.io": [2024], "www.factus.ru": [20069], "b.ligatus.com": [9356], "*.pixiq.com": [12777], "login.ay.gy": [577], "ellens.co": [2024], "krr.im": [2024], "go.gvsjobs.com": [2024], "s7.gismeteo.lv": [20250], "www.chriscowley.me.uk": [3109], "www.clicktotweet.com": [3257], "www.bookingrc.hkjc.com": [20384], "www.greatnet.de": [6891], "crosswi.se": [2024], "lawnandlandscape.com": [9192], "act.network": [2024], "www.jivesoftware.com": [8598], "store.office.com": [11780], "subscribe.newstatesman.com": [11352], "go.kotaib.com": [2024], "*.ufl.edu": [17341], "immunology.nature.com": [11140], "projects.particle.io": [12451], "chessbase-shop.com": [3072], "igritomijerry.cdnvideo.ru": [19536], "app.readcube.com": [13666], "firstintegrity.com": [5859], "s3.mt-cdn.net": [9812], "s.mazemap.com": [2024], "www.diskusjon.no": [4552], "cbu03.alicdn.com": [853], "bolton.libraryebooks.co.uk": [20828], "service.berlin.de": [1821], "audioscrobbler.com": [1387], "gdata.com.mx": [6272], "smolensk.beeline.ru": [1778], "prim.tpprf.ru": [22260], "extras.altoonamirror.com": [943], "www.universe2.us": [17318], "beartalk.berkeley.edu": [17329], "www.kachingle.com": [8779], "wef.ch": [2024], "asset-f.soup.io": [15235], "help.utm.edu": [17426], "bccla.org": [1530], "wd2go.com": [17990], "www.urltrends.com": [17499], "wiki.pirateparty.ca": [12745], "abdn.ac.uk": [463], "hvst.ws": [2024], "squarefree.com": [15398], "r.craveiro.me": [2024], "prisonlegalnews.org": [13125], "i.lja.mx": [2024], "permalink.ca": [2024], "www.nzbindex.com": [11042], "www.hongkongairport.com": [20402], "pamnews.com": [12380], "www.say.ac": [21738], "cshall.alipay.com": [864], "carlosprioglio.com": [2864], "contactual.ly": [2024], "b.past9.com": [2024], "elie.im": [5156], "go.playr.at": [2024], "raceforlife.cancerresearchuk.org": [19501], "on.nfib.com": [2024], "cllgr.is": [2024], "www.ris.bka.gv.at": [13490], "*.emulex.com": [5218], "idprotect.vip.symantec.com": [15780], "proximite.april.org": [1171], "usevideo.adsrvr.org": [688], "www.cilkplus.org": [3139], "zeze.sci-hub.io": [14436], "*.voicefive.com": [17908], "svn.cru.fr": [3826], "youtube.sg": [18800], "nabtrade.com.au": [10905], "*.ittoolbox.com": [7859], "gallery.c-base.org": [2506], "dlt.link": [2024], "ver.gg": [2024], "netaporterll3.sslcs.cdngc.net": [19533], "sprites.pcpro.co.uk": [12256], "faxrobot.com": [5685], "youtube.si": [18800], "bonus.unionpayintl.com": [17281], "www.tkgorod.ru": [22217], "gwgreen.us": [2024], "ippr.io": [2024], "blackhole.ionitcom.ru": [20562], "belize.usembassy.gov": [22406], "oss.maxcdn.com": [10102], "seal.verisign.com": [17712], "dedyn.io": [19789], "www.curry.uvt.nl": [16521], "monitoring.stanford.edu": [15448], "www.hypeshell.com": [14226], "transformativeworks.org": [16741], "v.theempi.re": [2024], "it-contrainfo.espiv.net": [20021], "www.olasagasti.info": [11818], "alsa.ovh": [2024], "live.ssl-cert-shop.com": [14239], "www.eastsussexlearning.org.uk": [19940], "proletarsk.startsmile.ru": [21980], "img.grouponcdn.com": [6957], "usi.edu": [17322], "w.rvlx.net": [2024], "www.shrew.net": [21817], "fxn.ws": [2024], "bgr.com": [1541], "t.track.youmix.co.uk": [18806], "ja.jstor.org": [8472], "special.megamozg.ru": [20957], "vlabx.co": [2024], "media-slapshot.cursecdn.com": [3927], "www.myuhc.com": [10837], "go.recep.me": [2024], "inted.oie.buffalo.edu": [17382], "shopping.rspb.org.uk": [13520], "rifle.co": [2024], "www.superherotrainingnetwork.com": [15695], "khmao.psbank.ru": [13231], "www.inuits.eu": [8305], "gardenplants.next.co.uk": [11399], "klondike.xiscosoft.es": [18668], "east-northamptonshire.gov.uk": [5003], "sthwv.com": [2024], "n-ce.pw": [2024], "bml.bilibili.com": [1904], "rutracker.cr": [21702], "responsible-gambling.hkjc.com": [20384], "ver.clubtek.pt": [2024], "chat.ladepeche.fr": [9128], "beacon.nist.gov": [11089], "url.infopku.com": [2024], "webservice.dwd.de": [19911], "slsp.sk": [15039], "survey.usa.gov": [17110], "rnpdigital.com": [13500], "arbeitsagentur.de": [1184], "secure.critpath.org": [3800], "www.ventoso.org": [17698], "img01.bt.co.uk": [1576], "mikebloom.bg": [2024], "www.easy2coach.net": [5013], "fssso1.capitalone.com": [2831], "active.com": [550], "*.insightmgr.com": [4493], "www.lendingclub.com": [9261], "sporxtv-p.mncdn.com": [10516], "www.broadbandreports.com": [4075], "activemq.apache.org": [1118], "spankwire.com": [15286], "completion.amazon.co.uk": [19170], "*.fh-kiel.de": [17383], "krid.us": [2024], "post.pochtabank.ru": [12876], "nvi.ro": [2024], "nacdl.org": [10906], "pipping.org": [12734], "tuana.nu": [2024], "webmail.orkz.net": [12146], "techfreedom.org": [16076], "www.intelexit.org": [8213], "*.das-elena-verfahren.de": [4914], "anarchistnews.org": [1033], "ceviri.yandex.com.tr": [18740], "admin1.providesupport.com": [13218], "www.mullvad.net": [10731], "pq.kagi.com": [8781], "angular-gantt.com": [1061], "nadaguides.com": [10907], "irfree.com": [20580], "www.epay.bg": [4935], "fort.pics": [2024], "svn.midnightbsd.org": [20980], "archlinux.fr": [1189], "www.vorratsdatenspeicherung.de": [353], "ipv5.info": [2024], "are.berkeley.edu": [17329], "www.unistream.ru": [17291], "static.oculusvr.com": [11760], "boalt.com": [1562], "www.refactor.hu": [13773], "s.kyodo.co.jp": [2024], "brs.tl": [2024], "www.movienewsletters.net": [10682], "s3.mzstatic.com": [10893], "phis.ch": [2024], "sw.centrum.cz": [19547], "r.ypf.io": [2024], "canberra.usembassy.gov": [22406], "mail.professionalsecuritytesters.org": [13172], "familyte.ch": [2024], "r24627720.sync.app.asana.com": [1265], "piwik.okturtles.com": [11810], "dev.rsaconference.com": [13514], "ukrnames.com": [17209], "aktivix.org": [815], "www.siteorigin.com": [14935], "redirector.parabolagnulinux.org": [12413], "teac.co.jp": [15870], "piquadro.com": [12735], "www.allianz-fuer-cybersicherheit.de": [900], "wiki.fsfe.org": [5591], "hlstats.wcfan.de": [18112], "sll.org.uk": [15143], "connect20.magentocommerce.com": [9869], "motorolasolutions.com": [10656], "*.dotcloud.com": [4688], "www.firmas.lv": [5848], "profiles.ambercutie.com": [19180], "assignment.ignou.ac.in": [7956], "static.leadpages.net": [9209], "go.bryans.in": [2024], "afsp.org": [342], "clinicalkey.com": [3267], "bax.nar.az": [2024], "datapipe.com": [4203], "store.lacrossetechnology.com": [9136], "statefarm.com": [15483], "licensee.garfield.com": [6440], "autodiscover.opensocietyfoundations.org": [21280], "clic.bz": [2024], "rws.netdna.com": [11227], "beautybar.q-assets.com": [21551], "utaitc.org": [2024], "laesp1.lad.gov.hk": [7066], "www.voicedailydeals.com": [17585], "3down.mit.edu": [9763], "googl.ml": [2024], "backstreet-merch.com": [1627], "nalchik.beeline.ru": [1778], "www.newscientistsubscriptions.com": [11339], "ntrda.me": [2024], "musat.io": [2024], "sofabuilder.dk": [2024], "*.lyrk.de": [9697], "newsmaxhealth.com": [11384], "go.offerta.se": [2024], "ripl.it": [2024], "www.heide-park.de": [7281], "www.bluemovie.eu": [2139], "mbeta.efinancialcareers.com": [4903], "mclaut.com": [20942], "ncifrederick.cancer.gov": [2819], "2015.asiabsdcon.org": [1281], "cp.beastnode.com": [1762], "forge.mysql.com": [10825], "vorarlberg.neos.eu": [10941], "kolonia.usembassy.gov": [22406], "work.sweden.se": [15746], "crha.li": [2024], "media.familychristian.com": [5635], "backbonesecurity.com": [1620], "eaiblz.co": [2024], "ssc.api.bbc.co.uk": [1524], "blog.leadpages.net": [9209], "2011.eurobsdcon.org": [5394], "ebill.neustar.biz": [11320], "untap.nyc": [2024], "jenkins.io": [20638], "disc-u.org": [2024], "bit.katana.ec": [2024], "trs.cm": [2024], "www.thepiratebay.lv": [22174], "paysafecard.com": [12518], "mozilla.com.tw": [10692], "ff.mg": [2024], "email.osu.edu": [11797], "formsanity.com": [6020], "openwrt.org": [12025], "social.clinic": [2024], "tambov.tpprf.ru": [22260], "as.au.edu": [16995], "curry.uvt.nl": [16521], "gopok.es": [2024], "subscriptions.marvel.com": [10047], "www.todo.ly": [16602], "westjet.com": [18300], "democratic.bracknell-forest.gov.uk": [19440], "medstudents3.wustl.edu": [18089], "www.portaldaempresa.pt": [6857], "www.zamos.ru": [22706], "s.ssl.qhimg.com": [13347], "www6.golem.de": [6804], "my.fac.io": [2024], "li.ru": [9499], "interface.im.taobao.com": [16015], "mrjw.me": [2024], "*.lilux.lu": [9299], "www.cyphdbyhiddenbhs.onion": [3976], "img.buch.de": [16244], "dsdot.co": [2024], "register.qf.org.qa": [21557], "ar.libreoffice.org": [9327], "assets.picoville.com": [12697], "pub.mate-desktop.net": [9727], "ntl.sh": [2024], "trang.es": [2024], "stats.web4all.fr": [18148], "mooc-list.com": [9792], "coci.al": [2024], "a1.jimstatic.com": [8585], "q.yeloha.com": [2024], "blog.dlvr.it": [19855], "system.data.sqlite.org": [14229], "repository.upenn.edu": [17360], "doncaster.gov.uk": [4672], "www.scottbrand.com": [14459], "www.obi.ru": [21222], "www.otpbank.ru": [12165], "ra-qa.moodys.com": [21020], "cdn.komentary.aol.com": [380], "genbeg.com": [2024], "onsig.ht": [2024], "vbstatic.co": [17556], "img.washingtonpost.com": [18086], "quiz-uscc.cyberquests.org": [3968], "lurkmore.net": [9682], "www.listener.co.nz": [9464], "ctix.pw": [2024], "digitallab.link": [2024], "www.krita.org": [9026], "lptag.liveperson.net": [9505], "on.chauncey.io": [2024], "americasti.re": [2024], "dieselnet.com": [4448], "srv2.bakerlab.org": [1646], "golden.9tv.co.il": [257], "moh.nhs.uk": [10953], "changeip.com": [3001], "requester.mturk.com": [9819], "*.naver.com": [11150], "accounts.google.*": [6821], "pewdiepie.net": [12635], "redst.mp": [2024], "lifesaving.com": [9349], "prov.wifi.xfinity.com": [22650], "source-stg.jobvite.com": [8616], "portal.upf.edu": [17471], "cag.vg": [2024], "lldb.llvm.org": [9103], "computerbild.maxdome.de": [10106], "bluemle-neubrunn.de": [2167], "security.cpanel.com": [2665], "linkedin.thecthulhu.com": [16403], "www.paymoapp.com": [12514], "jayisgames.com": [8547], "adapto.rs": [19072], "info.centrify.com": [19546], "campstaffusa.com": [2789], "thumb.pr0gramm.com": [21476], "*.azchampion.com": [5616], "www.nokia.*": [11498], "www.atlas.sk": [19269], "www.revolutiontt.me": [13906], "univ.ms": [2024], "*.mobypicture.com": [10543], "*.yelp.pl": [18766], "hmt.lk": [2024], "corvisacloud.com": [3689], "petekeen.net": [12619], "rudi.net": [13540], "www.bluenote.io": [2168], "benefactor.stanford.edu": [15448], "caat.org.uk": [19490], "moikrug.ru": [10567], "login.eloqua.com": [5172], "go.aosvn.xyz": [2024], "www.interactivemediaawards.com": [8237], "sc2.curseforge.com": [3927], "vinoteka.hofer.si": [357], "3rdeye.me": [2024], "l.bagthis.ch": [2024], "celartem.com": [2939], "learn.sparkfun.com": [15291], "chuvashiya.beeline.ru": [1778], "brnbnd.be": [2024], "smr1.rosevrobank.ru": [14024], "www.talktalktechnology.com": [15992], "ad-stub-rentv.cdnvideo.ru": [19536], "gtls.io": [2024], "decider.tv": [2024], "*.reefbuilders.com": [13765], "wifi.xfinity.com": [22650], "zan.jd.com": [8436], "skdo.co": [2024], "l.fishyfing.xyz": [2024], "ws-ea.amazon-adsystem.com": [958], "ramsis.engineering.osu.edu": [11797], "provencredible.com": [13215], "gcgmsp.com": [2024], "ajs.gop": [2024], "*.prototypefund.de": [21518], "angola.usembassy.gov": [22406], "link.fkfsv.dk": [2024], "iacq.co": [2024], "stats.surfaid.ihost.com": [3665], "learningnetworkstore.cisco.com": [3165], "marvelheroes.com": [10048], "1.psbank.ru": [13231], "iai.inf.tu-dresden.de": [15937], "tu-chemnitz.de": [15935], "www.jaqpot.net": [8532], "united.com": [17302], "desha.re": [2024], "go.knom.org": [2024], "spdns.de": [14219], "coverart.worldcat.org": [18536], "j.kanz.it": [2024], "blogwzrd.me": [2024], "at.vodafone.pt": [17903], "anth.nu": [2024], "www.issuu.com": [8392], "twfood.jd.com": [8434], "www.waeplus.co.uk": [17985], "my.mechse.illinois.edu": [17346], "atipso.biz": [2024], "l.meljones.info": [2024], "raux.us": [2024], "www.creditreportnation.com": [3787], "fndsr.fr": [2024], "www.overijssel.nl": [11172], "s.fetch.nl": [2024], "a.mapillary.com": [9980], "carsal.es": [2024], "ssusd.illuminateed.com": [20494], "stat2.ntv.ru": [21197], "itnews.iu.edu": [8069], "www.webfwd.org": [18159], "icgx.co": [2024], "askcaryl.unicefusa.org": [17070], "trial.f-secure.com": [5533], "activate.eiffel.com": [5111], "about.justgiving.com": [8710], "ryf.me": [2024], "bt.free-torrents.org": [20154], "*.uni.lui": [17263], "appcerta.in": [2024], "mediaplex.com": [17629], "cutpa.st": [2024], "ip.cdnvideo.ru": [19536], "www.flexnow.rub.de": [13539], "reporter-ohne-grenzen.de": [13843], "*.militarysuper.gov.au": [10432], "carrefour.es": [19517], "cs.chromium.org": [3124], "bankcomat.com": [19313], "fronter.com": [20179], "presse.ina.fr": [7769], "www.bittiraha.fi": [2044], "b.sekhar.me": [2024], "downloads.mamp.info": [20916], "podpora.endora.cz": [5237], "s.jakusit.cz": [2024], "admission.ignou.ac.in": [7956], "beabloo.com": [19340], "bstanton.co": [2024], "staticassets.courierpostonline.com": [3713], "8bn.yt": [2024], "zenmate.com.pe": [18917], "ui.doublepimp.com": [4711], "mbtv.uk": [2024], "s.animemusic.me": [2024], "*.consumerreports.org": [3604], "partners.nvidia.eu": [11021], "www.valueclick.com": [17629], "qualys.com": [13383], "ethernetportal.equinix.com": [5322], "blog.archive.li": [1194], "acetap.es": [2024], "cyberport.de": [3966], "o.egbule.com": [2024], "sydsixe.rs": [2024], "nzzbxx.com": [2024], "wifidb.net": [18367], "usbank.com": [17116], "forum.doom9.org": [4676], "www.hosting9000.com": [7535], "pluggedin.asia": [2024], "chimp.mx": [2024], "www.transfer.sh": [22272], "simulab.fsaa.ulaval.ca": [17319], "berho.io": [2024], "www.education.gov.uk": [19957], "www.adap.tv": [608], "vodafone.de": [17901], "static.beeg.com": [19343], "ctysr.cd": [2024], "brtn.me": [2024], "www.clickfunnels.com": [3247], "forum3.hkgolden.com": [7058], "beg.ly": [2024], "upvot.es": [2024], "cryptoseal.com": [3857], "metager.de": [10323], "www.wormly.com": [22619], "static.blog.playstation.com": [12832], "rfc.xferic.com": [2024], "aromalweb.com": [2024], "o.dropsupply.co": [2024], "www.blackberry.com": [2068], "crscom.co": [2024], "sportskeeda.co": [2024], "whu.bi": [2024], "atmlb.com": [2024], "*.powerhosting.dk": [13046], "goglobal.stanford.edu": [15448], "mobile.spaces.live.com": [9495], "*.cbsstatic.com": [2540], "j-bl.info": [2024], "go.itson.mx": [2024], "zoho.jp": [18983], "www-sop.inria.fr": [8161], "cgi.stanford.edu": [15448], "b.tile.openstreetmap.org": [12015], "levonline.com": [9292], "ttpc.dftoutiao.com": [19826], "on.tellux.tv": [2024], "blog.sfs.georgetown.edu": [6531], "www.theatlantic.com": [16324], "cbuy.wsj.com": [22625], "tchibo.hu": [16050], "stavropol.tpprf.ru": [22260], "ohm2013.org": [11661], "www.pengpod.com": [12567], "fws-l.de": [2024], "gisc-test.dwd.de": [19911], "l.bremi.cc": [2024], "bildung.sachsen.de": [14279], "help.remind.com": [13821], "c0-blog.flirble.org": [16267], "skoll.wf": [2024], "bmcanesthesiol.biomedcentral.com": [1931], "content.s1.citilink.ru": [19594], "www.playboystore.com": [12837], "www.internetweek.jp": [8285], "lss.today": [2024], "transmode.com": [16753], "download.bethere.co.uk": [16140], "emon.ga": [2024], "pons.us": [2024], "staging.kitsu.io": [8938], "s112.cnzz.com": [3328], "cas.ust.hk": [22412], "affiliate.mediatemple.net": [10177], "psmprogram.gov.au": [13258], "www.redditgifts.com": [13751], "mattb.org": [2024], "assets.porndig.com": [21464], "otba.us": [2024], "www.onbeing.org": [11848], "greystripe.com": [6930], "content.ad": [3612], "shopfinder.maxdome.de": [10106], "community.us.playstation.com": [12832], "www.freescale.com": [6161], "qntm.org": [21561], "adaptavist.com": [609], "ecco-jcc.oxfordjournals.org": [12222], "santanderbillpayment.co.uk": [14355], "auth.zalando.com": [18877], "link.p0.com": [8112], "shopatron.com": [14785], "emergency.wustl.edu": [18089], "www.kaspersky-cyberstat.com": [8819], "api.chain.com": [2986], "bmtwn.us": [2024], "totalhockey.co": [2024], "dof.dk": [4623], "femsyr.oxfordjournals.org": [12222], "www.kosice.korzar.sme.sk": [14198], "www.matchtv.ru": [20932], "rcph.us": [2024], "0.nul.lt": [2024], "gettyimages.com.au": [6604], "oneexchange.com": [11870], "*.clusters.de": [3321], "india272.in": [2024], "support.zabbix.com": [18868], "edih.me": [2024], "s8.ms": [2024], "cup.cm": [2024], "citizensadvice.org.uk": [19596], "cdn.cpnscdn.com": [3711], "www.webrtchacks.com": [18235], "www.threatmetrix.com": [16467], "2017hkmarathon.hk01.com": [7056], "sendcloud.sohu.com": [15171], "hsprod.investis.com": [8315], "ssl.linksynergy.com": [9397], "mbhd2013.stanford.edu": [15448], "arm1.xyz": [2024], "safelinking.net": [14294], "media2.giphy.com": [6646], "rpxnow.com": [13509], "csis.org": [2688], "lm.pe": [2024], "www.loopt.com": [9618], "webutils.warwickshire.gov.uk": [22532], "www.eme.moe": [19986], "stca.se": [2024], "hea.lthy.me": [2024], "mcjctxn02.hkjc.com": [20384], "go.musafir.com": [2024], "api-viewer.freifunk.net": [6170], "viznu.co": [2024], "footprintnetwork.org": [6695], "wiki.kairo.at": [8782], "password.it.umich.edu": [17354], "www.frack.nl": [6072], "hits.dealer.com": [4245], "archives.forums.openmandriva.org": [11992], "www.xchan.pw": [18641], "degreeaudit.osu.edu": [11797], "2.bonradio.com": [2024], "support.bistudio.com": [2195], "briefings.holyrood.com": [20393], "fiber.google.com": [6818], "blog.popcorn-time.se": [12961], "0sh.it": [2024], "der.be": [2024], "www.ethereum.org": [5367], "bmayfld.us": [2024], "computec-academy.de": [3535], "www.gigabyte.com": [6628], "calm.by": [2024], "melectronics.ch": [10255], "jnapier.us": [2024], "secure.vexxhost.com": [17744], "hwl.dj": [2024], "www.threema-forum.de": [16472], "zakermom.ictv.ua": [20476], "ncwit.org": [10931], "libclc.llvm.org": [9103], "detectify.com": [4389], "links.gp": [2024], "www.stg.xfinity.com": [22649], "zayo.com": [18901], "*.columbia.edu": [3450], "www.kanotix.net": [8797], "on.wcnc.com": [2024], "bit1.encore.pw": [2024], "go.candombe.tv": [2024], "l.tareq.tk": [2024], "fettl.es": [2024], "meetic.com": [10228], "vrt.outbrain.com": [12182], "vesko.ch": [2024], "target.smi2.net": [15069], "zhstatic.zhihu.com": [18956], "static.ddmcdn.com": [4010], "*.rgj.com": [13828], "morrish.website": [2024], "search.japantimes.co.jp": [8526], "virginmedia.com": [17822], "zhannepozheni.friday.ru": [20175], "rk.me.uk": [2024], "www.pindropsecurity.com": [21409], "paloaltonetworks.com": [12378], "fra.aloe4all.dk": [2024], "anilist.co": [1063], "my.st.com": [14249], "karmankardon.nl": [7200], "qt-project.org": [13364], "planet-lab.org": [12801], "smtx.co": [2024], "fujianguan.jd.com": [8434], "cindercooks.com": [3144], "kboo.st": [2024], "www.greenwood.org": [6923], "secure.stage-gettyimages.in": [6604], "www.zalando.se": [18877], "integriscu.ca": [8204], "services-sj.mediusviewer.com": [10212], "cbrac.co": [2024], "bizz.by": [2024], "gwcard.co": [2024], "ssbp.org": [2024], "www.idelreal.org": [20481], "www.awp.is": [1316], "cdn.kyivstar.ua": [9067], "websitealive2.com": [18242], "www.quch.io": [13396], "darkgifs.com": [2024], "s.kazendi.com": [2024], "tvt.kr": [2024], "sct.gov.au": [15689], "bigpicture.link": [2024], "www.dovetailservices.com": [4715], "www.1337x.org": [43], "dbayl.es": [2024], "www.okpartypix.com": [6511], "express.ikoula.com": [7966], "www.broadbandchoices.co.uk": [2369], "s0.plays.tv": [12847], "amahi.org": [955], "beartracks.berkeley.edu": [17329], "naturfotografen-forum.de": [6044], "commonimages.web.cern.ch": [2588], "lostfilm.info": [20875], "nav.uninett.no": [17280], "openhab.ci.cloudbees.com": [19622], "www.sustainability.wustl.edu": [18089], "www.flowbtc.com": [5924], "ktred.me": [2024], "gitbook.com": [6655], "tiger.fyi": [2024], "stockport-consult.objective.co.uk": [21225], "go.jd.com": [8436], "t.ablabs.it": [2024], "suchen.mobile.de": [21001], "unicef.to": [2024], "www.franceserv.fr": [6077], "ovdeals.ca": [2024], "russia.tv": [21698], "expectwww.play-asia.com": [12828], "b3.bigmrc.com": [2024], "jainsusa.news": [2024], "images.freescale.com": [6161], "www.ura.gov.sg": [22398], "on.ft.com": [2024], "www.zyngaplayersupport.com": [19034], "go.mudry.me": [2024], "support.citrixonline.com": [3181], "corina.io": [2024], "magadan.beeline.ru": [1778], "p4.hitravel.xyz": [2024], "cdj.oxfordjournals.org": [12222], "m.missmia.club": [2024], "www.niif.hu": [10969], "mpuls-schulung.intevation.de": [8293], "cdn.dev.iphoneincanada.ca": [8340], "s.excid3.com": [2024], "ethree.xyz": [2024], "www8.atomicorp.com": [1355], "hrapps.iciciprulife.com": [7917], "media.shaw.ca": [14748], "we.dji.com": [4029], "magazzino.friday.ru": [20175], "nedstat.com": [3454], "thread.com": [16464], "norwegianclass101.com": [11549], "shazo.in": [2024], "chzs.tk": [2024], "wksf.co": [2024], "download-ssl.halowaypoint.com": [7165], "www.openinfosecfoundation.org": [12047], "www.eztv.yt": [20063], "juliar.org": [8686], "autoconfig.cs.berkeley.edu": [17329], "finances.lemonde.fr": [9204], "ww14.smartadserver.com": [15049], "mndne.ws": [2024], "mda.rosevrobank.ru": [14024], "phishtank.com": [12659], "njhrfil.ms": [2024], "education.mongodb.com": [10591], "between.play-asia.com": [12828], "www.bitly.com": [2022], "mid.astrobl.ru": [19264], "smp7.de": [2024], "dl.heroesofnewerth.com": [14117], "app.musicmetric.com": [10754], "april.org": [1171], "oncology.georgetown.edu": [6531], "jlylf.link": [2024], "tbcdn.talentbrew.com": [22091], "hmas.in": [2024], "*.slooh.com": [14194], "www.stonewallscotland.org.uk": [21999], "nylaun.ch": [2024], "worldremit.com": [18543], "www.htbridge.com": [7105], "dutchbulbs.co.uk": [4805], "atml.io": [2024], "m.discoverhongkong.com": [19847], "bookings.jucy.co.nz": [8475], "go.richoku.com": [2024], "build.mailvelope.com": [9907], "metrics.defenseone.com": [4295], "spocc.walthamforest.gov.uk": [18061], "timetrade.com": [16530], "sbstech.info": [2024], "www.thesportbible.com": [22187], "getstarted.uow.edu.au": [17434], "lochem.nl": [11172], "stonewallscotland.org.uk": [21999], "clearv.us": [2024], "kovas.co": [2024], "admin.checkpoint.thomsonreuters.com": [16456], "sw.style": [2024], "www.mailgun.com": [9898], "typeface.nyt.com": [11035], "postimg.cc": [13024], "thedailybeast.com": [16341], "pps.rapida.ru": [13619], "1and1.ca": [70], "aokplus-online.de": [376], "myaccount.courierpostonline.com": [3713], "e-commerce.jm.com": [20642], "h7.hitravel.xyz": [2024], "d13.in": [2024], "developer.here.com": [7325], "cdn.alldebrid.com": [877], "content.mkt941.com": [14865], "www.bitquick.tw": [1969], "whf.rocks": [2024], "wiki.xfce.org": [18603], "offeredby.net": [12416], "scs.la": [2024], "nessys.it": [2024], "lockerdome.com": [9556], "bnppf.be": [2024], "mailgate.phys.ens.fr": [4922], "www.pcp.com": [12255], "app.waterfall.com": [22535], "gigaf.org": [2024], "www.zakon.belregion.ru": [19353], "uniteddomains.com": [17303], "img7.wlresources.com": [22604], "help.hushmail.com": [7636], "stlnmy.com": [2024], "www.lunarpages.co.uk": [624], "www.vitalgamers.com": [17876], "e1.xhamsterpremiumpass.com": [18607], "wiki.automotivelinux.org": [1454], "stda.ilius.net": [10228], "vsemmirom.1tv.ru": [88], "homer.ornl.gov": [11730], "telfair.co": [2024], "www.goroost.com": [20292], "114.1688.com": [51], "courierpickup.courierpost.co.nz": [3714], "cdn2.i-scmp.com": [15255], "media2.education.gov.uk": [19957], "on-ti.me": [2024], "sure.sc": [2024], "archive-10.kali.org": [8786], "ncpl.it": [2024], "static.eu.criteo.net": [3798], "virk.dk": [17826], "papaya-travel.infinum.co": [20526], "blog.zazzle.com": [18903], "northumberland.objective.co.uk": [21225], "slysoft.com": [15041], "www.daemon-systems.org": [4097], "vanillamastercard.com": [17649], "wiki.php.net": [12280], "5dec.ru": [216], "login.dynatrace.com": [4819], "subscribe.popsci.com": [12956], "chatter.com": [3039], "nashg.co": [2024], "msoftdl.360.cn": [142], "volunteer.wolframalpha.com": [18487], "uz.taobao.com": [16015], "idenyt.dk": [7942], "www.interactivepython.org": [20550], "es.witness.org": [18472], "tcli.ed.gov": [4881], "results.gentlelabs.com": [6514], "s2.cnzz.com": [3328], "sdev.co": [2024], "www.iosafe.com": [8331], "recrute.parrot.com": [12443], "j6e.uk": [2024], "www.rohc-lib.org": [13503], "www3.formassembly.com": [6018], "atlanticmetro.net": [1343], "serviweb.uned.es": [17248], "sndlp.com": [2024], "cpt.al": [2024], "www.bro.org": [2363], "mytennisambition.hsbc.com": [7090], "www.freedom-to-connect.net": [6142], "static.itunes.apple.com": [1151], "wind.mn": [2024], "assets.tmz.com": [15897], "bitcointalk.org": [1987], "www.footlocker.com": [5986], "fsurl.de": [2024], "tomsent.me": [2024], "ashelter.mx": [2024], "js.adlink.net": [658], "www.medgadget.com": [10155], "api.bintray.com": [1928], "www.reasoncoresecurity.com": [13697], "cbshe.com": [2024], "14.play-asia.com": [12828], "purduealum.org": [13277], "stackauth.com": [15424], "tbp.osu.edu": [11797], "www.silkspan.com": [14858], "slovniky.centrum.sk": [19548], "dangerous-tour.friday.ru": [20175], "northlancs.greenparty.org.uk": [6908], "ster.nlnetlabs.nl": [10980], "yfrog.com": [22678], "snydjack.xyz": [2024], "bbi.bz": [2024], "lmepv.com": [2024], "l2c.co.kr": [9076], "gamerz.news": [2024], "delovoe.tv": [19803], "petfinder.com": [12626], "cds.mytrinity.com.ua": [21075], "voyvil.co": [2024], "bugs.dojotoolkit.org": [4630], "www.spectator.co.uk": [21927], "s.treastrain.jp": [2024], "wiki.inka.f4.htw-berlin.de": [7103], "account.fir.im": [20106], "business.psbank.ru": [13231], "u2.com.es": [2024], "pltx.us": [2024], "aol.careerbuilder.com": [2853], "blendin.cc": [2024], "galeo.co": [2024], "myswitzerland.com": [21073], "cellio.co": [2024], "secure4.pipni.cz": [12287], "xml2rfc.ietf.org": [7725], "www.infopankki.fi": [8117], "pusher.com": [13296], "familie.nordost.aok.de": [376], "s3.gismeteo.lt": [20249], "s3.gismeteo.lv": [20250], "cyber.sci-hub.io": [14436], "sales-leads.bjcnc.scs.sohucs.com": [15173], "9-instant.okcupid.com": [11809], "*.filecloud.io": [5784], "mcwhirter.com.au": [10136], "rapfav.co": [2024], "*.getgo.de": [6596], "qwww.ipleak.net": [20571], "www.e17-stuff.org": [19921], "www.covacations.com": [3620], "globaloneteam.com": [6719], "livew.l.qq.com": [13329], "www.marineshop.net": [10007], "tckt.be": [2024], "flmsc.mg": [2024], "cfo.metcombank.ru": [10336], "syo.net.br": [2024], "ctrack.metrics34.com": [10344], "www.quickle.baden-wuerttemberg.de": [19302], "www.sickbits.net": [14820], "www.cpunks.org": [3744], "l.duchowney.org": [2024], "lawks.us": [2024], "shortrr.ga": [2024], "novosibirsk.biglion.ru": [19375], "*.wallst.com": [10032], "go.gtitours.org": [2024], "www.landalparkshop.*": [18579], "sopastrike.com": [5769], "ingushetiya.beeline.ru": [1778], "www.franchisegator.com": [6078], "thealth.tw": [2024], "jibbed.org": [20641], "wbw.co": [2024], "8-instant.okcupid.com": [11809], "colwizlive.andover.edu": [12653], "jjtesq.com": [2024], "tripsu.it": [2024], "contentuat.courierpost.co.nz": [3714], "toxsci.oxfordjournals.org": [12222], "pic3.58cdn.com.cn": [213], "help.greenchef.com": [6899], "mnki.es": [2024], "ktln.it": [2024], "travelnow.com": [16766], "dev-addons.wesnoth.org": [18298], "djuku.us": [2024], "ohfishal.pw": [2024], "occsn.co": [2024], "pul.re": [2024], "trekne.ws": [2024], "luosimao.com": [20891], "dyc.edu": [4088], "www.gradsch.osu.edu": [11797], "nottingham.ac.uk": [11567], "forty.cc": [2024], "mtrs.co": [2024], "www.nginx.com": [21133], "finmozg.ru": [5832], "opencsw.org": [11962], "ilxgroup.com": [7757], "vun.gl": [2024], "1shoppingcart.com": [64], "clang-analyzer.llvm.org": [9103], "bothsid.es": [2024], "sitewranglers.freedesktop.org": [6102], "gldushi.ru": [2024], "asset9.wwf.ch": [18028], "proco.re": [2024], "www.autoreview.ru": [19277], "mychildroom.cdnvideo.ru": [19536], "pbid.pro-market.net": [13157], "ppai.us": [2024], "ideas.foreignpolicy.com": [6002], "lightthenight.org": [9359], "sitesoft.ru": [21841], "www.kammeratadam.dk": [8792], "m6r.fr": [9709], "thxd.at": [2024], "giotto.me": [2024], "www.evil32.com": [5449], "translator.dji.com": [4029], "communities.opentext.com": [12020], "www.expeditedssl.com": [5494], "smart.1688.com": [51], "ombpr.co": [2024], "labourclick.uk": [2024], "socbiz.ch": [2024], "u.hitravel.xyz": [2024], "uv.rs": [2024], "ical.in": [2024], "wi.ht": [2024], "expresslane.apple.com": [1151], "savvysme.com.au": [14379], "www.teach-ats.ed.gov": [4881], "beichtha.us": [2024], "img.store.sogou.com": [15168], "m.maps.yandex.kz": [18743], "apps.openobjects.com": [12053], "speedtree.com": [15325], "track.tiara.daum.net": [4211], "templates.libreoffice.org": [9327], "securelp.longtailvideo.com": [9601], "cvs.linux-mips.org": [9428], "thelocal.es": [22166], "secure.wellcome.ac.uk": [22559], "xing.com": [18666], "blujazz.co": [2024], "my.beeline.kz": [19345], "hbn.link": [2024], "tricolumbia.org": [16807], "ic-fusioncrm.oracle.com": [12116], "delify.tk": [2024], "kciii.co": [2024], "education.barnsley.gov.uk": [19318], "partnershipforpatients.cms.gov": [19630], "tnker.in": [2024], "appmo.fr": [2024], "status.teachable.com": [22104], "pantarhei.sk": [12399], "www.pewdiepie.net": [12635], "www.menulog.com.au": [20964], "ophirum.spiegel.de": [15342], "b.grvcdn.com": [6968], "wangyin.com": [18068], "hrn.tw": [2024], "*.locaweb.com.br": [9555], "leader-manager.com": [9212], "www.316space.com": [2144], "b.coopey.me": [2024], "natm.us": [2024], "www.gtrk.tv": [20317], "ogas.in": [2024], "minfin.nl": [11172], "42yogis.in": [2024], "dbcred.com": [2024], "surgut.metro-set.ru": [20971], "th-nuernberg.de": [16239], "pianoyuki.co": [2024], "mvm.ug": [2024], "refog.com": [13782], "paypanel.courant.com": [19699], "hics.cms.gov": [19630], "kirb.tk": [2024], "heroicsear.ch": [2024], "collectd.wesnoth.org": [22562], "promisejs.org": [21514], "www.womenonwaves.org": [18497], "blogs.savethechildren.org.uk": [14376], "h5.chaucanh.net": [2024], "www.doubleclick.com": [4709], "partnernet-internal.symantec.com": [15780], "eastcarolina.worldcat.org": [18536], "clouddisk.tdc.dk": [15862], "integrablesystems.oxfordjournals.org": [12222], "ted.vc": [2024], "allieand.co": [2024], "med.stanford.edu": [15448], "www.verifiedvotingfoundation.org": [17709], "www.domaincamp.de": [4644], "banki.wp.pl": [18012], "pcisecuritystandards.org": [12253], "ad.71i.de": [14694], "s-b.one": [2024], "websitealive6.com": [18242], "lists.junge-piraten.de": [8695], "speedys.ml": [2024], "*.eimg.com.tw": [5112], "www.eit.hs-karlsruhe.de": [7587], "blog.openstreetmap.org": [12015], "thepirate.zone": [21522], "translate.centreon.com": [2965], "rostov-na-donu-realty.rambler.ru": [13600], "www.centosblog.com": [2951], "neteller-group.com": [12103], "l.dhyw.com": [2024], "linernot.es": [2024], "prola.aps.org": [976], "completelyprivatefiles.com": [3527], "prrll.com": [2024], "www.kodi.tv": [8965], "stumcd.uk": [2024], "bugzilla.suse.com": [14262], "iosbsinfo.hkjc.com": [20384], "nwf.lt": [2024], "alojamiento01.unizar.es": [17441], "*.youversion.com": [18801], "www.cccure.com": [2555], "mootipass.com": [10623], "sibeli.us": [2024], "ba.sinacloud.com": [14908], "thepiratebay.immunicity.date": [21524], "fmlf.me": [2024], "www.rother.gov.uk": [14031], "www.bequiet.com": [1753], "lzurl.com": [2024], "pdig.me": [2024], "yahooanswers.tumblr.com": [16897], "mxghz.co": [2024], "www.compendium.com": [3519], "live.stanford.edu": [15448], "www.tableau.com": [15962], "www.shortlist.com": [14795], "j.asahipc.net": [2024], "www.globusreisen.ch": [7561], "72.mvd.ru": [21055], "fteorica.unizar.es": [17441], "beaucro.me": [2024], "accounts.unity3d.com": [17310], "familymedicine.georgetown.edu": [6531], "static.infowars.com": [8132], "ethique.cfjlab.fr": [2604], "media.business.shaw.ca": [14748], "vvc.me": [2024], "bpwr.co": [2024], "olg.link": [2024], "gnls.in": [2024], "hvo.link": [2024], "webmdhealth.com": [18168], "api.filepicker.io": [5787], "jobs.lshtm.ac.uk": [9588], "aytr.co": [2024], "m.friendlyduck.com": [6193], "pltyp.us": [2024], "cloud.quickline.com": [21566], "i-koruna.com": [7755], "dsmrq.es": [2024], "bayc.us": [2024], "cse.osu.edu": [11797], "bandaancha.eu": [19312], "envihistrevi.oxfordjournals.org": [12222], "simage2.pubmatic.com": [13241], "vod02.nvcc.edu": [11627], "www.mobilepay.dk": [10535], "surfermag.com": [15715], "ringr.biz": [2024], "loanhub2.capitalone.com": [2831], "alleg.co": [2024], "serbia.usembassy.gov": [22406], "brad.brunel.ac.uk": [19459], "arkhangelskaya-obl.beeline.ru": [1778], "static-freedomusainc1.netdna-ssl.com": [1462], "www.impo.ch": [3647], "lazylife.ca": [2024], "www.mobify.me": [10530], "kat-de-paris.fr": [8829], "pbra.in": [2024], "pp.bme.hu": [1556], "www.rule34.xxx": [14087], "widgets.yandex.com": [18742], "static.youmix.co.uk": [18806], "i.pavl.me": [2024], "cnp.am": [2024], "aflete.fitness": [2024], "land.xiaomi.net": [18663], "onegreenplanet.org": [11871], "p29.tips": [2024], "ausp.lu": [2024], "tz.rs": [2024], "s.u-1.net": [2024], "s3b.pstatp.com": [16680], "bundb.li": [2024], "st1.openlistings.co": [12051], "smsi.me": [2024], "radar.cedexis.com": [2935], "shield.sitelock.com": [14934], "www.veterans-aid.net": [17742], "js-d.ml": [2024], "b.ngx.cc": [11415], "wis.tw": [2024], "n1.play-asia.com": [12828], "www.osmocom.org": [12159], "m.hilfe-center.1und1.de": [91], "newbusiness.psbank.ru": [13231], "www.skortekaas.nl": [14190], "nozl.it": [2024], "sure-assist.com": [15709], "porta.codes": [12979], "www.informer.com": [8128], "url.dror.io": [2024], "www.edu.rosminzdrav.ru": [21674], "gwat.co": [2024], "proxy.coin.space": [19642], "www.heavy.com": [7278], "chifeng.jd.com": [8434], "www2.firsttechfed.com": [5854], "www.eticketing.co.uk": [16495], "s.umeng.com": [22363], "dbrd.la": [2024], "evisaforms.state.gov": [17146], "on.fleck.co": [2024], "l.techhaven.org": [2024], "thunder.lp0.eu": [9648], "madpa.ws": [2024], "webmail.stanford.edu": [15448], "goalworthy.com": [6782], "phide.lt": [2024], "dl.jav4u.net": [2024], "www.openssh.com": [12006], "webc.news": [2024], "*.netfirms.com": [11266], "dz2cdn3.dzone.com": [4090], "a.ruben.ws": [2024], "foldingforum.org": [5963], "nl.piliapp.com": [12706], "carboyc.am": [2024], "dev.tiki.org": [16520], "blog.chaturbate.com": [3040], "rgcc.me": [2024], "usca.logmein.com": [9559], "wustlconnections.com": [18090], "api.co": [2024], "media.collyers.ac.uk": [3433], "wiki-archive.emfcamp.org": [19987], "l.cpt.ph": [2024], "icabinet.binbank.ru": [1922], "m12.baidu.com": [1641], "admin.1and1.ca": [70], "cicus.us.es": [17502], "kuwait.q8car.com": [13321], "go.adrianb.net": [2024], "www.abdullah-ocalan.com": [464], "looloo.com": [9613], "www.barnesjewish.org": [1704], "p6.pstatp.com": [16680], "www.speedworldgrafix.com": [15326], "dougbond.cc": [2024], "www.pdf-online.com": [21375], "www.compassislam.com": [3517], "store.encase.com": [6988], "xym.gdl.netease.com": [11228], "tinh.in": [2024], "liveandwork.me": [2024], "www.kasandbox.org": [8888], "swiss.ky": [2024], "www.account.norton.com": [11545], "serversaurus.com.au": [14680], "www.faancollegenetwork.org": [5540], "m0therfuck.in": [2024], "www.xxxbunker.com": [18699], "go.gnu.su": [2024], "lscpt.ch": [20882], "irmafiles.nps.gov": [11122], "macit.co": [2024], "ssdrm.samsung.net": [14334], "bransonzipline.com": [2307], "abo.heise.de": [7288], "www.bitquick.me": [1968], "shadowproof.com": [14714], "jtown.xyz": [2024], "go.kora.plus": [2024], "rdot.org": [13468], "c.velaro.com": [17684], "front.pochtabank.ru": [12876], "my.mayday.us": [10117], "r24617834.sync.app.asana.com": [1265], "git.linuxtv.org": [9431], "winston.parabola.nu": [12412], "15mpedia.org": [47], "img.idealo.com": [7931], "kik.com": [20716], "u.infilmity.com": [2024], "academy.9to5mac.com": [255], "us.ht": [2024], "eqx-itx4.smartadserver.com": [15049], "www.eforsa.pl": [4905], "www.dennikn.sk": [4349], "thrillist.com": [22201], "www.alternet.org": [925], "mail.qnetp.net": [13356], "ebys.anadolu.edu.tr": [1029], "changingclimate.osu.edu": [11797], "multiple.js.org": [20657], "brieflaufzeiten.de": [19450], "navigator.raiffeisen.ru": [13587], "www.legiscan.com": [9245], "ru.malwarebytes.com": [9940], "webmail4.names.co.uk": [11064], "ivystrate.gy": [2024], "dds2dds.com": [4011], "s.awr.org": [2024], "images.hertz247.com": [7371], "mediametrics.ru": [20950], "www.ams.org": [367], "fh-kiel.de": [17383], "testcloud.de": [16216], "cloudfront.bitmovin.com": [2031], "account.blesta.com": [2089], "r0b.info": [2024], "indiewebcamp.com": [8076], "www.provencredible.com": [13215], "www.betanews.com": [19359], "lightning.bitflyer.jp": [1958], "core.lc": [2024], "www.biostatistics.wustl.edu": [18089], "planet.diasporafoundation.org": [4438], "mgllc.me": [2024], "wills.ly": [2024], "*.unique-vintage.com": [17284], "eiu.io": [2024], "m.taxi.yandex.com": [18742], "bmoor.ms": [2024], "*.lithive.com": [9468], "actionnetwork.org": [19057], "www.pubpeer.com": [13245], "www.spring.io": [15374], "www.umd.edu": [17351], "x.f0.nz": [2024], "www.canon.ee": [2822], "hockey-nhl.lemonde.fr": [9204], "heatingoil.fossil.energy.gov": [5243], "www.wilmu.edu": [18411], "extranetapps.hongkongairport.com": [20402], "www.hitleap.com": [7425], "www.bverfg.de": [2449], "autodiscover.lsbu.ac.uk": [9111], "www.canon.es": [2822], "ad.unwire.hk": [17460], "app.hbooker.com": [20354], "hswat.gq": [2024], "robbie-s.biz": [2024], "media.monster.com": [10602], "docs.imgix.com": [20504], "hkn.eecs.berkeley.edu": [17329], "*.bepress.com": [1814], "www.theplatform.com": [16308], "www.ece.osu.edu": [11797], "login.wosign.com": [18483], "orbb.ec": [2024], "f.fastcompany.net": [5670], "cnt.al": [2024], "youtube.co.hu": [18800], "realtime.co": [13692], "www.thechinastory.org": [16334], "f.icetravel.xyz": [2024], "8tracks.com": [245], "trs.webprospector.de": [18177], "connectid.no": [19669], "dwp.link": [2024], "patchwork.freedesktop.org": [6102], "en.jd.com": [8436], "jmp.esser.ro": [2024], "oscar4.beget.com": [19347], "rgne.ws": [2024], "tip.tcl.tk": [16051], "dyna.md": [2024], "dyna.me": [2024], "cdn-d-static.pornhub.com": [12972], "advertising.washingtonpost.com": [18086], "anshun.jd.com": [8434], "consult.cheshirewestandchester.gov.uk": [19575], "link.flimbu.com": [2024], "*.archbang.org": [1188], "framabag.org": [6075], "orientation.georgetown.edu": [6531], "fenland.gov.uk": [5735], "swan.sk": [15742], "asoy.me": [2024], "parking.bournemouth.gov.uk": [2268], "jdi.bz": [2024], "*.ezoshosting.com": [4993], "mycelium.com": [21063], "outlook.consumer.org.hk": [3599], "nud.gr": [2024], "woof.media": [2024], "hamarivani.in": [2024], "yourcareyourway.lambeth.gov.uk": [20773], "contact.georgetown.edu": [6531], "*.www.fujitsu-webmart.com": [6223], "www.shippingwatch.dk": [14767], "nud.gd": [2024], "iptc.org": [7853], "hostingmanager.secureserver.net": [14574], "url.inra.fr": [2024], "huify.co": [2024], "eic.oxfordjournals.org": [12222], "s.clrd.nl": [2024], "bch.news": [2024], "developer.cloud.unity3d.com": [17310], "swra.oxfordjournals.org": [12222], "horo.mail.ru": [9891], "www.status.io": [21983], "spacex.com": [15278], "my.veritas.com": [22440], "mathias-kettner.de": [10079], "leiadc.sc": [2024], "i3.social.s-msft.com": [14114], "sterlitamak.startsmile.ru": [21980], "bivol.bg": [2049], "*.discover.com": [4536], "subscribe.csmonitor.com": [19737], "st0.userapi.com": [22408], "link.xaquin.es": [2024], "www1.gotomeeting.com": [6769], "*.powells.com": [13034], "clubsci.net": [2024], "solikamsk.startsmile.ru": [21980], "wildlifeofyourbody.org": [1797], "www.sysmocom.de": [15821], "sa.www4.irs.gov": [7821], "pcnet.uno": [2024], "gearl.ch": [2024], "sns.ias.edu": [7673], "www7.pipni.cz": [12287], "www.rpggeek.com": [13507], "prolexic.com": [13191], "www.sec-consult.com": [14156], "rivalseek.com": [13962], "discuss.dev.twitch.tv": [16961], "snwf.co": [2024], "lh4.google.co.*": [6821], "academy.hubspot.com": [7599], "www.cnv.com": [19632], "livemar.ly": [2024], "bhoot.biz": [2024], "socom.ms": [2024], "invest.khabkrai.ru": [20709], "t.envsn.co": [2024], "irtf.org": [7822], "www.inconstruction.kairo.at": [8782], "signup.bigv.io": [1883], "answers.openmrs.org": [11989], "christ-swiss.ch": [3647], "git.gnu.org": [6337], "www.aim.com": [348], "advq.yandex.com.tr": [18740], "consilium.europa.eu": [5411], "grnol.co": [2024], "*.onion.link": [16638], "atgtk.it": [2024], "cdn.torrentbit.net": [16656], "www.digikam.org": [4462], "www.roboform.com": [13981], "blog.proxpn.com": [21504], "fbx.bz": [2024], "go.gopride.com": [2024], "www.zenmate.ro": [18917], "zscore.mit.edu": [9761], "fiuza.me": [5871], "link.elo7.com": [2024], "cam.bingads.microsoft.com": [10396], "z.onemission.ca": [2024], "quotes.nyi.net": [11031], "assets.vodafone.co.uk": [17900], "info-svc-012.obit.ru": [21223], "grtplc.net": [2024], "x.rm2e.net": [2024], "vitrend.cdnvideo.ru": [19536], "games.samsclass.info": [14324], "chroniclesofgeorge.com": [16335], "www.nabtrade.com.au": [10905], "seower.com": [14652], "pewio-www.bjcnc.scs.sohucs.com": [15173], "mpd.im": [2024], "w.ppixls.com": [2024], "huffpost.click": [2024], "artwa.re": [2024], "beta.fastly.com": [5676], "goabr.co": [2024], "scoreboard.crawl.develz.org": [19822], "gtl.osu.edu": [11797], "australia.play-asia.com": [12828], "search.norton.com": [11545], "www.hostdeclaration.ru": [4274], "signin.wsj.com": [22625], "flippen.me": [2024], "pcforalla.idg.se": [7709], "www.alertscc.com": [14401], "www.franklinveaux.com": [6082], "leakedsource.com": [9222], "m.rts.ch": [21957], "guest-services.desy.de": [4386], "bitsplit-stage.tokenly.com": [22229], "tmldr.eu": [2024], "nbmecommunity.nature.com": [11140], "c.gcaptain.com": [6289], "url.ebisu.in": [2024], "jrobh.com": [2024], "features.hrw.org": [7616], "ftp.leboncoin.fr": [20796], "c.o0bg.com": [21218], "globalsources.com": [6714], "fpf.org": [20144], "hits.truehits.in.th": [16846], "vaultoro.com": [22430], "tuiguang.58.com": [212], "nolae.at": [2024], "favrskov.dk": [5681], "krasnoyarsk.rt.ru": [13529], "poczta.agmk.net": [772], "s.etree.biz": [2024], "id.foreignpolicy.com": [6002], "ndstr.us": [2024], "trilogygolfclub.com": [8443], "www.milton-keynes.gov.uk": [10437], "ftpmirror.sv.gnu.org": [6337], "*.zorpia.com": [19009], "worfo.lk": [2024], "www.tersesystems.com": [16203], "j35.us": [2024], "*.khn.nl": [8740], "vpnbook.com": [17951], "bmcpsychology.biomedcentral.com": [1931], "tdr.network": [2024], "ogdeli.co": [2024], "*.schallert.com": [14410], "forum.loverpi.com": [9640], "go.pehrlich.com": [2024], "store.isc.org": [7823], "45r.co": [2024], "moviel0vers.cf": [2024], "bit.seo4.net": [2024], "www.engelschall.com": [5253], "dangpu.com": [4132], "f5rsrc.wustl.edu": [18089], "www.tandridge.gov.uk": [16006], "acesso.uol.com.br": [17079], "mystockoptions.com": [10832], "learnfren.ch": [2024], "www.privatewifi.com": [13151], "hospital.uillinois.edu": [17034], "falcon9.beget.com": [19347], "a.rembish.org": [2024], "beaudo.me": [2024], "bugzilla.lysator.liu.se": [9097], "buyveteran.com": [2486], "inf.tu-dresden.de": [15937], "ua.godaddy.com": [6755], "app.farmlogs.com": [5654], "neomailbox.com": [11194], "web.ondarossa.info": [11863], "chford.us": [2024], "carbyr.uk": [2024], "oxrep.oxfordjournals.org": [12222], "ensigniamail.com": [5274], "pcr-online.biz": [21372], "bboy.dj": [2024], "wallabag.org": [18054], "rickey.io": [2024], "www.tucowsinc.com": [16887], "www-public.slac.stanford.edu": [15448], "meraki.com": [10294], "www.reading.ac.uk": [17418], "itactic.com": [7863], "login.oracle.com": [12116], "razine.do": [2024], "www.nzz.ch": [21216], "alist.ly": [2024], "shbbr.co": [2024], "www.cutedigi.com": [3937], "metro.yandex.by": [18739], "ns5.theregister.co.uk": [22182], "cdn.final4ever.com": [5804], "www.gametracker.com": [6423], "2.sportbox.ru": [21942], "crux.nu": [3833], "dakchi.info": [2024], "m.rabota.yandex.by": [18739], "planet.debian-administration.org": [4258], "www.112-akersloot.nl": [25], "gmail.ncsu.edu": [11531], "sv.cloudflare.com": [3284], "sieciovo.pl": [14829], "b3.mookie1.com": [10617], "planete.insa-lyon.fr": [7777], "portlandoregon.gov": [3197], "mgmadv.com": [2024], "bend.pk": [2024], "*.pair.com": [12365], "cloudconnectors.eloqua.com": [5172], "www.radsec.org": [13568], "dps.uiuc.edu": [17030], "hostdeclaration.ru": [4274], "trust.ontraport.com": [21261], "www.library.wustl.edu": [18089], "forum.ivorde.com": [8415], "panopticlick.com": [12393], "tate.ga": [2024], "sprngtd.co": [2024], "archive.is": [1194], "*.wsj.com": [11361], "inwx.es": [8230], "shantounong.jd.com": [8434], "www.fokus.no": [5960], "email-comparethemarket.com": [19985], "gutefrage.net": [7011], "secure.gettyimages.se": [6604], "loadaverage.org": [9543], "www.homeaway.com": [20396], "www.serverdensity.com": [14675], "capi.tl": [2024], "autodiscover.xhg1smtp.clp.com.hk": [2636], "tiv.re": [2024], "nutyx.org": [21207], "usabags.taobao.com": [16015], "akismet.com": [811], "afct.is": [2024], "i.hra7.com": [2024], "askhelp.co": [2024], "adclient.play-asia.com": [12828], "t6k.co": [22080], "*.dirxion.com": [4525], "lanbill.forceline.net": [20134], "primorye.rt.ru": [13529], "walicdn.wallstcn.com": [18057], "verifyaddress.courierpost.co.nz": [3714], "avpl.us": [2024], "www.lab-nation.com": [9138], "i.holder.com.ua": [7456], "biblioteca.unizar.es": [17441], "www.rhinosupport.com": [13919], "www.tele2.se": [16135], "nic.cern": [2588], "milepoint.com": [10430], "wordnik.com": [18525], "laughingsquid.us": [9178], "t.cemnet.com": [2024], "3d4med.com": [2024], "*.navteq.com": [10914], "service.angebot.sky.de": [14990], "*.cdn2.cloudfiles.rackspacecloud.com": [13567], "kuleuven.be": [8832], "erhvervsstyrelsen.dk": [5329], "bez.uz": [2024], "riscon.cz": [13956], "n0ve.la": [2024], "read.timesprintingdigital.com": [16537], "*.marvell.com": [10050], "chromeexperiments.com": [3122], "www.thesixthaxis.com": [16314], "elements.plymouth.ac.uk": [12873], "www.bestmastersdegrees.com": [1834], "link.shadow.cat": [2024], "gavinnewsom.com": [6451], "imaj.co": [2024], "www.revresponse.com": [13896], "mcdfeedback.com": [2024], "bordeaux.ulule.com": [17224], "home.sch.bme.hu": [1556], "deliver2.com": [4313], "www.interaction.bell.ca": [1792], "www.scmagazineus.com": [14386], "dailystar.com.lb": [19752], "lnk.adslweb.net": [2024], "cmaxi.me": [2024], "irwinlaw.com": [8356], "egopay.com": [5103], "kidp.as": [2024], "*.msnbc.msn.com": [9808], "gndle.me": [2024], "passport.58.com": [212], "creative.metalyzer.com": [10333], "artw.ru": [19241], "www.servedbyadbutler.com": [572], "linnrecords.com": [9399], "semiluki.beeline.ru": [1778], "1.thetech.today": [2024], "go.mjmetts.com": [2024], "cs8.myzuka.fm": [21079], "pl.rateyourmusic.com": [13633], "rl.mail.qq.com": [13329], "www.votervoice.net": [17936], "gutscheine.heise.de": [7288], "frndz.me": [2024], "www.4sysops.com": [203], "parkingpcns.northumberland.gov.uk": [21160], "wfil.uk": [2024], "www.ymlp.com": [18813], "jkef.me": [2024], "buryatiya.rt.ru": [13529], "app.picnichealth.com": [12694], "hnd.io": [2024], "www.cs.ox.ac.uk": [17359], "w.soundcloud.com": [15231], "www.pin.ed.gov": [4881], "jayni.ch": [2024], "discoversignage.com": [4542], "itradecimb.co.id": [2617], "webmail.profintel.ru": [21507], "gcbc.mn": [2024], "dl4free.com": [79], "tinker.cr": [2024], "www.tricolor.tv": [22287], "www.facepunch.com": [5613], "agent.directadvert.ru": [4512], "uk-business.sky.de": [14990], "discovery.org": [4544], "alteeve.ca": [924], "apps.ioninteractive.com": [20561], "www.marketingoops.com": [10023], "www.umdrightnow.umd.edu": [17351], "uplay.ubi.com": [17475], "apt-longview.linode.com": [9401], "mycm.fr": [2024], "retrofestive.ca": [13884], "stets.co": [2024], "theti.gr": [2024], "wxajb.me": [2024], "mcy.io": [2024], "www.coub.com": [3698], "uhoo.im": [2024], "knyaginino.startsmile.ru": [21980], "www.merchdirect.com": [10297], "www.etnasoft.com": [5376], "strada.io": [2024], "admin.open.kent.gov.uk": [8867], "link.webmoney.ru": [18173], "g.samiq.co": [2024], "img.x-cart.com": [18583], "www.coreos.com": [3667], "lkr.ms": [2024], "nrao.edu": [10994], "vimeopro.com": [17803], "lists.rtems.org": [13532], "www.ssls.com": [14244], "www.bezeqint.net": [1862], "www.ple.hku.hk": [20387], "www.hs.fi": [7311], "placeanad.chicagotribune.com": [3076], "javi.top": [2024], "site.yandex.com": [18742], "www.onegooddriver.com": [11864], "sptt.me": [2024], "index.umeng.com": [22363], "aclutx.org": [309], "family.beeline.ru": [1778], "www.cpfp.cancer.gov": [2819], "dms.hkexpress.com": [20383], "gumgum.com": [7001], "bizba.sh": [2024], "www.documentchecker.com": [4618], "*.turbotax.com": [8300], "titanic-magazin.de": [16576], "123ehost.com": [37], "madinamila.no": [2024], "cambodiadaily.com": [2779], "www.contactus.com": [3608], "firefly.jstor.org": [8472], "www.kraken.com": [9015], "www.voa-islam.com": [17583], "mysports.tomtom.com": [16615], "refer.envisionfinancial.ca": [5298], "investments.georgetown.edu": [6531], "webhop.co.uk": [2024], "fcs.dell.com": [4317], "hdi.to": [2024], "www.salt.zone": [21723], "premium.members.webs.com": [18237], "planet.mageia.org": [9865], "forum.dji.com": [4029], "crj.oxfordjournals.org": [12222], "gundamwww.play-asia.com": [12828], "tkylndry.uk": [2024], "techwat.ch": [2024], "i.qlutch.me": [2024], "www.whispergifts.com": [18341], "www.schaffner.org": [14409], "whoishussa.in": [2024], "*.hackerspace.gr": [6897], "*.northwestern.edu": [11544], "members.trust-guard.com": [16851], "domeny.cz": [19874], "img3.cache.netease.com": [11228], "idgmedia.idg.se": [7709], "pulllist.comixology.com": [3466], "www.freeboard.io": [20155], "credit.alibaba.com": [857], "cdnvideo.ru": [19536], "youtube.ae": [18800], "zgam.es": [2024], "voiceact.rs": [2024], "bwry.co": [2024], "partner.popin.cc": [12954], "www.correctiv.org": [3686], "blmt.ht": [2024], "airelf.com.tw": [19123], "jobs2web.com": [8612], "metrics.pcmag.com": [18960], "support.wosign.com": [18483], "maryel.rt.ru": [13529], "bldrd.us": [2024], "tjpc02.dftoutiao.com": [19826], "images.domainwho.is": [4654], "injections.readcube.com": [13666], "search.maximintegrated.com": [10108], "huaibei.jd.com": [8434], "company.wizards.com": [18477], "livesync.ly": [2024], "export.openstreetmap.fr": [12079], "www.zakird.com": [18875], "pages.ebay.com": [4865], "areaware.co": [2024], "z.youku.com": [18804], "www.piratetavern.org": [22174], "nibcdirect.nl": [10956], "elford.uk": [2024], "hb-config.vntsm.com": [22481], "l.docjobs.at": [2024], "homebuzz.co.uk": [7485], "mylaw.wustl.edu": [18089], "khanty-mansysk.startsmile.ru": [21980], "es.chaturbate.com": [3040], "tedxinnovations.ted.com": [15871], "thedilbertstore.com": [16344, 16345], "kladr.enter.ru": [20002], "lg.com": [9090], "eprofile.osu.edu": [11797], "gewinnspiel.congstar.de": [3580], "cdn.plug.dj": [12862], "earlyyears.kirklees.gov.uk": [8929], "s.haqaq.com": [2024], "www.shibboleth.net": [14763], "www.zlavadna.sk": [18978], "enahost.com": [5220], "freshcode.club": [6182], "*.anonymizer.com": [1086], "www.finnchamber.com": [15055], "geeksquad.co.uk": [6481], "*.dolimg.com": [4634], "pace2race.com": [12340], "multiweb.junge-piraten.de": [8695], "wedgui.de": [2024], "dodiklink.tk": [2024], "www.canlialem.com": [2821], "www.epixmedia.co.uk": [5312], "the.cr": [2024], "onlinesales.vanaqua.org": [17637], "webanmeldung.hslu.ch": [7589], "bo.st": [2024], "www.virtualglobaltaskforce.com": [22469], "my.freezone.co.uk": [6165], "go.zu.lc": [2024], "blog.luca-steeb.com": [20886], "*.details.com": [4388], "www.max.se": [10101], "pbx.balnet.ru": [19310], "s6.rr.itc.cn": [8401], "www.shareholder.ru": [14740], "www.deepdyve.com": [4282], "on.nypl.org": [2024], "go.pld.com.br": [2024], "lnk.tryl.es": [2024], "www.fri-gate.org": [20174], "galleryofguns.com": [20197], "yesnet.me": [2024], "iwoulddo.it": [7877], "l.derby.io": [2024], "*.wuala.com": [18571], "go.minutes.io": [2024], "www.familie.nordost.aok.de": [376], "islamicboard.com": [8378], "invizbox.io": [8322], "giz.pw": [2024], "www.cloudforge.com": [3286], "nureva.co": [2024], "shop.flixbus.de": [5911], "ztsl.co": [2024], "myportal.lacie.com": [9134], "www.tfaforms.com": [16235], "www.safeassign.com": [14288], "www.ssdp.org": [15606], "secure.stage-gettyimages.ae": [6604], "rule34.xxx": [14087], "jsuol.com.br": [8670], "www.more-onion.com": [10627], "shop.flixbus.dk": [5911], "sitewww.play-asia.com": [12828], "epochstats.com": [5313], "r24625344.sync.app.asana.com": [1265], "kubie.link": [2024], "assets.crucial.com": [3828], "lizard-cloud.htwk-leipzig.de": [7596], "selfhelp.carphonewarehouse.com": [2871], "hw.infowars.com": [8132], "avept.it": [2024], "tech.appear.in": [1145], "fukushima.inl.gov": [20537], "www.microchip.com": [10386], "www.kuleuven.ezproxy.kuleuven.be": [8832], "wiki.c-base.org": [2506], "vmedar.tk": [2024], "centrinvest.ru": [2966], "kidn.im": [2024], "cov.com": [3720], "docs.convox.com": [3634], "cp.netdna.com": [11227], "i4.3conline.com": [169], "www.greenserver.ch": [20305], "r24820219.sync.app.asana.com": [1265], "www.songlist.hclippr.com": [7034], "www.mypoints.com": [10820], "vcd.org": [17560], "www.kompany.com": [8980], "splone.com": [15354], "browsershots.org": [2389], "mdia.im": [2024], "pin-card.dengisend.ru": [4344], "lispac.lsbu.ac.uk": [9111], "pk4.md": [2024], "sgnl.link": [2024], "kensmoore.co": [2024], "lpc.web.cern.ch": [2588], "yelpreservations.com": [22675], "video14.0xdb.org": [10], "online.roboform.com": [13981], "cortera.com": [3696], "www.springrts.com": [15377], "my.hastings.gov.uk": [7225], "www.treasury.gov": [16778], "txh.xhcdn.com": [18605], "ce-gbc.ca": [2024], "ledte.ch": [2024], "rxs2.answcdn.com": [1095], "pxg.to": [2024], "uolibraries.worldcat.org": [18536], "transversal.com": [16759], "goodsie.com": [6815], "ibank.otpbank.ru": [12165], "www.delawaretoday.com": [4306], "www.tnsglobal.com": [15906], "art.netease.com": [11228], "www-thphys.physics.ox.ac.uk": [17359], "www.thegef.org": [8258], "deedl.ink": [2024], "archive.asi.ru": [19256], "adracar.es": [2024], "fraedom-cdn.com": [20145], "www1.sportschau.de": [18113], "www.raptureready.com": [13623], "sell.stubhub.de": [15602], "ripar.in": [2024], "www.verizon.net": [22441], "www.freestyle.vc": [6163], "eset.de": [4947], "b.vlad.im": [2024], "implementationscience.biomedcentral.com": [1931], "happyhardcore.com": [7188], "applyfiu.com": [2024], "*.stratum0.org": [15580], "gorjaeo.us": [2024], "file.2412.org": [2024], "leagueoflegends.com": [9220], "www.wellbid.com": [18285], "insta.gf": [2024], "yalta.biglion.ru": [19375], "test.appuio.ch": [1168], "e-klase.lv": [4848], "cldy.co": [2024], "photo.play-asia.com": [12828], "public.webfoundation.org": [18198], "www.fd.ulaval.ca": [17319], "behindthename.com": [19348], "reason.com": [13696], "metrics-log.radioplayer.co.uk": [13581], "s.psy-clone.com": [2024], "www.newfamilysocial.org.uk": [21120], "liuliang.jd.com": [8436], "fotoblur.com": [6053], "essen.social": [2024], "davidtravel.net": [2024], "www.hosts.co.uk": [7551], "meetrics.com": [10230], "sudan.usembassy.gov": [22406], "alislam.org": [819], "theono.my": [2024], "www.hboshopeu.com": [20355], "studiengangstest.de": [16239], "cmu.is": [2024], "proxy06.newsnetz.ch": [11371], "sprints.kde.org": [8735], "avatar.threema.ch": [16473], "trt.run": [2024], "resources.mynewsdesk.com": [10882], "shr.mn": [2024], "www.cxcloud.com": [3942], "sprutio.beget.com": [19347], "www.gamesites.cz": [6418], "oman.usembassy.gov": [22406], "piratelinux.org": [12744], "www.mcdee.com.au": [10137], "support.opendns.com": [11969], "khronos.org": [8889], "ask.leagueoflegends.com": [9220], "b.yandex.com": [18742], "amnestyusa.org": [1019], "interview.srad.jp": [21956], "apps.ntid.rit.edu": [13493], "www.openhatch.org": [11979], "farq.ca": [2024], "*.storage-bin.com": [15558], "panoramio.com": [12396], "bmcplantbiol.biomedcentral.com": [1931], "megabigpower.com": [10236], "img06.rl0.ru": [13972], "udk.nu": [2024], "digital.community-journalism.net": [16228], "store1.adobe.com": [669], "codeascraft.com": [3356], "www.mysecureconnect.com": [10828], "reactor.osu.edu": [11797], "moderngov.redbridge.gov.uk": [13742], "dixie.deals": [2024], "vntx.cl": [2024], "ups.com": [17088], "www.aldi.ie": [357], "www.mydealz.de": [10800], "cpmstar.com": [2661], "s.spnnr.ru": [2024], "www.onehockey.com": [11872], "www.gdata.nl": [6272], "golfdigestinsiders.com": [6808], "careers.aber.ac.uk": [473], "vijaypath.sbi.co.in": [14140], "gfx.dagbladet.no": [4102], "4dg.us": [2024], "pol.moveon.org": [10670], "acmole.com": [2024], "rais.ornl.gov": [11730], "ztl.onl": [2024], "atbk.alicdn.com": [853], "eprize.com": [4937], "chiliproject.org": [3080], "j.meddah.fr": [2024], "symfony.com": [15782], "shadertoy.com": [14712], "psrecruiting.brookings.edu": [2379], "nrf.com": [11097], "www.landalskilife.*": [18579], "www.ledgerwallet.com": [9234], "brandify.link": [2024], "access.caltech.edu": [2771], "de-la.dict.cc": [4442], "www.neaf.gov.au": [11107], "service.mcafee.com": [10129], "www.37signals.com": [155], "www04.fonts.com": [5972], "wiki.moniker.com": [8880], "kbcrtu.kh.hu": [8739], "web.com": [18145], "techblog.constantcontact.com": [3594], "evolve.friday.ru": [20175], "net-housting.de": [11216], "*.ckom.de": [3207], "nx.lt": [2024], "trustedshops.*": [16858], "news.yahoo.co.jp": [18730], "go.lund.io": [2024], "dakujeme.sme.sk": [14198], "tsw.curseforge.com": [3927], "dmktgd.com": [2024], "linux.ubuntu.com.cn": [17174], "www.ple.com.au": [12300], "friendfinder.com": [6192], "sqr.wf": [2024], "www.datstat.com": [4162], "*.monoprice.com": [10599], "easternfusion-terenure.just-eat.ie": [20671], "envoyer.io": [5301], "hotelwifi.com": [7560], "career.ru": [2852], "kleppi.co": [2024], "r.tooveo.com": [2024], "i9.imb.br": [2024], "info.th3top.com": [2024], "carafun.id": [2024], "trends.okcupid.com": [11809], "j.gugler.at": [2024], "studentliving.georgetown.edu": [6531], "docs.aliyun.com": [868], "shoprelay.co": [2024], "sesplan-consult.objective.co.uk": [21225], "mebsd.com": [20944], "0w0.pics": [2024], "piratebayaccess.co.uk": [22177], "amrit.am": [2024], "choistkd.net": [2024], "homeless.org.uk": [20398], "www.jwchat.org": [8478], "*.us.archive.org": [8269], "www.genome.gov": [17108], "twattle.net": [16936], "zyc.us": [2024], "m.tricolor.tv": [22287], "madness.dj": [2024], "kva.se": [20765], "slvrlnng.us": [2024], "stry.it": [2024], "framadate.org": [6075], "nay.onl": [2024], "www.albinoloverats.net": [827], "gestes.avenirclimatique.org": [1472], "onlineregister.com": [11904], "bugs.r-project.org": [13447], "rt.rakuten.co.jp": [13594], "drwkp.me": [2024], "web018.anadolu.edu.tr": [1029], "*.campstaffusa.com": [2789], "*.wservices.ch": [18568], "on.baskin.cloud": [2024], "uche.us": [2024], "creative.wwwpromoter.com": [22635], "bsea.co": [2024], "finance.google.co.*": [6821], "slice.com": [15021], "forum.419eater.com": [180], "on.us.playstation.com": [12832], "tpb.unblock.bid": [22259], "www.poo.solutions": [12944], "cora1.co.uk": [2024], "www.11joycasino.com": [20654], "www.bitcalm.com": [1955], "coremotives.com": [3666], "kosmas.cz": [8759], "www.daily.co.uk": [4107], "uzbekistan.usembassy.gov": [22406], "fourmilab.ch": [6060], "stackpath.com": [21970], "rsrc.psychologytoday.com": [13236], "s8.mt-cdn.net": [9812], "trcgo.es": [2024], "ldrsft.com": [2024], "zeroblock.com": [18939], "inlinkz.com": [8036], "roughtradegear.com": [14038], "www3.itf.gov.hk": [7065], "man.root.cz": [14020], "akhtubinsk.startsmile.ru": [21980], "nb-no.facebook.no": [5612], "www.communicatoremail.com": [3502], "counsel.georgetown.edu": [6531], "112.wf": [2024], "ftp.rrze.uni-erlangen.de": [17396], "mykolab.com": [10811], "vesselbags.com": [17739], "www.jms1.net": [8601], "mfa.ag": [2024], "wearev1.co": [2024], "habpl.us": [7117], "assets9.wwf.ch": [18028], "kmrk.me": [2024], "www.getcomposer.org": [6575], "jonyivebook.cultofmac.com": [3909], "ie.yandex.com.tr": [18740], "magazine.joomla.org": [8641], "ca.mit.edu": [9763], "www.sourceafrica.net": [15238], "privatewifi.com": [13151], "bbpress.org": [1740], "l.kdy.ch": [2024], "*.cbc.ca": [2811], "plugunplug.net": [12865], "twin.sci-hub.io": [14436], "m.hilliker.org": [2024], "mikeoscar.com": [2024], "s5.mzstatic.com": [10893], "www.loa.org": [9540], "www.drapt.com": [19894], "credit-card.asda.com": [407], "tve.cm": [2024], "to.titlee.fr": [2024], "blog.ikeepincloud.com": [7754], "tverigrad.ru": [22325], "nccih.nih.gov": [11090], "apt.univention.de": [17315], "order.napster.com": [21084], "saugst.in": [2024], "sport.1688.com": [51], "www8.pipni.cz": [12287], "www.xxx24hr.com": [18698], "ngvpn05.nvidia.com": [11022], "accountcenter.pfizer.com": [12640], "conv3rt3r.com": [2024], "uds.pw": [2024], "promonitor.strode-college.ac.uk": [15597], "www.signalvnoise.com": [21825], "sjb007.me": [2024], "www.mike.kaply.com": [8805], "widgets.guidestar.org": [6989], "es-locators.bankofamerica.com": [1669], "support.serverbase.ch": [21787], "*.ruby-lang.org": [14073], "www.nkl.fi": [11055], "www.roughtradegear.com": [14038], "cf7.100r.org": [12], "watt.so": [2024], "lifestyle.sapo.pt": [14131], "l.anand.io": [2024], "nashp.co": [2024], "lana.mobi": [2024], "gitlab.x5.ru": [18590], "xur.ca": [2024], "htrvl.tk": [2024], "staceymlr.me": [2024], "i.wish.org": [2024], "content.dealnews.com": [4250], "ibank.alfabank.kz": [849], "image.sinajs.cn": [14909], "www.fs.isy.liu.se": [9097], "nationalcareersservice.direct.gov.uk": [4519], "www.stanfordmed.org": [15452], "ideafit.com": [7928], "korruption.dk": [9002], "www.knappschaft-bahn-see.de": [8953], "www.therunet.com": [22183], "mkto.co": [2024], "ourtes.co": [2024], "petridish.org": [12628], "bepixelung.org": [19355], "www.surprisinglyfree.com": [15720], "web.threema.ch": [16473], "123s.us": [2024], "wrte.me": [2024], "img.taobaocdn.com": [16016], "www.dailystar.co.uk": [4117], "resources2.spiceworks.com": [15338], "www.greatcareers.co.uk": [1214], "contacts.msn.com": [9810], "*.tmimgcdn.com": [16177], "tipmobiletest.sbb.ch": [15756], "like.yst.so": [2024], "link.optric.biz": [2024], "bug.freifunk.net": [6170], "it.foursquare.com": [6061], "ticket.yandex.by": [18739], "www.eecs.mit.edu": [9763], "ayala.tv": [2024], "nejc.co": [2024], "weather.yandex.com": [18742], "bjc.link": [2024], "2all.jobs": [2024], "paccoweb.poste.it": [13013], "deviceids-medp-id3.wdr.de": [18113], "downloads.fas.harvard.edu": [7211], "distor.co": [2024], "verizon-beta.mcafee.com": [10129], "ibank.tkbbank.ru": [16583], "static-secure.guim.co.uk": [6996], "www.mindleaking.org": [20986], "scrpt.me": [2024], "jndcrd.co": [2024], "www.adafruit.com": [604], "*.gkb.ch": [20683], "c4me.us": [2024], "vladcampos.net": [2024], "edah.cf": [2024], "live.com": [9495], "energie.vellum.cz": [19995], "js.skyscnr.com": [15006], "seeforyourself.oxfordcc.co.uk": [21325], "lis.illinois.edu": [17346], "www.youtube.com.ro": [18800], "videos.sapo.pt": [14131], "cloudfront.assets.stitcher.com": [15544], "virginmobileusa.com": [17821], "www.cosmonova.net": [19694], "sunycorning.cc": [2024], "products.secureserver.net": [14574], "cr0.org": [3746], "x.izham.com": [2024], "debates.theinquirer.net": [22157], "read.re": [2024], "s1.daumcdn.net": [4210], "diplopt.mondediplo.com": [10578], "m.cultofmac.com": [3909], "opinionlab.com": [12090], "www.ptcusercommunity.com": [21533], "www.icukhosting.co.uk": [7699], "www.factorable.net": [5615], "www.jobs.nih.gov": [11090], "the-dma.org": [16260], "*.radioshackcorporation.com": [16454], "*.target.com": [16024], "n.thestar.com": [16646], "www.lantmateriet.se": [9165], "kibi.co": [2024], "to.qrshar.es": [2024], "newark.osu.edu": [11797], "www.trustedreviews.com": [16863], "dev1.golem.de": [6804], "www.tvnutt.com": [15954], "bgrd.co": [2024], "data.whicdn.com": [17996], "newsoffice.mit.edu": [9763], "*.californiaunitedbank.com": [2767], "www.shortnote.jp": [21812], "apps.opm.gov": [11690], "muri.engineering.osu.edu": [11797], "www.trilogygolfclub.com": [8443], "go.junian.net": [2024], "www.osvehicle.com": [21305], "carezone.cz": [2859], "dghtest.tocco.ch": [16600], "orel.beeline.ru": [1778], "libraries.shropshire.gov.uk": [21819], "static.jp.as.criteo.net": [3798], "netpla.net": [2024], "lyi.me": [2024], "clientes.wiroos.com": [22601], "shi.ms": [2024], "dfnbdy.com": [2024], "banners.itunes.apple.com": [1151], "ca.uninett.no": [17280], "welt.de": [18290], "www.sli-systems.com": [14192], "bitsharestalk.org": [2038], "at.serien.ninja": [2024], "award.rolex.com": [2024], "uwinnipeg.worldcat.org": [18536], "in.amny.com": [2024], "wusmforms.wustl.edu": [18089], "masteringemacs.org": [10066], "www.northnorfolk.org": [11537], "encuestas.ulpgc.es": [17213], "wunbr.net": [2024], "packetflagon.uk": [21334], "orrdat.orr.gov.uk": [21294], "*.moneybookers.com": [10588], "www.musikerforbundet.se": [10756], "mjd.bz": [2024], "youtube.nl": [18800], "jdh.so": [2024], "images.tvnz.co.nz": [15951], "clic.rs": [2024], "mo.astrobl.ru": [19264], "jpcsp.org": [5216], "www.contribuez.cnnumerique.fr": [2651], "i2.social.s-msft.com": [14114], "knowledgebase.musicmetric.com": [10754], "vufind.carli.illinois.edu": [17346], "www.noteapp.com": [11560], "pumb.to": [2024], "wwaplay.com": [2024], "www.gonightshift.com": [20287], "ofcom.in": [2024], "www.hostingreviews.com": [7532], "miass.biglion.ru": [19375], "wac6.net": [2024], "brecktrip.co": [2024], "dx01.my.uprr.com": [22391], "*.prf.hn": [12599], "master.php.net": [12280], "mail.cablesurf.de": [2720], "power.freenet.de": [6158], "www.openrunet.org": [21279], "www.ukash.com": [17205], "e-nls.com": [11437], "www.rantoulpress.com": [13610], "osdn.net": [21298], "boss429.deathmask.net": [4254], "www.firmware.netgate.com": [5849], "french.brazzaville.usembassy.gov": [22406], "dnssec-tools.org": [4057], "static.ny.us.criteo.net": [3798], "go.fatfog.com": [2024], "loadus.exelator.com": [4988], "greetings.icq.com": [7695], "lider-exp.a-3.ru": [258], "admin.jobfinder.dk": [8610], "www.kameleoon.com": [8791], "static.ucuzu.com": [17191], "dkstyle.me": [2024], "helpscout.net": [7306], "wiki1.dovecot.org": [4713], "producciocientifica.upf.edu": [17471], "www.sankatyadvisors.com": [14349], "joomlart.com": [8640], "cash.vnu.ru": [22482], "mabatubetv.tk": [2024], "checkip6.dedyn.io": [19789], "get.unbounce.com": [17239], "fontconfig.freedesktop.org": [6102], "efcomputing.ml": [2024], "*.dentalxchange.com": [4886], "*.switchnetworks.com.au": [15766], "loveraleigh.com": [2024], "idp.opera.com": [12086], "membercentral.com": [10262], "pages.response.cnbc.com": [2645], "bnds.infos.st": [2024], "vale.pro": [2024], "darkroom.shortlist.com": [14795], "datse.ca": [2024], "verses.quran.com": [13433], "codeanywhere.com": [19635], "contact.intelish.com": [8214], "www.itx.com": [7858], "wikis-stage.oracle.com": [12116], "mts.fyi": [2024], "en.obit.ru": [21223], "www.pubsoft.org": [13246], "devalate.com": [19818], "test.vshn.ch": [17957], "biomechanics.engineering.osu.edu": [11797], "payin.co": [2024], "www.bridgeroadmarketing.com": [2331], "*.dodspeople.com": [4621], "ryazan.sledcom.ru": [21858], "printservic.es": [2024], "www.security.vt.edu": [17825], "advokat.kavkaz-uzel.ru": [20694], "heroti.co": [2024], "www.scotch.io": [14457], "events.openmrs.org": [11988], "impulse.net": [8025], "u.chamuel.us": [2024], "fstoppers.com": [6218], "sofw.org": [2024], "pdscott.co": [2024], "koqu.in": [2024], "info.mheducation.com": [20974, 20975], "naturalresources.wales": [11138], "corp.galois.com": [6388], "www.btcs.com": [1585], "www.pictomania.com": [12699], "chat-place.org": [3034], "www.mycharity.ie": [10796], "www.battg-melderegister.umweltbundesamt.de": [17230], "dentistry.uic.edu": [17321], "perfect-privacy.com": [12590], "admin.beamyourscreen.de": [1757], "royd.to": [2024], "bitly.is": [2024], "zwhxq.biligame.com": [1903], "cayaya.info": [2024], "sendle.in": [2024], "huffpost.link": [2024], "reelseo.com": [13768], "r.khimoc.com": [2024], "admincontrol.com": [19080], "go.lele.rocks": [2024], "dereko.ca": [2024], "indat.mx": [2024], "pulzo.co": [2024], "karyabi.xyz": [2024], "www.mccafetogo.mcdonalds.ru": [20941], "lordsoftheblog.net": [9619], "photo2.kavkaz-uzel.ru": [20694], "openttdcoop.org": [12018], "livewyer.com": [9511], "beacon.gutefrage.net": [7011], "ftp.cse.ust.hk": [22412], "www.ist.utl.pt": [16098], "evl.io": [2024], "l.jlhsclubs.org": [2024], "images1.dailykos.com": [4110], "xperiastudio.com": [18675], "t.virgl.net": [2024], "linuxconfig.org": [20848], "l.clients.am": [2024], "media.scriptfodder.com": [14482], "novel.stanford.edu": [15448], "*.annualcreditreport.com": [1075], "pdc.fedoraproject.org": [5716], "goyt.eu": [2024], "fineartamerica.com": [5828], "www.pdflabs.com": [12266], "45.rkn.gov.ru": [13971], "www.ekwb.com": [4912], "www.priceonomics.com": [13102], "fr.getapp.com": [20238], "boell.de": [2192], "sdsurf.workforcehosting.com": [18531], "www.tapiture.com": [16021], "hbo.vice.com": [17754], "jobs.economist.com": [5052], "r24626594.sync.app.asana.com": [1265], "defaultsmblog.stanford.edu": [15448], "prvn.one": [2024], "passwordwolf.com": [21355], "websites.thm.de": [15876], "www.robolinux.org": [21662], "millwardbrown.com": [10435], "www.vacanteen.va.gov": [17100], "drupal.engineering.osu.edu": [11797], "go.mahmoud.work": [2024], "mail.st65.ru": [21967], "a.imagereed.com": [2024], "mhsttn.me": [2024], "r-rdz.com": [2024], "icez.net": [7915], "swh.rocks": [2024], "rd.heras.es": [2024], "www.mkb.ru": [10512], "landal.*": [18579], "gmr5.com": [2024], "kmyl.es": [2024], "life.svyaznoy.ru": [22053], "reviews.freebsd.org": [6097], "magickly.afeld.me": [19102], "*.getpebble.com": [12541], "pestcontrolss.northumberland.gov.uk": [21160], "www.csync.org": [3895], "movies.yahoo.co.jp": [18730], "content-ssl.yieldmanager.com": [13937], "admin.closerware.net": [3273], "opensourcehacker.com": [12057], "shop.intsig.net": [20557], "shopaz.link": [2024], "api.zalando.com": [18877], "bt.no": [1577, 1815], "tpb.piratenpartij.nl": [12741], "www.cds-global.com": [2578], "timpho.to": [2024], "www.rotherham.gov.uk": [14032], "x.stefx.com": [2024], "sedmitza.ru": [21771], "boginya-shopinga.friday.ru": [20175], "www.requires.io": [13851], "corporate.aldi.ie": [357], "www3.play-asia.com": [12828], "www.luosimao.com": [20891], "gtx.hkjc.com": [20384], "server.ffa.vutbr.cz": [17609], "www.providesupport.cn": [13217], "ww62.smartadserver.com": [15049], "cdn.globalcloudxchange.com": [6705], "meinkonto.telekom-dienste.de": [16153], "sptf.re": [2024], "spaces.live.com": [9495], "rooms.library.jhu.edu": [16370], "cook.ba": [2024], "regioad.immobilienscout24.de": [8008], "videoprogschool.cdnvideo.ru": [19536], "www.ovh.it": [12205], "url.bevera.st": [2024], "blog.provost.georgetown.edu": [6531], "bb.org.au": [2024], "avserver.ignou.ac.in": [7956], "*.catn.com": [2902], "admin3.providesupport.com": [13218], "desnogorsk.beeline.ru": [1778], "js.t.sinajs.cn": [14909], "whitehathouston.com": [18349], "www.ovh.ie": [12205], "comstern.de": [3458], "blog.zalando.de": [18877], "sms.it-ccs.com": [20596], "next.36kr.com": [154], "register.maxon.net": [10110], "sscot.ch": [2024], "afdc.energy.gov": [5243], "everest2.beget.com": [19347], "pdr.li": [2024], "m.allshareplay.com": [885], "rocket.chat": [13993], "a.crsclub.org": [2024], "account.jesus.cam.ac.uk": [17332], "anapa.startsmile.ru": [21980], "fr.rt.com": [13528], "leukemiafoundation.org": [11132], "www.dimonvideo.ru": [19840], "www.quantopian.com": [13390], "www.febas.de": [5695], "www.laptoplap.hu": [9167], "alac.macosforge.org": [9835], "revda.beeline.ru": [1778], "zangki.ga": [2024], "jhns.tv": [2024], "uncsd2012.org": [17296], "www.leukemiafoundation.org": [11132], "ws8.bart.gov": [1708], "stevesie.com": [15539], "zangki.gq": [2024], "www.internetessentials.com": [20553], "go.peela.com.br": [2024], "www.crimereduction.homeoffice.gov.uk": [20399], "entreprises.ca-pca.fr": [2521], "beta.apple.com": [1151], "famba.se": [2024], "lewatin.tk": [2024], "pubsoft.org": [13246], "anticorru.pt": [2024], "zebra.coffee": [2024], "valueclickmedia.com": [17629], "rmcybernetics.com": [13853], "s.viva.bh": [2024], "copeland.moderngov.co.uk": [21005], "priorygroup.com": [13123], "itzl.jd.com": [8436], "symb.is": [2024], "s1.linkvp.com": [17869], "shop.vodafone.de": [17901], "aspone.cz": [19259], "www.itri.aist.go.jp": [802], "cas.u-bordeaux.fr": [16990], "theinfosphere.org": [22156], "www.lpdedicated.com": [624], "feedjit.com": [5723], "surv.rover.vet": [2024], "oascentral.aviationweek.com": [101], "gdt.im": [2024], "nemertes.com": [11185], "oo.opinionlab.com": [12090], "scotts.link": [2024], "service.byte.nl": [2501], "*.comsuper.gov.au": [3459], "file.bizrate.com": [2054], "www.hope.net": [7501], "us.ae.aliexpress.com": [854], "jpii.life": [2024], "nnov.tpprf.ru": [22260], "tobolsk-mr.admtyumen.ru": [19082], "s102.cnzz.com": [3328], "iambishat.com": [2024], "mivolunteers.org": [17924], "www.rudloff.pro": [14079], "www.acpica.org": [320], "uis.kaspersky.com": [8820], "payback.pl": [21363], "www.clksite.com": [19618], "oddb.it": [2024], "dge.stanford.edu": [15448], "wush.net": [18575], "www.thepetitionsite.com": [16305], "mett.tk": [3536], "alb.io": [2024], "slth.so": [2024], "bekoe.link": [2024], "archive-9.kali.org": [8786], "insightsgtd.nl": [2024], "www.government-nnov.ru": [20295], "votew.in": [2024], "psfc.us": [2024], "paket.de": [12366], "video0.0xdb.org": [10], "www.mpbio.com": [9797], "brazzaville.usembassy.gov": [22406], "static.hgmsites.net": [7401], "ucpi.org.uk": [17010], "wiki.loadaverage.org": [9543], "dsuri.net": [2024], "www.christianheilmann.com": [3117], "involv.es": [2024], "www-prod-storage.cloud.caltech.edu.s3.amazonaws.com": [2771], "infoblox.com": [8108], "blogs.gnome.org": [6333], "www.video.yandex.com": [18742], "m.bertindak.com": [2024], "s3.ssl.qhimg.com": [13347], "certify.gpwa.org": [6392], "lqdt.at": [2024], "focus2fly.eu": [2024], "*.btrstatic.com": [1597], "pypi.doubanio.com": [19889], "www.kissinsights.com": [8744], "poip.es": [2024], "careplace.org.uk": [19515], "www.bullguard.com": [2434], "gomounti.es": [2024], "pingce.1688.com": [51], "berrange.com": [4135], "adserverec.adtechus.com": [692], "112-uitgeest.nl": [26], "poptalk.link": [2024], "thebark.us": [2024], "rcc.ca": [2024], "www.hertz-autovermietung.com.pl": [7357], "48.bio": [2024], "grim.li": [2024], "ovh.co.uk": [12205], "grafte.ch": [2024], "cms.paypal.com": [12500], "johnsonking.com": [8627], "ih.constantcontact.com": [3594], "di.fakta4.com": [2024], "s7.ms": [2024], "lists.uhulinux.hu": [22349], "officeredir.microsoft.com": [10396], "webmail.dkit.ie": [4032], "bu.edu": [2256], "presscoders.com": [13076], "forums.vtiger.com": [17959], "ifx.pro-market.net": [13157], "s1.gismeteo.lt": [20249], "32.rkn.gov.ru": [13971], "whlp.ly": [2024], "sweetm.ag": [2024], "www.xbee.net": [18637], "qss.me": [2024], "blog.safaribooksonline.com": [14284], "nap.rkn.gov.ru": [13971], "bbls.us": [2024], "school.ufanet.ru": [22347], "hsto.org": [7590], "www.campaignmonitor.com": [2794], "hflive.us": [2024], "10xr.com": [2024], "eventsforce.net": [20040], "es-contrainfo.espiv.net": [20021], "go.vista.eu.com": [2024], "www.exootlab.com": [5490], "t.rasp.yandex.com": [18742], "mvanm.com": [2024], "*.eerdmans.com": [5093], "aameetings.in": [2024], "old.vgtrk.com": [22455], "login.uned.es": [17248], "clifd.es": [2024], "nbet.dk": [2024], "nikecsolutions.com": [11417], "mdyp.ws": [2024], "pre.aps.org": [976], "bitfinex.com": [2017], "youtube.com.ro": [18800], "*.fail0verflow.com": [20070], "corh.io": [2024], "milbencheck.at": [10427], "www4f.wolframalpha.com": [18487], "www.twittercommunity.com": [16966], "coinaxis.com": [3391], "us.support.tomtom.com": [16615], "redirect1903.tagcommander.com": [15969], "www.codeofhonor.com": [3342], "pvac-webhost.leeds.ac.uk": [17403], "servicing.capitalone.com": [2831], "might.ly": [2024], "rimg08.rl0.ru": [13972], "quartzol.it": [2024], "a.shortbyte.de": [2024], "www.beonespark.com": [1538], "jhoonline.biomedcentral.com": [1931], "*.bluehost.com": [2164], "orkut.com.br": [12145], "mi.tygem.com": [22334], "tomf.me": [2024], "b.icetravel.xyz": [2024], "worldreader.org": [18555], "www.apmebf.com": [3484], "b.majestic.name": [2024], "www.mattermark.com": [20937], "popphoto.com": [12968], "melb.co": [2024], "links.eskada.tk": [2024], "jobcorps.dol.gov": [19867], "uec.krasnodar.ru": [20754], "go.faisal.ec": [2024], "kms.biglion.ru": [19375], "netzfreiheit.org": [11315], "support.globusonline.org": [6727], "dn.rambler.ru": [13600], "a1community.net": [261], "webmail.wildwestdomains.com": [18391], "yify-torrent.org": [18707], "www.news.ourlocality.org": [12177], "parlament.neos.eu": [10941], "bitcoinaverage.com": [1994], "cdn2.tnwcdn.com": [22227], "*.datahc.com": [4174], "scholcomm.columbia.edu": [3449], "www.richrelevance.com": [13927], "personales.us.es": [17502], "www.onsiteconcierge.com": [13450], "s.livekn.com": [2024], "www.eclevelandclinic.org": [3237], "www.sm-dev.kairo.at": [8782], "my.gartner.com": [6442], "coach.careerbuilder.com": [2853], "nwho.us": [2024], "www.pushbullet.com": [13295], "hediyeler.biz": [2024], "innovateuk.org": [8155], "pro.edgar-online.com": [4884], "grkt.miivo.net": [2024], "*.peopleschoice.com": [12585], "*.livestatserver.com": [9525], "1rabb.it": [2024], "investors.btcs.com": [1585], "www.cio.com.au": [2622], "autodealer.bankofamerica.com": [1669], "indicators.ic.nhs.uk": [10952], "www.sovcombank.ru": [21914], "g.kiers.eu": [2024], "vfsh.uk": [2024], "webstats.genesis4gamer.de": [6513], "m.104.com.tw": [18], "yedi.dk": [2024], "dmu.ac.uk": [4038], "www.refeds.org": [13472], "www.lovebizhi.com": [20878], "static-1.ivoox.com": [7870], "hoodline.com": [7495], "expertbail.com": [346], "client.cdn77.com": [2570], "www.pro-linux.de": [13155], "www.why-opencomputing.com": [22584], "iar.com": [7672], "wwit.me": [2024], "mine.nlnetlabs.nl": [10980], "bjre.me": [2024], "www.ctc.usma.edu": [17124], "www.heimatshop-bayern.de": [7284], "umeng.com": [22363], "www.peere.org": [12552], "deru.dict.cc": [4442], "gcapdevi.la": [2024], "fyb.patternsinthevoid.net": [12492], "git-scm.com": [6654], "tcp.pics": [2024], "popofan.co": [2024], "tygem.com": [22334], "www.steenwijkerland.nl": [11172], "www.carasutra.co.uk": [2842], "aaronbrotherscircular.com": [450], "ptcho.ca": [2024], "gettingreal.37signals.com": [155], "undergradpreview.usc.edu": [17366], "livbst.in": [2024], "www.ft.com": [5810], "assets.soundowl.net": [15232], "slp2.somerset.gov.uk": [15197], "rekonq.kde.org": [8735], "plantwi.se": [2024], "picviewer.co.uk": [2024], "georgian.worldcat.org": [18536], "api.itunes.apple.com": [1151], "cdn.receivesmsonline.net": [21608], "campusverano.innova.uned.es": [17248], "cluster1.easy-hebergement.net": [5024], "gcs.civilservice.gov.uk": [19601], "sts.magento.com": [9868], "lexeshow.co": [2024], "www.datenschutzzentrum.de": [8057], "sptrs.io": [2024], "leboncoin.fr": [20796], "spice-space.org": [15336], "home.kik.com": [20716], "petra3.desy.de": [4386], "styienow.com": [2024], "bclub.co": [2024], "yspe.nl": [2024], "haixian.jd.com": [8434], "partners.netapplications.com": [11211], "lawnpro.me": [2024], "orv.is": [2024], "bhpho.to": [2024], "g2.hitravel.xyz": [2024], "lists.gnupg.org": [6744], "blpwl.it": [2024], "tlc.tocco.ch": [16600], "c02.my.uprr.com": [22392], "home.thesun.co.uk": [22188], "mun.do": [2024], "tradeassurance.alibaba.com": [857], "scottlinux.com": [14463], "educationguide.tue.nl": [15940], "gitlab.io": [6659], "photo-mark.com": [10010], "js.ui-portal.de": [17026], "img.vidup.me": [17791], "research.csc.ncsu.edu": [11531], "permits.performance.gov": [12600], "bmbl.us": [2024], "jagschools.illuminateed.com": [20494], "www.f3.htw-berlin.de": [7103], "open.1688.com": [51], "www.littlecms.com": [9489], "www10.qth.com": [13336], "static.sakh.com": [21719], "brave.pigg.ameba.jp": [971], "renderfarming.net": [13827], "sh.marblee.jp": [2024], "aka.hmrc.gov.uk": [7076], "mp.khabkrai.ru": [20709], "go.nooree.com": [2024], "www.nttxstore.jp": [11596], "wspt.io": [2024], "www.pfefferkoerner.de": [12638], "feeds.arstechnica.com": [1242], "ukashcardsatis.com": [17206], "www.xsport.ua": [22658], "holbrook.travel": [2024], "filescrunch.com": [5789], "www.wetter.de": [18320], "imagebank.nih.gov": [11090], "wiredout.osu.edu": [11797], "v034.ax2600ab.omhq.uprr.com": [22392], "sfrt.co": [2024], "*.epb.net": [4931], "365.rsaconference.com": [13514], "knbs.ru": [2024], "*.cityofchicago.org": [3186], "www.getawaygrey.com": [6551], "els-sso.corp.aol.com": [380], "www.myed.ed.ac.uk": [5059], "inews.berkeley.edu": [17329], "lauren.tw": [2024], "cdn.theatlantic.com": [16324], "www.soc.ulaval.ca": [17319], "www.suntec.net": [15673], "red.ginge.rs": [2024], "bundanon.com.au": [2440], "imgb.nxjimg.com": [11630], "appcolony.me": [2024], "googleapps.softline.ru": [21889], "certificate-transparency.org": [2975], "go.zeemac.net": [2024], "eastdane.com": [19936], "blog.dol.gov": [19867], "l.iaero.me": [2024], "t.sabaia.com.br": [2024], "www.neurotalk.org": [21117], "myh.bz": [2024], "zaption.com": [18891], "*.jobcloud.ch": [20646], "www.webspace4all.eu": [18247], "go.duo.com": [4797], "youngafricanleaders.state.gov": [17146], "apps.fbcdn.net": [5689], "foxydeal.de": [6067, 6068], "wenling.1688.com": [51], "*.pragmaticmarketing.com": [13059], "www.solola.ca": [15193], "playerattack.com": [12838], "gzt-sv.ru": [20329], "ieu.li": [2024], "ttnny.com": [2024], "images.mobilism.org": [21004], "ibutinfo01.hkjc.com": [20384], "ne.edgecastcdn.net": [5070], "kurortniy-roman.friday.ru": [20175], "reforms.censor.net.ua": [19538], "photos2.meetupstatic.com": [10231], "controlscan.com": [3623], "www.mandiant.com": [20919], "vmobil.ec": [2024], "s.ivi.ru": [2024], "promo.merkur.de": [10306], "static.chipdip.ru": [19582], "go.which.co.uk": [2024], "www.providerfinder.empireblue.com": [19988], "pnterest.ga": [2024], "x.bidswitch.net": [1875], "iosbstxn01.hkjc.com": [20384], "maincampusresearch.georgetown.edu": [6531], "ottc.it": [2024], "web4all.fr": [18148], "logicboxsoftware.com": [9566], "gosrv.click": [2024], "medianetwork.oracle.com": [12116], "40.rkn.gov.ru": [13971], "fis.westberks.gov.uk": [22564], "on.hope.city": [2024], "infocom.nso.ru": [21192], "www.schweissgut.net": [12151], "williams.edu": [18408], "intesab.islamacademy.net": [8366], "www.kyivstar.ua": [9067], "securepayvisa.zuji.com.hk": [19021], "shield.nvidia.com": [11022], "ok.beztdealz.in": [2024], "jhnflry.com": [2024], "s.unco.cc": [2024], "bill.forceline.net": [20134], "1.asset.soup.io": [15235], "s-nt.org": [2024], "bm.ru": [2176], "www.webenrol.com": [22545], "on.bianca.co": [2024], "www.lawblog.de": [9191], "cloudtools.rackspace.com": [13566], "satern.nasa.gov": [10909], "adcap.biz": [573], "dataclass.stanford.edu": [15448], "dadblo.gs": [2024], "*.marhab.com": [9994], "ubuntu-mate.community": [17187], "*.grenoble-inp.fr": [6925], "www.axisbank.co.in": [1501], "apps.telford.gov.uk": [22121], "im.mtv.fi": [21045], "poppler.freedesktop.org": [6102], "video.lequipe.fr": [20811], "tlrd.co": [2024], "d505.epimg.net": [5126], "aafa.me": [2024], "www.webfusion.co.uk": [18212], "iadt.worldcat.org": [18536], "polid.jppol.dk": [8457], "sftm.vanaqua.org": [17637], "on.wgem.com": [2024], "my.dianomi.com": [4432], "plasso.co": [21437], "kpopstage.co": [9013], "paste.lugons.org": [9121], "apps.nlm.nih.gov": [11090], "adrw.co": [2024], "mdosche.de": [10144], "gslug.org": [6971], "www.integrity.st": [8206], "global.sky.com": [14989], "sc101.us": [2024], "simevidas.jsbin.com": [20659], "gviz.info": [2024], "unr.li": [17452], "maps.ilovefreegle.org": [7890], "w4e.cc": [2024], "unr.lt": [2024], "*.mongabay.com": [10590], "sitemgr.web.engineering.osu.edu": [11797], "oghalailab.stanford.edu": [15448], "unr.ly": [2024], "www.noaddedsugar.com": [11484], "esky.city": [2024], "l.cidertv.com": [2024], "pp.sanitatem.mx": [2024], "superforum.org": [14698], "mpi-sws.org": [10100], "Avanza.se": [1468], "escapistexpo.com": [16264], "www.intelliserver.net": [8219], "rws.im": [2024], "*.blogspot.gr": [2127], "quantis.umftgm.ro": [22364], "kirov.tpprf.ru": [22260], "dlbds.co": [2024], "group.hugoboss.com": [7608], "atqr.us": [2024], "www.plexapp.com": [12855], "blgtm.ch": [2024], "akademy2012.kde.org": [8735], "www.clearista.com": [3234], "mirea.ru": [20993], "www.patriotssuperbowl.us": [12491], "media.pbbans.com": [21365], "trainingcenter.nih.gov": [11090], "vangogh.teespring.com": [16125], "webmail.mbnet.fi": [9734], "asthmarp.biomedcentral.com": [1931], "loopsy.co": [2024], "jondos.org": [8637], "qa.ccwed.me": [2024], "*.markmonitor.com": [10011], "sc3.maps.live.com": [9495], "tiger.tt": [2024], "iran.usembassy.gov": [22406], "www.sure-assist.com": [15709], "yushou.jd.com": [8436], "portal.switch.ch": [15762], "cvrhnd.co": [2024], "api.snel.com": [15098], "pt-br.libreoffice.org": [9327], "www.pcapredict.com": [21367], "get.gp": [2024], "sarajevo.usembassy.gov": [22406], "passport.115.com": [28], "www.sumatrapdfreader.org": [22028], "opinion.elpais.com": [5126], "cybox.mitre.org": [10497], "pimages.xplosion.de": [18677], "udnisap.js.org": [20657], "www-cdn.dell.com": [4317], "ei.chaturbate.com": [3040], "an-zero.com": [2024], "livingsoci.al": [2024], "microcorruption.com": [10388], "symantec.com": [15780], "sent.pr": [2024], "r.st": [2024], "myslo.ru": [21070], "kau.se": [8724], "outlander.cf": [2024], "features.marketplace.org": [10026], "codecombat.com": [3362], "apps.vendini.com": [22438], "csi.friday.ru": [20175], "38.mvd.ru": [21055], "fnacspectacles.com": [5948], "*.forgifs.com": [6015], "sue.am": [2024], "monitor.research.rakuten.co.jp": [13594], "cio.wustl.edu": [18089], "www.whmcs.com": [17997], "tw.piliapp.com": [12706], "danig.org": [2024], "lk.mcgee.se": [2024], "go.progpf.com": [2024], "elefantenapp.wdr.de": [18113], "connect.apan.org": [388], "*.topoption.com": [16635], "go.gsolo.com": [2024], "bxboy.com": [2024], "cacm.life": [2024], "ovscruise.com": [18579], "semin.is": [2024], "ads.pubmatic.com": [13241], "www.metin2.co.nz": [10342], "bookings.lambeth.gov.uk": [20773], "gimpphoto.tuxfamily.org": [22319], "www.trainingindustry.com": [16730], "webmail.se.cuhk.edu.hk": [2704], "*.hit.gemius.pl": [6501], "whitelabeldemo.skyscanner.net": [15006], "pden.co": [2024], "static.glassdoor.com": [6683], "mail.domashka.net": [19873], "cdn3.i-scmp.com": [15255], "cdn.moslenta.ru": [21022], "m.marinacc.io": [2024], "d.alipayobjects.com": [864], "thecutestsiteontheblock.com": [16259], "rst1.rosevrobank.ru": [14024], "tulips.ntu.edu.tw": [11010], "get.how": [6561], "public.tricolor.tv": [22287], "elliptifit.me": [2024], "cinnf.org": [2024], "www.rf.osu.edu": [11797], "help.urbandictionary.com": [17494], "vi.adingo.jp": [646], "gdcl.co": [2024], "eplanning.birmingham.gov.uk": [19380], "www.cnrs.fr": [6174], "cs1.myzuka.fm": [21079], "01i.jp": [2024], "samara.beeline.ru": [1778], "builder-tc.quay.io": [21564], "toutiao.com": [16680], "telford.gov.uk": [22121], "*.ironwhale.com": [8354], "www.lenovo.com": [9265], "www.zongheng.com": [22722], "go.th78.me": [2024], "www.earthfirst.org.uk": [4998], "suits.to": [2024], "qfcdn.com": [21558], "match.adsrvr.org": [688], "zabbix.etnasoft.com": [5376], "amimoto.status.io": [21983], "www.hashcat.net": [7218], "missnu.me": [2024], "partiya.me": [2024], "bmcneurosci.biomedcentral.com": [1931], "ewf.companieshouse.gov.uk": [3509], "premium.oxforddictionaries.com": [12223], "www.cpeople.ru": [19707], "thirstyran.do": [2024], "www.red-pill.eu": [13719], "tripj.net": [2024], "l.magikmaps.com": [2024], "www.notevenpast.org": [11556], "event.knowledgeblog.org": [8961], "j2ma.de": [2024], "secure.accountsupport.com": [515], "static9.twilio.com": [16948], "enjoei.de": [2024], "www.swisstopo.admin.ch": [22061], "vozao.net": [2024], "sysmocom.de": [15821], "www.robeco.nl": [13977], "toi.sr": [2024], "pingyao.jd.com": [8434], "plugins.movabletype.org": [10666], "dtb.im": [2024], "*.velmedia.net": [17686], "support.jdownloader.org": [20633], "owyd.co": [2024], "svn.jenkins-ci.org": [8565], "www.hashnest.com": [7219], "livewelln.co": [2024], "display.yandex.com.tr": [18740], "www.gamersfirst.com": [6414], "www.brent.gov.uk": [2324], "walgreens.com": [18052], "support.f5.com": [5537], "uconomix.in": [2024], "mail.enter.ru": [20002], "www.facebook.it": [5612], "esiirk.mvd.ru": [21055], "cl.exct.net": [5471], "it.4.boardgamearena.com": [2182], "ios-conf.tv4play.se": [15947], "www.facebook.is": [5612], "mammth.com": [2024], "www.suas.ie": [15618], "api-v2.soundcloud.com": [15231], "dev1.djicdn.com": [4029], "fmit.co": [2024], "khmr.cn": [2024], "mhill.je": [2024], "pictures.meetic.com": [10226], "odaszh.tocco.ch": [16600], "metabunk.org": [10328], "www.recruitee.com": [21611], "s.gerwert.io": [2024], "www-bd.fnal.gov": [5741], "cambridgelivetrust.co.uk": [19495], "hye.bz": [2024], "www.estates.hku.hk": [20387], "myaccountholding.talktalk.co.uk": [15993], "wpcom-i18n.svn.automattic.com": [1452], "www.interkassa.com": [8250], "www.bunkus.org": [19473], "bdsc.webapps.blackberry.com": [2068], "www.cyseclabs.com": [3983], "more-ip-event.net": [10626], "monster.cat": [2024], "*.nature.nps.gov": [11122], "k1ko.me": [2024], "fod-web-01.busfin.ohio-state.edu": [11798], "www.edvina.net": [5091], "minutra.de": [2024], "bawsi.org": [1518], "xprt.re": [2024], "demo.ethernetportal.equinix.com": [5322], "www.vanlanschot.nl": [17641], "bitly.buzz": [2024], "news.google.*": [6821], "vmpforms.easthants.gov.uk": [5004], "m.smhealth.net": [2024], "corporate.hdfcbank.com": [7249], "static.gigabyte.com": [6628], "oka.bz": [2024], "icar.us": [2024], "www.squarepenguin.co.uk": [15397], "jphoward.org": [2024], "onecloudsecurity.com": [11868], "acl.alibaba-inc.com": [19139], "www6.cuhk.edu.hk": [2704], "judidomino.org": [2024], "www.fpf.org": [20144], "ss.mirachem.net": [2024], "*.networkedblogs.com": [11312], "*.commercialappeal.com": [4980], "www.synthetix.com": [15807], "nice.org.uk": [10961], "zpry.me": [2024], "os.mvd.ru": [21055], "*.orangewebsite.com": [12123], "www.raceforward.org": [13551], "www.openwebrtc.org": [21282], "personaldataecosystem.org": [12611], "webmail.webcitation.org": [18153], "tankafetast.com": [16010], "bhelp.co": [2024], "isc2cares.org": [7825], "iws.htwk-leipzig.de": [7596], "g33tfdaemfe379mpusur63qmfpcpen1gzsirclz9.ipleak.net": [20571], "www.bmpharmacy.com": [1559], "connect.watford.gov.uk": [22536], "www.wienmobil-karte.at": [18376], "fsfe.org": [5591], "2012.democrats.org": [4338], "globalpay.westernunion.com": [18310], "cbnr.co": [2024], "*.pricerunner.co.uk": [13100], "redmine.netams.com": [21109], "shcherbinka.startsmile.ru": [21980], "waste.org": [18092], "www.biology.wustl.edu": [18089], "l.huuub.com": [2024], "password.georgetown.edu": [6531], "*.fsu.edu": [5594], "a.disquscdn.com": [4559], "www.heg.org": [7510], "aby.pl": [2024], "www.vpnsecure.me": [17592], "linkd.in": [2024], "bnw.wtf": [2024], "ecpm.tanx.com": [22097], "coma.ma": [2024], "hi.doub.co": [2024], "thecityuk.com": [16294], "*.jiwire.com": [8579], "leikki.co": [2024], "pages.justgiving.com": [8710], "naturejobs.nature.com": [11140], "agendaless.com": [768], "mmm.jp": [2024], "sofawolf.com": [15154], "dot.money.pl": [10585], "parkmodelsdirect.com": [12433], "tme.osu.edu": [11797], "fisv.co": [2024], "indiga.cc": [2024], "link.is.good.af": [2024], "en.sledcom.ru": [21858], "avgclick.me": [2024], "www.gigamon.com": [6631], "oneta.st": [2024], "buildingdata.energy.gov": [5243], "unirel.vt.edu": [17825], "music.douban.com": [4701], "origin-cdn.els-cdn.com": [5174], "viewablemedia.net": [22464], "libgen.pw": [9317], "nohair.cf": [2024], "tilastot.piraattipuolue.fi": [21412], "oxfordwebapps.co.uk": [21328], "skj.co": [2024], "secure.ace.advertising.com": [713], "shout.edufor.me": [2024], "static.lanyrd.net": [9166], "schulera.de": [2024], "api.suggest.search.rakuten.co.jp": [13594], "assets.independent.co.uk": [8058], "nirave.uk": [2024], "cforce.info": [2024], "mysupport.netapp.com": [11221], "link.jbrains.ca": [2024], "api.yaplakal.com": [22668], "autodiscover.rsl.ru": [21686], "u.regiokick.com": [2024], "quicktranslate.com": [13414], "media.allyou.net": [889], "www.carecareersdevon.org.uk": [19510], "rohit.ws": [2024], "www.gaytimes.co.uk": [20212], "bugs.gnewsense.org": [5590], "full-on-line.cf": [2024], "bsdhistory.discoverbsd.com": [4537], "apiary.io": [19213], "alvn.me": [2024], "relnow.com": [2024], "zyado.com": [19028], "plumbr.eu": [12866], "l.emacsblog.org": [2024], "ubne.ws": [2024], "chz.me": [2024], "diygadget.com": [4577], "www.fraedom-cdn.com": [20145], "saz.tocco.ch": [16600], "stats.ftb.ca.gov": [2759], "rej.li": [2024], "codeforamerica.org": [3357], "www.amctv.com": [363], "uniteid.un.org": [17057], "www.codecoon.com": [3363], "offers.usatoday.com": [17112], "www.metager.de": [10323], "list.fau.org": [5543], "localphone.com": [20866], "store.atmel.com": [1026], "radiosex.friday.ru": [20175], "bananian.org": [1660], "go.boxer.se": [2024], "registrationbooking.oxfordshire.gov.uk": [21327], "givekidstheworldstore.org": [6668], "joemezz.us": [2024], "sutaz.fotolab.sk": [6055], "signin.netapp.com": [11221], "blogs.ca.com": [2525], "*.shopmania.com": [14778], "url.tc.in.th": [2024], "go.itsitio.com": [2024], "*.jacksonville.com": [8497], "mkrdi.ch": [2024], "d20.io": [2024], "*.piratenpartei.ch": [12314], "trinidad.usembassy.gov": [22406], "etsy.com": [5384], "www.madewithcode.com": [9856], "lt2.us": [2024], "wxlink.jcloud.com": [8555], "gn.apc.org": [1318], "www.muslimscondemn.com": [10766], "newon.blue": [2024], "i.p45.ca": [2024], "burtonc.co": [2024], "maplicada.unizar.es": [17441], "www.oagtravel.com": [16999], "q8.hitravel.xyz": [2024], "dmwfpwvxivcxrkhc.asana.com": [1265], "leadertech.com": [9213], "politicshome.com": [12921], "azcentral.com": [1506], "www.mastermindsdigital.com": [10068], "campaign.bezeqint.net": [1862], "mcgill.worldcat.org": [18536], "instra.com": [8197], "image.webservices.ft.com": [5810], "www.thepiratebay.pe": [22175], "shop.bite.lt": [2015], "petro.li": [2024], "p4.pstatp.com": [16680], "scaryto.me": [2024], "prbuzz.net": [2024], "multiseek.net": [10733], "pda.novayagazeta.ru": [21169], "aeup.eu": [337], "d-track.send.microadinc.com": [10380], "ileansigma.osu.edu": [11797], "jcm.click": [2024], "www-cdn.jtvnw.net": [16961], "www.cybercrime.admin.ch": [22061], "kenclicks.us": [2024], "greenvilleonline.com": [6922], "riemann.unizar.es": [17441], "entadsl.com": [5276], "ubcdn.co": [17163], "foodprotectiontaskforce.com": [5979], "docs.microsofttranslator.com": [10402], "cdn0.dailydot.com": [4108], "static.volafile.io": [22492], "penza.te-st.ru": [22103], "www.gogoinflight.com": [6790], "authorea.com": [1434], "media-ascalon.cursecdn.com": [3927], "*.tu-berlin.de": [16104], "stop-ttip.org": [15550], "secure.dilbertfiles.com": [4504], "www.aphyr.com": [1122], "dh.oxfordjournals.org": [12222], "www.sipgate.io": [14923], "landh.org": [2024], "veterans-aid.net": [17742], "redb.co": [2024], "web.flux.utah.edu": [17374], "epaper.derstandard.at": [19814], "bibl.me": [2024], "www.thequestion.ru": [16419], "www.mutelight.org": [10772], "support.wildstar-online.com": [18394], "www.mrfile.me": [10711], "yuruk.biz": [2024], "licensing.west-lindsey.gov.uk": [18299], "groznyy.beeline.ru": [1778], "www.gogobot.com": [6791], "psqr.us": [2024], "sibinfo.su": [21822], "namecoin.info": [11062], "pnch.it": [2024], "secure3.convio.net": [3632], "asics.tv": [2024], "sq.ouvaton.coop": [12187], "city-link.co.uk": [3184], "*.which.net": [18336], "000webhost.thecthulhu.com": [16403], "events.osrfoundation.org": [11946], "exclusivex.com": [5476], "blogads.com": [13084], "list.coin-or.org": [2652], "www.barfi.ch": [1695], "walkjc.org": [2024], "img.ifengimg.com": [20487], "www.tapatalk.com": [16018], "xra.co": [2024], "de-bs.dict.cc": [4442], "shoptpt.co": [2024], "blogs.commons.georgetown.edu": [6531], "img6.bdstatic.com": [19339], "planet.lysator.liu.se": [9097], "s.hstry.org": [2024], "accessibility.kde.org": [8735], "mdow.io": [2024], "spke.co": [2024], "dx.doi.org": [4067], "datorhandbok.lysator.liu.se": [9097], "forum.pokemon-world-online.net": [12900], "vz46.brenet.de": [2314], "www.firstdedic.ru": [5851], "cardgno.me": [2024], "perc.link": [2024], "b2.play-asia.com": [12828], "images.samsung.com": [14326], "*.systemcenteradvisor.com": [15825], "lxcenter.org": [9689], "vid.pr0gramm.com": [21476], "webmail.hi.is": [7049], "www.maxdome.de": [10106], "cui.media": [2024], "*.edweek.org": [5061], "www.hipercontas.com.br": [20377], "2gis.ru": [115], "gazetaexpress.com": [6461], "mop.papua.us": [2024], "online.osu.edu": [11797], "informatick.net": [8124], "good.bz": [2024], "animals.yaplakal.com": [22668], "internet.yandex.com": [18742], "pr.sdg.me": [2024], "css.co.ve": [2024], "buffyvo.com": [2024], "online.moneycorp.com": [21013], "wilsoncenter.org": [18412], "datamonitor.com": [4197], "secure.mypass.de": [10818], "on.hackedu.xyz": [2024], "www.ivorde.com": [8415], "colegioamerica.uniovi.es": [17282], "enterprise.travis-ci.com": [16775], "www.idenyt.dk": [7942], "glossons.ml": [2024], "www.bitcoinplus.com": [2007], "secure3.dealinteractive.com": [19792], "sl.gjmolter.com": [2024], "w2t.it": [2024], "profitbricks.com": [13176], "www.careerfoundry.com": [2856], "www.nic.io": [11421], "scoreassured.com": [21754], "www.psychiatry.hku.hk": [20387], "airbites.net.ua": [19120], "lr.usembassy.gov": [22406], "ep09.pld-linux.org": [12298], "ideas.joomla.org": [8641, 17525], "sie.ag": [2024], "*.discovercard.com": [4538], "esgwtdc.nts.jhu.edu": [16370], "viscon.me": [2024], "www.xcat.nl": [18594], "twst.it": [2024], "wmp.americanrifleman.org": [19189], "tube.geogebra.org": [6522], "bpopne.ws": [2024], "concert.arte.tv": [19239], "zza.fm": [2024], "www.ibphoenix.com": [7680], "devtalk.nvidia.com": [11022], "astro.gg": [2024], "kyl.ro": [2024], "mybitly.ml": [2024], "*.bitdeli.com": [2013], "forebank.dengisend.ru": [4344], "en.squat.net": [21955], "www.winsupersite.com": [18421], "tp3.sinaimg.cn": [14910], "rhino.camera": [2024], "raam.org": [13547], "offi.ga": [2024], "go.dvors.ky": [2024], "yp.ru": [22698], "snrsweetdeals.newsreview.com": [11380], "*.groceryserver.com": [6941], "aa.uw.edu": [17156], "highqsolutions.com": [7403], "go.sufio.com": [2024], "at.scout.com": [2024], "typo3.sedo.de": [14602], "e-activist.com": [4841], "internetevolution.com": [4391], "clients.evaske.com": [5425], "fabricatorz.com": [5607], "nidd.it": [2024], "mynomadesk.com": [11500], "appg.li": [2024], "www.xtremegunsandammo.com": [22659], "*.minijuegosgratis.com": [10455], "www.mail-archive.com": [9886], "mutualart.com": [10776], "gk3.me": [2024], "my.omniture.com": [11842], "u.vidocs.net": [2024], "warwickshire.police.uk": [18082], "www.deutsche-rentenversicherung.de": [4394], "shenghuo.alipay.com": [864], "angelikafilmcenter.com": [1058], "go.bgtvtalk.com": [2024], "banner5.utm.edu": [17426], "r24823618.sync.app.asana.com": [1265], "deviceids-meds.wdr.de": [18113], "schlossbergstore.com": [14417], "legolandholidays.co.uk": [20804], "*.vimg.net": [12302], "pony.fm": [12942], "www.cacert.com": [2534], "tags.w55c.net": [17984], "112cafe.com": [27], "404.58.com": [212], "en-staging.oxforddictionaries.com": [12223], "stalbans.gov.uk": [21974], "iam.ec": [2024], "jet2.com": [8571], "ap6.us": [2024], "app.portadi.com": [12980], "dtcc.edu": [4305], "metric.yandex.by": [18739], "www.contentwatch.com": [3613], "developers.xapo.com": [18630], "todo.nashnet.ua": [21087], "soccerwaveuk.com": [15121], "images.riverbed.com": [13964], "library.uchastings.edu": [17014], "www.nidcd.nih.gov": [11090], "s1.thejournal.ie": [16299], "ru.4.boardgamearena.com": [2182], "tchq.co": [2024], "securecerts.ie": [4499], "www.makrotex.hu": [9930], "cipherlawgroup.com": [3154], "www.iovisor.org": [20564], "magpl.us": [2024], "blogs.opera.com": [12086], "torcheck.xenobite.eu": [18653], "url.egoz.cl": [2024], "csbea.ch": [2024], "openbsdstore.com": [11957], "wayfair.ly": [2024], "go.gnet.gr": [2024], "cp1.com": [2024], "embed.cs.utah.edu": [17374], "newmusi.cc": [2024], "thenewschool.starfishsolutions.com": [21977], "www.fsadownload.ed.gov": [4881], "reot.co": [2024], "shorteneci.ml": [2024], "derpibooru.org": [4368], "systemoverlord.com": [15826], "vxy.me": [2024], "www.saas.hsbc.co.uk": [20422], "b.sjbodzo.com": [2024], "irpr.in": [2024], "community.rallydev.com": [13598], "bankieren.rabobank.nl": [13550], "3mil.nu": [2024], "*.suomi.fi": [22035], "*.2ch.net": [123], "aetolia.com": [19101], "www.emeasuretool.cms.gov": [19630], "www.7x7-journal.ru": [237], "brymge.net": [2024], "myportal.calpoly.edu": [2764], "2smb.link": [2024], "youthm.in": [2024], "doc.gitlab.com": [6658], "avr.tech": [2024], "www.volunteermatters.com": [17925], "en-fr.dict.cc": [4442], "apps.itsc.cuhk.edu.hk": [2704], "frdy.co.uk": [2024], "tooltester.de": [2024], "batn.ws": [2024], "parking.meo.pt": [10286], "prsearch.juniper.net": [8698], "secure.polyvoreimg.com": [21459], "www.cs.utah.edu": [17374], "www.radioplayer.co.uk": [13581], "go.spanat.com": [2024], "www.linux.it": [9419], "assets-c.thrillist.com": [22201], "forums.e-hentai.org": [4834], "melonbooks.co.jp": [10258], "blogs.it.ox.ac.uk": [17359], "consumentenbond.nl": [3598], "v084.ax2600ab.omhq.uprr.com": [22392], "console.aliyun.com": [868], "eweb.research.sunysb.edu": [15548], "sz-media.sueddeutsche.de": [15641], "*.uwaterloo.ca": [17377], "hopkins-interactive.com": [7502], "ep05.epimg.net": [5126], "img12.360buyimg.com": [148], "secure.oregonstate.edu": [12134], "rbb-online.de": [13651], "vrsn.cc": [2024], "assembly.wales": [1304], "bell-cranel.net": [19352], "www.webhost.biz": [18215], "webooluinc.com": [18230], "radsg.link": [2024], "secure.webhost4life.com": [18163], "wetlandpark.gov.hk": [22572], "preview.springer.com": [15380], "licensing.ribblevalley.gov.uk": [13922], "cesu.sc": [2024], "cnfx.biz": [2024], "webgis.ornl.gov": [11730], "*.globalsign.co.uk": [6700], "q.shadahmed.com": [2024], "www.open.wien.gv.at": [22588], "hto.ink": [2024], "piratenpartij.nl": [12741], "info.proview.thomsonreuters.com": [16456], "crm.vc": [2024], "fdf.org.uk": [5552], "contact.camden.gov.uk": [2785], "atl.site": [2024], "fukuma.club": [2024], "formation.mondediplo.net": [10579], "iggn.permkrai.ru": [21390], "kvm-superigra.friday.ru": [20175], "fuller.worldcat.org": [18536], "travelingnuker.com": [16770], "dlbt.co": [2024], "love.jamies.nz": [2024], "gynoncrp.biomedcentral.com": [1931], "brsmblog.com": [1568], "media.smwcentral.net": [14203], "spo.io": [2024], "ertan.me": [2024], "kostroma.biglion.ru": [19375], "ghacks.net": [6307], "www.trillian.im": [16810], "appadvice.com": [1143], "sport.gov-murman.ru": [20293], "helpdesk.ideco.ru": [20480], "*.awcloud.net": [435], "www.infusionsoft.com": [8139], "www.irishtimes.com": [16271], "d-rtb.microadinc.com": [10380], "about.constantcontact.com": [3594], "pc-cooling.de": [21366], "joshr.io": [2024], "emea.centrify.com": [19546], "labs.freesound.org": [6162], "gd3.alicdn.com": [853], "femtoduino.com": [5731], "mnu.sm": [2024], "trm.brassring.com": [19443], "diok.krasnodar.ru": [20754], "www.teamboard.com": [16062], "2wd68p.mkb.ru": [10512], "www.da.gd": [4092], "s0c0.co": [2024], "miwy.co": [2024], "berdy.me": [2024], "*.jugendschutzprogramm.de": [8679], "www.totse2.com": [16678], "www.drone.io": [4761], "pbagalleries.com": [12240], "shlt.me": [2024], "www.sisu.ut.ee": [17148], "mpi.minbank.ru": [10442], "demozoo.org": [19808], "uawford.us": [2024], "partnernet-sit.symantec.com": [15780], "www.nulled.cc": [21199], "chip.tl": [2024], "chip.tk": [2024], "schraubenluchs.de": [21746], "flux.dj": [2024], "unm.worldcat.org": [18536], "*.tbe.taleo.net": [15986], "electronicintifada.net": [5144], "www.savedeo.com": [14373], "haberteamny.com": [2024], "tgvtest.tocco.ch": [16600], "habets.se": [7116], "accessprivacy.ca": [505], "static.bhphotovideo.com": [19370], "shop.root.cz": [14020], "palmshop.hu": [9167], "promo.youla.io": [22689], "finance.google.*": [6821], "googletagmanager.com": [20289], "*.limango.de": [9370], "www.libertyflailmowers.com": [9316], "portal.1link.mail.ru": [9891], "bookings.guildford.gov.uk": [20321], "eatdrnk.co": [2024], "cs.boardgamearena.com": [2182], "m3.ykimg.com": [22681], "gitignore.io": [20254], "nijc.brain.riken.jp": [13489], "gugg.gp": [2024], "www.kabeldeutschland.de": [8775], "codefund.io": [3368], "review.coreboot.org": [3670], "stanford.io": [2024], "idw.pub": [2024], "s-sci.co": [2024], "jdivo.me": [2024], "4vel.vet": [2024], "www.wdr.de": [18113], "0jkikl8o3sjy6q10xwa6wdmhak8e1v0wsbbd158q.ipleak.net": [20571], "www.mydigitallife.net": [21064], "inbnd.li": [2024], "yoox.ly": [2024], "attendee.gotowebinar.com": [6771], "myfd.tc": [2024], "billing.axeso5.com": [1500], "marchforbabies.org": [9992], "darkohled.cz": [2024], "www.s2member.com": [14121], "pl.usembassy.gov": [22406], "nakhabino.beeline.ru": [1778], "*.afrinic.net": [752], "www.mysociety.co.uk": [10830], "eo.mondediplo.com": [10578], "polite.pw": [2024], "viajwat.ch": [2024], "savannah.nongnu.org": [5590], "www.webmercs.no": [4163], "www.raiffeisen.ch": [13588], "acsac.org": [321], "indico.dns-oarc.net": [4051], "ipv4.google.com": [6818], "b.cfo-coach.com": [2024], "gwrymca.org": [7015], "kargo.com": [8810], "www.ranzcp.org": [13457], "promotions.newegg.com": [11356], "about.zoosk.com": [19006], "imgt8.bdstatic.com": [19339], "app.cmbchina.com": [2639], "eslabon.axosoft.com": [1504], "www.piraten-basel.ch": [21416], "cmplt.st": [2024], "l0g.us": [9074], "diningservices.osu.edu": [11797], "nxt.fm": [2024], "jennifer365.us": [2024], "verio.com": [17711], "mrkt.ink": [2024], "aitken.ninja": [2024], "ducttape.me": [2024], "mtsensk.startsmile.ru": [21980], "junior.rtvs.sk": [13536], "dl.imgbox.com": [7997], "suggests.seferler.yandex.com.tr": [18740], "con.omarrey.es": [2024], "gorod.yandex.com.tr": [18740], "s.iptorrents.com": [7802], "link.soosin.com": [2024], "medicine.wustl.edu": [18089], "fx.yandex.by": [18739], "peepd.com": [12544], "greenste.in": [2024], "club.jr.jd.com": [8436], "bots.kik.com": [20716], "apachecon.com": [1120], "www.simple-talk.com": [14883], "sidux-ev.org": [14828], "intranetfuo.uniovi.es": [17282], "dmzadfs.inl.gov": [20537], "ttlbr.ca": [2024], "tntiny.com": [2024], "loja.vodafone.pt": [17903], "deprexis.com": [4362], "tiuz.unizar.es": [17441], "mediabath.uk": [2024], "nls.pw": [2024], "esti.be": [2024], "www.policyreview.info": [12911], "www.icsi.berkeley.edu": [17329], "*.app.stackpath.com": [21970], "developers.optimizely.com": [12107], "view.uk.adjug.com": [580], "www.vitamintalent.com": [17879], "oliver.kadak.eu": [2024], "mrk.bz": [2024], "support.bayphoto.com": [1732], "nl.syllable.org": [22064], "www2.payback.pl": [21363], "fred.im": [2024], "appetize.io": [1146], "my.kazgorset.ru": [20696], "disc-soft.com": [4527], "*.bytelove.it": [2504], "static.hsstatic.net": [7094], "browserid.org": [2387], "just-eat.com": [20671], "bobrov.startsmile.ru": [21980], "tft.link": [2024], "www.oisc.homeoffice.gov.uk": [20399], "www.bintray.com": [1928], "usrjoy.com": [17533], "piwik.tiki.org": [16520], "iprop.my": [2024], "expatpartnersurvival.com": [20052], "horaires.homecomputing.fr": [7487], "ic.snssdk.com": [21884], "cellbio.nature.com": [11140], "www.cloudbees.com": [19622], "lovefir.st": [2024], "wedblog.co": [2024], "cdn.myfonts.net": [10805], "book.flypeach.com": [20126], "rotoqlapp.com": [2024], "addons.wesnoth.org": [18298], "www.rally.org": [13596], "packages.sabayon.org": [14275], "sandbox.secure.checkout.visa.com": [17846], "glaciergam.in": [2024], "cps.youku.com": [18804], "s2media.be": [14119], "dermedics.at": [2024], "webyog.com": [18266], "assets.omniture.com": [11842], "www.ymstat.com": [18712], "atgfw.org": [19268], "to.alantsai.net": [2024], "pentestpartners.com": [12563], "johnca.de": [2024], "imrs.oxfordjournals.org": [12222], "twosigma.com": [16971], "npl.stanford.edu": [15448], "unitymedia.de": [17311], "a.tycho.co": [2024], "www.prettylightsmusic.com": [13088], "cel.gs": [2024], "ethiopia.usembassy.gov": [22406], "y6.chaucanh.net": [2024], "www.getjive.com": [8597], "prco.co": [2024], "support.netdna.com": [11227], "comodo.net": [3507], "s2.biz.itc.cn": [8401], "s.4zal.net": [2024], "y8stud.io": [2024], "etrtbs7.smartstream.tv": [15064], "lists.ntp.org": [11005], "www.minbzk.nl": [11172], "photos.nwf.org": [11126], "el.piliapp.com": [12706], "webmail.eol.hu": [8321], "www.cui.uni-hamburg.de": [17254], "www.riscos.com": [13491], "euroforum.de": [5402], "3n4x06ae2rzxh793x0m23k6c49dhpnewb9b1lifi.ipleak.net": [20571], "urop.ust.hk": [22412], "wiki.mageia.org": [9865], "www.transbuddhists.org": [16736], "fcgives.justgive.org": [8709], "www.syxin.com": [15831], "www.apsjobs.gov.au": [394], "www.stardrifter.org": [15466], "utoronto.ca": [17428], "store.httpwatch.com": [7102], "eex.com": [5419], "legacydev.pfizerpro.com": [12642], "mir-skidok.psbank.ru": [13231], "www.picomoney.com": [12695], "bugs.kde.org": [8735], "nkb.ch": [20683], "www.sns.gov.uk": [21883], "go.irtrip.com": [2024], "xcdn.co": [18595], "v-temernitsky.beeline.ru": [1778], "ensr.dict.cc": [4442], "imagehotels1.cdnvideo.ru": [19536], "l.itdevelop.ru": [2024], "advisor.wmtransfer.com": [18173], "natmonitor.com": [11081], "www.newsgator.com": [11369], "iq.intel.co.uk": [8209], "chrome.google.com": [6818], "portal.sovcombank.ru": [21914], "sstools.co": [2024], "supergate4.info": [2024], "neo900.org": [11187], "plgn.me": [2024], "usefb.adsrvr.org": [688], "piratetavern.net": [22174], "www.tlscompare.org": [15891], "url.digicafe.jp": [2024], "dnssec.ietf.org": [7725], "centosblog.com": [2951], "mcs2015.org": [2024], "it.metooo.io": [10343], "www.kkk.com": [8944], "durchmesser.ch": [19907], "go.jirwin.me.uk": [2024], "ipair.com": [20566], "*.circleofmoms.com": [3159], "jsclasses.org": [8671], "ibank.utb.ru": [17538], "paman.tk": [2024], "los.hdfcbank.com": [7249], "broadly.vice.com": [17754], "www.elsevier.com": [5177], "s0.pimg.tw": [12709], "loadm.exelator.com": [4988], "homesupport.cisco.com": [3165], "blog.wmtransfer.com": [18173], "mynm.us": [2024], "overviewproject.org": [12203], "so-by.com": [2024], "free.ysaid.com": [2024], "west-norfolk.gov.uk": [22563], "www.lith.liu.se": [9097], "*.motorolasolutions.com": [10656], "barnsley.objective.co.uk": [21225], "y3.gm.163.com": [50], "www.revstr.com": [13908], "bbs.arkos.io": [1222], "ipage.com": [7806], "nvim.us": [2024], "wiki.emfcamp.org": [19987], "hotshiitake.me": [2024], "videointerchange.com": [17779], "marches.montpellier3m.fr": [10609], "apidev.snip2code.com": [15100], "cstreet.us": [2024], "www.essex.police.uk": [5355], "weg.io": [2024], "pagpop.com.br": [12357], "netways.de": [11300], "www.fans.fm": [20075], "marina.uniovi.es": [17282], "gbar.cloud": [2024], "elt.me": [2024], "x.unco.pw": [2024], "docs.askives.com": [1291], "vc.escap.un.org": [17057], "cdn.yb0t.com": [18773], "ipcri.me": [2024], "scorerestore.com": [14454], "go.prbx.co": [2024], "hh.se": [7045], "blog.101domain.com": [15], "ijtj.oxfordjournals.org": [12222], "rvw.pt": [2024], "intra.fa.vutbr.cz": [17609], "y-c.am": [2024], "qhtfpc.jd.com": [8436], "www.bhamcommunity.nhs.uk": [10953], "criosweb.ro": [3796], "md01.plex.tv": [12854], "khist.digitale-diathek.net": [4490], "www.continuum.io": [19676], "ria.thomsonreuters.com": [16456], "pp-international.net": [21475], "lists.mindrot.org": [10450], "sysward.com": [15814], "galette.eu": [20196], "mpage.co": [2024], "upptack.dn.se": [19856], "es.corporate.walmart.com": [18059], "www.guardianproject.info": [6983], "ccd.click": [2024], "vocalarticles.com": [11341], "dashboard.mtree.mycelium.com": [21063], "www.kohls.com": [8968], "go.ekayi.com": [2024], "login.bloomberg.com": [2133], "wimpy.link": [2024], "www.cesg.gov.uk": [2597], "176h898z17qtacdn0jo4gbohs5c1wdkix8fr0jl3.ipleak.net": [20571], "wuala.com": [18571], "*.shopstyle.fr": [14781], "xianxia.qidian.com": [13349], "api.allmyvideos.net": [906], "*.postgresql.us": [13021], "home.cern": [2588], "studiopress.com": [15609], "bo3.play-asia.com": [12828], "www.ivpn.net": [7868], "*.equip.org": [5323], "y.djmcloud.com": [2024], "www.asp.net": [413], "web.comviq.se": [2024], "psychologytoday.com": [13236], "tapetv-slowjam.de": [16019], "archive-2.kali.org": [8786], "i7.walmartimages.com": [18060], "hertyr.org": [2024], "twnf.nl": [2024], "khoc.co": [8741], "pt.trafficjunky.net": [16721], "jajoz.me": [2024], "djh.cc": [2024], "ehjcvp.oxfordjournals.org": [12222], "m.lispac.lsbu.ac.uk": [9111], "m.snsbank.nl": [14207], "www.cbsm.at": [8782], "planning.bury.gov.uk": [19476], "exchws.illinois.edu": [17346], "innovateu.osu.edu": [11797], "syncany.org": [15792], "profile.meetme.com": [10224], "novgorod.tpprf.ru": [22260], "ecohack.te-st.ru": [22103], "www.ripmedicaldebt.org": [21653], "webmail.hs-esslingen.de": [7449], "www.barnebys.com": [1703], "www.jpackage.org": [8461], "www.volistob.ru": [22493], "jms1.net": [8601], "revu.bz": [2024], "blog.netflix.com": [11268], "www.hdvlink.com": [20359], "drsd.biz": [2024], "on.thestar.com": [2024], "mywickr.com": [18374], "stec-t01.xhcdn.com": [18605], "portal.sec.ibm.com": [7679], "preenme.co": [2024], "privat.tdc.dk": [15862], "www.domain-dns.com": [4639], "s.listfreak.com": [2024], "my.decats.org": [2024], "garo.me": [2024], "rest.bitcoinchain.com": [19387], "www.allyou.net": [889], "euv.immo": [2024], "www.illinoislawreview.org": [7969], "prcache.microadinc.com": [10380], "serverfault.com": [15424], "mtw.bz": [2024], "careers.nvidia.com": [11022], "support.vancity.com": [17643], "b.myplex.tv": [2024], "nhncorp.com": [10949], "getprepaidcard.hdfcbank.com": [7249], "usabil.la": [2024], "subscribe.hearstmags.com": [7271], "s.t4a.org": [2024], "orel-i-reshka-shoping.friday.ru": [20175], "avatars0.githubusercontent.com": [6661], "pdsloginorange.bl.uk": [2358], "undergraduateresearch.osu.edu": [11797], "ssoa.edu.rosminzdrav.ru": [21674], "jgmc.xyz": [2024], "cpanel.com": [2665], "mulu.co": [2024], "www.humanism.org.uk": [7617], "vfl.me": [2024], "rhc.to": [2024], "www.pokemon.co.jp": [12899], "*.post.at": [12995], "cdn4.hola.org": [7453], "e4b-2.richrelevance.com": [13927], "lars.to": [2024], "www.mkssoftware.com": [9771], "bf.ind.br": [2024], "www.clearlinux.org": [3233], "www.ledger.co": [9233], "yel.oxfordjournals.org": [12222], "u.pli.cc": [2024], "www.atypon.com": [1369], "53.rkn.gov.ru": [13971], "www.myesri.com": [5352], "www.notalwaysworking.com": [21164], "projectcounter.org": [2657], "sony.co.uk": [21901], "www.fhs.se": [5560], "tanea.info": [2024], "hostbillapp.com": [7516], "openapi.baidu.com": [1641], "f.a40.de": [2024], "wpi.edu": [18516], "hbtvs.us": [2024], "www.ubjobs.buffalo.edu": [17382], "secure.adultshopping.com": [697], "go.gureev.me": [2024], "rec.al": [2024], "on.natalie.tips": [2024], "magtat.info": [2024], "estateshelpdesk.nottingham.ac.uk": [11567], "strikingly.com": [15592], "www.streak.com": [22005], "static1.glassdoor.com": [6683], "u.gopt.me": [2024], "mtmweb.com": [10202], "login.skype.com": [15003], "simplekb.com": [14891], "www.hackerrank.com": [7130], "*.rtp.vc": [13535], "payoneer.com": [12515], "numa.paris": [11614], "fuar11.beget.com": [19347], "anonymousspeech.com": [1088], "www.in.th-nuernberg.de": [16239], "news.amco.on.ca": [2024], "postbydnx.com": [13009], "joycasino11.com": [20654], "www.fluechtlinge.wien.gv.at": [22588], "help.libreoffice.org": [9327], "cchgroup.com": [2562], "*.craigslist.org": [3754], "wpc.016b.edgecastcdn.net": [18145], "psichi.com": [2024], "airte.ch": [2024], "citpmo.wusm.wustl.edu": [18089], "bux.cz": [19481], "www.translatewiki.net": [16747], "khms.google.com": [6825], "bbody.live": [2024], "oupublic.statushub.io": [15504], "bhf.me": [2024], "support.contextly.com": [3617], "neobits.com": [11192], "tx3.gm.163.com": [50], "w.hee.li": [2024], "goodmancenter.stanford.edu": [15447], "lmmp.nasa.gov": [10909], "*.eniro.se": [5264], "genjing.co": [2024], "freecultr.com": [5584], "fitgeld.raiffeisen.ch": [13588], "taskforce.is": [16033], "adfs.kyivstar.ua": [9067], "mssp.photos": [2024], "www.myloc.de": [10815], "ftgv.com": [2024], "jipiao.jd.com": [8436], "c-and-a.ca": [2024], "popen.ble.de": [19406], "media.govdelivery.com": [6845], "blog.openhpi.de": [11977], "centrum.active24.cz": [19062], "login.postpay.de": [19816], "clime.at": [2024], "gratipay.com": [6882], "www.iraaa.org": [7813], "kaidian.waimai.meituan.com": [10248], "highland.gov.uk": [20374], "sl.ngpriest.com": [2024], "*.upic.me": [17473], "next.sky.de": [14990], "www.npmawesome.com": [11582], "www.uk2img.net": [17037], "ewa.earth": [2024], "uk.support.tomtom.com": [16615], "b.ldmn.nl": [2024], "blackphone.ch": [2066], "sst.kirklees.gov.uk": [8929], "y.phz.me": [2024], "oli.link": [2024], "uptwn.ch": [2024], "astrakhan.kavkaz-uzel.ru": [20694], "thetim.es": [2024], "zmbg.co": [2024], "lnk.slyzah.be": [2024], "www.gitian.org": [6663], "dl.miscea.com": [2024], "*.madmimi.com": [9852], "ixol.it": [2024], "*.nexac.com": [11394], "surveys.fi.ncsu.edu": [11531], "*.80spurple.com": [238], "scap-on-apple.macosforge.org": [9835], "blog.details.com": [3554], "dfobr.xyz": [2024], "www.landalcampings.de": [18579], "idnet.net": [7710], "www.regiochannel.com": [13791], "readthedocs.io": [13671], "evnt.ws": [2024], "trvl.chubit.com": [2024], "solveris.co": [2024], "pim.bof.nl": [1564], "devices.yammer.com": [18738], "domainmanager.otenet.gr": [12164], "download.nos.nl": [10984], "via.macomber.de": [2024], "whaleoil.me": [2024], "didier.mayfirst.org": [10112], "www.skyscanner.dk": [15006], "tech.okcupid.com": [11809], "l.thzinc.com": [2024], "bagan.nso.ru": [21192], "norma.to": [2024], "bsqi.fr": [2024], "itdd.us": [2024], "kooz.ai": [2024], "static1.businessinsider.com": [2471], "www.singularityhub.com": [14916], "yida.knet.cn": [8757], "ui.ptlogin2.tenpay.com": [16185], "cmpsd.co": [2024], "refedd.org": [13471], "g.juliens.me": [2024], "formkeep.com": [6019], "www.l2c.co.kr": [9076], "mendotausd.illuminateed.com": [20494], "www.libressl.org": [9330], "tracking.borderfree.com": [2241], "raildata.orr.gov.uk": [21294], "wod.city": [2024], "www.smartadserver.com": [15049], "forum.alpinelinux.org": [918], "chr.us": [2024], "dentalassoc.us": [2024], "myendnoteweb.com": [5232], "cntcerber.rambler.ru": [13600], "partner.googleadservices.com": [6827], "asia.allianz.com": [19151], "m.69006.com": [2024], "short.yasiu.pl": [2024], "g.neoground.com": [2024], "www.tcli.ed.gov": [4881], "oig.nasa.gov": [10909], "mok.it": [2024], "landalskilife.com": [18578], "center.atomz.com": [1356], "www.chainfire.eu": [19556], "events.nyu.edu": [11333], "hero.re": [2024], "www.caktusgroup.com": [2738], "www.rlt.ulaval.ca": [17319], "kantarainitiative.org": [8802], "www.im9.eu": [20496], "track.campaigneq.com": [2791], "res-2.cloudinary.com": [3306], "www.foldingcoin.net": [5962], "sibhub.com": [2024], "wu.gg": [2024], "yourmoney.ch": [20683], "alumni.th-mittelhessen.de": [15874], "opie.im": [2024], "annstyle.co": [2024], "zdrec.co": [2024], "di.kotamini.com": [2024], "content.izvestia.ru": [8419], "www.brainstorage.me": [2290], "premiertaxfree.com": [13073], "french.algeria.usembassy.gov": [22406], "ameba.jp": [19184], "www.xpiconly.com": [18624], "efm.dfs.un.org": [17057], "tinkerforge.com": [16551], "eshop.state.gov": [17146], "minirick.duapp.com": [19902], "www.syscan.org": [15813], "www.postpointsrewards.com": [12999], "tsatx.org": [2024], "my.fllwshp.com": [2024], "on.tvline.com": [2024], "roboform.com": [13981], "www.clasohlson.se": [3216], "is.blinky.fr": [2024], "*.re-pear.com": [1153], "www.coverfire.com": [3729], "go-tiny.me": [2024], "pool.telekom.hu": [9881], "6.darkroom.shortlist.com": [14795], "rioc.uarto.info": [2024], "www.pocketgamer.co.uk": [12881], "www.gameladen.com": [6411], "*.shopmania.org": [14778], "helpdesk.rz.ruhr-uni-bochum.de": [14086], "gse-it.stanford.edu": [15448], "rsly.in": [2024], "fgr8.be": [2024], "mandelbrot-dev.kairo.at": [8782], "*.bucyrustelegraphforum.com": [2407], "allia.so": [2024], "bitly.ploni.com": [2024], "d2.alternativeto.net": [934], "www.myhearstnewspaper.com": [7270], "ws.ghash.io": [6308], "www.microfocus.com": [10382], "www.whocanivotefor.co.uk": [22582], "my.web.com": [2024], "magicaffiliateplugin.com": [9873], "forum.ubuntu-fr.org": [17178], "kamchatinfo.com": [20679], "url.40x.co": [2024], "helpdesk.samfox.wustl.edu": [18088], "community.wholeliving.com": [10040], "www.inbenta.com": [8041], "xaas.mx": [2024], "u.tumba.ch": [22306], "www.buycraft.net": [2488], "ctera.com": [2698], "one.zemanta.com": [18912], "danforthuniversitycenter.wustl.edu": [18089], "rainbowgames.cdnvideo.ru": [19536], "snd.vn": [2024], "www.piratebayproxy.be": [22174], "emailmarketing.mastermindsdigital.com": [10068], "hrrn.net": [2024], "*.research.net": [15724], "oyst.rs": [2024], "gov-murman.ru": [20293], "*.up0.net": [17464], "www.lantea-dev.kairo.at": [8782], "assemble.me": [1303], "fukuchi.org": [6224], "spin.bz": [2024], "aberg.in": [2024], "forf.it": [2024], "blogg.sydsvenskan.se": [15776], "minstroy.gov-murman.ru": [20293], "broadbandchoices.co.uk": [2369], "www.mixxx.org": [10509], "cchtw.myftp.org": [2024], "*.sagepay.com": [14299], "dashboard.fiksu.com": [5773], "dom.ngs.ru": [21134], "www.bbseyes.com": [1743], "strypr.es": [2024], "eggs.gnu.org": [6337], "www.documentfreedom.net": [4617], "announcements.telegraph.co.uk": [16149], "api.joomla.org": [8641], "admj.us": [2024], "sub5ze.ro": [2024], "wrk.tg": [2024], "mauamolat.cf": [2024], "assets.sussan.com.au": [15729], "revw.co": [2024], "learningzone.eastsussex.gov.uk": [19938], "tsmit.me": [2024], "lnk.gchrl.org": [2024], "anthemwtsdc.anthem.com": [19206], "www.hellowebapp.com": [7299], "benefits.usc.edu": [17366], "santander.co.uk": [14354], "git28.rostrud.ru": [21677], "learn.news": [2024], "os.om": [2024], "www.renoise.com": [21627], "awwurl.com": [2024], "finaid.med.wustl.edu": [18089], "www.static.androidpit.info": [1052], "api.tangerine.ca": [16008], "box.wikileaksparty.org.au": [18384], "analytics.hathitrust.org": [7230], "citrix.enter.ru": [20002], "ger.al": [2024], "www2.gotomeeting.com": [6769], "blog.snipt.net": [15102], "anquan.org": [19204], "www.piratenlogin.de": [12752], "*.airtricity.com": [801], "kch.nhs.uk": [10953], "eon-uk.com": [4855], "www.bufferbloat.net": [2420], "ren.kn": [2024], "webmail2.cesky-hosting.cz": [19553], "cachemobile.williamhill.com": [18407], "dande.li": [2024], "investigativedashboard.org": [8313], "readthedocs.com": [13671], "burlingtonfreepress.com": [2457], "brain.oxfordjournals.org": [12222], "www.zencache.com": [18915], "www.paradoxplaza.com": [12414], "www.simplysecure.org": [14898], "self.highland.gov.uk": [20374], "drivingsal.es": [2024], "ric.srchg.xyz": [2024], "r24616718.sync.app.asana.com": [1265], "downloader.disk.yandex.com.tr": [18740], "willdo.me": [2024], "podcasts.it.ox.ac.uk": [17359], "www.win.tue.nl": [15940], "kabardino-balkaria.kavkaz-uzel.ru": [20694], "cdn2.recombu.com": [13710], "wifilib.com": [18377], "ingd.es": [2024], "hrld.us": [2024], "mgpr.49gov.ru": [187], "erlc.co": [2024], "h.ope.is": [2024], "fds.ht": [2024], "facebook.migros-kulturprozent.ch": [10416], "cms.permits.performance.gov": [12600], "m.sie.gs": [2024], "fanshop.kicker.de": [8895], "fz.kfc.ru": [20707], "www.kapsi.fi": [8806], "www.woobox.com": [18506], "www.pixoto.com": [12782], "www.oes.umd.edu": [17351], "fandan.co": [2024], "www.honcode.ch": [7081], "www.exploithub.com": [5499], "p-t.pub": [2024], "opera.yandex.com.tr": [18740], "i.jpd.ms": [2024], "forms.ncl.ac.uk": [10926], "neu.directbox.com": [4517], "ddelay.com": [2024], "store.gentlelabs.com": [6514], "srpets.co": [2024], "storepup.s1.citilink.ru": [19594], "popularresistance.org": [12966], "us.delik.co.id": [2024], "posho.tv": [2024], "sadto.me": [2024], "australianclinicaltrials.gov.au": [1409], "get.gitlab.com": [6658], "*.monitis.com": [10593], "on.thedailyshow.com": [2024], "vande.jp": [2024], "tank.biligame.com": [1903], "vn.webike.xyz": [2024], "artward.co": [2024], "img1.sj.qq.com": [13329], "www.oagaviation.com": [16999], "www.gfi.nl": [6299], "www.openideo.com": [11981], "newa.nz": [2024], "www.regonline.com": [13784], "action.aclu.org": [312], "raty.mall.pl": [9934], "stanfordhealthlibrary.worldcat.org": [18536], "car-hire.lastminute.com": [9177], "www.mommyslittlesunshine.com": [10575], "urs.earthdata.nasa.gov": [10909], "sjs1.sinajs.cn": [14909], "ukrad.io": [2024], "csis.dk": [2687], "m.dn.se": [19856], "bugs.debian.org": [4263], "j.gottli.com": [2024], "birobidjan.europaplus.ru": [20034], "pabr.co": [2024], "threatpost.com": [16468], "coolb.lu": [2024], "www.cron-job.org": [19721], "laynepublications.com": [9195], "ut06.xhcdn.com": [18605], "pshr.us": [2024], "www.perfecthair.ch": [21387], "z.kenfrost.com": [2024], "market.jcloud.com": [8555], "eventim.co.*": [5433], "ppn.nottingham.ac.uk": [11567], "tcga.cancer.gov": [2819], "img4.bdstatic.com": [19339], "b.wats.me": [2024], "wwwa.ipleak.net": [20571], "life.taobao.com": [16015], "selfservice.preston.gov.uk": [21491], "c3voc.de": [2514], "cdn1.timminchin.com": [16527], "www.hskampus.de": [7588], "my.comscore.com": [3454], "jwst.nasa.gov": [10908], "jscdn.islamictech.com": [8380], "a.pprinc.io": [2024], "culture.gov-murman.ru": [20293], "s01.mifile.cn": [10411], "froyo.fit": [2024], "go.afutuh.com": [2024], "*.techopedia.com": [16112], "foodler.com": [5982], "www.netbank.de": [11255], "shiftpayments.com": [14764], "burgerhou.tj": [2024], "*.cengagebrain.co.uk": [2946], "link.dapda.com": [2024], "tmpl.at": [2024], "*.utexas.edu": [17372], "apps.rhb.ch": [13914], "*.navy.gov.au": [14049], "holtwick.it": [7470], "archive.sport-express.ru": [21941], "autodiscover.adm.leeds.ac.uk": [17403], "www2.hs-esslingen.de": [7449], "liginc.co.jp": [20839], "internships.democrats.org": [4338], "profile.microsoft.com": [10396], "blog.trailofbits.com": [16729], "www.blueshorefinancial.com": [2149], "saqa.co": [2024], "www.audit.wales": [19273], "www.irccloud.com": [8351], "www.cimacorp.net": [5616], "www.elearning.uni-mainz.de": [17410], "uum.worldcat.org": [18536], "typotheque.com": [16989], "ncwb.be": [2024], "austinfitmagazine.com": [1402], "socialsecurity.gov": [15126], "onedrive.live.com": [9495], "thul.me": [2024], "www.bullockinc.com": [2436], "appproxy.3sat.de": [174], "1.tohost.co": [2024], "ak-c.ooyala.com": [11936], "sdeleni.idnes.cz": [20483], "ss10.sinaimg.cn": [14910], "w1.buysub.com": [2578], "intelligence.org": [8216], "support.ukrnames.com": [17209], "www.vik.bme.hu": [1556], "sqla.endora.cz": [5237], "bwrk.pm": [2024], "lrtm.nl": [2024], "wmata.nextbus.com": [11400], "*.genivi.org": [6295], "apiv2.vevo.com": [17566], "tc.rsdn.org": [21685], "arc.osu.edu": [11797], "stacks.stanford.edu": [15448], "fosfor.us": [2024], "www.doesburg.nl": [11172], "www.superbreak.com": [22037], "zjsn.biligame.com": [1903], "akolaproject.org": [813], "myaccount.talktalk.co.uk": [15993], "www.uio.no": [17414], "winterpark.mcdonalds.ru": [20941], "gvv.io": [2024], "tlsel.it": [2024], "gradappl.cs.hku.hk": [20387], "iseclab.org": [8361], "adafruit.com": [604], "udd.debian.org": [4263], "fox-toolkit.org": [5579], "tmnt.cc": [2024], "weburg.me": [22553], "ore.do": [2024], "i.materialise.com": [7658], "dttd.in": [2024], "itnotices.iu.edu": [8069], "weebly.com": [18269, 18270], "metric.yandex.com": [18742], "rsp.im": [2024], "seer.is": [2024], "video-http.media-imdb.com": [7760], "www.thecipherbrief.com": [22146], "declas.se": [2024], "a2-images.myspacecdn.com": [10889], "intelrad.com": [8222], "groceries.asda.com": [407], "cdn.underwearexpert.com": [17247], "abinsk.tpprf.ru": [22260], "services.salford.gov.uk": [21721], "tokvideo.adsrvr.org": [688], "www.labelsig.com": [9142], "www.teamsciencetoolkit.cancer.gov": [2819], "mediaarts-db.jp": [10181], "www.i0.cz": [7660], "prt.to": [2024], "vuar.net": [2024], "cavium.com": [2920], "ly.43tc.com": [2024], "adbra.in": [2024], "www-conf.slac.stanford.edu": [15448], "masterh6.adriver.ru": [588], "iimani.com": [2024], "assets.flameeyes.eu": [5880], "s14.pixxxels.org": [21427], "sprt.ca": [2024], "wiki.answers.com": [1096], "bioinformatics.crick.ac.uk": [19719], "ia.lbp.me": [20789], "abo.faz.net": [5545], "portal.fastserv.com": [5671], "healthcareers.nhs.uk": [10953], "utrecht.nl": [11172], "www.sallybeauty.com": [14314], "autodiscover.posteo.de": [13016], "depgrad.government-nnov.ru": [20295], "secure-u.de": [14550], "catedraaitiip.unizar.es": [17441], "smth.co": [2024], "5sp.in": [2024], "hospital.pe": [2024], "xnd.to": [2024], "r24617905.sync.app.asana.com": [1265], "projectlava.xyratex.com": [18700], "build.kde.org": [8735], "athl.biz": [2024], "www.siteuptime.com": [14942], "agricultureandfoodsecurity.biomedcentral.com": [1931], "absys01.ulpgc.es": [17213], "www.tealiumiq.com": [16060], "origin.urbandictionary.com": [17494], "bremer.com": [2320], "clrkkv.in": [2024], "www.threattracksecurity.com": [16469], "www.bitcoin-central.net": [1985], "emsonline.cardiff.gov.uk": [19509], "wig.mx": [2024], "serverdensity.io": [14675], "www.silverpop.com": [14865], "subscribe.technologyreview.com": [16107], "*.icinga.org": [7918], "14o48z6nzv3dzrd51fcvo4ucugatx9kih0f3makr.ipleak.net": [20571], "www.vantageone.net": [17652], "via.brianco.rs": [2024], "webe.unizar.es": [17441], "success.parature.com": [12425], "*.washingtontimes.com": [18087], "media.kb.iu.edu": [8069], "strw.rs": [2024], "www.nvcc.edu": [11627], "endrift.com": [5238], "picture3.cyberport.de": [3966], "senat.gov.pl": [14635], "allianz-fuer-cybersicherheit.org": [900], "my.gogetssl.com": [6762], "www.soyoustart.com": [15117], "mpr.khabkrai.ru": [20709], "www.bremen2.fau.org": [5543], "i.kyledavid.com": [2024], "calendar.fnal.gov": [5741], "photosugar.com": [12674], "seiu.mn": [2024], "terminal.mtsbank.ru": [10720], "*.crainsnewyork.com": [3756], "pig.me": [2024], "c.itunes.apple.com": [1151], "kmd.li": [2024], "www.sandstorm-media.de": [14344], "*.weissinc.com": [18281], "aits.uillinois.edu": [17034], "assets.curiouscat.me": [3924], "genome-cancer.ucsc.edu": [17390], "s6.postimg.io": [13024], "fotv.co": [2024], "www.iceleads.com": [7914], "101xp-portal-pl.cdnvideo.ru": [19536], "co3sys.com": [3330], "cdn.motorola-2.com": [10656], "lbre.stanford.edu": [15448], "loughborough.greenparty.org.uk": [6908], "mb168.me": [2024], "www.vce.com": [17561], "swapbot-stage.tokenly.com": [22229], "web.search.ch": [14504], "gimp.org": [20246], "www.burtcorp.com": [2465], "pingvinbolt.hu": [12722], "j.pivo.ca": [2024], "krymsk.startsmile.ru": [21980], "www.hollywoodoutlaws.com": [7467], "s.360.cn": [142], "bioti.ca": [2024], "cdn.wcdc.xfinity.com": [22650], "hipaa.stanford.edu": [15448], "l.p-slovo.ru": [2024], "popsci.com": [12956], "h.ijoe.co": [2024], "www.nordu.net": [11518], "www.coinkite.com": [3406], "2.djm3.net": [2024], "hnonline.sk": [7445], "humanbrainproject.eu": [7612], "fxt1.uc.cn": [17003], "it.pochtabank.ru": [12876], "fff.me": [2024], "thepiratebay.bypassed.faith": [21524], "catalog.wustl.edu": [18089], "horoscopes.rambler.ru": [13600], "sproutvideo.com": [15390], "vsn.tl": [2024], "cdn2.outspark.com": [12186], "secure.acuityscheduling.com": [558], "curi.me": [2024], "49.rkn.gov.ru": [13971], "www.sofurryfiles.com": [15113], "uvic.ca": [17155], "ioac.tv": [2024], "*.incisivemedia.com": [8049], "www.techmeme.com": [16094], "number4.herefordshire.gov.uk": [7326], "english.al-akhbar.com": [818], "hse.sg": [2024], "mappedinisrael.com": [9982], "easyte.ch": [2024], "www.localphone.com": [20866], "www.jetbrains.com": [8573], "bugs.openmamba.org": [21276], "devoncredit.ru": [4417], "www.trashmail.com": [16762], "healthdream.ml": [2024], "kabelmail.de": [8775], "portal.velleman.eu": [17685], "*.pearson.com": [12539], "regiedeseaux.montpellier3m.fr": [10609], "esnextb.in": [20019], "en.huxiu.com": [7638], "m.h2cloud.eu": [2024], "www.slickproductsusa.com": [15023], "yeggi.com": [18760], "*.fabricatorz.com": [5607], "www.dentistry.uic.edu": [17321], "*.scribdassets.com": [14475], "lipetsk.sledcom.ru": [21858], "sublime.wbond.net": [22540], "secure.zeta.systems": [18949], "offs.ec": [2024], "clarius.to": [2024], "boutique.lemonde.fr": [9204], "www.cis-india.org": [2626], "www1.ethz.ch": [4967], "dafdirect.org": [4098], "s-pankki.fi": [14116], "curseinc.com": [3927], "www.thinksteroids.com": [9750], "ww2026.smartadserver.com": [15049], "news.mit.edu": [9763], "s.tachun.info": [2024], "www.simplefin.org": [14885], "static.uniregistry.net": [17286], "*.cmu.edu": [2869], "applebees.com": [1154], "lomonosov.biglion.ru": [19375], "qgazette.com": [13397], "vivo.tl": [2024], "filesharingshop.com": [20092], "ram1.org": [2024], "www.trafficstars.com": [22267], "*.crsspxl.com": [3811], "coolwebscripts.com": [3642], "gitlab.build.ligatus.com": [9356], "examiner.com": [5469], "phe.no": [2024], "doc.tiki.org": [16520], "ads.ookla.com": [11930], "data2.dawateislami.net": [4223], "mulle-kybernetik.com": [21047], "*.gotvape.net": [6837], "conflictlink.nl": [2024], "www.openrussia.org": [12077], "wyr.be": [2024], "now.symassets.com": [15780], "vk.mediametrics.ru": [20950], "slimerjs.org": [21860], "neosmart.net": [11191], "hof.careers": [2024], "bmat.in": [2024], "prometric.com": [13197], "git48.rostrud.ru": [21677], "cdn.lib.newsvine.com": [11390], "eurofood.ictv.ua": [20476], "noisey.vice.com": [17754], "s1d.us": [2024], "www.freesound.org": [6162], "www.math.ens.fr": [4922], "www.podrobnosti.ua": [21447], "www.steamrep.com": [15522], "02.imgmini.eastday.com": [5010], "www.cospar-assembly.org": [2655], "*.blogspot.com.cy": [2127], "gemius.pl": [6501], "community.activision.com": [556], "*.superstats.com": [15682], "dodspeople.com": [4621], "www.ttu.ee": [15999], "content.enter.ru": [20002], "ambx.com": [968], "suzunnso2.nso.ru": [21192], "static.prediction.io": [13069], "crunchify.me": [2024], "orgid.accelus.com": [19047], "bh3.biligame.com": [1903], "gws.mediamarkt.de": [20949], "mailboxes.dreamhost.com": [4743], "ssl.panoramio.com": [12396], "sen.lu": [2024], "*.chapman.edu": [3013], "www1.ebanking.hsbc.com.hk": [20427], "wsjsafehouse.com": [11361], "2dope.bz": [2024], "glass.google.com": [6818], "jeta.us": [2024], "www.opensvc.com": [12008], "remotestorage.io": [13823], "dmvh.win": [2024], "myaccount.stubhub.com": [15602], "url.moshi.co": [2024], "www.developer.blender.org": [2086], "cricketa.us": [2024], "www.imagecomics.com": [7979], "breast-cancer-research.biomedcentral.com": [1931], "lexisnexis.com": [13761], "s.xodeus.dk": [2024], "exte.ch": [2024], "www.videogold.de": [17773], "wtpne.ws": [2024], "account.jwplayer.com": [9601], "www.fidh.org": [5561], "api.bilibili.com": [1904], "www.apps4.lbhf.gov.uk": [9078], "semel.me": [2024], "megamallcy.com": [2024], "aet.na": [2024], "httpswatch.nz": [7101], "www.nerdsnook.com": [11199], "rdcrss.org": [2024], "go.civilers.com": [2024], "kb.optimisemedia.com": [12105], "mnyw.ch": [2024], "urldecode.org": [22402], "trend.omnitecinc.com": [11840], "phe.oxfordjournals.org": [12222], "steenwijkerland.nl": [11172], "gain.li": [2024], "cpntr.com": [2024], "www.portrait.gov.au": [11111], "www.accan.org.au": [292], "bug.tasktools.org": [16034], "tapsfam.org": [2024], "zen-cart.com": [18918], "www.musicbrainz.org": [10752], "cte.ace.beta.advertising.com": [712], "mobile-web.okcupid.com": [11809], "hairsmize.com": [7155], "tr.trainings.350.org": [140], "wepr.in": [2024], "*.csulb.edu": [2761], "lovliv.co": [2024], "knappschaft-bahn-see.de": [8953], "npac.com": [10985], "*.safe-mail.net": [14287], "mail.3dcenter.org": [159], "www.atlas.cz": [1346], "orionmagazine.org": [12143], "www.wandoujia.com": [18066], "*.newzbin2.es": [11392], "www.zend2.com": [18921], "en.villeta.info": [2024], "is.seagate.com": [14499], "www.whyopencomputing.ch": [22584], "www.imena.ua": [20501], "www.smartcity.wien.at": [22588], "remote-staging.bittorrent.com": [1974], "companieshouse-online.hmrc.gov.uk": [7076], "imageraider.com": [20499], "ssl.sntech.de": [14209], "webmail.wilmerhale.com": [18410], "dsl.so": [2024], "podseed.org": [12891], "shopmania.com": [14778], "link.rkttu.com": [2024], "tokenpass.tokenly.com": [22229], "tangerine.ca": [16008], "wwte1.com": [18031], "feed.friday.ru": [20175], "indiana.edu": [8070], "bria.im": [2024], "petreleaf.us": [2024], "www.shoppingcartelite.com": [14790], "f1.zenclerk.com": [18916], "asset-7.soupcdn.com": [15236], "www.beatsmedia.com": [1765], "go.jump.sg": [2024], "evmv.me": [2024], "hannover.fau.org": [5543], "tmny.uk": [2024], "www.cendio.com": [2943], "fnic.nal.usda.gov": [17299], "www.telekom.com": [16154], "ep04.epimg.net": [5126], "entcss.s-msn.com": [14115], "homesharing.itunes.apple.com": [1151], "www.sciamdigital.com": [21748], "rio2016.udn.com": [17020], "wellingborough.gov.uk": [18287], "contribs.org": [3621], "help.iwantmyname.com": [20614], "llhy.co": [2024], "auction1.taobao.com": [16015], "sammoult.com": [2024], "www.chorus.vgtrk.com": [22455], "amazon.com.br": [19172], "www.inside-security.de": [20541], "wws.play-asia.com": [12828], "fr.discussions.tomtom.com": [16615], "www.ninthdecimal.com": [11460], "quiterss.org": [13421], "gobkart.org": [2024], "i.benh.org": [2024], "www.ucc.dk": [17005], "app.cnblogs.com": [19631], "nuimagemedical.com": [11604], "s-delivery.com": [2024], "english.atlatszo.hu": [1349], "hayloft-plants.co.uk": [20349], "lh5.google.co.*": [6821], "eriklundblad.com": [20013], "lists.freedesktop.org": [6102], "thesmh.co": [2024], "pnga.co": [2024], "www.usa.canon.com": [2822], "ishim.startsmile.ru": [21980], "checkout.lenovo.com": [9267], "jococruise.com": [8602], "oblic.com": [11646], "l.izax.de": [2024], "redding.com": [4981], "www.element14.com": [5148], "i.jefbelgium.eu": [2024], "polleninfo.org": [12928], "das-sendezentrum.de": [10322], "walthamforest.moderngov.co.uk": [21005], "static2.codehs.com": [3347], "sarahd.us": [2024], "b.angen.me": [2024], "s84.cnzz.com": [3328], "video.umontpellier.fr": [22365], "azl.ink": [2024], "www.bluecoat.com": [2143], "www.helixo.fr": [20365], "pricheski.org": [2024], "s.impactory.de": [2024], "olomouc.idnes.cz": [20483], "snrhy.ms": [2024], "prt.io": [2024], "minstroy.government-nnov.ru": [20295], "phmc.info": [2024], "support.connectedu.net": [19668], "odi.osu.edu": [11797], "www.mochahost.com": [10544], "portal.cs.sfu.ca": [14708], "carrier-lost.org": [2873], "plants.jstor.org": [8472], "crys.tl": [2024], "www.webmercs.com": [4163], "confuzzled.org.uk": [3577], "coache.net": [2024], "training.memberdirect.net": [10265], "www.alkohol.cz": [870], "ci.jenkins-ci.org": [8565], "www.muslimamericansociety.org": [10761], "www.sagernotebook.com": [14301], "journals.uchastings.edu": [17014], "seb.tl": [2024], "download.f-secure.com": [5533], "www.whitehothair.co.uk": [18347], "blog.atechmedia.com": [428], "slenderkitchen.com": [15018], "business-registration.neighbourhoodalert.co.uk": [21100], "culturalsurvival.org": [3911], "www.northpole.fi": [11542], "profiles.google.com": [6818], "inspirationgreen.com": [8177], "lists.openitp.org": [11984], "greatnonprofits.justgive.org": [8709], "asjo.org": [1283], "www.despora.de": [4381], "coveralls.io": [3727], "www.construx.com": [3595], "alumsso.mit.edu": [9763], "justgetflux.com": [5935], "www.sciencenode.org": [14442], "lomonosov.startsmile.ru": [21980], "traveldoctor.com.au": [16765], "www.southeasternhampshireccg.nhs.uk": [10953], "matsuev.com": [4348], "www.syncthing.net": [15797], "www.compaq.com": [3512], "treeoftea.de": [2024], "p8e.me": [2024], "img.delivery.rakuten.co.jp": [13594], "sourcesup.cru.fr": [3826], "traktr.news.com.au": [11379], "lbmfc.com": [2024], "*.francescopalazzo.com": [20148], "mjss.sinaimg.cn": [14910], "administrator.de": [19081], "fm.ozonico.net": [2024], "feedback.uc.cn": [17003], "www.marketplace.org": [10026], "www.pnp.ru": [21444], "www.lugons.org": [9121], "bcm-specs.sipsolutions.net": [14184], "avatars2.githubusercontent.com": [6661], "www.casetext.com": [2888], "www.campusvisit.osu.edu": [11797], "api.t.sina.com.cn": [14904], "tenpixels.us": [2024], "oneeyedman.net": [11885], "agn.frontend0.sv.gnu.org": [6337], "stec-t02.xhcdn.com": [18605], "cckn.co": [2024], "tank.as": [2024], "www.badgekit.org": [1629], "wpveda.com": [18561], "communicatelive.co.uk": [3501], "blog.filestack.com": [5787], "l.ssviral.com": [2024], "justia.com": [8714], "boab.co": [2024], "tele2.lt": [16134], "tag.hr": [2024], "vad.mn": [2024], "register.nzpug.org": [21215], "static.projects.iq.harvard.edu": [7211], "www.webmerge.me": [18172], "www.godvillegame.com": [6787], "chelyabinsk.rt.ru": [13529], "gemseek.com": [6504], "ieonline.microsoft.com": [10396], "wien.gv.at": [22588], "apphub.io": [1137], "accor.pspr.fi": [2024], "csszengarden.com": [3890], "dqueiroz.eu": [2024], "cdn02.boxcdn.net": [2271], "heroku.link": [2024], "derpicdn.net": [4368], "uglich.europaplus.ru": [20034], "drchrono.com": [4742], "castel-bayart.com": [2899], "www.empireblue.com": [19988], "hevn.ly": [2024], "racemi.co": [2024], "*.soundstrue.com": [15233], "megastock.ru": [10243], "westmidlands.greenparty.org.uk": [6908], "*.ametsoc.org": [370], "git.mate-desktop.net": [9727], "certificatedetails.com": [19552], "patreon.com": [12490], "golodnye-igry.friday.ru": [20175], "a.gmokisokos.hu": [2024], "syndication.washingtonpost.com": [18086], "www.visaplace.com": [17853], "digia.com": [4463], "video-annotator.services.tv4play.se": [15947], "www.mumble.info": [10739], "76u.co": [2024], "www.admatic.com.br": [659], "www.vipserv.org": [17574], "www.ul.to": [3945], "www.datasaveslives.eu": [4177], "communi.gift": [2024], "hpbddy.co": [2024], "static.citilink.ru": [19594], "www.zse.sk": [19013], "wiki.engr.illinois.edu": [17346], "www.companieshouse.gi": [19656], "owamail.stanford.edu": [15448], "m.madametussauds.com": [9853], "go.xtr.pp.ru": [2024], "www.cryptad.com": [3839], "berci.es": [2024], "l.dunne.io": [2024], "tada.com": [15967], "wartstick.com": [18080], "tryttp.com": [2024], "www.wienerstadtwerke.at": [18376], "mu.sstools.co": [2024], "onlyo.co": [2024], "www.tlhp.cf": [15888], "centrum.vas-hosting.cz": [22428], "gis.g4s.com": [20195], "support.splashthat.com": [15351], "m.beeq.co": [2024], "et11.xhcdn.com": [18605], "l.gpws.ovh": [2024], "kosimak.com": [9003], "static.naukri.com": [21092], "www.timeinc.com": [16535], "maxav.us": [2024], "*.marthastewart.com": [10041], "www.securityledger.com": [14593], "spum.us": [2024], "www.twtpoll.com": [16973], "preprod.mk2.com": [9769], "pioneiro.co": [2024], "asktheexperts.plannedparenthood.org": [12809], "www.viviscal.co.uk": [17887], "*.familie-redlich.de": [5634], "c3.ahosting.cz": [782], "l.plato.fm": [2024], "tdcws01.tandridge.gov.uk": [16007], "1023.fm": [2024], "www.teleguide.info": [22115], "ps.otenet.gr": [12164], "adaminfl.com": [2024], "china.jd.com": [8436], "cwv.me": [2024], "www.simquadrat.de": [14900], "fmc.kyivstar.ua": [9067], "l.pilot.ly": [2024], "srow.tips": [2024], "domcomp.com": [4660], "x1.hitravel.xyz": [2024], "myheritageimages.com": [10876], "web-stat.net": [18139], "www.justmoon.net": [8716], "url.gotouti.jp": [2024], "phastid.io": [2024], "nu.autoweek.nl": [2024], "self.run": [2024], "*.kyani.net": [9063], "ieup.fr": [2024], "hvpe.osu.edu": [11797], "database.com": [4186], "www.kernel-recipes.org": [8872], "sequencing.uio.no": [17414], "m.mindfactory.de": [10448], "s.kdama.net": [2024], "mainelegislature.org": [9909], "www.eaak.tk": [3536], "i2s.sinaimg.cn": [14910], "bbbonline.org": [1519], "lz.centrinvest.ru": [2966], "newrelic.degica.com": [3333], "images.mcafee.com": [10129], "cdn.thestandnews.com": [16315], "eurekalert.org": [20032], "servis.idnes.cz": [20483], "www.wscu.com": [18314], "www.themacro.com": [16409], "www.aeriagames.com": [735], "punchbowl.us": [2024], "trib.by": [2024], "sheffield0to19.sheffield.gov.uk": [14755], "git30.rostrud.ru": [21677], "static.card.jp.rakuten-static.com": [21577], "i2coalition.com": [7662], "kfdown.s.aliimg.com": [861], "www.venturebeat.com": [17700], "s.pitchbook.com": [2024], "future.mit.edu": [9763], "ads.aftonbladet.se": [759], "www.mytritonlink.ucsd.edu": [17012], "www.omniti.com": [11833], "kohlsson.link": [2024], "pocpro.me": [2024], "addons.prestashop.com": [13085], "webmail.netscape.com": [11289], "www.rtr.ch": [21957], "www.serviceuptime.com": [14684], "asseenontv.com": [1263], "peu.me": [2024], "ff.st": [2024], "on.netchows.com": [2024], "forums.cultofmac.com": [3909], "iedgmbh.de": [7716], "nn4.in": [2024], "profile.accounts.firefox.com": [5842], "phpboost.com": [21401], "trip.jd.com": [8436], "www2.admtyumen.ru": [19082], "accounts.smartbear.com": [21865], "newsroom.intel.co.jp": [8208], "www.nasaimages.org": [4083], "ech.cc": [2024], "webxmedia.co.uk": [17992], "youneedabudget.com": [18798], "www.advancedligo.mit.edu": [9761], "s.precena.com": [2024], "sea.news": [2024], "www.zalando.ch": [18877], "ezrss.it": [4994], "networksolutions.com": [11303], "2bl.co": [2024], "www.familie.rh.aok.de": [376], "portal.hud.gov": [17099], "live.wallstreetcn.com": [18057], "uab.worldcat.org": [18536], "magento-u.magento.com": [9868], "al7.at": [2024], "www.webglobe.sk": [18214], "incloak.es": [8034], "www.smartclassroom.iwi-i.info": [20617], "www.peeringdb.com": [12553], "www.photo-mark.com": [10010], "www.rhf.admin.ch": [22061], "h.holder.com.ua": [7456], "youtube.com.kw": [18800], "atraub.us": [2024], "www.freezone.co.uk": [6165], "www.uniteddomains.com": [17303], "in.pulsedm.com": [2024], "real-debrid.com": [13681], "on.tcs.com": [2024], "files.golosinfo.org": [20286], "bestof.lv": [2024], "splashdata.com": [15350], "corporatedomains.com": [3684], "night.0wl.us": [2024], "www.gml.cz": [6739], "devel.gajim.org": [6383], "www.zen-cart.com": [18918], "saltz.it": [2024], "r.facl.org": [2024], "rrn.link": [2024], "packages.qa.debian.org": [4263], "pk.godaddy.com": [6755], "styles.ofcom.org.uk": [11770, 11771], "spidweb.com": [15340], "blog.3sat.de": [174], "image.bilio.com": [1905], "*.esupport.acenet-inc.net": [526], "comicstore.marvel.com": [10047], "www.campiba.be": [2796], "signal.hackerspaces.org": [7138], "chattfun.com": [2024], "consult.cityoflondon.gov.uk": [3192], "review.s1.citilink.ru": [19594], "www.uclick.com": [22344], "khimki.beeline.ru": [1778], "*.singlefeed.com": [14915], "*.publicwhip.org.uk": [13262], "taxi.ya.ru": [18716], "go.mirc.no": [2024], "nzwn.nl": [2024], "librato.com": [9324], "ttns.co": [2024], "m.uw.edu": [17156], "www.fedoraproject.org": [5716], "sed.re": [2024], "*.yelp.es": [18766], "grp15.ias.rakuten.co.jp": [13594], "landalgreenparks.com": [18579], "spthk.us": [2024], "*.m-net.de": [9702], "bbs.wosign.com": [18483], "go.suego.co": [2024], "wipik.bit.nl": [1549], "loo.mn": [2024], "www.efv.admin.ch": [22061], "u.jfix.com": [2024], "*.docelu.pl": [4603], "dlweb.sogoucdn.com": [15169], "hsteup.de": [2024], "library.warwickshire.gov.uk": [22532], "origin.www.upc-cablecom.ch": [22386], "chip-app.de": [2608], "seedprod.com": [14611], "laglxy.com": [2024], "brannerlibrary.stanford.edu": [15448], "ar.aliexpress.com": [854], "macosforge.org": [9835], "schetu.net": [14413], "evn.tc": [2024], "data.mediamarkt.de": [20949], "www.frauen.htwk-leipzig.de": [7596], "www.prezi.com": [13092], "s.yennick.be": [2024], "www.rade.tk": [3536], "*.listonic.com": [9466], "vunet.login.vu.nl": [17608], "static3.codehs.com": [3347], "evn.tw": [2024], "plnx.in": [2024], "emtht.re": [2024], "cybercamp.es": [3951], "lhc-div-miwg.web.cern.ch": [2588], "faq.hoccer.com": [20390], "ukid.cc": [2024], "tsonlinepermit.wusm.wustl.edu": [18089], "dotcomhost.com": [4687], "wilmerhale.com": [18410], "mart.rakuten.co.jp": [13593], "on.far.al": [2024], "www.stylehatch.co": [15616], "kitematic.com": [8936], "media-dev.ycharts.com": [18704], "i0.rgstatic.net": [13481], "s4.srf.ch": [21957], "deals.pastebin.com": [12478], "explti.me": [2024], "aler.oxfordjournals.org": [12222], "buy.symanteccloud.com": [15780], "nutrirejournal.biomedcentral.com": [1931], "ffwd.in": [2024], "plannedparenthood.org": [12809], "blogs.law.stanford.edu": [15448], "www.maplesoft.com": [9981], "www.travis-ci.org": [16775], "www.dsb.mpg.de": [9794], "www.shopperapproved.com": [14788], "www.weakdh.org": [18127], "voip-lk.mtt.ru": [21044], "kbctys.me": [2024], "idaim.fr": [2024], "assets.microsoft.com": [10396], "*.thewordpro.com": [18521], "www.union.uiuc.edu": [17030], "mpsnare.iesnare.com": [7948], "catchmentsensitivefarming.aeasolutions.co.uk": [19099], "www.dmv.ca.gov": [2758], "friz.us": [2024], "fw.to": [6266], "wordpress.org": [18520], "www.gresille.org": [6927], "appveyor.com": [19220], "leisurebookings.broxtowe.gov.uk": [19458], "embeddedanalytics.com": [5190], "vree.ws": [2024], "efectv.com": [2024], "www.openlistings.co": [12051], "conference2008.kde.org": [8735], "wunderl.ink": [2024], "nyfed.org": [2024], "www.fit.edu": [5922], "admin.omgpm.com": [12996], "heartbeat.amediateka.ru": [19186], "www.bitcoincharts.com": [2003], "blog.cartercenter.org": [2876], "brand.jd.com": [8436], "www.fantlab.ru": [5648], "go.jimbos.co.uk": [2024], "www.tune.com": [22309], "video2bra.in": [2024], "www.dinclinx.com": [9859], "statistieken.groenlinks.nl": [6942], "mysn.de": [10887], "www.l0cal.com": [9073], "l.drsoram.com": [2024], "edplivebands.edp.pt": [4888], "poste.it": [13013], "*.leadlander.com": [9208], "cht.pe": [2024], "ieee.osu.edu": [11797], "portal.mytum.de": [10833], "www.1cart.com": [61], "*.pjmedia.com": [12293], "jgw.io": [2024], "*.imgflip.com": [7998], "s.wlresources.com": [22604], "www.ca9.uscourts.gov": [17135], "dand.link": [2024], "helpdesk.xmarks.com": [18671], "www.sheffield.indymedia.org.uk": [8089], "indq.citrix.unicef.org": [17069], "s3.drafthouse.com": [820], "selinuxproject.org": [14158], "api.metooo.io": [10343], "indogeni.us": [2024], "btmedia.whsmith.co.uk": [18000], "whocanivotefor.co.uk": [22582], "www.adview.pl": [717], "kcitp.me": [2024], "petgate4.info": [2024], "www.mery.jp": [9749], "*.lastpass.com": [9175], "www.internetlivestats.com": [8282], "cedars.hku.hk": [20387], "gnat.me": [2024], "onekingslane.com": [21255], "l.bass.com.mx": [2024], "*.imgsmail.ru": [8002], "iis.se": [7746], "www.c-ware.de": [2511], "hieu.lu": [2024], "go.hcouchd.com": [2024], "qlock.info": [2024], "img3.leboncoin.fr": [20796], "mrcote.info": [10712], "www.mymoustache.net": [10816], "freightcalculator.com.au": [6172], "einnsyn.difi.no": [4452], "c35mm.com": [2024], "4pr.se": [2024], "dp3.qq.com": [13329], "*.hosting2go.nl": [7533], "imp2.bizographics.com": [2053], "www.enfuse.co": [6988], "binaryturf.com": [1920], "www.technovelty.org": [16111], "frab.cccv.de": [2559], "www.ssl-trust.com": [14240], "transparencycamp.org": [15667], "euroland.com": [5408], "sql3.endora.cz": [5237], "fr.followmail.com": [20130], "dds.to": [2024], "*.top.list.ru": [9462], "pfl.im": [2024], "www.oaklands.ac.uk": [21221], "xvideos.com": [22660], "chatterta.in": [2024], "wrds.pw": [2024], "tso.media": [2024], "bonmusic.co": [2024], "www.elburg.nl": [11172], "client.towerdata.com": [16688], "fr.ch": [22061], "*.docstoc.com": [4611], "www.gismeteo.lv": [20250], "rogerfederershop.com": [14002], "www.flitto.com": [5909], "www.nasuni.com": [11079], "www.themler.com": [16414], "www.riscon.cz": [13956], "static.inaturalist.org": [7779], "l.ethim.nl": [2024], "ag8.eu": [2024], "engineering.instagram.com": [8182], "ws26.bart.gov": [1708], "cilantro.tv": [2024], "blog.jetbrains.com": [8572], "sso.vodafone.ie": [17902], "myda.mn": [2024], "web-player.art19.com": [19238], "08.rkn.gov.ru": [13971], "thumb.115.com": [28], "shop.bestpractical.com": [1838], "t.chadever.com": [2024], "www13.empireblue.com": [19988], "www.antifa.cz": [1103], "short.hpu.nl": [2024], "immunityinc.com": [8011], "news.istella.it": [8395], "s9.sinaimg.cn": [14910], "tonyr.co": [2024], "darkmatter.ae": [19758], "www.greencubes.org": [20306], "2nb.nl": [2024], "assets3.sendgrid.com": [14638], "del.icio.us": [7919], "9life.co": [2024], "order.hbonow.com": [20353], "cicdat.upo.es": [17479], "pyzzle.ecotelecom.ru": [19952], "investor.qiwi.com": [13352], "dftba.xyz": [2024], "d3.advertisers-openx.com": [711], "www.azt.allianz.com": [19151], "my-domain2.ml": [2024], "siit.tk": [3536], "metro.ya.ru": [18716], "img5.km.com": [20738], "accesspass.wifi.xfinity.com": [22650], "acast.com": [19045], "tvo.li": [2024], "csirt.cesnet.cz": [2598], "a.36krcnd.com": [154], "mapl.us": [2024], "static.fraudmetrix.cn": [20151], "miun.se": [9766], "lavel.la": [2024], "hockeytest.sport-express.ru": [21941], "www.gavelbuddylive.com": [6450], "www.epitesz.bme.hu": [1556], "www.seroundtable.com": [14164], "maykop.europaplus.ru": [20034], "defendi.tk": [2024], "login.live.com": [9495], "ganzhou.jd.com": [8434], "www.base64encode.org": [19322], "webshot.dynamicyield.com": [4822], "*.adspeed.biz": [594], "link.cmbchina.com": [2639], "jadi.ml": [2024], "tlinkx.com": [2024], "cs18.myzuka.fm": [21079], "enroll.entrust.net": [5291], "dxw.com": [4811], "pubpeer.com": [13245], "three.ma": [16473], "www.mercyships.org": [10303], "image.baidu.com": [1641], "memorialwebsites.legacy.com": [9242], "malwarebytes.com": [9940], "landscape.canonical.com": [2823], "www.rfcexpress.com": [13478], "texasjo.es": [2024], "bookdepository.co.uk": [2216], "vis.payola.cz": [2024], "laifeng.jd.com": [8434], "www.maxserv.com": [10103], "shepherdsfriendly.co.uk": [14760], "ckom.de": [3207], "zeigemir.de": [2024], "fwinnvat.in": [2024], "dr.dk": [4072], "lesscss.org": [9083], "arno.ms": [2024], "www.fotolab.sk": [6055], "stavporol.kavkaz-uzel.ru": [20694], "www3.atomicorp.com": [1355], "sme.sc": [2024], "martialab.hk01.com": [7056], "lrsecrets.net": [2024], "img.trip.cmbchina.com": [2639], "helloneighbour.com": [7294], "licensing.ofcom.org.uk": [11770, 11771], "giocarecoltempo.ffs.ch": [15756], "*.cru.org": [3827], "wkyry.me": [2024], "purchase.youneedabudget.com": [18798], "login.wwwpromoter.com": [22635], "ut.edu": [17423], "hxdx.tk": [2024], "www.aut.bme.hu": [1556], "motor.ru": [21026], "client.macfound.org": [9833], "orchiddiva.com": [12129], "signon.springer.com": [15380], "status.mheducation.com": [20975], "zn2.it": [2024], "0dfe2dd9-9e8f-e03e-476c-8a62073199f2-rum.cdnvideo.ru": [19536], "s.comicnerd.com": [2024], "compiz-themes.org": [3525], "richmond.greenparty.org.uk": [6908], "media.image.infoseek.co.jp": [8130], "buy.wosign.com": [18483], "www.jeeptopsdirect.com": [8558], "skyline.tw": [21854], "git.php.net": [12280], "sgbrid.es": [2024], "www.netid.cornell.edu": [3676], "bmcmedphys.biomedcentral.com": [1931], "*.nasdaqomx.com": [10911], "wgrd.tech": [2024], "j.r3n.cc": [2024], "coop.ch": [3646], "on.bitly.pro": [2024], "21vote.com": [2024], "www.entadsl.com": [5276], "www.scummvm.org": [14491], "guidebook.com": [6991], "eservices.dynatrace.com": [4819], "fundres.mipay.com": [10473], "s.nana111.net": [2024], "broker.bankinter.com": [1674], "insight.com": [8171], "www.omha.net": [11925], "grurl.ovh": [2024], "ko.chaturbate.com": [3040], "sitola.fi.muni.cz": [14954], "ensk.dict.cc": [4442], "u73.net": [2024], "amp.azure.net": [19294], "jquery.com": [8463], "*.blogs.technet.com": [16095], "culture.wnyc.org": [18007], "r.henrynah.com": [2024], "ttw.bz": [2024], "fxs.nl": [2024], "www.dndclassics.com": [11867], "kerrbywww.play-asia.com": [12828], "mdm.ru": [10143], "sjh.bz": [2024], "static.friday.ru": [20175], "help.uber.com": [17169], "s47.cnzz.com": [3328], "forg.me": [2024], "tplcl.ca": [2024], "cl.ito-ya.co.jp": [2024], "starcon.rocketbank.ru": [13994], "www.pagerduty.com": [12361], "mbnet.fi": [9734], "cooler.bz": [2024], "eff.mn": [2024], "t1.la": [2024], "preview.c9users.io": [3279], "sugarcrm.com": [15647], "vuze.com": [17972], "www.mixtapeleak.com": [10507], "pornel.net": [12976], "www.qfxsoftware.com": [13325], "meld.li": [2024], "ispsystem.ru": [20591], "*.phpbb.com": [12681], "gendersec.tacticaltech.org": [15966], "drivers.dpd.co.uk": [19891], "tno.nl": [15904], "url.sotude.ir": [2024], "guvm.mvd.ru": [21055], "programpartner.vas-hosting.cz": [22428], "ct.stu.126.net": [40], "cmgm3.stanford.edu": [15448], "cpd.to": [2024], "wiki.centos.org": [2950], "ftp.formilux.org": [6022], "b29.cdnvideo.ru": [19536], "www.xtube.com": [18694], "app.gigster.com": [6640], "www.avtoradio.ru": [19290], "distribution.zoom.com.br": [19001], "shopaba.org": [2024], "damitech.info": [2024], "mali.usembassy.gov": [22406], "dev.filestack.com": [5787], "mjr.mn": [2024], "www.sohosted.com": [15114], "apt.syncthing.net": [15797], "thepiratebay.bypassed.bid": [21524], "www.adda-sr.org": [324], "*.ipaddresslabs.com": [7792], "azubi.bundesanzeiger-verlag.de": [19471], "ir.mondediplo.com": [10578], "f101.co": [2024], "events.joomla.org": [8641], "hs-esslingen.de": [7449], "amejobs.g4s.com": [20195], "www.tygem.com": [22334], "download.openoffice.org": [1117], "blog.docsend.com": [4602], "www.upc.cz": [17081], "azl.cm": [2024], "sqi.one": [2024], "payments.redbridge.gov.uk": [13742], "sjtrem.biomedcentral.com": [1931], "www.goob.tk": [3536], "www.profitbricks.de": [13175], "cgit.lighttpd.net": [9362], "go.fully.io": [2024], "avlr.co": [2024], "solo.mn": [2024], "www.scotland.police.uk": [21756, 21757], "java.net": [8538], "tts.uol.com.br": [17079], "7tw.com": [2024], "soft.rambler.ru": [13600], "mms.gsfc.nasa.gov": [10909], "netlify.com": [11280], "acml.engineering.osu.edu": [11797], "www.websitesettings.com": [18245], "*.cchgroup.com": [2562], "s.daialog.com": [2024], "rnd.oldi.ru": [21240], "blowup.co": [2024], "judge.me": [8675], "webmagazin.de": [18222], "dptcourses.wusm.wustl.edu": [18089], "documentation.tocco.ch": [16600], "developers.digitalocean.com": [4481], "dynu.com": [4830], "members.internetdefenseleague.org": [8281], "myplace.havering.gov.uk": [7236], "anbg.gov.au": [1424], "czn.admtyumen.ru": [19082], "forums.ubuntulinux.jp": [17186], "tertpp.tpprf.ru": [22260], "www.curated.co": [3918], "cp.myvps.jp": [10839], "thinkgeek.com": [16434], "tracking-protection.truste.com": [15922], "vision.visaeurope.com": [17847], "sweeps.bz": [2024], "www.sohu.com": [15171], "pros.life": [2024], "esdominios.com": [5345], "instagrms.tk": [2024], "optimalpayments.com": [12103], "karabakh.kavkaz-uzel.ru": [20694], "sip.bl.uk": [2358], "pixlz.it": [2024], "s.imaonline.jp": [2024], "www.socialreader.com": [15132], "cengagebrain.co.uk": [2946], "npepjournal.biomedcentral.com": [1931], "afcu.co": [2024], "cdn.wcdc.comcast.com": [3462], "anthe.me": [2024], "guide.macports.org": [9836], "magnitogorsk.europaplus.ru": [20034], "process.knowledgeblog.org": [8961], "www.fivethirtyeight.com": [5873], "deutschepost.com": [19816], "www.kryptosfera.pl": [9033], "docs.voicethread.com": [17909], "cdn02.gitter.im": [6666], "ytu.io": [2024], "www.glenoit.com": [6689], "www.renew.acs.org": [974], "status.gitbook.io": [6656], "zhkh24.ru": [2024], "kccmediahub.net": [8729], "ultradns.*": [17218], "fwtest.feide.no": [5729], "futurelearn.com": [6261], "www.blazingthyme.com": [2082], "eurheartjsupp.oxfordjournals.org": [12222], "mbox.uni-stuttgart.de": [17260], "www.mycomputer.com": [10799], "openrussia.org": [12077], "northwarks.gov.uk": [11538], "*.education.gov.au": [4353], "smcvt.co": [2024], "en.nav.gov.hu": [10912], "d0wn.biz": [3988], "app.dumptruck.goldenfrog.com": [6798], "active24.pl": [19066], "psk.li": [2024], "tools.pro-linux.de": [13155], "s.smauto.net": [2024], "careers.7-eleven.com": [227], "www.orphus.ru": [21293], "jalopnik.com": [8507], "jinx.com": [8590], "files.choicecheapies.co.nz": [12227], "www.primegrid.com": [13108], "omly.us": [2024], "casa.tiscali.it": [16572], "roffy.net": [2024], "*.lulu.com": [9668], "s.glasscat.info": [2024], "dsinternals.com": [4077], "customer.innometrics.com": [8154], "naturvent.io": [2024], "recruit.smashfly.com": [15066], "www.kosmetik-per-klick.de": [10210], "focusonline.co": [2024], "www.*.doe.gov": [17300], "bucyrustelegraphforum.com": [2407], "familie.san.aok.de": [376], "mandiant.com": [10277, 20919], "carleton.edu": [2863], "finka.pl": [5831], "www.careers.g4s.com": [20195], "emerdata.co": [2024], "dash.infinum.co": [20526], "htb.al": [2024], "shop.parliament.uk": [21349], "*.swmed.edu": [17369], "www.excelatlife.com": [20046], "cryptopia.co.nz": [3878], "sean.pm": [2024], "www.webplatform.org": [18176], "saln.ir": [2024], "tkme2.co": [2024], "secure.torbay.gov.uk": [16641], "www.esbk.admin.ch": [22061], "0gc.co": [2024], "whyopencomputing.ch": [22584], "screendaily.com": [14470], "ten2nd.com": [2024], "howtoforge.com": [7579], "dldir1.qq.com": [13329], "nos-oignons.org": [11551], "webapp2.targusinfo.com": [15851], "my.onlime.ru": [11902], "rad.atdmt.com": [10393], "divyanshu.io": [2024], "upd.emule-security.org": [19991], "betto.me": [2024], "backissues.people.com": [12579], "blog.fotolab.cz": [6055], "gaby.co": [2024], "schools.dl.ed.gov": [4881], "bbs.ncar.cc": [21094], "kevinajacobs.com": [8879], "my.studiopress.com": [15609], "accesspass.wifi.comcast.com": [3462], "stuttgart.fau.org": [5543], "socialboxusa.com": [15123], "www.goldenpass.ch": [20283], "www.motor.ru": [21026], "shopsite.com": [21809], "blog.codacy.com": [19634], "t.szeker.es": [2024], "stage.mp3scene.info": [21032], "cointelgraph.com": [19644], "www.vmwareblogs.com": [17582], "ichime.in": [2024], "min.sh": [2024], "lbui.net": [2024], "evpr.us": [2024], "software.mcafee.com": [10129], "es.nextep.es": [2024], "env.leeds.ac.uk": [17403], "www.hornstrafarms.com": [7505], "files.status.net": [7938], "m.pogoda.yandex.kz": [18743], "wiki.trustthevote.org": [16855], "www.replicant.us": [13840], "rdrt.daccaa.com": [2024], "saptraining.ncl.ac.uk": [10926], "blog.start.me": [15470], "pavlovsk.beeline.ru": [1778], "downloads7.mamp.info": [20916], "www.moelleken.org": [10564], "www6p1.memberdirect.net": [10265], "www.getrave.com": [6584], "v2.holidayextras.co.uk": [7459], "jdeslippe.com": [8481], "www.mass.sms.kyivstar.ua": [9067], "birmingham.greenparty.org.uk": [6908], "l.nomzit.com": [2024], "inthusia.st": [2024], "cdn.ustatik.com": [17534], "www.matura97.cbsm.at": [8782], "www.chakasmmm.com": [2989], "lvftv.com": [20896], "jb17.us": [2024], "webmail.desy.de": [4386], "status.runscope.com": [14094], "www.artskills.com": [1247], "documentcloud.org": [4616], "www.math.ias.edu": [7673], "help.calameo.com": [2747], "static.edu.rosminzdrav.ru": [21674], "cisn.co": [2024], "online.westlancsdc.gov.uk": [22569], "pghzoo.me": [2024], "a.hoonk.im": [2024], "www.switchvpn.net": [15765], "bd-kp.rsl.ru": [21686], "www.freebsd.org": [6097], "sayit.cc": [2024], "static.opentok.com": [12021], "dev.urlquery.net": [22400], "services.share.aarp.org": [279], "resortquestsecure.com": [18579], "skov.co": [2024], "vh3.ro.vutbr.cz": [17609], "www.cwi.nl": [2967], "claudio.fyi": [2024], "gestion.titulospropios.ulpgc.es": [17213], "s1.hdslb.com": [20358], "www.tonybianco.com.au": [16621], "cycas.tk": [2024], "dev.nsslabs.com": [10999], "api.contingent.krasnodar.ru": [20754], "jids.oxfordjournals.org": [12222], "www.evilsocket.net": [20042], "travelrepublic.co.uk": [16769], "prx.ms": [2024], "fi.ncsu.edu": [11531], "l.tikwenpam.net": [2024], "secure.bucknell.edu": [2406], "finland.usembassy.gov": [22406], "www.medicalert.org": [10199], "intech.camp": [2024], "cardiff.greenparty.org.uk": [6908], "www.start.me": [15470], "www.allistene.fr": [903], "we.tv": [2024], "www.0vercl0k.tuxfamily.org": [22319], "ssi.my": [2024], "www.thecoastnews.com": [16336], "runs.ga": [2024], "asset-8.soup.io": [15235], "thecustomizewindows.net": [22148], "support.incapsula.com": [8047], "shop.wikileaksparty.org.au": [18384], "ipm.io": [2024], "milner.in": [2024], "overstock.com": [12202], "epirev.oxfordjournals.org": [12222], "rushmypassport.com": [14096], "ini.es": [2024], "www.hbooker.com": [20354], "www.uocpres.uillinois.edu": [17034], "newcastle.gov.uk": [11355], "www.vliegtickets.nl": [17890], "www.pravydiplom.cz": [13061], "www.youtube.ba": [18800], "ns2.forceline.net": [20134], "static2.chartbeat.com": [3024], "www.quantifiedcode.com": [13388], "20.fbk.info": [5691], "ci.philips.blue": [2024], "pacadmin.ucc.ie": [17006], "cache-alwatanvoice.cdnvideo.ru": [19536], "shop.amnesty.ch": [1003], "contura.rhb.ch": [13914], "www.healthonnet.org": [7258], "ageofmine.com": [766], "s.ophan.co.uk": [12089], "simplysecure.org": [14898], "ese.osu.edu": [11797], "arabic.rt.com": [13528], "13j5nzw0bn61uno0i0pw7cgi2wdmt7l6inmjc8c6.ipleak.net": [20571], "qt.io": [13365], "r24625779.sync.app.asana.com": [1265], "on.waow.com": [2024], "vesnafresh.mcdonalds.ru": [20941], "reethibeach.com": [13770], "www.worldcat.org": [18536], "r24820196.sync.app.asana.com": [1265], "khmer.cambodia.usembassy.gov": [22406], "www.whatsuccesstakes.com": [6698], "uncommo.com": [2024], "url.topfree.de": [2024], "gettyimages.es": [6604], "app-community.offerpop.com": [11776], "veredelungslexikon.htwk-leipzig.de": [7596], "herts.police.uk": [7332], "on.ducsu.com": [2024], "reproducible-builds.org": [13848], "trac.macports.org": [9836], "ng4a.me": [2024], "drugdiscovery.georgetown.edu": [6531], "iepolls.us": [2024], "wiki.ubuntulinux.jp": [17186], "ads.lucidmedia.com": [9652], "luke.ph": [2024], "lifeinsurance.firstdirect.com": [20111], "test1-tor.adsrvr.org": [688], "njrfilm.tk": [2024], "irdh.info": [2024], "omniupdate.com": [11836], "undg.co": [2024], "www.sav.sk": [15037], "encipher.it": [5223], "pccc.me": [2024], "mastermindsdigital.com": [10068], "manager.bigv.io": [1883], "loomio.org": [9614], "g.sal.pr": [2024], "a.irs01.com": [20584], "lsym.es": [2024], "i1.ooshirts.com": [11934], "op.alfa.nl": [2024], "www.smart-mail.de": [15050], "kaas.mchetty.nl": [2024], "rappri.ch": [2024], "en.ad-stir.com": [567], "rboxx.me": [2024], "m.meetme.com": [10224], "visiam.eu": [2024], "sevastopol.sledcom.ru": [21858], "myheritage.de": [10875], "cyber.sci-hub.bz": [14436], "myheritage.dk": [10875], "zkb.dengisend.ru": [4344], "*.blogspot.hr": [2127], "www.rbkc.gov.uk": [21595], "adc.expert": [2024], "library.unc.edu": [17058], "dgtl.to": [2024], "wwwrc.cinelease.com": [7371], "dunn.it": [2024], "n.macoscope.com": [2024], "noscript.net": [11477], "www.rentyoursong.cbsm.at": [8782], "w.qiwi.com": [13352], "hofer.si": [357], "seal.stellaservice.com": [14253], "qb.cx": [2024], "lstrs.com": [2024], "cherry.de": [3066], "vyborg-bank.dengisend.ru": [4344], "total.fark.com": [5653], "erleb.es": [2024], "login.yourkarma.com": [18820], "www.creocommunico.com": [7509], "epa.ie": [4930], "t.umblr.com": [22362], "l2020.org": [9075], "nsslabs.com": [10999], "www-images.comixology.com": [3466], "*.tmcdn.org": [15898], "*.3.damoh.golem.de": [6804], "www.kwiksurveys.com": [9062], "www.scribus.net": [14478], "bmcecol.biomedcentral.com": [1931], "www.serveriai.lt": [14677], "nature.org": [11141], "spicybite-dublin1.just-eat.ie": [20671], "support.ooyala.com": [11935], "bacn.li": [2024], "molecularpain.biomedcentral.com": [1931], "www.zenmate.be": [18917], "larrysalibra.com": [9170], "www.congstar.de": [3580], "cypto.co": [2024], "static.couponfinder.com": [12201], "intake.credability.org": [3784], "sri.to": [2024], "s.joureikun.jp": [2024], "xsh.li": [2024], "tile3.bbcimg.co.uk": [19333], "getcake.pro": [2024], "darkmail.info": [4146], "www.sbaglobal.com": [14685], "ir.exus.co": [2024], "www.gettyimages.ch": [6604], "nko.khabarovskadm.ru": [20708], "automation.thepensionsregulator.gov.uk": [22173], "www.gettyimages.ca": [6604], "paodelicia.com": [12406], "rode.sk": [2024], "yadg.cc": [22664], "hshcrs.com": [2024], "web.lostfilm.tv": [20876], "nortix.link": [2024], "sfinds.co": [2024], "belwue.de": [1802], "www.ibanking.cimbthai.com": [2620], "*.r.cdn77.net": [2569], "can-v.as": [2024], "tixac.me": [2024], "www.wesnoth.org": [18298], "codespeak.net": [3379], "www.mediamarkt.es": [22631], "www.coveredca.org": [3728], "7zn.me": [2024], "gtex.me": [2024], "flixbus.it": [5911], "s5.srf.ch": [21957], "www.arifmetika-dobra.ru": [19231], "meetme.com": [10224], "www.gynecomastia.org": [7023], "ssos.mylifetime.com": [10813], "authorizenet.com": [1435], "kasiopea.matfyz.cz": [20691], "ghost.org": [6611], "fsm.education.gov.uk": [19957], "hmbk.pl": [2024], "20.rkn.gov.ru": [13971], "*.hsselite.com": [7566], "consent.truste.com": [15922], "www.realtimeregister.com": [13693], "dodgspza.us": [2024], "urospace.de": [17500], "www.smugmug.com": [15078], "holmesleads.uk": [2024], "aat-net.de": [891], "cdn.store.wsj.net": [18021], "whois.net": [22583], "lm.tl": [2024], "chrom.so": [2024], "p3.hitravel.xyz": [2024], "glmr.us": [2024], "www.genumedia.htwk-leipzig.de": [7596], "tacurl.com": [2024], "webink.com": [18165], "api.media.ccc.de": [2553], "www.argus.ch": [1215], "www.piratetimes.net": [12742], "jobs.hubspot.com": [7599], "lists.openmoko.org": [12071], "erowid.com": [5339], "0vc.pink": [2024], "dlt.re": [2024], "amcf.co": [2024], "www.thesatanictemple.org": [16380], "apt-insight.adsrvr.org": [688], "store.seagate.com": [14499], "s.robiesite.com": [2024], "gotomeeting.com": [6769], "lk.ugmk-telecom.ru": [22348], "icons.nimg.jp": [11450], "flickr.com": [5898], "uwishu.nu": [2024], "lulzbot.com": [9669], "majordomo.ru": [9914], "mediproviders.empireblue.com": [19988], "upworthy.com": [17489], "mozilla.debian.net": [4261], "www.pirateproxy.club": [21522], "vmkfb.tdconline.se": [15865], "www.tco.osu.edu": [11797], "marinedepot.com": [10006], "thepiratebay.run": [21522], "checkout.netsuite.com": [11248], "www.luxsci.mobi": [9685], "www.vizzit.se": [17889], "voicefive.com": [17908], "wsf.so": [2024], "www.netzausbau.de": [2445], "sfg.link": [2024], "www.brainshark.com": [2288], "ef7.fr": [2024], "kcrw.co": [2024], "groenlinks.nl": [6942], "kibank.dengisend.ru": [4344], "0t.ee": [2024], "blog.disconnect.me": [4531], "jamesro.se": [2024], "tn.boell.org": [19422], "glr.mn": [2024], "roger.lt": [2024], "www.theleanstartup.com": [16272], "dmrco.in": [2024], "lansquared.com": [9077], "www.feed.press": [20081], "www.unicef.org": [17069], "auth.ohiolink.edu": [11799], "packetwerk.com": [12347], "www.jauce.com": [20628], "collaborateextstg.verizon.com": [17715], "ml.church": [2024], "altav.eu": [2024], "careers.jobvite.com": [8616], "web.boum.org": [2261], "ingushetiya.kavkaz-uzel.ru": [20694], "www.primarycare.nhs.uk": [10953], "dk.support.tomtom.com": [16615], "sbu.li": [2024], "secure.payonlinesystem.com": [12516], "mads.smartstream.tv": [15064], "bestinhongkong.discoverhongkong.com": [19847], "d1.parature.com": [12425], "www.quidco.com": [13415], "nvc.de.vc": [2024], "mariestopes.org.au": [10000], "captcha.pconline.com.cn": [12263], "firstamendmentcenter.org": [5856], "d3sailplay.cdnvideo.ru": [19536], "secure.gettyimages.ca": [6604], "jstn.to": [2024], "zhigulevsk.beeline.ru": [1778], "arukas.io": [19242], "reb.tl": [2024], "webmail.nitro.dk": [11466], "www.bandaancha.eu": [19312], "odd4.me": [2024], "bigcommerce.com": [1881], "pedrodvargas.tk": [2024], "lifesim.pl": [2024], "www.srsplus.com": [14235], "t.let.yt": [2024], "n.architect.bz": [2024], "nwf.gs": [2024], "gimmebar.com": [6643], "downforeveryone.com": [4719], "games.slashdot.org": [15012], "energycompare.citizensadvice.org.uk": [19596], "wsww.play-asia.com": [12828], "drupal.bnl.gov": [19418], "rpo.guru": [2024], "d.ghostery.com": [6615], "go.baraja.id": [2024], "images.chillingeffects.org": [3082], "slvd.me": [2024], "ml314.com": [9772], "mobile.akbars.ru": [19128], "mbc.uniovi.es": [17282], "www.bayan.ir": [1730], "www.bitadexchange.com": [19384], "webjet.com.au": [18219], "teach.al": [2024], "go.yourkarma.com": [18820], "wcw.social": [2024], "cannockchasedc.gov.uk": [19504], "upgradedself.com": [17472], "pornolab.net": [21465], "jetbrains.com": [8573], "sqek.squat.net": [21955], "on.details.com": [2024], "hans.bz": [2024], "ccaa.elpais.com": [5126], "www.shields.io": [21801], "odeabank.biz": [2024], "*.blackducksoftware.com": [2064], "www.joomlacode.org": [8642], "mus.li": [2024], "cdn.ckeditor.com": [2633], "www.scholarshipblog.law.hku.hk": [20387], "partito-pirata.ch": [12314], "chitika.com": [3095], "nyjewi.sh": [2024], "kb.mit.edu": [9763], "www.torrentz.me": [16663], "gis.camb.ma": [2024], "reefledlights.com": [13766], "s.sho.com": [2024], "www.0p.no": [4], "tweetadder.com": [16941], "registration123.com": [13795], "hdut.ch": [2024], "iyf.be": [2024], "go.ppls.io": [2024], "medcourseeval.georgetown.edu": [6531], "advc.life": [2024], "www.su.nottingham.ac.uk": [11567], "www.unbit.it": [17234], "lackste.in": [2024], "www.nccc.nl": [11171], "johnlyons.me": [2024], "rhrc.us": [2024], "nvidia.eu": [11021], "rbwmcarshare.co.uk": [21598], "rotc.georgetown.edu": [6531], "tech.jobindex.dk": [8611], "redditgifts.com": [13751], "bookings.aberdeenshire.gov.uk": [472], "lenta.ru": [20809], "www.bitcoin-otc.com": [1990], "hotels.zuji.com.hk": [19021], "stjohnsem.worldcat.org": [18536], "home.netscape.com": [11289], "datenretter.de": [3626], "files-eu.clickdimensions.com": [3245], "careers.iciciprulife.com": [7917], "globalchokepoints.org": [4901], "www.browsealoud.com": [2385], "ecas-sso.wku.edu": [22602], "shibly.me": [2024], "mbasic.facebook.com": [5609], "s.tsunagary.jp": [2024], "mail.yandex.kz": [18743], "trey.in": [2024], "l.shawn.sg": [2024], "blog.bandinelli.net": [1663], "steaw.com": [15525], "doomwiki.org": [4677], "blog.podio.com": [12889], "ncsam.info": [2024], "b.wardell.us": [2024], "*.so36.net": [21886], "idstronghold.com": [7939], "ckwrites.info": [2024], "www.kik.com": [20716], "webapps.nottingham.ac.uk": [11567], "tbws.co": [2024], "cdn1.campuslabs.com": [2800], "adspeed.com": [596], "images.websitealive.com": [18242], "www.shellmix.com": [14226], "aclusocal.org": [313], "wiki.factorio.com": [20068], "cbeebies.streamuk.com": [22008], "qr4.us": [2024], "s.thelaw.tv": [2024], "l.pinone.com": [2024], "usenetjunction.com": [17511], "app.mvv-muenchen.de": [9823], "cdn.ads.ookla.com": [11930], "afriq.top": [2024], "jpch.co": [2024], "azuara.unizar.es": [17441], "suhm.dk": [2024], "avon.cz": [432], "buddy.moe": [2024], "epa-prgs.ornl.gov": [11730], "www.awxcnx.de": [1491], "piprl.me": [2024], "scheduler.worldcommunitygrid.org": [18537], "promo.news.yahoo.co.jp": [18730], "eztv.wf": [20063], "mmis.hkpl.gov.hk": [20385], "pr.zwame.pt": [19025], "qqq.play-asia.com": [12828], "yalz.co": [2024], "chil.is": [2024], "ikk-suedwest.de": [7753], "josepf.co": [2024], "*.buzzurl.jp": [2496], "livebackup.tv": [2024], "*.googlesyndication.com": [6828], "www.dcvote.org": [4008], "kneon.com": [8954], "wallacecenter.rit.edu": [13493], "d2.rg.ru": [21646], "sph.hku.hk": [20387], "mvd.jd.com": [8436], "akk.ro": [2024], "rybinsk.startsmile.ru": [21980], "valdel.uz": [2024], "katylee.com": [8835], "blackbox.co.uk": [2063], "english.georgetown.edu": [6531], "personalkurser.slu.se": [14195], "my.kinsta.com": [8925], "www.drivee.jp": [4759], "*.mpnrs.com": [9796], "m0b.it": [2024], "tmt-link.de": [2024], "untangle.com": [17454], "campaignercrm.com": [2793], "go.hooq.tv": [2024], "fb.kpr.nu": [2024], "midga.me": [2024], "manr.pl": [2024], "duolingo.com": [4799], "nzz.ch": [21216], "advertisment.unimatrix.si": [22372], "gosbt.co": [2024], "niger.unfpa.org": [17062], "pasp.eu": [2024], "www.shop.infinet.com.au": [8096], "dslreports.com": [4075], "dixcart.com": [4575], "dmachoice.org": [4034], "svai.co": [2024], "upds.com": [22387], "nuigalway.ie": [11102], "blms.oxfordjournals.org": [12222], "qr.luibao.com": [2024], "people.freedesktop.org": [6102], "www.crystaldelights.com": [3884], "www.campina.com": [2796], "primaryimmune.stanford.edu": [15448], "www.hertz.com.kw": [7353], "editor.torrentday.com": [16650], "editorial.outbrain.com": [12182], "www.fr.ricardo.ch": [13923], "sesame.dsi.cnrs.fr": [6174], "g03.t.alicdn.com": [853], "*.avisservices.com": [1477], "togevi.com": [8413, 8414], "www.1984.live": [58], "imedia.eastday.com": [5010], "oauth.jd.com": [8436], "skyemln.com": [2024], "www2.merkleinc.com": [20967], "locator.symantec.com": [15780], "*.namecentral.com": [11059], "globetrotter.de": [6725], "portfoleo.jobs": [2024], "www.business.ftc.gov": [5710], "y6xjgkgwj47us5ca.onion": [18701], "nkcmr.link": [2024], "dbus.freedesktop.org": [6102], "on.reno.com": [2024], "rasoul.in": [2024], "instagrampartners.com": [8183], "cll.ln.com.ar": [2024], "b-gat.es": [2024], "s15.sinaimg.cn": [14910], "tribecafilm.com": [16801], "www2.sparebank1.no": [21922], "ask.f5.com": [5537], "a.loudgif.com": [2024], "www.kasperskypartners.ru": [8825], "www.visitormotion.com": [5378], "info.warwickshire.gov.uk": [22532], "users.pro-linux.de": [13155], "*.clicktracks.com": [9696], "links.bctv.hr": [2024], "campinaboerderijdag.nl": [2796], "puppet-dashboard.debian.org": [4262], "dos.cornell.edu": [3676], "leo.pw": [2024], "ed25519.cr.yp.to": [3745], "postnord.se": [12998], "trademarkia.com": [16717], "affiliate.ashleymadison.com": [1278], "tns-counter.ru": [16595], "his.se": [7052], "thetaniac.com": [2024], "tenta.co": [2024], "*.wpdigital.net": [18018], "console.ipinyou.com": [7807], "s.isujay.com": [2024], "coupons.saturn.de": [21736], "aquis.fr": [2024], "www.minifree.org": [20988], "listen.tokenly.com": [22229], "chengde.jd.com": [8434], "ing.cnblogs.com": [19631], "wiki.vtiger.com": [17959], "www.switchip.info": [3536], "discourse-static.openmandriva.org": [11992], "activate.esellerate.net": [5346], "kuna.io": [20763], "www.posteo.de": [13016], "doc.gg": [2024], "sa-as.com": [17854], "unityads.unity3d.com": [17310], "nfv.io": [2024], "av.admtyumen.ru": [19082], "www.persecutionofahmadis.org": [12610], "blox.ly": [2024], "www.engr.washington.edu": [17376], "icme.stanford.edu": [15447], "mochapar.me": [2024], "sugarh.it": [2024], "nws.mx": [2024], "dkg.fifthhorseman.net": [5767], "on.sc.com": [2024], "ccycx.tk": [2024], "quicksal.es": [2024], "t42.io": [2024], "twgst.ru": [2024], "www.sbarmen.no": [14382], "tpucdn.com": [22261], "open-stand.org": [21264], "dink.im": [2024], "c5in.co": [2024], "store.ssl2buy.com": [14242], "ktvb.net": [2024], "www.youtube.my": [18800], "www.slax.org": [15017], "images.dailystar.co.uk": [4106], "files.tv2.dk": [15946], "www.jsonformatter.org": [20661], "fsinfo.fme.vutbr.cz": [17609], "creative.rev2pub.com": [13895], "ecw.hmrc.gov.uk": [7076], "c.bielous.eu": [2024], "secure.palmcoastd.com": [12375], "lil.fm": [2024], "s1.mt-cdn.net": [9812], "www.callrail.com": [19493], "*.manta-r1.com": [9969], "brexitexplained.holyrood.com": [20393], "login.alibaba-inc.com": [19139], "down.24hgame.vn": [2024], "www.uwb.edu": [17157], "portal.uk.clara.net": [3213], "s.krysp.in": [2024], "sedo.de": [14605], "hcpss.fnal.gov": [5741], "de-it.dict.cc": [4442], "lizs.me": [2024], "www.the-independent-news.com": [8061], "www.google.com.*": [6822, 6824, 6829, 6831], "www.linux-apps.com": [9414], "gohealthservices.scot.nhs.uk": [10953], "youngcancer.scot.nhs.uk": [10953], "about.bizrate.com": [2054], "thenew10.treasury.gov": [16778], "natu.ren": [2024], "tltogether.org": [2024], "discogs.com": [4529], "xiantao.jd.com": [8434], "www.movableink.com": [10667], "foxs.pt": [2024], "brennannovak.com": [2323], "politics.slashdot.org": [15012], "sallyakins.uk": [2024], "www.btctrade.com": [2399], "zx.jd.com": [8436], "beacon.stage.walmart.com": [18059], "forums.docker.com": [4605], "kelcomaine.com": [8858], "cdn.blog.hubspot.com": [7599], "www.youtube.mk": [18800], "cms.id.afisha.ru": [19107], "afabri.ca": [2024], "www.dnscurve.org": [4054], "sfprep.symantec.com": [15780], "www.thenewslens.com": [16302], "cmsresources.windowsphone.com": [18436], "www.tech-recipes.com": [16073], "knln.de": [2024], "rezeptwettbewerb.ichkoche.at": [7916], "joker3.beget.com": [19347], "orne.ws": [2024], "s7sps3.scene7.com": [14402], "xaverstat.bundesanzeiger-verlag.de": [19471], "intand.com": [16004], "publicorigin.wix.com": [18473], "static2.miniclipcdn.com": [10461], "ausgamers.com": [1398], "assets0.roadtrippers.com": [21659], "techtry.in": [2024], "webinars.intercom.io": [8241], "wormly.com": [22619], "thainetizen.org": [16240], "amota.mx": [2024], "www.carbonfund.org": [2843], "corp.sina.com.cn": [14904], "wholesale.tdc.dk": [15862], "www.bhw.de": [1543], "smartbrief.com": [15052], "piwik.cable6.net": [2717], "webdevstudios.com": [18157], "w.lbcgroup.tv": [2024], "nzbindex.com": [11042], "www.rogueamoeba.com": [14003], "merch.bankofamerica.com": [1669], "sjq.ok.1688.com": [51], "jnrbm.biomedcentral.com": [1931], "gametreelinux.com": [6406], "www.alfresco.com": [850], "metmia.li": [2024], "www.mooddisorders.ca": [10612], "www.axantum.com": [1493], "gradcenter.wustl.edu": [18089], "teenshealth.org": [8899], "share.wyreforestdc.gov.uk": [22639], "binrev.com": [1917], "zg.mi.com": [10361], "habt.at": [2024], "occup-med.biomedcentral.com": [1931], "store.startrek.com": [15463], "go.renosaw.com": [2024], "www.bilddb.arch.ethz.ch": [4967], "*.eventbrite.com": [5432], "mordovia.sledcom.ru": [21858], "piwik.gwdg.de": [7014], "regjeringen.no": [13800], "askjo.co": [2024], "bitcoin.in": [1989], "zzz.ac": [2024], "igi.tips": [2024], "snacktools.com": [15084], "genvrtue.co": [2024], "link.cashat.pro": [2024], "mcjon.es": [2024], "purecambogia.com": [13286], "hig.se": [7050], "www.netzclub.net": [21116], "tinymt.com": [2024], "stwn.co": [2024], "sportng.in": [2024], "www.reevoo.com": [13772], "www.fileformat.info": [5776], "creativedo.se": [2024], "www.ziggozakelijk.nl": [18963], "glimmerblocker.org": [6691], "fb.me": [5688], "livestock-transport.com": [9526], "forgestagingapi.puppetlabs.com": [13276], "www.yam.com": [18734], "multibit.org": [10732], "perfectaudience.com": [12591], "www.selinuxproject.org": [14158], "www.secretcon.com": [14532], "*.creativepartnershipsaustralia.org.au": [3776], "s-adserver.cxad.cxense.com": [2709], "linker.bk-as.no": [2024], "a2.hertzrent2buy.com.br": [7339], "product1.aastocks.com": [19037], "l.x1fr.com": [2024], "8.asset.soup.io": [15235], "pfit.so": [2024], "kdglobal.info": [2024], "trpp.pl": [2024], "leahscape.com": [9221], "shr.tronite.com": [2024], "www.onepagerapp.com": [11894], "go.textech.co": [2024], "at.viwwr.com": [2024], "assurancesauto.search.ch": [14504], "*.news-gazette.com": [11362], "*.2roads.com": [16970], "kuki.ap.test.octopuspop.com": [11754], "www.flipagram.com": [5904], "t45.co": [2024], "garlandscience.com": [8120], "tns.fm": [2024], "sql8.endora.cz": [5237], "13.wbtw.com": [2024], "barna.org": [1700], "bpop.pr": [2024], "*.greenvehicleguide.gov.au": [6904], "itme.jp": [2024], "www.segger.com": [14619], "ulyanovsk.rt.ru": [13529], "butlerandthechef.com": [16256], "aka-publications.environment-agency.gov.uk": [20006], "to.brck.nl": [2024], "img-2.gizmag.com": [6676], "sentry.publons.com": [21538], "www.mouseflow.com": [10664], "www.commbank.com.au": [3480], "lada.kz": [20769], "*.mecca.ca": [5106], "bwhvac.reviews": [2024], "worlde-idcongress.com": [18550], "app.qualaris.com": [13377], "nwc.me": [2024], "jeremyk.us": [2024], "pecl.php.net": [12280], "s2p.la": [2024], "www.shareislam.com": [14727], "ngdc.noaa.gov": [11121], "hed.gy": [2024], "mysmartrend.com": [15048], "asset-1.soupcdn.com": [15236], "bcoop.co": [2024], "kouni.ninja": [2024], "legolanddiscoverycenter.com": [9249], "d.taringa.net": [16027], "101xp-portal-ru-stage.cdnvideo.ru": [19536], "media.topshop.com": [22238], "docs.nuget.org": [11601], "pty.club": [2024], "garoden.net": [2024], "img.warwickshire.gov.uk": [22532], "cdngw.ustream.tv": [17535], "book.serversforhackers.com": [14679], "i.chzbgr.com": [3060], "store.3dr.com": [171], "connect6.com": [19667], "kumu.io": [9050], "mosher.co": [2024], "fi.support.tomtom.com": [16615], "adv.reklama.wp.pl": [18012], "accnt.co": [2024], "www.inhumanity.com": [8145], "president.mit.edu": [9762], "webssl.dwd.de": [19911], "ck.ro": [2024], "download.geany.org": [6463], "protvino.biglion.ru": [19375], "vsi.la": [2024], "navigantresearch.com": [11153], "vsco.co": [17598], "noxamail.de": [21174], "joomlancers.com": [8643], "cdn.knightlab.com": [8958], "www.youtube.hk": [18800], "extra05.sfc.hk": [14706], "healthfuze.com": [7262], "cirw.in": [3163], "skepticink.com": [14970], "groupava1.mycdn.me": [10866], "statebuy.state.gov": [17146], "elk01.tocco.ch": [16600], "brnz.co": [2024], "dpms.co": [2024], "go.asteroid.mx": [2024], "css2.open.ac.uk": [11947], "eagle.gmu.edu": [6529], "asfl.info": [2024], "yk.pp.navi.youku.com": [18804], "www.lumo.me": [9676], "redmine.sumtel.ru": [22031], "srn.kr": [2024], "btc-e.nz": [19460], "sebastian.sipsolutions.net": [14184], "cen.acs.org": [974], "mastermindpro.com": [10067], "prm.pm": [2024], "everydayfeminism.com": [5445], "intellnews.net": [20548], "getkano.co": [2024], "pisc.me": [2024], "lh4.google.*": [6821], "sakura.ad.jp": [14124], "locass.as": [2024], "superbrightleds.com": [15684], "go.wend.io": [2024], "s132.cnzz.com": [3328], "www.popgoestheweek.com": [12960], "pingba.jd.com": [8434], "old.metal-detector-town.com": [10330], "www.server.cpmstar.com": [2661], "slashdot.org": [15012], "yune.ec": [2024], "gigenet.com": [6638], "www.techinasia.com": [16090], "kuruc.info": [9058], "bret.ws": [2024], "uni-hannover.de": [17255], "fpoc.net-entreprises.fr": [21107], "isport.blesk.cz": [2088], "www.hbonow.com": [20353], "www.nplusonemag.com": [11577], "temryuk.tpprf.ru": [22260], "eliz.is": [2024], "stavropol.kavkaz-uzel.ru": [20694], "pl.boell.org": [19422], "corrieandty.co": [2024], "www.legal.nodejitsu.com": [11491], "www.fencecenter.com": [5732], "*.evoice.co.uk": [4979], "l.kf7usv.com": [2024], "mrx.cl": [2024], "www.intermundomedia.com": [8252], "www.emailpref.acs.org": [974], "es.icecat.biz": [7912], "proposi.to": [2024], "rata.la": [2024], "eztv.it": [4994], "www.tinydl.com": [16557], "sdnet.nvr.de": [11628], "fantasygames.telegraph.co.uk": [16148], "juhll.agency": [2024], "ud.ag": [2024], "wwww.csmonitor.com": [19737], "aj.vg": [2024], "c5.chaucanh.net": [2024], "antizapret.prostovpn.org": [21517], "oesp.horizon.tv": [22386], "aero.rsb.ru": [14058], "vevo.com": [17566], "video.qq.com": [13329], "marine.ac": [2024], "benc.ws": [2024], "shared.sx": [14733], "otse.err.ee": [5358], "h.alipayobjects.com": [864], "www.informatick.com": [8124], "www.ministerialtidende.dk": [10464], "www.avuedigitalservices.com": [1484], "ad.apps.fm": [19219], "goponi.es": [2024], "pptng.it": [2024], "file.wx2.qq.com": [13329], "myaccount.edinburgh.gov.uk": [5074], "www.pythonanywhere.com": [13315], "webmail05.register.com": [13793], "chlb.rosevrobank.ru": [14024], "deutsche.nature.com": [11140], "camb.ma": [2024], "www.spring.org.uk": [15375], "ats.otto.de": [12168], "kinox.io": [20720], "eur.pe": [2024], "www.woolyss.com": [18512], "heureka.cz": [7377], "openrightsgroup.org": [12054], "tuftsmedicalcenter.org": [16892], "baldean.co": [2024], "www.cryptovpn.com": [3859], "genome.ucsc.edu": [17390], "workplacegiving.co.uk": [18533], "mint.com": [10470], "orgreenoptics.com": [12140], "sd.sharethis.com": [14730], "www.viaf.org": [17572], "flantasti.co": [2024], "www.thefiringline.com": [22151], "www.isohunt.to": [8385], "www.collectiveip.com": [3423], "teamunicef.org": [16066], "hokej.centrum.sk": [19548], "*.culi.org": [2956], "ui2web2.apps.uillinois.edu": [17321], "message.bankofamerica.com": [1669], "smref.com": [2024], "www.smacktls.com": [14196], "membership.wizards.com": [18477], "www.proisp.no": [12319], "tmn.me": [2024], "electronicinsanity.com": [5143], "ut11.xhcdn.com": [18605], "t5n.co": [2024], "k3.chaucanh.net": [2024], "cubt.co": [2024], "nuevasync.com": [11609], "*.tradeking.com": [16708], "riigiteataja.ee": [13945], "account.conversations.im": [3627], "on.vdvsport.it": [2024], "weblogin.umich.edu": [17354], "gerrit.osmocom.org": [12159], "n-col.co": [2024], "mysql.active24.com": [19061], "ape.gs": [2024], "2013.asiabsdcon.org": [1281], "blackboard.ncl.ac.uk": [10926], "disruption.birmingham.gov.uk": [19380], "www.mit-dem-rad-zur-arbeit.de": [10494], "u.sentido42.org": [2024], "www.streetlife.com": [22010], "nic.ch": [10960], "www.froscon.de": [6071], "svmn.us": [2024], "cnnumerique.fr": [2651], "dev.exherbo.org": [5482], "doublepimp.com": [4711], "fastnotes.statushub.io": [15504], "ecn.t7.tiles.virtualearth.net": [17840], "userscape.com": [17516], "sonymusic.com": [15217], "www.hongkongfp.com": [20403], "www.urbandictionary.com": [17494], "www.colorlines.com": [3446], "wagner.edu": [18041], "www.s2mediadigital.com": [14119], "clip.proel.net": [2024], "indymedia.org.uk": [8089], "heart.org": [7272], "firma.azet.sk": [1507], "www.refog.com": [13782], "linkpl.us": [2024], "s.kbkw.com": [2024], "addison.com.hk": [630], "www.drugpolicy.org": [4769], "svuspb.mvd.ru": [21055], "developer.r-project.org": [13447], "coleyurl.com": [2024], "govoritmoskva.ru": [20298], "styleguide.dagbladet.no": [4102], "canvaslms.com": [2826], "pollendiary.com": [12927], "link.janole.com": [2024], "generator.sharethrough.com": [14742], "translations.uptimeinstitute.com": [22393], "math.sfu.ca": [14708], "kidsf.it": [2024], "www.virginmedia.ie": [17823], "www.fomori.org": [5967], "www.dnssec-tools.org": [4057], "git47.rostrud.ru": [21677], "www.nppa.org": [11092], "gk4u.it": [2024], "www.publicidees.com": [13250], "mozy.com": [10705], "www.tppnocertification.org": [15917], "fwd.tf": [2024], "mx.baja-sur.com": [2024], "konkurs.yuga.ru": [22701], "sig-io.nl": [14834], "www.wto.org": [18025], "80.93.17.6": [4499], "prolific.com.tw": [13192], "o.ariel.rocks": [2024], "spintheverb.co": [2024], "l.jpdl.us": [2024], "buy.lenovo.com.cn": [9266], "torybur.ch": [2024], "sinorb.is": [2024], "www.bmdw.org": [1555], "getfoxyproxy.org": [6577], "lifept.cc": [2024], "pk.europaplus.ru": [20034], "www.impulsedriven.com": [8026], "status.chatlio.com": [19563], "git89.rostrud.ru": [21677], "krasnodar.beeline.ru": [1778], "vorteile.gmx.net": [6330], "aktivenforum.vcd.org": [17560], "yatzy.org": [2024], "go.billde.sk": [2024], "ogs.khabkrai.ru": [20709], "yahooapis.com": [18729], "img2.sj.qq.com": [13329], "simply-u.tk": [2024], "redalert.io": [2024], "klik4extra.info": [2024], "corbycam.firmstep.com": [20108], "native.sharethrough.com": [14742], "beta.fark.com": [5653], "weixin.kannz.com": [20682], "intm.ch": [2024], "hftm.tocco.ch": [16600], "read.bi": [2024], "tttm.co": [2024], "sheffield.indymedia.org.uk": [8089], "ukrcash.com": [22352], "mention.cnblogs.com": [19631], "on.taphe.re": [2024], "k2c.me": [2024], "www.gearsourcecdn.com": [6464], "bhv.io": [2024], "songstar.rocks": [2024], "www.pdadb.net": [12531], "ptat.ch": [2024], "fishwrapper.com": [5865, 5866], "www.joycasino777.co": [20654], "kinklink.me": [8921], "*.simmarket.com": [14870], "magentocommerce.com": [9869], "ntualumni.org.uk": [11011], "pcgzhi.com": [2024], "mundo.sputniknews.com": [21951], "sports.youku.com": [18804], "autodiscover.gigabyte.com": [6628], "conphys.oxfordjournals.org": [12222], "tackthat.com": [2024], "www.bsv.admin.ch": [22061], "reviewp.ro": [2024], "fpa.oxfordjournals.org": [12222], "se.itunes.apple.com": [1151], "www.trailofbits.com": [16729], "jcsl.oxfordjournals.org": [12222], "mycard.ukash.com": [17205], "centennialbulb.org": [9523], "esn.bme.hu": [1556], "givingday.cornell.edu": [3676], "www.protvino.net": [21519], "www.jeth.tk": [3536], "ebdest.in": [2024], "griz.ly": [2024], "attach.ams.org": [367], "dioguinho.net": [2024], "illum.ie": [2024], "ghowen.me": [6617], "dariusburstcs.degica.com": [3333], "service.nemid.nu": [11183], "mndrgn.com": [2024], "vid.ema-eda.com": [2024], "illum.in": [2024], "secure.nic.cz": [11418], "tz.de": [15960], "mercurynews.com": [10301], "www.flexyourrights.org": [5894], "loggn.de": [9565], "live.wired.com": [18454], "*.kmart.com": [8950], "cdn.riastatic.com": [13487], "www.prospecteye.com": [13206], "flex.htwk-leipzig.de": [7596], "sslvpn-aus.sonymusic.com": [15217], "2016.zeronights.qrator.net": [21562], "ubbai.me": [2024], "centrallancs.greenparty.org.uk": [6908], "7springs.com": [230], "fantoniogargallo.unizar.es": [17441], "bdp.im": [2024], "futr.biz": [2024], "cycf.it": [2024], "www.envoydirect.com": [5299], "flgd.co": [2024], "zer.la": [2024], "7.vgc.no": [17569], "enforum.farmanager.com": [5650], "store.economist.com": [5052], "csherm.com": [2024], "wepay.com": [18121], "u-f.ru": [22336], "demo.picnichealth.com": [12694], "www.newmoon.com": [11330], "ttl.link": [2024], "*.3ds.com": [4160], "fox.co": [2024], "git.anidb.net": [1065], "pengyang.jd.com": [8434], "mylevel3.net": [10880], "markaz.io": [2024], "cvs.pld-linux.org": [12299], "www-structures.ucsd.edu": [17012], "scoutsi.de": [2024], "www.mechse.illinois.edu": [17346], "fc-pt.com": [2024], "b.alachie.com": [2024], "khb.hu": [8739], "ww1703.smartadserver.com": [15049], "howdens.akixi.com": [19129], "smb.ideco.ru": [20480], "bnz.co": [2024], "graphics8.nytimes.com": [11041], "news.duckduckgo.com": [4785], "nh787.cc": [2024], "linan.1688.com": [51], "developers.digitalriver.com": [4469], "crowdfactory.com": [3816], "www.alarabiya.net": [19131], "www.yahoo-help.jp": [18724], "arzay.us": [2024], "era.int": [4940], "www.huntingbears.nl": [7627], "baeble.me": [2024], "account.xapo.com": [18630], "app.tinyletter.com": [16559], "lufthansa.com": [9664], "www.datacoup.com": [4171], "www.opendatacity.de": [21271], "*.jamfsoftware.com": [8424], "swapbotstats-stage.tokenly.com": [22229], "www.aldi.dk": [357], "orenburg.tpprf.ru": [22260], "daneszajutri.hofer.si": [357], "wi.htwk-leipzig.de": [7596], "feralinteractive.com": [5738], "git.linuxlovers.at": [9446], "maastricht.nl": [11172], "lt.4.boardgamearena.com": [2182], "psychologicalscience.org": [13235], "l.travelyst.de": [2024], "muslimvillage.com": [10765], "link.sbamin.com": [2024], "yean.co": [2024], "hsic.tk": [2024], "fixingtao.com": [5878], "shop.evernote.com": [5440], "jaa.io": [2024], "www.tfm.ro": [22135], "www.frootvpn.com": [6207], "www.solarlist.com": [15180], "miniand.com": [10458], "gz4.ru": [2024], "www.telekom.de": [4397], "skygrid.me": [2024], "www.energylinx.co.uk": [19997], "random.lp0.eu": [9648], "megmo.me": [2024], "secure.creocommunico.com": [7509], "www.tescoshareandearn.com": [16212], "online.unileoben.ac.at": [17267], "forum.roblox.com": [13980], "speakerrequest.state.gov": [17146], "touch.forum.deti.mail.ru": [9891], "conakry.usembassy.gov": [22406], "r-br.it": [2024], "gensca.pe": [2024], "commando.io": [3478], "s15.qhimg.com": [13347], "maxisbold.com": [2024], "balbit.es": [2024], "mssqlbackup.active24.cz": [19062], "www.gourl.io": [6772], "www.vse.sk": [17955], "zanox.com": [18885], "my.lib.ncsu.edu": [11531], "ma2jic.osu.edu": [11797], "pfsoci.al": [2024], "sarw.me": [2024], "maps.bradford.gov.uk": [2282], "news.weimarnetz.de": [22558], "lawgic.al": [2024], "r24617903.sync.app.asana.com": [1265], "www.sportisimo.de": [14223], "heiseshop.de": [7288], "l.nixonm.com": [2024], "app.formassembly.com": [6018], "www.eatnow.com.au": [19943], "my.vidahost.com": [17765], "download.avv.de": [1485], "app42.sh": [2024], "www.cimb.com": [2618], "ebalance.blick.ch": [2091], "plz.im": [2024], "livetoeat.ca": [2024], "www.engin.cf.ac.uk": [2847], "cs.joensuu.fi": [17338], "shadysi.de": [2024], "i4.c.dk": [2512], "eis.uow.edu.au": [17434], "www.metaboli.co.uk": [10326], "www.krawlly.com": [9018], "ucsd.worldcat.org": [18536], "images.f.switchadhub.com": [15764], "phgd.es": [2024], "r24820220.sync.app.asana.com": [1265], "qdb.lp0.eu": [9648], "leics.police.uk": [9255], "myphotos4.virginmedia.com": [17822], "pic.wenwen.soso.com": [21904], "kiks.yandex.com": [18742], "url.5eo.co": [2024], "trc.in": [2024], "l.aimpa.com.br": [2024], "www.berkeley.edu": [17329], "s.cmap.ws": [2024], "soobest.com": [15222], "*.mandiant.com": [10277], "*.visistat.com": [17854], "www-mpy.desy.de": [4386], "forum.hackinthebox.org": [7141], "thinline.style": [2024], "coby.io": [2024], "mci4me.at": [10139], "e10.xhamsterpremiumpass.com": [18607], "openwiki.feide.no": [5729], "canyouseeme.org": [17877], "ijlct.oxfordjournals.org": [12222], "ads.adap.tv": [608], "mozhga.startsmile.ru": [21980], "explore.nra.org": [21177], "ostif.org": [21302], "vpn.sportmaster.ru": [21944], "chalmers.se": [2993], "tmk.smartadserver.com": [15049], "miranda.hemscott.com": [8315], "www.canon.com.au": [19505], "browsermob.com": [2392], "www.optimalpayments.com": [12103], "www.meetic.com": [10228], "v.meituan.net": [10249], "anonine.com": [1084], "moshi.us": [2024], "jpnks.me": [2024], "catn.com": [2902], "divasand.co": [2024], "pirateproxy.site": [21524], "l.basicpower.fr": [2024], "lists.linuxcontainers.org": [9435], "online.york.edu": [18787], "www.veritas.com": [22440], "burgr.me": [2024], "www.fullstory.com": [6230], "www.q7.com": [13320], "jprod.co": [2024], "operationfabulous.com": [12088], "louisville.edu": [17405], "moodle.uaa.alaska.edu": [17323], "www.pixelexit.com": [12772], "www.kellytarltons.co.nz": [8860], "whatsapp.com": [18329], "hmrc.gov.uk": [7076], "*.rigzone.com": [13944], "rossosh.startsmile.ru": [21980], "sliceint.co": [2024], "loanliner.com": [9545], "www.afcea.org": [338], "silktide.com": [14859], "www.gutvertreten.boell.de": [2192], "newhumanist.org.uk": [21122], "help.fig.co": [5768], "fr.canon.ch": [2822], "71.rkn.gov.ru": [13971], "sdca.mp": [2024], "jillee.co": [2024], "fess.fnal.gov": [5741], "myitworks.com": [7860], "jdebru.in": [2024], "free9.beget.com": [19347], "cbiit.nci.nih.gov": [11090], "bluecoat.com": [2143], "www.blackznc.net": [2062], "www.osha.gov": [11708], "dnw.li": [2024], "reg.lenovo.com.cn": [9266], "online.rshb.ru": [14059], "jsfiddle.net": [20658], "gifti.es": [2024], "www.ams.jhu.edu": [16370], "www.pdf-tools.com": [21376], "www.nzqa.govt.nz": [11044], "azeri.azerbaijan.usembassy.gov": [22406], "issues.mediagoblin.org": [10167], "news.uga.edu": [17397], "epst.ust.hk": [22412], "us.pcpartpicker.com": [12529], "www.sama32.squat.net": [21955], "a.abcnews.go.com": [285, 286], "portal-credo.ru": [21466], "wt.taobao.com": [16015], "signin.openid.net": [11980], "www3.cisco.com": [3165], "www.shropshire.gov.uk": [21819], "*.mrporter.com": [9801], "app.cactuscompletecommerce.com": [2724], "image2.bilio.com": [1905], "zillow.com": [18965], "people.maths.ox.ac.uk": [17359], "avlne.ws": [2024], "nottsbusinesswatch.co.uk": [21167], "store.ufanet.ru": [22347], "images.partner.windowsphone.com": [18436], "coverstand.com": [3724], "publicaffairs.georgetown.edu": [6531], "go.walsh.im": [2024], "on.icpam.ro": [2024], "links.4i0n.com": [2024], "www.hs-karlsruhe.de": [7587], "www.fastserv.com": [5671], "s.po.st": [12874], "bookmarks.offog.org": [11793], "r24617869.sync.app.asana.com": [1265], "ssltor.bvg.de": [1605], "docs.jivesoftware.com": [8598], "x.yoppyi.net": [2024], "hack-c.at": [2024], "www.ampproject.org": [19193], "manchester.spydus.co.uk": [21952], "brclo.com": [2024], "pairlite.com": [12365], "schooltoprison.org": [14427], "core.telegram.org": [16146], "pxlws.co": [2024], "int-te.ch": [2024], "bayfiles.com": [1724], "client.ecsi.net": [4873], "bonding.de": [2211], "*.dreamwidth.org": [4751], "cultex.us": [2024], "is.gd": [20585], "aptu.it": [2024], "atsn.ml": [2024], "static3.flattr.net": [5888], "sap.com": [14129], "www.wikiwand.com": [22590], "inclarity.akixi.com": [19129], "vehiclevisuals.com": [17682], "chukotskiy-ao.beeline.ru": [1778], "cab.garstelecom.ru": [20207], "store.playosmo.com": [12158], "mresell.macworld.com.au": [9838], "adverising.bizrate.com": [2054], "techmaster.mcafee.com": [10129], "ad4.netshelter.net": [11247], "go.exhq.co": [2024], "omnitruck.chef.io": [3061], "nest.com": [11205], "www.nav.gov.hu": [10912], "foreninger.uio.no": [17414], "tver.startsmile.ru": [21980], "g.microsoft.com": [10396], "uploaded.net": [17477], "ausflugstipps.zvv.ch": [22733], "cldup.co": [2024], "epigeneticsandchromatin.biomedcentral.com": [1931], "itsanhonour.gov.au": [8407], "crdant.co": [2024], "bbel.me": [2024], "account.samsung.com": [14326], "li.ridorock.com": [2024], "akamai.me": [2024], "lpweb.co": [2024], "info.peertransfer.com": [12551], "comcav.com": [3452], "di.gg": [2024], "api2.beeg.com": [19343], "mydesert.co": [2024], "helpforum.sky.com": [14989], "twu.tw": [2024], "dailies.rstudio.com": [13527], "cz.pornhub.com": [12972], "mail.montazar.net": [10605], "www9.handelsbanken.fi": [7174], "www.little.my": [9487], "wusk.me": [2024], "sjhacks.com": [2024], "www.billing-lan.net": [19378], "compass.admin.wechat.com": [18116], "mubi.tv": [2024], "www.zeczec.com": [22712], "dib.me": [2024], "help.fronter.com": [20179], "www.myprojects.ncl.ac.uk": [10926], "www.hiveage.com": [7433], "cs.utah.edu": [17374], "vpsadmin.vpsfree.cz": [22506], "*.cortera.com": [3696], "leelov.es": [2024], "*.hadrons.org": [7150], "m8k.me": [2024], "www-cache3.extensis.com": [5513], "employment.jjc.edu": [8452], "www.livestream.com": [9527], "nvdeveloper.nvidia.com": [11022], "mru2.state.gov": [17146], "ecr6.engineering.osu.edu": [11797], "membershiprewards.com": [10267], "bdviaj.es": [2024], "z24.si": [2024], "*.innovateuk.org": [8155], "www.v6ak.com": [17551], "sea.hivos.org": [7436], "cache.freescale.com": [6161], "lists.apple.com": [1151], "s.itpsworld.net": [2024], "burstnet.eu": [2462], "oqp2.al-quran.info": [817], "jp.m.xhamster.com": [18606], "jobs.adweek.com": [723], "api.anonine.com": [1084], "365hbr.net": [2024], "stratos.unizar.es": [17441], "5tat.us": [2024], "www.g10code.com": [20194], "www.teachable.com": [22104], "api.swish.mycelium.com": [21063], "adorhm.co": [2024], "panic.life": [2024], "events.jquery.org": [8462], "on.rhap.com": [2024], "rnml.co": [2024], "donal.link": [2024], "aloud.at": [2024], "malta.usembassy.gov": [22406], "www.cdrs.columbia.edu": [3449], "www.squat.net": [21955], "www.megaphone.fm": [20958], "madb.mx": [2024], "pkblog.it": [2024], "www.qt.io": [13365], "secure.monash.edu": [10577], "mequoda.com": [10289], "item.mi.com": [10361], "images.plot.ly": [12860], "foodsharing.de": [20133], "crusoe.friday.ru": [20175], "4gwc-kbhkort.kk.dk": [8748], "bid.openx.net": [12026], "sellercentral.amazon.it": [19178], "www.thesciencegeek.org": [22184], "pxlm.co": [2024], "www.podnapisi.net": [12890], "pharmacies.usc.edu": [17366], "yo.uwant.in": [2024], "intel.com": [8211], "api.sharedcount.com": [14736], "*.bigmir.net": [1893], "www.btp.police.uk": [2402], "bodyk.ca": [2024], "on.versity.tv": [2024], "l.left.ly": [2024], "m.mobile01.com": [10533], "www.cryptostocks.com": [3880], "p2.sinaimg.cn": [14910], "element.yandex.com": [18742], "www.upo.es": [17479], "security.fnal.gov": [5741], "*.opt.fimserve.com": [5802], "developer.musixmatch.com": [10758], "mycoresite.coresite.com": [3668], "c.rambler.ru": [13600], "hillsi.de": [2024], "www.sproutinc.com": [15389], "images.reevoo.com": [13772], "smartronix.com": [15063], "candi.ly": [2024], "kanash.startsmile.ru": [21980], "glasses.com": [6684], "vokal.kmd.dk": [20740], "pkg.tox.chat": [16690], "store.norton.com": [11545], "sqe.li": [2024], "cas.pdcnet.org": [12655], "lagen.nu": [9148], "vietnam.usembassy.gov": [22406], "hraunfoss.fcc.gov": [5699], "wwwl.ipleak.net": [20571], "bwj.fyi": [2024], "unistra.fr": [17367], "downloads.ubnt.com": [17164], "fciencias.udistrital.edu.co": [17195], "s.glifeweb.com": [2024], "zenaui.gq": [2024], "go.goroost.com": [20292], "x509-online.bystrobank.ru": [2500], "zqi.me": [2024], "spangli.sh": [2024], "login.qidian.com": [13349], "smg.axosoft.com": [1504], "mdshop.us": [2024], "cro.kn": [2024], "gwl-az.org": [2024], "hamr.it": [2024], "www.class-central.com": [3217], "ushq.stock.sohu.com": [15171], "winscp.net": [18420], "www.eso.org": [5417], "wpuploads.appadvice.com": [1143], "myip.ms": [10849], "cybersportvirtus.cdnvideo.ru": [19536], "jstr.uk": [2024], "www.stockport.nhs.uk": [10953], "fhserve.com": [5753], "dragonair.com": [4736], "upcs.co": [2024], "passwordbox.com": [12469], "oascentral.globalpost.com": [101], "eventbookingonline.com": [5430], "vstat.v.blog.sohu.com": [15171], "hnz.cm": [2024], "mc.bk55.ru": [19398], "hotmail.co.jp": [7563], "maist.jp": [20910], "h.bilibili.com": [1904], "medt.ec": [2024], "zenmate.com.ph": [18917], "m.okcupid.com": [11809], "api-secure.solvemedia.com": [15196], "shnw.co": [2024], "novaonline.nvcc.edu": [11627], "api.choicestream.com": [3101], "events.ucsc.edu": [17390], "2.911cad.com": [2024], "s.ka300.de": [2024], "*.online.nl": [11909], "podbean.com": [12885], "www.myyearbook.com": [10864], "images.modelviewculture.com": [10555], "awstrust.com": [434], "ahmer.tk": [2024], "mail.franziskawellner.de": [6084], "www.ind.homeoffice.gov.uk": [20399], "prosystemfx.com": [13208], "www.enovance.com": [19927], "lwdu.info": [2024], "www.extatic.org": [5510], "www.magic.fr": [9872], "images.brightidea.com": [2347], "comm-t.ec": [2024], "www.realone.com": [13682], "stanfordvideo.stanford.edu": [15449], "www.oracle-base.com": [12114], "ws.engr.illinois.edu": [17346], "essentials.guardianoffers.co.uk": [6985], "www.ncdc.noaa.gov": [11121], "www.lshtm.ac.uk": [9588], "havelockinvestments.com": [7235], "hints.macworld.com": [9839], "lwrs.inl.gov": [20537], "78.mvd.ru": [21055], "www.kornerstoneadmin.com": [9000], "radawo.ca": [2024], "www.nileshgr.com": [11446], "mybizonline.org": [2024], "jfrp.co": [2024], "guide-images.makeprojects.org": [9916], "static.xrel.to": [18681], "www.usrjoy.com": [17533], "webauth.ox.ac.uk": [17359], "m.kellytarltons.co.nz": [8860], "www.gi.de": [6544], "newfamilysocial.org.uk": [21120], "confy.do": [2024], "privatebin.info": [21501], "jobs.migros.ch": [10417], "ro.3.boardgamearena.com": [2182], "pr.books2-1.com": [2024], "bmb.htwk-leipzig.de": [7596], "chfstps.co": [2024], "jobfinder.dk": [8610], "hackage.haskell.org": [7220], "jasper-qa1.threatmetrix.com": [16467], "firemail.de": [5846], "www.shm.ru": [21804], "jwc.news": [2024], "adstagram.net": [2024], "ebpp.unionpay.com": [17281], "shop.mts.ru": [21042], "makingarchitecture.cca.edu": [2547], "wcms-prod-web-4.ucsc.edu": [17390], "sdfsbos.com": [2024], "blog.mozilla.com.tw": [10692], "on.hioscar.com": [2024], "img.gmo.jp": [6325], "www.encase.com": [6988], "serveriai.lt": [14677], "*.stocktwits.com": [15546], "spot.cx": [2024], "library.wustl.edu": [18089], "french.alibaba.com": [857], "www.fnacspectacles.com": [5948], "jnch.pl": [2024], "portl.me": [2024], "*.jugger.ru": [8680], "bank.vutbr.cz": [17609], "www.remotelyanywhere.com": [13824], "s.posteriors.us": [2024], "zgptest.tocco.ch": [16600], "dspace.mit.edu": [9763], "studenthealth.blogs.bucknell.edu": [2406], "ontlib.ca": [2024], "tsmi.biz": [2024], "all4xs.net": [873], "wiki.filezilla-project.org": [5782], "moneyadviceservice.org.uk": [10586], "dev.dji.com": [4029], "link.bozek.it": [2024], "yaca.yandex.kz": [18743], "www.digitalfreedom.io": [4492], "elec.ru": [19976], "www.tapochek.net": [22098], "*.asnbank.nl": [412], "schoolpro.axosoft.com": [1504], "www.comsigntrust.com": [3456], "homeweb.mcafee.com": [10129], "peiwo-game.bjcnc.scs.sohucs.com": [15173], "isecpartners.com": [7827], "*.element14.com": [5147], "chew.li": [2024], "www.newint.org": [11337], "germantv.net": [6540], "mensw.com": [2024], "webmail.uu.se": [17153], "www.worldforpets.com.au": [18551], "wow.js.org": [20657], "authorlaura.co": [2024], "www.dein.dk": [4302], "teag.ms": [2024], "consult.enfield.gov.uk": [5247], "hotlineplus.mutualofamerica.com": [10777], "libssh.org": [9335], "support.allizom.org": [904], "help.issuu.com": [8392], "url.nova13.com": [2024], "avis.com": [1476], "www.detectify.com": [4389], "*.pbwiki.com": [12245], "mtthw.mn": [2024], "system.opendns.com": [11969], "wyn.me": [2024], "markeedragon.com": [10015], "session.snelis.com": [15097], "diffsnow.com": [2024], "www.journalxtra.com": [8656], "placehold.it": [12792], "blog.atlatszo.hu": [1349], "connect.trezor.io": [22282], "www.we-energies.com": [18114], "borrowsmart.afford.com": [748], "ovidsp.tx.ovid.com": [12207], "*.boots.no": [2235], "*.kicknews.net": [8893], "de.cloudflare.com": [3284], "mofpi.hdfcbank.com": [7249], "*.ciuvo.com": [3201], "www.messerfinancial.com": [10317], "on.agarcia.tv": [2024], "www.toolbarbrowser.com": [16628], "blogs.com": [14380], "www.certificatemonitor.org": [2976], "www.handmadekultur.de": [7177], "hillingdon.gov.uk": [7413], "2-instant.okcupid.com": [11809], "fotolab.sk": [6055], "sbgs.co": [2024], "www.myfitnesspal.com": [10803], "c9.chaucanh.net": [2024], "s.tapirex.com": [12380], "rc.vuejs.org": [17963], "ihg.com": [8229], "websupport.cz": [18189], "www.romab.se": [14017], "dax-files.comscore.com": [3454], "edl.mn": [2024], "readmore.at": [2024], "vozpopuli.com": [17950], "xgames.espn.com": [20024], "tugbo.at": [2024], "ozie.jp": [2024], "www.usi.vutbr.cz": [17609], "cint.com": [3153], "comdirect.de": [19649], "latticechallenge.org": [20785], "vidyard.com": [17792], "lists.tartarus.org": [16030], "today4u.us.to": [2024], "unix.vc": [2024], "h-po.se": [2024], "www.autoadmanager.com": [1446], "skroutz.it": [2024], "kbwrit.es": [2024], "atomicobject.com": [1354], "pgm.golf": [2024], "yixianguan.jd.com": [8434], "photo.tinhte.vn": [16549], "112-akersloot.nl": [25], "secure.governmentjobs.com": [20296], "fs3.formsite.com": [20139], "secure.shared.live.com": [9495], "syt.ec": [2024], "*.propublica.org": [13159], "owa.west-norfolk.gov.uk": [22563], "guide.duo.com": [4797], "fsd84.bis.bnl.gov": [19418], "fi.getsatisfaction.com": [6601], "cacert.net": [2534], "3d.hcask.com": [2024], "drider.info": [2024], "uowdubai.ac.ae": [17434], "bi.adview.pl": [717], "cookiepedia.co.uk": [19680], "opinion.peytz.dk": [12636], "pirr.tk": [2024], "i.digby.us": [2024], "www.fruct.org": [5585], "quinti.no": [2024], "dhworld.me": [2024], "recruitment.pyeongchang2018.com": [21545], "r24617021.sync.app.asana.com": [1265], "doc.see.leeds.ac.uk": [17403], "bw-ce.com": [2024], "funy.club": [2024], "larotative.info": [9131], "assets.libsyn.com": [9336], "eresearch.umich.edu": [17354], "easyprint.idoxgroup.com": [20484], "ay.scz.li": [2024], "www.newschallenge.org": [11375], "clix.gq": [2024], "help.local.ch": [9548], "libs.a2zinc.net": [267], "btsco.de": [2024], "www.pinall.ru": [21407], "bbry.do": [2024], "instalace.datart.cz": [3998], "mate-desktop.net": [9727], "ftrz.co": [2024], "mnow.co.uk": [2024], "go.ctl.net": [2024], "www.symplicity.com": [15786], "git.cyrus.foundation": [3981], "agenda.infn.it": [7771], "www.arbeitsagentur.de": [1184], "jmack.us": [2024], "services2.capitalone.com": [2831], "findmymobile.samsung.com": [14326], "wordpress2.trustthevote.org": [16855], "account.liginc.co.jp": [20839], "catalog.auto.ru": [19276], "www.wimdu.co.uk": [18413], "blog.geocaching.com": [6526], "blog.jolexa.net": [8635], "dschungelca.mp": [2024], "www.travelmoneyonline.firstdirect.com": [20111], "docs.buttercoin.com": [2479], "ondeck.com": [21251], "www.adperium.com": [678], "gpc-csem.info": [2024], "bzq.io": [2024], "freegeoip.net": [6153], "staffdirectory.nigms.nih.gov": [11090], "petva.lu": [2024], "happyfoto.cz": [7193], "funstockdigital.co.uk": [6246], "literatureandlatte.com": [9478], "u.idol.io": [2024], "ftlb.co": [2024], "jasblo.gs": [2024], "panel.stopthehacker.com": [15557], "*.blogspot.com.br": [2127], "legolanddiscoverycenter.cn": [9249], "www.usrportage.de": [22411], "cinemacon.com": [3149], "go.danlefeb.com": [2024], "*.chatme.im": [3035], "www.soobi.org": [21902], "pi.3.cn": [135], "portal.silverpop.com": [14865], "suncmty.news": [2024], "dmnt.im": [2024], "nzchildpoverty.unicef.org.nz": [17067], "discussions.tenable.com": [16180], "www.demo.bitmask.net": [2027], "2.cbsm.at": [8782], "www.hitslink.com": [7431], "jp.norton.com": [11545], "www.readrobreid.com": [13669], "give.everydayhero.com": [5444], "grumpstr.info": [2024], "lists.crux.nu": [3833], "webassetsj.scea.com": [14148], "campusjob.com": [2798], "ewn.news": [2024], "pasportaservo.org": [12457], "glamorousuk.com": [6680], "muscle.am": [2024], "d1.islamhouse.com": [8368], "ntp.nwtime.org": [11306], "biztosnetws.kh.hu": [8739], "www.hornbach.at": [7504], "partnercomputing.illinois.edu": [17346], "venn.digital": [2024], "undersea.link": [2024], "trbt.me": [2024], "coveredca.org": [3728], "www.extremerestraints.com": [20059], "11footballclub.com": [32], "filelocker.bucknell.edu": [2406], "www.durchmesser.ch": [19907], "sustainabledevelopment.un.org": [17057], "blogs.yandex.ua": [18747], "berserk.me": [2024], "www.dentistry.leeds.ac.uk": [17403], "mwcip02.hkjc.com": [20384], "memcached.org": [10268], "caitlinr.me": [2024], "wpy.io": [2024], "stats.linode.com": [9401], "styles.domainwho.is": [4654], "go.labs.coop": [2024], "flss.co": [2024], "crissy.cc": [2024], "www.katalog.yandex.by": [18739], "8d773c32-5dd8-e4fb-0679-e5b82f181011-rum.cdnvideo.ru": [19536], "www.consumidor.ftc.gov": [5710], "neo.run": [2024], "usa.kaspersky.com": [8820], "www.peercloud.io": [21380], "*.powerspeaking.com": [13042], "lists.egenix.com": [19923], "a.ptm.ro": [2024], "www.sbb.ch": [15756], "static2.funtip.de": [20189], "asset-6.soupcdn.com": [15236], "media-elerium.cursecdn.com": [3927], "www.geeklan.co.uk": [6475], "sinonptik-cdn1.un.net.ua": [14919], "opnotes.stanford.edu": [15448], "safecount.net": [14293], "ntuc.co": [2024], "kscu.com": [8993], "pma.im": [2024], "thepirateproxy.co": [22174], "reception.permkrai.ru": [21390], "toyou.co.uk": [22258], "www.podio.com": [12889], "t-online.de.intellitxt.com": [15839], "medya.cihan.com.tr": [19590], "directo.uniovi.es": [17282], "s9.qhimg.com": [13347], "go.sentinelone.com": [14649], "tcpf.co": [2024], "licensebuttons.net": [9339], "c.compete.com": [3522], "es.godaddy.com": [6755], "rumi.loak.org": [2024], "news.roblox.com": [13980], "support.sucuri.net": [15639], "4v4.me": [2024], "wsio-sandbox.buttercoin.com": [2479], "decal.ly": [2024], "mosa.me": [2024], "roku.com": [14007], "solutions.symantec.com": [15780], "www.kkh.de": [8750], "catchall.maxdome.de": [10106], "www.asa.org.uk": [19245], "wprp.zemanta.com": [18912], "www.unsearcher.org": [17453], "lkdv.it": [2024], "help-nl-eu.nike.com": [11440], "www.pckeyboard.com": [21370], "skiing.clubs.bucknell.edu": [2406], "www.deater.net": [4253], "*.c-col.com": [3522], "ivcard.co": [2024], "static4.codehs.com": [3347], "receivesmsonline.net": [21608], "eindhoven.nl": [5114], "www.usuhs.edu": [17132], "pcrdist.com": [21373], "friedhoff.org": [6191], "consumers.unian.net": [22369], "devnet.jetbrains.com": [8573], "go.betta.io": [2024], "www4.uwm.edu": [17379], "3dsecure.mbank.sk": [9733], "www.alumni.cam.ac.uk": [17332], "tto.link": [2024], "i.h-t.co": [7025], "img.milanuncios.com": [10426], "www.ysu.edu": [18832], "www.ageofmine.com": [766], "pixel.adblade.com": [615], "biohr.in": [2024], "vrd.cc": [2024], "emagazine.rakuten.co.jp": [13594], "yashrajs.tk": [2024], "www.publeaks.nl": [13248], "lists.openid.net": [11980], "my.hivelocity.net": [7434], "www.bitmessage.org": [2029], "aamc.org": [277], "neterix.net": [2024], "log.pinterest.com": [12731], "shop.visiblebody.com": [17859], "kiks.yandex.by": [18739], "www.kassa.rambler.ru": [13600], "jaspan.com": [8537], "fgdc.gov": [20084], "gquads.georgetown.edu": [6531], "www.popehat.com": [12962], "www.mwellner.de": [10782], "www.affiliate-b.com": [745], "www.midphase.com": [10409], "casi.dyc.edu": [4089], "help.grooveshark.com": [14310], "click.alfabank.ru": [849], "www.inspirehep.net": [8178], "*.routledgeweb.com": [8120], "www.oxfordshire.gov.uk": [21327], "emergency.cites.illinois.edu": [17346], "krankenkassen.search.ch": [14504], "link.stefanm.me": [2024], "5.dbstatic.no": [19775], "www.login.schule.sachsen.de": [14279], "www.alau.kz": [19133], "backbox.org": [1621], "x.andro.plus": [2024], "dealspwn.com": [7556], "go.liammoat.com": [2024], "linuxcounter.net": [9406], "go.sibe.pw": [2024], "*.onion.direct": [16638], "jmtc.co": [2024], "similarweb.com": [14875], "*.bundespolizei.de": [2446], "the.punkae.com": [2024], "www.hofer.si": [357], "hlzmn.tk": [2024], "mhev.org": [2024], "www.shiftboard.com": [14765], "www.vhffs.org": [22457], "ccrma.stanford.edu": [15448], "pbg.li": [2024], "www.lifeline.org.au": [9347], "tuva.tpprf.ru": [22260], "perfectmoney.is": [12594], "vlmsetv.tk": [2024], "www.v2c.lrz.de": [9253], "www.neustarlocaleze.biz": [11323], "captcha.aol.com": [380], "go.edig.co": [2024], "hub.docker.com": [4605], "epixmedia.co.uk": [5312], "d7.hitravel.xyz": [2024], "signin.dell.com": [4317], "legal.dwolla.com": [4809], "www.itella.fi": [20601], "s.xnuance.fr": [2024], "netbank.de": [11255], "usc.es": [17506], "narr.ly": [2024], "img1.sencha.com": [14637], "www.tpd.sk": [16695], "customers.darktrace.com": [19759], "jessfraz.com": [8569], "bing.com": [1926], "mycliplister.com": [10867], "krawlly.com": [9018], "*.photoshelter.com": [12673], "r24820147.sync.app.asana.com": [1265], "neweb.ucsd.edu": [17012], "nutritiondata.self.com": [11623], "orsvp.me": [2024], "ecaf.peterborough.gov.uk": [12625], "stakeholders.ofcom.org.uk": [11771], "runabove.com": [14090], "services.oxfordshire.gov.uk": [21327], "gibdd.a-3.ru": [258], "truck-staging.infinum.co": [20526], "video8.0xdb.org": [10], "shopfeatu.red": [2024], "sourceright.us": [2024], "www.bruno.postle.net": [2396], "okmag.co": [2024], "my-gps.info": [2024], "sogeek.us": [2024], "www.puma.com": [13271], "r24617859.sync.app.asana.com": [1265], "mexico.isidewith.com": [20466], "www.lastminute.com": [9177], "jehse.biomedcentral.com": [1931], "www.metooo.io": [10343], "www.shadertoy.com": [14712], "enfuseconf.com": [6988], "mjba.us": [2024], "maddy.news": [2024], "noordwijkerhout.nl": [11172], "clinkle.com": [3268], "crashspace.org": [3759], "www.isyvmon.com": [8397], "sagata.biz": [2024], "secure.lenos.com": [9264], "anidex.moe": [1066], "ar.cloudflare.com": [3284], "s.devtty.de": [2024], "www.urbanartcloud.com": [17497], "buzzsprout.com": [19486], "framindmap.org": [6075], "wvph.co": [2024], "erj.life": [2024], "cdn.comparitech.com": [3516], "analytics.turn.com": [16911], "ecitizen.walthamforest.gov.uk": [18061], "midnight-commander.org": [10408], "campbellk.it": [2024], "www.siemens.co.*": [14831], "cdn9.sure-assist.com": [15709], "planning.hillingdon.gov.uk": [7413], "joshs.link": [2024], "autotrader.com": [1445], "amazn.ml": [2024], "www.cathaypacific-campaign.com": [2913], "op.searchteria.co.jp": [21765], "code.downthemall.net": [4718], "dharme.sh": [2024], "od.domonet.ua": [19877], "maps.salford.gov.uk": [21721], "url.onex.de": [2024], "ipse.in": [2024], "assistance.ouvaton.org": [12187], "with.dj": [2024], "fhrn.ws": [2024], "aln.tw": [2024], "i.glui.me": [2024], "reuters.com": [13893], "br.crowdin.com": [3823], "www.mmedia.me": [10302], "brass.clothing": [2024], "www.linuxgraphic.org": [20849], "gorod.yandex.kz": [18743], "hardwarebug.org": [7197], "ndif.in": [2024], "so.sina.cn": [14903], "ox-d.pubgears.com": [13240], "preview.is": [2024], "open.hpi.de": [7082], "cduniverse.com": [2581], "my.qrvoice.net": [2024], "www.guaranibitcoin.com": [6979], "rdme.com": [2024], "cjn.li": [2024], "www.cbp.net.br": [2538], "blsmd.uk": [2024], "www.thelocal.ch": [22163], "gitorious.org": [6664], "jira.intern.ligatus.com": [9356], "eecs.mit.edu": [9763], "terminal-profile.osmocom.org": [12159], "ivf.tw": [2024], "audiograb.be": [2024], "cewe.pw": [2024], "maps.fife.gov.uk": [20087], "app.wercker.com": [22561], "docs.nubits.com": [11600], "nsk.te-st.ru": [22103], "s1m.xyz": [2024], "directory.ua.edu": [16996], "dcrk.me": [2024], "img08.taobaocdn.com": [16016], "ox.htw-berlin.de": [7103], "dbhas.info": [2024], "woko.agency": [2024], "abmahnbeantworter.ccc.de": [2553], "webhostone.de": [18216], "*.infotech-team.com": [18194], "polarnopyret.se": [12906], "lanyrd.com": [9166], "ioscoa.ch": [2024], "www.freedm.ncsu.edu": [11531], "www.iovation.com": [8336], "palmbeach.aclufl.org": [297], "artwork-cdn.7static.com": [235], "www.sergiopizza.ru": [21784], "ot.ca-mpr.jp": [2524], "www.gemius.com": [6500], "dbkiltz.com": [2024], "www.idefix.com": [7935], "pic-images.pw": [2024], "u.sipdah.com": [2024], "astrahan-realty.rambler.ru": [13600], "www.easycruit.com": [5015], "en.gf134.com.es": [2024], "sandvine.com": [14347], "go.d-mind.de": [2024], "is.puma.com": [13271], "bsi-fuer-buerger.de": [5701], "talayd.in": [2024], "piwik.cbendt.de": [2545], "syn.5min.com": [217], "femsim.oxfordjournals.org": [12222], "cdn3.img.sputniknews.com": [21951], "www.dotmailer.co.uk": [4690], "arpnetworks.com": [401], "*.strategicmanagement.net": [15577], "van.gapph.nl": [2024], "portaltest.equinix.com": [5322], "campaigner.dn.se": [19856], "ltz.co": [2024], "edukacja.senat.gov.pl": [14635], "filterbypass.me": [5799], "issues.adblockplus.org": [616], "tkc.church": [2024], "blog.wormly.com": [22619], "dev.heg.com": [7510], "raje.my": [2024], "www.airtime.pro": [799], "s.mixerbox.com": [2024], "*.dpreview.com": [4483], "bms.it-tv.org": [20597], "pro.mediametrics.ru": [20950], "www.yp.ru": [22698], "forums.juniper.net": [8698], "cinfu.com": [3151], "dxy.com": [19912], "market.unicefusa.org": [17070], "c.prall.me": [2024], "lplo.co": [2024], "listboxservices.web.cern.ch": [2588], "jgs.aw": [2024], "kb.mailchimp.com": [20909], "temp-mail.org": [16176], "24ways.org": [104], "btcs.com": [1585], "www.bitvps.com": [1988], "ww251.smartadserver.com": [15049], "securem.ar.ikea.com": [7962], "unicef.or.jp": [17066], "www.socialshows.com": [15127], "www.steg-electronics.ch": [14252], "moodle.uv.es": [17544], "www.jd.com": [8435], "thelocal.it": [22168], "webmail.loxinfo.co.th": [18223], "www.blackhat.com": [2057], "crcpress.com": [8120], "winmskhost4.ispserver.com": [20588], "soiltech.co": [2024], "www.bits.media": [2036], "login-p2.constantcontact.com": [3594], "gowlm.com": [2024], "secure.iwantmytvmagazine.com": [11012], "payments.leeds.gov.uk": [20799], "sfn.li": [2024], "*.bounce.io": [2262], "login.thesun.co.uk": [22188], "www.u-bordeaux.fr": [16990], "names.co.uk": [11064], "moto.auto.ru": [19276], "rus-omn.tpprf.ru": [22260], "mailinator.com": [9902], "www.japhub.com": [8528], "lasercad.x5.ru": [18590], "heft.ivw.eu": [7869], "telework.jpl.nasa.gov": [10909], "piratebit.tech": [21524], "pbs-erhverv.dk": [12526], "www.insightexpressai.com": [8173], "www.gritdigital.co.uk": [6939], "rs.ln.com.ar": [2024], "oneserver.cz": [11681], "cdn.boardgamearena.net": [2182], "uua.org": [17294], "tranquil.earth": [2024], "www.adnetworkperformance.com": [19085], "static.smi2.net": [15069], "publicaffairsnews.com": [21535], "on.j3h14h.com": [2024], "bbs.jide.com": [8450], "gacs.food.gov.uk": [20132], "*.blogspot.pe": [2127], "*.libregamewiki.org": [20831], "resh.al": [2024], "upload.youcanbook.me": [18794], "ireed.me": [2024], "beautypedia.re": [2024], "otsny.co": [2024], "forum.hostdime.com": [7518], "keloni.ml": [2024], "www.netgroup.dk": [11274], "*.blogspot.pt": [2127], "yumm.ly": [2024], "wild.tips": [2024], "sciety.co": [2024], "screens.dimonvideo.ru": [19840], "lo.la.welt.de": [18290], "www.herefordshire.gov.uk": [7326], "codepen.io": [3348], "cwmend.es": [2024], "www.klubitus.org": [8949], "globaltradeday.org": [6715], "dun.kn": [2024], "www.codyhouse.co": [19640], "www.birmingham.gov.uk": [19380], "nda.amd.com": [970], "www.lokus.no": [9577], "researchbasics.jstor.org": [8472], "yelp.pl": [18766], "fashionshop.telegraph.co.uk": [16148], "tastselv.skat.dk": [14963], "addonlist.wesnoth.org": [18298], "nzdrug.org": [2024], "arabic.alibaba.com": [857], "www.newsela.com": [21125], "waytools.com": [18107], "www.aftership.com": [756], "e3d.online": [2024], "primalblueprint.com": [13106], "jish.ca": [2024], "projectplace.com": [13189], "portal.sfc.hk": [14706], "wiki.simplemachines.org": [21830], "msevents.microsoft.com": [10396], "analytics.cooldestinations.net": [3643], "static.viu.tv": [22475], "s.hadje.nl": [2024], "wsg4.link": [2024], "www.peacefire.org": [12537], "crm.it-agenten.com": [7840], "wiki.linux.it": [9419], "alacarte.city": [2024], "slp1.somerset.gov.uk": [15197], "vespr.in": [2024], "eleave.osu.edu": [11797], "hive.hostanalytics.com": [7523], "payment.outspark.com": [12186], "go.cisvcr.org": [2024], "adult.postimage.org": [13024], "partner.dhl.de": [4025], "hyperisland.com": [20456], "jbled.so": [2024], "results.pm": [2024], "sk.or.at": [2024], "disarmament-library.un.org": [17057], "www.catalog.library.georgetown.edu": [6531], "o5.hitravel.xyz": [2024], "open-images.us": [2024], "cloudfoundry.org": [3297], "msfb.us": [2024], "signon.org": [10669], "argn.biz": [2024], "jc.4m3.org": [2024], "www.binarydefense.com": [1921], "www.forumatic.com": [6042], "umfragen.freifunk.net": [6170], "wifi.mcdonalds.ru": [20941], "documents.iciciprulife.com": [7917], "www.euroforum.de": [5402], "wtrs.tk": [2024], "emeraldinsight.com": [5197], "test.mcg.me": [2024], "android-port.de": [1048], "s.minami.me": [2024], "trip.m.taobao.com": [16015], "pine64.com": [12711], "livef.it": [2024], "explore.georgetown.edu": [6531], "mreh.ca": [2024], "js.welt.de": [18290], "pivotpt.co": [2024], "clkon.us": [2024], "cca.kaspersky.com": [8820], "www.artsy.net": [1260], "go.riabiz.com": [2024], "enterpriseportal.accuweather.com": [520], "linen.solutions": [2024], "apps.facebook.com": [5609], "tv.nrk.no": [11586], "www.paranoidsecurity.nl": [12423], "wiki.nikhef.nl": [11441], "api.ulozenka.cz": [17212], "s.svtrd.com": [15741], "www.arenavc.com": [1209], "register.fca.org.uk": [5547], "unattended.msfn.org": [9804], "www.nab.com.au": [10905], "www.sccemsagency.org": [14401], "taverna.knowledgeblog.org": [8961], "www.lpac.co.uk": [9107], "www.eset.de": [4947], "h-t.co": [7025], "www.dns-oarc.net": [4051], "subs.recruiter.co.uk": [21612], "*.dfn.de": [4402], "pabo.nl": [12336], "www.prevention.cancer.gov": [2819], "telusmobility.com": [16174], "www.financial-net.com": [20100], "partner.wienernetze.at": [18376], "avast.com": [1469], "clk.atdmt.com": [10393], "hk.cmbchina.com": [2639], "dosomethingreal.govspace.gov.au": [6851], "b.cubic7.co.uk": [2024], "www.irs.gov": [7821], "ripmixmake.org": [4901], "www.syndetics.com": [15798], "186iogbkdbpeu5gbmriaznvlg5a69ri2ep4y5s01.ipleak.net": [20571], "www.jdpay.com": [8441], "startssl.org": [15472], "vct.im": [2024], "static.sl.lumosity.com": [9677], "icberl.in": [2024], "wiki.refeds.org": [13472], "bt1.archive.org": [8269], "social.msdn.microsoft.com": [10396], "www.whappodo.com": [18323], "re.jd.com": [8436], "portal.scs.georgetown.edu": [6531], "www.nccgroup.trust": [10922], "www.ice.cam.ac.uk": [17332], "turkey.usembassy.gov": [22406], "moroccanbazaar.co.uk": [10637], "wuhk.me": [2024], "svb.com": [14853], "www.photographytalk.com": [12677], "www.caniuse.com": [19503], "radiokatalipsi.espiv.net": [20021], "sv2.biz": [15733], "nexgenfunds.ca": [2024], "admin.sans.org": [14128], "*.telemetryverification.net": [16157], "*.compliancesigns.com": [3529], "dybk.tv": [2024], "nsf.gov": [11098], "global.nytimes.com": [11041], "iest2.ie.cuhk.edu.hk": [2704], "statisch.marktplaats.nl": [10034], "ay8.so": [2024], "ap.aber.ac.uk": [473], "www.praetorian.com": [13057], "apply.houseoffraser.co.uk": [7570], "hrep.nhmrc.gov.au": [7610], "price.com.hk": [13095], "www.winoptions.com": [18448], "vng.me": [2024], "www.eztv.ch": [20063], "sbshare.me": [2024], "psa.io": [2024], "uk.sogeti.com": [15167], "www.digitalcreations.no": [4476], "*.1c-bitrix.ru": [74], "woo.hockey": [2024], "shrmn.co": [2024], "weil.ws": [2024], "*.store.thesims3.com": [5141], "cdn8.iconfinder.com": [7920], "*.webroot.com": [18233], "alltop.com": [910], "davesrfs.co": [2024], "sickpilgr.im": [2024], "www.iubenda.com": [8409], "www.statebuy.state.gov": [17146], "prxbx.com": [13229], "zonats.co": [2024], "titup.co": [2024], "dashboard.demandbase.com": [4324], "www.dyc.edu": [4088], "10x.com": [2024], "www.belspo.be": [1800], "icm.intan.net": [8201], "www.facebook.dk": [5612], "img-egc.xvideos.com": [22660], "www.mrcote.info": [10712], "cf4.100r.org": [12], "ajade.link": [2024], "justintaylor.co": [2024], "*.byteark.com": [2502], "shib.ncsu.edu": [11531], "iter.org": [7849], "jagrs.com": [2024], "openpgpjs.org": [12001], "chi.taobao.com": [16015], "mrsjuneyap.com": [2024], "netdev01.org": [11260], "www.phpmagazin.de": [12282], "widgets.lotame.com": [9622], "x.lamo.org": [2024], "wiki.uhulinux.hu": [22349], "chtah.com": [3059], "myrequests.bl.uk": [2358], "ias.belregion.ru": [19353], "*.sigterm.no": [14845], "www.elft.nhs.uk": [10953], "chevereto.com": [3074], "chrsg.com": [2024], "bonapp.it": [2024], "armsglobe.chromeexperiments.com": [3122], "pandroid.c-base.org": [2506], "wwwstatic.spiceworks.com": [15338], "ni.gl": [2024], "static-1.gumroad.com": [7002], "ycombinator.com": [7129], "l.merid.org": [2024], "www.ryot.org": [13545], "go.nyvaria.net": [2024], "gdc4.me": [2024], "democracy.chorley.gov.uk": [19586], "link.aveyard.eu": [2024], "hub.hku.hk": [20387], "nat.ms": [11080], "ritasker.me": [2024], "support.domaintools.com": [4652], "srbhub.be": [2024], "shared.5min.com": [217], "download.bleachbit.org": [19407], "tdg.newsnetz.ch": [11371], "cdn.cakecentral.com": [2737], "sport.kazanfirst.ru": [20695], "crossroads.ias.edu": [7673], "www.rambler.ru": [13600], "worldri.de": [2024], "garyjohnson2012.com": [6443], "enterprise.com": [5278], "b.scorecardresearch.com": [14455], "www.uguu.se": [17201], "directory.tuakiri.ac.nz": [16883], "eliomotors.com": [5158], "www.btwifi.co.uk": [1602], "community.homeaway.com": [20396], "mail.internet2.edu": [8277], "moerdijk.nl": [11172], "fhc.bz": [2024], "join.fuckyoucash.com": [6219], "s.hiraku.tw": [2024], "tlsfun.de": [16588], "p.dr.adingo.jp": [646], "boles.co": [2024], "hied.be": [2024], "izquierda-unida.es": [8418], "www.timeshighereducation.com": [16539], "video5.0xdb.org": [10], "pkrn.ws": [2024], "apps8.cardiff.gov.uk": [19509], "getshine.com": [6588], "aerosollab.osu.edu": [11797], "cancer2.cse.ucsc.edu": [17390], "turb.la": [2024], "www.galerievirtuelle.bve.ulaval.ca": [17319], "media-cdn.tripadvisor.com": [16817], "12-instant.okcupid.com": [11809], "r24624967.sync.app.asana.com": [1265], "redaktorext.polskieradio.pl": [12931], "forgefields.com": [6014], "demo-anonymous.piwik.org": [12768], "api.sklik.cz": [14980], "plugrush.com": [12864], "digitalvelocity.tealium.com": [16060], "www.smartbrief.com": [15052], "besa.oxfordjournals.org": [12222], "www.joykazino.com": [20654], "www.lantea.kairo.at": [8782], "loosh.in": [2024], "therug.co": [2024], "li.kmchr.de": [2024], "surge.sh": [15718], "p.trck.name": [2024], "ifacility.news": [2024], "dika.io": [2024], "hex.getdigital.de": [6594], "www.itsdanbull.com": [4124], "sjweav.co": [2024], "webtranslateit.com": [18261], "app.mtsbank.ru": [10720], "et.3.boardgamearena.com": [2182], "intranet.engg.hku.hk": [20387], "engine.lingospot.com": [9389], "blog.names.co.uk": [11064], "funster.tv": [2024], "gallery.hackerspace.pl": [7136], "nopaste.linux-dev.org": [9415], "www.fibank.bg": [5755], "mydrive.ch": [10870], "s1.nyt.com": [11035], "support.crazyegg.com": [3762], "healthlibrary.stanford.edu": [15447], "rlstl.com": [2024], "labd.in": [2024], "auth.kairo.at": [8782], "www.quicktranslate.com": [13414], "nokia.datalens.here.com": [7325], "thumbs.sbstatic.com": [14860], "bsn.console.aliyun.com": [868], "ufies.org": [17024], "thumb.tk": [2024], "onename.com": [11875], "tomsk.sledcom.ru": [21858], "outnow.ch": [21317], "oplpro.com": [2024], "knowledgebase.ticketsource.co.uk": [22207], "*.viamichelin.com": [17746], "smusd.me": [2024], "adfs.connect.ust.hk": [22412], "uni.cf": [2024], "attn.link": [2024], "prkrtylr.me": [2024], "forums.netapp.com": [11221], "api.basespace.illumina.com": [7971], "me.huobi.com": [7628], "www.hellobond.com": [7298], "www.l.de": [9072], "hehstdy.org": [2024], "franklinveaux.com": [6082], "member.oregonlive.com": [12135], "zollie.co": [2024], "uni.cr": [2024], "avt.inl.gov": [20537], "ir.nico.mx": [2024], "hersh.co": [2024], "phel.me": [2024], "altai.rt.ru": [13529], "mullvad.net": [10731], "www.comquas.com": [19662], "www.registrar.osu.edu": [11797], "opensrs.com": [12005], "daixiao.1688.com": [51], "escueladoctorado.unizar.es": [17441], "cdncz2.img.sputniknews.com": [21951], "apsaf.co": [2024], "white.ec": [2024], "piratebay.unlockproject.bid": [22259], "neca.ps": [2024], "nts.buzz": [2024], "azair.me": [2024], "pimg1.126.net": [40], "www.picmet.org": [12285], "wevebui.lt": [2024], "nm.ufm.edu": [2024], "link.buxx.nl": [2024], "sso.forgerock.com": [20136], "pci.trustwave.com": [16870], "psswrdbx.com": [12469], "mem.racingclub.hkjc.com": [20384], "answers.unrealengine.com": [17450], "www.wtop.com": [18569], "secure.merlinentertainmentsgroup.com": [10307], "rodei.me": [2024], "www.idfpr.com": [7968], "www.imgwe.com": [20509], "atbank.nl": [418], "diagnprognres.biomedcentral.com": [1931], "radio6.nu": [2024], "hoover.org": [7498], "wj32.org": [18480], "jobs.oxfam.org.uk": [12221], "genblank.rapida.ru": [13619], "www.bolsaviviendas.imp.ulpgc.es": [17213], "my.tmobile.com": [15899], "unpreserve.me": [2024], "forums.freebsd.org": [6097], "warren.ms": [2024], "www.yeggi.com": [18760], "eseoe.se": [2024], "1.8op.biz": [2024], "www.gumtree.com": [20323], "friday.ru": [20175], "storage.filemobile.com": [5786], "haproxy.com": [7029], "www.myinterfase.com": [10877], "*.fwmapps.co.uk": [5660], "ttl.careers": [2024], "www.cirtexhosting.com": [3162], "pkg4.me": [2024], "mobilflex.tdc.no": [15863], "wgtl.es": [2024], "cso-uvat.admtyumen.ru": [19082], "teluguvids.me": [2024], "s.eap.io": [2024], "itswn.us": [2024], "info.visiblebody.com": [17859], "lt.3.boardgamearena.com": [2182], "*.utoronto.ca": [17428], "hatchd.li": [2024], "s.nak.co": [2024], "l.joeteach.us": [2024], "www.actis.ru": [19058], "sktj.ml": [2024], "link.rtbf.be": [2024], "tja.re": [2024], "bpsshop.org.uk": [19439], "a0.muscache.com": [793], "www.globalactionplan.org.uk": [20267], "inbd.me": [2024], "social-engineer.com": [15122], "twi5.in": [2024], "hws.dj": [2024], "cswebapp.beeline.kz": [19345], "www.physicsforums.com": [12687], "authoring.lsbu.ac.uk": [9111], "o.jd.com": [8436], "mea.elsevierhealth.com": [5179], "rlyon.co": [2024], "www.omron.com": [11843], "www.gcdn.org": [6284], "sec-virtual.usc.es": [17506], "geccodejoakecod.444.hu": [183], "www.globalpromote.com": [6712], "attmd.eu": [2024], "rhyoga.uk": [2024], "upc-cit.com": [2024], "forums.pragprog.com": [13058], "go.jon.am": [2024], "www.stormpath.com": [15568], "croscill.com": [3809], "*.expomobilehomes.com": [5616], "findnsave.oregonlive.com": [12135], "salsk.europaplus.ru": [20034], "freixe.net": [2024], "*.nicta.com.au": [10963], "tilt.mk": [2024], "media.headphone.com": [7252], "pacw.org": [12235], "media.intellipoker.bg": [20547], "tonmo.com": [22234], "www.depkatalog.no": [4358], "paclearances.state.gov": [17146], "s121.cnzz.com": [3328], "www.konsum.admin.ch": [22061], "u8.qiyipic.com": [13354], "circulationportal.sacbee.com": [14280], "albr.co": [2024], "heg.org": [7510], "tmr.vn": [2024], "wwa.ipleak.net": [20571], "secure.cmax.americanexpress.com": [979], "dna1.mookie1.com": [10617], "es.amnesty.org": [1000], "kurort.yuga.ru": [22701], "multicore-devcon.com": [10737], "fastviewer.dwd.de": [19911], "predstav.khabkrai.ru": [20709], "a.helen.jor.br": [2024], "lilliputti.com": [9369], "godscloud.zdf.de": [22709], "eu16.nl": [2024], "i.webgeek.ph": [2024], "dvblg.com": [2024], "bdge.me": [2024], "booking.flypeach.com": [20126], "genome-cancer.cse.ucsc.edu": [17390], "nsd.rdc.noaa.gov": [11121], "www.drivethrucomics.com": [11867], "www.noisey.com": [11497], "licenses.javacoolsoftware.com": [8542], "*.van.fedex.com": [5696], "*.atariage.com": [1333], "www.nestle.de": [11207], "de.okcupid.com": [11809], "csend.be": [2024], "lund.zozs.se": [19011], "www.vpn.ac": [22504], "parametersecurity.com": [12421], "kraft.us": [2024], "ssl.synovite-scripts.com": [15805], "14.mvd.ru": [21055], "aweber.com": [437], "it.stonybrook.edu": [15548], "cert-test.sandbox.google.com": [6818], "sante.ht": [2024], "tjournal.ru": [16582], "catchad.es": [2024], "jayhasga.me": [2024], "trkvrl.co": [2024], "www.midkemiaonline.com": [20979], "pro-managed.com": [13156], "moztw.org": [10704], "forward.agency": [2024], "mp3scene.info": [21032], "get-digital.it": [6547], "www.barnskospecialisten.se": [1706], "www.davidsopas.com": [4216], "brobible.it": [2024], "shepetivka.o3.ua": [21219], "www.kablepackaging.com": [8778], "*.mybetter.com": [10792], "totse2.com": [16678], "prowebsector.gr": [13162], "ultim.as": [2024], "deviceids-medt-id4.wdr.de": [18113], "mybrain.it": [2024], "s2.gismeteo.lv": [20250], "cvw.gs": [2024], "tmp-uat-paymonitor.imercer.com": [20502], "iqmedia.us": [2024], "mining.cex.io": [2600], "fusion.net": [20190], "mkpl.newegg.com": [11356], "secure.yellowpages.ca": [18764], "www.socialscreamer.com": [15133], "gitlab.awesome-it.de": [1487], "ws.audioscrobbler.com": [1387], "www.landal.*": [18579], "hopper.beget.com": [19347], "www.forums.nexusmods.com": [6043], "www.podvertiseonline.com": [12883], "surveillance.rsf.org": [13844], "pfr.pochtabank.ru": [12876], "casbaa.hk": [2024], "js.stormiq.com": [15567], "archive.wix.com": [18473], "ww302.smartadserver.com": [15049], "molly.am": [2024], "acquisitions.democrats.org": [4338], "onarbor.com": [11860], "online-account-manager.asda.com": [407], "www.dataspace.pl": [4178], "kaggle.com": [8780], "lww.com": [9452], "www.marinsoftware.com": [10005], "www.0x41.no": [6], "ria.com": [13484], "g.1rf.tv": [2024], "billing.owncube.com": [12216], "snea.me": [2024], "io.cnn.net": [2650], "dtp.cancer.gov": [2819], "mfs.ykimg.com": [22681], "zny.me": [2024], "angus.ly": [2024], "images2.hertz.com": [7371], "editorial03.newsnetz.ch": [11371], "assyrian.church": [2024], "notex.ch": [11478], "xcb.freedesktop.org": [6102], "www.ida.liu.se": [9097], "hairand.me": [2024], "punchbowl.biz": [2024], "i.saigonit.com": [2024], "www.geak.tk": [3536], "bugs.distributed.net": [4564], "susan.bz": [2024], "torrents.linuxmint.com": [20852], "secure.foreignpolicy.com": [6002], "app.embed.ly": [5188], "www.t411.io": [15847], "events.emoryhealthcare.org": [5203], "ih1.redbubble.net": [13721], "hostvirtual.com": [7526], "gorails.com": [6764], "svoboda.org": [22052], "insurance.thecthulhu.com": [16403], "lezlovevideo.com": [9296], "www.fakturownia.pl": [5628], "community.crisis.org.uk": [3797], "wss.im": [2024], "*.ezinearticles.com": [5530], "detngr.com": [2024], "rsh.md": [2024], "www2.ulpgc.es": [17213], "aria.lv": [2024], "hmnt.me": [2024], "www.givekidstheworld.org": [6668], "mynavigator.iciciprulife.com": [7917], "tfox.us": [2024], "joomlacode.org": [8642], "nokiausa.com": [11498], "hellon.eu": [2024], "mnultimate.org": [20999], "give.illinois.edu": [17346], "go.design360.gr": [2024], "sqbl.co": [2024], "efurnitureny.com": [4907], "cashplatoon.com": [2889], "zenmate.at": [18917], "cgi.ecsi.net": [4873], "subgenius.com": [3133], "jmink.me": [2024], "f5networks.com.br": [5536], "serviceuptime.com": [14684], "www.ievaphone.com": [20486], "muss.me": [2024], "klubit.us": [2024], "www.job.g4s.com": [20195], "mm.us.sinaimg.cn": [14910], "prieve.me": [2024], "www.photopay.net": [12672], "link.a2merch.ca": [2024], "citrixonlinecdn.com": [3182], "dobruchut.aktuality.sk": [1507], "www.fusion-net.co.uk": [6255], "fpdownload.macromedia.com": [9850], "ftf.sh": [2024], "caruthers.illuminateed.com": [20494], "network.drweb.com": [4776], "spanish.caracas.usembassy.gov": [22406], "files.adbrite.com": [619], "iconical.com": [7921], "city.oschina.net": [11702], "*.upc.es": [12940], "full.tvm2.info": [2024], "jfi.sh": [2024], "www.9to5google.com": [254], "cleanprint.net": [3227], "www.greasyfork.org": [6888], "courses.cs.ut.ee": [17148], "*.ku.edu": [17347], "ssl1.udn.com": [17020], "*.zenfs.com": [18728], "pbebank.com": [13249], "admin-iemc-test.rosminzdrav.ru": [21674], "cdn2.nyt.com": [11035], "controlsocios.galpon.org": [20198], "7tons.cdnvideo.ru": [19536], "argeweb.nl": [1210], "img1.gtimg.com": [6975], "www.daydeal.ch": [19774], "ivi-f39-vcp.cdnvideo.ru": [19536], "www.microster.pl": [10381], "related.popin.cc": [12954], "www.stroud.greenparty.org.uk": [6908], "adpurl.ladepeche.fr": [9128], "www2.jm.com": [20642], "rt.ietf.org": [7725], "ii-public2.nlm.nih.gov": [11090], "www.auth0.com": [1432], "www.db-ip.com": [4000], "nakhodka.europaplus.ru": [20034], "s.spc-intl.com": [2024], "sfbc.co": [2024], "*.humanrights.gov.au": [1420], "dashpay.io": [4157], "lmsa.me": [2024], "reviews.argos.co.uk": [1213], "www.royal.gov.uk": [14050], "www.apwustore.org": [977], "strategicmanagement.net": [15577], "fahrplan.search.ch": [14504], "s.scoreplus.jp": [2024], "jlne.ws": [2024], "integrity.st": [8206], "relcom.host": [13814], "telerik.com": [16161], "uanb.ai": [2024], "www.dgdr.cnrs.fr": [6174], "intranet.hku.hk": [20387], "s.gaijinpot.com": [2024], "deputat.fbk.info": [5691], "mmos.websitealive.com": [18242], "lists.isc.org": [7823], "static.glassdoor.ca": [20258], "myatu.link": [2024], "le.nra.org": [21176], "on.rotary.org": [2024], "account.jamplay.com": [8508], "cdn3.openculture.com": [12039], "www.united-domains.de": [17303], "21.rkn.gov.ru": [13971], "jjbb.co": [2024], "thesound.la": [2024], "ykl.co": [2024], "wt.tl": [2024], "adminer10.vas-hosting.cz": [22428], "*.petteriraty.eu": [12634], "sg.cmbchina.com": [2639], "movie.douban.com": [4701], "forums.ispbilling.com": [16887], "treephys.oxfordjournals.org": [12222], "appste.ch": [2024], "hybt.co": [2024], "o.ollili.me": [2024], "static.oc-static.com": [11647], "yongri.jd.com": [8436], "www.deaddrops.com": [4238], "m.aliyun.com": [868], "www.comsavings.com": [3503], "funni.ly": [2024], "pastevault.com": [12476], "kuybyshev.startsmile.ru": [21980], "www.allianz-fuer-cybersicherheit.org": [900], "marketoversight.fca.org.uk": [5547], "wttd.me": [2024], "voronezh.sledcom.ru": [21858], "housebing.com": [2024], "pushplay.com": [13293], "webfusion-support.co.uk": [18212], "www.skrilnetz.net": [14985], "kb.web-hosting.com": [18140], "img.uptodown.net": [22397], "rtpth.co": [2024], "niehs.nih.gov": [11090], "i.cia.bz": [2024], "www.stemformatics.org": [15534], "i-29repair.com": [2024], "fm.163.com": [50], "5px.us": [2024], "sl.highbrows.pk": [2024], "ws.mail.qq.com": [13329], "islandsavings.ca": [8381], "cctld.ru": [2924], "vault.stackpath.com": [21970], "best-pariuri-online.com": [7736], "goblu.co": [2024], "www.marcansoft.com": [9991], "trxp.io": [2024], "*.litespeedtech.com": [9471], "link.python.ph": [2024], "www.gusto.com": [7010], "huanxian.jd.com": [8434], "www.twimler.com": [16950], "liveplay.gq": [2024], "pku.ahosting.cz": [782], "srltr.org": [2024], "derstandard.at": [19814], "www.cz-hosting.com": [2712], "virtualbox.org": [17833], "files.random.org": [13606], "export.gov": [17108], "data.ct.gov": [2695], "*.powershellgallery.com": [13039], "open.unfpa.org": [17062], "filmfe.st": [2024], "adultshopping.com": [697], "mobility.telus.com": [16174], "inwx.de": [8230], "salk.edu": [14313], "www.getpocket.com": [6566], "inddrivelse.skat.dk": [14963], "techblo.gr": [2024], "sell.stubhub.com": [15602], "www.toxme.se": [16691], "login.barracudanetworks.com": [1707], "www.bitmex.com": [1962], "bh.ht": [2024], "s.wpstudio.ru": [2024], "www.kochava.com": [8963], "static.greenwire.greenpeace.org": [6920], "photocontest.nwf.org": [11126], "www.arma3.com": [1227], "quest.com": [13402], "www.djangoeurope.com": [4580], "www.zaltbommel.nl": [11172], "www.xenforo.com": [18650], "s.dragshare.co": [2024], "tbg.cm": [2024], "briehost.com": [2333], "www.eastriding.gov.uk": [5006], "moava.org": [10526], "www.proxytpb.nl": [22174], "www.lastpass.com": [9175], "hoyalink.georgetown.edu": [6531], "www.edubuntu.org": [5060], "dguk.xyz": [2024], "www.canon.sk": [2822], "*.yourfone.de": [18826], "scieneo.de": [14445], "eso.org": [5417], "www.pidg.in": [12702], "community.rackspace.com": [13566], "lfhk.nl": [2024], "gwebmail4f.alicdn.com": [853], "admin.cms.lg.com": [9090], "*.uni-saarland.de": [17259], "voci.io": [2024], "sport.sme.sk": [14198], "www.virusbtn.com": [17843], "derpyne.ws": [2024], "n24.welt.de": [18290], "l.el-st.com": [2024], "www.solid-run.com": [15187], "carb.onl": [2024], "wrnk.co": [2024], "*.unica.com": [17270], "foxnews.ramp.com": [6064], "www.boligportal.dk": [2206], "app.svyaznoy.ru": [22053], "bakabt.me": [1644], "kuvat2.huuto.net": [20449], "onebit.cz": [11678], "gc.ibtimes.co.uk": [7681], "s.cvsweb.com.br": [2024], "t.tareqas.com": [2024], "rdfind.pauldreik.se": [12494], "facultyhandbook.stanford.edu": [15448], "assets.dandb.com": [4129], "oumedicine.com": [12172], "hot.mbw365.tips": [2024], "acquia.com": [534], "hipped.me": [2024], "awsbj0-cdn.fds-ssl.api.xiaomi.com": [18662], "s.xbox.com": [18639], "flvr.pl": [2024], "shop.vice.com": [17753], "whoopth.is": [2024], "ekonomika.idnes.cz": [20483], "fbs.admin.utah.edu": [17374], "static.tumblr.com": [16898], "*.yelp.com.ph": [18766], "www.progressreport.cancer.gov": [2819], "www.nyaa.eu": [11634], "dnm.cc": [2024], "www.mpv.io": [10709], "www.swish.mycelium.com": [21063], "cloud.rockzi.com": [13502], "rpggeek.com": [13507], "www.microad.vn": [10379], "git15.rostrud.ru": [21677], "cars.ru": [19518], "wohlfuehl.club": [2024], "lemn.es": [2024], "glow.williams.edu": [18408], "digwtx.duapp.com": [19902], "publishpartner.com.au": [21537], "ak1s.abmr.net": [807], "playvid.com": [12834], "amberswann.com": [966], "harvardpilgrim.org": [7212], "piping.unizar.es": [17441], "www.vrbo.com": [22507], "job.kurier.at": [9055], "www.storycubes.com": [15569], "sc1.rgstatic.net": [13481], "jp.calameo.com": [2747, 2748], "emf_ltecheck.bundesnetzagentur.de": [2445], "www.bigv.io": [1883], "d.mrspring.dk": [2024], "epa-sdcc.ornl.gov": [11730], "kb.wedos.com": [17993], "*.turbosquid.com": [16907], "vueling.com": [17964], "chathamhouse.org": [3038], "xcfa.tuxfamily.org": [22319], "1om.co": [2024], "www2.handelsbanken.fi": [7174], "aolcdn.com": [381], "omnibus.hscic.gov.uk": [20435], "s.aida.cz": [2024], "joyv.co": [2024], "www.windows.net": [18433], "www.inkbunny.net": [8151], "go.oclaserver.com": [11748], "cleanenergyexperts.com": [3225], "psnwww.play-asia.com": [12828], "*.benaughty.com": [1749], "www.voipdistributor.net": [17895], "mcgrhill-warez.com": [10134], "login.bce.baidu.com": [1641], "mijn.ing.nl": [7775], "radar.re": [2024], "preview.buildsecurityin.us-cert.gov": [17501], "noeleyva.com": [2024], "sso.andover.edu": [12653], "maelsoucaze.com": [9861], "gaochun.jd.com": [8434], "swimemes.ml": [2024], "acs.severgazbank.ru": [14697], "realrobothigh.com": [13688], "profile.live.com": [9495], "*.e-boks.dk": [4842], "southsomerset.greenparty.org.uk": [6908], "paf.news": [2024], "ttvs.org": [2024], "shop.pcworld.com": [12261], "www.kanbox.com": [8794], "trafficprivacy.com": [16722], "bill.ilca.ru": [20493], "www.gr.ch": [22061], "www.lumiblade-shop.com": [9673], "www.islamqa.info": [8370], "cosp.ly": [2024], "www.zerobin.net": [18938], "bayareane.ws": [2024], "chat.flightradar24.com": [20119], "inldigitallibrary.inl.gov": [20537], "c4.rgstatic.net": [13481], "publishing.kalooga.com": [8788], "www.wwte2.com": [18031], "lubin82.pl": [9649], "www.wifidb.net": [18367], "www.g2play.net": [6275], "thesprawl.org": [15370], "*.zeiss.com": [2861], "piraten-partei.ch": [12314], "r24625327.sync.app.asana.com": [1265], "rt.grc.nasa.gov": [10909], "lifeche.at": [2024], "orange.ch": [12122], "sin0.es": [2024], "ahosting.cz": [782], "gallery.openmandriva.org": [11992], "*.axisbank.com": [1501], "www.merkur.de": [10306], "ping-fast.com": [12713], "image.guardian.co.uk": [6982], "www.fpjintel.com": [5580], "outernet.is": [12183], "m.brainyquote.com": [2293], "nationalreview.com": [11112], "fipi.me": [2024], "deepfield.net": [4283], "*.handelsblatt.com": [7175], "www.comp.leeds.ac.uk": [17403], "mail.2kgames.com": [117], "ncms.azet.sk": [1507], "wholesale.greensmoke.com": [6911], "sunriseprintonline.com": [15671], "55s.me": [2024], "*.allure.com": [3554], "l.moaicity.com": [2024], "kiamas.es": [2024], "tlx.de": [2024], "gr8p.co": [2024], "folder.media": [2024], "scrt.es": [2024], "hurrah.gg": [2024], "victoriassecretcanada.ca": [17760], "norton.com": [11545], "r24820148.sync.app.asana.com": [1265], "wasko-schulverweigerung.intevation.de": [8293], "logisztika.bme.hu": [1556], "go.slangjis.org": [2024], "cdn.qcloud.com": [13346], "api.bizographics.com": [2053], "bugzilla.xamarin.com": [18629], "hits-secure.theguardian.com": [16364], "short.habou.cc": [2024], "syndication-o.twimg.com": [16949], "www.stockcharts.com": [15545], "wiki.openmandriva.org": [11992], "loadtest.ftc.gov": [5710], "paynr.co": [2024], "git.in.moodle.com": [10613], "www.phcheats.com": [12284], "hdl.co": [2024], "www.yadg.cc": [22664], "brmtrcs.io": [2024], "bloombergsports.com": [2134], "app.chartmogul.com": [3022], "x.ilowkey.net": [2024], "kivikakk.ee": [20727], "kjldsn.dk": [2024], "jp.xhamster.com": [18606], "wherts.co": [2024], "go.redwolf.ws": [2024], "docs.onapp.com": [11847], "hlth.tips": [2024], "metrics.lowes.com": [9645], "sm.wsj.com": [2024], "napoleonmakeupacademy.com": [11074], "knet.hks.harvard.edu": [7211], "cln.cisco.mobi": [3164], "thersa.org": [16378], "rvrb.info": [2024], "www.rs-linkz.info": [13511], "signalhillstrat.asana.com": [1265], "ingest.radioplayer.co.uk": [13581], "gmx.fr": [6330], "tune.yandex.ua": [18747], "www.epson.ca": [5318], "cse.msu.edu": [21040], "de.libreoffice.org": [9327], "forum-3dcenter.org": [20140], "support.paper.li": [12408], "www.alestic.com": [840], "ne-zlite-devochek.friday.ru": [20175], "*.xx.fbcdn.net": [5689], "physicaltherapy.wustl.edu": [18089], "gp.magento.com": [9868], "www.everydayhero.com": [5444], "i.screa.ch": [2024], "thegrid.to": [2024], "cards.pochtabank.ru": [12876], "c.dwar.fr": [2024], "www.liikenneturva.fi": [9364], "s135.cnzz.com": [3328], "go.webmais.com": [2024], "thumbs.dreamstime.com": [4749], "sdx.io": [2024], "www.extratorrentonline.com": [5516], "gq-mag.fr": [2024], "w4tch.tk": [2024], "api.alarabiya.net": [19131], "rootbsd.net": [14021], "gweb03.webstorepackage.com": [18244], "imcloud.it": [2024], "govtrack.us": [6852], "safety.usc.edu": [17366], "pmpurweb.com": [2024], "nerd.bz": [2024], "jrclick.jd.com": [8436], "m.amnesty.fr": [1006], "careerperfect.com": [2855], "newmanregionallibrary.worldcat.org": [18536], "dalileo.link": [2024], "suvorov.startsmile.ru": [21980], "v.web.de": [18146], "www.thewebindex.org": [16393], "www.owncloud.org": [12215], "rus-serb.tpprf.ru": [22260], "indyreader.org": [8086], "*.bcn.ch": [20683], "boathousecrewshop.com": [2186], "publish.mynewsdesk.com": [10882], "sg.carousell.com": [2870], "findgravy.com": [5827], "clksite.com": [19618], "lmidai.ly": [2024], "pricerunner.co.uk": [13100], "adultplay18.com": [2024], "cdn.webrtc-experiment.com": [18178], "www.detini.gov.uk": [19815], "studentweb.con.ohio-state.edu": [11798], "www.pirateproxy.ca": [22174], "govzone.psc.gov": [21528], "t4m.co": [2024], "cdn.gbot.me": [6791], "bench.cr.yp.to": [3745], "platformer-cdn.appadvice.com": [1143], "sultryd.sh": [2024], "tehanna.pw": [2024], "b.rolli.li": [2024], "tahoe-lafs.org": [15975], "m.search.theregister.co.uk": [22182], "subscribe.golfdigest.com": [6808], "dnf.uno": [2024], "gnd-tech.com": [6331], "openconnect.netflix.com": [11269], "stat.netbynet.ru": [11257], "offerpop.com": [11776], "kingso.me": [2024], "ms1.meituan.net": [10249], "ns.play-asia.com": [12828], "www.spendbitcoins.com": [15334], "yfs.news": [2024], "ecn.t0.tiles.virtualearth.net": [17840], "earhart.flameeyes.eu": [5880], "dynamic02.livestrongcdn.com": [9510], "go.lansdown.me": [2024], "info.xvideos.com": [22660], "providesupport.ru": [13217], "legacy.pfizerpro.com": [12642], "www.nrkbeta.no": [10997], "*.sis.maricopa.edu": [9998], "storage2.censor.net.ua": [19538], "www.thehill.com": [16365], "contact.gmocloud.com": [6323], "skfo.mvd.ru": [21055], "i8.buimg.com": [16509], "lien.druffin.fr": [2024], "dpputah.com": [2024], "dnsdumpster.com": [4595], "zoho.to": [2024], "bundesanzeiger-verlag.de": [19471], "4pt.in": [2024], "birmingham.gov.uk": [19380], "wyndham.com": [18579], "go.fragicide.tv": [2024], "nightlove.me": [11434], "jordanwishli.st": [2024], "chtn.org": [19589], "ecm.nationalgrid.com": [11119], "lebon.la": [2024], "fc607e70-5a12-ca47-4f68-50553e126852-rum.cdnvideo.ru": [19536], "12dj.tk": [2024], "*.home.pl": [7475], "alumni-gsb.stanford.edu": [15448], "www.reefledlights.com": [13766], "www.nuwear.com": [11625], "i66.in": [2024], "cravatar.eu": [19715], "ubuzz.me": [2024], "jersey.java.net": [8538], "fntsy.co": [2024], "munin.openstreetmap.org": [12015], "ot.wustl.edu": [18089], "itrade.cimbsecurities.co.th": [2620], "i.wezo.co": [2024], "s.thislife.org": [2024], "filestack.com": [5787], "www.piwik.rrzn.uni-hannover.de": [17255], "ccwebchat.hkjc.com": [20384], "www.patternsinthevoid.net": [12492], "ryazan.biglion.ru": [19375], "*.creativecow.com": [3775], "www.novosoft.net": [11571], "www.mainelegislature.org": [9909], "*.stevenroddis.com": [15537], "*.uberspace.de": [17170], "reinsurance.tdc.dk": [15862], "lybr8.me": [2024], "on.cclol.com": [2024], "s3.moveon.org": [10670], "w.csb.net.br": [2024], "lkcss.zamimg.com": [18878], "www.albennet.com": [826], "pyneo.org": [13313], "www.paxum.com": [21361], "customers.drweb.com": [4776], "oyunhizmetleri.com": [12225], "cdsnp.com": [2024], "tapper.us": [2024], "www.portokalkulator.de": [19816], "tmg.st": [2024], "weixin.qq.com": [13329], "drugch.nl": [2024], "cz.icecat.biz": [7912], "pdoc.es": [2024], "maduke.stanford.edu": [15448], "direkt.otpbank.ru": [12165], "www.upyun.com": [17492], "standardsingenomics.biomedcentral.com": [1931], "ssn.today": [2024], "www2.argylesocial.com": [1217], "www.dawateislami.net": [4223], "bupa.com": [2455], "alerts.mitu.la": [2024], "freemailer.ch": [6157], "in.koop.to": [2024], "m.now.msn.com": [9808], "dashboard.stelter.com": [15533], "blog.hackerspace.pl": [7136], "libregraphicsworld.org": [9331], "kb.osu.edu": [11797], "chee.space": [2024], "gestionproyectos.ulpgc.es": [17213], "ssl.exelab.ru": [20048], "ampersandjs.com": [1024], "feedback2.yandex.by": [18739], "soton.ac.uk": [17364], "m.travelrepublic.co.uk": [16769], "www.istlsfastyet.com": [8359], "downloadmirror.intel.com": [8211], "efc.to": [2024], "yummynames.com": [16887], "myapnic.net": [1280], "www.kotte-zeller.de": [9006], "lovepicture.nosdn.127.net": [41], "www.idofoundation.org": [7655], "www.aftontrailrun.com": [757], "www.ooda.com": [11687], "j.jk.lc": [2024], "offshoreleaks.icij.org": [7689], "tfw.gr": [2024], "www.flashrom.org": [5884], "hea.lc": [2024], "flppr.co": [2024], "test.admin.openccc.net": [11960], "*.shop.linuxnewmedia.de": [9410], "www.licensing.biz": [8225], "moj.martinus.sk": [10044], "ajj.oxfordjournals.org": [12222], "www.clamav.net": [3210], "olc1.ohiolink.edu": [11799], "secure.join.me": [8631], "app.paymo.biz": [12513], "cybrd.uk": [2024], "x.caritas.ch": [2024], "support.levo.com": [9290], "go.kangrian.com": [2024], "trafficmaxx.de": [16728], "go.idlecode.com": [2024], "web.toutiao.com": [16680], "demand-driver.com": [4327], "lesinrocks.com": [9273], "geti.in": [2024], "s3.pimg.tw": [12709], "feedback.gitlab.com": [6658], "ietv.co": [2024], "www.leiajung.org": [9252], "m.horoscopes.rambler.ru": [13600], "app-de2.resrc.it": [13659], "www.bux.cz": [19481], "support.mindtouch.com": [10445], "playerauctions.com": [12840], "jimrisp.in": [2024], "kancima.com": [2024], "bountysource.com": [2265], "scootergam.in": [2024], "nh.loggn.de": [9565], "media.shanaproject.com": [14718], "www.longtailvideo.com": [9601], "yand.co": [2024], "cipeg.leeds.ac.uk": [17403], "bitmessage.org": [2029], "www.privatevpn.com": [13143], "legi.lu": [2024], "csmm.engineering.osu.edu": [11797], "aimialoyalty.us": [2024], "afl.to": [2024], "pg.ust.hk": [22412], "benaa.islamacademy.net": [8366], "keepingitsimple.valleyfirst.com": [17620], "nso.ru": [21192], "www.statistics.gov.uk": [21982], "workingatbooking.com": [22614], "*.bcv.ch": [20683], "rpfl.us": [2024], "netbank.danskebank.dk": [4138], "auto.yandex.ua": [18747], "applepay.rocketbank.ru": [13994], "parkinggw.calderdale.gov.uk": [2752], "*.uc.edu": [17393], "pew.org": [2024], "www.bl.ch": [22061], "a.cbcowasso.org": [2024], "buguruslan.startsmile.ru": [21980], "www.woopra.com": [18513], "sales-blog.eu": [2024], "lsfhs.com": [2024], "freedomonlinecoalition.com": [6148], "bluetoad.com": [2151], "juicecub.es": [2024], "rostov-na-donu.beeline.ru": [1778], "www.vtech.com": [17606], "media.cdn.liquidweb.com": [9457], "blog.viaduct.io": [17749], "www.admtyumen.ru": [19082], "www.syncany.org": [15792], "chb.li": [2024], "225.img.pp.sohu.com.cn": [15170], "www.vorpal.io": [17933], "on.wbaltv.com": [2024], "opmu.co": [2024], "*.fbhexpo.com": [5616], "www.friedhoff.org": [6191], "www.lessig2016.us": [9275], "zh.osdn.net": [21298], "resatra.in": [2024], "otb.nu": [2024], "next.ag": [2024], "*.archives-ouvertes.fr": [1197], "r24820237.sync.app.asana.com": [1265], "sql1.endora.cz": [5237], "cguild.net": [2024], "data.com": [4166], "aldi.hu": [357], "blog.litespeedtech.com": [9472], "open-books.calibre-ebook.com": [2757], "pp.laiwang.com": [20771], "inthealth.oxfordjournals.org": [12222], "calendar.csail.mit.edu": [9763], "www.enfuseconf.com": [6988], "adrxmedia.com": [17628], "yescarts.co": [2024], "www.freedomboxfoundation.org": [6144, 6151], "l.aneis.ch": [2024], "mail.rotherham.gov.uk": [14032], "carehomes.derby.gov.uk": [4367], "devblog.mediamath.com": [10169], "amnesty.ch": [1003], "www.piraten-schwaben.de": [12750], "www.tsoshop.co.uk": [15930], "i.atebits.com": [2024], "www.appinn.me": [1148], "cksdly.com": [2024], "yandex.ru": [18748], "communitydirectory.kirklees.gov.uk": [8929], "litimag.oxfordjournals.org": [12222], "mad.tv2.dk": [15945], "www.aldi-suisse.ch": [357], "wiki.eigenlab.org": [19971], "blnn.kr": [2024], "www.soscisurvey.de": [15115], "www.oderland.se": [11761], "www.factorioforums.com": [20068], "rhy.mx": [2024], "www.screenit.com": [14468], "physics.aps.org": [976], "qybuye.jd.com": [8434], "tecnocode.co.uk": [16119], "mathworks.com": [10077], "tedglobal2017.ted.com": [15871], "msg.by": [2024], "beta.postimage.org": [13024], "r24820216.sync.app.asana.com": [1265], "welcome.houseoffraser.co.uk": [7570], "cmis.sandwell.gov.uk": [21729], "mytemp.email": [10834], "www.stackoverflow.blog": [15424], "email.ucsc.edu": [17390], "misr.oxfordjournals.org": [12222], "m-deposit.utb.ru": [17538], "wonderlandmovies.de": [18501], "econnect.stanfordmed.org": [15452], "*.phone-analytics.com": [12665], "robinmcm.me": [2024], "qlubber.co": [2024], "www.phdcourses-socsci.uio.no": [17414], "l.jaxlug.net": [2024], "muzyka.friday.ru": [20175], "x.dozainer.com": [2024], "www.zoomerang.com": [19003], "s.alessio.re": [2024], "*.digium.com": [4497], "nov.lc": [2024], "nov.la": [2024], "litera.rtvs.sk": [13536], "nanoengineering.ucsd.edu": [17012], "static.www.turnto.com": [16913], "moveon.org": [10670], "de.isaacj.com": [2024], "go.nesn.com": [2024], "wnpp-by-tags.debian.net": [4261], "www.cloudns.net": [3275], "www.banquemigros.ch": [10414], "upsploit.com": [17465], "rdxf.cf": [2024], "stackoverflow.blog": [15424], "webext.mbank.pl": [9733], "link.cmu24.com": [2024], "jujucharms.com": [8684], "www.hashtalk.org": [7216], "www.crz.gov.sk": [15037], "jeffsauer.me": [2024], "*.userfox.com": [17518], "www.zxidp.org": [18864], "store.nvidia.com": [11022], "www.redmine.org": [13754], "i1.code.msdn.s-msft.com": [14114], "vckt.co": [2024], "dicas.us": [2024], "www.orkut.com.br": [12145], "lcook.co": [2024], "bh90210.ml": [2024], "yoins.me": [2024], "tjenester.nav.no": [21093], "webmail.kn.vutbr.cz": [17609], "help-es-eu.nike.com": [11440], "criticalmuslim.org": [3801], "www.osmc.tv": [21299], "chp239.com": [2024], "tevewwg.fnal.gov": [5741], "ebank.khb.hu": [8739], "static.chefkoch.de": [3062], "imp.ovh.net": [12205], "taxbenefits.coventry.gov.uk": [19704], "jtimb.re": [2024], "gb.isidewith.com": [20466], "www.hdnux.com": [7269], "drbb.ca": [2024], "bice.us": [2024], "www.sparklabs.com": [15289], "my.quickline.com": [21566], "images-4.gog.com": [6343], "wiki.bnc4free.com": [2179], "webchart.aastocks.com": [19037], "mickj.surf": [2024], "onlineservices.glasgow.gov.uk": [6681], "security.dxw.com": [4811], "ccc.shareit.com": [14731], "igonline.info": [2024], "prx.org": [12323], "fohonline.me": [2024], "a4.ucsd.edu": [17012], "indymedia.ie": [20522], "projecteuler.net": [13180], "forum.parallels.com": [12420], "r24616654.sync.app.asana.com": [1265], "korndesign.com": [8999], "www.zipcar.com": [18973], "*.hmv.co.jp": [7078], "bberg.wtf": [2024], "*.redferret.net": [13733], "bugfiles.operasoft.com": [12086], "cdn.mediafire.com": [10166], "lftd.net": [2024], "www.oftc.net": [11659], "www.inpearls.ru": [20540], "phooto.play-asia.com": [12828], "r24625075.sync.app.asana.com": [1265], "www.brandfolder.com": [2301], "invitemedia.com": [8320], "audm.ag": [2024], "www.cardiffnetwork.cf.ac.uk": [2847], "vefir.hi.is": [7048], "yabs.yandex.by": [18739], "streams.museter.com": [10749], "www.radware.com": [13584], "emsonline.buckscc.gov.uk": [19465], "www.doemeispp.org": [19864], "www.ziggo.com": [18961], "baselland.ch": [22061], "sport-express.ru": [21941], "*.moot.it": [10622], "delo.leonidvolkov.ru": [20810], "www.acxiom-online.com": [562], "qcsn.co": [2024], "rad.mvv-muenchen.de": [9823], "bl.ch": [22061], "a-ssl.ligatus.com": [9356], "1l0v3y0u.ml": [2024], "api.prospecteye.com": [13206], "atmi.info": [2024], "sicherheit.immobilienscout24.de": [8008], "e-prawnik.pl": [4853], "b5psy.com": [2024], "mitstory.mit.edu": [9763], "okay.ninja": [2024], "ruudhe.in": [2024], "fixubuntu.com": [5876], "maikop.auto.ru": [19276], "watrcoolr.duckduckgo.com": [4785], "artemis.net": [1255], "rp9.it": [2024], "pl.crowdin.com": [3823], "www.cypherpunk.at": [2711], "every.tw": [2024], "ut05.xhcdn.com": [18605], "tb.raiffeisendirect.ch": [13588], "on.sport1.de": [2024], "www.mycelium.com": [21063], "rdly.co": [2024], "login.rz.htwg-konstanz.de": [7104], "blogs.state.gov": [17146], "kickz.cc": [2024], "et05.xhcdn.com": [18605], "game.gy": [2024], "wassil.us": [2024], "www.corporatedomains.com": [3684], "timesrecordnews.com": [16540], "payment.empireblue.com": [19988], "resourcex3.dditscdn.com": [4228], "wongs.cc": [2024], "crimethinc.com": [3793], "everest1.beget.com": [19347], "wrt.mobi": [2024], "unique-vintage.com": [17284], "fazekas.hu": [5686], "www.astreea.ens.fr": [4922], "mf.mipacko.com": [2024], "login.entrust.net": [5291], "cdn2.plenti.com": [12852], "files.itunes.apple.com": [1151], "ca-pca.fr": [2521], "www.aerofs.com": [736], "www.scriptobservatory.org": [14480], "images.marketing.eloqua.com": [5172], "nmugroup.com": [10981], "predstvo.tpprf.ru": [22260], "*.optimix.asia": [7702], "hi.johnarce.com": [2024], "mangolanguages.com": [9960], "l.faun.me": [2024], "lakebtc.com": [9149], "nae.edu": [11114], "*.ph.126.net": [40], "*.data.com": [4166], "blog.teamup.com": [22108], "overflo.it": [2024], "*.hwbot.org": [7643], "gmtr.ch": [2024], "numergy.com": [11618], "on.opptys.nl": [2024], "chinese.eurekalert.org": [20032], "jmorr.is": [2024], "store.creativecommons.org": [3774], "www.bprc.osu.edu": [11797], "sticker.yadro.ru": [18721], "benthamsgaze.org": [1811], "www.netways.de": [11300], "www.cca.edu": [2547], "stbd.co": [2024], "smap.jpl.nasa.gov": [10908], "nxtbg.co": [2024], "s.shck.it": [2024], "filehosting.sanet.me": [14135], "go.gogn.in": [2024], "liteaddress.org": [9473], "bureau.koumbit.net": [9009], "centralcontent.fco.gov.uk": [5548], "espace.cern.ch": [2588], "tamar.me": [2024], "nsbd.me": [2024], "www.cmbchina.com": [2639], "holidayextras.com": [7459], "cybercompex.org": [3957], "verisign.se": [17712], "madstein.at": [9860], "l.sevenroot.org": [2024], "r24627451.sync.app.asana.com": [1265], "intra.thm.de": [15876], "api.huobi.com": [7628], "minkult.49gov.ru": [187], "inda.ba": [2024], "www.cax.com": [2921], "internetvotes.org": [8278], "jat.io": [2024], "www.moi.gov.sa": [14368], "pearsoncomputing.net": [12540], "www.slickedit.com": [15022], "images.ddlvalley.cool": [19785], "altayskiy-kr.beeline.ru": [1778], "update.cabinetoffice.gov.uk": [2716], "extremetech.com": [18959], "utxt.in": [2024], "www.hostit.hu": [7543], "pic7.58cdn.com.cn": [213], "webmail2.hyd.gov.hk": [7063], "ocw.innova.uned.es": [17248], "tmbizonline.tm.com.my": [16150], "bacchus.bel.fi": [1536], "spbx.us": [2024], "www.neotelecom.ru": [21103], "lyncdiscover.kh.hu": [8739], "emvie.ws": [2024], "zoneedit.com": [18994], "i.lucaswyte.com": [2024], "c0.3.cn": [135], "spatialpoint.com": [15302], "ledgerwallet.com": [9234], "parking.kirklees.gov.uk": [8929], "*.passwordbox.com": [12469], "lane.stanford.edu": [15448], "bwe.bi": [2024], "spic1.51fanli.net": [209], "www3.rbwm.gov.uk": [21597], "rore.me": [2024], "ubuntu-mate.org": [17180], "sqpla.net": [2024], "status.clever.com": [3239], "www.codecov.io": [3365], "ndtndt.cf": [2024], "geert.link": [2024], "app.ipswich.gov.uk": [8348], "www1c.medicare.gov": [20953], "go.shubh.me": [2024], "motorgutz.com": [2024], "schrt.io": [2024], "app.snipcart.com": [15101], "reimanpub.com": [13807], "proisp.no": [12319], "i3.c.dk": [2512], "www.upc.nl": [17083], "www.tvaddons.org": [22322], "www.matbea.com": [20931], "js.kattare.com": [8834], "duni.co": [2024], "usd.aw": [2024], "airbears.berkeley.edu": [17329], "mircap.biz": [2024], "www.tandemcal.com": [16004], "www.manchesterdigital.com": [20918], "nardikt.ru": [7324], "hgb.io": [2024], "support-stg.norton.com": [11545], "www.supplychain.nhs.uk": [10953], "on.iptorrents.com": [7802], "perm.beeline.ru": [1778], "oct.li": [2024], "shanxinong.jd.com": [8434], "*.sugester.pl": [15649], "0.klet.st": [2024], "research.theregister.co.uk": [22182], "*.dotster.com": [4700], "edc2.healthtap.com": [7256], "www.broadbandmap.gov": [2367], "adminlogon.liveperson.net": [9505], "mit-amps.mit.edu": [9763], "www.queervids.com": [13400], "*.rainn.org": [13454], "l.citt.me": [2024], "*.atos.net": [1357], "cp-hv.myvps.jp": [10839], "plib.aastocks.com": [19037], "flyha.be": [2024], "*.theresumator.com": [16312], "hop.sc": [2024], "ncsu.edu": [11531], "bit.imprev.net": [2024], "opta.sky.de": [14990], "livepass.conviva.com": [3633], "a.22g.in": [2024], "grid7.co": [2024], "guitarcenter.com": [6997], "uogictstatus.statushub.io": [15504], "kprs.me.uk": [2024], "www.domaincoin.net": [4645], "chkit.in": [2024], "lotto.web.de": [18146], "mco-pb.sensic.net": [11620], "sampur.se": [2024], "livingsocial.co.uk": [9529], "sk.libreoffice.org": [9327], "dgjn.yanao.ru": [22665], "puthq.co": [2024], "sungen.re": [2024], "www.arqbackup.com": [1235], "www.movietickets.com": [10678], "training.itsc.cuhk.edu.hk": [2704], "dashboard.chango.com": [3003], "hongzenong.jd.com": [8434], "fairssl.se": [5620], "netlandi.sh": [2024], "dmtk.ladepeche.fr": [9128], "*.orange.jobs": [12120], "registrar.illinois.edu": [17346], "mtvhv.com": [2024], "img.dxcdn.com": [4242], "schrd.rs": [2024], "cp.koptevo.net": [20749], "gallery.technet.microsoft.com": [10396], "4pda.to": [191], "www.hardenedbsd.org": [7196], "acswebcontent.acs.org": [974], "*.webhostinggeeks.com": [18199], "ask.barclays.co.uk": [1688], "o2tv.cz": [16141], "static.apricityos.com": [19222], "ds.vutbr.cz": [17609], "c.files.bbci.co.uk": [19332], "bragl.co": [2024], "www.pixid.ideeinc.com": [16543], "staging.ghosteryenterprise.com": [6614], "uitgewee.st": [2024], "xo.sansbug.com": [2024], "rapp.st": [2024], "go.ekushey.com": [2024], "cl.marselo90.it": [2024], "frenchtv.to": [6175], "*.ebayrtm.com": [4866], "kaisersysteme.com": [8784], "mcmx.in": [2024], "dia-grid.org": [4428], "www.gzt-sv.ru": [20329], "bugreport.apple.com": [1151], "insattva.co": [2024], "www.cfmueller.de": [2713], "sosr.rtvs.sk": [13536], "dehop.re": [2024], "www.srdrvp.com": [15408], "*.exeter.ac.uk": [17339], "sdk.cn": [21760], "blog.flurry.com": [5932], "*.rajce.idnes.cz": [20483], "renai.yahoo.co.jp": [18730], "www.airbnb.no": [793], "dwh.gg": [2024], "s03.appmifile.com": [1138], "northdevon.greenparty.org.uk": [6908], "jobvite.com": [8616], "nvidia.com": [11022], "xtrazone.sso.bluewin.ch": [2173], "support.whitepages.com": [18352], "unm.at": [2024], "*.ultimatepoker.com": [17216], "kdr.ms": [2024], "www.kickassapp.com": [8890], "igiveonline.com": [7887], "www.zoklet.net": [18988], "labaia.ws": [9141], "chat.12d.lt": [2024], "nanren.taobao.com": [16015], "go.btc2u.biz": [2024], "vmwareblogs.com": [17582], "*.cambridge.org": [2781], "re-pear.com": [1153], "img.xcart.com": [18596], "sfbform.com": [2024], "hiretim.com": [2024], "report.aliexpress.com": [854], "java.visualstudio.com": [17872], "shop.popsci.com": [12956], "reporo.com": [13841], "upv.cz": [17090], "www.guep.org": [20320], "static-curse.cursecdn.com": [3927], "bryansk.tpprf.ru": [22260], "www.srcclr.com": [15404], "boltbus.com": [2209], "ian.gy": [2024], "*.smartmoney.com": [11361], "muttr.org": [2024], "sandbox.evernote.com": [5440], "www.apps.ups.com": [17088], "cavir.in": [2024], "invmt.eu": [2024], "thomas-krenn.com": [16448], "www.firstclassmagazine.se": [5858], "aps.wtf": [2024], "www.ebi.ac.uk": [5030], "consultation.rbkc.gov.uk": [21595], "www.vancity.com": [17643], "suggestqueries.google.com": [6818], "spott.ly": [2024], "irgi.at": [2024], "vdiv.dfs.un.org": [17057], "amsho.ws": [2024], "ruderich.org": [14078], "www.sanitarium.se": [14348], "www.onride.de": [21259], "content.fandango.com": [5642], "dev02.radioplayer.co.uk": [13581], "royalmailgroup.com": [14052], "theeca.com": [5282], "www.ibl.liu.se": [9097], "recip.it": [2024], "knowledge.verisign-grs.com": [17712], "mail.piware.de": [10043], "ria.ua": [13485], "ceri.udistrital.edu.co": [17195], "mobile.ok.ru": [11806], "gr0.us": [2024], "doesburg.nl": [11172], "tr.chaturbate.com": [3040], "go.gearpipe.com": [2024], "kemerovo.rt.ru": [13529], "*.wordpress.com": [18520], "bible.scot": [2024], "zeze.sci-hub.la": [14436], "link.qcraft.pw": [2024], "cdn.bnc4free.com": [2180], "www.segurosocial.gov": [21772], "colossal.com": [16447], "www.rz.ruhr-uni-bochum.de": [14086], "theconversation.edu.au": [16338], "download.srcclr.com": [15404], "img8.warez-bb.org": [18072], "www.movabletype.com": [10668], "indival.yahoo.co.jp": [18730], "www.umail.utah.edu": [17374], "monoprice.com": [10599], "pixel.adentifi.com": [636], "*.longurl.it": [10814], "meyu.me": [2024], "mtac.org": [9813], "it.calameo.com": [2747, 2748], "sky.update.ideco.ru": [20480], "conference.inc.com": [8045], "nus.biz": [2024], "*.dbapp.netdna-cdn.com": [4104], "*.systemcenteradviser.net": [15825], "www.minix.org": [10466], "veri.tv": [2024], "fbapp12.tchibo.de": [16050], "jobs.westminster.gov.uk": [18315], "isoc.org": [7831], "sls.re": [2024], "millecor.co": [2024], "riano.co": [2024], "static.sourceforge.jp": [15241], "bss.tips": [2024], "terneuzen.nl": [11172], "myju.st": [2024], "vanda.ag": [2024], "www2.scribblelive.com": [14473, 14474], "www.chip-digital.de": [2607], "panel.research-int.se": [15908], "ssl3.ovh.net": [12205], "fatfra.me": [2024], "americanheart.org": [988], "franch.in": [2024], "cdn.images.reevoo.com": [13772], "gameinfo.euw.leagueoflegends.com": [9219], "www.iwork.com": [20469], "downloads4.mamp.info": [20916], "www.onlinelaw.wustl.edu": [18089], "profil.netzclub.net": [21116], "dlywrth.com": [2024], "www.csctrustedsecure.com": [2681], "nsec.osu.edu": [11797], "quote.comparethemarket.com": [3513], "4wrd.eu": [2024], "m.mediamarkt.de": [20949], "cplink.tv": [2024], "www.capitaller.ru": [2833], "www.hertz.co.kr": [7363], "county-star.com": [3709], "s.bekas.org": [2024], "uber.vu": [2024], "admin.csmonitor.com": [19737], "survey.o2active.cz": [16140], "css.rating-widget.com": [13637], "clz.do": [2024], "www.tvaddons.ag": [22321], "mysql.cesky-hosting.cz": [19553], "volgograd.europaplus.ru": [20034], "aan.amazon.co.uk": [19170], "game.spdbccc.com.cn": [21926], "unoeuro.com": [17448], "css.unwire.hk": [17460], "nieuws.kuleuven.be": [8832], "support.vespermarine.com": [17738], "*.nantes.indymedia.org": [8090], "www.htc.com": [7095], "besthk.discoverhongkong.com": [19847], "www.ksh.hu": [8766], "encryptr.org": [5229], "www.redbull.*": [13726], "on.gd2r.me": [2024], "sdmg.in": [2024], "strask.link": [2024], "domainrendelo.hu": [4659], "cetmag.org": [2024], "www.youcaring.com": [18795], "nexti.si": [2024], "www.translatoruser.net": [16749], "coopathome.ch": [3647], "www.espanol.smokefree.gov": [21872], "lecteurs.mondediplo.net": [10579], "ask.hover.com": [7573], "a3-content.vouchercloud.com": [22501], "www.svb.com": [14853], "reg-alfabank.ru": [849], "ppst.co": [2024], "fi.somethingawful.com": [15200], "qr.abctonery.sk": [2024], "onlywww.play-asia.com": [12828], "www.micahflee.com": [10369], "it-security.usc.edu": [17366], "www.freecycle.org": [6138], "ynzr.pics": [2024], "in.pcpartpicker.com": [12529], "ww.citilink.ru": [19594], "sc.otpbank.ru": [12165], "www.nottsbusinesswatch.co.uk": [21167], "www.iais.fraunhofer.de": [6091], "sso.skrill.com": [14984], "www.myshazam.com": [10860], "unop.uk": [17449], "fdv.im": [2024], "estora.ge": [2024], "onion.link": [16638], "www.moat.com": [10524], "members.trustedcomputinggroup.org": [16862], "summit.creativecommons.org": [3774], "rio20.un.org": [17057], "www.on1.com": [21248], "forum.1and1.com": [69], "krstn.co": [2024], "www.avropa.se": [1481], "glasneost.neos.eu": [10941], "planet-energy.de": [12797], "10fit.ch": [2024], "ofo.so": [11794], "forum.percona.com": [12589], "go.mnw.it": [2024], "csr.osu.edu": [11797], "business.idg.se": [7709], "c2.popads.net": [12949], "zags.khabkrai.ru": [20709], "www.pirateparty.ca": [12745], "giving.mit.edu": [9763], "*.ebuzzing.de": [5035], "gficloud.com": [6300], "hstc.co": [2024], "rewrd.co": [2024], "invisiblethings.org": [20559], "adadvisor.net": [15851], "captcha.360.cn": [142], "n.trmn.us": [2024], "tkse.us": [2024], "activity.biligame.com": [1903], "wwd.ipleak.net": [20571], "frwp.org": [18388], "piratebay.unlockproject.top": [22259], "gis.worcestershire.gov.uk": [22610], "aartdevos.dk": [454], "interfacefp.uk": [2024], "see.qrd.io": [2024], "static03.vg.no": [17569], "account.nasuni.com": [11079], "eel.la": [2024], "gme.stanford.edu": [15447], "support.adf.ly": [577], "www.coderouge.co": [3375], "imgrind.com": [7762], "vicesports.de": [2024], "downloads.f5.com": [5537], "www.16chan.nl": [53], "kinyetbna.ga": [2024], "startnext.com": [15478], "swaziland.usembassy.gov": [22406], "l.photofolio.dk": [2024], "knut.so": [2024], "hnvr.co": [2024], "ori.gs": [2024], "www.domtele.com": [19878], "avna.co": [2024], "www.mtsystems.ch": [10718], "www.leadership.opm.gov": [11690], "www.cyberport.hk": [3967], "spierings.ga": [2024], "search.jobvite.com": [8616], "*.standaard.be": [15444], "www.fogcreek.com": [5959], "encyclopediadramatica.se": [5231], "www.consumerreports.org": [3601], "unit.aist.go.jp": [802], "bulletin-int.wustl.edu": [18089], "elements.yandex.com": [18742], "sharenice.org": [21797], "photos-d.ak.fbcdn.net": [5689], "articles.islamweb.net": [8373], "www.hertz247.nl": [7354], "aviationweather.gov": [19285], "myspace.thecthulhu.com": [16403], "adatujsagiras.atlatszo.hu": [1349], "www.askmonty.org": [1286], "n.nalula.co.il": [2024], "rodan.lastpass.com": [9175], "piunti.co": [2024], "cdnetworks.com": [2574], "dsgnrbox.com": [2024], "secure.dict.cc": [4442], "www.confex.com": [3570], "ec-ns.sascdn.com": [15049], "pt.gamigo.com": [6426], "diaz.tech": [2024], "he.net": [7633], "*.influads.com": [8100], "www.pl.vc": [12790], "legiscan.com": [9245], "prosp.it": [2024], "img.disc-soft.com": [4527], "it.verbling.com": [17704], "akolr.gov-murman.ru": [20293], "adview.pl": [717], "www.hertz.fi": [7343], "cdns.tblsft.com": [16049], "mrjinx.it": [2024], "hellobk.be": [2024], "on.wajda.in": [2024], "lolthis.me": [2024], "csob.sk": [3888], "www.verbling.com": [17704], "fr.tickengo.ca": [16485], "openbsc.osmocom.org": [12159], "*.accountonline.com": [517], "etrend.sk": [5383], "www.hertz.fr": [7344], "rdns.radioplayer.co.uk": [13581], "recapthelaw.org": [13705], "ets.tanx.com": [22097], "m.ccpatl.com": [2024], "links.romeni.eu": [2024], "crm.givebac.org": [2024], "pulp.rocks": [2024], "www.vortexbox.org": [22498], "assets.newrepublic.com": [11350], "web.hku.hk": [20387], "annuel.framapad.org": [6075], "newssmith.udngroup.com": [17020], "blog.x-cart.com": [18583], "www.apianalytics.com": [390], "chaykovsky.startsmile.ru": [21980], "cdn2-marketplace.vntsm.com": [22481], "thumbnails.domaintools.com": [4653], "xmas.hkgolden.com": [7058], "svn.debian.org": [4263], "image.card.jp.rakuten-static.com": [21577], "www.york.cuny.edu": [18788], "www.geoclub.de": [6528], "nativetou.ch": [2024], "evan.co.nz": [2024], "www.friendlyduck.com": [6193], "pages03.net": [14865], "assoetud.umontpellier.fr": [22365], "ksgexecprogram.harvard.edu": [7211], "getintoteaching.education.gov.uk": [19957], "svn.dd-wrt.com": [19782], "divability.co": [2024], "publisher.podlove.org": [10322], "*.huggies.com.au": [7606], "lnk.klwn.de": [2024], "www.competitionsbywyndham.com.au": [18579], "buspass.wokingham.gov.uk": [22606], "hosseinnejad.me": [2024], "gdatasoftware.co.uk": [6272], "support2.seagate.com": [14499], "mre.one": [2024], "blog.belaruspartisan.org": [19350], "secure.sknt.ru": [21851], "stu.dj": [2024], "www.perception.psy.ulaval.ca": [17319], "gokgs.com": [20282], "gbcsumc.info": [2024], "cdn.cstatic.net": [3894], "tucsonne.ws": [2024], "northern-indymedia.org": [11540], "www.smackjeeves.com": [15044], "ib-g.me": [2024], "www.jucycruize.co.nz": [8475], "accounts.jenkins.io": [20638], "iam.re": [2024], "huffingtonpost.ca": [7603], "s.xe.com": [18599], "support.zynga.com": [19033], "go.goldbachpoland.bbelements.com": [1742], "www.jakearchibald.com": [8505], "erowid.org": [5339], "ortho-us.link": [2024], "branluc.co": [2024], "www.unibet.com.au": [17268], "ai.stanford.edu": [15448], "api.biligame.com": [1903], "l.pulseradio.fm": [2024], "store3.esellerate.net": [5346], "vbrr.ru": [17668], "www-am.bahn.de": [1640], "iterm2.com": [20467], "mit.tdc.dk": [15862], "piqsu.re": [2024], "get.proxpn.com": [21504], "msb.khabkrai.ru": [20709], "jugger.mail.ru": [9891], "stories.amnesty.fr": [1006], "webmail.merton.gov.uk": [10311], "cloudinco.me": [2024], "topbiz.xyz": [2024], "btth.me": [2024], "link.2factor.cm": [2024], "ascenderfonts.com": [1269], "*.use-enco.com": [17507], "im.micha.gd": [2024], "lang.moodle.org": [10616], "authy.com": [1436], "forms.camden.gov.uk": [2785], "crgr.co": [2024], "mcuser.uv.es": [17544], "tubu.info": [2024], "origin.com": [12141], "www.publish.illinois.edu": [17346], "*.rebateaccess.com": [13699], "libdb.polymus.ru": [21457], "www.f5.com": [5537], "mondovino.ch": [3647], "hos.hostalite.com": [20406], "*.virginmobileusa.com": [17821], "menhag.islamictech.com": [8380], "ndi.org": [10935], "ns.wrdy.us": [2024], "www.globalperspectivescanada.com": [6710], "codecademy.com": [3359], "mendeley.com": [10276], "click.dji.com": [4029], "rc.ai": [2024], "www.cosmopolitan.com": [3691], "builds.archive.org": [8269], "m.alloresto.fr": [20671], "zen.nzherald.co.nz": [11354], "jenkins.opendnssec.org": [11970], "tug.org": [16055], "app.gyft.com": [7020], "m.georgetown.edu": [6531], "nsupdate.info": [11592], "j2.58cdn.com.cn": [213], "oeis.org": [11656], "www2.newegg.com": [11356], "etmirror.com": [20027], "houtai.2345.com": [98], "i.meechan.co": [2024], "d.nuomi.com": [21203], "karriere.hofer.at": [357], "gastro.oxfordjournals.org": [12222], "kare11.tv": [2024], "www.zenmate.in": [18917], "diario.org.aalto.fi": [447], "shopi.la": [2024], "gic1.mycdn.me": [10866], "wiredforchange.com": [14316], "www.goaldet.com": [6783], "www.zenmate.com.ar": [18917], "hosthorde.com": [7521], "lifeintheuktest.ukba.homeoffice.gov.uk": [20399], "intranet.soe.ucsc.edu": [17390], "www.radiocane.info": [21571], "myftp.utechsoft.com": [10872], "support.maximintegrated.com": [10108], "tedxbillion.ted.com": [15871], "hmap.biomedcentral.com": [1931], "ad3.netshelter.net": [11247], "sakhalin.rt.ru": [13529], "wilz.me": [2024], "cmdata.groupon.com": [6953], "correctiv-upload.org": [3685], "shop.bundesanzeiger-verlag.de": [19471], "archivesadmin.calacademy.org": [2746], "lolbg.in": [2024], "inxp.co": [2024], "about.search.ch": [14504], "a.uguu.se": [17201], "dee.fyi": [2024], "at.avm.de": [1478], "securelogin.poste.it": [13013], "wiki.lightningmaps.org": [9361], "www.ul.ie": [17052], "motherboard-cdn-assets.vice.com": [17754], "r24616628.sync.app.asana.com": [1265], "link.giorgio.io": [2024], "cdn.cpmstar.com": [2661], "www.familie.bremen.aok.de": [376], "lou.ac.uk": [2024], "intel.ly": [2024], "pgehr.es": [2024], "textream.yahoo.co.jp": [18730], "tipeeestream.com": [22213], "nextgen-gallery.com": [11406], "a.tvangsnytt.no": [2024], "secure.reichelt.de": [13805], "yahoo.co.jp": [18730], "delta.com": [4318], "tobuy.today": [2024], "www.allmyvideos.net": [906], "forums.mumble.info": [10739], "vk.nomovok.com": [11502], "ftdn.co": [2024], "broadcomfoundation.org": [2373], "damascus.usembassy.gov": [22406], "cedia.org.ec": [2583], "techchir.ag": [2024], "technoportal.ua": [16105], "www-cdn2.pardot.com": [12428], "rfiles.co": [2024], "commerce.mondediplo.com": [10578], "iti.illinois.edu": [17346], "silverstripe.org": [21828], "pda-passport.yandex.by": [18739], "wintiewin.com": [18422], "www.13joycasino.com": [20654], "civilcontingencies.dundeecity.gov.uk": [4794], "passport.taobao.com": [16015], "dndclassics.com": [11867], "www.securityinabox.org": [14595], "vir.wsj.net": [18021], "vstphl.ly": [2024], "investments.osu.edu": [11713], "europa.neos.eu": [10941], "www.poivy.com": [12898], "iun.my": [2024], "*.webmdhealthservices.com": [18169], "rjav.info": [2024], "il.topshop.com": [22238], "supermarket.chef.io": [3061], "avatar.guim.co.uk": [6996], "ecology.unian.ua": [22369], "petrozavodsk.europaplus.ru": [20034], "zuno.sk": [18862], "zhidao.baidu.com": [1641], "gifts.worldwildlife.org": [18544], "denc.co": [2024], "et.tv": [2024], "devin.rtvs.sk": [13536], "www.staffordshire.police.uk": [15436], "forum.young-pirates.eu": [18807], "divdata.ucsc.edu": [17390], "assets.meetmecdna.com": [20955], "www.derbyshire.gov.uk": [19810], "ievaphone.com": [20486], "www.cbsm.kairo.at": [8782], "www.loggly.com": [9564], "sv-m.eu": [2024], "affiliates.nwf.org": [11126], "www.samharris.org": [14321], "rhx.tl": [2024], "mdlk.us": [2024], "www.palfrader.org": [12371], "mkfx.co": [2024], "icfo.tocco.ch": [16600], "utt.mtvnn.com": [17748], "radioshackwireless.com": [13575], "careerdean.com": [2854], "entertainment.guardianoffers.co.uk": [6985], "www.pgbrandsampler.ca": [13168], "stmi.me": [2024], "www.aucklandairport.co.nz": [1371], "i2.buimg.com": [16509], "startssl.com": [15472], "tierney.me": [2024], "myapp.itunes.apple.com": [1151], "images.playmates.com": [12846], "www.gameoapp.com": [6412], "trib.it": [2024], "company.podio.com": [12889], "accounts.google.com.*": [6821], "www.riaa.com": [13486], "www.reporo.com": [13841], "idportal.polyu.edu.hk": [12936], "iab.net": [8235], "jabo.me": [2024], "to.flaviar.com": [2024], "*.legolas-media.com": [9251], "blog.thijsalkema.de": [16426], "ney.me": [2024], "dailyherald.com": [4105], "callr.ca": [2024], "webmail.prq.se": [12320], "*.withknown.com": [18471], "www.prezident.sk": [15037], "mattpollard.net": [2024], "www.trysuperbgreencoffee.com": [16876], "l.jkrrv.org": [2024], "gju4.alicdn.com": [853], "www.brianchristner.io": [19448], "1roof.io": [2024], "img.zumzi.com": [19023], "transip.nl": [16733], "register.guardian.co.uk": [6982], "tz.mail.ru": [9891], "i.neox.fm": [2024], "www.yesss.at": [18769], "media.salon.com": [14315], "www.woking.gov.uk": [22605], "nejm.org": [11345], "spogo.co.uk": [15355], "www.edge.org": [5069], "www.duodecim.fi": [4798], "social.kennedy-center.org": [20703], "2shared.com": [133], "rigidstore.co": [2024], "ico.stanford.edu": [15448], "mediciglobal.com": [10204, 10205], "col.ma": [2024], "zk.vc": [2024], "edu.artschools.com": [1250], "asdfasdf.id": [2024], "mediamir.medialand.ru": [10185], "www.steamstat.ru": [21987], "rfish.us": [2024], "js2.us": [2024], "prlist.microad.jp": [10377], "cgdc.co": [2024], "iksa.me": [2024], "uam.engineering.osu.edu": [11797], "bfai.co": [2024], "vacanteen.va.gov": [17100], "www.mynomadesk.com": [11500], "esn.tl": [2024], "widgets.amazon.de": [19174], "ubs.com": [17001], "www.boxpn.com": [2278], "atlatszo.hu": [1349], "returnpath.com": [13890], "voltage-pp-0000.clp.com.hk": [2636], "bum.li": [2024], "jethrocarr.com": [8574], "skl.sh": [2024], "bensm.it": [2024], "owa.nexus.ox.ac.uk": [17359], "cln.st": [2024], "whitelabel.domaintools.com": [4653], "nmg.95516.com": [248], "tuitam.pl": [15938], "api.tlgrm.ru": [22221], "giit.al": [2024], "nhsg.co": [2024], "theskoop.ca": [14982], "makery.space": [2024], "sexkompas.net": [14701], "i.pronto.live": [2024], "l.popout.de": [2024], "wasilczyk.pl": [18091], "nabisy.ble.de": [19406], "corporatetravelmoney.com": [19692], "www.fotolab.cz": [6055], "www.rollbar.com": [14012], "omnetpp.org": [11672], "secure.sparklabs.com": [15289], "winmskhost2.ispserver.com": [20588], "git.sv.gnu.org": [6337], "cimjsea.osu.edu": [11797], "mbp.io": [2024], "investor.logmein.com": [9559], "ais.badische-zeitung.de": [1632], "www.nationalreview.com": [11112], "clock.yandex.com.ua": [18741], "szkb.ch": [20683], "kursk.tpprf.ru": [22260], "civicrm.org": [3202], "g.nebenwelt.net": [2024], "darvasbela.atlatszo.hu": [1349], "www.internap.co.jp": [8253], "www.ultrafacil.com.br": [17221], "johnr.us": [2024], "116profile.play-asia.com": [12828], "yeswescan.org": [13253], "www.russianamericancompany.com": [14101], "patientexperiences.depressionforums.org": [4361], "021.es": [2024], "1dedic.ru": [76], "direct.yandex.com.tr": [18740], "www.httpswatch.nz": [7101], "mja.pw": [2024], "projectgus.com": [21512], "link.fmd-fdd.ch": [2024], "www.ashops.co.il": [19254], "tuningworld.com.au": [16902], "www.etreshop.com": [5381], "stec-t06.xhcdn.com": [18605], "intux.de": [8304], "wiki.urel.berkeley.edu": [17329], "iamc.co": [2024], "memset.com": [10274], "treyruffy.ga": [2024], "www.moodscope.com": [21019], "www.malwarebytes.org": [9941], "www.biotek.uio.no": [17414], "rxg.de": [2024], "master.wiki1.dovecot.org": [4713], "w-s-l.cc": [2024], "digitalcommons.wustl.edu": [18088, 18089], "www.debian-handbook.info": [16261], "data.sankakucomplex.com": [21730], "secure.coinjar.com": [3397], "www.nykeurope.com": [11033], "www.oldi.ru": [21240], "www.homebase.co.uk": [7486], "runtimeverification.com": [21695], "matrix.pingability.com": [12717], "files.rpxcorp.com": [13508], "tgcol.com": [2024], "certsimple.com": [2973], "www.sozialismus.info": [15270], "a.alipayobjects.com": [864], "t0.qlogo.cn": [13355], "degica.com": [3333], "accounts.songkick.com": [21900], "simtechdev.ru": [21835], "davidtfe.es": [2024], "www.ruxconbreakpoint.com": [14106], "travelrewardspn.capitalone.com": [2831], "brandweeruitgeest.nl": [2306], "minecraft-beta.curseforge.com": [3927], "www.debuggex.com": [4266], "auth.mol.org": [10521], "ljsear.ch": [20857], "pariuri.pariloto.net": [7736], "spacecraft.digital": [21918], "genymotion.com": [6519], "*.linguee.fr": [9390], "verivox.de": [17714], "kbb.us": [2024], "sbi.me": [2024], "www.perfect-privacy.com": [12590], "pkev.in": [2024], "groups.eiffel.com": [5111], "w100.org": [2024], "css.letvcdn.com": [20817], "www.purecars.com": [13280], "telemetry.com": [16156], "axess.stanford.edu": [15448], "yk.lc": [2024], "slp3.somerset.gov.uk": [15197], "thebeautifulwalk.lequipe.fr": [20811], "files.charities.org": [3014], "wiki.geany.org": [6463], "utoron.to": [2024], "universeblog.microad.co.jp": [10376], "www.terneuzen.nl": [11172], "lb-site.flightradar24.com": [20119], "on.ewi.info": [2024], "*.pspudb.com": [5216], "magix-online.com": [9716], "safonovo.beeline.ru": [1778], "secure.gettyimages.ae": [6604], "flnt.it": [2024], "veda.aktuality.sk": [1507], "lelab.europe1.fr": [20035], "htln.es": [2024], "www.tinyletter.com": [16559], "giftcloud.com": [20244], "dataquest.io": [4176], "leemc.me": [2024], "irkutsk.startsmile.ru": [21980], "iletis.im": [2024], "phpans.com": [21400], "salvetas.just-eat.ie": [20671], "www.sourcefabric.com": [15247], "dev.opera.com": [12086], "www.ohling.com": [11802], "www.coursedirectoryproviderportal.org.uk": [19700], "imageshack.com": [7983], "www.herox.com": [7329], "virginmedia.ie": [17823], "*.openf2.org": [11973], "polls.fau.org": [5543], "ewheel.democracynow.org": [4336], "weswap.com": [18123], "to.tazuu.com": [2024], "cyprus.usembassy.gov": [22406], "www.techpowerup.com": [16114], "www.userecho.com": [17515], "www.eschools.co.uk": [20017], "via.gp": [2024], "r.wlaowei.com": [2024], "yieldselect.com": [18772], "bb.imhd.sk": [8004], "quiz.isis.poly.edu": [12933], "www.multiply.com": [10738], "0.ssl.nl.eu.org": [2024], "www.vespermarine.co.nz": [17738], "zipy.co.il": [18975], "sohopelesslybroken.com": [14213], "www.escrow.com": [5343], "l.instagram.com": [8182], "www6vdc.memberdirect.net": [10265], "desarrollobu.ulpgc.es": [17213], "*.final-score.com": [5803], "qlll.co": [2024], "s.torcaio.com": [2024], "ubob.kr": [2024], "partner.lovebizhi.com": [20878], "keinlink.tk": [2024], "www.publishpartner.com.au": [21537], "bildebase.uninett.no": [17280], "accertify.mzstatic.com": [10893], "hobbyking.com": [7446], "bt2.archive.org": [8269], "img.udn.com": [17020], "tybp.us": [2024], "artsinitiative.osu.edu": [11797], "lk.sk.ru": [21845], "foamy.co.uk": [2024], "synotliga.isport.blesk.cz": [2088], "policia.es": [12909], "static.adsnative.com": [19091], "mobile.islamweb.net": [8373], "m.jh.edu": [8447], "tal.gs": [2024], "www.jasig.org": [8535], "www.vanaqua.org": [17637], "by.seno.me": [2024], "people.icq.com": [7695], "frieslandcampina.nl": [2796], "www.commsy.uni-hamburg.de": [17025], "rb.cempal.com": [2024], "eniro.se": [5264], "sberbank.ru": [14383], "bulgr.co": [2024], "admin.pingone.com": [12715], "jira.enter.ru": [20002], "5-instant.okcupid.com": [11809], "sf.net": [14167], "admissions.stoke.gov.uk": [21995], "jprew.us": [2024], "www.enaza.ru": [5222], "bva.bund.de": [5706], "cernvm-online.cern.ch": [2588], "knol.google.com": [6818], "undf.td": [2024], "dbunt.in": [2024], "highered.mheducation.com": [20975], "pirateparty.ca": [12745], "05.imgmini.eastday.com": [5010], "www.zendylabs.com": [18925], "opensource.apple.com": [1151], "pirateparty.ch": [12314], "*.atipso.com": [1340], "www.fightcopyrighttrolls.com": [20088], "tcbrand.jd.com": [8434], "hola.org": [7453], "wiki.effi.org": [5097], "online-free.ml": [2024], "gctool.co": [2024], "pictshare.net": [12701], "www.kantarworldpanel.com": [8801], "usefedora.com": [22405], "lolware.net": [9581], "www.daao.hku.hk": [20387], "www.teracomconsulting.com": [16190], "pt.cloudflare.com": [3284], "ssl.submissiontechnology.co.uk": [15627], "www.trustedsec.com": [16860], "imodules.com": [7766], "quandl.com": [13385], "halle.fau.org": [5543], "smr.rosevrobank.ru": [14024], "m.next.co.uk": [11399], "root.cern.ch": [2587], "securityledger.com": [14593], "www.clicknupload.link": [19614], "dwheeler.com": [4086], "mu2e.fnal.gov": [5741], "www.cpanel.guru": [2666], "pkptest.projects.dm.id.lv": [4033], "x.hdn.ch": [2024], "shellspace.net": [14757], "t.hizliresim.com": [7438], "u.j4n.ch": [2024], "m.rangga.web.id": [2024], "match.meetme.com": [10224], "*.dlnws.com": [4585], "searchlock.com": [21764], "varan.top": [2024], "debian.netcologne.de": [11226], "tsupply.co": [2024], "sarc.usc.edu": [17366], "wknda.co": [2024], "wll.st": [2024], "tpsk.in": [2024], "*.gcmcomputers.com": [6288], "eng.staging.yammer.com": [18738], "iwantmytvmagazine.com": [11012], "gchq-careers.co.uk": [6285], "phhoto.play-asia.com": [12828], "shop.canonical.com": [2823], "blog.buttercoin.com": [2479], "esdrs.co": [2024], "*.stumble-upon.com": [15612], "hospital.uic.edu": [17321], "startvaekst.virk.dk": [17826], "img.tedcdn.com": [15871], "www.cryoutcreations.eu": [3836], "gephi.org": [6536], "www.hbbtv.org": [7244], "l.esnt.de": [2024], "www.ybitcoinmagazine.com": [18703], "*.amd.co.at": [969], "mail.rambler.ru": [13600], "www.domena.cz": [4663], "vra.outbrain.com": [12182], "cnv.as": [2024], "www.miniatur-wunderland.de": [10459], "hfo-telecom.de": [7041], "owncloud.schmidtcom.de": [14419], "knot-resolver.cz": [20742], "www.milonic.com": [10436], "static1.worldcat.org": [18536], "asset-3.java.net": [8538], "search.jd.com": [8436], "codeigniter.com": [19637], "t-lb.es": [2024], "blog.wearewizards.io": [18126], "e-cegjegyzek.hu": [4843], "www.upforit.com": [832], "sci-hub.bz": [14436], "phototass3.cdnvideo.ru": [19536], "webmail.crick.ac.uk": [19719], "www.getcashboard.com": [15624], "housetime.fm": [20413], "feeds.sciencedirect.com": [21750], "registrar.osu.edu": [11797], "www.powernotebooks.com": [13050], "doom2.beget.com": [19347], "www.qwebirc.org": [21569], "pt.uptimeinstitute.com": [22393], "www.nichd.nih.gov": [11090], "secure.techxpress.net": [16087], "swiss.com": [15758], "fuar8.beget.com": [19347], "3sl.ru": [2024], "casetext.com": [2888], "protocol.un.org": [17057], "tdic.click": [2024], "haxx.se": [20348], "www.imgrind.com": [7762], "www.dixcart.com": [4575], "docs.apiary.io": [19213], "x.incridea.com": [2024], "releng.netbsd.org": [11222], "www.tutorialspoint.com": [16925], "www.hideki.hclippr.com": [7034], "myheritage.com.br": [10875], "www.sketchthemes.com": [14972], "ttw.io": [2024], "ml01.ispgateway.de": [8390], "ara.re": [2024], "fr.aldi.lu": [357], "ciscoconnectcloud.com": [3166], "coverageforall.org": [3726], "sve.nyc": [2024], "j.microad.net": [10378], "www.gigadesign.cz": [14651], "smrks.de": [2024], "service.tmall.com": [22222], "on.rdio.com": [2024], "stackapps.com": [15424], "ua.autoreview.ru": [19277], "zven.mclaut.com": [20942], "nationalpriorities.org": [11123], "analytics.clickdimensions.com": [3245], "sso.openx.com": [12028], "epicwar.cdnvideo.ru": [19536], "www.gurulabs.com": [7007], "l.bemka.com": [2024], "on.lomeit.com": [2024], "abaqri.com": [2024], "manchester.ac.uk": [17411], "nickb.cc": [2024], "s2.adformdsp.net": [640], "ppaweb.hku.hk": [20387], "s.mkt.org.tw": [2024], "ed.axonify.com": [1502], "seller-taojinbi.taobao.com": [16015], "datastream.thomsonreuters.com": [16456], "gtty.im": [2024], "jdc.jd.com": [8436], "on.ksbw.com": [2024], "edenhost.com": [5067], "secretaria.uniovi.es": [17282], "www.streetartutopia.com": [15588], "www.linuxconfig.org": [20848], "events.shirazlug.ir": [14769], "sportdepot.co.il": [21943], "assets.americanrifleman.org": [19189], "unlicense.org": [17443], "blog.nodejitsu.com": [11491], "blog.pythonanywhere.com": [13315], "fssso2.capitalone.com": [2831], "git0.sv.gnu.org": [6337], "*.ace.advertising.com": [713], "help.virginmedia.com": [17822], "git.io": [6653], "www.ncp-e.com": [21097], "*.wgea.gov.au": [18534], "www.gettyimages.se": [6604], "we-energies.com": [18114], "www.khalsacreditunion.ca": [8887], "git.linaro.org": [9377], "img.itch.io": [8402], "scndy.me": [2024], "community.myinteriorsavings.com": [8249], "lliquid.us": [2024], "tags.unicefusa.org": [17070], "allunmanaged.com": [888], "odele.eu": [2024], "www.tahoe-lafs.org": [15975], "sme.hdfcbank.com": [7249], "godv.in": [2024], "science.education.nih.gov": [11090], "novt.tk": [2024], "*.ria.com": [13484], "cdn.stg.comcast.com": [3462], "cart.bede.tfm.ro": [22135], "on.offchi.com": [2024], "common.mk.co.kr": [20997], "vntro.us": [2024], "fses.us": [2024], "rcpl.co": [2024], "adda-sr.org": [324], "uude.psbank.ru": [13231], "aspi.org.au": [1426], "video4.0xdb.org": [10], "thebaap.xyz": [2024], "top.de": [16631], "on.ovcorp.com": [2024], "friends.mojang.com": [9789], "lequipe.avanis.fr": [1465], "ntu.ac.uk": [11011], "east-riding.firmstep.com": [20109], "www.html5test.com": [7099], "wiki.wmtransfer.com": [18173], "whdn.williamhill.com": [18407], "cis01.immoscout24.ch": [8009], "wbat.es": [2024], "tacar.org": [15848], "el.aegeanair.com": [6896], "store.sonyentertainmentnetwork.com": [15219], "en.okcupid.com": [11809], "d.pr": [3987], "*.passionfruitads.com": [12464], "professionals.bikeability.org.uk": [19376], "irlmc.co": [2024], "mpuls-s-demo.intevation.de": [8293], "lgr.bz": [2024], "www.eg.bucknell.edu": [2406], "cranes.vc": [2024], "c-bd.uk": [2024], "l.tath.am": [2024], "www.nrafamily.org": [21180], "secure-store.nike.com": [11440], "cy.libreoffice.org": [9327], "s122.cnzz.com": [3328], "nwuk.so": [2024], "lieferanten.migrosbank.ch": [10414], "www.abclinuxu.cz": [462], "www.no1366.org": [11480], "teamup.com": [22108], "uninc.agency": [2024], "www.denx.de": [4019], "www.market-ticker.org": [10016], "collectd.org": [3420], "wwww.domofond.ru": [19876], "secure.metoffice.gov.uk": [14553], "takevoucher.com": [22090], "*.dataminelab.com": [4175], "cwe.li": [2024], "inmktg.it": [2024], "www.leader-manager.com": [9212], "mming.jd.com": [8434], "staff.majordomo.ru": [9914], "ecpic.gov": [4872], "a2j.ir": [2024], "rostov-na-donu.auto.ru": [19276], "durls.org": [2024], "cway.to": [2024], "b.ogreslash.com": [2024], "sn.safia.ch": [2024], "hartvoorinternetvrijheid.nl": [7207], "l.sedoni.co": [2024], "rockstargames.com": [13997], "ucw.cz": [17305], "kisd.us": [2024], "www.evozi.com": [5457], "listenerapproved.com": [9465], "www.mensa.org.uk": [10279], "*.louisville.edu": [17405], "mybsw.link": [2024], "hpklr.be": [2024], "cmeonline.wustl.edu": [18089], "923wil.com": [2024], "kybernetes.htwk-leipzig.de": [7596], "www.pawoo.net": [12496], "vestbredden.squat.net": [21955], "www.etapestry.com": [5359], "tsp.to": [2024], "jazz.co": [8549], "*.mencap.org.uk": [10275], "nationalarchives.gov.uk": [11103], "www.stream.cz": [15584], "rusi.org": [13541], "www.yuri.org.uk": [18843], "www.lkd.org.tr": [9099], "tusha.re": [2024], "benl.me": [2024], "polymus.ru": [21457], "www.recipelab.org": [13706], "www.usnwc.edu": [17127], "quickle.baden-wuerttemberg.de": [19302], "studnt.ms": [2024], "bibl.es": [2024], "anonymous-proxy-servers.net": [8637], "eduroam.de": [19960], "go.lanet.ua": [20780], "chdw.cc": [2024], "ow.nyon.nl": [2024], "togliatti.biglion.ru": [19375], "thach.io": [2024], "justshift.it": [2024], "dundermifflin.ideascale.com": [20479], "blog.l214.com": [20767], "selfhost.de": [14628], "dynamicweb.it": [4820], "rec-registry.gov.au": [13470], "p10.mx": [2024], "social.microsoft.com": [10396], "join.thesun.ie": [22189], "plant-world-seeds.com": [12811], "www.kuix.de": [9045], "images.deciduouspress.com.au": [4270], "images.gutefrage.net": [7011], "account.magento.com": [9868], "snna.co": [2024], "sahilp.me": [2024], "media1.break.com": [2316], "gameinformer.com": [6400], "alcoholicdesaster.espiv.net": [20021], "mail.ubuntu-nl.org": [17181], "severomorsk.beeline.ru": [1778], "*.bluefly.com": [2161], "layer-ads.de": [14119], "volatilesystems.com": [17913], "www.billettservice.no": [16495], "bugs.xdebug.org": [18642], "kxrz.me": [2024], "plk.tn": [2024], "archo.co": [2024], "to.pivotce.com": [2024], "eurodns.com": [5396], "www.carlsbad.org": [2865], "www.ogr.uillinois.edu": [17034], "js.hs-analytics.net": [7089], "*.bytelove.fr": [2504], "www.dannymekic.com": [4137], "epi.is": [2024], "vascularcell.biomedcentral.com": [1931], "api.xrel.to": [18681], "moe.justgive.org": [8709], "c-mid.live.com": [9495], "itsalm1.swisscom.com": [15761], "blog.vandyke.com": [17638], "op5.com": [11938], "netstat.green.ch": [20305], "migrol-heizoel.ch": [10413], "public01.milton-keynes.gov.uk": [10437], "medistack.com": [10157], "weber.ly": [2024], "123rf.com": [36], "www.ltradio.com": [9118], "barnebys.co.uk": [1702], "bank.demdex.com": [4332], "img.bizrate-images.com": [2054], "koor.in": [2024], "im.dingtalk.com": [19842], "campaign.usc.edu": [17366], "frog.wix.com": [18473], "lifars.com": [9343], "webfaction.com": [18160], "ci.openccc.net": [11960], "thehope.dm": [2024], "webmail.mayfirst.org": [10113], "www.focus.ua": [20129], "kn-mp.com": [2024], "dmbox.pro": [2024], "m.roblox.com": [13980], "image.richrelevance.com": [13927], "cart-products.ifixit.net": [7730], "*.madisonlogic.com": [9859], "aix.li": [2024], "a.tellapart.com": [22122], "m.airbnb.com.br": [793], "eo-sso-idp.eo.esa.int": [5420], "www.epe.admin.cam.ac.uk": [2777], "www.overclockers.at": [12196], "ccw.li": [2024], "*.northerntool.com": [11541], "ics-cert.us-cert.gov": [17501], "cal.leloop.org": [9206], "*.matrixgroup.net": [10090], "s.activision.com": [556], "fstvnt.me": [2024], "kursk.biglion.ru": [19375], "wx.qlogo.cn": [13355], "go.stijn.vc": [2024], "3kbhkort.kk.dk": [8748], "sitin.co": [2024], "ekaterinburg.beeline.ru": [1778], "lgf.bz": [2024], "*.socallinuxexpo.org": [15112], "www.zooku.ro": [18999], "public.wolverhampton.gov.uk": [18494], "0.qrkx.net": [2024], "turl.jp-net.us": [2024], "www.tizen.org": [16580], "mono.at": [2024], "d7.sinaimg.cn": [14910], "simplerea.ch": [2024], "incircle.com": [15916], "emailselfdefense.fsf.org": [5590], "swan.holyrood.com": [20393], "lobby.cloudtrax.com": [3295], "arc.plymouth.ac.uk": [12873], "*.totalinvestor.co.uk": [16675], "ftp5.usa.openbsd.org": [11955], "js.live.net": [9494], "www.sintjansbrug.nl": [8524], "mozillians.org": [10702], "www.intellipoker.bg": [20547], "www.pjm.com": [12290], "reader.yuri-ism.com": [18842], "learn.optimizely.com": [12107], "info.1688.com": [51], "appltn.us": [2024], "eigenstate.org": [19972], "munchkin.marketo.net": [10024], "help.studentdoctor.net": [15603], "smllp.co": [2024], "shopfira.co": [2024], "www.courseevalum.umd.edu": [17351], "www.demandstudios.com": [4326], "ral1stnaz.org": [2024], "archive.c3s.cc": [2513], "www.debconf.org": [4257], "teksyndicate.com": [16130], "ueg.ac": [2024], "cdn.samssoftware.com.au": [14323], "www.oodaloop.com": [11688], "media.ccc.de": [2553], "midlothian.objective.co.uk": [21225], "insd.io": [2024], "groceryserver.com": [6941], "hisa.ac": [2024], "*.kau.se": [8724], "yurga.europaplus.ru": [20034], "kicstrt.it": [2024], "chat.vim-cn.com": [22467], "www.saba.com": [21710], "www.feedjit.com": [5723], "help.habbo.fi": [7112], "scal.me": [2024], "my.serverbase.ch": [21787], "*.ep.elitem.net": [5161], "l.kusu.ma": [2024], "tally.upsideout.com": [17483], "decipherinc.com": [4271], "youtube.bg": [18800], "*.cleverbridge.com": [3241], "fpjintel.com": [5580], "www.plannedparenthood.org": [12809], "www.decryptedmatrix.com": [4277], "whz.li": [2024], "image2.thenewslens.com": [16302], "paystand.me": [2024], "socialsense.neighbourhoodalert.co.uk": [21100], "sociologia.uniovi.es": [17282], "link.jobhy.pe": [2024], "diplomacy.state.gov": [21981], "opehs.tanx.com": [22097], "nat.aacqa.gov.au": [276], "allahsquran.com": [896], "cdn.hk01.com": [7056], "letournee.com": [2024], "jobs.www.uprr.com": [22392], "g1cu.com": [2024], "win4u.ca": [2024], "sc8.me": [2024], "static.returnpath.net": [13891], "www.tandfonline.com": [8120], "got.cr": [2024], "www.oecd.org": [11654], "benmarshall.me": [1804], "jmrt.in": [2024], "oas.udistrital.edu.co": [17195], "status.mailgun.com": [9898], "nightlies.videolan.org": [17775], "kb.kixbox.ru": [2024], "www.projects.ed.ac.uk": [5059], "subscribe.dp.ru": [19890], "www.senat.gov.pl": [14635], "git58.rostrud.ru": [21677], "dw-1.net": [2024], "cdnpi.pe": [2932], "u.ivoilic.com": [2024], "l.sumtips.com": [2024], "cm.htw-berlin.de": [7103], "lh3.google.com.*": [6821], "www1.lowes.com": [9645], "connections.lsbu.ac.uk": [9111], "s.codepen.io": [3348], "goo2.ir": [2024], "registration.xenegrade.com": [18651], "rsmart.ly": [2024], "sso.origin.com": [12141], "percona.com": [12589], "*.chillicothegazette.com": [3081], "www.airmap.com": [790], "clicktracks.com": [9696], "www.glassesusa.com": [6685], "apps.sourceforge.net": [15242], "my.xmarks.com": [18671], "chrise.me": [2024], "bugzilla.mozdev.org": [10687], "j.pinfads.com": [2024], "de.zenmate.com": [18917], "*.domainsponsor.com": [4651], "theoasisfe.st": [2024], "rupen.me": [2024], "www.kaggle.com": [8780], "scripts.mit.edu": [9763], "list.tmall.com": [22222], "www.ian.com": [7893], "www.debianforum.de": [4264], "myedwin.me": [2024], "www.selfharm.co.uk": [21774], "namebrightstatic.com": [11058], "www.spontex.org": [15357], "a.d00.it": [2024], "www.ultrasurf.us": [17223], "polrev.us": [2024], "b.technotic.ca": [2024], "link.wsm.eu": [2024], "www.zenmate.it": [18917], "www.ctovision.com": [2700], "asset-9.soupcdn.com": [15236], "chngpwd.buffalostate.edu": [2418], "manage-v37.smartadserver.com": [15049], "maur.us": [2024], "dkh.cr": [2024], "wggl.co": [2024], "ghd.tm": [2024], "*.refinedads.com": [13775], "mengler.nl": [2024], "anm.li": [2024], "sarov.europaplus.ru": [20034], "production-assets.bundle.media": [2450], "stormpath.com": [15568], "mindleaking.org": [20986], "git.nic.cz": [11418], "impsbl.es": [2024], "viveris.fr": [17886], "gisc.dwd.de": [19911], "www.ehrensenf.de": [5108], "okpartypix.com": [6511], "avatars.motherlessmedia.com": [10649], "api.digitalocean.com": [4481], "we.offroad.bz": [2024], "scale.play-asia.com": [12828], "css.cdn.static.malwarebytes.org": [9941], "www.opencorporates.com": [11967], "minkult.khabkrai.ru": [20709], "www.islamweb.net": [8373], "drdonlincoln.fnal.gov": [5741], "eric.mx": [2024], "www.lidlcommunity.co.uk": [20834], "easyvoicebiometrics.com": [5022], "craigsilst.xyz": [2024], "rateyourmusic.com": [13633], "flourl.de": [2024], "arsenalnews.net": [8893], "t7.qlogo.cn": [13355], "myaccount.wigan.gov.uk": [18379], "doc.lighttpd.net": [9362], "lab.email.seznam.cz": [14705], "www.weebly.com": [18269], "policymic.com": [12910], "nsbank.me": [2024], "devk.ms": [2024], "xingren.jd.com": [8434], "earthobservations.org": [19933], "ptts.co": [2024], "blog.montyprogram.com": [10610], "flowdown.tk": [2024], "m.ohmyiklan.com": [2024], "tiles.flightradar24.com": [20119], "www.trackandtrace.courierpost.co.nz": [3714], "p.tsao.in": [2024], "1na.eu": [2024], "wdglink.to": [2024], "www.suse.com": [14262], "image.mindfactory.de": [10448], "tswift.co": [2024], "secure.elcomsoft.com": [5134], "ffw.tropos.io": [2024], "sl.vfmz.info": [2024], "www.popcorntime.sh": [21461], "nuts.gitbook.com": [6655], "s-3.com": [14112], "gettyimages.pt": [6604], "storage.proboards.com": [13158], "osopor.to": [2024], "gsvu.mvd.ru": [21055], "keeler.xyz": [2024], "smialy.cf": [2024], "svn.opendnssec.org": [11970], "ssl.xrel.to": [18681], "scribit.com": [14476], "centralops.net": [19543], "itsm.polyu.edu.hk": [12936], "pgs.fm": [2024], "help.vodafone.co.uk": [17900], "forum.bitmain.com": [2025], "cloudron.io": [3312], "www.blockspring.com": [2113], "sutr.co": [2024], "ftp.heanet.ie": [7267], "content.longtailvideo.com": [9601], "password.1and1.co.uk": [71], "mdns.verisign.com": [17712], "go.touchcommerce.com": [16681], "firefox.com": [5842], "mageia.org": [9865], "www.scandinavianphoto.fi": [14394], "snegohit.europaplus.ru": [20034], "images.play-asia.com": [12828], "go-les.com": [2024], "archive.data.jhu.edu": [16370], "o.madridismo.de": [2024], "itis.notsola.me": [2024], "www.douyu.com": [4712], "sharedservices.dhs.gov": [4026], "mylily.co": [2024], "ringrevenue.com": [13949], "lk.gtnet.ru": [20316], "s45.cnzz.com": [3328], "campact.de": [2790], "wheretobuy.seagate.com": [14499], "r.astrea.cat": [2024], "safeweb.norton.com": [11545], "penza.biglion.ru": [19375], "www.lds.sachsen.de": [14279], "direct.ilovefreegle.org": [7890], "flexport.com": [5893], "hosted-ci.com": [20407], "kevinjmorris.uk": [2024], "shanghai.madametussauds.com": [9853], "www.gazeta.uz": [20215], "mrstitch.es": [2024], "whonix.org": [18362], "www.oron.com": [12147], "itsmalachi.me": [2024], "www.gigantic.com": [6633], "soobi.org": [21902], "dae.men": [2024], "l.caelus.org": [2024], "www.bandcamp.mu": [1662], "www.codemoji.org": [3372], "www.aaulan.dk": [457], "crowdrise.com": [3825], "sac.se": [14278], "on.kcci.com": [2024], "fmul.us": [2024], "www.afd.calpoly.edu": [2764], "enhanced.rsbac.org": [13515], "www.disruptionlab.org": [4560], "provize.cesky-hosting.cz": [19553], "download.documentfoundation.org": [16295], "www.ovva.tv": [21320], "oudesite.uvt.nl": [16521], "www.hsph.harvard.edu": [7211], "3gwc-kbhkort.kk.dk": [8748], "stsfed.login.vu.nl": [17608], "go.celebrir.com": [2024], "www1.guidancesoftware.com": [6988], "pl.piliapp.com": [12706], "www.nordstromrack.com": [11517], "mv.eastday.com": [5010], "wbur.fm": [2024], "www.rhinosoft.com": [13918], "*.sched.org": [14411], "fidoalliance.org": [5562], "sc0.rgstatic.net": [13481], "replicant.us": [13840], "formacionpermanente.cursosvirtuales.uned.es": [17248], "pc.115.com": [28], "jpoteet.us": [2024], "www.apigee.com": [1124], "grindr.me": [2024], "securepay.nwf.org": [11126], "plagiarism.arts.cornell.edu": [3676], "sg.cm": [2024], "shareconnect.com": [14723], "drcyl.us": [2024], "wm4.pacific.net.au": [12350], "onsecure.gov.au": [11852], "forums.lemonde.fr": [9204], "dlr.cm": [2024], "osufoundation.org": [21303], "*.uni-passau.de": [17415], "infy.com": [2024], "nws.upc-cablecom.ch": [22386], "amnesty.org.pl": [1012], "d.ive.tw": [2024], "doc4.it": [2024], "gdata.nl": [6272], "ikihean.com.ve": [2024], "url.tinjaw.net": [2024], "et04.xhcdn.com": [18605], "g.delfi.lv": [19800], "sprtndgtl.ca": [2024], "rewrite.ca.com": [2525], "vidble.com": [17767], "gsagt.ch": [2024], "wpa.b.qq.com": [13329], "robm.cc": [2024], "lasv.us": [2024], "www.creatavist.com": [3766], "flixbus.de": [5911], "nars.osu.edu": [11797], "flixbus.dk": [5911], "okfn.org": [12049], "static2.twilio.com": [16948]}}
\ No newline at end of file diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/content/toolbar_button.js b/data/extensions/https-everywhere-eff@eff.org/chrome/content/toolbar_button.js deleted file mode 100644 index 773b6ee..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/content/toolbar_button.js +++ /dev/null @@ -1,441 +0,0 @@ -window.addEventListener("load", https_everywhere_load, true); -window.addEventListener("load", function load(event) { - // need to wrap migratePreferences in another callback so that notification - // always displays on browser restart - window.removeEventListener("load", load, false); - if (gBrowser) { - gBrowser.addEventListener("DOMContentLoaded", - migratePreferences.bind(null, gBrowser), - true); - } -}, false); - -const CI = Components.interfaces; -const CC = Components.classes; - -// LOG LEVELS --- -let VERB=1; -let DBUG=2; -let INFO=3; -let NOTE=4; -let WARN=5; - -let HTTPSEverywhere = CC["@eff.org/https-everywhere;1"] - .getService(Components.interfaces.nsISupports) - .wrappedJSObject; - -// avoid polluting global namespace -// see: https://developer.mozilla.org/en-US/docs/Security_best_practices_in_extensions#Code_wrapping -if (!httpsEverywhere) { var httpsEverywhere = {}; } - -/** - * JS Object that acts as a namespace for the toolbar. - * - * Used to display toolbar hints to new users and change toolbar UI for cases - * such as when the toolbar is disabled. - */ -httpsEverywhere.toolbarButton = { - - /** - * Name of preference for determining whether to show ruleset counter. - */ - COUNTER_PREF: "extensions.https_everywhere.show_counter", - - /** - * Name of preference for whether HTTP Nowhere is on. - */ - HTTP_NOWHERE_PREF: "extensions.https_everywhere.http_nowhere.enabled", - - /** - * Used to determine if a hint has been previously shown. - * TODO: Probably extraneous, look into removing - */ - hintShown: false, - - /** - * Initialize the toolbar button used to hint new users and update UI on - * certain events. - */ - init: function() { - HTTPSEverywhere.log(DBUG, 'Removing listener for toolbarButton init.'); - window.removeEventListener('load', httpsEverywhere.toolbarButton.init, false); - - var tb = httpsEverywhere.toolbarButton; - - // make sure the checkbox for showing counter is properly set - var showCounter = tb.shouldShowCounter(); - var counterItem = document.getElementById('https-everywhere-counter-item'); - if (counterItem) { - counterItem.setAttribute('checked', showCounter ? 'true' : 'false'); - } - - // make sure UI for HTTP Nowhere mode is properly set - var httpNowhereItem = document.getElementById('http-nowhere-item'); - var showHttpNowhere = tb.shouldShowHttpNowhere(); - var toolbarbutton = document.getElementById('https-everywhere-button'); - if (httpNowhereItem) { - httpNowhereItem.setAttribute('checked', showHttpNowhere ? 'true' : 'false'); - } - if (toolbarbutton) { - toolbarbutton.setAttribute('http_nowhere', - showHttpNowhere ? 'true' : 'false'); - } - - // Make icon state match current status and tab. - tb.updateIconState(); - - // There is no gBrowser object on Android. Instead Android uses the - // window.BrowserApp object: - // https://developer.mozilla.org/en-US/Add-ons/Firefox_for_Android/API/BrowserApp - if (gBrowser) { - gBrowser.tabContainer.addEventListener( - 'TabSelect', - tb.updateIconState, - false - ); - - // add listener for top-level location change across all tabs - let httpseProgressListener = { - onLocationChange: function(aBrowser, aWebProgress, aReq, aLoc) { - HTTPSEverywhere.log(DBUG, "Got on location change!"); - HTTPSEverywhere.resetApplicableList(aBrowser); - }, - onStateChange: function(aBrowser, aWebProgress, aReq, aFlags, aStatus) { - if ((gBrowser.selectedBrowser === aBrowser) && - (aFlags & CI.nsIWebProgressListener.STATE_STOP) && - aWebProgress.isTopLevel) { - HTTPSEverywhere.log(DBUG, "Got on state change"); - tb.updateIconState(); - } - } - }; - gBrowser.addTabsProgressListener(httpseProgressListener); - } - - // decide whether to show toolbar hint - let hintPref = "extensions.https_everywhere.toolbar_hint_shown"; - if (!Services.prefs.getPrefType(hintPref) - || !Services.prefs.getBoolPref(hintPref)) { - // only run once - Services.prefs.setBoolPref(hintPref, true); - // gBrowser unavailable on Android, see above. - if (gBrowser) { - gBrowser.addEventListener("DOMContentLoaded", - tb.handleShowHint.bind(null, gBrowser), - true); - } - } - }, - - /** - * Shows toolbar hint if previously not shown. - */ - handleShowHint: function(gBrowser) { - var tb = httpsEverywhere.toolbarButton; - if (!tb.hintShown){ - tb.hintShown = true; - const faqURL = "https://www.eff.org/https-everywhere/faq"; - var nBox = gBrowser.getNotificationBox(); - var strings = document.getElementById('HttpsEverywhereStrings'); - var msg = strings.getString('https-everywhere.toolbar.hint'); - var hint = nBox.appendNotification( - msg, - 'https-everywhere', - 'chrome://https-everywhere/skin/icon-active-24.png', - nBox.PRIORITY_WARNING_MEDIUM, - [ - { accessKey: 'F', - callback: function(ntf, btn) { - // see https://developer.mozilla.org/en-US/docs/XUL/Method/appendNotification#Notification_box_events - gBrowser.selectedTab = gBrowser.addTab(faqURL); - }, - label: 'FAQ…', - } - ]); - } - gBrowser.removeEventListener("DOMContentLoaded", tb.handleShowHint, true); - }, - - selectedBrowser: function() { - // gBrowser is unavailable on Android, see above. - if (window.gBrowser) { - return window.gBrowser.selectedBrowser; - } else if (window.BrowserApp) { - return window.BrowserApp.selectedBrowser; - } - }, - - /** - * Update the rulesets applied counter for the current tab. - */ - updateIconState: function() { - var toolbarbutton = document.getElementById('https-everywhere-button'); - if (!toolbarbutton) { - return; - } - - var enabled = HTTPSEverywhere.prefs.getBoolPref("globalEnabled"); - var blocking = httpsEverywhere.toolbarButton.shouldShowHttpNowhere(); - var showCounter = httpsEverywhere.toolbarButton.shouldShowCounter(); - - var browser = httpsEverywhere.toolbarButton.selectedBrowser(); - if (!browser) { - return; - } - - var alist = HTTPSEverywhere.getExpando(browser,"applicable_rules"); - if (!alist) { - return; - } - // Make sure the list is up to date - alist.populate_list(); - - var counter = 0; - for (var x in alist.active) { - if (!(x in alist.breaking)) { - ++counter; - } - } - for (var x in alist.moot) { - if (!(x in alist.active)) { - ++counter; - } - } - - // inactive: extension is enabled, but no rules were triggered on this page. - // active: extension is enabled and rewrote URLs on this page. - // blocking: extension is in "block all HTTP requests" mode. - // disabled: extension is disabled. - var iconState = 'inactive'; - if (!enabled) { - iconState = 'disabled'; - } else if (blocking) { - iconState = 'blocking'; - } else if (counter) { - iconState = 'active'; - } - toolbarbutton.setAttribute('state', iconState); - if (!showCounter) { - toolbarbutton.setAttribute('rulesetsApplied', 0); - } else { - toolbarbutton.setAttribute('rulesetsApplied', counter); - } - - HTTPSEverywhere.log(INFO, 'Setting icon state to: ' + iconState + '[' + counter + ']'); - }, - - /** - * Gets whether to show the rulesets applied counter. - * - * @return {boolean} - */ - shouldShowCounter: function() { - var tb = httpsEverywhere.toolbarButton; - var sp = Services.prefs; - - var prefExists = sp.getPrefType(tb.COUNTER_PREF); - - // the default behavior is to hide the rulesets applied counter. - return prefExists && sp.getBoolPref(tb.COUNTER_PREF); - }, - - /** - * Gets whether to show HTTP Nowhere UI. - * - * @return {boolean} - */ - shouldShowHttpNowhere: function() { - var tb = httpsEverywhere.toolbarButton; - var sp = Services.prefs; - return sp.getBoolPref(tb.HTTP_NOWHERE_PREF); - }, - - /** - * Toggles the user's preference for displaying the rulesets applied counter - * and updates the UI. - */ - toggleShowCounter: function() { - var tb = httpsEverywhere.toolbarButton; - var sp = Services.prefs; - - var showCounter = tb.shouldShowCounter(); - sp.setBoolPref(tb.COUNTER_PREF, !showCounter); - - tb.updateIconState(); - }, - - /** - * Toggles whether HTTP Nowhere mode is active, updates the toolbar icon. - */ - toggleHttpNowhere: function() { - HTTPSEverywhere.toggleHttpNowhere(); - reload_window(); - }, - - /** - * Resets all rules to their default state. - */ - resetToDefaults: function() { - HTTPSEverywhere.https_rules.resetRulesetsToDefaults() - } -}; - -function https_everywhere_load() { - window.removeEventListener('load', https_everywhere_load, true); - // on first run, put the context menu in the addons bar - try { - var first_run; - try { - first_run = Services.prefs.getBoolPref("extensions.https_everywhere.firstrun_context_menu"); - } catch(e) { - Services.prefs.setBoolPref("extensions.https_everywhere.firstrun_context_menu", true); - first_run = true; - } - if(first_run) { - Services.prefs.setBoolPref("extensions.https_everywhere.firstrun_context_menu", false); - var navbar = document.getElementById("nav-bar"); - if(navbar.currentSet.indexOf("https-everywhere-button") == -1) { - var set = navbar.currentSet+',https-everywhere-button'; - navbar.setAttribute('currentset', set); - navbar.currentSet = set; - document.persist('nav-bar', 'currentset'); - } - } - } catch(e) { } -} - -function stitch_context_menu() { - // the same menu appears both under Tools and via the toolbar button: - var menu = document.getElementById("https-everywhere-menu"); - if (!menu.firstChild) { - var popup = document.getElementById("https-everywhere-context"); - menu.appendChild(popup.cloneNode(true)); - } -} -function stitch_context_menu2() { - // the same menu appears both under Tools and via the toolbar button: - var menu = document.getElementById("https-everywhere-menu2"); - if (!menu.firstChild) { - var popup = document.getElementById("https-everywhere-context"); - menu.appendChild(popup.cloneNode(true)); - } -} - -var rulesetTestsMenuItem = null; - -function show_applicable_list(menupopup) { - var browser = httpsEverywhere.toolbarButton.selectedBrowser(); - if (!browser) { - HTTPSEverywhere.log(WARN, "No browser for applicable list"); - return; - } - - var alist = HTTPSEverywhere.getExpando(browser,"applicable_rules"); - var weird=false; - - if (!alist) { - // This case occurs for error pages and similar. We need a dummy alist - // because populate_menu lives in there. Would be good to refactor this - // away. - alist = new HTTPSEverywhere.ApplicableList(HTTPSEverywhere.log, browser.currentURI); - weird = true; - } - alist.populate_menu(document, menupopup, weird); - - // should we also show the ruleset tests menu item? - if(HTTPSEverywhere.prefs.getBoolPref("show_ruleset_tests")) { - - if(!rulesetTestsMenuItem) { - let strings = document.getElementById('HttpsEverywhereStrings'); - let label = strings.getString('https-everywhere.menu.ruleset-tests'); - - rulesetTestsMenuItem = this.document.createElement('menuitem'); - rulesetTestsMenuItem.setAttribute('command', 'https-everywhere-menuitem-ruleset-tests'); - rulesetTestsMenuItem.setAttribute('label', label); - } - - if(!menupopup.contains(rulesetTestsMenuItem)) - menupopup.appendChild(rulesetTestsMenuItem); - } -} - -function toggle_rule(rule_id) { - // toggle the rule state - HTTPSEverywhere.https_rules.rulesetsByID[rule_id].toggle(); - reload_window(); -} - -function reload_window() { - var browser = httpsEverywhere.toolbarButton.selectedBrowser(); - if (browser) { - browser.reload(); - } -} - -function toggleEnabledState(){ - HTTPSEverywhere.toggleEnabledState(); - reload_window(); - toggleEnabledUI(); -} - -function toggleEnabledUI() { - // Add/remove menu items depending on whether HTTPS-E is enabled - var items = document.querySelectorAll(".hide-on-disable"); - var enabled = HTTPSEverywhere.prefs.getBoolPref("globalEnabled"); - for (let i = 0; i < items.length; i++) { - items[i].hidden = !enabled; - } - - httpsEverywhere.toolbarButton.updateIconState(); -} - -function open_in_tab(url) { - var wm = Components.classes["@mozilla.org/appshell/window-mediator;1"] - .getService(Components.interfaces.nsIWindowMediator); - var recentWindow = wm.getMostRecentWindow("navigator:browser"); - recentWindow.delayedOpenTab(url, null, null, null, null); -} - -function httpse_chrome_opener(url, prefs) { - HTTPSEverywhere.chrome_opener(url, prefs); -} - -// hook event for showing hint -HTTPSEverywhere.log(DBUG, 'Adding listener for toolbarButton init.'); -window.addEventListener("load", httpsEverywhere.toolbarButton.init, false); - -function migratePreferences(gBrowser) { - gBrowser.removeEventListener("DOMContentLoaded", migratePreferences, true); - let prefs_version = HTTPSEverywhere.prefs.getIntPref("prefs_version"); - - // first migration loses saved prefs - if(prefs_version == 0) { - try { - // upgrades will have old rules as preferences, such as the EFF rule - let upgrade = false; - let childList = HTTPSEverywhere.prefs.getChildList("", {}); - for(let i=0; i<childList.length; i++) { - if(childList[i] == 'EFF') { - upgrade = true; - break; - } - } - - if(upgrade) { - let nBox = gBrowser.getNotificationBox(); - let strings = document.getElementById('HttpsEverywhereStrings'); - let msg = strings.getString('https-everywhere.migration.notification0'); - nBox.appendNotification( - msg, - 'https-everywhere-migration0', - 'chrome://https-everywhere/skin/icon-active-24.png', - nBox.PRIORITY_WARNING_MEDIUM - ); - } - } catch(e) { - HTTPSEverywhere.log(WARN, "Migration from prefs_version 0 error: "+e); - } - - HTTPSEverywhere.prefs.setIntPref("prefs_version", prefs_version+1); - } -} diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/content/toolbar_button.xul b/data/extensions/https-everywhere-eff@eff.org/chrome/content/toolbar_button.xul deleted file mode 100644 index 58eb69b..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/content/toolbar_button.xul +++ /dev/null @@ -1,86 +0,0 @@ -<?xml version="1.0"?> -<?xml-stylesheet href="chrome://https-everywhere/skin/https-everywhere.css" type="text/css"?> - -<!DOCTYPE overlay SYSTEM "chrome://https-everywhere/locale/https-everywhere.dtd"> - -<!-- helpful docs at - https://developer.mozilla.org/en/XUL/PopupGuide/PopupEvents --> - -<overlay id="https-everywhere-button-overlay" xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"> - <script type="application/x-javascript" src="chrome://https-everywhere/content/toolbar_button.js"/> - <script type="application/x-javascript" src="chrome://https-everywhere/content/ruleset-tests.js"/> - - <stringbundleset id="stringbundleset"> - <stringbundle id="HttpsEverywhereStrings" - src="chrome://https-everywhere/locale/https-everywhere.properties" /> - </stringbundleset> - - <!-- this works in Firefox, we need a Seamonkey version too... --> - <menupopup id="menu_ToolsPopup" onpopupshowing="stitch_context_menu()"> - <menu id="https-everywhere-menu" label="&https-everywhere.about.ext_name;"> - <!-- "https-everywhere-context" below gets .cloneNode()ed in here --> - </menu> - </menupopup> - - <menupopup id="toolsPopup" onpopupshowing="stitch_context_menu2()"> - <menu id="https-everywhere-menu2" label="&https-everywhere.about.ext_name;"> - <!-- "https-everywhere-context" below gets .cloneNode()ed in here --> - </menu> - </menupopup> - - <toolbarpalette id="BrowserToolbarPalette"> - <toolbarbutton - id="https-everywhere-button" - tooltiptext="&https-everywhere.about.ext_name;" - label="&https-everywhere.about.ext_name;" - context="https-everywhere-context-menu" - oncontextmenu="this.open = true;" - oncommand="this.open = true;" - buttonstyle="pictures" - state="inactive" - type="menu" - rulesetsApplied="0"> - - <menupopup id="https-everywhere-context" onpopupshowing="show_applicable_list(this)"> - <!-- entries will be written here by ApplicableList.populate_menu() --> - <menuseparator class="hide-on-disable"/> - <menuitem label="&https-everywhere.prefs.reset_defaults;" - command="https-everywhere-menuitem-resetToDefaults" class="hide-on-disable"/> - <menuitem label="&https-everywhere.menu.viewAllRules;" - command="https-everywhere-menuitem-viewAllRules" class="hide-on-disable" /> - <menuitem type="checkbox" id="http-nowhere-item" label="&https-everywhere.menu.blockUnencryptedRequests;" - oncommand="httpsEverywhere.toolbarButton.toggleHttpNowhere()" class="hide-on-disable"/> - <menuseparator class="hide-on-disable"/> - <menuitem type="checkbox" id="https-everywhere-counter-item" label="&https-everywhere.menu.showCounter;" - oncommand="httpsEverywhere.toolbarButton.toggleShowCounter()" class="hide-on-disable"/> - <menuseparator /> - <menuitem label="&https-everywhere.menu.donate_eff_imperative;" command="https-everywhere-menuitem-donate-eff-imperative" /> - <menuitem label="&https-everywhere.menu.observatory;" command="https-everywhere-menuitem-observatory" /> - <menuitem label="&https-everywhere.menu.about;" command="https-everywhere-menuitem-about" /> - </menupopup> - </toolbarbutton> - </toolbarpalette> - <commandset> - <command id="https-everywhere-menuitem-rule-toggle-template" - oncommand="toggle_rule(event.target.attributes['data-id'].value)" /> - <command id="https-everywhere-menuitem-resetToDefaults" - oncommand="httpsEverywhere.toolbarButton.resetToDefaults()" /> - <command id="https-everywhere-menuitem-globalEnableToggle" - oncommand="toggleEnabledState();" /> - <command id="https-everywhere-menuitem-viewAllRules" - oncommand="open_in_tab('https://www.eff.org/https-everywhere/atlas/');" /> - <command id="https-everywhere-menuitem-donate-eff-imperative" - oncommand="open_in_tab('https://supporters.eff.org/donate/support-https-everywhere');" /> - <command id="https-everywhere-menuitem-about" - oncommand="httpse_chrome_opener('chrome://https-everywhere/content/about.xul');" /> - <command id="https-everywhere-menuitem-observatory" - oncommand="httpse_chrome_opener('chrome://https-everywhere/content/observatory-preferences.xul', 'chrome,centerscreen,resizable=yes');" /> - <command id="https-everywhere-menuitem-donate-eff" - oncommand="open_in_tab('https://supporters.eff.org/donate/support-https-everywhere');" /> - <command id="https-everywhere-menuitem-donate-tor" - oncommand="open_in_tab('https://www.torproject.org/donate');" /> - <command id="https-everywhere-menuitem-ruleset-tests" - oncommand="openStatus();" /> - </commandset> -</overlay> - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/content/toolbar_button_binding.xml b/data/extensions/https-everywhere-eff@eff.org/chrome/content/toolbar_button_binding.xml deleted file mode 100644 index 1981b3a..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/content/toolbar_button_binding.xml +++ /dev/null @@ -1,33 +0,0 @@ -<?xml version="1.0"?> -<!-- -Toolbar button needs to be extended to show a counter for the number of -rulesets applied, and this can be done using XBL. - -See: https://developer.mozilla.org/en-US/docs/XBL ---> -<bindings xmlns="http://www.mozilla.org/xbl" - xmlns:xbl="http://www.mozilla.org/xbl" - xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"> - - <binding id="https-everywhere-binding"> - <content> - <!-- ruleset counter (rscounter) and rulesets applied (rsapplied) --> - <xul:stack id="rscounter"> - <xul:label id="rsapplied" xbl:inherits="value=rulesetsApplied" /> - </xul:stack> - - <!-- - Https everywhere toolbar button is already defined; just use its settings. - TODO: Look into any issues with oncommand/oncontext. - --> - <xul:toolbarbutton - class="https-everywhere-button toolbarbutton-1 chromeclass-toolbar-additional" - flex="1" - allowevents="true" - xbl:inherits="type,crop,image,label,accesskey,command,align,dir,pack,orient,wrap"> - - <children includes="menupopup" /> - </xul:toolbarbutton> - </content> - </binding> -</bindings> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/README.txt b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/README.txt deleted file mode 100644 index dcc37c4..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/README.txt +++ /dev/null @@ -1,15 +0,0 @@ -We handle translations through Transifex, using the Tor Project's -account. If you'd like to improve a translation, please visit -https://www.transifex.com/otf/torproject/translate and sign up as a -translator. The results will be automatically pushed to the https_everywhere -branch of https://git.torproject.org/translation.git, which is included as -a submodule here. - -If you'd like to update the translations in your locally checked-out repo, run: - -cd translations/ -git pull origin https_everywhere - -If you'd like to add a new string for translation, add it to the `en` locale. -Once your change has been merged to master, it will show up in Transifex as -available for translation. diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ach/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ach/https-everywhere.dtd deleted file mode 100644 index 93d66ce..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ach/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancel"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ach/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ach/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ach/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ach/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ach/ssl-observatory.dtd deleted file mode 100644 index 69f1cfd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ach/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ady/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ady/https-everywhere.dtd deleted file mode 100644 index 93d66ce..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ady/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancel"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ady/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ady/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ady/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ady/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ady/ssl-observatory.dtd deleted file mode 100644 index 69f1cfd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ady/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/af/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/af/https-everywhere.dtd deleted file mode 100644 index 4af6148..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/af/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "Oor HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Enkripteer die Web! Gebruik HTTPS sekuriteit automaties op baie plekke."> -<!ENTITY https-everywhere.about.version "Weergawe"> -<!ENTITY https-everywhere.about.created_by "Geskep deur"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Te danke aan"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "Indien jy van HTTPS Everywhere hou, mag jy die volgende oorweeg"> -<!ENTITY https-everywhere.about.donate_tor "Ondersteun Tor met 'n donasie"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "of"> -<!ENTITY https-everywhere.about.donate_eff "Gee 'n donasie aan EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "Oor HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "Besigtig Alle Reëls"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Soek"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "hier"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Kanselleer"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/af/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/af/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/af/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/af/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/af/ssl-observatory.dtd deleted file mode 100644 index 69f1cfd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/af/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/af_ZA/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/af_ZA/https-everywhere.dtd deleted file mode 100644 index 9a63c45..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/af_ZA/https-everywhere.dtd +++ /dev/null @@ -1,47 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.source.downloading "Downloading"> -<!ENTITY https-everywhere.source.filename "Filename"> -<!ENTITY https-everywhere.source.unable_to_download "Unable to download source."> - -<!ENTITY https-everywhere.popup.title "HTTPS Everywhere 4.0development.11 notification"> -<!ENTITY https-everywhere.popup.paragraph1 "Oops. You were using the stable version of HTTPS Everywhere, but we might have accidentally upgraded you to the development version in our last release."> -<!ENTITY https-everywhere.popup.paragraph2 "Would you like to go back to stable?"> -<!ENTITY https-everywhere.popup.paragraph3 "We'd love it if you continued using our development release and helped us make HTTPS Everywhere better! You might find there are a few more bugs here and there, which you can report to https-everywhere@eff.org. Sorry about the inconvenience, and thank you for using HTTPS Everywhere."> -<!ENTITY https-everywhere.popup.keep "Keep me on the development version"> -<!ENTITY https-everywhere.popup.revert "Download the latest stable version"> - -<!ENTITY https-everywhere.ruleset-tests.status_title "HTTPS Everywhere Ruleset Tests"> -<!ENTITY https-everywhere.ruleset-tests.status_cancel_button "Cancel"> -<!ENTITY https-everywhere.ruleset-tests.status_start_button "Start"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/af_ZA/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/af_ZA/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/af_ZA/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/af_ZA/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/af_ZA/ssl-observatory.dtd deleted file mode 100644 index 9457a96..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/af_ZA/ssl-observatory.dtd +++ /dev/null @@ -1,95 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection."> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ak/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ak/https-everywhere.dtd deleted file mode 100644 index 93d66ce..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ak/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancel"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ak/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ak/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ak/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ak/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ak/ssl-observatory.dtd deleted file mode 100644 index 69f1cfd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ak/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/am/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/am/https-everywhere.dtd deleted file mode 100644 index c94a9a2..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/am/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "ስለHTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "ድሩን ያመስጥሩ! በብዙ ጣቢያዎች ላይ HTTPSን በራስ-ሰር ይጠቀሙ።"> -<!ENTITY https-everywhere.about.version "ስሪት"> -<!ENTITY https-everywhere.about.created_by "የተፈጠረው በ"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "የደንብ ስብስብ ቤተ-መዝጋቢዎች"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "ምስጋና ይድረስ ለ"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "HTTPS Everywhereን ከወደዱት ይህን ማድረግ ከግምት ውስጥ ማስገባት ሊፈልጉ ይችላሉ"> -<!ENTITY https-everywhere.about.donate_tor "ለTor መለገስ"> -<!ENTITY https-everywhere.about.tor_lang_code "am"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "ለEFF መለገስ"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "ስለHTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "የSSL መታዘቢያ ምርጫዎች"> -<!ENTITY https-everywhere.menu.globalEnable "HTTPS Everywhereን አንቃ"> -<!ENTITY https-everywhere.menu.globalDisable "HTTPS Everywhereን አሰናክል"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "ቆጣሪን አሳይ"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "የHTTPS Everywhere ምርጫዎች"> -<!ENTITY https-everywhere.prefs.enable_all "ሁሉንም አንቃ"> -<!ENTITY https-everywhere.prefs.disable_all "ሁሉንም አሰናክል"> -<!ENTITY https-everywhere.prefs.reset_defaults "ወደ ነባሪዎች ዳግም አስጀምር"> -<!ENTITY https-everywhere.prefs.search "ይፈልጉ"> -<!ENTITY https-everywhere.prefs.site "ጣቢያ"> -<!ENTITY https-everywhere.prefs.notes "ማስታወሻዎች"> -<!ENTITY https-everywhere.prefs.list_caption "የትኛዎቹ የHTTPS አቅጣጫ ማዞር ደንቦች ነው መተግበር ያለባቸው?"> -<!ENTITY https-everywhere.prefs.enabled "ነቅቷል"> -<!ENTITY https-everywhere.prefs.ruleset_howto "እንዴት የእራስዎን የደንብ ስብስቦች መጻፍ እንደሚችሉ ይወቁ (ለሌሎች ጣቢያዎች ድጋፍ ለማከል)"> -<!ENTITY https-everywhere.prefs.here_link "እዚህ"> -<!ENTITY https-everywhere.prefs.toggle "ቀያይር"> -<!ENTITY https-everywhere.prefs.reset_default "ወደ ነባሪ ዳግም አስጀምር"> -<!ENTITY https-everywhere.prefs.view_xml_source "የXML ምንጩን ይመልከቱ"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "ይቅር"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/am/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/am/https-everywhere.properties deleted file mode 100644 index 47f448e..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/am/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = HTTPS Everywhereን አንቃ -https-everywhere.menu.globalDisable = HTTPS Everywhereን አሰናክል -https-everywhere.menu.enableDisable = ደንቦችን አንቃ / አሰናክል -https-everywhere.menu.noRules = (ለዚህ ገጽ ምንም ደንቦች የሉም) -https-everywhere.menu.unknownRules = (የዚህ ገጽ ደንቦች አይታወቁም) -https-everywhere.toolbar.hint = HTTPS Everywhere አሁን ገቢር ሆኗል። በአድራሻ አሞሌው ውስጥ ያለውን አዶ ጠቅ በማድረግ ጣቢያ በጣቢያ እያዩ ሊቀያይሩት ይችላሉ። -https-everywhere.migration.notification0 = አንድ ወሳኝ ጥገና ለመተግበር ይህ ዝማኔ የHTTPS Everywhere ደንብ ምርጫዎችዎን ወደ ነባሪ እሴቶቻቸው ዳግም ያስጀምራቸዋል። -https-everywhere.menu.ruleset-tests = የHTTPS Everywhere ደንብ ስብስብ ሙከራዎችን አሂድ diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/am/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/am/ssl-observatory.dtd deleted file mode 100644 index 10e569d..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/am/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "የSSL መታዘቢያ ምርጫዎች"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/am_ET/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/am_ET/https-everywhere.dtd deleted file mode 100644 index 5012fd0..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/am_ET/https-everywhere.dtd +++ /dev/null @@ -1,53 +0,0 @@ -<!ENTITY https-everywhere.about.title "ስለ ኤችቲቲፒኤስ የትኛውም ቦታ"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.about "ስለ ኤችቲቲፒኤስ የትኛውም ቦታ"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockHttpRequests "Block all HTTP requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.source.downloading "Downloading"> -<!ENTITY https-everywhere.source.filename "Filename"> -<!ENTITY https-everywhere.source.unable_to_download "Unable to download source."> - -<!ENTITY https-everywhere.popup.title "HTTPS Everywhere 4.0development.11 notification"> -<!ENTITY https-everywhere.popup.paragraph1 "Oops. You were using the stable version of HTTPS Everywhere, but we might have accidentally upgraded you to the development version in our last release."> -<!ENTITY https-everywhere.popup.paragraph2 "Would you like to go back to stable?"> -<!ENTITY https-everywhere.popup.paragraph3 "We'd love it if you continued using our development release and helped us make HTTPS Everywhere better! You might find there are a few more bugs here and there, which you can report to https-everywhere@eff.org. Sorry about the inconvenience, and thank you for using HTTPS Everywhere."> -<!ENTITY https-everywhere.popup.keep "Keep me on the development version"> -<!ENTITY https-everywhere.popup.revert "Download the latest stable version"> - -<!ENTITY https-everywhere.ruleset-tests.status_title "HTTPS Everywhere Ruleset Tests"> -<!ENTITY https-everywhere.ruleset-tests.status_cancel_button "Cancel"> -<!ENTITY https-everywhere.ruleset-tests.status_start_button "Start"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/am_ET/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/am_ET/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/am_ET/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/am_ET/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/am_ET/ssl-observatory.dtd deleted file mode 100644 index 8e6591d..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/am_ET/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "ዝርዝር የግላዊ መግለጫ"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ar/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ar/https-everywhere.dtd deleted file mode 100644 index 59d341d..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ar/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "عن HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "شفر شبكة الإنترنت! استخدم تلقائيا تقنية HTTPS للأمان مع الكثير من المواقع."> -<!ENTITY https-everywhere.about.version "النسخة"> -<!ENTITY https-everywhere.about.created_by "أنشأه"> -<!ENTITY https-everywhere.about.and "، ايضاً"> -<!ENTITY https-everywhere.about.librarians "جامعيْ القواعد"> -<!ENTITY https-everywhere.about.add_new_rule "اضافة قانون جديد"> -<!ENTITY https-everywhere.about.thanks "شكراً لكل من"> -<!ENTITY https-everywhere.about.many_contributors "والعديد العديد من المساهمين، شاملا"> -<!ENTITY https-everywhere.about.noscript "وايضا، جزئ من HTTPS Everywhere متمركزه على شفره NoScript، من صنع جورجيو ماوون وآخرين. نشكرهم على عملهم المتقن."> -<!ENTITY https-everywhere.about.contribute "إن أعجبتك إضافة HTTPS Everywhere، فكر بـ"> -<!ENTITY https-everywhere.about.donate_tor "التبرع لتور"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "أو"> -<!ENTITY https-everywhere.about.donate_eff "التبرع للـ EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "تبرع لإي إف إف "> -<!ENTITY https-everywhere.menu.about "عن HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "خيارات مرصد SSL"> -<!ENTITY https-everywhere.menu.globalEnable "فعّل HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "عطّل HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "منع جميع الطلبات الغير مشفرة"> -<!ENTITY https-everywhere.menu.showCounter "أظهر العداد"> -<!ENTITY https-everywhere.menu.viewAllRules "عرض جميع القواعد"> - -<!ENTITY https-everywhere.prefs.title "خيارات HTTPS Everywhere"> -<!ENTITY https-everywhere.prefs.enable_all "فعّل الكل"> -<!ENTITY https-everywhere.prefs.disable_all "عطّل الكل"> -<!ENTITY https-everywhere.prefs.reset_defaults "استعادة الإعدادات الافتراضية"> -<!ENTITY https-everywhere.prefs.search "بحث"> -<!ENTITY https-everywhere.prefs.site "موقع"> -<!ENTITY https-everywhere.prefs.notes "ملاحظات"> -<!ENTITY https-everywhere.prefs.list_caption "أي من قواعد إعادة توجيه HTTPS يجب أن تطبق؟"> -<!ENTITY https-everywhere.prefs.enabled "مفعّل"> -<!ENTITY https-everywhere.prefs.ruleset_howto "يمكنك تعلم كيفية كتابة قواعد خاصة بك (لإضافة الدعم لمواقع أخرى)"> -<!ENTITY https-everywhere.prefs.here_link "هنا"> -<!ENTITY https-everywhere.prefs.toggle "بدّل"> -<!ENTITY https-everywhere.prefs.reset_default "استعادة الإعداد الافتراضي"> -<!ENTITY https-everywhere.prefs.view_xml_source "افحص مصدر XML"> - -<!ENTITY https-everywhere.chrome.stable_rules "قوانين متوازنة."> -<!ENTITY https-everywhere.chrome.stable_rules_description "اجبار المواقع التالية بالقيام باتصالات مشفرة:"> -<!ENTITY https-everywhere.chrome.experimental_rules "قوانين تجريبية"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "قد يسبب تحذيرات او اخطاء. الوضع الافتراضي معطل."> -<!ENTITY https-everywhere.chrome.add_rule "اضف استثناء لهذا الموقع"> -<!ENTITY https-everywhere.chrome.add_new_rule "اضف استثناء جديد لهذا الموقع"> -<!ENTITY https-everywhere.chrome.always_https_for_host "استخدم HTTPS دائما لهذا المضيف"> -<!ENTITY https-everywhere.chrome.host "المضيف"> -<!ENTITY https-everywhere.chrome.show_advanced "اظهار الاعدادت المتقدمه"> -<!ENTITY https-everywhere.chrome.hide_advanced "اخفاء الاعدادات المتقدمه"> -<!ENTITY https-everywhere.chrome.rule_name "اسم الشرط"> -<!ENTITY https-everywhere.chrome.regex "مطابقة regex"> -<!ENTITY https-everywhere.chrome.redirect_to "اعادة التوجيه لـ"> -<!ENTITY https-everywhere.chrome.status_cancel_button "إلغاء"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ar/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ar/https-everywhere.properties deleted file mode 100644 index 2d4cd1e..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ar/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = فعّل HTTPS Everywhere -https-everywhere.menu.globalDisable = أوقف HTTPS Everywhere -https-everywhere.menu.enableDisable = فعل / اوقف القوانين -https-everywhere.menu.noRules = (هذه الصفحة لا تحتوي على قوانين) -https-everywhere.menu.unknownRules = (قواين هذه الصفحة غير معروفة) -https-everywhere.toolbar.hint = HTTPS Everywhere مفعل الان. يمكنك تفعيله او تعطيله علي حسب الموقع الذي تزور عن طريق الضغط علي الرمز في شريطة العناوين. -https-everywhere.migration.notification0 = من أجل أن تنفيذ اصلاح مهم، هذا التحديث يعيد قوانين HTTPS Everywhere إلى حالتها الإفتراضية. -https-everywhere.menu.ruleset-tests = فعل اختبارات مجموعة أوامر HTTPS Everywhere diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ar/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ar/ssl-observatory.dtd deleted file mode 100644 index d7bb55a..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ar/ssl-observatory.dtd +++ /dev/null @@ -1,99 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "التفاصيل ومعلومات الخصوصية"> -<!ENTITY ssl-observatory.popup.later "إسألني لاحقاً"> -<!ENTITY ssl-observatory.popup.no "لا"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere يمكن له أن يكتشف الهجمات -ضد متصفحك عبر إرسال الشهادات التي تستقبلها إلى المرصد. -هل تريد تشغيل هذه الخاصية؟"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"هل تريد أن يستخدم HTTPS Everywhere خاصية SSL Observatory؟"> - -<!ENTITY ssl-observatory.popup.yes "نعم"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"ان استخدام تلك الخاصية آمن إلا إذا كنت تستخدم الإنترنت ضمن شبكة شركة ذات إعدادات رقابية:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"آمن، إلا إذا كنت تستخدم شبكة شركة داخلية تستخدم أسماء سرية لخوادمها:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"أرسل وتحقق من الشهادات الموقعة بواسطة سلطة غير معتمدة."> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"من الآمن (والمستحسن) تفعيل هذا الخيار، إلا إذا كنت تستخدم شبكة شركة تطفلية أو برنامج كاسبرسكي المضاد للڤيروسات الذي يراقب تصفحك عن طريق TLS بروكسي و private root Certificate Authority. إذا فعلت الخاصية على شبكة مماثلة، قد ينشر هذا الخيار أدلة على أي نطاقات https:// تمت زيارتها عبر ذلك البروكسي، وذلك بسبب الشهادات الفريدة التي يمكن أن ينتجها. ولذلك نحن نتركه غير مفعل في الإعدادات الافتراضية."> - -<!ENTITY ssl-observatory.prefs.anonymous "تحقق من الشهادات باستخدام تور لإخفاء الهوية"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"تحقق من الشهادات باستخدام تور لإخفاء الهوية (يتطلب تور)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"يتطلب هذا الخيار تثبيت و تشغيل تور"> - -<!ENTITY ssl-observatory.prefs.asn -"عندما ترى شهادة جديدة، أخبر المرصد عن هوية مزود خدمة الإنترنت الخاص بك."> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"هذا سيجلب و يرسل "رقم النظام المستقل" الخاص بشبكتك. هذا سيساعدنا على تحديد موقع الهجمات ضد HTTPS، وتحديد ما إذا كان لدينا ملاحظات من شبكات في أماكن مثل سوريا وإيران حيث هذه الهجمات شائعة نسبياً."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"أظهر تحذيرا إذا كشف المرصد عن وجود شهادة لم يكتشفها المتصفح"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"سيتم مقارنة الشهادات المرسلة بقائمة الشهادات الملغاة. للأسف لا يمكن أن نضمن اكتشاف كل الشهادات الملغاة في كل مرة، لكن إذا رأيت تحذيرا فاعلم أن هناك خطبا ما."> - -<!ENTITY ssl-observatory.prefs.done "انتهى"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere يمكن له أن يستخدم مرصد SSL من الـEFF وهذا يعني شيئين: (۱) -إرسال نسخ من شهادات HTTPS إلى المرصد لمساعدتنا على كشف هجمات 'رجل-في-الوسط' - وتحسين الأمان على الإنترنت، و (٢) يسمح لنا بتحذيرك عن الاتصالات غير الآمنة أو الهجمات على متصفحك."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"على سبيل المثال، عندما تقوم بزيارة https://www.something.com, فإن الشهادة -التي يتلقاها المرصد تشير إلى أن شخصاً ما قام بزيارة www.something.com, ولكن ليس من قام بالزيارة -أو ما هي الصفحات التي قاموا بقراءتها. أشر بالفأرة فوق الخيار للمزيد من التفاصيل:"> - -<!ENTITY ssl-observatory.prefs.hide "أخفِ الخيارات المتقدمة"> - -<!ENTITY ssl-observatory.prefs.nonanon -"تحقق من الشهادات حتى لو لم يكن تور متاح"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"سنحاول الحفاظ على سرية البيانات، ولكن هذا الخيار أقل أمناً"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"أرسل وتحقق من شهادات أسماء DNS غير العامة"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"ما لم يتم تحديد هذا الخيار، لن يسجل المرصد الشهادات للأسماء التي لا يستطيع حلها عبر نظام DNS."> - -<!ENTITY ssl-observatory.prefs.show "أظهر الخيارات المتقدمة"> - -<!ENTITY ssl-observatory.prefs.title "تفضيلات مرصد SSL"> - -<!ENTITY ssl-observatory.prefs.use "استخدم المرصد؟"> -<!ENTITY ssl-observatory.warning.title "تحذير من مرصد SSL الخاص بـEFF"> -<!ENTITY ssl-observatory.warning.showcert "أظهر سلسة الشهادة"> -<!ENTITY ssl-observatory.warning.okay "أنا أفهم"> -<!ENTITY ssl-observatory.warning.text "أصدر مرصد SSL من الـEFF تحذيراً حول شهادة ( أو شهادات) HTTPS لهذا الموقع:"> -<!ENTITY ssl-observatory.warning.defense "إذا كان حسابك مفتوحا على هذا الموقع فيستحسن تغيير كلمة المرور مباشرة بعد تفعيل إتصال آمن.. - (يمكن تعطيل هذه التحذيرات في باب "مرصد SSL" في إعدادات HTTPS Everywhere)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"اعرض و تحقق من الشهادات الموقعة ذاتياً"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"هذا مفضل ; فمشاكل التشفير شائعة بشكل خاص في الأجهزة المدمجة الموقعة ذاتياً"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ar_AA/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ar_AA/https-everywhere.dtd deleted file mode 100644 index 0bbb1fe..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ar_AA/https-everywhere.dtd +++ /dev/null @@ -1,53 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockHttpRequests "Block all HTTP requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.source.downloading "Downloading"> -<!ENTITY https-everywhere.source.filename "Filename"> -<!ENTITY https-everywhere.source.unable_to_download "Unable to download source."> - -<!ENTITY https-everywhere.popup.title "HTTPS Everywhere 4.0development.11 notification"> -<!ENTITY https-everywhere.popup.paragraph1 "Oops. You were using the stable version of HTTPS Everywhere, but we might have accidentally upgraded you to the development version in our last release."> -<!ENTITY https-everywhere.popup.paragraph2 "Would you like to go back to stable?"> -<!ENTITY https-everywhere.popup.paragraph3 "We'd love it if you continued using our development release and helped us make HTTPS Everywhere better! You might find there are a few more bugs here and there, which you can report to https-everywhere@eff.org. Sorry about the inconvenience, and thank you for using HTTPS Everywhere."> -<!ENTITY https-everywhere.popup.keep "Keep me on the development version"> -<!ENTITY https-everywhere.popup.revert "Download the latest stable version"> - -<!ENTITY https-everywhere.ruleset-tests.status_title "HTTPS Everywhere Ruleset Tests"> -<!ENTITY https-everywhere.ruleset-tests.status_cancel_button "Cancel"> -<!ENTITY https-everywhere.ruleset-tests.status_start_button "Start"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ar_AA/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ar_AA/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ar_AA/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ar_AA/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ar_AA/ssl-observatory.dtd deleted file mode 100644 index 69f1cfd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ar_AA/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/arn/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/arn/https-everywhere.dtd deleted file mode 100644 index 93d66ce..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/arn/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancel"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/arn/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/arn/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/arn/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/arn/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/arn/ssl-observatory.dtd deleted file mode 100644 index 69f1cfd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/arn/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ast/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ast/https-everywhere.dtd deleted file mode 100644 index 766a4f4..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ast/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "Tocante a HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encripta la Web! Usar seguridá HTTPS automáticamente en munchos sitios"> -<!ENTITY https-everywhere.about.version "Versión"> -<!ENTITY https-everywhere.about.created_by "Creáu por"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Gracies a"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "Si te presta HTTPS Everywhere, tendríes de considerar"> -<!ENTITY https-everywhere.about.donate_tor "Donar a Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donar a EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "Tocante a HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Activar too"> -<!ENTITY https-everywhere.prefs.disable_all "Desactivar too"> -<!ENTITY https-everywhere.prefs.reset_defaults "Restablecer axustes predeterminaos"> -<!ENTITY https-everywhere.prefs.search "Guetar"> -<!ENTITY https-everywhere.prefs.site "Sitiu"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Activáu"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancel"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ast/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ast/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ast/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ast/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ast/ssl-observatory.dtd deleted file mode 100644 index 30692e2..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ast/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "Non"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Si"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/az/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/az/https-everywhere.dtd deleted file mode 100644 index 8841fa3..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/az/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "Hər yerdə HTTPS haqda"> -<!ENTITY https-everywhere.about.ext_name "Hər yerdə HTTPS"> -<!ENTITY https-everywhere.about.ext_description "Veb-i şifrələ! Bir çox saytlarda HTTPS-i avtomatik istifadə et."> -<!ENTITY https-everywhere.about.version "Versiya"> -<!ENTITY https-everywhere.about.created_by "Yaradan şəxs"> -<!ENTITY https-everywhere.about.and ", və"> -<!ENTITY https-everywhere.about.librarians "Kitabxanaçıların Qayda Toplusu"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Təşəkkürlər:"> -<!ENTITY https-everywhere.about.many_contributors "Dəstək olan hər kəsə, həmçinin"> -<!ENTITY https-everywhere.about.noscript "Həmçinin HTTPS Everywhere kodunun bir hissəsi Giorgio Maone və digərləri tərəfindən olan NoScript əsasındadır. Onların böyük əməkləri üçün minnətdarıq!"> -<!ENTITY https-everywhere.about.contribute "Hamı üçün HTTPS-i xoşlayırsansa, sən buna üstünlük verməlisən"> -<!ENTITY https-everywhere.about.donate_tor "Tor-a donorluq"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "və ya"> -<!ENTITY https-everywhere.about.donate_eff "EFF-ə donorluq"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "Hər yerdə HTTPS haqqında"> -<!ENTITY https-everywhere.menu.observatory "SSL İzləyici Xüsusiyyətləti"> -<!ENTITY https-everywhere.menu.globalEnable " HTTPS -ni hər yerdə aktivləşdir"> -<!ENTITY https-everywhere.menu.globalDisable "HTTPS -ni həryerdə söndür"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Hesablayıcını Göstər"> -<!ENTITY https-everywhere.menu.viewAllRules "Bütün Qaydaları Gör"> - -<!ENTITY https-everywhere.prefs.title "Hər yerdə HTTPS Xüsusiyyətləri"> -<!ENTITY https-everywhere.prefs.enable_all "Hamısını Aktivləşdir"> -<!ENTITY https-everywhere.prefs.disable_all "Hamısını Deaktivə Et"> -<!ENTITY https-everywhere.prefs.reset_defaults "İlkin Hala Sıfırla"> -<!ENTITY https-everywhere.prefs.search "Axtar"> -<!ENTITY https-everywhere.prefs.site "Sayt"> -<!ENTITY https-everywhere.prefs.notes "Qeydlər"> -<!ENTITY https-everywhere.prefs.list_caption "Hansı HTTPS ünvan dəyişdirilmə qaydaları tətbiq edilməlidir?"> -<!ENTITY https-everywhere.prefs.enabled "Aktivləşdirildi"> -<!ENTITY https-everywhere.prefs.ruleset_howto "Öz qayda dəstini necə yazacağını öyrənə bilərsən (başqa veb səhifələrə dəstək əlavə etmək üçün)"> -<!ENTITY https-everywhere.prefs.here_link "bura"> -<!ENTITY https-everywhere.prefs.toggle "Keçid"> -<!ENTITY https-everywhere.prefs.reset_default "İlkin hala sıfırla"> -<!ENTITY https-everywhere.prefs.view_xml_source "XML Mənbəyə Bax"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Ləğv et"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/az/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/az/https-everywhere.properties deleted file mode 100644 index 73dfb48..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/az/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = HTTPS Everywhere aktivləşdir -https-everywhere.menu.globalDisable = HTTPS Everywhere söndür -https-everywhere.menu.enableDisable = Aktivləşdirmə/söndürmə qanunları -https-everywhere.menu.noRules = (Bu səhifə üçün heç bir qanun yoxdur) -https-everywhere.menu.unknownRules = (Bu səhifə üçün qanunlar naməlumdur) -https-everywhere.toolbar.hint = Həryerdə HTTPS artıq aktivdir. Siz ünvan cubuğundakı simvoldan istifadə edərək səhifələr arasında keçid edə bilərsiz. -https-everywhere.migration.notification0 = Mühüm düzəlişlər üçün bu yeniləmə sizin HTTPS Everywhere qanununu cari dəyərlərinə sıfırlayacaq. -https-everywhere.menu.ruleset-tests = HTTPS Everywhere Ruleset Tests -ini başlat diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/az/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/az/ssl-observatory.dtd deleted file mode 100644 index 069875e..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/az/ssl-observatory.dtd +++ /dev/null @@ -1,102 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Detallar və Məxfilik Məlumatları"> -<!ENTITY ssl-observatory.popup.later "Məndən Daha Sonra Soruş"> -<!ENTITY ssl-observatory.popup.no "Xeyr"> - -<!ENTITY ssl-observatory.popup.text "Hər yerdə HTTPS sənin Müşahidə məntəqənə -setifikatları göndərməklə sənin brauzerinə qarşı hücumları müəyyənləşdirə -bilir. Bunu aktivləşdirirsən?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Hər yerdə HTTPS SSL Müşahidə məntəqəsini istifadə etsin?"> - -<!ENTITY ssl-observatory.popup.yes "Bəli"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"Sən zəhlətökən korporativ şəbəkə istifadə etdikcə -bunu aktivləşdirmək olar:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Təhlükəsiz, sən sirli intranet server adları ilə korporativ şəbəkə istifadə etdiyin müddətdə:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Qeyri-standart köklü CA-lar tərəfindən imzalanmış sertifikatları daxil edib yoxla"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"Sən zəhlətökən korporativ şəbəkə və ya brauzerini TLS proksi vasitəsilə və məxfi mənbə Sertifikat Mərkəzi vasitəsilə izləyən Kaspersky anti virusunu istifadə etdiyin müddətcə bunu açıq saxlamaq daha təhlükəsizdir (və daha yaxşıdır). Şəbəkədə açıq saxlandığı müddət ərzində bu, mövcud proksi vasitəsilə hansı https:// domeynlərə ziyarət edildiyini nümayiş etdirə bilər; bu onun istehsal etdiyi sertifikatlara görə. Ona görə də ilkin halda onu bağlı saxlayırıq."> - -<!ENTITY ssl-observatory.prefs.anonymous "Anonimlik üçün Tor istifadə edən sertifikatları yoxla"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Anonimlik üçün Tor istifadə edən sertifikatları yoxla (Tor-u tələb edir)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"İşləmə və quraşdırılma üçün bu seçim Tor tələb edir"> - -<!ENTITY ssl-observatory.prefs.asn -"Yeni sertifikat gördükdə, Müşahidə məntəqəsinə hansı İXT-ə qoşulduğunu bildir"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"Bu sənin şəbəkənin "Anonim Sistem nömrəsi"ni əldə edib göndərəcək. Bu bizə HTTPS əleyhinə ola biləcək hücumları, İran və Suriya kimi hücuma meylli məkanlardan müşahidə edilib edilmədiyimizi müəyyənləşdirməyə kömək edəcək."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Sənin brauzerin tərəfindən müəyyən edilə bilməyən saxta sertifikatları Müşahidə məntəqəsi aşkarladıqda, xəbərdarlıq siqnalı ver"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"Bu Saxtalaşdırılmış Sertifikatlar Siyahısı olə daxil edilmiş sertifikatları yoxlayacaq. Biz bütün saxta sertifikatları müəyyən edə biləcəyimizə zəmanət vermirik, amma hər hansı xəbərdarlıq siqnalı əldə etdikdə, nəyinsə təhlükəli olduğunu yadından çıxarma."> - -<!ENTITY ssl-observatory.prefs.done "Oldu"> - -<!ENTITY ssl-observatory.prefs.explanation -"Hər yerdə HTTPS EEF-in SSL Müşahidə məntəqəsini istifadə edə bilər. Bu iki şey edir: (1) -Veb təhlükəsizliyi inkişaf etdirmək üçün əsas hücumları aşkarlamağa kömək etmək -üçün HTTPS sertifikatlarının üzlərini Müşahidə məntəqəsinə göndərir; və (2) -brauzerindəki təhlükəli bağlantı və hücumlar haqqında sənə xəbər verməyə bizə icazə verir."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"Məsələn, sən https://www.something.com saytına daxil olduqda, Müşahidə -məntəqəsi tərəfindən əldə edilmiş sertifikatda kiminsə www.something.com -saytına daxil olduğu haqqında məlumat veriləcək, amma onun kim olduğu və -hansı səhifələrə baxdığı bildirilməyəcəkdir. Ətraflı məlumat üçün mausu -hərəkət etdir:"> - -<!ENTITY ssl-observatory.prefs.hide "Ətraflı seçimləri gizlə"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Tor mümkün olmadıqda belə sertifikatları yoxla"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"Biz yenə də məlumatı anonim saxlamağa çalışacağıq, amma bu seçim daha az təhlükəsizdir"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Qeyri-ictimai DNS adlar üçün sertifikatları daxil et və yoxla"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Bu seçim quraşdırılmadıqca Müşahidə məntəqəsi DNS sistemi vasitəsilə aydınlaşdırıla bilməyən adlar üçün sertifikat daxil etməyəcək."> - -<!ENTITY ssl-observatory.prefs.show "Ətraflı seçimləri göstər"> - -<!ENTITY ssl-observatory.prefs.title "SSL İzləyici Xüsusiyyətləti"> - -<!ENTITY ssl-observatory.prefs.use "Müşahidə məntəqəsini istifadə edirsən?"> -<!ENTITY ssl-observatory.warning.title "EFF-in SSL Müşahidə məntəqəsi tərəfindən XƏBƏRDARLIQ"> -<!ENTITY ssl-observatory.warning.showcert "Sertifikat zəncirini göstər"> -<!ENTITY ssl-observatory.warning.okay "Mən anlayıram"> -<!ENTITY ssl-observatory.warning.text "EFF-in SSL Müşahidə məntəqəsi bu sayt üçün HTTPS sertifikat(lar)ı haqqında xəbərdarlıq təqdim edib:"> -<!ENTITY ssl-observatory.warning.defense "Sən sayta daxil olmusansa, təhlükəsiz əlaqə zamanı şifrəni dəyişmək məsləhət edilir. (Bu xəbərdarlıqlar Hər yerdə HTTPS xüsusiyyətlər dialoqunun "SSL Müşahidə məntəqəsi"ndə deaktivasiya edilə bilər.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Şəxsi-imzalanmış sertifikatları daxil et və yoxla"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"Bu məsləhət edilir; kriptoqrafik problemlər şəxsi-imzalanmış cihazlarda daha çox yayılmışdır"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ba/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ba/https-everywhere.dtd deleted file mode 100644 index 93d66ce..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ba/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancel"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ba/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ba/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ba/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ba/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ba/ssl-observatory.dtd deleted file mode 100644 index 69f1cfd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ba/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/bal/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/bal/https-everywhere.dtd deleted file mode 100644 index 2ac51cd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/bal/https-everywhere.dtd +++ /dev/null @@ -1,56 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockHttpRequests "Block all HTTP requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancel"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/bal/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/bal/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/bal/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/bal/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/bal/ssl-observatory.dtd deleted file mode 100644 index 69f1cfd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/bal/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/be/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/be/https-everywhere.dtd deleted file mode 100644 index db66349..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/be/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "Пра HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Шыфраванне Сеціва! Аўтаматычнае выкарыстанне бяспекі HTTPS на розных сайтах"> -<!ENTITY https-everywhere.about.version "Версія"> -<!ENTITY https-everywhere.about.created_by "Стваральнікі"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Бібліятэкары збораў правілаў"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Падзякі"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "Калі вам да спадобы HTTPS Everywhere, мабыць вам будзе цікава"> -<!ENTITY https-everywhere.about.donate_tor "ахвяраваць сродкі Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "be"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "ахвяраваць сродкі EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "Пра HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "Настáўленні SSL Observatory"> -<!ENTITY https-everywhere.menu.globalEnable "Уключыць HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Адключыць HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Паказаць лічыльнік"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "Настáўленні HTTPS Everywhere"> -<!ENTITY https-everywhere.prefs.enable_all "Уключыць усе"> -<!ENTITY https-everywhere.prefs.disable_all "Адключыць усе"> -<!ENTITY https-everywhere.prefs.reset_defaults "Скінуць да стандартных"> -<!ENTITY https-everywhere.prefs.search "Пошук"> -<!ENTITY https-everywhere.prefs.site "Сайт"> -<!ENTITY https-everywhere.prefs.notes "Нататкі"> -<!ENTITY https-everywhere.prefs.list_caption "Якія правілы HTTPS-перанакіраванняў трэба задзейнічаць?"> -<!ENTITY https-everywhere.prefs.enabled "Уключана"> -<!ENTITY https-everywhere.prefs.ruleset_howto "Вы можаце навучыцца пісаць уласныя зборы правілаў (каб дадаць падтрымку для іншых вэбсайтаў)"> -<!ENTITY https-everywhere.prefs.here_link "тут"> -<!ENTITY https-everywhere.prefs.toggle "Пераключыць"> -<!ENTITY https-everywhere.prefs.reset_default "Скінуць да стандартнага"> -<!ENTITY https-everywhere.prefs.view_xml_source "Прагляд крынічнага XML-коду"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Скасаваць"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/be/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/be/https-everywhere.properties deleted file mode 100644 index d5cb1ff..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/be/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Уключыць HTTPS Everywhere -https-everywhere.menu.globalDisable = Адключыць HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/be/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/be/ssl-observatory.dtd deleted file mode 100644 index 840d08c..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/be/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "Не"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Так"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "Настáўленні SSL Observatory"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/bg/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/bg/https-everywhere.dtd deleted file mode 100644 index f37031f..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/bg/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "За HTTPS Навсякъде"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Навсякъде"> -<!ENTITY https-everywhere.about.ext_description "Шифрирайте мрежата! Използвайте автоматична HTTPS защита на много страници."> -<!ENTITY https-everywhere.about.version "Версия"> -<!ENTITY https-everywhere.about.created_by "Създадено от"> -<!ENTITY https-everywhere.about.and "и"> -<!ENTITY https-everywhere.about.librarians "Библиотеки с правила"> -<!ENTITY https-everywhere.about.add_new_rule "Добавяне на Ново Правило"> -<!ENTITY https-everywhere.about.thanks "Благодарности на"> -<!ENTITY https-everywhere.about.many_contributors "Много сътрудници, включително"> -<!ENTITY https-everywhere.about.noscript "Също така, части от HTTPS Everywhere са базирани върху NoScript код, писан от Джорджо Маоне и други. Благодарни сме за отличната им работа!"> -<!ENTITY https-everywhere.about.contribute "Ако харесвате HTTPS Everywhere можете да направите"> -<!ENTITY https-everywhere.about.donate_tor "дарение за Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "bg"> -<!ENTITY https-everywhere.about.or "или"> -<!ENTITY https-everywhere.about.donate_eff "дарение за EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Дари за EFF"> -<!ENTITY https-everywhere.menu.about "За HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "Настройки на SSL Observatory"> -<!ENTITY https-everywhere.menu.globalEnable "Включи HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Изключи HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Блокиране на всички некриптирани заявки"> -<!ENTITY https-everywhere.menu.showCounter "Показване на брояч"> -<!ENTITY https-everywhere.menu.viewAllRules "Прегледай всички правила"> - -<!ENTITY https-everywhere.prefs.title "Настройки на HTTPS Everywhere"> -<!ENTITY https-everywhere.prefs.enable_all "Включване на всички"> -<!ENTITY https-everywhere.prefs.disable_all "Изключване на всички"> -<!ENTITY https-everywhere.prefs.reset_defaults "Възстановяване на стандартните"> -<!ENTITY https-everywhere.prefs.search "Търсене"> -<!ENTITY https-everywhere.prefs.site "Страница"> -<!ENTITY https-everywhere.prefs.notes "Забележки"> -<!ENTITY https-everywhere.prefs.list_caption "Кои HTTPS правила за преадресиране да се прилагат?"> -<!ENTITY https-everywhere.prefs.enabled "Включено"> -<!ENTITY https-everywhere.prefs.ruleset_howto "Можете да се научите да пишете собствени правила (за добавяне поддръжка на други страници)"> -<!ENTITY https-everywhere.prefs.here_link "тук"> -<!ENTITY https-everywhere.prefs.toggle "Превключване"> -<!ENTITY https-everywhere.prefs.reset_default "Възстановяване"> -<!ENTITY https-everywhere.prefs.view_xml_source "Преглед на XML кода"> - -<!ENTITY https-everywhere.chrome.stable_rules "Устойчиви правила"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Принудително криптиране при свързването към тези сайтове:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Експериментални правила"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "Може да предизвика предупреждения или прекъсване. Изключено по подразбиране."> -<!ENTITY https-everywhere.chrome.add_rule "Добави правило за този сайт"> -<!ENTITY https-everywhere.chrome.add_new_rule "Добави ново правило за този сайт"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Винаги използвай https за този хост"> -<!ENTITY https-everywhere.chrome.host "Хост:"> -<!ENTITY https-everywhere.chrome.show_advanced "Покажи разширени"> -<!ENTITY https-everywhere.chrome.hide_advanced "Скрий Разширени"> -<!ENTITY https-everywhere.chrome.rule_name "Име на правило"> -<!ENTITY https-everywhere.chrome.regex "Съвпадащ regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Пренасочи към"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Отказ"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/bg/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/bg/https-everywhere.properties deleted file mode 100644 index 5c20247..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/bg/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Включване на HTTPS Everywhere -https-everywhere.menu.globalDisable = Изключване на HTTPS Everywhere -https-everywhere.menu.enableDisable = Включване / Изключване на правила -https-everywhere.menu.noRules = (Няма правила за тази страница) -https-everywhere.menu.unknownRules = (Непознати правила за тази страница) -https-everywhere.toolbar.hint = HTTPS Everywhere е активен. Можете да го превключвате от сайт на сайт чрез натискане на иконката в адресната лента. -https-everywhere.migration.notification0 = За да се приложи критическа поправка, това обновление анулира вашите настройки на HTTPS Everywhere правилата към стандартните им стойности. -https-everywhere.menu.ruleset-tests = Стартиране на тест за правилата на HTTPS Everywhere diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/bg/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/bg/ssl-observatory.dtd deleted file mode 100644 index 8e3af72..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/bg/ssl-observatory.dtd +++ /dev/null @@ -1,95 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Подробности и информация за поверителност"> -<!ENTITY ssl-observatory.popup.later "Питай ме по-късно"> -<!ENTITY ssl-observatory.popup.no "Не"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Навсякъде може да засече атаки срещу вашият браузър като изпраща сертификатите, които получавате към SSL Обсерватория. -Включване на тази опция?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Да използва ли HTTPS Everywhere SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Да"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"Включването на тази опция е безопасно, освен ако използвате много натрапчива корпоративна мрежа:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Безопасно, освен ако използвате корпоративна мрежа със секретни имена на сървърите:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Предаване и проверка на сертификати подписани от нестандартизиран Certificate Authority"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"Безопасно е (и е добра идея) да включите тази опция, освен ако използвате натрапчива корпоративна мрежа или антивирусен софтуер на Касперски, които следят Вашата работа в мрежата с помощта на TLS прокси и частни Certificate Authority. Ако е разрешена на такава мрежа, тази опция може да публикува данни за това, какви https:// домейни са били посетени през това прокси, вследствие на уникалния сертификат, който предоставя. Така, че я оставяме изключена по подразбиране."> - -<!ENTITY ssl-observatory.prefs.anonymous "Проверка на сертификати чрез използване на Tor анонимност"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Проверка на сертификати чрез използване на Tor за анонимност (изисква Torbutton)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"Тази опция изисква Tor и Torbutton да бъдат инсталирани"> - -<!ENTITY ssl-observatory.prefs.asn -"Когато получите нов сертификат, съобщете на SSL Observatory към кой интернет доставчик сте свързан"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"Ще получите и изпратите "Номер на автономна система" на Вашата мрежа. Това ще ни помогне да локализираме атаките срещу HTTPS и да определим дали имаме наблюдения от мрежи на места като Иран и Сирия, където атаките са сравнително чести."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Покажи предупреждение, когато Обсерваторията открие оттеглен сертификат, който броузъра ти не е остановил."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"Това ще провери дали представения сертификат е в Списъка на Оттеглени Сертификати. За съжаление неможе да гарантираме, че това ще сигнализира всеки оттеглен сертификат, но ако видиш предупреждение е доста вероятно да има някакъв проблем."> - -<!ENTITY ssl-observatory.prefs.done "Готово"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere може да използва SSL Observatory на EFF. Това означава две неща: (1) Изпращане на копия от HTTPS сертификати към SSL Observatory, за да ни помогнат да определим "man in the middle" атаки и да подобрим уеб сигурността; (2) Позволява ни да Ви предупредим за несигурни връзки или атаки над Вашия браузър."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"Например, когато посетите https://www.something.com, сертификата -получен от SSL Observatory ще отбележи, че някой е посетил www.something.com, но не и кой е неговият посетител или коя точно страница -се преглежда. Задръжте мишката върху опциите за да получите допълнителна информация:"> - -<!ENTITY ssl-observatory.prefs.hide "Скриване на разширените опции"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Проверка на сертификати дори ако Tor не е наличен"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"Все пак ще се опитаме да запазим данните Ви анонимни, но тази опция е по-малко безопасна"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Предаване и проверка на сертификати за не-публични DNS имена"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Докато тази опция е избрана, SSL Observatory няма да регистрира сертификати за имена, които не могат да се разрешат през DNS системата."> - -<!ENTITY ssl-observatory.prefs.show "Показване на разширени опции"> - -<!ENTITY ssl-observatory.prefs.title "Настройки на SSL Observatory"> - -<!ENTITY ssl-observatory.prefs.use "Използване на SSL Observatory?"> -<!ENTITY ssl-observatory.warning.title "ПРЕДУПРЕЖДЕНИЕ от SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Показване веригата на сертификата"> -<!ENTITY ssl-observatory.warning.okay "Разбирам"> -<!ENTITY ssl-observatory.warning.text "SSL Observatory е издала предупреждение за HTTPS сертификат(и) за този сайт:"> -<!ENTITY ssl-observatory.warning.defense "Ако сте се вписали в този сайт е прерпоръчително да смените паролата си щом установите сигурна връзка. (Тези предупреждения могат да бъдат изключени в табът "SSL Обсерватория" в настройките на HTTPS Everywhere.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Приемане и проверка на самоподписани сертификати"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"Това е препоръчително; криптографските проблеми са особено разпространени в самоподписани вградени устройства"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/bg_BG/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/bg_BG/https-everywhere.dtd deleted file mode 100644 index 9a63c45..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/bg_BG/https-everywhere.dtd +++ /dev/null @@ -1,47 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.source.downloading "Downloading"> -<!ENTITY https-everywhere.source.filename "Filename"> -<!ENTITY https-everywhere.source.unable_to_download "Unable to download source."> - -<!ENTITY https-everywhere.popup.title "HTTPS Everywhere 4.0development.11 notification"> -<!ENTITY https-everywhere.popup.paragraph1 "Oops. You were using the stable version of HTTPS Everywhere, but we might have accidentally upgraded you to the development version in our last release."> -<!ENTITY https-everywhere.popup.paragraph2 "Would you like to go back to stable?"> -<!ENTITY https-everywhere.popup.paragraph3 "We'd love it if you continued using our development release and helped us make HTTPS Everywhere better! You might find there are a few more bugs here and there, which you can report to https-everywhere@eff.org. Sorry about the inconvenience, and thank you for using HTTPS Everywhere."> -<!ENTITY https-everywhere.popup.keep "Keep me on the development version"> -<!ENTITY https-everywhere.popup.revert "Download the latest stable version"> - -<!ENTITY https-everywhere.ruleset-tests.status_title "HTTPS Everywhere Ruleset Tests"> -<!ENTITY https-everywhere.ruleset-tests.status_cancel_button "Cancel"> -<!ENTITY https-everywhere.ruleset-tests.status_start_button "Start"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/bg_BG/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/bg_BG/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/bg_BG/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/bn/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/bn/https-everywhere.dtd deleted file mode 100644 index 97be9fe..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/bn/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "সর্বত্র HTTPS সম্পর্কে "> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "সর্বত্র HTTPS সম্পর্কে "> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "HTTPS Everywhere সক্রিয় করুন"> -<!ENTITY https-everywhere.menu.globalDisable "HTTPS Everywhere নিষ্ক্রিয় করুন"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "খুঁজুন"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "বাতিল"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/bn/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/bn/https-everywhere.properties deleted file mode 100644 index fe9795b..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/bn/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = HTTPS Everywhere সক্রিয় করুন -https-everywhere.menu.globalDisable = HTTPS Everywhere নিষ্ক্রিয় করুন -https-everywhere.menu.enableDisable = নিয়ম সক্রিয় / নিষ্ক্রিয় করুন -https-everywhere.menu.noRules = (এই পৃষ্ঠার জন্যে কোন নিয়ম নেই) -https-everywhere.menu.unknownRules = ( এই পৃষ্ঠার জন্যে নিয়ম : অজানা ) -https-everywhere.toolbar.hint = HTTPS Everywhere এখন সক্রিয়।আপনি চাইলে অ্যাড্রেস বারের আইকনে ক্লিক করে প্রত্যেক সাইটের জন্যে আলাদাভাবে সক্রিয় / নিষ্ক্রিয় করতে পারেন। -https-everywhere.migration.notification0 = গুরুত্বপূর্ণ ফিক্স বাস্তবায়ন করার জন্যে , এই আপডেট আপনার HTTPS Everywhere এর পছন্দের নিয়ম তাদের ডিফল্ট ভ্যালুতে রিসেট করে। -https-everywhere.menu.ruleset-tests = HTTPS Everywhere রুলসেট টেস্ট চালু করুন diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/bn/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/bn/ssl-observatory.dtd deleted file mode 100644 index 4d6d9bd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/bn/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "বিস্তারিত এবং প্রাইভেসী তথ্য"> -<!ENTITY ssl-observatory.popup.later "পরে জিজ্ঞেস করুন"> -<!ENTITY ssl-observatory.popup.no "না"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "হ্যা"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "সমাপ্ত"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "আমি বুঝেছি"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/bn_BD/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/bn_BD/https-everywhere.dtd deleted file mode 100644 index 93d66ce..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/bn_BD/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancel"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/bn_BD/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/bn_BD/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/bn_BD/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/bn_BD/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/bn_BD/ssl-observatory.dtd deleted file mode 100644 index 69f1cfd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/bn_BD/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/bn_IN/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/bn_IN/https-everywhere.dtd deleted file mode 100644 index 93d66ce..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/bn_IN/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancel"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/bn_IN/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/bn_IN/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/bn_IN/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/bn_IN/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/bn_IN/ssl-observatory.dtd deleted file mode 100644 index 69f1cfd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/bn_IN/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/bo/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/bo/https-everywhere.dtd deleted file mode 100644 index 93d66ce..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/bo/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancel"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/bo/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/bo/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/bo/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/bo/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/bo/ssl-observatory.dtd deleted file mode 100644 index 69f1cfd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/bo/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/br/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/br/https-everywhere.dtd deleted file mode 100644 index 742c043..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/br/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Nullañ"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/br/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/br/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/br/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/br/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/br/ssl-observatory.dtd deleted file mode 100644 index 69f1cfd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/br/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/brx/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/brx/https-everywhere.dtd deleted file mode 100644 index 93d66ce..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/brx/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancel"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/brx/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/brx/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/brx/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/brx/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/brx/ssl-observatory.dtd deleted file mode 100644 index 69f1cfd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/brx/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/bs/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/bs/https-everywhere.dtd deleted file mode 100644 index 7e8d7ae..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/bs/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Otkaži"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/bs/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/bs/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/bs/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/bs/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/bs/ssl-observatory.dtd deleted file mode 100644 index 506d48f..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/bs/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "Ne"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Da"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ca/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ca/https-everywhere.dtd deleted file mode 100644 index 47e9130..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ca/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "Sobre HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Xifra la Web! Fes servir automàticament la seguretat HTTPS a molts llocs."> -<!ENTITY https-everywhere.about.version "Versió"> -<!ENTITY https-everywhere.about.created_by "Creat per"> -<!ENTITY https-everywhere.about.and ", i"> -<!ENTITY https-everywhere.about.librarians "Bibliotecaris de normes"> -<!ENTITY https-everywhere.about.add_new_rule "Afegeix una nova norma"> -<!ENTITY https-everywhere.about.thanks "Gràcies a"> -<!ENTITY https-everywhere.about.many_contributors "Molts, molts contribuïdors, com "> -<!ENTITY https-everywhere.about.noscript "A més a més, parts de l'HTTPS Everywhere estan basades en codi de NoScript, per Giorgio Maone i altres. Agraïm la seva excel·lent feina!"> -<!ENTITY https-everywhere.about.contribute "Si us agrada HTTPS Everywhere, podríeu considerar"> -<!ENTITY https-everywhere.about.donate_tor "Fer una donació a Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "o"> -<!ENTITY https-everywhere.about.donate_eff "Fer una donació a EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donar a EEF"> -<!ENTITY https-everywhere.menu.about "Sobre HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "Preferències de SSL Observatory"> -<!ENTITY https-everywhere.menu.globalEnable "Activa HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Desactiva HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Bloca totes les peticions sense xifrar"> -<!ENTITY https-everywhere.menu.showCounter "Mostra el comptador"> -<!ENTITY https-everywhere.menu.viewAllRules "Ensenya totes les regles"> - -<!ENTITY https-everywhere.prefs.title "Preferències d'HTTPS Everywhere"> -<!ENTITY https-everywhere.prefs.enable_all "Activa-ho tot"> -<!ENTITY https-everywhere.prefs.disable_all "Desactiva-ho tot"> -<!ENTITY https-everywhere.prefs.reset_defaults "Torna a les opcions per defecte"> -<!ENTITY https-everywhere.prefs.search "Cerca"> -<!ENTITY https-everywhere.prefs.site "Lloc"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Quines regles de redirecció HTTPS voleu aplicar?"> -<!ENTITY https-everywhere.prefs.enabled "Activat"> -<!ENTITY https-everywhere.prefs.ruleset_howto "Podeu aprendre com escriure les vostres pròpies normes (per afegir suport a altres webs)"> -<!ENTITY https-everywhere.prefs.here_link "aquí"> -<!ENTITY https-everywhere.prefs.toggle "Canvia"> -<!ENTITY https-everywhere.prefs.reset_default "Tornar a la opció per defecte"> -<!ENTITY https-everywhere.prefs.view_xml_source "Veure el codi XML"> - -<!ENTITY https-everywhere.chrome.stable_rules "Normes estables."> -<!ENTITY https-everywhere.chrome.stable_rules_description "Força les connexions encriptades per als llocs web següents:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Normes experimentals"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "Pot causar avisos i problemes. Desactivat per defecte."> -<!ENTITY https-everywhere.chrome.add_rule "Afegeix una norma per a aquest lloc"> -<!ENTITY https-everywhere.chrome.add_new_rule "Afegeix una norma nova per a aquest lloc"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Utilitza sempre https per a aquest host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Mostra l'avançat"> -<!ENTITY https-everywhere.chrome.hide_advanced "Amaga l'avançat"> -<!ENTITY https-everywhere.chrome.rule_name "Nom de la norma"> -<!ENTITY https-everywhere.chrome.regex "Trobant la regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirecciona a"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancel·la"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ca/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ca/https-everywhere.properties deleted file mode 100644 index a73faf3..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ca/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Activa HTTPS Everywhere -https-everywhere.menu.globalDisable = Desactiva HTTPS Everywhere -https-everywhere.menu.enableDisable = Activa/Desactiva Normes -https-everywhere.menu.noRules = (Sense normes per aquesta pàgina) -https-everywhere.menu.unknownRules = (Normes desconegudes per aquesta pàgina) -https-everywhere.toolbar.hint = HTTPS Everywhere està actiu. Podeu modificar-ho en la icona de la barra d'eines. -https-everywhere.migration.notification0 = Per tal d'implementar una reparació crucial, aquesta actualització reinicia les normes de l'HTTPS Everywhere al seu valor original. -https-everywhere.menu.ruleset-tests = Inicia el test de les normes de l'HTTPS Everywhere diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ca/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ca/ssl-observatory.dtd deleted file mode 100644 index 33d3386..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ca/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Detalls i informació de Privadesa"> -<!ENTITY ssl-observatory.popup.later "Pregunta-ho més endavant"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "L'HTTPS Everywhere pot detectar atacs -contra el navegador enviant a l'Observatori els certificats que heu rebut. -Voleu activar aquest paràmetre?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"L'HTTPS Everywhere pot usar l'Observatori SSL?"> - -<!ENTITY ssl-observatory.popup.yes "Sí"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"És segur activar-ho, excepte si utilitzeu una -xarxa corporativa molt intrusiva."> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"És segur, excepte si utilitzeu una xarxa corporativa amb noms secrets d'intranet."> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Envia i comprova els certificats firmats per CAs d'arrel no estàndard."> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"És segur (i una bona idea) permetre aquesta opció, excepte si utilitzeu una xarxa corporativa molt intrusiva o un antivirus Kaspersky que monitoreja el navegador amb un servidor intermediari TLS i un Certificat d'Autoritat d'arrel privada. Si ho permeteu en aquesta xarxa, aquesta opció pot publicar evidències de quins dominis https:// són visitats a través d'aquest servidor intermediari, pel seu certificat únic. En aquest cas, és millor deixar-ho igual."> - -<!ENTITY ssl-observatory.prefs.anonymous "Comprova els certificats fent servir Tor per a l'anonimat. "> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Comprova els certificats fent servir Tor per a l'anonimat (requereix Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"Aquesta opció requereix que Tor estigui instal·lat i en funcionament"> - -<!ENTITY ssl-observatory.prefs.asn -"Quan vegeu un certificat nou, digueu a l'Observatori a quin Proveidor d'Internet esteu connectat."> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"Això farà que es cerqui i s'envii el "Número de Sistema Autònom" de la vostra xarxa. Això ens permetrà localitzar atacs contra l'HTTPS i determinar si tenim observacions des de xarxes en llocs com Iran o Siria d'on els atacs són comparativament més comuns. "> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Mostra una alerta quan l'Observatory detecti un certificat revocat no capturat pel navegador"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"Això revisarà els certificats enviats segons les llistes de revocació de certificats conegudes. Desafortunadament no podem garantir que puguem detectar tots els certificats revocats, pero si veieu una advertència és un bon indicador que alguna cosa és incorrecta. "> - -<!ENTITY ssl-observatory.prefs.done "Fet"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere pot usar l'EFF's SSL Observatory. Això fa dues coses: (1) -envia còpies de certificats HTTPS a l'observatori, per a ajudar-nos -a detectar atacs amb intermediari i millorar la seguretat de la Web; i (2) -ens permet avisar-vos de connexions insegures o atacs al navegador."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"Per exemple, quan visiteu https://www.something.com, el certificat -rebut per l'observatori indicarà que algú ha visitat -www.something.com, però no qui ha visitat la pàgina, o quina pàgina específica -ha vist. Passeu amb el cursor per sobre les opcions per a més informació. "> - -<!ENTITY ssl-observatory.prefs.hide "Amaga les opcions avançades"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Comprova els certificats encara que Tor no estigui disponible"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"Seguirem intentant mantenir les dades anònimes, però aquesta opció és menys segura"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Envia i comprova els certificats per a noms DNS no públics"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Mentre aquesta opció no estigui sel·leccionada, l'Observatory no emmagatzemarà certificats per a noms que no han estat resolts amb el sistema de DNS."> - -<!ENTITY ssl-observatory.prefs.show "Mostra les opcions avançades"> - -<!ENTITY ssl-observatory.prefs.title "Preferències de SSL Observatory"> - -<!ENTITY ssl-observatory.prefs.use "Voleu utilitzar l'Observatori?"> -<!ENTITY ssl-observatory.warning.title "Avís de l'Observatori de l'EFF de l'SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Mostra la cadena de certificats"> -<!ENTITY ssl-observatory.warning.okay "Ho entenc"> -<!ENTITY ssl-observatory.warning.text "L'EFF de l'SSL Observatory ha emès una advertència sobre cerficats(s) HTTPS per a aquest lloc: "> -<!ENTITY ssl-observatory.warning.defense "Si heu iniciat sessió en aquest lloc, pot ser recomanable canviar la contrasenya un cop tingueu una connexió segura. (Aquestes advertències poden ser deshabilitades a la pestanya "SSL Observatory" del quadre de preferències d'HTTPS Everywhere.) "> - -<!ENTITY ssl-observatory.prefs.self_signed -"Envia i comprova els certificats amb signatura"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"Això és recomanat; els problemes criptogràfics són especialment comuns en dispositius integrats autosignats"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ca@valencia/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ca@valencia/https-everywhere.dtd deleted file mode 100644 index b0dfb95..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ca@valencia/https-everywhere.dtd +++ /dev/null @@ -1,37 +0,0 @@ -<!ENTITY https-everywhere.about.title ""> -<!ENTITY https-everywhere.about.ext_name ""> -<!ENTITY https-everywhere.about.ext_description ""> -<!ENTITY https-everywhere.about.version ""> -<!ENTITY https-everywhere.about.created_by ""> -<!ENTITY https-everywhere.about.librarians ""> -<!ENTITY https-everywhere.about.thanks ""> -<!ENTITY https-everywhere.about.contribute ""> -<!ENTITY https-everywhere.about.donate_tor ""> -<!ENTITY https-everywhere.about.tor_lang_code ""> -<!ENTITY https-everywhere.about.donate_eff ""> - -<!ENTITY https-everywhere.menu.about ""> -<!ENTITY https-everywhere.menu.observatory ""> -<!ENTITY https-everywhere.menu.globalEnable ""> -<!ENTITY https-everywhere.menu.globalDisable ""> - -<!ENTITY https-everywhere.prefs.title ""> -<!ENTITY https-everywhere.prefs.enable_all ""> -<!ENTITY https-everywhere.prefs.disable_all ""> -<!ENTITY https-everywhere.prefs.reset_defaults ""> -<!ENTITY https-everywhere.prefs.search ""> -<!ENTITY https-everywhere.prefs.site ""> -<!ENTITY https-everywhere.prefs.notes ""> -<!ENTITY https-everywhere.prefs.list_caption ""> -<!ENTITY https-everywhere.prefs.enabled ""> -<!ENTITY https-everywhere.prefs.ruleset_howto ""> -<!ENTITY https-everywhere.prefs.here_link ""> -<!ENTITY https-everywhere.prefs.toggle ""> -<!ENTITY https-everywhere.prefs.reset_default ""> -<!ENTITY https-everywhere.prefs.view_xml_source ""> - -<!ENTITY https-everywhere.source.downloading ""> -<!ENTITY https-everywhere.source.filename ""> -<!ENTITY https-everywhere.source.unable_to_download ""> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ca@valencia/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ca@valencia/https-everywhere.properties deleted file mode 100644 index 3cfced8..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ca@valencia/https-everywhere.properties +++ /dev/null @@ -1,7 +0,0 @@ -# https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -# https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -# https-everywhere.menu.enableDisable = Enable / Disable Rules -# https-everywhere.menu.noRules = (No Rules for This Page) -# https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -# https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -# https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ca@valencia/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ca@valencia/ssl-observatory.dtd deleted file mode 100644 index d832b69..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ca@valencia/ssl-observatory.dtd +++ /dev/null @@ -1,86 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details ""> -<!ENTITY ssl-observatory.popup.later ""> -<!ENTITY ssl-observatory.popup.no ""> - -<!ENTITY ssl-observatory.popup.text ""> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -""> - -<!ENTITY ssl-observatory.popup.yes ""> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -""> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -""> - -<!ENTITY ssl-observatory.prefs.alt_roots -""> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -""> - -<!ENTITY ssl-observatory.prefs.anonymous ""> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -""> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -""> - -<!ENTITY ssl-observatory.prefs.asn -""> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -""> - -<!ENTITY ssl-observatory.prefs.done ""> - -<!ENTITY ssl-observatory.prefs.explanation -""> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -""> - -<!ENTITY ssl-observatory.prefs.hide ""> - -<!ENTITY ssl-observatory.prefs.nonanon -""> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -""> - -<!ENTITY ssl-observatory.prefs.priv_dns -""> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -""> - -<!ENTITY ssl-observatory.prefs.show ""> - -<!ENTITY ssl-observatory.prefs.title ""> - -<!ENTITY ssl-observatory.prefs.use ""> -<!ENTITY ssl-observatory.warning.title ""> -<!ENTITY ssl-observatory.warning.showcert ""> -<!ENTITY ssl-observatory.warning.okay ""> -<!ENTITY ssl-observatory.warning.text ""> -<!ENTITY ssl-observatory.warning.defense ""> - -<!ENTITY ssl-observatory.prefs.self_signed -""> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -""> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ca_ES/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ca_ES/https-everywhere.dtd deleted file mode 100644 index 3af5b36..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ca_ES/https-everywhere.dtd +++ /dev/null @@ -1,47 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.source.downloading "Downloading"> -<!ENTITY https-everywhere.source.filename "Filename"> -<!ENTITY https-everywhere.source.unable_to_download "Unable to download source."> - -<!ENTITY https-everywhere.popup.title "HTTPS Everywhere 4.0development.11 notification"> -<!ENTITY https-everywhere.popup.paragraph1 "Oops. You were using the stable version of HTTPS Everywhere, but we might have accidentally upgraded you to the development version in our last release."> -<!ENTITY https-everywhere.popup.paragraph2 "Would you like to go back to stable?"> -<!ENTITY https-everywhere.popup.paragraph3 "We'd love it if you continued using our development release and helped us make HTTPS Everywhere better! You might find there are a few more bugs here and there, which you can report to https-everywhere@eff.org. Sorry about the inconvenience, and thank you for using HTTPS Everywhere."> -<!ENTITY https-everywhere.popup.keep "Keep me on the development version"> -<!ENTITY https-everywhere.popup.revert "Download the latest stable version"> - -<!ENTITY https-everywhere.ruleset-tests.status_title "HTTPS Everywhere Ruleset Tests"> -<!ENTITY https-everywhere.ruleset-tests.status_cancel_button "Cancel·la"> -<!ENTITY https-everywhere.ruleset-tests.status_start_button "Start"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ca_ES/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ca_ES/https-everywhere.properties deleted file mode 100644 index 21feda9..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ca_ES/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -# https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -# https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -# https-everywhere.menu.enableDisable = Enable / Disable Rules -# https-everywhere.menu.noRules = (No Rules for This Page) -# https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -# https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -# https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -# https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ceb/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ceb/https-everywhere.dtd deleted file mode 100644 index 93d66ce..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ceb/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancel"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ceb/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ceb/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ceb/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ceb/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ceb/ssl-observatory.dtd deleted file mode 100644 index 69f1cfd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ceb/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/co/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/co/https-everywhere.dtd deleted file mode 100644 index 2ac51cd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/co/https-everywhere.dtd +++ /dev/null @@ -1,56 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockHttpRequests "Block all HTTP requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancel"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/co/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/co/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/co/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/co/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/co/ssl-observatory.dtd deleted file mode 100644 index 69f1cfd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/co/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/cs/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/cs/https-everywhere.dtd deleted file mode 100644 index 8baf666..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/cs/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "O aplikaci HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Zašifrujte Web! Automaticky používejte HTTPS zabezpečení na mnoha stránkách."> -<!ENTITY https-everywhere.about.version "Verze"> -<!ENTITY https-everywhere.about.created_by "Vytvořil"> -<!ENTITY https-everywhere.about.and ", a"> -<!ENTITY https-everywhere.about.librarians "Knihovníci Pravidel"> -<!ENTITY https-everywhere.about.add_new_rule "Přidat nové pravidlo"> -<!ENTITY https-everywhere.about.thanks "Poděkování"> -<!ENTITY https-everywhere.about.many_contributors "Spousty přispěvatelů, včetně"> -<!ENTITY https-everywhere.about.noscript "Části HTTPS Everywhere jsou založený na kódu z NoScript od Giorgio Maone a ostatních. Jsme vděčni za jejich výbornou práci."> -<!ENTITY https-everywhere.about.contribute "Pokud se vám líbí HTTPS Everywhere, můžete"> -<!ENTITY https-everywhere.about.donate_tor "Přispět na Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "nebo"> -<!ENTITY https-everywhere.about.donate_eff "Přispět na EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Přispět na EFF"> -<!ENTITY https-everywhere.menu.about "O aplikaci HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "Nastavení SSL Observatoře"> -<!ENTITY https-everywhere.menu.globalEnable "Zapnout HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Vypnout HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Zablokovat všechny nešifrované požadavky"> -<!ENTITY https-everywhere.menu.showCounter "Zobrazit počítadlo"> -<!ENTITY https-everywhere.menu.viewAllRules "Zobrazit všechna pravidla"> - -<!ENTITY https-everywhere.prefs.title "Nastavení HTTPS Everywhere"> -<!ENTITY https-everywhere.prefs.enable_all "Zapnout vše"> -<!ENTITY https-everywhere.prefs.disable_all "Vypnout vše"> -<!ENTITY https-everywhere.prefs.reset_defaults "Vrátit výchozí nastavení"> -<!ENTITY https-everywhere.prefs.search "Hledat"> -<!ENTITY https-everywhere.prefs.site "Stránky"> -<!ENTITY https-everywhere.prefs.notes "Poznámky"> -<!ENTITY https-everywhere.prefs.list_caption "Která pravdila HTTPS pro přesměrování mají platit?"> -<!ENTITY https-everywhere.prefs.enabled "Zapnuto"> -<!ENTITY https-everywhere.prefs.ruleset_howto "Návod, jak si vytvořit vlastní sadu pravidel (pro přidání podpory dalších webů) najdete"> -<!ENTITY https-everywhere.prefs.here_link "zde"> -<!ENTITY https-everywhere.prefs.toggle "Změnit"> -<!ENTITY https-everywhere.prefs.reset_default "Vrátit výchozí nastavení"> -<!ENTITY https-everywhere.prefs.view_xml_source "Zobrazit Zdroj v XML"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stabilní pravidla"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Vynutit šifrovaná spojení pro tyto stránky:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimentální pravidla"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "Může způsobit upozornění nebo chyby. Zakázáno ve výchozím nastavení."> -<!ENTITY https-everywhere.chrome.add_rule "Přidat pravidlo pro tuto stránku"> -<!ENTITY https-everywhere.chrome.add_new_rule "Přidat nové pravidlo pro tuto stránku"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Vždy používat https pro tohoto hostitele"> -<!ENTITY https-everywhere.chrome.host "Hostitel:"> -<!ENTITY https-everywhere.chrome.show_advanced "Zobrazit pokročilé"> -<!ENTITY https-everywhere.chrome.hide_advanced "Skrýt pokročilé"> -<!ENTITY https-everywhere.chrome.rule_name "Jméno pravidla"> -<!ENTITY https-everywhere.chrome.regex "Vyhovující regulární výrazy"> -<!ENTITY https-everywhere.chrome.redirect_to "Přesměrovat na"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Zrušit"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/cs/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/cs/https-everywhere.properties deleted file mode 100644 index 4de3f4d..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/cs/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Zapnout HTTPS Everywhere -https-everywhere.menu.globalDisable = Vypnout HTTPS Everywhere -https-everywhere.menu.enableDisable = Zapnout / Vypnout Pravidla -https-everywhere.menu.noRules = (Pro tuto stránku neexistují žádná pravidla) -https-everywhere.menu.unknownRules = (Pravidla pro tuto stránku nejsou známá) -https-everywhere.toolbar.hint = HTTPS Everywhere je nyní aktivní. Můžete ho aktivovat na jednotlivých stránkách pomocí kliknutí na ikonu v adresním řádku. -https-everywhere.migration.notification0 = Za účelem provedení zásadních oprav, aktualizace nastaví váš HTTPS Everywhere pravidla na jejich výchozí hodnoty. -https-everywhere.menu.ruleset-tests = Spustit test pravidel HTTPS Everywhere diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/cs/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/cs/ssl-observatory.dtd deleted file mode 100644 index 0b8053c..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/cs/ssl-observatory.dtd +++ /dev/null @@ -1,99 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Podrobnosti a informace o soukromí"> -<!ENTITY ssl-observatory.popup.later "Rozhodnu se později"> -<!ENTITY ssl-observatory.popup.no "Ne"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere umí odhalit útotky -proti vašemu prohlížeči tak, že posílá certifikáty, které obdržíte, do -Observatoře. Zapnout tuto funkci?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Má HTTPS Everywhere používat SSL Observatoř?"> - -<!ENTITY ssl-observatory.popup.yes "Ano"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"Povolit tuto funkci je bezpečné, pokud nejste na velmi -dotěrné firemní síti:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Bezpečné, pokud nepoužíváte firemní síť s tajnými jmény intranetových serverů:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Odeslat a prověřit certikáty podepsané nestadartními kořenovými Certifikačními Autoritami"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"Je bezpečné (a doporučené) tuto možnost povolit, pokud nepoužíváte dotěrnou firemní síť nebo antivirový sofware Kaspersky který monitoruje vaše surfování s TLS proxy a sorkoumou kořenovou Certifikační Autoritou. Pokud ji na takové síti povolíte, může tato možnost publikovat důkazy o tom které https:// servery byly skrze tuto proxy navštíveny, kvůli jedinečným certifikátům které by takto vznikly. Proto nechváme tuto možnost ve výchozím nastavení vypnoutou."> - -<!ENTITY ssl-observatory.prefs.anonymous "Prověřovat certifikáty skrze Tor pro zajištění anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Prověřovat certifikáty skrze Tor pro zajištění anonymity (vyžaduje Torbutton)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"Pro použití této možnosti je třeba mít nainstalovaný Tor a Torbutton"> - -<!ENTITY ssl-observatory.prefs.asn -"Když uvidíte nový certifikát, řekněte Observatoři přes kterého ISP jste připojení"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"Toto načte a odešle "číslo Autonomního Systému" vaší sítě. Pomůže nám to lokalizovat útoky na HTTPS, a rozpoznat jestli máme hlášení ze sítí v zemích jako je Írán a Sýrie, kde jsou útoky relativně časté."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Zobrazit varování pokud Observatoř detekuje zrušený certifikát nezachycený vaším prohlížečem."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"Toto zkontroluje zadané certifikáty proti známým Seznamům zneplatněných certifikátů. Bohužel nemůžeme zaručit, že označíme každý odvolaný certifikát, ale pokud se zobrazí upozornění, je velká šance, že je něco špatně."> - -<!ENTITY ssl-observatory.prefs.done "Hotovo"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere umí použít SSL Observatoř od EFF. Ta udělá dvě věci: (1) -oděšle kopie HTTPS cerifikátů do observotře, což nám pomůže detekovat útoky typu 'man in the middle' a zlepšit bezpečnost na Webu; a (2) -umožní nám varovat vás před nezabezpečným připojením nebo útokem na váš prohlížeč."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"Pokud například navštívíte https://www.something.com, certifikát, kerý příjde do Observatoře nás informuje o tom, že někdo navštívil -www.something.com, ale neřekne kdo to byl, ani na jakou konkrétní stránku se -díval. Pro zobrazení podrobností najeďte na možnosti myší."> - -<!ENTITY ssl-observatory.prefs.hide "Skrýt pokročilé nastavení"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Prověřovat certifikáty i pokud Tor není dostupný"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"I tak se budeme snažit, aby data zůstala anonymní, ale tato možnost není tak bezpečná"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Odesílat a prověřovat certifikáty neveřejných DNS jmen"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Pokud není tato možnost zaškrtnutá, Observatoř nebude zaznamenávat certifikáty pro jména která nenajde v DNS systému."> - -<!ENTITY ssl-observatory.prefs.show "Zobrazit pokročilé nastavení"> - -<!ENTITY ssl-observatory.prefs.title "Nastavení SSL Observatoře"> - -<!ENTITY ssl-observatory.prefs.use "Používat Observatoř?"> -<!ENTITY ssl-observatory.warning.title "VAROVÁNÍ z SSL Observatoře od EFF"> -<!ENTITY ssl-observatory.warning.showcert "Zobrazit řetězec certifikátů"> -<!ENTITY ssl-observatory.warning.okay "Rozumím"> -<!ENTITY ssl-observatory.warning.text "SSL Observatoř od EFF vydala varování před HTTPS cetifikátem / certifikáty na těchto stránkách:"> -<!ENTITY ssl-observatory.warning.defense "Pokud jste přihlášení na této stránce, můžeme doporučit změnu vašeho hesla ihned jakmile budete mít bezpečné připojení. (Tato varování mohou být vypnuta v ''SSL Observatoř'' kartě v HTTPS Všude dialogovém okně Předvolby.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Odesílat a prověrovat certifikáty podepsané sami sebou"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"Tuto možnost dopručujeme zapnout; kryprografické problémy jsou obzvášť časté u takto podepsaných vestavěných zařízení"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/cs_CZ/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/cs_CZ/https-everywhere.dtd deleted file mode 100644 index 0bbb1fe..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/cs_CZ/https-everywhere.dtd +++ /dev/null @@ -1,53 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockHttpRequests "Block all HTTP requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.source.downloading "Downloading"> -<!ENTITY https-everywhere.source.filename "Filename"> -<!ENTITY https-everywhere.source.unable_to_download "Unable to download source."> - -<!ENTITY https-everywhere.popup.title "HTTPS Everywhere 4.0development.11 notification"> -<!ENTITY https-everywhere.popup.paragraph1 "Oops. You were using the stable version of HTTPS Everywhere, but we might have accidentally upgraded you to the development version in our last release."> -<!ENTITY https-everywhere.popup.paragraph2 "Would you like to go back to stable?"> -<!ENTITY https-everywhere.popup.paragraph3 "We'd love it if you continued using our development release and helped us make HTTPS Everywhere better! You might find there are a few more bugs here and there, which you can report to https-everywhere@eff.org. Sorry about the inconvenience, and thank you for using HTTPS Everywhere."> -<!ENTITY https-everywhere.popup.keep "Keep me on the development version"> -<!ENTITY https-everywhere.popup.revert "Download the latest stable version"> - -<!ENTITY https-everywhere.ruleset-tests.status_title "HTTPS Everywhere Ruleset Tests"> -<!ENTITY https-everywhere.ruleset-tests.status_cancel_button "Cancel"> -<!ENTITY https-everywhere.ruleset-tests.status_start_button "Start"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/cs_CZ/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/cs_CZ/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/cs_CZ/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/cs_CZ/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/cs_CZ/ssl-observatory.dtd deleted file mode 100644 index 69f1cfd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/cs_CZ/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/csb/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/csb/https-everywhere.dtd deleted file mode 100644 index 93d66ce..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/csb/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancel"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/csb/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/csb/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/csb/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/csb/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/csb/ssl-observatory.dtd deleted file mode 100644 index 69f1cfd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/csb/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/cv/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/cv/https-everywhere.dtd deleted file mode 100644 index 93d66ce..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/cv/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancel"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/cv/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/cv/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/cv/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/cv/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/cv/ssl-observatory.dtd deleted file mode 100644 index 6f768fb..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/cv/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "Çук"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Çапла"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/cy/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/cy/https-everywhere.dtd deleted file mode 100644 index 01f8b1e..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/cy/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "Ynghylch HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Amgriptiwch yr We! Defnyddiwch diogelwch HTTPS yn awtomatig ar nifer o wefanau."> -<!ENTITY https-everywhere.about.version "Fersiwn"> -<!ENTITY https-everywhere.about.created_by "Creuwyd gan"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Llyfrgellwyr Set Rheol "> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Diolch i"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "Os rydych yn hoffi HTTPS Everywhere, efallai byddech yn ystyrio"> -<!ENTITY https-everywhere.about.donate_tor "Gyfrannu i Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Gyfrannu i EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "Ynghylch HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "Dewisiadau SSL Observatory"> -<!ENTITY https-everywhere.menu.globalEnable "Galluogi HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Analluogi HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Dangos rhifydd"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "Dewisiadau HTTPS Everywhere"> -<!ENTITY https-everywhere.prefs.enable_all "Galluogi Popeth"> -<!ENTITY https-everywhere.prefs.disable_all "Analluogi Popeth"> -<!ENTITY https-everywhere.prefs.reset_defaults "Ailosod i'r ddiofynnau"> -<!ENTITY https-everywhere.prefs.search "Chwilio"> -<!ENTITY https-everywhere.prefs.site "Safle"> -<!ENTITY https-everywhere.prefs.notes "Nodiadau"> -<!ENTITY https-everywhere.prefs.list_caption "Pa rheolau ailgyfeirio HTTPS sy'n berthnasol?"> -<!ENTITY https-everywhere.prefs.enabled "Wedi Galluogi"> -<!ENTITY https-everywhere.prefs.ruleset_howto "Gallwch ddysgi sut i ysgrifennu setiau rheol eich hun (i ychwanegu cymorth i wefannau eraill)"> -<!ENTITY https-everywhere.prefs.here_link "fama"> -<!ENTITY https-everywhere.prefs.toggle "Togl"> -<!ENTITY https-everywhere.prefs.reset_default "Ailosod i ddiofyn"> -<!ENTITY https-everywhere.prefs.view_xml_source "Gwelwch ffynhonnell XML"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Diddymu"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/cy/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/cy/https-everywhere.properties deleted file mode 100644 index 2f209d3..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/cy/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Galluogi HTTPS Everywhere -https-everywhere.menu.globalDisable = Analluogi HTTPS Everywhere -https-everywhere.menu.enableDisable = Galluogi / Analluogi Rheolau -https-everywhere.menu.noRules = (Ddim rheolau am yr tudalen hon) -https-everywhere.menu.unknownRules = (Rheolau anwybodus am yr tudalen hon) -https-everywhere.toolbar.hint = Mae HTTPS Everywhere yn awr yn gweithredol! Gallwch toglo hi ar sail wefan-wrth-wefan gan pwyso'r eicon yn y bar gyfeiriad. -https-everywhere.migration.notification0 = Felly gallen ni osod ateb holl bwysig, mae'r diweddariad hon yn ailosod eich rheolau dewisiadol HTTPS Everywhere i'w gwerthoedd diofyn. -https-everywhere.menu.ruleset-tests = Rhedeg profion set rheol HTTPS Everywhere diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/cy/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/cy/ssl-observatory.dtd deleted file mode 100644 index 952172d..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/cy/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Manylion a Gwybodaeth Preifatrwydd"> -<!ENTITY ssl-observatory.popup.later "Gofyn Wrthyf Nes Ymlaen"> -<!ENTITY ssl-observatory.popup.no "Na"> - -<!ENTITY ssl-observatory.popup.text "Gall HTTPS Everywhere rwystro ymosodiadau -en erbyn eich porwr wrth anfon y tystysgrifau a dderbynwch i'r -Observatory. Galluogi hyn?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Ie"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Wedi gorffen"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Cuddio dewisiadau uwch"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Dangos dewisiadau uwch"> - -<!ENTITY ssl-observatory.prefs.title "Dewisiadau SSL Observatory"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/cy_GB/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/cy_GB/https-everywhere.dtd deleted file mode 100644 index 0bbb1fe..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/cy_GB/https-everywhere.dtd +++ /dev/null @@ -1,53 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockHttpRequests "Block all HTTP requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.source.downloading "Downloading"> -<!ENTITY https-everywhere.source.filename "Filename"> -<!ENTITY https-everywhere.source.unable_to_download "Unable to download source."> - -<!ENTITY https-everywhere.popup.title "HTTPS Everywhere 4.0development.11 notification"> -<!ENTITY https-everywhere.popup.paragraph1 "Oops. You were using the stable version of HTTPS Everywhere, but we might have accidentally upgraded you to the development version in our last release."> -<!ENTITY https-everywhere.popup.paragraph2 "Would you like to go back to stable?"> -<!ENTITY https-everywhere.popup.paragraph3 "We'd love it if you continued using our development release and helped us make HTTPS Everywhere better! You might find there are a few more bugs here and there, which you can report to https-everywhere@eff.org. Sorry about the inconvenience, and thank you for using HTTPS Everywhere."> -<!ENTITY https-everywhere.popup.keep "Keep me on the development version"> -<!ENTITY https-everywhere.popup.revert "Download the latest stable version"> - -<!ENTITY https-everywhere.ruleset-tests.status_title "HTTPS Everywhere Ruleset Tests"> -<!ENTITY https-everywhere.ruleset-tests.status_cancel_button "Cancel"> -<!ENTITY https-everywhere.ruleset-tests.status_start_button "Start"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/cy_GB/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/cy_GB/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/cy_GB/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/cy_GB/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/cy_GB/ssl-observatory.dtd deleted file mode 100644 index 69f1cfd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/cy_GB/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/da/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/da/https-everywhere.dtd deleted file mode 100644 index 6ed4feb..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/da/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "Om HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Kryptér webbet! Brug HTTPS-sikkerhed automatisk på mange websteder."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Oprettet af"> -<!ENTITY https-everywhere.about.and " og"> -<!ENTITY https-everywhere.about.librarians "Regelsæt-bibliotekarer"> -<!ENTITY https-everywhere.about.add_new_rule "Tilføj ny regel"> -<!ENTITY https-everywhere.about.thanks "Tak til"> -<!ENTITY https-everywhere.about.many_contributors "Mange, mange bidragsydere, herunder"> -<!ENTITY https-everywhere.about.noscript "Derudover er dele af HTTPS Everywhere baseret på kode fra NoScript af Giorgio Maone og andre. Vi er taknemmelige for deres fremragende arbejde!"> -<!ENTITY https-everywhere.about.contribute "Hvis du kan lide HTTPS Everywhere, så vil du måske overveje at"> -<!ENTITY https-everywhere.about.donate_tor "give et bidrag til Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "da"> -<!ENTITY https-everywhere.about.or "eller at"> -<!ENTITY https-everywhere.about.donate_eff "give et bidrag til EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Doner til EFF"> -<!ENTITY https-everywhere.menu.about "Om HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "Præferencer for SSL-observatoriet"> -<!ENTITY https-everywhere.menu.globalEnable "Aktivér HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Deaktivér HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Bloker alle ukrypterede forespørgsler"> -<!ENTITY https-everywhere.menu.showCounter "Vis tæller"> -<!ENTITY https-everywhere.menu.viewAllRules "Se samtlige regler"> - -<!ENTITY https-everywhere.prefs.title "Præferencer for HTTPS Everywhere"> -<!ENTITY https-everywhere.prefs.enable_all "Aktivér alle"> -<!ENTITY https-everywhere.prefs.disable_all "Deaktivér alle"> -<!ENTITY https-everywhere.prefs.reset_defaults "Nulstil til standardindstillinger"> -<!ENTITY https-everywhere.prefs.search "Søg"> -<!ENTITY https-everywhere.prefs.site "Sted"> -<!ENTITY https-everywhere.prefs.notes "Noter"> -<!ENTITY https-everywhere.prefs.list_caption "Hvilke HTTPS-regler skal anvendes?"> -<!ENTITY https-everywhere.prefs.enabled "Aktiveret"> -<!ENTITY https-everywhere.prefs.ruleset_howto "Du kan lære, hvordan du skriver dine egne regelsæt (for at føje understøttelse til andre websteder)"> -<!ENTITY https-everywhere.prefs.here_link "her"> -<!ENTITY https-everywhere.prefs.toggle "Slå til/fra"> -<!ENTITY https-everywhere.prefs.reset_default "Nulstil til standardindstilling"> -<!ENTITY https-everywhere.prefs.view_xml_source "Vis XML-kilde"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stabile regler"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Sørg for at forbindelserne krypteres til følgende websteder:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Eksperimentelle regler"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "Kan give anledning til advarsler og fejl. Deaktiveret som standardindstilling."> -<!ENTITY https-everywhere.chrome.add_rule "Tilføj en regel for dette websted"> -<!ENTITY https-everywhere.chrome.add_new_rule "Tilføj en ny regel for dette websted"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Brug altid HTTPS for dette værtsnavn"> -<!ENTITY https-everywhere.chrome.host "Værtsnavn:"> -<!ENTITY https-everywhere.chrome.show_advanced "Vis avancerede indstillinger"> -<!ENTITY https-everywhere.chrome.hide_advanced "Skjul avancerede indstillinger"> -<!ENTITY https-everywhere.chrome.rule_name "Regelnavn"> -<!ENTITY https-everywhere.chrome.regex "Alt der matcher det regulære udtryk"> -<!ENTITY https-everywhere.chrome.redirect_to "Viderestilles til"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Annuller"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/da/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/da/https-everywhere.properties deleted file mode 100644 index 804517c..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/da/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Aktivér HTTPS Everywhere -https-everywhere.menu.globalDisable = Deaktivér HTTPS Everywhere -https-everywhere.menu.enableDisable = Aktivér/deaktivér regler -https-everywhere.menu.noRules = (der er ikke opsat regler for denne side) -https-everywhere.menu.unknownRules = (regler for denne side ukendt) -https-everywhere.toolbar.hint = HTTPS Everywhere er nu aktiv. Du kan slå den til eller fra på hver enkelt websted ved at klikke på ikonet i adressebjælken. -https-everywhere.migration.notification0 = For at rette en vigtig fejl nulstiller denne opdatering dine HTTPS Everywhere-præferencer til deres oprindelige værdier. -https-everywhere.menu.ruleset-tests = Kør afprøvninger af HTTPS Everywhere-regelsæt diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/da/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/da/ssl-observatory.dtd deleted file mode 100644 index 625015c..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/da/ssl-observatory.dtd +++ /dev/null @@ -1,99 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Detaljer og information om privatliv"> -<!ENTITY ssl-observatory.popup.later "Spørg mig senere"> -<!ENTITY ssl-observatory.popup.no "Nej"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere kan registrere angreb -mod din browser ved at sende certifikaterne du modtager til -Observatoriet. Slå dette til?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Skal HTTPS Everywhere anvende SSL-observatoriet?"> - -<!ENTITY ssl-observatory.popup.yes "Ja"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"Dette kan trygt aktiveres, medmindre du anvender et meget påtrængende virksomhedsnetværk:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Dette er sikkert, medmindre du bruger et virksomhedsnetværk med skjulte/hemmelige intranet-servernavne:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Indsend og tjek certifikater signeret af ikke-standardiserede rod-certifikat-autoriteter"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"Det er sikkert (og en god idé) at aktivere denne valgmulighed, medmindre du bruger et påstrængende virksomhedsnetværk eller antivirus-software fra Kaspersky, der overvåger din browserbrug med en TLS-proxy og en privat rod-certifikat-autoritet. Hvis den er aktiveret på sådan et netværk, så kan dette tilvalg potentielt udgive spor af hvilke https://-domæner, som blev benyttet gennem proxy'en, som følge af de unikke certifikater den ville fremstille. Lad den derfor være slået fra som standard."> - -<!ENTITY ssl-observatory.prefs.anonymous "Tjek certifikater med brug af Tor for anonymitet"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Tjek certifikater med brug af Tor for anonymitet (kræver Torbutton)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"Dette tilvalg kræver, at du har installeret og startet Tor."> - -<!ENTITY ssl-observatory.prefs.asn -"Når du ser et nyt certifikat, så fortæl Observatoriet hvilken internetudbyder du er tilsluttet til"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"Dette vil hente og sende det "autonome systemnummer" for dit netværk. Dette vil hjælpe os med at lokalisere angreb mod HTTPS og afgøre, hvorvidt vi har observationer fra netværk fra steder som Iran og Syrien, hvor angreb er relativt hyppige."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Vis en advarsel når Observatoriet registrere et tilbagekaldt certifikat, som ikke bliver opdaget af din browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"Dette vil sammenholde indsendte certifikater med en liste af kendte tilbagekaldte certifikater. Desværre kan vi ikke garantere, at vi bemærker alle tilbagekaldte certifikater, men hvis du ser en advarsel, er der en god chance for, at der er noget galt."> - -<!ENTITY ssl-observatory.prefs.done "Færdig"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere kan benytte EFF's SSL-observatorium. Dette indebærer to ting: (1) Der sendes kopier af HTTPS-certifikater til Observatoriet, der -hjælper os med at registrere 'manden i midten'-angreb og derved øger sikkerheden på webbet, og (2): Det giver os mulighed for at advare dig om usikre forbindelser eller angreb på din browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For eksempel: Hvis du besøger https://www.eksempel.dk, så vil -certifikatet, som Observatoriet har modtaget, indikere at nogen besøgte -www.eksempel.dk, men ikke hvem som besøgte stedet, eller hvilken -specifik side de kiggede på. Hold musen over valgmulighederne for at få flere -detaljer:"> - -<!ENTITY ssl-observatory.prefs.hide "Skjul avancerede valgmuligheder"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Tjek certifikater, selv når Tor ikke er tilgængeligt"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"Vi vil stadig prøve at bevare data anonyme, men denne valgmulighed er mindre sikker"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Indsend og tjek certifikater for DNS-navne som ikke er offentlige"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Medmindre denne valgmulighed er valgt, så vil Observatoriet ikke registrere certifikater for navne, som den ikke kan slå op gennem DNS-systemet."> - -<!ENTITY ssl-observatory.prefs.show "Vis avancerede valgmuligheder"> - -<!ENTITY ssl-observatory.prefs.title "Præferencer for SSL-observatoriet"> - -<!ENTITY ssl-observatory.prefs.use "Brug Observatoriet?"> -<!ENTITY ssl-observatory.warning.title "ADVARSEL fra EFF's SSL-observatorium"> -<!ENTITY ssl-observatory.warning.showcert "Vis certifikat-kæden"> -<!ENTITY ssl-observatory.warning.okay "Jeg forstår"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL-observatorium har udstedt en advarsel om HTTPS-certifikaterne for dette websted:"> -<!ENTITY ssl-observatory.warning.defense "Hvis du er logget ind på dette websted, så kan det tilrådes, at du ændrer din adgangskode, når du har etableret en sikker forbindelse. (Disse advarsler kan slås fra i fanebladet "SSL-Observatoriet" under dialog for præferencer for HTTPS Everywhere)."> - -<!ENTITY ssl-observatory.prefs.self_signed -"Indsend og tjek selvsignerede certifikater"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"Dette er anbefalet, da kryptografiske problemer oftere findes i selvsignerede indlejrede enheder"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/da_DK/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/da_DK/https-everywhere.dtd deleted file mode 100644 index 0bbb1fe..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/da_DK/https-everywhere.dtd +++ /dev/null @@ -1,53 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockHttpRequests "Block all HTTP requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.source.downloading "Downloading"> -<!ENTITY https-everywhere.source.filename "Filename"> -<!ENTITY https-everywhere.source.unable_to_download "Unable to download source."> - -<!ENTITY https-everywhere.popup.title "HTTPS Everywhere 4.0development.11 notification"> -<!ENTITY https-everywhere.popup.paragraph1 "Oops. You were using the stable version of HTTPS Everywhere, but we might have accidentally upgraded you to the development version in our last release."> -<!ENTITY https-everywhere.popup.paragraph2 "Would you like to go back to stable?"> -<!ENTITY https-everywhere.popup.paragraph3 "We'd love it if you continued using our development release and helped us make HTTPS Everywhere better! You might find there are a few more bugs here and there, which you can report to https-everywhere@eff.org. Sorry about the inconvenience, and thank you for using HTTPS Everywhere."> -<!ENTITY https-everywhere.popup.keep "Keep me on the development version"> -<!ENTITY https-everywhere.popup.revert "Download the latest stable version"> - -<!ENTITY https-everywhere.ruleset-tests.status_title "HTTPS Everywhere Ruleset Tests"> -<!ENTITY https-everywhere.ruleset-tests.status_cancel_button "Cancel"> -<!ENTITY https-everywhere.ruleset-tests.status_start_button "Start"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/da_DK/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/da_DK/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/da_DK/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/da_DK/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/da_DK/ssl-observatory.dtd deleted file mode 100644 index 69f1cfd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/da_DK/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/de/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/de/https-everywhere.dtd deleted file mode 100644 index 8277301..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/de/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "Über HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Verschlüsselt das Internet! Nutzen Sie HTTPS-Sicherheit automatisch auf vielen Webseiten."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Entwickelt von"> -<!ENTITY https-everywhere.about.and ", und"> -<!ENTITY https-everywhere.about.librarians "Regelsatz-Bibliothekare"> -<!ENTITY https-everywhere.about.add_new_rule "Neue Regel hinzufügen"> -<!ENTITY https-everywhere.about.thanks "Dank an"> -<!ENTITY https-everywhere.about.many_contributors "Viele, viele Mitwirkende, darunter"> -<!ENTITY https-everywhere.about.noscript "Teile von HTTPS Everywhere basieren auf dem Code von NoScript von Giorgio Maone und anderen. Wir sind dankbar für ihre exzellente Arbeit!"> -<!ENTITY https-everywhere.about.contribute "Wenn Sie HTTPS Everywhere mögen, sollten Sie sich dieses ansehen"> -<!ENTITY https-everywhere.about.donate_tor "An Tor spenden"> -<!ENTITY https-everywhere.about.tor_lang_code "de"> -<!ENTITY https-everywhere.about.or "oder"> -<!ENTITY https-everywhere.about.donate_eff "An EFF spenden"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Spende an EFF"> -<!ENTITY https-everywhere.menu.about "Über HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL-Observatory-Einstellungen"> -<!ENTITY https-everywhere.menu.globalEnable "HTTPS Everywhere aktivieren"> -<!ENTITY https-everywhere.menu.globalDisable "HTTPS Everywhere deaktivieren"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Alle unverschlüsselten Anforderungen blockieren"> -<!ENTITY https-everywhere.menu.showCounter "Zähler anzeigen"> -<!ENTITY https-everywhere.menu.viewAllRules "Alle Regeln ansehen"> - -<!ENTITY https-everywhere.prefs.title "HTTPS-Everywhere-Einstellungen"> -<!ENTITY https-everywhere.prefs.enable_all "Alle aktivieren"> -<!ENTITY https-everywhere.prefs.disable_all "Alle deaktivieren"> -<!ENTITY https-everywhere.prefs.reset_defaults "Auf Standardeinstellungen zurücksetzen"> -<!ENTITY https-everywhere.prefs.search "Suchen"> -<!ENTITY https-everywhere.prefs.site "Webseite"> -<!ENTITY https-everywhere.prefs.notes "Notizen"> -<!ENTITY https-everywhere.prefs.list_caption "Welche HTTPS-Weiterleitungsregeln sollen gelten?"> -<!ENTITY https-everywhere.prefs.enabled "Aktiviert"> -<!ENTITY https-everywhere.prefs.ruleset_howto "Sie können lernen, wie Sie Ihren eigenen Regelsatz schreiben (Regeln für andere Webseiten hinzufügen)"> -<!ENTITY https-everywhere.prefs.here_link "hier"> -<!ENTITY https-everywhere.prefs.toggle "Umschalten"> -<!ENTITY https-everywhere.prefs.reset_default "Auf Standardeinstellung zurücksetzen"> -<!ENTITY https-everywhere.prefs.view_xml_source "XML-Quelltext ansehen"> - -<!ENTITY https-everywhere.chrome.stable_rules "Funktionierende Regeln"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Erzwingen Sie eine verschlüsselte Verbindung zu diesen Webseiten:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimentelle Regeln"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "Kann Warnungen oder Abstürze verursachen. Standardmäßig deaktiviert."> -<!ENTITY https-everywhere.chrome.add_rule "Erstelle eine Regel für diese Seite"> -<!ENTITY https-everywhere.chrome.add_new_rule "Erstelle eine neue Regel für diese Seite"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Benutze immer https für diesen host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Erweiterte Optionen anzeigen"> -<!ENTITY https-everywhere.chrome.hide_advanced "Erweiterte Optionen ausblenden"> -<!ENTITY https-everywhere.chrome.rule_name "Regelname"> -<!ENTITY https-everywhere.chrome.regex "Übereinstimmende regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Weiterleiten nach"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Abbrechen"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/de/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/de/https-everywhere.properties deleted file mode 100644 index 224162a..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/de/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = HTTPS Everywhere aktivieren -https-everywhere.menu.globalDisable = HTTPS Everywhere deaktivieren -https-everywhere.menu.enableDisable = Regeln aktivieren / deaktivieren -https-everywhere.menu.noRules = (Keine Regeln für diese Seite) -https-everywhere.menu.unknownRules = (Regeln für diese Seite unbekannt) -https-everywhere.toolbar.hint = HTTPS Everywhere ist nun aktiv. Sie können es für bestimmte Seiten ein- oder ausschalten, indem Sie auf das Symbol in der Adresszeile klicken. -https-everywhere.migration.notification0 = Um eine wichtige Korrektur zu implementieren, wird diese Aktualisierung Ihre Regeleinstellungen von HTTPS Everywhere zurücksetzen. -https-everywhere.menu.ruleset-tests = Regelesatztests von HTTPS Everywhere starten diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/de/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/de/ssl-observatory.dtd deleted file mode 100644 index 697a8c1..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/de/ssl-observatory.dtd +++ /dev/null @@ -1,95 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details und Datenschutzinformationen"> -<!ENTITY ssl-observatory.popup.later "Später nachfragen"> -<!ENTITY ssl-observatory.popup.no "Nein"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere kann Angriffe gegen Ihren Browser erkennen, -indem es die Zertifikate, die Sie empfangen, zum SSL-Observatory sendet. -Funktion aktivieren?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Soll HTTPS Everywhere SSL-Observatory benutzen?"> - -<!ENTITY ssl-observatory.popup.yes "Ja"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"Es ist kein Problem, diese Option zu aktivieren, es sei denn, -Sie befinden sich in einem sehr aufdringlichen Firmennetzwerk:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Sicher, es sei denn, Sie benutzen ein Firmennetzwerk mit geheimen Intranet-Servernamen:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Zertifikate senden und überprüfen, die nicht von Stammzertifizierungsstellen ausgestellt wurden"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"Es ist sicher (und eine gute Idee), diese Option zu aktivieren, es sei denn, Sie benutzen ein aufdringliches Firmennetzwerk oder Kaspersky Antiviren-Software, die Sie beim Browsen mittels eines TLS-Proxyservers und einer privaten Stammzertifizierungsstelle überwacht. Wenn diese Option in einem solchen Netzwerk aktiviert ist, könnten Sie Hinweise, in Form der dadurch erstellten eindeutigen Zertifikate, auf die durch diesen Proxyserver besuchten https:// Domains hinterlassen."> - -<!ENTITY ssl-observatory.prefs.anonymous "Zertifikate mit Tor überprüfen, um Anonymität zu bewahren"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Zertifikate mit Tor überprüfen, um Anonymität zu bewahren (benötigt Torbutton)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"Diese Option macht die Installation von Tor und Torbutton erforderlich"> - -<!ENTITY ssl-observatory.prefs.asn -"Dem SSL-Observatory mitteilen, welchen Internetanbieter Sie verwenden, wenn Sie ein neues Zertifikat zu sehen bekommen"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"Diese Option verwendet die »Autonome Systemzahl« Ihres Netzwerks. Das hilft uns, Angriffe gegen HTTPS zu orten und festzustellen, ob es sich um Angriffe von Netzwerken in Ländern wie Iran und Syrien handelt, in denen solche Angriffe vergleichsweise häufig sind."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Eine Warnung anzeigen, wenn die Überprüfung ein von Ihrem Browser widerrufenes Zertifikates entdeckt, welches dieser nicht erkennt."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"Dies wird Zertifikate in bekannten Sperrlisten überprüfen. Leider können wir nicht garantieren, dass wir alle widerrufenen Zertifikate markieren können, aber wenn Sie eine Warnung sehen, besteht eine große Wahrscheinlichkeit das etwas nicht stimmt."> - -<!ENTITY ssl-observatory.prefs.done "Fertig"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere kann EFFs SSL-Observatory verwenden. Das ermöglicht uns 1. die Erkennung von »Mann-in-der-Mitte«-Angriffen und damit eine Verbesserung der Internetsicherheit, indem Kopien der HTTPS-Zertifikate an das SSL-Observatory gesendet werden; und 2. können wir Sie bei unsicheren Verbindungen oder Angriffen gegen Ihren Browser warnen."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"Beispiel: Wenn Sie https://www.irgendetwas.com besuchen, kann das SSL-Observatory lediglich feststellen, dass irgendjemand www.irgendetwas.com besucht hat, aber nicht wer es war oder welche genauen Informationen aufgerufen wurden. Für mehr Informationen, mit der Maus über diese Option fahren:"> - -<!ENTITY ssl-observatory.prefs.hide "Erweiterte Optionen ausblenden"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Zertifikate auch überprüfen, wenn Tor nicht verfügbar ist"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"Wir bemühen uns, die Daten dennoch anonym zu halten, aber diese Option ist weniger sicher."> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Zertifikate für nicht öffentliche DNS-Namen senden und überprüfen"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Wenn diese Option nicht aktiviert ist, wird das Observatory keine Zertifikate für Domain-Namen aufnehmen, die es nicht über das DNS-System auflösen kann."> - -<!ENTITY ssl-observatory.prefs.show "Erweiterte Optionen anzeigen"> - -<!ENTITY ssl-observatory.prefs.title "SSL-Observatory-Einstellungen"> - -<!ENTITY ssl-observatory.prefs.use "SSL-Observatory verwenden?"> -<!ENTITY ssl-observatory.warning.title "WARNUNG von EFFs SSL-Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Zertifikatskette anzeigen"> -<!ENTITY ssl-observatory.warning.okay "Ich verstehe"> -<!ENTITY ssl-observatory.warning.text "EFFs SSL-Observatory hat eine Warnung zu dem oder den HTTPS-Zertifikat(en) dieser Seite veröffentlicht:"> -<!ENTITY ssl-observatory.warning.defense "Wenn Sie auf dieser Seite angemeldet sind, kann es empfehlenswert sein, das Passwort zu ändern, sobald Sie eine sichere Verbindung haben. (Diese Warnungen können im »SSL-Observatory«-Reiter in den HTTPS-Everywhere-Einstellungen abgeschaltet werden.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Selbst signierte Zertifikate senden und überprüfen"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"Dies wird empfohlen; kryptographische Probleme sind in selbst signierten eingebetteten Geräten besonders häufig."> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/dz/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/dz/https-everywhere.dtd deleted file mode 100644 index 93d66ce..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/dz/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancel"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/dz/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/dz/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/dz/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/dz/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/dz/ssl-observatory.dtd deleted file mode 100644 index 69f1cfd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/dz/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/el/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/el/https-everywhere.dtd deleted file mode 100644 index f7e8a51..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/el/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "Σχετικά με το HTTPS Παντού"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Κρυπτογραφήστε τον Παγκόσμιο Ιστό! Χρησιμοποιήστε ασφάλεια HTTPS σε πολλούς δικτυακούς τόπους."> -<!ENTITY https-everywhere.about.version "Έκδοση"> -<!ENTITY https-everywhere.about.created_by "Δημιουργήθηκε από"> -<!ENTITY https-everywhere.about.and ", και"> -<!ENTITY https-everywhere.about.librarians "Βιβλιοθήκες για κανόνες"> -<!ENTITY https-everywhere.about.add_new_rule "Προσθήκη νέου κανόνα"> -<!ENTITY https-everywhere.about.thanks "Ευχαριστούμε τους"> -<!ENTITY https-everywhere.about.many_contributors "Πολύ συνεργάτες, συμπεριλαμβανομένου"> -<!ENTITY https-everywhere.about.noscript "Επίσης, κομμάτια του HTTPS Everywhere είναι βασισμένα στον κώδικα NoScript, από τον Giorgio Maone και άλλους. Τους ευχαριστούμε για την καταπληκτική δουλειά τους!"> -<!ENTITY https-everywhere.about.contribute "Αν σας αρέσει το HTTPS Everywhere, δοκιμάστε"> -<!ENTITY https-everywhere.about.donate_tor "Δωρίστε στο Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "ή"> -<!ENTITY https-everywhere.about.donate_eff "Δωρίστε στο EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Δωρεά στο EFF"> -<!ENTITY https-everywhere.menu.about "Σχετικά με το HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "Προτιμήσεις για το Παρατηρητήριο SSL"> -<!ENTITY https-everywhere.menu.globalEnable "Ενεργοποίηση του HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Απενεργοποίηση του HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Αποκλεισμός όλων των μη κρυπτογραφημένων αιτημάτων"> -<!ENTITY https-everywhere.menu.showCounter "Εμφάνιση Μετρητή"> -<!ENTITY https-everywhere.menu.viewAllRules "Προβολή όλων των Κανόνων"> - -<!ENTITY https-everywhere.prefs.title "Προτιμήσεις του HTTPS Everywhere"> -<!ENTITY https-everywhere.prefs.enable_all "Ενεργοποίηση όλων"> -<!ENTITY https-everywhere.prefs.disable_all "Απενεργοποίηση όλων"> -<!ENTITY https-everywhere.prefs.reset_defaults "Επαναφορά προεπιλεγμένων κανόνων"> -<!ENTITY https-everywhere.prefs.search "Αναζήτηση"> -<!ENTITY https-everywhere.prefs.site "Δικτυακός τόπος"> -<!ENTITY https-everywhere.prefs.notes "Σημειώσεις"> -<!ENTITY https-everywhere.prefs.list_caption "Ποιοι κανόνες ανακατεύθυνσης σε HTTPS να εφαρμοστούν;"> -<!ENTITY https-everywhere.prefs.enabled "Ενεργοποιημένο"> -<!ENTITY https-everywhere.prefs.ruleset_howto "Μπορείτε να μάθετε πώς να γράφετε τους δικούς σας κανόνες (ώστε να υποστηρίξετε και άλλους δικτυακούς τόπους)"> -<!ENTITY https-everywhere.prefs.here_link "εδώ"> -<!ENTITY https-everywhere.prefs.toggle "Εναλλαγή"> -<!ENTITY https-everywhere.prefs.reset_default "Επαναφορά προεπιλογών"> -<!ENTITY https-everywhere.prefs.view_xml_source "Προβολή του Πηγαίου Κώδικα XML"> - -<!ENTITY https-everywhere.chrome.stable_rules "Σταθεροί κανόνες "> -<!ENTITY https-everywhere.chrome.stable_rules_description "Εξαναγκασμένη κρυπτογραφημένη σύνδεση με αυτές τις σελίδες:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Πειραματικοί κανόνες "> -<!ENTITY https-everywhere.chrome.experimental_rules_description "Μπορεί να προκαλέσει προειδοποιήσεις ή κατάρευση. Απενεργοποιημένο από προεπιλογή."> -<!ENTITY https-everywhere.chrome.add_rule "Προσθήκη κανόνα για αυτήν την σελίδα "> -<!ENTITY https-everywhere.chrome.add_new_rule "Προσθήκη νέου κανόνα για αυτήν την σελίδα "> -<!ENTITY https-everywhere.chrome.always_https_for_host "Πάντα https για αυτόν τον host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Εμφάνιση προχωρημένων "> -<!ENTITY https-everywhere.chrome.hide_advanced "Απόκρυψη προχωρημένων "> -<!ENTITY https-everywhere.chrome.rule_name "Όνομα Κανόνα"> -<!ENTITY https-everywhere.chrome.regex "Ταιριαστές εκφράσεις "> -<!ENTITY https-everywhere.chrome.redirect_to "Ανακατεύθυνση στο "> -<!ENTITY https-everywhere.chrome.status_cancel_button "Ακύρωση "> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/el/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/el/https-everywhere.properties deleted file mode 100644 index 507fcbd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/el/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Ενεργοποίηση του HTTPS Everywhere -https-everywhere.menu.globalDisable = Απενεργοποίηση του HTTPS Everywhere -https-everywhere.menu.enableDisable = Ενεργοποίηση / Απενεργοποίηση των κανόνων -https-everywhere.menu.noRules = (Δεν υπάρχουν κανόνες για αυτή την σελίδα) -https-everywhere.menu.unknownRules = (Κανόνες για αυτή τη σελίδα: Άγνωστοι) -https-everywhere.toolbar.hint = Το HTTPS Everywhere ειναι τωρα ενεργοποιημενο. Μπορείτε να το αλλάξετε με βάση την τοποθεσία ανά τοποθεσία, κάνοντας κλικ στο εικονίδιο στη γραμμή διευθύνσεων. -https-everywhere.migration.notification0 = Αυτή η ενημέρωση επαναφέρει τις ρυθμίσεις κανόνων του HTTPS Everywhere στις προεπιλεγμένες τιμές, με σκοπό να εφαρμοστεί μια κρίσιμη διόρθωση. -https-everywhere.menu.ruleset-tests = Εκτέλεση HTTPS Παντού Δοκιμές Κανόνων diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/el/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/el/ssl-observatory.dtd deleted file mode 100644 index cc44089..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/el/ssl-observatory.dtd +++ /dev/null @@ -1,100 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Λεπτομέρειες και Πληροφορίες Ιδιωτικότητας"> -<!ENTITY ssl-observatory.popup.later "Θέλω να Ενημερωθώ Αργότερα"> -<!ENTITY ssl-observatory.popup.no "Όχι"> - -<!ENTITY ssl-observatory.popup.text "Το HTTPS Everywhere μπορεί να εντοπίσει επιθέσεις -εναντίον του φυλλομετρητή σου στέλνοντας τα πιστοποιητικά που λαμβάνεις -στο Παρατηρητήριο. Επιθυμείς ενεργοποίηση;"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Επιθυμείς το HTTPS Everywhere να χρησιμοποιεί το Παρατηρητήριο SSL;"> - -<!ENTITY ssl-observatory.popup.yes "Ναι"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"Η ενεργοποίηση της επιλογής είναι ασφαλής, εκτός αν χρησιμοποιείς εταιρικό δίκτυο -υψηλής παρεμβατικότητας:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Η ενεργοποίηση της επιλογής είναι ασφαλής, εκτός αν χρησιμοποιείς εταιρικό δίκτυο με μυστικά ονόματα διακομιστών:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Υποβολή και έλεγχος πιστοποιητικών υπογεγραμμένων από μη-εγκεκριμένες Αρχές Πιστοποίησης πιστοποιητικών"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"Είναι ασφαλές (και καλή ιδέα) να ενεργοποιηθεί η συγκεκριμένη επιλογή, εκτός αν χρησιμοποιείς εταιρικό δίκτυο υψηλής παρεμβατικότητας ή το λογισμικό προστασίας από ιούς 'Kaspersky' το οποίο παρακολουθεί την περιήγηση μέσω ενός TLS διακομιστή μεσολάβησης και μιας ιδιωτικής Αρχής Πιστοποίησης πιστοποιητικών. Αν ενεργοποιηθεί σε ένα τέτοιο δίκτυο, μπορεί να δημοσιοποιήσει στοιχεία για το ποια https:// ονόματα ιστοτόπων επισκέφθηκες μέσω αυτού του διακομιστή μεσολάβησης, εξαιτίας της μοναδικότητας των πιστοποιητικών που θα παράγει. Γι' αυτό το έχουμε αφήσει εξ' αρχής απενεργοποιημένο."> - -<!ENTITY ssl-observatory.prefs.anonymous "Έλεγχος πιστοποιητικών χρησιμοποιώντας το Tor για εξασφάλιση ανωνυμίας"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Έλεγχος πιστοποιητικών χρησιμοποιώντας το Tor για εξασφάλιση ανωνυμίας (απαιτείται η εγκατάσταση του Torbutton)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"Η συγκεκριμένη επιλογή απαιτεί την εγκατάσταση του Tor και του Torbutton"> - -<!ENTITY ssl-observatory.prefs.asn -"Όταν βλέπεις ένα νέο πιστοποιητικό, πες στο Παρατηρητήριο με ποιον Πάροχο Υπηρεσιών Διαδικτύου έχεις συνδεθεί."> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"Η συγκεκριμένη επιλογή θα ανακτήσει και θα αποστείλει τον "Αυτόνομο Αριθμό Συστήματος" (Autonomous System number) του δικτύου σου. Αυτό θα μας βοηθήσει να εντοπίσουμε επιθέσεις εναντίον του HTTPS και να καθορίσουμε αν έχουν παρατηρηθεί επιθέσεις από μέρη όπως η Συρία και το Ιράν όπου αυτές οι επιθέσεις είναι συγκριτικά πιο συνηθισμένες."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Εμφάνιση προειδοποίησης όταν το Παρατηρητήριο εντοπίζει ένα πιστοποιητικό που έχει ανακληθεί, που δεν το έχει δει ο φυλλομετρητής σου"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"Αυτό θα αντιπαραβάλει τα επιλεγμένα πιστοποιητικά με την Λίστα Ανακλημένων Πιστοποιητικών. Δυστυχώς, δεν μπορούμε να εγγυηθούμε ότι θα έχει σημειωθεί κάθε ανακλημένο πιστοποιητικό, αλλα αν δείτε κάποια προειδοποίηση υπάρχει μια μεγάλη πιθανότητα κάτι να είναι λάθος."> - -<!ENTITY ssl-observatory.prefs.done "Έγινε"> - -<!ENTITY ssl-observatory.prefs.explanation -"Το HTTPS Everywhere μπορεί να χρησιμοποιήσει το Παρατηρητήριο SSL του EFF, το οποίο πραγματοποιεί τα εξής: (1) -στέλνει αντίγραφα των πιστοποιητικών HTTPS στο Παρατηρητήριο, για να μας βοηθήσει να ανιχνεύσουμε επιθέσεις 'ενδιάμεσου παρατηρητή' και να βελτιώσει την ασφάλεια του Παγκόσμιου Ιστού (2) -μας επιτρέπει να σε προειδοποιούμε σχετικά με μη-ασφαλείς συνδέσεις ή επιθέσεις στο φυλλομετρητή σου."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"Για παράδειγμα, όταν επισκέπτεσαι το https://www.example.com, το πιστοποιητικό -που λαμβάνει το Παρατηρητήριο θα δείξει ότι κάποιος κάποιος επισκέφθηκε -τον ιστότοπο www.something.com, αλλά όχι ποιος επισκέφθηκε τον ιστότοπο ή ποια συγκεκριμένη σελίδα -είδε. Σύρε το ποντίκι πάνω από τις επιλογές για περισσότερες πληροφορίες:"> - -<!ENTITY ssl-observatory.prefs.hide "Απόκρυψη επιλογών για προχωρημένους"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Έλεγχος πιστοποιητικών ακόμα κι αν το Tor δεν είναι διαθέσιμο "> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"Συνεχίζουμε την προσπάθεια να κρατήσουμε ανώνυμα τα δεδομένα, αλλά αυτή η επιλογή είναι λιγότερο ασφαλής"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Υποβολή και έλεγχος πιστοποιητικών για μη δημόσια DNS ονόματα"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Εκτός αν η συγκεκριμένη επιλογή ενεργοποιηθεί, το Παρατηρητήριο δε θα καταγράφει Πιστοποιητικά για ονόματα που δε θα μπορεί να εξακριβώσει μέσω του συστήματος DNS"> - -<!ENTITY ssl-observatory.prefs.show "Προβολή επιλογών για προχωρημένους"> - -<!ENTITY ssl-observatory.prefs.title "Προτιμήσεις Παρατηρητηρίου SSL"> - -<!ENTITY ssl-observatory.prefs.use "Να χρησιμοποιηθεί το Παρατηρητήριο;"> -<!ENTITY ssl-observatory.warning.title "ΠΡΟΕΙΔΟΠΟΙΗΣΗ από το Παρατηρητήριο SSL του EFF"> -<!ENTITY ssl-observatory.warning.showcert "Προβολή της αλυσίδας πιστοποιητικών"> -<!ENTITY ssl-observatory.warning.okay "Καταλαβαίνω"> -<!ENTITY ssl-observatory.warning.text "Το Παρατηρητήριο SSL του EFF έχει εκδώσει μια προειδοποίηση σχετικά με το πιστοποιητικό HTTPS του συγκεκριμένου ιστότοπου:"> -<!ENTITY ssl-observatory.warning.defense "Εαν έχετε συνδεθεί σε αυτή την σελίδα, προτείνεται να αλλάξετε τον κωδικό σας μόλις αποκτήσετε ασφαλή σύνδεση. (Αυτές οι προειδοποιήσεις μπορούν να απενεργοποιηθούν στην καρτέλα "Παρατηρητήριο SSL" στον διάλογο ρυθμίσεων του HTTPS Everywhere.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Υποβολή και αυτο-υπογεγραμμένα πιστοποιητικά"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"Συνιστώμενη ενέργεια· τα κρυπτογραφικά προβλήματα είναι ιδιαιτέρως κοινά στις αυτο-υπογεγραμμένες ενσωματωμένες συσκευές"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/el_GR/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/el_GR/https-everywhere.dtd deleted file mode 100644 index 9a63c45..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/el_GR/https-everywhere.dtd +++ /dev/null @@ -1,47 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.source.downloading "Downloading"> -<!ENTITY https-everywhere.source.filename "Filename"> -<!ENTITY https-everywhere.source.unable_to_download "Unable to download source."> - -<!ENTITY https-everywhere.popup.title "HTTPS Everywhere 4.0development.11 notification"> -<!ENTITY https-everywhere.popup.paragraph1 "Oops. You were using the stable version of HTTPS Everywhere, but we might have accidentally upgraded you to the development version in our last release."> -<!ENTITY https-everywhere.popup.paragraph2 "Would you like to go back to stable?"> -<!ENTITY https-everywhere.popup.paragraph3 "We'd love it if you continued using our development release and helped us make HTTPS Everywhere better! You might find there are a few more bugs here and there, which you can report to https-everywhere@eff.org. Sorry about the inconvenience, and thank you for using HTTPS Everywhere."> -<!ENTITY https-everywhere.popup.keep "Keep me on the development version"> -<!ENTITY https-everywhere.popup.revert "Download the latest stable version"> - -<!ENTITY https-everywhere.ruleset-tests.status_title "HTTPS Everywhere Ruleset Tests"> -<!ENTITY https-everywhere.ruleset-tests.status_cancel_button "Cancel"> -<!ENTITY https-everywhere.ruleset-tests.status_start_button "Start"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/el_GR/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/el_GR/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/el_GR/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/en/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/en/https-everywhere.dtd deleted file mode 100644 index 93d66ce..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/en/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancel"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/en/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/en/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/en/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/en/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/en/ssl-observatory.dtd deleted file mode 100644 index a425677..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/en/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -'When you see a new certificate, tell the Observatory which ISP you are connected to'> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -'This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common.'> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense 'If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)'> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/en_GB/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/en_GB/https-everywhere.dtd deleted file mode 100644 index 93d66ce..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/en_GB/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancel"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/en_GB/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/en_GB/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/en_GB/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/en_GB/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/en_GB/ssl-observatory.dtd deleted file mode 100644 index e983913..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/en_GB/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there is a good chance that something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/eo/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/eo/https-everywhere.dtd deleted file mode 100644 index 9188cbf..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/eo/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "Pri HTTPS-Ĉie"> -<!ENTITY https-everywhere.about.ext_name "HTTPS-Ĉie"> -<!ENTITY https-everywhere.about.ext_description "Ĉifrigu la reton! Aŭtomate uzu HTTPS‐sekurecon ĉe multaj retejoj."> -<!ENTITY https-everywhere.about.version "Versio"> -<!ENTITY https-everywhere.about.created_by "Kreita de"> -<!ENTITY https-everywhere.about.and ", kaj"> -<!ENTITY https-everywhere.about.librarians "Bibliotekoj de regularo"> -<!ENTITY https-everywhere.about.add_new_rule "Aldoni novan regulon"> -<!ENTITY https-everywhere.about.thanks "Dankojn al"> -<!ENTITY https-everywhere.about.many_contributors "Plej pli da kontribuintoj, inklude"> -<!ENTITY https-everywhere.about.noscript "Krom tio, partoj de HTTPS-Ĉie estas bazitaj sur kodo de NoScript de Giorgio MANOE kaj aliaj. Ni danku por ilia bonega laboro!"> -<!ENTITY https-everywhere.about.contribute "Se vi ŝatas HTTPS-Ĉie, vi devus konsideri"> -<!ENTITY https-everywhere.about.donate_tor "Donaci al Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "eo"> -<!ENTITY https-everywhere.about.or "aŭ"> -<!ENTITY https-everywhere.about.donate_eff "Donaci al EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donaci al EFF"> -<!ENTITY https-everywhere.menu.about "Pri HTTPS-Ĉie"> -<!ENTITY https-everywhere.menu.observatory "Agordoj de SSL-Observejo"> -<!ENTITY https-everywhere.menu.globalEnable "Enŝalti HTTPS-Ĉie"> -<!ENTITY https-everywhere.menu.globalDisable "Malŝalti HTTPS-Ĉie"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Bloki ĉiujn neĉifritajn petojn"> -<!ENTITY https-everywhere.menu.showCounter "Montri nombrilon"> -<!ENTITY https-everywhere.menu.viewAllRules "Montri ĉiujn regulojn"> - -<!ENTITY https-everywhere.prefs.title "Agordoj de HTTPS-Ĉie"> -<!ENTITY https-everywhere.prefs.enable_all "Enŝalti ĉiujn"> -<!ENTITY https-everywhere.prefs.disable_all "Malŝalti ĉiujn"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reŝargi al aprioraj"> -<!ENTITY https-everywhere.prefs.search "Serĉi"> -<!ENTITY https-everywhere.prefs.site "Retejo"> -<!ENTITY https-everywhere.prefs.notes "Notoj"> -<!ENTITY https-everywhere.prefs.list_caption "Kiuj reguloj pri HTTPS-alidirektado aplikiĝi?"> -<!ENTITY https-everywhere.prefs.enabled "Enŝaltita"> -<!ENTITY https-everywhere.prefs.ruleset_howto "Vi povas lerni kiel krei viajn proprajn regularojn (por aldoni subtenon por aliaj retejoj)"> -<!ENTITY https-everywhere.prefs.here_link "ĉi tie"> -<!ENTITY https-everywhere.prefs.toggle "Ŝalti"> -<!ENTITY https-everywhere.prefs.reset_default "Restarigi apriorajn"> -<!ENTITY https-everywhere.prefs.view_xml_source "Vidi XML-fonton"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stabilaj reguloj"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Devigi ĉifritan konekton al tiuj retejoj"> -<!ENTITY https-everywhere.chrome.experimental_rules "Eksperimentaj reguloj"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "Povas kaŭzi avertojn aŭ malfunkciojn. Apriore malŝaltita."> -<!ENTITY https-everywhere.chrome.add_rule "Aldoni regulon por ĉi tiu retejo"> -<!ENTITY https-everywhere.chrome.add_new_rule "Aldoni novan regulon por ĉi tiu retejo"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Ĉiam uzi https por ĉi tiu retejo"> -<!ENTITY https-everywhere.chrome.host "Servilo"> -<!ENTITY https-everywhere.chrome.show_advanced "Montri altnivelajn"> -<!ENTITY https-everywhere.chrome.hide_advanced "Kaŝi altnivelajn"> -<!ENTITY https-everywhere.chrome.rule_name "Nomo de regulo"> -<!ENTITY https-everywhere.chrome.regex "Kongrua regula esprimo"> -<!ENTITY https-everywhere.chrome.redirect_to "Aldirekti al"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Rezigni"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/eo/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/eo/https-everywhere.properties deleted file mode 100644 index 0f15076..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/eo/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Ŝalti HTTPS-Ĉie -https-everywhere.menu.globalDisable = Malŝalti HTTPS-Ĉie -https-everywhere.menu.enableDisable = Ŝalti/malŝalti regulojn -https-everywhere.menu.noRules = (neniu regulo por ĉi tiu paĝo) -https-everywhere.menu.unknownRules = (reguloj por ĉi tiu paĝo estas nekonataj) -https-everywhere.toolbar.hint = HTTPS-Ĉie estas nun aktiva. Vi povas baskuligi ĝin laŭ retejo alklakante la piktogramon en la adresbreto. -https-everywhere.migration.notification0 = Por funkciigi gravan flikaĵon, ĉi tiu ĝisdatigo reŝargas la preferojn de viaj reguloj por HTTPS-Ĉie al la aprioraj valoroj. -https-everywhere.menu.ruleset-tests = Fari la provojn de la HTTPS-Ĉie Regularo diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/eo/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/eo/ssl-observatory.dtd deleted file mode 100644 index be25fda..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/eo/ssl-observatory.dtd +++ /dev/null @@ -1,92 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Detaloj kaj informoj pri privateco"> -<!ENTITY ssl-observatory.popup.later "Demandi min poste"> -<!ENTITY ssl-observatory.popup.no "Ne"> - -<!ENTITY ssl-observatory.popup.text "HTTPS-Ĉie povas detekti atakojn kontraŭ via retumilo per sendi ricevitajn atestilojn al la Observejo. Ĉu aktivigi ĉi tion?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Ĉu HTTPS-Ĉie devas uzi la SSL-Observejon?"> - -<!ENTITY ssl-observatory.popup.yes "Jes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"Estas sekure enŝalti ĉi tion, escepte se vi uzas tre malmildan firmaan reton:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Sekura, escepte se vi uzas firmaan reton kun sekretaj intraretaj nomoj de serviloj:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Alŝuti kaj kontroli atestilojn subskribitajn de nekutimaj ĉefaj atestilaj aŭtoritatoj"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"Estas sekure (kaj konsilinde) enŝalti ĉi tiun agordon, escepte se vi uzas blokatajn firmaajn reton aŭ kontraŭvirusan programon Kaspersky, kiu observas vian foliumadon per TLS-prokurilo kaj privata ĉefa Atestila Aŭtoritato (CA). Se enŝaltita ĉe tia reto, ĉi tiu agordo povas publikigi kiujn https:// domajnojn vi vizitis per ĉi tiu prokurilo, pro unikaj atestiloj kreitaj de ĝi. Do ni lasas ĉi tion apriore malŝaltita."> - -<!ENTITY ssl-observatory.prefs.anonymous "Kontroli atestilojn anonime per Tor"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Kontroli atestilojn anonime per Tor-reto (postulas Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"Ĉi tiu eblo postulas instalitan kaj rulantan Tor"> - -<!ENTITY ssl-observatory.prefs.asn -"Kiam vi vidas novan atestilon, informi la Observejon pri kiu interret-provizanton (ISP) vi estas konektita"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"Ĉi tio legos kaj sendos la "Aŭtonoman Sisteman Numeron" (ASN) de via reto. Ĉi tio helpos al ni trovi atakojn kontraŭ HTTPS kaj ĉu ni ricevas observaĵojn de retoj el ejoj kiel Irano aŭ Sirio, kie atakoj ofte okazas."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Montri averton kiam la Observejo detektos senvalidigitan atestilon ne rimarkitan de via foliumilo"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"Ĉi tio kontrolos alŝutitajn atestilojn kontraŭ konatajn listojn de senvalidigitaj atestiloj. Bedaŭrinde ni ne povas garantii, ke senvalidigita atestilo estos markita, tamen se vi vidos averton, probable io estos malbone."> - -<!ENTITY ssl-observatory.prefs.done "Preta"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS-Ĉie povas uzi SSL-Observejon de EFF. Ĉi tio agas dumaniere: (1) sendas kopiojn de HTTPS-atestiloj al la Observejo por helpi al ni detekti atakojn 'ulo inter' kaj plibonigi sekurecon de la interreto; kaj (2) informas vin pri nesekuraj konektoj kaj atakoj kontraŭ via foliumilo."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"Ekzemplo: kiam vi vizitas https://www.ekzemplo.com la atestilo ricevita de la Observejo indikos, ke iu vizitis www.ekzemplo.com, sed ne kiu vizitis la retejon aŭ kiun precizan paĝon li foliumis. Musumu agordojn por pliaj detaloj:"> - -<!ENTITY ssl-observatory.prefs.hide "Kaŝi altnivelajn agordojn"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Kontroli atestilojn ankaŭ se Tor ne uzeblas"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"Ni plue provos anonimigi datumojn, sed ĉi tiu agordo estas malpli sekura"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Alŝuti kaj kontroli atestilojn de nepublikaj DNS-nomoj"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Escepte se ĉi tiu eblo estas enŝaltita, la Observejo ne registros atestilojn por nomoj, kiuj oni ne povas venigi per DNS-sistemo."> - -<!ENTITY ssl-observatory.prefs.show "Montri altnivelajn agordojn"> - -<!ENTITY ssl-observatory.prefs.title "Agordoj de SSL-Observejo"> - -<!ENTITY ssl-observatory.prefs.use "Ĉu uzi la Observejon?"> -<!ENTITY ssl-observatory.warning.title "AVERTO el SSL-Observejo de EFF"> -<!ENTITY ssl-observatory.warning.showcert "Montri atestilan ĉenon"> -<!ENTITY ssl-observatory.warning.okay "Mi komprenas"> -<!ENTITY ssl-observatory.warning.text "SSL-Observejo de EFF avertos pri HTTPS-atestilo(j) por ĉi tiu retejo:"> -<!ENTITY ssl-observatory.warning.defense "Se vi estas ensalutinta al ĉi tiu retejo, estas konsilinde ŝanĝi pasvorton kiam vi havos sekuran konekton. (Ĉi tiuj avertojn oni povas malŝalti en la langeto "SSL-Observejo" en agordoj de HTTPS-Ĉie.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Alŝuti kaj kontroli mem-subskribitajn atestilojn"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"Ĉi tio estas konsilinda, ĉar ĉifraj problemoj ofte okazas ĉe mem-subskribitaj enkorpigitaj aparatoj"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/es/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/es/https-everywhere.dtd deleted file mode 100644 index ec51838..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/es/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "Acerca de HTTPS Everywhere (HTTPS en todos lados)"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "¡Cifre la Web! Utilice automáticamente la seguridad HTTPS en muchos sitios."> -<!ENTITY https-everywhere.about.version "Versión"> -<!ENTITY https-everywhere.about.created_by "Creado por"> -<!ENTITY https-everywhere.about.and ", y"> -<!ENTITY https-everywhere.about.librarians "Bibliotecarios de reglas"> -<!ENTITY https-everywhere.about.add_new_rule "Añadir nueva regla"> -<!ENTITY https-everywhere.about.thanks "Agradecimientos para"> -<!ENTITY https-everywhere.about.many_contributors "Muchos muchos colaboradores, incluyendo"> -<!ENTITY https-everywhere.about.noscript "Además, partes de HTTPS Everywhere están basadas en código de NoScript, de Giorgio Maone y otros. ¡Estamos agradecidos por su excelente trabajo!"> -<!ENTITY https-everywhere.about.contribute "Si le agrada HTTPS Everywhere (HTTPS en cualquier sitio), podría considerar"> -<!ENTITY https-everywhere.about.donate_tor "Donar a Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "es"> -<!ENTITY https-everywhere.about.or "o"> -<!ENTITY https-everywhere.about.donate_eff "Donar a EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donar a EFF"> -<!ENTITY https-everywhere.menu.about "Acerca de HTTPS Everywhere (HTTPS en cualquier sitio)"> -<!ENTITY https-everywhere.menu.observatory "Opciones del Observatorio SSL"> -<!ENTITY https-everywhere.menu.globalEnable "Activar HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Desactivar HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Bloquear todas las peticiones no cifradas"> -<!ENTITY https-everywhere.menu.showCounter "Mostrar contador"> -<!ENTITY https-everywhere.menu.viewAllRules "Ver todas las reglas"> - -<!ENTITY https-everywhere.prefs.title "Preferencias de HTTPS Everywhere"> -<!ENTITY https-everywhere.prefs.enable_all "Activar todo"> -<!ENTITY https-everywhere.prefs.disable_all "Desactivar todo"> -<!ENTITY https-everywhere.prefs.reset_defaults "Restablecer configuraciones predeterminadas"> -<!ENTITY https-everywhere.prefs.search "Buscar"> -<!ENTITY https-everywhere.prefs.site "Sitio"> -<!ENTITY https-everywhere.prefs.notes "Notas"> -<!ENTITY https-everywhere.prefs.list_caption "¿Qué reglas de redirección HTTPS deberían aplicarse?"> -<!ENTITY https-everywhere.prefs.enabled "Activado"> -<!ENTITY https-everywhere.prefs.ruleset_howto "Puede aprender a escribir sus propias reglas (para añadir soporte para otros sitios web)"> -<!ENTITY https-everywhere.prefs.here_link "aquí"> -<!ENTITY https-everywhere.prefs.toggle "Activar/Desactivar"> -<!ENTITY https-everywhere.prefs.reset_default "Restablecer configuración predeterminada"> -<!ENTITY https-everywhere.prefs.view_xml_source "Ver código XML"> - -<!ENTITY https-everywhere.chrome.stable_rules "Reglas estables"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Fuerzan conexiones cifradas a estos sitios web:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Reglas estables"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "Pueden causar advertencias u obstaculizaciones. Deshabilitado por defecto."> -<!ENTITY https-everywhere.chrome.add_rule "Añadir una regla para este sitio"> -<!ENTITY https-everywhere.chrome.add_new_rule "Añadir una nueva regla para este sitio"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Usar siempre https para este servidor"> -<!ENTITY https-everywhere.chrome.host "Servidor:"> -<!ENTITY https-everywhere.chrome.show_advanced "Mostrar avanzadas"> -<!ENTITY https-everywhere.chrome.hide_advanced "Ocultar avanzadas"> -<!ENTITY https-everywhere.chrome.rule_name "Nombre de la regla"> -<!ENTITY https-everywhere.chrome.regex "Expresión regular (regex) coincidente"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirigir a"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancelar"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/es/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/es/https-everywhere.properties deleted file mode 100644 index f33637f..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/es/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Activar HTTPS Everywhere -https-everywhere.menu.globalDisable = Desactivar HTTPS Everywhere -https-everywhere.menu.enableDisable = Activar / Desactivar reglas -https-everywhere.menu.noRules = (No hay reglas para esta página) -https-everywhere.menu.unknownRules = (Se desconocen reglas para esta página) -https-everywhere.toolbar.hint = HTTPS Everywhere está ahora activo. Puede activarlo/desactivarlo sitio por sitio haciendo clic en el icono de la barra de direcciones. -https-everywhere.migration.notification0 = Para implementar una reparación crucial, esta actualización restablece sus preferencias de reglas de HTTPS Everywhere a sus valores predeterminados. -https-everywhere.menu.ruleset-tests = Ejecutar pruebas del conjunto de reglas de HTTPS Everywhere diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/es/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/es/ssl-observatory.dtd deleted file mode 100644 index 2278eca..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/es/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Detalles e información de privacidad"> -<!ENTITY ssl-observatory.popup.later "Preguntarme luego"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere puede detectar ataques -contra su navegador enviando los certificados que reciba -al Observatorio. ¿Desea activarlo?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"¿Debe HTTPS Everywhere utilizar el Observatorio SSL?"> - -<!ENTITY ssl-observatory.popup.yes "Sí"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"Activar esto es seguro, a menos que use -una red corporativa muy intrusiva:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Seguro, a menos que use una red corporativa con nombres de servidores de intranet secretos:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Envía y verifica los certificados firmados por autoridades de certificación raíz (ACs/CAs) no estándares"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"Es seguro (y una buena idea) activar esta opción, a menos que utilice una red corporativa intrusiva o el software antivirus Kaspersky que monitorea su navegación con un proxy TLS y una Autoridad de Certificación raíz privada. Si se activa en una red así, esta opción podría evidenciar qué dominios https:// fueron visitados por medio de ese proxy, debido a los certificados únicos que produciría. Por ello viene desactivado por defecto."> - -<!ENTITY ssl-observatory.prefs.anonymous "Verificar certificados utilizando Tor para mantener anonimato"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Verificar certificados utilizando Tor para mantener anonimato (requiere Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"Esta opción requiere tener Tor instalado y ejecutándose"> - -<!ENTITY ssl-observatory.prefs.asn -"Cuando vea un nuevo certificado, informr al Observatorio a cual Proveedor de Internet está conectado"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"Esto obtendrá y enviará el "número de Sistema Autónomo" (AS) de su red. Esto nos ayudará a ubicar ataques contra HTTPS, y a determinar si tenemos observaciones desde redes en lugares como Irán o Siria donde los ataques son comparativamente más comunes."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Mostrar una advertencia cuando el Observatorio detecte un certificado revocado no detectado por su navegador"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"Esto comprobará los certificados enviados con las Listas de Revocación de Certificados (CRL) conocidas. Desafortunadamente no podemos garantizar que señalarán todos los certificados revocados, pero si se le muestra una advertencia hay muchas probabilidades de que haya algo mal."> - -<!ENTITY ssl-observatory.prefs.done "Listo"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere puede utilizar el Observatorio SSL de EFF. Esto hace dos cosas: -(1) envía copias de los certificados HTTPS al Observatorio, para ayudarnos -a detectar ataques de 'hombre en el medio' (MitM) y mejorar la seguridad de la Web; y -(2) nos permite advertirte de conexiones inseguras o ataques sobre tu navegador."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"Por ejemplo cuando visitas https://www.algo.com, el certificado -recibido por el Observatorio indicará que alguien visitó -www.algo.com, pero no quién visitó el sitio, o qué página específica -miró. Pasa el ratón sobre las opciones para mayores detalles:"> - -<!ENTITY ssl-observatory.prefs.hide "Ocultar opciones avanzadas"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Verificar certificados incluso si Tor no está disponible"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"Aún trataremos de mantener anónimos los datos, pero esta opción es menos segura"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Enviar y verificar certificados para nombres no publicados en DNS"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"A menos que esta opción esté marcada el Observatorio no registrará certificados para nombres que no pueda resolver a través del sistema DNS."> - -<!ENTITY ssl-observatory.prefs.show "Mostrar opciones avanzadas"> - -<!ENTITY ssl-observatory.prefs.title "Opciones del Observatorio SSL"> - -<!ENTITY ssl-observatory.prefs.use "¿Utilizar el Observatorio?"> -<!ENTITY ssl-observatory.warning.title "ADVERTENCIA del Observatorio SSL de la EFF"> -<!ENTITY ssl-observatory.warning.showcert "Mostrar la cadena del certificado"> -<!ENTITY ssl-observatory.warning.okay "Entiendo"> -<!ENTITY ssl-observatory.warning.text "El Observatorio SSL de la EFF ha emitido una advertencia sobre el(los) certificado(s) para este sitio:"> -<!ENTITY ssl-observatory.warning.defense "Si has iniciado sesión en este sitio es aconsejable que cambies tu contraseña cuando tengas una conexión segura. (Estas advertencias pueden deshabilitarse en la pestaña "Observatorio SSL" del cuadro de preferencias de HTTPS Everywhere)."> - -<!ENTITY ssl-observatory.prefs.self_signed -"Enviar y verificar certificados auto-firmados"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"Esto es recomendable; los problemas de cifrado son especialmente comunes en dispositivos embebidos auto-firmados"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/es_AR/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/es_AR/https-everywhere.dtd deleted file mode 100644 index cb7258c..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/es_AR/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "Acerca de HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "¡Encriptar la Web! Usar seguridad HTTPS automáticamente en la mayoría de los sitios."> -<!ENTITY https-everywhere.about.version "Versión"> -<!ENTITY https-everywhere.about.created_by "Creado por"> -<!ENTITY https-everywhere.about.and ", y"> -<!ENTITY https-everywhere.about.librarians "Librería de conjunto de reglas"> -<!ENTITY https-everywhere.about.add_new_rule "Agregar Nueva Regla"> -<!ENTITY https-everywhere.about.thanks "Gracias a"> -<!ENTITY https-everywhere.about.many_contributors "Muchisimos contribuyentes, incluyendo"> -<!ENTITY https-everywhere.about.noscript "También, partes de HTTPS Everywhere están basadas en el codigo de NoScript, de Giorgio Maone y otras. ¡Agradecemos su excelente trabajo!"> -<!ENTITY https-everywhere.about.contribute "Si te gusta HTTPS Everywhere, puedes considerar"> -<!ENTITY https-everywhere.about.donate_tor "Donar a Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "o"> -<!ENTITY https-everywhere.about.donate_eff "Donar a EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donar a EFF"> -<!ENTITY https-everywhere.menu.about "Acerca de HTTPS en todos lados"> -<!ENTITY https-everywhere.menu.observatory "Preferencias del Observatorio SSL"> -<!ENTITY https-everywhere.menu.globalEnable "Habilitar HTTPS En todos lados"> -<!ENTITY https-everywhere.menu.globalDisable "Deshabilitar HTTPS En todos lados"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Bloquear todas las solicitudes descifradas"> -<!ENTITY https-everywhere.menu.showCounter "Mostrar contador"> -<!ENTITY https-everywhere.menu.viewAllRules "Ver todas las Reglas"> - -<!ENTITY https-everywhere.prefs.title "Preferencias de HTTPS Everywhere"> -<!ENTITY https-everywhere.prefs.enable_all "Habilitar todo"> -<!ENTITY https-everywhere.prefs.disable_all "Deshabilitar todo"> -<!ENTITY https-everywhere.prefs.reset_defaults "Restablecer valores predeterminados"> -<!ENTITY https-everywhere.prefs.search "Búsqueda"> -<!ENTITY https-everywhere.prefs.site "Sitio"> -<!ENTITY https-everywhere.prefs.notes "Notas"> -<!ENTITY https-everywhere.prefs.list_caption "Cuales reglas de redirección HTTPS debe aplicar?"> -<!ENTITY https-everywhere.prefs.enabled "Activo"> -<!ENTITY https-everywhere.prefs.ruleset_howto "Puedes aprender cómo escribir tus propios conjuntos de reglas (para agregar soporte a otros sitios)"> -<!ENTITY https-everywhere.prefs.here_link "aquí"> -<!ENTITY https-everywhere.prefs.toggle "Cambiar"> -<!ENTITY https-everywhere.prefs.reset_default "Restablecer valores predeterminados"> -<!ENTITY https-everywhere.prefs.view_xml_source "Ver código XML"> - -<!ENTITY https-everywhere.chrome.stable_rules "Reglas estables "> -<!ENTITY https-everywhere.chrome.stable_rules_description "Forzar conexiones cifradas a estos sitios web:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Reglas experimentales"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "Puede causar alertas o incluso dejar de funcionar. Deshabilitada por defecto."> -<!ENTITY https-everywhere.chrome.add_rule "Agregar una regla para este sitio"> -<!ENTITY https-everywhere.chrome.add_new_rule "Agregar una nueva regla para este sitio"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Siempre usar https para este sitio"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Mostrar avanzado"> -<!ENTITY https-everywhere.chrome.hide_advanced "Ocultar avanzado"> -<!ENTITY https-everywhere.chrome.rule_name "Nombre de la Regla"> -<!ENTITY https-everywhere.chrome.regex "Expresión regular coincidente"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirigiar a"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancelar"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/es_AR/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/es_AR/https-everywhere.properties deleted file mode 100644 index f8c178e..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/es_AR/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Habilitar HTTPS en todos lados -https-everywhere.menu.globalDisable = Deshabilitar HTTPS en todos lados -https-everywhere.menu.enableDisable = Habilitar / Deshabilitar reglas -https-everywhere.menu.noRules = (No hay reglas para esta página) -https-everywhere.menu.unknownRules = (Reglas desconocidas para esta página) -https-everywhere.toolbar.hint = HTTPS Everywhere está ahora activo. Podés cambiar esto sitio a sitio haciendo click en el ícono junto a la barra de direcciones. -https-everywhere.migration.notification0 = Para poder implementar una solución, esta actualización reajusta tus preferencias de HTTPS Everywhere a los valores por defecto. -https-everywhere.menu.ruleset-tests = Realizar pruebas de juegos de reglas de HTTPS Everywhere diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/es_AR/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/es_AR/ssl-observatory.dtd deleted file mode 100644 index 6551a4d..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/es_AR/ssl-observatory.dtd +++ /dev/null @@ -1,99 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Detalles e información privada"> -<!ENTITY ssl-observatory.popup.later "Preguntarme después"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "En todos lados HTTPS puede detectar ataques -contra su navegador enviando los certificados que recibe al -observatorio. ¿Desea Activarlo?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"¿Deberia HTTPS Everywhere usar el Observatorio SSL?"> - -<!ENTITY ssl-observatory.popup.yes "Si"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"Es seguro habilitar esta opción, a menos que -se encuentre en una red corporativa muy invasiva:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Seguro, a menos que utilice una red corporativa con nombres secretos de servidor de intranet:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Aplicar y verificar los certificados firmados por CAs no estandar"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"Es seguro (y una buena idea) habilitar esta opción, a menos que uses una red corporativa intrusiva o el antivirus Kaspersky que monitorea tu navegación con un proxy TLS y un Certificado de Autoridad de raíz privado. Si se habilita en dicha red, esta opción puede presentar evidencia de que dominios https:// estaban siendo visitados a través del proxy, debido a los certificados únicos que produciría. Por eso lo dejamos apagado por defecto."> - -<!ENTITY ssl-observatory.prefs.anonymous "Compruebe certificados usando Tor para el anonimato"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Compruebe certificados usando Tor para el anonimato (requiere Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"Esta opción requiere Tor para ser instalado y en ejecución"> - -<!ENTITY ssl-observatory.prefs.asn -"Cuando veas un nuevo certificado, avisale al Observatorio a que ISP estás conectado"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"Esto buscará y enviará el "número de sistema autónomo" de su red. El fin es ayudar a localizar ataques contra HTTPS y determinar si tenemos observaciones de redes en lugares como Irán y Siria donde los mismos son muy comunes."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Mostrar una advertencia cuando el Observatorio detecte un certificado revocado no atrapado por tu navegador"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"Esto verificará los certificados presentados contra las listas de revocación de certificados conocidas. Desafortunadamente no podemos garantizar que marcaremos todos los certificados revocados, pero si ves una advertencia hay una buena probabilidad de que algo esté mal."> - -<!ENTITY ssl-observatory.prefs.done "Hecho"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS En cada lugar se puede utilizar el Observatorio SSL de EFF. Esto hace dos cosas: (1) envía copias de los certificados HTTPS al Observatorio, para ayudarnos a detectar ataques de "hombre en el medio" y mejorar la seguridad de la Web; -Y (2) nos permite advertirle sobre conexiones inseguras o ataques en su navegador."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"Por ejemplo, cuando visite https://www.something.com, el certificado -recibido por el Observatorio indicará que alguien visitó -www.something.com, pero no quién visitó el sitio, ni qué página -específica miraron. Pase el mouse sobre las opciones para obtener más detalles:"> - -<!ENTITY ssl-observatory.prefs.hide "Ocultar opciones avanzadas"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Comprobar certificados aunque Tor no esté disponible"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"Seguiremos tratando de mantener los datos anónimos, pero esta opción es menos segura"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Enviar y comprobar certificados para nombres DNS no-públicos"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"A menos que se verifique esta opción, el Observatorio no registrará certificados para nombres que no pueda resolver a través del sistema DNS."> - -<!ENTITY ssl-observatory.prefs.show "Mostrar opciones avanzadas"> - -<!ENTITY ssl-observatory.prefs.title "Preferencias del Observatorio SSL"> - -<!ENTITY ssl-observatory.prefs.use "¿Usar el Observatorio?"> -<!ENTITY ssl-observatory.warning.title "ADVERTENCIA del Observatorio SSL de EFF"> -<!ENTITY ssl-observatory.warning.showcert "Mostrar la cadena de certificado"> -<!ENTITY ssl-observatory.warning.okay "Entiendo"> -<!ENTITY ssl-observatory.warning.text "El Observatorio SSL de EFF ha emitido una advertencia sobre el o los certificado(s) de HTTPS para este sitio:"> -<!ENTITY ssl-observatory.warning.defense "Si ha iniciado sesión en este sitio, puede ser aconsejable cambiar su contraseña una vez que tenga una conexión segura. (Estas advertencias se pueden desactivar en la pestaña "Observatorio SSL" del diálogo de preferencias HTTPS Everywhere)."> - -<!ENTITY ssl-observatory.prefs.self_signed -"Enviar y verificar firma de certificados"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"Recomendación: Los problemas criptográficos son especialmente comunes en dispositivos con auto firma"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/es_CL/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/es_CL/https-everywhere.dtd deleted file mode 100644 index 75b0b1e..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/es_CL/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "Acerca De HTTPS Donde Sea"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Versión"> -<!ENTITY https-everywhere.about.created_by "Creado por"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Agradecimientos a"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "Acerca De HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "Preferencias del Observatorio SSL"> -<!ENTITY https-everywhere.menu.globalEnable "Habilitar HTTPS en todas partes"> -<!ENTITY https-everywhere.menu.globalDisable "Deshabilitar HTTPS en todas partes"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Habilitar todo"> -<!ENTITY https-everywhere.prefs.disable_all "Dehabilitar todo"> -<!ENTITY https-everywhere.prefs.reset_defaults "Restaurar predeterminados"> -<!ENTITY https-everywhere.prefs.search "Búsqueda"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notas"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Habilitado"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "aquí"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancelar"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/es_CL/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/es_CL/https-everywhere.properties deleted file mode 100644 index 0699b5f..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/es_CL/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Habilitar HTTPS en todas partes -https-everywhere.menu.globalDisable = Deshabilitar HTTPS en todas partes -https-everywhere.menu.enableDisable = Habilitar o deshabilitar regla -https-everywhere.menu.noRules = (No hay reglas para esta página) -https-everywhere.menu.unknownRules = (Reglas desconocidas para esta página) -https-everywhere.toolbar.hint = HTTPS en todas partes está ahora habilitado, Puede deshabitarlo o habilitarlo en lado a lado usando el ícono en la barra de dirección. -https-everywhere.migration.notification0 = En orden para implementar este crucial arreglo, Las reglas de HTTPS en todas partes se restablecerán a sus valores iniciales. -https-everywhere.menu.ruleset-tests = Corriendo prueba de reglas de HTTPS en todas partes diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/es_CL/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/es_CL/ssl-observatory.dtd deleted file mode 100644 index 8770fc6..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/es_CL/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Detalles e Informacion de Privacidad"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "Preferencias del Observatorio SSL"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/es_CO/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/es_CO/https-everywhere.dtd deleted file mode 100644 index 5ce333d..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/es_CO/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "Acerca de HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Creado por"> -<!ENTITY https-everywhere.about.and ", y"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Añadir nueva regla"> -<!ENTITY https-everywhere.about.thanks "Gracias a"> -<!ENTITY https-everywhere.about.many_contributors "Muchos muchos colaboradores, incluyendo"> -<!ENTITY https-everywhere.about.noscript "También, porciones de HTTPS Everywhere están basadas en el código de NoScript, por Giorgio Maone y otros. Nosotros estamos agradecidos por su excelente trabajo."> -<!ENTITY https-everywhere.about.contribute "Si te gusta HTTPS Everywhere, podrías considerar"> -<!ENTITY https-everywhere.about.donate_tor "Donando a Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "o"> -<!ENTITY https-everywhere.about.donate_eff "Donando a EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donar a EFF"> -<!ENTITY https-everywhere.menu.about "Acerca de HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Habilitar HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Desabilitar HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "Ver Todas Las Reglas"> - -<!ENTITY https-everywhere.prefs.title "Preferencias de HTTPS Everywhere"> -<!ENTITY https-everywhere.prefs.enable_all "Habilitar Todo"> -<!ENTITY https-everywhere.prefs.disable_all "Deshabilitar Todo"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reestablecer a Valores Predeterminados"> -<!ENTITY https-everywhere.prefs.search "Buscar"> -<!ENTITY https-everywhere.prefs.site "Sitio"> -<!ENTITY https-everywhere.prefs.notes "Notas"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Habilitado"> -<!ENTITY https-everywhere.prefs.ruleset_howto "Usted puede aprender cómo escribir sus propios conjuntos de reglas (para añadir soporte para otros sitios web)"> -<!ENTITY https-everywhere.prefs.here_link "aquí"> -<!ENTITY https-everywhere.prefs.toggle "Alternar"> -<!ENTITY https-everywhere.prefs.reset_default "Reestablecer a Valor Predeterminado"> -<!ENTITY https-everywhere.prefs.view_xml_source "Ver Fuente XML"> - -<!ENTITY https-everywhere.chrome.stable_rules "Reglas estables"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Forzar conecciones encriptadas para estos sitios web:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Reglas experimentales"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "Puede causar advertencias o roturas. Deshabilitado por defecto."> -<!ENTITY https-everywhere.chrome.add_rule "Añadir una regla para este sitio"> -<!ENTITY https-everywhere.chrome.add_new_rule "Añadir una nueva regla para este sitio"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Siempre usar https para este host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Mostrar avanzado"> -<!ENTITY https-everywhere.chrome.hide_advanced "Ocultar avanzado"> -<!ENTITY https-everywhere.chrome.rule_name "Nombre de regla"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redireccionar a"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancelar"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/es_CO/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/es_CO/https-everywhere.properties deleted file mode 100644 index d89ecad..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/es_CO/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Habilitar HTTPS Everywhere -https-everywhere.menu.globalDisable = Desabilitar HTTPS Everywhere -https-everywhere.menu.enableDisable = Habilitar/Desabilitar Reglas -https-everywhere.menu.noRules = (No hai reglas para esta página) -https-everywhere.menu.unknownRules = (Las Reglas para esta pagina no existe) -https-everywhere.toolbar.hint = HTTPS Everywhere estai ativo ahora. Tu puedes aumentar uno site de otro site basico clicando o icone en la barra de direccion -https-everywhere.migration.notification0 = en ordem para implementar una arregla importante, isto recomeça la melhoria en tu regla preferencial del HTTPS Everywhere para su valores por defecto. -https-everywhere.menu.ruleset-tests = Começando HTTPS Everywhere testes del tu conjunto de reglas. diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/es_CO/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/es_CO/ssl-observatory.dtd deleted file mode 100644 index 80df729..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/es_CO/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Detalles e información privada. "> -<!ENTITY ssl-observatory.popup.later "Preguntame mas tarde"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Si"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Verificar certificados usando Tor para anonimidad"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Hecho"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Ocultar opciones avanzadas"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "Entiendo"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/es_MX/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/es_MX/https-everywhere.dtd deleted file mode 100644 index af8aa3c..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/es_MX/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "Sobre HTTPS Universal"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Cifra la Red! Automáticamente utiliza seguridades HTTPS en multiples sitios."> -<!ENTITY https-everywhere.about.version "Versión"> -<!ENTITY https-everywhere.about.created_by "Creado por"> -<!ENTITY https-everywhere.about.and ", y"> -<!ENTITY https-everywhere.about.librarians "Bibliotecarios de conjuntos de reglas"> -<!ENTITY https-everywhere.about.add_new_rule "Añade Nueva Regla"> -<!ENTITY https-everywhere.about.thanks "Gracias a"> -<!ENTITY https-everywhere.about.many_contributors "Muchisimos contribuidores, incluyendo "> -<!ENTITY https-everywhere.about.noscript "Ademas, las porciones de HTTPS Everywhere se basan en el codijo de NoScript escrito por Giorgio Maone y otoros. ¡Estamos muy agredcidos para su trabajo excellente!"> -<!ENTITY https-everywhere.about.contribute "Si te gusta HTTPS Everywhere, podrias considerar"> -<!ENTITY https-everywhere.about.donate_tor "Donar a Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "o"> -<!ENTITY https-everywhere.about.donate_eff "Donando a EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Dona a EFF"> -<!ENTITY https-everywhere.menu.about "Sobre HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "Preferencias del Observatorio SSL"> -<!ENTITY https-everywhere.menu.globalEnable "Activar HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Desactivar HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Bloquear todos los pedidos no-encriptados"> -<!ENTITY https-everywhere.menu.showCounter "Enseña contador "> -<!ENTITY https-everywhere.menu.viewAllRules "Ver todo las reglas"> - -<!ENTITY https-everywhere.prefs.title "Preferencias de HTTPS Everywhere"> -<!ENTITY https-everywhere.prefs.enable_all "Habilitar Todos"> -<!ENTITY https-everywhere.prefs.disable_all "Desactivar Todos"> -<!ENTITY https-everywhere.prefs.reset_defaults "Restaurar a Valores Predeterminados"> -<!ENTITY https-everywhere.prefs.search "Busqueda"> -<!ENTITY https-everywhere.prefs.site "Sitio"> -<!ENTITY https-everywhere.prefs.notes "Notas"> -<!ENTITY https-everywhere.prefs.list_caption "Cuales reglas de redirection de HTTPS deberían ser aplicadas?"> -<!ENTITY https-everywhere.prefs.enabled "Habilitado"> -<!ENTITY https-everywhere.prefs.ruleset_howto "Tu pueudes aprender como a escribir tus propios conjuntos de reglas (para añadir apoyo para los otros sitios de web)"> -<!ENTITY https-everywhere.prefs.here_link "aqui"> -<!ENTITY https-everywhere.prefs.toggle "Alternar"> -<!ENTITY https-everywhere.prefs.reset_default "Restaurar a Estado Predeterminado"> -<!ENTITY https-everywhere.prefs.view_xml_source "Ver fuente XML"> - -<!ENTITY https-everywhere.chrome.stable_rules "Reglas Estables"> -<!ENTITY https-everywhere.chrome.stable_rules_description "A fuerza utilizar conexiones encriptado para estas sitios de web"> -<!ENTITY https-everywhere.chrome.experimental_rules "Reglas Experimentales"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "Puede causar advertencias o rotura. Desactivado de manera predeterminada"> -<!ENTITY https-everywhere.chrome.add_rule "Añadir una regla para este sitio"> -<!ENTITY https-everywhere.chrome.add_new_rule "Añadir una regla neuva para este sitio"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Utilizar siempre https para este host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Enseña avanzado"> -<!ENTITY https-everywhere.chrome.hide_advanced "Esconde avanzado"> -<!ENTITY https-everywhere.chrome.rule_name "nombre de regla"> -<!ENTITY https-everywhere.chrome.regex "Regex coincidente"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirigir a "> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancelar"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/es_MX/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/es_MX/https-everywhere.properties deleted file mode 100644 index 3e48801..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/es_MX/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Activar HTTPS Everywhere -https-everywhere.menu.globalDisable = Desactivar HTTPS Everywhere -https-everywhere.menu.enableDisable = Activar / Desactivar Reglas -https-everywhere.menu.noRules = (No hay reglas para de esta página) -https-everywhere.menu.unknownRules = (Reglas para Esta Página Desconocido) -https-everywhere.toolbar.hint = HTTPS Everywhere esta ahora activo. Puede alternarlo sitio por sitio haciendo clic en el icono en la barra de direcciones. -https-everywhere.migration.notification0 = Para implementar un ajuste fundamental, esta actualización reajusta sus preferencias de reglas de HTTPS Everywhere a sus valores predeterminados. -https-everywhere.menu.ruleset-tests = Ejecute HTTPS Everywhere pruebas de conjuntos de reglas diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/es_MX/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/es_MX/ssl-observatory.dtd deleted file mode 100644 index 5af0034..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/es_MX/ssl-observatory.dtd +++ /dev/null @@ -1,102 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Detalles e información de privacidad"> -<!ENTITY ssl-observatory.popup.later "Preguntame después"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS en todos lados pueden detectar ataques -hacia tu explorador mandando los certificados que tu recibes -al -Observatorio. Activar esto? "> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Debería HTTPS en todos lados usar el Observatorio SSL?"> - -<!ENTITY ssl-observatory.popup.yes "Si"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"Es seguro activar esto, a menos de que usted use una -red corporativa muy intrusa:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Seguro, a menos de que usted use una red corporativa con nombres secretos para servidores de intranet: "> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Enviar y revisar certificados firmados por CAs de raíz no estándar"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"Es seguro (y una buena idea) activar esta opción, a menos de que usted use una red corporativa invasiva o el software antivirus de Kaspersky que monitorea tu explorador con un proxy a TLS y una Autorización de Certificado de raíz privada. Si activa tal red, esta opción puede publicar evidencia de que los dominios de https:// fueron visitados por ese proxy por los certificados únicos que producirá. "> - -<!ENTITY ssl-observatory.prefs.anonymous "Revisa certificados usando Tor para el anonimato"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Revisa certificados usando Tor para el anonimato (requiere Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"Esta opción requiere que Tor este instalado y corriendo. "> - -<!ENTITY ssl-observatory.prefs.asn -"Cuando veas un nuevo certificado, dile al Observatorio a cual ISP estas conectado"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"Esto traera y enviara el "Numero de Sistema Autónomo" de tu red. Esto nos ayudara a localizar ataques hacia HTTPS, y determinar si tenemos observaciones de redes en lugares como Iran y Siria donde los ataques son comparativamente comunes. "> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Muestra una advertencia cuando el Observatorio detecta un certificado revocado que no fue atrapado por tu explorador."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"Esto revisara los certificados enviados con una lista de Certificados Revocados. Desafortunadamente, no podemos garantizar que indicaremos cada certificado revocado pero si ves una advertencia lo mas seguro es que algo este mal."> - -<!ENTITY ssl-observatory.prefs.done "Listo"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS en todos lados pueden usar el Observatorio EFF's SSL. Esto hace dos cosas: (1) -Envia copias de los certificados HTTPS al Observatorio para ayudarnos -a detectar "el hombre en el medio" de los ataques y mejorar la seguridad de la Web; y (2) -nos deja advertirte de conexiones inseguras o ataques a tu explorador. "> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"Por ejemplo, cuando visitas http://www.something.com, el certificado -recibido por el Observatorio indicara que alguien visito -www.something.com, pero no quien visito el sitio, o que pagina especifica ellos -vieron. Situa el raton sobre las opciones para ver mas detalles:"> - -<!ENTITY ssl-observatory.prefs.hide "Esconder opciones avanzadas"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Revisar certificados incluso cuando Tor no esta disponible"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"Seguiremos intentando mantener la información anónima, pero esta opción es menos segura. "> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Envia y revisa los certificados para nombres no públicos de DNS"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"A menos de que esta opción este marcada, el Observatorio no recordara certificados para nombres que no puede resolver por medio del sistema DNS. "> - -<!ENTITY ssl-observatory.prefs.show "Muestra opciones avanzadas"> - -<!ENTITY ssl-observatory.prefs.title "Preferencias del Observatorio SSL"> - -<!ENTITY ssl-observatory.prefs.use "Usar el Observatorio?"> -<!ENTITY ssl-observatory.warning.title "ADVERTENCIA del Observador EFF's SSL"> -<!ENTITY ssl-observatory.warning.showcert "Muestra la cadena de certificado"> -<!ENTITY ssl-observatory.warning.okay "Entiendo"> -<!ENTITY ssl-observatory.warning.text "El Observatorio EEF's SSL ha mandado una advertencia de los certificados de HTTPS para este sitio:"> -<!ENTITY ssl-observatory.warning.defense "Si has entrado a este sitio, es recomendable que cambies tu clave una vez que tengas una conexion segura. (Estas advertencias pueden ser desactivadas en la pestaña del "Observatorio SSL" del dialogo de preferencias para HTTPS en todos lados.) "> - -<!ENTITY ssl-observatory.prefs.self_signed -"Enviar y revisar certificados auto-asignados"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"Esto es recomendado; problemas criptográficos son especialmente comunes en dispositivos auto-asignados integrados. "> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/es_NI/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/es_NI/https-everywhere.dtd deleted file mode 100644 index 9a63c45..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/es_NI/https-everywhere.dtd +++ /dev/null @@ -1,47 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.source.downloading "Downloading"> -<!ENTITY https-everywhere.source.filename "Filename"> -<!ENTITY https-everywhere.source.unable_to_download "Unable to download source."> - -<!ENTITY https-everywhere.popup.title "HTTPS Everywhere 4.0development.11 notification"> -<!ENTITY https-everywhere.popup.paragraph1 "Oops. You were using the stable version of HTTPS Everywhere, but we might have accidentally upgraded you to the development version in our last release."> -<!ENTITY https-everywhere.popup.paragraph2 "Would you like to go back to stable?"> -<!ENTITY https-everywhere.popup.paragraph3 "We'd love it if you continued using our development release and helped us make HTTPS Everywhere better! You might find there are a few more bugs here and there, which you can report to https-everywhere@eff.org. Sorry about the inconvenience, and thank you for using HTTPS Everywhere."> -<!ENTITY https-everywhere.popup.keep "Keep me on the development version"> -<!ENTITY https-everywhere.popup.revert "Download the latest stable version"> - -<!ENTITY https-everywhere.ruleset-tests.status_title "HTTPS Everywhere Ruleset Tests"> -<!ENTITY https-everywhere.ruleset-tests.status_cancel_button "Cancel"> -<!ENTITY https-everywhere.ruleset-tests.status_start_button "Start"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/es_NI/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/es_NI/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/es_NI/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/es_NI/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/es_NI/ssl-observatory.dtd deleted file mode 100644 index 9457a96..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/es_NI/ssl-observatory.dtd +++ /dev/null @@ -1,95 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection."> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/et/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/et/https-everywhere.dtd deleted file mode 100644 index 0172c8d..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/et/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "HTTPS Everywhere-ist"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Krüpteeri veeb! Kasuta HTTPS turvalaiendust automaatselt paljudel lehtedel."> -<!ENTITY https-everywhere.about.version "Versioon"> -<!ENTITY https-everywhere.about.created_by "Loodud"> -<!ENTITY https-everywhere.about.and ", ja"> -<!ENTITY https-everywhere.about.librarians "Reeglistiku haldajad"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Tänud"> -<!ENTITY https-everywhere.about.many_contributors "Palju-palju kaastöötajaid, sealhulgas"> -<!ENTITY https-everywhere.about.noscript "Lisaks, HTTPS Everywhere põhineb osaliselt NoScripti koodil, mille autoriks on Giorgio Maone ja teised. Oleme neile tänulikud nende tubli töö eest!"> -<!ENTITY https-everywhere.about.contribute "Kui sulle meeldib HTTPS Everywhere, võiksid kaaluda"> -<!ENTITY https-everywhere.about.donate_tor "Annetust Tor-ile"> -<!ENTITY https-everywhere.about.tor_lang_code "et"> -<!ENTITY https-everywhere.about.or "või"> -<!ENTITY https-everywhere.about.donate_eff "Annetust EFF-ile"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Anneta EFFle"> -<!ENTITY https-everywhere.menu.about "HTTPS Everywhere-ist"> -<!ENTITY https-everywhere.menu.observatory "SSL Jälgija Eelistused"> -<!ENTITY https-everywhere.menu.globalEnable "Luba HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Keela HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Näita loendurit"> -<!ENTITY https-everywhere.menu.viewAllRules "Vaata kõiki reegleid"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Eelistused"> -<!ENTITY https-everywhere.prefs.enable_all "Luba kõik"> -<!ENTITY https-everywhere.prefs.disable_all "Keela kõik"> -<!ENTITY https-everywhere.prefs.reset_defaults "Taasta algseaded"> -<!ENTITY https-everywhere.prefs.search "Otsing"> -<!ENTITY https-everywhere.prefs.site "Leht"> -<!ENTITY https-everywhere.prefs.notes "Märkmed"> -<!ENTITY https-everywhere.prefs.list_caption "Millised HTTPS ümbersuunamis reeglid peaksid olema aktiivsed?"> -<!ENTITY https-everywhere.prefs.enabled "Lubatud"> -<!ENTITY https-everywhere.prefs.ruleset_howto "Sa võid kirjutada isiklikke reegleid (et lisada tuge teistele lehtedele)"> -<!ENTITY https-everywhere.prefs.here_link "siin"> -<!ENTITY https-everywhere.prefs.toggle "lülita"> -<!ENTITY https-everywhere.prefs.reset_default "Taasta vaikeväärtused"> -<!ENTITY https-everywhere.prefs.view_xml_source "Vaata XML lähtekoodi"> - -<!ENTITY https-everywhere.chrome.stable_rules "Sabiilsed reeglid"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Kohusta krüpteeritud ühendus nende veebisaitidega:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Eksperimentaalsed reeglid"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "Võivad põhjustada hoiatusi või mitte töötamist. Vaikimisi keelatud."> -<!ENTITY https-everywhere.chrome.add_rule "Lisa reegel sellele saidile"> -<!ENTITY https-everywhere.chrome.add_new_rule "Lisa uus reegel sellele saidile"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Kasuta selle hostiga alati HTTPSi"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Kuva täiendavad"> -<!ENTITY https-everywhere.chrome.hide_advanced "Peida täiendavad"> -<!ENTITY https-everywhere.chrome.rule_name "Reegli nimi"> -<!ENTITY https-everywhere.chrome.regex "Vastav regulaaravaldis"> -<!ENTITY https-everywhere.chrome.redirect_to "Suuna aadressile"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Katkesta"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/et/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/et/https-everywhere.properties deleted file mode 100644 index 41d4588..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/et/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Luba HTTPS Everywhere -https-everywhere.menu.globalDisable = Keela HTTPS Everywhere -https-everywhere.menu.enableDisable = Luba / Keela Reegel -https-everywhere.menu.noRules = (Selle lehe kohta puuduvad reeglid) -https-everywhere.menu.unknownRules = (Reeglid selle lehe kohta teadmatta) -https-everywhere.toolbar.hint = HTTPS Everywhere on nüüd aktiivne. Sa saad seda lülilitada lehe kaupa vajutsdes ikoonile aadressi real. -https-everywhere.migration.notification0 = Et rakendada tähtsat parandust peame algväärtustama kõik HTTPS Everywhere reeglid. -https-everywhere.menu.ruleset-tests = Käivita HTTPS Everywhere reeglistikku test diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/et/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/et/ssl-observatory.dtd deleted file mode 100644 index dd033be..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/et/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Detailid ja privaatsuse informatsioon"> -<!ENTITY ssl-observatory.popup.later "Küsi minult hiljem"> -<!ENTITY ssl-observatory.popup.no "Ei"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere suudab tuvastada brauseri vastu -suunatud ründeid saates sertifikaadid, mida saadetakse -SSL Observatory serverisse. Kas lülitada see sisse?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Kas HTTPS Everywhere peaks kasutama SSL Observatory teenust?"> - -<!ENTITY ssl-observatory.popup.yes "Jah"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"Selle lubamine on turvaline, välja arvatud siis, -kui kasutad sissetungivat korporatiivvõrku:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Turvaline, välja arvatud siis, kui kasutad korporatiivvõrku salajaste sisevõrgu serverite nimedega:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Saada ja kontrolli ebaharilike juursertifitseerijate allkirjastatud sertifikaate"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"Selle lubamine on turvaline (ja hea mõte), välja arvatud siis, kui sa kasutad sissetungivat korporatiivvõrku või Kaspersky antiviiruse tarkvara, mis monitoorib su veebilehtisemist TLS proksi ja privaatse juursertifitseerija abil. Kui see on lubatud sellises võrgus, siis see säte võib avaldada jälgi, milliseid https:// domeene selle proksi kaudu külastati, sest proksi loob unikaalseid sertifikaate. Seetõttu on see säte vaikimisi välja lülitatud."> - -<!ENTITY ssl-observatory.prefs.anonymous "Kontrolli sertifikaate anonüümsuse säilitamiseks Tor'i kaudu."> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Sertifikaatide kontroll toimub läbi Tor võrgu, et tagada anonüümsus (nõutav Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"See säte nõuab, et Tor on paigaldatud ja töötab"> - -<!ENTITY ssl-observatory.prefs.asn -"Kui te näete uut sertifikaati, öelge observatooriumile mis ISPsse te olete ühendatud"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"See hangib ja saadab su võrgu autonoomse süsteemi numbri. See aitab meil avastada ründeid HTTPSi vastu ja otsustada, kas meid jälgitakse kohtadest nagu Iraan ja Süüria, kus ründed on üsna tavalised."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Näita hoiatust kui observatoorium leiab tühistatud sertifikaadi, mida teie brauser ei märganud"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"See kontrollib, kas saadetud sertifikaat on kirjas tuntud sertifikaaditühistus loendites. Kahjuks ei saa me garanteerida, et me saame märkida kõik tühistatud sertifikaadid, aga kui sa näed hoiatust, siis on üsna kindel, et midagi on valesti."> - -<!ENTITY ssl-observatory.prefs.done "Valmis"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere võib kasutada EFFi SSL Observatory teenust. See teeb kahte asja: (1) -saadab HTTPS sertifikaadi koopia observatooriumisse, et tuvastada -'vahemeest' ja aitab parandada veebi turvalisust; ja (2) -lubab meil sind hoiatada ebaturvaliste ühenduste või su brauseri vastu suunatud rünnete eest."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"Näiteks, kui sa külastada saiti https://www.midagisait.ee, siis observatooriumisse -jõudnud sertifikaat näitab, et keegi on külastanud aadressi -www.mingisait.ee, kuid mitte saidi külastajat või millist lehte ta -seal vaatas. Hiirekursori viimine valikute kohale kuvab lisainfo:"> - -<!ENTITY ssl-observatory.prefs.hide "Peida täiendavad sätted"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Kontrolli sertifikaate kui Tor ei ole saadaval"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"Me üritame hoida andmeid anonnüümsena, aga see seade on vähem turvaline"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Saada ja kontrolli sertifikaate mitte-publik DNS nimedele"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Väljaarvatud kui see seade on sees, observatoorium ei talleta sertifikaate nimedele, mida see ei suuda lahendada läbi DNS süsteemi."> - -<!ENTITY ssl-observatory.prefs.show "Kuva täiendavad sätted"> - -<!ENTITY ssl-observatory.prefs.title "SSL Jälgija Eelistused"> - -<!ENTITY ssl-observatory.prefs.use "Kas kasutada observatooriumit?"> -<!ENTITY ssl-observatory.warning.title "HOIATUS EFF'i SSL Observatory'st"> -<!ENTITY ssl-observatory.warning.showcert "Kuva sertifikaatide ahel"> -<!ENTITY ssl-observatory.warning.okay "Sain aru"> -<!ENTITY ssl-observatory.warning.text "EFFi SSL Observatoorium on välja andnud hoiatuse selle veebilehekülje HTTPS sertifikaatide kohta: "> -<!ENTITY ssl-observatory.warning.defense "Kui sa oled sisse logitud sellesse veebilehekülge, on soovitav vahetada salasõna, siis kui olete saavutanud turvalise ühenduse. (Need hoiatused on võimalik keelata "SSL observatoorium" vahelehel HTTPS Igalpool eelistuste dialoogis.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Saada ja kontrolli enda allkirjastatud sertifikaate"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"See on soovitatav; krüptoprobleemid on eriti tavalised enda allkirjastatud sertifikaatidega, mis asuvad sardsüsteemides"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/eu/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/eu/https-everywhere.dtd deleted file mode 100644 index 1926bc5..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/eu/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "HTTPS Everywhere buruz"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Weba enkriptatu! Automatikoki erabili HTTPS segurtasuna leku askotan."> -<!ENTITY https-everywhere.about.version "Bertsioa"> -<!ENTITY https-everywhere.about.created_by "Sortzaileak"> -<!ENTITY https-everywhere.about.and ", eta"> -<!ENTITY https-everywhere.about.librarians "Arau-sorta Liburuzainak"> -<!ENTITY https-everywhere.about.add_new_rule "Arau berria gehitu"> -<!ENTITY https-everywhere.about.thanks "Eskerrak"> -<!ENTITY https-everywhere.about.many_contributors "Kolaboratzaile pila, barnean"> -<!ENTITY https-everywhere.about.noscript "Gainera, HTTPS Everywhere-en zenbait zati Giorgio Maone eta beste batzuen NoScript kodean oinarritzen dira. Eskerrak eman nahi dizkiegu beraien lan bikainagatik."> -<!ENTITY https-everywhere.about.contribute "HTTPS Everywhere gustoko baduzu, kontutan har zenezake"> -<!ENTITY https-everywhere.about.donate_tor "Torera dohaintza eman"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "edo"> -<!ENTITY https-everywhere.about.donate_eff "EFFra dohaintza eman"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "EFFri dohaintza eman"> -<!ENTITY https-everywhere.menu.about "HTTPS Everywhere buruz"> -<!ENTITY https-everywhere.menu.observatory "SSL Behatokiaren Hobespenak"> -<!ENTITY https-everywhere.menu.globalEnable "HTTPS Everywhere gaitu"> -<!ENTITY https-everywhere.menu.globalDisable "HTTPS Everywhere ezgaitu"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Enkriptatu gabeko eskaera guztiak blokeatu"> -<!ENTITY https-everywhere.menu.showCounter "Kopurua erakutsi"> -<!ENTITY https-everywhere.menu.viewAllRules "Ikusi arau guztiak"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Hobespenak"> -<!ENTITY https-everywhere.prefs.enable_all "Gaitu dena"> -<!ENTITY https-everywhere.prefs.disable_all "Ezgaitu dena"> -<!ENTITY https-everywhere.prefs.reset_defaults "Lehenetsiak berrezarri"> -<!ENTITY https-everywhere.prefs.search "Bilatu"> -<!ENTITY https-everywhere.prefs.site "Lekua"> -<!ENTITY https-everywhere.prefs.notes "Oharrak"> -<!ENTITY https-everywhere.prefs.list_caption "Zein HTTPS berbiderapen arau aplikatu beharko nituzke?"> -<!ENTITY https-everywhere.prefs.enabled "Gaituta"> -<!ENTITY https-everywhere.prefs.ruleset_howto "Zure arau-sortak nola idatzi ikas dezakezu (beste webguneentzako laguntza gehitzeko)"> -<!ENTITY https-everywhere.prefs.here_link "hemen"> -<!ENTITY https-everywhere.prefs.toggle "Aldatu"> -<!ENTITY https-everywhere.prefs.reset_default "Lehenetsia berrezarri"> -<!ENTITY https-everywhere.prefs.view_xml_source "XML Iturria ikusi"> - -<!ENTITY https-everywhere.chrome.stable_rules "Arau egonkorrak"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Behartu konexio enkriptatuak webgune hauetan:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Arau esperimentalak"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "Alarmak edo kalteak eragin dezake. Ezgaitua lehenetsia."> -<!ENTITY https-everywhere.chrome.add_rule "Arau bat gehitu gune honetarako"> -<!ENTITY https-everywhere.chrome.add_new_rule "Arau berri bat gehitu gune honetarako"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Beti erabili https ostalari honetarako"> -<!ENTITY https-everywhere.chrome.host "Ostalaria:"> -<!ENTITY https-everywhere.chrome.show_advanced "Erakutsi aurreratuak"> -<!ENTITY https-everywhere.chrome.hide_advanced "Ezkutatu aurreratuak"> -<!ENTITY https-everywhere.chrome.rule_name "Arauaren izena"> -<!ENTITY https-everywhere.chrome.regex "Bat egiten duen regexa"> -<!ENTITY https-everywhere.chrome.redirect_to "Hona birzuzendu"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Utzi"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/eu/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/eu/https-everywhere.properties deleted file mode 100644 index c85bcab..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/eu/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = HTTPS Everywhere gaitu -https-everywhere.menu.globalDisable = HTTPS Everywhere ezgaitu -https-everywhere.menu.enableDisable = Gaitu / Ezgaitu arauak -https-everywhere.menu.noRules = (Araurik ez gune honetarako) -https-everywhere.menu.unknownRules = (Gune honetarako arauak ezezagunak) -https-everywhere.toolbar.hint = HTTPS Everywhere aktibo dago orain. Gunez-gune bere egoera txandakatu dezakezu nabigazio tresna-barrako ikonoan sakatuz. -https-everywhere.migration.notification0 = Konponketa garrantzitsu bat betearazteko, eguneraketa honek zure HTTPS Everywhere arau hobespenak beren balio lehenetsietara berrezartzen ditu. -https-everywhere.menu.ruleset-tests = Exekutatu HTTPS Everywhere arau-sorta frogak diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/eu/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/eu/ssl-observatory.dtd deleted file mode 100644 index 30187b3..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/eu/ssl-observatory.dtd +++ /dev/null @@ -1,96 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Xehetasunak eta Pribatutasun Informazioa"> -<!ENTITY ssl-observatory.popup.later "Beranduago galdeidazu"> -<!ENTITY ssl-observatory.popup.no "Ez"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywherek zure nabigatzailearen aurkako erasoak antzeman ditzake jaso dituzun ziurtagiriak Behatokira bidaliz. Gaitu hau?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"HTTPS Everywherek SSL Behatokia erabili beharko luke?"> - -<!ENTITY ssl-observatory.popup.yes "Bai"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"Hau gaitzea segurua da, sare korporatibo oso intrusibo bat erabiltzen ez duzun bitartean:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Segurua, sare korporatibo bat intranet zerbitzari izen sekretuekin erabiltzen ez duzun bitartean:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"CA erro ez-estandarrek sinatutako ziurtagiriak egiaztatu eta aurkeztu"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"Aukera hau gaitzea segurua (eta ideia ona) da, sare korporatibo intrusibo bat edo TLS proxy batekin eta Ziurtagiri Aginpide erro pribatu batekin zure nabigazioa jarraitzen duen Kaspersky antibirus softwarea erabiltzen ez duzun bitartean. Horrelako sare batean gaitzen baduzu, aukera honek proxy horren bitartez zein https:// domeinu bisitatu diren argitara dezake, sortuko dituen ziurtagiri bakarrengatik. Beraz itzalita uztea lehentsi dugu."> - -<!ENTITY ssl-observatory.prefs.anonymous "Egiaztatu ziurtagiriak Tor anonimotasunerako erabiliz"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Egiaztatu ziurtagiriak Tor anonimotasunerako erabiliz (Torbutton behar du)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"Aukera honek Tor eta Torbutton instalatuta izatea behar du"> - -<!ENTITY ssl-observatory.prefs.asn -"Ziurtagiri berri bat ikusten duzunean, Behatokiari zein ISPra konektatuta zauden esan"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"Honek zure sarearen "Sistema Autonomo zenbakia" lortu eta bidaliko du. Hau HTTPSren aurkako erasoak aurkitzen lagunduko gaitu, eta erasoak konparatiboki arruntak diren Iran eta Siria bezalako lekuetan behaketak ditugun zehaztu."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Erakutsi abisu bat Behatokiak zure nabigatzaileak harrapatu ez duen ezeztatutako ziurtagiri bat antzematen duenean"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"Honek aurkeztutako ziurtagiriak egiaztatuko ditu Ezeztatutako Ziurtagirien Zerrendan. Zoritxarrez ezin dugu ezeztatutako ziurtagiri guztiak markatuko ditugula bermatu, baina abisu bat ikusten baduzu zerbait oker joan dela susma dezakezu."> - -<!ENTITY ssl-observatory.prefs.done "Eginda"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywherek EFFren SSL Behatokia erabili dezake. Honek bi gauza egiten ditu: (1) -HTTPS ziurtagirien kopiak Behatokira bidaltzen ditu, 'man in the middle' erasoak detektatzen eta Webguneen segurtasuna hobetzen lagun gaitzan; eta (2) -seguruak ez diren konexioetaz edo zure nabigatzailearen aurkako erasoetaz abisa zaitzagun baimentzen digu."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"Esate baterako, https://www.zerbait.com bisitatzen duzunean, Behatokiak jasotzen duen ziurtagiriak - norbait www.zerbait.com bisitatu duela adieraziko du, baina ez nork bisitatu duen, edo zehazki zein orri ikusi duen. -Xehetasun gehiagorako pasa ezazu sagua aukeren gainetik:"> - -<!ENTITY ssl-observatory.prefs.hide "Aukera aurreratuak ezkutatu"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Ziurtagiriak egiaztatu Tor eskuragarri ez badago ere"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"Oraindik datuak anonimoki mantentzen saiatuko gara, baina aukera hau ez da hain segurua"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"DNS izen ez-publikoentzako ziurtagiriak egiaztatu eta aurkeztu"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Aukera hau gaituta ez dagoen bitartean, Behatokiak DNS sistemaren bitartez ebatzi ezin dituen izenentzako ziurtagiriak ez ditu erregistraruko."> - -<!ENTITY ssl-observatory.prefs.show "Aukera aurreratuak erakutsi"> - -<!ENTITY ssl-observatory.prefs.title "SSL Behatokiaren Hobespenak"> - -<!ENTITY ssl-observatory.prefs.use "Behatokia erabili?"> -<!ENTITY ssl-observatory.warning.title "EFFren SSL Behatokiaren ABISUA"> -<!ENTITY ssl-observatory.warning.showcert "Ziurtagiri katea erakutsi"> -<!ENTITY ssl-observatory.warning.okay "Ulertzen dut"> -<!ENTITY ssl-observatory.warning.text "EFFren SSL Behatokiak leku honen HTTPS ziurtagiri(ar)entzako abisua igorri du:"> -<!ENTITY ssl-observatory.warning.defense "Webgune honetan saioa hasi baduzu, komeni litzateke konexio seguru bat duzunean pasahitza aldatzea. (Abisu hauek HTTPS Everywhereren "SSL Behatokia" hobespenen fitxan ezgaitu daitezke.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Bidali eta egiaztatu norberak-sinatutako ziurtagiriak"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"Hau gomendatzen da; arazo kriptografikoak norberak-sinatutako kapsulatutako gailuetan bereziki arruntak dira"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/fa/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/fa/https-everywhere.dtd deleted file mode 100644 index c35ee49..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/fa/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "درباره HTTPS سراسری"> -<!ENTITY https-everywhere.about.ext_name "HTTPS سراسری"> -<!ENTITY https-everywhere.about.ext_description "وب را رمزگذاری کنید! از امنیت HTTPS بصورت خودکار برای بسیاری از وبسایتها استفاده کنید."> -<!ENTITY https-everywhere.about.version "نسخه"> -<!ENTITY https-everywhere.about.created_by "نوشتهشده توسط"> -<!ENTITY https-everywhere.about.and "، و"> -<!ENTITY https-everywhere.about.librarians "کتابداران قوانین"> -<!ENTITY https-everywhere.about.add_new_rule "افزودن قانون جدید"> -<!ENTITY https-everywhere.about.thanks "با تشکر از"> -<!ENTITY https-everywhere.about.many_contributors "بسیار زیادی همکار، از جمله"> -<!ENTITY https-everywhere.about.noscript "همچنین، تکهکدهایی از HTTPS Everywhere براساس کد NoScript توسط Giorgio Maone و دیگران نوشته شده است. ما از کار فوقالعادهشان سپاسگذاریم!"> -<!ENTITY https-everywhere.about.contribute "اگر شما از HTTPS همهجا راضی هستید، پیشنهاد میکنیم"> -<!ENTITY https-everywhere.about.donate_tor "به Tor کمک مالی کنید."> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "يا"> -<!ENTITY https-everywhere.about.donate_eff "به EFF کمک مالی کنید."> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "به EFF کمک مالی کنید."> -<!ENTITY https-everywhere.menu.about "درباره HTTPS سراسری"> -<!ENTITY https-everywhere.menu.observatory "تنظیمهای رصدخانهی SSL"> -<!ENTITY https-everywhere.menu.globalEnable "HTTPS سراسری را فعال کنید "> -<!ENTITY https-everywhere.menu.globalDisable "HTTPS سراسری را غیرفعال کنید"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "مسدود کردن تمامی درخواست های کدگذاری نشده"> -<!ENTITY https-everywhere.menu.showCounter "نمایش شمارنده"> -<!ENTITY https-everywhere.menu.viewAllRules "نمایش همه قوانین "> - -<!ENTITY https-everywhere.prefs.title "ترجیحات HTTPS سراسری"> -<!ENTITY https-everywhere.prefs.enable_all "همهی موارد را فعال کنید"> -<!ENTITY https-everywhere.prefs.disable_all "همهی موارد را غیرفعال کنید"> -<!ENTITY https-everywhere.prefs.reset_defaults "بازنشانی به پیشفرض"> -<!ENTITY https-everywhere.prefs.search "جستجو"> -<!ENTITY https-everywhere.prefs.site "پایگاه"> -<!ENTITY https-everywhere.prefs.notes "یادداشتها"> -<!ENTITY https-everywhere.prefs.list_caption "کدام قوانین تغییر مسیر HTTPS باید اعمال گردد؟"> -<!ENTITY https-everywhere.prefs.enabled "فعال"> -<!ENTITY https-everywhere.prefs.ruleset_howto "شما میتوانید یادبگیرید که مجموعه روالهای خود را بنویسید (تا از وبسایتهای دیگر پشتیبانی کنید)"> -<!ENTITY https-everywhere.prefs.here_link "اینجا"> -<!ENTITY https-everywhere.prefs.toggle "تغییر"> -<!ENTITY https-everywhere.prefs.reset_default "بازنشانی به پیشفرض"> -<!ENTITY https-everywhere.prefs.view_xml_source "مشاهده منبع XML"> - -<!ENTITY https-everywhere.chrome.stable_rules "قوانین پایدار"> -<!ENTITY https-everywhere.chrome.stable_rules_description "اتصالات رمزگذاری برای این وبگاه ها را اجباری کن :"> -<!ENTITY https-everywhere.chrome.experimental_rules "قوانین تجربی"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "ممکن است علت، هشدار و یا شکستگی باشد. غیر فعال به طور پیش فرض."> -<!ENTITY https-everywhere.chrome.add_rule "اضافه کردن یک قانون برای این سایت"> -<!ENTITY https-everywhere.chrome.add_new_rule "اضافه کردن یک قانون جدید برای این سایت"> -<!ENTITY https-everywhere.chrome.always_https_for_host "همیشه از https برای این میزبان استفاده شود"> -<!ENTITY https-everywhere.chrome.host "ميزبان:"> -<!ENTITY https-everywhere.chrome.show_advanced "نمایش پیشرفته"> -<!ENTITY https-everywhere.chrome.hide_advanced "مخفیکردن پیشرفته"> -<!ENTITY https-everywhere.chrome.rule_name "نام قانون"> -<!ENTITY https-everywhere.chrome.regex "عبارتهای منظم منطبق شده"> -<!ENTITY https-everywhere.chrome.redirect_to "تغییر مسیر به"> -<!ENTITY https-everywhere.chrome.status_cancel_button "لغو"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/fa/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/fa/https-everywhere.properties deleted file mode 100644 index d4dd502..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/fa/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = HTTPS همهجا را فعال کنید -https-everywhere.menu.globalDisable = HTTPS همهجا را غیرفعال کنید -https-everywhere.menu.enableDisable = فعال/غیر فعال کردن قوانین -https-everywhere.menu.noRules = (هیچ قانونی برای این صفحه وجود ندارد) -https-everywhere.menu.unknownRules = (قوانین مربوط به این صفحه ناشناخته است) -https-everywhere.toolbar.hint = HTTPS همهجا فعال شد. میتوانید آن را برای هر سایتی که خواستید فعال یا غیرفعال کنید. کافیست روی نمایه آن در نوار آدرس کلیک کنید. -https-everywhere.migration.notification0 = برای این که این بسته به روز رسانی حیاتی عملیاتی شود، تنظیماتی که برای HTTPS Everywhere انجام داده اید به پیش فرض خود بر می گردند. -https-everywhere.menu.ruleset-tests = قوائد نوشته شده برای HTTPS Everywhere را تست کن diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/fa/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/fa/ssl-observatory.dtd deleted file mode 100644 index 64dbb29..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/fa/ssl-observatory.dtd +++ /dev/null @@ -1,92 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "جزییات و حفظ حریم شخصی"> -<!ENTITY ssl-observatory.popup.later "بعدا بپرس"> -<!ENTITY ssl-observatory.popup.no "خیر"> - -<!ENTITY ssl-observatory.popup.text "HTTPS همهجا میتواند جمله به مرورگر شما را از طریق ارسال گواهینامههایی که شما دریافت میکنید به رصدگر کشف کند. آیا میخواهید این امکان فعال شود؟"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"آیا HTTPS همهجا باید از رصدگر SSL استفاده کند؟"> - -<!ENTITY ssl-observatory.popup.yes "بله"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"فعالکردن این گزینه امن است، مگر اینکه شما از یک شبکهی کاری با درجهی نظارت بالا استفاده کنید:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"امن، مگر اینکه شما از یک شبکهی کاری با نامهای مخفی در شبکهی داخلی استفاده کنید:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"گواهینامههای امضا شده توسط نهادهای تایید (CA) غیراستاندارد را برای بررسی ارسال کنید. "> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"این یک انتخاب امن (و یک پیشنهاد خوب) است که شما این گزینه را فعال کنید، مگر اینکه شما از یک شبکهی کاری با درجهی نظارت بالا استفاده کنید یا نرمافزار ضدویروس کاسپرسکی، که رفتار شما روی وب را بهکمک TLS proxy و یک نهاد تایید (CA) خصوصی بازرسی میکند، روی کامپیوتر شما نصب شدهباشد. اگر روی شبکهای مانند آنچه گفتهشد قرار دارید، این گزینه میتوانند این تصور را ایجاد کند که آدرسهای https:// از طریق یک پروکسی باز شدهاند. این بهدلیل گواهینامههای منحصربهفردی است که در این فرایند تولید میشوند. بنابراین، ما این گزینه را بصورت پیشنهاده خاموش کردهایم."> - -<!ENTITY ssl-observatory.prefs.anonymous "استفاده از Tor برای مخفی کردن هویت در زمان آزمایش گواهینامه"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"استفاده از Tor برای مخفی کردن هویت در زمان آزمایش گواهینامه (نیاز به Torbutton دارد)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"برای استفاده از این امکان لازم است Tor و Torbutton نصب شدهباشند"> - -<!ENTITY ssl-observatory.prefs.asn -"ارسال نام ISPی که ارتباط را ایجاد کرده است به رصدگر زمانی که یک گواهینامهی جدید دیده شد"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"این گزینه محتوای Autonomous System number شما را بازیابی کرده و ارسال خواهد کرد. این اطلاع به ما کمک خواهد کرد که حمله علیه HTTPS را مکانیابی کنیم و از این طریق ما خواهیم دانست که آیا این مشاهدات به شبکههایی در مناطقی نظیر ایران و سوریه مربوط هستند یا خیر. حملاتی نظیر آنچه گفتهشد در این مناطق نسبتا معمول هستند."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"هنگامی که رصدگر یک گواهینامهٔ باطل شده که توسط مرورگر شما شناخته نشده است را تشخیص داد، هشدار بده"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"این گزینه گواهینامههای ارسال شده را با فهرست گواهینامههای باطل شده بررسی میکند. متاسفانه ما نمیتوانیم اطمینان دهیم که تمامی گواهینامههای باطل شده را فهرست کنیم، اما اگر شما هشداری میبینید، به احتمال زیاد مشکلی وجود دارد."> - -<!ENTITY ssl-observatory.prefs.done "انجام شد"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS همهجا میتواند از رصدگر SSLی که توسط EFF اداره میشود استفاده کند. این امکان منتهی به دو اقدام میشود. ۱- به اینترتیب نسخههایی از گواهینامههای HTTPS به رصدگر فرستاده میشوند. این مساله به ما این امکان را میدهد که حملات «مردی در میان» را کشف کنیم و به اینترتیب به امنیت وب کمک کنیم. ۲- ما این امکان را خواهیم داشت که به شما دربارهی ارتباطات ناامن یا حملات به مرورگر شما هشدار بدهیم."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"برای مثال، زمانی که شما صفحهی https://www.something.com را بازدید میکنید، گواهینامهای که برای رصدگر ارسال میشود نشان خواهد داد که کسی از www.something.com بازدید کردهاست، اما اینکه دقیقا چهکسی یا از چه صفحهای بازدید کردهاست برای رصدگر دانسته نخواهد بود. موشواره را روی این گزینه ببرید تا اطلاعات بیشتری در این زمینه بگیرید:"> - -<!ENTITY ssl-observatory.prefs.hide "مخفیکردن گزینههای پیشرفته"> - -<!ENTITY ssl-observatory.prefs.nonanon -"آزمایش گواهینامه حتی اگر Tor نیز نصب نشدهباشد"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"ما همچنان تلاش خواهیم کرد که اطلاعات شما را محرمانه نگهداریم، اما این گزینه امنیت کمتری دارد"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"ارسال و آزمایش گواهینامهی برای نامهای DNS غیرعمومی"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"اگر این گزینه انتخاب نشدهباشد، رصدگر اطلاعات گواهینامههایی که نام آنها از طریق DNS تعیینتکلیف نشود را ذخیره نخواهد کرد."> - -<!ENTITY ssl-observatory.prefs.show "نمایش گزینههای پیشرفته"> - -<!ENTITY ssl-observatory.prefs.title "تنظیمهای رصدگر SSL"> - -<!ENTITY ssl-observatory.prefs.use "آیا باید از رصدگر استفاده شود؟"> -<!ENTITY ssl-observatory.warning.title "هشدار از رصدگر SSLی که توسط EFF اداره میشود"> -<!ENTITY ssl-observatory.warning.showcert "نمایش زنجیرهٔ گواهینامه"> -<!ENTITY ssl-observatory.warning.okay "میفهمم"> -<!ENTITY ssl-observatory.warning.text "رصدگر SSLی که توسط EFF اداره میشود برای گواهینامه(ها)ی HTTPS این وبسایت هشدار صادر کردهاست:"> -<!ENTITY ssl-observatory.warning.defense "هنگامی که وارد این سایت شدید، پیشنهاد میشود با برقراری یک ارتباط امن، کلمهٔ عبور خود را تغییر دهید. (این هشدارها را میتوانید در سربرگ «رصدگر SSL» در تنظیمات «HTTPS Everywhere» غیرفعال کنید.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"ارسال و گواهینامه های خود-امضا را بررسی کن"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"استفاده از این گزینه پیشنهاد میشود؛ مشکلات رمزنگاری بهویژه در دستگاههای تعبیه شده خود-امضا رایج هستند"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/fi/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/fi/https-everywhere.dtd deleted file mode 100644 index d5ec97b..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/fi/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "Tietoja HTTPS Everywheresta"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Kaikkialla"> -<!ENTITY https-everywhere.about.ext_description "Salaa verkko automaattisesti käyttäen HTTPS-suojausta monilla sivuilla!"> -<!ENTITY https-everywhere.about.version "Versio"> -<!ENTITY https-everywhere.about.created_by "Tekijät:"> -<!ENTITY https-everywhere.about.and ", ja"> -<!ENTITY https-everywhere.about.librarians "Sääntöjen hallinnoijat"> -<!ENTITY https-everywhere.about.add_new_rule "Lisää Uusi Sääntö"> -<!ENTITY https-everywhere.about.thanks "Kiitokset"> -<!ENTITY https-everywhere.about.many_contributors "Monia myötävaikuttajia, mukaanlukien"> -<!ENTITY https-everywhere.about.noscript "Lisäksi, osia HTTPS Everywhere:stä perustuu Giorgio Maonen ja muiden koodiin NoScriptistä. Olemme kiitollisia heidän mahtavasta työstään!"> -<!ENTITY https-everywhere.about.contribute "Jos pidät HTTPS Everywheresta, voit harkita"> -<!ENTITY https-everywhere.about.donate_tor "Lahjoita Tor-sovellukselle."> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "tai"> -<!ENTITY https-everywhere.about.donate_eff "Lahjoita EFFille"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Lahjoita EFF:lle"> -<!ENTITY https-everywhere.menu.about "Tietoja HTTPS Everywheresta"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatoryn asetukset"> -<!ENTITY https-everywhere.menu.globalEnable "Ota HTTPS Everywhere käyttöön"> -<!ENTITY https-everywhere.menu.globalDisable "Poista HTTPS Everywhere käytöstä"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Estä kaikki salaamatomat pyynnöt"> -<!ENTITY https-everywhere.menu.showCounter "Näytä laskuri"> -<!ENTITY https-everywhere.menu.viewAllRules "Näytä kaikki säännöt"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywheren asetukset"> -<!ENTITY https-everywhere.prefs.enable_all "Ota kaikki käyttöön"> -<!ENTITY https-everywhere.prefs.disable_all "Poista kaikki käytöstä"> -<!ENTITY https-everywhere.prefs.reset_defaults "Palauta oletusarvoihin"> -<!ENTITY https-everywhere.prefs.search "Hae"> -<!ENTITY https-everywhere.prefs.site "Sivusto"> -<!ENTITY https-everywhere.prefs.notes "Huomautus"> -<!ENTITY https-everywhere.prefs.list_caption "Mitä HTTPS-uudelleenohjauksia tulisi käyttää?"> -<!ENTITY https-everywhere.prefs.enabled "Käytössä"> -<!ENTITY https-everywhere.prefs.ruleset_howto "Voit opetella kirjoittamaan omia sääntöjäsi (laajentaaksesi muiden sivustojen tukea)"> -<!ENTITY https-everywhere.prefs.here_link "täällä"> -<!ENTITY https-everywhere.prefs.toggle "Vaihda tilaa"> -<!ENTITY https-everywhere.prefs.reset_default "Palauta oletusasetus"> -<!ENTITY https-everywhere.prefs.view_xml_source "Katso XML-lähde"> - -<!ENTITY https-everywhere.chrome.stable_rules "Vakaat käytännöt"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Pakota salatut yhteydet näihin nettisivustoihin:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Kokeelliset käytännöt"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "Voi aiheuttaa varoituksia tai hajoamisen. Pois käytöstä oletuksena."> -<!ENTITY https-everywhere.chrome.add_rule "Lisää sääntö sivulle"> -<!ENTITY https-everywhere.chrome.add_new_rule "Lisää uusi sääntö sivulle"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Käytä aina https tälle isännälle"> -<!ENTITY https-everywhere.chrome.host "Isäntä:"> -<!ENTITY https-everywhere.chrome.show_advanced "Näytä lisäasetukset"> -<!ENTITY https-everywhere.chrome.hide_advanced "Piillota lisäasetukset"> -<!ENTITY https-everywhere.chrome.rule_name "Säännön nimi"> -<!ENTITY https-everywhere.chrome.regex "Sopiva säännöllinen lauseke"> -<!ENTITY https-everywhere.chrome.redirect_to "Uudelleenohjaa kohteeseen"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Peruuta"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/fi/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/fi/https-everywhere.properties deleted file mode 100644 index fe902a5..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/fi/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Ota HTTPS Everywhere käyttöön -https-everywhere.menu.globalDisable = Poista HTTPS Everywhere käytöstä -https-everywhere.menu.enableDisable = Ota sääntöjä käyttöön / poista käytöstä -https-everywhere.menu.noRules = (Tälle sivulle ei ole sääntöjä) -https-everywhere.menu.unknownRules = (Sivun sääntöä ei tunnistettu) -https-everywhere.toolbar.hint = HTTPS Everywhere on käytössä. Voit valita, millä sivustoilla ohjelmaa käytetään, kun napsautat osoiterivissä olevaa kuvaketta. -https-everywhere.migration.notification0 = Jotta tärkeä korjaus voidaan suorittaa, tämä päivitys palauttaa HTTPS Everywhere-sääntöasetuksesi oletusarvoisiksi. -https-everywhere.menu.ruleset-tests = Suorita HTTPS Everywhere-sääntötestit diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/fi/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/fi/ssl-observatory.dtd deleted file mode 100644 index dd4736d..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/fi/ssl-observatory.dtd +++ /dev/null @@ -1,92 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Lisä- ja yksityisyystiedot"> -<!ENTITY ssl-observatory.popup.later "Kysy myöhemmin"> -<!ENTITY ssl-observatory.popup.no "Ei"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere voi tunnistaa selaimeen kohdistuvat hyökkäykset lähettämällä varmenteet Observatoryyn. Otetaanko toiminto käyttöön?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Tulisiko HTTPS Everywheren käyttää SSL Observatorya?"> - -<!ENTITY ssl-observatory.popup.yes "Kyllä"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"Käyttöön ottaminen on turvallista, jos et käytä hyvin tunkeilevaa yritysverkkoa:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Turvallista, jos et käytä yritysverkkoa, jonka intranetin palvelinten nimet on salattu:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Lähetä ja tarkista varmenteet, jotka on allekirjoittanut epävirallinen päämyöntäjä"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"On turvallista (ja hyvä idea) valita tämä, jos et käytä tunkeilevaa yritysverkkoa tai Kasperskyn viruksentorjuntaohjelmaa, joka seuraa selaamista TLS-välipalvelimen ja yksityisen varmenteen päämyöntäjän avulla. Tällaisessa verkossa tämä asetus voi antaa vihjeitä siitä, missä HTTPS-verkkotunnuksissa välipalvelimen avulla on vierailtu. Vihjeiden syynä ovat niiden tuottamat ainutlaatuiset varmenteet. Tästä syystä valinta ei ole päällä oletusasetuksena."> - -<!ENTITY ssl-observatory.prefs.anonymous "Tarkista varmenteet anonyymisti Tor-sovelluksella"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Tarkista varmenteet anonyymisti Tor-sovelluksella (vaatii Tor-sovelluksen)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"Tämä valinta edellyttää, että Tor on asennettu ja käytössä"> - -<!ENTITY ssl-observatory.prefs.asn -"Kun näet uuden varmenteen, kerro Observatorylle, mihin palveluntarjoajaan olet yhteydessä"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"Tämä noutaa ja lähettää verkkosi autonomisen järjestelmän numerotunnuksen (ASN). Näin pystymme paikantamaan HTTPS:ään kohdistuvat hyökkäykset ja voimme selvittää, ovatko havainnot Iranin ja Syyrian kaltaisten alueiden verkoista, joissa hyökkäykset ovat yleisiä."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Näytä varoitus, kun Observatory havaitsee kumotun varmenteen, jota selaimesi ei havainnut."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"Tämä tarkistaa toimitetut varmenteet tiedettyjen varmenteiden listasta. Valitettavasti emme voi taata että merkitsemme kaikki kumotut varmenteet, mutta jos näet varoituksen on suuri mahdollisuus että jotain on vialla."> - -<!ENTITY ssl-observatory.prefs.done "Valmis"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere voi hyödyntää EFFin SSL Observatorya. Sillä on kaksi tehtävää: (1) Se lähettää HTTPS-varmenteiden kopiot Observatoryyn, jotta pystyisimme tunnistamaan epärehellisen välittäjän (MitM) hyökkäykset ja edistämään WWW:n turvallisuutta. (2) Sen avulla voimme varoittaa sinua turvattomista yhteyksistä ja selaimeen kohdistuvista hyökkäyksistä."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"Jos esimerkiksi käyt sivustolla https://www.something.com, Observatoryn vastaanottama varmenne kertoo, että joku on vieraillut osoitteessa www.something.com. Varmenne ei kuitenkaan kerro, kuka on käynyt sivustolla ja mitä tiettyjä sivuja on katseltu. Saat lisätietoja, kun kohdistat hiiren osoittimen valinnan päälle:"> - -<!ENTITY ssl-observatory.prefs.hide "Piilota lisäasetukset"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Tarkista varmenteet, vaikka Tor ei ole käytössä"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"Yritämme pitää tiedot nimettömänä, mutta tämä valinta on aina turvattomampi"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Lähetä ja tarkista yksityisten DNS-nimien varmenteet"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Jos tätä valintaa ei ole valittu, Observatory ei kerää varmenteita, joiden nimiä se ei pysty selvittämään nimipalvelujärjestelmällä (DNS)."> - -<!ENTITY ssl-observatory.prefs.show "Näytä lisäasetukset"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatoryn asetukset"> - -<!ENTITY ssl-observatory.prefs.use "Käytä Observatorya?"> -<!ENTITY ssl-observatory.warning.title "VAROITUS EFFin SSL Observatorylta"> -<!ENTITY ssl-observatory.warning.showcert "Näytä palvelimen varmenneketju"> -<!ENTITY ssl-observatory.warning.okay "Ymmärrän"> -<!ENTITY ssl-observatory.warning.text "EFFin SSL Observatory on varoittanut tämän sivuston yhdestä tai useammasta HTTPS-varmenteesta:"> -<!ENTITY ssl-observatory.warning.defense "Jos olet kirjautunut tälle sivustolle, voi olla suositeltavaa vaihtaa salasana, kun sinulla on käytössä turvallinen yhteys. (Nämä varoitukset voidaan laittaa pois päältä ''SSL Observatoryssä'' napsauttamalla HTTPS Everywhere-asetusvalintaikkunaa.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Lähetä ja tarkista sivuston itsensä allekirjoittama varmenne"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"Tämä on suositeltavaa. Salaukseen liittyvät ongelmat ovat hyvin yleisiä itsensä allekirjoittaneissa sulautetuissa laitteissa"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/fil/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/fil/https-everywhere.dtd deleted file mode 100644 index 676e583..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/fil/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "Tungkol sa HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "I-encrypt ang Web! Awtomatikong gamitin ang HTTPS security sa maraming sites."> -<!ENTITY https-everywhere.about.version "Bersyon"> -<!ENTITY https-everywhere.about.created_by "Ginawa nina"> -<!ENTITY https-everywhere.about.and "at"> -<!ENTITY https-everywhere.about.librarians "Mga Ruleset Librarian"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Salamat sa"> -<!ENTITY https-everywhere.about.many_contributors "Maraming maraming contributor, kasama sina"> -<!ENTITY https-everywhere.about.noscript "Gayundin, ang ilang bahagi ng HTTPS Everywhere ay batay sa code mula sa NoScript nina Giorgio Maone at marami pang iba. Lubos kaming nagpapasalamat sa kanilang mahusay na trabaho!"> -<!ENTITY https-everywhere.about.contribute "Kung nagustuhan mo ang HTTPS Everywhere, baka magustuhan mo ring"> -<!ENTITY https-everywhere.about.donate_tor "Mag-donate sa Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "fil"> -<!ENTITY https-everywhere.about.or "o"> -<!ENTITY https-everywhere.about.donate_eff "Mag-donate sa EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "Tungkol sa HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "Mga Preference sa SSL Observatory"> -<!ENTITY https-everywhere.menu.globalEnable "I-enable ang HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "I-disable ang HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Ipakita ang Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "Tingnan ang Lahat ng Rules"> - -<!ENTITY https-everywhere.prefs.title "Mga Preference sa HTTPS Everywhere"> -<!ENTITY https-everywhere.prefs.enable_all "I-enable Lahat"> -<!ENTITY https-everywhere.prefs.disable_all "I-disable Lahat"> -<!ENTITY https-everywhere.prefs.reset_defaults "Ibalik sa Defaults"> -<!ENTITY https-everywhere.prefs.search "Maghanap"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Mga Paunawa"> -<!ENTITY https-everywhere.prefs.list_caption "Aling HTTPS redirection rules ang dapat gamitin?"> -<!ENTITY https-everywhere.prefs.enabled "Naka-enable"> -<!ENTITY https-everywhere.prefs.ruleset_howto "Puwede kang matuto kung paano magsulat ng sarili mong rulesets (para magdagdag ng support para sa iba pang web sites)"> -<!ENTITY https-everywhere.prefs.here_link "dito"> -<!ENTITY https-everywhere.prefs.toggle "I-toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Ibalik sa Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "Tingnan ang XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Mga stable na rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Puwersahin ang mga naka-encrypt na koneksyon sa mga website na ito:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Mga experimental na rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "Maaaring hindi gumana o magkaroon ng mga babala. Default na naka-disable."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "I-kansela"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/fil/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/fil/https-everywhere.properties deleted file mode 100644 index 026d4c8..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/fil/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = I-enable ang HTTPS Everywhere -https-everywhere.menu.globalDisable = I-disable ang HTTPS Everywhere -https-everywhere.menu.enableDisable = I-enable / I-disable ang Rules -https-everywhere.menu.noRules = (Walang Rules para sa Page na Ito) -https-everywhere.menu.unknownRules = (Hindi Alam ang Rules para sa Page na Ito) -https-everywhere.toolbar.hint = Gumagana na ngayon ang HTTPS Everywhere. Puwede mo itong i-toggle para sa bawat site sa pamamamagitan ng pag-click sa icon sa address bar. -https-everywhere.migration.notification0 = Upang magawa ang mahalagang pag-aayos, ang update na ito ay mag-resets ng iyong HTTPS Everywhere rule na preference sa kanyang default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/fil/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/fil/ssl-observatory.dtd deleted file mode 100644 index 294766e..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/fil/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Mga Detalye at Impormasyon sa Privacy"> -<!ENTITY ssl-observatory.popup.later "Tanungin Mo Mamaya"> -<!ENTITY ssl-observatory.popup.no "Wala"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Dapat bang gamitin ng HTTPS Everywhere ang SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Oo"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"Ligtas itong gamiting , pero ito ay dapat mong gamitin sa loob ng isang napaka -mapang-himasok na corporate network."> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Ligtas ito, maliban na lang kung gumagamit ka ng corporate network na may mga sikretong intranet server name:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"Ang opsyon na ito ay nangangailangan ng Tor na installed at tumatakbo"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Tapos na"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "Mga Preference sa SSL Observatory"> - -<!ENTITY ssl-observatory.prefs.use "Gamitin ang Observatory?"> -<!ENTITY ssl-observatory.warning.title "BABALA mula sa SSL Observatory ng EFF"> -<!ENTITY ssl-observatory.warning.showcert "Ipakita ang certificate chain"> -<!ENTITY ssl-observatory.warning.okay "Nauunawaan ko"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/fo/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/fo/https-everywhere.dtd deleted file mode 100644 index c2b4dbf..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/fo/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "Um HTTPS Allastaðni"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Allastaðni"> -<!ENTITY https-everywhere.about.ext_description "Brongla alnetið! Brúka HTTPS-trygd sjávvirkandi á fleiri síðum."> -<!ENTITY https-everywhere.about.version "Útgáva"> -<!ENTITY https-everywhere.about.created_by "Stovna hevur"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Tøkk til"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "Dámar tær HTTPS Allastaðni, átti tú at"> -<!ENTITY https-everywhere.about.donate_tor "latið Tor eitt oyra"> -<!ENTITY https-everywhere.about.tor_lang_code "fo"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Letur EFF eitt oyra"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "Um HTTPS Allastaðni"> -<!ENTITY https-everywhere.menu.observatory "Stillingar fyri SSL Observatory"> -<!ENTITY https-everywhere.menu.globalEnable "Gilda HTTPS Allastaðni"> -<!ENTITY https-everywhere.menu.globalDisable "Ógilda HTTPS Allastaðni"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Vís teljara"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "Stillingar fyri HTTPS Allastaðni"> -<!ENTITY https-everywhere.prefs.enable_all "Gilda alt"> -<!ENTITY https-everywhere.prefs.disable_all "Ógilda alt"> -<!ENTITY https-everywhere.prefs.reset_defaults "Nullstill"> -<!ENTITY https-everywhere.prefs.search "Leita"> -<!ENTITY https-everywhere.prefs.site "Síða"> -<!ENTITY https-everywhere.prefs.notes "Notur"> -<!ENTITY https-everywhere.prefs.list_caption "Hvøjar HTTPS-umstillingarreglur skulu verða galdandi?"> -<!ENTITY https-everywhere.prefs.enabled "Gilda"> -<!ENTITY https-everywhere.prefs.ruleset_howto "Tú kanst læra, hvussu tú skrivar egnin reglusett (fyri at fáa stuðul frá øðrum síðum)"> -<!ENTITY https-everywhere.prefs.here_link "her"> -<!ENTITY https-everywhere.prefs.toggle "Tendra"> -<!ENTITY https-everywhere.prefs.reset_default "Nullstilla"> -<!ENTITY https-everywhere.prefs.view_xml_source "Vís XML-keldu"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Angra"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/fo/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/fo/https-everywhere.properties deleted file mode 100644 index a15b998..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/fo/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Gilda HTTPS Allastaðni -https-everywhere.menu.globalDisable = Ógilda HTTPS Allastaðni -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/fo/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/fo/ssl-observatory.dtd deleted file mode 100644 index 9c9da38..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/fo/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Frágreiðing og trúnaðarspurningar"> -<!ENTITY ssl-observatory.popup.later "Spyr seinni"> -<!ENTITY ssl-observatory.popup.no "Nei"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Allastanið varnast álop -ímóti kaganum við at senda váttanir (certificates) til -eygleiðingarstøðina. Skal hetta vera frá?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Skal HTTPS Allastaðni brúka SSL-eygleiðingarstøðina?"> - -<!ENTITY ssl-observatory.popup.yes "Ja"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"Tað er trygt at koyra frá, uttan so at tú ert ein -øgiliga ágandadi stórfyritøka:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Trygt, um ikki tú brúkar netið hjá einari stórfyritøku við loyniligum intranetsnøvnum:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Melda til og kanna váttanir, skrivaðar undir av óvanligum "root CA"-um"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "Stillingar fyri SSL Observatory"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/fr/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/fr/https-everywhere.dtd deleted file mode 100644 index 855d793..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/fr/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "À propos de HTTPS partout"> -<!ENTITY https-everywhere.about.ext_name "HTTPS partout"> -<!ENTITY https-everywhere.about.ext_description "Chiffrer le Web ! Utiliser automatiquement la sécurité HTTPS avec de nombreux sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Créé par"> -<!ENTITY https-everywhere.about.and ", et"> -<!ENTITY https-everywhere.about.librarians "Bibliothécaires des ensembles de règles"> -<!ENTITY https-everywhere.about.add_new_rule "Ajouter une nouvelle règle"> -<!ENTITY https-everywhere.about.thanks "Nos remerciements à"> -<!ENTITY https-everywhere.about.many_contributors "De très nombreux collaborateurs, incluant"> -<!ENTITY https-everywhere.about.noscript "Aussi, des parties de HTTPS partout reposent sur du code de NoScript par Giorgio Maone et al. Nous les remercions pour leur excellent travail !"> -<!ENTITY https-everywhere.about.contribute "Si vous aimez HTTPS partout, vous devriez envisager"> -<!ENTITY https-everywhere.about.donate_tor "Faire un don à Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "fr"> -<!ENTITY https-everywhere.about.or "ou"> -<!ENTITY https-everywhere.about.donate_eff "Faire un don à l'EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Faire un don à l'EFF"> -<!ENTITY https-everywhere.menu.about "À propos de HTTPS partout"> -<!ENTITY https-everywhere.menu.observatory "Préférences de l'observatoire SSL "> -<!ENTITY https-everywhere.menu.globalEnable "Activer HTTPS partout"> -<!ENTITY https-everywhere.menu.globalDisable "Désactiver HTTPS partout"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Bloquer toutes les requêtes non chiffrées"> -<!ENTITY https-everywhere.menu.showCounter "Afficher le compteur"> -<!ENTITY https-everywhere.menu.viewAllRules "Visualiser toutes les règles"> - -<!ENTITY https-everywhere.prefs.title "Préférences de HTTPS partout"> -<!ENTITY https-everywhere.prefs.enable_all "Tout activer"> -<!ENTITY https-everywhere.prefs.disable_all "Tout désactiver"> -<!ENTITY https-everywhere.prefs.reset_defaults "Revenir aux paramètres par défaut"> -<!ENTITY https-everywhere.prefs.search "Recherche"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Quelles règles de réacheminement HTTPS devraient s'appliquer ?"> -<!ENTITY https-everywhere.prefs.enabled "Activé"> -<!ENTITY https-everywhere.prefs.ruleset_howto "Vous pouvez apprendre à écrire vos propres ensembles de règles (pour la prise en charge d'autres sites Web)"> -<!ENTITY https-everywhere.prefs.here_link "ici"> -<!ENTITY https-everywhere.prefs.toggle "Activer/désactiver"> -<!ENTITY https-everywhere.prefs.reset_default "Revenir aux paramètres par défaut"> -<!ENTITY https-everywhere.prefs.view_xml_source "Voir la source XML"> - -<!ENTITY https-everywhere.chrome.stable_rules "Règles stables"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Forcer des connexions chiffrées vers ces sites Web :"> -<!ENTITY https-everywhere.chrome.experimental_rules "Règles expérimentales :"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "Pourrait causer des avertissements ou des défaillances. Désactivé par défaut."> -<!ENTITY https-everywhere.chrome.add_rule "Ajouter une règle pour ce site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Ajouter une nouvelle règle pour ce site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Toujours utiliser HTTPS pour cet hôte"> -<!ENTITY https-everywhere.chrome.host "Hôte :"> -<!ENTITY https-everywhere.chrome.show_advanced "Afficher les options avancées"> -<!ENTITY https-everywhere.chrome.hide_advanced "Cacher les options avancées"> -<!ENTITY https-everywhere.chrome.rule_name "Nom de la règle"> -<!ENTITY https-everywhere.chrome.regex "Regex correspondant"> -<!ENTITY https-everywhere.chrome.redirect_to "Rediriger vers"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Annuler"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/fr/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/fr/https-everywhere.properties deleted file mode 100644 index 1306308..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/fr/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Activer HTTPS partout -https-everywhere.menu.globalDisable = Désactiver HTTPS partout -https-everywhere.menu.enableDisable = Activer / désactiver les règles -https-everywhere.menu.noRules = (Aucune règle pour cette page) -https-everywhere.menu.unknownRules = (Règles inconnues pour cette page) -https-everywhere.toolbar.hint = HTTPS partout est maintenant actif. Vous pouvez l'activer/le désactiver site par site en cliquant sur l'icône dans la barre d'adresse. -https-everywhere.migration.notification0 = Afin d'appliquer un correctif crucial, cette mise à jour réinitialise vos règles de préférences de HTTPS partout à leurs valeurs par défaut. -https-everywhere.menu.ruleset-tests = Exécuter les tests d'ensemble de règles de HTTPS partout diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/fr/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/fr/ssl-observatory.dtd deleted file mode 100644 index 7a4bee4..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/fr/ssl-observatory.dtd +++ /dev/null @@ -1,92 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Détails et informations relatives à la confidentialité"> -<!ENTITY ssl-observatory.popup.later "Me demander plus tard"> -<!ENTITY ssl-observatory.popup.no "Non"> - -<!ENTITY ssl-observatory.popup.text "HTTPS partout peut détecter les attaques contre votre navigateur en envoyant les certificats reçus à l'observatoire. Activer cette option ?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"HTTPS partout devrait-il utiliser l'observatoire SSL ?"> - -<!ENTITY ssl-observatory.popup.yes "Oui"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"Vous pouvez activer cette option en toute sécurité, sauf si vous utilisez un réseau d'entreprise très intrusif :"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Sûr, sauf si vous utilisez un réseau d'entreprise avec noms de serveurs Intranet secrets :"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Envoyer et vérifier les certificats signés par des autorités racines non standards"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"Cette option peut-être activée en toute sécurité (et c'est une bonne idée), sauf si vous utilisez un réseau d'entreprise intrusif ou le logiciel antivirus Kaspersky qui surveille votre navigation avec un mandataire TLS et une autorité de certificat racine privée. Si elle était activée sur un tel réseau, cette option pourrait publier des preuves sur les domaines https:// visités avec ce mandataire en raison des certificats uniques qu'elle produirait. Elle est donc désactivée par défaut."> - -<!ENTITY ssl-observatory.prefs.anonymous "Vérifier les certificats en utilisant Tor pour l'anonymat"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Vérifier les certificats en utilisant Tor pour l'anonymat (exige Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"Cette option exige l'installation et l'utilisation de Tor"> - -<!ENTITY ssl-observatory.prefs.asn -"Quand vous voyez un nouveau certificat, indiquer à l'observatoire à quel FAI vous êtes connecté"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"Cette option ira chercher et enverra le « numéro de système autonome » de votre réseau. Cela nous aidera à localiser les attaques contre HTTPS et à déterminer si nous avons des observations à partir de réseaux en des lieux comme l'Iran et la Syrie où les attaques sont comparativement fréquentes."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Afficher un avertissement si l'observatoire détecte un certificat révoqué, mais ignoré par votre navigateur"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"Cela comparera les certificats transmis aux listes de révocation des certificats. Malheureusement, nous ne pouvons pas garantir que nous signalerons tous les certificats révoqués, mais si vous voyez un avertissement, il y a de bonnes chances que quelque chose ne va pas."> - -<!ENTITY ssl-observatory.prefs.done "Fait"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS partout peut utiliser l'observatoire SSL de l'EFF. Cela permet deux choses : (1) l'envoi de copies des certificats HTTPS à l'observatoire pour nous aider à détecter les attaques de l'homme du milieu et à améliorer la sécurité du Web ; et (2) nous permet de vous informer à propos des connexions non sécurisées et attaques sur votre navigateur."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"Par exemple, si vous visitez https://www.quelquechose.com, le certificat reçu par l'observatoire indiquera que quelqu'un a visité www.quelquechose.com, mais pas l'identité de la personne qui a visité le site ni quelle page précise a été regardée. Passez votre souris sur les options pour plus d'informations :"> - -<!ENTITY ssl-observatory.prefs.hide "Cacher les options avancées"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Vérifier les certificats même si Tor n'est pas disponible"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"Nous essaierons encore d'assurer l'anonymat des données, mais cette option est moins sûre"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Envoyer et vérifier les certificats des noms de DNS non publics "> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Au moins que cette option soit activée, l'observatoire n'enregistrera pas les certificats pour les noms qu'il ne peut pas résoudre par le système DNS."> - -<!ENTITY ssl-observatory.prefs.show "Afficher les options avancées"> - -<!ENTITY ssl-observatory.prefs.title "Préférences de l'observatoire SSL"> - -<!ENTITY ssl-observatory.prefs.use "Utiliser l'observatoire ?"> -<!ENTITY ssl-observatory.warning.title "AVERTISSEMENT de l'observatoire SSL de l'EFF"> -<!ENTITY ssl-observatory.warning.showcert "Afficher la chaîne de certificats"> -<!ENTITY ssl-observatory.warning.okay "Je comprends"> -<!ENTITY ssl-observatory.warning.text "L'observatoire SSL de l'EFF a publié un avertissement sur le/les certificat(s) HTTPS de ce site :"> -<!ENTITY ssl-observatory.warning.defense "Si vous êtes connecté à ce site, il serait conseillé de changer votre mot de passe dès que vous aurez une connexion sûre (ces avertissements peuvent être désactivés dans l'onglet « Observatoire SSL » de la fenêtre de préférences de HTTPS partout)."> - -<!ENTITY ssl-observatory.prefs.self_signed -"Envoyer et vérifier les certificats autosignés"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"Cela est recommandé ; les problèmes cryptographiques sont particulièrement communs dans les dispositifs embarqués autosignés"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/fr_CA/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/fr_CA/https-everywhere.dtd deleted file mode 100644 index d2257bc..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/fr_CA/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "À propos de HTTPS partout"> -<!ENTITY https-everywhere.about.ext_name "HTTPS partout"> -<!ENTITY https-everywhere.about.ext_description "Chiffrer le Web! Utiliser automatiquement la sécurité HTTPS avec de nombreux sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Créé par"> -<!ENTITY https-everywhere.about.and ", et"> -<!ENTITY https-everywhere.about.librarians "Bibliothécaires des ensembles de règles"> -<!ENTITY https-everywhere.about.add_new_rule "Ajouter une nouvelle règle"> -<!ENTITY https-everywhere.about.thanks "Nos remerciements à"> -<!ENTITY https-everywhere.about.many_contributors "De très nombreux collaborateurs, incluant"> -<!ENTITY https-everywhere.about.noscript "Aussi, des parties de HTTPS partout reposent sur du code de NoScript par Giorgio Maone et al. Nous les remercions pour leur excellent travail !"> -<!ENTITY https-everywhere.about.contribute "Si vous aimez HTTPS partout, vous devriez envisager"> -<!ENTITY https-everywhere.about.donate_tor "Faire un don à Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "fr"> -<!ENTITY https-everywhere.about.or "ou"> -<!ENTITY https-everywhere.about.donate_eff "Faire un don à l'EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Faire un don à l'EFF"> -<!ENTITY https-everywhere.menu.about "À propos de HTTPS partout"> -<!ENTITY https-everywhere.menu.observatory "Préférences de l'observatoire SSL "> -<!ENTITY https-everywhere.menu.globalEnable "Activer HTTPS partout"> -<!ENTITY https-everywhere.menu.globalDisable "Désactiver HTTPS partout"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Bloquer toutes les requêtes non chiffrées"> -<!ENTITY https-everywhere.menu.showCounter "Afficher le compteur"> -<!ENTITY https-everywhere.menu.viewAllRules "Visualiser toutes les règles"> - -<!ENTITY https-everywhere.prefs.title "Préférences de HTTPS partout"> -<!ENTITY https-everywhere.prefs.enable_all "Tout activer"> -<!ENTITY https-everywhere.prefs.disable_all "Tout désactiver"> -<!ENTITY https-everywhere.prefs.reset_defaults "Revenir aux paramètres par défaut"> -<!ENTITY https-everywhere.prefs.search "Recherche"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Quelles règles de réacheminement HTTPS devraient s'appliquer?"> -<!ENTITY https-everywhere.prefs.enabled "Activé"> -<!ENTITY https-everywhere.prefs.ruleset_howto "Vous pouvez apprendre à écrire vos propres ensembles de règles (pour la prise en charge d'autres sites Web)"> -<!ENTITY https-everywhere.prefs.here_link "ici"> -<!ENTITY https-everywhere.prefs.toggle "Activer/désactiver"> -<!ENTITY https-everywhere.prefs.reset_default "Revenir aux paramètres par défaut"> -<!ENTITY https-everywhere.prefs.view_xml_source "Voir la source XML"> - -<!ENTITY https-everywhere.chrome.stable_rules "Règles stables"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Forcer des connexions chiffrées vers ces sites Web :"> -<!ENTITY https-everywhere.chrome.experimental_rules "Règles expérimentales :"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "Pourrait causer des avertissements ou des défaillances. Désactivé par défaut."> -<!ENTITY https-everywhere.chrome.add_rule "Ajouter une règle pour ce site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Ajouter une nouvelle règle pour ce site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Toujours utiliser HTTPS pour cet hôte"> -<!ENTITY https-everywhere.chrome.host "Hôte :"> -<!ENTITY https-everywhere.chrome.show_advanced "Afficher les options avancées"> -<!ENTITY https-everywhere.chrome.hide_advanced "Cacher les options avancées"> -<!ENTITY https-everywhere.chrome.rule_name "Nom de la règle"> -<!ENTITY https-everywhere.chrome.regex "Regex correspondant"> -<!ENTITY https-everywhere.chrome.redirect_to "Rediriger vers"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Annuler"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/fr_CA/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/fr_CA/https-everywhere.properties deleted file mode 100644 index 1306308..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/fr_CA/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Activer HTTPS partout -https-everywhere.menu.globalDisable = Désactiver HTTPS partout -https-everywhere.menu.enableDisable = Activer / désactiver les règles -https-everywhere.menu.noRules = (Aucune règle pour cette page) -https-everywhere.menu.unknownRules = (Règles inconnues pour cette page) -https-everywhere.toolbar.hint = HTTPS partout est maintenant actif. Vous pouvez l'activer/le désactiver site par site en cliquant sur l'icône dans la barre d'adresse. -https-everywhere.migration.notification0 = Afin d'appliquer un correctif crucial, cette mise à jour réinitialise vos règles de préférences de HTTPS partout à leurs valeurs par défaut. -https-everywhere.menu.ruleset-tests = Exécuter les tests d'ensemble de règles de HTTPS partout diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/fr_CA/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/fr_CA/ssl-observatory.dtd deleted file mode 100644 index cf0386f..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/fr_CA/ssl-observatory.dtd +++ /dev/null @@ -1,92 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Détails et informations relatives à la confidentialité"> -<!ENTITY ssl-observatory.popup.later "Me demander plus tard"> -<!ENTITY ssl-observatory.popup.no "Non"> - -<!ENTITY ssl-observatory.popup.text "HTTPS partout peut détecter les attaques contre votre navigateur en envoyant les certificats reçus à l'observatoire. Activer cette option?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"HTTPS partout devrait-il utiliser l'observatoire SSL?"> - -<!ENTITY ssl-observatory.popup.yes "Oui"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"Il est sécuritaire d'activer cette option, sauf si vous utilisez un réseau d'entreprise très intrusif :"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Sécuritaire, sauf si vous utilisez un réseau d'entreprise avec noms de serveurs Intranet secrets :"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Envoyer et vérifier les certificats signés par des autorités racines non standards"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"Il est sécuritaire (et une bonne idée) d'activer cette option, sauf si vous utilisez un réseau d'entreprise intrusif ou le logiciel antivirus Kaspersky qui surveille votre navigation avec un mandataire TLS et une autorité de certificat racine privée. Si elle était activée sur un tel réseau, cette option pourrait publier des preuves sur les domaines https:// visités avec ce mandataire en raison des certificats uniques qu'elle produirait. Elle est donc désactivée par défaut."> - -<!ENTITY ssl-observatory.prefs.anonymous "Vérifier les certificats en utilisant Tor pour l'anonymat"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Vérifier les certificats en utilisant Tor pour l'anonymat (exige Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"Cette option exige l'installation et l'utilisation de Tor"> - -<!ENTITY ssl-observatory.prefs.asn -"Quand vous voyez un nouveau certificat, indiquer à l'observatoire à quel FAI vous êtes connecté"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"Cette option ira chercher et enverra le « numéro de système autonome » de votre réseau. Cela nous aidera à localiser les attaques contre HTTPS et à déterminer si nous avons des observations à partir de réseaux en des lieux comme l'Iran et la Syrie où les attaques sont comparativement fréquentes."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Afficher un avertissement si l'observatoire détecte un certificat révoqué, mais ignoré par votre navigateur"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"Cela comparera les certificats transmis aux listes de révocation des certificats. Malheureusement, nous ne pouvons pas garantir que nous signalerons tous les certificats révoqués, mais si vous voyez un avertissement, il y a de bonnes chances que quelque chose ne va pas."> - -<!ENTITY ssl-observatory.prefs.done "Fait"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS partout peut utiliser l'observatoire SSL de l'EFF. Cela permet deux choses : (1) l'envoi de copies des certificats HTTPS à l'observatoire pour nous aider à détecter les attaques de l'homme du milieu et à améliorer la sécurité du Web; et (2) nous permet de vous informer à propos des connexions non sécurisées et attaques sur votre navigateur."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"Par exemple, si vous visitez https://www.quelquechose.com, le certificat reçu par l'observatoire indiquera que quelqu'un a visité www.quelquechose.com, mais pas l'identité de la personne qui a visité le site ni quelle page particulière a été regardée. Passez votre souris sur les options pour plus d'informations :"> - -<!ENTITY ssl-observatory.prefs.hide "Cacher les options avancées"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Vérifier les certificats même si Tor n'est pas disponible"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"Nous essaierons encore d'assurer l'anonymat des données, mais cette option est moins sécuritaire"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Envoyer et vérifier les certificats des noms de DNS non publics "> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Au moins que cette option soit activée, l'observatoire n'enregistrera pas les certificats pour les noms qu'il ne peut pas résoudre par le système DNS."> - -<!ENTITY ssl-observatory.prefs.show "Afficher les options avancées"> - -<!ENTITY ssl-observatory.prefs.title "Préférences de l'observatoire SSL"> - -<!ENTITY ssl-observatory.prefs.use "Utiliser l'observatoire?"> -<!ENTITY ssl-observatory.warning.title "AVERTISSEMENT de l'observatoire SSL de l'EFF"> -<!ENTITY ssl-observatory.warning.showcert "Afficher la chaîne de certificats"> -<!ENTITY ssl-observatory.warning.okay "Je comprends"> -<!ENTITY ssl-observatory.warning.text "L'observatoire SSL de l'EFF a publié un avertissement sur le/les certificat(s) HTTPS de ce site :"> -<!ENTITY ssl-observatory.warning.defense "Si vous êtes connecté à ce site, il serait conseillé de changer votre mot de passe dès que vous aurez une connexion sécuritaire (ces avertissements peuvent être désactivés dans l'onglet « Observatoire SSL » de la fenêtre de préférences de HTTPS partout)."> - -<!ENTITY ssl-observatory.prefs.self_signed -"Envoyer et vérifier les certificats autosignés"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"Cela est recommandé; les problèmes cryptographiques sont particulièrement communs dans les dispositifs embarqués autosignés"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/fur/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/fur/https-everywhere.dtd deleted file mode 100644 index 93d66ce..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/fur/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancel"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/fur/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/fur/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/fur/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/fur/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/fur/ssl-observatory.dtd deleted file mode 100644 index 69f1cfd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/fur/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/fy/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/fy/https-everywhere.dtd deleted file mode 100644 index 01f5b6e..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/fy/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "Oer HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Ferzje"> -<!ENTITY https-everywhere.about.created_by "Makke troch"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "fy"> -<!ENTITY https-everywhere.about.or "of"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "Oer HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL-observatoriumfoarkarren"> -<!ENTITY https-everywhere.menu.globalEnable "HTTPS Everywhere ynskeakelje"> -<!ENTITY https-everywhere.menu.globalDisable "HTTPS Everywhere útskeakelje"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Teller toane"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Alles ynskeakelje"> -<!ENTITY https-everywhere.prefs.disable_all "Alles útskeakelje"> -<!ENTITY https-everywhere.prefs.reset_defaults "Standertwearden ferfarskje"> -<!ENTITY https-everywhere.prefs.search "Sykje"> -<!ENTITY https-everywhere.prefs.site "Side"> -<!ENTITY https-everywhere.prefs.notes "Opmerkings"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Ynskeakele"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Omskeakelje"> -<!ENTITY https-everywhere.prefs.reset_default "Standertwearde ferfarskje"> -<!ENTITY https-everywhere.prefs.view_xml_source "XML-boarnekoade besjen"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Annulearje"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/fy/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/fy/https-everywhere.properties deleted file mode 100644 index 4cb111b..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/fy/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = HTTPS Everywhere ynskeakelje -https-everywhere.menu.globalDisable = HTTPS Everywhere útskeakelje -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/fy/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/fy/ssl-observatory.dtd deleted file mode 100644 index 8a92cfc..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/fy/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "Nee"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Ja"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Klear"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL-observatoriumfoarkarren"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ga/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ga/https-everywhere.dtd deleted file mode 100644 index 010b1a3..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ga/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "Faoi HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "leagan"> -<!ENTITY https-everywhere.about.created_by "Cruthaithe ag"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Buíochas le"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "Faoi HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Taispeáin an Cuntar"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "cuardaigh"> -<!ENTITY https-everywhere.prefs.site "Suíomh"> -<!ENTITY https-everywhere.prefs.notes "Nótaí"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "anseo"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cur ar Ceal"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ga/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ga/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ga/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ga/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ga/ssl-observatory.dtd deleted file mode 100644 index 69f1cfd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ga/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/gd/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/gd/https-everywhere.dtd deleted file mode 100644 index 93d66ce..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/gd/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancel"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/gd/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/gd/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/gd/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/gd/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/gd/ssl-observatory.dtd deleted file mode 100644 index 9498119..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/gd/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "Chan eil"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/gl/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/gl/https-everywhere.dtd deleted file mode 100644 index 5f0487b..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/gl/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "Acerca de HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Cifrar a Web! Usar automáticamente seguridade HTTPS en moitos sitios."> -<!ENTITY https-everywhere.about.version "Versión"> -<!ENTITY https-everywhere.about.created_by "Creado por"> -<!ENTITY https-everywhere.about.and ", e"> -<!ENTITY https-everywhere.about.librarians "Bibliotecarios do Conxunto de Regras"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Grazas a"> -<!ENTITY https-everywhere.about.many_contributors "Moitos, moitos contribuíntes, incluíndo"> -<!ENTITY https-everywhere.about.noscript "Asimesmo, partes de HTTPS Everywhere están baseadas no código de NoScript, de Giorgio Maone e outros. Estamos agradecidos polo seu excelente traballo!"> -<!ENTITY https-everywhere.about.contribute "Se ques usar HTTPS Everywhere, deberías ter en conta"> -<!ENTITY https-everywhere.about.donate_tor "Donando a Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "gl"> -<!ENTITY https-everywhere.about.or "ou"> -<!ENTITY https-everywhere.about.donate_eff "Donando á EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "Acerca de HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "Preferencias do Observatorio SSL"> -<!ENTITY https-everywhere.menu.globalEnable "Activar HTTPS para todo"> -<!ENTITY https-everywhere.menu.globalDisable "Desactivar HTTPS para todo"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Amosar Contador"> -<!ENTITY https-everywhere.menu.viewAllRules "Ver Tódalas Regras"> - -<!ENTITY https-everywhere.prefs.title "Preferencias do HTTPS Everywhere"> -<!ENTITY https-everywhere.prefs.enable_all "Habilitar Todo"> -<!ENTITY https-everywhere.prefs.disable_all "Deshabilitar Todo"> -<!ENTITY https-everywhere.prefs.reset_defaults "Restablecer a Valores por Defecto"> -<!ENTITY https-everywhere.prefs.search "Buscar"> -<!ENTITY https-everywhere.prefs.site "SItio"> -<!ENTITY https-everywhere.prefs.notes "Notas"> -<!ENTITY https-everywhere.prefs.list_caption "Que regras de redirección HTTPS debería aplicar?"> -<!ENTITY https-everywhere.prefs.enabled "Activado"> -<!ENTITY https-everywhere.prefs.ruleset_howto "Pode aprender a cómo escribir o seu propio conxunto de reglas (para engadir soporte para outros sitios web)"> -<!ENTITY https-everywhere.prefs.here_link "eiquí"> -<!ENTITY https-everywhere.prefs.toggle "Conmutar"> -<!ENTITY https-everywhere.prefs.reset_default "Restablecer a Valor por Defecto"> -<!ENTITY https-everywhere.prefs.view_xml_source "Ver Fonte XML"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancelar"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/gl/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/gl/https-everywhere.properties deleted file mode 100644 index 3794fd1..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/gl/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Activar HTTPS para todo -https-everywhere.menu.globalDisable = Desactivar HTTPS para todo -https-everywhere.menu.enableDisable = Activar / Desactivar as regras -https-everywhere.menu.noRules = (Sen regras para esta páxina) -https-everywhere.menu.unknownRules = (As regras para esta páxina son descoñecidas) -https-everywhere.toolbar.hint = HTTPS para todo está activado. Pode alternar a activación sitio por sitio premendo na icona da barra de enderezos. -https-everywhere.migration.notification0 = Para implementar unha solución crucial, esta actualización restablece as súas preferencias de regra HTTPS Everywhere aos seus valores por defecto. -https-everywhere.menu.ruleset-tests = Executar Probas do Conxunto de Regras HTTPS Everywhere diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/gl/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/gl/ssl-observatory.dtd deleted file mode 100644 index 8314546..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/gl/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Detalles e Información de Privacidade"> -<!ENTITY ssl-observatory.popup.later "Pregúnteme despois"> -<!ENTITY ssl-observatory.popup.no "Non"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere pode detectar ataques -contra o seu navegador enviando os certificados que reciba ao -Observatorio. Activar isto?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Debería HTTPS Everywhere usar o Observatorio SSL?"> - -<!ENTITY ssl-observatory.popup.yes "Si"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"É seguro habilitar isto, a menos que use unha -rede corporativa moi intrusiva:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Seguro, a menos que use unha rede corporativa con nomes secretos para os servidores da intranet:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Enviar e comprobar certificados asinados por CAs raíz non estándar"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"É seguro (e unha boa idea) habilitar esta opción, a menos que use unha rede corporativa intrusiva ou software antivirus de Karspersky que monitoriza a súa navegación cun proxy e unha Autoridade Certificadora raíz privada. Se se habilita en tal rede, esta opción podería publicar proba de cáles dominios https:// están sendo visitados a través dese proxy, debido aos certificados únicos que produciría. Así que déixeo apagado por defecto."> - -<!ENTITY ssl-observatory.prefs.anonymous "Comprobar certificados usando Tor para anonimidade"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Comprobar certificados usando Tor para anonimidade (require Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"Esta opción require que Tor estea instalado i executándose"> - -<!ENTITY ssl-observatory.prefs.asn -"Cando vexa un novo certificado, dígalle ao Observatorio a qué ISP está conectado vostede"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"Isto obterá i enviará o "número de Sistema Autónomo" da sua rede. Isto axudaranos a localizar ataques contra HTTPS, e determinar se temos vixiancia dende redes en lugares como Irán e Siria onde os ataques son comunes comparativamente."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Amosar unha advertencia cando o Observatorio detecta un certificado revocado non pillado polo seu navegador"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"Isto comprobará os certificados enviado contra Listas de Revocación de Certificados coñecidas. Desgraciadamente non podemos garantir que marcaremos cada certificado revocado, pero se ve unha advertencia hai unha boa probabilidade de que algo vai mal."> - -<!ENTITY ssl-observatory.prefs.done "Feito"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere pode usar o Observatorio SSL da EFF. Isto fai dúas cousas: (1) -envía copias dos certificados HTTPS ao Observatorio, para axudarnos a -detectar ataques 'man in the midlle' e millorar a seguridade da Web; e (2) -nos permite advertirlle de conexións inseguras ou ataques no seu navegador."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"Por exemplo, cando visita https://www.algunhacousa.com, o certificado -recibido polo Observatorio indicará que alguén visitou -www.algunhacousa.com, pero non quen visitou o sitio, ou que páxina en concreto -estiveron mirando. Mova o ratón por riba das opcións para detalles adicionais:"> - -<!ENTITY ssl-observatory.prefs.hide "Ocultar opcións avanzadas"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Comprobar certificados incluso se Tor non está dispoñible"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"Sempre tentaremos manter os datos anónimos, pero esta opción é menos segura"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Enviar e comprobar certificados para nomes DNS non públicos"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"A menos que esta opción esté marcada, o Observatorio non rexistrará certificados para nomes que non poida resolver a través do sistema DNS."> - -<!ENTITY ssl-observatory.prefs.show "Amosar opcións avanzadas"> - -<!ENTITY ssl-observatory.prefs.title "Preferencias do Observatorio SSL"> - -<!ENTITY ssl-observatory.prefs.use "Usar o Observatorio?"> -<!ENTITY ssl-observatory.warning.title "ADVERTENCIA dende o Observatorio SSL da EFF"> -<!ENTITY ssl-observatory.warning.showcert "Amosar a cadena do certificado"> -<!ENTITY ssl-observatory.warning.okay "Comprendo"> -<!ENTITY ssl-observatory.warning.text "O Observatorio SSL da EFF emitíu unha advertencia acerca do(s) certificado(s) HTTPS para este sitio:"> -<!ENTITY ssl-observatory.warning.defense "Se está conectado neste sitio, pode ser recomendable o seu contrasinal unha vez teña unha conexión segura. (Estas advertencias pódense deshabilitar na pestaña "Observatorio SSL" do diálogo de preferencias de HTTPS Everywhere)."> - -<!ENTITY ssl-observatory.prefs.self_signed -"Enviar e comprobar certificados auto asinados"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"Isto é o recomendado; os problemas criptográficos son especialmente comúns en dispositivos embebidos auto asinados"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/gu/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/gu/https-everywhere.dtd deleted file mode 100644 index 5b621dc..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/gu/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "રદ્ કરો"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/gu/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/gu/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/gu/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/gu/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/gu/ssl-observatory.dtd deleted file mode 100644 index 69f1cfd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/gu/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/gu_IN/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/gu_IN/https-everywhere.dtd deleted file mode 100644 index 8657c97..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/gu_IN/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "રદ કરો"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/gu_IN/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/gu_IN/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/gu_IN/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/gu_IN/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/gu_IN/ssl-observatory.dtd deleted file mode 100644 index 69f1cfd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/gu_IN/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/gun/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/gun/https-everywhere.dtd deleted file mode 100644 index 93d66ce..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/gun/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancel"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/gun/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/gun/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/gun/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/gun/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/gun/ssl-observatory.dtd deleted file mode 100644 index 69f1cfd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/gun/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ha/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ha/https-everywhere.dtd deleted file mode 100644 index 93d66ce..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ha/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancel"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ha/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ha/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ha/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ha/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ha/ssl-observatory.dtd deleted file mode 100644 index 69f1cfd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ha/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/he/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/he/https-everywhere.dtd deleted file mode 100644 index 18f709b..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/he/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "אודות "HTTPS בכל מקום""> -<!ENTITY https-everywhere.about.ext_name ""HTTPS בכל מקום""> -<!ENTITY https-everywhere.about.ext_description "הצפן את הרשת! השתמש ב-HTTPS אוטומטית באתרים רבים."> -<!ENTITY https-everywhere.about.version "גרסה"> -<!ENTITY https-everywhere.about.created_by "נבנה על ידי"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "ספרני Ruleset"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "תודות ל"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "אם הינך שבע רצון מ- "HTTPS בכל מקום", אולי תרצה לשקול"> -<!ENTITY https-everywhere.about.donate_tor "לתרום ל-Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "אנגלית"> -<!ENTITY https-everywhere.about.or "או"> -<!ENTITY https-everywhere.about.donate_eff "תרומה לEFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "אודות "HTTPS בכל מקום""> -<!ENTITY https-everywhere.menu.observatory "העדפות SSL Observatory"> -<!ENTITY https-everywhere.menu.globalEnable "הפעל את "HTTPS בכל מקום""> -<!ENTITY https-everywhere.menu.globalDisable "השבת את "HTTPS בכל מקום""> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "הצג מונה"> -<!ENTITY https-everywhere.menu.viewAllRules "צפה בכל הכללים"> - -<!ENTITY https-everywhere.prefs.title "הגדרות "HTTPS בכל מקום""> -<!ENTITY https-everywhere.prefs.enable_all "הפעל הכל"> -<!ENTITY https-everywhere.prefs.disable_all "השבת הכל"> -<!ENTITY https-everywhere.prefs.reset_defaults "איפוס לברירת מחדל"> -<!ENTITY https-everywhere.prefs.search "חפש"> -<!ENTITY https-everywhere.prefs.site "אתר"> -<!ENTITY https-everywhere.prefs.notes "הערות"> -<!ENTITY https-everywhere.prefs.list_caption "אילו הגדרות ניתוב HTTPS ליישם?"> -<!ENTITY https-everywhere.prefs.enabled "פועל"> -<!ENTITY https-everywhere.prefs.ruleset_howto "אתה יכול ללמוד איך לכתוב rulesets משלך (להוספת תמיכה באתרי אינטרנט אחרים)"> -<!ENTITY https-everywhere.prefs.here_link "פה"> -<!ENTITY https-everywhere.prefs.toggle "הפעל/השבת"> -<!ENTITY https-everywhere.prefs.reset_default "החזר לברירת מחדל"> -<!ENTITY https-everywhere.prefs.view_xml_source "הצג מקור XML"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "בטל"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/he/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/he/https-everywhere.properties deleted file mode 100644 index ff15872..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/he/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = להפעיל את HTTPS Everywhere -https-everywhere.menu.globalDisable = להשבית את "HTTPS בכל מקום" -https-everywhere.menu.enableDisable = להפעיל/להשבית כללים -https-everywhere.menu.noRules = (אין כללים עבור דף זה) -https-everywhere.menu.unknownRules = (כללים לדף זה אינם ידועים) -https-everywhere.toolbar.hint = "HTTPS בכל מקום" פועל כעת. באפשרותך להתאים את מצב פעילותו לכל אתר בנפרד על ידי לחיצה על הצלמית שבתוך שורת הכתובת. -https-everywhere.migration.notification0 = כדי לתקן תקלה חמורה, עדכון זה יאפס את כל כללי "HTTPS בכל מקום" לערכי ברירת המחדל שלהם. -https-everywhere.menu.ruleset-tests = הפעל את בדיקות הכללים של "HTTPS בכל מקום" diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/he/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/he/ssl-observatory.dtd deleted file mode 100644 index 2f6231a..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/he/ssl-observatory.dtd +++ /dev/null @@ -1,95 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "פרטים ומידע אישי"> -<!ENTITY ssl-observatory.popup.later "שאל אותי אחר כך"> -<!ENTITY ssl-observatory.popup.no "לא"> - -<!ENTITY ssl-observatory.popup.text ""HTTPS בכל מקום" יכול לאתר התקפות -נגד הדפדפן שלך ע"י חיפוש אישורי אבטחה המתקבלים מאתרים בתוך - מאגר האישורים המקוון. להפעיל?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"האם ברצונך ש-"HTTPS בכל מקום" יסתייע במאגר האישורים המקוון?"> - -<!ENTITY ssl-observatory.popup.yes "כן"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"אפשרות זו בטוחה לשימוש, אלא אם כן אתה משתמש ברשת תאגידית פולשנית מאוד:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"אין חשש, אלא אם כן אתה משתמש ברשת תאגידית סגורה ששמות שרתים סודיים:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"שלח לבדיקה כל אישור שנחתם על ידי רשות אישורים עליונה לא תקנית"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"בטיחותי (ואף מומלץ) להפעיל תכונה זאת, אלא אם כן אתה גולש דרך רשת תאגידית פולשנית או משתמש בתוכנת אבטחה המנטרת את תעבורת הרשת שלך באמצעות שרת פרוקסי TLS מקומי ורשות אישורים עליונה מקומית. במקרה שכזה, תכונה זאת עלולה להביא לפרסום ראיות המזהות את כתובות ה-https שאליהן גלשת דרך שרת זה, בשל התעודה המיוחדת בה הוא עושה שימוש. לאור זאת, אנו נמנעים מהפעלת תכונה זו כברירת מחדל."> - -<!ENTITY ssl-observatory.prefs.anonymous "בצע את הליך אימות האישורים דרך הרשת של Tor על מנת לשמור על האנונימיות שלך."> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"בצע את הליך אימות האישורים דרך הרשת של Tor על מנת לשמור על האנונימיות שלך (מחייב שימוש ב-Tor)."> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"אפשרות זאת תפעל רק במקרה ש-Tor כבר מותקן ומופעל."> - -<!ENTITY ssl-observatory.prefs.asn -"כשתראה אישור חדש, עדכן את מאגר האישורים המקוון בזהות ספק האינטרנט שלך"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"זה יאחזר וישלח את "מספר המערכת האוטונומי" של הרשת שלך. דבר זה יעזור לנו למקם מתקפות על HTTPS ויקבע האם נקבל דיווחים מרשתות במקומות כמו איראן וסוריה שבהם מתקפות שכאלה שכיחות יחסית."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"הצג התרעה כאשר מאגר האישורים מזהה אישור שאיננו תקף מבלי שהדפדפן גילה זאת."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"זה יבדוק את האישורים שיישלחו אל מול רשימת האישורים המבוטלים. לצערנו הרב איננו יכולים להתחייב שנאתר כל אישור שתוקפו פג, אך אם בכל זאת תוצג התרעה ישנו סיכוי סביר שמשהו השתבש."> - -<!ENTITY ssl-observatory.prefs.done "הושלם"> - -<!ENTITY ssl-observatory.prefs.explanation -""HTTPS בכל מקום" יכול להשתמש במאגר האישורים המקוון של EFF. אם תפעיל אפשרות זו היא תביא לתוצאות הבאות: -(1) יישלחו עותקים מאישורי HTTPS למאגר, כדי לעזור לנו ליירט התקפות "אדם באמצע" ולשפר את אבטחת הרשת; ו-(2) נוכל להתריע בפניך על חיבורים לא מאובטחים ועל מתקפות על הדפדפן שלך."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"לדוגמא, כאשר אתה מבקר ב- https://www.something.com, האישור שיתקבל אצלנו במאגר יעיד על כך שמישהו ביקר ב- www.something.com, אך ללא פרטים על זהות המבקר או על העמודים הספציפיים אליהם גלש. עבור עם סמן העכבר על האפשרויות לקבלת פרטים נוספים:"> - -<!ENTITY ssl-observatory.prefs.hide "הסתר אפשרויות מתקדמות"> - -<!ENTITY ssl-observatory.prefs.nonanon -"בדוק אישורים גם כשאינך מחובר לרשת Tor"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"אמנם נשתדל לשמור על פרטיות הנתונים, אבל אפשרות זאת בטוחה פחות"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"שלח לבדיקה אישורים עבור שמות מתחם שאינם נחלת הכלל"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"אלא אם אפשרות זאת סומנה, המאגר לא ישמור אישורים עבור שמות מתחם שאינם מופיעים במאגרי שמות המתחם הציבוריים"> - -<!ENTITY ssl-observatory.prefs.show "הצג אפשרויות מתקדמות"> - -<!ENTITY ssl-observatory.prefs.title "העדפות מאגר האישורים המקוון"> - -<!ENTITY ssl-observatory.prefs.use "האם להשתמש במאגר?"> -<!ENTITY ssl-observatory.warning.title "אזהרה ממאגר אישורי האבטחה של EFF"> -<!ENTITY ssl-observatory.warning.showcert "הצג את שרשרת האישורים"> -<!ENTITY ssl-observatory.warning.okay "הבנתי"> -<!ENTITY ssl-observatory.warning.text "מאגר אישורי האבטחה של EFF פרסם אזהרה לגבי אישורי האבטחה של אתר זה:"> -<!ENTITY ssl-observatory.warning.defense "אם הינך מחובר לאתר זה, מומלץ שתחליף את סיסמתך מתוך חיבור מאובטח. (ניתן לבטל התרעות אלה בטאב "מאגר האישורים" בחלונית הדו-שיח של "HTTPS בכל מקום".)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"שלח לבדיקה אישורים חתומים עצמית"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"אפשרות זו מומלצת; בעיות הצפנה נפוצות במיוחד בקרב מערכות משובצות מחשב המשתמשות באישורי אבטחה חתומים עצמית"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/hi/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/hi/https-everywhere.dtd deleted file mode 100644 index 093ca0b..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/hi/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "हाइपर टेक्स्ट ट्रांसफर प्रोटोकॉल सिक्योर हर जगह (HTTPS EVERYWHERE) के बारे में"> -<!ENTITY https-everywhere.about.ext_name "हाइपर टेक्स्ट ट्रांसफर प्रोटोकॉल सिक्योर हर जगह (HTTPS EVERYWHERE)"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "संस्करण"> -<!ENTITY https-everywhere.about.created_by "के द्वारा बनाई गई"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "हाइपर टेक्स्ट ट्रांसफर प्रोटोकॉल सिक्योर हर जगह (HTTPS EVERYWHERE) के बारे में"> -<!ENTITY https-everywhere.menu.observatory "एसएसएल वेधशाला प्राथमिकताएं"> -<!ENTITY https-everywhere.menu.globalEnable "हर जगह HTTPS सक्षम"> -<!ENTITY https-everywhere.menu.globalDisable "हर जगह HTTPS अक्षम"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "काउंटर दिखाएँ"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS हर जगह प्राथमिकताएं"> -<!ENTITY https-everywhere.prefs.enable_all "सभी सक्षम"> -<!ENTITY https-everywhere.prefs.disable_all "सभी अक्षम"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "खोज"> -<!ENTITY https-everywhere.prefs.site "स्थल"> -<!ENTITY https-everywhere.prefs.notes "नोट्स"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "सक्षम"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "यहां"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source " एक्सएमएल स्रोत देखें"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "रद्द करें"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/hi/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/hi/https-everywhere.properties deleted file mode 100644 index 5d905b8..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/hi/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = हर जगह HTTPS सक्षम -https-everywhere.menu.globalDisable = हर जगह HTTPS अक्षम -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/hi/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/hi/ssl-observatory.dtd deleted file mode 100644 index ad8a921..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/hi/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "विवरण और गोपनीयता सूचना"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "नहीं"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "हाँ"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "सम्पन्न"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "एसएसएल वेधशाला प्राथमिकताएं"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/hr/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/hr/https-everywhere.dtd deleted file mode 100644 index 3150bcc..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/hr/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "O HTTPS-u Svuda"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Svuda"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Verzija"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Zahvaljujući"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Doniraj za Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "O HTTPS-u Svuda"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Otkazi"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/hr/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/hr/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/hr/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/hr/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/hr/ssl-observatory.dtd deleted file mode 100644 index 6d253f7..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/hr/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Detalji i Informacije o Privatnosti"> -<!ENTITY ssl-observatory.popup.later "Pitaj Me Kasnije"> -<!ENTITY ssl-observatory.popup.no "Ne"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Da"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/hr_HR/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/hr_HR/https-everywhere.dtd deleted file mode 100644 index 5fbfe67..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/hr_HR/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "O proširenju HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Enkriptirajte web! Automatski koristite HTTPS sigurnost na mnogim stranicama."> -<!ENTITY https-everywhere.about.version "Inačica"> -<!ENTITY https-everywhere.about.created_by "Autori"> -<!ENTITY https-everywhere.about.and ", i"> -<!ENTITY https-everywhere.about.librarians "Autori biblioteke skupova pravila"> -<!ENTITY https-everywhere.about.add_new_rule "Dodaj novo pravilo"> -<!ENTITY https-everywhere.about.thanks "Zahvala"> -<!ENTITY https-everywhere.about.many_contributors "Puno, puno kontributora, uključujući"> -<!ENTITY https-everywhere.about.noscript "Također, dijelovi HTTPS Everywhere su zasnovani na kodu iz NoScripta, autora Giorgioa Maonea i ostalih. Zahvalni smo im za odličan rad!"> -<!ENTITY https-everywhere.about.contribute "Ako Vam se sviđa HTTPS Everywhere, mogli biste razmotriti"> -<!ENTITY https-everywhere.about.donate_tor "Doniranje Toru"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "ili"> -<!ENTITY https-everywhere.about.donate_eff "Doniranje EFF-u"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donirajte EFF-u"> -<!ENTITY https-everywhere.menu.about "O proširenju HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "Postavke SSL Opservatorija"> -<!ENTITY https-everywhere.menu.globalEnable "Omogući HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Onemogući HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Blokiraj sve nešifrirane zahtjeve"> -<!ENTITY https-everywhere.menu.showCounter "Prikaži brojač"> -<!ENTITY https-everywhere.menu.viewAllRules "Pogledaj sva pravila"> - -<!ENTITY https-everywhere.prefs.title "Podešavanje HTTPS Everywhere"> -<!ENTITY https-everywhere.prefs.enable_all "Omogući sve"> -<!ENTITY https-everywhere.prefs.disable_all "Onemogući sve"> -<!ENTITY https-everywhere.prefs.reset_defaults "Vrati na početno"> -<!ENTITY https-everywhere.prefs.search "Pretraživanje"> -<!ENTITY https-everywhere.prefs.site "Stranica"> -<!ENTITY https-everywhere.prefs.notes "Napomene"> -<!ENTITY https-everywhere.prefs.list_caption "Koja bi se pravila za HTTPS preusmjeravanje trebala primijeniti?"> -<!ENTITY https-everywhere.prefs.enabled "Omogućeno"> -<!ENTITY https-everywhere.prefs.ruleset_howto "Možete naučiti kako pisati vlastite skupove pravila (za dodavanje podrške za druge web stranice)"> -<!ENTITY https-everywhere.prefs.here_link "ovdje"> -<!ENTITY https-everywhere.prefs.toggle "Prebaci"> -<!ENTITY https-everywhere.prefs.reset_default "Vrati na početno"> -<!ENTITY https-everywhere.prefs.view_xml_source "Prikaži izvorni XML kod"> - -<!ENTITY https-everywhere.chrome.stable_rules "Pravila stabilnosti"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Prisili enkriptirane veze s ovim stranicama:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Eksperimentalna pravila"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "Može prouzročiti upozorenja ili kvarove. Onemogućeno pod zadano."> -<!ENTITY https-everywhere.chrome.add_rule "Dodaj pravilo za ovu stranicu"> -<!ENTITY https-everywhere.chrome.add_new_rule "Dodaj novo pravilo za ovu stranicu"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Uvjek koristi https za ovog domaćina"> -<!ENTITY https-everywhere.chrome.host "Domaćin:"> -<!ENTITY https-everywhere.chrome.show_advanced "Pokaži napredno"> -<!ENTITY https-everywhere.chrome.hide_advanced "Sakrij napredno"> -<!ENTITY https-everywhere.chrome.rule_name "Ime pravila"> -<!ENTITY https-everywhere.chrome.regex "Uspoređujem regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Preumsjeri na"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Otkaži"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/hr_HR/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/hr_HR/https-everywhere.properties deleted file mode 100644 index 472612f..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/hr_HR/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Omogući HTTPS Everywhere -https-everywhere.menu.globalDisable = Onemogući HTTPS Everywhere -https-everywhere.menu.enableDisable = Omogući / Onemogući pravila -https-everywhere.menu.noRules = (Nema pravila za ovu stranicu) -https-everywhere.menu.unknownRules = (Pravila za ovu stranicu su nepoznata) -https-everywhere.toolbar.hint = HTTPS Everywhere je sad aktivan. Možete ga prebacivati od stranice do stranice tako da kliknete na ikonu na adresnoj traci. -https-everywhere.migration.notification0 = Da bi se proveo bitan popravak, ovo ažuriranje će vratiti Vaše postavke HTTPS Everywhere na zadane vrijednosti. -https-everywhere.menu.ruleset-tests = Pokreni HTTPS Everywhere testove setova pravila diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/hr_HR/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/hr_HR/ssl-observatory.dtd deleted file mode 100644 index 107aa93..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/hr_HR/ssl-observatory.dtd +++ /dev/null @@ -1,102 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Pojedinosti i informacije o privatnosti"> -<!ENTITY ssl-observatory.popup.later "Pitaj me kasnije"> -<!ENTITY ssl-observatory.popup.no "Ne"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere može otkriti napade -na vaš preglednik šaljući certifikate koje primite -Opservatoriju. Želite li uključiti ovo?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Treba li HTTPS Everywhere koristiti SSL Opservatorij?"> - -<!ENTITY ssl-observatory.popup.yes "Da"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"Sigurno je omogućiti ovo, osim ako koristite jako -ometajuću korporativnu mrežu:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Sigurno, osim ako koristite korporativnu mrežu sa tajnim intranet nazivima poslužitelja:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Podnesi i provjeri certifikate potpisane od ne-standardnih root CA-ova"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"Sigurno je (i dobra je ideja) omogućiti ovu opciju, osim ako koristite ometajuću korporativnu mrežu ili Kaspersky antivirusni software koji nadgleda Vaše surfanje s TLS proxyem i privatnim root CA-ovima. Ako je opcija omogućena na takvoj mreži, ova mogućnost bi mogla objaviti dokaz koja https:// domena je bila posjećena kroz taj proxy, zbog jedinstvenog certifikata kojeg bi proizvela. Stoga je ostavljena isključena pod zadano."> - -<!ENTITY ssl-observatory.prefs.anonymous "Provjeri certifikate koristeći Tor za anonimnost"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Provjeri certifikate koristeći Tor za anonimnost (zahtijeva Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"Ova mogućnost zahtijeva instaliran i pokrenut Tor"> - -<!ENTITY ssl-observatory.prefs.asn -"Kad vidite novi certifikat, recite Opservatoriju na koji ste ISP spojeni"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"Ovo će dohvatiti i poslati "Autonomni broj sustava" Vaše mreže. To će nam pomoći u lociranju napada na HTTPS, te u otkrivanju kad nas promatraju iz mreža otkud stižu učestali napadi, mjesta poput Irana i Sirije."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Prikaži upozorenje kad Opservatorij otkrije opozvani certifikat koji Vaš preglednik nije uhvatio"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"Ovo će provjeriti predane certifikate s poznatim listama opozvanih certifikata. -Nažalost, ne možemo garantirati da ćemo uočiti svaki opozvani certifikat, ali ako vidite upozorenje, velika je šansa da nešto nije u redu."> - -<!ENTITY ssl-observatory.prefs.done "Gotovo"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere može koristiti EFF-ov SSL Opservatorij. Ovo radi dvije stvari: (1) -šalje kopije HTTPS certifikata Opservatoriju, da nam pomogne -u otkrivanju 'čovjek u sredini' napada i poboljša sigurnost Weba; i (2) -dopušta nam da Vas obavijestimo o nesigurnim vezama ili napadima na Vaš preglednik."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"Npr., kad posjetite https://www.something.com, certifikat -primljen od Opservatorija će naznačiti da je netko posjetio -www.something.com, ali ne tko je posjetio stranicu, ili koju su određenu -stranicu tražili. Prelazak mišem preko "opcija" za daljnje pojedinosti:"> - -<!ENTITY ssl-observatory.prefs.hide "Sakrij napredne opcije"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Provjeri certifikate iako Tor nije dostupan"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"Pokušati ćemo održati podatke anonimnima, ali ova mogućnost je manje sigurna"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Prijavite i provjerite certifikate za ne-javne DNS nazive"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Ako ova mogućnost nije odabrana, Opservatorij neće snimati certifikate za nazive koji se ne mogu razriješiti kroz DNS sustav."> - -<!ENTITY ssl-observatory.prefs.show "Prikaži napredne mogućnosti "> - -<!ENTITY ssl-observatory.prefs.title "Postavke SSL Opservatorija"> - -<!ENTITY ssl-observatory.prefs.use "Koristi Opservatorij?"> -<!ENTITY ssl-observatory.warning.title "UPOZORENJE iz EFF-ovog SSL Opservatorija"> -<!ENTITY ssl-observatory.warning.showcert "Prikaži lanac certifikata"> -<!ENTITY ssl-observatory.warning.okay "Razumijem"> -<!ENTITY ssl-observatory.warning.text "EFF-ov SSL Opservatorij je izdao upozorenje o HTTPS certifikatu(certifikatima) za ovu stranicu:"> -<!ENTITY ssl-observatory.warning.defense "Ako ste ulogirani na ovu stranicu, preporuča se da promijenite lozinku kad budete imali sigurnu vezu. (Ova upozorenja se mogu isključiti u "SSL Opservatorij" kartici u postavkama HTTPS Everywhere.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Prijavite i provijerite samopotpisane certifikate"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"Ovo je preporučeno; kriptografski problemi su naročito česti u samopotpisanim ugrađenim uređajima"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ht/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ht/https-everywhere.dtd deleted file mode 100644 index 93d66ce..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ht/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancel"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ht/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ht/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ht/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ht/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ht/ssl-observatory.dtd deleted file mode 100644 index 69f1cfd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ht/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/hu/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/hu/https-everywhere.dtd deleted file mode 100644 index afce165..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/hu/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "A HTTPS Everywhere névjegye"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Titkosítsa a Web-et! Automatikusan használja a HTTPS titkosítást a legtöbb oldalon."> -<!ENTITY https-everywhere.about.version "Verzió"> -<!ENTITY https-everywhere.about.created_by "Készítette:"> -<!ENTITY https-everywhere.about.and ", és"> -<!ENTITY https-everywhere.about.librarians "Szabálykészlet könyvtárosok"> -<!ENTITY https-everywhere.about.add_new_rule "Új szabály hozzáadás"> -<!ENTITY https-everywhere.about.thanks "Köszönet:"> -<!ENTITY https-everywhere.about.many_contributors "Sok, sok közreműködő, köztük"> -<!ENTITY https-everywhere.about.noscript "A HTTPS Everywhere egyes részei Giorgio Maone és mások által fejlesztett NoScripten alapulnak. Hálásak vagyunk a nagyszerű munkájukért!"> -<!ENTITY https-everywhere.about.contribute "Ha tetszik a HTTPS Everywhere, talán megfontolja a következőket:"> -<!ENTITY https-everywhere.about.donate_tor "A Tor támogatása"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "vagy"> -<!ENTITY https-everywhere.about.donate_eff "Az EFF támogatása"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Támogatás az EFF-nek"> -<!ENTITY https-everywhere.menu.about "A HTTPS Everywhere névjegye"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferenciák"> -<!ENTITY https-everywhere.menu.globalEnable "HTTPS Everywhere bekapcsolása"> -<!ENTITY https-everywhere.menu.globalDisable "HTTPS Everywhere kikapcsolása"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Minden titkosítatlan kérés tiltása"> -<!ENTITY https-everywhere.menu.showCounter "Mutassa a számlálót"> -<!ENTITY https-everywhere.menu.viewAllRules "Összes szabály megtekintése"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferenciák"> -<!ENTITY https-everywhere.prefs.enable_all "Mind bekapcsolása"> -<!ENTITY https-everywhere.prefs.disable_all "Mind kikapcsolása"> -<!ENTITY https-everywhere.prefs.reset_defaults "Visszaállítás alaphelyzetre"> -<!ENTITY https-everywhere.prefs.search "Keresés"> -<!ENTITY https-everywhere.prefs.site "Oldal"> -<!ENTITY https-everywhere.prefs.notes "Megjegyzések"> -<!ENTITY https-everywhere.prefs.list_caption "Mely HTTPS átirányításokat szeretné használni?"> -<!ENTITY https-everywhere.prefs.enabled "Bekapcsolva"> -<!ENTITY https-everywhere.prefs.ruleset_howto "Megtanulhatja, hogy adhatja hozzá a saját szabálykészletét (hogy további oldalakat támogasson) "> -<!ENTITY https-everywhere.prefs.here_link "itt"> -<!ENTITY https-everywhere.prefs.toggle "Vált"> -<!ENTITY https-everywhere.prefs.reset_default "Visszaállítás alaphelyzetre"> -<!ENTITY https-everywhere.prefs.view_xml_source "Az XML forrás megtekintése"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stabil szabályok"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Titkosított kapcsolatok kényszerítése ezekhez a weboldalakhoz:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Kísérleti szabályok"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "Figyelmeztetéseket és megszakításokat okozhat. Alapértelmezésben letiltva."> -<!ENTITY https-everywhere.chrome.add_rule "Szabály felvétel az oldalhoz"> -<!ENTITY https-everywhere.chrome.add_new_rule "Új szabály az oldalhoz"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Mindig https-t használjon ehhez a kiszolgálóhoz"> -<!ENTITY https-everywhere.chrome.host "Kiszolgáló:"> -<!ENTITY https-everywhere.chrome.show_advanced "Speciális beállítások megjelenítése"> -<!ENTITY https-everywhere.chrome.hide_advanced "Speciális beállítások elrejtése"> -<!ENTITY https-everywhere.chrome.rule_name "Szabály neve"> -<!ENTITY https-everywhere.chrome.regex "Illeszkedő regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Átirányítás ide:"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Mégsem"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/hu/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/hu/https-everywhere.properties deleted file mode 100644 index 616cb20..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/hu/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = HTTPS Everywhere bekapcsolása -https-everywhere.menu.globalDisable = HTTPS Everywhere kikapcsolása -https-everywhere.menu.enableDisable = Szabályok Engedélyezése / Tiltása -https-everywhere.menu.noRules = (nincs szabály ehhez az oldalhoz) -https-everywhere.menu.unknownRules = (az oldalhoz tartozó szabályok ismeretlenek) -https-everywhere.toolbar.hint = A HTTPS Everywhere most aktív. Ki és bekapcsolhatja egy-egy oldalon a címsorban található ikonra kattintva. -https-everywhere.migration.notification0 = Egy kritikus javítás végrehajtása miatt, ez a frissítés visszaállítja a HTTPS Everywhere szabály preferenciáit az alapértékekre. -https-everywhere.menu.ruleset-tests = HTTPS Everywhere szabálygyűjtemény tesztek futtatása diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/hu/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/hu/ssl-observatory.dtd deleted file mode 100644 index 3ae8c9f..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/hu/ssl-observatory.dtd +++ /dev/null @@ -1,97 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Részletek és adatvédelmi információk"> -<!ENTITY ssl-observatory.popup.later "Kérdezzen meg később"> -<!ENTITY ssl-observatory.popup.no "Nem"> - -<!ENTITY ssl-observatory.popup.text "A HTTPS Everywhere a böngésző elleni támadásokat képes észlelni, azzal ,hogy elküldi a megkapott tanúsítványokat az Observatory részére. Bekapcsoljuk ezt a funkciót?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Használja a HTTPS Everywhere az SSL Observatory-t?"> - -<!ENTITY ssl-observatory.popup.yes "Igen"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"Biztonságos, ha bekapcsolja, kivéve, ha nagyon privát szférába hatoló vállalati hálózatot használ:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Biztonságos, ha nem használ titkos internet szerver nevekkel rendelkező vállalati hálózatot:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Küldje be és ellenőrizze azon tanúsítványokat, amelyek nem standard tanúsítványkiadótól származnak"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"Biztonságos (és javasolt) ha bekapcsolja ezt az opciót, kivéve ha nagyon figyelt vállalati hálózatról vagy Kaspersky víruskereső szoftvert használ, ami figyeli a böngészést egy TLS proxy-val, és egy helyi tanúsítványkiadóval. -Ha bekapcsolja, az az opció nyomokat hagyhat arról, hogy mely https:// oldalakor látogatott meg azon a proxy-n keresztül, mert egyedi tanúsítványokat hoz létre. -Tehát hagyja kikapcsolva alapértelmezetten. -"> - -<!ENTITY ssl-observatory.prefs.anonymous "A tanúsítványok ellenőrzése Tor-on keresztül az anonimitás megőrzéséhez."> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"A tanúsítványok ellenőrzése Tor-on keresztül az anonimitás megőrzéséhez. (Torbutton szükséges hozzá)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"Ez az opció a Tor és Torbutton szoftverek telepítését igényli."> - -<!ENTITY ssl-observatory.prefs.asn -"Ha új tanúsítványt lát, küldje el az Observatory-nak, hogy mely internet szolgáltatóhoz csatlakozik éppen"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"Ez kiolvassa és elküldi az ASN számát a hálózatának. Ez segít a HTTPS elleni támadások észlelésében, és lehetővé teszi az észlelést annak, hogy a támadás olyan hálózatokon zajlik-e mint Irán vagy Szíria, ahol a támadások meglehetősen gyakoriak."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Figyelmeztessen, ha az Observatory a böngésző által el nem kapott, visszavont tanúsítványokat talál."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"...Sajnos nem tudjuk garantálni hogy megzászlózunk minden visszavont igazolást, "> - -<!ENTITY ssl-observatory.prefs.done "Kész"> - -<!ENTITY ssl-observatory.prefs.explanation -"A HTTPS Everywhere használni tudja az EFF's SSL Obszervatóriumát (Observatory). Ez két dolgot jelent: (1) -elküldi a másolatát a HTTPS kapcoslatok tanúsítványainak az Obszervatóriumba, hogy segítse a MITM támadások észlelését, és növelje a Web biztonságát; és (2) -lehetővé teszi, hogy figyelmeztessük, ha nem biztonságos a kapcoslata, vagy valaki támadja a böngészőjét."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"Például, ha meglátogatja a https://www.valami.hu oldalt, a tanúsítvány amit az Obszervatórium megkap, azt jelzi majd, hogy valaki meglátogatta a www.valami.hu oldalt, de nem mutatja, hogy ki, és hogy melyik oldalt nézte. Húzza az egeret az opciók felé a részletekért:"> - -<!ENTITY ssl-observatory.prefs.hide "Speciális beállítások elrejtése"> - -<!ENTITY ssl-observatory.prefs.nonanon -"A tanúsítványok ellenőrzése akkor is, ha a Tor nem elérhető"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"Továbbra is megpróbáljuk az adatot névtelenül kezelni, de ez a beállítás kevésbé biztonságos"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Nem publikus DNS nevekhez tartozó tanúsítványok elküldése és ellenőrzése"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Ha ez az opció nicns bejelölve, akkor az Observatory nem rögzíti azon tanúsítványokat, amelyek nem feloldhatók publikus DNS rendszereken keresztül."> - -<!ENTITY ssl-observatory.prefs.show "Speciális beállítások megjelenítése"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferenciák"> - -<!ENTITY ssl-observatory.prefs.use "Az Observatory használata?"> -<!ENTITY ssl-observatory.warning.title "FIGYELMEZTETÉS az EFF SSL Observatory-tól"> -<!ENTITY ssl-observatory.warning.showcert "A tanúsítványlánc megjelenítése"> -<!ENTITY ssl-observatory.warning.okay "Megértettem"> -<!ENTITY ssl-observatory.warning.text "Az EFF SSL Oeservatory figyelmeztetést bocsátott az alábbi tanúsítványokról, ehhez az oldalhoz:"> -<!ENTITY ssl-observatory.warning.defense "Ha be vagy jelentkezve erre az oldalra, javasolt a jelszavad megváltoztatása ha biztonságos kapcsolatot használsz. (Ezek a figyelmeztetések kikapcsolhatók a HTTPS Everywhere preferenciák "SSL Observatory" fülén.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"A használt önaláírt tanúsítványok feltöltése és ellenőrzése"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"Ez ajánlott; a kriptográfiai problémák széles körben elterjedtek az önaláírt tanúsítvánnyal ellátott céleszközöknél."> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/hy/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/hy/https-everywhere.dtd deleted file mode 100644 index 0f5e6ac..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/hy/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "«HTTPS Everywhere»-ի մասին"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Կոդավորե՛ք Վեբը։ Ավտոմատ օգտագործեք HTTPS անվտանգություն շատ կայքերի վրա։"> -<!ENTITY https-everywhere.about.version "Տարբերակ"> -<!ENTITY https-everywhere.about.created_by "Ստեղծեց՝"> -<!ENTITY https-everywhere.about.and ", և"> -<!ENTITY https-everywhere.about.librarians "Կանոնաշարի գրադարանավարներ"> -<!ENTITY https-everywhere.about.add_new_rule "Ավելացնել կանոն"> -<!ENTITY https-everywhere.about.thanks "Շնորհիվ՝"> -<!ENTITY https-everywhere.about.many_contributors "Շատ-շատ անկախ աջակցողների, ներառյալ՝"> -<!ENTITY https-everywhere.about.noscript "«HTTPS Everywhere»-ի որոշ մաս հիմնված է «NoScript»-ի կոդերի վրա, գրված Giorgio Maone-ի և ուրիշների կողմից։ Շնորհակալ ենք նրանց գերազանց աշխատանքի համար։"> -<!ENTITY https-everywhere.about.contribute "Եթե սիրում եք օգտագործել «HTTPS Everywhere»-ը, ապա հաշվի առեք"> -<!ENTITY https-everywhere.about.donate_tor "Նվիրաբերում եք Tor-ին"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "կամ"> -<!ENTITY https-everywhere.about.donate_eff "Նվիրաբերում եք EFF-ին"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Նվիրաբերեք EFF-ին"> -<!ENTITY https-everywhere.menu.about "«HTTPS Everywhere»-ի մասին"> -<!ENTITY https-everywhere.menu.observatory "SSL Դիտակետի կարգավորումներ"> -<!ENTITY https-everywhere.menu.globalEnable "Միացնել «HTTPS Everywhere»-ը"> -<!ENTITY https-everywhere.menu.globalDisable "Անջատել «HTTPS Everywhere»-ը"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Արգելափակել բոլոր չկոդավորված միացումները"> -<!ENTITY https-everywhere.menu.showCounter "Ցուցադրել հաշվիչը"> -<!ENTITY https-everywhere.menu.viewAllRules "Դիտել բոլոր կանոնները"> - -<!ENTITY https-everywhere.prefs.title "«HTTPS Everywhere»-ի կարգավորումներ"> -<!ENTITY https-everywhere.prefs.enable_all "Միացնել բոլորը"> -<!ENTITY https-everywhere.prefs.disable_all "Անջատել բոլորը"> -<!ENTITY https-everywhere.prefs.reset_defaults "Ետ բերել լռելյայնները"> -<!ENTITY https-everywhere.prefs.search "Որոնել"> -<!ENTITY https-everywhere.prefs.site "Կայք"> -<!ENTITY https-everywhere.prefs.notes "Հուշումներ"> -<!ENTITY https-everywhere.prefs.list_caption "Ո՞ր HTTPS վերահասցեավորման կանոնները պետք է գործեն։"> -<!ENTITY https-everywhere.prefs.enabled "Միացված"> -<!ENTITY https-everywhere.prefs.ruleset_howto "Դուք կարող եք սովորել՝ ինչպես գրել Ձեր սեփական կանոնները (և ինչպես ավելացնել այլ կայքերի համար աջակցություն)"> -<!ENTITY https-everywhere.prefs.here_link "այստեղ"> -<!ENTITY https-everywhere.prefs.toggle "Փոխել"> -<!ENTITY https-everywhere.prefs.reset_default "Ետ բերել լռելյայնը"> -<!ENTITY https-everywhere.prefs.view_xml_source "Դիտել XML աղբյուրը"> - -<!ENTITY https-everywhere.chrome.stable_rules "Կայուն կանոններ"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Ստիպել կոդավորված միացում այս կայքերին."> -<!ENTITY https-everywhere.chrome.experimental_rules "Փորձարարական կանոններ"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "Կարող է առաջ բերել զգուշացումներ կամ խափանումներ։ Լռելյայն արգելափակված է։"> -<!ENTITY https-everywhere.chrome.add_rule "Ավելացնե կանոն այս կայքի համար"> -<!ENTITY https-everywhere.chrome.add_new_rule "Ավելացնել նոր կանոն այս կայքի համար"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Միշտ օգտագործել https այս հոսթի համար"> -<!ENTITY https-everywhere.chrome.host "Հոսթ. "> -<!ENTITY https-everywhere.chrome.show_advanced "Ցուցադրել մանրամասները"> -<!ENTITY https-everywhere.chrome.hide_advanced "Թաքցնել մանրամասները"> -<!ENTITY https-everywhere.chrome.rule_name "Կանոնի անվանումը"> -<!ENTITY https-everywhere.chrome.regex "Համընկնող regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Վերահասցեավորել դեպի"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Չեղարկել"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/hy/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/hy/https-everywhere.properties deleted file mode 100644 index 45aa04c..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/hy/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Միացնել «HTTPS Everywhere»-ը -https-everywhere.menu.globalDisable = Անջատել «HTTPS Everywhere»-ը -https-everywhere.menu.enableDisable = Միացնել / անջատել կանոնները -https-everywhere.menu.noRules = (Այս էջի համար կանոններ չկան) -https-everywhere.menu.unknownRules = (Այս էջի համար կանոններն անհայտ են) -https-everywhere.toolbar.hint = «HTTPS Everywhere»-ն այժմ միացված է։ Դուք կարող եք փոխանջատել դա կայք ըստ կայքի հիմունքում՝ սեղմելով հասցեի տողում գտնվող նշանին։ -https-everywhere.migration.notification0 = Վտանգավոր դրույթները շտկելու նպատակով՝ այս թարմացումը վերադարձնում է Ձեր «HTTPS Everywhere» կանոնների կարգավորումներն իրենց սկզբնական արժեքներին։ -https-everywhere.menu.ruleset-tests = Կատարել «HTTPS Everywhere» կանոնների փորձարկում diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/hy/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/hy/ssl-observatory.dtd deleted file mode 100644 index 7f13811..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/hy/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Մանրամասներ և տեղեկություն գաղտնիության մասին"> -<!ENTITY ssl-observatory.popup.later "Հարցնել հետո"> -<!ENTITY ssl-observatory.popup.no "Ոչ"> - -<!ENTITY ssl-observatory.popup.text "«HTTPS Everywhere»-ը կարող է բացահայտել Ձեր դիտարկչի -դեմ կատարված հարձակումները՝ Դիտակետին ուղարկելով Ձեր այցելած -կայքերի հավաստագրերը։ Միացնե՞լ այդ գործառույթը։"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"«HTTPS Everywhere»-ը պե՞տք է օգտագործի SSL Դիտակետը։"> - -<!ENTITY ssl-observatory.popup.yes "Այո"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"Սա միացնելն ապահով է, եթե միայն Դուք չեք -օգտագործում խիստ նեղ աշխատանքային կապ․"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Ապահով է, եթե Դուք չեք օգտագործում գաղտնի ինտրանետ սերվեր անուններով աշխատանքային կապ․"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Դիտակետի կարգավորումներ"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/hy_AM/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/hy_AM/https-everywhere.dtd deleted file mode 100644 index 2ac51cd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/hy_AM/https-everywhere.dtd +++ /dev/null @@ -1,56 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockHttpRequests "Block all HTTP requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancel"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/hy_AM/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/hy_AM/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/hy_AM/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/hy_AM/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/hy_AM/ssl-observatory.dtd deleted file mode 100644 index cc008db..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/hy_AM/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "Ոչ"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Պատրաստ է"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ia/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ia/https-everywhere.dtd deleted file mode 100644 index fdac501..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ia/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Cercar"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Activate"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancellar"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ia/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ia/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ia/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ia/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ia/ssl-observatory.dtd deleted file mode 100644 index 7f409dc..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ia/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Si"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/id/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/id/https-everywhere.dtd deleted file mode 100644 index e7037a0..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/id/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "Tentang HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Enkripsi Web-nya! Secara otomatis menggunakan keamanan HTTPS pada banyak situs."> -<!ENTITY https-everywhere.about.version "Versi"> -<!ENTITY https-everywhere.about.created_by "Dibuat oleh"> -<!ENTITY https-everywhere.about.and ", dan"> -<!ENTITY https-everywhere.about.librarians "Pustakawan Ruleset"> -<!ENTITY https-everywhere.about.add_new_rule "Tambah Aturan Baru"> -<!ENTITY https-everywhere.about.thanks "Terima kasih kepada"> -<!ENTITY https-everywhere.about.many_contributors "Sangat banyak kontributor, termasuk"> -<!ENTITY https-everywhere.about.noscript "Juga, sebagian kode HTTPS Everywhere dikembangkan berdasarkan NoScript, oleh Giorgio Maone dan lainnya. Kami berterima kasih untuk hasil karya mereka yang luar biasa!"> -<!ENTITY https-everywhere.about.contribute "Jika anda menyukai HTTPS Everywhere, anda bisa"> -<!ENTITY https-everywhere.about.donate_tor "Donasi untuk Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "atau"> -<!ENTITY https-everywhere.about.donate_eff "Donasi untuk EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donasi ke EFF"> -<!ENTITY https-everywhere.menu.about "Tentang HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "Preferensi SSL Observatory"> -<!ENTITY https-everywhere.menu.globalEnable "Fungsikan HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Nonfungsikan HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Blokir semua permintaan tidak terenkripsi"> -<!ENTITY https-everywhere.menu.showCounter "Tampilkan Penghitung"> -<!ENTITY https-everywhere.menu.viewAllRules "Lihat Semua Aturan"> - -<!ENTITY https-everywhere.prefs.title "Preferensi HTTPS Everywhere"> -<!ENTITY https-everywhere.prefs.enable_all "Fungsikan Semua"> -<!ENTITY https-everywhere.prefs.disable_all "Nonfungsikan Semua"> -<!ENTITY https-everywhere.prefs.reset_defaults "Kembalikan ke Bawaan"> -<!ENTITY https-everywhere.prefs.search "Cari"> -<!ENTITY https-everywhere.prefs.site "Situs"> -<!ENTITY https-everywhere.prefs.notes "Catatan"> -<!ENTITY https-everywhere.prefs.list_caption "Aturan pengalihan HTTPS yang mana yang harus diterapkan?"> -<!ENTITY https-everywhere.prefs.enabled "Difungsikan"> -<!ENTITY https-everywhere.prefs.ruleset_howto "Anda bisa belajar bagaimana menulis ruleset Anda sendiri (untuk menambah dukungan situs web yang lain)"> -<!ENTITY https-everywhere.prefs.here_link "di sini"> -<!ENTITY https-everywhere.prefs.toggle "Jungkit"> -<!ENTITY https-everywhere.prefs.reset_default "Kembalikan ke Bawaan"> -<!ENTITY https-everywhere.prefs.view_xml_source "Lihat Sumber XML"> - -<!ENTITY https-everywhere.chrome.stable_rules "Aturan stabil"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Paksa koneksi terenkripsi untuk situs ini:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Aturan eksperimental"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "Dapat mengakibatkan peringatan atau kerusakan. Dinonfungsikan secara bawaan."> -<!ENTITY https-everywhere.chrome.add_rule "Tambah aturan untuk situs ini"> -<!ENTITY https-everywhere.chrome.add_new_rule "Tambah aturan baru untuk situs ini"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Selalu gunakan https untuk host ini"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Tampilkan opsi lanjutan"> -<!ENTITY https-everywhere.chrome.hide_advanced "Sembunyikan opsi lanjutan"> -<!ENTITY https-everywhere.chrome.rule_name "Nama aturan"> -<!ENTITY https-everywhere.chrome.regex "Regex kecocokan"> -<!ENTITY https-everywhere.chrome.redirect_to "Alihkan ke"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Batal"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/id/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/id/https-everywhere.properties deleted file mode 100644 index 60434d1..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/id/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Fungsikan HTTPS Everywhere -https-everywhere.menu.globalDisable = Nonfungsikan HTTPS Everywhere -https-everywhere.menu.enableDisable = Fungsikan/Nonfungsikan Aturan -https-everywhere.menu.noRules = (Tidak Ada Aturan untuk Halaman Ini) -https-everywhere.menu.unknownRules = (Aturan untuk Halaman Ini Tidak Diketahui) -https-everywhere.toolbar.hint = HTTPS Everywhere sekarang aktif. Anda dapat mengaktifkannya situs demi situs dengan mengklik ikon di bilah alamat. -https-everywhere.migration.notification0 = Dalam rangka mengimplementasikan perbaikan yang krusial, pemutakhiran ini mengatur ulang preferensi aturan HTTPS Everywhere ke nilai bawaannya. -https-everywhere.menu.ruleset-tests = Jalankan Tes Ruleset HTTPS Everywhere diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/id/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/id/ssl-observatory.dtd deleted file mode 100644 index fd01758..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/id/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Detail dan Informasi Privasi"> -<!ENTITY ssl-observatory.popup.later "Tanya Saya Nanti"> -<!ENTITY ssl-observatory.popup.no "Tidak"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere dapat mendeteksi serangan -terhadap peramban Anda dengan mengirimkan sertifikat yang Anda terima ke -Observatori. Aktifkan?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Apakah HTTPS Everywhere harus menggunakan SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Ya"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"Aman untuk memfungsikan ini, kecuali Anda menggunakan -jaringan perusahaan yang sangat ketat:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Aman, kecuali Anda menggunakan jaringan perusahaan dengan nama server intranet rahasia:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Kirim dan periksa sertifikat yang ditanda tangani oleh root CA non-standar"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"Aman (dan ide yang bagus) untuk mengaktifkan opsi ini, kecuali jika Anda menggunakan jaringan perusahaan yang ketat atau perangkat lunak antivirus Kaspersky yang memonitor penjelajahan Anda dengan proksi TLS dan Otoritas Sertifikasi root privat. Jika diaktifkan pada jaringan tersebut, opsi ini mungkin memberi bukti bahwa domain https:// sedang dikunjungi melalui proksi tersebut, karena sertifikat unik yang dihasilkannya. Jadi kami matikan secara bawaan."> - -<!ENTITY ssl-observatory.prefs.anonymous "Periksa sertifikat menggunakan Tor untuk anonimitas"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Periksa sertifikat menggunakan Tor untuk anonimitas (membutuhkan Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"Opsi ini membutuhkan Tor terpasang dan berjalan"> - -<!ENTITY ssl-observatory.prefs.asn -"Saat Anda menemukan sertifikat baru, beri tahu Observatory nama ISP Anda yang terhubung"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"Ini akan mengambil dan mengirim "Autonomous System number" jaringan Anda. Ini akan membantu kami menemukan serangan terhadap HTTPS, dan untuk menentukan apakah kami memiliki observasi dari jaringan di tempat seperti Iran dan Suriah, tempat serangan sering terjadi."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Tampilkan peringatan ketika Observatory mendeteksi sertifikat yang dicabut yang tidak tertangkap oleh peramban Anda"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"Ini akan membandingkan sertifikat yang dikirimkan dengan Certificate Revocation Lists yang ada. Sayangnya, kami tidak bisa memastikan apakah kami akan menandai setiap sertifikat yang dicabut, tetapi jika Anda benar-benar melihat peringatan, ada kemungkinan sesuatu yang salah terjadi."> - -<!ENTITY ssl-observatory.prefs.done "Selesai"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere bisa menggunakan SSL Observatory EFF. Ini melakukan dua hal: (1) -mengirim salinan sertifikat HTTPS ke Observatory, untuk membantu kami -mendeteksi serangan 'orang ditengah' dan meningkatkan keamanan Web; dan (2) -mengizinkan kami memperingatkan Anda tentang sambungan tidak aman atau serangan ke peramban Anda."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"Sebagai contoh, ketika Anda mengunjungi https://www.something.com, sertifikat -diterima oleh Observatory akan mengindikasikan bahwa seseorang mengunjungi -www.something.com, tetapi bukan siapa yang mengunjungi situs tersebut, atau -halaman yang mereka lihat. Gerakkan tetikus ke atas opsi untuk perincian lebih lanjut:"> - -<!ENTITY ssl-observatory.prefs.hide "Sembunyikan opsi lanjutan"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Periksa sertifikat bahkan jika Tor tidak tersedia"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"Kami akan terus mencoba untuk menjaga data tetap anonim, tetapi opsi ini kurang aman"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Kirim dan periksa sertifikat untuk nama DNS non-publik"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Kecuali jika opsi ini di centang, Observatory tidak akan merekam sertifikat untuk nama yang tidak bisa ditemukan melalui sistem DNS."> - -<!ENTITY ssl-observatory.prefs.show "Tampilkan opsi lanjutan"> - -<!ENTITY ssl-observatory.prefs.title "Preferensi SSL Observatory"> - -<!ENTITY ssl-observatory.prefs.use "Gunakan Observatory?"> -<!ENTITY ssl-observatory.warning.title "PERINGATAN dari SSL Observatory EFF"> -<!ENTITY ssl-observatory.warning.showcert "Tampilkan rantai sertifikat"> -<!ENTITY ssl-observatory.warning.okay "Saya mengerti"> -<!ENTITY ssl-observatory.warning.text "SSL Observatory EFF telah mengeluarkan peringatan mengenai sertifikat HTTPS untuk situs ini:"> -<!ENTITY ssl-observatory.warning.defense "Jika Anda masuk ke situs ini, sangat dianjurkan untuk merubah kata sandi Anda segera setelah Anda memiliki sambungan yang aman. (Peringatan ini bisa dinonfungsikan pada tab "SSL Observatory" di dalam jendela preferensi HTTPS Everywhere.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Kirim dan periksa sertifikat yang ditanda tangani sendiri"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"Ini di anjurkan; masalah kriptogafi adalah hal yang umum pada perangkat terbenam yang ditanda tangani sendiri"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/is/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/is/https-everywhere.dtd deleted file mode 100644 index 50c1a3c..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/is/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "Um HTTPS Allsstaðar"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Allsstaðar"> -<!ENTITY https-everywhere.about.ext_description "Dulkóðaðu vefinn! Notaðu sjálfkrafa HTTPS-öryggi á mörgum vefsvæðum."> -<!ENTITY https-everywhere.about.version "Útgáfa"> -<!ENTITY https-everywhere.about.created_by "Búið til af"> -<!ENTITY https-everywhere.about.and " og"> -<!ENTITY https-everywhere.about.librarians ""Ruleset Librarians""> -<!ENTITY https-everywhere.about.add_new_rule "Bæta við nýrri reglu"> -<!ENTITY https-everywhere.about.thanks "Þökk sé"> -<!ENTITY https-everywhere.about.many_contributors "gríðarlega mörgum aðilum, þar á meðal"> -<!ENTITY https-everywhere.about.noscript "Ennfremur má geta bað hlutar HTTPS Everywhere eru byggðir á kóða frá NoScript, eftir Giorgio Maone og fleiri. Við stöndum í þakkarskuld við þá !"> -<!ENTITY https-everywhere.about.contribute "Ef þú kannt við HTTPS Allsstaðar ættirðu að íhuga"> -<!ENTITY https-everywhere.about.donate_tor "Framlag til Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "is"> -<!ENTITY https-everywhere.about.or "eða"> -<!ENTITY https-everywhere.about.donate_eff "Framlag til EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Styrkja EFF"> -<!ENTITY https-everywhere.menu.about "Um HTTPS Allsstaðar"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory valkostir"> -<!ENTITY https-everywhere.menu.globalEnable "Virkja HTTPS Allsstaðar"> -<!ENTITY https-everywhere.menu.globalDisable "Gera HTTPS Allsstaðar óvirkt"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Hindra allar ódulritaðar beiðnir"> -<!ENTITY https-everywhere.menu.showCounter "Birta teljara"> -<!ENTITY https-everywhere.menu.viewAllRules "Skoða allar reglur"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Allsstaðar valkostir"> -<!ENTITY https-everywhere.prefs.enable_all "Virkja allt"> -<!ENTITY https-everywhere.prefs.disable_all "Gera allt óvirkt"> -<!ENTITY https-everywhere.prefs.reset_defaults "Frumstilla á sjálfgefnar stillingar"> -<!ENTITY https-everywhere.prefs.search "Leita"> -<!ENTITY https-everywhere.prefs.site "Vefsvæði"> -<!ENTITY https-everywhere.prefs.notes "Skýringar"> -<!ENTITY https-everywhere.prefs.list_caption "Hvaða HTTPS endurbeiningarreglur ættu að gilda?"> -<!ENTITY https-everywhere.prefs.enabled "Virkt"> -<!ENTITY https-everywhere.prefs.ruleset_howto "Þú getur lært hvernig á að skrifa eigin reglusett (til að bæta við stuðningi fyrir aðrar vefsíður)"> -<!ENTITY https-everywhere.prefs.here_link "hér"> -<!ENTITY https-everywhere.prefs.toggle "Víxla"> -<!ENTITY https-everywhere.prefs.reset_default "Frumstillaá sjálfgefið"> -<!ENTITY https-everywhere.prefs.view_xml_source "Skoða XML-uppruna"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stöðugar reglur"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Þvinga dulritaðar tengingar við þessi vefsvæði:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Reglur á tilraunastigi"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "Getur valdið hruni eða viðvörunum. Sjálfgefið óvirkt."> -<!ENTITY https-everywhere.chrome.add_rule "Bæta við reglu fyrir þetta vefsvæði"> -<!ENTITY https-everywhere.chrome.add_new_rule "Bæta við nýrri reglu fyrir þetta vefsvæði"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Alltaf nota HTTPS fyrir þessa vél"> -<!ENTITY https-everywhere.chrome.host "Hýsilvél:"> -<!ENTITY https-everywhere.chrome.show_advanced "Birta ítalegt"> -<!ENTITY https-everywhere.chrome.hide_advanced "Fela ítalegt"> -<!ENTITY https-everywhere.chrome.rule_name "Heiti reglu"> -<!ENTITY https-everywhere.chrome.regex "Samsvarandi reglulegri segð"> -<!ENTITY https-everywhere.chrome.redirect_to "Endurbeina á"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Hætta við"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/is/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/is/https-everywhere.properties deleted file mode 100644 index afe70eb..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/is/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Virkja HTTPS Allsstaðar -https-everywhere.menu.globalDisable = Gera HTTPS Allsstaðar óvirkt -https-everywhere.menu.enableDisable = Virkja / Afvirkja reglur -https-everywhere.menu.noRules = (Engar reglur fyrir þessa síðu) -https-everywhere.menu.unknownRules = (Reglur fyrir þessa síðu ekki þekktar) -https-everywhere.toolbar.hint = HTTPS Allsstaðar er núna virkt. Þú getur víxlað því af/á fyrir hvert vefsvæði fyrir sig með því að smella á táknmyndina í staðsetningarslánni. -https-everywhere.migration.notification0 = Til þess að virkja nauðsynlega leiðréttingu, mun þessi uppfærsla endursetja stillingar á reglum fyrir HTTPS Allsstaðar á sjálfgefin gildi. -https-everywhere.menu.ruleset-tests = Keyra prófunarreglusett fyrir HTTPS Allsstaðar diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/is/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/is/ssl-observatory.dtd deleted file mode 100644 index 92068d4..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/is/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Ítarefni og persónuupplýsingar"> -<!ENTITY ssl-observatory.popup.later "Spyrja mig síðar"> -<!ENTITY ssl-observatory.popup.no "Nei"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Já"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Búið"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Fela ítarlegar stillingar"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Birta ítarlegar stillingar"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory valkostir"> - -<!ENTITY ssl-observatory.prefs.use "Nota Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Sýna skilríkjakeðjuna"> -<!ENTITY ssl-observatory.warning.okay "Ég skil"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/it/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/it/https-everywhere.dtd deleted file mode 100644 index a1c600d..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/it/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "Informazioni su HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Cripta il Web! Usa HTTPS automaticamente su numerosi siti."> -<!ENTITY https-everywhere.about.version "Versione"> -<!ENTITY https-everywhere.about.created_by "Creato da"> -<!ENTITY https-everywhere.about.and ", e"> -<!ENTITY https-everywhere.about.librarians "Autori regole"> -<!ENTITY https-everywhere.about.add_new_rule "Aggiungi una nuova regola"> -<!ENTITY https-everywhere.about.thanks "Grazie a"> -<!ENTITY https-everywhere.about.many_contributors "Tanti e tanti collaboratori, compresi"> -<!ENTITY https-everywhere.about.noscript "Inoltre, porzioni di HTTPS Everywhere sono basate su codice di NoScript, di Giorgio Maone ed altri. Gli siamo grati per il loro eccellente lavoro!"> -<!ENTITY https-everywhere.about.contribute "Se ti piace HTTPS Everywhere, considera anche"> -<!ENTITY https-everywhere.about.donate_tor "Donazioni a Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "it"> -<!ENTITY https-everywhere.about.or "o"> -<!ENTITY https-everywhere.about.donate_eff "Donazioni a EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Dona alla EFF"> -<!ENTITY https-everywhere.menu.about "Informazioni su HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "Preferenze Osservatorio SSL"> -<!ENTITY https-everywhere.menu.globalEnable "Abilita HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disabilita HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Blocca tutte le richieste in chiaro"> -<!ENTITY https-everywhere.menu.showCounter "Mostra contatore"> -<!ENTITY https-everywhere.menu.viewAllRules "Vedi tutte le regole"> - -<!ENTITY https-everywhere.prefs.title "Preferenze di HTTPS Everywhere"> -<!ENTITY https-everywhere.prefs.enable_all "Abilita tutto"> -<!ENTITY https-everywhere.prefs.disable_all "Disabilita tutto"> -<!ENTITY https-everywhere.prefs.reset_defaults "Ripristina la configurazione predefinita"> -<!ENTITY https-everywhere.prefs.search "Cerca"> -<!ENTITY https-everywhere.prefs.site "Sito"> -<!ENTITY https-everywhere.prefs.notes "Note"> -<!ENTITY https-everywhere.prefs.list_caption "Quali regole di reindirizzamento HTTPS devono essere applicate?"> -<!ENTITY https-everywhere.prefs.enabled "Abilitato"> -<!ENTITY https-everywhere.prefs.ruleset_howto "Imparare a scrivere i tuoi insiemi di regole (per supportare altri siti)"> -<!ENTITY https-everywhere.prefs.here_link "qui"> -<!ENTITY https-everywhere.prefs.toggle "Cambia"> -<!ENTITY https-everywhere.prefs.reset_default "Ripristina configurazione predefinita"> -<!ENTITY https-everywhere.prefs.view_xml_source "Mostra sorgente XML"> - -<!ENTITY https-everywhere.chrome.stable_rules "Regole stabil"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Forza connessione criptate a questi siti:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Regole sperimentali"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "Possono causare avvisi o rotture. Normalmente disabilitato."> -<!ENTITY https-everywhere.chrome.add_rule "Aggiungi una regola per questo sito"> -<!ENTITY https-everywhere.chrome.add_new_rule "Aggiungi una nuova regola per questo sito"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Usa sempre https per questo host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Mostra avanzate"> -<!ENTITY https-everywhere.chrome.hide_advanced "Nascondi avanzate"> -<!ENTITY https-everywhere.chrome.rule_name "Nome regola"> -<!ENTITY https-everywhere.chrome.regex "Regex equivalente"> -<!ENTITY https-everywhere.chrome.redirect_to "Reindirizza a"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Annulla"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/it/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/it/https-everywhere.properties deleted file mode 100644 index 802bd4d..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/it/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Abilita HTTPS Everywhere -https-everywhere.menu.globalDisable = Disabilita HTTPS Everywhere -https-everywhere.menu.enableDisable = Abilita / Disabilita regole -https-everywhere.menu.noRules = (nessuna regola per questa pagina) -https-everywhere.menu.unknownRules = (regole per questa pagina sconosciute) -https-everywhere.toolbar.hint = HTTPS Everywhere è ora attivo. Puoi disattivarlo sito per sito cliccando l'icona nella barra degli indirizzi. -https-everywhere.migration.notification0 = Al fine di implementare una correzione importante, questo aggiornamento ripristina le preferenze di HTTPS Everywhere ai loro valori predefiniti. -https-everywhere.menu.ruleset-tests = Esegui i test delle regole di HTTPS Everywhere diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/it/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/it/ssl-observatory.dtd deleted file mode 100644 index 031f385..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/it/ssl-observatory.dtd +++ /dev/null @@ -1,96 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Dettagli e informazioni sulla privacy"> -<!ENTITY ssl-observatory.popup.later "Chiedi più tardi"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere può rilevare attacchi -contro il browser inviando all'Osservatorio i certificati che ricevuti dall'utente. Abilitare questa funzione?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Si desidera che HTTPS Everywhere usi l'Osservatorio SSL?"> - -<!ENTITY ssl-observatory.popup.yes "Sì"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"È consigliato abilitare questa funzione, a meno che non si stia utilizzando una rete aziendale molto intrusiva:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Consigliato, a meno che non si stia utilizzando una rete aziendale con nomi server intranet segreti:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Invia e controlla certificati firmati da CA root non standard"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"È una buona idea abilitare questa opzione, a meno che non si utilizzi una rete aziendale intrusiva o l'antivirus Kaspersky che monitora la navigazione con un proxy TLS e una Certificate Authority root privata. Se viene abilitata in quel caso, questa opzione può pubblicare dati su quali domini https:// sono stati visitati attraverso quel proxy, a causa dei certificati unici che produrrebbe. Per questo viene lasciata disabilitata in partenza."> - -<!ENTITY ssl-observatory.prefs.anonymous "Controllare i certificati usando Tor per l'anonimato"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Controllare i certificati usando Tor per l'anonimato (necessita di Torbutton)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"Questa opzione necessita che Tor e Torbutton siano installati"> - -<!ENTITY ssl-observatory.prefs.asn -"Quando si trova un certificato nuovo, comunicare all'Osservatorio a quale ISP sei connesso"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"Recupera e invia il "numero di Sistema Autonomo" della tua rete. Questo permetterà di localizzare gli attacchi contro HTTPS e determinare se ci sono osservazioni provenienti da reti in luoghi come Iran e Siria dove gli attacchi sono relativamente comuni."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Mostrare un avviso se l'Osservatorio individua un certificato revocato che non è stato rilevato dal proprio browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"Questo farà sì che i certificati inviati siano controllati in base alle liste di revoca dei certificati conosciute. Questa procedura non garantisce al cento per cento l'identificazione di ogni certificato revocato, ma quando viene presentato un avviso c'è una buona possibilità che un certificato non sia in regola."> - -<!ENTITY ssl-observatory.prefs.done "Fatto"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere può usare l'Osservatorio SSL di EFF. Questo fa due cose: (1) invia copie dei certificati HTTPS all'Osservatorio per meglio individuare attacchi "man in the middle" e migliorare la sicurezza del Web; e (2) consente di avvisare l'utente di connessioni non sicure o attacchi al browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"Ad esempio, quando si visita https://www.qualcosa.com, il certificato -ricevuto dall'Osservatorio indicherà che qualcuno ha visitato -www.qualcosa.com, ma non chi ha visitato il sito, o quale particolare pagina -è stata visualizzata. Per maggiori dettagli, passare con il mouse sopra le opzioni:"> - -<!ENTITY ssl-observatory.prefs.hide "Nascondere le opzioni avanzate"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Controllarei certificati anche se Tor non è disponibile"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"Quando possibile, i dati vengono comunque mantenuti anonimi, ma questa opzione è meno sicura"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Inviare e controllare certificati per nomi DNS non pubblici"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"A meno che questa opzione sia selezionata, l'Osservatorio non registrerà i certificati per nomi che non può risolvere attraverso il sistema DNS."> - -<!ENTITY ssl-observatory.prefs.show "Mostrare le opzioni avanzate"> - -<!ENTITY ssl-observatory.prefs.title "Preferenze Osservatorio SSL"> - -<!ENTITY ssl-observatory.prefs.use "Usare l'Osservatorio?"> -<!ENTITY ssl-observatory.warning.title "AVVISO dall'Osservatorio SSL di EFF"> -<!ENTITY ssl-observatory.warning.showcert "Mostrare la catena di certificati"> -<!ENTITY ssl-observatory.warning.okay "Capisco"> -<!ENTITY ssl-observatory.warning.text "L'Osservatorio SSL di EFF ha emesso un avviso sui certificati HTTPS di questo sito:"> -<!ENTITY ssl-observatory.warning.defense "Nel caso si sia effettuato l'accesso a questo sito, è consigliabile cambiare la password non appena si dispone di una connessione sicura. (Questi avvisi possono essere disabilitati nella scheda "Osservatorio SSL" delle preferenze di HTTPS Everywhere.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Inviare e controllare certificati autofirmati"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"Consigliato: i problemi di crittografia sono particolarmente comuni in dispositivi embedded autofirmati"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ja/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ja/https-everywhere.dtd deleted file mode 100644 index 9b3da53..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ja/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "HTTPS Everywhereについて"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "ウェブの暗号化!自動的に多くのサイトにHTTPSセキュリティを使用します。"> -<!ENTITY https-everywhere.about.version "バージョン"> -<!ENTITY https-everywhere.about.created_by "作成者:"> -<!ENTITY https-everywhere.about.and "および"> -<!ENTITY https-everywhere.about.librarians "ルール設定ライブラリ"> -<!ENTITY https-everywhere.about.add_new_rule "新しいルールの追加"> -<!ENTITY https-everywhere.about.thanks "のおかげで"> -<!ENTITY https-everywhere.about.many_contributors "非常に多くの貢献者、例えば"> -<!ENTITY https-everywhere.about.noscript "また、HTTPS Everywhereの一部はGiogio MaoneなどによるNoScriptからのコードに基づいています。彼らの素晴らしい仕事に感謝しています!"> -<!ENTITY https-everywhere.about.contribute "HTTPS Everywhereが好きなら、検討してください"> -<!ENTITY https-everywhere.about.donate_tor "Torに寄付する"> -<!ENTITY https-everywhere.about.tor_lang_code "英語"> -<!ENTITY https-everywhere.about.or "または"> -<!ENTITY https-everywhere.about.donate_eff "EFFに寄付する"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "EFFに寄付する"> -<!ENTITY https-everywhere.menu.about "HTTPS Everywhereについて"> -<!ENTITY https-everywhere.menu.observatory "ssl Observatoryの設定"> -<!ENTITY https-everywhere.menu.globalEnable "HTTPS Everywhereを有効化"> -<!ENTITY https-everywhere.menu.globalDisable "HTTPS Everywhereを無効化"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "すべての非暗号化リクエストをブロック"> -<!ENTITY https-everywhere.menu.showCounter "カウンターを表示"> -<!ENTITY https-everywhere.menu.viewAllRules "すべてのルールを表示"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhereの設定"> -<!ENTITY https-everywhere.prefs.enable_all "全て有効化"> -<!ENTITY https-everywhere.prefs.disable_all "全て無効化"> -<!ENTITY https-everywhere.prefs.reset_defaults "デフォルトにリセット"> -<!ENTITY https-everywhere.prefs.search "検索"> -<!ENTITY https-everywhere.prefs.site "サイト"> -<!ENTITY https-everywhere.prefs.notes "履歴"> -<!ENTITY https-everywhere.prefs.list_caption "どのHTTPSリダイレクトスールを適用しますか?"> -<!ENTITY https-everywhere.prefs.enabled "有効"> -<!ENTITY https-everywhere.prefs.ruleset_howto "自分のルール設定の書き方を学べます (他のウェブサイトへのサポートを追加)"> -<!ENTITY https-everywhere.prefs.here_link "ここ"> -<!ENTITY https-everywhere.prefs.toggle "切り替え"> -<!ENTITY https-everywhere.prefs.reset_default "デフォルトにリセット"> -<!ENTITY https-everywhere.prefs.view_xml_source "XMLソースを表示"> - -<!ENTITY https-everywhere.chrome.stable_rules "安定版ルール"> -<!ENTITY https-everywhere.chrome.stable_rules_description "以下のサイトで暗号化された接続のみを利用する:"> -<!ENTITY https-everywhere.chrome.experimental_rules "実験的なルール"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "警告が出たり正しく表示できなかったりする可能性があります。デフォルトでは無効です。"> -<!ENTITY https-everywhere.chrome.add_rule "このサイトへのルールの追加"> -<!ENTITY https-everywhere.chrome.add_new_rule "このサイトへの新しいルールの追加"> -<!ENTITY https-everywhere.chrome.always_https_for_host "このホストでは常にhttpsを使用する"> -<!ENTITY https-everywhere.chrome.host "ホスト:"> -<!ENTITY https-everywhere.chrome.show_advanced "高度な設定を表示する"> -<!ENTITY https-everywhere.chrome.hide_advanced "高度な設定を隠す"> -<!ENTITY https-everywhere.chrome.rule_name "ルール名"> -<!ENTITY https-everywhere.chrome.regex "一致する正規表現"> -<!ENTITY https-everywhere.chrome.redirect_to "リダイレクト先"> -<!ENTITY https-everywhere.chrome.status_cancel_button "キャンセル"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ja/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ja/https-everywhere.properties deleted file mode 100644 index de68a95..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ja/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = HTTPS Everywhereを有効化 -https-everywhere.menu.globalDisable = HTTPS Everywhereを無効化 -https-everywhere.menu.enableDisable = ルールを有効化/無効化 -https-everywhere.menu.noRules = (このページにルールはありません) -https-everywhere.menu.unknownRules = (このページのルールは不明) -https-everywhere.toolbar.hint = HTTPS Everywhereはげんざい有効です。アドレスバーのアイコンをクリックするとサイトごとを基本に切り替えることができます。 -https-everywhere.migration.notification0 = このアップデートは、重要な修正を実装するために、HTTPS Everywhere のルール設定をデフォルトの値にリセットします。 -https-everywhere.menu.ruleset-tests = HTTPS Everywhere ルール設定テストを動かす diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ja/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ja/ssl-observatory.dtd deleted file mode 100644 index 87156a8..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ja/ssl-observatory.dtd +++ /dev/null @@ -1,95 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "詳細とプライバシー情報"> -<!ENTITY ssl-observatory.popup.later "後で通知する"> -<!ENTITY ssl-observatory.popup.no "いいえ"> - -<!ENTITY ssl-observatory.popup.text "HTTPS EverywhereはObservatoryに受け取る証明書を送信することで、あなたのブラウザに対する攻撃を検知できます。これを有効にしますか?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"HTTPS EverywhereはSSL Observatoryを使用したほうがよろしいでしょうか?"> - -<!ENTITY ssl-observatory.popup.yes "はい"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"非常に監視が厳しい企業ネットワークを使用していなければ、これを有効にした方が安全です:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"次の秘密イントラネットのサーバー名で企業ネットワークを使用しなければ、安全です:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"非標準のルートCAによって署名された証明書を確認して情報提供する。"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"干渉される企業ネットワークや、TLSプロキシとプライベートルート認証局であなたのブラウジングをモニターしているKasperskyアンチウイルスソフトウェアを使用していなければ、このオプションを有効にすることは安全です (そして、良いアイディアです)。そのようなネットワークで有効にした場合、このオプションは、それが発行する一意な証明書のために、どんなhttps:// domainsがそのプロキシを通じて訪れられたかの証拠を提供してしまう恐れがあります。そのために、私たちはデフォルトではそれをオフにしています。"> - -<!ENTITY ssl-observatory.prefs.anonymous "匿名性のために証明書のチェックにTorを使う。"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"匿名性のために証明書のチェックにTorを使う (Torが必要)。"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"このオプションはTorがインストールされ、動作している必要があります。"> - -<!ENTITY ssl-observatory.prefs.asn -"新しい証明書を確認したとき、ObservatoryにあなたがどのISPに接続しているのか伝える"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"これはあなたのネットワークの「自律システム番号」を収集し、送信します。これは私たちがHTTPSに対する攻撃を検出しするのを支援します。また、私たちが攻撃が比較的一般的であるイランやシリアのような場所でネットワークに観測所を持っているのか確認するのに役立ちます。"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Observatory が、ブラウザが認識していない取り消しされた証明書を検知した場合、警告を表示する"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"これは既知の署名書取消リストに対して送信された証明書を確認します。残念ながら、取り消しされた証明書全てに警告を出せると保証することはできませんが、警告が表示された場合、異常がある十分な可能性があります。"> - -<!ENTITY ssl-observatory.prefs.done "完了"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS EverywhereはEFFのSSL Observatoryを使用することができます。これは2つの働きをします: (1) -私たちが中間者攻撃を検出し、ウェブセキュリティを向上させるのを支援するために、HTTP証明書のコピーを観測所に送信します。 -そして、(2) -私たちが安全でない接続やブラウザへの攻撃を警告できるようにします。"> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"例えば、https://www.something.com を訪れるとき、観測所が受信した証明書は誰かがwww.something.comを訪れたことを示しますが、誰がこのサイトを訪れたのか、どの特定のページを見ていたのかは示されません。詳細はオプションを選択してください:"> - -<!ENTITY ssl-observatory.prefs.hide "高度な設定を隠す"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Torが利用できない場合でも証明書をチェックする"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"私たちは今まで通りデータを匿名に保とうとするでしょうが、このオプションは安全性を低下させます"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"非公開DNS名の証明書を確認して提供する"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"このオプションがチェックされていない場合、ObservatoryはDNSシステムを通して解決できない名前への証明書を記録しません。"> - -<!ENTITY ssl-observatory.prefs.show "高度な設定を表示する"> - -<!ENTITY ssl-observatory.prefs.title "ssl Observatoryの設定"> - -<!ENTITY ssl-observatory.prefs.use "Observatoryを使用しますか?"> -<!ENTITY ssl-observatory.warning.title "EFFのSSL Observatoryから警告"> -<!ENTITY ssl-observatory.warning.showcert "証明書のチェーンを表示"> -<!ENTITY ssl-observatory.warning.okay "了解します"> -<!ENTITY ssl-observatory.warning.text "EFFのSSL ObservatoryはこのサイトへのHTTPS証明書についての警告を出しました。()"> -<!ENTITY ssl-observatory.warning.defense "このサイトにログインしているなら、安全な接続を確保してから、パスワードを変更することが推奨される場合があります。 (これらの警告は、 HTTPS Everywhere 設定ダイアログの 「 SSL Observatory 」 タブで無効にすることができます。)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"自己署名の証明書を確認して提供する"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"これは推奨されます。暗号化の問題は、自己署名された組み込みデバイスで特に一般的です。"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/jbo/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/jbo/https-everywhere.dtd deleted file mode 100644 index 2ac51cd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/jbo/https-everywhere.dtd +++ /dev/null @@ -1,56 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockHttpRequests "Block all HTTP requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancel"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/jbo/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/jbo/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/jbo/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/jbo/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/jbo/ssl-observatory.dtd deleted file mode 100644 index 69f1cfd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/jbo/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/jv/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/jv/https-everywhere.dtd deleted file mode 100644 index 93d66ce..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/jv/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancel"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/jv/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/jv/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/jv/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/jv/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/jv/ssl-observatory.dtd deleted file mode 100644 index 69f1cfd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/jv/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ka/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ka/https-everywhere.dtd deleted file mode 100644 index 7b84ca0..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ka/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "ვერსია"> -<!ENTITY https-everywhere.about.created_by "შექმნილია მიერ"> -<!ENTITY https-everywhere.about.and ", და"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "მადლობა"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "ka"> -<!ENTITY https-everywhere.about.or "ან"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "HTTPS Everywhere-ის ჩართვა"> -<!ENTITY https-everywhere.menu.globalDisable "HTTPS Everywhere-ის გათიშვა"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "წესების ნახვა "> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "ძებნა"> -<!ENTITY https-everywhere.prefs.site "საიტი"> -<!ENTITY https-everywhere.prefs.notes "შენიშვნები"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "ჩართულია"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "აქ"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "სტაბილური წესები"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "ექსპერიმენტული წესები"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "გაუქმება"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ka/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ka/https-everywhere.properties deleted file mode 100644 index 1209803..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ka/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = HTTPS Everywhere-ის ჩართვა -https-everywhere.menu.globalDisable = HTTPS Everywhere-ის გათიშვა -https-everywhere.menu.enableDisable = წესების ჩართვა / გათიშვა -https-everywhere.menu.noRules = (ამ გვერდისთვის წესები არ არსებობს) -https-everywhere.menu.unknownRules = (ამ გვერდისთვის წესები უცნობია) -https-everywhere.toolbar.hint = HTTPS Everywhere აწი არის აქტიური. თქვენ შეგიძლიათ მისი მართვა საიტიდან საიტზე იარლიყის დაჭერით მისამართის პანელზე. -https-everywhere.migration.notification0 = კრიტიკული გამოსწორების იმპლემენტაციისთვის, ეს განახლება ჩამოაგდებს თქვენი HTTPS Everywhere-ის წესების პარამეტრებს თავის გაჩუმების პრინციპით დაყენებულ მნიშვნელობებზე. -https-everywhere.menu.ruleset-tests = HTTPS Everywhere წესების კრებულის ტესტების გაშვება diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ka/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ka/ssl-observatory.dtd deleted file mode 100644 index 9ebb0db..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ka/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "დეტალები და კონფიდენციალური ინფორმაცია"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "არა"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "დიახ"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "შესრულებულია"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/kk/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/kk/https-everywhere.dtd deleted file mode 100644 index 93d66ce..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/kk/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancel"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/kk/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/kk/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/kk/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/kk/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/kk/ssl-observatory.dtd deleted file mode 100644 index df8baf1..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/kk/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "Жоқ"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/km/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/km/https-everywhere.dtd deleted file mode 100644 index 4473fea..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/km/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "អំពី HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "អ៊ិនគ្រីបតំបន់បណ្ដាញ! ប្រើសុវត្ថិភាព HTTPS នៅលើបណ្ដាញជាច្រើន។"> -<!ENTITY https-everywhere.about.version "កំណែ"> -<!ENTITY https-everywhere.about.created_by "បានបង្កើតដោយ"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "អរគុណចំពោះ"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "ប្រសិនបើអ្នកចូលចិត្ត HTTPS Everywhere, អ្នកអាចពិចារណា"> -<!ENTITY https-everywhere.about.donate_tor "ឧបត្ថម្ភដល់ Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "ឬ"> -<!ENTITY https-everywhere.about.donate_eff "ឧបត្ថម្ភដល់ EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "អំពី HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "ចំណូលចិត្ត SSL Observatory"> -<!ENTITY https-everywhere.menu.globalEnable "បើក HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "បិទ HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "បង្ហាញ Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "ចំណូលចិត្ត HTTPS Everywhere"> -<!ENTITY https-everywhere.prefs.enable_all "បើកទាំងអស់"> -<!ENTITY https-everywhere.prefs.disable_all "បិទទាំងអស់"> -<!ENTITY https-everywhere.prefs.reset_defaults "កំណត់ទៅលំនាំដើមឡើងវិញ"> -<!ENTITY https-everywhere.prefs.search "ស្វែងរក"> -<!ENTITY https-everywhere.prefs.site "តំបន់បណ្ដាញ"> -<!ENTITY https-everywhere.prefs.notes "សម្គាល់"> -<!ENTITY https-everywhere.prefs.list_caption "បន្ទាត់ HTTPS redirection ណាមួយដែលគួរអនុវត្ត?"> -<!ENTITY https-everywhere.prefs.enabled "បានបើក"> -<!ENTITY https-everywhere.prefs.ruleset_howto "អ្នកអាចស្វែងរកពីរបៀបសរសេរ rulesets ផ្ទាល់ខ្លួនរបស់អ្នក (ដើម្បីបន្ថែមការគាំទ្រសម្រាប់តំបន់បណ្ដាញផ្សេងៗ)"> -<!ENTITY https-everywhere.prefs.here_link "ទីនេះ"> -<!ENTITY https-everywhere.prefs.toggle "បិទ/បើក"> -<!ENTITY https-everywhere.prefs.reset_default "កំណត់ឡើងវិញទៅលំនាំដើម"> -<!ENTITY https-everywhere.prefs.view_xml_source "មើលប្រភព XML"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "បោះបង់"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/km/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/km/https-everywhere.properties deleted file mode 100644 index 85c930b..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/km/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = បើក HTTPS Everywhere -https-everywhere.menu.globalDisable = បិទ HTTPS Everywhere -https-everywhere.menu.enableDisable = បើក / បិទ បន្ទាត់ -https-everywhere.menu.noRules = (គ្មានបន្ទាត់សម្រាប់ទំព័រនេះទេ) -https-everywhere.menu.unknownRules = (មិនស្គាល់បន្ទាត់សម្រាប់ទំព័រនេះ) -https-everywhere.toolbar.hint = HTTPS Everywhere គឺសកម្មឥឡូវនេះ។ អ្នកអាចបិទ/បើក វាតាមផ្នែក ដោយចុចរូបតំណាងរបារអាសយដ្ឋាន។ -https-everywhere.migration.notification0 = ដើម្បីប្រតិបត្តិការការកែចាំបាច់, ធ្វើបច្ចុប្បន្នភាពការកំណត់ចំណូលចិត្ត HTTPS Everywhere rule របស់អ្នកឡើងវិញចំពោះតម្លៃលំនាំដើមរបស់វា។ -https-everywhere.menu.ruleset-tests = ដំណើរការការសាកល្បង HTTPS Everywhere Ruleset diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/km/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/km/ssl-observatory.dtd deleted file mode 100644 index 38d03d1..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/km/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "ព័ត៌មានឯកជន និងព័ត៌មានលម្អិត"> -<!ENTITY ssl-observatory.popup.later "សួរខ្ញុំពេលក្រោយ"> -<!ENTITY ssl-observatory.popup.no "ទេ"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere អាចរកឃើញការវាយប្រហារ -ប្រឆាំងកម្មវិធីអ៊ីនធឺណិតរបស់អ្នកដោយផ្ញើវិញ្ញាបនបត្រដែលអ្នកបានទទួលទៅ -Observatory។ បើកវាឬ?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"តើ HTTPS Everywhere គូរប្រើ SSL Observatory ដែរឬទេ?"> - -<!ENTITY ssl-observatory.popup.yes "បាទ/ចាស"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"វាមានសុវត្ថិភាពក្នុងការបើកវា, លុះត្រាតែអ្នកប្រើ -បណ្ដាញប្រតិបត្តិការដែលរំខាន៖"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"លុះត្រាតែអ្នកប្រើបណ្ដាញប្រតិបត្តិមានឈ្មោះម៉ាស៊ីនមេបណ្ដាញកុំព្យូទ័រសម្ងាត់, សុវត្ថិភាព៖"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"ដាក់ស្នើ ហើយពិនិត្យមើលវិញ្ញាបនបត្រដែលបានចុះហត្ថលេខាដោយ root CAs មិនស្តង់ដារ"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"វាជាសុវត្ថិភាព (ហើយជាគំនិតល្អមួយ) ដើម្បីបើកជម្រើសនេះ, លុះត្រាតែអ្នកប្រើបណ្ដាញប្រតិបត្តិការដែលរំខាន ឬកម្មវិធី Kaspersky antivirus ដែលត្រួតពិនិត្យការរុករករបស់អ្នកដោយប្រើប្រូកស៊ី TLS និង root Certificate Authority ។ ប្រសិនបើអ្នកបានបើកលើបណ្ដាញ, ជម្រើសនេះអាចបោះពុម្ពផ្សាយភស្តុតាងដែន https:// ណាមួយដែលកំពុងត្រូវបានទស្សនាតាមរយៈប្រូកស៊ីនោះ, ដោយសារតែវិញ្ញាបនបត្រមានតែមួយ វាគួរតែផលិត។ ដូច្នេះយើងបញ្ឈប់វាតាមលំនាំដើម។"> - -<!ENTITY ssl-observatory.prefs.anonymous "ពិនិត្យមើលវិញ្ញាបនបត្រដោយប្រើ Tor សម្រាប់អនាមិកភាព"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"ពិនិត្យមើលវិញ្ញាបនបត្រដោយប្រើ Tor សម្រាប់អនាមិកភាព (ការទាមទារ Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"ជម្រើសនេះទាមទារឲ្យដំឡើង និងដំណើរការ Tor"> - -<!ENTITY ssl-observatory.prefs.asn -"នៅពេលដែលអ្នកមើលឃើញវិញ្ញាបនបត្រថ្មី, ប្រាប់ Observatory ដែល ISP ណាមួយដែលអ្នកបានតភ្ជាប់"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"វានឹងទៅប្រមូលយក ហើយផ្ញើ "លេខប្រព័ន្ធអនាមិក" នៃបណ្ដាញរបស់អ្នក។ វានឹងជួយពួកយើងឲ្យរកឃើញការវាយប្រហារប្រឆាំង HTTPS, ហើយកំណត់ថាតើយើងមានការតាមដានពីបណ្ដាញនៅទីតាំងដូចជា Iran និង Syria ដែលជាការវាយប្រហារដោយប្រៀបធៀបទូទៅ។"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "រួចរាល់"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere អាចប្រើ EFF's SSL Observatory ។ វាមានពីរ៖ (1) -ផ្ញើច្បាស់ចម្លងនៃវិញ្ញាបនបត្រ HTTPS ទៅ Observatory, ដើម្បីជួយពួកយើង -ឲ្យរកឃើញ 'បុរសនៅកណ្ដាល' ការវាយប្រហារ និងការធ្វើឲ្យសុវត្ថិភាពរបស់បណ្ដាញល្អប្រសើរឡើង; ហើយ (2) -អនុញ្ញាតឲ្យពួកយើងប្រាប់អ្នកអំពីការតភ្ជាប់ដែលគ្មានសុវត្ថិភាព ឬការវាយប្រហារនៅលើកម្មវិធីអ៊ីនធឺណិតរបស់អ្នក។"> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"ឧទាហរណ៍, នៅពេលដែលអ្នកទស្សនា https://www.something.com, វិញ្ញាបនបត្រ -ដែលអ្នកបានទទួល ដោយ Observatory នឹងបង្ហាញថាអ្នករាល់គ្នាបានទស្សនា -www.something.com, ប៉ុន្តែអ្នកដែលមិនបានទស្សនាតំបន់បណ្ដាញ, ឬទំព័រជាក់លាក់ដែលពួកគេ -បានមើល។ ដាក់កណ្ដុរនៅលើជម្រើសសម្រាប់ព័ត៌មានលម្អិតបន្ថែម៖"> - -<!ENTITY ssl-observatory.prefs.hide "លាក់ជម្រើសកម្រិតខ្ពស់"> - -<!ENTITY ssl-observatory.prefs.nonanon -"ពិនិត្យមើលវិញ្ញាបនបត្រទោះបីប្រសិនបើ Tor មិនអាចរកបានក៏ដោយ"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"យើងនឹងនៅតែព្យាយាមរក្សាទុកទិន្នន័យអនាមិក, ប៉ុន្តែជម្រើសនេះមានសុវត្ថិភាពតិចតួច"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"ដាក់ស្នើ និងពិនិត្យមើលវិញ្ញាបនបត្រសម្រាប់ឈ្មោះ DNS គ្មានជាសាធារណៈ"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"លុះត្រាតែជម្រើសនេះត្រូវបានពិនិត្យមើល, ទីតាំងតាមដាននឹងមិនត្រូវបានកត់ត្រាវិញ្ញាបនបត្រសម្រាប់ឈ្មោះដែលវាមិនអាចដោះស្រាយតាមរយៈប្រព័ន្ធ DNS ។"> - -<!ENTITY ssl-observatory.prefs.show "បង្ហាញជម្រើសកម្រិតខ្ពស់"> - -<!ENTITY ssl-observatory.prefs.title "ចំណូលចិត្ត SSL Observatory"> - -<!ENTITY ssl-observatory.prefs.use "ប្រើ Observatory?"> -<!ENTITY ssl-observatory.warning.title "ការព្រមានពី EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "បង្ហាញខ្សែច្រវាក់វិញ្ញាបនបត្រ"> -<!ENTITY ssl-observatory.warning.okay "ខ្ញុំយល់"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory បានចេញការព្រមានអំពីវិញ្ញាបនបត្រ HTTPS សម្រាប់តំបន់បណ្ដាញនេះ៖"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"ដាក់ស្នើ ហើយពិនិត្យមើលវិញ្ញាបនបត្រដែលបានចុះហត្ថលេខា"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"វាត្រូវបានផ្ដល់អនុសាសន៍; បញ្ហា cryptographic ជាពិសេសនៅក្នុងឧបករណ៍បានបង្កប់ដែលបានចុះហត្ថលេខា"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/kn/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/kn/https-everywhere.dtd deleted file mode 100644 index 55abf03..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/kn/https-everywhere.dtd +++ /dev/null @@ -1,58 +0,0 @@ -<!ENTITY https-everywhere.about.title "HTTPS Everywhere ಬಗ್ಗೆ"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "அல்லது -"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "HTTPS Everywhere ಬಗ್ಗೆ"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "ಎಲ್ಲೆಡೆ HTTPS ಸಕ್ರಿಯಗೊಳಿಸಿ"> -<!ENTITY https-everywhere.menu.globalDisable "ಎಲ್ಲೆಡೆ HTTPS ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿ"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancel"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/kn/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/kn/https-everywhere.properties deleted file mode 100644 index 9746df9..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/kn/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = ಎಲ್ಲೆಡೆ HTTPS ಸಕ್ರಿಯಗೊಳಿಸಿ -https-everywhere.menu.globalDisable = ಎಲ್ಲೆಡೆ HTTPS ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿ -https-everywhere.menu.enableDisable = ಸಕ್ರಿಯಗೊಳಿಸಿ/ ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿ ನಿಯಮಗಳು -https-everywhere.menu.noRules = (ಈ ಪುಟಕ್ಕೆ ಯಾವುದೇ ನಿಯಮಗಳು ಇಲ್ಲ) -https-everywhere.menu.unknownRules = (ಈ ಪುಟದ ನಿಯಮಗಳು ಗೊತ್ತಿಲ್ಲ) -https-everywhere.toolbar.hint = HTTPS ಎಲ್ಲೆಡೆ ಈಗ ಸಕ್ರಿಯವಾಗಿದೆ . ನೀವು ಇದನ್ನು ಸೈಟ್ ಬೈ ಸೈಟ್ ಆಧಾರದಲ್ಲಿ ಬದಲಾಯಿಸಲು ವಿಳಾಸ ಸಲಾಕೆಯಲ್ಲಿರುವ ಐಕಾನ್ ಅನ್ನು ಕ್ಲಿಕ್ ಮಾಡಿ -https-everywhere.migration.notification0 = ನಿರ್ಣಾಯಕ ಫಿಕ್ಸ್ ಅನುಷ್ಠಾನಕ್ಕೆ ತರುವ ಸಲುವಾಗಿ, ಈ ಅಪ್ಡೇಟ್ ನಿಮ್ಮ HTTPS ಎಲ್ಲೆಡೆ ನಿಯಮ ಆಧ್ಯತೆಯನ್ನು ಅದರ ಡೀಫಾಲ್ಟ್ ಮೌಲ್ಯಕ್ಕೆ ಮರುಹೊಂದಿಸಲಾಗುತ್ತದೆ -https-everywhere.menu.ruleset-tests = ಎಲ್ಲೆಡೆ HTTPS ಓಡಿಸು Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/kn/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/kn/ssl-observatory.dtd deleted file mode 100644 index 3361a4a..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/kn/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "ಇಲ್ಲಪ್ಪ"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "ಓಕೇ"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ko/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ko/https-everywhere.dtd deleted file mode 100644 index c8cea70..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ko/https-everywhere.dtd +++ /dev/null @@ -1,58 +0,0 @@ -<!ENTITY https-everywhere.about.title "HTTPS Everywhere에 대하여 -"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "웹 암호화! 자동으로 여러 사이트에 HTTPS 보안을 사용합니다."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "작성"> -<!ENTITY https-everywhere.about.and ", "> -<!ENTITY https-everywhere.about.librarians "규칙설정 라이브러리"> -<!ENTITY https-everywhere.about.add_new_rule "새 규칙 추가하기"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "다음과 같은 많은 참여자들이 있습니다."> -<!ENTITY https-everywhere.about.noscript "또한, HTTPS Everywhere의 스크립트는 Giorgio Maone등이 제작한 NoScript도 부분적으로 참조했습니다. 제작자분들께 감사드립니다."> -<!ENTITY https-everywhere.about.contribute "모든곳에서 HTTPS를 사용하려면, 고려해 보십시오"> -<!ENTITY https-everywhere.about.donate_tor "Tor에 기부하기"> -<!ENTITY https-everywhere.about.tor_lang_code "영어"> -<!ENTITY https-everywhere.about.or "또는"> -<!ENTITY https-everywhere.about.donate_eff "EFF에 기부하기"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "EFF에 기부하기"> -<!ENTITY https-everywhere.menu.about "HTTPS Everywhere에 대하여"> -<!ENTITY https-everywhere.menu.observatory "SSL 관측 환경 설정"> -<!ENTITY https-everywhere.menu.globalEnable "모든곳에서 HTTPS 사용"> -<!ENTITY https-everywhere.menu.globalDisable "모든곳에서 HTTPS 사용 안 함"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "암호화되지 않은 모든 요청 차단"> -<!ENTITY https-everywhere.menu.showCounter "카운터 보기"> -<!ENTITY https-everywhere.menu.viewAllRules "모든 규칙 표시"> - -<!ENTITY https-everywhere.prefs.title "HTTPS 모든곳 사용 환경 설정"> -<!ENTITY https-everywhere.prefs.enable_all "모두 사용"> -<!ENTITY https-everywhere.prefs.disable_all "모두 사용 안 함"> -<!ENTITY https-everywhere.prefs.reset_defaults "기본값으로 다시 설정"> -<!ENTITY https-everywhere.prefs.search "검색"> -<!ENTITY https-everywhere.prefs.site "사이트"> -<!ENTITY https-everywhere.prefs.notes "참고"> -<!ENTITY https-everywhere.prefs.list_caption "HTTPS 리디렉션 규칙을 적용하시겟습니까?"> -<!ENTITY https-everywhere.prefs.enabled "사용"> -<!ENTITY https-everywhere.prefs.ruleset_howto "자신의 규칙 작성 방법을 배울 수 있습니다 (다른 웹 사이트에 대한 지원 추가)"> -<!ENTITY https-everywhere.prefs.here_link "여기"> -<!ENTITY https-everywhere.prefs.toggle "전환"> -<!ENTITY https-everywhere.prefs.reset_default "기본값으로 다시 설정"> -<!ENTITY https-everywhere.prefs.view_xml_source "XML 소스 보기"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable, 안정된 규칙"> -<!ENTITY https-everywhere.chrome.stable_rules_description "다음 사이트에 접속시 강제 암호화:"> -<!ENTITY https-everywhere.chrome.experimental_rules "실험용 규칙"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "경고나 오류를 발생시킬 수 있음. 기본설정은 비활성화."> -<!ENTITY https-everywhere.chrome.add_rule "해당 사이트에 규칙 추가"> -<!ENTITY https-everywhere.chrome.add_new_rule "해당 사이트에 새 규칙 추가"> -<!ENTITY https-everywhere.chrome.always_https_for_host "해당 호스트는 항상 https 사용"> -<!ENTITY https-everywhere.chrome.host "호스트:"> -<!ENTITY https-everywhere.chrome.show_advanced "고급 보이기"> -<!ENTITY https-everywhere.chrome.hide_advanced "고급 숨기기"> -<!ENTITY https-everywhere.chrome.rule_name "규칙명"> -<!ENTITY https-everywhere.chrome.regex "해당하는 regex"> -<!ENTITY https-everywhere.chrome.redirect_to "다음으로 리다이렉트"> -<!ENTITY https-everywhere.chrome.status_cancel_button "취소"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ko/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ko/https-everywhere.properties deleted file mode 100644 index d81c551..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ko/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = 모든 곳에서 HTTPS 사용 -https-everywhere.menu.globalDisable = 모든 곳에서 HTTPS 사용 안 함 -https-everywhere.menu.enableDisable = 규칙 활성화 / 비활성화 -https-everywhere.menu.noRules = (이 페이지를 위한 규칙 없음) -https-everywhere.menu.unknownRules = (알 수 없는 이 페이지를 위한 규칙) -https-everywhere.toolbar.hint = HTTPS Everywhere를 현재 사용할 수 있습니다. 주소 표시 줄의 아이콘을 클릭하면 각 사이트를 기본으로 전환 할 수 있습니다. -https-everywhere.migration.notification0 = 이 업데이트는 중요한 수정을 구현하기 위해 HTTPS Everywhere 규칙 설정을 기본값으로 재설정합니다. -https-everywhere.menu.ruleset-tests = HTTPS Everywhere 규칙 설정 테스트를 실행 diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ko/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ko/ssl-observatory.dtd deleted file mode 100644 index 47ae7e7..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ko/ssl-observatory.dtd +++ /dev/null @@ -1,93 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "세부 사항과 사생활 정보"> -<!ENTITY ssl-observatory.popup.later "나중에 알림"> -<!ENTITY ssl-observatory.popup.no "아니오"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"HTTPS Everywhere이 SSL 관측소를 사용해야 합니까?"> - -<!ENTITY ssl-observatory.popup.yes "예"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"매우 방해하는 기업 네트워크를 사용중 이지 않으면, 이것을 사용하는 것이 안전합니다."> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"다음 비밀 서버 이름과 기업 네트워크를 사용하지 않는다면, 안전합니다."> - -<!ENTITY ssl-observatory.prefs.alt_roots -"비표준 루트 CA로부터 서명되지 않은 인증서를 확인하고 제보함."> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"방해적인 기업 네트워크나 자체적인 인증 기관과 TLS 프록시를 사용하는 Kaspersky 안티바이러스 소프트웨어를 사용하지 않는 한 이 옵션을 활성화하는 것은 안전(하며 권장되는) 행위입니다. 문제가 되는 네트워크에서 활성화되면 이 옵션은 https:// 도메인이 프록시를 통해 열람된다는 사실을 게시할 수도 있으며, 따라서 기본적으로 꺼져 있습니다."> - -<!ENTITY ssl-observatory.prefs.anonymous "익명을 위해 Tor를 사용하는 동안 인증서 확인"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"익명을 위해 Tor를 사용하는 동안 인증서 확인 (Tor 필요함)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"이 옵션은 Tor와 Torbutton이 설치된 경우 권장됩니다."> - -<!ENTITY ssl-observatory.prefs.asn -"새로운 인증서를 볼 때, 어떤 ISP에 연결되어 있는지 관측소에 말하십시오."> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"이것은 귀하의 네트워크의 "자율 시스템 번호"를 수집하고 전송할 것입니다. 이것은 우리가 HTTPS에 대항하는 공격을 찾는 것에 대해 도움을 줄 것입니다. 그리고 우리는 공격이 비교적 일반적인 이란과 시리아와 같은 장소에서 네트워크에서 관측소를 가지고 있는지에 대한 여부를 확인하는 데 도움이 될 것입니다."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"당신의 브라우저에서 관측소가 해지된 인증서가 포착되지 않을때 경고하는 것을 보여주기"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"알려진 인증서 해지 목록에 제출된 인증서인지 여부를 확인합니다. 안타깝게도 모든 해지된 인증서를 가려낼 것이라고 보증할 수는 없지만, 경고를 발견한다면 무언가가 잘못되었음을 알아낼 수 있습니다."> - -<!ENTITY ssl-observatory.prefs.done "완료"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere은 EFF의 SSL 관측소를 사용할 수 있습니다. 이것은 두 가지 일을 합니다: (1) -중간자 공격을 감지하고 웹의 보안을 향상시키는 것을 돕기 위해, HTTPS 인증서의 복사본을 SSL 관측소로 보냅니다. 그리고 (2) 우리가 귀하에게 보안적이지 않는 연결이나 브라우저에 대한 공격에 대해 경고하도록 합니다."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"예를 들어, https://www.something.com을 방문할 때, 관측소에서 받은 인증서는 누가 사이트를 방문했는지가 아닌, 누가 www.something.com을 방문했거나, 그들이 본 특정한 페이지 키를 표시할 것입니다. 더 많은 세부사항을 위해 옵션을 선택하십시오."> - -<!ENTITY ssl-observatory.prefs.hide "고급 설정 숨기기"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Tor가 가능하지 않더라도 인증서 확인"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"우리는 계속 데이터를 익명으로 보내겠지만, 이 선택은 덜 보안적입니다."> - -<!ENTITY ssl-observatory.prefs.priv_dns -"non-public DNS 이름을 위한 인증서 확인과 제출"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"이 옵션이 선택되지 않는다면, 관측소는 DNS 시스템을 통해 분석될 수 없는 인증서를 기록하지 않을 것입니다."> - -<!ENTITY ssl-observatory.prefs.show "고급 설정 보이기"> - -<!ENTITY ssl-observatory.prefs.title "SSL 관측소 설정"> - -<!ENTITY ssl-observatory.prefs.use "관측소 사용?"> -<!ENTITY ssl-observatory.warning.title "EFF의 SSL 관측소로부터의 경고"> -<!ENTITY ssl-observatory.warning.showcert "인증서 체인 보이기"> -<!ENTITY ssl-observatory.warning.okay "이해했습니다."> -<!ENTITY ssl-observatory.warning.text "EFF의 SSL 관측소가 다음 사이트를 위한 HTTPS 인증서에 대한 경고를 보내왔습니다."> -<!ENTITY ssl-observatory.warning.defense "이 사이트에 로그인 했다면, 안전한 연결을 한 후 암호를 변경하는 것이 좋을수 도 있습니다. (HTTPS Everywhere 환경 설정 다이얼로그의 탭"SSL 관측"에서 이 경고들은 비활성화할 수 있습니다.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"자신-서명 인증서 확인 및 제보"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"이것은 추천됩니다: 암호화 문제는 자기 서명된 임베디드 장치에서 특히 일반적입니다."> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ko_KR/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ko_KR/https-everywhere.dtd deleted file mode 100644 index 9360572..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ko_KR/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "어디서나 HTTPS 켬"> -<!ENTITY https-everywhere.menu.globalDisable "어디서나 HTTPS 끔"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "살펴보기"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "켜짐"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "취소"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ko_KR/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ko_KR/https-everywhere.properties deleted file mode 100644 index 481bb2d..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ko_KR/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = 어디서나 HTTPS 켬 -https-everywhere.menu.globalDisable = 어디서나 HTTPS 끔 -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ko_KR/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ko_KR/ssl-observatory.dtd deleted file mode 100644 index fdd328b..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ko_KR/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "아니오"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "네"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "완료"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ku/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ku/https-everywhere.dtd deleted file mode 100644 index 93d66ce..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ku/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancel"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ku/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ku/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ku/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ku/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ku/ssl-observatory.dtd deleted file mode 100644 index 69f1cfd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ku/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ku_IQ/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ku_IQ/https-everywhere.dtd deleted file mode 100644 index 0593e5e..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ku_IQ/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and "، و"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "سوپاس بۆ"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "یان"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "بەگەڕخستنی ئێچ تی تی پی ئێس لە هەموو شوێنێک"> -<!ENTITY https-everywhere.menu.globalDisable "لەکارخستنی ئێچ تی تی پی ئێس لە هەمووشوێنێک"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "ڕێپێدانی گشتیان"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "گەڕان"> -<!ENTITY https-everywhere.prefs.site "ماڵپەڕ"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "چالاککراو"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "لێرە"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "دانانەوە وەک بنەڕەت"> -<!ENTITY https-everywhere.prefs.view_xml_source "بینینی سەرچاوەی XML"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "هەمیشە هێچ تی تی پی ئێس بەکاربهێنە بۆ ئەم خانەخوێیە"> -<!ENTITY https-everywhere.chrome.host "خانەخوێ:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "پشتگوێخستن"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ku_IQ/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ku_IQ/https-everywhere.properties deleted file mode 100644 index 7f2649e..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ku_IQ/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = بەگەڕخستنی ئێچ تی تی پی ئێس لە هەموو شوێنێک -https-everywhere.menu.globalDisable = لەکارخستنی ئێچ تی تی پی ئێس لە هەموو شوێنێک -https-everywhere.menu.enableDisable = بەگەڕخستن/لەکارخستنی یاساکان -https-everywhere.menu.noRules = (هیچ یاسایەک نیە بۆ ئەم پەیجە) -https-everywhere.menu.unknownRules = (یاساکانی ئەم پەڕەیە نەزانراون) -https-everywhere.toolbar.hint = ئێستا ئێچ تی تی پی ئێس لە هەموو شوێنێک ئێستا لە کاردایە. دەتوانی بیگۆڕیت لەسەر بنەمای ماڵپەڕ-بە-ماڵپەڕ بە کرتەکردن لەسەر وێنۆچکەی ناونیشانەتوول. -https-everywhere.migration.notification0 = بۆ ئەوەی چاکردنەوەی گرنگ ئەنجام بدەیت، ئەم بەڕۆژکردنە یاسای ئێچ تی تی پی ئێس لە هەموو شووێنێک دەگەڕێنێتەوە بۆ نرخە سەرەتاییەکان. -https-everywhere.menu.ruleset-tests = یاساکانی ئێچ تی تی پی ئێس لە هەموو شوێنێک تاقیبکەوە. diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ku_IQ/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ku_IQ/ssl-observatory.dtd deleted file mode 100644 index 32de9b5..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ku_IQ/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "نەخێر"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "بەڵی"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "شاردنەوەی بژاردە پێشکەوتووەکان"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "پیشاندانی بژاردە پێشکەوتووەکان"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/kw/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/kw/https-everywhere.dtd deleted file mode 100644 index 93d66ce..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/kw/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancel"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/kw/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/kw/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/kw/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/kw/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/kw/ssl-observatory.dtd deleted file mode 100644 index 69f1cfd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/kw/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ky/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ky/https-everywhere.dtd deleted file mode 100644 index 08437b5..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ky/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Айнуу"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ky/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ky/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ky/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ky/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ky/ssl-observatory.dtd deleted file mode 100644 index 69f1cfd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ky/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/la/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/la/https-everywhere.dtd deleted file mode 100644 index 93cdf41..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/la/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "De HTTPS in omnibus locis"> -<!ENTITY https-everywhere.about.ext_name "HTTPS in omnibus locis"> -<!ENTITY https-everywhere.about.ext_description "Late coniunctionem computatorum! Per ipse usa certitudinem de HTTPS in multis paginis."> -<!ENTITY https-everywhere.about.version "Versio"> -<!ENTITY https-everywhere.about.created_by "Factum de"> -<!ENTITY https-everywhere.about.and ", et"> -<!ENTITY https-everywhere.about.librarians "Librtariae collationum legum"> -<!ENTITY https-everywhere.about.add_new_rule "Legem novam addere"> -<!ENTITY https-everywhere.about.thanks "Gratias ad"> -<!ENTITY https-everywhere.about.many_contributors "Multi inportatores, in eos sunt"> -<!ENTITY https-everywhere.about.noscript "Partes programmatis HTTPS In Omnibus Locis in initio programma de NoScript de Giorgio Maone et aliis habet. Gratiam eis habemus, quia bene scripserunt!"> -<!ENTITY https-everywhere.about.contribute "Si tibi HTTPS In Omnibus Locis placet, potes"> -<!ENTITY https-everywhere.about.donate_tor "Ad Tor donare"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "aut"> -<!ENTITY https-everywhere.about.donate_eff "Ad EFFem donatur"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Ad EFFem donare"> -<!ENTITY https-everywhere.menu.about "De HTTPS omniubi"> -<!ENTITY https-everywhere.menu.observatory "Praeferentiae observandi SSL"> -<!ENTITY https-everywhere.menu.globalEnable "HTTPS In Omnibus Locis inire"> -<!ENTITY https-everywhere.menu.globalDisable "HTTPS In Omnibus Locis finire"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Omnes rogationes non latetas non accipere"> -<!ENTITY https-everywhere.menu.showCounter "Numeratorem ostendere"> -<!ENTITY https-everywhere.menu.viewAllRules "Omnes leges videre"> - -<!ENTITY https-everywhere.prefs.title "Praeferentiae de HTTPS In Omnibus Locis"> -<!ENTITY https-everywhere.prefs.enable_all "Omnes inire"> -<!ENTITY https-everywhere.prefs.disable_all "Omnes finire"> -<!ENTITY https-everywhere.prefs.reset_defaults "Ad initium reponere"> -<!ENTITY https-everywhere.prefs.search "Quaerere"> -<!ENTITY https-everywhere.prefs.site "Pagina"> -<!ENTITY https-everywhere.prefs.notes "Commentarii"> -<!ENTITY https-everywhere.prefs.list_caption "Quae leges redirectionis HTTPS usetur?"> -<!ENTITY https-everywhere.prefs.enabled "Adest"> -<!ENTITY https-everywhere.prefs.ruleset_howto "Discere potes, quomodo collationes legum scribuntur (pro possibilitate usandi in paginis aliis)"> -<!ENTITY https-everywhere.prefs.here_link "hic"> -<!ENTITY https-everywhere.prefs.toggle "Addicere"> -<!ENTITY https-everywhere.prefs.reset_default "Ad initium reponere"> -<!ENTITY https-everywhere.prefs.view_xml_source "Initium XML videre"> - -<!ENTITY https-everywhere.chrome.stable_rules "Leges states"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Coniunctiones ad eas paginas latetae esse debent"> -<!ENTITY https-everywhere.chrome.experimental_rules "Leges in probatione"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "Vitia facere potest. In initio deest."> -<!ENTITY https-everywhere.chrome.add_rule "Legem pro ea pagina addere"> -<!ENTITY https-everywhere.chrome.add_new_rule "Legem novam pro ea pagina addere"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Semper HTTPS pro ea depositione usare"> -<!ENTITY https-everywhere.chrome.host "Depositio"> -<!ENTITY https-everywhere.chrome.show_advanced "Praeferentias longiores ostendere"> -<!ENTITY https-everywhere.chrome.hide_advanced "Praeferentias longiores latere"> -<!ENTITY https-everywhere.chrome.rule_name "Nomen legis"> -<!ENTITY https-everywhere.chrome.regex "Regex idoneum"> -<!ENTITY https-everywhere.chrome.redirect_to "Directionem mutare ad"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Claudere"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/la/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/la/https-everywhere.properties deleted file mode 100644 index 2fac156..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/la/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = HTTPS In Omnibus Locis inire -https-everywhere.menu.globalDisable = HTTPS In Omnibus Locis finire -https-everywhere.menu.enableDisable = Leges Inire / Finire -https-everywhere.menu.noRules = (Leges pro ea pagina desunt) -https-everywhere.menu.unknownRules = (Leges pro ea pagina nescitae sunt) -https-everywhere.toolbar.hint = HTTPS In Omnibus Locis nunc adest. Id in modo pagina-pagina presso signi in axis sententii locis addicere potes. -https-everywhere.migration.notification0 = Pro inportatione correcturae magnae, ea novatio praeferentias legum tuas ad initium reponet. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/la/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/la/ssl-observatory.dtd deleted file mode 100644 index ef00d81..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/la/ssl-observatory.dtd +++ /dev/null @@ -1,100 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Informationes minores et informationes abdititudinis"> -<!ENTITY ssl-observatory.popup.later "Roga me postea"> -<!ENTITY ssl-observatory.popup.no "Non"> - -<!ENTITY ssl-observatory.popup.text "HTTPS In Omnibus Locis temptationes -contra navem tuam missione certitudinum acceptarum ad Observatorium invenire potest. -Inirene id?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Usetne HTTPS In Omnibus Locis SSL Observatorium?"> - -<!ENTITY ssl-observatory.popup.yes "Est"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"Id inire certe est, nisi intrissimum -coniunctionem usas."> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Certe, nisi coniunctionem nominibus abditibus intra-coniunctionis:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Mittere probareque certificationes, quae signum non-saepum CArum radicum habent."> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"Certe (et bene) est eam possibilitatem inire, nisi coniunctionem initiosum constructionis aut Kaspersky programma contra vira usas, qua navigationem tuam cum TLS clave et abdito auctore certificationum radicis videt. Si inest in ea coniunctione, ea possibilitas ostendere potest, quae https:// loci visiti sunt per ea clave, certificationes unicas enim facit. Itaque initiale deest."> - -<!ENTITY ssl-observatory.prefs.anonymous "Certificationes probare usando Tor pro nescitione"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Certificationes probare usando Tor pro nescitione (Tor egetur)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"Pro ea possibilitate Tor adesse agereque debet"> - -<!ENTITY ssl-observatory.prefs.asn -"Si certificationem novam vides, observatorium dicis, quo ISP coniunctus es"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"Id "Numerum autonomum systematis" contiunctionis tuae acquiret mittetque. Id nos aderit temptationes contra HTTPS invenire, et scire, habemusne observationes de coniunctionibus in locis ut Iran et Syria, ubi temptationes relatione saepe sunt."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Monitionem ostendere, cum observatorium certificationem revocatam invenit, quae nave capta non est"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"Id certificationes submissas Ordinibus Revocationis Certificationum scitis probat. Male est, quod non certe omnes cerificationes revocatas notat, sed si monitionem vides, verisimile aliquid falsum est."> - -<!ENTITY ssl-observatory.prefs.done "Factum"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS In Omnibus Locis potest SSL observatorium de EFF usare. Id duo res facit: -(1) Duplicationes certificationum HTTPS ad observatorium mittit, ut nos 'vir in medio' temptationis invenire adsit, et certitudinem Coniunctionis melior facit -et (2) sic te de coniunctionibus non certibus aut temptationibus contra navem tuam monere possumus."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"In exemplo, si https://www.something.com petis, certificatio, -quae obeservatorio acquista est, dicit, quod aliquis www.something.com vidit, -sed non, quis paginam petivit aut ad quam sub-pagiam spectavit. -Pone triangulum muris pro minutalia:"> - -<!ENTITY ssl-observatory.prefs.hide "Praeferentias longiores latere"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Certificationes probare etiam, si Tor deest"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"Adhuc informationem nescitam esse probabimus, sed ea possibilitas incertior est"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Mittere probareque certificationes pro nomina DNS abdita"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Nisi ea possibilitas electa est, observatorium nomina certificationum non memorabit, qua DNS systemate solvere non potest."> - -<!ENTITY ssl-observatory.prefs.show "Praeferentias longiores ostendere"> - -<!ENTITY ssl-observatory.prefs.title "Praeferentiae observandi SSL"> - -<!ENTITY ssl-observatory.prefs.use "Usarene observatorium?"> -<!ENTITY ssl-observatory.warning.title "Monitio SSL observatorii de EFF"> -<!ENTITY ssl-observatory.warning.showcert "Coniunctionem certificationum ostendere"> -<!ENTITY ssl-observatory.warning.okay "Scio"> -<!ENTITY ssl-observatory.warning.text "SSL observatorium de HTTPS certification(um) eae paginae monuit:"> -<!ENTITY ssl-observatory.warning.defense "Si paginam inisti, bene sit verbum transilindi mutare, cum coniunctionem certam habes. (Eae monitiones in "SSL observatorium" parte praeferentiarum de HTTPS In Omnibus Locis defecti esse possunt.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Mittere probareque certificationes ipse signatas"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"Comendatur, quia numerus problematorum latetionis maximus est in indatis apparatibus ipse signatis."> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/lb/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/lb/https-everywhere.dtd deleted file mode 100644 index e1a5046..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/lb/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "Iwwert HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Verschlësselt den Internet! Benotzt automatesch HTTPS fir eng helle Wull u Websäiten"> -<!ENTITY https-everywhere.about.version "Versioun"> -<!ENTITY https-everywhere.about.created_by "Erstallt vun"> -<!ENTITY https-everywhere.about.and ", an"> -<!ENTITY https-everywhere.about.librarians "Bibliothekar Regelen"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Merci un"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "Wann dir HTTPS Everywhere gär hutt, dann consideréiert"> -<!ENTITY https-everywhere.about.donate_tor "Een Don fir Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "lb"> -<!ENTITY https-everywhere.about.or "oder"> -<!ENTITY https-everywhere.about.donate_eff "Un d´ EFF spenden"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Un d'EFF spenden"> -<!ENTITY https-everywhere.menu.about "Iwwert HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Astellungen"> -<!ENTITY https-everywhere.menu.globalEnable "HTTPS Everywhere aktivéieren"> -<!ENTITY https-everywhere.menu.globalDisable "HTTPS Everywhere desaktivéieren"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Compteur uweisen"> -<!ENTITY https-everywhere.menu.viewAllRules "All d'Regelen gesinn"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Astellungen"> -<!ENTITY https-everywhere.prefs.enable_all "Alles aktivéieren"> -<!ENTITY https-everywhere.prefs.disable_all "Alles desaktivéieren"> -<!ENTITY https-everywhere.prefs.reset_defaults "Op d'Standardastellungen zerécksetzen"> -<!ENTITY https-everywhere.prefs.search "Sichen"> -<!ENTITY https-everywhere.prefs.site "Websäit"> -<!ENTITY https-everywhere.prefs.notes "Noten"> -<!ENTITY https-everywhere.prefs.list_caption "Wei eng HTTPS Weiderleedungsregelen sollen gëllen?"> -<!ENTITY https-everywhere.prefs.enabled "Aktivéiert"> -<!ENTITY https-everywhere.prefs.ruleset_howto "Dir kennt leieren är eegen Regelen ze kreéieren (Regelen fir aner Websäiten bäifügen)"> -<!ENTITY https-everywhere.prefs.here_link "hei"> -<!ENTITY https-everywhere.prefs.toggle "Ëmschalten"> -<!ENTITY https-everywhere.prefs.reset_default "Op d'Standardastellungen zerécksetzen"> -<!ENTITY https-everywhere.prefs.view_xml_source "Den XML Quellcode kucken"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Ofbriechen"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/lb/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/lb/https-everywhere.properties deleted file mode 100644 index 09e0627..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/lb/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = HTTPS Everywhere aktivéieren -https-everywhere.menu.globalDisable = HTTPS Everywhere desaktivéieren -https-everywhere.menu.enableDisable = Regelen aktivéieren / desaktivéieren -https-everywhere.menu.noRules = (Keng Regelen fir des Websäit) -https-everywhere.menu.unknownRules = (Regele fir des Websäit sinn onbekannt) -https-everywhere.toolbar.hint = HTTPS Everywhere ass elo aktiv. Dir kennt et fir bestëmmten Websäiten an- an ausstellen andeems dir d'Ikon an der Adresszeil uklickt. -https-everywhere.migration.notification0 = Fir een wichtegt Update anzespillen, wärt dëst Update är HTTPS Everywhere Regelen op de Standard zerécksetzen. -https-everywhere.menu.ruleset-tests = HTTPS Everywhere Regeltest starten diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/lb/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/lb/ssl-observatory.dtd deleted file mode 100644 index fa48274..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/lb/ssl-observatory.dtd +++ /dev/null @@ -1,98 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Detailer an Dateschutzinformatiounen"> -<!ENTITY ssl-observatory.popup.later "Fro mech méi spéit"> -<!ENTITY ssl-observatory.popup.no "Nee"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere kann Attacken -géint äre Browser detektéieren andeems en Zertifikater déi dir kritt -un EFF SSL-Observatory schéckt. Des Funktioun aktivéieren?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Soll HTTPS Everywhere d'EFF SSL-Observatory benotzen?"> - -<!ENTITY ssl-observatory.popup.yes "Jo"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"Et ass sécher dat ze aktivéieren, ausser dir sidd an engem -ganz restriktivem Firmenetzwierk:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Sécher, ausser dir benotzt e Firmenetzwierk mat geheimen Intranet Servernimm:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Schéckt an iwwerpréift Zertifikater wei eng vu Net-Standard root CAs kommen"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"Et ass sécher (an eng gutt Iddi) fir des Optioun ze aktivéieren, ausser dir benotzt een restriktiv Firmenetzwierk oder Kaspersky Antivirus Software wat är Internetaktivitéiten mat engem TLS Proxy beobacht an eng eegen privat root Zertifikat-Autoritéit stellt. Wann des Funktioun an esou engem Netzwierk aktivéiert ass, kann et Spuren hannerloossen wei eng https:// Domains dir besicht hutt. Dowéinst loossen mer déi Funktioun standardméisseg aus."> - -<!ENTITY ssl-observatory.prefs.anonymous "Zertifikater via Tor iwwerpréiwen fir Anonym ze bleiwen"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Zertifikater via Tor iwwerpréiwen fir Anonym ze bleiwen (Dofir muss Tor installéiert sinn)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"Des Optioun verlaangt, datt Tor installéiert ass an och leeft"> - -<!ENTITY ssl-observatory.prefs.asn -"Wann dir e neit Zertifikat gesitt, dann sot dem SSL-Observatory wei een ISP dir benotzt"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"Des Funktioun benotzt är "Autonom Systemzuel" vun ärem Netzwierk. Dëst hëlleft eis Attacke géint HTTPS ze lokaliséieren an erauszefannen op déi Attacken aus Länner wéi dem Iran oder Syrien kommen, wou sou Attacke méi dacks virkommen."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Weist eng Warnung un, wann d'SSL-Observatory een revidéiert Zertifikat fënnt wat vun ärem Browser nach net fonnt ginn ass."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"Des Funktioun wärt Zertifikater bei kënnegen Blacklists iwwerpréiwen. Leider kënne mer net garantéieren, datt mir all revidéiert Zertifikat markéieren kennen mä wann dir eng Warnung gesitt, ass dat een gutt Indiz, datt eppes net stemmt."> - -<!ENTITY ssl-observatory.prefs.done "Fäerdeg"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere kann d'EFF SSL-Observatory benotzen. Dat erméiglecht eis zwou Saachen: (1) -D'Erkennung vun "Man-in-the-Middle" Attacken an domadder eng verbessert Internetsécherheet, doduerch, datt Kopië vun den HTTPS Zertifikater un d'SSL-Observatory geschéckt ginn; an zweetens (2) kenne mer iech bei onséchere Verbindungen an Attacken op äre Browser warnen."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"Beispillsweis, wann dir https://www.something.com besicht, da wärt dat vum -SSL-Observatory empfaangent Zertifikat feststellen, datt een www.something.com besicht huet mä net wien oder wei eng genee Säit en gekuckt huet. Fir méi Informatiounen, -einfach mat der Maus iwwert des Optioun fueren:"> - -<!ENTITY ssl-observatory.prefs.hide "Erweidert Optiounen ausblennen"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Zertifikater iwwerpréiwen och wann Tor net zur Verfügung steet"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"Mir wäerte probéieren är Daten anonym ze halen, mä des Optioun ass net sou sécher"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Schéckt an iwwerpréift Zertifikater fir net-ëffentlech DNS Nimm"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Wann des Optioun net aktivéiert ass, da wäert SSL-Observatory keng Zertifikater fir Domainnimm ophuelen, déi et net iwwert den DNS System kann opléisen."> - -<!ENTITY ssl-observatory.prefs.show "Erweidert Optiounen uweisen"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Astellungen"> - -<!ENTITY ssl-observatory.prefs.use "SSL-Observatory benotzen?"> -<!ENTITY ssl-observatory.warning.title "Eng WARNUNG vum EFF SSL-Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Zertifikatsketten uweisen"> -<!ENTITY ssl-observatory.warning.okay "Ech verstinn"> -<!ENTITY ssl-observatory.warning.text "D'EFF SSL Observatory huet eng Warnung fir dës(t) HTTPS Zertifikat(er) erausginn:"> -<!ENTITY ssl-observatory.warning.defense "Wann dir op dëser Websäit ugemellt sidd, dann ass et net vu Muttwëll wann dir äert Passwuert ännert soubal dir eng sécher Verbindung hutt. (Des Warnung kann am "SSL-Observatory" Reider vun HTTPS Everywhere Astellungen, ausgeschalt ginn.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Een selwer-signéiert Zertifikat schécken an iwwerpréiwen"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"Dëst ass recommandéiert. Kryptographesch Problemer si bei selwer-signéiert Zertifikater an integréierte Geräter, heefeg"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/lg/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/lg/https-everywhere.dtd deleted file mode 100644 index 93d66ce..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/lg/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancel"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/lg/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/lg/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/lg/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/lg/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/lg/ssl-observatory.dtd deleted file mode 100644 index 69f1cfd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/lg/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ln/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ln/https-everywhere.dtd deleted file mode 100644 index 93d66ce..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ln/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancel"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ln/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ln/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ln/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ln/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ln/ssl-observatory.dtd deleted file mode 100644 index 69f1cfd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ln/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/lo/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/lo/https-everywhere.dtd deleted file mode 100644 index 499dece..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/lo/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "ກ່ຽວກັບ HTTPS ທຸກໆບ່ອນ"> -<!ENTITY https-everywhere.about.ext_name "HTTPS ທຸກໆບ່ອນ"> -<!ENTITY https-everywhere.about.ext_description "ເຂົ້າລະຫັດເວັບ! ໃຊ້ ຄວາມປອດໄພ HTTPS ໃນຫລາຍໆເວັບໄຊຕ໌"> -<!ENTITY https-everywhere.about.version "ເວີຊັນ"> -<!ENTITY https-everywhere.about.created_by "ສ້າງໂດຍ"> -<!ENTITY https-everywhere.about.and ", ແລະ"> -<!ENTITY https-everywhere.about.librarians "ບັນນາລັກ ຊຸດຄຳສັ່ງ"> -<!ENTITY https-everywhere.about.add_new_rule "ເພີ່ມກົດໃຫມ່"> -<!ENTITY https-everywhere.about.thanks "ຂອບໃຈ"> -<!ENTITY https-everywhere.about.many_contributors "ຜູ້ຮ່ວມໃຫ້ຂໍ້ມູນຫຼາກຫຼາຍ, ຮວມທັງ"> -<!ENTITY https-everywhere.about.noscript "ນອກຈາກນີ້, ບາງສ່ວນຂອງ HTTP ຢູ່ທົ່ວທຸກແຫ່ງ ຈະອີງຕາມລະຫັດ ຈາກ NoScript ໂດຍ Giorgio Maone ແລະ ອື່ນໆ. ພວກເຮົາຮູ້ບຸນຄຸນ ສຳລັບວຽກງານ ທີ່ດີເລີດຂອງພວກເຂົາ!"> -<!ENTITY https-everywhere.about.contribute "ຖ້າຫາກ ທ່ານ ມັກ HTTPS Everywhere, ທ່ານອາດ ພິຈາລະນາເອົາ"> -<!ENTITY https-everywhere.about.donate_tor "ບໍລິຈາກໃຫ້ແກ່ Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "ອັງກິດ"> -<!ENTITY https-everywhere.about.or "ຫຼື"> -<!ENTITY https-everywhere.about.donate_eff "ບໍລິຈາກໃຫ້ແກ່ EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "ບໍລິຈາກໃຫ້ແກ່ EFF"> -<!ENTITY https-everywhere.menu.about "ກ່ຽວກັບ HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "ການຕັ້ງຄ່າສັງເກດການ SSL"> -<!ENTITY https-everywhere.menu.globalEnable "ເປີດໃຊ້ງານ HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "ອັດການໃຊ້ງານ HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "ກັ້ນທຸກໆການຮ້ອງຂໍທີ່ບໍ່ເຂົ້າລະຫັດ"> -<!ENTITY https-everywhere.menu.showCounter "ສະແດງເຄື່ອງນັບ"> -<!ENTITY https-everywhere.menu.viewAllRules "ສະແດງເບິ່ງກົດທັງໝົດ"> - -<!ENTITY https-everywhere.prefs.title "ການຕັ້ງຄ່າ HTTPS Everywhere"> -<!ENTITY https-everywhere.prefs.enable_all "ເປີດນຳໃຊ້ທັງຫມົດ"> -<!ENTITY https-everywhere.prefs.disable_all "ປິດນຳໃຊ້ທັງຫມົດ"> -<!ENTITY https-everywhere.prefs.reset_defaults "ປັບຄືນເປັນຄ່າເລີ່ມຕົ້ນ"> -<!ENTITY https-everywhere.prefs.search "ຄົ້ນຫາ"> -<!ENTITY https-everywhere.prefs.site "ເວັບໄຊຕ໌"> -<!ENTITY https-everywhere.prefs.notes "ໝາຍເຫດ"> -<!ENTITY https-everywhere.prefs.list_caption "ກົດການປ່ຽນທິດທາງໃດ HTTPS ທີ່ຄວນໃຊ້?"> -<!ENTITY https-everywhere.prefs.enabled "ເປີດນຳໃຊ້ແລ້ວ"> -<!ENTITY https-everywhere.prefs.ruleset_howto "ທ່ານສາມາດຮຽນຂຽນຊຸດກົດຂອງທ່ານເອງໄດ້ (ເພື່ອເພີ່ມການສະໜັບສະໜູນ ໃຫ້ກັບເວັບໄຊຕ໌ອື່ນໆ)"> -<!ENTITY https-everywhere.prefs.here_link "ທີ່ນີ້"> -<!ENTITY https-everywhere.prefs.toggle "ໄກລັ່ນ"> -<!ENTITY https-everywhere.prefs.reset_default "ປັບຄືນເປັນຄ່າເລີ່ມຕົ້ນ"> -<!ENTITY https-everywhere.prefs.view_xml_source "ສະແດງເຍິ່ງ ແຫຼ່ງລະຫັດ XML"> - -<!ENTITY https-everywhere.chrome.stable_rules "ກົດທີ່ໝັ້ນຄົງ"> -<!ENTITY https-everywhere.chrome.stable_rules_description "ບັງຄັບການເຊື່ອມຕໍ່ເຂົ້າລະຫັດໄປຍັງເວັບໄຊເຫຼົ່ານີ້."> -<!ENTITY https-everywhere.chrome.experimental_rules "ກົດການທົດລອງ"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "ອາດເກີດມີການເຕືອນ ຫຼື ສະງັກ. ຄ່າເລີ່ມຕົ້ນ ແມ່ນ ປິດໃຊ້ງານ."> -<!ENTITY https-everywhere.chrome.add_rule "ໃສ່ກົດໃຫ້ກັບເວັບໄຊຕ໌ນີ້."> -<!ENTITY https-everywhere.chrome.add_new_rule "ໃສ່ກົດໃໝ່ໃຫ້ກັບເວັບໄຊຕ໌ນີ້."> -<!ENTITY https-everywhere.chrome.always_https_for_host "ໃຊ້ https ໃຫ້ກັບ ໂຮສຕ໌ ນີ້ທຸກໆເທື່ອ."> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "ສະແດງລວງເລິກ"> -<!ENTITY https-everywhere.chrome.hide_advanced "ເຊື່ອງການສະແດງລວງເລິກ"> -<!ENTITY https-everywhere.chrome.rule_name "ຊື່ກົດ"> -<!ENTITY https-everywhere.chrome.regex "ການຈັບຄູ່ການສະແດງອອກປົກກະຕິ"> -<!ENTITY https-everywhere.chrome.redirect_to "ປ່ຽນເສັ້ນທາງໄປສູ່"> -<!ENTITY https-everywhere.chrome.status_cancel_button "ຍົກເລີກ"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/lo/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/lo/https-everywhere.properties deleted file mode 100644 index 54bb132..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/lo/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = ເປີດໃຊ້ງານ HTTPS Everywhere -https-everywhere.menu.globalDisable = ອັດການໃຊ້ງານ HTTPS Everywhere -https-everywhere.menu.enableDisable = ເປິດໃຊ້ງານ / ປິດໃຊ້ງານ ກົດ -https-everywhere.menu.noRules = (ບໍ່ມີກົດ ສຳລັບໜ້າເວັບນີ້) -https-everywhere.menu.unknownRules = (ກົດສຳລັບໜ້າເວັບທີ່ບໍ່ຮູ້ຈັກ ນີ້) -https-everywhere.toolbar.hint = ດຽວນີ້ HTTPS Everywhere ເປີດໃຊ້ງານຢູ່. ທ່ານສາມາດ ສະຫຼັບມັນໄປມາໄດ້ ແບບຂ້າງຮຽງຂ້າງ ໂດຍກົດໃສ່ ປຸ່ມໄອຄັອນ ຢູ່ ແຖບທີ່ຢູ່. -https-everywhere.migration.notification0 = ເພື່ອຈະຕິດຕັ້ງໃຊ້ງານ ການແກ້ໄຂທີ່ສຳຄັນ, ການປັບປຸງນີ້ ຈະກຳນົດຄ່າທາງເລືອກ ກົດ HTTPS Everywhere ຄືນໃໝ່ ໄປເປັນຄ່າເລີ່ມຕົ້ນເດີມຂອງມັນ. -https-everywhere.menu.ruleset-tests = ແລ່ນ ທົດລອງ ກົດ HTTPS Everywhere diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/lo/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/lo/ssl-observatory.dtd deleted file mode 100644 index 8e4b354..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/lo/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "ລາຍລະອຽດ ແລະ ຂໍ້ມູນສ່ວນໂຕ"> -<!ENTITY ssl-observatory.popup.later "ກະລຸນາຖາມຂ້ອຍຕາມພາຍຫຼັງ"> -<!ENTITY ssl-observatory.popup.no "ບໍ່"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere ສາມາດກວດພົບການຕໍ່ຕ້ານ -ໂຕທ່ອງເວັບທ່ານໄດ້ໂດຍການສົ່ງໃບຢັ້ງຢືນທີ່ທ່ານໄດ້ຮັບນັ້ນໄປຍັງ -ລະບົບສັງເກດການ. ເປີດໃຊ້ງານບໍ່?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"HTTPS Everywhere ຕ້ອງໄດ້ໃຊ້ ລະບົບສັງເກດການ SSL ຫຼືບໍ່?"> - -<!ENTITY ssl-observatory.popup.yes "ແມ່ນ "> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "ແລ້ວໆ "> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "ການຕັ້ງຄ່າສັງເກດການ SSL "> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/lt/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/lt/https-everywhere.dtd deleted file mode 100644 index bc1a50e..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/lt/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "Apie HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Šifruokite žiniatinklį! Automatiškai naudokite HTTPS apsaugą daugelyje svetainių."> -<!ENTITY https-everywhere.about.version "Versija"> -<!ENTITY https-everywhere.about.created_by "Sukūrė"> -<!ENTITY https-everywhere.about.and "ir"> -<!ENTITY https-everywhere.about.librarians "Taisyklių bibliotekininkai"> -<!ENTITY https-everywhere.about.add_new_rule "Pridėti naują taisyklę"> -<!ENTITY https-everywhere.about.thanks "Dėkojame"> -<!ENTITY https-everywhere.about.many_contributors "Daugybė pagalbininkų, įskaitant"> -<!ENTITY https-everywhere.about.noscript "Taip pat, dalis HTTPS Everywhere yra paremta ,Giorgio Maone ir kitų kurtu, NoScript kodu. Mes esame dėkingi už jų nuostabų darbą!"> -<!ENTITY https-everywhere.about.contribute "Jei Jums patinka HTTPS Everywhere, galbūt norėsite"> -<!ENTITY https-everywhere.about.donate_tor "Paaukoti Tor projektui"> -<!ENTITY https-everywhere.about.tor_lang_code "lt"> -<!ENTITY https-everywhere.about.or "arba"> -<!ENTITY https-everywhere.about.donate_eff "Paaukoti EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Paaukoti EFF"> -<!ENTITY https-everywhere.menu.about "Apie HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatorijos nustatymai"> -<!ENTITY https-everywhere.menu.globalEnable "Įgalinti HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Išjungti HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Blokuoti visas nešifruotas užklausas"> -<!ENTITY https-everywhere.menu.showCounter "Rodyti skaitiklį"> -<!ENTITY https-everywhere.menu.viewAllRules "Žiūrėti visas taisykles"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere nustatymai"> -<!ENTITY https-everywhere.prefs.enable_all "Įgalinti visas"> -<!ENTITY https-everywhere.prefs.disable_all "Uždrausti visas"> -<!ENTITY https-everywhere.prefs.reset_defaults "Atstatyti numatytas"> -<!ENTITY https-everywhere.prefs.search "Ieškoti"> -<!ENTITY https-everywhere.prefs.site "Tinklapis"> -<!ENTITY https-everywhere.prefs.notes "Pastabos"> -<!ENTITY https-everywhere.prefs.list_caption "Kurias HTTPS nukreipimo taisykles naudoti?"> -<!ENTITY https-everywhere.prefs.enabled "Įgalinta"> -<!ENTITY https-everywhere.prefs.ruleset_howto "Galite sužinoti, kaip patiems rašyti nukreipimo taisykles (kad pridėtumėte kitų svetainių palaikymą)"> -<!ENTITY https-everywhere.prefs.here_link "čia"> -<!ENTITY https-everywhere.prefs.toggle "Perjungti"> -<!ENTITY https-everywhere.prefs.reset_default "Atstatyti numatytą"> -<!ENTITY https-everywhere.prefs.view_xml_source "Žiūrėti XML šaltinį"> - -<!ENTITY https-everywhere.chrome.stable_rules "Pastovios taisyklės"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Priverstinis prisijungimų šifravimas į šiuos tinklalapius:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Eksperimentinės taisyklės"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "Gali sukelti įspėjimus ar gedimus. Pagal numatymą išjungta."> -<!ENTITY https-everywhere.chrome.add_rule "Pridėti šiai svetainei taisyklę"> -<!ENTITY https-everywhere.chrome.add_new_rule "Pridėti šiai svetainei naują taisyklę"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Visuomet šiam serveriui naudoti https"> -<!ENTITY https-everywhere.chrome.host "Serveris:"> -<!ENTITY https-everywhere.chrome.show_advanced "Rodyti išplėstinius"> -<!ENTITY https-everywhere.chrome.hide_advanced "Slėpti išplėstinius"> -<!ENTITY https-everywhere.chrome.rule_name "Taisyklės pavadinimas"> -<!ENTITY https-everywhere.chrome.regex "Atitinkamas reguliarusis reiškinys"> -<!ENTITY https-everywhere.chrome.redirect_to "Nukreipti į"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Atsisakyti"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/lt/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/lt/https-everywhere.properties deleted file mode 100644 index d663b42..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/lt/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Įjungti HTTPS Everywhere -https-everywhere.menu.globalDisable = Išjungti HTTPS Everywhere -https-everywhere.menu.enableDisable = Ijungti/išjungti taisykles -https-everywhere.menu.noRules = (Šiam puslapiui taisyklių nėra) -https-everywhere.menu.unknownRules = (Šio puslapio taisyklės nežinomos) -https-everywhere.toolbar.hint = HTTPS Everywhere aktyvuotas. Galite įjungti/išjungti jį konkrečioje svetainėje spausdami ženkliuką adresyno juostoje. -https-everywhere.migration.notification0 = Tam, kad būtų atliktas itin svarbus pataisymas, šis atnaujinimas iš naujo atstatys numatytąsias HTTPS Everywhere taisyklių nuostatas. -https-everywhere.menu.ruleset-tests = Atlikti HTTPS Everywhere taisyklių bandymus diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/lt/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/lt/ssl-observatory.dtd deleted file mode 100644 index 3204fff..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/lt/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Detalės ir informacija apie privatumą"> -<!ENTITY ssl-observatory.popup.later "Klausti vėliau"> -<!ENTITY ssl-observatory.popup.no "Ne"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere gali aptikti atakas -nukreiptas prieš jūsų naršyklę, siųsdama gautus sertifikatus į SSL -Observatoriją. Ar įjungti?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Ar HTTPS Everywhere turėtų naudoti SSL Observatoriją?"> - -<!ENTITY ssl-observatory.popup.yes "Taip"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"Įjungti yra saugu, nebent naudojate labai ribojamą -korporatyvinį tinklą:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Saugu, nebent naudojate korporatyvinį tinklą su slaptais vidinio tinklo serverių pavadinimais:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Siųsti ir tikrinti sertifikatus, pasirašytus nestandartinių sertifikavimo centrų"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"Įjungti šį parametrą yra saugu (ir tai yra gera mintis), nebent naudojate ribojamą korporatyvinį tinklą, kuris stebi jūsų naršymą su TLS įgaliotuoju serveriu ir privačiu sertifikavimo centru. Šis parametras, jeigu bus įjungtas tokiame tinkle, dėl jo kuriamų unikalių liudijimų, gali palikti informaciją apie tai, kurios https:// svetainės, naudojant šį įgaliotąjį serverį, buvo aplankytos. Todėl pagal numatymą tai išjungiame."> - -<!ENTITY ssl-observatory.prefs.anonymous "Tikrinti sertifikatus naudojant Tor tinklą anonimiškumui"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Anonimiškumui, tikrinti liudijimus naudojant Tor tinklą (reikalauja Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"Šis parametras reikalauja, kad būtų įdiegta ir paleista Tor"> - -<!ENTITY ssl-observatory.prefs.asn -"Sutikus naują sertifikatą pranešti Observatorijai, prie kokio interneto paslaugų tiekėjo esate prisijungę"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"Gaus ir išsiųs jūsų tinklo "autonominį sistemos numerį". Tai padės mums aptikti atakas nukreiptas prieš HTTPS ir nustatyti, ar mes turime duomenų apie tinklus iš tokių vietų kaip Iranas ar Sirija, kur atakos yra gana dažnos."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Įspėti, kai Observatorija aptiks jūsų naršyklės neaptiktą liudijimą, kurio galiojimas panaikintas."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"Pateikti liudijimai bus patikrinti panaikintų liudijimų sąrašuose. Deja, negalime garantuoti, kad bus nustatyti visi panaikinti liudijimai, tačiau jei pamatysite įspėjimą, žinosite, kad tikriausiai kažkas yra negerai."> - -<!ENTITY ssl-observatory.prefs.done "Atlikta"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere gali naudoti EFF SSL Observatoriją. Ji atlieka du dalykus: (1) -siunčia HTTPS liudijimų kopijas į Observatoriją, kad padėtų mums -aptikti "žmogaus viduryje" (angl. man in the middle) atakas ir pagerinti saityno saugumą; ir (2) -leidžia mums įspėti jus apie nesaugius prisijungimus ar atakas nukreiptas prieš jūsų naršyklę."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"Pavyzdžiui, kai apsilankote https://www.kazkas.com, Observatorijos -gautas liudijimas rodys, kad kažkas apsilankė www.kazkas.com, -tačiau nerodys to, kas apsilankė svetainėje, ar kokį konkrečiai puslapį jie -žiūrėjo. Išsamesnei informacijai, užveskite pelės žymeklį virš parametrų:"> - -<!ENTITY ssl-observatory.prefs.hide "Slėpti išsamesnius nustatymus"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Tikrinti sertifikatus net jei Tor nepasiekiamas"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"Mes vis tiek bandysime išlaikyti duomenis anonimimius, tačiau šis parametras yra mažiau saugus"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Siųsti ir tikrinti sertifikatus gautus iš neviešų DNS vardų"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Jei šis parametras išjungtas, Observatorija neįrašinės tų liudijimų, kurių vardų nepavyksta gauti per DNS sistemą."> - -<!ENTITY ssl-observatory.prefs.show "Rodyti išsamesnius nustatymus"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatorijos nustatymai"> - -<!ENTITY ssl-observatory.prefs.use "Naudoti Observatoriją?"> -<!ENTITY ssl-observatory.warning.title "ĮSPĖJIMAS iš EFF SSL Observatorijos"> -<!ENTITY ssl-observatory.warning.showcert "Rodyti sertifikatų grandinę"> -<!ENTITY ssl-observatory.warning.okay "Suprantu"> -<!ENTITY ssl-observatory.warning.text "EFF SSL Observatorija įspėja apie šių svetainių HTTPS liudijimus:"> -<!ENTITY ssl-observatory.warning.defense "Jeigu esate prisijungę prie šios svetainės, gali būti patariama, kai turėsite saugų ryšį, pasikeisti savo slaptažodį. (Šie įspėjimai gali būti išjungti "SSL Observatorijos" kortelėje, HTTPS Everywhere nuostatų dialoge.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Teikti ir tikrinti savo paties pasirašytus sertifikatus"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"Rekomenduojama. Kriptografijos problemos ypač dažnos savo paties pasirašytuose įtaisytuosiuose įrenginiuose"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/lv/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/lv/https-everywhere.dtd deleted file mode 100644 index a5fc36b..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/lv/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "Par HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Šifrēt tīmekli! Automātiski lietot HTTPS drošību daudzās vietnēs."> -<!ENTITY https-everywhere.about.version "Versija"> -<!ENTITY https-everywhere.about.created_by "Autori"> -<!ENTITY https-everywhere.about.and ", un"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Pievienot jaunu kārtulu"> -<!ENTITY https-everywhere.about.thanks "Pateicoties"> -<!ENTITY https-everywhere.about.many_contributors "Daudzi jo daudzi līdzstrādnieki, tostarp"> -<!ENTITY https-everywhere.about.noscript "Bez tam daļa no HTTPS Evertwhere izmanto NoScript kodu. Paldies Džordžio Giorgio Maone un citiem par viņu izcilo darbu!"> -<!ENTITY https-everywhere.about.contribute "ja Jums patīk HTTPS Everywhere, iespējams vēlaties"> -<!ENTITY https-everywhere.about.donate_tor "ziedot Tor'am"> -<!ENTITY https-everywhere.about.tor_lang_code "an"> -<!ENTITY https-everywhere.about.or "vai"> -<!ENTITY https-everywhere.about.donate_eff "ziedot EFF'am"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Ziedojiet EFF"> -<!ENTITY https-everywhere.menu.about "Par HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Iespējot HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Atspējot HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Bloķēt visus nešifrētus pieprasījumus"> -<!ENTITY https-everywhere.menu.showCounter "Rādījumu skaitītājs"> -<!ENTITY https-everywhere.menu.viewAllRules "Skatīt visas kārtulas"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Iespējot visus"> -<!ENTITY https-everywhere.prefs.disable_all "Atspējot visus"> -<!ENTITY https-everywhere.prefs.reset_defaults "Atiestatīt uz noklusējuma vērtībām"> -<!ENTITY https-everywhere.prefs.search "Meklēt"> -<!ENTITY https-everywhere.prefs.site "Vietne"> -<!ENTITY https-everywhere.prefs.notes "Piezīmes"> -<!ENTITY https-everywhere.prefs.list_caption "Kurus HTTPS pāradresācijas noteikumus lietot?"> -<!ENTITY https-everywhere.prefs.enabled "Iespējots"> -<!ENTITY https-everywhere.prefs.ruleset_howto "Variet iemācīties kā rakstīt savus noteikumu komplektus (lai pievienotu citu tīmekļa vietņu atbalstu)"> -<!ENTITY https-everywhere.prefs.here_link "te"> -<!ENTITY https-everywhere.prefs.toggle "Pārslēgt"> -<!ENTITY https-everywhere.prefs.reset_default "Atiestatīt uz noklusējuma vērtībām"> -<!ENTITY https-everywhere.prefs.view_xml_source "Skatīt XML avotu"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stabilas kārtulas"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Uzspiest šifrētus savienojumus ar šīm tīmekļa vietnēm."> -<!ENTITY https-everywhere.chrome.experimental_rules "Eksperimentālas kārtulas"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "Var izsaukt brīdinājumus vai darbības pārtraukumus. Pēc noklusējuma ir atspējots."> -<!ENTITY https-everywhere.chrome.add_rule "Šai vietnei pievienot kārtulu"> -<!ENTITY https-everywhere.chrome.add_new_rule "Šai vietnei pievienot jaunu kārtulu"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Šim resursdatoram vienmēr lietot https"> -<!ENTITY https-everywhere.chrome.host "Resursdators:"> -<!ENTITY https-everywhere.chrome.show_advanced "Rādīt lietpratīgās"> -<!ENTITY https-everywhere.chrome.hide_advanced "Slēpt lietpratīgās"> -<!ENTITY https-everywhere.chrome.rule_name "Kārtulas nosaukums"> -<!ENTITY https-everywhere.chrome.regex "Atbilstoša regulāra izteiksme jeb regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Novirzīt uz"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Atcelt"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/lv/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/lv/https-everywhere.properties deleted file mode 100644 index adb81a7..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/lv/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Iespējot HTTPS visur -https-everywhere.menu.globalDisable = Izslēgt HTTPS visur -https-everywhere.menu.enableDisable = Iespējot / Izslēgt kārtulas -https-everywhere.menu.noRules = (Šai lapai kārtulu nav) -https-everywhere.menu.unknownRules = (šīs lapas kārtulas nav zināmas) -https-everywhere.toolbar.hint = HTTPS Everywhere tagad ir aktīvs. Klikšķinot ikonu adreses joslā, Jūs varat to pārslēgt ikvienā vietnē. -https-everywhere.migration.notification0 = Lai ieviestu kritisku labojumu, šis jauninājums atiestata Jūsu HTTPS visur kārtulu preferences uz to noklusējuma vērtībām. -https-everywhere.menu.ruleset-tests = Izpildīt HTTPS Everywhere kārtulu kopas pārbaudes diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/lv/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/lv/ssl-observatory.dtd deleted file mode 100644 index b1ec812..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/lv/ssl-observatory.dtd +++ /dev/null @@ -1,100 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Papildu informācija un privātums"> -<!ENTITY ssl-observatory.popup.later "Jautāt man vēlāk"> -<!ENTITY ssl-observatory.popup.no "Nē"> - -<!ENTITY ssl-observatory.popup.text "HTTPS visur var atklāt uzbrukumus Jūsu pārlūkam, nosūtot uz Observatory sertifikātus, kurus saņemat. -Ieslēgt šo funkciju?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Vai HTTPS visur jāizmanto SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Jā"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"Iespējot ir droši, ja vien neizmantojat -ļoti traucējošu jeb uzmācīgu korporatīvo tīklu:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Droši, ja vien neizmantojat korporatīvo tīklu ar slepeniem iekštīkla serveru vārdiem:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Iesniegt un pārbaudīt sertifikātus, kurus parakstījušas nestandarta saknes CA jeb sertifikācijas iestādes"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"Ir droši (un arī ir laba doma) iespējot šo opciju, ja vien neizmantojat traucējošu jeb uzmācīgu korporatīvu tīklu, kurš jūsu veiktajai pārlūkošanai seko, izmantojot TLS starpniekserveri un privāto saknes sertifikācijas iestādi. -Opcija, kas iespējota šādā tīklā, varētu publicēt pierādījumus tam, kuri https:// domēni tiek skatīti caur šo starpniekserveri, tā izsniegto unikālo sertifikātu dēļ. Tādēļ, pēc noklusējuma, mēs šo izvēli esam izslēguši."> - -<!ENTITY ssl-observatory.prefs.anonymous "Anonimitātes nodrošināšanai pārbaudīt sertifikātus izmantojot Tor"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Anonimitātes nodrošināšanai pārbaudīt sertifikātus izmantojot Tor (nepieciešams Torbutton)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"Opcijas lietošanai nepieciešams instalēt Tor un Torbutton"> - -<!ENTITY ssl-observatory.prefs.asn -"Kad redzat jaunu sertifikātu, informējiet Observatory par ISP, pie kura esat pieslēdzies"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"Darbība nolasīs un nosūtīs jūsu tīkla "Autonomo sistēmas numuru". -Tas palīdzēs mums noteikt uzbrukumus pret HTTPS, un atklāt vai no tīkliem tiek veikta pārraudzība tādās valstīs kā Irāna un Sīrija, kur uzbrukumi notiek salīdzinoši bieži."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Rādīt brīdinājumu, kad Observatorija atklāj atsauktu, Jūsu pārlūka nepamanītu sertifikātu."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"Atsaukto sertifikātu sarakstā tiks pārbaudīti iesniegtie sertifikāti. Diemžēl mēs nevaram garantēt, ka mēs atzīmēsim katru atsaukto sertifikātu, bet ja redzat brīdinājumu, tad ir lielas iespējas, ka kaut kas nav kārtībā. "> - -<!ENTITY ssl-observatory.prefs.done "Gatavs"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS visur var lietot EFF's SSL Observatory. -Tas veic divas darbības: (1) -sūta Obsevatory HTTPS sertifikātu kopijas, lai palīdzētu mums -noteikt "starpnieka" uzbrukumus, un palielinātu tīmekļa drošību, un (2) -ļauj mums brīdināt jūs par nedrošiem savienojumiem vai uzbrukumiem jūsu pārlūkam."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"Piemēram, kad apmeklējat https://www.something.com , tad sertifikāts, kuru saņem Observatory, rādīs, ka kāds ir apmeklējis www.something.com , bet nerādīs ne to, kurš ir apmeklējis šo vietni, ne ari to kuras lapas skatītas. Slidiniet peli pār opcijām, lai iegūtu papildu informāciju:"> - -<!ENTITY ssl-observatory.prefs.hide "Slēpt papildu opcijas"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Pārbaudīt sertifikātus pat ja Tor nav pieejams"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"Mēs joprojām centīsimies nodrošināt datu anonimitāti, tomēr šī opcija ir mazāk droša"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Iesniegt un pārbaudīt sertifikātus DNS nosaukumiem, kuri nav publiski "> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Ja vien šī opcija nav atzīmēta, Observatory neierakstīs sertifikātus nosaukumiem, kurus tā nevar atrisināt caur DNS sistēmu."> - -<!ENTITY ssl-observatory.prefs.show "Parādīt papildu opcijas"> - -<!ENTITY ssl-observatory.prefs.title "Observatory SSL preferences"> - -<!ENTITY ssl-observatory.prefs.use "Izmantot Observatory?"> -<!ENTITY ssl-observatory.warning.title "EFF's Observatory SSL BRĪDINĀJUMS"> -<!ENTITY ssl-observatory.warning.showcert "Parādīt sertificēšanas ķēdi"> -<!ENTITY ssl-observatory.warning.okay "Es saprotu"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory SSL izsniedza brīdinājumu saistībā ar norādītās vietnes HTTPS sertifikātu(iem):"> -<!ENTITY ssl-observatory.warning.defense "Ja esat iereģistrējies šajā vietnē, tad varētu būt lietderīgi nomainīt paroli, kad jums ir drošs savienojums. (Šos brīdinājumus var atspējot HTTPS Visur izvēlņu dialoga cilnē "SSL Observatorija".)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Iesniegt un pārbaudīt pašparakstītus sertifikātus"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"Tiek rekomendēts; ar šifrēšanu saistītas problēmas ir īpaši biežas iegultās, pašparakstošās iekārtās"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/mg/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/mg/https-everywhere.dtd deleted file mode 100644 index 93d66ce..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/mg/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancel"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/mg/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/mg/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/mg/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/mg/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/mg/ssl-observatory.dtd deleted file mode 100644 index 69f1cfd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/mg/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/mi/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/mi/https-everywhere.dtd deleted file mode 100644 index 93d66ce..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/mi/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancel"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/mi/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/mi/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/mi/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/mi/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/mi/ssl-observatory.dtd deleted file mode 100644 index 69f1cfd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/mi/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/mk/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/mk/https-everywhere.dtd deleted file mode 100644 index b74a220..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/mk/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Овозможи HTTPS насекаде"> -<!ENTITY https-everywhere.menu.globalDisable "Оневозможи HTTPS насекаде"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Откажи"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/mk/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/mk/https-everywhere.properties deleted file mode 100644 index 5be146e..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/mk/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Овозможи HTTPS Everywhere -https-everywhere.menu.globalDisable = Оневозможи HTTPS Everywhere -https-everywhere.menu.enableDisable = Овозможи / Оневозможи правила -https-everywhere.menu.noRules = (Нема правила за странава) -https-everywhere.menu.unknownRules = (Непознати правила за стрнава) -https-everywhere.toolbar.hint = HTTPS Everywhere е активирано. Може да се активира на секоја страна поединечно со кликнување на иконата во адресната линија. -https-everywhere.migration.notification0 = Со цел да се оствари клучна поправка, ова ажурирање ги враќа на стандардните вредности параметрите за правилата на HTTPS Everywhere. -https-everywhere.menu.ruleset-tests = Стартувај провека за HTTPS Everywhere правилник diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/mk/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/mk/ssl-observatory.dtd deleted file mode 100644 index 82e7d82..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/mk/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Детали и информации за приватност"> -<!ENTITY ssl-observatory.popup.later "Прашај ме подоцна"> -<!ENTITY ssl-observatory.popup.no "Не"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere може да пронајде напади против твојот пребарувач -преку праќање на примените сертификати во опсерваторијата. -Вклучи го ова?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Треба ли HTTPS Everywhere да користи SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Да"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"Ова е безбедно да се вклучи, освен ако користиш -високо наметлива корпоративната мрежа:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Безбедно, освен ако користиш корпоративна мрежа со тајни интранет серверни имиња:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Поднеси и провери сертификати потпишани од нестандардни основни сертификати"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Завршено"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ml/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ml/https-everywhere.dtd deleted file mode 100644 index c9da203..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ml/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "എല്ലായിടത്തും എച്ച്ടിടിപിഎസ് കുറിച്ച്"> -<!ENTITY https-everywhere.about.ext_name "എല്ലായിടത്തും എച്ച്ടിടിപിഎസ്"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "പതിപ്പ്"> -<!ENTITY https-everywhere.about.created_by "ഉണ്ടാക്കിയത്"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "നന്ദി"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "എല്ലായിടത്തും എച്ച്ടിടിപിഎസ് കുറിച്ച്"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "എല്ലായിടത്തും എച്ച്ടിടിപിഎസ് പ്രാപ്തമാക്കുക"> -<!ENTITY https-everywhere.menu.globalDisable "എല്ലായിടത്തും എച്ച്ടിടിപിഎസ് പ്രവര്ത്തന രഹിതമാക്കുക"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "എല്ലാ നിയമങ്ങളെയും കാണൂ"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "എല്ലാം പ്രാപ്തമാക്കുക"> -<!ENTITY https-everywhere.prefs.disable_all "എല്ലാം അപ്രാപ്തമാക്കുക"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "തിരച്ചിൽ"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "കുറിപ്പുകൾ"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "പ്രാപ്തമാക്കി"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "ഇവിടെ"> -<!ENTITY https-everywhere.prefs.toggle "ടോഗിൾ"> -<!ENTITY https-everywhere.prefs.reset_default "സ്വതേ പുനഃസജ്ജമാക്കുക"> -<!ENTITY https-everywhere.prefs.view_xml_source "എക്സ്എംഎൽ സൌരസ് കാണുക"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancel"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ml/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ml/https-everywhere.properties deleted file mode 100644 index 8b0422f..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ml/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = എല്ലായിടത്തും എച്ച്ടിടിപിഎസ് പ്രാപ്തമാക്കുക -https-everywhere.menu.globalDisable = എല്ലായിടത്തും എച്ച്ടിടിപിഎസ് പ്രവര്ത്തന രഹിതമാക്കുക -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ml/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ml/ssl-observatory.dtd deleted file mode 100644 index 69f1cfd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ml/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/mn/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/mn/https-everywhere.dtd deleted file mode 100644 index 6afd617..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/mn/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Хувилбар"> -<!ENTITY https-everywhere.about.created_by "Үүсгэсэн"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Хайлт"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancel"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/mn/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/mn/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/mn/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/mn/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/mn/ssl-observatory.dtd deleted file mode 100644 index 69f1cfd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/mn/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/mr/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/mr/https-everywhere.dtd deleted file mode 100644 index c3dbff7..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/mr/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "HTTPS सर्वत्र बद्दल"> -<!ENTITY https-everywhere.about.ext_name "HTTPS सर्वत्र"> -<!ENTITY https-everywhere.about.ext_description "वेब कूटबद्ध करा ! आपोआप अनेक साइटवर HTTPS सुरक्षा वापरा."> -<!ENTITY https-everywhere.about.version "आवृत्ती"> -<!ENTITY https-everywhere.about.created_by "ने निर्मित"> -<!ENTITY https-everywhere.about.and ", आणि"> -<!ENTITY https-everywhere.about.librarians "नियमावली संचय"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "धन्यवाद"> -<!ENTITY https-everywhere.about.many_contributors "अनेक योगदानकर्ते, यासह"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "आपणास सर्वत्र HTTPS आवडत असेल तर, विचार करा"> -<!ENTITY https-everywhere.about.donate_tor "टोर ला देणगी देण्यासाठी"> -<!ENTITY https-everywhere.about.tor_lang_code "इ एन"> -<!ENTITY https-everywhere.about.or "किंवा"> -<!ENTITY https-everywhere.about.donate_eff "इ एफ एफ ला देणगी देण्यासाठी "> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "सर्वत्र HTTPS बद्दल"> -<!ENTITY https-everywhere.menu.observatory "एसएसएल प्राधान्ये"> -<!ENTITY https-everywhere.menu.globalEnable "सर्वत्र HTTPS सक्षम करा"> -<!ENTITY https-everywhere.menu.globalDisable "सर्वत्र HTTPS अक्षम करा"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "काउंटर दाखवा"> -<!ENTITY https-everywhere.menu.viewAllRules "सर्व नियम पहा"> - -<!ENTITY https-everywhere.prefs.title "सर्वत्र HTTPS प्राधान्ये"> -<!ENTITY https-everywhere.prefs.enable_all "सर्व सक्रीय करा"> -<!ENTITY https-everywhere.prefs.disable_all "सर्व निष्क्रिय करा"> -<!ENTITY https-everywhere.prefs.reset_defaults "डीफॉल्ट रीसेट करा"> -<!ENTITY https-everywhere.prefs.search "शोध"> -<!ENTITY https-everywhere.prefs.site "साईट"> -<!ENTITY https-everywhere.prefs.notes "टिपा"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "सक्रीय"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "येथे"> -<!ENTITY https-everywhere.prefs.toggle "टॉगल करा"> -<!ENTITY https-everywhere.prefs.reset_default "डीफॉल्ट रीसेट करा"> -<!ENTITY https-everywhere.prefs.view_xml_source "XML सोर्स पहा"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "रद्द करा"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/mr/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/mr/https-everywhere.properties deleted file mode 100644 index c12fb3e..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/mr/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = सर्वत्र HTTPS सक्षम करा -https-everywhere.menu.globalDisable = सर्वत्र HTTPS अक्षम करा -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/mr/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/mr/ssl-observatory.dtd deleted file mode 100644 index e810612..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/mr/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "नाही"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "होय"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "झाले"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "एसएसएल प्राधान्ये"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ms/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ms/https-everywhere.dtd deleted file mode 100644 index b73224d..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ms/https-everywhere.dtd +++ /dev/null @@ -1,42 +0,0 @@ -<!ENTITY https-everywhere.about.title ""> -<!ENTITY https-everywhere.about.ext_name ""> -<!ENTITY https-everywhere.about.ext_description ""> -<!ENTITY https-everywhere.about.version ""> -<!ENTITY https-everywhere.about.created_by ""> -<!ENTITY https-everywhere.about.librarians ""> -<!ENTITY https-everywhere.about.thanks ""> -<!ENTITY https-everywhere.about.contribute ""> -<!ENTITY https-everywhere.about.donate_tor ""> -<!ENTITY https-everywhere.about.tor_lang_code ""> -<!ENTITY https-everywhere.about.donate_eff ""> - -<!ENTITY https-everywhere.menu.about ""> -<!ENTITY https-everywhere.menu.observatory ""> -<!ENTITY https-everywhere.menu.globalEnable ""> -<!ENTITY https-everywhere.menu.globalDisable ""> - -<!ENTITY https-everywhere.prefs.title ""> -<!ENTITY https-everywhere.prefs.enable_all ""> -<!ENTITY https-everywhere.prefs.disable_all ""> -<!ENTITY https-everywhere.prefs.reset_defaults ""> -<!ENTITY https-everywhere.prefs.search ""> -<!ENTITY https-everywhere.prefs.site ""> -<!ENTITY https-everywhere.prefs.notes ""> -<!ENTITY https-everywhere.prefs.list_caption ""> -<!ENTITY https-everywhere.prefs.enabled ""> -<!ENTITY https-everywhere.prefs.ruleset_howto ""> -<!ENTITY https-everywhere.prefs.here_link ""> -<!ENTITY https-everywhere.prefs.toggle ""> -<!ENTITY https-everywhere.prefs.reset_default ""> -<!ENTITY https-everywhere.prefs.view_xml_source ""> - -<!ENTITY https-everywhere.source.downloading ""> -<!ENTITY https-everywhere.source.filename ""> -<!ENTITY https-everywhere.source.unable_to_download ""> - -<!ENTITY https-everywhere.popup.title ""> -<!ENTITY https-everywhere.popup.paragraph1 ""> -<!ENTITY https-everywhere.popup.paragraph2 ""> -<!ENTITY https-everywhere.popup.paragraph3 ""> -<!ENTITY https-everywhere.popup.keep ""> -<!ENTITY https-everywhere.popup.revert ""> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ms/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ms/https-everywhere.properties deleted file mode 100644 index 3cfced8..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ms/https-everywhere.properties +++ /dev/null @@ -1,7 +0,0 @@ -# https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -# https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -# https-everywhere.menu.enableDisable = Enable / Disable Rules -# https-everywhere.menu.noRules = (No Rules for This Page) -# https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -# https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -# https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ms_MY/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ms_MY/https-everywhere.dtd deleted file mode 100644 index 71935c1..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ms_MY/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "Mengenai HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt laman sesawang! Gunakan HTTPS secara automatik di kebanyakan laman sesawang."> -<!ENTITY https-everywhere.about.version "Versi"> -<!ENTITY https-everywhere.about.created_by "Dihasilkan oleh"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Pustaka set aturan"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Terima kasih kepada"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "Sekiranya anda menyukai HTTPS Everywhere, anda mungkin ingin mempertimbangkan untuk"> -<!ENTITY https-everywhere.about.donate_tor "Menderma kepada Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "ms-MY"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Menderma kepada EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "Mengenai HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "Tetapan Pemantau SSL"> -<!ENTITY https-everywhere.menu.globalEnable "Pengaktifan HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Nyah-aktifkan HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Tunjukkan Kaunter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "Tetapan HTTPS Everywhere"> -<!ENTITY https-everywhere.prefs.enable_all "Pengaktifan semua"> -<!ENTITY https-everywhere.prefs.disable_all "Nyah-aktifkan Semua"> -<!ENTITY https-everywhere.prefs.reset_defaults "Tetapan semula kepada asal"> -<!ENTITY https-everywhere.prefs.search "Carian"> -<!ENTITY https-everywhere.prefs.site "Laman"> -<!ENTITY https-everywhere.prefs.notes "Nota"> -<!ENTITY https-everywhere.prefs.list_caption "Penghalaan aturan HTTPS yang manakah patut digunakan?"> -<!ENTITY https-everywhere.prefs.enabled "Pengaktifan"> -<!ENTITY https-everywhere.prefs.ruleset_howto "Anda boleh mempelajari penulisan set aturan tersendiri (bagi menambah sokongan kepada laman sesawang yang lain)"> -<!ENTITY https-everywhere.prefs.here_link "di sini"> -<!ENTITY https-everywhere.prefs.toggle "Togol"> -<!ENTITY https-everywhere.prefs.reset_default "Tetapan semula kepada asal"> -<!ENTITY https-everywhere.prefs.view_xml_source "Papar Sumber XML"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Batal"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ms_MY/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ms_MY/https-everywhere.properties deleted file mode 100644 index 9a72eb7..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ms_MY/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Pengaktifan HTTPS Everywhere -https-everywhere.menu.globalDisable = Nyah-aktifkan HTTPS Everywhere -https-everywhere.menu.enableDisable = Membolehkan / Menutup Peraturan -https-everywhere.menu.noRules = (Tiada Peraturan untuk Halaman ini) -https-everywhere.menu.unknownRules = (Peraturan untuk halaman ini tidak diketahui) -https-everywhere.toolbar.hint = HTTPS Everywhere sekarang sudah aktif. Anda boleh mengaktifkannya secara tapak demi tapak dengan meng-klik ikon pada alamat bar. -https-everywhere.migration.notification0 = Dalam usaha untuk melaksanakan menetapan penting, kemas kini ini akan mengeset semula tetapan HTTPS Everywhere kepada yang asal. -https-everywhere.menu.ruleset-tests = Jalankan ujian Set Peraturan HTTPS Everywhere diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ms_MY/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ms_MY/ssl-observatory.dtd deleted file mode 100644 index c0aac2a..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ms_MY/ssl-observatory.dtd +++ /dev/null @@ -1,105 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Keterangan dan Maklumat Privasi"> -<!ENTITY ssl-observatory.popup.later "Tanya Saya Kemudian"> -<!ENTITY ssl-observatory.popup.no "Tidak"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere boleh mengesan serangan -terhadap pelayar web anda dengan menghantar sijil SSL yang anda terima ke -Pemantau SSL. Aktifkan fungsi ini?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Perlukah HTTPS Everywhere mengunakan Pemantau SSL?"> - -<!ENTITY ssl-observatory.popup.yes "Ya"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"Ianya adalah selamat untuk pengaktifan, melainkan -anda menggunakan rangkaian koprat yang sangat merejah:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Selamat, melainkan anda menggunakan rangkaian koprat -dengan pelayan nama internet rahsia:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Hantar dan semak sijil SSL yang ditandatangani oleh -root CA yang tidak standard"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"Ianya adalah selamat (dan satu idea yang bagus) untuk mengaktifkan pilihan ini, melainkan anda menggunakan rangkaian koprat yang sangat merejah atau perisian Kaspersky antivirus yang memantau pelayaran anda dengan proksi TLS dan root Certificate Authority persendirian. Sekiranya diaktifkan di atas rangkaian berkenaan, pilihan ini mungkin akan memaparkan bukti domain https:// yang telah dilawati menggunakan proksi tersebut, disebabkan oleh sijil SSL yang unik yang dihasilkan. Oleh itu kami, secara asalnya kami biarkan ia tidak aktif."> - -<!ENTITY ssl-observatory.prefs.anonymous "Semak sijil SSL menggunakan Tor untuk ujuan anonimiti"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Semak sijil SSL menggunakan Tor untuk tujuan anonimiti (memerlukan Torbutton)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"Pemilihan ini memerlukan Tor and Torbutton sedia terpasang"> - -<!ENTITY ssl-observatory.prefs.asn -"Apabila terpapar sijil SSL yang baru, maklumkan kepada Pemantau SSL tentang ISP yang telah berjaya disambungkan"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"Ini akan capai dan hantar "Autonomous System number" rangkaian anda. Ia akan membantu mengesan serangan terhadap HTTPS, dan untuk menentukan samada terdapat pemantauan dari rangkaian seperti Iran dan Syria di mana serangan sering berlaku."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Selesai"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere boleh menggunakan Pemantau SSL EFF. Terdapat dua -perkara yang dilakukan iaitu: (1) menghantar salinan sijil SSL kepada -Pemantau bagi tujuan mengesan serangan "man in the middle" serta -menambah baik keselamatan web; dan (2) memberi amaran kepada anda tentang -rangkaian yang tidak selamat atau serangan ke atas pelayar web anda."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"Contohnya, apabila melawati laman https://www.something.com, sijil SSL -yang diterima oleh Pemantau SSL akan memberitahu bahawa ada pelawat yang -telah ke laman tersebut, tetapi bukan siapa yang telah melawatinya, atau -halaman yang mereka telah kunjungi. Halakan tetikus kepada senarai pilihan -untuk butiran lanjut:"> - -<!ENTITY ssl-observatory.prefs.hide "Sembunyikan tetapan maju"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Semak sijil SSL walaupun ketiadaan Tor"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"Kami akan cuba menyimpan data secara anonimus, namun langkah ini adalah kurang selamat"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Hantar dan semak sijil SSL untuk nama DNS yang tidak awam"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Pemantau SSL tidak akan merakam sijil SSL yang namanya tidak dapat diselesaikan oleh sistem DNS, selagi pilihan ini tidak terpilih."> - -<!ENTITY ssl-observatory.prefs.show "Paparkan pilihan maju"> - -<!ENTITY ssl-observatory.prefs.title "Tetapan Pemantau SSL"> - -<!ENTITY ssl-observatory.prefs.use "Gunakan Pemantau SSL?"> -<!ENTITY ssl-observatory.warning.title "AMARAN dari Pemantau SSL EFF"> -<!ENTITY ssl-observatory.warning.showcert "Paparkan rantaian sijil SSL"> -<!ENTITY ssl-observatory.warning.okay "Saya faham"> -<!ENTITY ssl-observatory.warning.text "Amaran tentang sijil SSL untuk laman ini telah diberikan oleh Pemantau SSL EFF:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Hantar dan periksa sijil sendiri-bertanda"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"Disarankan, masalah kriptografik adalah biasa pada peranti self-signed "> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/mt/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/mt/https-everywhere.dtd deleted file mode 100644 index 93d66ce..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/mt/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancel"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/mt/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/mt/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/mt/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/mt/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/mt/ssl-observatory.dtd deleted file mode 100644 index 69f1cfd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/mt/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/my/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/my/https-everywhere.dtd deleted file mode 100644 index cb46a4e..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/my/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "ဗားရှင်း"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "အင်္ဂလိပ်"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "ရှာဖွေရန်"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "ဖွင့်ထားသည်"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "ဖျက်သိမ်းရန်"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/my/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/my/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/my/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/my/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/my/ssl-observatory.dtd deleted file mode 100644 index 827a4b8..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/my/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "လက်မခံ့ါ"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "ဟုတ်ကဲ့"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/nah/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/nah/https-everywhere.dtd deleted file mode 100644 index 93d66ce..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/nah/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancel"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/nah/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/nah/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/nah/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/nah/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/nah/ssl-observatory.dtd deleted file mode 100644 index 69f1cfd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/nah/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/nap/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/nap/https-everywhere.dtd deleted file mode 100644 index 93d66ce..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/nap/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancel"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/nap/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/nap/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/nap/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/nap/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/nap/ssl-observatory.dtd deleted file mode 100644 index 69f1cfd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/nap/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/nb/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/nb/https-everywhere.dtd deleted file mode 100644 index c7a7f20..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/nb/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "Om HTTPS-everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS-everywhere"> -<!ENTITY https-everywhere.about.ext_description "Krypter nettet. Bruk HTTPS-sikkerhet automatisk på mange nettsider."> -<!ENTITY https-everywhere.about.version "Versjon"> -<!ENTITY https-everywhere.about.created_by "Lagd av"> -<!ENTITY https-everywhere.about.and ", og"> -<!ENTITY https-everywhere.about.librarians "Regelsettbibliotekarer"> -<!ENTITY https-everywhere.about.add_new_rule "Legg til ny regel"> -<!ENTITY https-everywhere.about.thanks "Takk til"> -<!ENTITY https-everywhere.about.many_contributors "En masse bidragsytere, inkludert"> -<!ENTITY https-everywhere.about.noscript "Også deler av HTTPS-everywhere er basert på kode fra NoScript, av Giorgio Maone og andre. Vi er takknemlige for deres utmerkede arbeid!"> -<!ENTITY https-everywhere.about.contribute "Hvis du liker HTTPS-everywhere, vurder en"> -<!ENTITY https-everywhere.about.donate_tor "donasjon til Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "no"> -<!ENTITY https-everywhere.about.or "eller en"> -<!ENTITY https-everywhere.about.donate_eff "donasjon til EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Doner til EFF"> -<!ENTITY https-everywhere.menu.about "Om HTTPS-everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL-observatoriums-innstillinger"> -<!ENTITY https-everywhere.menu.globalEnable "Aktiver HTTPS-everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Skru av HTTPS-everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Sperr alle ukrypterte forespørsler"> -<!ENTITY https-everywhere.menu.showCounter "Vis teller"> -<!ENTITY https-everywhere.menu.viewAllRules "Vis alle regler"> - -<!ENTITY https-everywhere.prefs.title "Innstillinger for HTTPS-everywhere"> -<!ENTITY https-everywhere.prefs.enable_all "Aktiver alle"> -<!ENTITY https-everywhere.prefs.disable_all "Skru av alle"> -<!ENTITY https-everywhere.prefs.reset_defaults "Tilbakestill til forvalg"> -<!ENTITY https-everywhere.prefs.search "Søk"> -<!ENTITY https-everywhere.prefs.site "Side"> -<!ENTITY https-everywhere.prefs.notes "Merknader"> -<!ENTITY https-everywhere.prefs.list_caption "Hvilke HTTPS-omdirigeringsregler skal gjelde?"> -<!ENTITY https-everywhere.prefs.enabled "Aktivert"> -<!ENTITY https-everywhere.prefs.ruleset_howto "Du kan lære mer om hvordan du lager dine egne regelsett (for å støtte andre nettsider)"> -<!ENTITY https-everywhere.prefs.here_link "her"> -<!ENTITY https-everywhere.prefs.toggle "Av/På"> -<!ENTITY https-everywhere.prefs.reset_default "Tilbakestill til forvalg"> -<!ENTITY https-everywhere.prefs.view_xml_source "Vis XML-kilde"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stabile regler"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Tving krypterte forbindelser til disse nettstedene:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Eksperimentelle regler"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "Kan føre til advarsler eller brekkasje. Avskrudd som forvalg."> -<!ENTITY https-everywhere.chrome.add_rule "Legg til en regel for dette nettstedet"> -<!ENTITY https-everywhere.chrome.add_new_rule "Legg til en ny regel for dette nettstedet"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Bruk alltid https for denne verten"> -<!ENTITY https-everywhere.chrome.host "Vert:"> -<!ENTITY https-everywhere.chrome.show_advanced "Vis avanserte"> -<!ENTITY https-everywhere.chrome.hide_advanced "Skjul avanserte"> -<!ENTITY https-everywhere.chrome.rule_name "Regelnavn"> -<!ENTITY https-everywhere.chrome.regex "Samsvarende regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Omdiriger til"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Avbryt"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/nb/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/nb/https-everywhere.properties deleted file mode 100644 index 7467061..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/nb/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Skru på HTTPS-everywhere -https-everywhere.menu.globalDisable = Skru av HTTPS-everywhere -https-everywhere.menu.enableDisable = Skru på / av regler -https-everywhere.menu.noRules = (Ingen regler for denne siden) -https-everywhere.menu.unknownRules = (Reglene for denne siden er ukjente) -https-everywhere.toolbar.hint = HTTPS-everywhere er nå påslått. Du kan veksle status sidevis ved å klikke på miniatyrbildet i adresselinjen. -https-everywhere.migration.notification0 = For å implementere en viktig feilretting, tilbakestiller denne oppdateringen dine HTTPS-everywhere-regelinnstillinger til forvalgte verdier. -https-everywhere.menu.ruleset-tests = Kjør tester av regelsett for HTTPS-everywhere diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/nb/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/nb/ssl-observatory.dtd deleted file mode 100644 index 7eb48b6..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/nb/ssl-observatory.dtd +++ /dev/null @@ -1,102 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Detaljer og personvernsinformasjon"> -<!ENTITY ssl-observatory.popup.later "Spør meg senere"> -<!ENTITY ssl-observatory.popup.no "Nei"> - -<!ENTITY ssl-observatory.popup.text "HTTPS-everywhere kan oppdage angrep -mot nettleseren din ved å sende sertifikatene du mottar til -observatoriet. Aktivere dette?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Skal HTTPS-everywhere bruke SSL-observatoriet?"> - -<!ENTITY ssl-observatory.popup.yes "Ja"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"Det er trygt å aktivere dette, hvis du ikke er på et veldig -påtrengende bedriftsnettverk:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Trygt, med mindre du bruker et bedriftsnettverk med hemmelige intranett-tjenernavn."> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Send inn og sjekk sertifikater signert av ikke-standardiserte rotsertifiseringsinstanser"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"Det er trygt (og en god idé) å aktivere denne innstillingen, med mindre du bruker et bedriftsnettverk eller Kaspersky antivirusprogramvare som overvåker surfingen din med en TLS-mellomtjener og en privat rotsertifiseringsinstans. Hvis du aktiverer dette på et slikt nettverk, kan innstillingen publisere bevis på hvilke https://-domener som ble besøkt gjennom den mellomtjeneren, som følge av de unike sertifikatene den ville ha lagd. Som forvalg er den avskrudd."> - -<!ENTITY ssl-observatory.prefs.anonymous "Sjekk sertifikatene ved å bruke Tor for anonymitet"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Sjekk sertifikater anonymt ved bruk av Tor (Tor kreves)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"Denne innstillingen krever at Tor installeres og aktiveres"> - -<!ENTITY ssl-observatory.prefs.asn -"Når du ser et nytt sertifikat, fortell observatoriet hvilken internettleverandør du er tilkoblet"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"Dette vil hente og sende ditt nettverks "autonome systemnummer". Dette vil hjelpe oss med å lokalisere angrep mot HTTPS og med å avgjøre om vi har observasjoner fra nettverk i Iran og Syria, hvor angrep er relativt vanlige."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Vis en advarsel når observatoriet oppdager et opphevet sertifikat som ikke fanges opp av nettleseren din"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"Dette vil sjekke innsende sertifikater opp mot kjente opphevelseslister. -Uheldigvis kan vi ikke garantere at vi vil flagge alle sertifikater som er opphevet, men hvis du ser en advarsel, så er det stor sjanse for at noe er galt. "> - -<!ENTITY ssl-observatory.prefs.done "Ferdig"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS-everywhere kan bruke EFF sitt SSL-observatorium. Dette gjør to ting: (1) -sender kopier av HTTPS-sertifikater til observatoriet, for å hjelpe oss å -avsløre 'mellommann'-angrep og forbedre sikkerheten på nettet; og (2) -lar oss advare deg mot usikre tilkoblinger og angrep på nettleseren din."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"Hvis du for eksempel besøker https://www.something.com, vil sertifikatet -observatoriet mottar indikere at noen besøkte -www.etellerannet.no, men ikke hvem som besøkte siden, eller spesifikt hvilken side -de så på. Hold muspekeren over innstillingene for flere detaljer:"> - -<!ENTITY ssl-observatory.prefs.hide "Skjul avanserte innstillinger"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Sjekk sertifikater selv om Tor ikke er tilgjengelig."> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"Vil vil fortsatt prøve å holde dataene anonyme, men denne innstillingen er mindre sikker"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Send inn og sjekk sertifikater til DNS-navn som ikke er offentlige"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Hvis denne innstillingen ikke er aktivert, vil ikke observatoriet registrere sertikatene tilhørende navn som ikke kan analyseres gjennom DNS-systemet."> - -<!ENTITY ssl-observatory.prefs.show "Vis avanserte innstillinger"> - -<!ENTITY ssl-observatory.prefs.title "Innstillinger for SSL-observatoriet"> - -<!ENTITY ssl-observatory.prefs.use "Bruk observatoriumet?"> -<!ENTITY ssl-observatory.warning.title "ADVARSEL fra EFF sitt SSL-observatorium"> -<!ENTITY ssl-observatory.warning.showcert "Vis sertifikatkjede"> -<!ENTITY ssl-observatory.warning.okay "Jeg forstår"> -<!ENTITY ssl-observatory.warning.text "EFF sitt SSL-observatorium har utstedt en advarsel om HTTPS-sertifikatene for dette nettstedet:"> -<!ENTITY ssl-observatory.warning.defense "Hvis du er logget inn på denne siden, så kan det være en god idé å endre passordet ditt så snart du har en sikker tilkobling. (Disse advarslene kan skrus av i "SSL-observatoriet"-fanen under innstillinger i HTTPS-everywhere)."> - -<!ENTITY ssl-observatory.prefs.self_signed -"Send og sjekk selvsignerte sertifikater"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"Dette er anbefalt; kryptografiske problemer er spesielt vanlig i selvsignerte innebygde enheter"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/nds/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/nds/https-everywhere.dtd deleted file mode 100644 index 93d66ce..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/nds/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancel"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/nds/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/nds/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/nds/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/nds/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/nds/ssl-observatory.dtd deleted file mode 100644 index 69f1cfd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/nds/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ne/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ne/https-everywhere.dtd deleted file mode 100644 index 93d66ce..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ne/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancel"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ne/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ne/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ne/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ne/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ne/ssl-observatory.dtd deleted file mode 100644 index 6af7895..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ne/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "भयो"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/nl/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/nl/https-everywhere.dtd deleted file mode 100644 index 62d2db1..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/nl/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "Over HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Versleutel het web! Gebruik HTTPS-beveiliging automatisch op vele sites."> -<!ENTITY https-everywhere.about.version "Versie"> -<!ENTITY https-everywhere.about.created_by "Gemaakt door"> -<!ENTITY https-everywhere.about.and ", en"> -<!ENTITY https-everywhere.about.librarians "Regelsetbibliothecarissen"> -<!ENTITY https-everywhere.about.add_new_rule "Voeg nieuwe regel toe"> -<!ENTITY https-everywhere.about.thanks "Met dank aan"> -<!ENTITY https-everywhere.about.many_contributors "Vele vrijwilligers, waaronder"> -<!ENTITY https-everywhere.about.noscript "Ook delen van HTTPS Everywhere zijn gebaseerd op code van NoScript, gemaakt door Giorgio Maone en anderen. We zijn dankbaar voor hun fantastisch werk!"> -<!ENTITY https-everywhere.about.contribute "Als HTTPS Everywhere je bevalt, kun je overwegen"> -<!ENTITY https-everywhere.about.donate_tor "te doneren aan Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "of"> -<!ENTITY https-everywhere.about.donate_eff "te doneren aan het EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Doneer aan EFF"> -<!ENTITY https-everywhere.menu.about "Over HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL-observatoriumvoorkeuren"> -<!ENTITY https-everywhere.menu.globalEnable "HTTPS Everywhere inschakelen"> -<!ENTITY https-everywhere.menu.globalDisable "HTTPS Everywhere uitschakelen"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Blokkeer alle onversleutelde verzoeken"> -<!ENTITY https-everywhere.menu.showCounter "Toon Teller"> -<!ENTITY https-everywhere.menu.viewAllRules "Toon Alle Regels"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere-voorkeuren"> -<!ENTITY https-everywhere.prefs.enable_all "Alles inschakelen"> -<!ENTITY https-everywhere.prefs.disable_all "Alles uitschakelen"> -<!ENTITY https-everywhere.prefs.reset_defaults "Standaardwaarden herstellen"> -<!ENTITY https-everywhere.prefs.search "Zoeken"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Opmerkingen"> -<!ENTITY https-everywhere.prefs.list_caption "Welke HTTPS-omleidingsregels moeten worden toegepast?"> -<!ENTITY https-everywhere.prefs.enabled "Ingeschakeld"> -<!ENTITY https-everywhere.prefs.ruleset_howto "Om ondersteuning voor andere websites toe te voegen, kun je"> -<!ENTITY https-everywhere.prefs.here_link "zelf regelsets opstellen"> -<!ENTITY https-everywhere.prefs.toggle "Schakelen"> -<!ENTITY https-everywhere.prefs.reset_default "Standaardwaarden herstellen"> -<!ENTITY https-everywhere.prefs.view_xml_source "XML-broncode bekijken"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stabiele regels"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Forceer versleutelde connecties naar deze websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimentele regels"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "Kan schade aanrichten of waarschuwingen tonen. Standaard is deze uitgeschakeld."> -<!ENTITY https-everywhere.chrome.add_rule "Voeg een regel toe voor deze site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Voeg een nieuwe regel toe voor deze site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Gebruik altijd https voor deze host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Toon geavanceerd"> -<!ENTITY https-everywhere.chrome.hide_advanced "Geavanceerd verbergen"> -<!ENTITY https-everywhere.chrome.rule_name "Regel naam"> -<!ENTITY https-everywhere.chrome.regex "Matchende regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Verwijs naar"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Annuleren"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/nl/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/nl/https-everywhere.properties deleted file mode 100644 index 0d5e56b..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/nl/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = HTTPS Everywhere inschakelen -https-everywhere.menu.globalDisable = HTTPS Everywhere uitschakelen -https-everywhere.menu.enableDisable = Regels in-/uitschakelen -https-everywhere.menu.noRules = (Geen regels voor deze pagina) -https-everywhere.menu.unknownRules = (Regels voor deze pagina onbekend) -https-everywhere.toolbar.hint = HTTPS Everywhere is nu actief. Je kunt dit aanpassen door op een site-by-site basis te klikken op het icoon in de adresbalk. -https-everywhere.migration.notification0 = Om een cruciale oplossing te bewerkstelligen, reset deze update je HTTPS Everywhere regels voorkeuren naar de standaard waarden. -https-everywhere.menu.ruleset-tests = Voer de HTTPS Everywhere Ruleset Tests uit diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/nl/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/nl/ssl-observatory.dtd deleted file mode 100644 index c5db125..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/nl/ssl-observatory.dtd +++ /dev/null @@ -1,104 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details en privacy-informatie"> -<!ENTITY ssl-observatory.popup.later "Later opnieuw vragen"> -<!ENTITY ssl-observatory.popup.no "Nee"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere kan aanvallen op uw browser detecteren door -de certificaten die u ontvangt, naar het observatorium door te sturen. Wilt u dit inschakelen?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"SSL-observatorium gebruiken?"> - -<!ENTITY ssl-observatory.popup.yes "Ja"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"Het is veilig om dit in te schakelen, tenzij u een zeer indringend bedrijfsnetwerk gebruikt:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Veilig, tenzij je een bedrijfsnetwerk met geheime intranetservernamen gebruikt:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Certificaten ondertekend door niet-standaard hoofd-CA’s opsturen en controleren"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"Het is veilig (en aangeraden) om deze optie in te schakelen, tenzij u een indringend -bedrijfsnetwerk gebruikt dat uw surfgedrag met een TLS-proxy en een -privé-hoofdcertificaatautoriteit monitort. Indien deze optie op een dergelijk netwerk is ingeschakeld, -kan deze bewijs publiceren over welke HTTPS-domeinen via die proxy werden bezocht, vanwege de unieke -certificaten die dan worden geproduceerd. De optie is daarom standaard uitgeschakeld."> - -<!ENTITY ssl-observatory.prefs.anonymous "Certificaten omwille van anonimiteit via Tor controleren"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Certificaten omwille van anonimiteit via Tor controleren (vereist Torbutton)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"Voor deze optie zijn Tor en Torbutton vereist"> - -<!ENTITY ssl-observatory.prefs.asn -"Melden met welke ISP u bent verbonden indien u een nieuwe certificaat ziet"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"Dit zal het Autonoom Systeem-nummer van uw netwerk ophalen en verzenden als het observatorium een -waarschuwing afgeeft over een certificaat dat u zag. Dit helpt ons aanvallen op HTTPS te lokaliseren."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Toon een waarschuwing wanneer de Observatory een ingetrokken certificaat detecteert die niet door je browser wordt afgevangen"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"Dit checkt toegevoegde certificaten tegen de bekende ingetrokken certificaat lijsten. Helaas kunnen we niet garanderen dat we alle ingetrokken certificaten markeren, maar als je een waarschuwing ziet dan is er een goede kans dat er iets niet goed is."> - -<!ENTITY ssl-observatory.prefs.done "OK"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere kan het SSL-observatorium van EFF gebruiken. Dit doet twee dingen: ten eerste zendt -het kopieën van HTTPS-certificaten naar het observatorium om ons te helpen man-in-the-middle-aanvallen -te detecteren en de veiligheid van het web te verbeteren; ten tweede laat het ons u waarschuwen over -onveilige verbindingen en aanvallen op uw browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"Als je bijvoorbeeld https://www.iets.nl bezoekt, geeft het certificaat dat het observatorium ontvangt aan -dat iemand www.iets.nl bezocht, maar niet wie de site bezocht of welke specifieke pagina de bezoeker -bekeek. Plaats je muis boven de opties voor meer details:"> - -<!ENTITY ssl-observatory.prefs.hide "Geavanceerde opties verbergen"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Certificaten controleren zelfs als Tor niet beschikbaar is"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We zullen nog steeds proberen de gegevens anoniem te houden, maar deze optie is minder veilig"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Certificaten voor niet-openbare DNS-namen opsturen en controleren"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Tenzij deze optie is aangevinkt, legt het observatorium geen certificaten vast voor namen die niet via -het DNS-systeem zijn op te lossen."> - -<!ENTITY ssl-observatory.prefs.show "Geavanceerde opties tonen"> - -<!ENTITY ssl-observatory.prefs.title "Voorkeuren SSL-observatorium"> - -<!ENTITY ssl-observatory.prefs.use "Het observatorium gebruiken?"> -<!ENTITY ssl-observatory.warning.title "WAARSCHUWING van SSL-observatorium van EFF"> -<!ENTITY ssl-observatory.warning.showcert "Toon de certificaatketen"> -<!ENTITY ssl-observatory.warning.okay "Ik begrijp het"> -<!ENTITY ssl-observatory.warning.text "Het SSL-observatorium van EFF heeft een waarschuwing uitgegeven over een HTTPS-certificaat voor deze site:"> -<!ENTITY ssl-observatory.warning.defense "Als je ingelogd bent op deze site, is het aan te raden om je wachtwoord aan te passen zodra je een beveiligde verbinding hebt. (Deze waarschuwingen kunnen uitgeschakeld worden in het "SSL Observatory" tabblad van het HTTPS Everywhere voorkeuren menu.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Verstuur en controleer zelf-getekende certificaten"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"Dit is aanbevolen; cryptografische problemen zijn veel voorkomend in zelf-getekende embedded apparaten"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/nl_BE/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/nl_BE/https-everywhere.dtd deleted file mode 100644 index 2aa6cae..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/nl_BE/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "Over HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Versleutel het Web! Gebruik HTTPS Everywhere automatisch op vele websites."> -<!ENTITY https-everywhere.about.version "Versie"> -<!ENTITY https-everywhere.about.created_by "Gemaakt door"> -<!ENTITY https-everywhere.about.and ", en"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Nieuwe Regel Toevoegen"> -<!ENTITY https-everywhere.about.thanks "Met dank aan"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "Als u HTTPS Everywhere leuk vindt, zou u dit ook leuk kunnen vinden"> -<!ENTITY https-everywhere.about.donate_tor "Doneren aan Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "nl"> -<!ENTITY https-everywhere.about.or "of"> -<!ENTITY https-everywhere.about.donate_eff "Doneren aan EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "Over HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Voorkeuren"> -<!ENTITY https-everywhere.menu.globalEnable "Schakel HTTPS Everywhere in"> -<!ENTITY https-everywhere.menu.globalDisable "Schakel HTTPS Everywhere uit"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Toon de Teller"> -<!ENTITY https-everywhere.menu.viewAllRules "Laat alle regels zien"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Voorkeuren"> -<!ENTITY https-everywhere.prefs.enable_all "Schakel alles in"> -<!ENTITY https-everywhere.prefs.disable_all "Schakel alles uit"> -<!ENTITY https-everywhere.prefs.reset_defaults "Terugzetten naar Standaard Instellingen"> -<!ENTITY https-everywhere.prefs.search "Zoeken"> -<!ENTITY https-everywhere.prefs.site "Website"> -<!ENTITY https-everywhere.prefs.notes "Aantekeningen"> -<!ENTITY https-everywhere.prefs.list_caption "Welke HTTPS omleidingsregels moeten gelden?"> -<!ENTITY https-everywhere.prefs.enabled "Ingeschakeld"> -<!ENTITY https-everywhere.prefs.ruleset_howto "U kan leren om uw eigen regelsets te schrijven (om voor andere websites ondersteuning toe te voegen)"> -<!ENTITY https-everywhere.prefs.here_link "hier"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Terugzetten naar Standaard Instellingen"> -<!ENTITY https-everywhere.prefs.view_xml_source "Bekijk XML broncode"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Annuleer"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/nl_BE/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/nl_BE/https-everywhere.properties deleted file mode 100644 index 3ebb680..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/nl_BE/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Schakel HTTPS Everywhere in -https-everywhere.menu.globalDisable = Schakel HTTPS Everywhere uit -https-everywhere.menu.enableDisable = Schakel regels in/uit -https-everywhere.menu.noRules = (Geen regels voor deze pagina) -https-everywhere.menu.unknownRules = (Regels voor deze pagina zijn onbekend) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/nl_BE/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/nl_BE/ssl-observatory.dtd deleted file mode 100644 index deb44e7..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/nl_BE/ssl-observatory.dtd +++ /dev/null @@ -1,98 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details en Privacy Informatie"> -<!ENTITY ssl-observatory.popup.later "Vraag het me later"> -<!ENTITY ssl-observatory.popup.no "Nee"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere kan aanvallen detecteren tegen uw browser door middel van het versturen van certificaten naar het Observatory. Wilt u dit inschakelen?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Moet HTTPS Everywhere gebruik maken van de SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Ja"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"Het is veilig om dit in te schakelen, tenzij u een zeer intrusief bedrijfsnetwerk gebruikt."> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Veilig, tenzij u gebruik maakt van een bedrijfsnetwerk met geheime intranet server namen. "> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"Het is veilig (en wellicht een goed idee) om deze optie in te schakelen, tenzij u een intrusief bedrijfsnetwerk gebruikt of uw browseractiviteit gecontroleerd wordt via Kaspersky anti-virus software met een TLS proxy en een private root Vertificate Authority. Indien dit ingeschakeld wordt op zo'n netwerk, kan het zijn dat deze optie bewijs publiceert over welke https:// domeinen bezocht werden via die proxy, dit omwille van de unieke certificaten die dit zou opleveren. Daarom schakelen we het standaard uit. "> - -<!ENTITY ssl-observatory.prefs.anonymous "Check de certificaten, gebruik makende van Tor voor anonimiteit. "> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check de certificaten, gebruik makende van Tor voor anonimiteit. (vereist Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"Deze optie vereist dat Tor geinstalleerd is en actief is."> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Klaar"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Verberg geavanceerde opties"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificaten, zelfs als Tor niet beschikbaar is"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We zullen nog steeds trachten de gegevens anoniem te houden, maar deze optie is minder beveiligd"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Toon geavanceerde opties"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Voorkeuren"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "Ik begrijp het"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/nn/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/nn/https-everywhere.dtd deleted file mode 100644 index acee18c..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/nn/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "Om HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Krypter veven! Bruk HTTPS-tryggleik automatisk på mange sider."> -<!ENTITY https-everywhere.about.version "Versjon"> -<!ENTITY https-everywhere.about.created_by "Laga av"> -<!ENTITY https-everywhere.about.and ", og"> -<!ENTITY https-everywhere.about.librarians "Regelsettbibliotekarar"> -<!ENTITY https-everywhere.about.add_new_rule "Legg til ny regel"> -<!ENTITY https-everywhere.about.thanks "Takk til"> -<!ENTITY https-everywhere.about.many_contributors "Mange mange bidragsytarar, medrekna"> -<!ENTITY https-everywhere.about.noscript "Dessutan er delar av HTTPS Everywhere basert på kode frå NoScript av Giorgio Maone og andre. Me er takksame for det framifrå arbeidet deira!"> -<!ENTITY https-everywhere.about.contribute "Om du likar HTTPS Everywhere, kunne du kanskje vurdere å "> -<!ENTITY https-everywhere.about.donate_tor "Donera åt Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "eller"> -<!ENTITY https-everywhere.about.donate_eff "Donera åt EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Doner til EFF"> -<!ENTITY https-everywhere.menu.about "Om HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Innstillingar"> -<!ENTITY https-everywhere.menu.globalEnable "Slå på HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Slå av HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Blokker alle ukrypterde fyrespurnader"> -<!ENTITY https-everywhere.menu.showCounter "Vis teljar"> -<!ENTITY https-everywhere.menu.viewAllRules "Vis alle reglane"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Innstillingar"> -<!ENTITY https-everywhere.prefs.enable_all "Slå på alle"> -<!ENTITY https-everywhere.prefs.disable_all "Slå av alle"> -<!ENTITY https-everywhere.prefs.reset_defaults "Still tilbake til standard"> -<!ENTITY https-everywhere.prefs.search "Søk"> -<!ENTITY https-everywhere.prefs.site "Side"> -<!ENTITY https-everywhere.prefs.notes "Merknadar"> -<!ENTITY https-everywhere.prefs.list_caption "Kva for HTTPS vidaresendingsreglar skal gjelde?"> -<!ENTITY https-everywhere.prefs.enabled "Slått på"> -<!ENTITY https-everywhere.prefs.ruleset_howto "Du kan læra korleis du lagar dine eigne regelsett (for å støtta andre vevsider)"> -<!ENTITY https-everywhere.prefs.here_link "her"> -<!ENTITY https-everywhere.prefs.toggle "Skift mellom"> -<!ENTITY https-everywhere.prefs.reset_default "Still tilbake til standard"> -<!ENTITY https-everywhere.prefs.view_xml_source "Vis XML-kjelde"> - -<!ENTITY https-everywhere.chrome.stable_rules "Støduge reglar"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Tving krypterte tilkoplingar åt desse nettstadane:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Reglar på prøve"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "Kan vera årsak åt åtvaringar eller brot. Slegne av som standard."> -<!ENTITY https-everywhere.chrome.add_rule "Legg til ein regel for denne nettstaden"> -<!ENTITY https-everywhere.chrome.add_new_rule "Legg til ein ny regel for denne nettstaden"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Nytt alltid https for denne verten"> -<!ENTITY https-everywhere.chrome.host "Vert:"> -<!ENTITY https-everywhere.chrome.show_advanced "Vis avansert"> -<!ENTITY https-everywhere.chrome.hide_advanced "Gøym avansert"> -<!ENTITY https-everywhere.chrome.rule_name "Namn på regelen:"> -<!ENTITY https-everywhere.chrome.regex "Som passar med regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Omdiriger til"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Avbryt"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/nn/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/nn/https-everywhere.properties deleted file mode 100644 index 37c42f0..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/nn/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Slå på HTTPS Everywhere -https-everywhere.menu.globalDisable = Slå av HTTPS Everywhere -https-everywhere.menu.enableDisable = Slå på/Slå av reglar -https-everywhere.menu.noRules = (Ingen reglar for denne sida) -https-everywhere.menu.unknownRules = (Reglar for denne sida er ukjende) -https-everywhere.toolbar.hint = HTTPS Everywhere er no aktiv og kan skruast av og på ved å klikka på ikonet i addresselinja. -https-everywhere.migration.notification0 = For å gjennomføre ei viktig feilretting, vil denne oppdateringa tilbakestille regelinnstillingane til HTTPS Everywhere til standardverdiar. -https-everywhere.menu.ruleset-tests = Køyr HTTPS Everywhere regelsett-testar diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/nn/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/nn/ssl-observatory.dtd deleted file mode 100644 index 0625ef6..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/nn/ssl-observatory.dtd +++ /dev/null @@ -1,103 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Detaljar og personverninformasjon"> -<!ENTITY ssl-observatory.popup.later "Spør meg seinare"> -<!ENTITY ssl-observatory.popup.no "Nei"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere kan uppdaga åtak -på nettlesaren din ved å sende sertifikati du mottek åt Observatoriet. -Slå på dette?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Skal HTTPS Everywhere bruka SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Ja"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"Det er trygt å slå på dette, med mindre du nyttar -eit sers inngripande verksemdnettverk:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Trygt, med mindre du nyttar eit verksemdnettverk med løynlege intranett- -tenarnamn:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Send inn og sjekk attestar underskrivne av ikkjestandard rot-CA'ar"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"Det er trygt (og ein god idé) å slå på dette valet, med mindre du nyttar eit inngripande verksemdnettverk eller Kaspersky motvirusprogramvare som yvervakar nettlesingi di med ein TLS-proxy og ein privat rotsertifikatautoritet. Um det er slege på på soleis eit nettverk, kan dette valet gjeve ut prov på kva https://-domene som vart vitja gjennum den proxyen, på grunn av dei sereigne sertifikati det ville laga. So me let det vera av som standard."> - -<!ENTITY ssl-observatory.prefs.anonymous "Sjekk sertifikat ved hjelp av Tor for anonymitet"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Sjekk sertifikat ved hjelp av Tor for anonymitet (krev Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"Dette valet krev at Tor er installert og køyrar"> - -<!ENTITY ssl-observatory.prefs.asn -"Når du ser eit nytt sertifikat, fortel Observatoriet kva for ISP du er kopla åt."> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"Dette vil henta og senda det "Autonome Systemtalet" åt nettverket ditt. Dette vil hjelpe oss med å plassera åtak mot HTTPS, og med å avgjere um me hev åtgangingar frå nettverk på stadar soleis som Iran og Syria, kor åtak er jamførd vanlege."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Vis ei åtvaring når Observatoriet uppdagar eit fråteke sertifikat ikkje fanga upp av nettlesaren din"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"Dette vil sjekke innsendde sertifikat mot kjende Sertifikatfråtakingslistor. Diverre kan me ikkje stilla trygd for at me vil merka kvart fråteke sertifikat, men um du ser ei åtvaring er det ein god sjanse for at noko er gale."> - -<!ENTITY ssl-observatory.prefs.done "Ferdig"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere kan nytta EFF sitt SSL-Observatorium. Dette gjerer tvo ting: (1) -sender kopiar av HTTPS-sertifikat åt Observatoriet, for å hjelpe oss med å -uppdaga 'mann i midti'-åtak og forbetra tryggleika på nettet; og (2) lèt oss åtvara -deg um utrygge tilkoplingar eller åtak på nettlesaren din."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"Til dømes, når du vitjar https://www.noko.com, vil sertifikatet motteke av -Observatoriet stadfesta at nokon vitja www.noko.com, men ikkje kven som -vitja nettstaden, eller kva serskild sida dei såg på. Hald musa yver vala for -fleire einskilddrag:"> - -<!ENTITY ssl-observatory.prefs.hide "Gøym avanserte val"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Sjekk sertifikat sjølv um Tor ikkje er åtgjengeleg"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"Me vil framleis freista å halde upplysingane anonyme, men dette valet er mindre -trygt"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Send inn og sjekk sertifikat for ikkje-offentlege DNS-namn"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Med mindre dette valet er kryssa av, vil Observatoriet ikkje loggføra sertifikat for namn det ikkje kan løysa gjennum DNS-systemet."> - -<!ENTITY ssl-observatory.prefs.show "Vis avanserte innstiillingar"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Innstillingar"> - -<!ENTITY ssl-observatory.prefs.use "Nytt Observatoriet?"> -<!ENTITY ssl-observatory.warning.title "ÅTVARING frå EFF sitt SSL-Observatorium"> -<!ENTITY ssl-observatory.warning.showcert "Vis sertifikatkedja"> -<!ENTITY ssl-observatory.warning.okay "Eg forstår"> -<!ENTITY ssl-observatory.warning.text "EFF sitt SSL-Observatorium hev kunngjord ei åtvaring um HTTPS-sertifikatet/sertifikati for denne nettstaden:"> -<!ENTITY ssl-observatory.warning.defense "Um du er logga inn på denne nettstaden, kan det vera tilrådeleg å gjera um på passordet so fort du hev ei trygg kopling. (Desse åtvaringane kan slegast av i "SSL-Observatorium"-fani i HTTPS Everywhere-valdialogen.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Send inn og sjekk sjølvunderskrivne sertifikat"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"Dette er tilrådd; kryptografiske vanskar er serskild vanleg bland sjølvunderskrivne innbakte einheitar"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/nso/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/nso/https-everywhere.dtd deleted file mode 100644 index 93d66ce..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/nso/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancel"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/nso/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/nso/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/nso/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/nso/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/nso/ssl-observatory.dtd deleted file mode 100644 index 69f1cfd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/nso/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/oc/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/oc/https-everywhere.dtd deleted file mode 100644 index 93d66ce..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/oc/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancel"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/oc/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/oc/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/oc/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/oc/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/oc/ssl-observatory.dtd deleted file mode 100644 index 69f1cfd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/oc/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/om/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/om/https-everywhere.dtd deleted file mode 100644 index 93d66ce..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/om/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancel"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/om/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/om/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/om/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/om/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/om/ssl-observatory.dtd deleted file mode 100644 index 69f1cfd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/om/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/or/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/or/https-everywhere.dtd deleted file mode 100644 index 93d66ce..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/or/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancel"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/or/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/or/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/or/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/or/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/or/ssl-observatory.dtd deleted file mode 100644 index 69f1cfd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/or/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/pa/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/pa/https-everywhere.dtd deleted file mode 100644 index c555d4c..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/pa/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "ਐੱਚ.ਟੀ.ਟੀ.ਪੀ.ਐੱਸ. ਐਵਰੀਵੇਅਰ ਬਾਰੇ "> -<!ENTITY https-everywhere.about.ext_name "ਐੱਚ.ਟੀ.ਟੀ.ਪੀ.ਐੱਸ. ਐਵਰੀਵੇਅਰ "> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "ਵਰਜਨ"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", ਅਤੇ"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "ਨਵਾਂ ਨਿਯਮ ਜੋੜੋ"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "ਜਾਂ"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "ਈ.ਐੱਫ.ਐੱਫ. ਨੂੰ ਦਾਨ ਦਿਓ"> -<!ENTITY https-everywhere.menu.about "ਐੱਚ.ਟੀ.ਟੀ.ਪੀ.ਐੱਸ. ਐਵਰੀਵੇਅਰ ਬਾਰੇ"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "ਕਾਊਂਟਰ ਵਿਖਾਓ"> -<!ENTITY https-everywhere.menu.viewAllRules "ਸਾਰੇ ਨਿਯਮ ਵਿਖਾਓ "> - -<!ENTITY https-everywhere.prefs.title "ਐੱਚ.ਟੀ.ਟੀ.ਪੀ.ਐੱਸ. ਐਵਰੀਵੇਅਰ ਪਸੰਦਾਂ"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "ਮੂਲ ਮੁੜ-ਸਟੋਰ ਕਰੋ"> -<!ENTITY https-everywhere.prefs.search "ਖੋਜ"> -<!ENTITY https-everywhere.prefs.site "ਸਾਈਟ"> -<!ENTITY https-everywhere.prefs.notes "ਨੋਟ"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "ਚਾਲੂ"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "ਇੱਥੇ"> -<!ENTITY https-everywhere.prefs.toggle "ਬਦਲੋ"> -<!ENTITY https-everywhere.prefs.reset_default "ਮੂਲ ਮੁੜ-ਸਟੋਰ ਕਰੋ"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "ਸਥਿਰ ਨਿਯਮ"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "ਪ੍ਰਯੋਗਾਤਮਕ ਨਿਯਮ"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "ਹੋਸਟ:"> -<!ENTITY https-everywhere.chrome.show_advanced "ਉੱਨਤ ਵਿਖਾਓ "> -<!ENTITY https-everywhere.chrome.hide_advanced "ਉੱਨਤ ਛੁਪਾਓ"> -<!ENTITY https-everywhere.chrome.rule_name "ਨਿਯਮ ਦਾ ਨਾਮ"> -<!ENTITY https-everywhere.chrome.regex "ਮੇਲਣ ਰੈਜੈਕਸ"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "ਰੱਦ ਕਰੋ"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/pa/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/pa/https-everywhere.properties deleted file mode 100644 index b04ac11..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/pa/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = ਐੱਚ.ਟੀ.ਟੀ.ਪੀ.ਐੱਸ. ਐਵਰੀਵੇਅਰ ਚਾਲੂ ਕਰੋ -https-everywhere.menu.globalDisable = ਐੱਚ.ਟੀ.ਟੀ.ਪੀ.ਐੱਸ. ਐਵਰੀਵੇਅਰ ਬੰਦ ਕਰੋ -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/pa/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/pa/ssl-observatory.dtd deleted file mode 100644 index cdd6460..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/pa/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "ਵੇਰਵਾ ਅਤੇ ਪਰਾਈਵੇਸੀ ਜਾਣਕਾਰੀ"> -<!ENTITY ssl-observatory.popup.later "ਮੈਨੂੰ ਬਾਅਦ 'ਚ ਪੁੱਛੋ"> -<!ENTITY ssl-observatory.popup.no "ਨਹੀਂ"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "ਹਾਂ"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "ਮੁਕੰਮਲ"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/pap/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/pap/https-everywhere.dtd deleted file mode 100644 index 93d66ce..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/pap/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancel"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/pap/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/pap/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/pap/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/pap/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/pap/ssl-observatory.dtd deleted file mode 100644 index 69f1cfd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/pap/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/pl/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/pl/https-everywhere.dtd deleted file mode 100644 index 930ec75..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/pl/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "O HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Szyfruj sieć! Automatycznie używaj zabezpieczeń HTTPS na wielu stronach."> -<!ENTITY https-everywhere.about.version "Wersja"> -<!ENTITY https-everywhere.about.created_by "Stworzone przez"> -<!ENTITY https-everywhere.about.and ", i"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Dodaj Nową Regułę"> -<!ENTITY https-everywhere.about.thanks "Dzięki dla"> -<!ENTITY https-everywhere.about.many_contributors "W tym wielu współtworóców, jak"> -<!ENTITY https-everywhere.about.noscript "Ponadto, fragmenty HTTPS Everywhere oparte są na kodzie z NoScript, od Giorgio Maone i innych. Jesteśmy wdzięczni za ich wspaniałą pracę!"> -<!ENTITY https-everywhere.about.contribute "Jeżeli lubisz HTTPS Everywhere, możesz rozważyć "> -<!ENTITY https-everywhere.about.donate_tor "Dotacje dla Tora"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "albo"> -<!ENTITY https-everywhere.about.donate_eff "Dotacje dla Electronic Frontier Foundation"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Wspomóż finansowo EFF"> -<!ENTITY https-everywhere.menu.about "O HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "Ustawienia SSL Observatory"> -<!ENTITY https-everywhere.menu.globalEnable "Włącz HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Wyłącz HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Blokuj wszystkie nieszyfrowane próby połączenia"> -<!ENTITY https-everywhere.menu.showCounter "Pokaż Licznik"> -<!ENTITY https-everywhere.menu.viewAllRules "Wyświetl wszystkie reguły"> - -<!ENTITY https-everywhere.prefs.title "Ustawienia HTTPS Everywhere"> -<!ENTITY https-everywhere.prefs.enable_all "Włącz wszystko"> -<!ENTITY https-everywhere.prefs.disable_all "Wyłącz wszystko"> -<!ENTITY https-everywhere.prefs.reset_defaults "Przywróć ustawienia fabryczne"> -<!ENTITY https-everywhere.prefs.search "Szukaj"> -<!ENTITY https-everywhere.prefs.site "Strona"> -<!ENTITY https-everywhere.prefs.notes "Notatki"> -<!ENTITY https-everywhere.prefs.list_caption "Które z opcji przekierowań HTTPS należy zastosować?"> -<!ENTITY https-everywhere.prefs.enabled "Włączone"> -<!ENTITY https-everywhere.prefs.ruleset_howto "Możesz nauczyć się jak pisać własne pakiety reguł (by dać wsparcie innym stronom)"> -<!ENTITY https-everywhere.prefs.here_link "tutaj"> -<!ENTITY https-everywhere.prefs.toggle "Przełączanie"> -<!ENTITY https-everywhere.prefs.reset_default "Przywróć ustawienia fabryczne"> -<!ENTITY https-everywhere.prefs.view_xml_source "Zobacz źródło XML "> - -<!ENTITY https-everywhere.chrome.stable_rules "Reguły stabilne"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Wymuszaj szyfrowane połączenie do tych stron internetowych:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Reguły eksperymentalne"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "Może powodować ostrzeżenia lub uszkodzenia. Domyślnie wyłączone."> -<!ENTITY https-everywhere.chrome.add_rule "Dodaj nową regułę dla tej strony"> -<!ENTITY https-everywhere.chrome.add_new_rule "Dodaj nową regułę dla tej strony"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Zawsze używaj https dla tego hosta"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Pokaż zaawansowane"> -<!ENTITY https-everywhere.chrome.hide_advanced "Ukryj zaawansowane"> -<!ENTITY https-everywhere.chrome.rule_name "Nazwa reguły"> -<!ENTITY https-everywhere.chrome.regex "Pasujący regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Przekieruj do"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Anuluj"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/pl/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/pl/https-everywhere.properties deleted file mode 100644 index 56e0f1d..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/pl/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Włącz HTTPS Everywhere -https-everywhere.menu.globalDisable = Wyłącz HTTPS Everywhere -https-everywhere.menu.enableDisable = Włącz/Wyłącz reguły -https-everywhere.menu.noRules = (brak reguł dla tej strony) -https-everywhere.menu.unknownRules = (reguły dla tej strony są nieznane) -https-everywhere.toolbar.hint = HTTPS Everywhere jest teraz aktywne. Możesz przełączać to dla poszczególnych stron, klikając ikonę w pasku adresu. -https-everywhere.migration.notification0 = W celu implementacji pewnej kluczowej poprawki, ta aktualizacja zresetuje ustawienia reguł HTTPS Everywhere do ich domyślnych wartości. -https-everywhere.menu.ruleset-tests = Uruchom testowe zestawienie reguł HTTPS Everywhere diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/pl/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/pl/ssl-observatory.dtd deleted file mode 100644 index 9a9ac56..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/pl/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Szczegóły i Polityka Prywatności"> -<!ENTITY ssl-observatory.popup.later "Zapytaj mnie później"> -<!ENTITY ssl-observatory.popup.no "Nie"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere może wykryć ataki -na twoją przeglądarkę przez wysyłanie do ciebie certyfikatów, które otrzymujesz -do "SSL Observatory". Włączyć tą opcję?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Czy HTTPS Everywhere ma używać "SSL Observatory"?"> - -<!ENTITY ssl-observatory.popup.yes "Tak"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"Bezpiecznym jest używanie tej opcji, chyba że korzystasz -z intruzywnej sieci korporacyjnej."> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Bezpieczne, jeżeli używasz sieci korporacyjnej z ukrytymi nazwami serwerów Intranetowych."> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Wysyłaj i sprawdzaj certyfikaty podpisane przez niestandardowe ośrodki certyfikacji"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"Jest bezpiecznym (i dobrym pomysłem), by włączyć tą opcję, chyba że używasz intruzywnej sieci korporacyjnej lub antywirusa firmy Kaspersky, które monitorują twoje przeglądanie za pomocą TLS proxy i prywatnego roota CA. Jeżeli ta opcja jest włączona na takich właśnie sieciach, opcja ta może przyczynić się do publikacji dowodów na temat stron, które były odwiedzane przez ten proxy, ponieważ unikalne certyfikaty zostaną utworzone. Dlatego też opcja ta domyślnie jest wyłączona."> - -<!ENTITY ssl-observatory.prefs.anonymous "Sprawdź certyfikaty używając Tora dla prywatności"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Sprawdź certyfikaty używając Tora dla prywatności (wymaga aplikacji Torbutton)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"Ta opcja, do instalacji, wymaga Tora oraz aplikacji Torbutton "> - -<!ENTITY ssl-observatory.prefs.asn -"Jeżeli dostrzeżesz nowe certyfikaty, potwierdź SLL Observatory, do którego ISP jesteś obecnie podłączony"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"To pobierze i wyśle "numer Autonomicznego Systemu" Twojej sieci. To pomoże nam zlokalizować ataki na HTTPS i określić, czy mamy obserwacje sieci w miejscach takich jak Iran czy Syria, gdzie ataki są porównywalnie częste."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Pokaż ostrzeżenie gdy Obserwatorium wykryje odwołany certyfikat, nie wykryty przez Twoją przeglądarkę"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"To pozwoli sprawdzić wysłane certyfikaty przeciw znanej Liście Odwołanych Certyfikatów. Niestety, nie możemy zagwarantować, że będziemy flagować każdy odwołany certyfikat, ale jeśli zobaczysz ostrzeżenie istnieje duża szansa, że coś jest nie tak."> - -<!ENTITY ssl-observatory.prefs.done "Gotowe"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere może używać EFF's SSL Observatory. Daje to dwie rzeczy: (1) -wysyła kopie certyfikatów HTTPS do SSL Observatory, pomagając nam -wykryć ataki osób podsłuchujących; i (2) -daje nam znać o niezabezpieczonych połączeniach lub atakach na twoją przeklądarkę."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"Dla przykładu, jeżeli odwiedzasz https://www.something.com, certyfikat -otrzymany przez SSL Observatory wskaże, że ktoś odwiedził -https://www.something.com ale nie wskaże kto dokładnie ją odwiedzał i jakie strony przeglądał. -Najedź kursorem na opcje by zobaczyć więcej szczegółów:"> - -<!ENTITY ssl-observatory.prefs.hide "Ukryj zaawansowane opcje"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Sprawdź certyfikaty nawet jeżeli Tor nie jest dostępny"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"Postaramy się zachować anonimowość twoich danych, jednak ta opcja jest mniej bezpieczna."> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Wyślij i sprawdź certyfikaty dla niepublicznych nazw DNSów"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Jeśli ta opcja nie jest włączona, Obserwatorium nie zarejestruje certyfikatów dla nazw, których nie można znaleźć w systemie DNS."> - -<!ENTITY ssl-observatory.prefs.show "Pokaż zaawansowane opcje"> - -<!ENTITY ssl-observatory.prefs.title "Preferencje SLL Observatory"> - -<!ENTITY ssl-observatory.prefs.use "Użyj Observatory?"> -<!ENTITY ssl-observatory.warning.title "OSTRZEŻENIE od EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Pokaż łańcuch certyfikatu"> -<!ENTITY ssl-observatory.warning.okay "Tak, rozumiem"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory wystawił ostrzeżenie na temat certyfikatów HTTPS dla tej strony:"> -<!ENTITY ssl-observatory.warning.defense "Jeśli jesteś zalogowany na tej stronie, wskazana jest zmiana hasła, jak tylko będziesz mieć bezpieczne połączenie. (Te ostrzeżenia można wyłączyć w karcie "Obserwatorium SSL" w preferencjach HTTPS Everywhere.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Wysyłaj i sprawdzaj samopodpisane certyfikaty"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"To jest zalecane; problemy kryptograficzne są szczególnie częste w samopodpisanych urządzeniach wbudowanych."> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/pl_PL/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/pl_PL/https-everywhere.dtd deleted file mode 100644 index e42bffe..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/pl_PL/https-everywhere.dtd +++ /dev/null @@ -1,46 +0,0 @@ -<!ENTITY https-everywhere.about.title "O HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Szyfruj sieć! Automatycznie używaj zabezpieczenia HTTPS na wielu stronach"> -<!ENTITY https-everywhere.about.version "Wersja"> -<!ENTITY https-everywhere.about.created_by "Stworzone przez"> -<!ENTITY https-everywhere.about.librarians "Biblioteki reguł"> -<!ENTITY https-everywhere.about.thanks "Podziękowania dla"> -<!ENTITY https-everywhere.about.contribute "Jeśli lubisz HTTPS Everywhere, rozważ"> -<!ENTITY https-everywhere.about.donate_tor "Dotacje dla Tora"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.donate_eff "Dotacje dla EFF"> - -<!ENTITY https-everywhere.menu.about "O HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "Preferencje Obserwatorium SSL"> -<!ENTITY https-everywhere.menu.globalEnable "Włącz HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Wyłącz HTTPS Everywhere"> - -<!ENTITY https-everywhere.prefs.title "Preferencje HTTPS Everywhere"> -<!ENTITY https-everywhere.prefs.enable_all "Włącz wszystko"> -<!ENTITY https-everywhere.prefs.disable_all "Wyłącz wszystko"> -<!ENTITY https-everywhere.prefs.reset_defaults "Resetuj do Domyślnych"> -<!ENTITY https-everywhere.prefs.search "Szukaj"> -<!ENTITY https-everywhere.prefs.site "Strona"> -<!ENTITY https-everywhere.prefs.notes "Notatki"> -<!ENTITY https-everywhere.prefs.list_caption "Które reguły przekierowania HTTPS mają być zastosowane?"> -<!ENTITY https-everywhere.prefs.enabled "Włączone"> -<!ENTITY https-everywhere.prefs.ruleset_howto "Możesz dowiedzieć się, jak pisać własne reguły (aby dodać obsługę innych stron)"> -<!ENTITY https-everywhere.prefs.here_link "tutaj"> -<!ENTITY https-everywhere.prefs.toggle "Przełącz"> -<!ENTITY https-everywhere.prefs.reset_default "Resetuj do Domyślnych"> -<!ENTITY https-everywhere.prefs.view_xml_source "Wyświetl źródło XML"> - -<!ENTITY https-everywhere.source.downloading "Pobieranie"> -<!ENTITY https-everywhere.source.filename "Nazwa pliku"> -<!ENTITY https-everywhere.source.unable_to_download "Nie można pobrać źródła."> - -<!ENTITY https-everywhere.popup.title "HTTPS Everywhere 4.0development.11 notification"> -<!ENTITY https-everywhere.popup.paragraph1 "Oops. You were using the stable version of HTTPS Everywhere, but we might have accidentally upgraded you to the development version in our last release."> -<!ENTITY https-everywhere.popup.paragraph2 "Would you like to go back to stable?"> -<!ENTITY https-everywhere.popup.paragraph3 "We'd love it if you continued using our development release and helped us make HTTPS Everywhere better! You might find there are a few more bugs here and there, which you can report to https-everywhere@eff.org. Sorry about the inconvenience, and thank you for using HTTPS Everywhere."> -<!ENTITY https-everywhere.popup.keep "Keep me on the development version"> -<!ENTITY https-everywhere.popup.revert "Download the latest stable version"> - -<!ENTITY https-everywhere.ruleset-tests.status_title "HTTPS Everywhere Ruleset Tests"> -<!ENTITY https-everywhere.ruleset-tests.status_cancel_button "Anuluj"> -<!ENTITY https-everywhere.ruleset-tests.status_start_button "Start"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/pl_PL/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/pl_PL/https-everywhere.properties deleted file mode 100644 index a1b2d5d..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/pl_PL/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Włącz HTTPS Everywhere -https-everywhere.menu.globalDisable = Wyłącz HTTPS Everywhere -# https-everywhere.menu.enableDisable = Enable / Disable Rules -# https-everywhere.menu.noRules = (No Rules for This Page) -# https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -# https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -# https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -# https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/pl_PL/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/pl_PL/ssl-observatory.dtd deleted file mode 100644 index 327af4c..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/pl_PL/ssl-observatory.dtd +++ /dev/null @@ -1,90 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Szczegóły i informacje o prywatności"> -<!ENTITY ssl-observatory.popup.later "Zapytaj Mnie Później"> -<!ENTITY ssl-observatory.popup.no "Nie"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere może wykrywać ataki na Twoją przeglądarkę, wysyłając otrzymyawne certyfikaty do Obserwatorium. Włączyć to?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Czy HTTPS Everywhere ma używać Obserwatorium SSL?"> - -<!ENTITY ssl-observatory.popup.yes "Tak"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"Można to bezpiecznie włączyć, chyba że uwasz bardzo intruzyjnej sieci firmowej:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Bezpieczne, chyba że używasz sieci firmowej z tajnymi nazwami serwerów intranetowych:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Wysyłaj i sprawdzaj certyfikaty podpisane przez niestandardowe główne urzędy certyfikacji"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"Włączenie tej opcji jest bezpieczne (i jest dobrym pomysłem), chyba że używasz intruzyjnej sieci firmowej lub oprogramowania antywirusowego Kaspersky, które monitoruje Twoje surfowanie poprzez proxy TLS i prywatny główny urząd certyfikacji. Jeśli włączona w takiej sieci, ta opcja mogłaby publikować dowody na to, które domeny https:// są odwiedzane przez to proxy, przez unikalne certyfikaty przez nie wystawiane. Dlatego zostawiamy ją domyślnie wyłączoną."> - -<!ENTITY ssl-observatory.prefs.anonymous "Sprawdzaj certyfikaty, używając Tora dla anonimowości"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Sprawdzaj certyfikaty, używając Tora dla anonimowości (wymaga Torbuttona)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"Ta opcja wymaga, aby Tor i Torbutton były zainstalowane"> - -<!ENTITY ssl-observatory.prefs.asn -"Gdy widzisz nowy certyfikat, powiedz Obserwatorium, do którego dostawcy jesteś podłączony"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"To pobierze i wyśle "numer Autonomicznego Systemu" Twojej sieci. To pomoże nam zlokalizować ataki na HTTPS i w w określeniu, czy mamy obserwacje z sieci w miejscach takich jak Iran czy Syria, gdzie ataki są porównywalnie częste."> - -<!ENTITY ssl-observatory.prefs.done "Zrobione"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere może używać Obserwatorium SSL EFF. To robi dwie rzeczy: (1) -wysyła kopie certyfikatów HTTPS do Obserwatorium, by pomóc nam -wykrywać ataki z pośrednikiem i poprawić bezpieczeństwo Sieci i (2) -pozwala nam ostrzegać Cię o niebezpiecznych połączeniach lub atakach na Twoją przeglądarkę"> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"Na przykład, gdy odwiedzasz https://www.something.com, certyfikat otrzymany -przez Obserwatorium wskaże, że ktoś odwiedził www.something.com, ale nie to, kto to był, lub na jaką konkretną stronę wszedł Najedź myszą na opcje po więcej szczegółów:"> - -<!ENTITY ssl-observatory.prefs.hide "Ukryj zaawansowane opcje"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Sprawdzaj certyfikaty nawet gdy Tor nie jet dostępny"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"Ciągle będziemy próbować anonimizować dane, ale ta opcja jest mniej bezpieczna"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Wysyłaj i sprawdzaj certyfikaty niepublicznych nazw DNS"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Jeśli ta opcja nie jest włączona, Obserwatorium nie będzie zapisywać certyfikatów dla nazw, których nie może rozwiązać poprzez system DNS."> - -<!ENTITY ssl-observatory.prefs.show "Pokaż zaawansowane opcje"> - -<!ENTITY ssl-observatory.prefs.title "Preferencje Obserwatorium SSL"> - -<!ENTITY ssl-observatory.prefs.use "Używać Obserwatorium?"> -<!ENTITY ssl-observatory.warning.title "OSTRZEŻENIE od Obserwatorium SSL EFF"> -<!ENTITY ssl-observatory.warning.showcert "Pokaż łańcuch certyfikatów"> -<!ENTITY ssl-observatory.warning.okay "Rozumiem"> -<!ENTITY ssl-observatory.warning.text "Obserwatorium SSL EFF wydało ostrzeżenie o certyfikacie(-ach) HTTPS dla tej strony:"> -<!ENTITY ssl-observatory.warning.defense "Jeśli jesteś zalogowany/a na tej stronie, może być zalecana zmiana hasła, gdy już będziesz mieć bezpieczne połączenie."> - -<!ENTITY ssl-observatory.prefs.self_signed -"Wyślij i sprawdź samopodpisane certyfikaty"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"To jest zalecane; problemy kryptograficzne są szczególnie często spotykane w samopodpisanych urządzeniach wbudowanych"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/pms/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/pms/https-everywhere.dtd deleted file mode 100644 index 93d66ce..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/pms/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancel"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/pms/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/pms/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/pms/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/pms/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/pms/ssl-observatory.dtd deleted file mode 100644 index 69f1cfd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/pms/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ps/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ps/https-everywhere.dtd deleted file mode 100644 index 93d66ce..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ps/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancel"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ps/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ps/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ps/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ps/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ps/ssl-observatory.dtd deleted file mode 100644 index 69f1cfd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ps/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/pt/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/pt/https-everywhere.dtd deleted file mode 100644 index 38a2a56..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/pt/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "Sobre HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encripte a Web! Utilize automaticamente a segurança HTTPS em vários sites."> -<!ENTITY https-everywhere.about.version "Versão"> -<!ENTITY https-everywhere.about.created_by "Criado por"> -<!ENTITY https-everywhere.about.and ", e"> -<!ENTITY https-everywhere.about.librarians "Bibliotecas do conjunto de regras"> -<!ENTITY https-everywhere.about.add_new_rule "Adicionar Nova Regra"> -<!ENTITY https-everywhere.about.thanks "Obrigado a"> -<!ENTITY https-everywhere.about.many_contributors "Muitos, muitos contribuidores, incluindo"> -<!ENTITY https-everywhere.about.noscript "Partes do HTTPS Everywhere são baseadas no código-fonte do NoScript, criado por Giorgio Maone e outros. O nosso muito obrigado pelo seu trabalho!"> -<!ENTITY https-everywhere.about.contribute "Se gosta do HTTPS Everywhere, poderá considerar"> -<!ENTITY https-everywhere.about.donate_tor "Doar ao Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "pt-PT"> -<!ENTITY https-everywhere.about.or "ou"> -<!ENTITY https-everywhere.about.donate_eff "Doar à EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donativos à EFF"> -<!ENTITY https-everywhere.menu.about "Sobre o HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "Preferências do Observatório de SSL"> -<!ENTITY https-everywhere.menu.globalEnable "Ativar HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Desativar HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Bloquear todos os pedidos não encriptados"> -<!ENTITY https-everywhere.menu.showCounter "Mostrar Contador"> -<!ENTITY https-everywhere.menu.viewAllRules "Ver Todas as Regras"> - -<!ENTITY https-everywhere.prefs.title "Preferências do HTTPS Everywhere"> -<!ENTITY https-everywhere.prefs.enable_all "Ativar Tudo"> -<!ENTITY https-everywhere.prefs.disable_all "Desativar Tudo"> -<!ENTITY https-everywhere.prefs.reset_defaults "Restaurar Predefinições"> -<!ENTITY https-everywhere.prefs.search "Procurar"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notas"> -<!ENTITY https-everywhere.prefs.list_caption "Quais as regras de redireção HTTPS que deverão ser aplicadas?"> -<!ENTITY https-everywhere.prefs.enabled "Ativada"> -<!ENTITY https-everywhere.prefs.ruleset_howto "Pode aprender a escrever os seus próprios conjuntos de regras (para adicionar suporte para outros sites da Web)"> -<!ENTITY https-everywhere.prefs.here_link "aqui"> -<!ENTITY https-everywhere.prefs.toggle "Alternar"> -<!ENTITY https-everywhere.prefs.reset_default "Reiniciar Predefinição"> -<!ENTITY https-everywhere.prefs.view_xml_source "Ver Fonte XML"> - -<!ENTITY https-everywhere.chrome.stable_rules "Regras estáveis"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Forçar ligações encriptadas a estes websites;"> -<!ENTITY https-everywhere.chrome.experimental_rules "Regras experimentais"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "Pode causar alertas ou danos. Desativadas por definição."> -<!ENTITY https-everywhere.chrome.add_rule "Adicionar uma regra para este site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Adicionar uma nova regra para este site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Utilizar sempre HTTPS para este servidor"> -<!ENTITY https-everywhere.chrome.host "Servidor:"> -<!ENTITY https-everywhere.chrome.show_advanced "Mostrar opções avançadas"> -<!ENTITY https-everywhere.chrome.hide_advanced "Ocultar opções avançadas"> -<!ENTITY https-everywhere.chrome.rule_name "Nome da regra"> -<!ENTITY https-everywhere.chrome.regex "Regex coincidente"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirecionar para"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancelar"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/pt/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/pt/https-everywhere.properties deleted file mode 100644 index fb1e9e1..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/pt/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Ativar HTTPS Everywhere -https-everywhere.menu.globalDisable = Desativar HTTPS Everywhere -https-everywhere.menu.enableDisable = Ativar/desativar regras -https-everywhere.menu.noRules = (Sem regras para esta página) -https-everywhere.menu.unknownRules = (Regras desconhecidas para esta página) -https-everywhere.toolbar.hint = O HTTPS Everywhere está agora ativo. Pode alternar a ativação numa base por site clicando no ícone da barra de endereço. -https-everywhere.migration.notification0 = Para implementar esta correção crucial, a atualização irá restaurar as preferências padrão do HTTPS Everywhere. -https-everywhere.menu.ruleset-tests = Executar testes aos conjuntos de regras do HTTPS Everywhere diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/pt/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/pt/ssl-observatory.dtd deleted file mode 100644 index 2a63531..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/pt/ssl-observatory.dtd +++ /dev/null @@ -1,100 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Detalhes e Informação da Privacidade"> -<!ENTITY ssl-observatory.popup.later "Perguntar Mais Tarde"> -<!ENTITY ssl-observatory.popup.no "Não"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere pode detetar ataques -contra o seu navegador, ao enviar os certificados que recebe para o -Observatório. Ativar isto?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"HTTPS Everywhere deverá utilizar o Observatório SSL?"> - -<!ENTITY ssl-observatory.popup.yes "Sim"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"É seguro ativar isto, a menos que utilize uma - rede empresarial muito intrusiva:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Seguro, a menos que utilize uma rede empresarial com nomes de servidor de intranet secretos:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submeter e verificar os certificados assinados por autoridades de certificação não padrão"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"É seguro (e uma boa ideia) ativar esta opção, a menos que utilize uma rede de empresa intrusiva ou o programa de antivírus Kaspersky que monitoriza a sua navegação com um proxy TLS e uma Autoridade Certificadora de raiz privada. Se for ativada em tal rede, esta opção poderá divulgar os detalhes dos domínios https:// que tenham sido visitados através deste proxy, por causa dos certificados únicos que este poderia criar. Por isso, nós deixámos esta opção desativada por predefinição."> - -<!ENTITY ssl-observatory.prefs.anonymous "Verificar certificados utilizando o Tor para anonimato"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Verificar certificados utilizando o Tor para anonimato (requer o Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"Esta opção requer que o Tor esteja instalado e em execução"> - -<!ENTITY ssl-observatory.prefs.asn -"Ao ver um novo certificado novo, comunicar ao observatório o ISP ao qual você está ligado"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"Isso irá obter e enviar o "Número de sistema autónomo" da sua rede. Este número ajuda-nos a localizar os ataques ao HTTPS e a determinar se possuímos observações de locais como o Irão ou a Síria, locais estes onde os ataques são bastante comuns."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Mostrar um aviso quando o 'Observatório' deteta um certificado revogado não descoberto pelo seu navegador da Web"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"Isto irá comparar os certificados submetidos com a lista de certificados revogados. Infelizmente, não podemos garantir que iremos detetar todos os certificados revogados, mas se você vir um aviso existe uma grande probabilidade de algo estar errado."> - -<!ENTITY ssl-observatory.prefs.done "Terminado"> - -<!ENTITY ssl-observatory.prefs.explanation -"O HTTPS Everywhere pode utilizar o observatório SSL da EFF. Isto faz duas coisas: (1) -envia as cópias dos certificados HTTPS para o observatório, ajudando-nos a detetar os ataques 'man in the middle' e a melhorar a segurança na Web e (2) -permite-nos avisar os utilizadores sobre as ligações inseguras ou sobre os ataques ao seu navegador."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"Por exemplo, ao aceder ao site https://www.something.com, o certificado -recebido pelo observatório indica-lhe que alguém visitou -www.something.com, mas não lhe diz quem foi nem a que páginas acedeu. -Passe com o rato pelas opções para mais informações:"> - -<!ENTITY ssl-observatory.prefs.hide "Ocultar opções avançadas"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Verificar certificados mesmo que o Tor não esteja disponível"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"Tentaremos manter os seus dados protegidos, mas esta opção é um pouco menos segura"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submeter e verificar certificados para nomes de DNS não públicos"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Se não ativar esta opção, o observatório não irá guardar os certificados para os nomes que não consiga resolver atavés do sistema DNS."> - -<!ENTITY ssl-observatory.prefs.show "Mostrar opções avançadas"> - -<!ENTITY ssl-observatory.prefs.title "Preferências do observatório SSL"> - -<!ENTITY ssl-observatory.prefs.use "Utilizar observatório?"> -<!ENTITY ssl-observatory.warning.title "AVISO do Observatório SSL EFF"> -<!ENTITY ssl-observatory.warning.showcert "Mostrar a cadeia do certificado"> -<!ENTITY ssl-observatory.warning.okay "Eu percebo"> -<!ENTITY ssl-observatory.warning.text "O observatório SSL da EFF emitiu um aviso sobre o certificado(s) HTTPS deste site:"> -<!ENTITY ssl-observatory.warning.defense "Se iniciou a sessão neste site, pode ser aconselhável alterar a sua palavra-passe assim que estabelecer uma ligação segura. (Estes avisos podem ser desativados no separador "Observatório SSL" nas preferências do HTTPS Everywhere)."> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submeter e verificar os certificados assinados automaticamente"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"Recomenda-se esta prática; os problemas criptográficos são particularmente comuns em dispositivos com certificados auto-assinados incorporados"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/pt_BR/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/pt_BR/https-everywhere.dtd deleted file mode 100644 index cb3531c..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/pt_BR/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "Sobre o HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Criptografar a Web! Use automaticamente a segurança HTTPS em diversos sites."> -<!ENTITY https-everywhere.about.version "Versão"> -<!ENTITY https-everywhere.about.created_by "Criado por"> -<!ENTITY https-everywhere.about.and ", e"> -<!ENTITY https-everywhere.about.librarians "Biblioteca de Conjunto de Regras"> -<!ENTITY https-everywhere.about.add_new_rule "Adicionar nova exceção "> -<!ENTITY https-everywhere.about.thanks "Obrigado a"> -<!ENTITY https-everywhere.about.many_contributors "Muitos contribuidores, incluindo"> -<!ENTITY https-everywhere.about.noscript "Também, porções do HTTPS Everywhere são baseadas no código do NoScript de Giorgio Maone e outros. Nós somos gratos pelo trabalho excelente que eles fizeram!"> -<!ENTITY https-everywhere.about.contribute "Se você gostar do HTTPS Everywhere, considere"> -<!ENTITY https-everywhere.about.donate_tor "Fazer uma doação para o Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "pt_BR"> -<!ENTITY https-everywhere.about.or "ou"> -<!ENTITY https-everywhere.about.donate_eff "Doar para EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Doar para EFF"> -<!ENTITY https-everywhere.menu.about "Sobre o HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "Preferências do Observatório SSL"> -<!ENTITY https-everywhere.menu.globalEnable "Habilitar HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Desabilitar HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Bloquear todos os pedidos não criptografados"> -<!ENTITY https-everywhere.menu.showCounter "Mostrar o contador"> -<!ENTITY https-everywhere.menu.viewAllRules "Consultar Todas as Regras"> - -<!ENTITY https-everywhere.prefs.title "Preferências do HTTPS Everywhere "> -<!ENTITY https-everywhere.prefs.enable_all "Habilitar tudo"> -<!ENTITY https-everywhere.prefs.disable_all "Desabilitar tudo"> -<!ENTITY https-everywhere.prefs.reset_defaults "Restaurar as configurações padrão"> -<!ENTITY https-everywhere.prefs.search "Procurar"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notas"> -<!ENTITY https-everywhere.prefs.list_caption "Quais regras de redirecionamento HTTPS devem ser aplicadas?"> -<!ENTITY https-everywhere.prefs.enabled "Habilitado(a)"> -<!ENTITY https-everywhere.prefs.ruleset_howto "Você pode aprender a escrever o seu próprio conjunto de regras (para estender o suporte a outros web sites)"> -<!ENTITY https-everywhere.prefs.here_link "aqui"> -<!ENTITY https-everywhere.prefs.toggle "Alternar"> -<!ENTITY https-everywhere.prefs.reset_default "Restaurar as configurações padrão"> -<!ENTITY https-everywhere.prefs.view_xml_source "Ver Fonte XML"> - -<!ENTITY https-everywhere.chrome.stable_rules "protecção colectiva"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Forçar conexões criptografadas a estes sites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Regras experimentais"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "Pode causar avisos ou ruptura. Desabilitado por padrão."> -<!ENTITY https-everywhere.chrome.add_rule "Adicione uma regra para esse site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Adicione uma nova regra para esse site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Sempre usar https para este hospedeiro"> -<!ENTITY https-everywhere.chrome.host "Hospedeiro:"> -<!ENTITY https-everywhere.chrome.show_advanced "Mostrar opções avançadas"> -<!ENTITY https-everywhere.chrome.hide_advanced "Ocultar opções avançadas"> -<!ENTITY https-everywhere.chrome.rule_name "Nome da regra"> -<!ENTITY https-everywhere.chrome.regex "Expressão regular correspondente"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirecionar para"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancelar"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/pt_BR/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/pt_BR/https-everywhere.properties deleted file mode 100644 index 0a7d88d..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/pt_BR/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Habilitar HTTPS Everywhere -https-everywhere.menu.globalDisable = Desabilitar HTTPS Everywhere -https-everywhere.menu.enableDisable = Habilitar / Desabilitar as Regras -https-everywhere.menu.noRules = (Não há Regras para Esta Página) -https-everywhere.menu.unknownRules = (Regras Desconhecidas para Esta Página) -https-everywhere.toolbar.hint = HTTPS Everywhere foi ativado. Você pode habilitá-lo individualmente para cada site, clicando no ícone na barra de endereços. -https-everywhere.migration.notification0 = Para implementar uma reparação crucial, esta atualização redefine suas preferências de regras do HTTPS Everywhere como valores padrão. -https-everywhere.menu.ruleset-tests = Executar os testes do conjunto de regras do HTTPS Everywhere diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/pt_BR/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/pt_BR/ssl-observatory.dtd deleted file mode 100644 index 00d26aa..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/pt_BR/ssl-observatory.dtd +++ /dev/null @@ -1,97 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Detalhes e Informações Privadas"> -<!ENTITY ssl-observatory.popup.later "Pergunte-me mais tarde"> -<!ENTITY ssl-observatory.popup.no "Não"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere detecta ataques -contra o seu navegador enviando os certificados que você receber -ao Observatório. Você deseja de ativá-lo?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"O HTTPS Everywhere deve utilizar o Observatório SSL?"> - -<!ENTITY ssl-observatory.popup.yes "Sim"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"É seguro habilitar esta função, a não ser que você utilize uma rede corporativa muito intrusiva:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Seguro, a não ser que você utilize uma rede corporativa cujos provedores de intranet possuam nomes secretos:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Apresentar e verificar os certificados que tiverem sido assinados por Certificados de Autoridade (CA) de raiz não-padronizada."> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"É seguro (e uma boa ideia) habilitar esta opção, a não ser que você utilize uma rede corporativa intrusiva ou o programa antivírus Kapersky, que monitora a sua navegação com um proxy TLS e um certificado de autoridade cuja raiz é privada. Por causa dos certificados únicos que seriam produzidos em uma rede de tal tipo, ao ser habilitada, esta opção poderia publicar provas dos domínios https:// visitados utilizando aquele proxy. Por isso, como padrão, nós a desabilitamos."> - -<!ENTITY ssl-observatory.prefs.anonymous "Utilize Tor para verificar os certificados de forma anônima"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Verificar certificados usando Tor para assegurar anonimato (requer Torbutton)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"Esta opção requer que o Tor e o Torbutton estejam instalados"> - -<!ENTITY ssl-observatory.prefs.asn -"Quando você vir um novo certificado, comunique ao Observatório o ISP ao qual você estiver conectado"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"Isto irá buscar e enviar o “O número do Sistema Autônomo” da sua rede. Isto nos ajudará a localizar ataques contra o HTTPS, e a determinar se nós temos observações das redes localizadas em lugares como o Irã e a Síria, onde estes ataques são relativamente mais comuns."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Mostrar uma advertência quando o Observatório detectar um certificado revogado e não identificado pelo seu navegador"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"Isso verificará certificados apresentados a listas de revogação de certificados já conhecidas. Infelizmente, não podemos garantir que poderemos assinalar todos os certificados revogados, mas se você vir uma advertência, há uma grande chance de que alguma coisa esteja errada."> - -<!ENTITY ssl-observatory.prefs.done "Pronto"> - -<!ENTITY ssl-observatory.prefs.explanation -"O HTTPS Everywhere pode usar o Observatório SSL da EFFs. Isto para realizar duas funções: (1) Enviar cópias dos certificados HTTPS ao Observatório, para nos ajudar -a detectar o "homem do meio" destes ataques e melhorar a segurança da Web; e (2) -Avisar-nos sobre possíveis conexões não-confiáveis ou ataques ao seu navegador."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"Por exemplo, quando você visitar o https://www.example.com , o certificado -recebido pelo Observatório indicará que alguém visitou esse site, mas não quem ou qual página foi consultada. Passe o mouse sobre as opções para ver mais detalhes:"> - -<!ENTITY ssl-observatory.prefs.hide "Ocultar opções avançadas"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Verificar certificados mesmo se o Tor não estiver disponível"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"Nós continuaremos tentando manter os dados anônimos, mas esta opção é menos segura"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submeter e verificar os certificados para nomes de DNS que não sejam públicos"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"A não ser que esta opção esteja ativada, o Observatório não registrará os certificados de nomes que são impossíveis de processar através do sistema DNS."> - -<!ENTITY ssl-observatory.prefs.show "Mostrar opções avançadas"> - -<!ENTITY ssl-observatory.prefs.title "Preferências do Observatório SSL"> - -<!ENTITY ssl-observatory.prefs.use "Usar este Observatório?"> -<!ENTITY ssl-observatory.warning.title "AVISO do Observatório SSL de EFF"> -<!ENTITY ssl-observatory.warning.showcert "Mostrar a cadeia de certificado"> -<!ENTITY ssl-observatory.warning.okay "Eu entendo"> -<!ENTITY ssl-observatory.warning.text "O Observatório SSL de EFF emitiu um aviso sobre o(s) certificados(s) HTTPS para este site:"> -<!ENTITY ssl-observatory.warning.defense "Se você estiver registrado neste site, é conselhável trocar a sua senha assim que você tiver uma conexão segura. (Essas advertências podem ser desabilitadas na opção "Observatório SSL" na seção Preferências da caixa de diálogo do HTTP Everywhere)."> - -<!ENTITY ssl-observatory.prefs.self_signed -"Envie e verifique certificados auto-assinados"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"Isto é recomendado; problemas de criptografia são especialmente comuns em certificados auto-assinados embutidos em equipamentos."> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ro/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ro/https-everywhere.dtd deleted file mode 100644 index 3def977..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ro/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "Despre HTTPS Oriunde"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Oriunde"> -<!ENTITY https-everywhere.about.ext_description "Criptează web-ul! Folosește automat securitatea HTTPS pe multe saituri."> -<!ENTITY https-everywhere.about.version "Versiune"> -<!ENTITY https-everywhere.about.created_by "Creat de"> -<!ENTITY https-everywhere.about.and ", și"> -<!ENTITY https-everywhere.about.librarians "Setul de reguli al bibliotecarilor"> -<!ENTITY https-everywhere.about.add_new_rule "Adaugă o nouă regulă"> -<!ENTITY https-everywhere.about.thanks "Mulțumiri către"> -<!ENTITY https-everywhere.about.many_contributors "Mulți, mulți contributori, inclusiv"> -<!ENTITY https-everywhere.about.noscript "De asemenea, porțiuni de HTTPS Everywhere se bazează pe codul de NoScript, de Giorgio Maone și alții. Suntem recunoscatori pentru munca lor excelenta!"> -<!ENTITY https-everywhere.about.contribute "Dacă îți place HTTPS Oriunde, poți considera"> -<!ENTITY https-everywhere.about.donate_tor "Să donezi către Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "ro"> -<!ENTITY https-everywhere.about.or "sau"> -<!ENTITY https-everywhere.about.donate_eff "Să donezi către EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donează la EFF"> -<!ENTITY https-everywhere.menu.about "Despre HTTPS Oriunde"> -<!ENTITY https-everywhere.menu.observatory "Preferințele pentru Observatorul SSL"> -<!ENTITY https-everywhere.menu.globalEnable "Activează HTTPS Oriunde"> -<!ENTITY https-everywhere.menu.globalDisable "Dezactivează HTTPS Oriunde"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Blochează toate cererile necriptate"> -<!ENTITY https-everywhere.menu.showCounter "Afișează contorul"> -<!ENTITY https-everywhere.menu.viewAllRules "Vezi toate regulile"> - -<!ENTITY https-everywhere.prefs.title "Preferințe HTTPS Oriunde"> -<!ENTITY https-everywhere.prefs.enable_all "Activează tot"> -<!ENTITY https-everywhere.prefs.disable_all "Dezactivează tot"> -<!ENTITY https-everywhere.prefs.reset_defaults "Revino la setările inițiale"> -<!ENTITY https-everywhere.prefs.search "Caută"> -<!ENTITY https-everywhere.prefs.site "Sait"> -<!ENTITY https-everywhere.prefs.notes "Note"> -<!ENTITY https-everywhere.prefs.list_caption "Care dintre regulile pentru redirecționarea HTTPS trebuie aplicate?"> -<!ENTITY https-everywhere.prefs.enabled "Activat"> -<!ENTITY https-everywhere.prefs.ruleset_howto "Poți învăța cum să scrii propriile seturi de reguli (pentru a adăuga suport și pentru alte saituri web)"> -<!ENTITY https-everywhere.prefs.here_link "aici"> -<!ENTITY https-everywhere.prefs.toggle "Comută"> -<!ENTITY https-everywhere.prefs.reset_default "Revino la setările inițiale"> -<!ENTITY https-everywhere.prefs.view_xml_source "Vezi sursa XML"> - -<!ENTITY https-everywhere.chrome.stable_rules "Reguli stabile"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Pentru aceste pagini se folosesc obligatoriu conexiuni criptate:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Reguli experimentale"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "Poate genera avertismente sau pierderi. Implicit dezactivat. "> -<!ENTITY https-everywhere.chrome.add_rule "Adaugă o regulă pentru acest site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Adaugă o nouă regulă pentru acest site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Folosește mereu https pentru această gazdă"> -<!ENTITY https-everywhere.chrome.host "Gazdă:"> -<!ENTITY https-everywhere.chrome.show_advanced "Arată opțiuni avansate"> -<!ENTITY https-everywhere.chrome.hide_advanced "Ascunde opțiunile avansate"> -<!ENTITY https-everywhere.chrome.rule_name "Numele regulii"> -<!ENTITY https-everywhere.chrome.regex "Regex potrivit"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirecționează la"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Renunță"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ro/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ro/https-everywhere.properties deleted file mode 100644 index 2a71e18..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ro/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Activează HTTPS Oriunde -https-everywhere.menu.globalDisable = Dezactivează HTTPS Oriunde -https-everywhere.menu.enableDisable = Activează / dezactivează reguli -https-everywhere.menu.noRules = (Nu există reguli pentru această pagină) -https-everywhere.menu.unknownRules = (Regulile pentru această pagină sunt necunoscute) -https-everywhere.toolbar.hint = HTTPS Oriunde este acum activată. O poți comuta în funcție de sait dând clic pe pictograma din bara de adrese. -https-everywhere.migration.notification0 = Pentru a implementa o remediere esențială această actualizare resetează preferințele tale pentru regulile HTTPS Oriunde la valorile lor implicite. -https-everywhere.menu.ruleset-tests = Rulează testele pentru seturile de reguli ale HTTPS Oriunde diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ro/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ro/ssl-observatory.dtd deleted file mode 100644 index eea1892..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ro/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Detalii și informații despre confidențialitate"> -<!ENTITY ssl-observatory.popup.later "Întreabă-mă mai târziu"> -<!ENTITY ssl-observatory.popup.no "Nu"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Oriunde poate detecta atacurile -asupra navigatorului tău trimițând certificatele primite de tine la -Observator. Activezi asta?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Poate HTTPS Oriunde să folosească Observatorul SSL?"> - -<!ENTITY ssl-observatory.popup.yes "Da"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"Este sigur să activezi asta, doar dacă nu folosești o -o rețea de companie intruzivă:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Sigur, doar dacă nu ești într-o rețea de companie cu nume de servere intranet secrete:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Trimite și verifică certificatele semnate de CA rădăcină ne-standard"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"Este sigur (și o idee bună) să activezi această opțiune, doar dacă nu folosești o rețea de companie intruzivă sau programul antivirus Kaspersky care monitorizează navigarea ta printr-un proxy TLS și o Autoritate de Certificare rădăcină privată. Dacă se activează într-o astfel de rețea, această opțiune poate publica dovezi despre domeniile https:// vizitate prin acel proxy, datorită certificatelor unice pe care le produce. Deci implicit nu este activată."> - -<!ENTITY ssl-observatory.prefs.anonymous "Verifică certificatele folosind Tor pentru anonimitate"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Verifică certificatele folosind Tor pentru anonimitate (necesită Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"Această opțiune necesită ca Tor să fie instalat și să ruleze"> - -<!ENTITY ssl-observatory.prefs.asn -"Când vezi un certificat nou spune Observatorului la ce ISP ești conectat"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"Asta va obține și va trimite "numărul de sistem autonom" al rețelei tale. Asta ne va ajuta să localizăm atacurile împotriva HTTPS și să determinăm dacă avem observații de la rețelele din locuri precum Iran și Siria unde atacurile sunt comparativ comune."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Afiseaza o avertizare cand Observatory detecteaza un certificat revocat ce nu a fost detectat de browser-ul tau."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"Acesta va verifica certificate prezentate impotriva Listelor de Certificate Revocate cunoscute. Din pacate, nu putem garanta ca vom semnala toate certificatele revocate, dar daca vezi o avertizare, exista o sansa buna ca ceva nu este bine."> - -<!ENTITY ssl-observatory.prefs.done "Gata"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Oriunde poate folosi Observatorul SSL al EFF. Asta face două lucruri: (1) -trimite copii ale certificatelor HTTPS către Observator pentru a ne ajuta -să detectăm atacurile gen 'omul din mijloc' și să îmbunătățim securitatea Web; și (2) -ne permite să te avertizăm despre conexiunile nesecurizate și atacurile asupra navigatorului tău."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"De exemplu, când vizitezi https://www.something.com, certificatul -primit de către Observator va arăta că cineva a vizitat -www.something.com, dar nu și cine a vizitat saitul, sau ce pagină anume -a vizionat. Menține mausul deasupra opțiunilor pentru mai multe detalii:"> - -<!ENTITY ssl-observatory.prefs.hide "Ascunde opțiunile avansate"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Verifică certificatele chiar dacă Tor nu este disponibil"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"Vom încerca în continuare să menținem anonime datele dar această opțiune este mai puțin sigură"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Trimite și verifică certificatele pentru numele DNS ne-publice"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Dacă această opțiune nu este activată Observatorul nu va înregistra certificatele pentru numele pe care nu le poate rezolva prin sistemul DNS."> - -<!ENTITY ssl-observatory.prefs.show "Arată opțiunile avansate"> - -<!ENTITY ssl-observatory.prefs.title "Preferințe pentru Observatorul SSL"> - -<!ENTITY ssl-observatory.prefs.use "Folosește Observatorul?"> -<!ENTITY ssl-observatory.warning.title "ATENȚIONARE de la Observatorul SSL al EFF"> -<!ENTITY ssl-observatory.warning.showcert "Arată lanțul certificatului"> -<!ENTITY ssl-observatory.warning.okay "Înțeleg"> -<!ENTITY ssl-observatory.warning.text "Observatorul SSL al EFF a emis o atenționare despre certificatul HTTPS al acestui site:"> -<!ENTITY ssl-observatory.warning.defense "Daca esti autentificat pe acest site, te sfatuim sa schimbi parola de indata ce ai o conexiune sigura. (Aceste avertizari pot fi dezactivate in tab-ul "SSL Observatory" in fereastra de preferinte HTTPS Everywhere.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Trimite și verifică certificatele auto-semnate"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"Este recomandat; problemele criptografice sunt comune în dispozitivele încorporate auto-semnate"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ru/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ru/https-everywhere.dtd deleted file mode 100644 index a270cb3..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ru/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "О HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Зашифруйте сеть! Автоматически переключайтесь на безопасный протокол HTTPS там, где это возможно."> -<!ENTITY https-everywhere.about.version "Версия"> -<!ENTITY https-everywhere.about.created_by "Авторы"> -<!ENTITY https-everywhere.about.and ", и"> -<!ENTITY https-everywhere.about.librarians "Хранители правил"> -<!ENTITY https-everywhere.about.add_new_rule "Добавить новое правило"> -<!ENTITY https-everywhere.about.thanks "Благодарности"> -<!ENTITY https-everywhere.about.many_contributors "Многим участникам, включая"> -<!ENTITY https-everywhere.about.noscript "Кроме того, фрагменты HTTPS Everywhere основаны на коде, взятом из NoScript разработчика Giorgio Maone и других авторов. Мы благодарны им за отличную работу!"> -<!ENTITY https-everywhere.about.contribute "Если вам нравится HTTPS Everywhere, подумайте о"> -<!ENTITY https-everywhere.about.donate_tor "пожертвовании Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "ru"> -<!ENTITY https-everywhere.about.or "или"> -<!ENTITY https-everywhere.about.donate_eff "пожертвовании EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Поддержать EFF"> -<!ENTITY https-everywhere.menu.about "О HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "Настройки SSL Observatory"> -<!ENTITY https-everywhere.menu.globalEnable "Включить HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Выключить HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Блокировать все незашифрованные запросы"> -<!ENTITY https-everywhere.menu.showCounter "Показывать счётчик"> -<!ENTITY https-everywhere.menu.viewAllRules "Посмотреть все правила"> - -<!ENTITY https-everywhere.prefs.title "Настройки HTTPS Everywhere"> -<!ENTITY https-everywhere.prefs.enable_all "Включить всё"> -<!ENTITY https-everywhere.prefs.disable_all "Выключить всё"> -<!ENTITY https-everywhere.prefs.reset_defaults "По умолчанию"> -<!ENTITY https-everywhere.prefs.search "Поиск"> -<!ENTITY https-everywhere.prefs.site "Сайт"> -<!ENTITY https-everywhere.prefs.notes "Примечания"> -<!ENTITY https-everywhere.prefs.list_caption "Какие правила перенаправлений следует использовать?"> -<!ENTITY https-everywhere.prefs.enabled "Включено"> -<!ENTITY https-everywhere.prefs.ruleset_howto "Вы можете научиться писать собственные правила (добавить поддержку для других сайтов)"> -<!ENTITY https-everywhere.prefs.here_link "здесь"> -<!ENTITY https-everywhere.prefs.toggle "Переключить"> -<!ENTITY https-everywhere.prefs.reset_default "Сбросить к значению по умолчанию"> -<!ENTITY https-everywhere.prefs.view_xml_source "Просмотр исходника XML"> - -<!ENTITY https-everywhere.chrome.stable_rules "Стабильные правила"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Принудительное шифрование на этих сайтах:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Экспериментальные правила"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "Может вызвать предупреждения или поломку. Отключено по умолчанию."> -<!ENTITY https-everywhere.chrome.add_rule "Добавить правило для этого сайта"> -<!ENTITY https-everywhere.chrome.add_new_rule "Добавить новое правило для этого сайта"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Всегда использовать https для этого хоста"> -<!ENTITY https-everywhere.chrome.host "Хост:"> -<!ENTITY https-everywhere.chrome.show_advanced "Показать расширенные"> -<!ENTITY https-everywhere.chrome.hide_advanced "Скрыть расширенные"> -<!ENTITY https-everywhere.chrome.rule_name "Имя правила"> -<!ENTITY https-everywhere.chrome.regex "Соответствие regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Перенаправление на"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Отмена"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ru/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ru/https-everywhere.properties deleted file mode 100644 index 5990746..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ru/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Включить HTTPS Everywhere -https-everywhere.menu.globalDisable = Выключить HTTPS Everywhere -https-everywhere.menu.enableDisable = Включить / Выключить правила -https-everywhere.menu.noRules = Нет правил для этой страницы -https-everywhere.menu.unknownRules = Правила для этой страницы неизвестны -https-everywhere.toolbar.hint = Теперь HTTPS Everywhere активен. Вы можете переключать его для каждого сайта кликая по значку. -https-everywhere.migration.notification0 = По причине установки критических обновлений, данное обновление сбрасывает настройки правил HTTPS Everywhere к значениям по умолчанию. -https-everywhere.menu.ruleset-tests = Запустить тесты правил HTTPS Everywhere diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ru/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ru/ssl-observatory.dtd deleted file mode 100644 index 6a54703..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ru/ssl-observatory.dtd +++ /dev/null @@ -1,97 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Подробная информация и сведения о конфиденциальности"> -<!ENTITY ssl-observatory.popup.later "Спросить позже"> -<!ENTITY ssl-observatory.popup.no "Нет"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere может распознавать атаки на ваш браузер, -путём отправки получаемых сертификатов в SSL Observatory. -Включить данную опцию?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Должен ли HTTPS Everywhere использовать SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Да"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"Безопасно, если вы не используете очень навязчивую корпоративную сеть"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Безопасно, если вы не используете корпоративную сеть с секретными именами серверов"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Отправить и проверить сертификаты, подписанные нестандартными корневыми центрами сертификации"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"Безопасно, если вы не используете навязчивую корпоративную сеть или Антивирус Касперского, который следит за вашей работой в сети с помощью TLS прокси и частного корневого центра сертификации. Если она будет включена в такой сети, то может обнародовать сведения о том, какие домены https:// были посещены через этот прокси, из-за по уникальным сертификатам, которые он будет издавать. Поэтому мы оставили её выключенной по умолчанию."> - -<!ENTITY ssl-observatory.prefs.anonymous "Проверить сертификаты используемые Tor для анонимности"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Проверить сертификаты используемые Tor для анонимности (требуется Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"Эта опция требует наличия установленного и включенного Tor."> - -<!ENTITY ssl-observatory.prefs.asn -"При получении нового сертификата, сообщить SSL Observatory к какому провайдеру вы подключены"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"Будет получать и отправлять "Номер Автономной Системы" -вашей сети. Это поможет нам локализовать атаки против HTTPS -и определить наличие наблюдений для сетей в таких местах как -Иран и Сирия, где атаки сравнительно часты."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Показать предупреждение, когда SSL Observatory обнаруживает отозванный сертификат, отсутствующий в вашем браузере"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"Сертификаты будут сверяться со списком известных отозванных сертификатов. К сожалению, мы не можем гарантировать, что будем помечать каждый отозванный сертификат, но если вы видите предупреждение, скорее всего, что-то не так."> - -<!ENTITY ssl-observatory.prefs.done "Готово"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere может использовать SSL Observatory. Он: (1) отправляет копии сертификатов в SSL Observatory, что бы помочь нам определить атаки 'человек посередине' и улучшить безопасность Веб; (2) позволяет нам предупреждать вас о небезопасных соединениях или атаках на ваш браузер."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"Например, когда вы заходите на https://www.something.com, сертификат полученный SSL Observatory будет означать что кто-то посетил www.something.com, но не кто именно его посетил, или какую конкретную страницу он просматривал. Наведите курсор на опции для более подробной информации."> - -<!ENTITY ssl-observatory.prefs.hide "Скрыть дополнительные опции"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Проверять сертификаты даже если Tor недоступен"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"Мы по-прежнему стараемся сохранить ваши данные анонимными, но эта опция менее безопасна."> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Отправить и проверить сертификаты для непубличных DNS имён"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Если данная опция выключена, SSL Observatory не будет регистрировать сертификаты для имён, которые он не может разрешить через DNS."> - -<!ENTITY ssl-observatory.prefs.show "Показать дополнительные опции"> - -<!ENTITY ssl-observatory.prefs.title "Настройки SSL Observatory"> - -<!ENTITY ssl-observatory.prefs.use "Использовать SSL Observatory?"> -<!ENTITY ssl-observatory.warning.title "ПРЕДУПРЕЖДЕНИЕ от SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Показать цепочку сертификатов"> -<!ENTITY ssl-observatory.warning.okay "Я понимаю"> -<!ENTITY ssl-observatory.warning.text "SSL Observatory выдал предупреждение для сертификат(-а/-ов) данного сайта:"> -<!ENTITY ssl-observatory.warning.defense "Если вы залогинились на этом сайте, может быть целесообразным поменять пароль, как только вы переключитесь на безопасное соединение (эти предупреждения можно отключить во вкладке "SSL Observatory" в окне настроек HTTPS Everywhere)."> - -<!ENTITY ssl-observatory.prefs.self_signed -"Отправить и проверить самоподписанные сертификаты"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"Рекомендуется. Криптографические проблемы особенно распространены в самоподписанных сертификатах."> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ru@petr1708/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ru@petr1708/https-everywhere.dtd deleted file mode 100644 index ce8adae..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ru@petr1708/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Версия"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Поиск"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancel"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ru@petr1708/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ru@petr1708/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ru@petr1708/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ru@petr1708/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ru@petr1708/ssl-observatory.dtd deleted file mode 100644 index 6afd78d..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ru@petr1708/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "Нѣтъ"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Да"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sa/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sa/https-everywhere.dtd deleted file mode 100644 index 2ac51cd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sa/https-everywhere.dtd +++ /dev/null @@ -1,56 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockHttpRequests "Block all HTTP requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancel"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sa/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sa/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sa/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sa/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sa/ssl-observatory.dtd deleted file mode 100644 index 69f1cfd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sa/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/scn/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/scn/https-everywhere.dtd deleted file mode 100644 index 93d66ce..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/scn/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancel"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/scn/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/scn/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/scn/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/scn/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/scn/ssl-observatory.dtd deleted file mode 100644 index 69f1cfd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/scn/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sco/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sco/https-everywhere.dtd deleted file mode 100644 index 93d66ce..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sco/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancel"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sco/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sco/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sco/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sco/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sco/ssl-observatory.dtd deleted file mode 100644 index 69f1cfd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sco/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/si/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/si/https-everywhere.dtd deleted file mode 100644 index 2ac51cd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/si/https-everywhere.dtd +++ /dev/null @@ -1,56 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockHttpRequests "Block all HTTP requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancel"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/si/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/si/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/si/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/si/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/si/ssl-observatory.dtd deleted file mode 100644 index 69f1cfd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/si/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/si_LK/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/si_LK/https-everywhere.dtd deleted file mode 100644 index 2006d86..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/si_LK/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "HTTPS Everywhere පිලිබඳව"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "බොහෝ වෙබ් අඩවි සඳහා HTTPS ආරක්ෂාව ස්වයංක්රීයව පාවිච්චි කරන්න."> -<!ENTITY https-everywhere.about.version "සංස්කරණය"> -<!ENTITY https-everywhere.about.created_by "නිර්මිත"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "ස්තුතිය"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "HTTPS Everywhere පිලිබඳව ඔබ කැමතිනම් මේවා සලකා බැලිය යුතුය"> -<!ENTITY https-everywhere.about.donate_tor "Tor වලට ආධාර කිරීම"> -<!ENTITY https-everywhere.about.tor_lang_code "ඉංග්රීසි"> -<!ENTITY https-everywhere.about.or "හෝ"> -<!ENTITY https-everywhere.about.donate_eff " EFF වලට ආධාර කරන්න"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "HTTPS Everywhere පිලිබඳව"> -<!ENTITY https-everywhere.menu.observatory "SSL නිරික්ෂණාගාර මනාප "> -<!ENTITY https-everywhere.menu.globalEnable "HTTPS Everywhere ක්රියාකරවන්න"> -<!ENTITY https-everywhere.menu.globalDisable "HTTPS Everywhere ක්රියාවිරහිත කරවන්න"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere මනාප "> -<!ENTITY https-everywhere.prefs.enable_all "සියල්ල සබල කරන්න "> -<!ENTITY https-everywhere.prefs.disable_all "සියල්ල අබල කරන්න "> -<!ENTITY https-everywhere.prefs.reset_defaults "යථා තත්වයට පත් කරන්න"> -<!ENTITY https-everywhere.prefs.search "සොයන්න"> -<!ENTITY https-everywhere.prefs.site "අඩවිය"> -<!ENTITY https-everywhere.prefs.notes "සටහන්"> -<!ENTITY https-everywhere.prefs.list_caption "කුමන HTTPS හැරවුම් කොන්දේසිය තෝරගන්නද ? "> -<!ENTITY https-everywhere.prefs.enabled "සබල කරන ලදී "> -<!ENTITY https-everywhere.prefs.ruleset_howto "ඔබගේ rulesets ලියන ආකාරය පිළිබද ඔබට ඉගෙනගත හැක(අනෙකුත් වෙබ් අඩවි සදහා සහය එකතු කිරීමට) "> -<!ENTITY https-everywhere.prefs.here_link "මෙහි "> -<!ENTITY https-everywhere.prefs.toggle "ටොගලය "> -<!ENTITY https-everywhere.prefs.reset_default "යථා තත්වයට පත් කරන්න"> -<!ENTITY https-everywhere.prefs.view_xml_source "XML කේත පෙන්වන්න "> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "අවලංගු කරන්න"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/si_LK/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/si_LK/https-everywhere.properties deleted file mode 100644 index 7cdeccb..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/si_LK/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = HTTPS Everywhere සබල කරවන්න -https-everywhere.menu.globalDisable = HTTPS Everywhere අබල කරවන්න -https-everywhere.menu.enableDisable = සබල/ දුබල කරවීමේ නීති -https-everywhere.menu.noRules = (මෙම පිටුව සදහා නීති කිසිවක් නැත) -https-everywhere.menu.unknownRules = (මෙම පිටුව සම්බන්ද නීති පිළිබද සදහනක් නැත) -https-everywhere.toolbar.hint = HTTPS Everywhere දැන් ක්රියාත්මකයි. ඔබට එය දැන් යොමු තීරුවේ ඇති නිරූපකය ඔබමින් අඩවියෙන් අඩවියට ටොගල් කල හැක. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/si_LK/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/si_LK/ssl-observatory.dtd deleted file mode 100644 index 6d2f67d..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/si_LK/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "විස්තර හා පෞද්ගලික තොරතුරු "> -<!ENTITY ssl-observatory.popup.later "පසුව මගෙන් අසන්න."> -<!ENTITY ssl-observatory.popup.no "නැත"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere ඔබේ බ්රව්සරයට එරෙහිව ඇතිවන ආක්රමණ -හදුනාගන්නා අතර, ඔබට ලැබෙන සහතික නිරික්ෂණාගාරයට යවයි. -මෙම ක්රියාවලිය සිදුකරනවාට ඔබ කැමතිද?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"HTTPS Everywhere SSL නිරික්ෂණාගාරය භාවිතා කල යුතුද?"> - -<!ENTITY ssl-observatory.popup.yes "ඔව්"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"ආගන්තුක සංයුක්ත ජාලයක් භාවිතා කරන විට හැරෙන්න -මෙය සබල කිරීම සුරක්ෂිත වේ:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"ඔබ රහසිගත අන්තඃජාල සේවාදායක නමක් සමග සංයුක්ත ජාලයක් භාවිතා නොකරන්නේ නම් ඔබ සුරක්ෂිතය."> - -<!ENTITY ssl-observatory.prefs.alt_roots -"යොමුකරීමෙන් පසු අසම්මත මුල සහතික බලධාරීන් අත්සන් කල සහතික පරික්ෂා කරන්න."> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"ආගන්තුක සංයුක්ත ජාලයක් හෝ TLS proxy හා පෞද්ගලික සහතික බලධාරියා විසින් ඔබේ පිරික්සුම් නිරීක්ෂණය කරන ලබන Kaspersky ප්රතිවයිරස මෘදුකාංගයක් හෝ භාවිතා කරන විට මෙම විකල්පය සබල කිරීම සුරක්ෂිත නොවේ (එමෙන්ම මෙය අනුවණ අදහසකි). මෙවැනි ජාලයක මෙම විකල්පය සබල කර තැබුවහොත් එම proxy යොදා ගිය https:// වසම් පිළිබද සාක්ෂි හෙළිවිය හැක. ඒ නිසා මෙම විකල්පය සාමාන්යයෙන් අබල කර ඇත."> - -<!ENTITY ssl-observatory.prefs.anonymous "නිර්නාමිකතාව සදහා Tor යොදාගන්නා සහතික බලන්න."> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"නිර්නාමිකතාව උදෙසා Tor භාවිතා කරන (Tor අවශ්ය වන) සහතික පරික්ෂා කරන්න"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"මෙම විකල්පය සදහා Tor ස්ථාපනය කර ක්රියාත්මක කල යුතුයි."> - -<!ENTITY ssl-observatory.prefs.asn -"ඔබ නව සහතිකයක් දකිනවිට නිරික්ෂනාගාරයට ඔබ සම්බන්ධ වී ඇති ISPය පවසන්න."> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"මෙමගින් ඔබේ ජාලයේ "ස්වතන්ත්ර පද්ධති අංකය" අමුණා යවයි. මෙමගින් අපට HTTPS වලට විරුද්ධව හටගන්නා ආක්රමණ හදුනාගැනීමටත්, අපගේ ජාලය කවුරුන් හෝ නිරීක්ෂණය කරන්නේ දැයි දැනගැනීමටත් උපකාරී වේ. සිරියාව හා ඉරානය වැනි රටවල්වල මෙවැනි ආක්රමණ ඉතා සුලබ වේ."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "කාර්යය ඉටු කරන ලදී"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere මගින් EFF's SSL නිරික්ෂණාගාරය භාවිතා කල හැක. මෙමගින් කර්තව්යයන් 2 ක් සිදුවේ: (1) -HTTPS සහතිකවල අනුපිටපත් නිරික්ෂණාගාරයට යැවීමෙන්, -'man in the middle' ආක්රමණය හදුනාගැනීමට හා ජාල ආරක්ෂාව සදහා උපකාරී වේ; තවද (2) -මෙමගින් ඔබට අනාරක්ෂිත සබැදියා හා ඔබේ බ්රව්සරයට එල්ලවන ආක්රමණය පිළිබද අනතුරු අගවයි."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"උදාහරණයක් ලෙස ඔබ https://www.something.com නම් වෙබ් අඩවියට ඇතුළු වූ විට, -නිරික්ෂණාගාරයට ලැබෙන සහතිකයෙන් යම් පුද්ගලයෙක් www.something.com වෙබ් අඩවියට ප්රවේශ වූ බව සදහන් කෙරුනද, - මෙම වෙබ් අඩවියට ප්රවේශ කල පුද්ගලයා හෝ එම පුද්ගලයා නරඹන ලද වෙබ් පිටුවන් පිළිබද තොරතුරු ලැබෙන්නේ නැත. -වැඩිපුර විස්තර දැනගැනීමට මෙම විකල්ප මත මුසකය තබන්න:"> - -<!ENTITY ssl-observatory.prefs.hide "ප්රගමන විකල්ප සගවන්න."> - -<!ENTITY ssl-observatory.prefs.nonanon -"Tor උපයෝජ්ය නොවන අවස්ථා වලදී ද සහතික පරික්ෂා කරන්න."> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"මෙම විකල්පය එතරම් සුරක්ෂිත නොවන නමුදු, ඔබේ දත්ත නිර්නාමිකව තබාගැනීමට අප උත්සහ කරමු"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"යොමුකිරීමෙන් පසු පොදු -නොවන DNS නම් සදහා සහතික පරික්ෂා කරන්න "> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"මෙම විකල්පය තෝරාගෙන නොමැති නම්, නිරික්ෂණාගාරය මගින් DNS නාම නිශ්චය කරගැනීමට නොහැකි සහතික සටහන් කරගන්නේ නැත. "> - -<!ENTITY ssl-observatory.prefs.show "ප්රගමන විකල්පයන් පෙන්වන්න "> - -<!ENTITY ssl-observatory.prefs.title "SSL නිරික්ෂණාගාර මනාප "> - -<!ENTITY ssl-observatory.prefs.use "නිරික්ෂණාගාරය භාවිතා කරයි ද?"> -<!ENTITY ssl-observatory.warning.title "EFF හී SSL නිරික්ෂණාගාරය අවවාදයක් නිකුත් කරයි "> -<!ENTITY ssl-observatory.warning.showcert "සහතික දාමය පෙන්වන්න "> -<!ENTITY ssl-observatory.warning.okay "මම වටහාගතිමි"> -<!ENTITY ssl-observatory.warning.text "EFF හී SSL නිරික්ෂණාගාරය මෙම වෙබ් අඩවියෙහි HTTPS සහතික(ය) පිළිබද අවවාදයක් නිකුත් කර ඇත:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"යොමු කිරීමෙන් පසු ස්වයං-අත්සන් යොදන ලද සහතික පරික්ෂා කරන්න."> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"මෙය නිර්දේශිතයි; සංකේතන ගැටලු ස්වයං-අත්සන් කරන ලද උපක්රමවල බහුලය."> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sk/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sk/https-everywhere.dtd deleted file mode 100644 index 828d5e4..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sk/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "O HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Zašifruj Web! Automatické použitie HTTPS zabezpečenia na mnohých stránkach."> -<!ENTITY https-everywhere.about.version "Verzia"> -<!ENTITY https-everywhere.about.created_by "Autori"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Poďakovanie"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "Ak sa Vám páči HTTPS Everywhere, môžno by ste mohli"> -<!ENTITY https-everywhere.about.donate_tor "Prispieť na Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "sk"> -<!ENTITY https-everywhere.about.or "alebo"> -<!ENTITY https-everywhere.about.donate_eff "Prispieť na EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "O HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "Nastavenia SSL Observatory"> -<!ENTITY https-everywhere.menu.globalEnable "Povoliť HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Zakázať HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Zobraziť počítadlo"> -<!ENTITY https-everywhere.menu.viewAllRules "Zobraziť všetky pravidlá"> - -<!ENTITY https-everywhere.prefs.title "Nastavenia HTTPS Everywhere"> -<!ENTITY https-everywhere.prefs.enable_all "Povoliť všetko"> -<!ENTITY https-everywhere.prefs.disable_all "Zakázať všetko"> -<!ENTITY https-everywhere.prefs.reset_defaults "Obnoviť predvolené"> -<!ENTITY https-everywhere.prefs.search "Hľadať"> -<!ENTITY https-everywhere.prefs.site "Stránka"> -<!ENTITY https-everywhere.prefs.notes "Poznámky"> -<!ENTITY https-everywhere.prefs.list_caption "Ktoré pravidlá pre HTTPS presmerovanie mám použiť?"> -<!ENTITY https-everywhere.prefs.enabled "Povolené"> -<!ENTITY https-everywhere.prefs.ruleset_howto "Môžete sa naučiť ako napísať svoje vlastné pravidlá (pridať podporu pre ďalšie webové stránky)"> -<!ENTITY https-everywhere.prefs.here_link "tu"> -<!ENTITY https-everywhere.prefs.toggle "Prepnúť"> -<!ENTITY https-everywhere.prefs.reset_default "Obnoviť predvolené"> -<!ENTITY https-everywhere.prefs.view_xml_source "Zobraziť zdroj XML"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Zrušiť"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sk/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sk/https-everywhere.properties deleted file mode 100644 index c57fd1c..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sk/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Povoliť HTTPS Všade -https-everywhere.menu.globalDisable = Zakázať HTTPS Všade -https-everywhere.menu.enableDisable = Povoliť / Zakázať Pravidlá -https-everywhere.menu.noRules = (Pre Túto Stránku Neexistujú Žiadne Pravidlá) -https-everywhere.menu.unknownRules = (Pravidlá Pre Túto Stránku Sú Neznáme) -https-everywhere.toolbar.hint = HTTPS Všade je práve aktívne. Môžete ho zapnúť na každej stránke kliknutím na ikonu v adresnom riadku. -https-everywhere.migration.notification0 = Aby bolo možné realizovať nevyhnutné opravy, táto aktualizácia reštartuje Vaše pravidlo HTTPS Všade na pôvodné hodnoty. -https-everywhere.menu.ruleset-tests = Spustiť HTTPS Everywhere Ruleset Testy diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sk/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sk/ssl-observatory.dtd deleted file mode 100644 index b6299c3..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sk/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Podrobnosti a Informácie o súkromí"> -<!ENTITY ssl-observatory.popup.later "Opýtajte sa ma neskôr"> -<!ENTITY ssl-observatory.popup.no "Nie"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere dokáže detekovať útoky -na Váš prehliadač tak, že pošle certifikát, ktorý ste dostali do -Observatory. Zapnúť túto funkciu?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Má HTTPS Everywhere použiť SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Áno"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"Použitie tejto funkcie je bezpečné, pokiaľ nepoužívate -firemnú sieť:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Bezpečné, pokiaľ nepoužívate firemnú sieť s menami utajených intranetových serverov:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Pošli a skontroluj certifikáty podpísané neštandardnou koreňovou certifikačnou autoritou"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"Povoliť túto možnosť je bezpečné (a aj dobrý nápad) pokiaľ nepoužívate firemnú sieť alebo antivírový softvér Kaspersky, ktorý monitoruje Vaše prehliadanie s TLS proxy a súkromné koreňové certifikačné autority. Ak povolíte túto možnosť na takejto sieti, tak pomocou unikátnych certifikátov sa môžu uverejniť dôkazy o tom aké https:// domény ste navštívili cez túto proxy. Tak sme ju nechali v predvolenom nastavení vypnutú."> - -<!ENTITY ssl-observatory.prefs.anonymous "Skontrolovať certifikát pomocou Tor kvôli anonymite"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Skontrolovať certifikát pomocou Tor kvôli anonymite (vyžaduje Torbutton)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"Aby ste mohli použiť toto nastavenie, musíte mať nainštalovaný Tor a Torbutton"> - -<!ENTITY ssl-observatory.prefs.asn -"Ak zistíš nový certifikát, povedz Observatory, ku ktorému poskytovateľovi internetového pripojenia si pripojený"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"Toto stiahne a pošle "Autonomous System Number" Vašej siete. Pomôže nám to lokalizovať útok proti HTTPS a určiť či máme pozorovania zo sietí z miest ako je Iran a Syria, kde sú útoky pomerne časté."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Zobraziť varovanie keď Observatory zistí odvolaný certifikát nezachytený vašim prehliadačom"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"Toto skontroluje predkladaný certifikát oproti zoznamu známych odvolaných certifikátov - known Certificate Revocation List. Žiaľ nemôžeme zaručiť že označime každý odvolaný certifikáť ale ak uvidíte varovanie, máte dobrú šancu že je niečo nesprávne."> - -<!ENTITY ssl-observatory.prefs.done "Hotovo"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere môže používať SSL Observatory od EFF. Toto spraví dve veci: (1) -pošle kópie HTTPS certifikátov do Observatory, aby nám pomohli detekovať -'man in the middle' útoky a zdokonaľovať bezpečnosť na Webe; a (2) -umožní nám varovať Vás o nebezpečných pripojeniach alebo útokoch na Váš prehliadač."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"Napríklad, ak navštívite https://www.niečo.com, certifikát prijatý pomocou -Observatory indikuje, že niekto navštívil www.niečo.com, ale nie kto ju navštívil -alebo čo konkrétne pozeral. Prejdite kurzorom nad jednotlivé možnosti -pre ďalšie podrobnosti."> - -<!ENTITY ssl-observatory.prefs.hide "Skryť pokročilé možnosti"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Skontrolujte certifikát, aj keď Tor nebude k dispozícií"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"Pokúsime sa aj naďalej udržať dáta anonymné, lenže táto možnosť je menej bezpečná"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Pošli a skontroluj certifikáty pre neverejné názvy DNS"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Ak je táto voľba aktívna, tak Observatory nebude zaznamenávať certifikáty pre názvy, ktoré nedokáže rozoznať pomocou systému DNS."> - -<!ENTITY ssl-observatory.prefs.show "Ukázať pokročilé možnosti"> - -<!ENTITY ssl-observatory.prefs.title "Nastavenia SSL Observatory"> - -<!ENTITY ssl-observatory.prefs.use "Použiť Observatory?"> -<!ENTITY ssl-observatory.warning.title "VAROVANIE od EFF SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Zobraziť reťaz certifikátov"> -<!ENTITY ssl-observatory.warning.okay "Porozumel som"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory vydalo varovanie o HTTPS certifikáte(certifikátoch) pre túto stránku:"> -<!ENTITY ssl-observatory.warning.defense "Ak ste prihlásený na tejto stránke, môže byť rozumné zmeniť si heslo keď raz budete mať bezpečné pripojenie. (Tieto varovania sa dajú vypnúť v "SSL Observatory" záložke dialógu HTTPS Everywhere predvoľby.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Posielať a preverovať certifikáty podpísané samé sebou"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"Toto sa odporúča; kryptografické problémy sú veľmi časté u vstavaných zariadení, ktoré sú podpísané samé sebou"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sk_SK/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sk_SK/https-everywhere.dtd deleted file mode 100644 index 26f0c62..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sk_SK/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "O HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Zašifrujte web! Automaticky používajte bezpečnosť HTTPS na mnohých stránkach."> -<!ENTITY https-everywhere.about.version "Verzia"> -<!ENTITY https-everywhere.about.created_by "Vytvorili"> -<!ENTITY https-everywhere.about.and ", a"> -<!ENTITY https-everywhere.about.librarians "Tvorcovia sád pravidiel"> -<!ENTITY https-everywhere.about.add_new_rule "Pridať nové pravidlo"> -<!ENTITY https-everywhere.about.thanks "Poďakovanie"> -<!ENTITY https-everywhere.about.many_contributors "Veľa, veľa prispievateľov, vrátane"> -<!ENTITY https-everywhere.about.noscript "Taktiež, časti HTTPS Everywhere sú založené na kóde z NoScript od Giorgia Maoneho a ďalších. Sme vďační za ich excelentnú prácu!"> -<!ENTITY https-everywhere.about.contribute "Ak sa vám HTTPS Everywhere páči, zvážte"> -<!ENTITY https-everywhere.about.donate_tor "Dar pre Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "sk"> -<!ENTITY https-everywhere.about.or "alebo"> -<!ENTITY https-everywhere.about.donate_eff "Dar pre EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Darujte EFF"> -<!ENTITY https-everywhere.menu.about "O HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "Nastavenia SSL Observatory"> -<!ENTITY https-everywhere.menu.globalEnable "Zapnúť HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Vypnúť HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Blokovať všetky nešifrované požiadavky"> -<!ENTITY https-everywhere.menu.showCounter "Zobraziť počítadlo"> -<!ENTITY https-everywhere.menu.viewAllRules "Zobraziť všetky pravidlá"> - -<!ENTITY https-everywhere.prefs.title "Nastavenia HTTPS Everywhere"> -<!ENTITY https-everywhere.prefs.enable_all "Zapnúť všetko"> -<!ENTITY https-everywhere.prefs.disable_all "Vypnúť všetko"> -<!ENTITY https-everywhere.prefs.reset_defaults "Obnoviť pôvodné"> -<!ENTITY https-everywhere.prefs.search "Hľadať"> -<!ENTITY https-everywhere.prefs.site "Stránka"> -<!ENTITY https-everywhere.prefs.notes "Poznámky"> -<!ENTITY https-everywhere.prefs.list_caption "Ktoré pravidlá pre presmerovanie HTTPS uplatniť?"> -<!ENTITY https-everywhere.prefs.enabled "Zapnuté"> -<!ENTITY https-everywhere.prefs.ruleset_howto "Môžete sa naučiť, ako písať svoje vlastné sady pravidiel (pre pridanie podpory pre ďalšie stránky)"> -<!ENTITY https-everywhere.prefs.here_link "tu"> -<!ENTITY https-everywhere.prefs.toggle "Prepnúť"> -<!ENTITY https-everywhere.prefs.reset_default "Obnoviť pôvodné"> -<!ENTITY https-everywhere.prefs.view_xml_source "Zobraziť XML zdroj"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stabilné pravidlá"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Vynútiť šifrované spojenie pre tieto webové stránky:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimentálne pravidlá"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "Môže spôsobiť upozornenie alebo chyby. Zakázané vo východzom nastavení."> -<!ENTITY https-everywhere.chrome.add_rule "Pridať pravidlo pre túto stránku."> -<!ENTITY https-everywhere.chrome.add_new_rule "Pridať nové pravidlo pre túto stránku."> -<!ENTITY https-everywhere.chrome.always_https_for_host "Vždy používať https pre tohto hostiteľa."> -<!ENTITY https-everywhere.chrome.host "Hostiteľ:"> -<!ENTITY https-everywhere.chrome.show_advanced "Zobraziť pokročilé"> -<!ENTITY https-everywhere.chrome.hide_advanced "Skryť pokročilé"> -<!ENTITY https-everywhere.chrome.rule_name "Názov pravidla"> -<!ENTITY https-everywhere.chrome.regex "Vyhovujúce regulárne výrazy"> -<!ENTITY https-everywhere.chrome.redirect_to "Presmerovať do"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Zrušiť"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sk_SK/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sk_SK/https-everywhere.properties deleted file mode 100644 index b8f2aa7..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sk_SK/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Zapnúť HTTPS Everywhere -https-everywhere.menu.globalDisable = Vypnúť HTTPS Everywhere -https-everywhere.menu.enableDisable = Pravidlá pre zapínanie / vypínanie -https-everywhere.menu.noRules = (Žiadne pravidlá pre stránku) -https-everywhere.menu.unknownRules = (Pravidla pre stránku neznáme) -https-everywhere.toolbar.hint = HTTPS Everywhere je teraz aktívne. Na každej navštívenej stránke ho môžete zapnúť a vypnúť kliknutím na ikonu v adresovom riadku. -https-everywhere.migration.notification0 = Aby bolo možné uplatniť kritickú opravu, táto aktualizácia obnoví vaše nastavenia pravidiel HTTPS Everywhere do pôvodných hodnôt. -https-everywhere.menu.ruleset-tests = Spustiť testy pre sadu pravidiel HTTPS Everywhere diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sk_SK/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sk_SK/ssl-observatory.dtd deleted file mode 100644 index 99b333f..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sk_SK/ssl-observatory.dtd +++ /dev/null @@ -1,103 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Detaily a informácie o súkromí"> -<!ENTITY ssl-observatory.popup.later "Spýtať sa neskôr"> -<!ENTITY ssl-observatory.popup.no "Nie"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere dokáže odhaliť útoky -na váš prehliadač tým, že prijaté certifikáty pošle programu -Observatory. Zapnúť túto funkciu?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Má HTTPS Everywhere používať SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Áno"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"Táto funkcia je bezpečná, pokiaľ nie ste -pripojený k veľmi neodbytnej firemnej sieti:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Bezpečné, pokiaľ nie ste pripojený k firemnej sieti s tajnými názvami intranetových serverov:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Odoslať a skontrolovať certifikáty podpísané neštandardnými koreňovými Certifikačnými autoritami"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"Je bezpečné (a tiež dobrý nápad) toto nastavenie povoliť, pokiaľ nepoužívate neodbytnú firemnú sieť alebo program Kaspersky antivirus, ktorý sleduje vaše prehliadanie cez TLS proxy a súkromnú koreňovú Certifikačnú autoritu. Ak by bolo na takejto sieti zapnuté, toto nastavenie by mohlo sprístupniť dôkazy o tom, ktoré https:// domény boli cez túto proxy navštívené, kvôli unikátnym certifikátom, ktoré by vytvorilo. Z týchto dôvodov nechávame toto nastavenie pôvodne vypnuté."> - -<!ENTITY ssl-observatory.prefs.anonymous "Skontrolovať anonymitu certifikátov pomocou Tor"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Skontrolovať anonymitu certifikátov pomocou Tor (vyžaduje Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"Táto voľba vyžaduje, aby bol nainštalovaný a spustený Tor"> - -<!ENTITY ssl-observatory.prefs.asn -"Pri objavení sa nového certifikátu, oznámiť Observatory, ku ktorému ISP ste pripojení."> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"To načíta a odošle "Číslo autonómneho systému" vašej siete. To nám pomôže lokalizovať útoky na HTTPS a určiť, či máme hlásenia zo sietí na miestach ako je Irán a Sýria, kde sú útoky relatívne časté."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Zobraziť upozornenie, keď Observatory zistí neplatný certifikát nezachytený vašim prehliadačom "> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"To porovná zadané certifikáty so zoznamom neplatných certifikátov. Bohužiaľ nemôžeme zaručiť, že dokážeme označiť každý zrušený certifikát, ale pokiaľ sa vám zobrazí varovanie, existuje vysoká pravdepodobnosť, že niečo nie je v poriadku."> - -<!ENTITY ssl-observatory.prefs.done "Hotovo"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere dokáže používať SSL Observatory od EFF. To slúži na -dve veci: (1) odosiela kópie HTTPS certifikátov do Observatory kvôli pomoci -so zachytením útokov 'man in the middle' a vylepšeniu bezpečnosti webu; -a (2) dovolí nám varovať vás pred nebezpečným pripojením alebo útokmi na -váš prehliadač."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"Ak napríklad navštívite https://www.something.com, tak certifikát, -ktorý príde do Observatory ukáže, že -niekto navštívil -www.something.com, ale nie kto ju navštívil alebo na ktorú konkrétnu stránku -sa pozeral. Pre bližšie informácie ukážte kurzorom na možnosti."> - -<!ENTITY ssl-observatory.prefs.hide "Skryť rozšírené nastavenia"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Kontrolovať certifikáty aj keď je Tor nedostupný"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"Budeme sa stále snažiť zachovať anonymitu dát, táto možnosť je však menej bezpečná"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Odoslať a skontrolovať certifikáty pre neverejné DNS názvy"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Pokiaľ nie je táto možnosť zaškrtnutá, Observatory nebude zaznemenávať názvy certifikátov, ktoré nenájde v DNS systéme. "> - -<!ENTITY ssl-observatory.prefs.show "Zobraziť rozšírené nastavenia"> - -<!ENTITY ssl-observatory.prefs.title "Nastavenia SSL Observatory"> - -<!ENTITY ssl-observatory.prefs.use "Používať Observatory?"> -<!ENTITY ssl-observatory.warning.title "UPOZORNENIE z SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Zobraziť reťazec certifikátov"> -<!ENTITY ssl-observatory.warning.okay "Rozumiem"> -<!ENTITY ssl-observatory.warning.text "SSL Observatory vydalo varovanie ohľadne HTTPS certifikátu (certifikátov) tejto stránky:"> -<!ENTITY ssl-observatory.warning.defense "Ak ste prihlásený na tejto stránke, v momente, keď sa dostanete na zabezpečené pripojenie, odporúčame zmeniť vaše heslo. (Tieto varovania je možné vypnúť v záložke "SSL Observatory" v dialógu nastavení HTTPS Everywhere.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Odoslať a skontrolovať certifikáty podpísané sam sebou"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"Toto sa odporúča; problémy so šifrovaním sú bežné hlavne pri použití vstavaných zariadení, ktoré sú podpísané samými sebou"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sl/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sl/https-everywhere.dtd deleted file mode 100644 index 76a6f94..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sl/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "O HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Zakodirajte internet! Samodejno uporabite HTTPS zaščito na mnogih spletnih straneh."> -<!ENTITY https-everywhere.about.version "Različica"> -<!ENTITY https-everywhere.about.created_by "Izdelal"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Izdelovalci pravil"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Zahvala"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "Če vam je HTTPS Everywhere všeč, razmislite o"> -<!ENTITY https-everywhere.about.donate_tor "donaciji za Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "ali"> -<!ENTITY https-everywhere.about.donate_eff "donaciji za EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "O HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "Nastavitve SSL Observatorija"> -<!ENTITY https-everywhere.menu.globalEnable "Omogoči HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Onemogoči HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Prikaži števec"> -<!ENTITY https-everywhere.menu.viewAllRules "Preglej vsa pravila"> - -<!ENTITY https-everywhere.prefs.title "Nastavitve HTTPS Everywhere"> -<!ENTITY https-everywhere.prefs.enable_all "Omogoči vse"> -<!ENTITY https-everywhere.prefs.disable_all "Onemogoči vse"> -<!ENTITY https-everywhere.prefs.reset_defaults "Ponastavi na privzeto"> -<!ENTITY https-everywhere.prefs.search "Išči"> -<!ENTITY https-everywhere.prefs.site "Stran"> -<!ENTITY https-everywhere.prefs.notes "Opombe"> -<!ENTITY https-everywhere.prefs.list_caption "Katera pravila za preusmeritev HTTPS naj bodo upoštevana?"> -<!ENTITY https-everywhere.prefs.enabled "Omogočeno"> -<!ENTITY https-everywhere.prefs.ruleset_howto "Lahko se naučite pisati svoja pravila (da dodate podporo za druge spletne strani)"> -<!ENTITY https-everywhere.prefs.here_link "tukaj"> -<!ENTITY https-everywhere.prefs.toggle "Preklopi"> -<!ENTITY https-everywhere.prefs.reset_default "Ponastavi na privzeto"> -<!ENTITY https-everywhere.prefs.view_xml_source "Ogled XML kode"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Prekliči"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sl/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sl/https-everywhere.properties deleted file mode 100644 index c58817d..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sl/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Omogoči HTTPS Everywhere -https-everywhere.menu.globalDisable = Onemogoči HTTPS Everywhere -https-everywhere.menu.enableDisable = Omogoči / Onemogoči pravila -https-everywhere.menu.noRules = (Za to stran ni pravil) -https-everywhere.menu.unknownRules = (Pravila za to stran neznana) -https-everywhere.toolbar.hint = HTTPS Everywhere je sedaj aktiven. Za posamezne spletne strani ga lahko preklapljate s klikom na ikono v naslovni vrstici. -https-everywhere.migration.notification0 = Za izvedbo pomembnih popravkov, bo ta nadgraditev resetirala vaše HTTPS Everywhere nastavitve pravilnika na njihovo privzeto vrednost -https-everywhere.menu.ruleset-tests = Zagon testiranja HTTPS Everywhere pravilnika diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sl/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sl/ssl-observatory.dtd deleted file mode 100644 index 250dad9..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sl/ssl-observatory.dtd +++ /dev/null @@ -1,98 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Podrobnosti in informacije o zasebnosti"> -<!ENTITY ssl-observatory.popup.later "Vprašaj me kasneje"> -<!ENTITY ssl-observatory.popup.no "Ne"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere lahko zazna napade -na vaš brskalnik tako, da pošlje certifikate ki jih prejmete v -Observatorij. Želite to vključiti?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Ali naj HTTPS Everywhere uporablja SSL Observatorij?"> - -<!ENTITY ssl-observatory.popup.yes "Da"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"Omogočanje tega je varno, razen če uporabljate zelo -vsiljivo poslovno omrežje:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Varno, razen če uporabljate poslovno omrežje s tajnimi imeni lokalnih strežnikov:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Predloži in preveri certifikate nestandardnih overoviteljev"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"Omogočanje tega je varno (in priporočljivo), razen če uporabljate vsiljivo poslovno omrežje ali protivirusni program Kaspersky, ki spremlja vaše brskanje s TLS proksijem in privatnim overoviteljem certifikatov. Če je omogočeno v takem omrežju lahko ta možnost objavi dokazila o tem, katere https:// domene so bile obiskane preko tega proksija, ker bi ustvarila edinstvene certifikate. Zato je to privzeto izključeno."> - -<!ENTITY ssl-observatory.prefs.anonymous "Anonimno preveri certifikate preko omrežja Tor"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Anonimno preveri certifikate preko omrežja Tor (potrebuje Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"Za to možnost mora biti Tor nameščen in zagnan"> - -<!ENTITY ssl-observatory.prefs.asn -"Ko zasledite nov certifikat povejte Observatoriju h kateremu internetnemu ponudniku ste priključeni"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"To bo pridobilo in poslalo "Avtonomno številko sistema" (ASN) vašega omrežja. To nam bo pomagalo locirati napade na HTTPS in določiti, ali so opažanja iz omrežij na področjih kot so Iran in Sirija, kjer so napadi razmeroma pogosti."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Pokaži opozorilo ko Observatorij zazna preklicane certifikate, ki jih vaš brskalnik ni našel."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"To bo preverilo predložene certifikate s seznamom preklicanih potrdil. Žal vam ne moremo zagotoviti, da bomo označili vsako preklicano potrdilo, če pa vidite opozorilo je možno, da je nekaj narobe."> - -<!ENTITY ssl-observatory.prefs.done "Končano"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere lahko uporablja EFF SSL Observatorij. S tem naredi dvoje: (1) -pošlje kopije HTTPS certifikatov observatoriju, da nam pomaga odkriti napade 'man in the middle' in izboljšati varnost medmrežja; (2) -nam omogoči, da vas opozorimo na nevarne povezave ali napade na vaš brskalnik."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"Ko na primer obiščete https://www.nekadomena.com bo certifikat, ki ga sprejme observatorij, nakazal, da je nekdo obiskal www.nekadomena.com, ne pa kdo je to bil ali katero stran si je ogledal. -Pridržite miško nad možnosti za več podrobnosti:"> - -<!ENTITY ssl-observatory.prefs.hide "Skrij napredne možnosti"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Preveri certifikate tudi če ni Tor omrežja"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"Poskušali bomo ohraniti anonimnost podatkov, vendar je ta možnost manj varna"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Predloži in preveri certifikate za ne-javna imena DNS"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Če je ta možnost ni izbrana, observatorij ne bo zabeležil potrdil za imena, ki jih ni mogoče razkriti s sistemom DNS."> - -<!ENTITY ssl-observatory.prefs.show "Pokaži napredne možnosti"> - -<!ENTITY ssl-observatory.prefs.title "Nastavitve SSL Observatorija"> - -<!ENTITY ssl-observatory.prefs.use "Uporabim Observatorij?"> -<!ENTITY ssl-observatory.warning.title "OPOZORILO s strani EFF SSL Observatorija"> -<!ENTITY ssl-observatory.warning.showcert "Pokaži certifikatno verigo"> -<!ENTITY ssl-observatory.warning.okay "Razumem"> -<!ENTITY ssl-observatory.warning.text "EFF SSL Observatorij je izdal opozorilo za HTTPS certifikat(e) za to stran:"> -<!ENTITY ssl-observatory.warning.defense "Če ste vpisani na tej strani je priporočljivo da spremenite geslo, ko boste varno povezani. (Ta opozorila lahko onemogočite v nastavitvah HTTPS Everywhere, v zavihku "SSL Observatorij".)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Predložite in preverite samopodpisana potrdila"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"To je priporočljivo; težave s šifriranjem so posebej pogoste pri samopodpisanih vgnezdenih napravah."> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sl_SI/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sl_SI/https-everywhere.dtd deleted file mode 100644 index 7fa6baf..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sl_SI/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "O HTTPS povsod"> -<!ENTITY https-everywhere.about.ext_name "HTTPS povsod"> -<!ENTITY https-everywhere.about.ext_description "Šifrirajte splet! Avtomatska uporaba HTTPS zaščite na različnih straneh."> -<!ENTITY https-everywhere.about.version "Različica"> -<!ENTITY https-everywhere.about.created_by "Ustvaril"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Knjižnice pravil"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Zahvaljujoč"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "Če vam je všeč HTTPS Everywhere, boste morda premislili o"> -<!ENTITY https-everywhere.about.donate_tor "Doniranju Tor projektu"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "ali"> -<!ENTITY https-everywhere.about.donate_eff "Doniranju EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "O HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "Možnosti SSL Opazovalnice"> -<!ENTITY https-everywhere.menu.globalEnable "Omogoči HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Onemogoči HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Prikaži števec"> -<!ENTITY https-everywhere.menu.viewAllRules "Preglej vsa pravila"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere možnosti"> -<!ENTITY https-everywhere.prefs.enable_all "Omogoči vse"> -<!ENTITY https-everywhere.prefs.disable_all "Onemogoči vse"> -<!ENTITY https-everywhere.prefs.reset_defaults "Ponastavi"> -<!ENTITY https-everywhere.prefs.search "Išči"> -<!ENTITY https-everywhere.prefs.site "Mesta"> -<!ENTITY https-everywhere.prefs.notes "Opombe"> -<!ENTITY https-everywhere.prefs.list_caption "Katera HTTPS pravila preusmeritev naj bodo upoštevana?"> -<!ENTITY https-everywhere.prefs.enabled "Omogočeno"> -<!ENTITY https-everywhere.prefs.ruleset_howto "Lahko se naučite pisati svoja pravila (za podporo drugim spletnim stranem)"> -<!ENTITY https-everywhere.prefs.here_link "tukaj"> -<!ENTITY https-everywhere.prefs.toggle "Preklopi"> -<!ENTITY https-everywhere.prefs.reset_default "Ponastavi"> -<!ENTITY https-everywhere.prefs.view_xml_source "Ogled XML kode"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Prekliči"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sl_SI/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sl_SI/https-everywhere.properties deleted file mode 100644 index 4fa5e06..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sl_SI/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Omogoči HTTPS Everywhere -https-everywhere.menu.globalDisable = Onemogoči HTTPS Everywhere -https-everywhere.menu.enableDisable = Omogoči / onemogoči pravila -https-everywhere.menu.noRules = (Ni pravil za to stran) -https-everywhere.menu.unknownRules = (Pravila za to stran neznana) -https-everywhere.toolbar.hint = HTTPS Everywhere je zdaj aktiven. Nastavite ga lahko na podlagah site-by-site z klikom na ikono v naslovni vrstici. -https-everywhere.migration.notification0 = Za izvedbo pomembnih popravkov, bo ta nadgraditev ponastavila vaše HTTPS Everywhere nastavitve pravilnika na njihovo privzeto vrednost. -https-everywhere.menu.ruleset-tests = Zagon HTTPS Everywhere Ruleset testiranj diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sl_SI/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sl_SI/ssl-observatory.dtd deleted file mode 100644 index 0b1590f..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sl_SI/ssl-observatory.dtd +++ /dev/null @@ -1,98 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Podrobnosti in informacije o zasebnosti"> -<!ENTITY ssl-observatory.popup.later "Vprašaj me kasneje"> -<!ENTITY ssl-observatory.popup.no "Ne"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere lahko zazna napade proti vašemu brskalniku z pošiljanjem certifikatov, ki jih prejmete v opazovalnico. Želite to vključiti?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Ali naj HTTPS Everywhere uporablja SSL opazovalnico?"> - -<!ENTITY ssl-observatory.popup.yes "Da"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"Varno je da to vključite, dokler ne uporabljate zelo vsivljivega poslovnega omrežja."> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Varno, dokler ne uporabite poslovno omrežje s tajnimi imeni intranet strežnikov:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Predloži in preveri certifikate nestandardnih overoviteljev"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"Omogočanje tega je varno (in priporočljivo), razen če uporabljate vsiljivo poslovno omrežje ali protivirusni program Kaspersky, ki spremlja vaše brskanje s TLS proksijem in privatnim overoviteljem certifikatov. Če je omogočeno v takem omrežju lahko ta možnost objavi dokazila o tem, katere https:// domene so bile obiskane preko tega proksija, ker bi ustvarila edinstvene certifikate. Zato je to izključeno kot privzeto."> - -<!ENTITY ssl-observatory.prefs.anonymous "Preveri certifikate z uporabo Tor anonimnosti"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Preveri certifikate z uporabo Tor anonimnosti (potreben Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"Ta opcija potrebuje nameščen in zagnan Tor"> - -<!ENTITY ssl-observatory.prefs.asn -"Ko vidite nov certifikat povejte Observatoriju h kateremu ISP-ju ste priključeni"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"To bo pridobilo in poslalo "Avtonomno sistemsko številko" vašega omrežja. To nam bo pomagalo locirati napade na HTTPS in določiti, ali so opažanja iz omrežij na področjih kot so Iran in Sirija, kjer so napadi razmeroma pogosti."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Pokaži opozorilo ko Observatorij zazna preklicane certifikate, ki jih vaš iskalnik ni našel."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"To preverjanje bo predložilo certifikate pred Seznam Preklicanih Certifikatov. Na žalost ne moremo zagotoviti, da bomo označili vsak razveljavljen certifikat, če pa vidite opozorilo obstaja velika verjetnost, da je nekaj narobe."> - -<!ENTITY ssl-observatory.prefs.done "Opravljeno"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Povsod uporablja EFF's SSL Observatorij. To naredi dvoje: (1) -pošlje kopije HTTPS certifikatov Observatoriju, da nam pomaga -odkriti 'man in the middle' napade in izboljšati web varnost; in (2) -nam omogoči, da vas opozorimo na nezanesljive povezave ali napade na vaš iskalnik."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"Ko na primer obiščete https://www.something.com bo certifikat, -ki ga sprejme Observatorij, pokazal, da je nekdo obiskal -www.something.com, ne pa kdo je to bil ali katero stran -si je ogledal. Pridržite miško nad izbirami za več podrobnosti:"> - -<!ENTITY ssl-observatory.prefs.hide "Skrij napredne možnosti"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Preveri certifikate tudi, ko Tor ni navoljo"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"Poskušali bomo ohraniti podatke anonimne, vendar je ta možnost manj varna"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Predloži in preveri certifikate za ne-javna imena DNS"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Razen če je ta možnost izbrana, observatorij ne bo zabeležil certifikate za imena, ki jih ni mogoče rešiti prek sistema DNS."> - -<!ENTITY ssl-observatory.prefs.show "Pokaži napredne možnosti"> - -<!ENTITY ssl-observatory.prefs.title "Izbire SSL Opazovalnice"> - -<!ENTITY ssl-observatory.prefs.use "Uporabim opazovalnico?"> -<!ENTITY ssl-observatory.warning.title "OPOZORILO od EFF's SSL Observatorija"> -<!ENTITY ssl-observatory.warning.showcert "Prikaži certifikatno verigo"> -<!ENTITY ssl-observatory.warning.okay "Razumem"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatorij je izdal opozorilo za HTTPS certifikat(e) za to mesto:"> -<!ENTITY ssl-observatory.warning.defense "Če ste vpisani na to mesto je priporočljivo, da spremenite geslo, ko boste varno povezani. (Ta opozorila lahko onemogočite v nastavitvenem dialogu HTTPS Povsod, v zavihku "SSL Observatorij".)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Predložite in preverite samopodpisane certifikate"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"To je priporočljivo; šifrirne težave so posebej pogoste pri samopodpisanih vgrajenih napravah"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sn/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sn/https-everywhere.dtd deleted file mode 100644 index 93d66ce..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sn/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancel"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sn/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sn/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sn/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sn/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sn/ssl-observatory.dtd deleted file mode 100644 index 69f1cfd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sn/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/so/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/so/https-everywhere.dtd deleted file mode 100644 index 93d66ce..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/so/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancel"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/so/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/so/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/so/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/so/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/so/ssl-observatory.dtd deleted file mode 100644 index 69f1cfd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/so/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/son/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/son/https-everywhere.dtd deleted file mode 100644 index 93d66ce..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/son/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancel"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/son/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/son/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/son/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/son/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/son/ssl-observatory.dtd deleted file mode 100644 index 69f1cfd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/son/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sq/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sq/https-everywhere.dtd deleted file mode 100644 index 0e5856a..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sq/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "Rreth HTTPS Kudo"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Kudo"> -<!ENTITY https-everywhere.about.ext_description "Kriptojeni Web-in! Përdorni automatikisht sigurinë HTTPS në shumë webfaqe."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Krijuar prej"> -<!ENTITY https-everywhere.about.and ", dhe"> -<!ENTITY https-everywhere.about.librarians "Bibliotekarët e Kompleteve të Rregullave "> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Në sajë të"> -<!ENTITY https-everywhere.about.many_contributors "Shumë, shumë kontribuues, përfshirë"> -<!ENTITY https-everywhere.about.noscript "Gjithashtu, porcione të HTTPS Gjithkund mbështeten tek kodi nga NoScript, prej Xhiorxhio Maone dhe të tjerëve. U jemi mirënjohës për punën e tyre të shkëlqyer!"> -<!ENTITY https-everywhere.about.contribute "Nëse ju pëlqen HTTPS Kudo, duhet të merrni parasysh"> -<!ENTITY https-everywhere.about.donate_tor "Dhuroni për Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "an"> -<!ENTITY https-everywhere.about.or "ose"> -<!ENTITY https-everywhere.about.donate_eff "Dhuroni për EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Dhuroni për EFF"> -<!ENTITY https-everywhere.menu.about "Rreth HTTPS Kudo"> -<!ENTITY https-everywhere.menu.observatory "Parapëlqimet për Vëzhguesin SSL"> -<!ENTITY https-everywhere.menu.globalEnable "Aftësoni HTTPS Kudo"> -<!ENTITY https-everywhere.menu.globalDisable "Paaftësoni HTTPS Kudo"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Shfaqeni Llogaritësin"> -<!ENTITY https-everywhere.menu.viewAllRules "Shihini të Gjitha Rregullat"> - -<!ENTITY https-everywhere.prefs.title "Parapëlqimet për HTTPS Kudo"> -<!ENTITY https-everywhere.prefs.enable_all "Aftësoni Gjithçka"> -<!ENTITY https-everywhere.prefs.disable_all "Paaftësoni Gjithçka"> -<!ENTITY https-everywhere.prefs.reset_defaults "Rivendoseni në Parazgjedhje"> -<!ENTITY https-everywhere.prefs.search "Kërkoni"> -<!ENTITY https-everywhere.prefs.site "Webfaqe"> -<!ENTITY https-everywhere.prefs.notes "Njoftime"> -<!ENTITY https-everywhere.prefs.list_caption "Cilat rregulla për ridrejtimin HTTPS duhet të zbatohen? "> -<!ENTITY https-everywhere.prefs.enabled "Aftësuar"> -<!ENTITY https-everywhere.prefs.ruleset_howto "Ju mund të mësoni sesi të shkruani kompletet tuaj të rregullave (që të shtoni mbështetjen për webfaqet e tjera)"> -<!ENTITY https-everywhere.prefs.here_link "këtu"> -<!ENTITY https-everywhere.prefs.toggle "Këmbeni"> -<!ENTITY https-everywhere.prefs.reset_default "Rivendoseni Parazgjedhhjen"> -<!ENTITY https-everywhere.prefs.view_xml_source "Shiheni Burimin XML"> - -<!ENTITY https-everywhere.chrome.stable_rules "Rregulla të qëndrueshme"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Lidhje të shifruara paraprakisht me këto webfaqe:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Rregulla eksperimentale"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "Mund të shkaktojë paralajmërime apo thyerje. Paaftësuar me parazgjedhje."> -<!ENTITY https-everywhere.chrome.add_rule "Shtoni një rregull për këtë webfaqe"> -<!ENTITY https-everywhere.chrome.add_new_rule "Shtoni një rregull të ri për këtë webfaqe"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Përdorni gjithmonë https për këtë pritës"> -<!ENTITY https-everywhere.chrome.host "Pritësi:"> -<!ENTITY https-everywhere.chrome.show_advanced "Shfaqni të përparuarat"> -<!ENTITY https-everywhere.chrome.hide_advanced "Fshihini të përparuarat"> -<!ENTITY https-everywhere.chrome.rule_name "Emërtimi i rregullit"> -<!ENTITY https-everywhere.chrome.regex "Përputhshmëri me shprehjet e rregullta"> -<!ENTITY https-everywhere.chrome.redirect_to "E ridrejtuar tek"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Hiqeni"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sq/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sq/https-everywhere.properties deleted file mode 100644 index 42b4b77..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sq/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Aftësoni HTTPS Kudo -https-everywhere.menu.globalDisable = Paaftësoni HTTPS Kudo -https-everywhere.menu.enableDisable = Aftësoni / Paaftësoni Rregullat -https-everywhere.menu.noRules = (S'ka rregulla për Këtë Faqe) -https-everywhere.menu.unknownRules = (Rregullat për Këtë Faqe, të Panjohura) -https-everywhere.toolbar.hint = HTTPS Kudo tani është në veprim. Ju mund ta këmbeni atë webfaqe pas webfaqe, duke klikuar ikonën në shiritin e adresave. -https-everywhere.migration.notification0 = Me qëllim që të zbatojmë ndreqjen thelbësore, ky përditësim i rivendos parapëlqimet për rregullat e HTTPS Kudo në vlerat e tyre të paracaktuara. -https-everywhere.menu.ruleset-tests = Ekzekutoni Provat e Kompleteve të Rregullave për HTTPS Kudo diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sq/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sq/ssl-observatory.dtd deleted file mode 100644 index 770d613..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sq/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Hollësi dhe Informacion Privatësie"> -<!ENTITY ssl-observatory.popup.later "Më Pyesni Më Vonë"> -<!ENTITY ssl-observatory.popup.no "Jo"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere mund të zbulojë sulmet -kundër shfletuesit tuaj, duke dërguar çdo certifikatë që ju merrni, tek -Observatori. Ta aktivizojmë?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"A duhet që HTTPS Everywhere të përdorë Observatorin SSL?"> - -<!ENTITY ssl-observatory.popup.yes "Po"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"Aktivizimi i kësaj është i sigurt, përveç nëse përdorni një -rrjet korporate shumë ndërhyrës:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"I sigurt, përveç nëse përdorni një rrjet korporate, me emra të fshehtë të shërbyesve të intranetit:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Paraqitni dhe kontrolloni certifikatat e nënshkruara nga root CA jostandarde"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"Është e sigurt (dhe një ide e mirë) të aftësosh këtë opsion, veç nëse përdorni një rrjet korporate ndërhyrës, ose programin e antivirusit Kaspersky, që vëzhgon shfletimin tuaj me një proxy TLS dhe një root Certificate Authority private. Nëse aftësohet në një rrjet të tillë, ky opsion mund të publikojë prova se cilat domene https:// janë vizituar përmes atij proxy, për shkak të certifikatave unike që ai mund të prodhojë. Kësisoj, e kemi parazgjedhur që ai të rrijë i fikur."> - -<!ENTITY ssl-observatory.prefs.anonymous "Kontrolloni certifikatat duke përdorur Tor për anonimitetin"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Kontrolloni certifikatat duke përdorur Tor për anonimitetin (kërkon Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"Ky opsion kërkon që Tor të jetë instaluar, si dhe duke u ekzekutuar"> - -<!ENTITY ssl-observatory.prefs.asn -"Kur shihni një certifikatë të re, tregojini Observatorit se me cilën ISP ju jeni lidhur"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"Kjo do të lëshojë dhe do të dërgojë e "numrin e Sistemit Autonom" të rrjetit tuaj. Kjo do të na ndihmojë që të lokalizojmë sulmet kundër HTTPS, si dhe për të përcaktuar nëse kemi vëzhgime nga rrjetet në vendet si Irani dhe Siria, ku sulmet janë relativisht të zakonshme."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Shfaqni një paralajmërim kur Observatori zbulon një certifikatë të revokuar, të pakapur nga shfletuesi juaj"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"Kjo do të kontrollojë certifikatat e paraqitura kundër Listave të njohura të Revokimit të Certifikatave. Fatkeqësisht ne nuk garantojmë se do mund të shënojmë me flamurth çdo certifikatë të revokuar, por nëse shihni një paralajmërim, me shumë gjasë diçka nuk shkon mirë."> - -<!ENTITY ssl-observatory.prefs.done "Kryer"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere mund të përdorë Observatorin SSL të EFF. Kjo bën dy gjëra: (1) -dërgon kopje të certifikatave HTTPS tek Observatori, që të na ndihmojë -për të zbuluar sulmet "njeriu në qendër" dhe për të përmirësuar sigurinë e web-it; si dhe(2) -na lejon t'ju paralajmërojmë rreth lidhjeve të pasigurta apo sulmeve në shfletuesin tuaj."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"Për shembull, kur ju vizitoni https://www.something.com, certifikata -e marrë nga Observatori do të tregojë që dikush vizitoi -www.something.com, por jo kush e vizitoi webfaqen, ose se cilën faqe specifike -ka parë. Kaloni miun mbi opsionet për hollësi të mëtejshme:"> - -<!ENTITY ssl-observatory.prefs.hide "Fshihini opsionet e përparuara"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Kontrollojini certifikatat edhe nëse Tor nuk është i disponibël"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"Ne do të vijojmë t'i mbajmë të dhënat anonime, por ky opsion është më pak i sigurt"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Paraqitni dhe kontrolloni certifikatat për emrat e DNS jopublike"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Veç nëse ky opsion është i kontrolluar, Observatori nuk do të regjistrojnë certifikata për emrat që ai nuk mund t'i zgjidhë përmes sistemit DNS."> - -<!ENTITY ssl-observatory.prefs.show "Tregomëni vetitë e përparuara"> - -<!ENTITY ssl-observatory.prefs.title "Parapëlqimet për Vëzhguesin SSL"> - -<!ENTITY ssl-observatory.prefs.use "Do ta përdorni Vëzhguesin?"> -<!ENTITY ssl-observatory.warning.title "KUJDES nga Observatori SSL i EFF "> -<!ENTITY ssl-observatory.warning.showcert "Shfaqeni zinxhirin e certifikatave"> -<!ENTITY ssl-observatory.warning.okay "Kuptoj"> -<!ENTITY ssl-observatory.warning.text "Observatori SSL i EFF ka lëshuar një paralajmërim rreth certifikatës(ave) të HTTPS, për këtë webfaqe:"> -<!ENTITY ssl-observatory.warning.defense "Nëse jeni i futur në këtë webfaqe, mund të jetë e këshillueshme që ta ndryshoni fjalëkalimin tuaj, kur të keni një lidhje të sigurt. (Këto paralajmërime mund të paaftësohen tek skeda e "Observatorit SSL" të dialogut të parapëlqimeve për HTTPS Everywhere.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Paraqitni dhe kontrolloni certifikatat e vetë nënshkruara"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"Kjo rekomandohet; problemet kryptografike janë veçanërisht të zakonshme tek pajisjet e ngulitura e të vetënënshkruara"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sq_AL/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sq_AL/https-everywhere.dtd deleted file mode 100644 index 0bbb1fe..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sq_AL/https-everywhere.dtd +++ /dev/null @@ -1,53 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockHttpRequests "Block all HTTP requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.source.downloading "Downloading"> -<!ENTITY https-everywhere.source.filename "Filename"> -<!ENTITY https-everywhere.source.unable_to_download "Unable to download source."> - -<!ENTITY https-everywhere.popup.title "HTTPS Everywhere 4.0development.11 notification"> -<!ENTITY https-everywhere.popup.paragraph1 "Oops. You were using the stable version of HTTPS Everywhere, but we might have accidentally upgraded you to the development version in our last release."> -<!ENTITY https-everywhere.popup.paragraph2 "Would you like to go back to stable?"> -<!ENTITY https-everywhere.popup.paragraph3 "We'd love it if you continued using our development release and helped us make HTTPS Everywhere better! You might find there are a few more bugs here and there, which you can report to https-everywhere@eff.org. Sorry about the inconvenience, and thank you for using HTTPS Everywhere."> -<!ENTITY https-everywhere.popup.keep "Keep me on the development version"> -<!ENTITY https-everywhere.popup.revert "Download the latest stable version"> - -<!ENTITY https-everywhere.ruleset-tests.status_title "HTTPS Everywhere Ruleset Tests"> -<!ENTITY https-everywhere.ruleset-tests.status_cancel_button "Cancel"> -<!ENTITY https-everywhere.ruleset-tests.status_start_button "Start"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sq_AL/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sq_AL/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sq_AL/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sq_AL/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sq_AL/ssl-observatory.dtd deleted file mode 100644 index 69f1cfd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sq_AL/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sr/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sr/https-everywhere.dtd deleted file mode 100644 index f2120a5..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sr/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "O HTTPS Свуда"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Svuda"> -<!ENTITY https-everywhere.about.ext_description "Sifriraj Web! Automatski koristi HTTPS sigurnost na mnogim sajtovima."> -<!ENTITY https-everywhere.about.version "Verzija"> -<!ENTITY https-everywhere.about.created_by "Stvorio"> -<!ENTITY https-everywhere.about.and ", i"> -<!ENTITY https-everywhere.about.librarians "Ruleset Bibliotekari"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Zahvaljujuci"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "Ako vam se svida HTTPS, mogli bi ste da razmislite o"> -<!ENTITY https-everywhere.about.donate_tor "donaciji za Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "ili"> -<!ENTITY https-everywhere.about.donate_eff "doniranju EFF-u"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "O HTTPS svuda"> -<!ENTITY https-everywhere.menu.observatory "SSL observatorij postavki"> -<!ENTITY https-everywhere.menu.globalEnable "Omoguci HTTPS svuda"> -<!ENTITY https-everywhere.menu.globalDisable "Onemoguci HTTPS svuda"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Prikazi brojac"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS svuda - postavke"> -<!ENTITY https-everywhere.prefs.enable_all "Omoguci sve"> -<!ENTITY https-everywhere.prefs.disable_all "Onemoguci sve"> -<!ENTITY https-everywhere.prefs.reset_defaults "Vrati na uobicajeno"> -<!ENTITY https-everywhere.prefs.search "Trazi"> -<!ENTITY https-everywhere.prefs.site "Sajt"> -<!ENTITY https-everywhere.prefs.notes "Biljeske"> -<!ENTITY https-everywhere.prefs.list_caption "Koja pravila za HTTPS preusmeravanje važe?"> -<!ENTITY https-everywhere.prefs.enabled "Omoguceno"> -<!ENTITY https-everywhere.prefs.ruleset_howto "Mozes nauciti kako pisati vlastita pravila (kako bi ste dodali podrsku drugim web stranicama)"> -<!ENTITY https-everywhere.prefs.here_link "ovde"> -<!ENTITY https-everywhere.prefs.toggle "Omoguci"> -<!ENTITY https-everywhere.prefs.reset_default "Vrati na uobicajeno"> -<!ENTITY https-everywhere.prefs.view_xml_source "Pogledaj XML izvor"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Откажи"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sr/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sr/https-everywhere.properties deleted file mode 100644 index 26c4bf4..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sr/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Омогући HTTPS Everywhere -https-everywhere.menu.globalDisable = Онемогући HTTPS Everywhere -https-everywhere.menu.enableDisable = Обухваћени сајтови -https-everywhere.menu.noRules = (Nema pravila za ovu stranu) -https-everywhere.menu.unknownRules = (Pravila za ovu stranu su nepoznata) -https-everywhere.toolbar.hint = HTTPS svuda je sada aktivan. Mozete da ga ukljucujete i iskljucujete na zasebnim sajtovima klikom na ikonicu na adress baru -https-everywhere.migration.notification0 = Da bi ubacili kriticnu popravku, ovo azuriranje resetuje vase HTTPS svuda pravila na podrazumevane vrednosti. -https-everywhere.menu.ruleset-tests = Pokreni testove HTTPS svuda pravila diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sr/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sr/ssl-observatory.dtd deleted file mode 100644 index ae8f43e..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sr/ssl-observatory.dtd +++ /dev/null @@ -1,103 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Detalji i informacije o privatnosti"> -<!ENTITY ssl-observatory.popup.later "Pitaj me kasnije"> -<!ENTITY ssl-observatory.popup.no "Ne"> - -<!ENTITY ssl-observatory.popup.text ""HTTPS Svuda" može detektovati napade -protiv vašeg pretraživaca slanjem sertifikata kojeg -dobijete u Observatorijumu. Želite li da uključite to?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Treba li "HTTPS Svuda" koristiti SSL observatorij?"> - -<!ENTITY ssl-observatory.popup.yes "Da"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"Sasvim je sigurno da odobrite ovo, sem ako ne koristite⏎ -veoma nametljivu korporativnu mrezu."> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Sigurno, sem ako korisitite korporativnu mrezu sa tajnim intranet server imenima:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Podigni i proveri certifikate potpisane od ne standardnih korena CAs-a"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"Sigurno je ( i preporucljivo) da ukljucite ovu opciju, osim ako koristite nametljivu korporativnu mrezu ili Kasperski antivirusni software koji prati vase pretrazivanje pomocu TLS proxy i privatni root Certificate Authority. Ako ste na takvoj mrezi i ukljucite ovu opciju moguce je da dokazi o https:// domenima koje ste posetili preko tog proxy-ija budu objavljeni, zbog jedinstenvih sertifikata koji prave. Tako da preporucujemo da ostavite ovu opciju iskljucenu."> - -<!ENTITY ssl-observatory.prefs.anonymous "Proveri certifikate koristeci Tor za anonimnost"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Proveri certifikate koristeci Tor za anonimnost (zahteva Torbutton)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"Ova opcija zahteva Tor i Torbutton instalirane"> - -<!ENTITY ssl-observatory.prefs.asn -"Kada vidite nove certifikate, recite Observatoriju na koji ISP ste spojeni"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"Ovo ce uhaviti i poslati "Autonomni Systemski broj" vase mreze. Ovo ce nam pomoci u pronalazenju napada protiv HTTPS, i proveriti da li imamo Observatorij iz mreza na mestima kao sto su Iran i Syria gde su napadi cesti."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Prikaži upozorenje kad Obzervatorijum otkrije opozvan sertifikat -koji Vaš pretraživač nije našao."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"Ovo će proveravati sertifikate priložene protiv Liste Opozvanih Sertifikata. -Nažalost, ne možemo da garantujemo da ćemo obeležiiti svaki opozvani sertifikat, -ali ukoliko vidite upozorenje postoji dobra šansa da nešto nije u redu."> - -<!ENTITY ssl-observatory.prefs.done "Gotovo"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Svuda moze koristiti EFF-ov SSL Observatorij. Ovo radi dve stvari: -(1) -Salje kopije HTTPS cerifikata do Observatorija, kako bi nam pomogli -otkriti 'man in the middle' napade i unaprediti sigurnost mreze: i (2) -dopusta nas da vas upozorimo o ne sigurnim vezama ili napadima na vas pretrazivac."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"Na primer, kada posetite https://www.nesto.com, certifikat koji je Observatorij primio ce nagovestiti da ga je neko posetio -www.nesto.com, ali ne i ko je posetio sajt, ili koju stranicu su posetili specificno. Predite misem preko opcija za detalje."> - -<!ENTITY ssl-observatory.prefs.hide "Sakrij napredne opcije"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Proveri certifikate cak i ako Tor nije dostupan"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"Mi cemo jos uvek probati zadrzati podatke anonimnim, ali ova opcija je manje sigurna"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Posalji i proveri certifikate za ne javna DNS imena"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Osim ako ova opcija nije oznacena, Observatorij nece sacuvati certifikate za imena koje nemogu resiti kroz DNS sistem."> - -<!ENTITY ssl-observatory.prefs.show "Pokazi napredne opcije"> - -<!ENTITY ssl-observatory.prefs.title "Postavke SSL Observatorija"> - -<!ENTITY ssl-observatory.prefs.use "Koristi Observatorij?"> -<!ENTITY ssl-observatory.warning.title "UPOZORENJE od EFF-ovog SSL Observatorija"> -<!ENTITY ssl-observatory.warning.showcert "Pokazi lanac certifikata"> -<!ENTITY ssl-observatory.warning.okay "Razumem"> -<!ENTITY ssl-observatory.warning.text "EFF-ov SSL Observatorij je uzrokovao upozorenje o HTTPS certifikat(ima) za ovaj sajt."> -<!ENTITY ssl-observatory.warning.defense "Ukoliko ste ulogovani na ovaj sajt, bilo bi preporučljivo da promenite svoju šifru čim uspostavite sigurnu konekciju. (Ova upozorenja mogu da se isključe u "SSL Obzervatorijum" tabu i HTTPS Svuda postavke dijalogu.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Pošalji i proveri samopotpisane sertifikate"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"Ovo je preporučljivo: kriptografski problemi su posebno česti u samopotpisanim ugrađenim uređajima"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sr@latin/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sr@latin/https-everywhere.dtd deleted file mode 100644 index 7e8d7ae..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sr@latin/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Otkaži"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sr@latin/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sr@latin/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sr@latin/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sr@latin/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sr@latin/ssl-observatory.dtd deleted file mode 100644 index 506d48f..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sr@latin/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "Ne"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Da"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/st/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/st/https-everywhere.dtd deleted file mode 100644 index 93d66ce..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/st/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancel"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/st/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/st/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/st/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/st/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/st/ssl-observatory.dtd deleted file mode 100644 index 69f1cfd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/st/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/su/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/su/https-everywhere.dtd deleted file mode 100644 index 93d66ce..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/su/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancel"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/su/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/su/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/su/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/su/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/su/ssl-observatory.dtd deleted file mode 100644 index 69f1cfd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/su/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sv/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sv/https-everywhere.dtd deleted file mode 100644 index 5e07d68..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sv/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "Om HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Kryptera webben! Använd HTTPS automatiskt på många webbsidor."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Skapad av"> -<!ENTITY https-everywhere.about.and ", och"> -<!ENTITY https-everywhere.about.librarians "Regelförfattare"> -<!ENTITY https-everywhere.about.add_new_rule "Lägg till ny regel"> -<!ENTITY https-everywhere.about.thanks "Tack till"> -<!ENTITY https-everywhere.about.many_contributors "Flera flera bidragsgivare, inklusive"> -<!ENTITY https-everywhere.about.noscript "Även, delar av HTTPS Everywhere är baserade på kod från NoScript, av Giorgio Maone och andra. Vi är tacksamma för deras utmärkta arbete!"> -<!ENTITY https-everywhere.about.contribute "Om du gillar HTTPS Everywhere, överväg att"> -<!ENTITY https-everywhere.about.donate_tor "Donera till Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "eller"> -<!ENTITY https-everywhere.about.donate_eff "Donera till EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donera till EFF"> -<!ENTITY https-everywhere.menu.about "Om HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "Inställningar för SSL Observatoriet"> -<!ENTITY https-everywhere.menu.globalEnable "Aktivera HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Inaktivera HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Blockera alla okrypterade förfrågningar"> -<!ENTITY https-everywhere.menu.showCounter "Visa räknare"> -<!ENTITY https-everywhere.menu.viewAllRules "Visa alla regler"> - -<!ENTITY https-everywhere.prefs.title "Inställningar för HTTPS Everywhere"> -<!ENTITY https-everywhere.prefs.enable_all "Aktivera alla"> -<!ENTITY https-everywhere.prefs.disable_all "Inaktivera alla"> -<!ENTITY https-everywhere.prefs.reset_defaults "Återställ till standardvärden"> -<!ENTITY https-everywhere.prefs.search "Sök"> -<!ENTITY https-everywhere.prefs.site "Webbplats"> -<!ENTITY https-everywhere.prefs.notes "Anmärkningar"> -<!ENTITY https-everywhere.prefs.list_caption "Vilka HTTPS-omdirigeringsregler ska gälla?"> -<!ENTITY https-everywhere.prefs.enabled "Aktiverad"> -<!ENTITY https-everywhere.prefs.ruleset_howto "Du kan lära dig hur du skriver dina egna regler (för att lägga till stöd för andra webbplatser)"> -<!ENTITY https-everywhere.prefs.here_link "här"> -<!ENTITY https-everywhere.prefs.toggle "Växla"> -<!ENTITY https-everywhere.prefs.reset_default "Återställ till standardvärden"> -<!ENTITY https-everywhere.prefs.view_xml_source "Visa XML källkod"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stabila regler"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Tvinga krypterade anslutningar till dessa websidor:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimentella regler"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "Kan orsaka varningar eller avbrott. Inaktiverad som standard."> -<!ENTITY https-everywhere.chrome.add_rule "Lägg till en regel för denna sida"> -<!ENTITY https-everywhere.chrome.add_new_rule "Lägg till en ny regel för denna sida"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Använd alltid https för denna värd"> -<!ENTITY https-everywhere.chrome.host "Värd:"> -<!ENTITY https-everywhere.chrome.show_advanced "Visa avancerad"> -<!ENTITY https-everywhere.chrome.hide_advanced "Göm avancerad"> -<!ENTITY https-everywhere.chrome.rule_name "Regel namn"> -<!ENTITY https-everywhere.chrome.regex "Matchar regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Omdirigera till"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Avbryt"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sv/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sv/https-everywhere.properties deleted file mode 100644 index ad261e3..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sv/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Aktivera HTTPS Everywhere -https-everywhere.menu.globalDisable = Inaktivera HTTPS Everywhere -https-everywhere.menu.enableDisable = Aktivera / inaktivera regler -https-everywhere.menu.noRules = (Inga regler för denna sida) -https-everywhere.menu.unknownRules = (Regler för denna sida okänt) -https-everywhere.toolbar.hint = HTTPS Everywhere är nu aktiv. Du kan inaktivera den för enstaka sidor genom att klicka på ikonen i adressfältet. -https-everywhere.migration.notification0 = För att verkställa en viktig uppdatering kommer dina regelinställningar för HTTPS Everywhere att återställas till sina standardvärden. -https-everywhere.menu.ruleset-tests = Kör HTTPS Everywhere regeltester diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sv/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sv/ssl-observatory.dtd deleted file mode 100644 index 3656024..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sv/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Detaljer och integritetsinformation"> -<!ENTITY ssl-observatory.popup.later "Fråga mig senare"> -<!ENTITY ssl-observatory.popup.no "Nej"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere kan känna igen attacker -mot din webbläsare genom att skicka certifikaten du tar emot till -Observatoriet. Aktivera detta?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Ska HTTPS Everywhere använda SSL Observatoriet?"> - -<!ENTITY ssl-observatory.popup.yes "Ja"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"Det är säkert att aktivera detta, bortsett från om du använder -ett väldigt påträngande företagsnätverk:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Säkert, om inte du använder ett företagsnätverk med hemliga intranät server namn:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Skicka och kolla certifikat signerade av icke-standard root Certifikat Instanser"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"Det är säkert (och en bra idé) att aktivera detta val, om inte du använder ett påträngande företagsnätverk eller Kaspersky antivirus program som övervakar ditt surfande med en TLS proxy och en privat root Certifikat Instans. Om aktiverat på ett sådant nätverk kan denna inställning publicera bevis av vilka https:// domäner blev besökta genom den proxyn, på grund av de unika certifikat de skulle producera. Så vi lämnar den avaktiverad som standard."> - -<!ENTITY ssl-observatory.prefs.anonymous "Kolla certifikat med hjälp av Tor för anonymitet"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Kolla certifikat med Tor för anonymitet (Tor krävs)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"Denna inställning kräver att Tor är installerad och aktiverad"> - -<!ENTITY ssl-observatory.prefs.asn -"När du ser ett nytt certifikat, säg till Observatoriet vilken ISP du är ansluten till"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"Detta kommer hämta och skicka ditt nätverks "Autonoma System Nummer". Det kommer hjälpa oss lokalisera attacker mot HTTPS, och fastställa om vi har observationer från nätverk i platser som Iran och Syrien där attacker är relativt vanliga."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Visa en varning när Observatory ser ett tillbakadraget certifikat som din webbläsare inte har upptäckt."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"Det här kommer kolla om certifikaten finns i listor över tillbakadragna certifikat. Vi kan tyvärr inte garantera att varje tillbakadraget certifikat kommer att flaggas, men om du ser en varning så är det troligt att något verkligen är fel."> - -<!ENTITY ssl-observatory.prefs.done "Klart"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere kan använda EFF's SSL Observatorium. Detta gör två saker: (1) -skickar kopior av HTTPS certifikat till Observatoriet, för att hjälpa oss -upptäcka "mannen i mitten"-attacker och förbättra Internets säkerhet; och (2) -låta oss varna dig om osäkra anslutningar eller attacker på din webbläsare."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"Till exempel, när du besöker https://www.something.com, så kommer certifikatet -som togs emot av Observatoriet att indikera att någon besökte -www.something.com, men inte vem som besökte webbplatsen, eller vilken specifik sida de -kollade på. Håll muspekaren över inställningarna för mer detaljer:"> - -<!ENTITY ssl-observatory.prefs.hide "Göm avancerade inställningar"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Kolla certifikat även om Tor inte är tillgängligt"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"Vi kommer fortfarade försöka hålla datan anonym, men denna inställning är mindre säker"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Skicka och kolla certifikat för icke-publika DNS namn"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Om inte denna inställning är markerad kommer Observatoriet inte att spara certifikat för namn som det inte kan analysera genom DNS systemet."> - -<!ENTITY ssl-observatory.prefs.show "Visa avancerade inställningar"> - -<!ENTITY ssl-observatory.prefs.title "Inställningar för SSL Observatoriet"> - -<!ENTITY ssl-observatory.prefs.use "Använd Observatoriet?"> -<!ENTITY ssl-observatory.warning.title "VARNING från EFF's SSL Observatorium"> -<!ENTITY ssl-observatory.warning.showcert "Visa certifikatskedjan"> -<!ENTITY ssl-observatory.warning.okay "Jag förstår"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatorium har gett en varning om HTTPS certifikatet(-n) för denna sida:"> -<!ENTITY ssl-observatory.warning.defense "Om du är inloggad på denna sida så bör du byta lösenord när du har en säker anslutning. (Du kan stänga av de här varningarna i "SSL Observatory" fliken på HTTPS Everywheres inställningar.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Skicka och kolla själv-signerade certifikat"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"Detta är rekommenderat; kryptografiska problem är särskilt vanliga i själv-signerad inbäddad utrustning"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sv_SE/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sv_SE/https-everywhere.dtd deleted file mode 100644 index b73224d..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sv_SE/https-everywhere.dtd +++ /dev/null @@ -1,42 +0,0 @@ -<!ENTITY https-everywhere.about.title ""> -<!ENTITY https-everywhere.about.ext_name ""> -<!ENTITY https-everywhere.about.ext_description ""> -<!ENTITY https-everywhere.about.version ""> -<!ENTITY https-everywhere.about.created_by ""> -<!ENTITY https-everywhere.about.librarians ""> -<!ENTITY https-everywhere.about.thanks ""> -<!ENTITY https-everywhere.about.contribute ""> -<!ENTITY https-everywhere.about.donate_tor ""> -<!ENTITY https-everywhere.about.tor_lang_code ""> -<!ENTITY https-everywhere.about.donate_eff ""> - -<!ENTITY https-everywhere.menu.about ""> -<!ENTITY https-everywhere.menu.observatory ""> -<!ENTITY https-everywhere.menu.globalEnable ""> -<!ENTITY https-everywhere.menu.globalDisable ""> - -<!ENTITY https-everywhere.prefs.title ""> -<!ENTITY https-everywhere.prefs.enable_all ""> -<!ENTITY https-everywhere.prefs.disable_all ""> -<!ENTITY https-everywhere.prefs.reset_defaults ""> -<!ENTITY https-everywhere.prefs.search ""> -<!ENTITY https-everywhere.prefs.site ""> -<!ENTITY https-everywhere.prefs.notes ""> -<!ENTITY https-everywhere.prefs.list_caption ""> -<!ENTITY https-everywhere.prefs.enabled ""> -<!ENTITY https-everywhere.prefs.ruleset_howto ""> -<!ENTITY https-everywhere.prefs.here_link ""> -<!ENTITY https-everywhere.prefs.toggle ""> -<!ENTITY https-everywhere.prefs.reset_default ""> -<!ENTITY https-everywhere.prefs.view_xml_source ""> - -<!ENTITY https-everywhere.source.downloading ""> -<!ENTITY https-everywhere.source.filename ""> -<!ENTITY https-everywhere.source.unable_to_download ""> - -<!ENTITY https-everywhere.popup.title ""> -<!ENTITY https-everywhere.popup.paragraph1 ""> -<!ENTITY https-everywhere.popup.paragraph2 ""> -<!ENTITY https-everywhere.popup.paragraph3 ""> -<!ENTITY https-everywhere.popup.keep ""> -<!ENTITY https-everywhere.popup.revert ""> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sv_SE/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sv_SE/https-everywhere.properties deleted file mode 100644 index 3cfced8..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sv_SE/https-everywhere.properties +++ /dev/null @@ -1,7 +0,0 @@ -# https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -# https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -# https-everywhere.menu.enableDisable = Enable / Disable Rules -# https-everywhere.menu.noRules = (No Rules for This Page) -# https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -# https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -# https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sv_SE/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sv_SE/ssl-observatory.dtd deleted file mode 100644 index d832b69..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sv_SE/ssl-observatory.dtd +++ /dev/null @@ -1,86 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details ""> -<!ENTITY ssl-observatory.popup.later ""> -<!ENTITY ssl-observatory.popup.no ""> - -<!ENTITY ssl-observatory.popup.text ""> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -""> - -<!ENTITY ssl-observatory.popup.yes ""> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -""> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -""> - -<!ENTITY ssl-observatory.prefs.alt_roots -""> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -""> - -<!ENTITY ssl-observatory.prefs.anonymous ""> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -""> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -""> - -<!ENTITY ssl-observatory.prefs.asn -""> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -""> - -<!ENTITY ssl-observatory.prefs.done ""> - -<!ENTITY ssl-observatory.prefs.explanation -""> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -""> - -<!ENTITY ssl-observatory.prefs.hide ""> - -<!ENTITY ssl-observatory.prefs.nonanon -""> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -""> - -<!ENTITY ssl-observatory.prefs.priv_dns -""> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -""> - -<!ENTITY ssl-observatory.prefs.show ""> - -<!ENTITY ssl-observatory.prefs.title ""> - -<!ENTITY ssl-observatory.prefs.use ""> -<!ENTITY ssl-observatory.warning.title ""> -<!ENTITY ssl-observatory.warning.showcert ""> -<!ENTITY ssl-observatory.warning.okay ""> -<!ENTITY ssl-observatory.warning.text ""> -<!ENTITY ssl-observatory.warning.defense ""> - -<!ENTITY ssl-observatory.prefs.self_signed -""> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -""> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sw/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sw/https-everywhere.dtd deleted file mode 100644 index 93d66ce..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sw/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancel"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sw/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sw/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sw/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sw/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sw/ssl-observatory.dtd deleted file mode 100644 index 69f1cfd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/sw/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/szl/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/szl/https-everywhere.dtd deleted file mode 100644 index 93d66ce..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/szl/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancel"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/szl/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/szl/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/szl/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/szl/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/szl/ssl-observatory.dtd deleted file mode 100644 index 69f1cfd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/szl/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ta/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ta/https-everywhere.dtd deleted file mode 100644 index 5e2ae2b..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ta/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "எல்லா இடங்களிலும் HTTPS பற்றி"> -<!ENTITY https-everywhere.about.ext_name "எல்லா இடங்களிலும் HTTPS"> -<!ENTITY https-everywhere.about.ext_description "வலை Encrypt! தானாகவே பல தளங்களில் HTTPS பாதுகாப்பு பயன்படுத்த."> -<!ENTITY https-everywhere.about.version "பதிப்பு"> -<!ENTITY https-everywhere.about.created_by "உருவாக்கப்பட்டது"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset நூலகர்கள்"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "நன்றிகள்"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "நீங்கள் எல்லா இடங்களிலும் HTTPS விரும்பினால், நீங்கள் பரிசீலிக்க வேண்டும்"> -<!ENTITY https-everywhere.about.donate_tor "Tor நன்கொடை"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "அல்லது"> -<!ENTITY https-everywhere.about.donate_eff "EFF நன்கொடை"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "எல்லா இடங்களிலும் HTTPS பற்றி"> -<!ENTITY https-everywhere.menu.observatory "SSL அவதான விருப்பங்கள்"> -<!ENTITY https-everywhere.menu.globalEnable "எல்லா இடங்களிலும் HTTPS செயலாக்கு"> -<!ENTITY https-everywhere.menu.globalDisable "எல்லா இடங்களிலும் HTTPS முடக்கு"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "காட்டு கருமபீடம்"> -<!ENTITY https-everywhere.menu.viewAllRules "அனைத்து விதிகள் காண்கவும்"> - -<!ENTITY https-everywhere.prefs.title "HTTPS எல்லா இடங்களிலும் விருப்பங்கள்"> -<!ENTITY https-everywhere.prefs.enable_all "அனைத்தும் செயலாக்கு"> -<!ENTITY https-everywhere.prefs.disable_all "அனைத்தும் முடக்கு"> -<!ENTITY https-everywhere.prefs.reset_defaults "இயல்புநிலைக்கு மீட்டமை"> -<!ENTITY https-everywhere.prefs.search "தேடு"> -<!ENTITY https-everywhere.prefs.site "தளம்"> -<!ENTITY https-everywhere.prefs.notes "குறிப்புகள்"> -<!ENTITY https-everywhere.prefs.list_caption "எந்த HTTPS திருப்பிவிடுதல் விதிகளை விண்ணப்பிக்க வேண்டும்?"> -<!ENTITY https-everywhere.prefs.enabled "இயக்கப்பட்டது"> -<!ENTITY https-everywhere.prefs.ruleset_howto "நீங்கள் உங்கள் சொந்த rulesets (பிற இணைய தளங்கள் ஆதரவு சேர்க்க) எழுத எப்படி அறிய முடியும்"> -<!ENTITY https-everywhere.prefs.here_link "இங்கே"> -<!ENTITY https-everywhere.prefs.toggle "மாற்று"> -<!ENTITY https-everywhere.prefs.reset_default "இயல்புநிலைக்கு மீட்டமை"> -<!ENTITY https-everywhere.prefs.view_xml_source "XML மூலத்தை காண"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "ரத்துசெய்"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ta/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ta/https-everywhere.properties deleted file mode 100644 index 86ed8dd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ta/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = எல்லா இடங்களிலும் HTTPS செயலாக்கு -https-everywhere.menu.globalDisable = எல்லா இடங்களிலும் HTTPS முடக்கு -https-everywhere.menu.enableDisable = விதிகளை செயலாக்கு / முடக்கு -https-everywhere.menu.noRules = (இந்த பக்கத்திற்க்கு விதிகள் இல்லை) -https-everywhere.menu.unknownRules = (இந்த பக்கத்திற்க்குரிய விதிகள் தெரியவில்லை) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ta/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ta/ssl-observatory.dtd deleted file mode 100644 index 03bba86..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ta/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "விவரங்கள் மற்றும் தனியுரிமை தகவல்கள்"> -<!ENTITY ssl-observatory.popup.later "பின்னர் என்னிடம் கேள்"> -<!ENTITY ssl-observatory.popup.no "இல்லை"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"HTTPS எல்லா இடங்களிலும் SSL அவதானத்தை பயன்படுத்த வேண்டும்?"> - -<!ENTITY ssl-observatory.popup.yes "சரி"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "அநாமதேயத்திற்க்கு Tor பயன்படுத்தி சான்றிதழ்களை சரிபார்க்கவும்"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"அநாமதேயத்திற்க்கு Tor பயன்படுத்தி சான்றிதழ்களை சரிபார்க்கவும் (Tor தேவைப்படுகிறது)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "முடிந்தது"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "மேம்பட்ட விருப்பங்களை மறை"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Tor இல்லை என்றாலும் சான்றிதழ்களை சரிபார்க்கவும்"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "மேம்பட்ட விருப்பங்களை காண்பி"> - -<!ENTITY ssl-observatory.prefs.title "SSL அவதான விருப்பங்கள்"> - -<!ENTITY ssl-observatory.prefs.use "அவதானத்தை பயன்படுத்தவும்?"> -<!ENTITY ssl-observatory.warning.title "EFF's SSL அவதானத்தில் இருந்து எச்சரிக்கை"> -<!ENTITY ssl-observatory.warning.showcert "சான்றிதழ் சங்கிலியை காட்டு"> -<!ENTITY ssl-observatory.warning.okay "நான் புரிந்துகொள்கிறேன்"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"சமர்ப்பித்து சுய நுழைவு சான்றிதழை சரிபார்க்க"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/te/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/te/https-everywhere.dtd deleted file mode 100644 index f97c482..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/te/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "ప్రతీచోటా HTTPS చేతనించు"> -<!ENTITY https-everywhere.menu.globalDisable "ప్రతీచోటా HTTPS అచేతనించు"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancel"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/te/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/te/https-everywhere.properties deleted file mode 100644 index c2c0043..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/te/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = ప్రతీచోటా HTTPS చేతనించు -https-everywhere.menu.globalDisable = ప్రతీచోటా HTTPS అచేతనించు -https-everywhere.menu.enableDisable = నియమాలను చేతనించు/అచేతనించు -https-everywhere.menu.noRules = (ఈ పుటకి నియమాలు లేవు) -https-everywhere.menu.unknownRules = (ఈ పుటకి ఏ నియమాలు ఉన్నాయో తెలియదు) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/te/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/te/ssl-observatory.dtd deleted file mode 100644 index 69f1cfd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/te/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/te_IN/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/te_IN/https-everywhere.dtd deleted file mode 100644 index 93d66ce..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/te_IN/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancel"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/te_IN/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/te_IN/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/te_IN/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/te_IN/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/te_IN/ssl-observatory.dtd deleted file mode 100644 index 7f7bed8..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/te_IN/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "కాదు "> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/templates/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/templates/https-everywhere.dtd deleted file mode 100644 index 93d66ce..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/templates/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancel"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/templates/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/templates/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/templates/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/templates/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/templates/ssl-observatory.dtd deleted file mode 100644 index 69f1cfd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/templates/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/tg/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/tg/https-everywhere.dtd deleted file mode 100644 index 93d66ce..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/tg/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancel"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/tg/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/tg/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/tg/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/tg/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/tg/ssl-observatory.dtd deleted file mode 100644 index 69f1cfd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/tg/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/th/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/th/https-everywhere.dtd deleted file mode 100644 index a777bb8..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/th/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "เกี่ยวกับ HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "เข้ารหัสเว็บ! ใช้ความปลอดภัย HTTPS โดยอัตโนมัติกับหลายเว็บไซต์"> -<!ENTITY https-everywhere.about.version "รุ่น"> -<!ENTITY https-everywhere.about.created_by "สร้างโดย"> -<!ENTITY https-everywhere.about.and ", และ"> -<!ENTITY https-everywhere.about.librarians "คลังกฎ"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "ขอบคุณ"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "ถ้าคุณชอบ HTTPS Everywhere คุณอาจลองพิจารณา"> -<!ENTITY https-everywhere.about.donate_tor "บริจาคให้กับ Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "หรือ"> -<!ENTITY https-everywhere.about.donate_eff "บริจาคให้กับ EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "เกี่ยวกับ HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "ปรับแต่งหอสำรวจ SSL"> -<!ENTITY https-everywhere.menu.globalEnable "เปิดใช้ HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "ปิดใช้ HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "บล็อคทุกคำขอที่ไม่ได้เข้ารหัส"> -<!ENTITY https-everywhere.menu.showCounter "แสดงตัวนับผู้ดู"> -<!ENTITY https-everywhere.menu.viewAllRules "ดูกติกาทั้งหมด"> - -<!ENTITY https-everywhere.prefs.title "ปรับแต่ง HTTPS Everywhere"> -<!ENTITY https-everywhere.prefs.enable_all "เปิดใช้ทั้งหมด"> -<!ENTITY https-everywhere.prefs.disable_all "ปิดใช้ทั้งหมด"> -<!ENTITY https-everywhere.prefs.reset_defaults "ล้างเป็นค่าตั้งต้น"> -<!ENTITY https-everywhere.prefs.search "ค้นหา"> -<!ENTITY https-everywhere.prefs.site "ไซต์"> -<!ENTITY https-everywhere.prefs.notes "โน้ต"> -<!ENTITY https-everywhere.prefs.list_caption "กฎ HTTPS redirection อันไหนที่ควรใช้?"> -<!ENTITY https-everywhere.prefs.enabled "เปิดใช้"> -<!ENTITY https-everywhere.prefs.ruleset_howto "คุณสามารถเรียนรู้วิธีการเขียนกฎเอง (เพื่อให้รองรับเว็บไซต์อื่นๆ เพิ่มขึ้น)"> -<!ENTITY https-everywhere.prefs.here_link "ที่นี่"> -<!ENTITY https-everywhere.prefs.toggle "สลับ"> -<!ENTITY https-everywhere.prefs.reset_default "คืนค่าเริ่มต้น"> -<!ENTITY https-everywhere.prefs.view_xml_source "ดูซอร์ส XML"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "แสดงแบบขั้นสูง"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "ยกเลิก"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/th/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/th/https-everywhere.properties deleted file mode 100644 index 100101d..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/th/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = เปิดใช้งาน HTTPS Everywhere -https-everywhere.menu.globalDisable = ปิดใช้งาน HTTPS Everywhere -https-everywhere.menu.enableDisable = เปิดใช้ / ปิดใช้กฎ -https-everywhere.menu.noRules = (ไม่มีกฎสำหรับหน้านี้) -https-everywhere.menu.unknownRules = (ไม่รู้จักกฎสำหรับหน้านี้) -https-everywhere.toolbar.hint = HTTPS Everywhere กำลังทำงาน คุณสามารถสลับมันให้ใช้กับเว็บไซต์หนึ่งเว็บไซต์ใดได้ โดยการคลิกไอคอนที่แถบที่อยู่ -https-everywhere.migration.notification0 = การปรับปรุงในครั้งนี้จะคืนค่าปรับแต่งของ HTTPS Everywhere กลับสู่ค่าเดิมเพื่อที่จะแก้ปัญหาที่สำคัญ -https-everywhere.menu.ruleset-tests = เริ่มการทดสอบกฎ HTTPS diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/th/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/th/ssl-observatory.dtd deleted file mode 100644 index 601b5b1..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/th/ssl-observatory.dtd +++ /dev/null @@ -1,103 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "รายละเอียดและข้อมูลความเป็นส่วนตัว"> -<!ENTITY ssl-observatory.popup.later "ถามฉันในภายหลัง"> -<!ENTITY ssl-observatory.popup.no "ไม่"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere สามารถตรวจจับการโจมตีเบราว์เซอร์ -โดยการส่งใบรับรองไปที่ Observatory -ต้องการหรือเปล่า?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"HTTPS Everywhere ควรใช้ SSL Observatory หรือไม่"> - -<!ENTITY ssl-observatory.popup.yes "ใช่"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"ปลอดภัยที่จะเปิดใช้งาน เว้นแต่ถ้าคุณใช้เครือข่ายขององค์กรที่ล่วงล้ำ"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"ปลอดภัย เว้นแต่ว่าคุณใช้เครือข่ายองค์กรที่มีชื่อเซิร์ฟเวอร์เป็นความลับ:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"ส่งข้อมูลและตรวจสอบใบรับรองที่ลงนามโดย Root CA ที่ไม่ใช่มาตรฐาน"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"ปลอดภัย (และเป็นความคิดที่ดี) ที่จะเปิดใช้งาน นอกจากถ้าคุณใช้เครือข่ายขององค์กรที่ล่วงล้ำ หรือ ใช้ซอฟท์แวร์Kaspersky antivirusที่ติดตามการท่องเว็บของคุณผ่านพร็อกซี TLS และ หน่วยงานออกใบรับรองส่วนตัว การเปิดใช้งานในเครือข่ายประเภทนี้อาจเผยแพร่หลักฐานของเว็บไซท์ https ที่ผ่านพร็อกซีเนื่องจากใบรับรองที่ไม่ซ้ำกันที่ถูกผลิตออกมา เพราะฉนั้นจะปิดไว้โดยปริยาย"> - -<!ENTITY ssl-observatory.prefs.anonymous "ตรวจสอบใบรับรองโดยใช้ Tor เพื่อรักษาความเป็นนิรนาม"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"ตรวจสอบใบรับรองโดยใช้ Tor เพื่อรักษาความเป็นนิรนาม (ต้องใช้ Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"ตัวเลือกนี้ต้องใช้ Tor ที่ติดตั้งและใช้งานได้"> - -<!ENTITY ssl-observatory.prefs.asn -"เมื่อเห็นใบรับรองใหม่ ให้บอก Observatory ด้วยว่าคุณใช้ไอเอสพีรายไหนอยู่"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"ตัวเลือกนี้จะเก็บและส่งข้อมูล "หมายเลขระบบอัตโนมัติ" ของเครื่อข่ายคุณ ซึ่งจะช่วยให้เราระบุตำแหน่งการโจมตี HTTPS และตรวจสอบว่าเราพบความเคลื่อนไหวจากเครือข่ายในสถานที่เช่นอิหร่านและซีเรีย ซึ่งการโจมตีเครือข่ายเป็นเรื่องปกติหรือไม่"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"แสดงคำเตือนเมื่อ Observatory พบการเพิกถอนใบรับรองซึ่งตรวจไม่พบโดยเว็บบราว์เซอร์"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"ตรวจสอบใบรับรองที่ส่งมาแทนการตรวจสอบใน Certificate Revocation Lists -น่าเสียดายที่เราไม่สามารถรับรองได้ว่าทุกใบรับรองได้ทำเครื่องหมายเพิกถอนถูกต้องทั้งหมด แต่หากท่านอ่านคำเตือนจะช่วยให้ตรวจสอบความผิดปกติได้"> - -<!ENTITY ssl-observatory.prefs.done "เสร็จสิ้น"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere ใช้ SSL Observatory ของ EFF ซึ่งทำสองอย่าง -(1) -ส่งใบรับรอง HTTPS ไปที่ Observatory เพื่อที่จะช่วยตรวจจับ 'การโจมตีแบบคนกลาง' เพิ่มความปลอดภัยของเว็บ และ -(2) -ให้เราเตือนคุณเกี่ยวกับการเชื่อมต่อที่ไม่ปลอดภัยหรือการโจมตีเบราว์เซอร์ของคุณ"> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"ตัวอย่างเช่น ถ้าคุณเปิดเว็บไซท์ https://www.something.com ใบรับรอง -ที่ได้รับโดย Observatory จะบ่งบอกถึงการที่มีใครได้เปิด -www.something.com แต่ไม่ใช่ใครเปิด หรือว่าเขากำลังดูหน้า -ไหนอยู่ -เลื่อนเม้าส์ไปไว้บนตัวเลือกเพื่ออ่านรายละเอียด:"> - -<!ENTITY ssl-observatory.prefs.hide "ซ่อนตัวเลือกชั้นสูง"> - -<!ENTITY ssl-observatory.prefs.nonanon -"ตรวจสอบใบรับรองแม้ Tor จะใช้ไม่ได้"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"เราจะพยายามให้ข้อมูลคงความเป็นนิรนาม แต่ตัวเลือกนี้จะปลอดภัยน้อยกว่า"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"ส่งและตรวจสอบใบรับรองสำหรับชื่อ DNS ที่ไม่เป็นสาธารณะ"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"ถ้าตัวเลือกนี้ไม่ได้ถูกเลือก ทาง Observatory จะไม่ทำการบันทึกใบรับรองสำหรับชื่อที่หาไม่ได้ผ่านระบบ DNS"> - -<!ENTITY ssl-observatory.prefs.show "แสดงตัวเลือกชั้นสูง"> - -<!ENTITY ssl-observatory.prefs.title "ปรับแต่งหอสำรวจ SSL"> - -<!ENTITY ssl-observatory.prefs.use "ใช้ Observatory?"> -<!ENTITY ssl-observatory.warning.title "คำเตือนจาก SSL Observatory ของ EFF"> -<!ENTITY ssl-observatory.warning.showcert "แสดงห่วงโซ่ใบรับรอง"> -<!ENTITY ssl-observatory.warning.okay "ฉันเข้าใจ"> -<!ENTITY ssl-observatory.warning.text "SSL Observatory ของ EFF ได้ออกคำเตือนเกี่ยวกับใบรองรับ HTTPS ของไซต์นี้:"> -<!ENTITY ssl-observatory.warning.defense "ถ้าเข้าสู่เว็บไซต์นี้ ขอแนะนำให้เปลี่ยนรหัสผ่านเพื่อให้เชื่อมต่อได้ปลอดภัย (สามารถปิดคำเตือนนี้ได้ที่แท็ป "SSL Observatory" ของเมนู HTTP Everyware)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"ส่งข้อมูลและตรวจสอบใบรับรองที่เซ็นรับรองตัวเอง"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"ขอแนะนำ ปัญหาเรื่องการลงรหัสจะเกิดขึ้นในอุปกรณ์ที่เซ็นรับรองตัวเอง"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ti/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ti/https-everywhere.dtd deleted file mode 100644 index 93d66ce..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ti/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancel"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ti/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ti/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ti/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ti/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ti/ssl-observatory.dtd deleted file mode 100644 index 69f1cfd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ti/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/tk/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/tk/https-everywhere.dtd deleted file mode 100644 index 93d66ce..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/tk/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancel"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/tk/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/tk/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/tk/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/tk/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/tk/ssl-observatory.dtd deleted file mode 100644 index 69f1cfd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/tk/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/tl_PH/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/tl_PH/https-everywhere.dtd deleted file mode 100644 index bf9eaf8..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/tl_PH/https-everywhere.dtd +++ /dev/null @@ -1,56 +0,0 @@ -<!ENTITY https-everywhere.about.title "Tungkol sa HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "Tungkol sa HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockHttpRequests "Block all HTTP requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Hanapin"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancel"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/tl_PH/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/tl_PH/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/tl_PH/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/tl_PH/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/tl_PH/ssl-observatory.dtd deleted file mode 100644 index 69f1cfd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/tl_PH/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/tr/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/tr/https-everywhere.dtd deleted file mode 100644 index 5082172..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/tr/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "HTTPS Everywhere Hakkında"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Web iletişiminizi şifreleyin! Birçok sitede otomatik olarak HTTPS güvenliğini kullanın."> -<!ENTITY https-everywhere.about.version "Sürüm"> -<!ENTITY https-everywhere.about.created_by "Oluşturan"> -<!ENTITY https-everywhere.about.and ", ve"> -<!ENTITY https-everywhere.about.librarians "Kural Kümesi Kitaplıkları"> -<!ENTITY https-everywhere.about.add_new_rule "Kural Ekle"> -<!ENTITY https-everywhere.about.thanks "Teşekkürler"> -<!ENTITY https-everywhere.about.many_contributors "Şu kişilerin yer aldığı birçok katılımcı"> -<!ENTITY https-everywhere.about.noscript "Ek olarak, bazı HTTPS Everywhere bölümleri Giorgio Maone ve diğerleri tarafından yazılmış NoScript kodlarına dayanmaktadır. Harika katkıları için minnettarız!"> -<!ENTITY https-everywhere.about.contribute "HTTPS Everywhere'i beğendiyseniz"> -<!ENTITY https-everywhere.about.donate_tor "Tor'a"> -<!ENTITY https-everywhere.about.tor_lang_code "tr"> -<!ENTITY https-everywhere.about.or "ya da"> -<!ENTITY https-everywhere.about.donate_eff "EFF'ye bağışta bulunun"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "EFF projesine bağış yapın"> -<!ENTITY https-everywhere.menu.about "HTTPS Everywhere Hakkında"> -<!ENTITY https-everywhere.menu.observatory "SSL Gözlemcisi Ayarları"> -<!ENTITY https-everywhere.menu.globalEnable "HTTPS Everywhere'i Etkinleştir"> -<!ENTITY https-everywhere.menu.globalDisable "HTTPS Everywhere'i Devre Dışı Bırak"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Şifrelenmemiş tüm istekleri engelle"> -<!ENTITY https-everywhere.menu.showCounter "Sayacı Görüntüle"> -<!ENTITY https-everywhere.menu.viewAllRules "Tüm Kuralları Görüntüle"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Ayarları"> -<!ENTITY https-everywhere.prefs.enable_all "Tümünü Etkinleştir"> -<!ENTITY https-everywhere.prefs.disable_all "Tümünü Devre Dışı Bırak"> -<!ENTITY https-everywhere.prefs.reset_defaults "Varsayılanları Yükle"> -<!ENTITY https-everywhere.prefs.search "Ara"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notlar"> -<!ENTITY https-everywhere.prefs.list_caption "Hangi HTTPS yeniden yönlendirme kuralları uygulanmalı?"> -<!ENTITY https-everywhere.prefs.enabled "Etkinleştirildi"> -<!ENTITY https-everywhere.prefs.ruleset_howto "Kendi kural kümelerinizi nasıl yazabileceğinizi öğrenebilirsiniz (diğer web sitelerini desteklemek için)"> -<!ENTITY https-everywhere.prefs.here_link "buradan"> -<!ENTITY https-everywhere.prefs.toggle "Geçiş"> -<!ENTITY https-everywhere.prefs.reset_default "Varsayılanı Yükle"> -<!ENTITY https-everywhere.prefs.view_xml_source "XML Kaynağını Görüntüle"> - -<!ENTITY https-everywhere.chrome.stable_rules "Kararlı kurallar"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Şu web siteleri için şifreli bağlantı dayatılsın:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Deneysel kurallar"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "Uyarı ve sorunlara yol açabilir. Varsayılan olarak devre dışıdır."> -<!ENTITY https-everywhere.chrome.add_rule "Bu site için bir kural ekleyin"> -<!ENTITY https-everywhere.chrome.add_new_rule "Bu site için yeni bir kural ekleyin"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Bu sunucu için herzaman HTTPS kullanılsın"> -<!ENTITY https-everywhere.chrome.host "Sunucu:"> -<!ENTITY https-everywhere.chrome.show_advanced "Gelişmiş seçenekleri göster"> -<!ENTITY https-everywhere.chrome.hide_advanced "Gelişmiş seçenekleri gizle"> -<!ENTITY https-everywhere.chrome.rule_name "Kural adı"> -<!ENTITY https-everywhere.chrome.regex "Eşleşen kurallı ifade"> -<!ENTITY https-everywhere.chrome.redirect_to "Şuraya yönlendir"> -<!ENTITY https-everywhere.chrome.status_cancel_button "İptal"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/tr/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/tr/https-everywhere.properties deleted file mode 100644 index 4e96550..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/tr/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = HTTPS Everywhere'i Etkinleştir -https-everywhere.menu.globalDisable = HTTPS Everywhere'i Devre Dışı Bırak -https-everywhere.menu.enableDisable = Kuralları Etkinleştir / Devre Dışı Bırak -https-everywhere.menu.noRules = (Bu Sayfa için Kural Yok) -https-everywhere.menu.unknownRules = (Bu Sayfanın Kuralları Bilinmiyor) -https-everywhere.toolbar.hint = HTTPS Everywhere kullanılıyor. Adres çubuğundaki simgeye tıklayarak istediğiniz siteler için açıp kapatabilirsiniz. -https-everywhere.migration.notification0 = Bu güncelleme, önemli bir düzeltmeyi uygulamak için HTTPS Everywhere kural ayarlarınızı varsayılan değerlerine sıfırlar. -https-everywhere.menu.ruleset-tests = HTTPS Everywhere Kural Kümesi Sınamalarını Çalıştır diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/tr/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/tr/ssl-observatory.dtd deleted file mode 100644 index a35e6d9..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/tr/ssl-observatory.dtd +++ /dev/null @@ -1,100 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Ayrıntılar ve Gizlilik Bilgileri"> -<!ENTITY ssl-observatory.popup.later "Daha Sonra Sor"> -<!ENTITY ssl-observatory.popup.no "Hayır"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere tarayıcınıza karşı -yapılacak saldırıları gönderip aldığınız sertifikaları gözlemleyerek -algılayabilir. Bu özellik etkinleştirilsin mi?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"HTTPS Everywhere SSL Gözlemcisi kullanılsın mı?"> - -<!ENTITY ssl-observatory.popup.yes "Evet"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"Çok kısıtlayıcı bir kurumsal ağ kullanmıyorsanız, -bu seçeneği etkinleştirmek güvenlidir."> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Güvenli, gizli yerel ağ sunucu adları bulunan bir kurumsal ağ kullanmadığınız sürece:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Standart dışı kök otorite tarafından imzalanmış sertifikaları gönder ve denetle"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"TLS vekil sunucu ya da özel bir kök Sertifika Otoritesi ile İnternet gezintilerini gözlemleyebilen Kaspersky antivirüs yazılımı ya da sıkı güvenlikli bir kurumsal ağ kullanmıyorsanız bu özelliği etkinleştirmek güvenlidir (ve akıllıca). Sıkı güvenlikli bir ağ kullanıyorsanız, bu seçenek eşsiz sertifikalar oluşturduğundan, vekil sunucu üzerinden hangi https:// adreslerine eriştiğiniz kanıtlanır. Bu nedenle bu seçenek varsayılan olarak kapalıdır."> - -<!ENTITY ssl-observatory.prefs.anonymous "Gizlilik için Tor kullanılırken sertifikalar denetlensin"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Gizlilik için Tor kullanılırken sertifikalar denetlensin (Tor gereklidir)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"Bu özellik için Tor yüklenmiş ve çalışıyor olmalıdır"> - -<!ENTITY ssl-observatory.prefs.asn -"Yeni bir sertifika görüldüğünde, Gözlemciye hangi ISS üzerinden bağlandığım bildirilsin"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"Bu ağın "Özerk Sistem numarası" alınarak gönderilecek. Böylece HTTPS karşıtı saldırıların yerel olarak belirlenerek, İran ve Suriye gibi saldırıların sıklıkla görüldüğü yerlerin gözlenmesine yardımcı olacaktır."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Gözlemci, tarayıcı tarafından yakalanamayan geçersiz bir sertifika algıladığında uyarı görüntülesin"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"Bu özellik, gönderilen sertifikaları bilinen Sertifika İptal Listeleri ile denetler. Maalesef iptal edilmiş her sertifikayı işaretlemiş olduğumuzu söyleyemeyiz. Ancak bir uyarı görüyorsanız, bir şeyler yanlış demektir."> - -<!ENTITY ssl-observatory.prefs.done "Tamamlandı"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere EFF SSL Gözlemcisini kullanır. Gözlemci iki işlem yapar: (1) -HTTPS sertifikalarının kopyalarını Gözlemci üzerine yollar. Böylece saldırıya uğrayan kişilere yardım ederek Web güvenliğini geliştirebiliriz; ve (2) -güvensiz bağlantı ya da saldırılar hakkında uyarılar yayınlayabiliriz."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"Örneğin, https://www.websitesi.com adresine bakıldığında Gözlemci tarafından -alınan sertifika birinin www.websitesi.com adresini ziyaret ettiğini gösterir -ancak kimin ziyaret ettiğini ya da hangi sayfalara baktığını göstermez. -Ayrıntılı bilgiler için fareyi seçeneklerin üzerinde dolaştırın:"> - -<!ENTITY ssl-observatory.prefs.hide "Gelişmiş ayarları gizle"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Tor kullanılmıyorsa bile sertifikalar denetlensin"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"Verileri anonim tutmaya çalışıyoruz, ama bu özellik daha az güvenli"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Herkese açık olmayan DNS adlarının sertifikalarını da gönder ve denetle"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Bu seçenek işaretlenmediği sürece, Gözlemci DNS sistemleri üzerinden çözümleyemediği sertifika adlarını kaydetmez."> - -<!ENTITY ssl-observatory.prefs.show "Gelişmiş ayarları görüntüle"> - -<!ENTITY ssl-observatory.prefs.title "SSL Gözlemcisi Ayarları"> - -<!ENTITY ssl-observatory.prefs.use "Gözlemci kullanılsın mı?"> -<!ENTITY ssl-observatory.warning.title "EFF SSL Gözlemcisinden UYARI"> -<!ENTITY ssl-observatory.warning.showcert "Sertifika zincirini görüntüle"> -<!ENTITY ssl-observatory.warning.okay "Anladım"> -<!ENTITY ssl-observatory.warning.text "EFF SSL Gözlemcisi bu sitenin HTTPS sertifikası(ları) ile ilgili bir uyarı veriyor:"> -<!ENTITY ssl-observatory.warning.defense "Bu sitede oturum açtıysanız, güvenli bir bağlantı kurduktan sonra parolanızı değiştirmeniz önerilebilir (Bu uyarılar HTTPS Everywhere ayarları bölümündeki "SSL Gözlemcisi" sekmesinden devre dışı bırakılabilir)."> - -<!ENTITY ssl-observatory.prefs.self_signed -"Kendinden imzalı sertifikaları gönder ve denetle"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"Bu özelliğin etkinleştirilmesi önerilir. Özellikle kendinden imzalanmış gömülü aygıtlarda şifreleme sorunları vardır"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/tzm/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/tzm/https-everywhere.dtd deleted file mode 100644 index 93d66ce..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/tzm/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancel"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/tzm/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/tzm/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/tzm/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/tzm/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/tzm/ssl-observatory.dtd deleted file mode 100644 index 69f1cfd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/tzm/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ug@Arab/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ug@Arab/https-everywhere.dtd deleted file mode 100644 index 34fb6ff..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ug@Arab/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "HTTPS Everywhere عن"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "اصدار"> -<!ENTITY https-everywhere.about.created_by "انشئ بواسطة"> -<!ENTITY https-everywhere.about.and "و,"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Torالتبرع لـ"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "أو"> -<!ENTITY https-everywhere.about.donate_eff "EFFالتبرع لـ"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "EFFتبرع لـ"> -<!ENTITY https-everywhere.menu.about "HTTPS Everywhere عن"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "بحث"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "اغلاق"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ug@Arab/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ug@Arab/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ug@Arab/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ug@Arab/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ug@Arab/ssl-observatory.dtd deleted file mode 100644 index c1cbc6c..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ug@Arab/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "التفاصيل و معلومات الخصوصية"> -<!ENTITY ssl-observatory.popup.later "أسألني لاحقا"> -<!ENTITY ssl-observatory.popup.no "لا"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "نعم"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "انتهى"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "أفهم ذلك"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/uk/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/uk/https-everywhere.dtd deleted file mode 100644 index ed6d4a9..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/uk/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "Про HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Зашифруйте Web! Автоматично застосовуйте безпеку HTTPS на великой кількістью сайтів."> -<!ENTITY https-everywhere.about.version "Версія"> -<!ENTITY https-everywhere.about.created_by "Створенно"> -<!ENTITY https-everywhere.about.and ", і"> -<!ENTITY https-everywhere.about.librarians "Хранителі правил"> -<!ENTITY https-everywhere.about.add_new_rule "Додати нове правило"> -<!ENTITY https-everywhere.about.thanks "Завдяки"> -<!ENTITY https-everywhere.about.many_contributors "Багато-багато учасників, у тому числі: "> -<!ENTITY https-everywhere.about.noscript "Також частинки HTTPS Everywhere базуються на коді з NoScript авторства Джороджіо Маоне та інших. Дякуємо за їхню чудову роботу!"> -<!ENTITY https-everywhere.about.contribute "Якщо Вам подобається HTTPS Everywhere, можливо, Ви хотіли б зробити"> -<!ENTITY https-everywhere.about.donate_tor "Пожертвуйте Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "або"> -<!ENTITY https-everywhere.about.donate_eff "Пожертвування EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Зробити пожертву EFF"> -<!ENTITY https-everywhere.menu.about "Про HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "Налаштування SSL Observatory"> -<!ENTITY https-everywhere.menu.globalEnable "Увімкнути HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Вимкнути HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Блокувати всі незашифровані запити"> -<!ENTITY https-everywhere.menu.showCounter "Показати Лічильник"> -<!ENTITY https-everywhere.menu.viewAllRules "Переглянути всі правила"> - -<!ENTITY https-everywhere.prefs.title "Налаштування HTTPS Everywhere"> -<!ENTITY https-everywhere.prefs.enable_all "Увімкнути все"> -<!ENTITY https-everywhere.prefs.disable_all "Вимкнути все"> -<!ENTITY https-everywhere.prefs.reset_defaults "Скинути до типових"> -<!ENTITY https-everywhere.prefs.search "Пошук"> -<!ENTITY https-everywhere.prefs.site "Сайт"> -<!ENTITY https-everywhere.prefs.notes "Примітка"> -<!ENTITY https-everywhere.prefs.list_caption "Які правила перенаправлень слід використовувати?"> -<!ENTITY https-everywhere.prefs.enabled "Увімкнено"> -<!ENTITY https-everywhere.prefs.ruleset_howto "Керівництво по створенню нових правил (для нових сайтів) знаходиться"> -<!ENTITY https-everywhere.prefs.here_link "тут"> -<!ENTITY https-everywhere.prefs.toggle "Перемкнути"> -<!ENTITY https-everywhere.prefs.reset_default "Скинути до типових значень"> -<!ENTITY https-everywhere.prefs.view_xml_source "Переглянути джерело XML"> - -<!ENTITY https-everywhere.chrome.stable_rules "Стабільні правила"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Примусово створювати зашифровані з'єдання до цих веб-сайтів: "> -<!ENTITY https-everywhere.chrome.experimental_rules "Експериментальні правила"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "Може спричинити попередження чи поломку. Вимкнено за замовчуванням."> -<!ENTITY https-everywhere.chrome.add_rule "Додати правило для цього сайту"> -<!ENTITY https-everywhere.chrome.add_new_rule "Додати нове правило для нового сайту"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Завжди використовувати https для цього хоста"> -<!ENTITY https-everywhere.chrome.host "Хост:"> -<!ENTITY https-everywhere.chrome.show_advanced "Показати розширені"> -<!ENTITY https-everywhere.chrome.hide_advanced "Сховати розширені"> -<!ENTITY https-everywhere.chrome.rule_name "Ім'я правила"> -<!ENTITY https-everywhere.chrome.regex "Підходящий регулярний вираз"> -<!ENTITY https-everywhere.chrome.redirect_to "Перенаправити на"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Скасувати"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/uk/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/uk/https-everywhere.properties deleted file mode 100644 index 719a39f..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/uk/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Увімкнути HTTPS Everywhere -https-everywhere.menu.globalDisable = Вимкнути HTTPS Everywhere -https-everywhere.menu.enableDisable = Увімкнути / Вимкнути правила -https-everywhere.menu.noRules = (немає правил для цієї сторінки) -https-everywhere.menu.unknownRules = (Правила для цієї сторінки невідомі) -https-everywhere.toolbar.hint = HTTPS Everywhere тепер активний. Ви можете його вимкнути, натиснувши на іконку на адресній панелі. -https-everywhere.migration.notification0 = Для реалізації критичних виправлень, це оновлення скине Ваші налаштування HTTPS Everywhere до значень за замовчуванням. -https-everywhere.menu.ruleset-tests = Запустити тести для правил HTTPS Everywhere diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/uk/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/uk/ssl-observatory.dtd deleted file mode 100644 index eeeba73..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/uk/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Детальна інформація та відомості про конфіденційність"> -<!ENTITY ssl-observatory.popup.later "Запитати пізніше"> -<!ENTITY ssl-observatory.popup.no "Ні"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere може розпізнавати атаки на Ваш браузер, -відправляючи сертифікати, що Ви отримуєте у Observatory. -Увімкнути дану опцію?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Чи повинен HTTPS Everywhere використовувати SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Так"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"Увімкнення цієї опції є безпечним, крім випадків -використання дуже нав'язливої корпоративної мережі:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Безпечно, крім випадку коли Ви використовуєте корпоративну мережу з секретними іменами серверів:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Відправити і перевірити сертифікати, підписані нестандартними кореневими центрами сертифікації"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"Увімкнення цієї опції є безпечним (і гарна ідея), якщо Ви не використовуєте нав'язливу корпоративну мережу або антивірусне програмне забезпечення Kaspersky, яке контролює Ваш перегляд через TLS проксі та приватного кореневого Центру Сертифікації. Якщо вона буде увімкнена в такій мережі, ця опція може публікувати докази, які https:// домени були відвідані через цей проксі, через унікальні сертифікати, які він буде видавати. Отже типово, ми залишаємо її вимкненою."> - -<!ENTITY ssl-observatory.prefs.anonymous "Перевірити сертифікати використовувані Tor для анонімності"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Перевірити сертифікати використовувані Tor для анонімності (вимагає Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"Ця опція вимагає наявності встановленого та включеного Tor."> - -<!ENTITY ssl-observatory.prefs.asn -"При отриманні нового сертифікату, повідомити Observatory до якого провайдера Ви підключені"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"Буде отримувати і відправити "Номер Автономної Системи" Вашої мережі. Це допоможе нам локалізувати напади проти HTTPS і визначити наявність спостережень для мереж в таких місцях, як Іран і Сирія, де атаки є порівняно поширеним явищем."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Показувати попередження, коли Observatory виявляє відкликаний сертифікат, що не був перехоплений у Вашому браузері."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"Подані сертифікати будуть перевірятися у списку відомих відкликаних сертифікатів. На жаль, ми не гарантуємо, що зможемо маркувати кожен відкликаний сертифікат, але якщо Ви бачите попередження це свідчить про наявність проблем."> - -<!ENTITY ssl-observatory.prefs.done "Готово"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere може використовувати EFF SSL Observatory. Це робить дві речі: (1) -надсилає копії HTTPS сертифікатів до Observatory, щоб допомогти нам -виявити атаки "людина посередині" та підвищити безпеку користувачів, а також (2) -дозволяє нам попередити Вас про небезпечні з'єднання або атаки на Ваш браузер."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"Наприклад, коли Ви відвідуєте https://www.something.com, сертифікат -отриманий Observatory покаже, що хтось побував на www.something.com, -але не покаже хто зайшов на сайт, або які конкретні сторінки він -переглядав. Наведіть курсор миші для отримання більш докладної інформації:"> - -<!ENTITY ssl-observatory.prefs.hide "Приховати додаткові опції"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Перевіряти сертифікати навіть якщо Tor недоступний"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"Ми як і раніше будемо намагатися зберегти дані анонімними, але цей варіант менш безпечний"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Відправити і перевірити сертифікати для непублічних DNS імен"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Якщо ця опція вимкнена, Observatory не записуватиме сертифікати для імен, які він не зможе визначити через DNS."> - -<!ENTITY ssl-observatory.prefs.show "Показати додаткові опції"> - -<!ENTITY ssl-observatory.prefs.title "Налаштування SSL Observatory"> - -<!ENTITY ssl-observatory.prefs.use "Використовувати SSL Observatory?"> -<!ENTITY ssl-observatory.warning.title "ПОПЕРЕДЖЕННЯ від SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Показати ланцюг сертифікатів"> -<!ENTITY ssl-observatory.warning.okay "Я розумію"> -<!ENTITY ssl-observatory.warning.text "EFF SSL Observatory видав попередження для HTTPS сертифікат(-а/-ів) для цього сайту:"> -<!ENTITY ssl-observatory.warning.defense "Якщо Ви увійшли на цей сайті, може бути доцільним змінити пароль, як тільки Ви матимете безпечне з'єднання. (Ці попередження можна вимкнути у вкладці "SSL Observatory" у діалоговому вікні HTTPS Everywhere.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Відправити і перевірити самопідписуючі сертифікати"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"Це рекомендується; криптографічні проблеми особливо поширені в самопідписуючих вбудованих пристроях"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ur/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ur/https-everywhere.dtd deleted file mode 100644 index de9a97d..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ur/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "ہائپر ٹیکسٹ ٹرانسفر پروٹوکول سکیور ہر جگہ (HTTPS Everywhere) کے بارے میں "> -<!ENTITY https-everywhere.about.ext_name "ہائپر ٹیکسٹ ٹرانسفر پروٹوکول سکیور ہر جگہ "> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "ورژن"> -<!ENTITY https-everywhere.about.created_by "یه سافٹ ویئر بنانے والے:"> -<!ENTITY https-everywhere.about.and "، اور"> -<!ENTITY https-everywhere.about.librarians "رولسیٹ لیبراریانس (Ruleset Librarians)"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "ان کی شرکت کے لئے شکریہ:"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "آپ کو اگر HTTPS everywhere سافٹ ویئر پسند آیا ہے، پھر یے سافٹ ویئر بھی دیکھیں"> -<!ENTITY https-everywhere.about.donate_tor "طور کو بخشیش دیجیے"> -<!ENTITY https-everywhere.about.tor_lang_code "انگریزی"> -<!ENTITY https-everywhere.about.or "یا"> -<!ENTITY https-everywhere.about.donate_eff "EEF کو بخشیش دیجیے"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "ہائپر ٹیکسٹ پروٹوکول ہر جگہ (HTTPS Everywhere) کے بارے میں "> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "شروع کرئیں"> -<!ENTITY https-everywhere.menu.globalDisable "بند کرئیں"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "کاؤنٹر دکھائیں"> -<!ENTITY https-everywhere.menu.viewAllRules "تمام قانون دکھائیں"> - -<!ENTITY https-everywhere.prefs.title "ہائپر ٹیکسٹ ٹرانسفر پروٹوکول سکیور ہر جگہ کی سیٹنگز"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "ڈھونڈیں"> -<!ENTITY https-everywhere.prefs.site "ویب سائٹ"> -<!ENTITY https-everywhere.prefs.notes "خط"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "XML سورس دیکھیں"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "تنسیخ کیجیے"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ur/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ur/https-everywhere.properties deleted file mode 100644 index 15a1f3a..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ur/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = شروع کرئیں -https-everywhere.menu.globalDisable = بند کرئیں -https-everywhere.menu.enableDisable = کانوں شروع/بند کرئیں -https-everywhere.menu.noRules = (اس پیج کے لئے کوہی کانوں نہیں ہیں) -https-everywhere.menu.unknownRules = (اس پیج کے کانوں نہیں پتا) -https-everywhere.toolbar.hint = HTTPS ہر جگہہ شروع ہو گیا ہے. آپ شروع اور بند کر سک تے ہیں سائٹ کے مطابق -https-everywhere.migration.notification0 = HTTPS ہر جگہہ اپ ڈیٹ کیوجہ سے آپ کی سیٹنگز ریسٹ کر رہا ہیں. -https-everywhere.menu.ruleset-tests = HTTPS ہر جگہہ کے کانوں کے آزمائش شروع کرئیں diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ur/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ur/ssl-observatory.dtd deleted file mode 100644 index 22ae860..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ur/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "تفصیلات اور ذاتی معلومات"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "نہیں"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "جی ہاں"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ur_PK/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ur_PK/https-everywhere.dtd deleted file mode 100644 index c436e56..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ur_PK/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "ہائپر ٹیکسٹ ٹرانسفر پروٹوکول سکیور ہر جگہ (HTTPS Everywhere) کے بارے میں "> -<!ENTITY https-everywhere.about.ext_name "ہائپر ٹیکسٹ ٹرانسفر پروٹوکول سکیور ہر جگہ "> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "ورژن"> -<!ENTITY https-everywhere.about.created_by "یه سافٹ ویئر بنانے والے:"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "رولسیٹ لیبراریانس (Ruleset Librarians)"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "ان کی شرکت کے لئے شکریہ:"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "آپ کو اگر HTTPS everywhere سافٹ ویئر پسند آیا ہے، پھر یے سافٹ ویئر بھی دیکھیں"> -<!ENTITY https-everywhere.about.donate_tor "طور کو بخشیش دیجیے"> -<!ENTITY https-everywhere.about.tor_lang_code "انگریزی"> -<!ENTITY https-everywhere.about.or "یا"> -<!ENTITY https-everywhere.about.donate_eff "EEF کو عطیہ دیجیے"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "ہائپر ٹیکسٹ ٹرانسفر پروٹوکول سکیور ہر جگہ (HTTPS Everywhere) کے بارے میں "> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "شروع کرئیں"> -<!ENTITY https-everywhere.menu.globalDisable "بند کرئیں"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "کاؤنٹر دکھائیں"> -<!ENTITY https-everywhere.menu.viewAllRules "تمام قانون دکھائیں"> - -<!ENTITY https-everywhere.prefs.title "ہائپر ٹیکسٹ ٹرانسفر پروٹوکول سکیور ہر جگہ کی سیٹنگز"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "ڈھونڈیں"> -<!ENTITY https-everywhere.prefs.site "ویب سائٹ"> -<!ENTITY https-everywhere.prefs.notes "خط"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "XML سورس دیکھیں"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "منسوخ"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ur_PK/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ur_PK/https-everywhere.properties deleted file mode 100644 index 61bf6b0..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ur_PK/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = HTTPS ہرجگہ شروع کریں۔ -https-everywhere.menu.globalDisable = HTTPS ہر جگہ ناکارہ کریں۔ -https-everywhere.menu.enableDisable = قوانین شروع/بند کریں -https-everywhere.menu.noRules = (اس صفحہ کے لئے کوئی قوانین نہیں ہیں) -https-everywhere.menu.unknownRules = (اسصفحہ کے قوانین کا نہیں پتا) -https-everywhere.toolbar.hint = HTTPS ہر جگہہ شروع ہو گیا ہے. آپ شروع اور بند کر سک تے ہیں سائٹ کے مطابق -https-everywhere.migration.notification0 = HTTPS ہر جگہہ اپ ڈیٹ کیوجہ سے آپ کی سیٹنگز ریسٹ کر رہا ہیں. -https-everywhere.menu.ruleset-tests = HTTPS ہر جگہہ کے کانوں کے آزمائش شروع کرئیں diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ur_PK/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ur_PK/ssl-observatory.dtd deleted file mode 100644 index 827912f..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ur_PK/ssl-observatory.dtd +++ /dev/null @@ -1,100 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "تفصیلات اور خلوت کی معلومات"> -<!ENTITY ssl-observatory.popup.later "مجھ سے بعد میں پوچھیے۔"> -<!ENTITY ssl-observatory.popup.no "نہیں"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "ہاں"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"اسے مجاز بنانا محفوظ ہے، جب تک کہ آپ نہایت دخل انداز مشترکہ نظام استعمال نہ کریں۔"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"محفوظ ہے، جب تک آپ مشترکہ نظام خفیہ انٹرانیٹ سرور کے ساتھ استعمال کریں۔"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "گمنامی کے لیے ٹور کو استعمال کرتے ہوئے اسناد کی تصدیق کریں۔"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"گمنامی کے لیے ٹور کو استعمال کرتے ہوئے اسناد کی تصدیق کریں(ٹور درکار ہے)۔"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"اس انتخاب کے لیے ٹور کا انسٹال ہونا اور چالو ہونا ضروری ہے۔"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "مکمل ہوگیا"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "مزید انتخابات کو چُھپائیے۔"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "ایڈوانس آپشنز ظاہر کیجیے"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "میں سمجھ گیا۔"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/uz/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/uz/https-everywhere.dtd deleted file mode 100644 index 9bab1e5..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/uz/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Bekor qilish"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/uz/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/uz/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/uz/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/uz/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/uz/ssl-observatory.dtd deleted file mode 100644 index b2cbd2f..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/uz/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "Yo'q"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Ha"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Bajarildi"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ve/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ve/https-everywhere.dtd deleted file mode 100644 index 93d66ce..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ve/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancel"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ve/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ve/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ve/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ve/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ve/ssl-observatory.dtd deleted file mode 100644 index 69f1cfd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/ve/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/vi/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/vi/https-everywhere.dtd deleted file mode 100644 index c88019c..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/vi/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "Về HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Mã hóa Web! Tự động sử dụng bảo mật HTTPS ở nhiều trang web."> -<!ENTITY https-everywhere.about.version "Phiên bản"> -<!ENTITY https-everywhere.about.created_by "Tạo ra bởi"> -<!ENTITY https-everywhere.about.and ", và"> -<!ENTITY https-everywhere.about.librarians "Những người quản lý thư viện quy tắc"> -<!ENTITY https-everywhere.about.add_new_rule "Thêm quy định mới"> -<!ENTITY https-everywhere.about.thanks "Nhờ có"> -<!ENTITY https-everywhere.about.many_contributors "Rất rất nhiều người đóng góp, bao gồm cả"> -<!ENTITY https-everywhere.about.noscript "Hơn nữa, những phần của HTTPS Everywhere được dựa trên mã của NoScript, bởi Giorgio Maone và những người khác. Chúng tôi biết ơn vì thành quả xuất sắc của họ."> -<!ENTITY https-everywhere.about.contribute "Nếu như bạn thích HTTPS Everywhere, có thể bạn cũng quan tâm đến"> -<!ENTITY https-everywhere.about.donate_tor "Đóng góp cho Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "hoặc"> -<!ENTITY https-everywhere.about.donate_eff "Đóng góp cho EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Đóng góp cho EFF"> -<!ENTITY https-everywhere.menu.about "Thông tin về HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "Các Tùy Chọn Ưu Tiên cho SSL Observatory"> -<!ENTITY https-everywhere.menu.globalEnable "Bật HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Tắt HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Chặn tất cả những yêu cầu không được mã hóa"> -<!ENTITY https-everywhere.menu.showCounter "Hiển Thị Bộ Đếm"> -<!ENTITY https-everywhere.menu.viewAllRules "Xem Tất Cả Quy Tắc"> - -<!ENTITY https-everywhere.prefs.title "Các Tùy Chọn Ưu Tiên Cho HTTPS Everywhere"> -<!ENTITY https-everywhere.prefs.enable_all "Bật tất cả"> -<!ENTITY https-everywhere.prefs.disable_all "Tắt tất cả"> -<!ENTITY https-everywhere.prefs.reset_defaults "Khôi phục về Mặc định"> -<!ENTITY https-everywhere.prefs.search "Tìm kiếm"> -<!ENTITY https-everywhere.prefs.site "Trang web"> -<!ENTITY https-everywhere.prefs.notes "Các Lưu Ý"> -<!ENTITY https-everywhere.prefs.list_caption "Những quy tắc chuyển hướng HTTPS nào nên được áp dụng?"> -<!ENTITY https-everywhere.prefs.enabled "Bật"> -<!ENTITY https-everywhere.prefs.ruleset_howto "Bạn có thể tìm hiểu về cách tự viết các quy tắc của riêng bạn (để hỗ trợ cho những trang web khác)"> -<!ENTITY https-everywhere.prefs.here_link "tại đây"> -<!ENTITY https-everywhere.prefs.toggle "Bật tắt"> -<!ENTITY https-everywhere.prefs.reset_default "Khôi phục về Mặc định"> -<!ENTITY https-everywhere.prefs.view_xml_source "Tìm nguồn XML"> - -<!ENTITY https-everywhere.chrome.stable_rules "Các quy tắc ổn định"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Ép buộc mã hóa các kết nối đến các trang web này:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Các quy tắc trải nghiệm"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "Có thể gây ra các cảnh báo hay hư hại. Mặc định là tắt."> -<!ENTITY https-everywhere.chrome.add_rule "Thêm một quy tắc cho trang này"> -<!ENTITY https-everywhere.chrome.add_new_rule "Thêm một quy tắc mới cho trang này"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Luôn sử dụng https cho host này"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Hiển thị chi tiết"> -<!ENTITY https-everywhere.chrome.hide_advanced "Ẩn chi tiết"> -<!ENTITY https-everywhere.chrome.rule_name "Tên quy tắc"> -<!ENTITY https-everywhere.chrome.regex "Regex phù hợp"> -<!ENTITY https-everywhere.chrome.redirect_to "Chuyển hướng đến"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Hủy bỏ"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/vi/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/vi/https-everywhere.properties deleted file mode 100644 index 16d6807..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/vi/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Bật HTTPS Everywhere -https-everywhere.menu.globalDisable = Tắt HTTPS Everywhere -https-everywhere.menu.enableDisable = Bật / Tắt Các Quy Tắc -https-everywhere.menu.noRules = (Không Có Quy tắc Nào Cho Trang Này) -https-everywhere.menu.unknownRules = (Quy Tắc Cho Trang Này Chưa Rõ) -https-everywhere.toolbar.hint = HTTPS Everywhere đang hoạt động. Bạn có thể bật tắt nó bằng cách bấm vào biểu tượng trên thanh địa chỉ. -https-everywhere.migration.notification0 = Để thực hiện khắc phục cốt yếu, bản cập nhật này đặt lại các tuỳ chọn quy tắc HTTPS Everywhere của bạn về giá trị mặc định. -https-everywhere.menu.ruleset-tests = Thực hiện kiểm tra tập quy tắc HTTPS Everywhere diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/vi/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/vi/ssl-observatory.dtd deleted file mode 100644 index 25789ab..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/vi/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Thông tin riêng tư và chi tiết"> -<!ENTITY ssl-observatory.popup.later "Hỏi tôi sau"> -<!ENTITY ssl-observatory.popup.no "Không"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere có thể dò ra các cuộc tấn công -vào trình duyệt của bạn bằng cách gửi các chứng chỉ mà bạn nhận được -đến Observatory. Bật nó lên?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"HTTPS Everywhere có nên dùng SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Có"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"Việc kích hoạt điều này là an toàn, trừ khi bạn dùng một -mạng công ty dễ bị xâm nhập:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"An toàn, trừ khi bạn dùng một mạng công ty với những tên máy chủ mạng nội bộ bí mật:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Gửi và kiểm tra chứng chỉ được ký bởi những CA gốc không chuẩn"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"Thật an toàn (và là ý tưởng hay) để cho phép tùy chọn này, trừ khi bạn dùng mạng lưới công ty dễ bị xâm nhập hoặc phần mềm diệt virus Kaspersky thứ theo dõi việc duyệt web của bạn với TLS Proxy và root Certificate Authority riêng. Nếu bạn cho phép những mạng lưới như vậy, tùy chọn này có thể công khai bằng chứng của những tên miền https:// đang được bạn ghé thăm thông qua proxy đó, bởi vì những chứng chỉ duy nhất mà nó sẽ sinh ra. Vì vậy chúng ta nên để mặc định cho nó tắt."> - -<!ENTITY ssl-observatory.prefs.anonymous "Kiểm tra các chứng chỉ bằng Tor để ẩn danh"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Kiểm tra các chứng chỉ bằng Tor để ẩn danh (yêu cầu Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"Tuỳ chọn này yêu cầu Tor phải được cài đặt và đang chạy"> - -<!ENTITY ssl-observatory.prefs.asn -"Khi bạn thấy một chứng chỉ mới, cho Observatory biết ISP nào bạn đang kết nối tới."> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"Việc này sẽ tải và gửi "Số Hệ thống Tự quản" mạng của bạn. Việc này sẽ giúp chúng tôi định vị tấn công chống lại HTTPS và xác định xem chúng tôi có quan sát từ mạng trong những nơi như Iran và Syria hay không, đây là những nơi có tấn công tương đối phổ biến."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Hiện cảnh báo khi Observatory phát hiện một chứng thực bị thu hồi không được trình duyệt phát hiện"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"Việc này sẽ kiểm tra chứng thực đã gửi trước những Danh sách Thu hồi Chứng thực được xác định. Thật không may, chúng tôi không thể đảm bảo rằng chúng tôi sẽ đánh dấu mỗi chứng thực bị thu hồi, nhưng nếu bạn thấy cảnh báo thì có thể có gì đó không đúng."> - -<!ENTITY ssl-observatory.prefs.done "Hoàn thành"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere có thể dùng SSL Observatory của EFF. Việc này làm 2 việc: (1) -gửi những bản sao của các chứng chỉ HTTPS tới Observatory, để giúp chung tôi -phát hiện các vụ tấn công 'man in the middle' và cải thiện an ninh của trang web; và (2) -để chúng tôi cảnh báo bạn về những kết nối không chính xác hoặc những cuộc tấn công vào trình duyệt của bạn."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"Ví dụ, khi bạn ghé thăm https://www.something.com, chứng chỉ -được nhận bởi Observatory sẽ chỉ ra rằng có ai đó đã ghé thăm -www.something.com, nhưng không rõ là ai đã ghé thăm, hoặc là chính xác trang nào họ -đã xem. Rê chuột vào tùy chọn này để có thông tin chi tiết:"> - -<!ENTITY ssl-observatory.prefs.hide "Ẩn tuỳ chọn nâng cao"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Kiểm tra chứng thực kể cả khi Tor không khả dụng"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"Chúng tôi vẫn sẽ cố giữ dữ liệu ẩn danh, nhưng tuỳ chọn này ít an toàn hơn"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Gửi và kiểm tra chứng thực cho những tên DNS không công khai"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Trừ khi tùy chọn này được đánh dấu, Observatory sẽ không ghi lại những chứng chỉ cho những cái tên mà nó không thể giải quyết thông qua hệ thống DNS."> - -<!ENTITY ssl-observatory.prefs.show "Hiện những tùy chọn nâng cao"> - -<!ENTITY ssl-observatory.prefs.title "Tuỳ chọn quan sát SSL"> - -<!ENTITY ssl-observatory.prefs.use "Sử dụng Observatory?"> -<!ENTITY ssl-observatory.warning.title "CẢNH BÁO từ SSL Observatory của EFF"> -<!ENTITY ssl-observatory.warning.showcert "Hiện chuỗi chứng thực"> -<!ENTITY ssl-observatory.warning.okay "Tôi hiểu"> -<!ENTITY ssl-observatory.warning.text "SSL Observatory của EFF đã cảnh báo về (các) chứng chỉ HTTPS cho trang này:"> -<!ENTITY ssl-observatory.warning.defense "Nếu bạn đăng nhập vào trang này, bạn nên đổi mật khẩu một khi bạn có kết nối an toàn. (Những cảnh báo này có thể tắt trong thẻ "SSL Observatory" của hội thoại tham chiếu của HTTPS Everywhere.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Gửi đi và kiểm tra những chứng chỉ tự ký."> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"Việc này được khuyến cáo; vấn đề về mã hóa đặc biệt hay gặp trong những thiết bị tự ký được gắn kèm. "> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/wa/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/wa/https-everywhere.dtd deleted file mode 100644 index 93d66ce..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/wa/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancel"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/wa/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/wa/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/wa/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/wa/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/wa/ssl-observatory.dtd deleted file mode 100644 index 69f1cfd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/wa/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/wo/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/wo/https-everywhere.dtd deleted file mode 100644 index 93d66ce..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/wo/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancel"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/wo/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/wo/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/wo/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/wo/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/wo/ssl-observatory.dtd deleted file mode 100644 index 69f1cfd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/wo/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/yo/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/yo/https-everywhere.dtd deleted file mode 100644 index 93d66ce..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/yo/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancel"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/yo/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/yo/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/yo/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/yo/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/yo/ssl-observatory.dtd deleted file mode 100644 index 69f1cfd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/yo/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/zh-CN/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/zh-CN/https-everywhere.dtd deleted file mode 100644 index 30e61f0..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/zh-CN/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "关于 HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "加密网络浏览,自动使用 HTTPS 连接访问站点,更加安全。"> -<!ENTITY https-everywhere.about.version "版本"> -<!ENTITY https-everywhere.about.created_by "创建者"> -<!ENTITY https-everywhere.about.and ",及"> -<!ENTITY https-everywhere.about.librarians "规则管理员"> -<!ENTITY https-everywhere.about.add_new_rule "添加新规则"> -<!ENTITY https-everywhere.about.thanks "致谢"> -<!ENTITY https-everywhere.about.many_contributors "许许多多的贡献者,包括"> -<!ENTITY https-everywhere.about.noscript "另外,HTTPS Everywhere 的部分源代码基于 NoScript,作者是 Giorgio Maone 等人。我们非常感谢他们出色的成果!"> -<!ENTITY https-everywhere.about.contribute "如果喜欢 HTTPS Everywhere,您可以考虑"> -<!ENTITY https-everywhere.about.donate_tor "捐助 Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "zh_CN"> -<!ENTITY https-everywhere.about.or "或"> -<!ENTITY https-everywhere.about.donate_eff "捐助电子前线基金会 (EFF)"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "捐助电子前线基金会 (EFF)"> -<!ENTITY https-everywhere.menu.about "关于 HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory 首选项"> -<!ENTITY https-everywhere.menu.globalEnable "启用 HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "禁用 HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "拦截所有未加密请求"> -<!ENTITY https-everywhere.menu.showCounter "显示计数器"> -<!ENTITY https-everywhere.menu.viewAllRules "查看所有规则"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere 首选项"> -<!ENTITY https-everywhere.prefs.enable_all "全部启用"> -<!ENTITY https-everywhere.prefs.disable_all "全部禁用"> -<!ENTITY https-everywhere.prefs.reset_defaults "重置为默认值"> -<!ENTITY https-everywhere.prefs.search "搜索"> -<!ENTITY https-everywhere.prefs.site "站点"> -<!ENTITY https-everywhere.prefs.notes "注释"> -<!ENTITY https-everywhere.prefs.list_caption "应用哪些 HTTPS 重定向规则?"> -<!ENTITY https-everywhere.prefs.enabled "已启用"> -<!ENTITY https-everywhere.prefs.ruleset_howto "您可以学习如何编写您自己的规则(以增加对其他网站的支持)"> -<!ENTITY https-everywhere.prefs.here_link "这里"> -<!ENTITY https-everywhere.prefs.toggle "切换"> -<!ENTITY https-everywhere.prefs.reset_default "重置为默认值"> -<!ENTITY https-everywhere.prefs.view_xml_source "查看 XML 格式的源代码"> - -<!ENTITY https-everywhere.chrome.stable_rules "稳定规则"> -<!ENTITY https-everywhere.chrome.stable_rules_description "强制对这些网站加密连接:"> -<!ENTITY https-everywhere.chrome.experimental_rules "实验性规则"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "可能引发警告或异常。默认被禁用。"> -<!ENTITY https-everywhere.chrome.add_rule "为此站点添加规则"> -<!ENTITY https-everywhere.chrome.add_new_rule "为此站点添加新规则"> -<!ENTITY https-everywhere.chrome.always_https_for_host "对此主机始终使用 https"> -<!ENTITY https-everywhere.chrome.host "主机:"> -<!ENTITY https-everywhere.chrome.show_advanced "显示高级选项"> -<!ENTITY https-everywhere.chrome.hide_advanced "隐藏高级选项"> -<!ENTITY https-everywhere.chrome.rule_name "规则名称"> -<!ENTITY https-everywhere.chrome.regex "正则表达式匹配"> -<!ENTITY https-everywhere.chrome.redirect_to "重定向到"> -<!ENTITY https-everywhere.chrome.status_cancel_button "取消"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/zh-CN/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/zh-CN/https-everywhere.properties deleted file mode 100644 index f44cea3..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/zh-CN/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = 启用 HTTPS Everywhere -https-everywhere.menu.globalDisable = 禁用 HTTPS Everywhere -https-everywhere.menu.enableDisable = 启用/禁用规则 -https-everywhere.menu.noRules = (本页面无规则) -https-everywhere.menu.unknownRules = (此页面规则未知) -https-everywhere.toolbar.hint = HTTPS Everywhere 当前已激活。根据每个网站,可点击地址栏中图标启用或禁用该功能。 -https-everywhere.migration.notification0 = 为了部署重要修订,该更新将 HTTPS Everywhere 规则偏好重置为默认值。 -https-everywhere.menu.ruleset-tests = 运行HTTPS Everywhere规则集测试 diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/zh-CN/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/zh-CN/ssl-observatory.dtd deleted file mode 100644 index 9ef4eb3..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/zh-CN/ssl-observatory.dtd +++ /dev/null @@ -1,94 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "详情与隐私信息"> -<!ENTITY ssl-observatory.popup.later "以后再说"> -<!ENTITY ssl-observatory.popup.no "否"> - -<!ENTITY ssl-observatory.popup.text "通过将接收到的证书 -提交至 Observatory,HTTPS Everywhere 能够检测针对浏览器的攻击。 -是否启用该功能?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"是否允许 HTTPS Everywhere 使用 SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "是"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"启用这个功能是安全的,除非你所用的是高侵入性的企业网络:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"安全,除非所用的企业网络具有加密的内部网服务器名称:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"提交并检查由非标准根 CA 所签名的证书"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"启用此选项是安全(而且有益的),除非所用的是高侵入性的公司网络,或者使用卡巴斯基防病毒软件通过本地 TLS 代理与私有根证书认证方检测互联网浏览行为。对于这样的网络,由于生成的数字证书是唯一的,启用该选项可能将公开通过该代理访问的 https:// 网域名称,因此默认关闭该功能。"> - -<!ENTITY ssl-observatory.prefs.anonymous "通过 Tor 网络进行数字证书的检查,以保护匿名性"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"通过 Tor 网络进行数字证书的检查,以保护匿名性(需要有 Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"此选项需要已经安装并运行 Tor"> - -<!ENTITY ssl-observatory.prefs.asn -"遇到新的数字证书时,通知 Observatory 当前使用的互联网服务提供商 (ISP)"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"这将抓取网络的“自治系统号码”(Autonomous System number)。这将有助于找出对 HTTPS 发动攻击的源头,并判断在攻击相对常见的地区网络上,如伊朗和叙利亚,我们是否具有观测数据。"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"当观测站检测到已吊销证书而该证书未被浏览器捕获时,显示警告。"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"对照证书吊销列表,对提交的证书进行检查。可惜我们无法保证标记每个已吊销证书。如果确实出现警告信息,那么很有可能存在问题。"> - -<!ENTITY ssl-observatory.prefs.done "完成"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere 可以使用 EFF 的 SSL 观测站 。 这有两个功能:(1) 将 HTTPS 数字证书寄送到观测站,以协助我们侦测中间人式的攻击并改善网络的安全性;(2)针对不安全的连接以及对你的浏览器进行的攻击,向你发出警告。"> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"例如,在访问 https://www.something.com 时,观测站收到的数字证书显示某人访问了 www.something.com,但不会显示是谁访问了该站点或者浏览了哪些页面。将鼠标移至该选项可了解更多详细信息:"> - -<!ENTITY ssl-observatory.prefs.hide "隐藏高级选项"> - -<!ENTITY ssl-observatory.prefs.nonanon -"在没有 Tor 网络的情况下依然检查数字证书"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"我们仍将尽力确保数据的匿名性,但该选项的安全性较低"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"提交并检查非公开 DNS 名称的数字证书"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"除非勾选该选项,否则观测站将不会记录通过 DNS 系统无法解析域名的证书。"> - -<!ENTITY ssl-observatory.prefs.show "显示高级选项"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory 首选项"> - -<!ENTITY ssl-observatory.prefs.use "是否使用观测站?"> -<!ENTITY ssl-observatory.warning.title "EFF 的 SSL 观测站发布的警告"> -<!ENTITY ssl-observatory.warning.showcert "显示数字证书链"> -<!ENTITY ssl-observatory.warning.okay "我已了解"> -<!ENTITY ssl-observatory.warning.text "EFF 的 SSL 观测站已对该 HTTPS 数字证书发出警告:"> -<!ENTITY ssl-observatory.warning.defense "如果已登录网站,建议使用安全连接修改密码。(这些警告可以在 HTTPS Everywhere 首选项的“SSL Observatory”选项卡中禁用。)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"提交并检查自签名证书"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"我们推荐该选项;在自签名的嵌入式设备中,加密问题尤为常见"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/zh/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/zh/https-everywhere.dtd deleted file mode 100644 index 9a63c45..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/zh/https-everywhere.dtd +++ /dev/null @@ -1,47 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.source.downloading "Downloading"> -<!ENTITY https-everywhere.source.filename "Filename"> -<!ENTITY https-everywhere.source.unable_to_download "Unable to download source."> - -<!ENTITY https-everywhere.popup.title "HTTPS Everywhere 4.0development.11 notification"> -<!ENTITY https-everywhere.popup.paragraph1 "Oops. You were using the stable version of HTTPS Everywhere, but we might have accidentally upgraded you to the development version in our last release."> -<!ENTITY https-everywhere.popup.paragraph2 "Would you like to go back to stable?"> -<!ENTITY https-everywhere.popup.paragraph3 "We'd love it if you continued using our development release and helped us make HTTPS Everywhere better! You might find there are a few more bugs here and there, which you can report to https-everywhere@eff.org. Sorry about the inconvenience, and thank you for using HTTPS Everywhere."> -<!ENTITY https-everywhere.popup.keep "Keep me on the development version"> -<!ENTITY https-everywhere.popup.revert "Download the latest stable version"> - -<!ENTITY https-everywhere.ruleset-tests.status_title "HTTPS Everywhere Ruleset Tests"> -<!ENTITY https-everywhere.ruleset-tests.status_cancel_button "Cancel"> -<!ENTITY https-everywhere.ruleset-tests.status_start_button "Start"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/zh/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/zh/https-everywhere.properties deleted file mode 100644 index 21feda9..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/zh/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -# https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -# https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -# https-everywhere.menu.enableDisable = Enable / Disable Rules -# https-everywhere.menu.noRules = (No Rules for This Page) -# https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -# https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -# https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -# https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/zh/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/zh/ssl-observatory.dtd deleted file mode 100644 index 9457a96..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/zh/ssl-observatory.dtd +++ /dev/null @@ -1,95 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection."> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/zh_CN.GB2312/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/zh_CN.GB2312/https-everywhere.dtd deleted file mode 100644 index 9a63c45..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/zh_CN.GB2312/https-everywhere.dtd +++ /dev/null @@ -1,47 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.source.downloading "Downloading"> -<!ENTITY https-everywhere.source.filename "Filename"> -<!ENTITY https-everywhere.source.unable_to_download "Unable to download source."> - -<!ENTITY https-everywhere.popup.title "HTTPS Everywhere 4.0development.11 notification"> -<!ENTITY https-everywhere.popup.paragraph1 "Oops. You were using the stable version of HTTPS Everywhere, but we might have accidentally upgraded you to the development version in our last release."> -<!ENTITY https-everywhere.popup.paragraph2 "Would you like to go back to stable?"> -<!ENTITY https-everywhere.popup.paragraph3 "We'd love it if you continued using our development release and helped us make HTTPS Everywhere better! You might find there are a few more bugs here and there, which you can report to https-everywhere@eff.org. Sorry about the inconvenience, and thank you for using HTTPS Everywhere."> -<!ENTITY https-everywhere.popup.keep "Keep me on the development version"> -<!ENTITY https-everywhere.popup.revert "Download the latest stable version"> - -<!ENTITY https-everywhere.ruleset-tests.status_title "HTTPS Everywhere Ruleset Tests"> -<!ENTITY https-everywhere.ruleset-tests.status_cancel_button "Cancel"> -<!ENTITY https-everywhere.ruleset-tests.status_start_button "Start"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/zh_CN.GB2312/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/zh_CN.GB2312/https-everywhere.properties deleted file mode 100644 index 21feda9..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/zh_CN.GB2312/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -# https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -# https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -# https-everywhere.menu.enableDisable = Enable / Disable Rules -# https-everywhere.menu.noRules = (No Rules for This Page) -# https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -# https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -# https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -# https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/zh_CN.GB2312/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/zh_CN.GB2312/ssl-observatory.dtd deleted file mode 100644 index 9457a96..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/zh_CN.GB2312/ssl-observatory.dtd +++ /dev/null @@ -1,95 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection."> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/zh_CN/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/zh_CN/https-everywhere.dtd deleted file mode 100644 index 30e61f0..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/zh_CN/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "关于 HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "加密网络浏览,自动使用 HTTPS 连接访问站点,更加安全。"> -<!ENTITY https-everywhere.about.version "版本"> -<!ENTITY https-everywhere.about.created_by "创建者"> -<!ENTITY https-everywhere.about.and ",及"> -<!ENTITY https-everywhere.about.librarians "规则管理员"> -<!ENTITY https-everywhere.about.add_new_rule "添加新规则"> -<!ENTITY https-everywhere.about.thanks "致谢"> -<!ENTITY https-everywhere.about.many_contributors "许许多多的贡献者,包括"> -<!ENTITY https-everywhere.about.noscript "另外,HTTPS Everywhere 的部分源代码基于 NoScript,作者是 Giorgio Maone 等人。我们非常感谢他们出色的成果!"> -<!ENTITY https-everywhere.about.contribute "如果喜欢 HTTPS Everywhere,您可以考虑"> -<!ENTITY https-everywhere.about.donate_tor "捐助 Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "zh_CN"> -<!ENTITY https-everywhere.about.or "或"> -<!ENTITY https-everywhere.about.donate_eff "捐助电子前线基金会 (EFF)"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "捐助电子前线基金会 (EFF)"> -<!ENTITY https-everywhere.menu.about "关于 HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory 首选项"> -<!ENTITY https-everywhere.menu.globalEnable "启用 HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "禁用 HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "拦截所有未加密请求"> -<!ENTITY https-everywhere.menu.showCounter "显示计数器"> -<!ENTITY https-everywhere.menu.viewAllRules "查看所有规则"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere 首选项"> -<!ENTITY https-everywhere.prefs.enable_all "全部启用"> -<!ENTITY https-everywhere.prefs.disable_all "全部禁用"> -<!ENTITY https-everywhere.prefs.reset_defaults "重置为默认值"> -<!ENTITY https-everywhere.prefs.search "搜索"> -<!ENTITY https-everywhere.prefs.site "站点"> -<!ENTITY https-everywhere.prefs.notes "注释"> -<!ENTITY https-everywhere.prefs.list_caption "应用哪些 HTTPS 重定向规则?"> -<!ENTITY https-everywhere.prefs.enabled "已启用"> -<!ENTITY https-everywhere.prefs.ruleset_howto "您可以学习如何编写您自己的规则(以增加对其他网站的支持)"> -<!ENTITY https-everywhere.prefs.here_link "这里"> -<!ENTITY https-everywhere.prefs.toggle "切换"> -<!ENTITY https-everywhere.prefs.reset_default "重置为默认值"> -<!ENTITY https-everywhere.prefs.view_xml_source "查看 XML 格式的源代码"> - -<!ENTITY https-everywhere.chrome.stable_rules "稳定规则"> -<!ENTITY https-everywhere.chrome.stable_rules_description "强制对这些网站加密连接:"> -<!ENTITY https-everywhere.chrome.experimental_rules "实验性规则"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "可能引发警告或异常。默认被禁用。"> -<!ENTITY https-everywhere.chrome.add_rule "为此站点添加规则"> -<!ENTITY https-everywhere.chrome.add_new_rule "为此站点添加新规则"> -<!ENTITY https-everywhere.chrome.always_https_for_host "对此主机始终使用 https"> -<!ENTITY https-everywhere.chrome.host "主机:"> -<!ENTITY https-everywhere.chrome.show_advanced "显示高级选项"> -<!ENTITY https-everywhere.chrome.hide_advanced "隐藏高级选项"> -<!ENTITY https-everywhere.chrome.rule_name "规则名称"> -<!ENTITY https-everywhere.chrome.regex "正则表达式匹配"> -<!ENTITY https-everywhere.chrome.redirect_to "重定向到"> -<!ENTITY https-everywhere.chrome.status_cancel_button "取消"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/zh_CN/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/zh_CN/https-everywhere.properties deleted file mode 100644 index f44cea3..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/zh_CN/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = 启用 HTTPS Everywhere -https-everywhere.menu.globalDisable = 禁用 HTTPS Everywhere -https-everywhere.menu.enableDisable = 启用/禁用规则 -https-everywhere.menu.noRules = (本页面无规则) -https-everywhere.menu.unknownRules = (此页面规则未知) -https-everywhere.toolbar.hint = HTTPS Everywhere 当前已激活。根据每个网站,可点击地址栏中图标启用或禁用该功能。 -https-everywhere.migration.notification0 = 为了部署重要修订,该更新将 HTTPS Everywhere 规则偏好重置为默认值。 -https-everywhere.menu.ruleset-tests = 运行HTTPS Everywhere规则集测试 diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/zh_CN/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/zh_CN/ssl-observatory.dtd deleted file mode 100644 index 9ef4eb3..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/zh_CN/ssl-observatory.dtd +++ /dev/null @@ -1,94 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "详情与隐私信息"> -<!ENTITY ssl-observatory.popup.later "以后再说"> -<!ENTITY ssl-observatory.popup.no "否"> - -<!ENTITY ssl-observatory.popup.text "通过将接收到的证书 -提交至 Observatory,HTTPS Everywhere 能够检测针对浏览器的攻击。 -是否启用该功能?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"是否允许 HTTPS Everywhere 使用 SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "是"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"启用这个功能是安全的,除非你所用的是高侵入性的企业网络:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"安全,除非所用的企业网络具有加密的内部网服务器名称:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"提交并检查由非标准根 CA 所签名的证书"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"启用此选项是安全(而且有益的),除非所用的是高侵入性的公司网络,或者使用卡巴斯基防病毒软件通过本地 TLS 代理与私有根证书认证方检测互联网浏览行为。对于这样的网络,由于生成的数字证书是唯一的,启用该选项可能将公开通过该代理访问的 https:// 网域名称,因此默认关闭该功能。"> - -<!ENTITY ssl-observatory.prefs.anonymous "通过 Tor 网络进行数字证书的检查,以保护匿名性"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"通过 Tor 网络进行数字证书的检查,以保护匿名性(需要有 Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"此选项需要已经安装并运行 Tor"> - -<!ENTITY ssl-observatory.prefs.asn -"遇到新的数字证书时,通知 Observatory 当前使用的互联网服务提供商 (ISP)"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"这将抓取网络的“自治系统号码”(Autonomous System number)。这将有助于找出对 HTTPS 发动攻击的源头,并判断在攻击相对常见的地区网络上,如伊朗和叙利亚,我们是否具有观测数据。"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"当观测站检测到已吊销证书而该证书未被浏览器捕获时,显示警告。"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"对照证书吊销列表,对提交的证书进行检查。可惜我们无法保证标记每个已吊销证书。如果确实出现警告信息,那么很有可能存在问题。"> - -<!ENTITY ssl-observatory.prefs.done "完成"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere 可以使用 EFF 的 SSL 观测站 。 这有两个功能:(1) 将 HTTPS 数字证书寄送到观测站,以协助我们侦测中间人式的攻击并改善网络的安全性;(2)针对不安全的连接以及对你的浏览器进行的攻击,向你发出警告。"> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"例如,在访问 https://www.something.com 时,观测站收到的数字证书显示某人访问了 www.something.com,但不会显示是谁访问了该站点或者浏览了哪些页面。将鼠标移至该选项可了解更多详细信息:"> - -<!ENTITY ssl-observatory.prefs.hide "隐藏高级选项"> - -<!ENTITY ssl-observatory.prefs.nonanon -"在没有 Tor 网络的情况下依然检查数字证书"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"我们仍将尽力确保数据的匿名性,但该选项的安全性较低"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"提交并检查非公开 DNS 名称的数字证书"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"除非勾选该选项,否则观测站将不会记录通过 DNS 系统无法解析域名的证书。"> - -<!ENTITY ssl-observatory.prefs.show "显示高级选项"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory 首选项"> - -<!ENTITY ssl-observatory.prefs.use "是否使用观测站?"> -<!ENTITY ssl-observatory.warning.title "EFF 的 SSL 观测站发布的警告"> -<!ENTITY ssl-observatory.warning.showcert "显示数字证书链"> -<!ENTITY ssl-observatory.warning.okay "我已了解"> -<!ENTITY ssl-observatory.warning.text "EFF 的 SSL 观测站已对该 HTTPS 数字证书发出警告:"> -<!ENTITY ssl-observatory.warning.defense "如果已登录网站,建议使用安全连接修改密码。(这些警告可以在 HTTPS Everywhere 首选项的“SSL Observatory”选项卡中禁用。)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"提交并检查自签名证书"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"我们推荐该选项;在自签名的嵌入式设备中,加密问题尤为常见"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/zh_HK/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/zh_HK/https-everywhere.dtd deleted file mode 100644 index e1cfaf6..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/zh_HK/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "關於「https優先」"> -<!ENTITY https-everywhere.about.ext_name "「https優先」"> -<!ENTITY https-everywhere.about.ext_description "將互聯網加密!自動喺網站使用https連線。"> -<!ENTITY https-everywhere.about.version "版本"> -<!ENTITY https-everywhere.about.created_by "製作者:"> -<!ENTITY https-everywhere.about.and ",以及"> -<!ENTITY https-everywhere.about.librarians "規則管理員"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "多謝"> -<!ENTITY https-everywhere.about.many_contributors "貢獻者包括"> -<!ENTITY https-everywhere.about.noscript "並且,「https優先」有部份程式碼係Giorgio Maone同其他人由NoScript移植並修改而嚟,我哋非常感謝佢哋嘅出色貢獻!"> -<!ENTITY https-everywhere.about.contribute "若鍾意「https優先」,可考慮"> -<!ENTITY https-everywhere.about.donate_tor "捐助Tor洋蔥路由"> -<!ENTITY https-everywhere.about.tor_lang_code "zh-HK"> -<!ENTITY https-everywhere.about.or "或"> -<!ENTITY https-everywhere.about.donate_eff "捐助電子前哨基金會"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "捐助電子前哨基金會"> -<!ENTITY https-everywhere.menu.about "關於「https優先」"> -<!ENTITY https-everywhere.menu.observatory "SSL觀測站設定"> -<!ENTITY https-everywhere.menu.globalEnable "啟用「https優先」"> -<!ENTITY https-everywhere.menu.globalDisable "停用「https優先」"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "顯示計數器"> -<!ENTITY https-everywhere.menu.viewAllRules "檢視全部規則"> - -<!ENTITY https-everywhere.prefs.title "「https優先」設定"> -<!ENTITY https-everywhere.prefs.enable_all "啟用全部"> -<!ENTITY https-everywhere.prefs.disable_all "停用全部"> -<!ENTITY https-everywhere.prefs.reset_defaults "回到預設"> -<!ENTITY https-everywhere.prefs.search "搜尋"> -<!ENTITY https-everywhere.prefs.site "網站"> -<!ENTITY https-everywhere.prefs.notes "備註"> -<!ENTITY https-everywhere.prefs.list_caption "要套用邊啲https重新導向規則?"> -<!ENTITY https-everywhere.prefs.enabled "已啟用"> -<!ENTITY https-everywhere.prefs.ruleset_howto "你可以學習自行編寫規則(以支援其他網站)"> -<!ENTITY https-everywhere.prefs.here_link "呢度"> -<!ENTITY https-everywhere.prefs.toggle "切換"> -<!ENTITY https-everywhere.prefs.reset_default "回到預設"> -<!ENTITY https-everywhere.prefs.view_xml_source "檢視XML原始碼"> - -<!ENTITY https-everywhere.chrome.stable_rules "穩定規則"> -<!ENTITY https-everywhere.chrome.stable_rules_description "喺以下網站強制使用加密連線:"> -<!ENTITY https-everywhere.chrome.experimental_rules "實驗性規則"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "可能會導致警告同錯誤,預設為關閉。"> -<!ENTITY https-everywhere.chrome.add_rule "幫呢個網站加入規則"> -<!ENTITY https-everywhere.chrome.add_new_rule "幫呢個網站加入新規則"> -<!ENTITY https-everywhere.chrome.always_https_for_host "該主機皆使用https加密網址"> -<!ENTITY https-everywhere.chrome.host "主機:"> -<!ENTITY https-everywhere.chrome.show_advanced "顯示進階選項"> -<!ENTITY https-everywhere.chrome.hide_advanced "隱藏進階選項"> -<!ENTITY https-everywhere.chrome.rule_name "規則名稱"> -<!ENTITY https-everywhere.chrome.regex "比對正規表達方式"> -<!ENTITY https-everywhere.chrome.redirect_to "重新導向"> -<!ENTITY https-everywhere.chrome.status_cancel_button "取消"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/zh_HK/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/zh_HK/https-everywhere.properties deleted file mode 100644 index aa96847..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/zh_HK/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = 啟用「https優先」 -https-everywhere.menu.globalDisable = 停用「https優先」 -https-everywhere.menu.enableDisable = 啟用╱停用規則 -https-everywhere.menu.noRules = (呢頁無規則) -https-everywhere.menu.unknownRules = (適用此網頁嘅規則不明) -https-everywhere.toolbar.hint = 正在使用「https優先」。你可以喺瀏覽唔同網頁時按網址列中嘅圖示開關。 -https-everywhere.migration.notification0 = 為了修正重大問題,此更新將重設你嘅「https優先」設定。 -https-everywhere.menu.ruleset-tests = 執行「https優先」規則集測試 diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/zh_HK/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/zh_HK/ssl-observatory.dtd deleted file mode 100644 index 66d73e7..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/zh_HK/ssl-observatory.dtd +++ /dev/null @@ -1,92 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "詳細資料同私隱資訊"> -<!ENTITY ssl-observatory.popup.later "稍後詢問我"> -<!ENTITY ssl-observatory.popup.no "否"> - -<!ENTITY ssl-observatory.popup.text "「https優先」將你收到嘅憑證發送到觀測站,以偵測出對你瀏覽器嘅攻擊。啟用此功能嗎?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"要「https優先」使用SSL觀測站嗎?"> - -<!ENTITY ssl-observatory.popup.yes "是"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"啟用呢個選項係安全嘅,除非你使用高侵入性嘅公司網絡:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"啟用呢個選項係安全嘅,除非你使用含有隱密內部網路伺服器名稱嘅公司網絡:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"提交並檢查由非正規根憑證所簽署嘅憑證"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"啟用呢個選項係安全嘅(而且也建議啟用),除非你使用侵入性嘅公司網絡,或者Kaspersky防毒軟件監控到你透過TLS代理瀏覽並使用私人嘅根憑證。喺呢類嘅網絡環境啟用此選項,可能會因為所產生嘅特有憑證,導致經由此代理伺服器瀏覽特定https://網域嘅憑證被公開。因此預設為唔啟用此選項。"> - -<!ENTITY ssl-observatory.prefs.anonymous "使用Tor洋蔥路由匿名檢查憑證"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"使用Tor洋蔥路由匿名檢查憑證(需要Tor洋蔥路由)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"此選項需要安裝同執行Tor洋蔥路由"> - -<!ENTITY ssl-observatory.prefs.asn -"見到新嘅憑證時,告知觀測站你連線到邊一個ISP"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"呢樣會抽取並回傳你網絡嘅自治系統號碼(Autonomous System Number)。咁會協助我哋定位對https嘅攻擊,並判定我哋所觀測到嚟自伊朗同敘利亞等地網絡嘅攻擊係咪較為常見。"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"當觀測站偵測到未被你瀏覽器攔截到嘅被撤銷憑證時顯示警告"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"咁會依照憑證撤銷清單檢查提交嘅憑證。然而我哋無法保證我哋能夠標上每個被撤銷嘅憑證,但係你見到一個警告時就代表可能有嘢錯咗。"> - -<!ENTITY ssl-observatory.prefs.done "完成"> - -<!ENTITY ssl-observatory.prefs.explanation -"「https優先」可以使用EFF嘅SSL觀測站。咁做有兩個效果:(1)將https憑證嘅副本傳送到觀測站,協助我哋偵測「中間人」攻擊並改進網絡安全度;(2)當你遇到唔安全嘅連線或瀏覽器遭到攻擊時,我哋能夠對你提出警告。"> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"例如當你到訪https://www.something.com時,觀測站所收到嘅憑證會顯示有人到訪過www.something.com,但唔會指出到訪者身份或佢哋觀看嘅係邊啲特定頁面。將滑鼠游標移至選項上可得到詳細說明:"> - -<!ENTITY ssl-observatory.prefs.hide "隱藏進階選項"> - -<!ENTITY ssl-observatory.prefs.nonanon -"即使Tor洋蔥路由無法使用時仍檢查憑證"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"我哋仍會試圖保持資料嘅匿名,但此選項嘅安全度較低"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"提交並檢查非公共域名系統(non-public DNS)名稱嘅憑證"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"除非你有選取此選項,觀測站唔會記錄未經DNS系統解析嘅憑證名稱。"> - -<!ENTITY ssl-observatory.prefs.show "顯示進階選項"> - -<!ENTITY ssl-observatory.prefs.title "SSL觀測站設定"> - -<!ENTITY ssl-observatory.prefs.use "使用觀測站?"> -<!ENTITY ssl-observatory.warning.title "EFF嘅SSL觀測站提出警告"> -<!ENTITY ssl-observatory.warning.showcert "顯示憑證鏈結(certificate chain)"> -<!ENTITY ssl-observatory.warning.okay "我明白"> -<!ENTITY ssl-observatory.warning.text "EFF嘅SSL觀測站對此網站嘅https憑證提出警告:"> -<!ENTITY ssl-observatory.warning.defense "如果你登入此網站,一旦你有安全網絡連線時可能會建議更改你嘅密碼。(呢個警告可以喺「https優先」設定話匣嘅「SSL觀測站」分頁中被停用)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"提交並檢查自我簽署嘅憑證"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"建議啟用;加密問題喺自我簽署嘅嵌入式裝置極為常見。"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/zh_TW/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/zh_TW/https-everywhere.dtd deleted file mode 100644 index 3cde59d..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/zh_TW/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "關於 HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "加密整個網路!自動在網站上使用 HTTPS 安全連線。"> -<!ENTITY https-everywhere.about.version "版本"> -<!ENTITY https-everywhere.about.created_by "建立於"> -<!ENTITY https-everywhere.about.and ",以及"> -<!ENTITY https-everywhere.about.librarians "規則集管理員"> -<!ENTITY https-everywhere.about.add_new_rule "增加新規則"> -<!ENTITY https-everywhere.about.thanks "致謝"> -<!ENTITY https-everywhere.about.many_contributors "許許多多的貢獻者,包括了"> -<!ENTITY https-everywhere.about.noscript "並且,在 HTTPS Everyhere 中有部份的程式碼,是 Giorgio Maone 及其他人從 NoScript 裡移植並修改而來的,我們非常地感謝他們如此傑出的貢獻!"> -<!ENTITY https-everywhere.about.contribute "若您喜歡 HTTPS Everywhere,您或許可以考慮"> -<!ENTITY https-everywhere.about.donate_tor "贊助洋蔥路由"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "或"> -<!ENTITY https-everywhere.about.donate_eff "贊助電子前哨基金會(EFF)"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "贊助電子前哨基金會(EFF)"> -<!ENTITY https-everywhere.menu.about "關於 HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL 觀測站偏好設定"> -<!ENTITY https-everywhere.menu.globalEnable "啟用 HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "停用 HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "阻擋所有未加密的請求"> -<!ENTITY https-everywhere.menu.showCounter "顯示計數器"> -<!ENTITY https-everywhere.menu.viewAllRules "檢視所有規則"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere 偏好設定"> -<!ENTITY https-everywhere.prefs.enable_all "全部啟用"> -<!ENTITY https-everywhere.prefs.disable_all "全部停用"> -<!ENTITY https-everywhere.prefs.reset_defaults "重設成預設值"> -<!ENTITY https-everywhere.prefs.search "搜尋"> -<!ENTITY https-everywhere.prefs.site "網站"> -<!ENTITY https-everywhere.prefs.notes "備註"> -<!ENTITY https-everywhere.prefs.list_caption "要套用哪些 HTTPS 重新導向規則?"> -<!ENTITY https-everywhere.prefs.enabled "已啟用"> -<!ENTITY https-everywhere.prefs.ruleset_howto "您可以學習如何建立您自己的規則集(以增加對其他網站的支援)"> -<!ENTITY https-everywhere.prefs.here_link "請看這裡"> -<!ENTITY https-everywhere.prefs.toggle "切換"> -<!ENTITY https-everywhere.prefs.reset_default "重設成預設值"> -<!ENTITY https-everywhere.prefs.view_xml_source "檢視 XML 原始碼"> - -<!ENTITY https-everywhere.chrome.stable_rules "穩定版規則"> -<!ENTITY https-everywhere.chrome.stable_rules_description "與下列網站建立強制加密的連線:"> -<!ENTITY https-everywhere.chrome.experimental_rules "試驗版規則"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "可能會產生警告訊息或程式錯誤,預設值是關閉狀態。"> -<!ENTITY https-everywhere.chrome.add_rule "為該網站新增規則"> -<!ENTITY https-everywhere.chrome.add_new_rule "為該網站增添新規則"> -<!ENTITY https-everywhere.chrome.always_https_for_host "該主機皆使用https加密網址"> -<!ENTITY https-everywhere.chrome.host "主機:"> -<!ENTITY https-everywhere.chrome.show_advanced "顯示進階選項"> -<!ENTITY https-everywhere.chrome.hide_advanced "隱藏進階選項"> -<!ENTITY https-everywhere.chrome.rule_name "規則名稱"> -<!ENTITY https-everywhere.chrome.regex "比對正規表達方式"> -<!ENTITY https-everywhere.chrome.redirect_to "重新導向"> -<!ENTITY https-everywhere.chrome.status_cancel_button "取消"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/zh_TW/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/zh_TW/https-everywhere.properties deleted file mode 100644 index c5aeab0..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/zh_TW/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = 啟用 HTTPS Everywhere -https-everywhere.menu.globalDisable = 停用 HTTPS Everywhere -https-everywhere.menu.enableDisable = 啟用 / 停用規則 -https-everywhere.menu.noRules = (沒有適用於此網頁的規則) -https-everywhere.menu.unknownRules = (適用此網頁的規則不明) -https-everywhere.toolbar.hint = HTTPS Everywhere 目前使用中。您可以根據各網站情況,透過網址列中的圖示來作切換調整。 -https-everywhere.migration.notification0 = 為了實現關鍵性的修正,此更新將您的 HTTPS Everywhere 規則偏好設定重設為預設值。 -https-everywhere.menu.ruleset-tests = 執行 HTTPS Everywhere 規則集測試 diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/zh_TW/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/zh_TW/ssl-observatory.dtd deleted file mode 100644 index 1063fde..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/zh_TW/ssl-observatory.dtd +++ /dev/null @@ -1,92 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "詳細資料和隱私權資訊"> -<!ENTITY ssl-observatory.popup.later "稍後詢問我"> -<!ENTITY ssl-observatory.popup.no "否"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere 將您收到的憑證發送到觀測站,以偵測出對您瀏覽器的攻擊。要開啟此功能嗎?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"要讓 HTTPS Everywhere 使用 SSL 觀測站嗎?"> - -<!ENTITY ssl-observatory.popup.yes "是"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"啟用這個選項是安全的,除非您使用高侵入性的公司網路(corporate network):"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"啟用這個選項是安全的,除非您使用含有隱密內部網路伺服器名稱的公司網路(corporate network):"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"提交並檢查由非正規根憑證所簽署的憑證"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"啟用這個選項是安全的(而且也推薦啟用),除非您使用侵入性的公司網路,或者 Kaspersky 防毒軟體監控到您透過 TLS proxy 瀏覽並使用私人的根憑證。在這類的網路環境啟用此選項,可能會因為所產生的特有憑證,導致經由此代理伺服器瀏覽特定 https:// 網域的證明被公開。 因此預設為不啟用此選項。"> - -<!ENTITY ssl-observatory.prefs.anonymous "使用 Tor 匿名檢查憑證"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"使用 Tor 匿名檢查憑證(需要 Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"此選項需要安裝及執行 Tor"> - -<!ENTITY ssl-observatory.prefs.asn -"看到新的憑證時,告訴觀測站您連線到哪一個 ISP"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"這將擷取並回傳您網路的自治系統號碼(Autonomous System Number)。這將協助我們定位對 HTTPS 的攻擊,並判定我們所觀測到來自伊朗及敘利亞等地網路的攻擊是否較為常見。"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"當觀測站偵測到沒有被您瀏覽器攔截到被撤銷憑證時顯示警告"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"這會依照憑證撤銷清單檢查提交的憑證。然而我們無法保證我們將能夠標上每個被撤銷的憑證,但是您看到一個警告時就代表有機會知道有東西錯了。"> - -<!ENTITY ssl-observatory.prefs.done "完成"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere 可以使用 EFF 的 SSL 觀測站。這麼做有兩個效果:(1) 將 HTTPS 憑證的副本傳送到觀測站,協助我們偵測「中間人」攻擊並改進網路安全性;(2) 當您遇到不安全的連線或瀏覽器遭到攻擊時,我們能夠對您提出警告。"> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"例如當您造訪 https://www.something.com 時,觀測站所收到的憑證會顯示有人造訪過 www.something.com,但不會指出造訪者身份或他們觀看的是哪些特定頁面。將游標移至選項上可得到詳細說明:"> - -<!ENTITY ssl-observatory.prefs.hide "隱藏進階選項"> - -<!ENTITY ssl-observatory.prefs.nonanon -"即使 Tor 無法使用時仍檢查憑證"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"我們仍會試圖保持資料的匿名性,但此選項的安全性較低"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"提交並檢查非公共域名系統(non-public DNS)名稱的憑證"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"除非您有勾選此選項,觀測站不會記錄未經 DNS 系統解析的憑證名稱。"> - -<!ENTITY ssl-observatory.prefs.show "顯示進階選項"> - -<!ENTITY ssl-observatory.prefs.title "SSL 觀測站偏好設定"> - -<!ENTITY ssl-observatory.prefs.use "使用觀測站?"> -<!ENTITY ssl-observatory.warning.title "EFF 的 SSL 觀測站提出警告"> -<!ENTITY ssl-observatory.warning.showcert "顯示憑證鏈結(certificate chain)"> -<!ENTITY ssl-observatory.warning.okay "我了解"> -<!ENTITY ssl-observatory.warning.text "EFF 的 SSL 觀測站對此網站的 HTTPS 憑證提出警告:"> -<!ENTITY ssl-observatory.warning.defense "如果您登入此網站,一旦您有安全網路連線時可能會建議變更您的密碼。(這個警告可以在 HTTPS Everywhere 偏好設定對話方塊的「SSL 觀測站」分頁中被停用)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"提交並檢查自我簽署的憑證"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"建議啟用;加密問題在自我簽署的嵌入式裝置極為常見。"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/zu/https-everywhere.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/zu/https-everywhere.dtd deleted file mode 100644 index 93d66ce..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/zu/https-everywhere.dtd +++ /dev/null @@ -1,57 +0,0 @@ -<!ENTITY https-everywhere.about.title "About HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_name "HTTPS Everywhere"> -<!ENTITY https-everywhere.about.ext_description "Encrypt the Web! Automatically use HTTPS security on many sites."> -<!ENTITY https-everywhere.about.version "Version"> -<!ENTITY https-everywhere.about.created_by "Created by"> -<!ENTITY https-everywhere.about.and ", and"> -<!ENTITY https-everywhere.about.librarians "Ruleset Librarians"> -<!ENTITY https-everywhere.about.add_new_rule "Add New Rule"> -<!ENTITY https-everywhere.about.thanks "Thanks to"> -<!ENTITY https-everywhere.about.many_contributors "Many many contributors, including"> -<!ENTITY https-everywhere.about.noscript "Also, portions of HTTPS Everywhere are based on code from NoScript, by Giorgio Maone and others. We are grateful for their excellent work!"> -<!ENTITY https-everywhere.about.contribute "If you like HTTPS Everywhere, you might consider"> -<!ENTITY https-everywhere.about.donate_tor "Donating to Tor"> -<!ENTITY https-everywhere.about.tor_lang_code "en"> -<!ENTITY https-everywhere.about.or "or"> -<!ENTITY https-everywhere.about.donate_eff "Donating to EFF"> - -<!ENTITY https-everywhere.menu.donate_eff_imperative "Donate to EFF"> -<!ENTITY https-everywhere.menu.about "About HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.observatory "SSL Observatory Preferences"> -<!ENTITY https-everywhere.menu.globalEnable "Enable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.globalDisable "Disable HTTPS Everywhere"> -<!ENTITY https-everywhere.menu.blockUnencryptedRequests "Block all unencrypted requests"> -<!ENTITY https-everywhere.menu.showCounter "Show Counter"> -<!ENTITY https-everywhere.menu.viewAllRules "View All Rules"> - -<!ENTITY https-everywhere.prefs.title "HTTPS Everywhere Preferences"> -<!ENTITY https-everywhere.prefs.enable_all "Enable All"> -<!ENTITY https-everywhere.prefs.disable_all "Disable All"> -<!ENTITY https-everywhere.prefs.reset_defaults "Reset to Defaults"> -<!ENTITY https-everywhere.prefs.search "Search"> -<!ENTITY https-everywhere.prefs.site "Site"> -<!ENTITY https-everywhere.prefs.notes "Notes"> -<!ENTITY https-everywhere.prefs.list_caption "Which HTTPS redirection rules should apply?"> -<!ENTITY https-everywhere.prefs.enabled "Enabled"> -<!ENTITY https-everywhere.prefs.ruleset_howto "You can learn how to write your own rulesets (to add support for other web sites)"> -<!ENTITY https-everywhere.prefs.here_link "here"> -<!ENTITY https-everywhere.prefs.toggle "Toggle"> -<!ENTITY https-everywhere.prefs.reset_default "Reset to Default"> -<!ENTITY https-everywhere.prefs.view_xml_source "View XML Source"> - -<!ENTITY https-everywhere.chrome.stable_rules "Stable rules"> -<!ENTITY https-everywhere.chrome.stable_rules_description "Force encrypted connections to these websites:"> -<!ENTITY https-everywhere.chrome.experimental_rules "Experimental rules"> -<!ENTITY https-everywhere.chrome.experimental_rules_description "May cause warnings or breakage. Disabled by default."> -<!ENTITY https-everywhere.chrome.add_rule "Add a rule for this site"> -<!ENTITY https-everywhere.chrome.add_new_rule "Add a new rule for this site"> -<!ENTITY https-everywhere.chrome.always_https_for_host "Always use https for this host"> -<!ENTITY https-everywhere.chrome.host "Host:"> -<!ENTITY https-everywhere.chrome.show_advanced "Show advanced"> -<!ENTITY https-everywhere.chrome.hide_advanced "Hide advanced"> -<!ENTITY https-everywhere.chrome.rule_name "Rule name"> -<!ENTITY https-everywhere.chrome.regex "Matching regex"> -<!ENTITY https-everywhere.chrome.redirect_to "Redirect to"> -<!ENTITY https-everywhere.chrome.status_cancel_button "Cancel"> - - diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/zu/https-everywhere.properties b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/zu/https-everywhere.properties deleted file mode 100644 index be83831..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/zu/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/zu/ssl-observatory.dtd b/data/extensions/https-everywhere-eff@eff.org/chrome/locale/zu/ssl-observatory.dtd deleted file mode 100644 index 69f1cfd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/locale/zu/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ -<!-- Observatory popup window --> -<!ENTITY ssl-observatory.popup.details "Details and Privacy Information"> -<!ENTITY ssl-observatory.popup.later "Ask Me Later"> -<!ENTITY ssl-observatory.popup.no "No"> - -<!ENTITY ssl-observatory.popup.text "HTTPS Everywhere can detect attacks -against your browser by sending the certificates you receive to the -Observatory. Turn this on?"> - -<!--<!ENTITY ssl-observatory.popup.text -"EFF's SSL Observatory can detect attacks against HTTPS websites by collecting -and auditing the certificates being presented to your browser. Would you like -to turn it on?">--> - -<!ENTITY ssl-observatory.popup.title -"Should HTTPS Everywhere use the SSL Observatory?"> - -<!ENTITY ssl-observatory.popup.yes "Yes"> - -<!-- Observatory preferences dialog --> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts1 -"It is safe to enable this, unless you use a very -intrusive corporate network:"> - -<!ENTITY ssl-observatory.prefs.adv_priv_opts2 -"Safe, unless you use a corporate network with secret intranet server names:"> - -<!ENTITY ssl-observatory.prefs.alt_roots -"Submit and check certificates signed by non-standard root CAs"> - -<!ENTITY ssl-observatory.prefs.alt_roots_tooltip -"It is safe (and a good idea) to enable this option, unless you use an intrusive corporate network or Kaspersky antivirus software that monitors your browsing with a TLS proxy and a private root Certificate Authority. If enabled on such a network, this option might publish evidence of which https:// domains were being visited through that proxy, because of the unique certificates it would produce. So we leave it off by default."> - -<!ENTITY ssl-observatory.prefs.anonymous "Check certificates using Tor for anonymity"> -<!ENTITY ssl-observatory.prefs.anonymous_unavailable -"Check certificates using Tor for anonymity (requires Tor)"> -<!ENTITY ssl-observatory.prefs.anonymous_tooltip -"This option requires Tor to be installed and running"> - -<!ENTITY ssl-observatory.prefs.asn -"When you see a new certificate, tell the Observatory which ISP you are connected to"> - -<!ENTITY ssl-observatory.prefs.asn_tooltip -"This will fetch and send the "Autonomous System number" of your network. This will help us locate attacks against HTTPS, and to determine whether we have observations from networks in places like Iran and Syria where attacks are comparatively common."> - -<!ENTITY ssl-observatory.prefs.show_cert_warning -"Show a warning when the Observatory detects a revoked certificate not caught by your browser"> - -<!ENTITY ssl-observatory.prefs.show_cert_warning_tooltip -"This will check submitted certificates against known Certificate Revocation Lists. Unfortunately we cannot guarantee that we will flag every revoked certificate, but if you do see a warning there's a good chance something is wrong."> - -<!ENTITY ssl-observatory.prefs.done "Done"> - -<!ENTITY ssl-observatory.prefs.explanation -"HTTPS Everywhere can use EFF's SSL Observatory. This does two things: (1) -sends copies of HTTPS certificates to the Observatory, to help us -detect 'man in the middle' attacks and improve the Web's security; and (2) -lets us warn you about insecure connections or attacks on your browser."> - -<!--<!ENTITY ssl-observatory.prefs.explanation2 -"When you visit https://www.example.com, the Observatory will learn that -somebody visited that site, but will not know who or what page they looked at. -Mouseover the options for further details:">--> - -<!ENTITY ssl-observatory.prefs.explanation2 - -"For example, when you visit https://www.something.com, the certificate -received by the Observatory will indicate that somebody visited -www.something.com, but not who visited the site, or what specific page they -looked at. Mouseover the options for further details:"> - -<!ENTITY ssl-observatory.prefs.hide "Hide advanced options"> - -<!ENTITY ssl-observatory.prefs.nonanon -"Check certificates even if Tor is not available"> - -<!ENTITY ssl-observatory.prefs.nonanon_tooltip -"We will still try to keep the data anonymous, but this option is less secure"> - -<!ENTITY ssl-observatory.prefs.priv_dns -"Submit and check certificates for non-public DNS names"> - -<!ENTITY ssl-observatory.prefs.priv_dns_tooltip -"Unless this option is checked, the Observatory will not record certificates for names that it cannot resolve through the DNS system."> - -<!ENTITY ssl-observatory.prefs.show "Show advanced options"> - -<!ENTITY ssl-observatory.prefs.title "SSL Observatory Preferences"> - -<!ENTITY ssl-observatory.prefs.use "Use the Observatory?"> -<!ENTITY ssl-observatory.warning.title "WARNING from EFF's SSL Observatory"> -<!ENTITY ssl-observatory.warning.showcert "Show the certificate chain"> -<!ENTITY ssl-observatory.warning.okay "I understand"> -<!ENTITY ssl-observatory.warning.text "EFF's SSL Observatory has issued a warning about the HTTPS certificiate(s) for this site:"> -<!ENTITY ssl-observatory.warning.defense "If you are logged in to this site, it may be advisable to change your password once you have a safe connection. (These warnings can be disabled in the "SSL Observatory" tab of the HTTPS Everywhere preferences dialog.)"> - -<!ENTITY ssl-observatory.prefs.self_signed -"Submit and check self-signed certificates"> -<!ENTITY ssl-observatory.prefs.self_signed_tooltip -"This is recommended; cryptographic problems are especially common in self-signed embedded devices"> diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/skin/cross.png b/data/extensions/https-everywhere-eff@eff.org/chrome/skin/cross.png Binary files differdeleted file mode 100644 index d29345d..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/skin/cross.png +++ /dev/null diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/skin/https-everywhere-banner.png b/data/extensions/https-everywhere-eff@eff.org/chrome/skin/https-everywhere-banner.png Binary files differdeleted file mode 100644 index 980c1ee..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/skin/https-everywhere-banner.png +++ /dev/null diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/skin/https-everywhere.css b/data/extensions/https-everywhere-eff@eff.org/chrome/skin/https-everywhere.css deleted file mode 100644 index a9f0eb9..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/skin/https-everywhere.css +++ /dev/null @@ -1,78 +0,0 @@ -#https-everywhere-button { - -moz-binding: url("chrome://https-everywhere/content/toolbar_button_binding.xml#https-everywhere-binding"); -} - -#https-everywhere-button dropmarker { - display: none; -} - -toolbar #https-everywhere-button, -toolbar #https-everywhere-button > .https-everywhere-button { - -moz-box-orient: horizontal; -} - -/* Use CSS attribute selector for changing icon */ -#https-everywhere-button[state="inactive"] > .https-everywhere-button { - list-style-image: url("chrome://https-everywhere/skin/icon-inactive-16.png"); -} -#https-everywhere-button[state="active"] > .https-everywhere-button { - list-style-image: url("chrome://https-everywhere/skin/icon-active-16.png"); -} -#https-everywhere-button[state="disabled"] > .https-everywhere-button { - list-style-image: url("chrome://https-everywhere/skin/icon-disabled-16.png"); -} -#https-everywhere-button[state="blocking"] > .https-everywhere-button { - list-style-image: url("chrome://https-everywhere/skin/icon-blocking-16.png"); -} - -/* ruleset counter */ -#rscounter { - margin: 3px -12px 0 -8px; - display: block; - -moz-box-sizing: border-box; - box-sizing: border-box; -} - -/* increase negative margins in the palette and panel so the button isn't too wide. */ -#wrapper-https-everywhere-button[place="palette"] > #https-everywhere-button > #rscounter, -#https-everywhere-button[cui-areatype="menu-panel"] > #rscounter { - margin: 3px -16px 0 -8px; -} - -/* rulesets applied label */ -#rsapplied { - -moz-box-sizing: border-box; - box-sizing: border-box; - font-size: 12px; - color: #000; - background-color: #FFF; - border-width: 1px; - border-style: solid; - padding: 1px 1px 1px 1px; - visibility: hidden; -} - -#https-everywhere-button:not([rulesetsApplied="0"]) #rsapplied { - visibility: visible; -} - -#https-everywhere-button menuitem.active-item label { - color: #1e6419; - font-weight: bold; -} -#https-everywhere-button menuitem.moot-item label { - color: #1e6419; - opacity: 0.75; - font-weight: bold; -} -#https-everywhere-button menuitem.breaking-item label { - color: #b99999; - font-weight: bold; -} -#https-everywhere-button menuitem.inactive-item label { - color: #999999; - font-weight: bold; -} -#https-everywhere-button menuitem.birthday label { - font-weight: bold; -} diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/skin/icon-active-128.png b/data/extensions/https-everywhere-eff@eff.org/chrome/skin/icon-active-128.png Binary files differdeleted file mode 100644 index 12c1a63..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/skin/icon-active-128.png +++ /dev/null diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/skin/icon-active-16.png b/data/extensions/https-everywhere-eff@eff.org/chrome/skin/icon-active-16.png Binary files differdeleted file mode 100644 index 1c2df37..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/skin/icon-active-16.png +++ /dev/null diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/skin/icon-active-24.png b/data/extensions/https-everywhere-eff@eff.org/chrome/skin/icon-active-24.png Binary files differdeleted file mode 100644 index cfaa83b..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/skin/icon-active-24.png +++ /dev/null diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/skin/icon-active-38.png b/data/extensions/https-everywhere-eff@eff.org/chrome/skin/icon-active-38.png Binary files differdeleted file mode 100644 index 30a41b0..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/skin/icon-active-38.png +++ /dev/null diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/skin/icon-active-48.png b/data/extensions/https-everywhere-eff@eff.org/chrome/skin/icon-active-48.png Binary files differdeleted file mode 100644 index 427a300..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/skin/icon-active-48.png +++ /dev/null diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/skin/icon-blocking-16.png b/data/extensions/https-everywhere-eff@eff.org/chrome/skin/icon-blocking-16.png Binary files differdeleted file mode 100644 index a9feab7..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/skin/icon-blocking-16.png +++ /dev/null diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/skin/icon-blocking-24.png b/data/extensions/https-everywhere-eff@eff.org/chrome/skin/icon-blocking-24.png Binary files differdeleted file mode 100644 index 0fc12fb..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/skin/icon-blocking-24.png +++ /dev/null diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/skin/icon-blocking-38.png b/data/extensions/https-everywhere-eff@eff.org/chrome/skin/icon-blocking-38.png Binary files differdeleted file mode 100644 index 4dd9ab1..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/skin/icon-blocking-38.png +++ /dev/null diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/skin/icon-disabled-16.png b/data/extensions/https-everywhere-eff@eff.org/chrome/skin/icon-disabled-16.png Binary files differdeleted file mode 100644 index 505f2cf..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/skin/icon-disabled-16.png +++ /dev/null diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/skin/icon-disabled-24.png b/data/extensions/https-everywhere-eff@eff.org/chrome/skin/icon-disabled-24.png Binary files differdeleted file mode 100644 index a887e38..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/skin/icon-disabled-24.png +++ /dev/null diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/skin/icon-disabled-38.png b/data/extensions/https-everywhere-eff@eff.org/chrome/skin/icon-disabled-38.png Binary files differdeleted file mode 100644 index 57c80f6..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/skin/icon-disabled-38.png +++ /dev/null diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/skin/icon-inactive-16.png b/data/extensions/https-everywhere-eff@eff.org/chrome/skin/icon-inactive-16.png Binary files differdeleted file mode 100644 index 09062f9..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/skin/icon-inactive-16.png +++ /dev/null diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/skin/icon-inactive-24.png b/data/extensions/https-everywhere-eff@eff.org/chrome/skin/icon-inactive-24.png Binary files differdeleted file mode 100644 index 5fc8acd..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/skin/icon-inactive-24.png +++ /dev/null diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/skin/icon-inactive-38.png b/data/extensions/https-everywhere-eff@eff.org/chrome/skin/icon-inactive-38.png Binary files differdeleted file mode 100644 index 4295ffa..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/skin/icon-inactive-38.png +++ /dev/null diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/skin/loop.png b/data/extensions/https-everywhere-eff@eff.org/chrome/skin/loop.png Binary files differdeleted file mode 100644 index 33dfd42..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/skin/loop.png +++ /dev/null diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/skin/tick-moot.png b/data/extensions/https-everywhere-eff@eff.org/chrome/skin/tick-moot.png Binary files differdeleted file mode 100644 index b2ca134..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/skin/tick-moot.png +++ /dev/null diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/skin/tick.png b/data/extensions/https-everywhere-eff@eff.org/chrome/skin/tick.png Binary files differdeleted file mode 100644 index f055312..0000000 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/skin/tick.png +++ /dev/null |